diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index eac2cc87c2..5b29fb6047 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -510,6 +510,14 @@ if(PKG_ATC OR PKG_AWPMD OR PKG_ML-QUIP OR PKG_ML-POD OR PKG_ELECTRODE OR BUILD_T endif() endif() +find_package(CURL QUIET COMPONENTS HTTP HTTPS) +option(WITH_CURL "Enable libcurl support" ${CURL_FOUND}) +if(WITH_CURL) + find_package(CURL REQUIRED COMPONENTS HTTP HTTPS) + target_compile_definitions(lammps PRIVATE -DLAMMPS_CURL) + target_link_libraries(lammps PRIVATE CURL::libcurl) +endif() + # tweak jpeg library names to avoid linker errors with MinGW cross-compilation set(JPEG_NAMES libjpeg libjpeg-62) find_package(JPEG QUIET) diff --git a/cmake/Modules/Packages/COLVARS.cmake b/cmake/Modules/Packages/COLVARS.cmake index 745c1de026..b943a0345e 100644 --- a/cmake/Modules/Packages/COLVARS.cmake +++ b/cmake/Modules/Packages/COLVARS.cmake @@ -24,6 +24,12 @@ target_include_directories(colvars PUBLIC ${LAMMPS_LIB_SOURCE_DIR}/colvars) target_include_directories(colvars PRIVATE ${LAMMPS_SOURCE_DIR}) target_link_libraries(lammps PRIVATE colvars) +if(BUILD_OMP) + # Enable OpenMP for Colvars as well + target_compile_options(colvars PRIVATE ${OpenMP_CXX_FLAGS}) + target_link_libraries(colvars PRIVATE OpenMP::OpenMP_CXX) +endif() + if(COLVARS_DEBUG) # Need to export the define publicly to be valid in interface code target_compile_definitions(colvars PUBLIC -DCOLVARS_DEBUG) diff --git a/cmake/packaging/build_linux_tgz.sh b/cmake/packaging/build_linux_tgz.sh index ea2fb7fb10..276da019ae 100755 --- a/cmake/packaging/build_linux_tgz.sh +++ b/cmake/packaging/build_linux_tgz.sh @@ -2,9 +2,10 @@ APP_NAME=lammps-gui DESTDIR=${PWD}/../LAMMPS_GUI +VERSION="$1" echo "Delete old files, if they exist" -rm -rf ${DESTDIR} ../LAMMPS_GUI-Linux-amd64.tar.gz +rm -rf ${DESTDIR} ../LAMMPS_GUI-Linux-amd64*.tar.gz echo "Create staging area for deployment and populate" DESTDIR=${DESTDIR} cmake --install . --prefix "/" @@ -71,7 +72,7 @@ do \ done pushd .. -tar -czvvf LAMMPS_GUI-Linux-amd64.tar.gz LAMMPS_GUI +tar -czvvf LAMMPS_GUI-Linux-amd64-${VERSION}.tar.gz LAMMPS_GUI popd echo "Cleanup dir" diff --git a/cmake/packaging/build_macos_dmg.sh b/cmake/packaging/build_macos_dmg.sh index 4da3e40eaf..6e6877d2dd 100755 --- a/cmake/packaging/build_macos_dmg.sh +++ b/cmake/packaging/build_macos_dmg.sh @@ -1,9 +1,10 @@ #!/bin/bash APP_NAME=lammps-gui +VERSION="$1" echo "Delete old files, if they exist" -rm -f ${APP_NAME}.dmg ${APP_NAME}-rw.dmg LAMMPS_GUI-macOS-multiarch.dmg +rm -f ${APP_NAME}.dmg ${APP_NAME}-rw.dmg LAMMPS_GUI-macOS-multiarch*.dmg echo "Create initial dmg file with macdeployqt" macdeployqt lammps-gui.app -dmg @@ -96,12 +97,12 @@ sync echo "Unmount modified disk image and convert to compressed read-only image" hdiutil detach "${DEVICE}" -hdiutil convert "${APP_NAME}-rw.dmg" -format UDZO -o "LAMMPS_GUI-macOS-multiarch.dmg" +hdiutil convert "${APP_NAME}-rw.dmg" -format UDZO -o "LAMMPS_GUI-macOS-multiarch-${VERSION}.dmg" echo "Attach icon to .dmg file" echo "read 'icns' (-16455) \"lammps-gui.app/Contents/Resources/lammps.icns\";" > icon.rsrc -Rez -a icon.rsrc -o LAMMPS_GUI-macOS-multiarch.dmg -SetFile -a C LAMMPS_GUI-macOS-multiarch.dmg +Rez -a icon.rsrc -o LAMMPS_GUI-macOS-multiarch-${VERSION}.dmg +SetFile -a C LAMMPS_GUI-macOS-multiarch-${VERSION}.dmg rm icon.rsrc echo "Delete temporary disk images" diff --git a/cmake/packaging/build_windows_cross_zip.sh b/cmake/packaging/build_windows_cross_zip.sh index d02b9cf761..1d7a2ce146 100755 --- a/cmake/packaging/build_windows_cross_zip.sh +++ b/cmake/packaging/build_windows_cross_zip.sh @@ -3,9 +3,10 @@ APP_NAME=lammps-gui DESTDIR=${PWD}/LAMMPS_GUI SYSROOT="$1" +VERSION="$2" echo "Delete old files, if they exist" -rm -rvf ${DESTDIR}/LAMMPS_GUI ${DESTDIR}/LAMMPS-Win10-amd64.zip +rm -rvf ${DESTDIR}/LAMMPS_GUI ${DESTDIR}/LAMMPS-Win10-amd64*.zip echo "Create staging area for deployment and populate" DESTDIR=${DESTDIR} cmake --install . --prefix "/" @@ -60,5 +61,5 @@ cat > ${DESTDIR}/bin/qt.conf < ...\fR or +\fB\-restart2info ...\fR +Write information about the previously written by +.B LAMMPS +to the screen and immediately exit. Following +argument, additional keywords for the +.B LAMMPS +"info" command may be added to increase the amount of information +written. By default "system" "group" "fix" "compute" are already +set. See the +.B LAMMPS +manual for details on the "info" command. +.TP +.TP \fB\-sc \fR or \fB\-screen \fR Specify a file for .B LAMMPS diff --git a/doc/src/Build_development.rst b/doc/src/Build_development.rst index 8e103b089a..e95c5b97d9 100644 --- a/doc/src/Build_development.rst +++ b/doc/src/Build_development.rst @@ -153,7 +153,12 @@ development headers to compile (if those are not found locally a recent version of that library will be downloaded and compiled along with LAMMPS and the test programs) and will download and compile a specific version of the `GoogleTest `_ C++ -test framework that is used to implement the tests. +test framework that is used to implement the tests. Those unit tests +may be combined with memory access and leak checking with valgrind +(see below for how to enable it). In that case, running so-called +death tests will create a lot of false positives and thus they can be +disabled by configuring compilation with the additional setting +``-D SKIP_DEATH_TESTS=on``. .. admonition:: Software version and LAMMPS configuration requirements :class: note diff --git a/doc/src/Build_settings.rst b/doc/src/Build_settings.rst index b6aa6e4114..2abe6c4678 100644 --- a/doc/src/Build_settings.rst +++ b/doc/src/Build_settings.rst @@ -8,7 +8,8 @@ explains how to do this for building both with CMake and make. * `FFT library`_ for use with the :doc:`kspace_style pppm ` command * `Size of LAMMPS integer types and size limits`_ * `Read or write compressed files`_ -* `Output of JPG, PNG, and move files` via the :doc:`dump image ` or :doc:`dump movie ` commands +* `Output of JPEG, PNG, and movie files`_ via the :doc:`dump image ` or :doc:`dump movie ` commands +* `Support for downloading files`_ * `Memory allocation alignment`_ * `Workaround for long long integers`_ * `Exception handling when using LAMMPS as a library`_ to capture errors @@ -19,7 +20,7 @@ explains how to do this for building both with CMake and make. .. _cxx11: C++11 standard compliance ------------------------------------------- +------------------------- A C++11 standard compatible compiler is a requirement for compiling LAMMPS. LAMMPS version 3 March 2020 is the last version compatible with the previous @@ -31,12 +32,16 @@ flags to enable C++11 compliance. Example for GNU c++ 4.8.x: CCFLAGS = -g -O3 -std=c++11 +Individual packages may require compliance with a later C++ standard +like C++14 or C++17. These requirements will be documented with the +:doc:`individual packages `. + ---------- .. _fft: FFT library ---------------------- +----------- When the KSPACE package is included in a LAMMPS build, the :doc:`kspace_style pppm ` command performs 3d FFTs which @@ -341,8 +346,8 @@ in whichever ``lib/gpu/Makefile`` is used must be the same as above. .. _graphics: -Output of JPG, PNG, and movie files --------------------------------------------------- +Output of JPEG, PNG, and movie files +------------------------------------ The :doc:`dump image ` command has options to output JPEG or PNG image files. Likewise, the :doc:`dump movie ` command @@ -356,9 +361,9 @@ requires the following settings: .. code-block:: bash -D WITH_JPEG=value # yes or no - # default = yes if CMake finds JPEG files, else no + # default = yes if CMake finds JPEG development files, else no -D WITH_PNG=value # yes or no - # default = yes if CMake finds PNG and ZLIB files, else no + # default = yes if CMake finds PNG and ZLIB development files, else no -D WITH_FFMPEG=value # yes or no # default = yes if CMake can find ffmpeg, else no @@ -446,12 +451,58 @@ during a run. available using a compression library instead, which is what the :ref:`COMPRESS package ` enables. +-------------------------------------------------- + +.. _libcurl: + +Support for downloading files +----------------------------- + +.. versionadded:: TBD + +The :doc:`geturl command ` command uses the `the libcurl library +`_ to download files. This requires that +LAMMPS is compiled accordingly which needs the following settings: + +.. tabs:: + + .. tab:: CMake build + + .. code-block:: bash + + -D WITH_CURL=value # yes or no + # default = yes if CMake finds CURL development files, else no + + Usually these settings are all that is needed. If CMake cannot + find the graphics header, library, executable files, you can set + these variables: + + .. code-block:: bash + + -D CURL_INCLUDE_DIR=path # path to folder which contains curl.h header file + -D CURL_LIBRARY=path # path to libcurls.a (.so) file + + .. tab:: Traditional make + + .. code-block:: make + + LMP_INC = -DLAMMPS_CURL + + CURL_INC = -I/usr/local/include # path to curl folder with curl.h + CURL_PATH = -L/usr/lib # paths to libcurl.a(.so) if make cannot find it + CURL_LIB = -lcurl # library names + + As with CMake, you do not need to set ``CURL_INC`` or ``CURL_PATH``, + if make can find the libcurl header and library files in their + default system locations. You must specify ``CURL_LIB`` with a + paths or linker flags to link to libcurl. + ---------- .. _align: Memory allocation alignment ---------------------------------------- +--------------------------- This setting enables the use of the "posix_memalign()" call instead of "malloc()" when LAMMPS allocates large chunks of memory. Vector diff --git a/doc/src/Commands_all.rst b/doc/src/Commands_all.rst index 4a035f5b41..cb31369501 100644 --- a/doc/src/Commands_all.rst +++ b/doc/src/Commands_all.rst @@ -54,6 +54,7 @@ table above. * :doc:`echo ` * :doc:`fix ` * :doc:`fix_modify ` + * :doc:`geturl ` * :doc:`group ` * :doc:`if ` * :doc:`improper_coeff ` diff --git a/doc/src/Howto_lammps_gui.rst b/doc/src/Howto_lammps_gui.rst index 1283bcfa5a..dc7d02425e 100644 --- a/doc/src/Howto_lammps_gui.rst +++ b/doc/src/Howto_lammps_gui.rst @@ -98,10 +98,26 @@ get access to the other included executables. Linux on x86\_64 ^^^^^^^^^^^^^^^^ -After downloading and unpacking the +For Linux with x86\_64 CPU there are currently two variants. The first +is compiled on Ubuntu 20.04LTS, is using some wrapper scripts, and +should be compatible with more recent Linux distributions. After +downloading and unpacking the ``LAMMPS-Linux-x86_64-GUI-.tar.gz`` package. You can switch into the "LAMMPS_GUI" folder and execute "./lammps-gui" directly. +The second variant uses `flatpak `_ and +requires the flatpak management and runtime software to be installed. +After downloading the ``LAMMPS-GUI-Linux-x86_64-GUI-.tar.gz`` +flatpak bundle, you can install it with ``flatpak install --user +LAMMPS-GUI-Linux-x86_64-GUI-.tar.gz``. After installation, +LAMMPS-GUI should be integrated into your desktop environment under +"Applications > Science" but also can be launched from the console with +``flatpak run org.lammps.lammps-gui``. The flatpak bundle also includes +the console LAMMPS executable ``lmp`` which can be launched to run +simulations with, for example: ``flatpak run --command=lmp +org.lammps.lammps-gui -in in.melt``. + + Compiling from Source ^^^^^^^^^^^^^^^^^^^^^ @@ -371,6 +387,8 @@ record a separate log for each run attempt by using the command at the beginning of an input file. That would record logs to files ``logfile-1.txt``, ``logfile-2.txt``, and so on for successive runs. +.. _snapshot_viewer: + Snapshot Image Viewer --------------------- @@ -400,10 +418,16 @@ Otherwise the default sequence of colors of the :doc:`dump image ` command is assigned to the different atom types and the diameters are all the same. -.. image:: JPG/lammps-gui-image.png +.. figure:: JPG/lammps-gui-image.png :align: center :scale: 50% + Visualization of LAMMPS "peptide" example + +.. versionchanged:: 1.6 + + Buttons for toggling shininess and re-centering were added. + The default image size, some default image quality settings, the view style and some colors can be changed in the ``Preferences`` dialog window. From the image viewer window further adjustments can be made: @@ -442,6 +466,12 @@ Paste (`Ctrl-V`), Undo (`Ctrl-Z`), Redo (`Ctrl-Shift-Z`), Select All dialog will pop up asking whether to cancel the exit operation, or to save or not save the buffer contents to a file. +.. versionadded:: 1.6 + +The editor has an auto-save mode that can be enabled or disabled in the +``Preferences`` dialog. In auto-save mode, the editor buffer is +automatically saved before running LAMMPS or before exiting LAMMPS-GUI. + Context Specific Word Completion ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -471,11 +501,12 @@ Line Reformatting The editor supports reformatting lines according to the syntax in order to have consistently aligned lines. This primarily means adding whitespace padding to commands, type specifiers, IDs and names. This -reformatting is performed by default when hitting the 'Enter' key to -start a new line. This feature can be turned on or off in the -``Preferences`` dialog, but it can still be manually performed by -hitting the 'TAB' key. The amount of padding can be adjusted in the -``Preferences`` dialog for the *Editor*. +reformatting is performed manually by hitting the 'Tab' key. It is +also possible to have this done automatically when hitting the 'Enter' +key to start a new line. This feature can be turned on or off in the +``Preferences`` dialog for ``Editor Settings`` with the +"Reformat with 'Enter'" checkbox. The amount of padding for multiple +categories can be adjusted in the same dialog. Internally this functionality is achieved by splitting the line into "words" and then putting it back together with padding added where the @@ -504,13 +535,40 @@ keyboard, the first of those entries is chosen. If the word under the cursor is a file, then additionally the context menu has an entry to open the file in a read-only text viewer window. -This is a convenient way to view the contents of files that are -referenced in the input. The file viewer also supports on-the-fly +If the file is a LAMMPS restart file, instead the menu entry offers to +:ref:`inspect the restart `. + +The text viewer is a convenient way to view the contents of files that +are referenced in the input. The file viewer also supports on-the-fly decompression based on the file name suffix in a :ref:`similar fashion as available with LAMMPS `. If the necessary decompression program is missing or the file cannot be decompressed, the viewer window will contain a corresponding message. +.. _inspect_restart: + +Inspecting a Restart file +^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. versionadded:: 1.6 + +When LAMMPS-GUI is asked to "Inspect a Restart", it will read the +restart file into a LAMMPS instance and then open three different +windows. The first window is a text viewer with the output of an +:doc:`info command ` with system information stored in the +restart. The second window is text viewer containing a data file +generated with a :doc:`write_data command `. The third +window is a :ref:`Snapshot Image Viewer ` containing a +visualization of the system in the restart. + +If the restart file is larger than 250 MBytes, a dialog will ask +for confirmation before continuing, since large restart files +may require large amounts of RAM since the entire system must +be read into RAM. Thus restart file for large simulations that +have been run on an HPC cluster may overload a laptop or local +workstation. The ``Show Details...`` button will display a rough +estimate of the additional memory required. + Menu ---- @@ -530,6 +588,7 @@ The ``File`` menu offers the usual options: - ``New`` clears the current buffer and resets the file name to ``*unknown*`` - ``Open`` opens a dialog to select a new file for editing in the *Editor* - ``View`` opens a dialog to select a file for viewing in a *separate* window (read-only) with support for on-the-fly decompression as explained above. +- ``Inspect restart`` opens a dialog to select a file. If that file is a :doc:`LAMMPS restart ` three windows with :ref:`information about the file are opened `. - ``Save`` saves the current file; if the file name is ``*unknown*`` a dialog will open to select a new file name - ``Save As`` opens a dialog to select and new file name (and folder, if @@ -696,13 +755,15 @@ General Settings: log) of the application can be set. - *Select Text Font:* Opens a font selection dialog where the type and size for the text editor and log font of the application can be set. -- *GUI update interval:* Allows to set the time interval between GUI - and data updates during a LAMMPS run in milliseconds. The default is - to update the GUI every 10 milliseconds. This is good for most cases. - For LAMMPS runs that run *very* fast, however, data may be missed and - through lowering this interval, this can be corrected. However, this - will make the GUI use more resources, which may be a problem on some - computers with slower CPUs and a small number of CPU cores. This +- *GUI update interval:* Allows to set the time interval between GUI and + data updates during a LAMMPS run in milliseconds. The default is to + update the GUI every 10 milliseconds. This is good for many cases. + Set this to 100 milliseconds or more if LAMMPS-GUI consumes too many + resources during a run. For LAMMPS runs that run *very* fast (for + example in tutorial examples), however, data may be missed and through + lowering this interval, this can be corrected. However, this will + make the GUI use more resources, which may be a problem on some + computers with slower CPUs and a small number of CPU cores. This setting may be changed to a value between 1 and 1000 milliseconds. Accelerators: @@ -719,18 +780,23 @@ Snapshot Image: ^^^^^^^^^^^^^^^ This tab allows setting defaults for the snapshot images displayed in -the ``Image Viewer`` window, such as its dimensions and the zoom -factor applied. The *Antialias* switch will render images with twice -the number of pixels for width and height and then smoothly scale the -image back to the requested size. This produces higher quality images -with smoother edges at the expense of requiring more CPU time to -render the image. The *HQ Image mode* option turns on screen space -ambient occlusion (SSAO) mode when rendering images. This is also -more time consuming, but produces a more 'spatial' representation of -the system shading of atoms by their depth. The *VDW Style* checkbox -selects whether atoms are represented by space filling spheres when -checked or by smaller spheres and sticks. Finally there are a couple -of drop down lists to select the background and box colors. +the ``Image Viewer`` window, such as its dimensions and the zoom factor +applied. The *Antialias* switch will render images with twice the +number of pixels for width and height and then smoothly scale the image +back to the requested size. This produces higher quality images with +smoother edges at the expense of requiring more CPU time to render the +image. The *HQ Image mode* option turns on screen space ambient +occlusion (SSAO) mode when rendering images. This is also more time +consuming, but produces a more 'spatial' representation of the system +shading of atoms by their depth. The *Shiny Image mode* option will +render objects with a shiny surface when enabled. Otherwise the +surfaces will be matted. The *Show Box* option selects whether the +system box is drawn as a colored set of sticks. Similarly, the *Show +Axes* option selects whether a representation of the three system axes +will be drawn as colored sticks. The *VDW Style* checkbox selects +whether atoms are represented by space filling spheres when checked or +by smaller spheres and sticks. Finally there are a couple of drop down +lists to select the background and box colors. Editor Settings: ^^^^^^^^^^^^^^^^ @@ -741,9 +807,11 @@ ranges, IDs (e.g. for fixes), and names (e.g. for groups). The value set is the minimum width for the text element and it can be chosen in the range between 1 and 32. -The two settings which follow enable or disable the automatic -reformatting when hitting the 'Enter' key and the automatic display of -the completion pop-up window. +The three settings which follow enable or disable the automatic +reformatting when hitting the 'Enter' key, the automatic display of +the completion pop-up window, and whether auto-save mode is enabled. +In auto-save mode the editor buffer is saved before a run or before +exiting LAMMPS-GUI. ----------- diff --git a/doc/src/Howto_viz.rst b/doc/src/Howto_viz.rst index 5de8b000a1..a5aceb7437 100644 --- a/doc/src/Howto_viz.rst +++ b/doc/src/Howto_viz.rst @@ -14,7 +14,13 @@ choices among them. The :doc:`dump image ` and :doc:`dump movie ` styles can output internally rendered images or convert them to a movie -during the MD run. +during the MD run. It is also possible to create visualizations from +LAMMPS inputs or restart file with the :doc:`LAMMPS-GUI +`, which uses the :doc:`dump image ` +command internally. The ``Snapshot Image Viewer`` can be used to +adjust the visualization of the system interactively and then export +the corresponding LAMMPS commands to the clipboard to be inserted +into input files. Programs included with LAMMPS as auxiliary tools can convert between LAMMPS format files and other formats. See the :doc:`Tools diff --git a/doc/src/JPG/lammps-gui-image.png b/doc/src/JPG/lammps-gui-image.png index 48b9fd1ce3..969aadce0b 100644 Binary files a/doc/src/JPG/lammps-gui-image.png and b/doc/src/JPG/lammps-gui-image.png differ diff --git a/doc/src/JPG/lammps-gui-prefs-accel.png b/doc/src/JPG/lammps-gui-prefs-accel.png index 3cab94136a..25820c8d44 100644 Binary files a/doc/src/JPG/lammps-gui-prefs-accel.png and b/doc/src/JPG/lammps-gui-prefs-accel.png differ diff --git a/doc/src/JPG/lammps-gui-prefs-editor.png b/doc/src/JPG/lammps-gui-prefs-editor.png index 5d2fe50380..5b5cffe209 100644 Binary files a/doc/src/JPG/lammps-gui-prefs-editor.png and b/doc/src/JPG/lammps-gui-prefs-editor.png differ diff --git a/doc/src/JPG/lammps-gui-prefs-general.png b/doc/src/JPG/lammps-gui-prefs-general.png index 765ba8f84d..bfc9556995 100644 Binary files a/doc/src/JPG/lammps-gui-prefs-general.png and b/doc/src/JPG/lammps-gui-prefs-general.png differ diff --git a/doc/src/JPG/lammps-gui-prefs-image.png b/doc/src/JPG/lammps-gui-prefs-image.png index b87e8f2d20..7dd9e06653 100644 Binary files a/doc/src/JPG/lammps-gui-prefs-image.png and b/doc/src/JPG/lammps-gui-prefs-image.png differ diff --git a/doc/src/PDF/colvars-refman-lammps.pdf b/doc/src/PDF/colvars-refman-lammps.pdf index 4f85537b35..b8f049ce01 100644 Binary files a/doc/src/PDF/colvars-refman-lammps.pdf and b/doc/src/PDF/colvars-refman-lammps.pdf differ diff --git a/doc/src/Run_options.rst b/doc/src/Run_options.rst index 79c363d009..ff466d3b8a 100644 --- a/doc/src/Run_options.rst +++ b/doc/src/Run_options.rst @@ -22,6 +22,7 @@ letter abbreviation can be used: * :ref:`-ro or -reorder ` * :ref:`-r2data or -restart2data ` * :ref:`-r2dump or -restart2dump ` +* :ref:`-r2info or -restart2info ` * :ref:`-sc or -screen ` * :ref:`-sr or skiprun ` * :ref:`-sf or -suffix ` @@ -503,6 +504,37 @@ e.g. the *nfile* and *fileper* keywords. See the ---------- +.. _restart2info: + +**-restart2info restartfile keyword ...** + +.. versionadded:: TBD + +Write out some info about the restart file and and immediately exit. +This is the same operation as if the following 2-line input script were +run: + +.. code-block:: LAMMPS + + read_restart restartfile + info system group computes fixes + +The specified restartfile name may contain the wild-card character "\*". +The restartfile name may also contain the wild-card character "%". The +meaning of these characters is explained on the :doc:`read_restart +` documentation. The use of "%" means that a parallel +restart file can be read. Note that a filename such as file.\* may need +to be enclosed in quotes or the "\*" character prefixed with a backslash +("\") to avoid shell expansion of the "\*" character. + +Optional keywords may follow the restartfile argument. These must be +valid keywords for the :doc:`info command `. The most useful +ones - *system*, *group*, *computes*, and *fixes* - are already applied. +Appending keywords like *coeffs* or *communication* may provide +additional useful information stored in the restart file. + +---------- + .. _screen: **-screen file** diff --git a/doc/src/Tools.rst b/doc/src/Tools.rst index 060fd9f89d..1c16d370b9 100644 --- a/doc/src/Tools.rst +++ b/doc/src/Tools.rst @@ -92,7 +92,7 @@ Miscellaneous tools * :ref:`emacs ` * :ref:`i-PI ` * :ref:`kate ` - * :ref:`LAMMPS GUI ` + * :ref:`LAMMPS-GUI ` * :ref:`LAMMPS magic patterns for file(1) ` * :ref:`Offline build tool ` * :ref:`singularity/apptainer ` @@ -524,6 +524,7 @@ The LAMMPS-GUI has been successfully compiled and tested on: - Fedora Linux 40 x86\_64 using GCC 14, Qt version 6.7 - Apple macOS 12 (Monterey) and macOS 13 (Ventura) with Xcode on arm64 and x86\_64, Qt version 5.15LTS - Windows 10 and 11 x86_64 with Visual Studio 2022 and Visual C++ 14.36, Qt version 5.15LTS +- Windows 10 and 11 x86_64 with Visual Studio 2022 and Visual C++ 14.40, Qt version 6.7 - Windows 10 and 11 x86_64 with MinGW / GCC 10.0 cross-compiler on Fedora 38, Qt version 5.15LTS .. _lammps_gui_install: @@ -532,14 +533,28 @@ The LAMMPS-GUI has been successfully compiled and tested on: Pre-compiled executables ^^^^^^^^^^^^^^^^^^^^^^^^ -Pre-compiled LAMMPS executable packages that include the GUI are currently -available from https://download.lammps.org/static or -https://github.com/lammps/lammps/releases. You can unpack the archives -(or mount the macOS disk image) and run the GUI directly in place. The -folder may also be moved around and added to the ``PATH`` environment -variable so the executables will be found automatically. The LAMMPS-GUI -executable is called ``lammps-gui`` and either takes no arguments or -attempts to load the first argument as LAMMPS input file. +Pre-compiled LAMMPS executable packages that include the GUI are +currently available from https://download.lammps.org/static or +https://github.com/lammps/lammps/releases. For Windows, you need to +download and then run the application installer. For macOS you download +and mount the disk image and then drag the application bundle to the +Applications folder. For Linux (x86_64) you currently have two +options: 1) you can download the tar.gz archive, unpack it and run the +GUI directly in place. The ``LAMMPS_GUI`` folder may also be moved +around and added to the ``PATH`` environment variable so the executables +will be found automatically. 2) you can download the `Flatpak file +`_ and then install it locally with the +*flatpak* command: ``flatpak install --user +LAMMPS-Linux-x86_64-GUI-.flatpak`` and run it with ``flatpak +run org.lammps.lammps-gui``. The flatpak bundle also includes the +command line version of LAMMPS and some LAMMPS tools like msi2lmp. The +can be launched by using the ``--command`` flag. For example to run +LAMMPS directly on the ``in.lj`` benchmark input you would type in the +``bench`` folder: ``flatpak run --command=lmp -in in.lj`` The flatpak +version should also appear in the applications menu of standard desktop +environments. The LAMMPS-GUI executable is called ``lammps-gui`` and +either takes no arguments or attempts to load the first argument as +LAMMPS input file. .. _lammps_gui_compilation: @@ -1107,13 +1122,13 @@ necessary development headers and libraries are present. .. code-block:: bash - -D WITH_SWIG=on # to enable building any SWIG wrapper - -D BUILD_SWIG_JAVA=on # to enable building the Java wrapper - -D BUILD_SWIG_LUA=on # to enable building the Lua wrapper - -D BUILD_SWIG_PERL5=on # to enable building the Perl 5.x wrapper - -D BUILD_SWIG_PYTHON=on # to enable building the Python wrapper - -D BUILD_SWIG_RUBY=on # to enable building the Ruby wrapper - -D BUILD_SWIG_TCL=on # to enable building the Tcl wrapper + -D WITH_SWIG=on # to enable building any SWIG wrapper + -D BUILD_SWIG_JAVA=on # to enable building the Java wrapper + -D BUILD_SWIG_LUA=on # to enable building the Lua wrapper + -D BUILD_SWIG_PERL5=on # to enable building the Perl 5.x wrapper + -D BUILD_SWIG_PYTHON=on # to enable building the Python wrapper + -D BUILD_SWIG_RUBY=on # to enable building the Ruby wrapper + -D BUILD_SWIG_TCL=on # to enable building the Tcl wrapper Manual building allows a little more flexibility. E.g. one can choose diff --git a/doc/src/commands_list.rst b/doc/src/commands_list.rst index cea237f14e..b297b6dbf5 100644 --- a/doc/src/commands_list.rst +++ b/doc/src/commands_list.rst @@ -45,6 +45,7 @@ Commands fix fix_modify fitpod_command + geturl group group2ndx hyper diff --git a/doc/src/fix_bond_create.rst b/doc/src/fix_bond_create.rst index 0d818b2eae..a0a8160fb3 100644 --- a/doc/src/fix_bond_create.rst +++ b/doc/src/fix_bond_create.rst @@ -12,10 +12,10 @@ Syntax .. code-block:: LAMMPS - fix ID group-ID bond/create Nevery itype jtype Rmin bondtype keyword values ... + fix ID group-ID style Nevery itype jtype Rmin bondtype keyword values ... * ID, group-ID are documented in :doc:`fix ` command -* bond/create = style name of this fix command +* style = *bond/create* or *bond/create/angle* * Nevery = attempt bond creation every this many steps * itype,jtype = atoms of itype can bond to atoms of jtype (1-Ntypes or type label) * Rmin = 2 atoms separated by less than Rmin can bond (distance units) diff --git a/doc/src/fix_colvars.rst b/doc/src/fix_colvars.rst index 5acd79ba34..f62ae0e85a 100644 --- a/doc/src/fix_colvars.rst +++ b/doc/src/fix_colvars.rst @@ -8,151 +8,232 @@ Syntax .. code-block:: LAMMPS - fix ID group-ID colvars configfile keyword values ... + fix ID group-ID colvars *configfile* keyword value ... -* ID, group-ID are documented in :doc:`fix ` command -* colvars = style name of this fix command -* configfile = the configuration file for the colvars module -* keyword = *input* or *output* or *seed* or *unwrap* or *tstat* +* *ID*, *group-ID* are documented in :doc:`fix ` command +* "colvars" = style name of this fix command +* *configfile* = configuration file for Colvars (use "*none*" to provide it inline) +* keyword = *output* or *input* or *unwrap* or *tstat* or *seed* .. parsed-literal:: - - *input* arg = colvars.state file name or prefix or NULL (default: NULL) - *output* arg = output filename prefix (default: out) - *seed* arg = seed for random number generator (default: 1966) - *unwrap* arg = *yes* or *no* - use unwrapped coordinates in collective variables (default: yes) - *tstat* arg = fix id of a thermostat or NULL (default: NULL) + *output* value = state filename/prefix for Colvars (default: "out") + *input* value = input state filename/prefix for Colvars (optional, default: "NULL") + *unwrap* value = "yes" or "no" (default: "yes") + *tstat* value = fix ID of thermostat applied to relevant atoms (default: "NULL") + *seed* value = seed for random number generator (default: 1966) Examples """""""" .. code-block:: LAMMPS - fix mtd all colvars peptide.colvars.inp seed 2122 input peptide.colvars.state output peptide - fix abf all colvars colvars.inp tstat 1 + # Create the fix using a config file, set prefix for its output files + fix Colvars all colvars colvars.inp output ${JOB} + + # Communicate the LAMMPS target temperature to the Colvars module + fix_modify Colvars tstat NPT + + # Add a new restraint specific to this LAMMPS run + fix_modify Colvars config """ + harmonic { + name restraint + colvars distance1 distance2 + centers ${ref1} ${ref2} + forceConstant ${kappa} + }""" Description """"""""""" -This fix interfaces LAMMPS to the collective variables (Colvars) -library, which allows to calculate potentials of mean force (PMFs) for -any set of colvars, using sampling methods, including but not limited to -Adaptive Biasing Force (ABF), metadynamics (MtD), Steered Molecular -Dynamics (SMD) and Umbrella Sampling (US) via a flexible harmonic -restraint bias. +This fix interfaces LAMMPS to the collective variables `Colvars +`_ library, which allows to accelerate sampling of +rare events and the computation of free energy surfaces and potentials of +mean force (PMFs) for any set of collective variables using a variety of +sampling methods (e.g. umbrella-sampling, metadynamics, ABF...). -This documentation describes only the ``fix colvars`` command itself in -a LAMMPS script. The Colvars library is documented via the included -`PDF manual `_ or at the webpage +This documentation describes only the "fix colvars" command itself in +a LAMMPS script. The Colvars library is fully documented in the included +`PDF manual `_ or in the webpage `https://colvars.github.io/colvars-refman-lammps/colvars-refman-lammps.html `_. The Colvars library is developed at `https://github.com/Colvars/colvars -`_ A detailed discussion of its -implementation is in :ref:`(Fiorin) `; additional references are -printed at runtime based on specific features being used. +`_ A detailed discussion of its +implementation is in :ref:`(Fiorin) `; additional citations for +specific features are printed at runtime if these features are used. -There are some example scripts for using this package with LAMMPS in the -``examples/PACKAGES/colvars`` directory. +There are example scripts on the `Colvars website `_ +as well as in the ``examples/PACKAGES/colvars`` directory in the LAMMPS +source tree. ---------- -The only required argument to ``fix colvars`` is the filename to the -Colvars configuration file that contains the definition of the variables -and any biasing methods applied to them. from the MD program in which -the colvars library has been integrated. +The only required argument to the fix is the name of the Colvars +configuration file. The contents of this file are independent from the +MD engine in which the Colvars library has been integrated, save for the +units that are specific to each engine. In LAMMPS, the units used by +Colvars are consistent with those specified by the :doc:`units ` +command. -The *group-ID* entry is ignored. ``fix colvars`` will always apply to +.. versionadded:: Colvars_2023-06-04 The special value "*none*" + (lowercase) initializes an empty Colvars module, which + allows loading configuration dynamically using + :doc:`fix_modify ` (see below). + +The *group-ID* entry is ignored. "fix colvars" will always apply to the entire system, but specific atoms will be selected based on selection keywords in the Colvars configuration file or files. There is -no need to define multiple ``fix colvars`` instances and it is not +no need to define multiple "fix colvars" instances and it is not allowed. -The *output* keyword allows to specify the prefix of output files -generated by Colvars, for example ``output.colvars.traj`` or -``output.pmf``. +The "output" keyword allows to specify the prefix of output files generated +by Colvars, for example "*output*.colvars.traj" or "output.pmf". Supplying +an empty string suppresses any file output from Colvars to file, except for +data saved into the LAMMPS :doc:`binary restart ` files. -The *input* keyword allows to specify an optional state file that -contains the restart information needed to continue a previous -simulation state. Note, however, that ``fix colvars`` records its state -in :doc:`binary restart ` files, so when using the -:doc:`read_restart ` command, this is usually not needed. +The "input" keyword allows to specify an optional state file that contains +the restart information needed to continue a previous simulation state. +However, because "fix colvars" records its state in LAMMPS :doc:`binary +restart ` files, this is usually not needed when using the +:doc:`read_restart ` command. -The *seed* keyword contains the seed for the random number generator -used by Colvars. - -The *unwrap* keyword controls whether wrapped or unwrapped coordinates -are passed to the Colvars library for calculation of the collective -variables and the resulting forces. The default is *yes*, i.e. to use -the image flags to reconstruct the absolute atom positions. Setting -this to *no* will use the current local coordinates that are wrapped -back into the simulation cell at each re-neighboring instead. For -information about when and how this affects results, please see +The *unwrap* keyword controls whether wrapped or unwrapped coordinates are +passed to the Colvars library for calculation of the collective variables and +the resulting forces. The default is *yes*, i.e. the image flags are used to +reconstruct the absolute atom positions. Setting this to *no* will use the +current local coordinates that are wrapped back into the simulation cell at +each re-neighboring step instead. For information about when and how this +affects results, please see `https://colvars.github.io/colvars-refman-lammps/colvars-refman-lammps.html#sec:colvar_atom_groups_wrapping `_. -The *tstat* keyword can be either NULL or the label of a thermostatting -fix that thermostats all atoms in the fix colvars group. This will be -used to let Colvars know what is the current thermostat target +The *tstat* keyword can be either "NULL" or the label of a thermostatting +fix that thermostats all atoms in the fix colvars group. This will be +used to provide the colvars module with the current thermostat target temperature. -Restart, fix_modify, output, run start/stop, minimize info -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +The *seed* keyword contains the seed for the random number generator +that will be used in the colvars module. -This fix writes the current status of the colvars module into -:doc:`binary restart files `. This is in addition to the text -mode ``.colvars.state`` written by Colvars itself and the information in -both files is identical. -The :doc:`fix_modify ` *energy* option is supported by this -fix to add the energy change from the biasing force added by Colvars to -the global potential energy of the system as part of :doc:`thermodynamic -output `. The default setting for this fix is -:doc:`fix_modify energy no `. +Restarting +"""""""""" -The *fix_modify configfile * option loads Colvars -configuration from an additional file. This option can only be used, -after the system has been initialized with a :doc:`run ` command. +This fix writes the current state of the Colvars module into :doc:`binary +restart files `. This is in addition to the text-mode +".colvars.state" state file that is written by the Colvars module itself. +The information contained in both files is identical, and the binary LAMMPS +restart file is also used by fix colvars when :doc:`read_restart +` is called in a LAMMPS script. In that case, there is +typically no need to specify the *input* keyword. -The *fix_modify config * option allows to add settings -from inline strings. Those have to fit on a single line when enclosed in -a pair of double quotes ("), or can span multiple lines when bracketed -by a pair of triple double quotes (""", like Python embedded -documentation). +As long as LAMMPS binary restarts will be used to continue a simulation, it +is safe to delete the ".colvars.state" files to save space. However, when a +LAMMPS simulation is restarted using :doc:`read_data `, the +Colvars state file must be available and loaded via the "input" keyword or +via a "fix_modify Colvars load" command (see below). + +When restarting, the fix and the Colvars module should be created and +configured using either the original configuration file(s). + + +Output +"""""" This fix computes a global scalar which can be accessed by various -:doc:`output commands `. The scalar is the Colvars energy -mentioned above. The scalar value calculated by this fix is -"extensive". +:doc:`output commands `. The scalar is the energy due to all +external potentials defined in the Colvars configuration. The scalar value +calculated by this fix is "extensive". + +Aside from the state information in a ".colvars.state" file, other +`output files `_ +are produced by Colvars depending on the type of simulation. +For this reason, the "output" keyword is required for fix colvars. + + +Controlling Colvars via `fix_modify` +"""""""""""""""""""""""""""""""""""" + +.. versionadded:: Colvars_2023-06-04 + +The :doc:`fix_modify ` command may be used on "fix colvars" in +either one of two ways: + +(1) Provide updated values for the fix parameters, such as *output*, *input*, + *unwrap*, *tstat* and *seed*. Additionally, the :doc:`fix_modify + ` *energy* keyword is supported by this fix to add the energy + change from the biasing force added by Colvars to the global potential + energy of the system as part of :doc:`thermodynamic output ` + (the default is :doc:`fix_modify energy no `). + For example, in a multi-step LAMMPS script involving multiple thermostats + (e.g. fix nvt followed by fix npt), Colvars can read a new thermostat's + target temperature like this: + + .. code-block:: LAMMPS + + fix NVT all nvt ... + fix Colvars all colvars output equil1 tstat NVT + run + unfix nvt + fix NPT all n ... + fix_modify Colvars tstat NPT + fix_modify Colvars output equil2 + + +(2) Call one of the scripting functions provided by the Colvars module + itself (a full list is available in the Colvars doc). The arguments + to these functions are provided as strings and passed to Colvars. + + LAMMPS variables referenced by their string representation + "${variable}" will be expanded immediately. Note also that this + variable expansion *will also happen within quotes*, similar to what the + :doc:`mdi ` command provides. This feature makes it possible to use + the values of certain LAMMPS variables in Colvars configuration strings. + For example, to synchronize the LAMMPS and Colvars dump frequencies: + + .. code-block:: LAMMPS + + variable freq index 10000 + dump myDump all atom/zstd ${freq} dump.atom.zstd + fix_modify Colvars config "colvarsTrajFrequency ${freq}" + +.. note:: + + Although it is possible to use :doc:`fix_modify ` at any time, + its results will only reflect the state of the Colvars module at the end + of the most recent "run" or "minimize" command. Any new configuration + added via "fix_modify Colvars configfile" or "fix_modify Colvars config" + will only be loaded when the simulation resumes. Configuration files or + strings will be parsed in the same sequence as they were provided in the + LAMMPS script. + Restrictions """""""""""" -``fix colvars`` is provided by the COLVARS package and is only available -if LAMMPS was built with that package. Some of the features also -require code available from the LEPTON package. See the :doc:`Build +This fix is provided by the COLVARS package and is only available if LAMMPS +was built with that package (default in most builds). Some of the features +also require code available from the LEPTON package. See the :doc:`Build package ` page for more info. There can only be one Colvars instance defined at a time. Since the -interface communicates only the minimum amount of information and the -Colvars module itself can handle an arbitrary number of collective +interface communicates only the minimum required amount of information, and +the Colvars module itself can handle an arbitrary number of collective variables, this is not a limitation of functionality. + Related commands """""""""""""""" :doc:`fix smd `, :doc:`fix spring `, :doc:`fix plumed ` -Default -""""""" - -The default options are input = NULL, output = out, seed = 1966, unwrap yes, -and tstat = NULL. - ---------- .. _Fiorin: -**(Fiorin)** Fiorin, Klein, Henin, Mol. Phys., DOI:10.1080/00268976.2013.813594 +**(Fiorin)** Fiorin, Klein, Henin, Mol. Phys. 111, 3345 (2013) https://doi.org/10.1080/00268976.2013.813594 + +.. _Colvars_LAMMPS_doc: + +https://colvars.github.io/colvars-refman-lammps/colvars-refman-lammps.html diff --git a/doc/src/geturl.rst b/doc/src/geturl.rst new file mode 100644 index 0000000000..0ca0ce0cd3 --- /dev/null +++ b/doc/src/geturl.rst @@ -0,0 +1,82 @@ +.. index:: geturl + +geturl command +============== + +Syntax +"""""" + +.. code-block:: LAMMPS + + geturl url keyword args ... + +* url = URL of the file to download +* zero or more keyword argument pairs may be provided +* keyword = *output* or *verify* or *overwrite* or *verbose* + + .. parsed-literal:: + + *output* filename = write to *filename* instead of inferring the name from the URL + *verify* yes/no = verify SSL certificate and hostname if *yes*, do not if *no* + *overwrite* yes/no = if *yes* overwrite the output file in case it exists, do not if *no* + *verbose* yes/no = if *yes* write verbose debug output from libcurl to screen, do not if *no* + +Examples +"""""""" + +.. code-block:: LAMMPS + + geturl https://www.ctcms.nist.gov/potentials/Download/1990--Ackland-G-J-Vitek-V--Cu/2/Cu2.eam.fs + geturl https://github.com/lammps/lammps/blob/develop/bench/in.lj output in.bench-lj + +Description +""""""""""" + +.. versionadded:: TBD + +Download a file from an URL to the local disk. This is implemented with +the `libcurl library `_ which supports a +large variety of protocols including "http", "https", "ftp", "scp", +"sftp", "file". The transfer will only be performed on MPI rank 0. + +The *output* keyword can be used to set the filename. By default, the last part +of the URL is used. + +The *verify* keyword determines whether ``libcurl`` will validate the +SSL certificate and hostname for encrypted connections. Turning this +off may be required when using a proxy or connecting to a server with a +self-signed SSL certificate. + +The *overwrite* keyword determines whether a file should be overwritten if it +already exists. If the argument is *no*, then the download will be skipped +if the file exists. + +The *verbose* keyword determines whether a detailed protocol of the steps +performed by libcurl is written to the screen. Using the argument *yes* +can be used to debug connection issues when the *geturl* command does not +behave as expected. If the argument is *no*, geturl will operate silently +and only report the error status number provided by libcurl, in case of a +failure. + +---------- + +Restrictions +"""""""""""" + +This command is part of the EXTRA-COMMAND package. It is only enabled +if LAMMPS was built with that package. See the :doc:`Build package +` page for more info. It also requires that LAMMPS was +built with support for `the libcurl library +`_. See the page about :ref:`Compiling LAMMPS +with libcurl support ` for further info. If support for +libcurl is not included, using *geturl* will trigger an error. + +Related commands +"""""""""""""""" + +:doc:`shell ` + +Default +""""""" + +*verify* = yes, *overwrite* = yes diff --git a/doc/src/info.rst b/doc/src/info.rst index b06fa4fc5d..ef0bedc6e4 100644 --- a/doc/src/info.rst +++ b/doc/src/info.rst @@ -24,15 +24,18 @@ Examples info all out log info all out append info.txt info styles all - info styles atom + info styles atom styles command Description """"""""""" Print out information about the current internal state of the running -LAMMPS process. This can be helpful when debugging or validating -complex input scripts. Several output categories are available and -one or more output category may be requested. +LAMMPS process. This can be helpful when debugging or validating complex +input scripts. Several output categories are available and one or more +output categories may be requested. All category keywords take no +arguments, only *out* and *styles* take arguments as shown below. The +keywords are cumulative, may be abbreviated, and unknown keywords are +ignored. The *out* flag controls where the output is sent. It can only be sent to one target. By default this is the screen, if it is active. The @@ -99,9 +102,12 @@ support. This lists the 3d-FFT engine, FFT precision, FFT library used by the FFT engine. If the KOKKOS package is included, the settings used for the KOKKOS package are displayed as well. -The *styles* category prints the list of styles available in the -current LAMMPS binary. It supports one of the following options -to control which category of styles is printed out: +The *styles* category prints the list of styles available in the current +LAMMPS binary. The *styles* keyword without option is the same as using +the "all" option. One of the following options may be used to control +which category of styles is printed out. To select multiple categories, +the styles keyword needs to be used multiple times with the desired +categories: * all * angle diff --git a/doc/src/pair_meam.rst b/doc/src/pair_meam.rst index bafa9fb3c9..669ad86753 100644 --- a/doc/src/pair_meam.rst +++ b/doc/src/pair_meam.rst @@ -426,8 +426,8 @@ The *meam* and *meam/ms* pair styles are provided in the MEAM package. They are only enabled if LAMMPS was built with that package. See the :doc:`Build package ` page for more info. -The maximum number of elements, that can be read from the MEAM library -file, is determined at compile time. The default is 8. If you need +The maximum number of elements that can be read from the MEAM library +file is determined at compile time. The default is 8. If you need support for more elements, you have to change the the constant 'MAXELT' at the beginning of the file ``src/MEAM/meam.h`` and update/recompile LAMMPS. There is no limit on the number of atoms types. diff --git a/doc/src/read_restart.rst b/doc/src/read_restart.rst index dadecc9b47..6a875550a4 100644 --- a/doc/src/read_restart.rst +++ b/doc/src/read_restart.rst @@ -47,6 +47,12 @@ Restart files are saved in binary format to enable exact restarts, meaning that the trajectories of a restarted run will precisely match those produced by the original run had it continued on. +Some information about a restart file can be gathered directly from the +command line when using LAMMPS with the :ref:`-restart2info +` command line flag. On Unix-like operating systems (like +Linux or macOS), one can also :ref:`configure the "file" command line +program ` to display basic information about a restart file + The binary restart file format was not designed with backward, forward, or cross-platform compatibility in mind, so the files are only expected to be read correctly by the same LAMMPS executable on the same platform. @@ -130,7 +136,7 @@ these settings after the restart file is read. * :doc:`newton bond ` (see discussion of newton command below) * :doc:`atom style ` and :doc:`atom_modify ` settings id, map, sort * :doc:`comm style ` and :doc:`comm_modify ` settings mode, cutoff, vel -* :doc:`timestep ` +* :doc:`timestep size ` and :doc:`timestep number ` * simulation box size and shape and :doc:`boundary ` settings * atom :doc:`group ` definitions * per-type atom settings such as :doc:`mass ` diff --git a/doc/utils/sphinx-config/false_positives.txt b/doc/utils/sphinx-config/false_positives.txt index 002e861dc7..429e95da24 100644 --- a/doc/utils/sphinx-config/false_positives.txt +++ b/doc/utils/sphinx-config/false_positives.txt @@ -1186,6 +1186,7 @@ flaglog flagN flagVF flang +flatpak fld floralwhite Florez @@ -1297,6 +1298,7 @@ Gershgorin getrusage getter gettimeofday +geturl gewald Gezelter Gflop @@ -1491,6 +1493,8 @@ hplanck Hs hstyle html +http +https hTST https hu @@ -2902,6 +2906,7 @@ plumedfile pmb pmcmoves pme +pmf Pmolrotate Pmoltrans pN @@ -3348,6 +3353,7 @@ Schunk Schuring Schwen Sci +scp screenshot screenshots Scripps @@ -3388,6 +3394,7 @@ setvel sevenbody sfftw sfree +sftp Sg sgcmc Shan @@ -3902,6 +3909,7 @@ upenn upto Urbakh Urbana +url UreyBradley Usabiaga usec diff --git a/examples/COUPLE/plugin/liblammpsplugin.c b/examples/COUPLE/plugin/liblammpsplugin.c index 7df23c5b67..5d27a0a64b 100644 --- a/examples/COUPLE/plugin/liblammpsplugin.c +++ b/examples/COUPLE/plugin/liblammpsplugin.c @@ -150,6 +150,7 @@ liblammpsplugin_t *liblammpsplugin_load(const char *lib) ADDSYM(config_has_png_support); ADDSYM(config_has_jpeg_support); ADDSYM(config_has_ffmpeg_support); + ADDSYM(config_has_curl_support); ADDSYM(config_has_exceptions); ADDSYM(config_has_package); diff --git a/examples/COUPLE/plugin/liblammpsplugin.h b/examples/COUPLE/plugin/liblammpsplugin.h index 9f53e4749b..556718816c 100644 --- a/examples/COUPLE/plugin/liblammpsplugin.h +++ b/examples/COUPLE/plugin/liblammpsplugin.h @@ -203,6 +203,7 @@ struct _liblammpsplugin { int (*config_has_png_support)(); int (*config_has_jpeg_support)(); int (*config_has_ffmpeg_support)(); + int (*config_has_curl_support)(); int (*config_has_exceptions)(); int (*config_has_package)(const char *); diff --git a/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars.g++.1 b/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars.g++.1 deleted file mode 100644 index 1003b9729e..0000000000 --- a/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars.g++.1 +++ /dev/null @@ -1,629 +0,0 @@ -LAMMPS (27 Nov 2018) - using 1 OpenMP thread(s) per MPI task -# Solvated 5-mer peptide - -units real -atom_style full - -pair_style lj/charmm/coul/long 8.0 10.0 10.0 -bond_style harmonic -angle_style charmm -dihedral_style charmm -improper_style harmonic -kspace_style pppm 0.0001 - -read_data data.peptide - orthogonal box = (36.8402 41.0137 29.7681) to (64.2116 68.3851 57.1395) - 1 by 1 by 1 MPI processor grid - reading atoms ... - 2004 atoms - reading velocities ... - 2004 velocities - scanning bonds ... - 3 = max bonds/atom - scanning angles ... - 6 = max angles/atom - scanning dihedrals ... - 14 = max dihedrals/atom - scanning impropers ... - 1 = max impropers/atom - reading bonds ... - 1365 bonds - reading angles ... - 786 angles - reading dihedrals ... - 207 dihedrals - reading impropers ... - 12 impropers - 4 = max # of 1-2 neighbors - 7 = max # of 1-3 neighbors - 14 = max # of 1-4 neighbors - 18 = max # of special neighbors - -neighbor 2.0 bin -neigh_modify delay 5 - -timestep 2.0 - -group peptide type <= 12 -84 atoms in group peptide -group one id 2 4 5 6 -4 atoms in group one -group two id 80 82 83 84 -4 atoms in group two -group ref id 37 -1 atoms in group ref -group colvar union one two ref -9 atoms in group colvar - -fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 - -shell "rm -f out*.colvars.*" -fix 2 all colvars peptide.colvars -fix 2a ref setforce 0.0 0.0 0.0 - -fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 - 19 = # of size 2 clusters - 6 = # of size 3 clusters - 3 = # of size 4 clusters - 640 = # of frozen angles - -#dump 1 colvar custom 1 dump.colvar.lammpstrj id xu yu zu fx fy fz -#dump_modify 1 sort id - -thermo_style custom step temp etotal pe ke epair ebond f_2 -thermo 10 - - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 10648 3375 -Neighbor list info ... - update every 1 steps, delay 5 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 12 - ghost atom cutoff = 12 - binsize = 6, bins = 5 5 5 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/charmm/coul/long, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -colvars: Creating proxy instance -colvars: ---------------------------------------------------------------------- -colvars: Initializing the collective variables module, version 2018-11-16. -colvars: Please cite Fiorin et al, Mol Phys 2013: -colvars: https://doi.org/10.1080/00268976.2013.813594 -colvars: in any publication based on this calculation. -colvars: SMP parallelism is available. -colvars: Using LAMMPS interface, version 2018-08-29. -colvars: ---------------------------------------------------------------------- -colvars: Reading new configuration from file "peptide.colvars": -colvars: # smp = on [default] -colvars: # colvarsTrajFrequency = 1 -colvars: # colvarsRestartFrequency = 1000 -colvars: # scriptedColvarForces = off [default] -colvars: # scriptingAfterBiases = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new collective variable. -colvars: # name = "one" -colvars: Initializing a new "distance" component. -colvars: # name = "" [default] -colvars: # componentCoeff = 1 [default] -colvars: # componentExp = 1 [default] -colvars: # period = 0 [default] -colvars: # wrapAround = 0 [default] -colvars: # forceNoPBC = off [default] -colvars: # scalable = on [default] -colvars: Initializing atom group "group1". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group1" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: Initializing atom group "group2". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group2" defined, 1 atoms initialized: total mass = 1, total charge = 0. -colvars: # oneSiteSystemForce = off [default] -colvars: # oneSiteTotalForce = off [default] -colvars: All components initialized. -colvars: # timeStepFactor = 1 [default] -colvars: # width = 1 [default] -colvars: # lowerBoundary = 0 [default] -colvars: # upperBoundary = 0 [default] -colvars: # expandBoundaries = off [default] -colvars: # extendedLagrangian = off [default] -colvars: # outputValue = on [default] -colvars: # outputVelocity = off [default] -colvars: # outputTotalForce = off [default] -colvars: # outputAppliedForce = off [default] -colvars: # subtractAppliedForce = off [default] -colvars: # runAve = off [default] -colvars: # corrFunc = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new collective variable. -colvars: # name = "two" -colvars: Initializing a new "distance" component. -colvars: # name = "" [default] -colvars: # componentCoeff = 1 [default] -colvars: # componentExp = 1 [default] -colvars: # period = 0 [default] -colvars: # wrapAround = 0 [default] -colvars: # forceNoPBC = off [default] -colvars: # scalable = on [default] -colvars: Initializing atom group "group1". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group1" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: Initializing atom group "group2". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group2" defined, 1 atoms initialized: total mass = 1, total charge = 0. -colvars: # oneSiteSystemForce = off [default] -colvars: # oneSiteTotalForce = off [default] -colvars: All components initialized. -colvars: # timeStepFactor = 1 [default] -colvars: # width = 1 [default] -colvars: # lowerBoundary = 0 [default] -colvars: # upperBoundary = 0 [default] -colvars: # expandBoundaries = off [default] -colvars: # extendedLagrangian = off [default] -colvars: # outputValue = on [default] -colvars: # outputVelocity = off [default] -colvars: # outputTotalForce = off [default] -colvars: # outputAppliedForce = off [default] -colvars: # subtractAppliedForce = off [default] -colvars: # runAve = off [default] -colvars: # corrFunc = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables initialized, 2 in total. -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new "harmonic" instance. -colvars: # name = "h_pot" -colvars: # colvars = { one, two } -colvars: # outputEnergy = off [default] -colvars: # timeStepFactor = 1 [default] -colvars: # writeTISamples = off [default] -colvars: # writeTIPMF = off [default] -colvars: # centers = { 10, 10 } -colvars: # targetCenters = { 10, 10 } [default] -colvars: # outputCenters = off [default] -colvars: # forceConstant = 100 -colvars: # targetForceConstant = -1 [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables biases initialized, 1 in total. -colvars: ---------------------------------------------------------------------- -colvars: Collective variables module (re)initialized. -colvars: ---------------------------------------------------------------------- -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 4. -colvars: Re-initialized atom group one:0/1. 1 atoms: total mass = 1. -colvars: Re-initialized atom group two:0/0. 4 atoms: total mass = 4. -colvars: Re-initialized atom group two:0/1. 1 atoms: total mass = 1. -colvars: The restart output state file will be "rest.colvars.state". -colvars: The final output state file will be "out.colvars.state". -colvars: Writing to colvar trajectory file "out.colvars.traj". -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group one:0/1. 1 atoms: total mass = 12.011. -colvars: Re-initialized atom group two:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group two:0/1. 1 atoms: total mass = 12.011. -colvars: Performing analysis. -SHAKE stats (type/ave/delta) on step 0 - 4 1.111 1.44264e-05 - 6 0.996998 7.26967e-06 - 8 1.08 1.32536e-05 - 10 1.111 1.22749e-05 - 12 1.08 1.11767e-05 - 14 0.96 0 - 18 0.957206 4.37979e-05 - 31 104.519 0.00396029 -Per MPI rank memory allocation (min/avg/max) = 18.7 | 18.7 | 18.7 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond f_2 - 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 292.14604 - 10 305.06149 -5058.8972 -6286.1901 1227.2929 -6413.1021 58.8499 103.38345 - 20 311.00516 -4999.0612 -6250.266 1251.2048 -6417.1021 47.695297 36.699695 - 30 314.22337 -4993.7012 -6257.8532 1264.152 -6421.9679 35.344144 10.563933 - 40 297.87491 -5020.8378 -6219.2184 1198.3805 -6389.8528 27.723133 3.8354517 - 50 304.02071 -5056.2576 -6279.3633 1223.1057 -6456.8214 55.459505 0.20678217 - 60 285.92576 -5104.0461 -6254.354 1150.3079 -6435.5814 32.767229 0.69352945 - 70 277.83519 -5163.9758 -6281.7345 1117.7587 -6447.7033 39.627168 11.433603 - 80 267.51495 -5206.4046 -6282.644 1076.2394 -6456.6369 31.611883 6.3554178 - 90 278.15579 -5245.3824 -6364.431 1119.0485 -6499.8063 28.849773 0.36941576 -SHAKE stats (type/ave/delta) on step 100 - 4 1.11098 8.97155e-05 - 6 0.996996 1.00568e-05 - 8 1.08 6.02345e-06 - 10 1.111 1.84253e-05 - 12 1.08 7.2713e-06 - 14 0.959996 0 - 18 0.957198 3.36079e-05 - 31 104.52 0.0030599 - 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 -colvars: Saving collective variables state to "out.colvars.state". -Loop time of 2.17304 on 1 procs for 100 steps with 2004 atoms - -Performance: 7.952 ns/day, 3.018 hours/ns, 46.018 timesteps/s -98.9% CPU use with 1 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 1.5817 | 1.5817 | 1.5817 | 0.0 | 72.79 -Bond | 0.0031469 | 0.0031469 | 0.0031469 | 0.0 | 0.14 -Kspace | 0.17366 | 0.17366 | 0.17366 | 0.0 | 7.99 -Neigh | 0.37354 | 0.37354 | 0.37354 | 0.0 | 17.19 -Comm | 0.013652 | 0.013652 | 0.013652 | 0.0 | 0.63 -Output | 0.00026059 | 0.00026059 | 0.00026059 | 0.0 | 0.01 -Modify | 0.025484 | 0.025484 | 0.025484 | 0.0 | 1.17 -Other | | 0.001615 | | | 0.07 - -Nlocal: 2004 ave 2004 max 2004 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 11124 ave 11124 max 11124 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 708237 ave 708237 max 708237 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 708237 -Ave neighs/atom = 353.412 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 12 -Dangerous builds = 2 - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 10648 3375 -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group one:0/1. 1 atoms: total mass = 12.011. -colvars: Re-initialized atom group two:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group two:0/1. 1 atoms: total mass = 12.011. -SHAKE stats (type/ave/delta) on step 100 - 4 1.11098 8.97155e-05 - 6 0.996996 1.00568e-05 - 8 1.08 6.02345e-06 - 10 1.111 1.84253e-05 - 12 1.08 7.2713e-06 - 14 0.959996 0 - 18 0.957198 3.36079e-05 - 31 104.52 0.0030599 -Per MPI rank memory allocation (min/avg/max) = 18.7 | 18.7 | 18.7 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond f_2 - 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 - 110 266.26438 -5341.1991 -6412.4073 1071.2082 -6552.7551 33.573173 1.9229657 - 120 262.66604 -5386.2387 -6442.9704 1056.7317 -6587.5483 29.859587 2.7124812 - 130 252.83379 -5422.5401 -6439.7157 1017.1756 -6580.4703 25.979343 1.2031592 - 140 253.85111 -5452.1838 -6473.4522 1021.2684 -6609.4826 26.071651 0.30585517 - 150 261.31816 -5490.4727 -6541.7817 1051.3091 -6646.6076 16.258823 6.9051008 - 160 255.7352 -5521.5941 -6550.4424 1028.8483 -6658.1373 19.717399 12.339679 - 170 253.42527 -5540.0942 -6559.6494 1019.5552 -6656.6678 23.293812 10.290217 - 180 248.51161 -5550.3253 -6550.1124 999.78705 -6661.4235 26.200127 3.4336038 - 190 250.80862 -5555.2554 -6564.2836 1009.0282 -6666.164 25.53634 3.3494288 -SHAKE stats (type/ave/delta) on step 200 - 4 1.111 1.81266e-06 - 6 0.997 7.79424e-07 - 8 1.08 1.08903e-06 - 10 1.111 2.96503e-07 - 12 1.08 4.69038e-07 - 14 0.960001 0 - 18 0.957201 3.76471e-06 - 31 104.52 0.000411055 - 200 251.50475 -5557.4251 -6569.2538 1011.8287 -6674.0845 24.804906 7.1387574 -colvars: Saving collective variables state to "out.colvars.state". -Loop time of 2.03298 on 1 procs for 100 steps with 2004 atoms - -Performance: 8.500 ns/day, 2.824 hours/ns, 49.189 timesteps/s -98.9% CPU use with 1 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 1.5975 | 1.5975 | 1.5975 | 0.0 | 78.58 -Bond | 0.0033164 | 0.0033164 | 0.0033164 | 0.0 | 0.16 -Kspace | 0.17349 | 0.17349 | 0.17349 | 0.0 | 8.53 -Neigh | 0.21971 | 0.21971 | 0.21971 | 0.0 | 10.81 -Comm | 0.012045 | 0.012045 | 0.012045 | 0.0 | 0.59 -Output | 0.00026226 | 0.00026226 | 0.00026226 | 0.0 | 0.01 -Modify | 0.025034 | 0.025034 | 0.025034 | 0.0 | 1.23 -Other | | 0.001596 | | | 0.08 - -Nlocal: 2004 ave 2004 max 2004 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 11159 ave 11159 max 11159 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 708083 ave 708083 max 708083 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 708083 -Ave neighs/atom = 353.335 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 7 -Dangerous builds = 0 - -fix 2 all colvars peptide.colvars input out.colvars.state output out2 -colvars: Resetting the Collective Variables module. - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 10648 3375 -colvars: Creating proxy instance -colvars: ---------------------------------------------------------------------- -colvars: Initializing the collective variables module, version 2018-11-16. -colvars: Please cite Fiorin et al, Mol Phys 2013: -colvars: https://doi.org/10.1080/00268976.2013.813594 -colvars: in any publication based on this calculation. -colvars: SMP parallelism is available. -colvars: Using LAMMPS interface, version 2018-08-29. -colvars: ---------------------------------------------------------------------- -colvars: Reading new configuration from file "peptide.colvars": -colvars: # smp = on [default] -colvars: # colvarsTrajFrequency = 1 -colvars: # colvarsRestartFrequency = 1000 -colvars: # scriptedColvarForces = off [default] -colvars: # scriptingAfterBiases = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new collective variable. -colvars: # name = "one" -colvars: Initializing a new "distance" component. -colvars: # name = "" [default] -colvars: # componentCoeff = 1 [default] -colvars: # componentExp = 1 [default] -colvars: # period = 0 [default] -colvars: # wrapAround = 0 [default] -colvars: # forceNoPBC = off [default] -colvars: # scalable = on [default] -colvars: Initializing atom group "group1". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group1" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: Initializing atom group "group2". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group2" defined, 1 atoms initialized: total mass = 1, total charge = 0. -colvars: # oneSiteSystemForce = off [default] -colvars: # oneSiteTotalForce = off [default] -colvars: All components initialized. -colvars: # timeStepFactor = 1 [default] -colvars: # width = 1 [default] -colvars: # lowerBoundary = 0 [default] -colvars: # upperBoundary = 0 [default] -colvars: # expandBoundaries = off [default] -colvars: # extendedLagrangian = off [default] -colvars: # outputValue = on [default] -colvars: # outputVelocity = off [default] -colvars: # outputTotalForce = off [default] -colvars: # outputAppliedForce = off [default] -colvars: # subtractAppliedForce = off [default] -colvars: # runAve = off [default] -colvars: # corrFunc = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new collective variable. -colvars: # name = "two" -colvars: Initializing a new "distance" component. -colvars: # name = "" [default] -colvars: # componentCoeff = 1 [default] -colvars: # componentExp = 1 [default] -colvars: # period = 0 [default] -colvars: # wrapAround = 0 [default] -colvars: # forceNoPBC = off [default] -colvars: # scalable = on [default] -colvars: Initializing atom group "group1". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group1" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: Initializing atom group "group2". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group2" defined, 1 atoms initialized: total mass = 1, total charge = 0. -colvars: # oneSiteSystemForce = off [default] -colvars: # oneSiteTotalForce = off [default] -colvars: All components initialized. -colvars: # timeStepFactor = 1 [default] -colvars: # width = 1 [default] -colvars: # lowerBoundary = 0 [default] -colvars: # upperBoundary = 0 [default] -colvars: # expandBoundaries = off [default] -colvars: # extendedLagrangian = off [default] -colvars: # outputValue = on [default] -colvars: # outputVelocity = off [default] -colvars: # outputTotalForce = off [default] -colvars: # outputAppliedForce = off [default] -colvars: # subtractAppliedForce = off [default] -colvars: # runAve = off [default] -colvars: # corrFunc = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables initialized, 2 in total. -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new "harmonic" instance. -colvars: # name = "h_pot" -colvars: # colvars = { one, two } -colvars: # outputEnergy = off [default] -colvars: # timeStepFactor = 1 [default] -colvars: # writeTISamples = off [default] -colvars: # writeTIPMF = off [default] -colvars: # centers = { 10, 10 } -colvars: # targetCenters = { 10, 10 } [default] -colvars: # outputCenters = off [default] -colvars: # forceConstant = 100 -colvars: # targetForceConstant = -1 [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables biases initialized, 1 in total. -colvars: ---------------------------------------------------------------------- -colvars: Collective variables module (re)initialized. -colvars: ---------------------------------------------------------------------- -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 4. -colvars: Re-initialized atom group one:0/1. 1 atoms: total mass = 1. -colvars: Re-initialized atom group two:0/0. 4 atoms: total mass = 4. -colvars: Re-initialized atom group two:0/1. 1 atoms: total mass = 1. -colvars: ---------------------------------------------------------------------- -colvars: Restarting from file "out.colvars.state". -colvars: Restarting collective variable "one" from value: 10.0128 -colvars: Restarting collective variable "two" from value: 9.62236 -colvars: ---------------------------------------------------------------------- -colvars: The restart output state file will be "rest.colvars.state". -colvars: The final output state file will be "out2.colvars.state". -colvars: Writing to colvar trajectory file "out2.colvars.traj". -colvars: Setting initial step number from LAMMPS: 200 -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group one:0/1. 1 atoms: total mass = 12.011. -colvars: Re-initialized atom group two:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group two:0/1. 1 atoms: total mass = 12.011. -colvars: Performing analysis. -SHAKE stats (type/ave/delta) on step 200 - 4 1.111 1.81266e-06 - 6 0.997 7.79424e-07 - 8 1.08 1.08903e-06 - 10 1.111 2.96503e-07 - 12 1.08 4.69038e-07 - 14 0.960001 0 - 18 0.957201 3.76471e-06 - 31 104.52 0.000411055 -Per MPI rank memory allocation (min/avg/max) = 18.7 | 18.7 | 18.7 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond f_2 - 200 251.50475 -5557.4251 -6569.2538 1011.8287 -6674.0845 24.804906 7.1387574 - 210 253.15303 -5538.5615 -6557.0215 1018.46 -6672.0498 37.67662 0.61219496 - 220 245.19621 -5522.519 -6508.9679 986.44888 -6628.1899 36.657688 0.04864338 - 230 258.69884 -5495.7275 -6536.4988 1040.7713 -6658.2885 34.857911 0.22092547 - 240 260.79635 -5469.8678 -6519.0776 1049.2098 -6624.1801 31.576951 3.7574816 - 250 269.07527 -5438.3946 -6520.9114 1082.5167 -6616.4383 25.447674 8.6600014 - 260 266.01049 -5397.3485 -6467.5353 1070.1868 -6580.2897 26.871917 8.3323097 - 270 272.81313 -5350.882 -6448.4365 1097.5545 -6563.8231 23.114195 10.973131 - 280 279.42263 -5307.9798 -6432.125 1124.1452 -6557.3367 33.644027 8.5490492 - 290 286.85172 -5260.841 -6414.8741 1154.0331 -6515.6798 28.574838 5.9100133 -SHAKE stats (type/ave/delta) on step 300 - 4 1.111 1.79792e-05 - 6 0.997005 1.02512e-05 - 8 1.08 1.85102e-05 - 10 1.111 9.98839e-06 - 12 1.08 8.84111e-06 - 14 0.960008 0 - 18 0.957203 1.8445e-05 - 31 104.52 0.00168383 - 300 291.52798 -5216.288 -6389.1341 1172.8462 -6503.1276 27.889154 2.2482459 -colvars: Saving collective variables state to "out2.colvars.state". -Loop time of 2.07171 on 1 procs for 100 steps with 2004 atoms - -Performance: 8.341 ns/day, 2.877 hours/ns, 48.269 timesteps/s -98.9% CPU use with 1 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 1.6047 | 1.6047 | 1.6047 | 0.0 | 77.46 -Bond | 0.0031033 | 0.0031033 | 0.0031033 | 0.0 | 0.15 -Kspace | 0.17325 | 0.17325 | 0.17325 | 0.0 | 8.36 -Neigh | 0.25117 | 0.25117 | 0.25117 | 0.0 | 12.12 -Comm | 0.012173 | 0.012173 | 0.012173 | 0.0 | 0.59 -Output | 0.00026488 | 0.00026488 | 0.00026488 | 0.0 | 0.01 -Modify | 0.025317 | 0.025317 | 0.025317 | 0.0 | 1.22 -Other | | 0.001731 | | | 0.08 - -Nlocal: 2004 ave 2004 max 2004 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 11296 ave 11296 max 11296 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 708152 ave 708152 max 708152 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 708152 -Ave neighs/atom = 353.369 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 8 -Dangerous builds = 0 - -colvars: Resetting the Collective Variables module. - -Please see the log.cite file for references relevant to this simulation - -Total wall time: 0:00:06 diff --git a/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars.g++.4 b/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars.g++.4 deleted file mode 100644 index 91ef59b619..0000000000 --- a/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars.g++.4 +++ /dev/null @@ -1,629 +0,0 @@ -LAMMPS (27 Nov 2018) - using 1 OpenMP thread(s) per MPI task -# Solvated 5-mer peptide - -units real -atom_style full - -pair_style lj/charmm/coul/long 8.0 10.0 10.0 -bond_style harmonic -angle_style charmm -dihedral_style charmm -improper_style harmonic -kspace_style pppm 0.0001 - -read_data data.peptide - orthogonal box = (36.8402 41.0137 29.7681) to (64.2116 68.3851 57.1395) - 1 by 2 by 2 MPI processor grid - reading atoms ... - 2004 atoms - reading velocities ... - 2004 velocities - scanning bonds ... - 3 = max bonds/atom - scanning angles ... - 6 = max angles/atom - scanning dihedrals ... - 14 = max dihedrals/atom - scanning impropers ... - 1 = max impropers/atom - reading bonds ... - 1365 bonds - reading angles ... - 786 angles - reading dihedrals ... - 207 dihedrals - reading impropers ... - 12 impropers - 4 = max # of 1-2 neighbors - 7 = max # of 1-3 neighbors - 14 = max # of 1-4 neighbors - 18 = max # of special neighbors - -neighbor 2.0 bin -neigh_modify delay 5 - -timestep 2.0 - -group peptide type <= 12 -84 atoms in group peptide -group one id 2 4 5 6 -4 atoms in group one -group two id 80 82 83 84 -4 atoms in group two -group ref id 37 -1 atoms in group ref -group colvar union one two ref -9 atoms in group colvar - -fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 - -shell "rm -f out*.colvars.*" -fix 2 all colvars peptide.colvars -fix 2a ref setforce 0.0 0.0 0.0 - -fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 - 19 = # of size 2 clusters - 6 = # of size 3 clusters - 3 = # of size 4 clusters - 640 = # of frozen angles - -#dump 1 colvar custom 1 dump.colvar.lammpstrj id xu yu zu fx fy fz -#dump_modify 1 sort id - -thermo_style custom step temp etotal pe ke epair ebond f_2 -thermo 10 - - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 4312 960 -Neighbor list info ... - update every 1 steps, delay 5 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 12 - ghost atom cutoff = 12 - binsize = 6, bins = 5 5 5 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/charmm/coul/long, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -colvars: Creating proxy instance -colvars: ---------------------------------------------------------------------- -colvars: Initializing the collective variables module, version 2018-11-16. -colvars: Please cite Fiorin et al, Mol Phys 2013: -colvars: https://doi.org/10.1080/00268976.2013.813594 -colvars: in any publication based on this calculation. -colvars: SMP parallelism is available. -colvars: Using LAMMPS interface, version 2018-08-29. -colvars: ---------------------------------------------------------------------- -colvars: Reading new configuration from file "peptide.colvars": -colvars: # smp = on [default] -colvars: # colvarsTrajFrequency = 1 -colvars: # colvarsRestartFrequency = 1000 -colvars: # scriptedColvarForces = off [default] -colvars: # scriptingAfterBiases = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new collective variable. -colvars: # name = "one" -colvars: Initializing a new "distance" component. -colvars: # name = "" [default] -colvars: # componentCoeff = 1 [default] -colvars: # componentExp = 1 [default] -colvars: # period = 0 [default] -colvars: # wrapAround = 0 [default] -colvars: # forceNoPBC = off [default] -colvars: # scalable = on [default] -colvars: Initializing atom group "group1". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group1" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: Initializing atom group "group2". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group2" defined, 1 atoms initialized: total mass = 1, total charge = 0. -colvars: # oneSiteSystemForce = off [default] -colvars: # oneSiteTotalForce = off [default] -colvars: All components initialized. -colvars: # timeStepFactor = 1 [default] -colvars: # width = 1 [default] -colvars: # lowerBoundary = 0 [default] -colvars: # upperBoundary = 0 [default] -colvars: # expandBoundaries = off [default] -colvars: # extendedLagrangian = off [default] -colvars: # outputValue = on [default] -colvars: # outputVelocity = off [default] -colvars: # outputTotalForce = off [default] -colvars: # outputAppliedForce = off [default] -colvars: # subtractAppliedForce = off [default] -colvars: # runAve = off [default] -colvars: # corrFunc = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new collective variable. -colvars: # name = "two" -colvars: Initializing a new "distance" component. -colvars: # name = "" [default] -colvars: # componentCoeff = 1 [default] -colvars: # componentExp = 1 [default] -colvars: # period = 0 [default] -colvars: # wrapAround = 0 [default] -colvars: # forceNoPBC = off [default] -colvars: # scalable = on [default] -colvars: Initializing atom group "group1". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group1" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: Initializing atom group "group2". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group2" defined, 1 atoms initialized: total mass = 1, total charge = 0. -colvars: # oneSiteSystemForce = off [default] -colvars: # oneSiteTotalForce = off [default] -colvars: All components initialized. -colvars: # timeStepFactor = 1 [default] -colvars: # width = 1 [default] -colvars: # lowerBoundary = 0 [default] -colvars: # upperBoundary = 0 [default] -colvars: # expandBoundaries = off [default] -colvars: # extendedLagrangian = off [default] -colvars: # outputValue = on [default] -colvars: # outputVelocity = off [default] -colvars: # outputTotalForce = off [default] -colvars: # outputAppliedForce = off [default] -colvars: # subtractAppliedForce = off [default] -colvars: # runAve = off [default] -colvars: # corrFunc = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables initialized, 2 in total. -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new "harmonic" instance. -colvars: # name = "h_pot" -colvars: # colvars = { one, two } -colvars: # outputEnergy = off [default] -colvars: # timeStepFactor = 1 [default] -colvars: # writeTISamples = off [default] -colvars: # writeTIPMF = off [default] -colvars: # centers = { 10, 10 } -colvars: # targetCenters = { 10, 10 } [default] -colvars: # outputCenters = off [default] -colvars: # forceConstant = 100 -colvars: # targetForceConstant = -1 [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables biases initialized, 1 in total. -colvars: ---------------------------------------------------------------------- -colvars: Collective variables module (re)initialized. -colvars: ---------------------------------------------------------------------- -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 4. -colvars: Re-initialized atom group one:0/1. 1 atoms: total mass = 1. -colvars: Re-initialized atom group two:0/0. 4 atoms: total mass = 4. -colvars: Re-initialized atom group two:0/1. 1 atoms: total mass = 1. -colvars: The restart output state file will be "rest.colvars.state". -colvars: The final output state file will be "out.colvars.state". -colvars: Writing to colvar trajectory file "out.colvars.traj". -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group one:0/1. 1 atoms: total mass = 12.011. -colvars: Re-initialized atom group two:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group two:0/1. 1 atoms: total mass = 12.011. -colvars: Performing analysis. -SHAKE stats (type/ave/delta) on step 0 - 4 1.111 1.44264e-05 - 6 0.996998 7.26967e-06 - 8 1.08 1.32536e-05 - 10 1.111 1.22749e-05 - 12 1.08 1.11767e-05 - 14 0.96 0 - 18 0.957206 4.37979e-05 - 31 104.519 0.00396029 -Per MPI rank memory allocation (min/avg/max) = 15.65 | 15.86 | 16.05 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond f_2 - 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 292.14604 - 10 305.06149 -5058.8972 -6286.1901 1227.2929 -6413.1021 58.8499 103.38345 - 20 311.00516 -4999.0612 -6250.266 1251.2048 -6417.1021 47.695297 36.699695 - 30 314.22337 -4993.7012 -6257.8532 1264.152 -6421.9679 35.344144 10.563933 - 40 297.87491 -5020.8378 -6219.2184 1198.3805 -6389.8528 27.723133 3.8354517 - 50 304.02071 -5056.2576 -6279.3633 1223.1057 -6456.8214 55.459505 0.20678217 - 60 285.92576 -5104.0461 -6254.354 1150.3079 -6435.5814 32.767229 0.69352945 - 70 277.83519 -5163.9758 -6281.7345 1117.7587 -6447.7033 39.627168 11.433603 - 80 267.51495 -5206.4046 -6282.644 1076.2394 -6456.6369 31.611883 6.3554178 - 90 278.15579 -5245.3824 -6364.431 1119.0485 -6499.8063 28.849773 0.36941576 -SHAKE stats (type/ave/delta) on step 100 - 4 1.11098 8.97155e-05 - 6 0.996996 1.00568e-05 - 8 1.08 6.02345e-06 - 10 1.111 1.84253e-05 - 12 1.08 7.2713e-06 - 14 0.959996 0 - 18 0.957198 3.36079e-05 - 31 104.52 0.0030599 - 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 -colvars: Saving collective variables state to "out.colvars.state". -Loop time of 0.614168 on 4 procs for 100 steps with 2004 atoms - -Performance: 28.136 ns/day, 0.853 hours/ns, 162.822 timesteps/s -98.9% CPU use with 4 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.40413 | 0.41468 | 0.42573 | 1.4 | 67.52 -Bond | 0.00056815 | 0.0011595 | 0.0017791 | 1.6 | 0.19 -Kspace | 0.056367 | 0.066512 | 0.076213 | 3.3 | 10.83 -Neigh | 0.095025 | 0.09507 | 0.095124 | 0.0 | 15.48 -Comm | 0.015385 | 0.015831 | 0.01623 | 0.2 | 2.58 -Output | 0.00026512 | 0.00034493 | 0.00057554 | 0.0 | 0.06 -Modify | 0.01938 | 0.019431 | 0.019474 | 0.0 | 3.16 -Other | | 0.001141 | | | 0.19 - -Nlocal: 501 ave 513 max 489 min -Histogram: 1 0 0 0 1 1 0 0 0 1 -Nghost: 6563.25 ave 6596 max 6519 min -Histogram: 1 0 1 0 0 0 0 0 0 2 -Neighs: 177059 ave 181742 max 172942 min -Histogram: 1 0 1 0 0 0 1 0 0 1 - -Total # of neighbors = 708237 -Ave neighs/atom = 353.412 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 12 -Dangerous builds = 2 - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 4312 960 -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group one:0/1. 1 atoms: total mass = 12.011. -colvars: Re-initialized atom group two:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group two:0/1. 1 atoms: total mass = 12.011. -SHAKE stats (type/ave/delta) on step 100 - 4 1.11098 8.97155e-05 - 6 0.996996 1.00568e-05 - 8 1.08 6.02345e-06 - 10 1.111 1.84253e-05 - 12 1.08 7.2713e-06 - 14 0.959996 0 - 18 0.957198 3.36079e-05 - 31 104.52 0.0030599 -Per MPI rank memory allocation (min/avg/max) = 15.66 | 15.86 | 16.06 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond f_2 - 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 - 110 266.26438 -5341.1991 -6412.4073 1071.2082 -6552.7551 33.573173 1.9229657 - 120 262.66604 -5386.2387 -6442.9704 1056.7317 -6587.5483 29.859587 2.7124812 - 130 252.83379 -5422.5401 -6439.7157 1017.1756 -6580.4703 25.979343 1.2031592 - 140 253.85111 -5452.1838 -6473.4521 1021.2684 -6609.4826 26.071651 0.30585517 - 150 261.31816 -5490.4726 -6541.7817 1051.3091 -6646.6075 16.258823 6.9051008 - 160 255.7352 -5521.5941 -6550.4423 1028.8483 -6658.1373 19.717399 12.339679 - 170 253.42527 -5540.0941 -6559.6493 1019.5552 -6656.6677 23.293812 10.290217 - 180 248.51161 -5550.3253 -6550.1124 999.78704 -6661.4235 26.200127 3.4336037 - 190 250.80862 -5555.2553 -6564.2834 1009.0282 -6666.1638 25.53634 3.3494287 -SHAKE stats (type/ave/delta) on step 200 - 4 1.111 1.81266e-06 - 6 0.997 7.79424e-07 - 8 1.08 1.08903e-06 - 10 1.111 2.96503e-07 - 12 1.08 4.69038e-07 - 14 0.960001 0 - 18 0.957201 3.76471e-06 - 31 104.52 0.000411055 - 200 251.50475 -5557.4251 -6569.2539 1011.8288 -6674.0845 24.804905 7.1387572 -colvars: Saving collective variables state to "out.colvars.state". -Loop time of 0.569733 on 4 procs for 100 steps with 2004 atoms - -Performance: 30.330 ns/day, 0.791 hours/ns, 175.521 timesteps/s -98.9% CPU use with 4 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.40512 | 0.41306 | 0.42363 | 1.3 | 72.50 -Bond | 0.00061107 | 0.001151 | 0.0017512 | 1.4 | 0.20 -Kspace | 0.054393 | 0.063988 | 0.07198 | 3.0 | 11.23 -Neigh | 0.056063 | 0.056079 | 0.05609 | 0.0 | 9.84 -Comm | 0.013584 | 0.014145 | 0.014649 | 0.3 | 2.48 -Output | 0.00026965 | 0.00042897 | 0.00090265 | 0.0 | 0.08 -Modify | 0.019253 | 0.019257 | 0.01926 | 0.0 | 3.38 -Other | | 0.001623 | | | 0.28 - -Nlocal: 501 ave 513 max 481 min -Histogram: 1 0 0 0 0 0 1 0 1 1 -Nghost: 6556.5 ave 6608 max 6514 min -Histogram: 2 0 0 0 0 0 0 1 0 1 -Neighs: 177021 ave 182259 max 172089 min -Histogram: 2 0 0 0 0 0 0 0 1 1 - -Total # of neighbors = 708083 -Ave neighs/atom = 353.335 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 7 -Dangerous builds = 0 - -fix 2 all colvars peptide.colvars input out.colvars.state output out2 -colvars: Resetting the Collective Variables module. - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 4312 960 -colvars: Creating proxy instance -colvars: ---------------------------------------------------------------------- -colvars: Initializing the collective variables module, version 2018-11-16. -colvars: Please cite Fiorin et al, Mol Phys 2013: -colvars: https://doi.org/10.1080/00268976.2013.813594 -colvars: in any publication based on this calculation. -colvars: SMP parallelism is available. -colvars: Using LAMMPS interface, version 2018-08-29. -colvars: ---------------------------------------------------------------------- -colvars: Reading new configuration from file "peptide.colvars": -colvars: # smp = on [default] -colvars: # colvarsTrajFrequency = 1 -colvars: # colvarsRestartFrequency = 1000 -colvars: # scriptedColvarForces = off [default] -colvars: # scriptingAfterBiases = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new collective variable. -colvars: # name = "one" -colvars: Initializing a new "distance" component. -colvars: # name = "" [default] -colvars: # componentCoeff = 1 [default] -colvars: # componentExp = 1 [default] -colvars: # period = 0 [default] -colvars: # wrapAround = 0 [default] -colvars: # forceNoPBC = off [default] -colvars: # scalable = on [default] -colvars: Initializing atom group "group1". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group1" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: Initializing atom group "group2". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group2" defined, 1 atoms initialized: total mass = 1, total charge = 0. -colvars: # oneSiteSystemForce = off [default] -colvars: # oneSiteTotalForce = off [default] -colvars: All components initialized. -colvars: # timeStepFactor = 1 [default] -colvars: # width = 1 [default] -colvars: # lowerBoundary = 0 [default] -colvars: # upperBoundary = 0 [default] -colvars: # expandBoundaries = off [default] -colvars: # extendedLagrangian = off [default] -colvars: # outputValue = on [default] -colvars: # outputVelocity = off [default] -colvars: # outputTotalForce = off [default] -colvars: # outputAppliedForce = off [default] -colvars: # subtractAppliedForce = off [default] -colvars: # runAve = off [default] -colvars: # corrFunc = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new collective variable. -colvars: # name = "two" -colvars: Initializing a new "distance" component. -colvars: # name = "" [default] -colvars: # componentCoeff = 1 [default] -colvars: # componentExp = 1 [default] -colvars: # period = 0 [default] -colvars: # wrapAround = 0 [default] -colvars: # forceNoPBC = off [default] -colvars: # scalable = on [default] -colvars: Initializing atom group "group1". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group1" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: Initializing atom group "group2". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group2" defined, 1 atoms initialized: total mass = 1, total charge = 0. -colvars: # oneSiteSystemForce = off [default] -colvars: # oneSiteTotalForce = off [default] -colvars: All components initialized. -colvars: # timeStepFactor = 1 [default] -colvars: # width = 1 [default] -colvars: # lowerBoundary = 0 [default] -colvars: # upperBoundary = 0 [default] -colvars: # expandBoundaries = off [default] -colvars: # extendedLagrangian = off [default] -colvars: # outputValue = on [default] -colvars: # outputVelocity = off [default] -colvars: # outputTotalForce = off [default] -colvars: # outputAppliedForce = off [default] -colvars: # subtractAppliedForce = off [default] -colvars: # runAve = off [default] -colvars: # corrFunc = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables initialized, 2 in total. -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new "harmonic" instance. -colvars: # name = "h_pot" -colvars: # colvars = { one, two } -colvars: # outputEnergy = off [default] -colvars: # timeStepFactor = 1 [default] -colvars: # writeTISamples = off [default] -colvars: # writeTIPMF = off [default] -colvars: # centers = { 10, 10 } -colvars: # targetCenters = { 10, 10 } [default] -colvars: # outputCenters = off [default] -colvars: # forceConstant = 100 -colvars: # targetForceConstant = -1 [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables biases initialized, 1 in total. -colvars: ---------------------------------------------------------------------- -colvars: Collective variables module (re)initialized. -colvars: ---------------------------------------------------------------------- -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 4. -colvars: Re-initialized atom group one:0/1. 1 atoms: total mass = 1. -colvars: Re-initialized atom group two:0/0. 4 atoms: total mass = 4. -colvars: Re-initialized atom group two:0/1. 1 atoms: total mass = 1. -colvars: ---------------------------------------------------------------------- -colvars: Restarting from file "out.colvars.state". -colvars: Restarting collective variable "one" from value: 10.0128 -colvars: Restarting collective variable "two" from value: 9.62236 -colvars: ---------------------------------------------------------------------- -colvars: The restart output state file will be "rest.colvars.state". -colvars: The final output state file will be "out2.colvars.state". -colvars: Writing to colvar trajectory file "out2.colvars.traj". -colvars: Setting initial step number from LAMMPS: 200 -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group one:0/1. 1 atoms: total mass = 12.011. -colvars: Re-initialized atom group two:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group two:0/1. 1 atoms: total mass = 12.011. -colvars: Performing analysis. -SHAKE stats (type/ave/delta) on step 200 - 4 1.111 1.81266e-06 - 6 0.997 7.79424e-07 - 8 1.08 1.08903e-06 - 10 1.111 2.96503e-07 - 12 1.08 4.69038e-07 - 14 0.960001 0 - 18 0.957201 3.76471e-06 - 31 104.52 0.000411055 -Per MPI rank memory allocation (min/avg/max) = 15.66 | 15.86 | 16.06 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond f_2 - 200 251.50475 -5557.4251 -6569.2539 1011.8288 -6674.0845 24.804905 7.1387572 - 210 253.15304 -5538.5615 -6557.0215 1018.46 -6672.0498 37.676621 0.61219486 - 220 245.19621 -5522.5189 -6508.9678 986.44888 -6628.1898 36.657688 0.048643368 - 230 258.69885 -5495.7276 -6536.4989 1040.7713 -6658.2887 34.857911 0.22092541 - 240 260.79635 -5469.8677 -6519.0775 1049.2098 -6624.18 31.576952 3.7574818 - 250 269.07527 -5438.3947 -6520.9115 1082.5167 -6616.4384 25.447674 8.6600013 - 260 266.0105 -5397.3486 -6467.5354 1070.1868 -6580.2898 26.871917 8.3323096 - 270 272.81314 -5350.8819 -6448.4364 1097.5545 -6563.823 23.114195 10.973131 - 280 279.42263 -5307.9799 -6432.125 1124.1452 -6557.3367 33.644027 8.5490488 - 290 286.8517 -5260.8409 -6414.874 1154.0331 -6515.6797 28.574839 5.9100135 -SHAKE stats (type/ave/delta) on step 300 - 4 1.111 1.79792e-05 - 6 0.997005 1.02512e-05 - 8 1.08 1.85102e-05 - 10 1.111 9.98838e-06 - 12 1.08 8.84113e-06 - 14 0.960008 0 - 18 0.957203 1.8445e-05 - 31 104.52 0.00168382 - 300 291.52794 -5216.2881 -6389.1342 1172.846 -6503.1276 27.889153 2.248246 -colvars: Saving collective variables state to "out2.colvars.state". -Loop time of 0.584942 on 4 procs for 100 steps with 2004 atoms - -Performance: 29.541 ns/day, 0.812 hours/ns, 170.957 timesteps/s -99.0% CPU use with 4 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.41044 | 0.41882 | 0.42773 | 1.1 | 71.60 -Bond | 0.00056911 | 0.0011486 | 0.0018017 | 1.4 | 0.20 -Kspace | 0.056211 | 0.064277 | 0.072168 | 2.7 | 10.99 -Neigh | 0.064606 | 0.064613 | 0.064617 | 0.0 | 11.05 -Comm | 0.013311 | 0.013966 | 0.015175 | 0.6 | 2.39 -Output | 0.00027871 | 0.00051689 | 0.0012221 | 0.0 | 0.09 -Modify | 0.019776 | 0.0199 | 0.020015 | 0.1 | 3.40 -Other | | 0.001705 | | | 0.29 - -Nlocal: 501 ave 513 max 472 min -Histogram: 1 0 0 0 0 0 0 0 0 3 -Nghost: 6612.75 ave 6681 max 6561 min -Histogram: 1 1 0 0 0 1 0 0 0 1 -Neighs: 177038 ave 180136 max 170218 min -Histogram: 1 0 0 0 0 0 0 1 0 2 - -Total # of neighbors = 708152 -Ave neighs/atom = 353.369 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 8 -Dangerous builds = 0 - -colvars: Resetting the Collective Variables module. - -Please see the log.cite file for references relevant to this simulation - -Total wall time: 0:00:01 diff --git a/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars2.g++.1 b/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars2.g++.1 deleted file mode 100644 index df7aca475f..0000000000 --- a/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars2.g++.1 +++ /dev/null @@ -1,260 +0,0 @@ -LAMMPS (27 Nov 2018) - using 1 OpenMP thread(s) per MPI task -# Solvated 5-mer peptide - -units real -atom_style full - -pair_style lj/charmm/coul/long 8.0 10.0 10.0 -bond_style harmonic -angle_style charmm -dihedral_style charmm -improper_style harmonic -kspace_style pppm 0.0001 - -read_data data.peptide - orthogonal box = (36.8402 41.0137 29.7681) to (64.2116 68.3851 57.1395) - 1 by 1 by 1 MPI processor grid - reading atoms ... - 2004 atoms - reading velocities ... - 2004 velocities - scanning bonds ... - 3 = max bonds/atom - scanning angles ... - 6 = max angles/atom - scanning dihedrals ... - 14 = max dihedrals/atom - scanning impropers ... - 1 = max impropers/atom - reading bonds ... - 1365 bonds - reading angles ... - 786 angles - reading dihedrals ... - 207 dihedrals - reading impropers ... - 12 impropers - 4 = max # of 1-2 neighbors - 7 = max # of 1-3 neighbors - 14 = max # of 1-4 neighbors - 18 = max # of special neighbors - -neighbor 2.0 bin -neigh_modify delay 5 - -timestep 2.0 - -group peptide type <= 12 -84 atoms in group peptide -group one id 2 4 5 6 -4 atoms in group one -group two id 80 82 83 84 -4 atoms in group two -group ref id 37 -1 atoms in group ref -group colvar union one two ref -9 atoms in group colvar - -fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 - -shell "rm -f peptide2.colvars.*" -fix 2 all colvars peptide.colvars2 output peptide2 - -fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 - 19 = # of size 2 clusters - 6 = # of size 3 clusters - 3 = # of size 4 clusters - 640 = # of frozen angles - -#dump 1 colvar custom 1 dump.colvar2.lammpstrj id xu yu zu fx fy fz -#dump_modify 1 sort id - -thermo_style custom step temp etotal pe ke epair ebond f_2 -thermo 10 - - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 10648 3375 -Neighbor list info ... - update every 1 steps, delay 5 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 12 - ghost atom cutoff = 12 - binsize = 6, bins = 5 5 5 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/charmm/coul/long, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -colvars: Creating proxy instance -colvars: ---------------------------------------------------------------------- -colvars: Initializing the collective variables module, version 2018-11-16. -colvars: Please cite Fiorin et al, Mol Phys 2013: -colvars: https://doi.org/10.1080/00268976.2013.813594 -colvars: in any publication based on this calculation. -colvars: SMP parallelism is available. -colvars: Using LAMMPS interface, version 2018-08-29. -colvars: ---------------------------------------------------------------------- -colvars: Reading new configuration from file "peptide.colvars2": -colvars: # smp = on [default] -colvars: # colvarsTrajFrequency = 1 -colvars: # colvarsRestartFrequency = 1000 -colvars: # scriptedColvarForces = off [default] -colvars: # scriptingAfterBiases = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new collective variable. -colvars: # name = "one" -colvars: Initializing a new "distance" component. -colvars: # name = "" [default] -colvars: # componentCoeff = 1 [default] -colvars: # componentExp = 1 [default] -colvars: # period = 0 [default] -colvars: # wrapAround = 0 [default] -colvars: # forceNoPBC = off [default] -colvars: # scalable = on [default] -colvars: Initializing atom group "group1". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group1" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: Initializing atom group "group2". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group2" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: # oneSiteSystemForce = off [default] -colvars: # oneSiteTotalForce = off [default] -colvars: All components initialized. -colvars: # timeStepFactor = 1 [default] -colvars: # width = 1 [default] -colvars: # lowerBoundary = 0 [default] -colvars: # upperBoundary = 0 [default] -colvars: # expandBoundaries = off [default] -colvars: # extendedLagrangian = off [default] -colvars: # outputValue = on [default] -colvars: # outputVelocity = off [default] -colvars: # outputTotalForce = off [default] -colvars: # outputAppliedForce = off [default] -colvars: # subtractAppliedForce = off [default] -colvars: # runAve = off [default] -colvars: # corrFunc = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables initialized, 1 in total. -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new "harmonic" instance. -colvars: # name = "h_pot" -colvars: # colvars = { one } -colvars: # outputEnergy = off [default] -colvars: # timeStepFactor = 1 [default] -colvars: # writeTISamples = off [default] -colvars: # writeTIPMF = off [default] -colvars: # centers = { 10 } -colvars: # targetCenters = { 10 } [default] -colvars: # outputCenters = off [default] -colvars: # forceConstant = 100 -colvars: # targetForceConstant = -1 [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables biases initialized, 1 in total. -colvars: ---------------------------------------------------------------------- -colvars: Collective variables module (re)initialized. -colvars: ---------------------------------------------------------------------- -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 4. -colvars: Re-initialized atom group one:0/1. 4 atoms: total mass = 4. -colvars: The restart output state file will be "rest.colvars.state". -colvars: The final output state file will be "peptide2.colvars.state". -colvars: Writing to colvar trajectory file "peptide2.colvars.traj". -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group one:0/1. 4 atoms: total mass = 15.035. -colvars: Performing analysis. -SHAKE stats (type/ave/delta) on step 0 - 4 1.111 1.44264e-05 - 6 0.996998 7.26967e-06 - 8 1.08 1.32536e-05 - 10 1.111 1.22749e-05 - 12 1.08 1.11767e-05 - 14 0.96 0 - 18 0.957206 4.37979e-05 - 31 104.519 0.00396029 -Per MPI rank memory allocation (min/avg/max) = 18.7 | 18.7 | 18.7 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond f_2 - 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 273.74323 - 10 333.47919 -4982.3968 -6324.0169 1341.6201 -6400.4223 21.367762 12.393263 - 20 309.56902 -4999.4978 -6244.9249 1245.4271 -6401.6981 43.59542 13.004314 - 30 316.9763 -5025.5662 -6300.7935 1275.2273 -6422.5375 27.323196 6.7589585 - 40 297.55779 -5088.2204 -6285.3252 1197.1047 -6395.375 13.6769 25.625024 - 50 296.79994 -5117.2966 -6311.3525 1194.0558 -6451.8309 30.631241 5.3320863 - 60 281.72778 -5188.4969 -6321.9159 1133.419 -6427.8856 26.287723 20.574037 - 70 277.26053 -5224.8434 -6340.2902 1115.4468 -6447.8521 27.742893 0.69420283 - 80 268.01484 -5281.8509 -6360.1014 1078.2505 -6496.6086 20.300754 5.2607186 - 90 270.43472 -5334.0835 -6422.0694 1087.9859 -6563.2511 39.846095 1.1832272 -SHAKE stats (type/ave/delta) on step 100 - 4 1.11096 0.000191462 - 6 0.996989 3.55508e-05 - 8 1.08 9.0997e-06 - 10 1.111 1.58544e-05 - 12 1.08 5.80604e-06 - 14 0.959997 0 - 18 0.957198 2.92445e-05 - 31 104.52 0.00239923 - 100 260.35636 -5387.2284 -6434.6681 1047.4397 -6534.1956 20.246866 0.075048487 -colvars: Saving collective variables state to "peptide2.colvars.state". -Loop time of 2.25958 on 1 procs for 100 steps with 2004 atoms - -Performance: 7.647 ns/day, 3.138 hours/ns, 44.256 timesteps/s -99.8% CPU use with 1 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 1.6373 | 1.6373 | 1.6373 | 0.0 | 72.46 -Bond | 0.0031531 | 0.0031531 | 0.0031531 | 0.0 | 0.14 -Kspace | 0.17439 | 0.17439 | 0.17439 | 0.0 | 7.72 -Neigh | 0.40442 | 0.40442 | 0.40442 | 0.0 | 17.90 -Comm | 0.014091 | 0.014091 | 0.014091 | 0.0 | 0.62 -Output | 0.00027752 | 0.00027752 | 0.00027752 | 0.0 | 0.01 -Modify | 0.024481 | 0.024481 | 0.024481 | 0.0 | 1.08 -Other | | 0.001465 | | | 0.06 - -Nlocal: 2004 ave 2004 max 2004 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 11143 ave 11143 max 11143 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 708234 ave 708234 max 708234 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 708234 -Ave neighs/atom = 353.41 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 13 -Dangerous builds = 1 -colvars: Resetting the Collective Variables module. - -Please see the log.cite file for references relevant to this simulation - -Total wall time: 0:00:02 diff --git a/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars2.g++.4 b/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars2.g++.4 deleted file mode 100644 index b1916fda17..0000000000 --- a/examples/PACKAGES/colvars/log.27Nov18.peptide-colvars2.g++.4 +++ /dev/null @@ -1,260 +0,0 @@ -LAMMPS (27 Nov 2018) - using 1 OpenMP thread(s) per MPI task -# Solvated 5-mer peptide - -units real -atom_style full - -pair_style lj/charmm/coul/long 8.0 10.0 10.0 -bond_style harmonic -angle_style charmm -dihedral_style charmm -improper_style harmonic -kspace_style pppm 0.0001 - -read_data data.peptide - orthogonal box = (36.8402 41.0137 29.7681) to (64.2116 68.3851 57.1395) - 1 by 2 by 2 MPI processor grid - reading atoms ... - 2004 atoms - reading velocities ... - 2004 velocities - scanning bonds ... - 3 = max bonds/atom - scanning angles ... - 6 = max angles/atom - scanning dihedrals ... - 14 = max dihedrals/atom - scanning impropers ... - 1 = max impropers/atom - reading bonds ... - 1365 bonds - reading angles ... - 786 angles - reading dihedrals ... - 207 dihedrals - reading impropers ... - 12 impropers - 4 = max # of 1-2 neighbors - 7 = max # of 1-3 neighbors - 14 = max # of 1-4 neighbors - 18 = max # of special neighbors - -neighbor 2.0 bin -neigh_modify delay 5 - -timestep 2.0 - -group peptide type <= 12 -84 atoms in group peptide -group one id 2 4 5 6 -4 atoms in group one -group two id 80 82 83 84 -4 atoms in group two -group ref id 37 -1 atoms in group ref -group colvar union one two ref -9 atoms in group colvar - -fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 - -shell "rm -f peptide2.colvars.*" -fix 2 all colvars peptide.colvars2 output peptide2 - -fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 - 19 = # of size 2 clusters - 6 = # of size 3 clusters - 3 = # of size 4 clusters - 640 = # of frozen angles - -#dump 1 colvar custom 1 dump.colvar2.lammpstrj id xu yu zu fx fy fz -#dump_modify 1 sort id - -thermo_style custom step temp etotal pe ke epair ebond f_2 -thermo 10 - - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 4312 960 -Neighbor list info ... - update every 1 steps, delay 5 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 12 - ghost atom cutoff = 12 - binsize = 6, bins = 5 5 5 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/charmm/coul/long, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -colvars: Creating proxy instance -colvars: ---------------------------------------------------------------------- -colvars: Initializing the collective variables module, version 2018-11-16. -colvars: Please cite Fiorin et al, Mol Phys 2013: -colvars: https://doi.org/10.1080/00268976.2013.813594 -colvars: in any publication based on this calculation. -colvars: SMP parallelism is available. -colvars: Using LAMMPS interface, version 2018-08-29. -colvars: ---------------------------------------------------------------------- -colvars: Reading new configuration from file "peptide.colvars2": -colvars: # smp = on [default] -colvars: # colvarsTrajFrequency = 1 -colvars: # colvarsRestartFrequency = 1000 -colvars: # scriptedColvarForces = off [default] -colvars: # scriptingAfterBiases = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new collective variable. -colvars: # name = "one" -colvars: Initializing a new "distance" component. -colvars: # name = "" [default] -colvars: # componentCoeff = 1 [default] -colvars: # componentExp = 1 [default] -colvars: # period = 0 [default] -colvars: # wrapAround = 0 [default] -colvars: # forceNoPBC = off [default] -colvars: # scalable = on [default] -colvars: Initializing atom group "group1". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group1" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: Initializing atom group "group2". -colvars: # name = "" [default] -colvars: # centerReference = off [default] -colvars: # rotateReference = off [default] -colvars: # atomsOfGroup = "" [default] -colvars: # indexGroup = "" [default] -colvars: # psfSegID = [default] -colvars: # atomsFile = "" [default] -colvars: # dummyAtom = ( 0 , 0 , 0 ) [default] -colvars: # enableForces = on [default] -colvars: # enableFitGradients = on [default] -colvars: # printAtomIDs = off [default] -colvars: Atom group "group2" defined, 4 atoms initialized: total mass = 4, total charge = 0. -colvars: # oneSiteSystemForce = off [default] -colvars: # oneSiteTotalForce = off [default] -colvars: All components initialized. -colvars: # timeStepFactor = 1 [default] -colvars: # width = 1 [default] -colvars: # lowerBoundary = 0 [default] -colvars: # upperBoundary = 0 [default] -colvars: # expandBoundaries = off [default] -colvars: # extendedLagrangian = off [default] -colvars: # outputValue = on [default] -colvars: # outputVelocity = off [default] -colvars: # outputTotalForce = off [default] -colvars: # outputAppliedForce = off [default] -colvars: # subtractAppliedForce = off [default] -colvars: # runAve = off [default] -colvars: # corrFunc = off [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables initialized, 1 in total. -colvars: ---------------------------------------------------------------------- -colvars: Initializing a new "harmonic" instance. -colvars: # name = "h_pot" -colvars: # colvars = { one } -colvars: # outputEnergy = off [default] -colvars: # timeStepFactor = 1 [default] -colvars: # writeTISamples = off [default] -colvars: # writeTIPMF = off [default] -colvars: # centers = { 10 } -colvars: # targetCenters = { 10 } [default] -colvars: # outputCenters = off [default] -colvars: # forceConstant = 100 -colvars: # targetForceConstant = -1 [default] -colvars: ---------------------------------------------------------------------- -colvars: Collective variables biases initialized, 1 in total. -colvars: ---------------------------------------------------------------------- -colvars: Collective variables module (re)initialized. -colvars: ---------------------------------------------------------------------- -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 4. -colvars: Re-initialized atom group one:0/1. 4 atoms: total mass = 4. -colvars: The restart output state file will be "rest.colvars.state". -colvars: The final output state file will be "peptide2.colvars.state". -colvars: Writing to colvar trajectory file "peptide2.colvars.traj". -colvars: Re-initialized atom group one:0/0. 4 atoms: total mass = 15.035. -colvars: Re-initialized atom group one:0/1. 4 atoms: total mass = 15.035. -colvars: Performing analysis. -SHAKE stats (type/ave/delta) on step 0 - 4 1.111 1.44264e-05 - 6 0.996998 7.26967e-06 - 8 1.08 1.32536e-05 - 10 1.111 1.22749e-05 - 12 1.08 1.11767e-05 - 14 0.96 0 - 18 0.957206 4.37979e-05 - 31 104.519 0.00396029 -Per MPI rank memory allocation (min/avg/max) = 15.65 | 15.86 | 16.05 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond f_2 - 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 273.74323 - 10 333.47919 -4982.3968 -6324.0169 1341.6201 -6400.4223 21.367762 12.393263 - 20 309.56902 -4999.4978 -6244.9249 1245.4271 -6401.6981 43.59542 13.004314 - 30 316.9763 -5025.5662 -6300.7935 1275.2273 -6422.5375 27.323196 6.7589585 - 40 297.55779 -5088.2204 -6285.3252 1197.1047 -6395.375 13.6769 25.625024 - 50 296.79994 -5117.2966 -6311.3525 1194.0558 -6451.8309 30.631241 5.3320863 - 60 281.72778 -5188.4969 -6321.9159 1133.419 -6427.8856 26.287723 20.574037 - 70 277.26053 -5224.8434 -6340.2902 1115.4468 -6447.8521 27.742893 0.69420283 - 80 268.01484 -5281.8509 -6360.1014 1078.2505 -6496.6086 20.300754 5.2607186 - 90 270.43472 -5334.0835 -6422.0694 1087.9859 -6563.2511 39.846095 1.1832272 -SHAKE stats (type/ave/delta) on step 100 - 4 1.11096 0.000191462 - 6 0.996989 3.55508e-05 - 8 1.08 9.0997e-06 - 10 1.111 1.58544e-05 - 12 1.08 5.80604e-06 - 14 0.959997 0 - 18 0.957198 2.92445e-05 - 31 104.52 0.00239923 - 100 260.35636 -5387.2284 -6434.6681 1047.4397 -6534.1956 20.246866 0.075048487 -colvars: Saving collective variables state to "peptide2.colvars.state". -Loop time of 0.629325 on 4 procs for 100 steps with 2004 atoms - -Performance: 27.458 ns/day, 0.874 hours/ns, 158.900 timesteps/s -99.3% CPU use with 4 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.4012 | 0.41532 | 0.42829 | 1.9 | 65.99 -Bond | 0.0005219 | 0.0011545 | 0.0018291 | 1.8 | 0.18 -Kspace | 0.059271 | 0.071301 | 0.084393 | 4.4 | 11.33 -Neigh | 0.10416 | 0.10419 | 0.10424 | 0.0 | 16.56 -Comm | 0.015643 | 0.016628 | 0.017256 | 0.5 | 2.64 -Output | 0.00025177 | 0.00033599 | 0.00058722 | 0.0 | 0.05 -Modify | 0.01912 | 0.019129 | 0.019141 | 0.0 | 3.04 -Other | | 0.001264 | | | 0.20 - -Nlocal: 501 ave 513 max 494 min -Histogram: 1 1 0 1 0 0 0 0 0 1 -Nghost: 6572.5 ave 6593 max 6548 min -Histogram: 1 0 1 0 0 0 0 0 0 2 -Neighs: 177058 ave 181778 max 174301 min -Histogram: 2 0 0 0 1 0 0 0 0 1 - -Total # of neighbors = 708234 -Ave neighs/atom = 353.41 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 13 -Dangerous builds = 1 -colvars: Resetting the Collective Variables module. - -Please see the log.cite file for references relevant to this simulation - -Total wall time: 0:00:00 diff --git a/examples/PACKAGES/colvars/log.27Nov18.peptide-spring.g++.1 b/examples/PACKAGES/colvars/log.27Nov18.peptide-spring.g++.1 deleted file mode 100644 index a6801fe306..0000000000 --- a/examples/PACKAGES/colvars/log.27Nov18.peptide-spring.g++.1 +++ /dev/null @@ -1,163 +0,0 @@ -LAMMPS (27 Nov 2018) - using 1 OpenMP thread(s) per MPI task -# Solvated 5-mer peptide - -units real -atom_style full - -pair_style lj/charmm/coul/long 8.0 10.0 10.0 -bond_style harmonic -angle_style charmm -dihedral_style charmm -improper_style harmonic -kspace_style pppm 0.0001 - -read_data data.peptide - orthogonal box = (36.8402 41.0137 29.7681) to (64.2116 68.3851 57.1395) - 1 by 1 by 1 MPI processor grid - reading atoms ... - 2004 atoms - reading velocities ... - 2004 velocities - scanning bonds ... - 3 = max bonds/atom - scanning angles ... - 6 = max angles/atom - scanning dihedrals ... - 14 = max dihedrals/atom - scanning impropers ... - 1 = max impropers/atom - reading bonds ... - 1365 bonds - reading angles ... - 786 angles - reading dihedrals ... - 207 dihedrals - reading impropers ... - 12 impropers - 4 = max # of 1-2 neighbors - 7 = max # of 1-3 neighbors - 14 = max # of 1-4 neighbors - 18 = max # of special neighbors - -neighbor 2.0 bin -neigh_modify delay 5 - -timestep 2.0 - -group peptide type <= 12 -84 atoms in group peptide -group one id 2 4 5 6 -4 atoms in group one -group two id 80 82 83 84 -4 atoms in group two -group ref id 37 -1 atoms in group ref -group colvar union one two ref -9 atoms in group colvar - -fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 - -fix 3a one spring couple ref 100.0 0.0 0.0 0.0 10.0 -fix 3b two spring couple ref 100.0 0.0 0.0 0.0 10.0 - -fix 2a ref setforce 0.0 0.0 0.0 - -fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 - 19 = # of size 2 clusters - 6 = # of size 3 clusters - 3 = # of size 4 clusters - 640 = # of frozen angles - -#dump 1 colvar custom 1 dump.spring.lammpstrj id xu yu zu fx fy fz -#dump_modify 1 sort id - -variable sp equal f_3a+f_3b - -thermo_style custom step temp etotal pe ke epair ebond v_sp -thermo 10 - - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 10648 3375 -Neighbor list info ... - update every 1 steps, delay 5 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 12 - ghost atom cutoff = 12 - binsize = 6, bins = 5 5 5 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/charmm/coul/long, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -SHAKE stats (type/ave/delta) on step 0 - 4 1.111 1.44264e-05 - 6 0.996998 7.26967e-06 - 8 1.08 1.32536e-05 - 10 1.111 1.22749e-05 - 12 1.08 1.11767e-05 - 14 0.96 0 - 18 0.957206 4.37979e-05 - 31 104.519 0.00396029 -Per MPI rank memory allocation (min/avg/max) = 18.7 | 18.7 | 18.7 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond v_sp - 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 292.14604 - 10 305.06149 -5058.8972 -6286.1901 1227.2929 -6413.1021 58.8499 103.38345 - 20 311.00516 -4999.0612 -6250.266 1251.2048 -6417.1021 47.695297 36.699695 - 30 314.22337 -4993.7012 -6257.8532 1264.152 -6421.9679 35.344144 10.563933 - 40 297.87491 -5020.8378 -6219.2184 1198.3805 -6389.8528 27.723133 3.8354517 - 50 304.02071 -5056.2576 -6279.3633 1223.1057 -6456.8214 55.459505 0.20678217 - 60 285.92576 -5104.0461 -6254.354 1150.3079 -6435.5814 32.767229 0.69352945 - 70 277.83519 -5163.9758 -6281.7345 1117.7587 -6447.7033 39.627168 11.433603 - 80 267.51495 -5206.4046 -6282.644 1076.2394 -6456.6369 31.611883 6.3554178 - 90 278.15579 -5245.3824 -6364.431 1119.0485 -6499.8063 28.849773 0.36941576 -SHAKE stats (type/ave/delta) on step 100 - 4 1.11098 8.97155e-05 - 6 0.996996 1.00568e-05 - 8 1.08 6.02345e-06 - 10 1.111 1.84253e-05 - 12 1.08 7.2713e-06 - 14 0.959996 0 - 18 0.957198 3.36079e-05 - 31 104.52 0.0030599 - 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 -Loop time of 2.21146 on 1 procs for 100 steps with 2004 atoms - -Performance: 7.814 ns/day, 3.071 hours/ns, 45.219 timesteps/s -99.9% CPU use with 1 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 1.6195 | 1.6195 | 1.6195 | 0.0 | 73.23 -Bond | 0.0033534 | 0.0033534 | 0.0033534 | 0.0 | 0.15 -Kspace | 0.17464 | 0.17464 | 0.17464 | 0.0 | 7.90 -Neigh | 0.37337 | 0.37337 | 0.37337 | 0.0 | 16.88 -Comm | 0.013891 | 0.013891 | 0.013891 | 0.0 | 0.63 -Output | 0.00037336 | 0.00037336 | 0.00037336 | 0.0 | 0.02 -Modify | 0.024753 | 0.024753 | 0.024753 | 0.0 | 1.12 -Other | | 0.001613 | | | 0.07 - -Nlocal: 2004 ave 2004 max 2004 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 11124 ave 11124 max 11124 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 708237 ave 708237 max 708237 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 708237 -Ave neighs/atom = 353.412 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 12 -Dangerous builds = 2 -Total wall time: 0:00:02 diff --git a/examples/PACKAGES/colvars/log.27Nov18.peptide-spring.g++.4 b/examples/PACKAGES/colvars/log.27Nov18.peptide-spring.g++.4 deleted file mode 100644 index 025c371640..0000000000 --- a/examples/PACKAGES/colvars/log.27Nov18.peptide-spring.g++.4 +++ /dev/null @@ -1,163 +0,0 @@ -LAMMPS (27 Nov 2018) - using 1 OpenMP thread(s) per MPI task -# Solvated 5-mer peptide - -units real -atom_style full - -pair_style lj/charmm/coul/long 8.0 10.0 10.0 -bond_style harmonic -angle_style charmm -dihedral_style charmm -improper_style harmonic -kspace_style pppm 0.0001 - -read_data data.peptide - orthogonal box = (36.8402 41.0137 29.7681) to (64.2116 68.3851 57.1395) - 1 by 2 by 2 MPI processor grid - reading atoms ... - 2004 atoms - reading velocities ... - 2004 velocities - scanning bonds ... - 3 = max bonds/atom - scanning angles ... - 6 = max angles/atom - scanning dihedrals ... - 14 = max dihedrals/atom - scanning impropers ... - 1 = max impropers/atom - reading bonds ... - 1365 bonds - reading angles ... - 786 angles - reading dihedrals ... - 207 dihedrals - reading impropers ... - 12 impropers - 4 = max # of 1-2 neighbors - 7 = max # of 1-3 neighbors - 14 = max # of 1-4 neighbors - 18 = max # of special neighbors - -neighbor 2.0 bin -neigh_modify delay 5 - -timestep 2.0 - -group peptide type <= 12 -84 atoms in group peptide -group one id 2 4 5 6 -4 atoms in group one -group two id 80 82 83 84 -4 atoms in group two -group ref id 37 -1 atoms in group ref -group colvar union one two ref -9 atoms in group colvar - -fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 - -fix 3a one spring couple ref 100.0 0.0 0.0 0.0 10.0 -fix 3b two spring couple ref 100.0 0.0 0.0 0.0 10.0 - -fix 2a ref setforce 0.0 0.0 0.0 - -fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 - 19 = # of size 2 clusters - 6 = # of size 3 clusters - 3 = # of size 4 clusters - 640 = # of frozen angles - -#dump 1 colvar custom 1 dump.spring.lammpstrj id xu yu zu fx fy fz -#dump_modify 1 sort id - -variable sp equal f_3a+f_3b - -thermo_style custom step temp etotal pe ke epair ebond v_sp -thermo 10 - - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 4312 960 -Neighbor list info ... - update every 1 steps, delay 5 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 12 - ghost atom cutoff = 12 - binsize = 6, bins = 5 5 5 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/charmm/coul/long, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -SHAKE stats (type/ave/delta) on step 0 - 4 1.111 1.44264e-05 - 6 0.996998 7.26967e-06 - 8 1.08 1.32536e-05 - 10 1.111 1.22749e-05 - 12 1.08 1.11767e-05 - 14 0.96 0 - 18 0.957206 4.37979e-05 - 31 104.519 0.00396029 -Per MPI rank memory allocation (min/avg/max) = 15.65 | 15.86 | 16.05 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond v_sp - 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 292.14604 - 10 305.06149 -5058.8972 -6286.1901 1227.2929 -6413.1021 58.8499 103.38345 - 20 311.00516 -4999.0612 -6250.266 1251.2048 -6417.1021 47.695297 36.699695 - 30 314.22337 -4993.7012 -6257.8532 1264.152 -6421.9679 35.344144 10.563933 - 40 297.87491 -5020.8378 -6219.2184 1198.3805 -6389.8528 27.723133 3.8354517 - 50 304.02071 -5056.2576 -6279.3633 1223.1057 -6456.8214 55.459505 0.20678217 - 60 285.92576 -5104.0461 -6254.354 1150.3079 -6435.5814 32.767229 0.69352945 - 70 277.83519 -5163.9758 -6281.7345 1117.7587 -6447.7033 39.627168 11.433603 - 80 267.51495 -5206.4046 -6282.644 1076.2394 -6456.6369 31.611883 6.3554178 - 90 278.15579 -5245.3824 -6364.431 1119.0485 -6499.8063 28.849773 0.36941576 -SHAKE stats (type/ave/delta) on step 100 - 4 1.11098 8.97155e-05 - 6 0.996996 1.00568e-05 - 8 1.08 6.02345e-06 - 10 1.111 1.84253e-05 - 12 1.08 7.2713e-06 - 14 0.959996 0 - 18 0.957198 3.36079e-05 - 31 104.52 0.0030599 - 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 -Loop time of 0.620672 on 4 procs for 100 steps with 2004 atoms - -Performance: 27.841 ns/day, 0.862 hours/ns, 161.116 timesteps/s -99.1% CPU use with 4 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.4029 | 0.41752 | 0.4307 | 1.7 | 67.27 -Bond | 0.00054789 | 0.0011698 | 0.0018225 | 1.8 | 0.19 -Kspace | 0.055853 | 0.069798 | 0.083975 | 4.3 | 11.25 -Neigh | 0.096553 | 0.096622 | 0.096707 | 0.0 | 15.57 -Comm | 0.015383 | 0.016022 | 0.01632 | 0.3 | 2.58 -Output | 0.00033116 | 0.00057495 | 0.0012989 | 0.0 | 0.09 -Modify | 0.017549 | 0.017693 | 0.017826 | 0.1 | 2.85 -Other | | 0.001274 | | | 0.21 - -Nlocal: 501 ave 513 max 489 min -Histogram: 1 0 0 0 1 1 0 0 0 1 -Nghost: 6563.25 ave 6596 max 6519 min -Histogram: 1 0 1 0 0 0 0 0 0 2 -Neighs: 177059 ave 181742 max 172942 min -Histogram: 1 0 1 0 0 0 1 0 0 1 - -Total # of neighbors = 708237 -Ave neighs/atom = 353.412 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 12 -Dangerous builds = 2 -Total wall time: 0:00:00 diff --git a/examples/PACKAGES/colvars/log.27Nov18.peptide-spring2.g++.1 b/examples/PACKAGES/colvars/log.27Nov18.peptide-spring2.g++.1 deleted file mode 100644 index 7397c5475d..0000000000 --- a/examples/PACKAGES/colvars/log.27Nov18.peptide-spring2.g++.1 +++ /dev/null @@ -1,158 +0,0 @@ -LAMMPS (27 Nov 2018) - using 1 OpenMP thread(s) per MPI task -# Solvated 5-mer peptide - -units real -atom_style full - -pair_style lj/charmm/coul/long 8.0 10.0 10.0 -bond_style harmonic -angle_style charmm -dihedral_style charmm -improper_style harmonic -kspace_style pppm 0.0001 - -read_data data.peptide - orthogonal box = (36.8402 41.0137 29.7681) to (64.2116 68.3851 57.1395) - 1 by 1 by 1 MPI processor grid - reading atoms ... - 2004 atoms - reading velocities ... - 2004 velocities - scanning bonds ... - 3 = max bonds/atom - scanning angles ... - 6 = max angles/atom - scanning dihedrals ... - 14 = max dihedrals/atom - scanning impropers ... - 1 = max impropers/atom - reading bonds ... - 1365 bonds - reading angles ... - 786 angles - reading dihedrals ... - 207 dihedrals - reading impropers ... - 12 impropers - 4 = max # of 1-2 neighbors - 7 = max # of 1-3 neighbors - 14 = max # of 1-4 neighbors - 18 = max # of special neighbors - -neighbor 2.0 bin -neigh_modify delay 5 - -timestep 2.0 - -group peptide type <= 12 -84 atoms in group peptide -group one id 2 4 5 6 -4 atoms in group one -group two id 80 82 83 84 -4 atoms in group two -group ref id 37 -1 atoms in group ref -group colvar union one two ref -9 atoms in group colvar - -fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 - -fix 3 one spring couple two 100.0 0.0 0.0 0.0 10.0 - -fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 - 19 = # of size 2 clusters - 6 = # of size 3 clusters - 3 = # of size 4 clusters - 640 = # of frozen angles - -#dump 1 colvar custom 1 dump.spring2.lammpstrj id xu yu zu fx fy fz -#dump_modify 1 sort id - -thermo_style custom step temp etotal pe ke epair ebond f_3 -thermo 10 - - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 10648 3375 -Neighbor list info ... - update every 1 steps, delay 5 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 12 - ghost atom cutoff = 12 - binsize = 6, bins = 5 5 5 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/charmm/coul/long, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -SHAKE stats (type/ave/delta) on step 0 - 4 1.111 1.44264e-05 - 6 0.996998 7.26967e-06 - 8 1.08 1.32536e-05 - 10 1.111 1.22749e-05 - 12 1.08 1.11767e-05 - 14 0.96 0 - 18 0.957206 4.37979e-05 - 31 104.519 0.00396029 -Per MPI rank memory allocation (min/avg/max) = 18.7 | 18.7 | 18.7 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond f_3 - 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 273.74323 - 10 333.47919 -4982.3968 -6324.0169 1341.6201 -6400.4223 21.367762 12.393263 - 20 309.56902 -4999.4978 -6244.9249 1245.4271 -6401.6981 43.59542 13.004314 - 30 316.9763 -5025.5662 -6300.7935 1275.2273 -6422.5375 27.323196 6.7589585 - 40 297.55779 -5088.2204 -6285.3252 1197.1047 -6395.375 13.6769 25.625024 - 50 296.79994 -5117.2966 -6311.3525 1194.0558 -6451.8309 30.631241 5.3320863 - 60 281.72778 -5188.4969 -6321.9159 1133.419 -6427.8856 26.287723 20.574037 - 70 277.26053 -5224.8434 -6340.2902 1115.4468 -6447.8521 27.742893 0.69420283 - 80 268.01484 -5281.8509 -6360.1014 1078.2505 -6496.6086 20.300754 5.2607186 - 90 270.43472 -5334.0835 -6422.0694 1087.9859 -6563.2511 39.846095 1.1832272 -SHAKE stats (type/ave/delta) on step 100 - 4 1.11096 0.000191462 - 6 0.996989 3.55508e-05 - 8 1.08 9.0997e-06 - 10 1.111 1.58544e-05 - 12 1.08 5.80604e-06 - 14 0.959997 0 - 18 0.957198 2.92445e-05 - 31 104.52 0.00239923 - 100 260.35636 -5387.2284 -6434.6681 1047.4397 -6534.1956 20.246866 0.075048487 -Loop time of 2.2037 on 1 procs for 100 steps with 2004 atoms - -Performance: 7.841 ns/day, 3.061 hours/ns, 45.378 timesteps/s -99.9% CPU use with 1 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 1.5852 | 1.5852 | 1.5852 | 0.0 | 71.93 -Bond | 0.0032725 | 0.0032725 | 0.0032725 | 0.0 | 0.15 -Kspace | 0.17308 | 0.17308 | 0.17308 | 0.0 | 7.85 -Neigh | 0.4027 | 0.4027 | 0.4027 | 0.0 | 18.27 -Comm | 0.014041 | 0.014041 | 0.014041 | 0.0 | 0.64 -Output | 0.00032306 | 0.00032306 | 0.00032306 | 0.0 | 0.01 -Modify | 0.023546 | 0.023546 | 0.023546 | 0.0 | 1.07 -Other | | 0.001546 | | | 0.07 - -Nlocal: 2004 ave 2004 max 2004 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 11143 ave 11143 max 11143 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 708234 ave 708234 max 708234 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 708234 -Ave neighs/atom = 353.41 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 13 -Dangerous builds = 1 -Total wall time: 0:00:02 diff --git a/examples/PACKAGES/colvars/log.27Nov18.peptide-spring2.g++.4 b/examples/PACKAGES/colvars/log.27Nov18.peptide-spring2.g++.4 deleted file mode 100644 index 0e3f0d3b6b..0000000000 --- a/examples/PACKAGES/colvars/log.27Nov18.peptide-spring2.g++.4 +++ /dev/null @@ -1,158 +0,0 @@ -LAMMPS (27 Nov 2018) - using 1 OpenMP thread(s) per MPI task -# Solvated 5-mer peptide - -units real -atom_style full - -pair_style lj/charmm/coul/long 8.0 10.0 10.0 -bond_style harmonic -angle_style charmm -dihedral_style charmm -improper_style harmonic -kspace_style pppm 0.0001 - -read_data data.peptide - orthogonal box = (36.8402 41.0137 29.7681) to (64.2116 68.3851 57.1395) - 1 by 2 by 2 MPI processor grid - reading atoms ... - 2004 atoms - reading velocities ... - 2004 velocities - scanning bonds ... - 3 = max bonds/atom - scanning angles ... - 6 = max angles/atom - scanning dihedrals ... - 14 = max dihedrals/atom - scanning impropers ... - 1 = max impropers/atom - reading bonds ... - 1365 bonds - reading angles ... - 786 angles - reading dihedrals ... - 207 dihedrals - reading impropers ... - 12 impropers - 4 = max # of 1-2 neighbors - 7 = max # of 1-3 neighbors - 14 = max # of 1-4 neighbors - 18 = max # of special neighbors - -neighbor 2.0 bin -neigh_modify delay 5 - -timestep 2.0 - -group peptide type <= 12 -84 atoms in group peptide -group one id 2 4 5 6 -4 atoms in group one -group two id 80 82 83 84 -4 atoms in group two -group ref id 37 -1 atoms in group ref -group colvar union one two ref -9 atoms in group colvar - -fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 - -fix 3 one spring couple two 100.0 0.0 0.0 0.0 10.0 - -fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 - 19 = # of size 2 clusters - 6 = # of size 3 clusters - 3 = # of size 4 clusters - 640 = # of frozen angles - -#dump 1 colvar custom 1 dump.spring2.lammpstrj id xu yu zu fx fy fz -#dump_modify 1 sort id - -thermo_style custom step temp etotal pe ke epair ebond f_3 -thermo 10 - - -run 100 -PPPM initialization ... - using 12-bit tables for long-range coulomb (src/kspace.cpp:321) - G vector (1/distance) = 0.268725 - grid = 15 15 15 - stencil order = 5 - estimated absolute RMS force accuracy = 0.0228209 - estimated relative force accuracy = 6.87243e-05 - using double precision FFTs - 3d grid and FFT values/proc = 4312 960 -Neighbor list info ... - update every 1 steps, delay 5 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 12 - ghost atom cutoff = 12 - binsize = 6, bins = 5 5 5 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/charmm/coul/long, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -SHAKE stats (type/ave/delta) on step 0 - 4 1.111 1.44264e-05 - 6 0.996998 7.26967e-06 - 8 1.08 1.32536e-05 - 10 1.111 1.22749e-05 - 12 1.08 1.11767e-05 - 14 0.96 0 - 18 0.957206 4.37979e-05 - 31 104.519 0.00396029 -Per MPI rank memory allocation (min/avg/max) = 15.65 | 15.86 | 16.05 Mbytes -Step Temp TotEng PotEng KinEng E_pair E_bond f_3 - 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 273.74323 - 10 333.47919 -4982.3968 -6324.0169 1341.6201 -6400.4223 21.367762 12.393263 - 20 309.56902 -4999.4978 -6244.9249 1245.4271 -6401.6981 43.59542 13.004314 - 30 316.9763 -5025.5662 -6300.7935 1275.2273 -6422.5375 27.323196 6.7589585 - 40 297.55779 -5088.2204 -6285.3252 1197.1047 -6395.375 13.6769 25.625024 - 50 296.79994 -5117.2966 -6311.3525 1194.0558 -6451.8309 30.631241 5.3320863 - 60 281.72778 -5188.4969 -6321.9159 1133.419 -6427.8856 26.287723 20.574037 - 70 277.26053 -5224.8434 -6340.2902 1115.4468 -6447.8521 27.742893 0.69420283 - 80 268.01484 -5281.8509 -6360.1014 1078.2505 -6496.6086 20.300754 5.2607186 - 90 270.43472 -5334.0835 -6422.0694 1087.9859 -6563.2511 39.846095 1.1832272 -SHAKE stats (type/ave/delta) on step 100 - 4 1.11096 0.000191462 - 6 0.996989 3.55508e-05 - 8 1.08 9.0997e-06 - 10 1.111 1.58544e-05 - 12 1.08 5.80604e-06 - 14 0.959997 0 - 18 0.957198 2.92445e-05 - 31 104.52 0.00239923 - 100 260.35636 -5387.2284 -6434.6681 1047.4397 -6534.1956 20.246866 0.075048487 -Loop time of 0.616036 on 4 procs for 100 steps with 2004 atoms - -Performance: 28.050 ns/day, 0.856 hours/ns, 162.328 timesteps/s -99.1% CPU use with 4 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.40372 | 0.41244 | 0.41714 | 0.8 | 66.95 -Bond | 0.00053573 | 0.0011384 | 0.0017946 | 1.8 | 0.18 -Kspace | 0.060087 | 0.063993 | 0.07306 | 2.1 | 10.39 -Neigh | 0.1033 | 0.10349 | 0.1036 | 0.0 | 16.80 -Comm | 0.01568 | 0.016453 | 0.017178 | 0.5 | 2.67 -Output | 0.00028253 | 0.00032026 | 0.00043178 | 0.0 | 0.05 -Modify | 0.016238 | 0.016955 | 0.017704 | 0.5 | 2.75 -Other | | 0.001239 | | | 0.20 - -Nlocal: 501 ave 513 max 494 min -Histogram: 1 1 0 1 0 0 0 0 0 1 -Nghost: 6572.5 ave 6593 max 6548 min -Histogram: 1 0 1 0 0 0 0 0 0 2 -Neighs: 177058 ave 181778 max 174301 min -Histogram: 2 0 0 0 1 0 0 0 0 1 - -Total # of neighbors = 708234 -Ave neighs/atom = 353.41 -Ave special neighs/atom = 2.34032 -Neighbor list builds = 13 -Dangerous builds = 1 -Total wall time: 0:00:00 diff --git a/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars.g++.1 b/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars.g++.1 new file mode 100644 index 0000000000..0b8522c55f --- /dev/null +++ b/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars.g++.1 @@ -0,0 +1,732 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# Solvated 5-mer peptide + +units real +atom_style full + +pair_style lj/charmm/coul/long 8.0 10.0 10.0 +bond_style harmonic +angle_style charmm +dihedral_style charmm +improper_style harmonic +kspace_style pppm 0.0001 + +read_data data.peptide +Reading data file ... + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 2004 atoms + reading velocities ... + 2004 velocities + scanning bonds ... + 3 = max bonds/atom + scanning angles ... + 6 = max angles/atom + scanning dihedrals ... + 14 = max dihedrals/atom + scanning impropers ... + 1 = max impropers/atom + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 1 by 1 MPI processor grid + reading bonds ... + 1365 bonds + reading angles ... + 786 angles + reading dihedrals ... + 207 dihedrals + reading impropers ... + 12 impropers +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0 + special bond factors coul: 0 0 0 + 4 = max # of 1-2 neighbors + 7 = max # of 1-3 neighbors + 14 = max # of 1-4 neighbors + 18 = max # of special neighbors + special bonds CPU = 0.000 seconds + read_data CPU = 0.012 seconds + +neighbor 2.0 bin +neigh_modify delay 5 + +timestep 2.0 + +group peptide type <= 12 +84 atoms in group peptide +group one id 2 4 5 6 +4 atoms in group one +group two id 80 82 83 84 +4 atoms in group two +group ref id 37 +1 atoms in group ref +group colvar union one two ref +9 atoms in group colvar + +fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 + +shell "rm -f out*.colvars.*" +fix 2 all colvars peptide.colvars +---------------------------------------------------------------------- +Initializing the collective variables module, version 2024-06-04. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +This version was built with the C++11 standard or higher. +Summary of compile-time features available in this build: + - SMP parallelism: enabled (num. threads = 1) + - Lepton custom functions: available + - Tcl interpreter: not available +Using LAMMPS interface, version "2024-07-05". +fix 2a ref setforce 0.0 0.0 0.0 + +fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 +Finding SHAKE clusters ... + 19 = # of size 2 clusters + 6 = # of size 3 clusters + 3 = # of size 4 clusters + 640 = # of frozen angles + find clusters CPU = 0.000 seconds + +#dump 1 colvar custom 1 dump.colvar.lammpstrj id xu yu zu fx fy fz +#dump_modify 1 sort id + +thermo_style custom step temp etotal pe ke epair ebond f_2 +thermo 10 + + +run 100 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 10648 3375 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 5 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 12 + ghost atom cutoff = 12 + binsize = 6, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/charmm/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +---------------------------------------------------------------------- +Reading new configuration from file "peptide.colvars": +# units = "" [default] +# smp = on [default] +# colvarsTrajFrequency = 1 +# colvarsRestartFrequency = 1000 +# scriptedColvarForces = off [default] +# scriptingAfterBiases = off [default] +---------------------------------------------------------------------- + Initializing a new collective variable. + # name = "one" + Initializing a new "distance" component. + # name = "" [default] + # componentCoeff = 1 [default] + # componentExp = 1 [default] + # period = 0 [default] + # wrapAround = 0 [default] + # forceNoPBC = off [default] + # scalable = on [default] + Initializing atom group "group1". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group1" defined with 4 atoms requested. + Initializing atom group "group2". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group2" defined with 1 atoms requested. + # oneSiteSystemForce = off [default] + # oneSiteTotalForce = off [default] + All components initialized. + # timeStepFactor = 1 [default] + # width = 1 [default] + # lowerBoundary = 0 [default] + # upperBoundary = 1 [default] + # hardLowerBoundary = on [default] + # hardUpperBoundary = off [default] + # expandBoundaries = off [default] + # extendedLagrangian = off [default] + # outputValue = on [default] + # outputVelocity = off [default] + # outputTotalForce = off [default] + # outputAppliedForce = off [default] + # subtractAppliedForce = off [default] + # runAve = off [default] + # corrFunc = off [default] +---------------------------------------------------------------------- + Initializing a new collective variable. + # name = "two" + Initializing a new "distance" component. + # name = "" [default] + # componentCoeff = 1 [default] + # componentExp = 1 [default] + # period = 0 [default] + # wrapAround = 0 [default] + # forceNoPBC = off [default] + # scalable = on [default] + Initializing atom group "group1". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group1" defined with 4 atoms requested. + Initializing atom group "group2". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group2" defined with 1 atoms requested. + # oneSiteSystemForce = off [default] + # oneSiteTotalForce = off [default] + All components initialized. + # timeStepFactor = 1 [default] + # width = 1 [default] + # lowerBoundary = 0 [default] + # upperBoundary = 1 [default] + # hardLowerBoundary = on [default] + # hardUpperBoundary = off [default] + # expandBoundaries = off [default] + # extendedLagrangian = off [default] + # outputValue = on [default] + # outputVelocity = off [default] + # outputTotalForce = off [default] + # outputAppliedForce = off [default] + # subtractAppliedForce = off [default] + # runAve = off [default] + # corrFunc = off [default] +---------------------------------------------------------------------- +Collective variables initialized, 2 in total. +---------------------------------------------------------------------- + Initializing a new "harmonic" instance. + # name = "h_pot" + # colvars = { one, two } + # stepZeroData = off [default] + # outputEnergy = off [default] + # outputFreq = 1000 [default] + # timeStepFactor = 1 [default] + # writeTISamples = off [default] + # writeTIPMF = off [default] + # centers = { 10, 10 } + # targetCenters = { 10, 10 } [default] + # outputCenters = off [default] + # forceConstant = 100 + # decoupling = off [default] + # targetForceConstant = -1 [default] + The force constant for colvar "one" will be rescaled to 100 according to the specified width (1). + The force constant for colvar "two" will be rescaled to 100 according to the specified width (1). +---------------------------------------------------------------------- +Collective variables biases initialized, 1 in total. +---------------------------------------------------------------------- +Collective variables module (re)initialized. +---------------------------------------------------------------------- +Current simulation parameters: initial step = 0, integration timestep = 2 +Updating atomic parameters (masses, charges, etc). +Re-initialized atom group for variable "one":0/0. 4 atoms: total mass = 15.035, total charge = -2.77556e-17. +Re-initialized atom group for variable "one":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +Re-initialized atom group for variable "two":0/0. 4 atoms: total mass = 15.035, total charge = 0.16. +Re-initialized atom group for variable "two":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +The final output state file will be "out.colvars.state". +Synchronizing (emptying the buffer of) trajectory file "out.colvars.traj". +SHAKE stats (type/ave/delta/count) on step 0 +Bond: 4 1.111 1.44264e-05 9 +Bond: 6 0.996998 7.26967e-06 6 +Bond: 8 1.08 1.32536e-05 7 +Bond: 10 1.111 1.22749e-05 8 +Bond: 12 1.08 1.11767e-05 9 +Bond: 14 0.96 0 1 +Bond: 18 0.957206 4.37979e-05 1280 +Angle: 31 104.519 0.00396029 640 +Per MPI rank memory allocation (min/avg/max) = 19.03 | 19.03 | 19.03 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond f_2 + 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 292.14604 + 10 305.06149 -5058.8972 -6286.1901 1227.2929 -6413.1021 58.8499 103.38345 + 20 311.00516 -4999.0612 -6250.266 1251.2048 -6417.1021 47.695297 36.699695 + 30 314.22337 -4993.7012 -6257.8532 1264.152 -6421.9679 35.344144 10.563933 + 40 297.87491 -5020.8378 -6219.2184 1198.3805 -6389.8528 27.723133 3.8354517 + 50 304.02071 -5056.2576 -6279.3633 1223.1057 -6456.8214 55.459505 0.20678217 + 60 285.92576 -5104.0461 -6254.354 1150.3079 -6435.5814 32.767229 0.69352945 + 70 277.83519 -5163.9758 -6281.7345 1117.7587 -6447.7033 39.627168 11.433603 + 80 267.51495 -5206.4046 -6282.644 1076.2394 -6456.6369 31.611883 6.3554178 + 90 278.15579 -5245.3824 -6364.431 1119.0485 -6499.8063 28.849773 0.36941576 +SHAKE stats (type/ave/delta/count) on step 100 +Bond: 4 1.11098 8.97155e-05 9 +Bond: 6 0.996996 1.00568e-05 6 +Bond: 8 1.08 6.02345e-06 7 +Bond: 10 1.111 1.84253e-05 8 +Bond: 12 1.08 7.2713e-06 9 +Bond: 14 0.959996 0 1 +Bond: 18 0.957198 3.36079e-05 1280 +Angle: 31 104.52 0.0030599 640 + 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 +Saving collective variables state to "out.colvars.state". +Loop time of 0.897199 on 1 procs for 100 steps with 2004 atoms + +Performance: 19.260 ns/day, 1.246 hours/ns, 111.458 timesteps/s, 223.362 katom-step/s +99.7% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.71298 | 0.71298 | 0.71298 | 0.0 | 79.47 +Bond | 0.001284 | 0.001284 | 0.001284 | 0.0 | 0.14 +Kspace | 0.041232 | 0.041232 | 0.041232 | 0.0 | 4.60 +Neigh | 0.1277 | 0.1277 | 0.1277 | 0.0 | 14.23 +Comm | 0.0033285 | 0.0033285 | 0.0033285 | 0.0 | 0.37 +Output | 0.00017467 | 0.00017467 | 0.00017467 | 0.0 | 0.02 +Modify | 0.010003 | 0.010003 | 0.010003 | 0.0 | 1.11 +Other | | 0.0004941 | | | 0.06 + +Nlocal: 2004 ave 2004 max 2004 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 11124 ave 11124 max 11124 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 708237 ave 708237 max 708237 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 708237 +Ave neighs/atom = 353.41168 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 12 +Dangerous builds = 2 + +run 100 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Colvars module (Fiorin2013, plus other works listed for specific features) + + +% Colvars module: +% Colvars-LAMMPS interface: +% Harmonic colvar bias implementation: +% Optimal rotation via flexible fitting: +% distance colvar component: + +@article{Fiorin2013, + author = {Fiorin, Giacomo and Klein, Michael L.{} and H\'enin, J\'er\^ome}, + title = {Using collective variables to drive molecular dynamics simulations}, + journal = {Mol. Phys.}, + year = {2013}, + volume = {111}, + number = {22-23}, + pages = {3345--3362}, + publisher = {Taylor & Francis}, + doi = {10.1080/00268976.2013.813594}, + url = {https://doi.org/10.1080/00268976.2013.813594} +} + + +% LAMMPS engine: + +@article{Thompson2022, + title = {{LAMMPS} - a flexible simulation tool for particle-based materials modeling at the atomic, meso, and continuum scales}, + author = {Thompson, Aidan P. and Aktulga, H. Metin and Berger, Richard and Bolintineanu, Dan S. and Brown, W. Michael and Crozier, Paul S. and {in't Veld}, Pieter J. and Kohlmeyer, Axel and Moore, Stan G. and Nguyen, Trung Dac and Shan, Ray and Stevens, Mark J. and Tranchida, Julien and Trott, Christian and Plimpton, Steven J.}, + journal = {Comp. Phys. Comm.}, + volume = {271}, + pages = {108171}, + year = {2022}, + doi = {10.1016/j.cpc.2021.108171}, + url = {https://doi.org/10.1016/j.cpc.2021.108171} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 10648 3375 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Current simulation parameters: initial step = 100, integration timestep = 2 +Updating atomic parameters (masses, charges, etc). +Re-initialized atom group for variable "one":0/0. 4 atoms: total mass = 15.035, total charge = -2.77556e-17. +Re-initialized atom group for variable "one":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +Re-initialized atom group for variable "two":0/0. 4 atoms: total mass = 15.035, total charge = 0.16. +Re-initialized atom group for variable "two":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +SHAKE stats (type/ave/delta/count) on step 100 +Bond: 4 1.11098 8.97155e-05 9 +Bond: 6 0.996996 1.00568e-05 6 +Bond: 8 1.08 6.02345e-06 7 +Bond: 10 1.111 1.84253e-05 8 +Bond: 12 1.08 7.2713e-06 9 +Bond: 14 0.959996 0 1 +Bond: 18 0.957198 3.36079e-05 1280 +Angle: 31 104.52 0.0030599 640 +Per MPI rank memory allocation (min/avg/max) = 19.03 | 19.03 | 19.03 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond f_2 + 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 + 110 266.26438 -5341.1991 -6412.4073 1071.2082 -6552.7551 33.573173 1.9229657 + 120 262.66604 -5386.2387 -6442.9704 1056.7317 -6587.5483 29.859587 2.7124812 + 130 252.83379 -5422.5401 -6439.7157 1017.1756 -6580.4703 25.979343 1.2031591 + 140 253.85111 -5452.1838 -6473.4521 1021.2684 -6609.4826 26.071651 0.30585517 + 150 261.31816 -5490.4726 -6541.7817 1051.3091 -6646.6075 16.258823 6.9051008 + 160 255.7352 -5521.5941 -6550.4423 1028.8483 -6658.1372 19.717399 12.339679 + 170 253.42527 -5540.0942 -6559.6494 1019.5552 -6656.6678 23.293812 10.290217 + 180 248.51161 -5550.3254 -6550.1125 999.78704 -6661.4236 26.200127 3.4336037 + 190 250.80862 -5555.2554 -6564.2836 1009.0281 -6666.164 25.53634 3.3494286 +SHAKE stats (type/ave/delta/count) on step 200 +Bond: 4 1.111 1.81266e-06 9 +Bond: 6 0.997 7.79424e-07 6 +Bond: 8 1.08 1.08903e-06 7 +Bond: 10 1.111 2.96503e-07 8 +Bond: 12 1.08 4.69038e-07 9 +Bond: 14 0.960001 0 1 +Bond: 18 0.957201 3.76471e-06 1280 +Angle: 31 104.52 0.000411055 640 + 200 251.50475 -5557.4251 -6569.2538 1011.8288 -6674.0845 24.804906 7.1387572 +Saving collective variables state to "out.colvars.state". +Loop time of 0.855092 on 1 procs for 100 steps with 2004 atoms + +Performance: 20.208 ns/day, 1.188 hours/ns, 116.946 timesteps/s, 234.361 katom-step/s +99.7% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.71954 | 0.71954 | 0.71954 | 0.0 | 84.15 +Bond | 0.0012655 | 0.0012655 | 0.0012655 | 0.0 | 0.15 +Kspace | 0.042826 | 0.042826 | 0.042826 | 0.0 | 5.01 +Neigh | 0.078128 | 0.078128 | 0.078128 | 0.0 | 9.14 +Comm | 0.0029003 | 0.0029003 | 0.0029003 | 0.0 | 0.34 +Output | 0.00016605 | 0.00016605 | 0.00016605 | 0.0 | 0.02 +Modify | 0.0097753 | 0.0097753 | 0.0097753 | 0.0 | 1.14 +Other | | 0.0004882 | | | 0.06 + +Nlocal: 2004 ave 2004 max 2004 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 11159 ave 11159 max 11159 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 708083 ave 708083 max 708083 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 708083 +Ave neighs/atom = 353.33483 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 7 +Dangerous builds = 0 + +fix 2 all colvars peptide.colvars input out.colvars.state output out2 +---------------------------------------------------------------------- +Initializing the collective variables module, version 2024-06-04. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +This version was built with the C++11 standard or higher. +Summary of compile-time features available in this build: + - SMP parallelism: enabled (num. threads = 1) + - Lepton custom functions: available + - Tcl interpreter: not available +Using LAMMPS interface, version "2024-07-05". +Setting initial step number from MD engine: 200 + +run 100 +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 10648 3375 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Will read input state from file "out.colvars.state"---------------------------------------------------------------------- +Reading new configuration from file "peptide.colvars": +# units = "" [default] +# smp = on [default] +# colvarsTrajFrequency = 1 +# colvarsRestartFrequency = 1000 +# scriptedColvarForces = off [default] +# scriptingAfterBiases = off [default] +---------------------------------------------------------------------- + Initializing a new collective variable. + # name = "one" + Initializing a new "distance" component. + # name = "" [default] + # componentCoeff = 1 [default] + # componentExp = 1 [default] + # period = 0 [default] + # wrapAround = 0 [default] + # forceNoPBC = off [default] + # scalable = on [default] + Initializing atom group "group1". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group1" defined with 4 atoms requested. + Initializing atom group "group2". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group2" defined with 1 atoms requested. + # oneSiteSystemForce = off [default] + # oneSiteTotalForce = off [default] + All components initialized. + # timeStepFactor = 1 [default] + # width = 1 [default] + # lowerBoundary = 0 [default] + # upperBoundary = 1 [default] + # hardLowerBoundary = on [default] + # hardUpperBoundary = off [default] + # expandBoundaries = off [default] + # extendedLagrangian = off [default] + # outputValue = on [default] + # outputVelocity = off [default] + # outputTotalForce = off [default] + # outputAppliedForce = off [default] + # subtractAppliedForce = off [default] + # runAve = off [default] + # corrFunc = off [default] +---------------------------------------------------------------------- + Initializing a new collective variable. + # name = "two" + Initializing a new "distance" component. + # name = "" [default] + # componentCoeff = 1 [default] + # componentExp = 1 [default] + # period = 0 [default] + # wrapAround = 0 [default] + # forceNoPBC = off [default] + # scalable = on [default] + Initializing atom group "group1". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group1" defined with 4 atoms requested. + Initializing atom group "group2". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group2" defined with 1 atoms requested. + # oneSiteSystemForce = off [default] + # oneSiteTotalForce = off [default] + All components initialized. + # timeStepFactor = 1 [default] + # width = 1 [default] + # lowerBoundary = 0 [default] + # upperBoundary = 1 [default] + # hardLowerBoundary = on [default] + # hardUpperBoundary = off [default] + # expandBoundaries = off [default] + # extendedLagrangian = off [default] + # outputValue = on [default] + # outputVelocity = off [default] + # outputTotalForce = off [default] + # outputAppliedForce = off [default] + # subtractAppliedForce = off [default] + # runAve = off [default] + # corrFunc = off [default] +---------------------------------------------------------------------- +Collective variables initialized, 2 in total. +---------------------------------------------------------------------- + Initializing a new "harmonic" instance. + # name = "h_pot" + # colvars = { one, two } + # stepZeroData = off [default] + # outputEnergy = off [default] + # outputFreq = 1000 [default] + # timeStepFactor = 1 [default] + # writeTISamples = off [default] + # writeTIPMF = off [default] + # centers = { 10, 10 } + # targetCenters = { 10, 10 } [default] + # outputCenters = off [default] + # forceConstant = 100 + # decoupling = off [default] + # targetForceConstant = -1 [default] + The force constant for colvar "one" will be rescaled to 100 according to the specified width (1). + The force constant for colvar "two" will be rescaled to 100 according to the specified width (1). +---------------------------------------------------------------------- +Collective variables biases initialized, 1 in total. +---------------------------------------------------------------------- +Collective variables module (re)initialized. +---------------------------------------------------------------------- +Current simulation parameters: initial step = 200, integration timestep = 2 +Updating atomic parameters (masses, charges, etc). +Re-initialized atom group for variable "one":0/0. 4 atoms: total mass = 15.035, total charge = -2.77556e-17. +Re-initialized atom group for variable "one":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +Re-initialized atom group for variable "two":0/0. 4 atoms: total mass = 15.035, total charge = 0.16. +Re-initialized atom group for variable "two":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +---------------------------------------------------------------------- +Loading state from text file "out.colvars.state". + Restarting collective variable "one" from value: 10.0128 + Restarting collective variable "two" from value: 9.62236 + Restarted harmonic bias "h_pot" with step number 200. +---------------------------------------------------------------------- +The final output state file will be "out2.colvars.state". +SHAKE stats (type/ave/delta/count) on step 200 +Bond: 4 1.111 1.81266e-06 9 +Bond: 6 0.997 7.79424e-07 6 +Bond: 8 1.08 1.08903e-06 7 +Bond: 10 1.111 2.96503e-07 8 +Bond: 12 1.08 4.69038e-07 9 +Bond: 14 0.960001 0 1 +Bond: 18 0.957201 3.76471e-06 1280 +Angle: 31 104.52 0.000411055 640 +Per MPI rank memory allocation (min/avg/max) = 19.03 | 19.03 | 19.03 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond f_2 + 200 251.50475 -5557.4251 -6569.2538 1011.8288 -6674.0845 24.804906 7.1387572 + 210 253.15302 -5538.5614 -6557.0213 1018.4599 -6672.0496 37.676621 0.61219488 + 220 245.19621 -5522.5192 -6508.9681 986.44887 -6628.19 36.657688 0.048643387 + 230 258.69885 -5495.7277 -6536.499 1040.7713 -6658.2888 34.857911 0.2209256 + 240 260.79633 -5469.8678 -6519.0775 1049.2097 -6624.1799 31.576952 3.7574815 + 250 269.07527 -5438.3947 -6520.9114 1082.5167 -6616.4383 25.447674 8.6600023 + 260 266.01046 -5397.3484 -6467.5351 1070.1867 -6580.2895 26.871919 8.3323102 + 270 272.81307 -5350.882 -6448.4362 1097.5543 -6563.8228 23.114196 10.973132 + 280 279.42264 -5307.9798 -6432.125 1124.1452 -6557.3367 33.644021 8.5490492 + 290 286.85168 -5260.8411 -6414.874 1154.033 -6515.6797 28.574838 5.9100104 +SHAKE stats (type/ave/delta/count) on step 300 +Bond: 4 1.111 1.79793e-05 9 +Bond: 6 0.997005 1.02512e-05 6 +Bond: 8 1.08 1.85103e-05 7 +Bond: 10 1.111 9.9884e-06 8 +Bond: 12 1.08 8.84114e-06 9 +Bond: 14 0.960008 0 1 +Bond: 18 0.957203 1.8445e-05 1280 +Angle: 31 104.52 0.00168383 640 + 300 291.52794 -5216.288 -6389.1341 1172.846 -6503.1276 27.889149 2.2482427 +Saving collective variables state to "out2.colvars.state". +Loop time of 0.86889 on 1 procs for 100 steps with 2004 atoms + +Performance: 19.887 ns/day, 1.207 hours/ns, 115.089 timesteps/s, 230.639 katom-step/s +99.7% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.72728 | 0.72728 | 0.72728 | 0.0 | 83.70 +Bond | 0.0012755 | 0.0012755 | 0.0012755 | 0.0 | 0.15 +Kspace | 0.041631 | 0.041631 | 0.041631 | 0.0 | 4.79 +Neigh | 0.085283 | 0.085283 | 0.085283 | 0.0 | 9.82 +Comm | 0.0029986 | 0.0029986 | 0.0029986 | 0.0 | 0.35 +Output | 0.00013272 | 0.00013272 | 0.00013272 | 0.0 | 0.02 +Modify | 0.0097972 | 0.0097972 | 0.0097972 | 0.0 | 1.13 +Other | | 0.0004882 | | | 0.06 + +Nlocal: 2004 ave 2004 max 2004 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 11296 ave 11296 max 11296 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 708152 ave 708152 max 708152 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 708152 +Ave neighs/atom = 353.36926 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 8 +Dangerous builds = 0 + +Total wall time: 0:00:02 diff --git a/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars.g++.4 b/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars.g++.4 new file mode 100644 index 0000000000..b45cb03f96 --- /dev/null +++ b/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars.g++.4 @@ -0,0 +1,732 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# Solvated 5-mer peptide + +units real +atom_style full + +pair_style lj/charmm/coul/long 8.0 10.0 10.0 +bond_style harmonic +angle_style charmm +dihedral_style charmm +improper_style harmonic +kspace_style pppm 0.0001 + +read_data data.peptide +Reading data file ... + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 2004 atoms + reading velocities ... + 2004 velocities + scanning bonds ... + 3 = max bonds/atom + scanning angles ... + 6 = max angles/atom + scanning dihedrals ... + 14 = max dihedrals/atom + scanning impropers ... + 1 = max impropers/atom + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 2 by 2 MPI processor grid + reading bonds ... + 1365 bonds + reading angles ... + 786 angles + reading dihedrals ... + 207 dihedrals + reading impropers ... + 12 impropers +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0 + special bond factors coul: 0 0 0 + 4 = max # of 1-2 neighbors + 7 = max # of 1-3 neighbors + 14 = max # of 1-4 neighbors + 18 = max # of special neighbors + special bonds CPU = 0.000 seconds + read_data CPU = 0.011 seconds + +neighbor 2.0 bin +neigh_modify delay 5 + +timestep 2.0 + +group peptide type <= 12 +84 atoms in group peptide +group one id 2 4 5 6 +4 atoms in group one +group two id 80 82 83 84 +4 atoms in group two +group ref id 37 +1 atoms in group ref +group colvar union one two ref +9 atoms in group colvar + +fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 + +shell "rm -f out*.colvars.*" +fix 2 all colvars peptide.colvars +---------------------------------------------------------------------- +Initializing the collective variables module, version 2024-06-04. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +This version was built with the C++11 standard or higher. +Summary of compile-time features available in this build: + - SMP parallelism: enabled (num. threads = 1) + - Lepton custom functions: available + - Tcl interpreter: not available +Using LAMMPS interface, version "2024-07-05". +fix 2a ref setforce 0.0 0.0 0.0 + +fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 +Finding SHAKE clusters ... + 19 = # of size 2 clusters + 6 = # of size 3 clusters + 3 = # of size 4 clusters + 640 = # of frozen angles + find clusters CPU = 0.000 seconds + +#dump 1 colvar custom 1 dump.colvar.lammpstrj id xu yu zu fx fy fz +#dump_modify 1 sort id + +thermo_style custom step temp etotal pe ke epair ebond f_2 +thermo 10 + + +run 100 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 4312 960 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 5 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 12 + ghost atom cutoff = 12 + binsize = 6, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/charmm/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +---------------------------------------------------------------------- +Reading new configuration from file "peptide.colvars": +# units = "" [default] +# smp = on [default] +# colvarsTrajFrequency = 1 +# colvarsRestartFrequency = 1000 +# scriptedColvarForces = off [default] +# scriptingAfterBiases = off [default] +---------------------------------------------------------------------- + Initializing a new collective variable. + # name = "one" + Initializing a new "distance" component. + # name = "" [default] + # componentCoeff = 1 [default] + # componentExp = 1 [default] + # period = 0 [default] + # wrapAround = 0 [default] + # forceNoPBC = off [default] + # scalable = on [default] + Initializing atom group "group1". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group1" defined with 4 atoms requested. + Initializing atom group "group2". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group2" defined with 1 atoms requested. + # oneSiteSystemForce = off [default] + # oneSiteTotalForce = off [default] + All components initialized. + # timeStepFactor = 1 [default] + # width = 1 [default] + # lowerBoundary = 0 [default] + # upperBoundary = 1 [default] + # hardLowerBoundary = on [default] + # hardUpperBoundary = off [default] + # expandBoundaries = off [default] + # extendedLagrangian = off [default] + # outputValue = on [default] + # outputVelocity = off [default] + # outputTotalForce = off [default] + # outputAppliedForce = off [default] + # subtractAppliedForce = off [default] + # runAve = off [default] + # corrFunc = off [default] +---------------------------------------------------------------------- + Initializing a new collective variable. + # name = "two" + Initializing a new "distance" component. + # name = "" [default] + # componentCoeff = 1 [default] + # componentExp = 1 [default] + # period = 0 [default] + # wrapAround = 0 [default] + # forceNoPBC = off [default] + # scalable = on [default] + Initializing atom group "group1". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group1" defined with 4 atoms requested. + Initializing atom group "group2". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group2" defined with 1 atoms requested. + # oneSiteSystemForce = off [default] + # oneSiteTotalForce = off [default] + All components initialized. + # timeStepFactor = 1 [default] + # width = 1 [default] + # lowerBoundary = 0 [default] + # upperBoundary = 1 [default] + # hardLowerBoundary = on [default] + # hardUpperBoundary = off [default] + # expandBoundaries = off [default] + # extendedLagrangian = off [default] + # outputValue = on [default] + # outputVelocity = off [default] + # outputTotalForce = off [default] + # outputAppliedForce = off [default] + # subtractAppliedForce = off [default] + # runAve = off [default] + # corrFunc = off [default] +---------------------------------------------------------------------- +Collective variables initialized, 2 in total. +---------------------------------------------------------------------- + Initializing a new "harmonic" instance. + # name = "h_pot" + # colvars = { one, two } + # stepZeroData = off [default] + # outputEnergy = off [default] + # outputFreq = 1000 [default] + # timeStepFactor = 1 [default] + # writeTISamples = off [default] + # writeTIPMF = off [default] + # centers = { 10, 10 } + # targetCenters = { 10, 10 } [default] + # outputCenters = off [default] + # forceConstant = 100 + # decoupling = off [default] + # targetForceConstant = -1 [default] + The force constant for colvar "one" will be rescaled to 100 according to the specified width (1). + The force constant for colvar "two" will be rescaled to 100 according to the specified width (1). +---------------------------------------------------------------------- +Collective variables biases initialized, 1 in total. +---------------------------------------------------------------------- +Collective variables module (re)initialized. +---------------------------------------------------------------------- +Current simulation parameters: initial step = 0, integration timestep = 2 +Updating atomic parameters (masses, charges, etc). +Re-initialized atom group for variable "one":0/0. 4 atoms: total mass = 15.035, total charge = -2.77556e-17. +Re-initialized atom group for variable "one":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +Re-initialized atom group for variable "two":0/0. 4 atoms: total mass = 15.035, total charge = 0.16. +Re-initialized atom group for variable "two":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +The final output state file will be "out.colvars.state". +Synchronizing (emptying the buffer of) trajectory file "out.colvars.traj". +SHAKE stats (type/ave/delta/count) on step 0 +Bond: 4 1.111 1.44264e-05 9 +Bond: 6 0.996998 7.26967e-06 6 +Bond: 8 1.08 1.32536e-05 7 +Bond: 10 1.111 1.22749e-05 8 +Bond: 12 1.08 1.11767e-05 9 +Bond: 14 0.96 0 1 +Bond: 18 0.957206 4.37979e-05 1280 +Angle: 31 104.519 0.00396029 640 +Per MPI rank memory allocation (min/avg/max) = 16.02 | 16.22 | 16.41 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond f_2 + 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 292.14604 + 10 305.06149 -5058.8972 -6286.1901 1227.2929 -6413.1021 58.8499 103.38345 + 20 311.00516 -4999.0612 -6250.266 1251.2048 -6417.1021 47.695297 36.699695 + 30 314.22337 -4993.7012 -6257.8532 1264.152 -6421.9679 35.344144 10.563933 + 40 297.87491 -5020.8378 -6219.2184 1198.3805 -6389.8528 27.723133 3.8354517 + 50 304.02071 -5056.2576 -6279.3633 1223.1057 -6456.8214 55.459505 0.20678217 + 60 285.92576 -5104.0461 -6254.354 1150.3079 -6435.5814 32.767229 0.69352945 + 70 277.83519 -5163.9758 -6281.7345 1117.7587 -6447.7033 39.627168 11.433603 + 80 267.51495 -5206.4046 -6282.644 1076.2394 -6456.6369 31.611883 6.3554178 + 90 278.15579 -5245.3824 -6364.431 1119.0485 -6499.8063 28.849773 0.36941576 +SHAKE stats (type/ave/delta/count) on step 100 +Bond: 4 1.11098 8.97155e-05 9 +Bond: 6 0.996996 1.00568e-05 6 +Bond: 8 1.08 6.02345e-06 7 +Bond: 10 1.111 1.84253e-05 8 +Bond: 12 1.08 7.2713e-06 9 +Bond: 14 0.959996 0 1 +Bond: 18 0.957198 3.36079e-05 1280 +Angle: 31 104.52 0.0030599 640 + 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 +Saving collective variables state to "out.colvars.state". +Loop time of 0.246405 on 4 procs for 100 steps with 2004 atoms + +Performance: 70.128 ns/day, 0.342 hours/ns, 405.836 timesteps/s, 813.295 katom-step/s +99.5% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.17765 | 0.18092 | 0.18373 | 0.6 | 73.42 +Bond | 0.00021581 | 0.00045219 | 0.00069916 | 0.0 | 0.18 +Kspace | 0.018035 | 0.020459 | 0.023812 | 1.7 | 8.30 +Neigh | 0.032165 | 0.032193 | 0.032207 | 0.0 | 13.07 +Comm | 0.00566 | 0.0058533 | 0.0060088 | 0.2 | 2.38 +Output | 0.00012205 | 0.00014069 | 0.00019404 | 0.0 | 0.06 +Modify | 0.0059979 | 0.0060225 | 0.0060368 | 0.0 | 2.44 +Other | | 0.0003631 | | | 0.15 + +Nlocal: 501 ave 513 max 489 min +Histogram: 1 0 0 0 1 1 0 0 0 1 +Nghost: 6563.25 ave 6596 max 6519 min +Histogram: 1 0 1 0 0 0 0 0 0 2 +Neighs: 177059 ave 181742 max 172942 min +Histogram: 1 0 1 0 0 0 1 0 0 1 + +Total # of neighbors = 708237 +Ave neighs/atom = 353.41168 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 12 +Dangerous builds = 2 + +run 100 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Colvars module (Fiorin2013, plus other works listed for specific features) + + +% Colvars module: +% Colvars-LAMMPS interface: +% Harmonic colvar bias implementation: +% Optimal rotation via flexible fitting: +% distance colvar component: + +@article{Fiorin2013, + author = {Fiorin, Giacomo and Klein, Michael L.{} and H\'enin, J\'er\^ome}, + title = {Using collective variables to drive molecular dynamics simulations}, + journal = {Mol. Phys.}, + year = {2013}, + volume = {111}, + number = {22-23}, + pages = {3345--3362}, + publisher = {Taylor & Francis}, + doi = {10.1080/00268976.2013.813594}, + url = {https://doi.org/10.1080/00268976.2013.813594} +} + + +% LAMMPS engine: + +@article{Thompson2022, + title = {{LAMMPS} - a flexible simulation tool for particle-based materials modeling at the atomic, meso, and continuum scales}, + author = {Thompson, Aidan P. and Aktulga, H. Metin and Berger, Richard and Bolintineanu, Dan S. and Brown, W. Michael and Crozier, Paul S. and {in't Veld}, Pieter J. and Kohlmeyer, Axel and Moore, Stan G. and Nguyen, Trung Dac and Shan, Ray and Stevens, Mark J. and Tranchida, Julien and Trott, Christian and Plimpton, Steven J.}, + journal = {Comp. Phys. Comm.}, + volume = {271}, + pages = {108171}, + year = {2022}, + doi = {10.1016/j.cpc.2021.108171}, + url = {https://doi.org/10.1016/j.cpc.2021.108171} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 4312 960 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Current simulation parameters: initial step = 100, integration timestep = 2 +Updating atomic parameters (masses, charges, etc). +Re-initialized atom group for variable "one":0/0. 4 atoms: total mass = 15.035, total charge = -2.77556e-17. +Re-initialized atom group for variable "one":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +Re-initialized atom group for variable "two":0/0. 4 atoms: total mass = 15.035, total charge = 0.16. +Re-initialized atom group for variable "two":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +SHAKE stats (type/ave/delta/count) on step 100 +Bond: 4 1.11098 8.97155e-05 9 +Bond: 6 0.996996 1.00568e-05 6 +Bond: 8 1.08 6.02345e-06 7 +Bond: 10 1.111 1.84253e-05 8 +Bond: 12 1.08 7.2713e-06 9 +Bond: 14 0.959996 0 1 +Bond: 18 0.957198 3.36079e-05 1280 +Angle: 31 104.52 0.0030599 640 +Per MPI rank memory allocation (min/avg/max) = 16.02 | 16.22 | 16.41 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond f_2 + 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 + 110 266.26438 -5341.1991 -6412.4073 1071.2082 -6552.7551 33.573173 1.9229657 + 120 262.66604 -5386.2387 -6442.9704 1056.7317 -6587.5483 29.859587 2.7124812 + 130 252.83379 -5422.5401 -6439.7157 1017.1756 -6580.4703 25.979343 1.2031591 + 140 253.85111 -5452.1837 -6473.4521 1021.2684 -6609.4826 26.071651 0.30585517 + 150 261.31816 -5490.4726 -6541.7816 1051.3091 -6646.6075 16.258823 6.9051008 + 160 255.7352 -5521.5941 -6550.4423 1028.8483 -6658.1373 19.717399 12.339679 + 170 253.42527 -5540.0942 -6559.6494 1019.5552 -6656.6678 23.293812 10.290217 + 180 248.51161 -5550.3254 -6550.1125 999.78704 -6661.4235 26.200127 3.4336036 + 190 250.80862 -5555.2555 -6564.2836 1009.0281 -6666.164 25.53634 3.3494286 +SHAKE stats (type/ave/delta/count) on step 200 +Bond: 4 1.111 1.81266e-06 9 +Bond: 6 0.997 7.79424e-07 6 +Bond: 8 1.08 1.08903e-06 7 +Bond: 10 1.111 2.96503e-07 8 +Bond: 12 1.08 4.69038e-07 9 +Bond: 14 0.960001 0 1 +Bond: 18 0.957201 3.76471e-06 1280 +Angle: 31 104.52 0.000411055 640 + 200 251.50475 -5557.4252 -6569.2539 1011.8288 -6674.0846 24.804906 7.1387572 +Saving collective variables state to "out.colvars.state". +Loop time of 0.238087 on 4 procs for 100 steps with 2004 atoms + +Performance: 72.578 ns/day, 0.331 hours/ns, 420.014 timesteps/s, 841.709 katom-step/s +99.4% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.17913 | 0.18408 | 0.19082 | 1.1 | 77.32 +Bond | 0.00019617 | 0.00044139 | 0.00071286 | 0.0 | 0.19 +Kspace | 0.016186 | 0.022449 | 0.02737 | 3.0 | 9.43 +Neigh | 0.018728 | 0.018753 | 0.018777 | 0.0 | 7.88 +Comm | 0.0052171 | 0.0055397 | 0.0058422 | 0.3 | 2.33 +Output | 0.00012326 | 0.00014453 | 0.00020506 | 0.0 | 0.06 +Modify | 0.0062505 | 0.0062725 | 0.0062944 | 0.0 | 2.63 +Other | | 0.0004069 | | | 0.17 + +Nlocal: 501 ave 513 max 481 min +Histogram: 1 0 0 0 0 0 1 0 1 1 +Nghost: 6556.5 ave 6608 max 6514 min +Histogram: 2 0 0 0 0 0 0 1 0 1 +Neighs: 177021 ave 182259 max 172089 min +Histogram: 2 0 0 0 0 0 0 0 1 1 + +Total # of neighbors = 708083 +Ave neighs/atom = 353.33483 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 7 +Dangerous builds = 0 + +fix 2 all colvars peptide.colvars input out.colvars.state output out2 +---------------------------------------------------------------------- +Initializing the collective variables module, version 2024-06-04. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +This version was built with the C++11 standard or higher. +Summary of compile-time features available in this build: + - SMP parallelism: enabled (num. threads = 1) + - Lepton custom functions: available + - Tcl interpreter: not available +Using LAMMPS interface, version "2024-07-05". +Setting initial step number from MD engine: 200 + +run 100 +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 4312 960 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Will read input state from file "out.colvars.state"---------------------------------------------------------------------- +Reading new configuration from file "peptide.colvars": +# units = "" [default] +# smp = on [default] +# colvarsTrajFrequency = 1 +# colvarsRestartFrequency = 1000 +# scriptedColvarForces = off [default] +# scriptingAfterBiases = off [default] +---------------------------------------------------------------------- + Initializing a new collective variable. + # name = "one" + Initializing a new "distance" component. + # name = "" [default] + # componentCoeff = 1 [default] + # componentExp = 1 [default] + # period = 0 [default] + # wrapAround = 0 [default] + # forceNoPBC = off [default] + # scalable = on [default] + Initializing atom group "group1". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group1" defined with 4 atoms requested. + Initializing atom group "group2". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group2" defined with 1 atoms requested. + # oneSiteSystemForce = off [default] + # oneSiteTotalForce = off [default] + All components initialized. + # timeStepFactor = 1 [default] + # width = 1 [default] + # lowerBoundary = 0 [default] + # upperBoundary = 1 [default] + # hardLowerBoundary = on [default] + # hardUpperBoundary = off [default] + # expandBoundaries = off [default] + # extendedLagrangian = off [default] + # outputValue = on [default] + # outputVelocity = off [default] + # outputTotalForce = off [default] + # outputAppliedForce = off [default] + # subtractAppliedForce = off [default] + # runAve = off [default] + # corrFunc = off [default] +---------------------------------------------------------------------- + Initializing a new collective variable. + # name = "two" + Initializing a new "distance" component. + # name = "" [default] + # componentCoeff = 1 [default] + # componentExp = 1 [default] + # period = 0 [default] + # wrapAround = 0 [default] + # forceNoPBC = off [default] + # scalable = on [default] + Initializing atom group "group1". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group1" defined with 4 atoms requested. + Initializing atom group "group2". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group2" defined with 1 atoms requested. + # oneSiteSystemForce = off [default] + # oneSiteTotalForce = off [default] + All components initialized. + # timeStepFactor = 1 [default] + # width = 1 [default] + # lowerBoundary = 0 [default] + # upperBoundary = 1 [default] + # hardLowerBoundary = on [default] + # hardUpperBoundary = off [default] + # expandBoundaries = off [default] + # extendedLagrangian = off [default] + # outputValue = on [default] + # outputVelocity = off [default] + # outputTotalForce = off [default] + # outputAppliedForce = off [default] + # subtractAppliedForce = off [default] + # runAve = off [default] + # corrFunc = off [default] +---------------------------------------------------------------------- +Collective variables initialized, 2 in total. +---------------------------------------------------------------------- + Initializing a new "harmonic" instance. + # name = "h_pot" + # colvars = { one, two } + # stepZeroData = off [default] + # outputEnergy = off [default] + # outputFreq = 1000 [default] + # timeStepFactor = 1 [default] + # writeTISamples = off [default] + # writeTIPMF = off [default] + # centers = { 10, 10 } + # targetCenters = { 10, 10 } [default] + # outputCenters = off [default] + # forceConstant = 100 + # decoupling = off [default] + # targetForceConstant = -1 [default] + The force constant for colvar "one" will be rescaled to 100 according to the specified width (1). + The force constant for colvar "two" will be rescaled to 100 according to the specified width (1). +---------------------------------------------------------------------- +Collective variables biases initialized, 1 in total. +---------------------------------------------------------------------- +Collective variables module (re)initialized. +---------------------------------------------------------------------- +Current simulation parameters: initial step = 200, integration timestep = 2 +Updating atomic parameters (masses, charges, etc). +Re-initialized atom group for variable "one":0/0. 4 atoms: total mass = 15.035, total charge = -2.77556e-17. +Re-initialized atom group for variable "one":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +Re-initialized atom group for variable "two":0/0. 4 atoms: total mass = 15.035, total charge = 0.16. +Re-initialized atom group for variable "two":0/1. 1 atoms: total mass = 12.011, total charge = 0.51. +---------------------------------------------------------------------- +Loading state from text file "out.colvars.state". + Restarting collective variable "one" from value: 10.0128 + Restarting collective variable "two" from value: 9.62236 + Restarted harmonic bias "h_pot" with step number 200. +---------------------------------------------------------------------- +The final output state file will be "out2.colvars.state". +SHAKE stats (type/ave/delta/count) on step 200 +Bond: 4 1.111 1.81266e-06 9 +Bond: 6 0.997 7.79424e-07 6 +Bond: 8 1.08 1.08903e-06 7 +Bond: 10 1.111 2.96503e-07 8 +Bond: 12 1.08 4.69038e-07 9 +Bond: 14 0.960001 0 1 +Bond: 18 0.957201 3.76471e-06 1280 +Angle: 31 104.52 0.000411055 640 +Per MPI rank memory allocation (min/avg/max) = 16.02 | 16.22 | 16.41 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond f_2 + 200 251.50475 -5557.4252 -6569.2539 1011.8288 -6674.0846 24.804906 7.1387572 + 210 253.15302 -5538.5615 -6557.0215 1018.4599 -6672.0498 37.676621 0.61219488 + 220 245.19621 -5522.5191 -6508.9679 986.44887 -6628.1899 36.657688 0.048643387 + 230 258.69885 -5495.7275 -6536.4989 1040.7713 -6658.2886 34.857911 0.22092559 + 240 260.79633 -5469.8678 -6519.0775 1049.2097 -6624.18 31.576952 3.7574815 + 250 269.07527 -5438.3946 -6520.9113 1082.5167 -6616.4382 25.447675 8.6600023 + 260 266.01046 -5397.3485 -6467.5352 1070.1867 -6580.2896 26.871919 8.3323104 + 270 272.81307 -5350.8819 -6448.4362 1097.5543 -6563.8228 23.114196 10.973132 + 280 279.42265 -5307.9799 -6432.1251 1124.1452 -6557.3368 33.644022 8.5490489 + 290 286.85168 -5260.841 -6414.874 1154.033 -6515.6797 28.574838 5.9100102 +SHAKE stats (type/ave/delta/count) on step 300 +Bond: 4 1.111 1.79793e-05 9 +Bond: 6 0.997005 1.02512e-05 6 +Bond: 8 1.08 1.85103e-05 7 +Bond: 10 1.111 9.9884e-06 8 +Bond: 12 1.08 8.84114e-06 9 +Bond: 14 0.960008 0 1 +Bond: 18 0.957203 1.8445e-05 1280 +Angle: 31 104.52 0.00168383 640 + 300 291.52793 -5216.288 -6389.1341 1172.846 -6503.1275 27.88915 2.2482428 +Saving collective variables state to "out2.colvars.state". +Loop time of 0.245933 on 4 procs for 100 steps with 2004 atoms + +Performance: 70.263 ns/day, 0.342 hours/ns, 406.614 timesteps/s, 814.854 katom-step/s +99.6% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.17862 | 0.18666 | 0.19126 | 1.2 | 75.90 +Bond | 0.00021974 | 0.00048505 | 0.00077708 | 0.0 | 0.20 +Kspace | 0.018338 | 0.02317 | 0.031148 | 3.4 | 9.42 +Neigh | 0.022128 | 0.022183 | 0.022222 | 0.0 | 9.02 +Comm | 0.0059137 | 0.0060593 | 0.0064247 | 0.3 | 2.46 +Output | 0.00014648 | 0.00015946 | 0.00019596 | 0.0 | 0.06 +Modify | 0.0067012 | 0.00674 | 0.0067814 | 0.0 | 2.74 +Other | | 0.0004738 | | | 0.19 + +Nlocal: 501 ave 513 max 472 min +Histogram: 1 0 0 0 0 0 0 0 0 3 +Nghost: 6612.75 ave 6681 max 6561 min +Histogram: 1 1 0 0 0 1 0 0 0 1 +Neighs: 177038 ave 180136 max 170218 min +Histogram: 1 0 0 0 0 0 0 1 0 2 + +Total # of neighbors = 708152 +Ave neighs/atom = 353.36926 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 8 +Dangerous builds = 0 + +Total wall time: 0:00:00 diff --git a/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars2.g++.1 b/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars2.g++.1 new file mode 100644 index 0000000000..7777c152fb --- /dev/null +++ b/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars2.g++.1 @@ -0,0 +1,344 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# Solvated 5-mer peptide + +units real +atom_style full + +pair_style lj/charmm/coul/long 8.0 10.0 10.0 +bond_style harmonic +angle_style charmm +dihedral_style charmm +improper_style harmonic +kspace_style pppm 0.0001 + +read_data data.peptide +Reading data file ... + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 2004 atoms + reading velocities ... + 2004 velocities + scanning bonds ... + 3 = max bonds/atom + scanning angles ... + 6 = max angles/atom + scanning dihedrals ... + 14 = max dihedrals/atom + scanning impropers ... + 1 = max impropers/atom + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 1 by 1 MPI processor grid + reading bonds ... + 1365 bonds + reading angles ... + 786 angles + reading dihedrals ... + 207 dihedrals + reading impropers ... + 12 impropers +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0 + special bond factors coul: 0 0 0 + 4 = max # of 1-2 neighbors + 7 = max # of 1-3 neighbors + 14 = max # of 1-4 neighbors + 18 = max # of special neighbors + special bonds CPU = 0.000 seconds + read_data CPU = 0.012 seconds + +neighbor 2.0 bin +neigh_modify delay 5 + +timestep 2.0 + +group peptide type <= 12 +84 atoms in group peptide +group one id 2 4 5 6 +4 atoms in group one +group two id 80 82 83 84 +4 atoms in group two +group ref id 37 +1 atoms in group ref +group colvar union one two ref +9 atoms in group colvar + +fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 + +shell "rm -f peptide2.colvars.*" +fix 2 all colvars peptide.colvars2 output peptide2 +---------------------------------------------------------------------- +Initializing the collective variables module, version 2024-06-04. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +This version was built with the C++11 standard or higher. +Summary of compile-time features available in this build: + - SMP parallelism: enabled (num. threads = 1) + - Lepton custom functions: available + - Tcl interpreter: not available +Using LAMMPS interface, version "2024-07-05". + +fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 +Finding SHAKE clusters ... + 19 = # of size 2 clusters + 6 = # of size 3 clusters + 3 = # of size 4 clusters + 640 = # of frozen angles + find clusters CPU = 0.000 seconds + +#dump 1 colvar custom 1 dump.colvar2.lammpstrj id xu yu zu fx fy fz +#dump_modify 1 sort id + +thermo_style custom step temp etotal pe ke epair ebond f_2 +thermo 10 + + +run 100 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 10648 3375 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 5 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 12 + ghost atom cutoff = 12 + binsize = 6, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/charmm/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +---------------------------------------------------------------------- +Reading new configuration from file "peptide.colvars2": +# units = "" [default] +# smp = on [default] +# colvarsTrajFrequency = 1 +# colvarsRestartFrequency = 1000 +# scriptedColvarForces = off [default] +# scriptingAfterBiases = off [default] +---------------------------------------------------------------------- + Initializing a new collective variable. + # name = "one" + Initializing a new "distance" component. + # name = "" [default] + # componentCoeff = 1 [default] + # componentExp = 1 [default] + # period = 0 [default] + # wrapAround = 0 [default] + # forceNoPBC = off [default] + # scalable = on [default] + Initializing atom group "group1". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group1" defined with 4 atoms requested. + Initializing atom group "group2". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group2" defined with 4 atoms requested. + # oneSiteSystemForce = off [default] + # oneSiteTotalForce = off [default] + All components initialized. + # timeStepFactor = 1 [default] + # width = 1 [default] + # lowerBoundary = 0 [default] + # upperBoundary = 1 [default] + # hardLowerBoundary = on [default] + # hardUpperBoundary = off [default] + # expandBoundaries = off [default] + # extendedLagrangian = off [default] + # outputValue = on [default] + # outputVelocity = off [default] + # outputTotalForce = off [default] + # outputAppliedForce = off [default] + # subtractAppliedForce = off [default] + # runAve = off [default] + # corrFunc = off [default] +---------------------------------------------------------------------- +Collective variables initialized, 1 in total. +---------------------------------------------------------------------- + Initializing a new "harmonic" instance. + # name = "h_pot" + # colvars = { one } + # stepZeroData = off [default] + # outputEnergy = off [default] + # outputFreq = 1000 [default] + # timeStepFactor = 1 [default] + # writeTISamples = off [default] + # writeTIPMF = off [default] + # centers = { 10 } + # targetCenters = { 10 } [default] + # outputCenters = off [default] + # forceConstant = 100 + # decoupling = off [default] + # targetForceConstant = -1 [default] + The force constant for colvar "one" will be rescaled to 100 according to the specified width (1). +---------------------------------------------------------------------- +Collective variables biases initialized, 1 in total. +---------------------------------------------------------------------- +Collective variables module (re)initialized. +---------------------------------------------------------------------- +Current simulation parameters: initial step = 0, integration timestep = 2 +Updating atomic parameters (masses, charges, etc). +Re-initialized atom group for variable "one":0/0. 4 atoms: total mass = 15.035, total charge = -2.77556e-17. +Re-initialized atom group for variable "one":0/1. 4 atoms: total mass = 15.035, total charge = 0.16. +The final output state file will be "peptide2.colvars.state". +Synchronizing (emptying the buffer of) trajectory file "peptide2.colvars.traj". +SHAKE stats (type/ave/delta/count) on step 0 +Bond: 4 1.111 1.44264e-05 9 +Bond: 6 0.996998 7.26967e-06 6 +Bond: 8 1.08 1.32536e-05 7 +Bond: 10 1.111 1.22749e-05 8 +Bond: 12 1.08 1.11767e-05 9 +Bond: 14 0.96 0 1 +Bond: 18 0.957206 4.37979e-05 1280 +Angle: 31 104.519 0.00396029 640 +Per MPI rank memory allocation (min/avg/max) = 19.03 | 19.03 | 19.03 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond f_2 + 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 273.74323 + 10 333.47919 -4982.3968 -6324.0169 1341.6201 -6400.4223 21.367762 12.393263 + 20 309.56902 -4999.4978 -6244.9249 1245.4271 -6401.6981 43.59542 13.004314 + 30 316.9763 -5025.5662 -6300.7935 1275.2273 -6422.5375 27.323196 6.7589585 + 40 297.55779 -5088.2204 -6285.3252 1197.1047 -6395.375 13.6769 25.625024 + 50 296.79994 -5117.2966 -6311.3525 1194.0558 -6451.8309 30.631241 5.3320863 + 60 281.72778 -5188.4969 -6321.9159 1133.419 -6427.8856 26.287723 20.574037 + 70 277.26053 -5224.8434 -6340.2902 1115.4468 -6447.8521 27.742893 0.69420283 + 80 268.01484 -5281.8509 -6360.1014 1078.2505 -6496.6086 20.300754 5.2607186 + 90 270.43472 -5334.0835 -6422.0694 1087.9859 -6563.2511 39.846095 1.1832272 +SHAKE stats (type/ave/delta/count) on step 100 +Bond: 4 1.11096 0.000191462 9 +Bond: 6 0.996989 3.55508e-05 6 +Bond: 8 1.08 9.0997e-06 7 +Bond: 10 1.111 1.58544e-05 8 +Bond: 12 1.08 5.80604e-06 9 +Bond: 14 0.959997 0 1 +Bond: 18 0.957198 2.92445e-05 1280 +Angle: 31 104.52 0.00239923 640 + 100 260.35636 -5387.2284 -6434.6681 1047.4397 -6534.1956 20.246866 0.075048487 +Saving collective variables state to "peptide2.colvars.state". +Loop time of 0.907882 on 1 procs for 100 steps with 2004 atoms + +Performance: 19.033 ns/day, 1.261 hours/ns, 110.146 timesteps/s, 220.734 katom-step/s +99.7% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.71563 | 0.71563 | 0.71563 | 0.0 | 78.82 +Bond | 0.0013267 | 0.0013267 | 0.0013267 | 0.0 | 0.15 +Kspace | 0.042157 | 0.042157 | 0.042157 | 0.0 | 4.64 +Neigh | 0.13452 | 0.13452 | 0.13452 | 0.0 | 14.82 +Comm | 0.0034995 | 0.0034995 | 0.0034995 | 0.0 | 0.39 +Output | 0.00014584 | 0.00014584 | 0.00014584 | 0.0 | 0.02 +Modify | 0.010115 | 0.010115 | 0.010115 | 0.0 | 1.11 +Other | | 0.0004888 | | | 0.05 + +Nlocal: 2004 ave 2004 max 2004 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 11143 ave 11143 max 11143 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 708234 ave 708234 max 708234 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 708234 +Ave neighs/atom = 353.41018 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 13 +Dangerous builds = 1 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Colvars module (Fiorin2013, plus other works listed for specific features) + + +% Colvars module: +% Colvars-LAMMPS interface: +% Harmonic colvar bias implementation: +% Optimal rotation via flexible fitting: +% distance colvar component: + +@article{Fiorin2013, + author = {Fiorin, Giacomo and Klein, Michael L.{} and H\'enin, J\'er\^ome}, + title = {Using collective variables to drive molecular dynamics simulations}, + journal = {Mol. Phys.}, + year = {2013}, + volume = {111}, + number = {22-23}, + pages = {3345--3362}, + publisher = {Taylor & Francis}, + doi = {10.1080/00268976.2013.813594}, + url = {https://doi.org/10.1080/00268976.2013.813594} +} + + +% LAMMPS engine: + +@article{Thompson2022, + title = {{LAMMPS} - a flexible simulation tool for particle-based materials modeling at the atomic, meso, and continuum scales}, + author = {Thompson, Aidan P. and Aktulga, H. Metin and Berger, Richard and Bolintineanu, Dan S. and Brown, W. Michael and Crozier, Paul S. and {in't Veld}, Pieter J. and Kohlmeyer, Axel and Moore, Stan G. and Nguyen, Trung Dac and Shan, Ray and Stevens, Mark J. and Tranchida, Julien and Trott, Christian and Plimpton, Steven J.}, + journal = {Comp. Phys. Comm.}, + volume = {271}, + pages = {108171}, + year = {2022}, + doi = {10.1016/j.cpc.2021.108171}, + url = {https://doi.org/10.1016/j.cpc.2021.108171} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Total wall time: 0:00:00 diff --git a/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars2.g++.4 b/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars2.g++.4 new file mode 100644 index 0000000000..9aa28f51d5 --- /dev/null +++ b/examples/PACKAGES/colvars/log.5Aug24.peptide-colvars2.g++.4 @@ -0,0 +1,344 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# Solvated 5-mer peptide + +units real +atom_style full + +pair_style lj/charmm/coul/long 8.0 10.0 10.0 +bond_style harmonic +angle_style charmm +dihedral_style charmm +improper_style harmonic +kspace_style pppm 0.0001 + +read_data data.peptide +Reading data file ... + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 2004 atoms + reading velocities ... + 2004 velocities + scanning bonds ... + 3 = max bonds/atom + scanning angles ... + 6 = max angles/atom + scanning dihedrals ... + 14 = max dihedrals/atom + scanning impropers ... + 1 = max impropers/atom + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 2 by 2 MPI processor grid + reading bonds ... + 1365 bonds + reading angles ... + 786 angles + reading dihedrals ... + 207 dihedrals + reading impropers ... + 12 impropers +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0 + special bond factors coul: 0 0 0 + 4 = max # of 1-2 neighbors + 7 = max # of 1-3 neighbors + 14 = max # of 1-4 neighbors + 18 = max # of special neighbors + special bonds CPU = 0.000 seconds + read_data CPU = 0.011 seconds + +neighbor 2.0 bin +neigh_modify delay 5 + +timestep 2.0 + +group peptide type <= 12 +84 atoms in group peptide +group one id 2 4 5 6 +4 atoms in group one +group two id 80 82 83 84 +4 atoms in group two +group ref id 37 +1 atoms in group ref +group colvar union one two ref +9 atoms in group colvar + +fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 + +shell "rm -f peptide2.colvars.*" +fix 2 all colvars peptide.colvars2 output peptide2 +---------------------------------------------------------------------- +Initializing the collective variables module, version 2024-06-04. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +Please cite Fiorin et al, Mol Phys 2013: + https://doi.org/10.1080/00268976.2013.813594 +as well as all other papers listed below for individual features used. +This version was built with the C++11 standard or higher. +Summary of compile-time features available in this build: + - SMP parallelism: enabled (num. threads = 1) + - Lepton custom functions: available + - Tcl interpreter: not available +Using LAMMPS interface, version "2024-07-05". + +fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 +Finding SHAKE clusters ... + 19 = # of size 2 clusters + 6 = # of size 3 clusters + 3 = # of size 4 clusters + 640 = # of frozen angles + find clusters CPU = 0.000 seconds + +#dump 1 colvar custom 1 dump.colvar2.lammpstrj id xu yu zu fx fy fz +#dump_modify 1 sort id + +thermo_style custom step temp etotal pe ke epair ebond f_2 +thermo 10 + + +run 100 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 4312 960 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 5 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 12 + ghost atom cutoff = 12 + binsize = 6, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/charmm/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +---------------------------------------------------------------------- +Reading new configuration from file "peptide.colvars2": +# units = "" [default] +# smp = on [default] +# colvarsTrajFrequency = 1 +# colvarsRestartFrequency = 1000 +# scriptedColvarForces = off [default] +# scriptingAfterBiases = off [default] +---------------------------------------------------------------------- + Initializing a new collective variable. + # name = "one" + Initializing a new "distance" component. + # name = "" [default] + # componentCoeff = 1 [default] + # componentExp = 1 [default] + # period = 0 [default] + # wrapAround = 0 [default] + # forceNoPBC = off [default] + # scalable = on [default] + Initializing atom group "group1". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group1" defined with 4 atoms requested. + Initializing atom group "group2". + # name = "" [default] + # centerToOrigin = off [default] + # centerToReference = off [default] + # rotateToReference = off [default] + # atomsOfGroup = "" [default] + # indexGroup = "" [default] + # psfSegID = [default] + # atomsFile = "" [default] + # dummyAtom = ( 0 , 0 , 0 ) [default] + # enableFitGradients = on [default] + # printAtomIDs = off [default] + Atom group "group2" defined with 4 atoms requested. + # oneSiteSystemForce = off [default] + # oneSiteTotalForce = off [default] + All components initialized. + # timeStepFactor = 1 [default] + # width = 1 [default] + # lowerBoundary = 0 [default] + # upperBoundary = 1 [default] + # hardLowerBoundary = on [default] + # hardUpperBoundary = off [default] + # expandBoundaries = off [default] + # extendedLagrangian = off [default] + # outputValue = on [default] + # outputVelocity = off [default] + # outputTotalForce = off [default] + # outputAppliedForce = off [default] + # subtractAppliedForce = off [default] + # runAve = off [default] + # corrFunc = off [default] +---------------------------------------------------------------------- +Collective variables initialized, 1 in total. +---------------------------------------------------------------------- + Initializing a new "harmonic" instance. + # name = "h_pot" + # colvars = { one } + # stepZeroData = off [default] + # outputEnergy = off [default] + # outputFreq = 1000 [default] + # timeStepFactor = 1 [default] + # writeTISamples = off [default] + # writeTIPMF = off [default] + # centers = { 10 } + # targetCenters = { 10 } [default] + # outputCenters = off [default] + # forceConstant = 100 + # decoupling = off [default] + # targetForceConstant = -1 [default] + The force constant for colvar "one" will be rescaled to 100 according to the specified width (1). +---------------------------------------------------------------------- +Collective variables biases initialized, 1 in total. +---------------------------------------------------------------------- +Collective variables module (re)initialized. +---------------------------------------------------------------------- +Current simulation parameters: initial step = 0, integration timestep = 2 +Updating atomic parameters (masses, charges, etc). +Re-initialized atom group for variable "one":0/0. 4 atoms: total mass = 15.035, total charge = -2.77556e-17. +Re-initialized atom group for variable "one":0/1. 4 atoms: total mass = 15.035, total charge = 0.16. +The final output state file will be "peptide2.colvars.state". +Synchronizing (emptying the buffer of) trajectory file "peptide2.colvars.traj". +SHAKE stats (type/ave/delta/count) on step 0 +Bond: 4 1.111 1.44264e-05 9 +Bond: 6 0.996998 7.26967e-06 6 +Bond: 8 1.08 1.32536e-05 7 +Bond: 10 1.111 1.22749e-05 8 +Bond: 12 1.08 1.11767e-05 9 +Bond: 14 0.96 0 1 +Bond: 18 0.957206 4.37979e-05 1280 +Angle: 31 104.519 0.00396029 640 +Per MPI rank memory allocation (min/avg/max) = 16.02 | 16.22 | 16.41 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond f_2 + 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 273.74323 + 10 333.47919 -4982.3968 -6324.0169 1341.6201 -6400.4223 21.367762 12.393263 + 20 309.56902 -4999.4978 -6244.9249 1245.4271 -6401.6981 43.59542 13.004314 + 30 316.9763 -5025.5662 -6300.7935 1275.2273 -6422.5375 27.323196 6.7589585 + 40 297.55779 -5088.2204 -6285.3252 1197.1047 -6395.375 13.6769 25.625024 + 50 296.79994 -5117.2966 -6311.3525 1194.0558 -6451.8309 30.631241 5.3320863 + 60 281.72778 -5188.4969 -6321.9159 1133.419 -6427.8856 26.287723 20.574037 + 70 277.26053 -5224.8434 -6340.2902 1115.4468 -6447.8521 27.742893 0.69420283 + 80 268.01484 -5281.8509 -6360.1014 1078.2505 -6496.6086 20.300754 5.2607186 + 90 270.43472 -5334.0835 -6422.0694 1087.9859 -6563.2511 39.846095 1.1832272 +SHAKE stats (type/ave/delta/count) on step 100 +Bond: 4 1.11096 0.000191462 9 +Bond: 6 0.996989 3.55508e-05 6 +Bond: 8 1.08 9.0997e-06 7 +Bond: 10 1.111 1.58544e-05 8 +Bond: 12 1.08 5.80604e-06 9 +Bond: 14 0.959997 0 1 +Bond: 18 0.957198 2.92445e-05 1280 +Angle: 31 104.52 0.00239923 640 + 100 260.35636 -5387.2284 -6434.6681 1047.4397 -6534.1956 20.246866 0.075048487 +Saving collective variables state to "peptide2.colvars.state". +Loop time of 0.253421 on 4 procs for 100 steps with 2004 atoms + +Performance: 68.187 ns/day, 0.352 hours/ns, 394.600 timesteps/s, 790.779 katom-step/s +99.6% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.1771 | 0.18185 | 0.18625 | 0.8 | 71.76 +Bond | 0.00028771 | 0.00056007 | 0.00087366 | 0.0 | 0.22 +Kspace | 0.017434 | 0.021451 | 0.026345 | 2.4 | 8.46 +Neigh | 0.035481 | 0.035495 | 0.035512 | 0.0 | 14.01 +Comm | 0.0064003 | 0.0065098 | 0.0065994 | 0.1 | 2.57 +Output | 0.00012417 | 0.00013888 | 0.00018109 | 0.0 | 0.05 +Modify | 0.0069389 | 0.0069521 | 0.0069617 | 0.0 | 2.74 +Other | | 0.0004667 | | | 0.18 + +Nlocal: 501 ave 513 max 494 min +Histogram: 1 1 0 1 0 0 0 0 0 1 +Nghost: 6572.5 ave 6593 max 6548 min +Histogram: 1 0 1 0 0 0 0 0 0 2 +Neighs: 177058 ave 181778 max 174301 min +Histogram: 2 0 0 0 1 0 0 0 0 1 + +Total # of neighbors = 708234 +Ave neighs/atom = 353.41018 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 13 +Dangerous builds = 1 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Colvars module (Fiorin2013, plus other works listed for specific features) + + +% Colvars module: +% Colvars-LAMMPS interface: +% Harmonic colvar bias implementation: +% Optimal rotation via flexible fitting: +% distance colvar component: + +@article{Fiorin2013, + author = {Fiorin, Giacomo and Klein, Michael L.{} and H\'enin, J\'er\^ome}, + title = {Using collective variables to drive molecular dynamics simulations}, + journal = {Mol. Phys.}, + year = {2013}, + volume = {111}, + number = {22-23}, + pages = {3345--3362}, + publisher = {Taylor & Francis}, + doi = {10.1080/00268976.2013.813594}, + url = {https://doi.org/10.1080/00268976.2013.813594} +} + + +% LAMMPS engine: + +@article{Thompson2022, + title = {{LAMMPS} - a flexible simulation tool for particle-based materials modeling at the atomic, meso, and continuum scales}, + author = {Thompson, Aidan P. and Aktulga, H. Metin and Berger, Richard and Bolintineanu, Dan S. and Brown, W. Michael and Crozier, Paul S. and {in't Veld}, Pieter J. and Kohlmeyer, Axel and Moore, Stan G. and Nguyen, Trung Dac and Shan, Ray and Stevens, Mark J. and Tranchida, Julien and Trott, Christian and Plimpton, Steven J.}, + journal = {Comp. Phys. Comm.}, + volume = {271}, + pages = {108171}, + year = {2022}, + doi = {10.1016/j.cpc.2021.108171}, + url = {https://doi.org/10.1016/j.cpc.2021.108171} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Total wall time: 0:00:00 diff --git a/examples/PACKAGES/colvars/log.5Aug24.peptide-spring.g++.1 b/examples/PACKAGES/colvars/log.5Aug24.peptide-spring.g++.1 new file mode 100644 index 0000000000..322fac3afa --- /dev/null +++ b/examples/PACKAGES/colvars/log.5Aug24.peptide-spring.g++.1 @@ -0,0 +1,194 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# Solvated 5-mer peptide + +units real +atom_style full + +pair_style lj/charmm/coul/long 8.0 10.0 10.0 +bond_style harmonic +angle_style charmm +dihedral_style charmm +improper_style harmonic +kspace_style pppm 0.0001 + +read_data data.peptide +Reading data file ... + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 2004 atoms + reading velocities ... + 2004 velocities + scanning bonds ... + 3 = max bonds/atom + scanning angles ... + 6 = max angles/atom + scanning dihedrals ... + 14 = max dihedrals/atom + scanning impropers ... + 1 = max impropers/atom + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 1 by 1 MPI processor grid + reading bonds ... + 1365 bonds + reading angles ... + 786 angles + reading dihedrals ... + 207 dihedrals + reading impropers ... + 12 impropers +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0 + special bond factors coul: 0 0 0 + 4 = max # of 1-2 neighbors + 7 = max # of 1-3 neighbors + 14 = max # of 1-4 neighbors + 18 = max # of special neighbors + special bonds CPU = 0.000 seconds + read_data CPU = 0.012 seconds + +neighbor 2.0 bin +neigh_modify delay 5 + +timestep 2.0 + +group peptide type <= 12 +84 atoms in group peptide +group one id 2 4 5 6 +4 atoms in group one +group two id 80 82 83 84 +4 atoms in group two +group ref id 37 +1 atoms in group ref +group colvar union one two ref +9 atoms in group colvar + +fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 + +fix 3a one spring couple ref 100.0 0.0 0.0 0.0 10.0 +fix 3b two spring couple ref 100.0 0.0 0.0 0.0 10.0 + +fix 2a ref setforce 0.0 0.0 0.0 + +fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 +Finding SHAKE clusters ... + 19 = # of size 2 clusters + 6 = # of size 3 clusters + 3 = # of size 4 clusters + 640 = # of frozen angles + find clusters CPU = 0.000 seconds + +#dump 1 colvar custom 1 dump.spring.lammpstrj id xu yu zu fx fy fz +#dump_modify 1 sort id + +variable sp equal f_3a+f_3b + +thermo_style custom step temp etotal pe ke epair ebond v_sp +thermo 10 + + +run 100 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 10648 3375 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 5 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 12 + ghost atom cutoff = 12 + binsize = 6, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/charmm/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +SHAKE stats (type/ave/delta/count) on step 0 +Bond: 4 1.111 1.44264e-05 9 +Bond: 6 0.996998 7.26967e-06 6 +Bond: 8 1.08 1.32536e-05 7 +Bond: 10 1.111 1.22749e-05 8 +Bond: 12 1.08 1.11767e-05 9 +Bond: 14 0.96 0 1 +Bond: 18 0.957206 4.37979e-05 1280 +Angle: 31 104.519 0.00396029 640 +Per MPI rank memory allocation (min/avg/max) = 19.03 | 19.03 | 19.03 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond v_sp + 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 292.14604 + 10 305.06149 -5058.8972 -6286.1901 1227.2929 -6413.1021 58.8499 103.38345 + 20 311.00516 -4999.0612 -6250.266 1251.2048 -6417.1021 47.695297 36.699695 + 30 314.22337 -4993.7012 -6257.8532 1264.152 -6421.9679 35.344144 10.563933 + 40 297.87491 -5020.8378 -6219.2184 1198.3805 -6389.8528 27.723133 3.8354517 + 50 304.02071 -5056.2576 -6279.3633 1223.1057 -6456.8214 55.459505 0.20678217 + 60 285.92576 -5104.0461 -6254.354 1150.3079 -6435.5814 32.767229 0.69352945 + 70 277.83519 -5163.9758 -6281.7345 1117.7587 -6447.7033 39.627168 11.433603 + 80 267.51495 -5206.4046 -6282.644 1076.2394 -6456.6369 31.611883 6.3554178 + 90 278.15579 -5245.3824 -6364.431 1119.0485 -6499.8063 28.849773 0.36941576 +SHAKE stats (type/ave/delta/count) on step 100 +Bond: 4 1.11098 8.97155e-05 9 +Bond: 6 0.996996 1.00568e-05 6 +Bond: 8 1.08 6.02345e-06 7 +Bond: 10 1.111 1.84253e-05 8 +Bond: 12 1.08 7.2713e-06 9 +Bond: 14 0.959996 0 1 +Bond: 18 0.957198 3.36079e-05 1280 +Angle: 31 104.52 0.0030599 640 + 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 +Loop time of 0.893963 on 1 procs for 100 steps with 2004 atoms + +Performance: 19.330 ns/day, 1.242 hours/ns, 111.861 timesteps/s, 224.170 katom-step/s +99.7% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.7114 | 0.7114 | 0.7114 | 0.0 | 79.58 +Bond | 0.0012663 | 0.0012663 | 0.0012663 | 0.0 | 0.14 +Kspace | 0.041962 | 0.041962 | 0.041962 | 0.0 | 4.69 +Neigh | 0.12542 | 0.12542 | 0.12542 | 0.0 | 14.03 +Comm | 0.0033466 | 0.0033466 | 0.0033466 | 0.0 | 0.37 +Output | 0.00017765 | 0.00017765 | 0.00017765 | 0.0 | 0.02 +Modify | 0.0098927 | 0.0098927 | 0.0098927 | 0.0 | 1.11 +Other | | 0.0005014 | | | 0.06 + +Nlocal: 2004 ave 2004 max 2004 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 11124 ave 11124 max 11124 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 708237 ave 708237 max 708237 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 708237 +Ave neighs/atom = 353.41168 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 12 +Dangerous builds = 2 +Total wall time: 0:00:00 diff --git a/examples/PACKAGES/colvars/log.5Aug24.peptide-spring.g++.4 b/examples/PACKAGES/colvars/log.5Aug24.peptide-spring.g++.4 new file mode 100644 index 0000000000..1affba784a --- /dev/null +++ b/examples/PACKAGES/colvars/log.5Aug24.peptide-spring.g++.4 @@ -0,0 +1,194 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# Solvated 5-mer peptide + +units real +atom_style full + +pair_style lj/charmm/coul/long 8.0 10.0 10.0 +bond_style harmonic +angle_style charmm +dihedral_style charmm +improper_style harmonic +kspace_style pppm 0.0001 + +read_data data.peptide +Reading data file ... + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 2004 atoms + reading velocities ... + 2004 velocities + scanning bonds ... + 3 = max bonds/atom + scanning angles ... + 6 = max angles/atom + scanning dihedrals ... + 14 = max dihedrals/atom + scanning impropers ... + 1 = max impropers/atom + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 2 by 2 MPI processor grid + reading bonds ... + 1365 bonds + reading angles ... + 786 angles + reading dihedrals ... + 207 dihedrals + reading impropers ... + 12 impropers +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0 + special bond factors coul: 0 0 0 + 4 = max # of 1-2 neighbors + 7 = max # of 1-3 neighbors + 14 = max # of 1-4 neighbors + 18 = max # of special neighbors + special bonds CPU = 0.000 seconds + read_data CPU = 0.010 seconds + +neighbor 2.0 bin +neigh_modify delay 5 + +timestep 2.0 + +group peptide type <= 12 +84 atoms in group peptide +group one id 2 4 5 6 +4 atoms in group one +group two id 80 82 83 84 +4 atoms in group two +group ref id 37 +1 atoms in group ref +group colvar union one two ref +9 atoms in group colvar + +fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 + +fix 3a one spring couple ref 100.0 0.0 0.0 0.0 10.0 +fix 3b two spring couple ref 100.0 0.0 0.0 0.0 10.0 + +fix 2a ref setforce 0.0 0.0 0.0 + +fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 +Finding SHAKE clusters ... + 19 = # of size 2 clusters + 6 = # of size 3 clusters + 3 = # of size 4 clusters + 640 = # of frozen angles + find clusters CPU = 0.000 seconds + +#dump 1 colvar custom 1 dump.spring.lammpstrj id xu yu zu fx fy fz +#dump_modify 1 sort id + +variable sp equal f_3a+f_3b + +thermo_style custom step temp etotal pe ke epair ebond v_sp +thermo 10 + + +run 100 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 4312 960 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 5 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 12 + ghost atom cutoff = 12 + binsize = 6, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/charmm/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +SHAKE stats (type/ave/delta/count) on step 0 +Bond: 4 1.111 1.44264e-05 9 +Bond: 6 0.996998 7.26967e-06 6 +Bond: 8 1.08 1.32536e-05 7 +Bond: 10 1.111 1.22749e-05 8 +Bond: 12 1.08 1.11767e-05 9 +Bond: 14 0.96 0 1 +Bond: 18 0.957206 4.37979e-05 1280 +Angle: 31 104.519 0.00396029 640 +Per MPI rank memory allocation (min/avg/max) = 16.01 | 16.22 | 16.41 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond v_sp + 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 292.14604 + 10 305.06149 -5058.8972 -6286.1901 1227.2929 -6413.1021 58.8499 103.38345 + 20 311.00516 -4999.0612 -6250.266 1251.2048 -6417.1021 47.695297 36.699695 + 30 314.22337 -4993.7012 -6257.8532 1264.152 -6421.9679 35.344144 10.563933 + 40 297.87491 -5020.8378 -6219.2184 1198.3805 -6389.8528 27.723133 3.8354517 + 50 304.02071 -5056.2576 -6279.3633 1223.1057 -6456.8214 55.459505 0.20678217 + 60 285.92576 -5104.0461 -6254.354 1150.3079 -6435.5814 32.767229 0.69352945 + 70 277.83519 -5163.9758 -6281.7345 1117.7587 -6447.7033 39.627168 11.433603 + 80 267.51495 -5206.4046 -6282.644 1076.2394 -6456.6369 31.611883 6.3554178 + 90 278.15579 -5245.3824 -6364.431 1119.0485 -6499.8063 28.849773 0.36941576 +SHAKE stats (type/ave/delta/count) on step 100 +Bond: 4 1.11098 8.97155e-05 9 +Bond: 6 0.996996 1.00568e-05 6 +Bond: 8 1.08 6.02345e-06 7 +Bond: 10 1.111 1.84253e-05 8 +Bond: 12 1.08 7.2713e-06 9 +Bond: 14 0.959996 0 1 +Bond: 18 0.957198 3.36079e-05 1280 +Angle: 31 104.52 0.0030599 640 + 100 260.10613 -5292.6885 -6339.1215 1046.433 -6471.6734 25.362042 0.21987323 +Loop time of 0.247541 on 4 procs for 100 steps with 2004 atoms + +Performance: 69.806 ns/day, 0.344 hours/ns, 403.973 timesteps/s, 809.561 katom-step/s +99.3% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.17778 | 0.18129 | 0.18529 | 0.8 | 73.24 +Bond | 0.00024025 | 0.00049912 | 0.00080235 | 0.0 | 0.20 +Kspace | 0.016204 | 0.0204 | 0.023648 | 2.3 | 8.24 +Neigh | 0.032425 | 0.032462 | 0.032496 | 0.0 | 13.11 +Comm | 0.0063955 | 0.0065509 | 0.0067449 | 0.2 | 2.65 +Output | 0.0001675 | 0.00018071 | 0.00021385 | 0.0 | 0.07 +Modify | 0.0057027 | 0.0057304 | 0.0057568 | 0.0 | 2.31 +Other | | 0.0004289 | | | 0.17 + +Nlocal: 501 ave 513 max 489 min +Histogram: 1 0 0 0 1 1 0 0 0 1 +Nghost: 6563.25 ave 6596 max 6519 min +Histogram: 1 0 1 0 0 0 0 0 0 2 +Neighs: 177059 ave 181742 max 172942 min +Histogram: 1 0 1 0 0 0 1 0 0 1 + +Total # of neighbors = 708237 +Ave neighs/atom = 353.41168 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 12 +Dangerous builds = 2 +Total wall time: 0:00:00 diff --git a/examples/PACKAGES/colvars/log.5Aug24.peptide-spring2.g++.1 b/examples/PACKAGES/colvars/log.5Aug24.peptide-spring2.g++.1 new file mode 100644 index 0000000000..e0c5ebb710 --- /dev/null +++ b/examples/PACKAGES/colvars/log.5Aug24.peptide-spring2.g++.1 @@ -0,0 +1,189 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# Solvated 5-mer peptide + +units real +atom_style full + +pair_style lj/charmm/coul/long 8.0 10.0 10.0 +bond_style harmonic +angle_style charmm +dihedral_style charmm +improper_style harmonic +kspace_style pppm 0.0001 + +read_data data.peptide +Reading data file ... + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 2004 atoms + reading velocities ... + 2004 velocities + scanning bonds ... + 3 = max bonds/atom + scanning angles ... + 6 = max angles/atom + scanning dihedrals ... + 14 = max dihedrals/atom + scanning impropers ... + 1 = max impropers/atom + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 1 by 1 MPI processor grid + reading bonds ... + 1365 bonds + reading angles ... + 786 angles + reading dihedrals ... + 207 dihedrals + reading impropers ... + 12 impropers +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0 + special bond factors coul: 0 0 0 + 4 = max # of 1-2 neighbors + 7 = max # of 1-3 neighbors + 14 = max # of 1-4 neighbors + 18 = max # of special neighbors + special bonds CPU = 0.000 seconds + read_data CPU = 0.012 seconds + +neighbor 2.0 bin +neigh_modify delay 5 + +timestep 2.0 + +group peptide type <= 12 +84 atoms in group peptide +group one id 2 4 5 6 +4 atoms in group one +group two id 80 82 83 84 +4 atoms in group two +group ref id 37 +1 atoms in group ref +group colvar union one two ref +9 atoms in group colvar + +fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 + +fix 3 one spring couple two 100.0 0.0 0.0 0.0 10.0 + +fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 +Finding SHAKE clusters ... + 19 = # of size 2 clusters + 6 = # of size 3 clusters + 3 = # of size 4 clusters + 640 = # of frozen angles + find clusters CPU = 0.000 seconds + +#dump 1 colvar custom 1 dump.spring2.lammpstrj id xu yu zu fx fy fz +#dump_modify 1 sort id + +thermo_style custom step temp etotal pe ke epair ebond f_3 +thermo 10 + + +run 100 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 10648 3375 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 5 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 12 + ghost atom cutoff = 12 + binsize = 6, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/charmm/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +SHAKE stats (type/ave/delta/count) on step 0 +Bond: 4 1.111 1.44264e-05 9 +Bond: 6 0.996998 7.26967e-06 6 +Bond: 8 1.08 1.32536e-05 7 +Bond: 10 1.111 1.22749e-05 8 +Bond: 12 1.08 1.11767e-05 9 +Bond: 14 0.96 0 1 +Bond: 18 0.957206 4.37979e-05 1280 +Angle: 31 104.519 0.00396029 640 +Per MPI rank memory allocation (min/avg/max) = 19.03 | 19.03 | 19.03 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond f_3 + 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 273.74323 + 10 333.47919 -4982.3968 -6324.0169 1341.6201 -6400.4223 21.367762 12.393263 + 20 309.56902 -4999.4978 -6244.9249 1245.4271 -6401.6981 43.59542 13.004314 + 30 316.9763 -5025.5662 -6300.7935 1275.2273 -6422.5375 27.323196 6.7589585 + 40 297.55779 -5088.2204 -6285.3252 1197.1047 -6395.375 13.6769 25.625024 + 50 296.79994 -5117.2966 -6311.3525 1194.0558 -6451.8309 30.631241 5.3320863 + 60 281.72778 -5188.4969 -6321.9159 1133.419 -6427.8856 26.287723 20.574037 + 70 277.26053 -5224.8434 -6340.2902 1115.4468 -6447.8521 27.742893 0.69420283 + 80 268.01484 -5281.8509 -6360.1014 1078.2505 -6496.6086 20.300754 5.2607186 + 90 270.43472 -5334.0835 -6422.0694 1087.9859 -6563.2511 39.846095 1.1832272 +SHAKE stats (type/ave/delta/count) on step 100 +Bond: 4 1.11096 0.000191462 9 +Bond: 6 0.996989 3.55508e-05 6 +Bond: 8 1.08 9.0997e-06 7 +Bond: 10 1.111 1.58544e-05 8 +Bond: 12 1.08 5.80604e-06 9 +Bond: 14 0.959997 0 1 +Bond: 18 0.957198 2.92445e-05 1280 +Angle: 31 104.52 0.00239923 640 + 100 260.35636 -5387.2284 -6434.6681 1047.4397 -6534.1956 20.246866 0.075048487 +Loop time of 0.910778 on 1 procs for 100 steps with 2004 atoms + +Performance: 18.973 ns/day, 1.265 hours/ns, 109.796 timesteps/s, 220.032 katom-step/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.71746 | 0.71746 | 0.71746 | 0.0 | 78.77 +Bond | 0.0012756 | 0.0012756 | 0.0012756 | 0.0 | 0.14 +Kspace | 0.042462 | 0.042462 | 0.042462 | 0.0 | 4.66 +Neigh | 0.13497 | 0.13497 | 0.13497 | 0.0 | 14.82 +Comm | 0.0036247 | 0.0036247 | 0.0036247 | 0.0 | 0.40 +Output | 0.00016145 | 0.00016145 | 0.00016145 | 0.0 | 0.02 +Modify | 0.010258 | 0.010258 | 0.010258 | 0.0 | 1.13 +Other | | 0.0005695 | | | 0.06 + +Nlocal: 2004 ave 2004 max 2004 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 11143 ave 11143 max 11143 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 708234 ave 708234 max 708234 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 708234 +Ave neighs/atom = 353.41018 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 13 +Dangerous builds = 1 +Total wall time: 0:00:00 diff --git a/examples/PACKAGES/colvars/log.5Aug24.peptide-spring2.g++.4 b/examples/PACKAGES/colvars/log.5Aug24.peptide-spring2.g++.4 new file mode 100644 index 0000000000..5e65a6b17d --- /dev/null +++ b/examples/PACKAGES/colvars/log.5Aug24.peptide-spring2.g++.4 @@ -0,0 +1,189 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# Solvated 5-mer peptide + +units real +atom_style full + +pair_style lj/charmm/coul/long 8.0 10.0 10.0 +bond_style harmonic +angle_style charmm +dihedral_style charmm +improper_style harmonic +kspace_style pppm 0.0001 + +read_data data.peptide +Reading data file ... + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 2004 atoms + reading velocities ... + 2004 velocities + scanning bonds ... + 3 = max bonds/atom + scanning angles ... + 6 = max angles/atom + scanning dihedrals ... + 14 = max dihedrals/atom + scanning impropers ... + 1 = max impropers/atom + orthogonal box = (36.840194 41.013691 29.768095) to (64.21156 68.385058 57.139462) + 1 by 2 by 2 MPI processor grid + reading bonds ... + 1365 bonds + reading angles ... + 786 angles + reading dihedrals ... + 207 dihedrals + reading impropers ... + 12 impropers +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0 + special bond factors coul: 0 0 0 + 4 = max # of 1-2 neighbors + 7 = max # of 1-3 neighbors + 14 = max # of 1-4 neighbors + 18 = max # of special neighbors + special bonds CPU = 0.000 seconds + read_data CPU = 0.011 seconds + +neighbor 2.0 bin +neigh_modify delay 5 + +timestep 2.0 + +group peptide type <= 12 +84 atoms in group peptide +group one id 2 4 5 6 +4 atoms in group one +group two id 80 82 83 84 +4 atoms in group two +group ref id 37 +1 atoms in group ref +group colvar union one two ref +9 atoms in group colvar + +fix 1 all nvt temp 275.0 275.0 100.0 tchain 1 + +fix 3 one spring couple two 100.0 0.0 0.0 0.0 10.0 + +fix 4 all shake 0.0001 10 100 b 4 6 8 10 12 14 18 a 31 +Finding SHAKE clusters ... + 19 = # of size 2 clusters + 6 = # of size 3 clusters + 3 = # of size 4 clusters + 640 = # of frozen angles + find clusters CPU = 0.000 seconds + +#dump 1 colvar custom 1 dump.spring2.lammpstrj id xu yu zu fx fy fz +#dump_modify 1 sort id + +thermo_style custom step temp etotal pe ke epair ebond f_3 +thermo 10 + + +run 100 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/kspace.cpp:342) + G vector (1/distance) = 0.26872465 + grid = 15 15 15 + stencil order = 5 + estimated absolute RMS force accuracy = 0.022820853 + estimated relative force accuracy = 6.872432e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 4312 960 +Generated 91 of 91 mixed pair_coeff terms from arithmetic mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 5 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 12 + ghost atom cutoff = 12 + binsize = 6, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/charmm/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +SHAKE stats (type/ave/delta/count) on step 0 +Bond: 4 1.111 1.44264e-05 9 +Bond: 6 0.996998 7.26967e-06 6 +Bond: 8 1.08 1.32536e-05 7 +Bond: 10 1.111 1.22749e-05 8 +Bond: 12 1.08 1.11767e-05 9 +Bond: 14 0.96 0 1 +Bond: 18 0.957206 4.37979e-05 1280 +Angle: 31 104.519 0.00396029 640 +Per MPI rank memory allocation (min/avg/max) = 16.01 | 16.22 | 16.41 Mbytes + Step Temp TotEng PotEng KinEng E_pair E_bond f_3 + 0 282.10052 -5237.458 -6372.3766 1134.9186 -6442.768 16.557152 273.74323 + 10 333.47919 -4982.3968 -6324.0169 1341.6201 -6400.4223 21.367762 12.393263 + 20 309.56902 -4999.4978 -6244.9249 1245.4271 -6401.6981 43.59542 13.004314 + 30 316.9763 -5025.5662 -6300.7935 1275.2273 -6422.5375 27.323196 6.7589585 + 40 297.55779 -5088.2204 -6285.3252 1197.1047 -6395.375 13.6769 25.625024 + 50 296.79994 -5117.2966 -6311.3525 1194.0558 -6451.8309 30.631241 5.3320863 + 60 281.72778 -5188.4969 -6321.9159 1133.419 -6427.8856 26.287723 20.574037 + 70 277.26053 -5224.8434 -6340.2902 1115.4468 -6447.8521 27.742893 0.69420283 + 80 268.01484 -5281.8509 -6360.1014 1078.2505 -6496.6086 20.300754 5.2607186 + 90 270.43472 -5334.0835 -6422.0694 1087.9859 -6563.2511 39.846095 1.1832272 +SHAKE stats (type/ave/delta/count) on step 100 +Bond: 4 1.11096 0.000191462 9 +Bond: 6 0.996989 3.55508e-05 6 +Bond: 8 1.08 9.0997e-06 7 +Bond: 10 1.111 1.58544e-05 8 +Bond: 12 1.08 5.80604e-06 9 +Bond: 14 0.959997 0 1 +Bond: 18 0.957198 2.92445e-05 1280 +Angle: 31 104.52 0.00239923 640 + 100 260.35636 -5387.2284 -6434.6681 1047.4397 -6534.1956 20.246866 0.075048487 +Loop time of 0.248812 on 4 procs for 100 steps with 2004 atoms + +Performance: 69.450 ns/day, 0.346 hours/ns, 401.910 timesteps/s, 805.428 katom-step/s +99.5% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.17522 | 0.18002 | 0.18454 | 1.0 | 72.35 +Bond | 0.00020312 | 0.00044793 | 0.00074786 | 0.0 | 0.18 +Kspace | 0.016556 | 0.021002 | 0.026079 | 3.0 | 8.44 +Neigh | 0.035695 | 0.03571 | 0.03572 | 0.0 | 14.35 +Comm | 0.0057324 | 0.0058127 | 0.005874 | 0.1 | 2.34 +Output | 0.00013005 | 0.00013946 | 0.00016548 | 0.0 | 0.06 +Modify | 0.00526 | 0.0052645 | 0.005272 | 0.0 | 2.12 +Other | | 0.0004197 | | | 0.17 + +Nlocal: 501 ave 513 max 494 min +Histogram: 1 1 0 1 0 0 0 0 0 1 +Nghost: 6572.5 ave 6593 max 6548 min +Histogram: 1 0 1 0 0 0 0 0 0 2 +Neighs: 177058 ave 181778 max 174301 min +Histogram: 2 0 0 0 1 0 0 0 0 1 + +Total # of neighbors = 708234 +Ave neighs/atom = 353.41018 +Ave special neighs/atom = 2.3403194 +Neighbor list builds = 13 +Dangerous builds = 1 +Total wall time: 0:00:00 diff --git a/examples/PACKAGES/colvars/out.colvars.state b/examples/PACKAGES/colvars/out.colvars.state index e1c98c5096..ea803a5528 100644 --- a/examples/PACKAGES/colvars/out.colvars.state +++ b/examples/PACKAGES/colvars/out.colvars.state @@ -1,17 +1,17 @@ configuration { step 200 dt 2.000000e+00 - version 2020-07-07 + version 2024-06-04 } colvar { name one - x 1.00127732034965e+01 + x 10.012773203962 } colvar { name two - x 9.62235997490241e+00 + x 9.6223599748448 } restraint { diff --git a/examples/PACKAGES/colvars/out.colvars.state.old b/examples/PACKAGES/colvars/out.colvars.state.old index 458485ca83..4f26b0b566 100644 --- a/examples/PACKAGES/colvars/out.colvars.state.old +++ b/examples/PACKAGES/colvars/out.colvars.state.old @@ -1,17 +1,17 @@ configuration { step 100 dt 2.000000e+00 - version 2020-07-07 + version 2024-06-04 } colvar { name one - x 1.00136989326255e+01 + x 10.013698932648 } colvar { name two - x 1.00648830006091e+01 + x 10.064883000604 } restraint { diff --git a/examples/PACKAGES/colvars/out.colvars.traj b/examples/PACKAGES/colvars/out.colvars.traj index 15aa912846..4acd3b90c7 100644 --- a/examples/PACKAGES/colvars/out.colvars.traj +++ b/examples/PACKAGES/colvars/out.colvars.traj @@ -13,191 +13,191 @@ 11 1.01744058364969e+01 8.66916428851601e+00 12 1.01894584969823e+01 8.75011341291751e+00 13 1.02015949657517e+01 8.81261373358815e+00 - 14 1.02107634786499e+01 8.86010572643564e+00 + 14 1.02107634786498e+01 8.86010572643564e+00 15 1.02172802335367e+01 8.89996164389908e+00 16 1.02217586687617e+01 8.94046117354318e+00 17 1.02249400729821e+01 8.98764357480963e+00 18 1.02274821194763e+01 9.04385418276306e+00 19 1.02297694921722e+01 9.10767828090644e+00 - 20 1.02317948794015e+01 9.17521818721732e+00 + 20 1.02317948794015e+01 9.17521818721733e+00 21 1.02331324174422e+01 9.24256921345538e+00 - 22 1.02330115052436e+01 9.30670040650459e+00 + 22 1.02330115052436e+01 9.30670040650458e+00 23 1.02304888847637e+01 9.36477739916766e+00 24 1.02246905091409e+01 9.41471338314027e+00 25 1.02150557312054e+01 9.45578119421866e+00 - 26 1.02015018849614e+01 9.48855148434622e+00 - 27 1.01844563445019e+01 9.51414398880334e+00 + 26 1.02015018849613e+01 9.48855148434622e+00 + 27 1.01844563445019e+01 9.51414398880333e+00 28 1.01647618536435e+01 9.53348342780342e+00 29 1.01435075836914e+01 9.54736918677922e+00 - 30 1.01218448127414e+01 9.55679294480281e+00 + 30 1.01218448127414e+01 9.55679294480282e+00 31 1.01008234685872e+01 9.56289707955055e+00 - 32 1.00812605992407e+01 9.56689852729787e+00 - 33 1.00636482078211e+01 9.57008522470066e+00 - 34 1.00481219532447e+01 9.57404682801174e+00 - 35 1.00345149123742e+01 9.58097344406653e+00 + 32 1.00812605992407e+01 9.56689852729789e+00 + 33 1.00636482078211e+01 9.57008522470067e+00 + 34 1.00481219532447e+01 9.57404682801176e+00 + 35 1.00345149123742e+01 9.58097344406654e+00 36 1.00224896192326e+01 9.59352147402459e+00 37 1.00117065902086e+01 9.61412496221624e+00 38 1.00019625883763e+01 9.64369256665448e+00 - 39 9.99324045988116e+00 9.68100279483232e+00 - 40 9.98566198277188e+00 9.72340741886406e+00 - 41 9.97939087537504e+00 9.76737558060000e+00 - 42 9.97455220189940e+00 9.80830263552738e+00 - 43 9.97120052013341e+00 9.84185625268822e+00 - 44 9.96933202180119e+00 9.86623764187619e+00 - 45 9.96891976615505e+00 9.88235950966856e+00 - 46 9.96994868341340e+00 9.89287033859050e+00 - 47 9.97242707411381e+00 9.90111363064262e+00 - 48 9.97636549450466e+00 9.91016536955268e+00 - 49 9.98173560597232e+00 9.92197275407224e+00 - 50 9.98843048433684e+00 9.93674029911159e+00 + 39 9.99324045988117e+00 9.68100279483232e+00 + 40 9.98566198277187e+00 9.72340741886405e+00 + 41 9.97939087537503e+00 9.76737558059998e+00 + 42 9.97455220189941e+00 9.80830263552736e+00 + 43 9.97120052013341e+00 9.84185625268820e+00 + 44 9.96933202180119e+00 9.86623764187617e+00 + 45 9.96891976615505e+00 9.88235950966853e+00 + 46 9.96994868341340e+00 9.89287033859049e+00 + 47 9.97242707411382e+00 9.90111363064261e+00 + 48 9.97636549450467e+00 9.91016536955268e+00 + 49 9.98173560597233e+00 9.92197275407223e+00 + 50 9.98843048433685e+00 9.93674029911158e+00 51 9.99624064138588e+00 9.95286099036568e+00 52 1.00048525916104e+01 9.96759873289121e+00 - 53 1.00138780764319e+01 9.97821328789638e+00 + 53 1.00138780764319e+01 9.97821328789637e+00 54 1.00229204333232e+01 9.98289434996108e+00 55 1.00316676518615e+01 9.98113328544968e+00 - 56 1.00399758142293e+01 9.97358294450079e+00 - 57 1.00479031641095e+01 9.96154574170506e+00 - 58 1.00556838347250e+01 9.94624156425743e+00 - 59 1.00636555959318e+01 9.92816580065099e+00 - 60 1.00721640105110e+01 9.90692505955277e+00 + 56 1.00399758142293e+01 9.97358294450078e+00 + 57 1.00479031641095e+01 9.96154574170507e+00 + 58 1.00556838347250e+01 9.94624156425742e+00 + 59 1.00636555959318e+01 9.92816580065100e+00 + 60 1.00721640105110e+01 9.90692505955279e+00 61 1.00814536313753e+01 9.88155118527262e+00 - 62 1.00915547252798e+01 9.85098082230735e+00 - 63 1.01021918256653e+01 9.81456141006142e+00 - 64 1.01127650365675e+01 9.77251908261309e+00 + 62 1.00915547252798e+01 9.85098082230737e+00 + 63 1.01021918256653e+01 9.81456141006145e+00 + 64 1.01127650365675e+01 9.77251908261310e+00 65 1.01224426616504e+01 9.72626626484817e+00 - 66 1.01303500341168e+01 9.67844790721581e+00 + 66 1.01303500341168e+01 9.67844790721582e+00 67 1.01357827497794e+01 9.63264342158540e+00 - 68 1.01383594707679e+01 9.59267551611127e+00 - 69 1.01380701059532e+01 9.56168371312923e+00 - 70 1.01352290156399e+01 9.54132235576289e+00 - 71 1.01303782422632e+01 9.53145207033862e+00 - 72 1.01241807468998e+01 9.53052072472080e+00 - 73 1.01173118912092e+01 9.53632715678295e+00 - 74 1.01103471939659e+01 9.54668992740772e+00 - 75 1.01036629090248e+01 9.55984803752009e+00 - 76 1.00973931139318e+01 9.57467381743772e+00 - 77 1.00914805900150e+01 9.59078681449290e+00 - 78 1.00857806923796e+01 9.60849062320413e+00 - 79 1.00801732463746e+01 9.62847591791803e+00 - 80 1.00746211947647e+01 9.65137407697197e+00 - 81 1.00691682828698e+01 9.67731006831009e+00 - 82 1.00638992393184e+01 9.70564969348618e+00 - 83 1.00589006124327e+01 9.73510953407921e+00 - 84 1.00542402131510e+01 9.76420390471647e+00 - 85 1.00499602946160e+01 9.79180385249033e+00 - 86 1.00460706235439e+01 9.81755460563928e+00 - 87 1.00425414168408e+01 9.84200765912343e+00 - 88 1.00393046004480e+01 9.86642899323320e+00 - 89 1.00362677210398e+01 9.89232615597538e+00 - 90 1.00333326702222e+01 9.92077091295346e+00 - 91 1.00304190984417e+01 9.95163431119817e+00 - 92 1.00274924302484e+01 9.98320614724761e+00 - 93 1.00245832030580e+01 1.00126809229005e+01 - 94 1.00217818712298e+01 1.00372157022896e+01 - 95 1.00192174478224e+01 1.00549229065348e+01 - 96 1.00170334876474e+01 1.00654011519876e+01 - 97 1.00153609154724e+01 1.00697015600771e+01 - 98 1.00142801210350e+01 1.00698014812365e+01 - 99 1.00137749686339e+01 1.00677656407202e+01 - 100 1.00136989326255e+01 1.00648830006091e+01 - 100 1.00136989326255e+01 1.00648830006091e+01 - 101 1.00137674082083e+01 1.00611318434583e+01 - 102 1.00135836692120e+01 1.00551787890126e+01 - 103 1.00127001705469e+01 1.00448624179689e+01 - 104 1.00107128955990e+01 1.00279896008852e+01 - 105 1.00073732210918e+01 1.00031581615939e+01 - 106 1.00026863896858e+01 9.97035446256176e+00 - 107 9.99696129324890e+00 9.93114647843641e+00 - 108 9.99078911556410e+00 9.88834547941894e+00 - 109 9.98495363939735e+00 9.84525289783234e+00 - 110 9.98029333636388e+00 9.80488218664815e+00 - 111 9.97754787492958e+00 9.76956483721087e+00 - 112 9.97722552172005e+00 9.74089998776836e+00 - 113 9.97952448720610e+00 9.71964869280979e+00 - 114 9.98432949668635e+00 9.70572109422863e+00 - 115 9.99128565538624e+00 9.69882579496975e+00 - 116 9.99992834152120e+00 9.69906594532193e+00 - 117 1.00098244901113e+01 9.70675942684906e+00 - 118 1.00206778548564e+01 9.72193838510829e+00 - 119 1.00323618718055e+01 9.74392916146852e+00 - 120 1.00448741144078e+01 9.77144817149792e+00 - 121 1.00582353428180e+01 9.80293643028548e+00 - 122 1.00723772537607e+01 9.83653980628752e+00 - 123 1.00870562810006e+01 9.86996874359296e+00 - 124 1.01018143847617e+01 9.90067377124461e+00 - 125 1.01159953973120e+01 9.92637526075002e+00 - 126 1.01288196652442e+01 9.94569135970445e+00 - 127 1.01395052692626e+01 9.95859533688896e+00 - 128 1.01474034953817e+01 9.96651718147533e+00 - 129 1.01521107193303e+01 9.97198512417321e+00 - 130 1.01535310646235e+01 9.97783256102044e+00 - 131 1.01518709230597e+01 9.98617497185904e+00 - 132 1.01475657142497e+01 9.99754506682891e+00 - 133 1.01411666167305e+01 1.00106710657684e+01 - 134 1.01332318751871e+01 1.00230220357698e+01 - 135 1.01242581986854e+01 1.00317166064461e+01 - 136 1.01146544066986e+01 1.00343612487317e+01 - 137 1.01047332554016e+01 1.00296420246780e+01 - 138 1.00947014667735e+01 1.00175763327172e+01 - 139 1.00846531387645e+01 9.99930494674974e+00 - 140 1.00745857366623e+01 9.97646128131491e+00 - 141 1.00644400706802e+01 9.95041823440337e+00 - 142 1.00541501159131e+01 9.92180857541951e+00 - 143 1.00436834569978e+01 9.89050941872713e+00 - 144 1.00330649757401e+01 9.85603943350860e+00 - 145 1.00223855042347e+01 9.81818968302844e+00 - 146 1.00118066120717e+01 9.77759398920638e+00 - 147 1.00015635423691e+01 9.73590632972306e+00 - 148 9.99195808427061e+00 9.69551862637489e+00 - 149 9.98332973799261e+00 9.65911623085002e+00 - 150 9.97599905761175e+00 9.62915505877515e+00 - 151 9.97019367767784e+00 9.60716909686955e+00 - 152 9.96598267281873e+00 9.59318709200410e+00 - 153 9.96324605944343e+00 9.58559881047527e+00 - 154 9.96169276126796e+00 9.58153758556819e+00 - 155 9.96092625032814e+00 9.57763829311044e+00 - 156 9.96054315607791e+00 9.57093750799266e+00 - 157 9.96023482227745e+00 9.55965895377840e+00 - 158 9.95985352165466e+00 9.54367776307569e+00 - 159 9.95942460039566e+00 9.52452561463833e+00 - 160 9.95911205589222e+00 9.50490226824346e+00 - 161 9.95914975443396e+00 9.48781410600212e+00 - 162 9.95975278911406e+00 9.47562429341561e+00 - 163 9.96103890040379e+00 9.46939719079233e+00 - 164 9.96299147170478e+00 9.46883821286236e+00 - 165 9.96547099380307e+00 9.47284423942468e+00 - 166 9.96826097146115e+00 9.48031949605208e+00 - 167 9.97113131026389e+00 9.49080246783928e+00 - 168 9.97390346515378e+00 9.50467508257787e+00 - 169 9.97650055807565e+00 9.52297045210046e+00 - 170 9.97896696852481e+00 9.54683120799382e+00 - 171 9.98144993167344e+00 9.57673108800475e+00 - 172 9.98414386605973e+00 9.61177309775590e+00 - 173 9.98721435874383e+00 9.64941604907962e+00 - 174 9.99072987081047e+00 9.68581828149366e+00 - 175 9.99462784290560e+00 9.71674849920838e+00 - 176 9.99872910050856e+00 9.73876571566039e+00 - 177 1.00027910094647e+01 9.75024496509227e+00 - 178 1.00065753933095e+01 9.75188677631197e+00 - 179 1.00099096736715e+01 9.74652424002240e+00 - 180 1.00127256239536e+01 9.73825559652692e+00 - 181 1.00150707323506e+01 9.73120003142692e+00 - 182 1.00170870650914e+01 9.72835138795971e+00 - 183 1.00189588719574e+01 9.73088542644806e+00 - 184 1.00208370553711e+01 9.73798855694274e+00 - 185 1.00227676206971e+01 9.74722630488312e+00 - 186 1.00246552838286e+01 9.75544013816019e+00 - 187 1.00262844434324e+01 9.75985859738447e+00 - 188 1.00273887691195e+01 9.75895345517658e+00 - 189 1.00277400472209e+01 9.75275536148299e+00 - 190 1.00272200725279e+01 9.74261382746486e+00 - 191 1.00258549688160e+01 9.73056754269459e+00 - 192 1.00238089567536e+01 9.71853980670345e+00 - 193 1.00213474465750e+01 9.70762043885231e+00 - 194 1.00187805230869e+01 9.69773175124558e+00 - 195 1.00164016154513e+01 9.68784935173366e+00 - 196 1.00144402674219e+01 9.67667427007303e+00 - 197 1.00130444574495e+01 9.66343938720852e+00 - 198 1.00122912607270e+01 9.64854739476250e+00 - 199 1.00122066750836e+01 9.63383866331536e+00 - 200 1.00127732034965e+01 9.62235997490241e+00 + 68 1.01383594707679e+01 9.59267551611128e+00 + 69 1.01380701059532e+01 9.56168371312924e+00 + 70 1.01352290156399e+01 9.54132235576292e+00 + 71 1.01303782422632e+01 9.53145207033865e+00 + 72 1.01241807468998e+01 9.53052072472082e+00 + 73 1.01173118912091e+01 9.53632715678298e+00 + 74 1.01103471939659e+01 9.54668992740775e+00 + 75 1.01036629090248e+01 9.55984803752012e+00 + 76 1.00973931139318e+01 9.57467381743775e+00 + 77 1.00914805900150e+01 9.59078681449293e+00 + 78 1.00857806923796e+01 9.60849062320414e+00 + 79 1.00801732463746e+01 9.62847591791801e+00 + 80 1.00746211947646e+01 9.65137407697184e+00 + 81 1.00691682828698e+01 9.67731006830983e+00 + 82 1.00638992393183e+01 9.70564969348716e+00 + 83 1.00589006124326e+01 9.73510953408138e+00 + 84 1.00542402131508e+01 9.76420390471977e+00 + 85 1.00499602946157e+01 9.79180385249472e+00 + 86 1.00460706235435e+01 9.81755460564468e+00 + 87 1.00425414168399e+01 9.84200765912968e+00 + 88 1.00393046004464e+01 9.86642899324013e+00 + 89 1.00362677210369e+01 9.89232615598293e+00 + 90 1.00333326702175e+01 9.92077091296133e+00 + 91 1.00304190984349e+01 9.95163431120606e+00 + 92 1.00274924302394e+01 9.98320614725514e+00 + 93 1.00245832030468e+01 1.00126809229072e+01 + 94 1.00217818712178e+01 1.00372157022924e+01 + 95 1.00192174478128e+01 1.00549229065339e+01 + 96 1.00170334876423e+01 1.00654011519831e+01 + 97 1.00153609154726e+01 1.00697015600704e+01 + 98 1.00142801210419e+01 1.00698014812268e+01 + 99 1.00137749686484e+01 1.00677656407098e+01 + 100 1.00136989326479e+01 1.00648830006035e+01 + 100 1.00136989326479e+01 1.00648830006035e+01 + 101 1.00137674082404e+01 1.00611318434631e+01 + 102 1.00135836692638e+01 1.00551787890321e+01 + 103 1.00127001706252e+01 1.00448624180052e+01 + 104 1.00107128957021e+01 1.00279896009381e+01 + 105 1.00073732212177e+01 1.00031581616613e+01 + 106 1.00026863898319e+01 9.97035446264584e+00 + 107 9.99696129340979e+00 9.93114647853474e+00 + 108 9.99078911574286e+00 9.88834547952885e+00 + 109 9.98495363959500e+00 9.84525289795163e+00 + 110 9.98029333657187e+00 9.80488218677250e+00 + 111 9.97754787513574e+00 9.76956483733739e+00 + 112 9.97722552190832e+00 9.74089998789470e+00 + 113 9.97952448737980e+00 9.71964869293034e+00 + 114 9.98432949682222e+00 9.70572109433721e+00 + 115 9.99128565545184e+00 9.69882579506424e+00 + 116 9.99992834150833e+00 9.69906594541022e+00 + 117 1.00098244900360e+01 9.70675942693532e+00 + 118 1.00206778547510e+01 9.72193838520098e+00 + 119 1.00323618716864e+01 9.74392916157914e+00 + 120 1.00448741142733e+01 9.77144817163477e+00 + 121 1.00582353426856e+01 9.80293643045616e+00 + 122 1.00723772536367e+01 9.83653980649396e+00 + 123 1.00870562808775e+01 9.86996874383092e+00 + 124 1.01018143846136e+01 9.90067377150288e+00 + 125 1.01159953971355e+01 9.92637526102012e+00 + 126 1.01288196650277e+01 9.94569135999291e+00 + 127 1.01395052689679e+01 9.95859533719747e+00 + 128 1.01474034950021e+01 9.96651718180170e+00 + 129 1.01521107188430e+01 9.97198512451327e+00 + 130 1.01535310640198e+01 9.97783256135978e+00 + 131 1.01518709223691e+01 9.98617497219244e+00 + 132 1.01475657134909e+01 9.99754506714391e+00 + 133 1.01411666159632e+01 1.00106710660677e+01 + 134 1.01332318744629e+01 1.00230220360430e+01 + 135 1.01242581980791e+01 1.00317166066961e+01 + 136 1.01146544061953e+01 1.00343612489597e+01 + 137 1.01047332550129e+01 1.00296420248946e+01 + 138 1.00947014664877e+01 1.00175763329223e+01 + 139 1.00846531385394e+01 9.99930494695532e+00 + 140 1.00745857364974e+01 9.97646128152161e+00 + 141 1.00644400705403e+01 9.95041823460627e+00 + 142 1.00541501157683e+01 9.92180857562118e+00 + 143 1.00436834568360e+01 9.89050941892251e+00 + 144 1.00330649755670e+01 9.85603943369589e+00 + 145 1.00223855041248e+01 9.81818968320503e+00 + 146 1.00118066120332e+01 9.77759398937178e+00 + 147 1.00015635424482e+01 9.73590632987673e+00 + 148 9.99195808450856e+00 9.69551862651774e+00 + 149 9.98332973840472e+00 9.65911623099469e+00 + 150 9.97599905822999e+00 9.62915505892649e+00 + 151 9.97019367845638e+00 9.60716909703526e+00 + 152 9.96598267372795e+00 9.59318709218540e+00 + 153 9.96324606044969e+00 9.58559881066392e+00 + 154 9.96169276237047e+00 9.58153758575953e+00 + 155 9.96092625152242e+00 9.57763829328116e+00 + 156 9.96054315740228e+00 9.57093750810941e+00 + 157 9.96023482376251e+00 9.55965895382487e+00 + 158 9.95985352333786e+00 9.54367776304373e+00 + 159 9.95942460236116e+00 9.52452561453112e+00 + 160 9.95911205820184e+00 9.50490226807002e+00 + 161 9.95914975712190e+00 9.48781410580017e+00 + 162 9.95975279219164e+00 9.47562429324685e+00 + 163 9.96103890394426e+00 9.46939719071147e+00 + 164 9.96299147570651e+00 9.46883821294305e+00 + 165 9.96547099819345e+00 9.47284423972085e+00 + 166 9.96826097616579e+00 9.48031949660299e+00 + 167 9.97113131520360e+00 9.49080246868345e+00 + 168 9.97390347029220e+00 9.50467508368792e+00 + 169 9.97650056337441e+00 9.52297045344289e+00 + 170 9.97896697398981e+00 9.54683120949238e+00 + 171 9.98144993724280e+00 9.57673108957231e+00 + 172 9.98414387172420e+00 9.61177309931033e+00 + 173 9.98721436449207e+00 9.64941605055506e+00 + 174 9.99072987660973e+00 9.68581828287900e+00 + 175 9.99462784873357e+00 9.71674850053884e+00 + 176 9.99872910630021e+00 9.73876571701760e+00 + 177 1.00027910151196e+01 9.75024496660445e+00 + 178 1.00065753987481e+01 9.75188677811518e+00 + 179 1.00099096788152e+01 9.74652424221370e+00 + 180 1.00127256286803e+01 9.73825559920752e+00 + 181 1.00150707365928e+01 9.73120003464725e+00 + 182 1.00170870688102e+01 9.72835139174119e+00 + 183 1.00189588750915e+01 9.73088543078432e+00 + 184 1.00208370578559e+01 9.73798856175907e+00 + 185 1.00227676225361e+01 9.74722631009118e+00 + 186 1.00246552850623e+01 9.75544014363497e+00 + 187 1.00262844441069e+01 9.75985860295140e+00 + 188 1.00273887692830e+01 9.75895346064793e+00 + 189 1.00277400469004e+01 9.75275536661271e+00 + 190 1.00272200717913e+01 9.74261383198996e+00 + 191 1.00258549677417e+01 9.73056754639127e+00 + 192 1.00238089554369e+01 9.71853980943337e+00 + 193 1.00213474450786e+01 9.70762044056817e+00 + 194 1.00187805216026e+01 9.69773175201182e+00 + 195 1.00164016141049e+01 9.68784935170505e+00 + 196 1.00144402663323e+01 9.67667426952134e+00 + 197 1.00130444566844e+01 9.66343938641739e+00 + 198 1.00122912603524e+01 9.64854739402150e+00 + 199 1.00122066751424e+01 9.63383866285097e+00 + 200 1.00127732039621e+01 9.62235997484479e+00 diff --git a/examples/PACKAGES/colvars/out2.colvars.state b/examples/PACKAGES/colvars/out2.colvars.state index 95bb3dafbb..e8e73653be 100644 --- a/examples/PACKAGES/colvars/out2.colvars.state +++ b/examples/PACKAGES/colvars/out2.colvars.state @@ -1,17 +1,17 @@ configuration { step 300 dt 2.000000e+00 - version 2020-07-07 + version 2024-06-04 } colvar { name one - x 9.95315918568411e+00 + x 9.9531592295885 } colvar { name two - x 9.79318883680258e+00 + x 9.7931889789213 } restraint { diff --git a/examples/PACKAGES/colvars/out2.colvars.traj b/examples/PACKAGES/colvars/out2.colvars.traj index 365f9b8306..e856b3a96a 100644 --- a/examples/PACKAGES/colvars/out2.colvars.traj +++ b/examples/PACKAGES/colvars/out2.colvars.traj @@ -1,102 +1,102 @@ # step one two - 200 1.00127732034965e+01 9.62235997490241e+00 - 201 1.00139198864982e+01 9.61766167925624e+00 - 202 1.00155004339120e+01 9.62284272858813e+00 - 203 1.00172741972246e+01 9.63964899323068e+00 - 204 1.00189052021826e+01 9.66786718571673e+00 - 205 1.00199887119842e+01 9.70521202056400e+00 - 206 1.00201070660155e+01 9.74782380666112e+00 - 207 1.00189089093749e+01 9.79114913038349e+00 - 208 1.00162005540278e+01 9.83091553260188e+00 - 209 1.00120316562035e+01 9.86409994884863e+00 - 210 1.00067394529596e+01 9.88955328455197e+00 - 211 1.00009200584653e+01 9.90798080826055e+00 - 212 9.99531475905311e+00 9.92127385542524e+00 - 213 9.99063400342297e+00 9.93157198661852e+00 - 214 9.98737188807678e+00 9.94051482696048e+00 - 215 9.98567127567181e+00 9.94885527957784e+00 - 216 9.98528704043382e+00 9.95646746111755e+00 - 217 9.98565832937415e+00 9.96275739929720e+00 - 218 9.98606724184677e+00 9.96730423246689e+00 - 219 9.98583582550472e+00 9.97036378703713e+00 - 220 9.98451001643477e+00 9.97292736129215e+00 - 221 9.98198434901656e+00 9.97627439806637e+00 - 222 9.97853678731273e+00 9.98127100659218e+00 - 223 9.97475984191141e+00 9.98785371236258e+00 - 224 9.97140286510626e+00 9.99492286335624e+00 - 225 9.96917137580259e+00 1.00005443231922e+01 - 226 9.96854523900174e+00 1.00023222923235e+01 - 227 9.96967375964547e+00 9.99790273206806e+00 - 228 9.97237636771905e+00 9.98555960216881e+00 - 229 9.97624253505807e+00 9.96473792067690e+00 - 230 9.98078777310055e+00 9.93636511602182e+00 - 231 9.98560846780419e+00 9.90275990393703e+00 - 232 9.99048787217569e+00 9.86710855077386e+00 - 233 9.99543040822038e+00 9.83269539984149e+00 - 234 1.00006246021103e+01 9.80221208335553e+00 - 235 1.00063530848982e+01 9.77738136586701e+00 - 236 1.00128741709083e+01 9.75887400813685e+00 - 237 1.00203106975850e+01 9.74632163179798e+00 - 238 1.00285805371730e+01 9.73844350416337e+00 - 239 1.00373945897865e+01 9.73349215182819e+00 - 240 1.00463194539327e+01 9.72980720779576e+00 - 241 1.00548770491533e+01 9.72611599020063e+00 - 242 1.00626421174965e+01 9.72152572108181e+00 - 243 1.00693109823863e+01 9.71531423107737e+00 - 244 1.00747300690509e+01 9.70668632474813e+00 - 245 1.00788811512303e+01 9.69472082245661e+00 - 246 1.00818281591535e+01 9.67872530149764e+00 - 247 1.00836382918008e+01 9.65899116363609e+00 - 248 1.00843077585461e+01 9.63702967428387e+00 - 249 1.00837304601058e+01 9.61431312359133e+00 - 250 1.00817369874724e+01 9.59193249256670e+00 - 251 1.00781951382998e+01 9.57162234547176e+00 - 252 1.00731274409141e+01 9.55557274350384e+00 - 253 1.00667870632608e+01 9.54560001126946e+00 - 254 1.00596598859158e+01 9.54253147668434e+00 - 255 1.00523956909045e+01 9.54593692832520e+00 - 256 1.00457028282132e+01 9.55423082330650e+00 - 257 1.00402418669526e+01 9.56514761944992e+00 - 258 1.00365397691695e+01 9.57641296971103e+00 - 259 1.00349276270394e+01 9.58620624196598e+00 - 260 1.00355019919770e+01 9.59332346959128e+00 - 261 1.00381137097146e+01 9.59732188686984e+00 - 262 1.00423905760179e+01 9.59837618250971e+00 - 263 1.00477959188736e+01 9.59679324477687e+00 - 264 1.00537068007149e+01 9.59269523141530e+00 - 265 1.00594937260641e+01 9.58610120816249e+00 - 266 1.00645870781682e+01 9.57722117048002e+00 - 267 1.00685316571224e+01 9.56668493985151e+00 - 268 1.00710357823615e+01 9.55556251047062e+00 - 269 1.00720144042107e+01 9.54520978473172e+00 - 270 1.00716144493745e+01 9.53703781183182e+00 - 271 1.00701992199135e+01 9.53227489206590e+00 - 272 1.00682808706064e+01 9.53173333554826e+00 - 273 1.00663988075209e+01 9.53554943194497e+00 - 274 1.00649733063520e+01 9.54299862049767e+00 - 275 1.00641836485840e+01 9.55262143610080e+00 - 276 1.00639178664285e+01 9.56271517955029e+00 - 277 1.00638153921535e+01 9.57192148747872e+00 - 278 1.00633853985923e+01 9.57957875475062e+00 - 279 1.00621626720543e+01 9.58572327394556e+00 - 280 1.00598570838615e+01 9.59085686511578e+00 - 281 1.00564566071967e+01 9.59567423393283e+00 - 282 1.00522576614697e+01 9.60085550637412e+00 - 283 1.00478091897332e+01 9.60690040068280e+00 - 284 1.00437767664032e+01 9.61396708331890e+00 - 285 1.00407546813490e+01 9.62178118810825e+00 - 286 1.00390773261870e+01 9.62975547860500e+00 - 287 1.00386906040191e+01 9.63733595704590e+00 - 288 1.00391292740982e+01 9.64435229335154e+00 - 289 1.00396077171765e+01 9.65114124926381e+00 - 290 1.00391967746350e+01 9.65843904962787e+00 - 291 1.00370409303829e+01 9.66713735495098e+00 - 292 1.00325613495850e+01 9.67798035621834e+00 - 293 1.00255913568518e+01 9.69130440474672e+00 - 294 1.00164044158125e+01 9.70689841022156e+00 - 295 1.00056261321876e+01 9.72399810930261e+00 - 296 9.99406221883501e+00 9.74140402524052e+00 - 297 9.98250803362175e+00 9.75776438941627e+00 - 298 9.97160202027972e+00 9.77203069297329e+00 - 299 9.96175637151037e+00 9.78379375044905e+00 - 300 9.95315918568411e+00 9.79318883680258e+00 + 200 1.00127732039621e+01 9.62235997484479e+00 + 201 1.00139198873142e+01 9.61766167960114e+00 + 202 1.00155004349735e+01 9.62284272927993e+00 + 203 1.00172741984288e+01 9.63964899413135e+00 + 204 1.00189052034286e+01 9.66786718668113e+00 + 205 1.00199887131237e+01 9.70521202139326e+00 + 206 1.00201070669505e+01 9.74782380717117e+00 + 207 1.00189089099933e+01 9.79114913037297e+00 + 208 1.00162005542527e+01 9.83091553193592e+00 + 209 1.00120316559893e+01 9.86409994753053e+00 + 210 1.00067394522266e+01 9.88955328278264e+00 + 211 1.00009200570685e+01 9.90798080630807e+00 + 212 9.99531475670037e+00 9.92127385350745e+00 + 213 9.99063399978946e+00 9.93157198491364e+00 + 214 9.98737188290188e+00 9.94051482558046e+00 + 215 9.98567126870035e+00 9.94885527853167e+00 + 216 9.98528703143402e+00 9.95646746044078e+00 + 217 9.98565831825084e+00 9.96275739920543e+00 + 218 9.98606722850532e+00 9.96730423316541e+00 + 219 9.98583581006681e+00 9.97036378874527e+00 + 220 9.98450999905139e+00 9.97292736402649e+00 + 221 9.98198432974296e+00 9.97627440161597e+00 + 222 9.97853676608100e+00 9.98127101043889e+00 + 223 9.97475981847134e+00 9.98785371579891e+00 + 224 9.97140283904510e+00 9.99492286559338e+00 + 225 9.96917134637541e+00 1.00005443234936e+01 + 226 9.96854520536988e+00 1.00023222900809e+01 + 227 9.96967372102824e+00 9.99790272698630e+00 + 228 9.97237632329275e+00 9.98555959429830e+00 + 229 9.97624248419111e+00 9.96473791046628e+00 + 230 9.98078771543058e+00 9.93636510426670e+00 + 231 9.98560840329183e+00 9.90275989164257e+00 + 232 9.99048780094848e+00 9.86710853890991e+00 + 233 9.99543033063032e+00 9.83269538913306e+00 + 234 1.00006245185513e+01 9.80221207423406e+00 + 235 1.00063529959328e+01 9.77738135842695e+00 + 236 1.00128740773079e+01 9.75887400220566e+00 + 237 1.00203106003782e+01 9.74632162713091e+00 + 238 1.00285804376080e+01 9.73844350045589e+00 + 239 1.00373944894039e+01 9.73349214878674e+00 + 240 1.00463193546284e+01 9.72980720512224e+00 + 241 1.00548769529672e+01 9.72611598750665e+00 + 242 1.00626420263492e+01 9.72152571786963e+00 + 243 1.00693108979996e+01 9.71531422666390e+00 + 244 1.00747299927796e+01 9.70668631833486e+00 + 245 1.00788810840328e+01 9.69472081315003e+00 + 246 1.00818281015229e+01 9.67872528846535e+00 + 247 1.00836382438846e+01 9.65899114629446e+00 + 248 1.00843077202414e+01 9.63702965268533e+00 + 249 1.00837304312378e+01 9.61431309843794e+00 + 250 1.00817369677632e+01 9.59193246490958e+00 + 251 1.00781951275561e+01 9.57162231665577e+00 + 252 1.00731274389447e+01 9.55557271498134e+00 + 253 1.00667870699195e+01 9.54559998431332e+00 + 254 1.00596599010604e+01 9.54253145213164e+00 + 255 1.00523957143832e+01 9.54593690642836e+00 + 256 1.00457028598538e+01 9.55423080384305e+00 + 257 1.00402419064054e+01 9.56514760196478e+00 + 258 1.00365398159221e+01 9.57641295373454e+00 + 259 1.00349276804438e+01 9.58620622717253e+00 + 260 1.00355020510841e+01 9.59332345585722e+00 + 261 1.00381137733017e+01 9.59732187421620e+00 + 262 1.00423906427137e+01 9.59837617102817e+00 + 263 1.00477959872900e+01 9.59679323453788e+00 + 264 1.00537068694862e+01 9.59269522224878e+00 + 265 1.00594937939774e+01 9.58610119961332e+00 + 266 1.00645871442695e+01 9.57722116190429e+00 + 267 1.00685317208695e+01 9.56668493059359e+00 + 268 1.00710358435525e+01 9.55556250017823e+00 + 269 1.00720144628669e+01 9.54520977349603e+00 + 270 1.00716145056864e+01 9.53703780013997e+00 + 271 1.00701992741473e+01 9.53227488069496e+00 + 272 1.00682809229059e+01 9.53173332532930e+00 + 273 1.00663988579612e+01 9.53554942356440e+00 + 274 1.00649733547668e+01 9.54299861430164e+00 + 275 1.00641836945973e+01 9.55262143202964e+00 + 276 1.00639179095174e+01 9.56271517715327e+00 + 277 1.00638154316074e+01 9.57192148613520e+00 + 278 1.00633854335686e+01 9.57957875400668e+00 + 279 1.00621627016565e+01 9.58572327370357e+00 + 280 1.00598571070638e+01 9.59085686592320e+00 + 281 1.00564566229803e+01 9.59567423699651e+00 + 282 1.00522576689401e+01 9.60085551333600e+00 + 283 1.00478091881844e+01 9.60690041329352e+00 + 284 1.00437767554115e+01 9.61396710318380e+00 + 285 1.00407546608873e+01 9.62178121653831e+00 + 286 1.00390772967935e+01 9.62975551670189e+00 + 287 1.00386905666453e+01 9.63733600598964e+00 + 288 1.00391292301728e+01 9.64435235461356e+00 + 289 1.00396076684883e+01 9.65114132457984e+00 + 290 1.00391967232973e+01 9.65843914091158e+00 + 291 1.00370408787737e+01 9.66713746391752e+00 + 292 1.00325613002434e+01 9.67798048381559e+00 + 293 1.00255913122523e+01 9.69130455064462e+00 + 294 1.00164043783898e+01 9.70689857240811e+00 + 295 1.00056261042358e+01 9.72399828398139e+00 + 296 9.99406220236070e+00 9.74140420689973e+00 + 297 9.98250803047048e+00 9.75776457125789e+00 + 298 9.97160203186903e+00 9.77203086770013e+00 + 299 9.96175639897897e+00 9.78379391142304e+00 + 300 9.95315922958854e+00 9.79318897892133e+00 diff --git a/examples/PACKAGES/colvars/peptide2.colvars.state b/examples/PACKAGES/colvars/peptide2.colvars.state index 6e23e3a6c5..4f57df80b7 100644 --- a/examples/PACKAGES/colvars/peptide2.colvars.state +++ b/examples/PACKAGES/colvars/peptide2.colvars.state @@ -1,12 +1,12 @@ configuration { step 100 dt 2.000000e+00 - version 2020-07-07 + version 2024-06-04 } colvar { name one - x 1.00387423506482e+01 + x 10.038742350674 } restraint { diff --git a/examples/PACKAGES/colvars/peptide2.colvars.traj b/examples/PACKAGES/colvars/peptide2.colvars.traj index 0d8931bda7..421338dbf7 100644 --- a/examples/PACKAGES/colvars/peptide2.colvars.traj +++ b/examples/PACKAGES/colvars/peptide2.colvars.traj @@ -20,16 +20,16 @@ 18 9.41602481112176e+00 19 9.44413580740584e+00 20 9.49001346044027e+00 - 21 9.55036359015270e+00 - 22 9.62258602486444e+00 - 23 9.70460545744668e+00 + 21 9.55036359015271e+00 + 22 9.62258602486445e+00 + 23 9.70460545744666e+00 24 9.79475465622561e+00 - 25 9.89135302429916e+00 - 26 9.99213332770717e+00 + 25 9.89135302429913e+00 + 26 9.99213332770716e+00 27 1.00938522423366e+01 28 1.01925371414626e+01 29 1.02845129002944e+01 - 30 1.03676671987640e+01 + 30 1.03676671987639e+01 31 1.04416385355998e+01 32 1.05071349561950e+01 33 1.05650463398331e+01 @@ -41,39 +41,39 @@ 39 1.07331870068021e+01 40 1.07158913924701e+01 41 1.06789115566470e+01 - 42 1.06198840652253e+01 + 42 1.06198840652254e+01 43 1.05380097743725e+01 44 1.04346581978275e+01 45 1.03132910149185e+01 - 46 1.01792819503691e+01 + 46 1.01792819503692e+01 47 1.00398949454818e+01 48 9.90373650268307e+00 - 49 9.77934647164350e+00 - 50 9.67343955381284e+00 - 51 9.58957255517495e+00 - 52 9.52771577288560e+00 - 53 9.48463495848957e+00 - 54 9.45495747488851e+00 - 55 9.43277083061229e+00 - 56 9.41329510571902e+00 - 57 9.39417852043035e+00 + 49 9.77934647164349e+00 + 50 9.67343955381283e+00 + 51 9.58957255517494e+00 + 52 9.52771577288559e+00 + 53 9.48463495848955e+00 + 54 9.45495747488850e+00 + 55 9.43277083061230e+00 + 56 9.41329510571900e+00 + 57 9.39417852043034e+00 58 9.37607916767444e+00 - 59 9.36243879601093e+00 - 60 9.35853234890725e+00 - 61 9.36993739187210e+00 - 62 9.40084256925489e+00 + 59 9.36243879601092e+00 + 60 9.35853234890724e+00 + 61 9.36993739187209e+00 + 62 9.40084256925487e+00 63 9.45286356660258e+00 64 9.52464585631223e+00 65 9.61230948096192e+00 - 66 9.71074418990813e+00 - 67 9.81507236552599e+00 - 68 9.92117974657176e+00 - 69 1.00244259961919e+01 + 66 9.71074418990814e+00 + 67 9.81507236552600e+00 + 68 9.92117974657179e+00 + 69 1.00244259961920e+01 70 1.01178306268727e+01 - 71 1.01986985644537e+01 + 71 1.01986985644538e+01 72 1.02671003889995e+01 - 73 1.03213098011429e+01 - 74 1.03597236984298e+01 + 73 1.03213098011430e+01 + 74 1.03597236984299e+01 75 1.03817789163109e+01 76 1.03880650963390e+01 77 1.03809140245635e+01 @@ -82,21 +82,21 @@ 80 1.03243676495902e+01 81 1.03082131278348e+01 82 1.02961310659179e+01 - 83 1.02862115513553e+01 + 83 1.02862115513552e+01 84 1.02756073299153e+01 85 1.02618115461408e+01 86 1.02435127550163e+01 87 1.02212112849545e+01 88 1.01972788307491e+01 - 89 1.01743918261207e+01 + 89 1.01743918261206e+01 90 1.01538328424605e+01 91 1.01363005552771e+01 - 92 1.01223066231827e+01 - 93 1.01118037967830e+01 + 92 1.01223066231826e+01 + 93 1.01118037967829e+01 94 1.01038502876980e+01 - 95 1.00967012947728e+01 - 96 1.00885779123137e+01 - 97 1.00784256309007e+01 - 98 1.00661429612272e+01 - 99 1.00524913461711e+01 - 100 1.00387423506482e+01 + 95 1.00967012947726e+01 + 96 1.00885779123133e+01 + 97 1.00784256308996e+01 + 98 1.00661429612359e+01 + 99 1.00524913461887e+01 + 100 1.00387423506735e+01 diff --git a/examples/PACKAGES/dpd-smooth/2d-diffusion-in-shear-flow/in.lammps b/examples/PACKAGES/dpd-smooth/2d-diffusion-in-shear-flow/in.lammps index dd50a5e69f..8dabebc03c 100644 --- a/examples/PACKAGES/dpd-smooth/2d-diffusion-in-shear-flow/in.lammps +++ b/examples/PACKAGES/dpd-smooth/2d-diffusion-in-shear-flow/in.lammps @@ -16,7 +16,7 @@ variable mass equal $a*$a*$a*${rho_0} variable dt equal 1e-3 # timestep microseconds variable skin equal 0.2*$h -region box block -${Lb} ${Lb} -${Lb} ${Lb} 0 ${a} units box +region box block -${Lb} ${Lb} -${Lb} ${Lb} -0.5 0.5 units box create_box 4 box lattice sq $a diff --git a/examples/PACKAGES/dpd-smooth/2d-diffusion/in.lammps b/examples/PACKAGES/dpd-smooth/2d-diffusion/in.lammps index 2e0e821480..12b2a75434 100644 --- a/examples/PACKAGES/dpd-smooth/2d-diffusion/in.lammps +++ b/examples/PACKAGES/dpd-smooth/2d-diffusion/in.lammps @@ -14,7 +14,7 @@ variable mass equal $a*$a*$a*${rho_0} variable dt equal 1e-3 # timestep microseconds variable skin equal 0.2*$h -region box block -$L $L -$L $L 0 $a units box +region box block -$L $L -$L $L -0.5 0.5 units box create_box 2 box lattice sq $a diff --git a/examples/PACKAGES/eff/CH4/in.ch4.dynamics b/examples/PACKAGES/eff/CH4/in.ch4.dynamics index cb06a1c8cf..6e974a287a 100644 --- a/examples/PACKAGES/eff/CH4/in.ch4.dynamics +++ b/examples/PACKAGES/eff/CH4/in.ch4.dynamics @@ -1,40 +1,40 @@ -variable sname index ch4 +variable sname index ch4 -units electron -newton on +units electron +newton on boundary f f f -atom_style electron +atom_style electron -read_data data.${sname} +read_data data.${sname} pair_style eff/cut 100.0 -pair_coeff * * +pair_coeff * * -comm_modify vel yes +comm_modify vel yes # Minimize min_style cg compute 1 all property/atom spin eradius -dump 1 all custom 1 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z +#dump 1 all custom 1 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z min_modify line quadratic dmax 0.1 minimize 0 1.0e-6 1000 10000 # Dynamics -compute effTemp all temp/eff +compute effTemp all temp/eff -thermo 1000 -thermo_style custom step pe temp press -thermo_modify temp effTemp +thermo 1000 +thermo_style custom step pe temp press +thermo_modify temp effTemp -velocity all create 300.0 4928459 dist gaussian rot yes mom yes +velocity all create 300.0 4928459 dist gaussian rot yes mom yes -timestep 0.005 -fix 1 all nve/eff +timestep 0.005 +fix 1 all nve/eff # the custom dump includes the radii -dump 2 all custom 1000 ${sname}.nve.lammpstrj id type q c_1[1] c_1[2] x y z -dump 3 all xyz 1000 ${sname}.nve.xyz +#dump 2 all custom 1000 ${sname}.nve.lammpstrj id type q c_1[1] c_1[2] x y z +#dump 3 all xyz 1000 ${sname}.nve.xyz -run 100000 +run 100000 diff --git a/examples/PACKAGES/eff/CH4/in.ch4.min b/examples/PACKAGES/eff/CH4/in.ch4.min index df052c728e..5159888494 100644 --- a/examples/PACKAGES/eff/CH4/in.ch4.min +++ b/examples/PACKAGES/eff/CH4/in.ch4.min @@ -1,17 +1,17 @@ -variable sname index ch4 +variable sname index ch4 -units electron -newton on +units electron +newton on boundary f f f -atom_style electron +atom_style electron -read_data data.${sname} +read_data data.${sname} pair_style eff/cut 100.0 -pair_coeff * * +pair_coeff * * -comm_modify vel yes +comm_modify vel yes compute effTemp all temp/eff @@ -24,8 +24,8 @@ variable erres equal c_energies[4] thermo 1 thermo_style custom step etotal pe ke v_eke v_epauli v_ecoul v_erres -min_style cg +min_style cg compute 1 all property/atom spin eradius erforce -dump 2 all custom 10 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] -minimize 0 1e-6 2000 4000 +#dump 2 all custom 10 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +minimize 0 1e-6 2000 4000 diff --git a/examples/PACKAGES/eff/CH4/in.ch4_ionized.dynamics b/examples/PACKAGES/eff/CH4/in.ch4_ionized.dynamics index 51ca071fc6..5dc8eb0e80 100644 --- a/examples/PACKAGES/eff/CH4/in.ch4_ionized.dynamics +++ b/examples/PACKAGES/eff/CH4/in.ch4_ionized.dynamics @@ -1,17 +1,17 @@ -variable sname index ch4_ionized +variable sname index ch4_ionized -units electron -newton on +units electron +newton on boundary f f f -atom_style electron +atom_style electron -read_data data.${sname} +read_data data.${sname} -pair_style eff/cut 5000.0 0 0 -pair_coeff * * +pair_style eff/cut 5000.0 +pair_coeff * * -comm_modify vel yes +comm_modify vel yes # minimize @@ -20,23 +20,23 @@ min_modify line quadratic minimize 0 1.0e-6 10000 100000 # dynamics -compute effTemp all temp/eff +compute effTemp all temp/eff -thermo 100 -thermo_style custom step etotal pe ke temp press -thermo_modify temp effTemp +thermo 100 +thermo_style custom step etotal pe ke temp press +thermo_modify temp effTemp # equilibrate -timestep 0.001 -fix 1 all nvt/eff temp 300.0 300.0 0.1 +timestep 0.001 +fix 1 all nvt/eff temp 300.0 300.0 0.1 # the custom dump includes the radii compute 1 all property/atom spin eradius -dump 1 all custom 100 ${sname}.nvt.lammpstrj id type x y z c_1[1] c_1[2] -dump 2 all xyz 100 ${sname}.nvt.xyz +#dump 1 all custom 100 ${sname}.nvt.lammpstrj id type x y z c_1[1] c_1[2] +#dump 2 all xyz 100 ${sname}.nvt.xyz -run 1000000 +run 1000000 -fix 2 all nve/eff +fix 2 all nve/eff -run 1000000 +run 1000000 diff --git a/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.dynamics.g++.1 b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.dynamics.g++.1 new file mode 100644 index 0000000000..f2b012f9fc --- /dev/null +++ b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.dynamics.g++.1 @@ -0,0 +1,266 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +variable sname index ch4 + +units electron +newton on +boundary f f f + +atom_style electron + +read_data data.${sname} +read_data data.ch4 +Reading data file ... + orthogonal box = (-500 -500 -500) to (500 500 500) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 15 atoms + read_data CPU = 0.000 seconds + +pair_style eff/cut 100.0 +pair_coeff * * + +comm_modify vel yes + +# Minimize +min_style cg +compute 1 all property/atom spin eradius +dump 1 all custom 1 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z +dump 1 all custom 1 ch4.min.lammpstrj id type q c_1[1] c_1[2] x y z +min_modify line quadratic dmax 0.1 +minimize 0 1.0e-6 1000 10000 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- EFF package: doi:10.1002/jcc.21637 + +@Article{Jaramillo-Botero11, + author = {A. Jaramillo-Botero and J. Su and A. Qi and Goddard, III, W. A.}, + title = {Large-Scale, Long-Term Nonadiabatic Electron Molecular Dynamics for Describing Material Properties and Phenomena in Extreme Environments}, + journal = {J.~Comp.\ Chem.}, + year = 2011, + volume = 32, + number = 3, + pages = {497--512} +} + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 102 + ghost atom cutoff = 102 + binsize = 51, bins = 20 20 20 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair eff/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.405 | 5.405 | 5.405 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 0 -27.314082 0 -27.314082 -56588.53 + 1000 0 -34.07448 0 -34.07448 1.3464499 +Loop time of 0.0308104 on 1 procs for 1000 steps with 15 atoms + +88.9% CPU use with 1 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = max iterations + Energy initial, next-to-last, final = + -27.3140820331247 -34.0744796893375 -34.0744796893447 + Force two-norm initial, final = 10.728716 0.00017815706 + Force max component initial, final = 6.1727999 8.2675815e-05 + Final line search alpha, max atom move = 1 8.2675815e-05 + Iterations, force evaluations = 1000 1943 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.012522 | 0.012522 | 0.012522 | 0.0 | 40.64 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.00012209 | 0.00012209 | 0.00012209 | 0.0 | 0.40 +Output | 0.016563 | 0.016563 | 0.016563 | 0.0 | 53.76 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.001604 | | | 5.20 + +Nlocal: 15 ave 15 max 15 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 105 ave 105 max 105 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 105 +Ave neighs/atom = 7 +Neighbor list builds = 0 +Dangerous builds = 0 + +# Dynamics + +compute effTemp all temp/eff + +thermo 1000 +thermo_style custom step pe temp press +thermo_modify temp effTemp + +velocity all create 300.0 4928459 dist gaussian rot yes mom yes + +timestep 0.005 +fix 1 all nve/eff + +# the custom dump includes the radii +dump 2 all custom 1000 ${sname}.nve.lammpstrj id type q c_1[1] c_1[2] x y z +dump 2 all custom 1000 ch4.nve.lammpstrj id type q c_1[1] c_1[2] x y z +dump 3 all xyz 1000 ${sname}.nve.xyz +dump 3 all xyz 1000 ch4.nve.xyz + +run 100000 +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Per MPI rank memory allocation (min/avg/max) = 5.406 | 5.406 | 5.406 Mbytes + Step PotEng Temp Press + 1000 -34.07448 1050 392.66426 + 2000 -34.065618 583.71716 -618.55027 + 3000 -34.063563 475.54605 661.95076 + 4000 -34.06119 350.76183 -449.64687 + 5000 -34.0652 561.71223 -131.2575 + 6000 -34.065798 593.21728 754.38406 + 7000 -34.067408 677.86019 -409.21139 + 8000 -34.065663 586.03411 446.32573 + 9000 -34.06294 442.71136 414.41408 + 10000 -34.060101 293.33406 -1203.0131 + 11000 -34.064946 548.39598 345.29601 + 12000 -34.067323 673.49043 444.55927 + 13000 -34.063275 460.43973 -854.83884 + 14000 -34.064666 533.57265 1542.0127 + 15000 -34.063343 463.97449 -778.73252 + 16000 -34.064462 522.77625 -1.5339614 + 17000 -34.061203 351.37068 -148.19163 + 18000 -34.066534 631.87837 -237.0746 + 19000 -34.065169 560.16772 1360.7348 + 20000 -34.063042 448.13104 -664.72128 + 21000 -34.060696 324.68723 -167.83333 + 22000 -34.065376 570.90279 -831.73853 + 23000 -34.063127 452.61143 766.59984 + 24000 -34.064572 528.62282 -107.80755 + 25000 -34.06584 595.42175 610.33075 + 26000 -34.066886 650.43579 -894.20521 + 27000 -34.062035 395.20224 1754.7666 + 28000 -34.060696 324.66878 -2622.013 + 29000 -34.066777 644.66282 1551.3147 + 30000 -34.066421 625.94614 -507.44173 + 31000 -34.066163 612.36658 610.11907 + 32000 -34.063109 451.70185 -47.463209 + 33000 -34.062833 437.16794 -607.25848 + 34000 -34.061657 375.30056 -158.28097 + 35000 -34.064937 547.86519 272.75585 + 36000 -34.067509 683.23088 359.91072 + 37000 -34.067582 686.96461 -384.97405 + 38000 -34.063213 457.13191 411.86349 + 39000 -34.06272 431.13187 -594.23723 + 40000 -34.062286 408.41212 456.09079 + 41000 -34.064078 502.64096 -1149.8496 + 42000 -34.066408 625.33334 1403.4937 + 43000 -34.065948 601.03876 -773.40678 + 44000 -34.064113 504.49498 179.93456 + 45000 -34.060573 318.11433 223.38679 + 46000 -34.063614 478.24588 -409.99081 + 47000 -34.064814 541.38544 614.25246 + 48000 -34.065602 582.87984 -743.92184 + 49000 -34.063923 494.52673 474.88127 + 50000 -34.064616 530.94533 288.81199 + 51000 -34.062038 395.2991 -480.07513 + 52000 -34.06497 549.5123 -305.53764 + 53000 -34.065578 581.59919 964.80956 + 54000 -34.06766 691.12707 -437.99603 + 55000 -34.064707 535.85658 1058.6734 + 56000 -34.062481 418.58003 -1011.5341 + 57000 -34.064997 551.06731 -32.91724 + 58000 -34.064281 513.25358 374.91628 + 59000 -34.066177 613.1188 -464.85124 + 60000 -34.064718 536.29803 1011.6698 + 61000 -34.065746 590.46955 -1057.9241 + 62000 -34.063253 459.23293 1526.2698 + 63000 -34.062261 407.08636 -1743.6652 + 64000 -34.063835 489.88286 761.60266 + 65000 -34.069569 791.614 323.26812 + 66000 -34.065557 580.45685 874.52459 + 67000 -34.064917 546.77223 -1349.3606 + 68000 -34.062963 443.96697 1178.4319 + 69000 -34.063063 449.26418 -1660.686 + 70000 -34.063597 477.39716 1323.13 + 71000 -34.065424 573.47914 -131.55428 + 72000 -34.065211 562.31067 -415.56361 + 73000 -34.06339 466.38097 724.92885 + 74000 -34.062286 408.34027 -1094.3845 + 75000 -34.065545 579.79767 587.58121 + 76000 -34.066774 644.61685 -357.22241 + 77000 -34.064479 523.74831 1545.6628 + 78000 -34.065506 577.88405 -1013.2409 + 79000 -34.062874 439.24856 240.66725 + 80000 -34.06306 449.09678 -799.14252 + 81000 -34.063338 463.66067 1528.3351 + 82000 -34.066812 646.52985 -1351.1758 + 83000 -34.064724 536.65114 1338.595 + 84000 -34.063774 486.67172 -876.0475 + 85000 -34.06156 370.19256 617.89915 + 86000 -34.063628 478.95398 -134.40164 + 87000 -34.065141 558.60424 -758.03942 + 88000 -34.066732 642.27865 1159.5992 + 89000 -34.067349 674.83453 -301.45201 + 90000 -34.063623 478.69626 386.87752 + 91000 -34.061885 387.30728 -774.32296 + 92000 -34.061363 359.77745 500.06117 + 93000 -34.065724 589.32209 -469.10399 + 94000 -34.065006 551.42796 818.92294 + 95000 -34.06541 572.75191 -677.20865 + 96000 -34.062331 410.64868 1383.8935 + 97000 -34.061499 366.95753 -1715.2058 + 98000 -34.061153 348.68703 353.63545 + 99000 -34.066217 615.27816 193.79593 + 100000 -34.067739 695.36238 205.35389 + 101000 -34.067314 672.94727 929.41223 +Loop time of 2.23163 on 1 procs for 100000 steps with 15 atoms + +Performance: 19358038.198 fs/day, 0.000 hours/fs, 44810.274 timesteps/s, 672.154 katom-step/s +85.0% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.59187 | 0.59187 | 0.59187 | 0.0 | 26.52 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.0061524 | 0.0061524 | 0.0061524 | 0.0 | 0.28 +Output | 1.5983 | 1.5983 | 1.5983 | 0.0 | 71.62 +Modify | 0.017759 | 0.017759 | 0.017759 | 0.0 | 0.80 +Other | | 0.01755 | | | 0.79 + +Nlocal: 15 ave 15 max 15 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 105 ave 105 max 105 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 105 +Ave neighs/atom = 7 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:02 diff --git a/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.dynamics.g++.4 b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.dynamics.g++.4 new file mode 100644 index 0000000000..f278152fe2 --- /dev/null +++ b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.dynamics.g++.4 @@ -0,0 +1,266 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +variable sname index ch4 + +units electron +newton on +boundary f f f + +atom_style electron + +read_data data.${sname} +read_data data.ch4 +Reading data file ... + orthogonal box = (-500 -500 -500) to (500 500 500) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 15 atoms + read_data CPU = 0.000 seconds + +pair_style eff/cut 100.0 +pair_coeff * * + +comm_modify vel yes + +# Minimize +min_style cg +compute 1 all property/atom spin eradius +dump 1 all custom 1 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z +dump 1 all custom 1 ch4.min.lammpstrj id type q c_1[1] c_1[2] x y z +min_modify line quadratic dmax 0.1 +minimize 0 1.0e-6 1000 10000 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- EFF package: doi:10.1002/jcc.21637 + +@Article{Jaramillo-Botero11, + author = {A. Jaramillo-Botero and J. Su and A. Qi and Goddard, III, W. A.}, + title = {Large-Scale, Long-Term Nonadiabatic Electron Molecular Dynamics for Describing Material Properties and Phenomena in Extreme Environments}, + journal = {J.~Comp.\ Chem.}, + year = 2011, + volume = 32, + number = 3, + pages = {497--512} +} + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 102 + ghost atom cutoff = 102 + binsize = 51, bins = 20 20 20 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair eff/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.385 | 5.385 | 5.385 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 0 -27.314082 0 -27.314082 -56588.53 + 1000 0 -34.07448 0 -34.07448 0.39495391 +Loop time of 0.0230482 on 4 procs for 1000 steps with 15 atoms + +97.7% CPU use with 4 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = max iterations + Energy initial, next-to-last, final = + -27.3140820331249 -34.0744796901924 -34.0744796901707 + Force two-norm initial, final = 10.728716 0.00024139276 + Force max component initial, final = 6.1727999 0.00017091779 + Final line search alpha, max atom move = 1 0.00017091779 + Iterations, force evaluations = 1000 1946 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0015331 | 0.0032095 | 0.0046681 | 2.0 | 13.93 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.0037211 | 0.0053887 | 0.0069902 | 1.6 | 23.38 +Output | 0.0062087 | 0.0079064 | 0.011172 | 2.2 | 34.30 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.006544 | | | 28.39 + +Nlocal: 3.75 ave 6 max 3 min +Histogram: 3 0 0 0 0 0 0 0 0 1 +Nghost: 11.25 ave 12 max 9 min +Histogram: 1 0 0 0 0 0 0 0 0 3 +Neighs: 26.25 ave 39 max 12 min +Histogram: 1 0 0 0 1 0 1 0 0 1 + +Total # of neighbors = 105 +Ave neighs/atom = 7 +Neighbor list builds = 0 +Dangerous builds = 0 + +# Dynamics + +compute effTemp all temp/eff + +thermo 1000 +thermo_style custom step pe temp press +thermo_modify temp effTemp + +velocity all create 300.0 4928459 dist gaussian rot yes mom yes + +timestep 0.005 +fix 1 all nve/eff + +# the custom dump includes the radii +dump 2 all custom 1000 ${sname}.nve.lammpstrj id type q c_1[1] c_1[2] x y z +dump 2 all custom 1000 ch4.nve.lammpstrj id type q c_1[1] c_1[2] x y z +dump 3 all xyz 1000 ${sname}.nve.xyz +dump 3 all xyz 1000 ch4.nve.xyz + +run 100000 +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Per MPI rank memory allocation (min/avg/max) = 5.401 | 5.401 | 5.401 Mbytes + Step PotEng Temp Press + 1000 -34.07448 1050 391.71277 + 2000 -34.065618 583.70724 -617.78946 + 3000 -34.063563 475.53779 661.75865 + 4000 -34.06119 350.74901 -449.8917 + 5000 -34.065201 561.76559 -130.73147 + 6000 -34.065798 593.21893 753.94281 + 7000 -34.067408 677.86552 -409.14034 + 8000 -34.065662 586.02658 446.74947 + 9000 -34.062939 442.6953 413.93386 + 10000 -34.060101 293.35262 -1202.4169 + 11000 -34.064946 548.37877 344.89658 + 12000 -34.067324 673.52389 444.40605 + 13000 -34.063275 460.44923 -854.41022 + 14000 -34.064667 533.59655 1541.2922 + 15000 -34.063344 464.01572 -777.83895 + 16000 -34.064461 522.76554 -2.2050586 + 17000 -34.061202 351.31261 -148.09486 + 18000 -34.066534 631.89021 -236.72076 + 19000 -34.065169 560.16576 1359.8928 + 20000 -34.063042 448.14707 -663.76152 + 21000 -34.060695 324.66945 -168.3252 + 22000 -34.065376 570.90677 -831.8481 + 23000 -34.063127 452.62391 767.31463 + 24000 -34.064572 528.62018 -108.63204 + 25000 -34.06584 595.41818 610.87995 + 26000 -34.066885 650.4263 -894.11862 + 27000 -34.062035 395.1876 1754.1737 + 28000 -34.060697 324.71187 -2621.333 + 29000 -34.066777 644.68166 1550.7046 + 30000 -34.066421 625.9368 -507.12512 + 31000 -34.066163 612.3605 610.12993 + 32000 -34.063108 451.66459 -48.049967 + 33000 -34.062834 437.21062 -606.58502 + 34000 -34.061656 375.26971 -158.76936 + 35000 -34.064938 547.90576 273.26572 + 36000 -34.067508 683.20936 360.05973 + 37000 -34.067582 686.96938 -385.62265 + 38000 -34.063213 457.13708 412.74004 + 39000 -34.06272 431.16474 -595.05437 + 40000 -34.062285 408.38247 456.29631 + 41000 -34.064078 502.65934 -1149.196 + 42000 -34.066408 625.33356 1402.5676 + 43000 -34.065948 601.04311 -772.96544 + 44000 -34.064113 504.47553 179.83988 + 45000 -34.060572 318.08821 222.85125 + 46000 -34.063614 478.25613 -409.06152 + 47000 -34.064813 541.37361 613.37159 + 48000 -34.065602 582.88704 -743.72019 + 49000 -34.063922 494.52189 475.22811 + 50000 -34.064616 530.95516 288.46302 + 51000 -34.062038 395.30091 -479.68548 + 52000 -34.06497 549.50477 -305.82851 + 53000 -34.065577 581.56927 964.95886 + 54000 -34.06766 691.14533 -437.95563 + 55000 -34.064707 535.85441 1058.0886 + 56000 -34.062481 418.62259 -1010.5517 + 57000 -34.064996 551.02074 -33.54291 + 58000 -34.064281 513.27818 375.07194 + 59000 -34.066177 613.11494 -464.71576 + 60000 -34.064718 536.306 1010.9545 + 61000 -34.065746 590.47317 -1056.9192 + 62000 -34.063252 459.22005 1525.6789 + 63000 -34.06226 407.05859 -1743.9974 + 64000 -34.063836 489.91026 762.61836 + 65000 -34.069569 791.63831 322.35333 + 66000 -34.065557 580.46799 875.11714 + 67000 -34.064916 546.74052 -1349.5741 + 68000 -34.062962 443.93438 1178.1978 + 69000 -34.063064 449.3052 -1659.8695 + 70000 -34.063596 477.36452 1322.0559 + 71000 -34.065424 573.49586 -131.11749 + 72000 -34.06521 562.24612 -415.25895 + 73000 -34.06339 466.38351 724.08642 + 74000 -34.062286 408.37673 -1093.6751 + 75000 -34.065545 579.81257 586.8907 + 76000 -34.066774 644.62609 -356.7044 + 77000 -34.064479 523.75235 1545.8498 + 78000 -34.065506 577.88123 -1014.0878 + 79000 -34.062875 439.30997 241.55748 + 80000 -34.06306 449.06553 -799.58139 + 81000 -34.063338 463.64261 1528.4412 + 82000 -34.066812 646.55603 -1350.9377 + 83000 -34.064724 536.63793 1338.2148 + 84000 -34.063774 486.717 -875.60363 + 85000 -34.06156 370.19433 617.85579 + 86000 -34.063628 478.9961 -135.13703 + 87000 -34.065141 558.62541 -756.91518 + 88000 -34.066732 642.27743 1158.5797 + 89000 -34.067351 674.92164 -300.79164 + 90000 -34.063624 478.70378 386.44004 + 91000 -34.061884 387.27577 -774.22945 + 92000 -34.061364 359.79856 500.36442 + 93000 -34.065723 589.31234 -469.57015 + 94000 -34.065006 551.46665 819.01826 + 95000 -34.065409 572.7351 -676.74519 + 96000 -34.06233 410.60509 1382.9732 + 97000 -34.0615 366.99019 -1714.2302 + 98000 -34.061152 348.67783 352.89211 + 99000 -34.066217 615.29222 193.8722 + 100000 -34.067739 695.32836 206.03841 + 101000 -34.067313 672.90918 928.0541 +Loop time of 1.62544 on 4 procs for 100000 steps with 15 atoms + +Performance: 26577371.575 fs/day, 0.000 hours/fs, 61521.693 timesteps/s, 922.825 katom-step/s +93.6% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.066581 | 0.15332 | 0.25928 | 21.7 | 9.43 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.18521 | 0.29733 | 0.3879 | 16.1 | 18.29 +Output | 0.66513 | 0.81838 | 1.1333 | 20.4 | 50.35 +Modify | 0.01285 | 0.014237 | 0.016092 | 1.0 | 0.88 +Other | | 0.3422 | | | 21.05 + +Nlocal: 3.75 ave 5 max 3 min +Histogram: 2 0 0 0 0 1 0 0 0 1 +Nghost: 11.25 ave 12 max 10 min +Histogram: 1 0 0 0 0 1 0 0 0 2 +Neighs: 26.25 ave 47 max 10 min +Histogram: 2 0 0 0 0 0 0 1 0 1 + +Total # of neighbors = 105 +Ave neighs/atom = 7 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:01 diff --git a/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.min.g++.1 b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.min.g++.1 new file mode 100644 index 0000000000..5a25dc7ca1 --- /dev/null +++ b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.min.g++.1 @@ -0,0 +1,2124 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +variable sname index ch4 + +units electron +newton on +boundary f f f + +atom_style electron + +read_data data.${sname} +read_data data.ch4 +Reading data file ... + orthogonal box = (-500 -500 -500) to (500 500 500) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 15 atoms + read_data CPU = 0.000 seconds + +pair_style eff/cut 100.0 +pair_coeff * * + +comm_modify vel yes + +compute effTemp all temp/eff + +compute energies all pair eff/cut +variable eke equal c_energies[1] +variable epauli equal c_energies[2] +variable ecoul equal c_energies[3] +variable erres equal c_energies[4] + +thermo 1 +thermo_style custom step etotal pe ke v_eke v_epauli v_ecoul v_erres + +min_style cg +compute 1 all property/atom spin eradius erforce +dump 2 all custom 10 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +dump 2 all custom 10 ch4.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +minimize 0 1e-6 2000 4000 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- EFF package: doi:10.1002/jcc.21637 + +@Article{Jaramillo-Botero11, + author = {A. Jaramillo-Botero and J. Su and A. Qi and Goddard, III, W. A.}, + title = {Large-Scale, Long-Term Nonadiabatic Electron Molecular Dynamics for Describing Material Properties and Phenomena in Extreme Environments}, + journal = {J.~Comp.\ Chem.}, + year = 2011, + volume = 32, + number = 3, + pages = {497--512} +} + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 102 + ghost atom cutoff = 102 + binsize = 51, bins = 20 20 20 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair eff/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.405 | 5.405 | 5.405 Mbytes + Step TotEng PotEng KinEng v_eke v_epauli v_ecoul v_erres + 0 -27.314082 -27.314082 0 24 0.10032353 -51.414406 0 + 1 -27.499639 -27.499639 0 24.170209 0.10057561 -51.770424 0 + 2 -27.683396 -27.683396 0 24.345642 0.10089134 -52.129929 0 + 3 -27.865331 -27.865331 0 24.526355 0.10127324 -52.492959 0 + 4 -28.045422 -28.045422 0 24.712409 0.10172411 -52.859555 0 + 5 -28.223645 -28.223645 0 24.903863 0.10224707 -53.229755 0 + 6 -28.399975 -28.399975 0 25.100779 0.10284557 -53.603599 0 + 7 -28.574385 -28.574385 0 25.303218 0.10352343 -53.981126 0 + 8 -28.746849 -28.746849 0 25.511241 0.1042849 -54.362374 0 + 9 -28.917337 -28.917337 0 25.724911 0.10513471 -54.747383 0 + 10 -29.085821 -29.085821 0 25.944289 0.10607815 -55.136189 0 + 11 -29.252272 -29.252272 0 26.169437 0.1071211 -55.52883 0 + 12 -29.41666 -29.41666 0 26.400414 0.10827014 -55.925344 0 + 13 -29.578957 -29.578957 0 26.637279 0.10953266 -56.325768 0 + 14 -29.739132 -29.739132 0 26.880089 0.11091698 -56.730139 0 + 15 -29.897159 -29.897159 0 27.1289 0.11243247 -57.138491 0 + 16 -30.05301 -30.05301 0 27.383761 0.11408972 -57.550861 0 + 17 -30.20666 -30.20666 0 27.644721 0.11590079 -57.967282 0 + 18 -30.358087 -30.358087 0 27.911822 0.1178794 -58.387788 0 + 19 -30.507273 -30.507273 0 28.185098 0.12004129 -58.812412 0 + 20 -30.654201 -30.654201 0 28.46458 0.12240454 -59.241185 0 + 21 -30.798862 -30.798862 0 28.750284 0.12499011 -59.674136 0 + 22 -30.941253 -30.941253 0 29.042218 0.12782235 -60.111293 0 + 23 -31.08138 -31.08138 0 29.340372 0.13092981 -60.552682 0 + 24 -31.219258 -31.219258 0 29.644719 0.13434614 -60.998324 0 + 25 -31.354917 -31.354917 0 29.955211 0.13811139 -61.448239 0 + 26 -31.488402 -31.488402 0 30.271767 0.14227357 -61.902442 0 + 27 -31.619779 -31.619779 0 30.594272 0.14689089 -62.360942 0 + 28 -31.749143 -31.749143 0 30.922563 0.15203466 -62.823741 0 + 29 -31.876621 -31.876621 0 31.256418 0.15779339 -63.290833 0 + 30 -32.002388 -32.002388 0 31.595534 0.16427855 -63.7622 0 + 31 -32.126674 -32.126674 0 31.9395 0.1716329 -64.237807 0 + 32 -32.249794 -32.249794 0 32.287764 0.18004289 -64.717601 0 + 33 -32.372172 -32.372172 0 32.639566 0.1897578 -65.201496 0 + 34 -32.494388 -32.494388 0 32.993857 0.20112027 -65.689365 0 + 35 -32.61725 -32.61725 0 33.349149 0.21461763 -66.181017 0 + 36 -32.741918 -32.741918 0 33.70327 0.23097319 -66.67616 0 + 37 -32.870111 -32.870111 0 34.052904 0.2513213 -67.174336 0 + 38 -33.004523 -33.004523 0 34.392682 0.27757717 -67.674782 0 + 39 -33.131935 -33.131935 0 34.671357 0.3085598 -68.111851 0 + 40 -33.247742 -33.247742 0 34.873666 0.34338548 -68.464794 0 + 41 -33.353582 -33.353582 0 35.007506 0.3823147 -68.743403 0 + 42 -33.450532 -33.450532 0 35.082164 0.42559778 -68.958293 0 + 43 -33.53923 -33.53923 0 35.107578 0.47347047 -69.120278 0 + 44 -33.619996 -33.619996 0 35.093709 0.52614846 -69.239853 0 + 45 -33.692938 -33.692938 0 35.05005 0.58381974 -69.326808 0 + 46 -33.758038 -33.758038 0 34.98528 0.64663247 -69.389951 0 + 47 -33.815222 -33.815222 0 34.907008 0.71467392 -69.436905 0 + 48 -33.864413 -33.864413 0 34.821602 0.7879297 -69.473945 0 + 49 -33.905585 -33.905585 0 34.734007 0.86619619 -69.505788 0 + 50 -33.938836 -33.938836 0 34.647503 0.94886841 -69.535207 0 + 51 -33.964554 -33.964554 0 34.563166 1.0343361 -69.562056 0 + 52 -33.983163 -33.983163 0 34.478367 1.1178152 -69.579346 0 + 53 -33.985292 -33.985292 0 34.468344 1.127623 -69.58126 0 + 54 -33.986885 -33.986885 0 34.442296 1.1525057 -69.581686 0 + 55 -33.997727 -33.997727 0 34.356686 1.2368074 -69.591221 0 + 56 -33.998048 -33.998048 0 34.356583 1.2360822 -69.590713 0 + 57 -33.998382 -33.998382 0 34.355804 1.2301279 -69.584314 0 + 58 -34.000765 -34.000765 0 34.353687 1.2163507 -69.570803 0 + 59 -34.016324 -34.016324 0 34.317157 1.0221689 -69.35565 0 + 60 -34.017537 -34.017537 0 34.31516 1.0230768 -69.355774 0 + 61 -34.018201 -34.018201 0 34.295425 1.0324541 -69.346081 0 + 62 -34.021203 -34.021203 0 34.270017 1.0445852 -69.335806 0 + 63 -34.028643 -34.028643 0 34.155119 1.1013118 -69.285073 0 + 64 -34.028783 -34.028783 0 34.154863 1.1014768 -69.285123 0 + 65 -34.032066 -34.032066 0 34.121722 1.1230167 -69.276805 0 + 66 -34.039153 -34.039153 0 34.083197 1.1474925 -69.269843 0 + 67 -34.039418 -34.039418 0 34.078423 1.1471234 -69.264964 0 + 68 -34.039854 -34.039854 0 33.990841 1.1401645 -69.170859 0 + 69 -34.041486 -34.041486 0 33.852419 1.1286968 -69.022602 0 + 70 -34.042985 -34.042985 0 33.539326 1.0995256 -68.681836 0 + 71 -34.044187 -34.044187 0 33.704096 1.087995 -68.836279 0 + 72 -34.046976 -34.046976 0 34.105979 1.0616369 -69.214591 0 + 73 -34.047298 -34.047298 0 34.166565 1.0570396 -69.270903 0 + 74 -34.047655 -34.047655 0 34.160107 1.0543585 -69.262121 0 + 75 -34.05592 -34.05592 0 33.929669 1.0183839 -69.003973 0 + 76 -34.058932 -34.058932 0 33.857637 1.0105254 -68.927095 0 + 77 -34.060256 -34.060256 0 33.791705 1.0050464 -68.857007 0 + 78 -34.061194 -34.061194 0 33.767087 1.0039781 -68.83226 0 + 79 -34.061993 -34.061993 0 33.738073 1.0035958 -68.803662 0 + 80 -34.062158 -34.062158 0 33.72605 1.0040846 -68.792293 0 + 81 -34.062385 -34.062385 0 33.703083 1.00536 -68.770828 0 + 82 -34.062581 -34.062581 0 33.676282 1.0073095 -68.746173 0 + 83 -34.062968 -34.062968 0 33.620495 1.0116882 -68.695151 0 + 84 -34.063486 -34.063486 0 33.547102 1.0182377 -68.628826 0 + 85 -34.064024 -34.064024 0 33.475204 1.0251495 -68.564377 0 + 86 -34.064487 -34.064487 0 33.430317 1.0309765 -68.52578 0 + 87 -34.064749 -34.064749 0 33.411709 1.0341359 -68.510593 0 + 88 -34.065147 -34.065147 0 33.415527 1.0379588 -68.518632 0 + 89 -34.065382 -34.065382 0 33.424378 1.0399476 -68.529708 0 + 90 -34.065976 -34.065976 0 33.472674 1.0436261 -68.582275 0 + 91 -34.066192 -34.066192 0 33.492353 1.0447019 -68.603246 0 + 92 -34.066566 -34.066566 0 33.529008 1.0456035 -68.641178 0 + 93 -34.066657 -34.066657 0 33.536593 1.0455362 -68.648787 0 + 94 -34.066902 -34.066902 0 33.550257 1.0442965 -68.661456 0 + 95 -34.067042 -34.067042 0 33.553092 1.0431002 -68.663234 0 + 96 -34.067872 -34.067872 0 33.553083 1.0346221 -68.655577 0 + 97 -34.068532 -34.068532 0 33.543622 1.0275716 -68.639726 0 + 98 -34.070936 -34.070936 0 33.491663 1.0019237 -68.564523 0 + 99 -34.071806 -34.071806 0 33.461512 0.99266909 -68.525988 0 + 100 -34.073032 -34.073032 0 33.407035 0.97981643 -68.459884 0 + 101 -34.073284 -34.073284 0 33.384723 0.97710203 -68.43511 0 + 102 -34.073573 -34.073573 0 33.349426 0.97393739 -68.396936 0 + 103 -34.073674 -34.073674 0 33.326651 0.97282516 -68.37315 0 + 104 -34.0738 -34.0738 0 33.291946 0.97142655 -68.337172 0 + 105 -34.07386 -34.07386 0 33.270401 0.97075924 -68.31502 0 + 106 -34.073915 -34.073915 0 33.248782 0.97013432 -68.292831 0 + 107 -34.073936 -34.073936 0 33.238133 0.96980628 -68.281875 0 + 108 -34.073951 -34.073951 0 33.230178 0.96954016 -68.273669 0 + 109 -34.073959 -34.073959 0 33.225388 0.96927886 -68.268625 0 + 110 -34.073965 -34.073965 0 33.221743 0.96903431 -68.264742 0 + 111 -34.073973 -34.073973 0 33.217125 0.96847556 -68.259574 0 + 112 -34.073982 -34.073982 0 33.213133 0.96789282 -68.255007 0 + 113 -34.074005 -34.074005 0 33.204894 0.96601279 -68.244912 0 + 114 -34.074023 -34.074023 0 33.199348 0.96451164 -68.237883 0 + 115 -34.074064 -34.074064 0 33.19135 0.96097207 -68.226387 0 + 116 -34.074082 -34.074082 0 33.188855 0.95934774 -68.222285 0 + 117 -34.074116 -34.074116 0 33.188744 0.95622429 -68.219084 0 + 118 -34.074128 -34.074128 0 33.18967 0.95533885 -68.219136 0 + 119 -34.074145 -34.074145 0 33.19413 0.95429078 -68.222566 0 + 120 -34.074149 -34.074149 0 33.194804 0.95433597 -68.22329 0 + 121 -34.074153 -34.074153 0 33.197124 0.95449744 -68.225774 0 + 122 -34.074166 -34.074166 0 33.210637 0.95553132 -68.240334 0 + 123 -34.074182 -34.074182 0 33.226014 0.95678269 -68.256979 0 + 124 -34.074192 -34.074192 0 33.234123 0.95777272 -68.266088 0 + 125 -34.074194 -34.074194 0 33.233924 0.9580074 -68.266125 0 + 126 -34.07421 -34.07421 0 33.219003 0.9603999 -68.253613 0 + 127 -34.07422 -34.07422 0 33.207518 0.96197672 -68.243715 0 + 128 -34.074231 -34.074231 0 33.195256 0.96354558 -68.233033 0 + 129 -34.074232 -34.074232 0 33.193819 0.96362281 -68.231674 0 + 130 -34.074234 -34.074234 0 33.191774 0.9636596 -68.229667 0 + 131 -34.074251 -34.074251 0 33.170449 0.96310426 -68.207804 0 + 132 -34.074277 -34.074277 0 33.140986 0.9622239 -68.177487 0 + 133 -34.074317 -34.074317 0 33.101541 0.96057994 -68.136438 0 + 134 -34.074325 -34.074325 0 33.097683 0.96016481 -68.132173 0 + 135 -34.074368 -34.074368 0 33.098306 0.95738177 -68.130056 0 + 136 -34.074422 -34.074422 0 33.108778 0.95364176 -68.136842 0 + 137 -34.074471 -34.074471 0 33.120257 0.95016326 -68.144891 0 + 138 -34.074475 -34.074475 0 33.12188 0.94984556 -68.1462 0 + 139 -34.074476 -34.074476 0 33.122488 0.94975499 -68.146719 0 + 140 -34.074476 -34.074476 0 33.12449 0.94956383 -68.148529 0 + 141 -34.074476 -34.074476 0 33.12666 0.94935187 -68.150488 0 + 142 -34.074478 -34.074478 0 33.133504 0.9486429 -68.156625 0 + 143 -34.074478 -34.074478 0 33.134115 0.94853673 -68.157129 0 + 144 -34.074478 -34.074478 0 33.134686 0.94832222 -68.157486 0 + 145 -34.074479 -34.074479 0 33.134096 0.94793108 -68.156506 0 + 146 -34.074479 -34.074479 0 33.133094 0.94746292 -68.155036 0 + 147 -34.074479 -34.074479 0 33.132254 0.94727094 -68.154004 0 + 148 -34.074479 -34.074479 0 33.132028 0.94724282 -68.15375 0 + 149 -34.074479 -34.074479 0 33.131364 0.94722917 -68.153073 0 + 150 -34.074479 -34.074479 0 33.130949 0.94722721 -68.152655 0 + 151 -34.074479 -34.074479 0 33.129732 0.9472299 -68.151441 0 + 152 -34.074479 -34.074479 0 33.129569 0.94723275 -68.151281 0 + 153 -34.074479 -34.074479 0 33.129408 0.94723807 -68.151125 0 + 154 -34.074479 -34.074479 0 33.129157 0.94726107 -68.150898 0 + 155 -34.074479 -34.074479 0 33.128703 0.94730741 -68.15049 0 + 156 -34.074479 -34.074479 0 33.127902 0.94740845 -68.14979 0 + 157 -34.074479 -34.074479 0 33.127812 0.94742678 -68.149718 0 + 158 -34.074479 -34.074479 0 33.12792 0.94746878 -68.149868 0 + 159 -34.074479 -34.074479 0 33.128117 0.94749958 -68.150096 0 + 160 -34.07448 -34.07448 0 33.128767 0.94757568 -68.150822 0 + 161 -34.07448 -34.07448 0 33.128846 0.94758137 -68.150907 0 + 162 -34.07448 -34.07448 0 33.128944 0.94758432 -68.151007 0 + 163 -34.07448 -34.07448 0 33.128981 0.94758376 -68.151044 0 + 164 -34.07448 -34.07448 0 33.129029 0.94758229 -68.151091 0 + 165 -34.07448 -34.07448 0 33.129079 0.94757899 -68.151137 0 + 166 -34.07448 -34.07448 0 33.129115 0.94757337 -68.151168 0 + 167 -34.07448 -34.07448 0 33.129227 0.94754957 -68.151256 0 + 168 -34.07448 -34.07448 0 33.129724 0.94743314 -68.151637 0 + 169 -34.07448 -34.07448 0 33.13009 0.94733787 -68.151908 0 + 170 -34.07448 -34.07448 0 33.130125 0.94731557 -68.15192 0 + 171 -34.07448 -34.07448 0 33.129911 0.947294 -68.151685 0 + 172 -34.07448 -34.07448 0 33.129588 0.94727097 -68.151339 0 + 173 -34.07448 -34.07448 0 33.128722 0.9472194 -68.150421 0 + 174 -34.07448 -34.07448 0 33.128604 0.94721304 -68.150296 0 + 175 -34.07448 -34.07448 0 33.128479 0.94720713 -68.150166 0 + 176 -34.07448 -34.07448 0 33.127841 0.9471779 -68.149498 0 + 177 -34.07448 -34.07448 0 33.127818 0.94717585 -68.149473 0 + 178 -34.07448 -34.07448 0 33.127906 0.94717299 -68.149559 0 + 179 -34.07448 -34.07448 0 33.128112 0.94717009 -68.149762 0 + 180 -34.07448 -34.07448 0 33.12813 0.94717092 -68.149781 0 + 181 -34.07448 -34.07448 0 33.128161 0.94717239 -68.149813 0 + 182 -34.07448 -34.07448 0 33.128196 0.94717422 -68.14985 0 + 183 -34.07448 -34.07448 0 33.12836 0.94718303 -68.150022 0 + 184 -34.07448 -34.07448 0 33.128552 0.94719368 -68.150225 0 + 185 -34.07448 -34.07448 0 33.12856 0.94719498 -68.150234 0 + 186 -34.07448 -34.07448 0 33.128563 0.94719672 -68.150239 0 + 187 -34.07448 -34.07448 0 33.128561 0.94719745 -68.150238 0 + 188 -34.07448 -34.07448 0 33.128556 0.94719905 -68.150235 0 + 189 -34.07448 -34.07448 0 33.128547 0.94720196 -68.150229 0 + 190 -34.07448 -34.07448 0 33.128531 0.9472074 -68.150218 0 + 191 -34.07448 -34.07448 0 33.12831 0.94728407 -68.150074 0 + 192 -34.07448 -34.07448 0 33.12821 0.94732028 -68.15001 0 + 193 -34.07448 -34.07448 0 33.128205 0.94732241 -68.150008 0 + 194 -34.07448 -34.07448 0 33.128208 0.94732211 -68.150009 0 + 195 -34.07448 -34.07448 0 33.128636 0.9472638 -68.15038 0 + 196 -34.07448 -34.07448 0 33.12874 0.94724767 -68.150467 0 + 197 -34.07448 -34.07448 0 33.128778 0.94723913 -68.150497 0 + 198 -34.07448 -34.07448 0 33.128803 0.94722707 -68.15051 0 + 199 -34.07448 -34.07448 0 33.128816 0.94721773 -68.150513 0 + 200 -34.07448 -34.07448 0 33.128791 0.94721833 -68.150489 0 + 201 -34.07448 -34.07448 0 33.128744 0.94721946 -68.150443 0 + 202 -34.07448 -34.07448 0 33.128719 0.94722007 -68.150419 0 + 203 -34.07448 -34.07448 0 33.128706 0.94722042 -68.150406 0 + 204 -34.07448 -34.07448 0 33.128518 0.94722521 -68.150223 0 + 205 -34.07448 -34.07448 0 33.12815 0.94723474 -68.149865 0 + 206 -34.07448 -34.07448 0 33.128133 0.94723544 -68.149849 0 + 207 -34.07448 -34.07448 0 33.128132 0.9472358 -68.149847 0 + 208 -34.07448 -34.07448 0 33.128136 0.94723589 -68.149852 0 + 209 -34.07448 -34.07448 0 33.128141 0.94723599 -68.149857 0 + 210 -34.07448 -34.07448 0 33.128146 0.9472361 -68.149861 0 + 211 -34.07448 -34.07448 0 33.128151 0.94723623 -68.149867 0 + 212 -34.07448 -34.07448 0 33.128153 0.9472363 -68.149869 0 + 213 -34.07448 -34.07448 0 33.128158 0.94723643 -68.149874 0 + 214 -34.07448 -34.07448 0 33.12816 0.94723652 -68.149877 0 + 215 -34.07448 -34.07448 0 33.128164 0.94723664 -68.14988 0 + 216 -34.07448 -34.07448 0 33.128168 0.94723677 -68.149884 0 + 217 -34.07448 -34.07448 0 33.128169 0.94723683 -68.149885 0 + 218 -34.07448 -34.07448 0 33.128553 0.94725328 -68.150285 0 + 219 -34.07448 -34.07448 0 33.128594 0.94725645 -68.150331 0 + 220 -34.07448 -34.07448 0 33.128599 0.94725907 -68.150338 0 + 221 -34.07448 -34.07448 0 33.128536 0.94726178 -68.150277 0 + 222 -34.07448 -34.07448 0 33.128443 0.94726496 -68.150188 0 + 223 -34.07448 -34.07448 0 33.128369 0.94726667 -68.150115 0 + 224 -34.07448 -34.07448 0 33.128274 0.94726793 -68.150022 0 + 225 -34.07448 -34.07448 0 33.128235 0.94726796 -68.149983 0 + 226 -34.07448 -34.07448 0 33.128211 0.9472678 -68.149959 0 + 227 -34.07448 -34.07448 0 33.128206 0.9472676 -68.149953 0 + 228 -34.07448 -34.07448 0 33.128196 0.94726725 -68.149943 0 + 229 -34.07448 -34.07448 0 33.128186 0.94726689 -68.149932 0 + 230 -34.07448 -34.07448 0 33.128182 0.94726675 -68.149929 0 + 231 -34.07448 -34.07448 0 33.128165 0.94726605 -68.14991 0 + 232 -34.07448 -34.07448 0 33.128157 0.94726575 -68.149903 0 + 233 -34.07448 -34.07448 0 33.128153 0.94726554 -68.149898 0 + 234 -34.07448 -34.07448 0 33.128148 0.94726527 -68.149893 0 + 235 -34.07448 -34.07448 0 33.128141 0.94726492 -68.149885 0 + 236 -34.07448 -34.07448 0 33.128129 0.9472643 -68.149873 0 + 237 -34.07448 -34.07448 0 33.128114 0.94726347 -68.149857 0 + 238 -34.07448 -34.07448 0 33.128109 0.94726317 -68.149852 0 + 239 -34.07448 -34.07448 0 33.128103 0.94726274 -68.149845 0 + 240 -34.07448 -34.07448 0 33.128099 0.94726244 -68.149841 0 + 241 -34.07448 -34.07448 0 33.128094 0.94726202 -68.149835 0 + 242 -34.07448 -34.07448 0 33.128087 0.94726151 -68.149828 0 + 243 -34.07448 -34.07448 0 33.128085 0.94726131 -68.149826 0 + 244 -34.07448 -34.07448 0 33.128045 0.94725769 -68.149782 0 + 245 -34.07448 -34.07448 0 33.127995 0.94725295 -68.149728 0 + 246 -34.07448 -34.07448 0 33.127953 0.94724873 -68.149682 0 + 247 -34.07448 -34.07448 0 33.127943 0.94724725 -68.14967 0 + 248 -34.07448 -34.07448 0 33.127938 0.94724591 -68.149664 0 + 249 -34.07448 -34.07448 0 33.127939 0.9472453 -68.149664 0 + 250 -34.07448 -34.07448 0 33.127941 0.94724509 -68.149665 0 + 251 -34.07448 -34.07448 0 33.127941 0.94724504 -68.149666 0 + 252 -34.07448 -34.07448 0 33.127945 0.94724461 -68.149669 0 + 253 -34.07448 -34.07448 0 33.127947 0.94724443 -68.149671 0 + 254 -34.07448 -34.07448 0 33.127949 0.94724416 -68.149673 0 + 255 -34.07448 -34.07448 0 33.127952 0.94724387 -68.149675 0 + 256 -34.07448 -34.07448 0 33.127954 0.94724362 -68.149677 0 + 257 -34.07448 -34.07448 0 33.127955 0.94724341 -68.149678 0 + 258 -34.07448 -34.07448 0 33.127956 0.94724326 -68.149679 0 + 259 -34.07448 -34.07448 0 33.127971 0.94724122 -68.149692 0 + 260 -34.07448 -34.07448 0 33.127982 0.94723969 -68.149702 0 + 261 -34.07448 -34.07448 0 33.127983 0.94723956 -68.149702 0 + 262 -34.07448 -34.07448 0 33.128007 0.94723113 -68.149718 0 + 263 -34.07448 -34.07448 0 33.128275 0.94713641 -68.149891 0 + 264 -34.07448 -34.07448 0 33.128269 0.94712915 -68.149878 0 + 265 -34.07448 -34.07448 0 33.128247 0.94712722 -68.149854 0 + 266 -34.07448 -34.07448 0 33.128232 0.94712791 -68.14984 0 + 267 -34.07448 -34.07448 0 33.128212 0.9471289 -68.14982 0 + 268 -34.07448 -34.07448 0 33.128202 0.94712935 -68.149812 0 + 269 -34.07448 -34.07448 0 33.128136 0.94713272 -68.149748 0 + 270 -34.07448 -34.07448 0 33.128121 0.94713352 -68.149734 0 + 271 -34.07448 -34.07448 0 33.128111 0.94713411 -68.149725 0 + 272 -34.07448 -34.07448 0 33.128102 0.94713465 -68.149717 0 + 273 -34.07448 -34.07448 0 33.128096 0.94713503 -68.149711 0 + 274 -34.07448 -34.07448 0 33.128045 0.94713828 -68.149663 0 + 275 -34.07448 -34.07448 0 33.128032 0.9471392 -68.149651 0 + 276 -34.07448 -34.07448 0 33.128025 0.94713971 -68.149645 0 + 277 -34.07448 -34.07448 0 33.128017 0.94714036 -68.149637 0 + 278 -34.07448 -34.07448 0 33.128013 0.94714067 -68.149634 0 + 279 -34.07448 -34.07448 0 33.127996 0.94714209 -68.149618 0 + 280 -34.07448 -34.07448 0 33.127992 0.9471425 -68.149614 0 + 281 -34.07448 -34.07448 0 33.127983 0.94714331 -68.149606 0 + 282 -34.07448 -34.07448 0 33.127974 0.94714419 -68.149598 0 + 283 -34.07448 -34.07448 0 33.127971 0.94714445 -68.149596 0 + 284 -34.07448 -34.07448 0 33.127875 0.94715453 -68.149509 0 + 285 -34.07448 -34.07448 0 33.127691 0.94717429 -68.149345 0 + 286 -34.07448 -34.07448 0 33.127672 0.94717672 -68.149328 0 + 287 -34.07448 -34.07448 0 33.127676 0.9471767 -68.149333 0 + 288 -34.07448 -34.07448 0 33.127683 0.94717669 -68.149339 0 + 289 -34.07448 -34.07448 0 33.127689 0.94717667 -68.149346 0 + 290 -34.07448 -34.07448 0 33.127695 0.94717665 -68.149352 0 + 291 -34.07448 -34.07448 0 33.127702 0.94717664 -68.149358 0 + 292 -34.07448 -34.07448 0 33.127706 0.94717663 -68.149362 0 + 293 -34.07448 -34.07448 0 33.127711 0.94717663 -68.149367 0 + 294 -34.07448 -34.07448 0 33.127717 0.94717662 -68.149373 0 + 295 -34.07448 -34.07448 0 33.127723 0.94717662 -68.149379 0 + 296 -34.07448 -34.07448 0 33.12773 0.94717662 -68.149387 0 + 297 -34.07448 -34.07448 0 33.127733 0.94717662 -68.149389 0 + 298 -34.07448 -34.07448 0 33.127762 0.94717667 -68.149419 0 + 299 -34.07448 -34.07448 0 33.127773 0.94717669 -68.149429 0 + 300 -34.07448 -34.07448 0 33.127774 0.94717671 -68.14943 0 + 301 -34.07448 -34.07448 0 33.127775 0.94717672 -68.149432 0 + 302 -34.07448 -34.07448 0 33.127783 0.94717681 -68.149439 0 + 303 -34.07448 -34.07448 0 33.127788 0.94717687 -68.149445 0 + 304 -34.07448 -34.07448 0 33.127795 0.94717696 -68.149452 0 + 305 -34.07448 -34.07448 0 33.127796 0.94717698 -68.149453 0 + 306 -34.07448 -34.07448 0 33.1279 0.94717977 -68.14956 0 + 307 -34.07448 -34.07448 0 33.127936 0.94718093 -68.149596 0 + 308 -34.07448 -34.07448 0 33.127944 0.94718125 -68.149605 0 + 309 -34.07448 -34.07448 0 33.12794 0.94718139 -68.149601 0 + 310 -34.07448 -34.07448 0 33.127933 0.94718144 -68.149595 0 + 311 -34.07448 -34.07448 0 33.127925 0.9471815 -68.149586 0 + 312 -34.07448 -34.07448 0 33.127921 0.94718152 -68.149583 0 + 313 -34.07448 -34.07448 0 33.127914 0.94718155 -68.149575 0 + 314 -34.07448 -34.07448 0 33.127909 0.94718156 -68.149571 0 + 315 -34.07448 -34.07448 0 33.127905 0.94718158 -68.149566 0 + 316 -34.07448 -34.07448 0 33.127897 0.9471816 -68.149559 0 + 317 -34.07448 -34.07448 0 33.127891 0.94718162 -68.149552 0 + 318 -34.07448 -34.07448 0 33.127887 0.94718162 -68.149548 0 + 319 -34.07448 -34.07448 0 33.127881 0.94718163 -68.149543 0 + 320 -34.07448 -34.07448 0 33.127878 0.94718163 -68.149539 0 + 321 -34.07448 -34.07448 0 33.127874 0.94718163 -68.149535 0 + 322 -34.07448 -34.07448 0 33.127867 0.94718163 -68.149529 0 + 323 -34.07448 -34.07448 0 33.127865 0.94718163 -68.149527 0 + 324 -34.07448 -34.07448 0 33.127861 0.94718162 -68.149522 0 + 325 -34.07448 -34.07448 0 33.127856 0.94718161 -68.149517 0 + 326 -34.07448 -34.07448 0 33.127852 0.9471816 -68.149514 0 + 327 -34.07448 -34.07448 0 33.127848 0.94718158 -68.149509 0 + 328 -34.07448 -34.07448 0 33.127842 0.94718155 -68.149503 0 + 329 -34.07448 -34.07448 0 33.12784 0.94718154 -68.149501 0 + 330 -34.07448 -34.07448 0 33.12772 0.94718065 -68.14938 0 + 331 -34.07448 -34.07448 0 33.127676 0.94718023 -68.149336 0 + 332 -34.07448 -34.07448 0 33.127679 0.94718015 -68.149339 0 + 333 -34.07448 -34.07448 0 33.127683 0.94718004 -68.149343 0 + 334 -34.07448 -34.07448 0 33.127684 0.94718002 -68.149344 0 + 335 -34.07448 -34.07448 0 33.127692 0.94717981 -68.149351 0 + 336 -34.07448 -34.07448 0 33.127695 0.94717972 -68.149354 0 + 337 -34.07448 -34.07448 0 33.1277 0.94717956 -68.149359 0 + 338 -34.07448 -34.07448 0 33.127702 0.94717948 -68.149362 0 + 339 -34.07448 -34.07448 0 33.127705 0.94717939 -68.149365 0 + 340 -34.07448 -34.07448 0 33.12771 0.94717924 -68.149369 0 + 341 -34.07448 -34.07448 0 33.127712 0.94717919 -68.14937 0 + 342 -34.07448 -34.07448 0 33.127917 0.9471719 -68.149569 0 + 343 -34.07448 -34.07448 0 33.127926 0.94717139 -68.149577 0 + 344 -34.07448 -34.07448 0 33.127918 0.94717146 -68.149569 0 + 345 -34.07448 -34.07448 0 33.127907 0.94717155 -68.149558 0 + 346 -34.07448 -34.07448 0 33.127906 0.94717156 -68.149558 0 + 347 -34.07448 -34.07448 0 33.127902 0.9471716 -68.149553 0 + 348 -34.07448 -34.07448 0 33.127888 0.94717172 -68.14954 0 + 349 -34.07448 -34.07448 0 33.127873 0.94717185 -68.149525 0 + 350 -34.07448 -34.07448 0 33.127866 0.94717191 -68.149518 0 + 351 -34.07448 -34.07448 0 33.127857 0.94717199 -68.149508 0 + 352 -34.07448 -34.07448 0 33.127854 0.94717201 -68.149505 0 + 353 -34.07448 -34.07448 0 33.127837 0.94717211 -68.149489 0 + 354 -34.07448 -34.07448 0 33.127824 0.9471722 -68.149476 0 + 355 -34.07448 -34.07448 0 33.12782 0.94717222 -68.149471 0 + 356 -34.07448 -34.07448 0 33.127814 0.94717225 -68.149466 0 + 357 -34.07448 -34.07448 0 33.127812 0.94717225 -68.149464 0 + 358 -34.07448 -34.07448 0 33.127804 0.94717227 -68.149456 0 + 359 -34.07448 -34.07448 0 33.127798 0.94717228 -68.14945 0 + 360 -34.07448 -34.07448 0 33.127796 0.94717228 -68.149448 0 + 361 -34.07448 -34.07448 0 33.127794 0.94717228 -68.149446 0 + 362 -34.07448 -34.07448 0 33.12779 0.94717227 -68.149442 0 + 363 -34.07448 -34.07448 0 33.127787 0.94717227 -68.149439 0 + 364 -34.07448 -34.07448 0 33.127786 0.94717226 -68.149438 0 + 365 -34.07448 -34.07448 0 33.127783 0.94717225 -68.149435 0 + 366 -34.07448 -34.07448 0 33.127781 0.94717225 -68.149433 0 + 367 -34.07448 -34.07448 0 33.127779 0.94717223 -68.149431 0 + 368 -34.07448 -34.07448 0 33.127776 0.94717222 -68.149428 0 + 369 -34.07448 -34.07448 0 33.127772 0.94717219 -68.149424 0 + 370 -34.07448 -34.07448 0 33.127771 0.94717218 -68.149423 0 + 371 -34.07448 -34.07448 0 33.127765 0.94717212 -68.149417 0 + 372 -34.07448 -34.07448 0 33.127764 0.9471721 -68.149416 0 + 373 -34.07448 -34.07448 0 33.127762 0.94717207 -68.149414 0 + 374 -34.07448 -34.07448 0 33.12776 0.94717203 -68.149412 0 + 375 -34.07448 -34.07448 0 33.127757 0.94717198 -68.149408 0 + 376 -34.07448 -34.07448 0 33.127756 0.94717196 -68.149408 0 + 377 -34.07448 -34.07448 0 33.127754 0.94717191 -68.149406 0 + 378 -34.07448 -34.07448 0 33.127752 0.94717187 -68.149404 0 + 379 -34.07448 -34.07448 0 33.12775 0.94717181 -68.149402 0 + 380 -34.07448 -34.07448 0 33.127747 0.94717173 -68.149399 0 + 381 -34.07448 -34.07448 0 33.127747 0.94717171 -68.149398 0 + 382 -34.07448 -34.07448 0 33.127738 0.94717131 -68.149389 0 + 383 -34.07448 -34.07448 0 33.127736 0.94717119 -68.149387 0 + 384 -34.07448 -34.07448 0 33.127735 0.9471711 -68.149385 0 + 385 -34.07448 -34.07448 0 33.127734 0.94717108 -68.149385 0 + 386 -34.07448 -34.07448 0 33.127717 0.94716859 -68.149366 0 + 387 -34.07448 -34.07448 0 33.127707 0.94716705 -68.149354 0 + 388 -34.07448 -34.07448 0 33.127707 0.94716703 -68.149354 0 + 389 -34.07448 -34.07448 0 33.127707 0.947167 -68.149354 0 + 390 -34.07448 -34.07448 0 33.127707 0.94716697 -68.149354 0 + 391 -34.07448 -34.07448 0 33.127707 0.94716694 -68.149354 0 + 392 -34.07448 -34.07448 0 33.127707 0.94716689 -68.149353 0 + 393 -34.07448 -34.07448 0 33.127707 0.94716688 -68.149353 0 + 394 -34.07448 -34.07448 0 33.127707 0.94716684 -68.149353 0 + 395 -34.07448 -34.07448 0 33.127707 0.94716681 -68.149353 0 + 396 -34.07448 -34.07448 0 33.127707 0.94716678 -68.149353 0 + 397 -34.07448 -34.07448 0 33.127707 0.94716675 -68.149353 0 + 398 -34.07448 -34.07448 0 33.127707 0.94716669 -68.149353 0 + 399 -34.07448 -34.07448 0 33.127707 0.94716665 -68.149353 0 + 400 -34.07448 -34.07448 0 33.127707 0.94716663 -68.149353 0 + 401 -34.07448 -34.07448 0 33.127707 0.94716661 -68.149353 0 + 402 -34.07448 -34.07448 0 33.127707 0.94716658 -68.149353 0 + 403 -34.07448 -34.07448 0 33.127706 0.94716654 -68.149353 0 + 404 -34.07448 -34.07448 0 33.127706 0.94716649 -68.149352 0 + 405 -34.07448 -34.07448 0 33.127706 0.94716644 -68.149352 0 + 406 -34.07448 -34.07448 0 33.127706 0.94716638 -68.149352 0 + 407 -34.07448 -34.07448 0 33.127706 0.94716627 -68.149352 0 + 408 -34.07448 -34.07448 0 33.127706 0.94716626 -68.149352 0 + 409 -34.07448 -34.07448 0 33.127632 0.94714472 -68.149257 0 + 410 -34.07448 -34.07448 0 33.127595 0.94713455 -68.14921 0 + 411 -34.07448 -34.07448 0 33.127577 0.9471306 -68.149187 0 + 412 -34.07448 -34.07448 0 33.127575 0.94713007 -68.149184 0 + 413 -34.07448 -34.07448 0 33.127569 0.94712962 -68.149178 0 + 414 -34.07448 -34.07448 0 33.127566 0.94712956 -68.149175 0 + 415 -34.07448 -34.07448 0 33.127564 0.94712957 -68.149173 0 + 416 -34.07448 -34.07448 0 33.127562 0.94712959 -68.149171 0 + 417 -34.07448 -34.07448 0 33.12756 0.9471296 -68.149169 0 + 418 -34.07448 -34.07448 0 33.127557 0.94712962 -68.149167 0 + 419 -34.07448 -34.07448 0 33.127555 0.94712964 -68.149164 0 + 420 -34.07448 -34.07448 0 33.127553 0.94712965 -68.149162 0 + 421 -34.07448 -34.07448 0 33.127551 0.94712966 -68.149161 0 + 422 -34.07448 -34.07448 0 33.127549 0.94712967 -68.149159 0 + 423 -34.07448 -34.07448 0 33.127548 0.94712968 -68.149157 0 + 424 -34.07448 -34.07448 0 33.127545 0.94712969 -68.149155 0 + 425 -34.07448 -34.07448 0 33.127544 0.9471297 -68.149153 0 + 426 -34.07448 -34.07448 0 33.127543 0.9471297 -68.149152 0 + 427 -34.07448 -34.07448 0 33.127542 0.9471297 -68.149151 0 + 428 -34.07448 -34.07448 0 33.12754 0.94712971 -68.14915 0 + 429 -34.07448 -34.07448 0 33.127539 0.94712971 -68.149148 0 + 430 -34.07448 -34.07448 0 33.127537 0.94712972 -68.149146 0 + 431 -34.07448 -34.07448 0 33.127536 0.94712972 -68.149145 0 + 432 -34.07448 -34.07448 0 33.127535 0.94712972 -68.149144 0 + 433 -34.07448 -34.07448 0 33.127534 0.94712972 -68.149143 0 + 434 -34.07448 -34.07448 0 33.127532 0.94712972 -68.149141 0 + 435 -34.07448 -34.07448 0 33.127529 0.94712972 -68.149139 0 + 436 -34.07448 -34.07448 0 33.127529 0.94712972 -68.149138 0 + 437 -34.07448 -34.07448 0 33.127528 0.94712972 -68.149138 0 + 438 -34.07448 -34.07448 0 33.127528 0.94712972 -68.149137 0 + 439 -34.07448 -34.07448 0 33.127527 0.94712971 -68.149137 0 + 440 -34.07448 -34.07448 0 33.127526 0.94712971 -68.149136 0 + 441 -34.07448 -34.07448 0 33.127525 0.9471297 -68.149134 0 + 442 -34.07448 -34.07448 0 33.127524 0.9471297 -68.149134 0 + 443 -34.07448 -34.07448 0 33.127524 0.9471297 -68.149133 0 + 444 -34.07448 -34.07448 0 33.127523 0.94712969 -68.149133 0 + 445 -34.07448 -34.07448 0 33.127522 0.94712969 -68.149132 0 + 446 -34.07448 -34.07448 0 33.127522 0.94712969 -68.149132 0 + 447 -34.07448 -34.07448 0 33.127522 0.94712968 -68.149131 0 + 448 -34.07448 -34.07448 0 33.127521 0.94712968 -68.149131 0 + 449 -34.07448 -34.07448 0 33.127521 0.94712967 -68.14913 0 + 450 -34.07448 -34.07448 0 33.12752 0.94712967 -68.14913 0 + 451 -34.07448 -34.07448 0 33.12752 0.94712966 -68.149129 0 + 452 -34.07448 -34.07448 0 33.12752 0.94712966 -68.149129 0 + 453 -34.07448 -34.07448 0 33.127519 0.94712965 -68.149128 0 + 454 -34.07448 -34.07448 0 33.127519 0.94712964 -68.149128 0 + 455 -34.07448 -34.07448 0 33.127518 0.94712964 -68.149128 0 + 456 -34.07448 -34.07448 0 33.127518 0.94712963 -68.149127 0 + 457 -34.07448 -34.07448 0 33.127518 0.94712963 -68.149127 0 + 458 -34.07448 -34.07448 0 33.127517 0.94712962 -68.149126 0 + 459 -34.07448 -34.07448 0 33.127517 0.94712961 -68.149126 0 + 460 -34.07448 -34.07448 0 33.127516 0.9471296 -68.149126 0 + 461 -34.07448 -34.07448 0 33.127516 0.9471296 -68.149125 0 + 462 -34.07448 -34.07448 0 33.127516 0.94712959 -68.149125 0 + 463 -34.07448 -34.07448 0 33.127515 0.94712958 -68.149125 0 + 464 -34.07448 -34.07448 0 33.127515 0.94712958 -68.149124 0 + 465 -34.07448 -34.07448 0 33.127515 0.94712957 -68.149124 0 + 466 -34.07448 -34.07448 0 33.127514 0.94712956 -68.149124 0 + 467 -34.07448 -34.07448 0 33.127514 0.94712955 -68.149123 0 + 468 -34.07448 -34.07448 0 33.127514 0.94712954 -68.149123 0 + 469 -34.07448 -34.07448 0 33.127513 0.94712953 -68.149123 0 + 470 -34.07448 -34.07448 0 33.127513 0.94712952 -68.149122 0 + 471 -34.07448 -34.07448 0 33.127513 0.9471295 -68.149122 0 + 472 -34.07448 -34.07448 0 33.127512 0.9471295 -68.149121 0 + 473 -34.07448 -34.07448 0 33.127512 0.94712949 -68.149121 0 + 474 -34.07448 -34.07448 0 33.127512 0.94712948 -68.149121 0 + 475 -34.07448 -34.07448 0 33.127512 0.94712947 -68.149121 0 + 476 -34.07448 -34.07448 0 33.127511 0.94712946 -68.14912 0 + 477 -34.07448 -34.07448 0 33.127511 0.94712944 -68.14912 0 + 478 -34.07448 -34.07448 0 33.127511 0.94712944 -68.14912 0 + 479 -34.07448 -34.07448 0 33.127511 0.94712943 -68.14912 0 + 480 -34.07448 -34.07448 0 33.12751 0.94712942 -68.149119 0 + 481 -34.07448 -34.07448 0 33.12751 0.94712941 -68.149119 0 + 482 -34.07448 -34.07448 0 33.12751 0.94712939 -68.149119 0 + 483 -34.07448 -34.07448 0 33.12751 0.94712938 -68.149119 0 + 484 -34.07448 -34.07448 0 33.127509 0.94712936 -68.149118 0 + 485 -34.07448 -34.07448 0 33.127509 0.94712935 -68.149118 0 + 486 -34.07448 -34.07448 0 33.127509 0.94712935 -68.149118 0 + 487 -34.07448 -34.07448 0 33.127509 0.94712934 -68.149118 0 + 488 -34.07448 -34.07448 0 33.127509 0.94712932 -68.149118 0 + 489 -34.07448 -34.07448 0 33.127508 0.9471293 -68.149117 0 + 490 -34.07448 -34.07448 0 33.127508 0.94712929 -68.149117 0 + 491 -34.07448 -34.07448 0 33.127508 0.94712929 -68.149117 0 + 492 -34.07448 -34.07448 0 33.127508 0.94712928 -68.149117 0 + 493 -34.07448 -34.07448 0 33.127508 0.94712927 -68.149117 0 + 494 -34.07448 -34.07448 0 33.127508 0.94712926 -68.149117 0 + 495 -34.07448 -34.07448 0 33.127507 0.94712924 -68.149116 0 + 496 -34.07448 -34.07448 0 33.127507 0.94712923 -68.149116 0 + 497 -34.07448 -34.07448 0 33.127507 0.94712921 -68.149116 0 + 498 -34.07448 -34.07448 0 33.127507 0.9471292 -68.149116 0 + 499 -34.07448 -34.07448 0 33.127507 0.94712919 -68.149116 0 + 500 -34.07448 -34.07448 0 33.127507 0.94712918 -68.149115 0 + 501 -34.07448 -34.07448 0 33.127506 0.94712916 -68.149115 0 + 502 -34.07448 -34.07448 0 33.127506 0.94712914 -68.149115 0 + 503 -34.07448 -34.07448 0 33.127506 0.94712913 -68.149115 0 + 504 -34.07448 -34.07448 0 33.127506 0.94712912 -68.149115 0 + 505 -34.07448 -34.07448 0 33.127506 0.94712911 -68.149115 0 + 506 -34.07448 -34.07448 0 33.127506 0.9471291 -68.149114 0 + 507 -34.07448 -34.07448 0 33.127506 0.94712909 -68.149114 0 + 508 -34.07448 -34.07448 0 33.127505 0.94712907 -68.149114 0 + 509 -34.07448 -34.07448 0 33.127505 0.94712906 -68.149114 0 + 510 -34.07448 -34.07448 0 33.127505 0.94712905 -68.149114 0 + 511 -34.07448 -34.07448 0 33.127505 0.94712903 -68.149114 0 + 512 -34.07448 -34.07448 0 33.127505 0.94712902 -68.149114 0 + 513 -34.07448 -34.07448 0 33.127505 0.947129 -68.149113 0 + 514 -34.07448 -34.07448 0 33.127505 0.94712899 -68.149113 0 + 515 -34.07448 -34.07448 0 33.127505 0.94712898 -68.149113 0 + 516 -34.07448 -34.07448 0 33.127504 0.94712897 -68.149113 0 + 517 -34.07448 -34.07448 0 33.127504 0.94712896 -68.149113 0 + 518 -34.07448 -34.07448 0 33.127504 0.94712895 -68.149113 0 + 519 -34.07448 -34.07448 0 33.127504 0.94712893 -68.149113 0 + 520 -34.07448 -34.07448 0 33.127504 0.94712891 -68.149113 0 + 521 -34.07448 -34.07448 0 33.127504 0.9471289 -68.149112 0 + 522 -34.07448 -34.07448 0 33.127504 0.94712888 -68.149112 0 + 523 -34.07448 -34.07448 0 33.127504 0.94712887 -68.149112 0 + 524 -34.07448 -34.07448 0 33.127504 0.94712885 -68.149112 0 + 525 -34.07448 -34.07448 0 33.127503 0.94712884 -68.149112 0 + 526 -34.07448 -34.07448 0 33.127503 0.94712883 -68.149112 0 + 527 -34.07448 -34.07448 0 33.127503 0.94712881 -68.149112 0 + 528 -34.07448 -34.07448 0 33.127503 0.9471288 -68.149112 0 + 529 -34.07448 -34.07448 0 33.127503 0.94712879 -68.149112 0 + 530 -34.07448 -34.07448 0 33.127503 0.94712878 -68.149111 0 + 531 -34.07448 -34.07448 0 33.127503 0.94712877 -68.149111 0 + 532 -34.07448 -34.07448 0 33.127503 0.94712876 -68.149111 0 + 533 -34.07448 -34.07448 0 33.127503 0.94712874 -68.149111 0 + 534 -34.07448 -34.07448 0 33.127503 0.94712872 -68.149111 0 + 535 -34.07448 -34.07448 0 33.127502 0.94712871 -68.149111 0 + 536 -34.07448 -34.07448 0 33.127502 0.9471287 -68.149111 0 + 537 -34.07448 -34.07448 0 33.127502 0.94712869 -68.149111 0 + 538 -34.07448 -34.07448 0 33.127502 0.94712868 -68.149111 0 + 539 -34.07448 -34.07448 0 33.127502 0.94712867 -68.149111 0 + 540 -34.07448 -34.07448 0 33.127502 0.94712866 -68.149111 0 + 541 -34.07448 -34.07448 0 33.127502 0.94712865 -68.14911 0 + 542 -34.07448 -34.07448 0 33.127502 0.94712864 -68.14911 0 + 543 -34.07448 -34.07448 0 33.127502 0.94712863 -68.14911 0 + 544 -34.07448 -34.07448 0 33.127502 0.94712861 -68.14911 0 + 545 -34.07448 -34.07448 0 33.127502 0.9471286 -68.14911 0 + 546 -34.07448 -34.07448 0 33.127502 0.94712858 -68.14911 0 + 547 -34.07448 -34.07448 0 33.127502 0.94712857 -68.14911 0 + 548 -34.07448 -34.07448 0 33.127501 0.94712856 -68.14911 0 + 549 -34.07448 -34.07448 0 33.127501 0.94712855 -68.14911 0 + 550 -34.07448 -34.07448 0 33.127501 0.94712854 -68.14911 0 + 551 -34.07448 -34.07448 0 33.127501 0.94712852 -68.149109 0 + 552 -34.07448 -34.07448 0 33.127501 0.94712851 -68.149109 0 + 553 -34.07448 -34.07448 0 33.127501 0.9471285 -68.149109 0 + 554 -34.07448 -34.07448 0 33.127501 0.94712849 -68.149109 0 + 555 -34.07448 -34.07448 0 33.127501 0.94712848 -68.149109 0 + 556 -34.07448 -34.07448 0 33.127501 0.94712846 -68.149109 0 + 557 -34.07448 -34.07448 0 33.127501 0.94712844 -68.149109 0 + 558 -34.07448 -34.07448 0 33.127501 0.94712843 -68.149109 0 + 559 -34.07448 -34.07448 0 33.127501 0.94712842 -68.149109 0 + 560 -34.07448 -34.07448 0 33.127501 0.94712841 -68.149109 0 + 561 -34.07448 -34.07448 0 33.1275 0.94712839 -68.149109 0 + 562 -34.07448 -34.07448 0 33.1275 0.94712838 -68.149108 0 + 563 -34.07448 -34.07448 0 33.1275 0.94712836 -68.149108 0 + 564 -34.07448 -34.07448 0 33.1275 0.94712835 -68.149108 0 + 565 -34.07448 -34.07448 0 33.1275 0.94712833 -68.149108 0 + 566 -34.07448 -34.07448 0 33.1275 0.94712832 -68.149108 0 + 567 -34.07448 -34.07448 0 33.1275 0.9471283 -68.149108 0 + 568 -34.07448 -34.07448 0 33.1275 0.94712829 -68.149108 0 + 569 -34.07448 -34.07448 0 33.1275 0.94712828 -68.149108 0 + 570 -34.07448 -34.07448 0 33.1275 0.94712826 -68.149108 0 + 571 -34.07448 -34.07448 0 33.1275 0.94712825 -68.149108 0 + 572 -34.07448 -34.07448 0 33.1275 0.94712824 -68.149108 0 + 573 -34.07448 -34.07448 0 33.1275 0.94712823 -68.149107 0 + 574 -34.07448 -34.07448 0 33.127499 0.94712822 -68.149107 0 + 575 -34.07448 -34.07448 0 33.127499 0.9471282 -68.149107 0 + 576 -34.07448 -34.07448 0 33.127499 0.94712818 -68.149107 0 + 577 -34.07448 -34.07448 0 33.127499 0.94712816 -68.149107 0 + 578 -34.07448 -34.07448 0 33.127499 0.94712815 -68.149107 0 + 579 -34.07448 -34.07448 0 33.127499 0.94712814 -68.149107 0 + 580 -34.07448 -34.07448 0 33.127499 0.94712813 -68.149107 0 + 581 -34.07448 -34.07448 0 33.127499 0.94712811 -68.149107 0 + 582 -34.07448 -34.07448 0 33.127499 0.94712808 -68.149106 0 + 583 -34.07448 -34.07448 0 33.127499 0.94712807 -68.149106 0 + 584 -34.07448 -34.07448 0 33.127499 0.94712805 -68.149106 0 + 585 -34.07448 -34.07448 0 33.127498 0.94712804 -68.149106 0 + 586 -34.07448 -34.07448 0 33.127498 0.94712803 -68.149106 0 + 587 -34.07448 -34.07448 0 33.127498 0.94712801 -68.149106 0 + 588 -34.07448 -34.07448 0 33.127498 0.94712799 -68.149106 0 + 589 -34.07448 -34.07448 0 33.127498 0.94712797 -68.149106 0 + 590 -34.07448 -34.07448 0 33.127498 0.94712797 -68.149106 0 + 591 -34.07448 -34.07448 0 33.127498 0.94712795 -68.149106 0 + 592 -34.07448 -34.07448 0 33.127498 0.94712794 -68.149106 0 + 593 -34.07448 -34.07448 0 33.127498 0.94712793 -68.149105 0 + 594 -34.07448 -34.07448 0 33.127498 0.94712792 -68.149105 0 + 595 -34.07448 -34.07448 0 33.127498 0.94712791 -68.149105 0 + 596 -34.07448 -34.07448 0 33.127498 0.94712788 -68.149105 0 + 597 -34.07448 -34.07448 0 33.127498 0.94712787 -68.149105 0 + 598 -34.07448 -34.07448 0 33.127497 0.94712786 -68.149105 0 + 599 -34.07448 -34.07448 0 33.127497 0.94712785 -68.149105 0 + 600 -34.07448 -34.07448 0 33.127497 0.94712784 -68.149105 0 + 601 -34.07448 -34.07448 0 33.127497 0.94712783 -68.149105 0 + 602 -34.07448 -34.07448 0 33.127497 0.94712782 -68.149105 0 + 603 -34.07448 -34.07448 0 33.127497 0.94712779 -68.149105 0 + 604 -34.07448 -34.07448 0 33.127497 0.94712778 -68.149104 0 + 605 -34.07448 -34.07448 0 33.127497 0.94712776 -68.149104 0 + 606 -34.07448 -34.07448 0 33.127497 0.94712775 -68.149104 0 + 607 -34.07448 -34.07448 0 33.127497 0.94712774 -68.149104 0 + 608 -34.07448 -34.07448 0 33.127497 0.94712773 -68.149104 0 + 609 -34.07448 -34.07448 0 33.127497 0.94712772 -68.149104 0 + 610 -34.07448 -34.07448 0 33.127497 0.9471277 -68.149104 0 + 611 -34.07448 -34.07448 0 33.127496 0.94712768 -68.149104 0 + 612 -34.07448 -34.07448 0 33.127496 0.94712767 -68.149104 0 + 613 -34.07448 -34.07448 0 33.127496 0.94712765 -68.149104 0 + 614 -34.07448 -34.07448 0 33.127496 0.94712764 -68.149104 0 + 615 -34.07448 -34.07448 0 33.127496 0.94712763 -68.149103 0 + 616 -34.07448 -34.07448 0 33.127496 0.94712762 -68.149103 0 + 617 -34.07448 -34.07448 0 33.127496 0.94712761 -68.149103 0 + 618 -34.07448 -34.07448 0 33.127496 0.9471276 -68.149103 0 + 619 -34.07448 -34.07448 0 33.127496 0.94712758 -68.149103 0 + 620 -34.07448 -34.07448 0 33.127496 0.94712757 -68.149103 0 + 621 -34.07448 -34.07448 0 33.127496 0.94712755 -68.149103 0 + 622 -34.07448 -34.07448 0 33.127496 0.94712753 -68.149103 0 + 623 -34.07448 -34.07448 0 33.127496 0.94712751 -68.149103 0 + 624 -34.07448 -34.07448 0 33.127495 0.94712749 -68.149103 0 + 625 -34.07448 -34.07448 0 33.127495 0.94712748 -68.149103 0 + 626 -34.07448 -34.07448 0 33.127495 0.94712748 -68.149103 0 + 627 -34.07448 -34.07448 0 33.127495 0.94712747 -68.149102 0 + 628 -34.07448 -34.07448 0 33.127495 0.94712746 -68.149102 0 + 629 -34.07448 -34.07448 0 33.127495 0.94712745 -68.149102 0 + 630 -34.07448 -34.07448 0 33.127495 0.94712743 -68.149102 0 + 631 -34.07448 -34.07448 0 33.127495 0.94712742 -68.149102 0 + 632 -34.07448 -34.07448 0 33.127495 0.9471274 -68.149102 0 + 633 -34.07448 -34.07448 0 33.127495 0.94712739 -68.149102 0 + 634 -34.07448 -34.07448 0 33.127495 0.94712737 -68.149102 0 + 635 -34.07448 -34.07448 0 33.127495 0.94712735 -68.149102 0 + 636 -34.07448 -34.07448 0 33.127495 0.94712733 -68.149102 0 + 637 -34.07448 -34.07448 0 33.127494 0.94712731 -68.149101 0 + 638 -34.07448 -34.07448 0 33.127494 0.9471273 -68.149101 0 + 639 -34.07448 -34.07448 0 33.127494 0.94712729 -68.149101 0 + 640 -34.07448 -34.07448 0 33.127494 0.94712728 -68.149101 0 + 641 -34.07448 -34.07448 0 33.127494 0.94712727 -68.149101 0 + 642 -34.07448 -34.07448 0 33.127494 0.94712726 -68.149101 0 + 643 -34.07448 -34.07448 0 33.127494 0.94712724 -68.149101 0 + 644 -34.07448 -34.07448 0 33.127494 0.94712722 -68.149101 0 + 645 -34.07448 -34.07448 0 33.127494 0.9471272 -68.149101 0 + 646 -34.07448 -34.07448 0 33.127494 0.94712719 -68.149101 0 + 647 -34.07448 -34.07448 0 33.127494 0.94712719 -68.149101 0 + 648 -34.07448 -34.07448 0 33.127494 0.94712718 -68.149101 0 + 649 -34.07448 -34.07448 0 33.127494 0.94712717 -68.149101 0 + 650 -34.07448 -34.07448 0 33.127494 0.94712716 -68.1491 0 + 651 -34.07448 -34.07448 0 33.127494 0.94712715 -68.1491 0 + 652 -34.07448 -34.07448 0 33.127493 0.94712714 -68.1491 0 + 653 -34.07448 -34.07448 0 33.127493 0.94712712 -68.1491 0 + 654 -34.07448 -34.07448 0 33.127493 0.94712711 -68.1491 0 + 655 -34.07448 -34.07448 0 33.127493 0.94712709 -68.1491 0 + 656 -34.07448 -34.07448 0 33.127493 0.94712708 -68.1491 0 + 657 -34.07448 -34.07448 0 33.127493 0.94712706 -68.1491 0 + 658 -34.07448 -34.07448 0 33.127493 0.94712705 -68.1491 0 + 659 -34.07448 -34.07448 0 33.127493 0.94712703 -68.1491 0 + 660 -34.07448 -34.07448 0 33.127493 0.94712702 -68.1491 0 + 661 -34.07448 -34.07448 0 33.127493 0.94712701 -68.149099 0 + 662 -34.07448 -34.07448 0 33.127493 0.947127 -68.149099 0 + 663 -34.07448 -34.07448 0 33.127493 0.94712699 -68.149099 0 + 664 -34.07448 -34.07448 0 33.127493 0.94712697 -68.149099 0 + 665 -34.07448 -34.07448 0 33.127492 0.94712695 -68.149099 0 + 666 -34.07448 -34.07448 0 33.127492 0.94712694 -68.149099 0 + 667 -34.07448 -34.07448 0 33.127492 0.94712693 -68.149099 0 + 668 -34.07448 -34.07448 0 33.127492 0.94712692 -68.149099 0 + 669 -34.07448 -34.07448 0 33.127492 0.94712691 -68.149099 0 + 670 -34.07448 -34.07448 0 33.127492 0.94712689 -68.149099 0 + 671 -34.07448 -34.07448 0 33.127492 0.94712688 -68.149099 0 + 672 -34.07448 -34.07448 0 33.127492 0.94712687 -68.149099 0 + 673 -34.07448 -34.07448 0 33.127492 0.94712685 -68.149098 0 + 674 -34.07448 -34.07448 0 33.127492 0.94712684 -68.149098 0 + 675 -34.07448 -34.07448 0 33.127492 0.94712683 -68.149098 0 + 676 -34.07448 -34.07448 0 33.127492 0.94712682 -68.149098 0 + 677 -34.07448 -34.07448 0 33.127492 0.94712679 -68.149098 0 + 678 -34.07448 -34.07448 0 33.127492 0.94712678 -68.149098 0 + 679 -34.07448 -34.07448 0 33.127491 0.94712677 -68.149098 0 + 680 -34.07448 -34.07448 0 33.127491 0.94712676 -68.149098 0 + 681 -34.07448 -34.07448 0 33.127491 0.94712675 -68.149098 0 + 682 -34.07448 -34.07448 0 33.127491 0.94712674 -68.149098 0 + 683 -34.07448 -34.07448 0 33.127491 0.94712673 -68.149098 0 + 684 -34.07448 -34.07448 0 33.127491 0.94712672 -68.149098 0 + 685 -34.07448 -34.07448 0 33.127491 0.94712671 -68.149098 0 + 686 -34.07448 -34.07448 0 33.127491 0.94712669 -68.149097 0 + 687 -34.07448 -34.07448 0 33.127491 0.94712668 -68.149097 0 + 688 -34.07448 -34.07448 0 33.127491 0.94712666 -68.149097 0 + 689 -34.07448 -34.07448 0 33.127491 0.94712665 -68.149097 0 + 690 -34.07448 -34.07448 0 33.127491 0.94712663 -68.149097 0 + 691 -34.07448 -34.07448 0 33.127491 0.94712662 -68.149097 0 + 692 -34.07448 -34.07448 0 33.127491 0.94712661 -68.149097 0 + 693 -34.07448 -34.07448 0 33.12749 0.94712658 -68.149097 0 + 694 -34.07448 -34.07448 0 33.12749 0.94712657 -68.149097 0 + 695 -34.07448 -34.07448 0 33.127485 0.9471255 -68.14909 0 + 696 -34.07448 -34.07448 0 33.127482 0.94712502 -68.149087 0 + 697 -34.07448 -34.07448 0 33.127481 0.9471249 -68.149086 0 + 698 -34.07448 -34.07448 0 33.127481 0.94712476 -68.149085 0 + 699 -34.07448 -34.07448 0 33.127481 0.94712476 -68.149085 0 + 700 -34.07448 -34.07448 0 33.12748 0.94712475 -68.149085 0 + 701 -34.07448 -34.07448 0 33.12748 0.94712474 -68.149085 0 + 702 -34.07448 -34.07448 0 33.12748 0.94712473 -68.149085 0 + 703 -34.07448 -34.07448 0 33.12748 0.94712471 -68.149085 0 + 704 -34.07448 -34.07448 0 33.12748 0.9471247 -68.149085 0 + 705 -34.07448 -34.07448 0 33.12748 0.94712469 -68.149084 0 + 706 -34.07448 -34.07448 0 33.12748 0.94712467 -68.149084 0 + 707 -34.07448 -34.07448 0 33.12748 0.94712466 -68.149084 0 + 708 -34.07448 -34.07448 0 33.12748 0.94712465 -68.149084 0 + 709 -34.07448 -34.07448 0 33.12748 0.94712463 -68.149084 0 + 710 -34.07448 -34.07448 0 33.12748 0.9471246 -68.149084 0 + 711 -34.07448 -34.07448 0 33.12748 0.94712458 -68.149084 0 + 712 -34.07448 -34.07448 0 33.12748 0.94712458 -68.149084 0 + 713 -34.07448 -34.07448 0 33.127479 0.94712456 -68.149084 0 + 714 -34.07448 -34.07448 0 33.127479 0.94712455 -68.149084 0 + 715 -34.07448 -34.07448 0 33.127479 0.94712444 -68.149083 0 + 716 -34.07448 -34.07448 0 33.127478 0.94712437 -68.149082 0 + 717 -34.07448 -34.07448 0 33.127478 0.94712426 -68.149082 0 + 718 -34.07448 -34.07448 0 33.127477 0.94712409 -68.149081 0 + 719 -34.07448 -34.07448 0 33.127477 0.94712409 -68.149081 0 + 720 -34.07448 -34.07448 0 33.127477 0.94712408 -68.149081 0 + 721 -34.07448 -34.07448 0 33.127477 0.94712407 -68.14908 0 + 722 -34.07448 -34.07448 0 33.127477 0.94712405 -68.14908 0 + 723 -34.07448 -34.07448 0 33.127477 0.94712403 -68.14908 0 + 724 -34.07448 -34.07448 0 33.127476 0.94712401 -68.14908 0 + 725 -34.07448 -34.07448 0 33.127476 0.947124 -68.14908 0 + 726 -34.07448 -34.07448 0 33.127476 0.94712399 -68.14908 0 + 727 -34.07448 -34.07448 0 33.127476 0.94712398 -68.14908 0 + 728 -34.07448 -34.07448 0 33.127476 0.94712397 -68.14908 0 + 729 -34.07448 -34.07448 0 33.127476 0.94712396 -68.14908 0 + 730 -34.07448 -34.07448 0 33.127476 0.94712395 -68.14908 0 + 731 -34.07448 -34.07448 0 33.127476 0.94712394 -68.14908 0 + 732 -34.07448 -34.07448 0 33.127476 0.94712393 -68.14908 0 + 733 -34.07448 -34.07448 0 33.127476 0.94712391 -68.149079 0 + 734 -34.07448 -34.07448 0 33.127476 0.94712389 -68.149079 0 + 735 -34.07448 -34.07448 0 33.127476 0.94712388 -68.149079 0 + 736 -34.07448 -34.07448 0 33.127476 0.94712386 -68.149079 0 + 737 -34.07448 -34.07448 0 33.127476 0.94712385 -68.149079 0 + 738 -34.07448 -34.07448 0 33.127476 0.94712385 -68.149079 0 + 739 -34.07448 -34.07448 0 33.127475 0.94712384 -68.149079 0 + 740 -34.07448 -34.07448 0 33.127475 0.94712383 -68.149079 0 + 741 -34.07448 -34.07448 0 33.127475 0.94712382 -68.149079 0 + 742 -34.07448 -34.07448 0 33.127475 0.94712381 -68.149079 0 + 743 -34.07448 -34.07448 0 33.127475 0.94712379 -68.149079 0 + 744 -34.07448 -34.07448 0 33.127475 0.94712378 -68.149079 0 + 745 -34.07448 -34.07448 0 33.127475 0.94712377 -68.149079 0 + 746 -34.07448 -34.07448 0 33.127475 0.94712375 -68.149078 0 + 747 -34.07448 -34.07448 0 33.127475 0.94712374 -68.149078 0 + 748 -34.07448 -34.07448 0 33.127475 0.94712372 -68.149078 0 + 749 -34.07448 -34.07448 0 33.127475 0.9471237 -68.149078 0 + 750 -34.07448 -34.07448 0 33.127475 0.94712369 -68.149078 0 + 751 -34.07448 -34.07448 0 33.127475 0.94712368 -68.149078 0 + 752 -34.07448 -34.07448 0 33.127475 0.94712367 -68.149078 0 + 753 -34.07448 -34.07448 0 33.127475 0.94712366 -68.149078 0 + 754 -34.07448 -34.07448 0 33.127474 0.94712365 -68.149078 0 + 755 -34.07448 -34.07448 0 33.127474 0.94712364 -68.149078 0 + 756 -34.07448 -34.07448 0 33.127474 0.94712362 -68.149078 0 + 757 -34.07448 -34.07448 0 33.127474 0.94712361 -68.149078 0 + 758 -34.07448 -34.07448 0 33.127474 0.9471236 -68.149077 0 + 759 -34.07448 -34.07448 0 33.127474 0.94712359 -68.149077 0 + 760 -34.07448 -34.07448 0 33.127474 0.94712358 -68.149077 0 + 761 -34.07448 -34.07448 0 33.127474 0.94712357 -68.149077 0 + 762 -34.07448 -34.07448 0 33.127474 0.94712357 -68.149077 0 + 763 -34.07448 -34.07448 0 33.127474 0.94712356 -68.149077 0 + 764 -34.07448 -34.07448 0 33.127474 0.94712355 -68.149077 0 + 765 -34.07448 -34.07448 0 33.127474 0.94712353 -68.149077 0 + 766 -34.07448 -34.07448 0 33.127474 0.94712352 -68.149077 0 + 767 -34.07448 -34.07448 0 33.127474 0.9471235 -68.149077 0 + 768 -34.07448 -34.07448 0 33.127474 0.94712349 -68.149077 0 + 769 -34.07448 -34.07448 0 33.127474 0.94712348 -68.149077 0 + 770 -34.07448 -34.07448 0 33.127473 0.94712347 -68.149077 0 + 771 -34.07448 -34.07448 0 33.127473 0.94712345 -68.149077 0 + 772 -34.07448 -34.07448 0 33.127473 0.94712343 -68.149076 0 + 773 -34.07448 -34.07448 0 33.127473 0.94712342 -68.149076 0 + 774 -34.07448 -34.07448 0 33.127473 0.94712341 -68.149076 0 + 775 -34.07448 -34.07448 0 33.127473 0.9471234 -68.149076 0 + 776 -34.07448 -34.07448 0 33.127473 0.94712339 -68.149076 0 + 777 -34.07448 -34.07448 0 33.127473 0.94712337 -68.149076 0 + 778 -34.07448 -34.07448 0 33.127473 0.94712335 -68.149076 0 + 779 -34.07448 -34.07448 0 33.127473 0.94712335 -68.149076 0 + 780 -34.07448 -34.07448 0 33.127473 0.94712334 -68.149076 0 + 781 -34.07448 -34.07448 0 33.127473 0.94712333 -68.149076 0 + 782 -34.07448 -34.07448 0 33.127473 0.94712332 -68.149076 0 + 783 -34.07448 -34.07448 0 33.127473 0.94712331 -68.149076 0 + 784 -34.07448 -34.07448 0 33.127473 0.9471233 -68.149076 0 + 785 -34.07448 -34.07448 0 33.127472 0.94712329 -68.149075 0 + 786 -34.07448 -34.07448 0 33.127472 0.94712327 -68.149075 0 + 787 -34.07448 -34.07448 0 33.127472 0.94712326 -68.149075 0 + 788 -34.07448 -34.07448 0 33.127472 0.94712324 -68.149075 0 + 789 -34.07448 -34.07448 0 33.127472 0.94712323 -68.149075 0 + 790 -34.07448 -34.07448 0 33.127472 0.94712322 -68.149075 0 + 791 -34.07448 -34.07448 0 33.127472 0.94712321 -68.149075 0 + 792 -34.07448 -34.07448 0 33.127472 0.94712321 -68.149075 0 + 793 -34.07448 -34.07448 0 33.127472 0.9471232 -68.149075 0 + 794 -34.07448 -34.07448 0 33.127472 0.94712318 -68.149075 0 + 795 -34.07448 -34.07448 0 33.127472 0.94712317 -68.149075 0 + 796 -34.07448 -34.07448 0 33.127472 0.94712316 -68.149075 0 + 797 -34.07448 -34.07448 0 33.127472 0.94712314 -68.149074 0 + 798 -34.07448 -34.07448 0 33.127472 0.94712312 -68.149074 0 + 799 -34.07448 -34.07448 0 33.127471 0.94712311 -68.149074 0 + 800 -34.07448 -34.07448 0 33.127471 0.9471231 -68.149074 0 + 801 -34.07448 -34.07448 0 33.127471 0.9471231 -68.149074 0 + 802 -34.07448 -34.07448 0 33.127471 0.94712309 -68.149074 0 + 803 -34.07448 -34.07448 0 33.127471 0.94712308 -68.149074 0 + 804 -34.07448 -34.07448 0 33.127471 0.94712307 -68.149074 0 + 805 -34.07448 -34.07448 0 33.127471 0.94712306 -68.149074 0 + 806 -34.07448 -34.07448 0 33.127471 0.94712304 -68.149074 0 + 807 -34.07448 -34.07448 0 33.127471 0.94712303 -68.149074 0 + 808 -34.07448 -34.07448 0 33.127471 0.94712302 -68.149074 0 + 809 -34.07448 -34.07448 0 33.127471 0.947123 -68.149074 0 + 810 -34.07448 -34.07448 0 33.127471 0.94712299 -68.149074 0 + 811 -34.07448 -34.07448 0 33.127471 0.94712297 -68.149073 0 + 812 -34.07448 -34.07448 0 33.127471 0.94712296 -68.149073 0 + 813 -34.07448 -34.07448 0 33.127471 0.94712294 -68.149073 0 + 814 -34.07448 -34.07448 0 33.127471 0.94712293 -68.149073 0 + 815 -34.07448 -34.07448 0 33.12747 0.94712292 -68.149073 0 + 816 -34.07448 -34.07448 0 33.12747 0.94712292 -68.149073 0 + 817 -34.07448 -34.07448 0 33.12747 0.94712291 -68.149073 0 + 818 -34.07448 -34.07448 0 33.12747 0.9471229 -68.149073 0 + 819 -34.07448 -34.07448 0 33.12747 0.94712288 -68.149073 0 + 820 -34.07448 -34.07448 0 33.12747 0.94712286 -68.149073 0 + 821 -34.07448 -34.07448 0 33.12747 0.94712286 -68.149073 0 + 822 -34.07448 -34.07448 0 33.12747 0.94712285 -68.149073 0 + 823 -34.07448 -34.07448 0 33.12747 0.94712284 -68.149073 0 + 824 -34.07448 -34.07448 0 33.12747 0.94712283 -68.149073 0 + 825 -34.07448 -34.07448 0 33.12747 0.94712283 -68.149072 0 + 826 -34.07448 -34.07448 0 33.12747 0.94712282 -68.149072 0 + 827 -34.07448 -34.07448 0 33.12747 0.94712281 -68.149072 0 + 828 -34.07448 -34.07448 0 33.12747 0.94712279 -68.149072 0 + 829 -34.07448 -34.07448 0 33.12747 0.94712278 -68.149072 0 + 830 -34.07448 -34.07448 0 33.12747 0.94712277 -68.149072 0 + 831 -34.07448 -34.07448 0 33.12747 0.94712275 -68.149072 0 + 832 -34.07448 -34.07448 0 33.127469 0.94712274 -68.149072 0 + 833 -34.07448 -34.07448 0 33.127469 0.94712273 -68.149072 0 + 834 -34.07448 -34.07448 0 33.127469 0.94712271 -68.149072 0 + 835 -34.07448 -34.07448 0 33.127469 0.94712269 -68.149072 0 + 836 -34.07448 -34.07448 0 33.127469 0.94712268 -68.149072 0 + 837 -34.07448 -34.07448 0 33.127469 0.94712267 -68.149071 0 + 838 -34.07448 -34.07448 0 33.127469 0.94712266 -68.149071 0 + 839 -34.07448 -34.07448 0 33.127469 0.94712265 -68.149071 0 + 840 -34.07448 -34.07448 0 33.127469 0.94712264 -68.149071 0 + 841 -34.07448 -34.07448 0 33.127469 0.94712263 -68.149071 0 + 842 -34.07448 -34.07448 0 33.127469 0.94712262 -68.149071 0 + 843 -34.07448 -34.07448 0 33.127469 0.9471226 -68.149071 0 + 844 -34.07448 -34.07448 0 33.127469 0.94712259 -68.149071 0 + 845 -34.07448 -34.07448 0 33.127469 0.94712258 -68.149071 0 + 846 -34.07448 -34.07448 0 33.127469 0.94712257 -68.149071 0 + 847 -34.07448 -34.07448 0 33.127469 0.94712257 -68.149071 0 + 848 -34.07448 -34.07448 0 33.127468 0.94712256 -68.149071 0 + 849 -34.07448 -34.07448 0 33.127468 0.94712255 -68.149071 0 + 850 -34.07448 -34.07448 0 33.127468 0.94712254 -68.149071 0 + 851 -34.07448 -34.07448 0 33.127468 0.94712252 -68.149071 0 + 852 -34.07448 -34.07448 0 33.127468 0.94712251 -68.14907 0 + 853 -34.07448 -34.07448 0 33.127468 0.9471225 -68.14907 0 + 854 -34.07448 -34.07448 0 33.127468 0.94712248 -68.14907 0 + 855 -34.07448 -34.07448 0 33.127468 0.94712247 -68.14907 0 + 856 -34.07448 -34.07448 0 33.127468 0.94712246 -68.14907 0 + 857 -34.07448 -34.07448 0 33.127468 0.94712244 -68.14907 0 + 858 -34.07448 -34.07448 0 33.127468 0.94712243 -68.14907 0 + 859 -34.07448 -34.07448 0 33.127468 0.94712243 -68.14907 0 + 860 -34.07448 -34.07448 0 33.127468 0.94712242 -68.14907 0 + 861 -34.07448 -34.07448 0 33.127468 0.94712241 -68.14907 0 + 862 -34.07448 -34.07448 0 33.127468 0.9471224 -68.14907 0 + 863 -34.07448 -34.07448 0 33.127468 0.94712239 -68.14907 0 + 864 -34.07448 -34.07448 0 33.127467 0.94712238 -68.14907 0 + 865 -34.07448 -34.07448 0 33.127467 0.94712236 -68.149069 0 + 866 -34.07448 -34.07448 0 33.127467 0.94712235 -68.149069 0 + 867 -34.07448 -34.07448 0 33.127467 0.94712234 -68.149069 0 + 868 -34.07448 -34.07448 0 33.127467 0.94712234 -68.149069 0 + 869 -34.07448 -34.07448 0 33.127467 0.94712233 -68.149069 0 + 870 -34.07448 -34.07448 0 33.127467 0.94712232 -68.149069 0 + 871 -34.07448 -34.07448 0 33.127467 0.94712231 -68.149069 0 + 872 -34.07448 -34.07448 0 33.127467 0.9471223 -68.149069 0 + 873 -34.07448 -34.07448 0 33.127467 0.94712228 -68.149069 0 + 874 -34.07448 -34.07448 0 33.127467 0.94712227 -68.149069 0 + 875 -34.07448 -34.07448 0 33.127467 0.94712226 -68.149069 0 + 876 -34.07448 -34.07448 0 33.127467 0.94712225 -68.149069 0 + 877 -34.07448 -34.07448 0 33.127467 0.94712223 -68.149069 0 + 878 -34.07448 -34.07448 0 33.127467 0.94712221 -68.149069 0 + 879 -34.07448 -34.07448 0 33.127466 0.94712219 -68.149068 0 + 880 -34.07448 -34.07448 0 33.127466 0.94712218 -68.149068 0 + 881 -34.07448 -34.07448 0 33.127466 0.94712217 -68.149068 0 + 882 -34.07448 -34.07448 0 33.127466 0.94712216 -68.149068 0 + 883 -34.07448 -34.07448 0 33.127466 0.94712215 -68.149068 0 + 884 -34.07448 -34.07448 0 33.127466 0.94712214 -68.149068 0 + 885 -34.07448 -34.07448 0 33.127466 0.94712212 -68.149068 0 + 886 -34.07448 -34.07448 0 33.127466 0.94712211 -68.149068 0 + 887 -34.07448 -34.07448 0 33.127466 0.9471221 -68.149068 0 + 888 -34.07448 -34.07448 0 33.127466 0.94712209 -68.149068 0 + 889 -34.07448 -34.07448 0 33.127466 0.94712208 -68.149068 0 + 890 -34.07448 -34.07448 0 33.127466 0.94712207 -68.149068 0 + 891 -34.07448 -34.07448 0 33.127466 0.94712205 -68.149067 0 + 892 -34.07448 -34.07448 0 33.127466 0.94712204 -68.149067 0 + 893 -34.07448 -34.07448 0 33.127466 0.94712202 -68.149067 0 + 894 -34.07448 -34.07448 0 33.127465 0.94712201 -68.149067 0 + 895 -34.07448 -34.07448 0 33.127465 0.947122 -68.149067 0 + 896 -34.07448 -34.07448 0 33.127465 0.94712199 -68.149067 0 + 897 -34.07448 -34.07448 0 33.127465 0.94712197 -68.149067 0 + 898 -34.07448 -34.07448 0 33.127465 0.94712194 -68.149067 0 + 899 -34.07448 -34.07448 0 33.127465 0.94712193 -68.149067 0 + 900 -34.07448 -34.07448 0 33.127465 0.94712192 -68.149067 0 + 901 -34.07448 -34.07448 0 33.127465 0.94712192 -68.149067 0 + 902 -34.07448 -34.07448 0 33.127465 0.9471219 -68.149067 0 + 903 -34.07448 -34.07448 0 33.127465 0.94712189 -68.149066 0 + 904 -34.07448 -34.07448 0 33.127465 0.94712188 -68.149066 0 + 905 -34.07448 -34.07448 0 33.127465 0.94712186 -68.149066 0 + 906 -34.07448 -34.07448 0 33.127465 0.94712185 -68.149066 0 + 907 -34.07448 -34.07448 0 33.127465 0.94712184 -68.149066 0 + 908 -34.07448 -34.07448 0 33.127465 0.94712184 -68.149066 0 + 909 -34.07448 -34.07448 0 33.127464 0.94712183 -68.149066 0 + 910 -34.07448 -34.07448 0 33.127464 0.94712181 -68.149066 0 + 911 -34.07448 -34.07448 0 33.127464 0.9471218 -68.149066 0 + 912 -34.07448 -34.07448 0 33.127464 0.94712179 -68.149066 0 + 913 -34.07448 -34.07448 0 33.127464 0.94712178 -68.149066 0 + 914 -34.07448 -34.07448 0 33.127464 0.94712177 -68.149066 0 + 915 -34.07448 -34.07448 0 33.127464 0.94712176 -68.149066 0 + 916 -34.07448 -34.07448 0 33.127464 0.94712175 -68.149066 0 + 917 -34.07448 -34.07448 0 33.127464 0.94712174 -68.149065 0 + 918 -34.07448 -34.07448 0 33.127464 0.94712173 -68.149065 0 + 919 -34.07448 -34.07448 0 33.127464 0.94712171 -68.149065 0 + 920 -34.07448 -34.07448 0 33.127464 0.9471217 -68.149065 0 + 921 -34.07448 -34.07448 0 33.127464 0.94712169 -68.149065 0 + 922 -34.07448 -34.07448 0 33.127464 0.94712168 -68.149065 0 + 923 -34.07448 -34.07448 0 33.127464 0.94712167 -68.149065 0 + 924 -34.07448 -34.07448 0 33.127464 0.94712166 -68.149065 0 + 925 -34.07448 -34.07448 0 33.127464 0.94712165 -68.149065 0 + 926 -34.07448 -34.07448 0 33.127463 0.94712164 -68.149065 0 + 927 -34.07448 -34.07448 0 33.127463 0.94712163 -68.149065 0 + 928 -34.07448 -34.07448 0 33.127463 0.94712162 -68.149065 0 + 929 -34.07448 -34.07448 0 33.127463 0.9471216 -68.149065 0 + 930 -34.07448 -34.07448 0 33.127463 0.94712159 -68.149064 0 + 931 -34.07448 -34.07448 0 33.127463 0.94712157 -68.149064 0 + 932 -34.07448 -34.07448 0 33.127463 0.94712157 -68.149064 0 + 933 -34.07448 -34.07448 0 33.127463 0.94712156 -68.149064 0 + 934 -34.07448 -34.07448 0 33.127463 0.94712155 -68.149064 0 + 935 -34.07448 -34.07448 0 33.127463 0.94712154 -68.149064 0 + 936 -34.07448 -34.07448 0 33.127463 0.94712153 -68.149064 0 + 937 -34.07448 -34.07448 0 33.127463 0.94712152 -68.149064 0 + 938 -34.07448 -34.07448 0 33.127463 0.94712151 -68.149064 0 + 939 -34.07448 -34.07448 0 33.127463 0.9471215 -68.149064 0 + 940 -34.07448 -34.07448 0 33.127463 0.94712149 -68.149064 0 + 941 -34.07448 -34.07448 0 33.127463 0.94712147 -68.149064 0 + 942 -34.07448 -34.07448 0 33.127462 0.94712146 -68.149064 0 + 943 -34.07448 -34.07448 0 33.127462 0.94712145 -68.149064 0 + 944 -34.07448 -34.07448 0 33.127462 0.94712144 -68.149064 0 + 945 -34.07448 -34.07448 0 33.127462 0.94712144 -68.149063 0 + 946 -34.07448 -34.07448 0 33.127462 0.94712142 -68.149063 0 + 947 -34.07448 -34.07448 0 33.127462 0.94712141 -68.149063 0 + 948 -34.07448 -34.07448 0 33.127462 0.9471214 -68.149063 0 + 949 -34.07448 -34.07448 0 33.127462 0.9471214 -68.149063 0 + 950 -34.07448 -34.07448 0 33.127462 0.94712139 -68.149063 0 + 951 -34.07448 -34.07448 0 33.127462 0.94712138 -68.149063 0 + 952 -34.07448 -34.07448 0 33.127462 0.94712137 -68.149063 0 + 953 -34.07448 -34.07448 0 33.127462 0.94712135 -68.149063 0 + 954 -34.07448 -34.07448 0 33.127462 0.94712134 -68.149063 0 + 955 -34.07448 -34.07448 0 33.127462 0.94712132 -68.149063 0 + 956 -34.07448 -34.07448 0 33.127462 0.94712131 -68.149063 0 + 957 -34.07448 -34.07448 0 33.127462 0.94712131 -68.149063 0 + 958 -34.07448 -34.07448 0 33.127462 0.9471213 -68.149063 0 + 959 -34.07448 -34.07448 0 33.127462 0.94712129 -68.149063 0 + 960 -34.07448 -34.07448 0 33.127462 0.94712128 -68.149062 0 + 961 -34.07448 -34.07448 0 33.127461 0.94712127 -68.149062 0 + 962 -34.07448 -34.07448 0 33.127461 0.94712126 -68.149062 0 + 963 -34.07448 -34.07448 0 33.127461 0.94712124 -68.149062 0 + 964 -34.07448 -34.07448 0 33.127461 0.94712123 -68.149062 0 + 965 -34.07448 -34.07448 0 33.127461 0.94712123 -68.149062 0 + 966 -34.07448 -34.07448 0 33.127461 0.94712121 -68.149062 0 + 967 -34.07448 -34.07448 0 33.127461 0.94712119 -68.149062 0 + 968 -34.07448 -34.07448 0 33.127461 0.94712118 -68.149062 0 + 969 -34.07448 -34.07448 0 33.127461 0.94712117 -68.149062 0 + 970 -34.07448 -34.07448 0 33.127461 0.94712116 -68.149062 0 + 971 -34.07448 -34.07448 0 33.127461 0.94712115 -68.149062 0 + 972 -34.07448 -34.07448 0 33.127461 0.94712114 -68.149062 0 + 973 -34.07448 -34.07448 0 33.127461 0.94712114 -68.149062 0 + 974 -34.07448 -34.07448 0 33.127461 0.94712113 -68.149061 0 + 975 -34.07448 -34.07448 0 33.127461 0.94712111 -68.149061 0 + 976 -34.07448 -34.07448 0 33.127461 0.9471211 -68.149061 0 + 977 -34.07448 -34.07448 0 33.12746 0.94712109 -68.149061 0 + 978 -34.07448 -34.07448 0 33.12746 0.94712108 -68.149061 0 + 979 -34.07448 -34.07448 0 33.12746 0.94712107 -68.149061 0 + 980 -34.07448 -34.07448 0 33.12746 0.94712106 -68.149061 0 + 981 -34.07448 -34.07448 0 33.12746 0.94712104 -68.149061 0 + 982 -34.07448 -34.07448 0 33.12746 0.94712103 -68.149061 0 + 983 -34.07448 -34.07448 0 33.12746 0.94712102 -68.149061 0 + 984 -34.07448 -34.07448 0 33.12746 0.94712101 -68.149061 0 + 985 -34.07448 -34.07448 0 33.12746 0.947121 -68.149061 0 + 986 -34.07448 -34.07448 0 33.12746 0.94712099 -68.149061 0 + 987 -34.07448 -34.07448 0 33.12746 0.94712098 -68.149061 0 + 988 -34.07448 -34.07448 0 33.12746 0.94712097 -68.14906 0 + 989 -34.07448 -34.07448 0 33.12746 0.94712096 -68.14906 0 + 990 -34.07448 -34.07448 0 33.12746 0.94712095 -68.14906 0 + 991 -34.07448 -34.07448 0 33.12746 0.94712093 -68.14906 0 + 992 -34.07448 -34.07448 0 33.12746 0.94712092 -68.14906 0 + 993 -34.07448 -34.07448 0 33.12746 0.94712092 -68.14906 0 + 994 -34.07448 -34.07448 0 33.127459 0.94712091 -68.14906 0 + 995 -34.07448 -34.07448 0 33.127459 0.94712089 -68.14906 0 + 996 -34.07448 -34.07448 0 33.127459 0.94712088 -68.14906 0 + 997 -34.07448 -34.07448 0 33.127459 0.94712086 -68.14906 0 + 998 -34.07448 -34.07448 0 33.127459 0.94712086 -68.14906 0 + 999 -34.07448 -34.07448 0 33.127459 0.94712085 -68.14906 0 + 1000 -34.07448 -34.07448 0 33.127459 0.94712084 -68.14906 0 + 1001 -34.07448 -34.07448 0 33.127459 0.94712083 -68.14906 0 + 1002 -34.07448 -34.07448 0 33.127459 0.94712082 -68.14906 0 + 1003 -34.07448 -34.07448 0 33.127459 0.94712081 -68.149059 0 + 1004 -34.07448 -34.07448 0 33.127459 0.9471208 -68.149059 0 + 1005 -34.07448 -34.07448 0 33.127459 0.94712078 -68.149059 0 + 1006 -34.07448 -34.07448 0 33.127459 0.94712077 -68.149059 0 + 1007 -34.07448 -34.07448 0 33.127459 0.94712077 -68.149059 0 + 1008 -34.07448 -34.07448 0 33.127459 0.94712076 -68.149059 0 + 1009 -34.07448 -34.07448 0 33.127459 0.94712074 -68.149059 0 + 1010 -34.07448 -34.07448 0 33.127458 0.94712073 -68.149059 0 + 1011 -34.07448 -34.07448 0 33.127458 0.94712072 -68.149059 0 + 1012 -34.07448 -34.07448 0 33.127458 0.94712071 -68.149059 0 + 1013 -34.07448 -34.07448 0 33.127458 0.9471207 -68.149059 0 + 1014 -34.07448 -34.07448 0 33.127458 0.94712069 -68.149059 0 + 1015 -34.07448 -34.07448 0 33.127458 0.94712068 -68.149059 0 + 1016 -34.07448 -34.07448 0 33.127458 0.94712067 -68.149059 0 + 1017 -34.07448 -34.07448 0 33.127458 0.94712066 -68.149058 0 + 1018 -34.07448 -34.07448 0 33.127458 0.94712065 -68.149058 0 + 1019 -34.07448 -34.07448 0 33.127458 0.94712063 -68.149058 0 + 1020 -34.07448 -34.07448 0 33.127458 0.94712063 -68.149058 0 + 1021 -34.07448 -34.07448 0 33.127458 0.94712062 -68.149058 0 + 1022 -34.07448 -34.07448 0 33.127458 0.94712061 -68.149058 0 + 1023 -34.07448 -34.07448 0 33.127458 0.94712059 -68.149058 0 + 1024 -34.07448 -34.07448 0 33.127458 0.94712058 -68.149058 0 + 1025 -34.07448 -34.07448 0 33.127458 0.94712057 -68.149058 0 + 1026 -34.07448 -34.07448 0 33.127458 0.94712056 -68.149058 0 + 1027 -34.07448 -34.07448 0 33.127458 0.94712055 -68.149058 0 + 1028 -34.07448 -34.07448 0 33.127457 0.94712054 -68.149058 0 + 1029 -34.07448 -34.07448 0 33.127457 0.94712054 -68.149058 0 + 1030 -34.07448 -34.07448 0 33.127457 0.94712053 -68.149058 0 + 1031 -34.07448 -34.07448 0 33.127457 0.94712051 -68.149058 0 + 1032 -34.07448 -34.07448 0 33.127457 0.9471205 -68.149057 0 + 1033 -34.07448 -34.07448 0 33.127457 0.94712049 -68.149057 0 + 1034 -34.07448 -34.07448 0 33.127457 0.94712048 -68.149057 0 + 1035 -34.07448 -34.07448 0 33.127457 0.94712047 -68.149057 0 + 1036 -34.07448 -34.07448 0 33.127457 0.94712046 -68.149057 0 + 1037 -34.07448 -34.07448 0 33.127457 0.94712045 -68.149057 0 + 1038 -34.07448 -34.07448 0 33.127457 0.94712043 -68.149057 0 + 1039 -34.07448 -34.07448 0 33.127457 0.94712042 -68.149057 0 + 1040 -34.07448 -34.07448 0 33.127457 0.94712041 -68.149057 0 + 1041 -34.07448 -34.07448 0 33.127457 0.9471204 -68.149057 0 + 1042 -34.07448 -34.07448 0 33.127457 0.9471204 -68.149057 0 + 1043 -34.07448 -34.07448 0 33.127457 0.94712039 -68.149057 0 + 1044 -34.07448 -34.07448 0 33.127457 0.94712038 -68.149057 0 + 1045 -34.07448 -34.07448 0 33.127457 0.94712037 -68.149057 0 + 1046 -34.07448 -34.07448 0 33.127456 0.94712036 -68.149056 0 + 1047 -34.07448 -34.07448 0 33.127456 0.94712034 -68.149056 0 + 1048 -34.07448 -34.07448 0 33.127456 0.94712033 -68.149056 0 + 1049 -34.07448 -34.07448 0 33.127456 0.94712032 -68.149056 0 + 1050 -34.07448 -34.07448 0 33.127456 0.94712031 -68.149056 0 + 1051 -34.07448 -34.07448 0 33.127456 0.9471203 -68.149056 0 + 1052 -34.07448 -34.07448 0 33.127456 0.94712029 -68.149056 0 + 1053 -34.07448 -34.07448 0 33.127456 0.94712027 -68.149056 0 + 1054 -34.07448 -34.07448 0 33.127456 0.94712026 -68.149056 0 + 1055 -34.07448 -34.07448 0 33.127456 0.94712026 -68.149056 0 + 1056 -34.07448 -34.07448 0 33.127456 0.94712025 -68.149056 0 + 1057 -34.07448 -34.07448 0 33.127456 0.94712024 -68.149056 0 + 1058 -34.07448 -34.07448 0 33.127456 0.94712023 -68.149056 0 + 1059 -34.07448 -34.07448 0 33.127456 0.94712022 -68.149056 0 + 1060 -34.07448 -34.07448 0 33.127456 0.94712021 -68.149056 0 + 1061 -34.07448 -34.07448 0 33.127456 0.94712019 -68.149055 0 + 1062 -34.07448 -34.07448 0 33.127456 0.94712018 -68.149055 0 + 1063 -34.07448 -34.07448 0 33.127455 0.94712018 -68.149055 0 + 1064 -34.07448 -34.07448 0 33.127455 0.94712017 -68.149055 0 + 1065 -34.07448 -34.07448 0 33.127455 0.94712016 -68.149055 0 + 1066 -34.07448 -34.07448 0 33.127455 0.94712014 -68.149055 0 + 1067 -34.07448 -34.07448 0 33.127455 0.94712013 -68.149055 0 + 1068 -34.07448 -34.07448 0 33.127455 0.94712012 -68.149055 0 + 1069 -34.07448 -34.07448 0 33.127455 0.94712011 -68.149055 0 + 1070 -34.07448 -34.07448 0 33.127455 0.9471201 -68.149055 0 + 1071 -34.07448 -34.07448 0 33.127455 0.9471201 -68.149055 0 + 1072 -34.07448 -34.07448 0 33.127455 0.94712009 -68.149055 0 + 1073 -34.07448 -34.07448 0 33.127455 0.94712008 -68.149055 0 + 1074 -34.07448 -34.07448 0 33.127455 0.94712006 -68.149055 0 + 1075 -34.07448 -34.07448 0 33.127455 0.94712005 -68.149055 0 + 1076 -34.07448 -34.07448 0 33.127455 0.94712004 -68.149054 0 + 1077 -34.07448 -34.07448 0 33.127455 0.94712003 -68.149054 0 + 1078 -34.07448 -34.07448 0 33.127455 0.94712002 -68.149054 0 + 1079 -34.07448 -34.07448 0 33.127455 0.94712001 -68.149054 0 + 1080 -34.07448 -34.07448 0 33.127455 0.94712001 -68.149054 0 + 1081 -34.07448 -34.07448 0 33.127454 0.94712 -68.149054 0 + 1082 -34.07448 -34.07448 0 33.127454 0.94711999 -68.149054 0 + 1083 -34.07448 -34.07448 0 33.127454 0.94711998 -68.149054 0 + 1084 -34.07448 -34.07448 0 33.127454 0.94711996 -68.149054 0 + 1085 -34.07448 -34.07448 0 33.127454 0.94711995 -68.149054 0 + 1086 -34.07448 -34.07448 0 33.127454 0.94711993 -68.149054 0 + 1087 -34.07448 -34.07448 0 33.127454 0.94711992 -68.149054 0 + 1088 -34.07448 -34.07448 0 33.127454 0.94711991 -68.149054 0 + 1089 -34.07448 -34.07448 0 33.127454 0.94711991 -68.149054 0 + 1090 -34.07448 -34.07448 0 33.127454 0.9471199 -68.149054 0 + 1091 -34.07448 -34.07448 0 33.127454 0.9471199 -68.149054 0 + 1092 -34.07448 -34.07448 0 33.127454 0.94711989 -68.149053 0 + 1093 -34.07448 -34.07448 0 33.127454 0.94711988 -68.149053 0 + 1094 -34.07448 -34.07448 0 33.127454 0.94711987 -68.149053 0 + 1095 -34.07448 -34.07448 0 33.127454 0.94711986 -68.149053 0 + 1096 -34.07448 -34.07448 0 33.127454 0.94711985 -68.149053 0 + 1097 -34.07448 -34.07448 0 33.127454 0.94711983 -68.149053 0 + 1098 -34.07448 -34.07448 0 33.127454 0.94711983 -68.149053 0 + 1099 -34.07448 -34.07448 0 33.127454 0.94711982 -68.149053 0 + 1100 -34.07448 -34.07448 0 33.127453 0.94711981 -68.149053 0 + 1101 -34.07448 -34.07448 0 33.127453 0.9471198 -68.149053 0 + 1102 -34.07448 -34.07448 0 33.127453 0.94711979 -68.149053 0 + 1103 -34.07448 -34.07448 0 33.127453 0.94711978 -68.149053 0 + 1104 -34.07448 -34.07448 0 33.127453 0.94711976 -68.149053 0 + 1105 -34.07448 -34.07448 0 33.127453 0.94711975 -68.149053 0 + 1106 -34.07448 -34.07448 0 33.127453 0.94711974 -68.149053 0 + 1107 -34.07448 -34.07448 0 33.127453 0.94711974 -68.149052 0 + 1108 -34.07448 -34.07448 0 33.127453 0.94711973 -68.149052 0 + 1109 -34.07448 -34.07448 0 33.127453 0.94711972 -68.149052 0 + 1110 -34.07448 -34.07448 0 33.127453 0.94711971 -68.149052 0 + 1111 -34.07448 -34.07448 0 33.127453 0.9471197 -68.149052 0 + 1112 -34.07448 -34.07448 0 33.127453 0.94711969 -68.149052 0 + 1113 -34.07448 -34.07448 0 33.127453 0.94711968 -68.149052 0 + 1114 -34.07448 -34.07448 0 33.127453 0.94711966 -68.149052 0 + 1115 -34.07448 -34.07448 0 33.127453 0.94711965 -68.149052 0 + 1116 -34.07448 -34.07448 0 33.127453 0.94711964 -68.149052 0 + 1117 -34.07448 -34.07448 0 33.127452 0.94711963 -68.149052 0 + 1118 -34.07448 -34.07448 0 33.127452 0.94711962 -68.149052 0 + 1119 -34.07448 -34.07448 0 33.127452 0.94711962 -68.149052 0 + 1120 -34.07448 -34.07448 0 33.127452 0.94711961 -68.149052 0 + 1121 -34.07448 -34.07448 0 33.127452 0.9471196 -68.149052 0 + 1122 -34.07448 -34.07448 0 33.127452 0.94711959 -68.149052 0 + 1123 -34.07448 -34.07448 0 33.127452 0.94711958 -68.149051 0 + 1124 -34.07448 -34.07448 0 33.127452 0.94711957 -68.149051 0 + 1125 -34.07448 -34.07448 0 33.127452 0.94711956 -68.149051 0 + 1126 -34.07448 -34.07448 0 33.127452 0.94711955 -68.149051 0 + 1127 -34.07448 -34.07448 0 33.127452 0.94711953 -68.149051 0 + 1128 -34.07448 -34.07448 0 33.127452 0.94711952 -68.149051 0 + 1129 -34.07448 -34.07448 0 33.127452 0.94711951 -68.149051 0 + 1130 -34.07448 -34.07448 0 33.127452 0.94711951 -68.149051 0 + 1131 -34.07448 -34.07448 0 33.127452 0.94711949 -68.149051 0 + 1132 -34.07448 -34.07448 0 33.127452 0.94711948 -68.149051 0 + 1133 -34.07448 -34.07448 0 33.127452 0.94711947 -68.149051 0 + 1134 -34.07448 -34.07448 0 33.127445 0.94711829 -68.149043 0 + 1135 -34.07448 -34.07448 0 33.127443 0.94711795 -68.149041 0 + 1136 -34.07448 -34.07448 0 33.127443 0.94711794 -68.149041 0 + 1137 -34.07448 -34.07448 0 33.127443 0.94711793 -68.149041 0 + 1138 -34.07448 -34.07448 0 33.127443 0.94711792 -68.149041 0 + 1139 -34.07448 -34.07448 0 33.127443 0.9471179 -68.149041 0 + 1140 -34.07448 -34.07448 0 33.127443 0.94711789 -68.149041 0 + 1141 -34.07448 -34.07448 0 33.127443 0.94711789 -68.149041 0 + 1142 -34.07448 -34.07448 0 33.127443 0.94711788 -68.14904 0 + 1143 -34.07448 -34.07448 0 33.127443 0.94711787 -68.14904 0 + 1144 -34.07448 -34.07448 0 33.127443 0.94711786 -68.14904 0 + 1145 -34.07448 -34.07448 0 33.127443 0.94711785 -68.14904 0 + 1146 -34.07448 -34.07448 0 33.127443 0.94711784 -68.14904 0 + 1147 -34.07448 -34.07448 0 33.127443 0.94711782 -68.14904 0 + 1148 -34.07448 -34.07448 0 33.127443 0.94711782 -68.14904 0 + 1149 -34.07448 -34.07448 0 33.127443 0.94711781 -68.14904 0 + 1150 -34.07448 -34.07448 0 33.127443 0.94711781 -68.14904 0 + 1151 -34.07448 -34.07448 0 33.127442 0.9471178 -68.14904 0 + 1152 -34.07448 -34.07448 0 33.127442 0.94711779 -68.14904 0 + 1153 -34.07448 -34.07448 0 33.127442 0.94711778 -68.14904 0 + 1154 -34.07448 -34.07448 0 33.127442 0.94711777 -68.14904 0 + 1155 -34.07448 -34.07448 0 33.127442 0.94711776 -68.14904 0 + 1156 -34.07448 -34.07448 0 33.127442 0.94711775 -68.14904 0 + 1157 -34.07448 -34.07448 0 33.127442 0.94711774 -68.14904 0 + 1158 -34.07448 -34.07448 0 33.127442 0.94711773 -68.149039 0 + 1159 -34.07448 -34.07448 0 33.127442 0.94711772 -68.149039 0 + 1160 -34.07448 -34.07448 0 33.127442 0.94711771 -68.149039 0 + 1161 -34.07448 -34.07448 0 33.127442 0.94711771 -68.149039 0 + 1162 -34.07448 -34.07448 0 33.127442 0.94711769 -68.149039 0 + 1163 -34.07448 -34.07448 0 33.127442 0.94711768 -68.149039 0 + 1164 -34.07448 -34.07448 0 33.127442 0.94711767 -68.149039 0 + 1165 -34.07448 -34.07448 0 33.127442 0.94711767 -68.149039 0 + 1166 -34.07448 -34.07448 0 33.127442 0.94711766 -68.149039 0 + 1167 -34.07448 -34.07448 0 33.127442 0.94711765 -68.149039 0 + 1168 -34.07448 -34.07448 0 33.127442 0.94711763 -68.149039 0 + 1169 -34.07448 -34.07448 0 33.127442 0.94711762 -68.149039 0 + 1170 -34.07448 -34.07448 0 33.127441 0.94711761 -68.149039 0 + 1171 -34.07448 -34.07448 0 33.127441 0.9471176 -68.149039 0 + 1172 -34.07448 -34.07448 0 33.127441 0.94711759 -68.149039 0 + 1173 -34.07448 -34.07448 0 33.127441 0.94711759 -68.149039 0 + 1174 -34.07448 -34.07448 0 33.127441 0.94711758 -68.149039 0 + 1175 -34.07448 -34.07448 0 33.127441 0.94711757 -68.149038 0 + 1176 -34.07448 -34.07448 0 33.127441 0.94711756 -68.149038 0 + 1177 -34.07448 -34.07448 0 33.127441 0.94711756 -68.149038 0 + 1178 -34.07448 -34.07448 0 33.127441 0.94711755 -68.149038 0 + 1179 -34.07448 -34.07448 0 33.127441 0.94711754 -68.149038 0 + 1180 -34.07448 -34.07448 0 33.127441 0.94711752 -68.149038 0 + 1181 -34.07448 -34.07448 0 33.127441 0.94711751 -68.149038 0 + 1182 -34.07448 -34.07448 0 33.127441 0.9471175 -68.149038 0 + 1183 -34.07448 -34.07448 0 33.127441 0.9471175 -68.149038 0 + 1184 -34.07448 -34.07448 0 33.127441 0.94711749 -68.149038 0 + 1185 -34.07448 -34.07448 0 33.127441 0.94711748 -68.149038 0 + 1186 -34.07448 -34.07448 0 33.127441 0.94711748 -68.149038 0 + 1187 -34.07448 -34.07448 0 33.127441 0.94711747 -68.149038 0 + 1188 -34.07448 -34.07448 0 33.127441 0.94711745 -68.149038 0 + 1189 -34.07448 -34.07448 0 33.127441 0.94711745 -68.149038 0 + 1190 -34.07448 -34.07448 0 33.127441 0.94711744 -68.149038 0 + 1191 -34.07448 -34.07448 0 33.12744 0.94711743 -68.149038 0 + 1192 -34.07448 -34.07448 0 33.12744 0.94711742 -68.149038 0 + 1193 -34.07448 -34.07448 0 33.12744 0.94711741 -68.149037 0 + 1194 -34.07448 -34.07448 0 33.12744 0.9471174 -68.149037 0 + 1195 -34.07448 -34.07448 0 33.12744 0.94711738 -68.149037 0 + 1196 -34.07448 -34.07448 0 33.12744 0.94711735 -68.149037 0 + 1197 -34.07448 -34.07448 0 33.12744 0.94711731 -68.149037 0 + 1198 -34.07448 -34.07448 0 33.12744 0.9471173 -68.149037 0 + 1199 -34.07448 -34.07448 0 33.12744 0.9471173 -68.149037 0 + 1200 -34.07448 -34.07448 0 33.12744 0.9471173 -68.149037 0 + 1201 -34.07448 -34.07448 0 33.12744 0.94711729 -68.149037 0 + 1202 -34.07448 -34.07448 0 33.12744 0.94711728 -68.149037 0 + 1203 -34.07448 -34.07448 0 33.12744 0.94711726 -68.149037 0 + 1204 -34.07448 -34.07448 0 33.12744 0.94711726 -68.149036 0 + 1205 -34.07448 -34.07448 0 33.127439 0.94711725 -68.149036 0 + 1206 -34.07448 -34.07448 0 33.127439 0.94711724 -68.149036 0 + 1207 -34.07448 -34.07448 0 33.127439 0.94711723 -68.149036 0 + 1208 -34.07448 -34.07448 0 33.127439 0.94711722 -68.149036 0 + 1209 -34.07448 -34.07448 0 33.127439 0.94711722 -68.149036 0 + 1210 -34.07448 -34.07448 0 33.127439 0.94711721 -68.149036 0 + 1211 -34.07448 -34.07448 0 33.127439 0.9471172 -68.149036 0 + 1212 -34.07448 -34.07448 0 33.127439 0.9471172 -68.149036 0 + 1213 -34.07448 -34.07448 0 33.127439 0.94711719 -68.149036 0 + 1214 -34.07448 -34.07448 0 33.127439 0.94711718 -68.149036 0 + 1215 -34.07448 -34.07448 0 33.127439 0.94711717 -68.149036 0 + 1216 -34.07448 -34.07448 0 33.127439 0.94711716 -68.149036 0 + 1217 -34.07448 -34.07448 0 33.127439 0.94711715 -68.149036 0 + 1218 -34.07448 -34.07448 0 33.127439 0.94711714 -68.149036 0 + 1219 -34.07448 -34.07448 0 33.127439 0.94711712 -68.149036 0 + 1220 -34.07448 -34.07448 0 33.127439 0.9471171 -68.149035 0 + 1221 -34.07448 -34.07448 0 33.127439 0.94711708 -68.149035 0 + 1222 -34.07448 -34.07448 0 33.127439 0.94711708 -68.149035 0 + 1223 -34.07448 -34.07448 0 33.127438 0.94711707 -68.149035 0 + 1224 -34.07448 -34.07448 0 33.127438 0.94711706 -68.149035 0 + 1225 -34.07448 -34.07448 0 33.127438 0.94711705 -68.149035 0 + 1226 -34.07448 -34.07448 0 33.127438 0.94711704 -68.149035 0 + 1227 -34.07448 -34.07448 0 33.127438 0.94711702 -68.149035 0 + 1228 -34.07448 -34.07448 0 33.127438 0.947117 -68.149035 0 + 1229 -34.07448 -34.07448 0 33.127438 0.94711697 -68.149035 0 + 1230 -34.07448 -34.07448 0 33.127438 0.94711692 -68.149034 0 + 1231 -34.07448 -34.07448 0 33.127438 0.94711691 -68.149034 0 + 1232 -34.07448 -34.07448 0 33.127438 0.94711691 -68.149034 0 + 1233 -34.07448 -34.07448 0 33.127438 0.9471169 -68.149034 0 + 1234 -34.07448 -34.07448 0 33.127438 0.94711689 -68.149034 0 + 1235 -34.07448 -34.07448 0 33.127437 0.94711688 -68.149034 0 + 1236 -34.07448 -34.07448 0 33.127437 0.94711686 -68.149034 0 + 1237 -34.07448 -34.07448 0 33.127437 0.94711685 -68.149034 0 + 1238 -34.07448 -34.07448 0 33.127437 0.94711684 -68.149034 0 + 1239 -34.07448 -34.07448 0 33.127437 0.94711683 -68.149034 0 + 1240 -34.07448 -34.07448 0 33.127437 0.94711683 -68.149034 0 + 1241 -34.07448 -34.07448 0 33.127437 0.94711682 -68.149034 0 + 1242 -34.07448 -34.07448 0 33.127437 0.94711682 -68.149034 0 + 1243 -34.07448 -34.07448 0 33.127437 0.94711681 -68.149034 0 + 1244 -34.07448 -34.07448 0 33.127437 0.9471168 -68.149034 0 + 1245 -34.07448 -34.07448 0 33.127437 0.9471168 -68.149033 0 + 1246 -34.07448 -34.07448 0 33.127437 0.94711679 -68.149033 0 + 1247 -34.07448 -34.07448 0 33.127437 0.94711678 -68.149033 0 + 1248 -34.07448 -34.07448 0 33.127437 0.94711677 -68.149033 0 + 1249 -34.07448 -34.07448 0 33.127437 0.94711676 -68.149033 0 + 1250 -34.07448 -34.07448 0 33.127437 0.94711675 -68.149033 0 + 1251 -34.07448 -34.07448 0 33.127437 0.94711674 -68.149033 0 + 1252 -34.07448 -34.07448 0 33.127437 0.94711674 -68.149033 0 + 1253 -34.07448 -34.07448 0 33.127437 0.94711673 -68.149033 0 + 1254 -34.07448 -34.07448 0 33.127437 0.94711672 -68.149033 0 + 1255 -34.07448 -34.07448 0 33.127437 0.94711672 -68.149033 0 + 1256 -34.07448 -34.07448 0 33.127437 0.94711671 -68.149033 0 + 1257 -34.07448 -34.07448 0 33.127437 0.94711671 -68.149033 0 + 1258 -34.07448 -34.07448 0 33.127436 0.9471167 -68.149033 0 + 1259 -34.07448 -34.07448 0 33.127436 0.94711669 -68.149033 0 + 1260 -34.07448 -34.07448 0 33.127436 0.94711669 -68.149033 0 + 1261 -34.07448 -34.07448 0 33.127436 0.94711668 -68.149033 0 + 1262 -34.07448 -34.07448 0 33.127436 0.94711667 -68.149033 0 + 1263 -34.07448 -34.07448 0 33.127436 0.94711666 -68.149033 0 + 1264 -34.07448 -34.07448 0 33.127436 0.94711665 -68.149033 0 + 1265 -34.07448 -34.07448 0 33.127436 0.94711664 -68.149032 0 + 1266 -34.07448 -34.07448 0 33.127436 0.94711664 -68.149032 0 + 1267 -34.07448 -34.07448 0 33.127436 0.94711662 -68.149032 0 + 1268 -34.07448 -34.07448 0 33.127436 0.94711662 -68.149032 0 + 1269 -34.07448 -34.07448 0 33.127436 0.94711661 -68.149032 0 + 1270 -34.07448 -34.07448 0 33.127436 0.9471166 -68.149032 0 + 1271 -34.07448 -34.07448 0 33.127436 0.94711659 -68.149032 0 + 1272 -34.07448 -34.07448 0 33.127436 0.94711659 -68.149032 0 + 1273 -34.07448 -34.07448 0 33.127436 0.94711658 -68.149032 0 + 1274 -34.07448 -34.07448 0 33.127436 0.94711656 -68.149032 0 + 1275 -34.07448 -34.07448 0 33.127436 0.94711654 -68.149032 0 + 1276 -34.07448 -34.07448 0 33.127436 0.94711653 -68.149032 0 + 1277 -34.07448 -34.07448 0 33.127436 0.94711653 -68.149032 0 + 1278 -34.07448 -34.07448 0 33.127435 0.94711652 -68.149032 0 + 1279 -34.07448 -34.07448 0 33.127435 0.94711651 -68.149032 0 + 1280 -34.07448 -34.07448 0 33.127435 0.9471165 -68.149032 0 + 1281 -34.07448 -34.07448 0 33.127435 0.94711649 -68.149032 0 + 1282 -34.07448 -34.07448 0 33.127435 0.94711648 -68.149031 0 + 1283 -34.07448 -34.07448 0 33.127435 0.94711647 -68.149031 0 + 1284 -34.07448 -34.07448 0 33.127435 0.94711646 -68.149031 0 + 1285 -34.07448 -34.07448 0 33.127435 0.94711646 -68.149031 0 + 1286 -34.07448 -34.07448 0 33.127435 0.94711645 -68.149031 0 + 1287 -34.07448 -34.07448 0 33.127435 0.94711644 -68.149031 0 + 1288 -34.07448 -34.07448 0 33.127435 0.94711643 -68.149031 0 + 1289 -34.07448 -34.07448 0 33.127435 0.94711641 -68.149031 0 + 1290 -34.07448 -34.07448 0 33.127435 0.94711641 -68.149031 0 + 1291 -34.07448 -34.07448 0 33.127435 0.9471164 -68.149031 0 + 1292 -34.07448 -34.07448 0 33.127435 0.94711639 -68.149031 0 + 1293 -34.07448 -34.07448 0 33.127435 0.94711638 -68.149031 0 + 1294 -34.07448 -34.07448 0 33.127435 0.94711638 -68.149031 0 + 1295 -34.07448 -34.07448 0 33.127435 0.94711637 -68.149031 0 + 1296 -34.07448 -34.07448 0 33.127435 0.94711635 -68.149031 0 + 1297 -34.07448 -34.07448 0 33.127434 0.94711633 -68.14903 0 + 1298 -34.07448 -34.07448 0 33.127434 0.94711629 -68.14903 0 + 1299 -34.07448 -34.07448 0 33.127434 0.94711628 -68.14903 0 + 1300 -34.07448 -34.07448 0 33.127434 0.94711627 -68.14903 0 + 1301 -34.07448 -34.07448 0 33.127434 0.94711627 -68.14903 0 + 1302 -34.07448 -34.07448 0 33.127434 0.94711626 -68.14903 0 + 1303 -34.07448 -34.07448 0 33.127434 0.94711624 -68.14903 0 + 1304 -34.07448 -34.07448 0 33.127434 0.94711622 -68.14903 0 + 1305 -34.07448 -34.07448 0 33.127434 0.94711621 -68.14903 0 + 1306 -34.07448 -34.07448 0 33.127434 0.9471162 -68.14903 0 + 1307 -34.07448 -34.07448 0 33.127434 0.94711619 -68.14903 0 + 1308 -34.07448 -34.07448 0 33.127434 0.94711618 -68.14903 0 + 1309 -34.07448 -34.07448 0 33.127434 0.94711618 -68.149029 0 + 1310 -34.07448 -34.07448 0 33.127434 0.94711617 -68.149029 0 + 1311 -34.07448 -34.07448 0 33.127434 0.94711616 -68.149029 0 + 1312 -34.07448 -34.07448 0 33.127433 0.94711615 -68.149029 0 + 1313 -34.07448 -34.07448 0 33.127433 0.94711614 -68.149029 0 + 1314 -34.07448 -34.07448 0 33.127433 0.94711614 -68.149029 0 + 1315 -34.07448 -34.07448 0 33.127433 0.94711613 -68.149029 0 + 1316 -34.07448 -34.07448 0 33.127433 0.94711612 -68.149029 0 + 1317 -34.07448 -34.07448 0 33.127433 0.94711611 -68.149029 0 + 1318 -34.07448 -34.07448 0 33.127433 0.94711609 -68.149029 0 + 1319 -34.07448 -34.07448 0 33.127433 0.94711609 -68.149029 0 + 1320 -34.07448 -34.07448 0 33.127433 0.94711608 -68.149029 0 + 1321 -34.07448 -34.07448 0 33.127433 0.94711608 -68.149029 0 + 1322 -34.07448 -34.07448 0 33.127433 0.94711607 -68.149029 0 + 1323 -34.07448 -34.07448 0 33.127433 0.94711606 -68.149029 0 + 1324 -34.07448 -34.07448 0 33.127433 0.94711606 -68.149029 0 + 1325 -34.07448 -34.07448 0 33.127433 0.94711605 -68.149029 0 + 1326 -34.07448 -34.07448 0 33.127433 0.94711604 -68.149029 0 + 1327 -34.07448 -34.07448 0 33.127433 0.94711604 -68.149029 0 + 1328 -34.07448 -34.07448 0 33.127433 0.94711603 -68.149029 0 + 1329 -34.07448 -34.07448 0 33.127433 0.94711602 -68.149028 0 + 1330 -34.07448 -34.07448 0 33.127433 0.94711601 -68.149028 0 + 1331 -34.07448 -34.07448 0 33.127433 0.947116 -68.149028 0 + 1332 -34.07448 -34.07448 0 33.127433 0.94711599 -68.149028 0 + 1333 -34.07448 -34.07448 0 33.127433 0.94711599 -68.149028 0 + 1334 -34.07448 -34.07448 0 33.127433 0.94711598 -68.149028 0 + 1335 -34.07448 -34.07448 0 33.127432 0.94711597 -68.149028 0 + 1336 -34.07448 -34.07448 0 33.127432 0.94711597 -68.149028 0 + 1337 -34.07448 -34.07448 0 33.127432 0.94711596 -68.149028 0 + 1338 -34.07448 -34.07448 0 33.127432 0.94711595 -68.149028 0 + 1339 -34.07448 -34.07448 0 33.127432 0.94711595 -68.149028 0 + 1340 -34.07448 -34.07448 0 33.127432 0.94711594 -68.149028 0 + 1341 -34.07448 -34.07448 0 33.127432 0.94711593 -68.149028 0 + 1342 -34.07448 -34.07448 0 33.127432 0.94711592 -68.149028 0 + 1343 -34.07448 -34.07448 0 33.127432 0.94711591 -68.149028 0 + 1344 -34.07448 -34.07448 0 33.127432 0.9471159 -68.149028 0 + 1345 -34.07448 -34.07448 0 33.127432 0.9471159 -68.149028 0 + 1346 -34.07448 -34.07448 0 33.127432 0.94711589 -68.149028 0 + 1347 -34.07448 -34.07448 0 33.127432 0.94711588 -68.149028 0 + 1348 -34.07448 -34.07448 0 33.127432 0.94711588 -68.149028 0 + 1349 -34.07448 -34.07448 0 33.127432 0.94711587 -68.149027 0 + 1350 -34.07448 -34.07448 0 33.127432 0.94711586 -68.149027 0 + 1351 -34.07448 -34.07448 0 33.127432 0.94711585 -68.149027 0 + 1352 -34.07448 -34.07448 0 33.127432 0.94711584 -68.149027 0 + 1353 -34.07448 -34.07448 0 33.127432 0.94711583 -68.149027 0 + 1354 -34.07448 -34.07448 0 33.127432 0.94711582 -68.149027 0 + 1355 -34.07448 -34.07448 0 33.127432 0.94711581 -68.149027 0 + 1356 -34.07448 -34.07448 0 33.127432 0.94711581 -68.149027 0 + 1357 -34.07448 -34.07448 0 33.127432 0.94711579 -68.149027 0 + 1358 -34.07448 -34.07448 0 33.127431 0.94711579 -68.149027 0 + 1359 -34.07448 -34.07448 0 33.127431 0.94711578 -68.149027 0 + 1360 -34.07448 -34.07448 0 33.127431 0.94711577 -68.149027 0 + 1361 -34.07448 -34.07448 0 33.127431 0.94711576 -68.149027 0 + 1362 -34.07448 -34.07448 0 33.127431 0.94711574 -68.149027 0 + 1363 -34.07448 -34.07448 0 33.127431 0.9471157 -68.149026 0 + 1364 -34.07448 -34.07448 0 33.127431 0.9471157 -68.149026 0 + 1365 -34.07448 -34.07448 0 33.127431 0.94711569 -68.149026 0 + 1366 -34.07448 -34.07448 0 33.127431 0.94711568 -68.149026 0 + 1367 -34.07448 -34.07448 0 33.127431 0.94711567 -68.149026 0 + 1368 -34.07448 -34.07448 0 33.127431 0.94711566 -68.149026 0 + 1369 -34.07448 -34.07448 0 33.127431 0.94711565 -68.149026 0 + 1370 -34.07448 -34.07448 0 33.127431 0.94711564 -68.149026 0 + 1371 -34.07448 -34.07448 0 33.127431 0.94711564 -68.149026 0 + 1372 -34.07448 -34.07448 0 33.127431 0.94711563 -68.149026 0 + 1373 -34.07448 -34.07448 0 33.127431 0.94711562 -68.149026 0 + 1374 -34.07448 -34.07448 0 33.127431 0.94711562 -68.149026 0 + 1375 -34.07448 -34.07448 0 33.127431 0.94711561 -68.149026 0 + 1376 -34.07448 -34.07448 0 33.12743 0.9471156 -68.149026 0 + 1377 -34.07448 -34.07448 0 33.12743 0.94711559 -68.149026 0 + 1378 -34.07448 -34.07448 0 33.12743 0.94711558 -68.149026 0 + 1379 -34.07448 -34.07448 0 33.12743 0.94711557 -68.149026 0 + 1380 -34.07448 -34.07448 0 33.12743 0.94711556 -68.149025 0 + 1381 -34.07448 -34.07448 0 33.12743 0.94711555 -68.149025 0 + 1382 -34.07448 -34.07448 0 33.12743 0.94711555 -68.149025 0 + 1383 -34.07448 -34.07448 0 33.12743 0.94711554 -68.149025 0 + 1384 -34.07448 -34.07448 0 33.12743 0.94711554 -68.149025 0 + 1385 -34.07448 -34.07448 0 33.12743 0.94711553 -68.149025 0 + 1386 -34.07448 -34.07448 0 33.12743 0.94711552 -68.149025 0 + 1387 -34.07448 -34.07448 0 33.12743 0.94711551 -68.149025 0 + 1388 -34.07448 -34.07448 0 33.12743 0.94711549 -68.149025 0 + 1389 -34.07448 -34.07448 0 33.12743 0.94711548 -68.149025 0 + 1390 -34.07448 -34.07448 0 33.12743 0.94711547 -68.149025 0 + 1391 -34.07448 -34.07448 0 33.12743 0.94711547 -68.149025 0 + 1392 -34.07448 -34.07448 0 33.12743 0.94711546 -68.149025 0 + 1393 -34.07448 -34.07448 0 33.12743 0.94711546 -68.149025 0 + 1394 -34.07448 -34.07448 0 33.12743 0.94711545 -68.149025 0 + 1395 -34.07448 -34.07448 0 33.12743 0.94711544 -68.149025 0 + 1396 -34.07448 -34.07448 0 33.12743 0.94711544 -68.149025 0 + 1397 -34.07448 -34.07448 0 33.12743 0.94711543 -68.149025 0 + 1398 -34.07448 -34.07448 0 33.127429 0.94711542 -68.149025 0 + 1399 -34.07448 -34.07448 0 33.127429 0.94711541 -68.149025 0 + 1400 -34.07448 -34.07448 0 33.127429 0.9471154 -68.149024 0 + 1401 -34.07448 -34.07448 0 33.127429 0.94711539 -68.149024 0 + 1402 -34.07448 -34.07448 0 33.127429 0.94711538 -68.149024 0 + 1403 -34.07448 -34.07448 0 33.127429 0.94711537 -68.149024 0 + 1404 -34.07448 -34.07448 0 33.127429 0.94711536 -68.149024 0 + 1405 -34.07448 -34.07448 0 33.127429 0.94711536 -68.149024 0 + 1406 -34.07448 -34.07448 0 33.127429 0.94711535 -68.149024 0 + 1407 -34.07448 -34.07448 0 33.127429 0.94711534 -68.149024 0 + 1408 -34.07448 -34.07448 0 33.127429 0.94711533 -68.149024 0 + 1409 -34.07448 -34.07448 0 33.127429 0.94711532 -68.149024 0 + 1410 -34.07448 -34.07448 0 33.127429 0.94711531 -68.149024 0 + 1411 -34.07448 -34.07448 0 33.127429 0.9471153 -68.149024 0 + 1412 -34.07448 -34.07448 0 33.127429 0.94711529 -68.149024 0 + 1413 -34.07448 -34.07448 0 33.127429 0.94711528 -68.149024 0 + 1414 -34.07448 -34.07448 0 33.127429 0.94711528 -68.149024 0 + 1415 -34.07448 -34.07448 0 33.127429 0.94711527 -68.149024 0 + 1416 -34.07448 -34.07448 0 33.127429 0.94711527 -68.149024 0 + 1417 -34.07448 -34.07448 0 33.127429 0.94711526 -68.149024 0 + 1418 -34.07448 -34.07448 0 33.127429 0.94711525 -68.149023 0 + 1419 -34.07448 -34.07448 0 33.127428 0.94711524 -68.149023 0 + 1420 -34.07448 -34.07448 0 33.127428 0.94711523 -68.149023 0 + 1421 -34.07448 -34.07448 0 33.127428 0.94711522 -68.149023 0 + 1422 -34.07448 -34.07448 0 33.127428 0.94711521 -68.149023 0 + 1423 -34.07448 -34.07448 0 33.127428 0.9471152 -68.149023 0 + 1424 -34.07448 -34.07448 0 33.127428 0.94711519 -68.149023 0 + 1425 -34.07448 -34.07448 0 33.127428 0.94711518 -68.149023 0 + 1426 -34.07448 -34.07448 0 33.127428 0.94711517 -68.149023 0 + 1427 -34.07448 -34.07448 0 33.127428 0.94711517 -68.149023 0 + 1428 -34.07448 -34.07448 0 33.127428 0.94711516 -68.149023 0 + 1429 -34.07448 -34.07448 0 33.127428 0.94711515 -68.149023 0 + 1430 -34.07448 -34.07448 0 33.127428 0.94711515 -68.149023 0 + 1431 -34.07448 -34.07448 0 33.127428 0.94711513 -68.149023 0 + 1432 -34.07448 -34.07448 0 33.127428 0.94711512 -68.149023 0 + 1433 -34.07448 -34.07448 0 33.127428 0.94711511 -68.149023 0 + 1434 -34.07448 -34.07448 0 33.127428 0.94711511 -68.149023 0 + 1435 -34.07448 -34.07448 0 33.127428 0.9471151 -68.149023 0 + 1436 -34.07448 -34.07448 0 33.127428 0.94711509 -68.149022 0 + 1437 -34.07448 -34.07448 0 33.127428 0.94711509 -68.149022 0 + 1438 -34.07448 -34.07448 0 33.127428 0.94711508 -68.149022 0 + 1439 -34.07448 -34.07448 0 33.127428 0.94711507 -68.149022 0 + 1440 -34.07448 -34.07448 0 33.127428 0.94711507 -68.149022 0 + 1441 -34.07448 -34.07448 0 33.127428 0.94711506 -68.149022 0 + 1442 -34.07448 -34.07448 0 33.127427 0.94711505 -68.149022 0 + 1443 -34.07448 -34.07448 0 33.127427 0.94711504 -68.149022 0 + 1444 -34.07448 -34.07448 0 33.127427 0.94711494 -68.149021 0 + 1445 -34.07448 -34.07448 0 33.127427 0.94711493 -68.149021 0 + 1446 -34.07448 -34.07448 0 33.127427 0.94711493 -68.149021 0 + 1447 -34.07448 -34.07448 0 33.127427 0.94711491 -68.149021 0 + 1448 -34.07448 -34.07448 0 33.127427 0.9471149 -68.149021 0 + 1449 -34.07448 -34.07448 0 33.127426 0.94711487 -68.149021 0 + 1450 -34.07448 -34.07448 0 33.127426 0.94711483 -68.149021 0 + 1451 -34.07448 -34.07448 0 33.127426 0.94711483 -68.149021 0 + 1452 -34.07448 -34.07448 0 33.127426 0.94711482 -68.149021 0 + 1453 -34.07448 -34.07448 0 33.127426 0.94711482 -68.149021 0 + 1454 -34.07448 -34.07448 0 33.127426 0.94711481 -68.149021 0 + 1455 -34.07448 -34.07448 0 33.127426 0.94711479 -68.149021 0 + 1456 -34.07448 -34.07448 0 33.127426 0.94711478 -68.14902 0 + 1457 -34.07448 -34.07448 0 33.127426 0.94711478 -68.14902 0 + 1458 -34.07448 -34.07448 0 33.127426 0.94711477 -68.14902 0 + 1459 -34.07448 -34.07448 0 33.127426 0.94711476 -68.14902 0 + 1460 -34.07448 -34.07448 0 33.127426 0.94711476 -68.14902 0 + 1461 -34.07448 -34.07448 0 33.127426 0.94711475 -68.14902 0 + 1462 -34.07448 -34.07448 0 33.127426 0.94711475 -68.14902 0 + 1463 -34.07448 -34.07448 0 33.127426 0.94711474 -68.14902 0 + 1464 -34.07448 -34.07448 0 33.127426 0.94711473 -68.14902 0 + 1465 -34.07448 -34.07448 0 33.127426 0.94711472 -68.14902 0 + 1466 -34.07448 -34.07448 0 33.127426 0.94711471 -68.14902 0 + 1467 -34.07448 -34.07448 0 33.127426 0.9471147 -68.14902 0 + 1468 -34.07448 -34.07448 0 33.127426 0.9471147 -68.14902 0 + 1469 -34.07448 -34.07448 0 33.127425 0.94711469 -68.14902 0 + 1470 -34.07448 -34.07448 0 33.127425 0.94711468 -68.14902 0 + 1471 -34.07448 -34.07448 0 33.127425 0.94711466 -68.14902 0 + 1472 -34.07448 -34.07448 0 33.127425 0.94711466 -68.14902 0 + 1473 -34.07448 -34.07448 0 33.127425 0.94711464 -68.14902 0 + 1474 -34.07448 -34.07448 0 33.127425 0.94711463 -68.14902 0 + 1475 -34.07448 -34.07448 0 33.127425 0.94711463 -68.149019 0 + 1476 -34.07448 -34.07448 0 33.127425 0.94711462 -68.149019 0 + 1477 -34.07448 -34.07448 0 33.127425 0.9471146 -68.149019 0 + 1478 -34.07448 -34.07448 0 33.127425 0.94711458 -68.149019 0 + 1479 -34.07448 -34.07448 0 33.127425 0.94711457 -68.149019 0 + 1480 -34.07448 -34.07448 0 33.127425 0.94711457 -68.149019 0 + 1481 -34.07448 -34.07448 0 33.127425 0.94711456 -68.149019 0 + 1482 -34.07448 -34.07448 0 33.127425 0.94711455 -68.149019 0 + 1483 -34.07448 -34.07448 0 33.127425 0.94711454 -68.149019 0 + 1484 -34.07448 -34.07448 0 33.127425 0.94711453 -68.149019 0 + 1485 -34.07448 -34.07448 0 33.127425 0.94711452 -68.149019 0 + 1486 -34.07448 -34.07448 0 33.127425 0.94711452 -68.149019 0 + 1487 -34.07448 -34.07448 0 33.127425 0.94711451 -68.149019 0 + 1488 -34.07448 -34.07448 0 33.127424 0.9471145 -68.149019 0 + 1489 -34.07448 -34.07448 0 33.127424 0.94711449 -68.149019 0 + 1490 -34.07448 -34.07448 0 33.127424 0.94711448 -68.149019 0 + 1491 -34.07448 -34.07448 0 33.127424 0.94711447 -68.149018 0 + 1492 -34.07448 -34.07448 0 33.127424 0.94711447 -68.149018 0 + 1493 -34.07448 -34.07448 0 33.127424 0.94711446 -68.149018 0 + 1494 -34.07448 -34.07448 0 33.127424 0.94711445 -68.149018 0 + 1495 -34.07448 -34.07448 0 33.127424 0.94711444 -68.149018 0 + 1496 -34.07448 -34.07448 0 33.127424 0.94711443 -68.149018 0 + 1497 -34.07448 -34.07448 0 33.127424 0.94711443 -68.149018 0 + 1498 -34.07448 -34.07448 0 33.127424 0.94711442 -68.149018 0 + 1499 -34.07448 -34.07448 0 33.127424 0.94711441 -68.149018 0 + 1500 -34.07448 -34.07448 0 33.127424 0.94711441 -68.149018 0 + 1501 -34.07448 -34.07448 0 33.127424 0.9471144 -68.149018 0 + 1502 -34.07448 -34.07448 0 33.127424 0.9471144 -68.149018 0 + 1503 -34.07448 -34.07448 0 33.127424 0.94711439 -68.149018 0 + 1504 -34.07448 -34.07448 0 33.127424 0.94711438 -68.149018 0 + 1505 -34.07448 -34.07448 0 33.127424 0.94711438 -68.149018 0 + 1506 -34.07448 -34.07448 0 33.127424 0.94711436 -68.149018 0 + 1507 -34.07448 -34.07448 0 33.127424 0.94711436 -68.149018 0 + 1508 -34.07448 -34.07448 0 33.127424 0.94711435 -68.149018 0 + 1509 -34.07448 -34.07448 0 33.127424 0.94711434 -68.149018 0 + 1510 -34.07448 -34.07448 0 33.127424 0.94711433 -68.149018 0 + 1511 -34.07448 -34.07448 0 33.127423 0.94711432 -68.149017 0 + 1512 -34.07448 -34.07448 0 33.127423 0.9471143 -68.149017 0 + 1513 -34.07448 -34.07448 0 33.127423 0.94711428 -68.149017 0 + 1514 -34.07448 -34.07448 0 33.127423 0.94711428 -68.149017 0 + 1515 -34.07448 -34.07448 0 33.127423 0.94711427 -68.149017 0 + 1516 -34.07448 -34.07448 0 33.127423 0.94711426 -68.149017 0 + 1517 -34.07448 -34.07448 0 33.127423 0.94711426 -68.149017 0 + 1518 -34.07448 -34.07448 0 33.127423 0.94711425 -68.149017 0 + 1519 -34.07448 -34.07448 0 33.127423 0.94711424 -68.149017 0 + 1520 -34.07448 -34.07448 0 33.127423 0.94711423 -68.149017 0 + 1521 -34.07448 -34.07448 0 33.127423 0.94711421 -68.149017 0 + 1522 -34.07448 -34.07448 0 33.127423 0.9471142 -68.149017 0 + 1523 -34.07448 -34.07448 0 33.127423 0.94711419 -68.149017 0 + 1524 -34.07448 -34.07448 0 33.127423 0.94711418 -68.149017 0 + 1525 -34.07448 -34.07448 0 33.127423 0.94711417 -68.149017 0 + 1526 -34.07448 -34.07448 0 33.127423 0.94711417 -68.149016 0 + 1527 -34.07448 -34.07448 0 33.127423 0.94711416 -68.149016 0 + 1528 -34.07448 -34.07448 0 33.127423 0.94711415 -68.149016 0 + 1529 -34.07448 -34.07448 0 33.127422 0.94711414 -68.149016 0 + 1530 -34.07448 -34.07448 0 33.127422 0.94711413 -68.149016 0 + 1531 -34.07448 -34.07448 0 33.127422 0.94711413 -68.149016 0 + 1532 -34.07448 -34.07448 0 33.127422 0.94711412 -68.149016 0 + 1533 -34.07448 -34.07448 0 33.127422 0.94711411 -68.149016 0 + 1534 -34.07448 -34.07448 0 33.127422 0.94711411 -68.149016 0 + 1535 -34.07448 -34.07448 0 33.127422 0.9471141 -68.149016 0 + 1536 -34.07448 -34.07448 0 33.127422 0.9471141 -68.149016 0 + 1537 -34.07448 -34.07448 0 33.127422 0.94711409 -68.149016 0 + 1538 -34.07448 -34.07448 0 33.127422 0.94711408 -68.149016 0 + 1539 -34.07448 -34.07448 0 33.127422 0.94711407 -68.149016 0 + 1540 -34.07448 -34.07448 0 33.127422 0.94711407 -68.149016 0 + 1541 -34.07448 -34.07448 0 33.127422 0.94711406 -68.149016 0 + 1542 -34.07448 -34.07448 0 33.127422 0.94711405 -68.149016 0 + 1543 -34.07448 -34.07448 0 33.127422 0.94711404 -68.149016 0 + 1544 -34.07448 -34.07448 0 33.127422 0.94711403 -68.149016 0 + 1545 -34.07448 -34.07448 0 33.127422 0.94711402 -68.149016 0 + 1546 -34.07448 -34.07448 0 33.127422 0.94711401 -68.149015 0 + 1547 -34.07448 -34.07448 0 33.127422 0.947114 -68.149015 0 + 1548 -34.07448 -34.07448 0 33.127422 0.947114 -68.149015 0 + 1549 -34.07448 -34.07448 0 33.127422 0.94711399 -68.149015 0 + 1550 -34.07448 -34.07448 0 33.127422 0.94711399 -68.149015 0 + 1551 -34.07448 -34.07448 0 33.127422 0.94711398 -68.149015 0 + 1552 -34.07448 -34.07448 0 33.127422 0.94711397 -68.149015 0 + 1553 -34.07448 -34.07448 0 33.127422 0.94711396 -68.149015 0 + 1554 -34.07448 -34.07448 0 33.127422 0.94711396 -68.149015 0 + 1555 -34.07448 -34.07448 0 33.127421 0.94711395 -68.149015 0 + 1556 -34.07448 -34.07448 0 33.127421 0.94711395 -68.149015 0 + 1557 -34.07448 -34.07448 0 33.127421 0.94711394 -68.149015 0 + 1558 -34.07448 -34.07448 0 33.127421 0.94711393 -68.149015 0 + 1559 -34.07448 -34.07448 0 33.127421 0.94711392 -68.149015 0 + 1560 -34.07448 -34.07448 0 33.127421 0.94711391 -68.149015 0 + 1561 -34.07448 -34.07448 0 33.127421 0.94711391 -68.149015 0 + 1562 -34.07448 -34.07448 0 33.127421 0.9471139 -68.149015 0 + 1563 -34.07448 -34.07448 0 33.127421 0.9471139 -68.149015 0 + 1564 -34.07448 -34.07448 0 33.127421 0.94711389 -68.149015 0 + 1565 -34.07448 -34.07448 0 33.127421 0.94711388 -68.149015 0 + 1566 -34.07448 -34.07448 0 33.127421 0.94711387 -68.149015 0 + 1567 -34.07448 -34.07448 0 33.127421 0.94711386 -68.149015 0 + 1568 -34.07448 -34.07448 0 33.127421 0.94711386 -68.149014 0 + 1569 -34.07448 -34.07448 0 33.127421 0.94711385 -68.149014 0 + 1570 -34.07448 -34.07448 0 33.127421 0.94711384 -68.149014 0 + 1571 -34.07448 -34.07448 0 33.127421 0.94711384 -68.149014 0 + 1572 -34.07448 -34.07448 0 33.127421 0.94711383 -68.149014 0 + 1573 -34.07448 -34.07448 0 33.127421 0.94711383 -68.149014 0 + 1574 -34.07448 -34.07448 0 33.127421 0.94711381 -68.149014 0 + 1575 -34.07448 -34.07448 0 33.127421 0.9471138 -68.149014 0 + 1576 -34.07448 -34.07448 0 33.127421 0.9471138 -68.149014 0 + 1577 -34.07448 -34.07448 0 33.127421 0.94711379 -68.149014 0 + 1578 -34.07448 -34.07448 0 33.127421 0.94711379 -68.149014 0 + 1579 -34.07448 -34.07448 0 33.127421 0.94711378 -68.149014 0 + 1580 -34.07448 -34.07448 0 33.127421 0.94711378 -68.149014 0 + 1581 -34.07448 -34.07448 0 33.12742 0.94711377 -68.149014 0 + 1582 -34.07448 -34.07448 0 33.12742 0.94711376 -68.149014 0 + 1583 -34.07448 -34.07448 0 33.12742 0.94711376 -68.149014 0 + 1584 -34.07448 -34.07448 0 33.12742 0.94711375 -68.149014 0 + 1585 -34.07448 -34.07448 0 33.12742 0.94711374 -68.149014 0 + 1586 -34.07448 -34.07448 0 33.12742 0.94711373 -68.149014 0 + 1587 -34.07448 -34.07448 0 33.12742 0.94711372 -68.149014 0 + 1588 -34.07448 -34.07448 0 33.12742 0.94711372 -68.149014 0 + 1589 -34.07448 -34.07448 0 33.12742 0.94711371 -68.149014 0 + 1590 -34.07448 -34.07448 0 33.12742 0.94711369 -68.149013 0 + 1591 -34.07448 -34.07448 0 33.12742 0.94711369 -68.149013 0 + 1592 -34.07448 -34.07448 0 33.12742 0.94711363 -68.149013 0 + 1593 -34.07448 -34.07448 0 33.12742 0.94711362 -68.149013 0 + 1594 -34.07448 -34.07448 0 33.12742 0.94711361 -68.149013 0 + 1595 -34.07448 -34.07448 0 33.12742 0.9471136 -68.149013 0 + 1596 -34.07448 -34.07448 0 33.127419 0.94711359 -68.149013 0 + 1597 -34.07448 -34.07448 0 33.127419 0.94711356 -68.149013 0 + 1598 -34.07448 -34.07448 0 33.127419 0.94711356 -68.149013 0 + 1599 -34.07448 -34.07448 0 33.127419 0.94711355 -68.149013 0 + 1600 -34.07448 -34.07448 0 33.127419 0.94711355 -68.149012 0 + 1601 -34.07448 -34.07448 0 33.127419 0.94711354 -68.149012 0 + 1602 -34.07448 -34.07448 0 33.127419 0.94711353 -68.149012 0 + 1603 -34.07448 -34.07448 0 33.127419 0.94711352 -68.149012 0 + 1604 -34.07448 -34.07448 0 33.127419 0.94711351 -68.149012 0 + 1605 -34.07448 -34.07448 0 33.127419 0.94711351 -68.149012 0 + 1606 -34.07448 -34.07448 0 33.127419 0.9471135 -68.149012 0 + 1607 -34.07448 -34.07448 0 33.127419 0.94711349 -68.149012 0 + 1608 -34.07448 -34.07448 0 33.127419 0.94711348 -68.149012 0 + 1609 -34.07448 -34.07448 0 33.127419 0.94711347 -68.149012 0 + 1610 -34.07448 -34.07448 0 33.127419 0.94711347 -68.149012 0 + 1611 -34.07448 -34.07448 0 33.127419 0.94711346 -68.149012 0 + 1612 -34.07448 -34.07448 0 33.127419 0.94711345 -68.149012 0 + 1613 -34.07448 -34.07448 0 33.127419 0.94711345 -68.149012 0 + 1614 -34.07448 -34.07448 0 33.127419 0.94711344 -68.149012 0 + 1615 -34.07448 -34.07448 0 33.127419 0.94711344 -68.149012 0 + 1616 -34.07448 -34.07448 0 33.127419 0.94711342 -68.149012 0 + 1617 -34.07448 -34.07448 0 33.127419 0.94711341 -68.149012 0 + 1618 -34.07448 -34.07448 0 33.127418 0.9471134 -68.149012 0 + 1619 -34.07448 -34.07448 0 33.127418 0.9471134 -68.149012 0 + 1620 -34.07448 -34.07448 0 33.127418 0.94711339 -68.149011 0 + 1621 -34.07448 -34.07448 0 33.127418 0.94711339 -68.149011 0 + 1622 -34.07448 -34.07448 0 33.127418 0.94711338 -68.149011 0 + 1623 -34.07448 -34.07448 0 33.127418 0.94711337 -68.149011 0 + 1624 -34.07448 -34.07448 0 33.127418 0.94711337 -68.149011 0 + 1625 -34.07448 -34.07448 0 33.127418 0.94711336 -68.149011 0 + 1626 -34.07448 -34.07448 0 33.127418 0.94711335 -68.149011 0 + 1627 -34.07448 -34.07448 0 33.127418 0.94711334 -68.149011 0 + 1628 -34.07448 -34.07448 0 33.127418 0.94711334 -68.149011 0 + 1629 -34.07448 -34.07448 0 33.127418 0.94711333 -68.149011 0 + 1630 -34.07448 -34.07448 0 33.127418 0.94711333 -68.149011 0 + 1631 -34.07448 -34.07448 0 33.127418 0.94711332 -68.149011 0 + 1632 -34.07448 -34.07448 0 33.127418 0.94711331 -68.149011 0 + 1633 -34.07448 -34.07448 0 33.127418 0.9471133 -68.149011 0 + 1634 -34.07448 -34.07448 0 33.127418 0.9471133 -68.149011 0 + 1635 -34.07448 -34.07448 0 33.127418 0.94711329 -68.149011 0 + 1636 -34.07448 -34.07448 0 33.127418 0.94711328 -68.149011 0 + 1637 -34.07448 -34.07448 0 33.127418 0.94711327 -68.149011 0 + 1638 -34.07448 -34.07448 0 33.127418 0.94711326 -68.149011 0 + 1639 -34.07448 -34.07448 0 33.127418 0.94711326 -68.149011 0 + 1640 -34.07448 -34.07448 0 33.127418 0.94711325 -68.149011 0 + 1641 -34.07448 -34.07448 0 33.127418 0.94711325 -68.149011 0 + 1642 -34.07448 -34.07448 0 33.127418 0.94711324 -68.149011 0 + 1643 -34.07448 -34.07448 0 33.127418 0.94711324 -68.14901 0 + 1644 -34.07448 -34.07448 0 33.127418 0.94711323 -68.14901 0 + 1645 -34.07448 -34.07448 0 33.127417 0.94711322 -68.14901 0 + 1646 -34.07448 -34.07448 0 33.127417 0.94711322 -68.14901 0 + 1647 -34.07448 -34.07448 0 33.127417 0.94711321 -68.14901 0 + 1648 -34.07448 -34.07448 0 33.127417 0.9471132 -68.14901 0 + 1649 -34.07448 -34.07448 0 33.127417 0.94711319 -68.14901 0 + 1650 -34.07448 -34.07448 0 33.127417 0.94711318 -68.14901 0 + 1651 -34.07448 -34.07448 0 33.127417 0.94711318 -68.14901 0 + 1652 -34.07448 -34.07448 0 33.127417 0.94711317 -68.14901 0 + 1653 -34.07448 -34.07448 0 33.127417 0.94711317 -68.14901 0 + 1654 -34.07448 -34.07448 0 33.127417 0.94711316 -68.14901 0 + 1655 -34.07448 -34.07448 0 33.127417 0.94711316 -68.14901 0 + 1656 -34.07448 -34.07448 0 33.127417 0.94711315 -68.14901 0 + 1657 -34.07448 -34.07448 0 33.127417 0.94711314 -68.14901 0 + 1658 -34.07448 -34.07448 0 33.127417 0.94711313 -68.14901 0 + 1659 -34.07448 -34.07448 0 33.127417 0.94711313 -68.14901 0 + 1660 -34.07448 -34.07448 0 33.127417 0.94711312 -68.14901 0 + 1661 -34.07448 -34.07448 0 33.127417 0.94711311 -68.14901 0 + 1662 -34.07448 -34.07448 0 33.127417 0.9471131 -68.14901 0 + 1663 -34.07448 -34.07448 0 33.127417 0.9471131 -68.14901 0 + 1664 -34.07448 -34.07448 0 33.127417 0.94711309 -68.14901 0 + 1665 -34.07448 -34.07448 0 33.127417 0.94711309 -68.14901 0 + 1666 -34.07448 -34.07448 0 33.127417 0.94711308 -68.149009 0 + 1667 -34.07448 -34.07448 0 33.127417 0.94711308 -68.149009 0 + 1668 -34.07448 -34.07448 0 33.127417 0.94711307 -68.149009 0 + 1669 -34.07448 -34.07448 0 33.127417 0.94711306 -68.149009 0 + 1670 -34.07448 -34.07448 0 33.127417 0.94711305 -68.149009 0 + 1671 -34.07448 -34.07448 0 33.127417 0.94711304 -68.149009 0 + 1672 -34.07448 -34.07448 0 33.127416 0.94711304 -68.149009 0 + 1673 -34.07448 -34.07448 0 33.127416 0.94711303 -68.149009 0 + 1674 -34.07448 -34.07448 0 33.127416 0.94711302 -68.149009 0 + 1675 -34.07448 -34.07448 0 33.127416 0.94711302 -68.149009 0 + 1676 -34.07448 -34.07448 0 33.127416 0.94711301 -68.149009 0 + 1677 -34.07448 -34.07448 0 33.127416 0.94711301 -68.149009 0 + 1678 -34.07448 -34.07448 0 33.127416 0.947113 -68.149009 0 + 1679 -34.07448 -34.07448 0 33.127416 0.94711299 -68.149009 0 + 1680 -34.07448 -34.07448 0 33.127416 0.94711298 -68.149009 0 + 1681 -34.07448 -34.07448 0 33.127416 0.94711297 -68.149009 0 + 1682 -34.07448 -34.07448 0 33.127416 0.94711297 -68.149009 0 + 1683 -34.07448 -34.07448 0 33.127416 0.94711296 -68.149009 0 + 1684 -34.07448 -34.07448 0 33.127416 0.94711296 -68.149009 0 + 1685 -34.07448 -34.07448 0 33.127416 0.94711295 -68.149009 0 + 1686 -34.07448 -34.07448 0 33.127416 0.94711294 -68.149009 0 + 1687 -34.07448 -34.07448 0 33.127416 0.94711293 -68.149008 0 + 1688 -34.07448 -34.07448 0 33.127416 0.94711292 -68.149008 0 + 1689 -34.07448 -34.07448 0 33.127416 0.94711292 -68.149008 0 + 1690 -34.07448 -34.07448 0 33.127416 0.9471129 -68.149008 0 + 1691 -34.07448 -34.07448 0 33.127416 0.9471129 -68.149008 0 + 1692 -34.07448 -34.07448 0 33.127416 0.94711289 -68.149008 0 + 1693 -34.07448 -34.07448 0 33.127416 0.94711288 -68.149008 0 + 1694 -34.07448 -34.07448 0 33.127416 0.94711287 -68.149008 0 + 1695 -34.07448 -34.07448 0 33.127416 0.94711287 -68.149008 0 + 1696 -34.07448 -34.07448 0 33.127415 0.94711286 -68.149008 0 + 1697 -34.07448 -34.07448 0 33.127415 0.94711286 -68.149008 0 + 1698 -34.07448 -34.07448 0 33.127415 0.94711285 -68.149008 0 + 1699 -34.07448 -34.07448 0 33.127415 0.94711285 -68.149008 0 + 1700 -34.07448 -34.07448 0 33.127415 0.94711284 -68.149008 0 + 1701 -34.07448 -34.07448 0 33.127415 0.94711283 -68.149008 0 + 1702 -34.07448 -34.07448 0 33.127415 0.94711282 -68.149008 0 + 1703 -34.07448 -34.07448 0 33.127415 0.94711282 -68.149008 0 + 1704 -34.07448 -34.07448 0 33.127415 0.94711281 -68.149008 0 + 1705 -34.07448 -34.07448 0 33.127415 0.9471128 -68.149008 0 + 1706 -34.07448 -34.07448 0 33.127415 0.94711279 -68.149008 0 + 1707 -34.07448 -34.07448 0 33.127415 0.94711278 -68.149008 0 + 1708 -34.07448 -34.07448 0 33.127415 0.94711277 -68.149007 0 + 1709 -34.07448 -34.07448 0 33.127415 0.94711277 -68.149007 0 + 1710 -34.07448 -34.07448 0 33.127415 0.94711276 -68.149007 0 + 1711 -34.07448 -34.07448 0 33.127415 0.94711275 -68.149007 0 + 1712 -34.07448 -34.07448 0 33.127415 0.94711274 -68.149007 0 + 1713 -34.07448 -34.07448 0 33.127415 0.94711274 -68.149007 0 + 1714 -34.07448 -34.07448 0 33.127415 0.94711274 -68.149007 0 + 1715 -34.07448 -34.07448 0 33.127415 0.94711273 -68.149007 0 + 1716 -34.07448 -34.07448 0 33.127415 0.94711272 -68.149007 0 + 1717 -34.07448 -34.07448 0 33.127415 0.94711272 -68.149007 0 + 1718 -34.07448 -34.07448 0 33.127415 0.94711271 -68.149007 0 + 1719 -34.07448 -34.07448 0 33.127415 0.9471127 -68.149007 0 + 1720 -34.07448 -34.07448 0 33.127415 0.9471127 -68.149007 0 + 1721 -34.07448 -34.07448 0 33.127415 0.94711269 -68.149007 0 + 1722 -34.07448 -34.07448 0 33.127415 0.94711268 -68.149007 0 + 1723 -34.07448 -34.07448 0 33.127414 0.94711267 -68.149007 0 + 1724 -34.07448 -34.07448 0 33.127414 0.94711267 -68.149007 0 + 1725 -34.07448 -34.07448 0 33.127414 0.94711266 -68.149007 0 + 1726 -34.07448 -34.07448 0 33.127414 0.94711265 -68.149007 0 + 1727 -34.07448 -34.07448 0 33.127414 0.94711263 -68.149007 0 + 1728 -34.07448 -34.07448 0 33.127414 0.9471126 -68.149006 0 + 1729 -34.07448 -34.07448 0 33.127414 0.9471126 -68.149006 0 + 1730 -34.07448 -34.07448 0 33.127414 0.9471126 -68.149006 0 + 1731 -34.07448 -34.07448 0 33.127414 0.94711259 -68.149006 0 + 1732 -34.07448 -34.07448 0 33.127414 0.94711258 -68.149006 0 + 1733 -34.07448 -34.07448 0 33.127414 0.94711257 -68.149006 0 + 1734 -34.07448 -34.07448 0 33.127414 0.94711257 -68.149006 0 + 1735 -34.07448 -34.07448 0 33.127414 0.94711256 -68.149006 0 + 1736 -34.07448 -34.07448 0 33.127414 0.94711256 -68.149006 0 + 1737 -34.07448 -34.07448 0 33.127414 0.94711255 -68.149006 0 + 1738 -34.07448 -34.07448 0 33.127414 0.94711255 -68.149006 0 + 1739 -34.07448 -34.07448 0 33.127414 0.94711254 -68.149006 0 + 1740 -34.07448 -34.07448 0 33.127414 0.94711253 -68.149006 0 + 1741 -34.07448 -34.07448 0 33.127414 0.94711252 -68.149006 0 + 1742 -34.07448 -34.07448 0 33.127414 0.94711251 -68.149006 0 + 1743 -34.07448 -34.07448 0 33.127414 0.94711251 -68.149006 0 + 1744 -34.07448 -34.07448 0 33.127414 0.9471125 -68.149006 0 + 1745 -34.07448 -34.07448 0 33.127414 0.9471125 -68.149006 0 + 1746 -34.07448 -34.07448 0 33.127413 0.94711249 -68.149006 0 + 1747 -34.07448 -34.07448 0 33.127413 0.94711248 -68.149006 0 + 1748 -34.07448 -34.07448 0 33.127413 0.94711247 -68.149006 0 + 1749 -34.07448 -34.07448 0 33.127413 0.94711246 -68.149005 0 + 1750 -34.07448 -34.07448 0 33.127413 0.94711246 -68.149005 0 + 1751 -34.07448 -34.07448 0 33.127413 0.94711245 -68.149005 0 + 1752 -34.07448 -34.07448 0 33.127413 0.94711245 -68.149005 0 + 1753 -34.07448 -34.07448 0 33.127413 0.94711244 -68.149005 0 + 1754 -34.07448 -34.07448 0 33.127413 0.94711244 -68.149005 0 + 1755 -34.07448 -34.07448 0 33.127413 0.94711243 -68.149005 0 + 1756 -34.07448 -34.07448 0 33.127413 0.94711242 -68.149005 0 + 1757 -34.07448 -34.07448 0 33.127413 0.94711241 -68.149005 0 + 1758 -34.07448 -34.07448 0 33.127413 0.94711241 -68.149005 0 + 1759 -34.07448 -34.07448 0 33.127413 0.9471124 -68.149005 0 + 1760 -34.07448 -34.07448 0 33.127413 0.94711239 -68.149005 0 + 1761 -34.07448 -34.07448 0 33.127413 0.94711238 -68.149005 0 + 1762 -34.07448 -34.07448 0 33.127413 0.94711237 -68.149005 0 + 1763 -34.07448 -34.07448 0 33.127413 0.94711237 -68.149005 0 + 1764 -34.07448 -34.07448 0 33.127413 0.94711236 -68.149005 0 + 1765 -34.07448 -34.07448 0 33.127413 0.94711236 -68.149005 0 + 1766 -34.07448 -34.07448 0 33.127413 0.94711235 -68.149005 0 + 1767 -34.07448 -34.07448 0 33.127413 0.94711235 -68.149005 0 + 1768 -34.07448 -34.07448 0 33.127413 0.94711234 -68.149005 0 + 1769 -34.07448 -34.07448 0 33.127413 0.94711233 -68.149005 0 + 1770 -34.07448 -34.07448 0 33.127413 0.94711232 -68.149005 0 + 1771 -34.07448 -34.07448 0 33.127413 0.94711231 -68.149005 0 + 1772 -34.07448 -34.07448 0 33.127412 0.94711231 -68.149004 0 + 1773 -34.07448 -34.07448 0 33.127412 0.94711231 -68.149004 0 + 1774 -34.07448 -34.07448 0 33.127412 0.9471123 -68.149004 0 + 1775 -34.07448 -34.07448 0 33.127412 0.9471123 -68.149004 0 + 1776 -34.07448 -34.07448 0 33.127412 0.94711229 -68.149004 0 + 1777 -34.07448 -34.07448 0 33.127412 0.94711228 -68.149004 0 + 1778 -34.07448 -34.07448 0 33.127412 0.94711228 -68.149004 0 + 1779 -34.07448 -34.07448 0 33.127412 0.94711227 -68.149004 0 + 1780 -34.07448 -34.07448 0 33.127412 0.94711226 -68.149004 0 + 1781 -34.07448 -34.07448 0 33.127412 0.94711225 -68.149004 0 + 1782 -34.07448 -34.07448 0 33.127412 0.94711224 -68.149004 0 + 1783 -34.07448 -34.07448 0 33.127412 0.94711223 -68.149004 0 + 1784 -34.07448 -34.07448 0 33.127412 0.94711222 -68.149004 0 + 1785 -34.07448 -34.07448 0 33.127412 0.94711222 -68.149004 0 + 1786 -34.07448 -34.07448 0 33.127412 0.94711221 -68.149004 0 + 1787 -34.07448 -34.07448 0 33.127412 0.9471122 -68.149004 0 + 1788 -34.07448 -34.07448 0 33.127412 0.9471122 -68.149004 0 + 1789 -34.07448 -34.07448 0 33.127412 0.94711219 -68.149004 0 + 1790 -34.07448 -34.07448 0 33.127412 0.94711219 -68.149004 0 + 1791 -34.07448 -34.07448 0 33.127412 0.94711218 -68.149004 0 + 1792 -34.07448 -34.07448 0 33.127412 0.94711217 -68.149004 0 + 1793 -34.07448 -34.07448 0 33.127412 0.94711216 -68.149004 0 + 1794 -34.07448 -34.07448 0 33.127412 0.94711216 -68.149003 0 + 1795 -34.07448 -34.07448 0 33.127412 0.94711215 -68.149003 0 + 1796 -34.07448 -34.07448 0 33.127412 0.94711214 -68.149003 0 + 1797 -34.07448 -34.07448 0 33.127412 0.94711213 -68.149003 0 + 1798 -34.07448 -34.07448 0 33.127411 0.94711212 -68.149003 0 + 1799 -34.07448 -34.07448 0 33.127411 0.94711212 -68.149003 0 + 1800 -34.07448 -34.07448 0 33.127411 0.94711211 -68.149003 0 + 1801 -34.07448 -34.07448 0 33.127411 0.94711211 -68.149003 0 + 1802 -34.07448 -34.07448 0 33.127411 0.9471121 -68.149003 0 + 1803 -34.07448 -34.07448 0 33.127411 0.9471121 -68.149003 0 + 1804 -34.07448 -34.07448 0 33.127411 0.94711209 -68.149003 0 + 1805 -34.07448 -34.07448 0 33.127411 0.94711208 -68.149003 0 + 1806 -34.07448 -34.07448 0 33.127411 0.94711207 -68.149003 0 + 1807 -34.07448 -34.07448 0 33.127411 0.94711207 -68.149003 0 + 1808 -34.07448 -34.07448 0 33.127411 0.94711206 -68.149003 0 + 1809 -34.07448 -34.07448 0 33.127411 0.94711206 -68.149003 0 + 1810 -34.07448 -34.07448 0 33.127411 0.94711205 -68.149003 0 + 1811 -34.07448 -34.07448 0 33.127411 0.94711205 -68.149003 0 + 1812 -34.07448 -34.07448 0 33.127411 0.94711204 -68.149003 0 + 1813 -34.07448 -34.07448 0 33.127411 0.94711204 -68.149003 0 + 1814 -34.07448 -34.07448 0 33.127411 0.94711203 -68.149003 0 + 1815 -34.07448 -34.07448 0 33.127411 0.94711202 -68.149003 0 + 1816 -34.07448 -34.07448 0 33.127411 0.94711201 -68.149003 0 + 1817 -34.07448 -34.07448 0 33.127411 0.94711201 -68.149003 0 + 1818 -34.07448 -34.07448 0 33.127411 0.947112 -68.149002 0 + 1819 -34.07448 -34.07448 0 33.127411 0.94711199 -68.149002 0 + 1820 -34.07448 -34.07448 0 33.127411 0.94711198 -68.149002 0 + 1821 -34.07448 -34.07448 0 33.127411 0.94711197 -68.149002 0 + 1822 -34.07448 -34.07448 0 33.127411 0.94711197 -68.149002 0 + 1823 -34.07448 -34.07448 0 33.127411 0.94711196 -68.149002 0 + 1824 -34.07448 -34.07448 0 33.127411 0.94711196 -68.149002 0 + 1825 -34.07448 -34.07448 0 33.127411 0.94711195 -68.149002 0 + 1826 -34.07448 -34.07448 0 33.12741 0.94711194 -68.149002 0 + 1827 -34.07448 -34.07448 0 33.12741 0.94711193 -68.149002 0 + 1828 -34.07448 -34.07448 0 33.12741 0.94711192 -68.149002 0 + 1829 -34.07448 -34.07448 0 33.12741 0.94711191 -68.149002 0 + 1830 -34.07448 -34.07448 0 33.12741 0.94711191 -68.149002 0 + 1831 -34.07448 -34.07448 0 33.12741 0.9471119 -68.149002 0 + 1832 -34.07448 -34.07448 0 33.12741 0.9471119 -68.149002 0 + 1833 -34.07448 -34.07448 0 33.12741 0.94711189 -68.149002 0 + 1834 -34.07448 -34.07448 0 33.12741 0.94711188 -68.149002 0 + 1835 -34.07448 -34.07448 0 33.12741 0.94711188 -68.149002 0 + 1836 -34.07448 -34.07448 0 33.12741 0.94711187 -68.149002 0 + 1837 -34.07448 -34.07448 0 33.12741 0.94711186 -68.149002 0 + 1838 -34.07448 -34.07448 0 33.12741 0.94711186 -68.149002 0 + 1839 -34.07448 -34.07448 0 33.12741 0.94711185 -68.149001 0 + 1840 -34.07448 -34.07448 0 33.12741 0.94711184 -68.149001 0 + 1841 -34.07448 -34.07448 0 33.12741 0.94711183 -68.149001 0 + 1842 -34.07448 -34.07448 0 33.12741 0.94711182 -68.149001 0 + 1843 -34.07448 -34.07448 0 33.12741 0.94711181 -68.149001 0 + 1844 -34.07448 -34.07448 0 33.12741 0.94711181 -68.149001 0 + 1845 -34.07448 -34.07448 0 33.12741 0.9471118 -68.149001 0 + 1846 -34.07448 -34.07448 0 33.12741 0.9471118 -68.149001 0 + 1847 -34.07448 -34.07448 0 33.12741 0.94711179 -68.149001 0 + 1848 -34.07448 -34.07448 0 33.12741 0.94711178 -68.149001 0 + 1849 -34.07448 -34.07448 0 33.12741 0.94711177 -68.149001 0 + 1850 -34.07448 -34.07448 0 33.12741 0.94711177 -68.149001 0 + 1851 -34.07448 -34.07448 0 33.12741 0.94711177 -68.149001 0 + 1852 -34.07448 -34.07448 0 33.127409 0.94711176 -68.149001 0 + 1853 -34.07448 -34.07448 0 33.127409 0.94711176 -68.149001 0 + 1854 -34.07448 -34.07448 0 33.127409 0.94711175 -68.149001 0 + 1855 -34.07448 -34.07448 0 33.127409 0.94711175 -68.149001 0 + 1856 -34.07448 -34.07448 0 33.127409 0.94711174 -68.149001 0 + 1857 -34.07448 -34.07448 0 33.127409 0.94711173 -68.149001 0 + 1858 -34.07448 -34.07448 0 33.127409 0.94711173 -68.149001 0 + 1859 -34.07448 -34.07448 0 33.127409 0.94711172 -68.149001 0 + 1860 -34.07448 -34.07448 0 33.127409 0.94711171 -68.149001 0 + 1861 -34.07448 -34.07448 0 33.127409 0.9471117 -68.149001 0 + 1862 -34.07448 -34.07448 0 33.127409 0.9471117 -68.149001 0 + 1863 -34.07448 -34.07448 0 33.127409 0.94711169 -68.149 0 + 1864 -34.07448 -34.07448 0 33.127409 0.94711168 -68.149 0 + 1865 -34.07448 -34.07448 0 33.127409 0.94711167 -68.149 0 + 1866 -34.07448 -34.07448 0 33.127409 0.94711167 -68.149 0 + 1867 -34.07448 -34.07448 0 33.127409 0.94711166 -68.149 0 + 1868 -34.07448 -34.07448 0 33.127409 0.94711165 -68.149 0 + 1869 -34.07448 -34.07448 0 33.127409 0.94711164 -68.149 0 + 1870 -34.07448 -34.07448 0 33.127409 0.94711163 -68.149 0 + 1871 -34.07448 -34.07448 0 33.127409 0.94711163 -68.149 0 + 1872 -34.07448 -34.07448 0 33.127409 0.94711162 -68.149 0 + 1873 -34.07448 -34.07448 0 33.127409 0.94711162 -68.149 0 + 1874 -34.07448 -34.07448 0 33.127409 0.94711161 -68.149 0 + 1875 -34.07448 -34.07448 0 33.127409 0.94711161 -68.149 0 + 1876 -34.07448 -34.07448 0 33.127409 0.9471116 -68.149 0 + 1877 -34.07448 -34.07448 0 33.127409 0.9471116 -68.149 0 + 1878 -34.07448 -34.07448 0 33.127409 0.94711159 -68.149 0 + 1879 -34.07448 -34.07448 0 33.127408 0.94711158 -68.149 0 + 1880 -34.07448 -34.07448 0 33.127408 0.94711157 -68.149 0 + 1881 -34.07448 -34.07448 0 33.127408 0.94711157 -68.149 0 + 1882 -34.07448 -34.07448 0 33.127408 0.94711156 -68.149 0 + 1883 -34.07448 -34.07448 0 33.127408 0.94711156 -68.149 0 + 1884 -34.07448 -34.07448 0 33.127408 0.94711156 -68.149 0 + 1885 -34.07448 -34.07448 0 33.127408 0.94711155 -68.149 0 + 1886 -34.07448 -34.07448 0 33.127408 0.94711154 -68.149 0 + 1887 -34.07448 -34.07448 0 33.127408 0.94711154 -68.148999 0 + 1888 -34.07448 -34.07448 0 33.127408 0.94711153 -68.148999 0 + 1889 -34.07448 -34.07448 0 33.127408 0.94711152 -68.148999 0 + 1890 -34.07448 -34.07448 0 33.127408 0.94711151 -68.148999 0 + 1891 -34.07448 -34.07448 0 33.127408 0.94711151 -68.148999 0 + 1892 -34.07448 -34.07448 0 33.127408 0.9471115 -68.148999 0 + 1893 -34.07448 -34.07448 0 33.127408 0.94711149 -68.148999 0 + 1894 -34.07448 -34.07448 0 33.127408 0.94711148 -68.148999 0 + 1895 -34.07448 -34.07448 0 33.127408 0.94711148 -68.148999 0 + 1896 -34.07448 -34.07448 0 33.127408 0.94711147 -68.148999 0 + 1897 -34.07448 -34.07448 0 33.127408 0.94711147 -68.148999 0 + 1898 -34.07448 -34.07448 0 33.127408 0.94711146 -68.148999 0 + 1899 -34.07448 -34.07448 0 33.127408 0.94711145 -68.148999 0 + 1900 -34.07448 -34.07448 0 33.127408 0.94711144 -68.148999 0 + 1901 -34.07448 -34.07448 0 33.127408 0.94711143 -68.148999 0 + 1902 -34.07448 -34.07448 0 33.127408 0.94711142 -68.148999 0 + 1903 -34.07448 -34.07448 0 33.127408 0.94711142 -68.148999 0 + 1904 -34.07448 -34.07448 0 33.127408 0.94711141 -68.148999 0 + 1905 -34.07448 -34.07448 0 33.127408 0.94711141 -68.148999 0 + 1906 -34.07448 -34.07448 0 33.127408 0.9471114 -68.148999 0 + 1907 -34.07448 -34.07448 0 33.127407 0.94711139 -68.148999 0 + 1908 -34.07448 -34.07448 0 33.127407 0.94711139 -68.148999 0 + 1909 -34.07448 -34.07448 0 33.127407 0.94711138 -68.148998 0 + 1910 -34.07448 -34.07448 0 33.127407 0.94711138 -68.148998 0 + 1911 -34.07448 -34.07448 0 33.127407 0.94711137 -68.148998 0 + 1912 -34.07448 -34.07448 0 33.127407 0.94711137 -68.148998 0 + 1913 -34.07448 -34.07448 0 33.127407 0.94711137 -68.148998 0 + 1914 -34.07448 -34.07448 0 33.127407 0.94711136 -68.148998 0 + 1915 -34.07448 -34.07448 0 33.127407 0.94711135 -68.148998 0 + 1916 -34.07448 -34.07448 0 33.127407 0.94711135 -68.148998 0 + 1917 -34.07448 -34.07448 0 33.127407 0.94711134 -68.148998 0 + 1918 -34.07448 -34.07448 0 33.127407 0.94711133 -68.148998 0 + 1919 -34.07448 -34.07448 0 33.127407 0.94711132 -68.148998 0 + 1920 -34.07448 -34.07448 0 33.127407 0.94711132 -68.148998 0 + 1921 -34.07448 -34.07448 0 33.127407 0.94711131 -68.148998 0 + 1922 -34.07448 -34.07448 0 33.127407 0.9471113 -68.148998 0 + 1923 -34.07448 -34.07448 0 33.127407 0.9471113 -68.148998 0 + 1924 -34.07448 -34.07448 0 33.127406 0.94711116 -68.148997 0 + 1925 -34.07448 -34.07448 0 33.127406 0.94711114 -68.148997 0 + 1926 -34.07448 -34.07448 0 33.127406 0.94711114 -68.148997 0 + 1927 -34.07448 -34.07448 0 33.127406 0.94711113 -68.148997 0 + 1928 -34.07448 -34.07448 0 33.127406 0.94711112 -68.148997 0 + 1929 -34.07448 -34.07448 0 33.127406 0.9471111 -68.148997 0 + 1930 -34.07448 -34.07448 0 33.127406 0.94711107 -68.148996 0 + 1931 -34.07448 -34.07448 0 33.127406 0.94711106 -68.148996 0 + 1932 -34.07448 -34.07448 0 33.127406 0.94711105 -68.148996 0 + 1933 -34.07448 -34.07448 0 33.127406 0.94711105 -68.148996 0 + 1934 -34.07448 -34.07448 0 33.127406 0.94711104 -68.148996 0 + 1935 -34.07448 -34.07448 0 33.127406 0.94711104 -68.148996 0 + 1936 -34.07448 -34.07448 0 33.127405 0.94711103 -68.148996 0 + 1937 -34.07448 -34.07448 0 33.127405 0.94711102 -68.148996 0 + 1938 -34.07448 -34.07448 0 33.127405 0.94711102 -68.148996 0 + 1939 -34.07448 -34.07448 0 33.127405 0.947111 -68.148996 0 + 1940 -34.07448 -34.07448 0 33.127405 0.94711098 -68.148996 0 + 1941 -34.07448 -34.07448 0 33.127405 0.94711098 -68.148996 0 + 1942 -34.07448 -34.07448 0 33.127405 0.94711097 -68.148996 0 + 1943 -34.07448 -34.07448 0 33.127405 0.94711097 -68.148996 0 + 1944 -34.07448 -34.07448 0 33.127405 0.94711096 -68.148996 0 + 1945 -34.07448 -34.07448 0 33.127405 0.94711095 -68.148996 0 + 1946 -34.07448 -34.07448 0 33.127405 0.94711095 -68.148996 0 + 1947 -34.07448 -34.07448 0 33.127405 0.94711094 -68.148996 0 + 1948 -34.07448 -34.07448 0 33.127405 0.94711093 -68.148996 0 + 1949 -34.07448 -34.07448 0 33.127405 0.94711093 -68.148996 0 + 1950 -34.07448 -34.07448 0 33.127405 0.94711093 -68.148996 0 + 1951 -34.07448 -34.07448 0 33.127405 0.94711092 -68.148995 0 + 1952 -34.07448 -34.07448 0 33.127405 0.94711091 -68.148995 0 + 1953 -34.07448 -34.07448 0 33.127405 0.9471109 -68.148995 0 + 1954 -34.07448 -34.07448 0 33.127405 0.9471109 -68.148995 0 + 1955 -34.07448 -34.07448 0 33.127405 0.94711089 -68.148995 0 + 1956 -34.07448 -34.07448 0 33.127405 0.94711089 -68.148995 0 + 1957 -34.07448 -34.07448 0 33.127405 0.94711088 -68.148995 0 + 1958 -34.07448 -34.07448 0 33.127405 0.94711088 -68.148995 0 + 1959 -34.07448 -34.07448 0 33.127405 0.94711087 -68.148995 0 + 1960 -34.07448 -34.07448 0 33.127405 0.94711087 -68.148995 0 + 1961 -34.07448 -34.07448 0 33.127405 0.94711086 -68.148995 0 + 1962 -34.07448 -34.07448 0 33.127405 0.94711085 -68.148995 0 + 1963 -34.07448 -34.07448 0 33.127404 0.94711085 -68.148995 0 + 1964 -34.07448 -34.07448 0 33.127404 0.94711084 -68.148995 0 + 1965 -34.07448 -34.07448 0 33.127404 0.94711084 -68.148995 0 + 1966 -34.07448 -34.07448 0 33.127404 0.94711083 -68.148995 0 + 1967 -34.07448 -34.07448 0 33.127404 0.94711082 -68.148995 0 + 1968 -34.07448 -34.07448 0 33.127404 0.94711081 -68.148995 0 + 1969 -34.07448 -34.07448 0 33.127404 0.9471108 -68.148995 0 + 1970 -34.07448 -34.07448 0 33.127404 0.9471108 -68.148995 0 + 1971 -34.07448 -34.07448 0 33.127404 0.9471108 -68.148995 0 + 1972 -34.07448 -34.07448 0 33.127404 0.94711079 -68.148995 0 + 1973 -34.07448 -34.07448 0 33.127404 0.94711079 -68.148995 0 + 1974 -34.07448 -34.07448 0 33.127404 0.94711078 -68.148995 0 + 1975 -34.07448 -34.07448 0 33.127404 0.94711078 -68.148995 0 + 1976 -34.07448 -34.07448 0 33.127404 0.94711077 -68.148995 0 + 1977 -34.07448 -34.07448 0 33.127404 0.94711076 -68.148994 0 + 1978 -34.07448 -34.07448 0 33.127404 0.94711076 -68.148994 0 + 1979 -34.07448 -34.07448 0 33.127404 0.94711075 -68.148994 0 + 1980 -34.07448 -34.07448 0 33.127404 0.94711074 -68.148994 0 + 1981 -34.07448 -34.07448 0 33.127404 0.94711074 -68.148994 0 + 1982 -34.07448 -34.07448 0 33.127404 0.94711073 -68.148994 0 + 1983 -34.07448 -34.07448 0 33.127404 0.94711073 -68.148994 0 + 1984 -34.07448 -34.07448 0 33.127404 0.94711071 -68.148994 0 + 1985 -34.07448 -34.07448 0 33.127404 0.94711071 -68.148994 0 + 1986 -34.07448 -34.07448 0 33.127404 0.9471107 -68.148994 0 + 1987 -34.07448 -34.07448 0 33.127404 0.9471107 -68.148994 0 + 1988 -34.07448 -34.07448 0 33.127404 0.94711069 -68.148994 0 + 1989 -34.07448 -34.07448 0 33.127404 0.94711068 -68.148994 0 + 1990 -34.07448 -34.07448 0 33.127403 0.94711066 -68.148994 0 + 1991 -34.07448 -34.07448 0 33.127403 0.94711063 -68.148994 0 + 1992 -34.07448 -34.07448 0 33.127403 0.94711062 -68.148994 0 + 1993 -34.07448 -34.07448 0 33.127403 0.94711062 -68.148994 0 + 1994 -34.07448 -34.07448 0 33.127403 0.94711062 -68.148994 0 + 1995 -34.07448 -34.07448 0 33.127403 0.94711061 -68.148993 0 + 1996 -34.07448 -34.07448 0 33.127403 0.9471106 -68.148993 0 + 1997 -34.07448 -34.07448 0 33.127403 0.94711059 -68.148993 0 + 1998 -34.07448 -34.07448 0 33.127403 0.94711059 -68.148993 0 + 1999 -34.07448 -34.07448 0 33.127403 0.94711058 -68.148993 0 + 2000 -34.07448 -34.07448 0 33.127403 0.94711058 -68.148993 0 +Loop time of 0.0411812 on 1 procs for 2000 steps with 15 atoms + +78.2% CPU use with 1 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = max iterations + Energy initial, next-to-last, final = + -27.3140820331247 -34.0744796896431 -34.0744796899235 + Force two-norm initial, final = 10.728716 0.00026922738 + Force max component initial, final = 6.1727999 0.0002121793 + Final line search alpha, max atom move = 1 0.0002121793 + Iterations, force evaluations = 2000 3943 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.025529 | 0.025529 | 0.025529 | 0.0 | 61.99 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.00025004 | 0.00025004 | 0.00025004 | 0.0 | 0.61 +Output | 0.012176 | 0.012176 | 0.012176 | 0.0 | 29.57 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.003226 | | | 7.83 + +Nlocal: 15 ave 15 max 15 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 105 ave 105 max 105 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 105 +Ave neighs/atom = 7 +Neighbor list builds = 0 +Dangerous builds = 0 + +Total wall time: 0:00:00 diff --git a/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.min.g++.4 b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.min.g++.4 new file mode 100644 index 0000000000..2f6f518bae --- /dev/null +++ b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4.min.g++.4 @@ -0,0 +1,2124 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +variable sname index ch4 + +units electron +newton on +boundary f f f + +atom_style electron + +read_data data.${sname} +read_data data.ch4 +Reading data file ... + orthogonal box = (-500 -500 -500) to (500 500 500) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 15 atoms + read_data CPU = 0.001 seconds + +pair_style eff/cut 100.0 +pair_coeff * * + +comm_modify vel yes + +compute effTemp all temp/eff + +compute energies all pair eff/cut +variable eke equal c_energies[1] +variable epauli equal c_energies[2] +variable ecoul equal c_energies[3] +variable erres equal c_energies[4] + +thermo 1 +thermo_style custom step etotal pe ke v_eke v_epauli v_ecoul v_erres + +min_style cg +compute 1 all property/atom spin eradius erforce +dump 2 all custom 10 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +dump 2 all custom 10 ch4.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +minimize 0 1e-6 2000 4000 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- EFF package: doi:10.1002/jcc.21637 + +@Article{Jaramillo-Botero11, + author = {A. Jaramillo-Botero and J. Su and A. Qi and Goddard, III, W. A.}, + title = {Large-Scale, Long-Term Nonadiabatic Electron Molecular Dynamics for Describing Material Properties and Phenomena in Extreme Environments}, + journal = {J.~Comp.\ Chem.}, + year = 2011, + volume = 32, + number = 3, + pages = {497--512} +} + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 102 + ghost atom cutoff = 102 + binsize = 51, bins = 20 20 20 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair eff/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.385 | 5.385 | 5.385 Mbytes + Step TotEng PotEng KinEng v_eke v_epauli v_ecoul v_erres + 0 -27.314082 -27.314082 0 24 0.10032353 -51.414406 0 + 1 -27.499639 -27.499639 0 24.170209 0.10057561 -51.770424 0 + 2 -27.683396 -27.683396 0 24.345642 0.10089134 -52.129929 0 + 3 -27.865331 -27.865331 0 24.526355 0.10127324 -52.492959 0 + 4 -28.045422 -28.045422 0 24.712409 0.10172411 -52.859555 0 + 5 -28.223645 -28.223645 0 24.903863 0.10224707 -53.229755 0 + 6 -28.399975 -28.399975 0 25.100779 0.10284557 -53.603599 0 + 7 -28.574385 -28.574385 0 25.303218 0.10352343 -53.981126 0 + 8 -28.746849 -28.746849 0 25.511241 0.1042849 -54.362374 0 + 9 -28.917337 -28.917337 0 25.724911 0.10513471 -54.747383 0 + 10 -29.085821 -29.085821 0 25.944289 0.10607815 -55.136189 0 + 11 -29.252272 -29.252272 0 26.169437 0.1071211 -55.52883 0 + 12 -29.41666 -29.41666 0 26.400414 0.10827014 -55.925344 0 + 13 -29.578957 -29.578957 0 26.637279 0.10953266 -56.325768 0 + 14 -29.739132 -29.739132 0 26.880089 0.11091698 -56.730139 0 + 15 -29.897159 -29.897159 0 27.1289 0.11243247 -57.138491 0 + 16 -30.05301 -30.05301 0 27.383761 0.11408972 -57.550861 0 + 17 -30.20666 -30.20666 0 27.644721 0.11590079 -57.967282 0 + 18 -30.358087 -30.358087 0 27.911822 0.1178794 -58.387788 0 + 19 -30.507273 -30.507273 0 28.185098 0.12004129 -58.812412 0 + 20 -30.654201 -30.654201 0 28.46458 0.12240454 -59.241185 0 + 21 -30.798862 -30.798862 0 28.750284 0.12499011 -59.674136 0 + 22 -30.941253 -30.941253 0 29.042218 0.12782235 -60.111293 0 + 23 -31.08138 -31.08138 0 29.340372 0.13092981 -60.552682 0 + 24 -31.219258 -31.219258 0 29.644719 0.13434614 -60.998324 0 + 25 -31.354917 -31.354917 0 29.955211 0.13811139 -61.448239 0 + 26 -31.488402 -31.488402 0 30.271767 0.14227357 -61.902442 0 + 27 -31.619779 -31.619779 0 30.594272 0.14689089 -62.360942 0 + 28 -31.749143 -31.749143 0 30.922563 0.15203466 -62.823741 0 + 29 -31.876621 -31.876621 0 31.256418 0.15779339 -63.290833 0 + 30 -32.002388 -32.002388 0 31.595534 0.16427855 -63.7622 0 + 31 -32.126674 -32.126674 0 31.9395 0.1716329 -64.237807 0 + 32 -32.249794 -32.249794 0 32.287764 0.18004289 -64.717601 0 + 33 -32.372172 -32.372172 0 32.639566 0.1897578 -65.201496 0 + 34 -32.494388 -32.494388 0 32.993857 0.20112027 -65.689365 0 + 35 -32.61725 -32.61725 0 33.349149 0.21461763 -66.181017 0 + 36 -32.741918 -32.741918 0 33.70327 0.23097319 -66.67616 0 + 37 -32.870111 -32.870111 0 34.052904 0.2513213 -67.174336 0 + 38 -33.004523 -33.004523 0 34.392682 0.27757717 -67.674782 0 + 39 -33.131935 -33.131935 0 34.671357 0.3085598 -68.111851 0 + 40 -33.247742 -33.247742 0 34.873666 0.34338547 -68.464794 0 + 41 -33.353579 -33.353579 0 35.007505 0.3823146 -68.743399 0 + 42 -33.450168 -33.450168 0 35.082159 0.42559662 -68.957924 0 + 43 -33.487463 -33.487463 0 35.100806 0.45978299 -69.048052 0 + 44 -33.573735 -33.573735 0 35.124122 0.51063753 -69.208494 0 + 45 -33.60209 -33.60209 0 35.117954 0.5148355 -69.23488 0 + 46 -33.656383 -33.656383 0 35.060859 0.57168807 -69.28893 0 + 47 -33.714086 -33.714086 0 35.02225 0.61018472 -69.346521 0 + 48 -33.764334 -33.764334 0 34.960457 0.67479504 -69.399586 0 + 49 -33.802082 -33.802082 0 34.931968 0.70285945 -69.43691 0 + 50 -33.839357 -33.839357 0 34.858231 0.77475021 -69.472338 0 + 51 -33.881675 -33.881675 0 34.798579 0.83394304 -69.514196 0 + 52 -33.907506 -33.907506 0 34.719959 0.91502024 -69.542485 0 + 53 -33.934648 -33.934648 0 34.676191 0.95978479 -69.570624 0 + 54 -33.951968 -33.951968 0 34.587871 1.0489261 -69.588765 0 + 55 -33.963915 -33.963915 0 34.551313 1.0859197 -69.601148 0 + 56 -33.971882 -33.971882 0 34.455002 1.1819466 -69.608831 0 + 57 -33.977332 -33.977332 0 34.416578 1.2214162 -69.615326 0 + 58 -33.979431 -33.979431 0 34.349014 1.2891692 -69.617614 0 + 59 -33.979959 -33.979959 0 34.352483 1.2850342 -69.617476 0 + 60 -33.98045 -33.98045 0 34.353377 1.2838283 -69.617655 0 + 61 -33.981728 -33.981728 0 34.365155 1.2681096 -69.614993 0 + 62 -33.989551 -33.989551 0 34.395681 1.2265985 -69.611831 0 + 63 -34.003151 -34.003151 0 34.494255 1.0937696 -69.591175 0 + 64 -34.003381 -34.003381 0 34.485254 1.0954681 -69.584103 0 + 65 -34.011587 -34.011587 0 34.21822 1.1471445 -69.376951 0 + 66 -34.011836 -34.011836 0 34.220124 1.1473585 -69.379319 0 + 67 -34.015651 -34.015651 0 34.498408 1.1504995 -69.664558 0 + 68 -34.021434 -34.021434 0 34.837595 1.154702 -70.013731 0 + 69 -34.023908 -34.023908 0 34.991203 1.160547 -70.175658 0 + 70 -34.026178 -34.026178 0 35.068116 1.1662748 -70.260569 0 + 71 -34.030134 -34.030134 0 34.997239 1.1731086 -70.200481 0 + 72 -34.034788 -34.034788 0 34.711544 1.1773646 -69.923696 0 + 73 -34.042758 -34.042758 0 34.272474 1.1830198 -69.498252 0 + 74 -34.046588 -34.046588 0 34.23241 1.182623 -69.46162 0 + 75 -34.053209 -34.053209 0 33.674423 1.1674901 -68.895122 0 + 76 -34.054742 -34.054742 0 33.594027 1.1643965 -68.813166 0 + 77 -34.056349 -34.056349 0 33.279401 1.1421046 -68.477855 0 + 78 -34.057645 -34.057645 0 33.142957 1.1305596 -68.331161 0 + 79 -34.061109 -34.061109 0 33.025813 1.0474621 -68.134384 0 + 80 -34.061571 -34.061571 0 33.040925 1.0374926 -68.139988 0 + 81 -34.062788 -34.062788 0 33.189634 1.010536 -68.262958 0 + 82 -34.064159 -34.064159 0 33.427625 0.98060074 -68.472385 0 + 83 -34.064285 -34.064285 0 33.456778 0.97799623 -68.499059 0 + 84 -34.064847 -34.064847 0 33.66074 0.97253474 -68.698121 0 + 85 -34.064966 -34.064966 0 33.700692 0.97211823 -68.737776 0 + 86 -34.065106 -34.065106 0 33.734346 0.97269776 -68.77215 0 + 87 -34.066304 -34.066304 0 33.884509 0.98906688 -68.939881 0 + 88 -34.066624 -34.066624 0 33.911197 0.99399565 -68.971817 0 + 89 -34.068006 -34.068006 0 33.726788 1.0197741 -68.814568 0 + 90 -34.068653 -34.068653 0 33.617038 1.0322256 -68.717916 0 + 91 -34.068987 -34.068987 0 33.546223 1.0385162 -68.653727 0 + 92 -34.069345 -34.069345 0 33.373713 1.0419572 -68.485015 0 + 93 -34.069545 -34.069545 0 33.275623 1.0434094 -68.388578 0 + 94 -34.069668 -34.069668 0 33.224698 1.041571 -68.335937 0 + 95 -34.069949 -34.069949 0 33.133276 1.0346004 -68.237825 0 + 96 -34.070619 -34.070619 0 32.942412 1.0171569 -68.030187 0 + 97 -34.07111 -34.07111 0 32.920064 0.99872631 -67.989901 0 + 98 -34.072161 -34.072161 0 32.903417 0.9535421 -67.92912 0 + 99 -34.072721 -34.072721 0 32.930449 0.93926976 -67.94244 0 + 100 -34.073684 -34.073684 0 33.223604 0.93262071 -68.229909 0 + 101 -34.073736 -34.073736 0 33.23903 0.93247209 -68.245237 0 + 102 -34.073766 -34.073766 0 33.245222 0.93293122 -68.251919 0 + 103 -34.073958 -34.073958 0 33.258196 0.94302189 -68.275175 0 + 104 -34.074193 -34.074193 0 33.271882 0.95627266 -68.302348 0 + 105 -34.074219 -34.074219 0 33.265166 0.95713605 -68.296521 0 + 106 -34.074239 -34.074239 0 33.236937 0.95827446 -68.26945 0 + 107 -34.074276 -34.074276 0 33.183503 0.96032522 -68.218104 0 + 108 -34.074277 -34.074277 0 33.182549 0.96032669 -68.217153 0 + 109 -34.074278 -34.074278 0 33.182504 0.96026187 -68.217044 0 + 110 -34.074352 -34.074352 0 33.204554 0.95027448 -68.229181 0 + 111 -34.074363 -34.074363 0 33.206866 0.94881347 -68.230042 0 + 112 -34.074367 -34.074367 0 33.20445 0.94844876 -68.227265 0 + 113 -34.074377 -34.074377 0 33.184596 0.94822263 -68.207195 0 + 114 -34.074398 -34.074398 0 33.141635 0.94787806 -68.163911 0 + 115 -34.074403 -34.074403 0 33.133498 0.94786251 -68.155763 0 + 116 -34.074405 -34.074405 0 33.131823 0.94792296 -68.154151 0 + 117 -34.074445 -34.074445 0 33.128194 0.94932477 -68.151964 0 + 118 -34.074467 -34.074467 0 33.127019 0.95012752 -68.151614 0 + 119 -34.074472 -34.074472 0 33.127038 0.95030759 -68.151817 0 + 120 -34.074473 -34.074473 0 33.127193 0.95028454 -68.15195 0 + 121 -34.074473 -34.074473 0 33.127887 0.95017947 -68.152539 0 + 122 -34.074475 -34.074475 0 33.133349 0.9492981 -68.157122 0 + 123 -34.074475 -34.074475 0 33.133725 0.94917666 -68.157377 0 + 124 -34.074476 -34.074476 0 33.134668 0.94859648 -68.157741 0 + 125 -34.074478 -34.074478 0 33.135829 0.94701093 -68.157318 0 + 126 -34.074479 -34.074479 0 33.135711 0.94690722 -68.157097 0 + 127 -34.074479 -34.074479 0 33.134378 0.94680162 -68.155658 0 + 128 -34.074479 -34.074479 0 33.132125 0.94672446 -68.153329 0 + 129 -34.074479 -34.074479 0 33.13109 0.94669946 -68.152269 0 + 130 -34.074479 -34.074479 0 33.129864 0.94673 -68.151073 0 + 131 -34.074479 -34.074479 0 33.128893 0.94677072 -68.150143 0 + 132 -34.074479 -34.074479 0 33.127106 0.94686055 -68.148446 0 + 133 -34.074479 -34.074479 0 33.126443 0.94693927 -68.147862 0 + 134 -34.074479 -34.074479 0 33.126188 0.94699311 -68.14766 0 + 135 -34.074479 -34.074479 0 33.126115 0.9471456 -68.14774 0 + 136 -34.074479 -34.074479 0 33.126384 0.94718191 -68.148045 0 + 137 -34.07448 -34.07448 0 33.126817 0.9472191 -68.148515 0 + 138 -34.07448 -34.07448 0 33.12773 0.94726032 -68.14947 0 + 139 -34.07448 -34.07448 0 33.127937 0.94726757 -68.149684 0 + 140 -34.07448 -34.07448 0 33.128371 0.94728034 -68.15013 0 + 141 -34.07448 -34.07448 0 33.128443 0.94728222 -68.150204 0 + 142 -34.07448 -34.07448 0 33.128607 0.94728548 -68.150372 0 + 143 -34.07448 -34.07448 0 33.128732 0.94728807 -68.150499 0 + 144 -34.07448 -34.07448 0 33.12889 0.94729198 -68.150661 0 + 145 -34.07448 -34.07448 0 33.128925 0.94729405 -68.150698 0 + 146 -34.07448 -34.07448 0 33.128959 0.94730407 -68.150743 0 + 147 -34.07448 -34.07448 0 33.128974 0.94731973 -68.150773 0 + 148 -34.07448 -34.07448 0 33.128946 0.94733991 -68.150765 0 + 149 -34.07448 -34.07448 0 33.128916 0.94734746 -68.150743 0 + 150 -34.07448 -34.07448 0 33.128795 0.94736144 -68.150636 0 + 151 -34.07448 -34.07448 0 33.12863 0.94737847 -68.150488 0 + 152 -34.07448 -34.07448 0 33.12861 0.94737895 -68.150469 0 + 153 -34.07448 -34.07448 0 33.128602 0.94737862 -68.15046 0 + 154 -34.07448 -34.07448 0 33.128598 0.94737814 -68.150455 0 + 155 -34.07448 -34.07448 0 33.128595 0.94737783 -68.150452 0 + 156 -34.07448 -34.07448 0 33.128572 0.94737536 -68.150427 0 + 157 -34.07448 -34.07448 0 33.128541 0.94737175 -68.150393 0 + 158 -34.07448 -34.07448 0 33.128513 0.94736828 -68.150361 0 + 159 -34.07448 -34.07448 0 33.128493 0.94736547 -68.150339 0 + 160 -34.07448 -34.07448 0 33.128487 0.94736392 -68.150331 0 + 161 -34.07448 -34.07448 0 33.128485 0.94736313 -68.150328 0 + 162 -34.07448 -34.07448 0 33.128485 0.94736286 -68.150327 0 + 163 -34.07448 -34.07448 0 33.128483 0.94736078 -68.150324 0 + 164 -34.07448 -34.07448 0 33.12848 0.94735701 -68.150317 0 + 165 -34.07448 -34.07448 0 33.128476 0.94735186 -68.150307 0 + 166 -34.07448 -34.07448 0 33.128472 0.94734806 -68.1503 0 + 167 -34.07448 -34.07448 0 33.128459 0.94733661 -68.150275 0 + 168 -34.07448 -34.07448 0 33.128453 0.94733257 -68.150265 0 + 169 -34.07448 -34.07448 0 33.128447 0.94732927 -68.150256 0 + 170 -34.07448 -34.07448 0 33.128438 0.94732492 -68.150243 0 + 171 -34.07448 -34.07448 0 33.128433 0.94732283 -68.150236 0 + 172 -34.07448 -34.07448 0 33.128431 0.94732201 -68.150233 0 + 173 -34.07448 -34.07448 0 33.128428 0.94732106 -68.150229 0 + 174 -34.07448 -34.07448 0 33.128422 0.94731945 -68.150221 0 + 175 -34.07448 -34.07448 0 33.12842 0.94731887 -68.150218 0 + 176 -34.07448 -34.07448 0 33.128419 0.94731873 -68.150217 0 + 177 -34.07448 -34.07448 0 33.128418 0.9473185 -68.150216 0 + 178 -34.07448 -34.07448 0 33.128417 0.94731828 -68.150215 0 + 179 -34.07448 -34.07448 0 33.128417 0.94731823 -68.150214 0 + 180 -34.07448 -34.07448 0 33.128416 0.94731809 -68.150214 0 + 181 -34.07448 -34.07448 0 33.1284 0.94731487 -68.150195 0 + 182 -34.07448 -34.07448 0 33.128394 0.94731354 -68.150187 0 + 183 -34.07448 -34.07448 0 33.128389 0.94731244 -68.150181 0 + 184 -34.07448 -34.07448 0 33.128387 0.94731183 -68.150178 0 + 185 -34.07448 -34.07448 0 33.128383 0.94731068 -68.150174 0 + 186 -34.07448 -34.07448 0 33.128381 0.94730996 -68.150171 0 + 187 -34.07448 -34.07448 0 33.128381 0.94730974 -68.15017 0 + 188 -34.07448 -34.07448 0 33.12838 0.94730956 -68.150169 0 + 189 -34.07448 -34.07448 0 33.128377 0.94730859 -68.150166 0 + 190 -34.07448 -34.07448 0 33.128377 0.94730828 -68.150164 0 + 191 -34.07448 -34.07448 0 33.128376 0.94730823 -68.150164 0 + 192 -34.07448 -34.07448 0 33.128376 0.94730802 -68.150163 0 + 193 -34.07448 -34.07448 0 33.128364 0.94730395 -68.150147 0 + 194 -34.07448 -34.07448 0 33.128201 0.94724946 -68.14993 0 + 195 -34.07448 -34.07448 0 33.128043 0.94719676 -68.149719 0 + 196 -34.07448 -34.07448 0 33.128002 0.94718368 -68.149666 0 + 197 -34.07448 -34.07448 0 33.127969 0.94717342 -68.149622 0 + 198 -34.07448 -34.07448 0 33.12793 0.94716154 -68.149571 0 + 199 -34.07448 -34.07448 0 33.127926 0.94716091 -68.149567 0 + 200 -34.07448 -34.07448 0 33.127924 0.94716078 -68.149565 0 + 201 -34.07448 -34.07448 0 33.127921 0.94716084 -68.149561 0 + 202 -34.07448 -34.07448 0 33.127918 0.94716096 -68.149559 0 + 203 -34.07448 -34.07448 0 33.127918 0.94716115 -68.149559 0 + 204 -34.07448 -34.07448 0 33.127917 0.94716147 -68.149558 0 + 205 -34.07448 -34.07448 0 33.127917 0.94716167 -68.149558 0 + 206 -34.07448 -34.07448 0 33.127916 0.9471619 -68.149558 0 + 207 -34.07448 -34.07448 0 33.127916 0.94716223 -68.149558 0 + 208 -34.07448 -34.07448 0 33.127913 0.94716402 -68.149556 0 + 209 -34.07448 -34.07448 0 33.127911 0.94716468 -68.149556 0 + 210 -34.07448 -34.07448 0 33.127909 0.94716661 -68.149555 0 + 211 -34.07448 -34.07448 0 33.127908 0.94716728 -68.149555 0 + 212 -34.07448 -34.07448 0 33.127908 0.94716746 -68.149555 0 + 213 -34.07448 -34.07448 0 33.127908 0.94716768 -68.149555 0 + 214 -34.07448 -34.07448 0 33.127908 0.94716778 -68.149556 0 + 215 -34.07448 -34.07448 0 33.127908 0.94717193 -68.149559 0 + 216 -34.07448 -34.07448 0 33.127907 0.94718406 -68.14957 0 + 217 -34.07448 -34.07448 0 33.127905 0.94719998 -68.149584 0 + 218 -34.07448 -34.07448 0 33.127904 0.94720172 -68.149585 0 + 219 -34.07448 -34.07448 0 33.127904 0.94720218 -68.149586 0 + 220 -34.07448 -34.07448 0 33.127904 0.94720215 -68.149585 0 + 221 -34.07448 -34.07448 0 33.1279 0.94720147 -68.149581 0 + 222 -34.07448 -34.07448 0 33.127899 0.94720123 -68.14958 0 + 223 -34.07448 -34.07448 0 33.127898 0.94720114 -68.149579 0 + 224 -34.07448 -34.07448 0 33.127898 0.94720107 -68.149579 0 + 225 -34.07448 -34.07448 0 33.127898 0.94720104 -68.149579 0 + 226 -34.07448 -34.07448 0 33.127898 0.947201 -68.149578 0 + 227 -34.07448 -34.07448 0 33.127898 0.94720096 -68.149578 0 + 228 -34.07448 -34.07448 0 33.127897 0.94720092 -68.149578 0 + 229 -34.07448 -34.07448 0 33.127897 0.94720087 -68.149578 0 + 230 -34.07448 -34.07448 0 33.127897 0.94720082 -68.149577 0 + 231 -34.07448 -34.07448 0 33.127897 0.94720077 -68.149577 0 + 232 -34.07448 -34.07448 0 33.127896 0.94720069 -68.149577 0 + 233 -34.07448 -34.07448 0 33.127896 0.94720062 -68.149576 0 + 234 -34.07448 -34.07448 0 33.127896 0.94720057 -68.149576 0 + 235 -34.07448 -34.07448 0 33.127895 0.94720048 -68.149576 0 + 236 -34.07448 -34.07448 0 33.127895 0.94720042 -68.149575 0 + 237 -34.07448 -34.07448 0 33.127895 0.94720034 -68.149575 0 + 238 -34.07448 -34.07448 0 33.127894 0.94720023 -68.149574 0 + 239 -34.07448 -34.07448 0 33.127894 0.9472002 -68.149574 0 + 240 -34.07448 -34.07448 0 33.127894 0.94720012 -68.149574 0 + 241 -34.07448 -34.07448 0 33.127893 0.94720005 -68.149573 0 + 242 -34.07448 -34.07448 0 33.127893 0.94719995 -68.149573 0 + 243 -34.07448 -34.07448 0 33.127893 0.94719988 -68.149572 0 + 244 -34.07448 -34.07448 0 33.127893 0.94719985 -68.149572 0 + 245 -34.07448 -34.07448 0 33.127892 0.94719981 -68.149572 0 + 246 -34.07448 -34.07448 0 33.127892 0.94719973 -68.149571 0 + 247 -34.07448 -34.07448 0 33.127891 0.94719959 -68.149571 0 + 248 -34.07448 -34.07448 0 33.127891 0.94719949 -68.14957 0 + 249 -34.07448 -34.07448 0 33.12789 0.94719935 -68.149569 0 + 250 -34.07448 -34.07448 0 33.12789 0.94719932 -68.149569 0 + 251 -34.07448 -34.07448 0 33.127806 0.94718166 -68.149468 0 + 252 -34.07448 -34.07448 0 33.127445 0.94710534 -68.14903 0 + 253 -34.07448 -34.07448 0 33.127441 0.94710469 -68.149025 0 + 254 -34.07448 -34.07448 0 33.127441 0.94710479 -68.149025 0 + 255 -34.07448 -34.07448 0 33.127441 0.9471049 -68.149025 0 + 256 -34.07448 -34.07448 0 33.12744 0.94710503 -68.149025 0 + 257 -34.07448 -34.07448 0 33.12744 0.94710519 -68.149025 0 + 258 -34.07448 -34.07448 0 33.12744 0.94710527 -68.149025 0 + 259 -34.07448 -34.07448 0 33.12744 0.94710534 -68.149025 0 + 260 -34.07448 -34.07448 0 33.12744 0.94710543 -68.149025 0 + 261 -34.07448 -34.07448 0 33.127439 0.9471056 -68.149024 0 + 262 -34.07448 -34.07448 0 33.127439 0.94710582 -68.149024 0 + 263 -34.07448 -34.07448 0 33.127438 0.94710595 -68.149024 0 + 264 -34.07448 -34.07448 0 33.127438 0.94710614 -68.149024 0 + 265 -34.07448 -34.07448 0 33.127438 0.9471062 -68.149023 0 + 266 -34.07448 -34.07448 0 33.127437 0.94710626 -68.149023 0 + 267 -34.07448 -34.07448 0 33.127433 0.9471077 -68.149021 0 + 268 -34.07448 -34.07448 0 33.127431 0.94710855 -68.149019 0 + 269 -34.07448 -34.07448 0 33.127431 0.9471086 -68.149019 0 + 270 -34.07448 -34.07448 0 33.12743 0.94710869 -68.149019 0 + 271 -34.07448 -34.07448 0 33.12743 0.94710877 -68.149019 0 + 272 -34.07448 -34.07448 0 33.12743 0.94710888 -68.149018 0 + 273 -34.07448 -34.07448 0 33.127429 0.94710898 -68.149018 0 + 274 -34.07448 -34.07448 0 33.127429 0.94710902 -68.149018 0 + 275 -34.07448 -34.07448 0 33.127429 0.94710906 -68.149018 0 + 276 -34.07448 -34.07448 0 33.127429 0.94710911 -68.149017 0 + 277 -34.07448 -34.07448 0 33.127428 0.9471092 -68.149017 0 + 278 -34.07448 -34.07448 0 33.127428 0.94710927 -68.149017 0 + 279 -34.07448 -34.07448 0 33.127427 0.94710935 -68.149017 0 + 280 -34.07448 -34.07448 0 33.127427 0.94710945 -68.149016 0 + 281 -34.07448 -34.07448 0 33.127427 0.94710954 -68.149016 0 + 282 -34.07448 -34.07448 0 33.127426 0.94710957 -68.149016 0 + 283 -34.07448 -34.07448 0 33.127426 0.9471096 -68.149016 0 + 284 -34.07448 -34.07448 0 33.127426 0.94710965 -68.149015 0 + 285 -34.07448 -34.07448 0 33.127426 0.94710971 -68.149015 0 + 286 -34.07448 -34.07448 0 33.127425 0.94710975 -68.149015 0 + 287 -34.07448 -34.07448 0 33.127425 0.9471098 -68.149015 0 + 288 -34.07448 -34.07448 0 33.127425 0.94710987 -68.149014 0 + 289 -34.07448 -34.07448 0 33.127425 0.94710993 -68.149014 0 + 290 -34.07448 -34.07448 0 33.127424 0.94710999 -68.149014 0 + 291 -34.07448 -34.07448 0 33.127424 0.94711003 -68.149014 0 + 292 -34.07448 -34.07448 0 33.127424 0.94711008 -68.149014 0 + 293 -34.07448 -34.07448 0 33.127423 0.94711013 -68.149013 0 + 294 -34.07448 -34.07448 0 33.127423 0.94711019 -68.149013 0 + 295 -34.07448 -34.07448 0 33.127423 0.94711026 -68.149013 0 + 296 -34.07448 -34.07448 0 33.127422 0.94711037 -68.149012 0 + 297 -34.07448 -34.07448 0 33.127422 0.94711043 -68.149012 0 + 298 -34.07448 -34.07448 0 33.127422 0.94711046 -68.149012 0 + 299 -34.07448 -34.07448 0 33.127421 0.94711048 -68.149012 0 + 300 -34.07448 -34.07448 0 33.127421 0.94711052 -68.149011 0 + 301 -34.07448 -34.07448 0 33.127421 0.94711055 -68.149011 0 + 302 -34.07448 -34.07448 0 33.127421 0.94711058 -68.149011 0 + 303 -34.07448 -34.07448 0 33.127421 0.94711061 -68.149011 0 + 304 -34.07448 -34.07448 0 33.12742 0.94711066 -68.149011 0 + 305 -34.07448 -34.07448 0 33.12742 0.9471107 -68.14901 0 + 306 -34.07448 -34.07448 0 33.12742 0.94711075 -68.14901 0 + 307 -34.07448 -34.07448 0 33.127419 0.9471108 -68.14901 0 + 308 -34.07448 -34.07448 0 33.127419 0.94711083 -68.14901 0 + 309 -34.07448 -34.07448 0 33.127419 0.94711092 -68.149009 0 + 310 -34.07448 -34.07448 0 33.127418 0.94711095 -68.149009 0 + 311 -34.07448 -34.07448 0 33.127418 0.94711099 -68.149009 0 + 312 -34.07448 -34.07448 0 33.127418 0.94711106 -68.149008 0 + 313 -34.07448 -34.07448 0 33.127418 0.94711107 -68.149008 0 + 314 -34.07448 -34.07448 0 33.127374 0.9471168 -68.14897 0 + 315 -34.07448 -34.07448 0 33.127373 0.9471169 -68.148969 0 + 316 -34.07448 -34.07448 0 33.127372 0.94711687 -68.148969 0 + 317 -34.07448 -34.07448 0 33.127372 0.94711681 -68.148969 0 + 318 -34.07448 -34.07448 0 33.127372 0.94711671 -68.148969 0 + 319 -34.07448 -34.07448 0 33.127372 0.94711661 -68.148969 0 + 320 -34.07448 -34.07448 0 33.127372 0.94711648 -68.148969 0 + 321 -34.07448 -34.07448 0 33.127372 0.9471164 -68.148968 0 + 322 -34.07448 -34.07448 0 33.127372 0.94711635 -68.148968 0 + 323 -34.07448 -34.07448 0 33.127372 0.94711629 -68.148968 0 + 324 -34.07448 -34.07448 0 33.127372 0.94711621 -68.148968 0 + 325 -34.07448 -34.07448 0 33.127373 0.94711609 -68.148968 0 + 326 -34.07448 -34.07448 0 33.127373 0.94711599 -68.148968 0 + 327 -34.07448 -34.07448 0 33.127373 0.94711594 -68.148968 0 + 328 -34.07448 -34.07448 0 33.127373 0.94711589 -68.148968 0 + 329 -34.07448 -34.07448 0 33.127373 0.94711581 -68.148968 0 + 330 -34.07448 -34.07448 0 33.127373 0.94711573 -68.148968 0 + 331 -34.07448 -34.07448 0 33.127373 0.94711567 -68.148968 0 + 332 -34.07448 -34.07448 0 33.127373 0.94711559 -68.148968 0 + 333 -34.07448 -34.07448 0 33.127373 0.94711548 -68.148968 0 + 334 -34.07448 -34.07448 0 33.127373 0.94711543 -68.148968 0 + 335 -34.07448 -34.07448 0 33.127373 0.94711539 -68.148968 0 + 336 -34.07448 -34.07448 0 33.127373 0.94711534 -68.148968 0 + 337 -34.07448 -34.07448 0 33.127373 0.94711528 -68.148968 0 + 338 -34.07448 -34.07448 0 33.127373 0.94711519 -68.148968 0 + 339 -34.07448 -34.07448 0 33.127373 0.94711505 -68.148968 0 + 340 -34.07448 -34.07448 0 33.127373 0.94711495 -68.148968 0 + 341 -34.07448 -34.07448 0 33.127373 0.94711487 -68.148968 0 + 342 -34.07448 -34.07448 0 33.127373 0.9471148 -68.148968 0 + 343 -34.07448 -34.07448 0 33.127373 0.94711472 -68.148967 0 + 344 -34.07448 -34.07448 0 33.127373 0.94711466 -68.148967 0 + 345 -34.07448 -34.07448 0 33.127373 0.94711458 -68.148967 0 + 346 -34.07448 -34.07448 0 33.127373 0.9471145 -68.148967 0 + 347 -34.07448 -34.07448 0 33.127373 0.9471144 -68.148967 0 + 348 -34.07448 -34.07448 0 33.127373 0.94711434 -68.148967 0 + 349 -34.07448 -34.07448 0 33.127373 0.94711428 -68.148967 0 + 350 -34.07448 -34.07448 0 33.127373 0.94711422 -68.148967 0 + 351 -34.07448 -34.07448 0 33.127373 0.94711412 -68.148967 0 + 352 -34.07448 -34.07448 0 33.127373 0.94711404 -68.148967 0 + 353 -34.07448 -34.07448 0 33.127373 0.94711398 -68.148967 0 + 354 -34.07448 -34.07448 0 33.127373 0.94711392 -68.148967 0 + 355 -34.07448 -34.07448 0 33.127373 0.94711388 -68.148967 0 + 356 -34.07448 -34.07448 0 33.127373 0.94711382 -68.148967 0 + 357 -34.07448 -34.07448 0 33.127373 0.94711378 -68.148967 0 + 358 -34.07448 -34.07448 0 33.127373 0.94711374 -68.148967 0 + 359 -34.07448 -34.07448 0 33.127373 0.94711369 -68.148967 0 + 360 -34.07448 -34.07448 0 33.127373 0.94711365 -68.148967 0 + 361 -34.07448 -34.07448 0 33.127373 0.94711358 -68.148967 0 + 362 -34.07448 -34.07448 0 33.127373 0.94711354 -68.148967 0 + 363 -34.07448 -34.07448 0 33.127374 0.9471135 -68.148967 0 + 364 -34.07448 -34.07448 0 33.127374 0.94711346 -68.148967 0 + 365 -34.07448 -34.07448 0 33.127374 0.94711339 -68.148967 0 + 366 -34.07448 -34.07448 0 33.127374 0.94711332 -68.148967 0 + 367 -34.07448 -34.07448 0 33.127374 0.94711327 -68.148967 0 + 368 -34.07448 -34.07448 0 33.127374 0.94711321 -68.148966 0 + 369 -34.07448 -34.07448 0 33.127374 0.94711313 -68.148966 0 + 370 -34.07448 -34.07448 0 33.127374 0.94711306 -68.148966 0 + 371 -34.07448 -34.07448 0 33.127374 0.947113 -68.148966 0 + 372 -34.07448 -34.07448 0 33.127374 0.94711299 -68.148966 0 + 373 -34.07448 -34.07448 0 33.127374 0.94711295 -68.148966 0 + 374 -34.07448 -34.07448 0 33.127374 0.94711288 -68.148966 0 + 375 -34.07448 -34.07448 0 33.127374 0.94711279 -68.148966 0 + 376 -34.07448 -34.07448 0 33.127374 0.94711272 -68.148966 0 + 377 -34.07448 -34.07448 0 33.127374 0.94711268 -68.148966 0 + 378 -34.07448 -34.07448 0 33.127374 0.94711265 -68.148966 0 + 379 -34.07448 -34.07448 0 33.127374 0.9471126 -68.148966 0 + 380 -34.07448 -34.07448 0 33.127374 0.94711255 -68.148966 0 + 381 -34.07448 -34.07448 0 33.127374 0.94711251 -68.148966 0 + 382 -34.07448 -34.07448 0 33.127374 0.94711247 -68.148966 0 + 383 -34.07448 -34.07448 0 33.127374 0.9471124 -68.148966 0 + 384 -34.07448 -34.07448 0 33.127374 0.94711231 -68.148966 0 + 385 -34.07448 -34.07448 0 33.127374 0.94711223 -68.148966 0 + 386 -34.07448 -34.07448 0 33.127374 0.9471122 -68.148966 0 + 387 -34.07448 -34.07448 0 33.127374 0.94711213 -68.148966 0 + 388 -34.07448 -34.07448 0 33.127374 0.94711207 -68.148966 0 + 389 -34.07448 -34.07448 0 33.127374 0.94711191 -68.148965 0 + 390 -34.07448 -34.07448 0 33.127374 0.9471118 -68.148965 0 + 391 -34.07448 -34.07448 0 33.127374 0.94711165 -68.148965 0 + 392 -34.07448 -34.07448 0 33.127374 0.94711141 -68.148965 0 + 393 -34.07448 -34.07448 0 33.127374 0.94711102 -68.148965 0 + 394 -34.07448 -34.07448 0 33.127374 0.94711036 -68.148964 0 + 395 -34.07448 -34.07448 0 33.127374 0.94711034 -68.148964 0 + 396 -34.07448 -34.07448 0 33.127374 0.9471103 -68.148964 0 + 397 -34.07448 -34.07448 0 33.127374 0.94711027 -68.148964 0 + 398 -34.07448 -34.07448 0 33.127374 0.94711024 -68.148964 0 + 399 -34.07448 -34.07448 0 33.127374 0.9471102 -68.148964 0 + 400 -34.07448 -34.07448 0 33.127374 0.94711013 -68.148964 0 + 401 -34.07448 -34.07448 0 33.127374 0.94711002 -68.148964 0 + 402 -34.07448 -34.07448 0 33.127374 0.94711 -68.148964 0 + 403 -34.07448 -34.07448 0 33.127374 0.94710998 -68.148964 0 + 404 -34.07448 -34.07448 0 33.127374 0.94710995 -68.148964 0 + 405 -34.07448 -34.07448 0 33.127374 0.94710991 -68.148964 0 + 406 -34.07448 -34.07448 0 33.127374 0.94710985 -68.148964 0 + 407 -34.07448 -34.07448 0 33.127374 0.9471098 -68.148964 0 + 408 -34.07448 -34.07448 0 33.127374 0.94710978 -68.148964 0 + 409 -34.07448 -34.07448 0 33.127374 0.94710976 -68.148964 0 + 410 -34.07448 -34.07448 0 33.127374 0.94710973 -68.148964 0 + 411 -34.07448 -34.07448 0 33.127374 0.94710971 -68.148964 0 + 412 -34.07448 -34.07448 0 33.127374 0.94710969 -68.148963 0 + 413 -34.07448 -34.07448 0 33.127374 0.94710967 -68.148963 0 + 414 -34.07448 -34.07448 0 33.127374 0.94710964 -68.148963 0 + 415 -34.07448 -34.07448 0 33.127374 0.9471096 -68.148963 0 + 416 -34.07448 -34.07448 0 33.127374 0.94710956 -68.148963 0 + 417 -34.07448 -34.07448 0 33.127374 0.94710952 -68.148963 0 + 418 -34.07448 -34.07448 0 33.127374 0.94710949 -68.148963 0 + 419 -34.07448 -34.07448 0 33.127374 0.94710945 -68.148963 0 + 420 -34.07448 -34.07448 0 33.127374 0.94710943 -68.148963 0 + 421 -34.07448 -34.07448 0 33.127374 0.9471094 -68.148963 0 + 422 -34.07448 -34.07448 0 33.127374 0.94710935 -68.148963 0 + 423 -34.07448 -34.07448 0 33.127374 0.94710933 -68.148963 0 + 424 -34.07448 -34.07448 0 33.127374 0.94710931 -68.148963 0 + 425 -34.07448 -34.07448 0 33.127374 0.94710929 -68.148963 0 + 426 -34.07448 -34.07448 0 33.127374 0.94710926 -68.148963 0 + 427 -34.07448 -34.07448 0 33.127374 0.94710924 -68.148963 0 + 428 -34.07448 -34.07448 0 33.127374 0.94710922 -68.148963 0 + 429 -34.07448 -34.07448 0 33.127374 0.94710918 -68.148963 0 + 430 -34.07448 -34.07448 0 33.127374 0.94710914 -68.148963 0 + 431 -34.07448 -34.07448 0 33.127374 0.94710911 -68.148963 0 + 432 -34.07448 -34.07448 0 33.127374 0.94710906 -68.148963 0 + 433 -34.07448 -34.07448 0 33.127374 0.94710903 -68.148963 0 + 434 -34.07448 -34.07448 0 33.127374 0.94710901 -68.148963 0 + 435 -34.07448 -34.07448 0 33.127374 0.94710899 -68.148963 0 + 436 -34.07448 -34.07448 0 33.127374 0.94710897 -68.148963 0 + 437 -34.07448 -34.07448 0 33.127374 0.94710894 -68.148963 0 + 438 -34.07448 -34.07448 0 33.127374 0.9471089 -68.148963 0 + 439 -34.07448 -34.07448 0 33.127374 0.94710887 -68.148962 0 + 440 -34.07448 -34.07448 0 33.127374 0.94710885 -68.148962 0 + 441 -34.07448 -34.07448 0 33.127374 0.94710882 -68.148962 0 + 442 -34.07448 -34.07448 0 33.127374 0.9471088 -68.148962 0 + 443 -34.07448 -34.07448 0 33.127374 0.94710878 -68.148962 0 + 444 -34.07448 -34.07448 0 33.127374 0.94710875 -68.148962 0 + 445 -34.07448 -34.07448 0 33.127374 0.9471087 -68.148962 0 + 446 -34.07448 -34.07448 0 33.127374 0.94710866 -68.148962 0 + 447 -34.07448 -34.07448 0 33.127374 0.94710863 -68.148962 0 + 448 -34.07448 -34.07448 0 33.127374 0.94710861 -68.148962 0 + 449 -34.07448 -34.07448 0 33.127374 0.94710858 -68.148962 0 + 450 -34.07448 -34.07448 0 33.127374 0.94710856 -68.148962 0 + 451 -34.07448 -34.07448 0 33.127374 0.94710855 -68.148962 0 + 452 -34.07448 -34.07448 0 33.127374 0.94710852 -68.148962 0 + 453 -34.07448 -34.07448 0 33.127374 0.9471085 -68.148962 0 + 454 -34.07448 -34.07448 0 33.127374 0.94710847 -68.148962 0 + 455 -34.07448 -34.07448 0 33.127374 0.94710844 -68.148962 0 + 456 -34.07448 -34.07448 0 33.127374 0.94710841 -68.148962 0 + 457 -34.07448 -34.07448 0 33.127374 0.94710837 -68.148962 0 + 458 -34.07448 -34.07448 0 33.127374 0.94710834 -68.148962 0 + 459 -34.07448 -34.07448 0 33.127374 0.94710832 -68.148962 0 + 460 -34.07448 -34.07448 0 33.127374 0.9471083 -68.148962 0 + 461 -34.07448 -34.07448 0 33.127374 0.94710829 -68.148962 0 + 462 -34.07448 -34.07448 0 33.127374 0.94710827 -68.148962 0 + 463 -34.07448 -34.07448 0 33.127374 0.94710825 -68.148962 0 + 464 -34.07448 -34.07448 0 33.127374 0.94710822 -68.148962 0 + 465 -34.07448 -34.07448 0 33.127374 0.9471082 -68.148962 0 + 466 -34.07448 -34.07448 0 33.127374 0.94710817 -68.148961 0 + 467 -34.07448 -34.07448 0 33.127374 0.94710814 -68.148961 0 + 468 -34.07448 -34.07448 0 33.127374 0.94710811 -68.148961 0 + 469 -34.07448 -34.07448 0 33.127374 0.94710808 -68.148961 0 + 470 -34.07448 -34.07448 0 33.127374 0.94710806 -68.148961 0 + 471 -34.07448 -34.07448 0 33.127374 0.94710804 -68.148961 0 + 472 -34.07448 -34.07448 0 33.127374 0.94710802 -68.148961 0 + 473 -34.07448 -34.07448 0 33.127374 0.94710798 -68.148961 0 + 474 -34.07448 -34.07448 0 33.127374 0.94710795 -68.148961 0 + 475 -34.07448 -34.07448 0 33.127373 0.94710793 -68.148961 0 + 476 -34.07448 -34.07448 0 33.127373 0.94710791 -68.148961 0 + 477 -34.07448 -34.07448 0 33.127373 0.94710789 -68.148961 0 + 478 -34.07448 -34.07448 0 33.127373 0.94710788 -68.148961 0 + 479 -34.07448 -34.07448 0 33.127373 0.94710786 -68.148961 0 + 480 -34.07448 -34.07448 0 33.127373 0.94710785 -68.148961 0 + 481 -34.07448 -34.07448 0 33.127373 0.94710782 -68.148961 0 + 482 -34.07448 -34.07448 0 33.127373 0.94710779 -68.148961 0 + 483 -34.07448 -34.07448 0 33.127373 0.94710777 -68.148961 0 + 484 -34.07448 -34.07448 0 33.127373 0.94710775 -68.148961 0 + 485 -34.07448 -34.07448 0 33.127373 0.94710774 -68.148961 0 + 486 -34.07448 -34.07448 0 33.127373 0.94710772 -68.148961 0 + 487 -34.07448 -34.07448 0 33.127373 0.94710771 -68.148961 0 + 488 -34.07448 -34.07448 0 33.127373 0.94710769 -68.148961 0 + 489 -34.07448 -34.07448 0 33.127373 0.94710767 -68.148961 0 + 490 -34.07448 -34.07448 0 33.127373 0.94710764 -68.148961 0 + 491 -34.07448 -34.07448 0 33.127373 0.94710762 -68.148961 0 + 492 -34.07448 -34.07448 0 33.127373 0.94710759 -68.148961 0 + 493 -34.07448 -34.07448 0 33.127373 0.94710756 -68.148961 0 + 494 -34.07448 -34.07448 0 33.127373 0.94710754 -68.14896 0 + 495 -34.07448 -34.07448 0 33.127373 0.94710752 -68.14896 0 + 496 -34.07448 -34.07448 0 33.127373 0.94710751 -68.14896 0 + 497 -34.07448 -34.07448 0 33.127373 0.94710749 -68.14896 0 + 498 -34.07448 -34.07448 0 33.127373 0.94710748 -68.14896 0 + 499 -34.07448 -34.07448 0 33.127373 0.94710746 -68.14896 0 + 500 -34.07448 -34.07448 0 33.127373 0.94710744 -68.14896 0 + 501 -34.07448 -34.07448 0 33.127373 0.94710742 -68.14896 0 + 502 -34.07448 -34.07448 0 33.127373 0.9471074 -68.14896 0 + 503 -34.07448 -34.07448 0 33.127373 0.94710738 -68.14896 0 + 504 -34.07448 -34.07448 0 33.127373 0.94710736 -68.14896 0 + 505 -34.07448 -34.07448 0 33.127373 0.94710733 -68.14896 0 + 506 -34.07448 -34.07448 0 33.127373 0.94710731 -68.14896 0 + 507 -34.07448 -34.07448 0 33.127373 0.9471073 -68.14896 0 + 508 -34.07448 -34.07448 0 33.127373 0.94710729 -68.14896 0 + 509 -34.07448 -34.07448 0 33.127373 0.94710727 -68.14896 0 + 510 -34.07448 -34.07448 0 33.127373 0.94710725 -68.14896 0 + 511 -34.07448 -34.07448 0 33.127373 0.94710723 -68.14896 0 + 512 -34.07448 -34.07448 0 33.127373 0.9471072 -68.14896 0 + 513 -34.07448 -34.07448 0 33.127373 0.94710719 -68.14896 0 + 514 -34.07448 -34.07448 0 33.127373 0.94710718 -68.14896 0 + 515 -34.07448 -34.07448 0 33.127373 0.94710716 -68.14896 0 + 516 -34.07448 -34.07448 0 33.127373 0.94710715 -68.14896 0 + 517 -34.07448 -34.07448 0 33.127373 0.94710713 -68.14896 0 + 518 -34.07448 -34.07448 0 33.127373 0.94710711 -68.14896 0 + 519 -34.07448 -34.07448 0 33.127373 0.94710709 -68.14896 0 + 520 -34.07448 -34.07448 0 33.127373 0.94710706 -68.14896 0 + 521 -34.07448 -34.07448 0 33.127373 0.94710705 -68.14896 0 + 522 -34.07448 -34.07448 0 33.127373 0.94710704 -68.14896 0 + 523 -34.07448 -34.07448 0 33.127373 0.94710703 -68.14896 0 + 524 -34.07448 -34.07448 0 33.127373 0.94710702 -68.148959 0 + 525 -34.07448 -34.07448 0 33.127373 0.947107 -68.148959 0 + 526 -34.07448 -34.07448 0 33.127373 0.94710698 -68.148959 0 + 527 -34.07448 -34.07448 0 33.127373 0.94710697 -68.148959 0 + 528 -34.07448 -34.07448 0 33.127373 0.94710694 -68.148959 0 + 529 -34.07448 -34.07448 0 33.127373 0.94710693 -68.148959 0 + 530 -34.07448 -34.07448 0 33.127373 0.94710691 -68.148959 0 + 531 -34.07448 -34.07448 0 33.127373 0.94710689 -68.148959 0 + 532 -34.07448 -34.07448 0 33.127373 0.94710687 -68.148959 0 + 533 -34.07448 -34.07448 0 33.127373 0.94710685 -68.148959 0 + 534 -34.07448 -34.07448 0 33.127373 0.94710683 -68.148959 0 + 535 -34.07448 -34.07448 0 33.127373 0.94710681 -68.148959 0 + 536 -34.07448 -34.07448 0 33.127373 0.9471068 -68.148959 0 + 537 -34.07448 -34.07448 0 33.127373 0.94710679 -68.148959 0 + 538 -34.07448 -34.07448 0 33.127373 0.94710678 -68.148959 0 + 539 -34.07448 -34.07448 0 33.127372 0.94710676 -68.148959 0 + 540 -34.07448 -34.07448 0 33.127372 0.94710675 -68.148959 0 + 541 -34.07448 -34.07448 0 33.127372 0.94710673 -68.148959 0 + 542 -34.07448 -34.07448 0 33.127372 0.94710672 -68.148959 0 + 543 -34.07448 -34.07448 0 33.127372 0.94710671 -68.148959 0 + 544 -34.07448 -34.07448 0 33.127372 0.9471067 -68.148959 0 + 545 -34.07448 -34.07448 0 33.127372 0.94710669 -68.148959 0 + 546 -34.07448 -34.07448 0 33.127372 0.94710668 -68.148959 0 + 547 -34.07448 -34.07448 0 33.127372 0.94710667 -68.148959 0 + 548 -34.07448 -34.07448 0 33.127372 0.94710666 -68.148959 0 + 549 -34.07448 -34.07448 0 33.127372 0.94710664 -68.148959 0 + 550 -34.07448 -34.07448 0 33.127372 0.94710663 -68.148959 0 + 551 -34.07448 -34.07448 0 33.127372 0.94710661 -68.148959 0 + 552 -34.07448 -34.07448 0 33.127372 0.94710659 -68.148959 0 + 553 -34.07448 -34.07448 0 33.127372 0.94710658 -68.148959 0 + 554 -34.07448 -34.07448 0 33.127372 0.94710656 -68.148959 0 + 555 -34.07448 -34.07448 0 33.127372 0.94710654 -68.148958 0 + 556 -34.07448 -34.07448 0 33.127372 0.94710651 -68.148958 0 + 557 -34.07448 -34.07448 0 33.127372 0.9471065 -68.148958 0 + 558 -34.07448 -34.07448 0 33.127372 0.94710649 -68.148958 0 + 559 -34.07448 -34.07448 0 33.127372 0.94710648 -68.148958 0 + 560 -34.07448 -34.07448 0 33.127372 0.94710646 -68.148958 0 + 561 -34.07448 -34.07448 0 33.127372 0.94710645 -68.148958 0 + 562 -34.07448 -34.07448 0 33.127372 0.94710643 -68.148958 0 + 563 -34.07448 -34.07448 0 33.127372 0.94710641 -68.148958 0 + 564 -34.07448 -34.07448 0 33.127372 0.9471064 -68.148958 0 + 565 -34.07448 -34.07448 0 33.127372 0.94710639 -68.148958 0 + 566 -34.07448 -34.07448 0 33.127372 0.94710638 -68.148958 0 + 567 -34.07448 -34.07448 0 33.127372 0.94710637 -68.148958 0 + 568 -34.07448 -34.07448 0 33.127372 0.94710634 -68.148958 0 + 569 -34.07448 -34.07448 0 33.127372 0.94710634 -68.148958 0 + 570 -34.07448 -34.07448 0 33.127372 0.94710633 -68.148958 0 + 571 -34.07448 -34.07448 0 33.127372 0.94710632 -68.148958 0 + 572 -34.07448 -34.07448 0 33.127372 0.9471063 -68.148958 0 + 573 -34.07448 -34.07448 0 33.127372 0.94710628 -68.148958 0 + 574 -34.07448 -34.07448 0 33.127372 0.94710624 -68.148958 0 + 575 -34.07448 -34.07448 0 33.127372 0.94710623 -68.148958 0 + 576 -34.07448 -34.07448 0 33.127372 0.94710623 -68.148958 0 + 577 -34.07448 -34.07448 0 33.127372 0.94710622 -68.148958 0 + 578 -34.07448 -34.07448 0 33.127372 0.9471062 -68.148958 0 + 579 -34.07448 -34.07448 0 33.127372 0.94710618 -68.148958 0 + 580 -34.07448 -34.07448 0 33.127372 0.94710617 -68.148958 0 + 581 -34.07448 -34.07448 0 33.127372 0.94710617 -68.148958 0 + 582 -34.07448 -34.07448 0 33.127372 0.94710616 -68.148958 0 + 583 -34.07448 -34.07448 0 33.127372 0.94710614 -68.148957 0 + 584 -34.07448 -34.07448 0 33.127372 0.94710613 -68.148957 0 + 585 -34.07448 -34.07448 0 33.127372 0.94710612 -68.148957 0 + 586 -34.07448 -34.07448 0 33.127372 0.94710611 -68.148957 0 + 587 -34.07448 -34.07448 0 33.127372 0.9471061 -68.148957 0 + 588 -34.07448 -34.07448 0 33.127372 0.94710609 -68.148957 0 + 589 -34.07448 -34.07448 0 33.127372 0.94710608 -68.148957 0 + 590 -34.07448 -34.07448 0 33.127372 0.94710607 -68.148957 0 + 591 -34.07448 -34.07448 0 33.127372 0.94710605 -68.148957 0 + 592 -34.07448 -34.07448 0 33.127371 0.94710603 -68.148957 0 + 593 -34.07448 -34.07448 0 33.127371 0.94710603 -68.148957 0 + 594 -34.07448 -34.07448 0 33.127371 0.94710602 -68.148957 0 + 595 -34.07448 -34.07448 0 33.127371 0.94710601 -68.148957 0 + 596 -34.07448 -34.07448 0 33.127371 0.947106 -68.148957 0 + 597 -34.07448 -34.07448 0 33.127371 0.94710599 -68.148957 0 + 598 -34.07448 -34.07448 0 33.127371 0.94710598 -68.148957 0 + 599 -34.07448 -34.07448 0 33.127371 0.94710597 -68.148957 0 + 600 -34.07448 -34.07448 0 33.127371 0.94710597 -68.148957 0 + 601 -34.07448 -34.07448 0 33.127371 0.94710595 -68.148957 0 + 602 -34.07448 -34.07448 0 33.127371 0.94710593 -68.148957 0 + 603 -34.07448 -34.07448 0 33.127371 0.94710593 -68.148957 0 + 604 -34.07448 -34.07448 0 33.127371 0.94710592 -68.148957 0 + 605 -34.07448 -34.07448 0 33.127371 0.94710591 -68.148957 0 + 606 -34.07448 -34.07448 0 33.127371 0.9471059 -68.148957 0 + 607 -34.07448 -34.07448 0 33.127371 0.94710589 -68.148957 0 + 608 -34.07448 -34.07448 0 33.127371 0.94710588 -68.148957 0 + 609 -34.07448 -34.07448 0 33.127371 0.94710586 -68.148957 0 + 610 -34.07448 -34.07448 0 33.127371 0.94710585 -68.148957 0 + 611 -34.07448 -34.07448 0 33.127371 0.94710584 -68.148957 0 + 612 -34.07448 -34.07448 0 33.127371 0.94710583 -68.148957 0 + 613 -34.07448 -34.07448 0 33.127371 0.94710582 -68.148957 0 + 614 -34.07448 -34.07448 0 33.127371 0.94710582 -68.148957 0 + 615 -34.07448 -34.07448 0 33.127371 0.94710581 -68.148957 0 + 616 -34.07448 -34.07448 0 33.127371 0.9471058 -68.148957 0 + 617 -34.07448 -34.07448 0 33.127371 0.94710578 -68.148957 0 + 618 -34.07448 -34.07448 0 33.127371 0.94710577 -68.148956 0 + 619 -34.07448 -34.07448 0 33.127371 0.94710576 -68.148956 0 + 620 -34.07448 -34.07448 0 33.127371 0.94710576 -68.148956 0 + 621 -34.07448 -34.07448 0 33.127371 0.94710575 -68.148956 0 + 622 -34.07448 -34.07448 0 33.127371 0.94710574 -68.148956 0 + 623 -34.07448 -34.07448 0 33.127371 0.94710573 -68.148956 0 + 624 -34.07448 -34.07448 0 33.127371 0.94710571 -68.148956 0 + 625 -34.07448 -34.07448 0 33.127371 0.9471057 -68.148956 0 + 626 -34.07448 -34.07448 0 33.127371 0.94710569 -68.148956 0 + 627 -34.07448 -34.07448 0 33.127371 0.94710568 -68.148956 0 + 628 -34.07448 -34.07448 0 33.127371 0.94710568 -68.148956 0 + 629 -34.07448 -34.07448 0 33.127371 0.94710567 -68.148956 0 + 630 -34.07448 -34.07448 0 33.127371 0.94710566 -68.148956 0 + 631 -34.07448 -34.07448 0 33.127371 0.94710565 -68.148956 0 + 632 -34.07448 -34.07448 0 33.127371 0.94710563 -68.148956 0 + 633 -34.07448 -34.07448 0 33.127371 0.94710562 -68.148956 0 + 634 -34.07448 -34.07448 0 33.127371 0.94710561 -68.148956 0 + 635 -34.07448 -34.07448 0 33.127371 0.94710561 -68.148956 0 + 636 -34.07448 -34.07448 0 33.127371 0.9471056 -68.148956 0 + 637 -34.07448 -34.07448 0 33.127371 0.94710559 -68.148956 0 + 638 -34.07448 -34.07448 0 33.127371 0.94710559 -68.148956 0 + 639 -34.07448 -34.07448 0 33.127371 0.94710558 -68.148956 0 + 640 -34.07448 -34.07448 0 33.127371 0.94710557 -68.148956 0 + 641 -34.07448 -34.07448 0 33.127371 0.94710555 -68.148956 0 + 642 -34.07448 -34.07448 0 33.127371 0.94710554 -68.148956 0 + 643 -34.07448 -34.07448 0 33.127371 0.94710553 -68.148956 0 + 644 -34.07448 -34.07448 0 33.127371 0.94710552 -68.148956 0 + 645 -34.07448 -34.07448 0 33.12737 0.94710551 -68.148956 0 + 646 -34.07448 -34.07448 0 33.12737 0.9471055 -68.148956 0 + 647 -34.07448 -34.07448 0 33.12737 0.94710549 -68.148956 0 + 648 -34.07448 -34.07448 0 33.12737 0.94710549 -68.148956 0 + 649 -34.07448 -34.07448 0 33.12737 0.94710548 -68.148956 0 + 650 -34.07448 -34.07448 0 33.12737 0.94710547 -68.148956 0 + 651 -34.07448 -34.07448 0 33.12737 0.94710546 -68.148956 0 + 652 -34.07448 -34.07448 0 33.12737 0.94710546 -68.148956 0 + 653 -34.07448 -34.07448 0 33.12737 0.94710545 -68.148955 0 + 654 -34.07448 -34.07448 0 33.12737 0.94710543 -68.148955 0 + 655 -34.07448 -34.07448 0 33.12737 0.94710543 -68.148955 0 + 656 -34.07448 -34.07448 0 33.12737 0.94710542 -68.148955 0 + 657 -34.07448 -34.07448 0 33.12737 0.94710541 -68.148955 0 + 658 -34.07448 -34.07448 0 33.12737 0.9471054 -68.148955 0 + 659 -34.07448 -34.07448 0 33.12737 0.94710539 -68.148955 0 + 660 -34.07448 -34.07448 0 33.12737 0.94710539 -68.148955 0 + 661 -34.07448 -34.07448 0 33.12737 0.94710538 -68.148955 0 + 662 -34.07448 -34.07448 0 33.12737 0.94710537 -68.148955 0 + 663 -34.07448 -34.07448 0 33.12737 0.94710536 -68.148955 0 + 664 -34.07448 -34.07448 0 33.12737 0.94710535 -68.148955 0 + 665 -34.07448 -34.07448 0 33.12737 0.94710534 -68.148955 0 + 666 -34.07448 -34.07448 0 33.12737 0.94710534 -68.148955 0 + 667 -34.07448 -34.07448 0 33.12737 0.94710533 -68.148955 0 + 668 -34.07448 -34.07448 0 33.12737 0.94710532 -68.148955 0 + 669 -34.07448 -34.07448 0 33.12737 0.94710531 -68.148955 0 + 670 -34.07448 -34.07448 0 33.12737 0.9471053 -68.148955 0 + 671 -34.07448 -34.07448 0 33.12737 0.94710529 -68.148955 0 + 672 -34.07448 -34.07448 0 33.12737 0.94710529 -68.148955 0 + 673 -34.07448 -34.07448 0 33.12737 0.94710528 -68.148955 0 + 674 -34.07448 -34.07448 0 33.12737 0.94710527 -68.148955 0 + 675 -34.07448 -34.07448 0 33.12737 0.94710527 -68.148955 0 + 676 -34.07448 -34.07448 0 33.12737 0.94710526 -68.148955 0 + 677 -34.07448 -34.07448 0 33.12737 0.94710526 -68.148955 0 + 678 -34.07448 -34.07448 0 33.12737 0.94710525 -68.148955 0 + 679 -34.07448 -34.07448 0 33.12737 0.94710524 -68.148955 0 + 680 -34.07448 -34.07448 0 33.12737 0.94710523 -68.148955 0 + 681 -34.07448 -34.07448 0 33.12737 0.94710522 -68.148955 0 + 682 -34.07448 -34.07448 0 33.12737 0.94710521 -68.148955 0 + 683 -34.07448 -34.07448 0 33.12737 0.9471052 -68.148955 0 + 684 -34.07448 -34.07448 0 33.12737 0.94710519 -68.148955 0 + 685 -34.07448 -34.07448 0 33.12737 0.94710518 -68.148955 0 + 686 -34.07448 -34.07448 0 33.12737 0.94710517 -68.148955 0 + 687 -34.07448 -34.07448 0 33.12737 0.94710516 -68.148955 0 + 688 -34.07448 -34.07448 0 33.12737 0.94710515 -68.148954 0 + 689 -34.07448 -34.07448 0 33.12737 0.94710515 -68.148954 0 + 690 -34.07448 -34.07448 0 33.12737 0.94710514 -68.148954 0 + 691 -34.07448 -34.07448 0 33.12737 0.94710514 -68.148954 0 + 692 -34.07448 -34.07448 0 33.12737 0.94710513 -68.148954 0 + 693 -34.07448 -34.07448 0 33.12737 0.94710511 -68.148954 0 + 694 -34.07448 -34.07448 0 33.12737 0.9471051 -68.148954 0 + 695 -34.07448 -34.07448 0 33.127369 0.9471051 -68.148954 0 + 696 -34.07448 -34.07448 0 33.127369 0.94710509 -68.148954 0 + 697 -34.07448 -34.07448 0 33.127369 0.94710509 -68.148954 0 + 698 -34.07448 -34.07448 0 33.127369 0.94710508 -68.148954 0 + 699 -34.07448 -34.07448 0 33.127369 0.94710508 -68.148954 0 + 700 -34.07448 -34.07448 0 33.127369 0.94710507 -68.148954 0 + 701 -34.07448 -34.07448 0 33.127369 0.94710506 -68.148954 0 + 702 -34.07448 -34.07448 0 33.127369 0.94710505 -68.148954 0 + 703 -34.07448 -34.07448 0 33.127369 0.94710504 -68.148954 0 + 704 -34.07448 -34.07448 0 33.127369 0.94710503 -68.148954 0 + 705 -34.07448 -34.07448 0 33.127369 0.94710502 -68.148954 0 + 706 -34.07448 -34.07448 0 33.127369 0.94710501 -68.148954 0 + 707 -34.07448 -34.07448 0 33.127369 0.94710501 -68.148954 0 + 708 -34.07448 -34.07448 0 33.127369 0.947105 -68.148954 0 + 709 -34.07448 -34.07448 0 33.127369 0.947105 -68.148954 0 + 710 -34.07448 -34.07448 0 33.127369 0.94710499 -68.148954 0 + 711 -34.07448 -34.07448 0 33.127369 0.94710499 -68.148954 0 + 712 -34.07448 -34.07448 0 33.127369 0.94710498 -68.148954 0 + 713 -34.07448 -34.07448 0 33.127369 0.94710497 -68.148954 0 + 714 -34.07448 -34.07448 0 33.127369 0.94710496 -68.148954 0 + 715 -34.07448 -34.07448 0 33.127369 0.94710495 -68.148954 0 + 716 -34.07448 -34.07448 0 33.127369 0.94710494 -68.148954 0 + 717 -34.07448 -34.07448 0 33.127369 0.94710494 -68.148954 0 + 718 -34.07448 -34.07448 0 33.127369 0.94710493 -68.148954 0 + 719 -34.07448 -34.07448 0 33.127369 0.94710492 -68.148954 0 + 720 -34.07448 -34.07448 0 33.127369 0.94710492 -68.148954 0 + 721 -34.07448 -34.07448 0 33.127369 0.94710491 -68.148954 0 + 722 -34.07448 -34.07448 0 33.127369 0.9471049 -68.148954 0 + 723 -34.07448 -34.07448 0 33.127369 0.9471049 -68.148954 0 + 724 -34.07448 -34.07448 0 33.127369 0.94710489 -68.148954 0 + 725 -34.07448 -34.07448 0 33.127369 0.94710489 -68.148953 0 + 726 -34.07448 -34.07448 0 33.127369 0.94710488 -68.148953 0 + 727 -34.07448 -34.07448 0 33.127369 0.94710488 -68.148953 0 + 728 -34.07448 -34.07448 0 33.127369 0.94710487 -68.148953 0 + 729 -34.07448 -34.07448 0 33.127369 0.94710486 -68.148953 0 + 730 -34.07448 -34.07448 0 33.127369 0.94710485 -68.148953 0 + 731 -34.07448 -34.07448 0 33.127369 0.94710485 -68.148953 0 + 732 -34.07448 -34.07448 0 33.127369 0.94710484 -68.148953 0 + 733 -34.07448 -34.07448 0 33.127369 0.94710484 -68.148953 0 + 734 -34.07448 -34.07448 0 33.127369 0.94710483 -68.148953 0 + 735 -34.07448 -34.07448 0 33.127369 0.94710483 -68.148953 0 + 736 -34.07448 -34.07448 0 33.127369 0.94710482 -68.148953 0 + 737 -34.07448 -34.07448 0 33.127369 0.94710482 -68.148953 0 + 738 -34.07448 -34.07448 0 33.127369 0.94710481 -68.148953 0 + 739 -34.07448 -34.07448 0 33.127369 0.9471048 -68.148953 0 + 740 -34.07448 -34.07448 0 33.127369 0.94710479 -68.148953 0 + 741 -34.07448 -34.07448 0 33.127369 0.94710479 -68.148953 0 + 742 -34.07448 -34.07448 0 33.127369 0.94710478 -68.148953 0 + 743 -34.07448 -34.07448 0 33.127369 0.94710477 -68.148953 0 + 744 -34.07448 -34.07448 0 33.127369 0.94710476 -68.148953 0 + 745 -34.07448 -34.07448 0 33.127368 0.94710475 -68.148953 0 + 746 -34.07448 -34.07448 0 33.127368 0.94710475 -68.148953 0 + 747 -34.07448 -34.07448 0 33.127368 0.94710474 -68.148953 0 + 748 -34.07448 -34.07448 0 33.127368 0.94710474 -68.148953 0 + 749 -34.07448 -34.07448 0 33.127368 0.94710473 -68.148953 0 + 750 -34.07448 -34.07448 0 33.127368 0.94710472 -68.148953 0 + 751 -34.07448 -34.07448 0 33.127368 0.94710471 -68.148953 0 + 752 -34.07448 -34.07448 0 33.127368 0.94710471 -68.148953 0 + 753 -34.07448 -34.07448 0 33.127368 0.9471047 -68.148953 0 + 754 -34.07448 -34.07448 0 33.127368 0.9471047 -68.148953 0 + 755 -34.07448 -34.07448 0 33.127368 0.94710469 -68.148953 0 + 756 -34.07448 -34.07448 0 33.127368 0.94710469 -68.148953 0 + 757 -34.07448 -34.07448 0 33.127368 0.94710468 -68.148953 0 + 758 -34.07448 -34.07448 0 33.127368 0.94710467 -68.148953 0 + 759 -34.07448 -34.07448 0 33.127368 0.94710466 -68.148953 0 + 760 -34.07448 -34.07448 0 33.127368 0.94710466 -68.148953 0 + 761 -34.07448 -34.07448 0 33.127368 0.94710465 -68.148953 0 + 762 -34.07448 -34.07448 0 33.127368 0.94710464 -68.148952 0 + 763 -34.07448 -34.07448 0 33.127368 0.94710464 -68.148952 0 + 764 -34.07448 -34.07448 0 33.127368 0.94710463 -68.148952 0 + 765 -34.07448 -34.07448 0 33.127368 0.94710462 -68.148952 0 + 766 -34.07448 -34.07448 0 33.127368 0.9471046 -68.148952 0 + 767 -34.07448 -34.07448 0 33.127368 0.94710458 -68.148952 0 + 768 -34.07448 -34.07448 0 33.127368 0.94710453 -68.148952 0 + 769 -34.07448 -34.07448 0 33.127368 0.94710453 -68.148952 0 + 770 -34.07448 -34.07448 0 33.127368 0.94710453 -68.148952 0 + 771 -34.07448 -34.07448 0 33.127368 0.94710452 -68.148952 0 + 772 -34.07448 -34.07448 0 33.127368 0.94710452 -68.148952 0 + 773 -34.07448 -34.07448 0 33.127368 0.9471045 -68.148952 0 + 774 -34.07448 -34.07448 0 33.127368 0.9471045 -68.148952 0 + 775 -34.07448 -34.07448 0 33.127368 0.94710449 -68.148952 0 + 776 -34.07448 -34.07448 0 33.127368 0.94710449 -68.148952 0 + 777 -34.07448 -34.07448 0 33.127368 0.94710448 -68.148952 0 + 778 -34.07448 -34.07448 0 33.127368 0.94710448 -68.148952 0 + 779 -34.07448 -34.07448 0 33.127368 0.94710447 -68.148952 0 + 780 -34.07448 -34.07448 0 33.127368 0.94710447 -68.148952 0 + 781 -34.07448 -34.07448 0 33.127368 0.94710446 -68.148952 0 + 782 -34.07448 -34.07448 0 33.127368 0.94710446 -68.148952 0 + 783 -34.07448 -34.07448 0 33.127368 0.94710445 -68.148952 0 + 784 -34.07448 -34.07448 0 33.127367 0.94710444 -68.148952 0 + 785 -34.07448 -34.07448 0 33.127367 0.94710444 -68.148952 0 + 786 -34.07448 -34.07448 0 33.127367 0.94710443 -68.148952 0 + 787 -34.07448 -34.07448 0 33.127367 0.94710442 -68.148952 0 + 788 -34.07448 -34.07448 0 33.127367 0.94710442 -68.148952 0 + 789 -34.07448 -34.07448 0 33.127367 0.94710441 -68.148951 0 + 790 -34.07448 -34.07448 0 33.127367 0.9471044 -68.148951 0 + 791 -34.07448 -34.07448 0 33.127367 0.9471044 -68.148951 0 + 792 -34.07448 -34.07448 0 33.127367 0.9471044 -68.148951 0 + 793 -34.07448 -34.07448 0 33.127367 0.94710439 -68.148951 0 + 794 -34.07448 -34.07448 0 33.127367 0.94710439 -68.148951 0 + 795 -34.07448 -34.07448 0 33.127367 0.94710438 -68.148951 0 + 796 -34.07448 -34.07448 0 33.127367 0.94710438 -68.148951 0 + 797 -34.07448 -34.07448 0 33.127367 0.94710437 -68.148951 0 + 798 -34.07448 -34.07448 0 33.127367 0.94710436 -68.148951 0 + 799 -34.07448 -34.07448 0 33.127367 0.94710436 -68.148951 0 + 800 -34.07448 -34.07448 0 33.127367 0.94710435 -68.148951 0 + 801 -34.07448 -34.07448 0 33.127367 0.94710434 -68.148951 0 + 802 -34.07448 -34.07448 0 33.127367 0.94710434 -68.148951 0 + 803 -34.07448 -34.07448 0 33.127367 0.94710433 -68.148951 0 + 804 -34.07448 -34.07448 0 33.127367 0.94710433 -68.148951 0 + 805 -34.07448 -34.07448 0 33.127367 0.94710432 -68.148951 0 + 806 -34.07448 -34.07448 0 33.127367 0.94710432 -68.148951 0 + 807 -34.07448 -34.07448 0 33.127367 0.94710431 -68.148951 0 + 808 -34.07448 -34.07448 0 33.127367 0.94710431 -68.148951 0 + 809 -34.07448 -34.07448 0 33.127367 0.9471043 -68.148951 0 + 810 -34.07448 -34.07448 0 33.127367 0.9471043 -68.148951 0 + 811 -34.07448 -34.07448 0 33.127367 0.94710429 -68.148951 0 + 812 -34.07448 -34.07448 0 33.127367 0.94710429 -68.148951 0 + 813 -34.07448 -34.07448 0 33.127367 0.94710429 -68.148951 0 + 814 -34.07448 -34.07448 0 33.127367 0.94710428 -68.148951 0 + 815 -34.07448 -34.07448 0 33.127367 0.94710427 -68.148951 0 + 816 -34.07448 -34.07448 0 33.127367 0.94710427 -68.148951 0 + 817 -34.07448 -34.07448 0 33.127367 0.94710427 -68.148951 0 + 818 -34.07448 -34.07448 0 33.127367 0.94710426 -68.148951 0 + 819 -34.07448 -34.07448 0 33.127367 0.94710426 -68.148951 0 + 820 -34.07448 -34.07448 0 33.127367 0.94710425 -68.148951 0 + 821 -34.07448 -34.07448 0 33.127367 0.94710425 -68.148951 0 + 822 -34.07448 -34.07448 0 33.127367 0.94710424 -68.148951 0 + 823 -34.07448 -34.07448 0 33.127367 0.94710423 -68.148951 0 + 824 -34.07448 -34.07448 0 33.127367 0.94710423 -68.148951 0 + 825 -34.07448 -34.07448 0 33.127367 0.94710423 -68.148951 0 + 826 -34.07448 -34.07448 0 33.127367 0.94710422 -68.148951 0 + 827 -34.07448 -34.07448 0 33.127367 0.94710421 -68.148951 0 + 828 -34.07448 -34.07448 0 33.127367 0.94710421 -68.148951 0 + 829 -34.07448 -34.07448 0 33.127367 0.9471042 -68.148951 0 + 830 -34.07448 -34.07448 0 33.127366 0.94710415 -68.14895 0 + 831 -34.07448 -34.07448 0 33.127366 0.94710412 -68.14895 0 + 832 -34.07448 -34.07448 0 33.127366 0.94710409 -68.14895 0 + 833 -34.07448 -34.07448 0 33.127366 0.94710406 -68.14895 0 + 834 -34.07448 -34.07448 0 33.127366 0.94710402 -68.14895 0 + 835 -34.07448 -34.07448 0 33.127366 0.94710394 -68.148949 0 + 836 -34.07448 -34.07448 0 33.127366 0.94710393 -68.148949 0 + 837 -34.07448 -34.07448 0 33.127366 0.94710393 -68.148949 0 + 838 -34.07448 -34.07448 0 33.127366 0.94710393 -68.148949 0 + 839 -34.07448 -34.07448 0 33.127366 0.94710392 -68.148949 0 + 840 -34.07448 -34.07448 0 33.127366 0.94710392 -68.148949 0 + 841 -34.07448 -34.07448 0 33.127366 0.94710392 -68.148949 0 + 842 -34.07448 -34.07448 0 33.127365 0.94710391 -68.148949 0 + 843 -34.07448 -34.07448 0 33.127365 0.94710391 -68.148949 0 + 844 -34.07448 -34.07448 0 33.127365 0.94710391 -68.148949 0 + 845 -34.07448 -34.07448 0 33.127365 0.9471039 -68.148949 0 + 846 -34.07448 -34.07448 0 33.127365 0.94710389 -68.148949 0 + 847 -34.07448 -34.07448 0 33.127365 0.94710389 -68.148949 0 + 848 -34.07448 -34.07448 0 33.127365 0.94710389 -68.148949 0 + 849 -34.07448 -34.07448 0 33.127365 0.94710389 -68.148949 0 + 850 -34.07448 -34.07448 0 33.127365 0.94710389 -68.148949 0 + 851 -34.07448 -34.07448 0 33.127365 0.94710388 -68.148949 0 + 852 -34.07448 -34.07448 0 33.127365 0.94710388 -68.148949 0 + 853 -34.07448 -34.07448 0 33.127365 0.94710387 -68.148949 0 + 854 -34.07448 -34.07448 0 33.127365 0.94710386 -68.148949 0 + 855 -34.07448 -34.07448 0 33.127365 0.94710385 -68.148949 0 + 856 -34.07448 -34.07448 0 33.127365 0.94710385 -68.148949 0 + 857 -34.07448 -34.07448 0 33.127365 0.94710385 -68.148949 0 + 858 -34.07448 -34.07448 0 33.127365 0.94710384 -68.148949 0 + 859 -34.07448 -34.07448 0 33.127365 0.94710384 -68.148949 0 + 860 -34.07448 -34.07448 0 33.127365 0.94710383 -68.148949 0 + 861 -34.07448 -34.07448 0 33.127365 0.94710383 -68.148949 0 + 862 -34.07448 -34.07448 0 33.127365 0.94710383 -68.148949 0 + 863 -34.07448 -34.07448 0 33.127365 0.94710382 -68.148949 0 + 864 -34.07448 -34.07448 0 33.127365 0.94710381 -68.148949 0 + 865 -34.07448 -34.07448 0 33.127365 0.94710381 -68.148949 0 + 866 -34.07448 -34.07448 0 33.127365 0.94710381 -68.148949 0 + 867 -34.07448 -34.07448 0 33.127365 0.9471038 -68.148949 0 + 868 -34.07448 -34.07448 0 33.127365 0.9471038 -68.148948 0 + 869 -34.07448 -34.07448 0 33.127365 0.94710379 -68.148948 0 + 870 -34.07448 -34.07448 0 33.127365 0.94710378 -68.148948 0 + 871 -34.07448 -34.07448 0 33.127365 0.94710378 -68.148948 0 + 872 -34.07448 -34.07448 0 33.127365 0.94710377 -68.148948 0 + 873 -34.07448 -34.07448 0 33.127365 0.94710377 -68.148948 0 + 874 -34.07448 -34.07448 0 33.127365 0.94710377 -68.148948 0 + 875 -34.07448 -34.07448 0 33.127365 0.94710377 -68.148948 0 + 876 -34.07448 -34.07448 0 33.127365 0.94710376 -68.148948 0 + 877 -34.07448 -34.07448 0 33.127365 0.94710376 -68.148948 0 + 878 -34.07448 -34.07448 0 33.127365 0.94710375 -68.148948 0 + 879 -34.07448 -34.07448 0 33.127365 0.94710375 -68.148948 0 + 880 -34.07448 -34.07448 0 33.127365 0.94710374 -68.148948 0 + 881 -34.07448 -34.07448 0 33.127365 0.94710374 -68.148948 0 + 882 -34.07448 -34.07448 0 33.127365 0.94710373 -68.148948 0 + 883 -34.07448 -34.07448 0 33.127365 0.94710373 -68.148948 0 + 884 -34.07448 -34.07448 0 33.127365 0.94710372 -68.148948 0 + 885 -34.07448 -34.07448 0 33.127365 0.94710372 -68.148948 0 + 886 -34.07448 -34.07448 0 33.127365 0.94710371 -68.148948 0 + 887 -34.07448 -34.07448 0 33.127365 0.94710371 -68.148948 0 + 888 -34.07448 -34.07448 0 33.127365 0.94710371 -68.148948 0 + 889 -34.07448 -34.07448 0 33.127365 0.94710371 -68.148948 0 + 890 -34.07448 -34.07448 0 33.127365 0.9471037 -68.148948 0 + 891 -34.07448 -34.07448 0 33.127365 0.9471037 -68.148948 0 + 892 -34.07448 -34.07448 0 33.127365 0.94710369 -68.148948 0 + 893 -34.07448 -34.07448 0 33.127364 0.94710369 -68.148948 0 + 894 -34.07448 -34.07448 0 33.127364 0.94710368 -68.148948 0 + 895 -34.07448 -34.07448 0 33.127364 0.94710368 -68.148948 0 + 896 -34.07448 -34.07448 0 33.127364 0.94710367 -68.148948 0 + 897 -34.07448 -34.07448 0 33.127364 0.94710367 -68.148948 0 + 898 -34.07448 -34.07448 0 33.127364 0.94710366 -68.148948 0 + 899 -34.07448 -34.07448 0 33.127364 0.94710366 -68.148948 0 + 900 -34.07448 -34.07448 0 33.127364 0.94710366 -68.148948 0 + 901 -34.07448 -34.07448 0 33.127364 0.94710365 -68.148948 0 + 902 -34.07448 -34.07448 0 33.127364 0.94710365 -68.148948 0 + 903 -34.07448 -34.07448 0 33.127364 0.94710365 -68.148948 0 + 904 -34.07448 -34.07448 0 33.127364 0.94710364 -68.148948 0 + 905 -34.07448 -34.07448 0 33.127364 0.94710364 -68.148948 0 + 906 -34.07448 -34.07448 0 33.127364 0.94710363 -68.148948 0 + 907 -34.07448 -34.07448 0 33.127364 0.94710363 -68.148948 0 + 908 -34.07448 -34.07448 0 33.127364 0.94710363 -68.148948 0 + 909 -34.07448 -34.07448 0 33.127364 0.94710362 -68.148948 0 + 910 -34.07448 -34.07448 0 33.127364 0.94710362 -68.148948 0 + 911 -34.07448 -34.07448 0 33.127364 0.94710362 -68.148948 0 + 912 -34.07448 -34.07448 0 33.127364 0.94710362 -68.148947 0 + 913 -34.07448 -34.07448 0 33.127364 0.94710361 -68.148947 0 + 914 -34.07448 -34.07448 0 33.127364 0.94710361 -68.148947 0 + 915 -34.07448 -34.07448 0 33.127364 0.9471036 -68.148947 0 + 916 -34.07448 -34.07448 0 33.127364 0.9471036 -68.148947 0 + 917 -34.07448 -34.07448 0 33.127364 0.94710359 -68.148947 0 + 918 -34.07448 -34.07448 0 33.127364 0.94710359 -68.148947 0 + 919 -34.07448 -34.07448 0 33.127364 0.94710358 -68.148947 0 + 920 -34.07448 -34.07448 0 33.127364 0.94710358 -68.148947 0 + 921 -34.07448 -34.07448 0 33.127364 0.94710357 -68.148947 0 + 922 -34.07448 -34.07448 0 33.127364 0.94710357 -68.148947 0 + 923 -34.07448 -34.07448 0 33.127364 0.94710356 -68.148947 0 + 924 -34.07448 -34.07448 0 33.127364 0.94710356 -68.148947 0 + 925 -34.07448 -34.07448 0 33.127364 0.94710356 -68.148947 0 + 926 -34.07448 -34.07448 0 33.127364 0.94710355 -68.148947 0 + 927 -34.07448 -34.07448 0 33.127364 0.94710355 -68.148947 0 + 928 -34.07448 -34.07448 0 33.127364 0.94710355 -68.148947 0 + 929 -34.07448 -34.07448 0 33.127364 0.94710354 -68.148947 0 + 930 -34.07448 -34.07448 0 33.127364 0.94710354 -68.148947 0 + 931 -34.07448 -34.07448 0 33.127364 0.94710353 -68.148947 0 + 932 -34.07448 -34.07448 0 33.127364 0.94710353 -68.148947 0 + 933 -34.07448 -34.07448 0 33.127364 0.94710353 -68.148947 0 + 934 -34.07448 -34.07448 0 33.127364 0.94710352 -68.148947 0 + 935 -34.07448 -34.07448 0 33.127364 0.94710352 -68.148947 0 + 936 -34.07448 -34.07448 0 33.127364 0.94710352 -68.148947 0 + 937 -34.07448 -34.07448 0 33.127364 0.94710351 -68.148947 0 + 938 -34.07448 -34.07448 0 33.127364 0.94710351 -68.148947 0 + 939 -34.07448 -34.07448 0 33.127364 0.9471035 -68.148947 0 + 940 -34.07448 -34.07448 0 33.127364 0.9471035 -68.148947 0 + 941 -34.07448 -34.07448 0 33.127364 0.94710349 -68.148947 0 + 942 -34.07448 -34.07448 0 33.127364 0.94710349 -68.148947 0 + 943 -34.07448 -34.07448 0 33.127364 0.94710349 -68.148947 0 + 944 -34.07448 -34.07448 0 33.127364 0.94710348 -68.148947 0 + 945 -34.07448 -34.07448 0 33.127364 0.94710348 -68.148947 0 + 946 -34.07448 -34.07448 0 33.127364 0.94710348 -68.148947 0 + 947 -34.07448 -34.07448 0 33.127364 0.94710347 -68.148947 0 + 948 -34.07448 -34.07448 0 33.127364 0.94710347 -68.148947 0 + 949 -34.07448 -34.07448 0 33.127363 0.94710346 -68.148947 0 + 950 -34.07448 -34.07448 0 33.127363 0.94710346 -68.148947 0 + 951 -34.07448 -34.07448 0 33.127363 0.94710346 -68.148947 0 + 952 -34.07448 -34.07448 0 33.127363 0.94710345 -68.148947 0 + 953 -34.07448 -34.07448 0 33.127363 0.94710345 -68.148947 0 + 954 -34.07448 -34.07448 0 33.127363 0.94710344 -68.148947 0 + 955 -34.07448 -34.07448 0 33.127363 0.94710344 -68.148947 0 + 956 -34.07448 -34.07448 0 33.127363 0.94710343 -68.148946 0 + 957 -34.07448 -34.07448 0 33.127363 0.94710343 -68.148946 0 + 958 -34.07448 -34.07448 0 33.127363 0.94710343 -68.148946 0 + 959 -34.07448 -34.07448 0 33.127363 0.94710342 -68.148946 0 + 960 -34.07448 -34.07448 0 33.127363 0.94710342 -68.148946 0 + 961 -34.07448 -34.07448 0 33.127363 0.94710342 -68.148946 0 + 962 -34.07448 -34.07448 0 33.127363 0.94710342 -68.148946 0 + 963 -34.07448 -34.07448 0 33.127363 0.94710341 -68.148946 0 + 964 -34.07448 -34.07448 0 33.127363 0.94710341 -68.148946 0 + 965 -34.07448 -34.07448 0 33.127363 0.9471034 -68.148946 0 + 966 -34.07448 -34.07448 0 33.127363 0.9471034 -68.148946 0 + 967 -34.07448 -34.07448 0 33.127363 0.94710339 -68.148946 0 + 968 -34.07448 -34.07448 0 33.127363 0.94710339 -68.148946 0 + 969 -34.07448 -34.07448 0 33.127363 0.94710339 -68.148946 0 + 970 -34.07448 -34.07448 0 33.127363 0.94710339 -68.148946 0 + 971 -34.07448 -34.07448 0 33.127363 0.94710338 -68.148946 0 + 972 -34.07448 -34.07448 0 33.127363 0.94710338 -68.148946 0 + 973 -34.07448 -34.07448 0 33.127363 0.94710337 -68.148946 0 + 974 -34.07448 -34.07448 0 33.127363 0.94710337 -68.148946 0 + 975 -34.07448 -34.07448 0 33.127363 0.94710337 -68.148946 0 + 976 -34.07448 -34.07448 0 33.127363 0.94710336 -68.148946 0 + 977 -34.07448 -34.07448 0 33.127363 0.94710336 -68.148946 0 + 978 -34.07448 -34.07448 0 33.127363 0.94710336 -68.148946 0 + 979 -34.07448 -34.07448 0 33.127363 0.94710335 -68.148946 0 + 980 -34.07448 -34.07448 0 33.127363 0.94710335 -68.148946 0 + 981 -34.07448 -34.07448 0 33.127363 0.94710334 -68.148946 0 + 982 -34.07448 -34.07448 0 33.127363 0.94710334 -68.148946 0 + 983 -34.07448 -34.07448 0 33.127363 0.94710334 -68.148946 0 + 984 -34.07448 -34.07448 0 33.127363 0.94710334 -68.148946 0 + 985 -34.07448 -34.07448 0 33.127363 0.94710333 -68.148946 0 + 986 -34.07448 -34.07448 0 33.127363 0.94710332 -68.148946 0 + 987 -34.07448 -34.07448 0 33.127363 0.94710332 -68.148946 0 + 988 -34.07448 -34.07448 0 33.127363 0.94710331 -68.148946 0 + 989 -34.07448 -34.07448 0 33.127363 0.94710331 -68.148946 0 + 990 -34.07448 -34.07448 0 33.127363 0.9471033 -68.148946 0 + 991 -34.07448 -34.07448 0 33.127363 0.9471033 -68.148946 0 + 992 -34.07448 -34.07448 0 33.127363 0.9471033 -68.148946 0 + 993 -34.07448 -34.07448 0 33.127363 0.94710329 -68.148946 0 + 994 -34.07448 -34.07448 0 33.127363 0.94710329 -68.148946 0 + 995 -34.07448 -34.07448 0 33.127363 0.94710328 -68.148946 0 + 996 -34.07448 -34.07448 0 33.127363 0.94710326 -68.148945 0 + 997 -34.07448 -34.07448 0 33.127362 0.94710323 -68.148945 0 + 998 -34.07448 -34.07448 0 33.127362 0.94710323 -68.148945 0 + 999 -34.07448 -34.07448 0 33.127362 0.94710322 -68.148945 0 + 1000 -34.07448 -34.07448 0 33.127362 0.94710322 -68.148945 0 + 1001 -34.07448 -34.07448 0 33.127362 0.94710322 -68.148945 0 + 1002 -34.07448 -34.07448 0 33.127362 0.94710321 -68.148945 0 + 1003 -34.07448 -34.07448 0 33.127362 0.94710321 -68.148945 0 + 1004 -34.07448 -34.07448 0 33.127362 0.9471032 -68.148945 0 + 1005 -34.07448 -34.07448 0 33.127362 0.9471032 -68.148945 0 + 1006 -34.07448 -34.07448 0 33.127362 0.9471032 -68.148945 0 + 1007 -34.07448 -34.07448 0 33.127362 0.94710319 -68.148945 0 + 1008 -34.07448 -34.07448 0 33.127362 0.94710319 -68.148945 0 + 1009 -34.07448 -34.07448 0 33.127362 0.94710319 -68.148945 0 + 1010 -34.07448 -34.07448 0 33.127362 0.94710318 -68.148945 0 + 1011 -34.07448 -34.07448 0 33.127362 0.94710318 -68.148945 0 + 1012 -34.07448 -34.07448 0 33.127362 0.94710318 -68.148945 0 + 1013 -34.07448 -34.07448 0 33.127362 0.94710317 -68.148945 0 + 1014 -34.07448 -34.07448 0 33.127362 0.94710317 -68.148945 0 + 1015 -34.07448 -34.07448 0 33.127362 0.94710317 -68.148945 0 + 1016 -34.07448 -34.07448 0 33.127362 0.94710317 -68.148945 0 + 1017 -34.07448 -34.07448 0 33.127362 0.94710316 -68.148945 0 + 1018 -34.07448 -34.07448 0 33.127362 0.94710316 -68.148945 0 + 1019 -34.07448 -34.07448 0 33.127362 0.94710315 -68.148945 0 + 1020 -34.07448 -34.07448 0 33.127362 0.94710315 -68.148945 0 + 1021 -34.07448 -34.07448 0 33.127362 0.94710314 -68.148945 0 + 1022 -34.07448 -34.07448 0 33.127362 0.94710314 -68.148945 0 + 1023 -34.07448 -34.07448 0 33.127362 0.94710314 -68.148945 0 + 1024 -34.07448 -34.07448 0 33.127362 0.94710313 -68.148945 0 + 1025 -34.07448 -34.07448 0 33.127362 0.94710313 -68.148945 0 + 1026 -34.07448 -34.07448 0 33.127362 0.94710313 -68.148945 0 + 1027 -34.07448 -34.07448 0 33.127362 0.94710312 -68.148945 0 + 1028 -34.07448 -34.07448 0 33.127362 0.94710312 -68.148945 0 + 1029 -34.07448 -34.07448 0 33.127362 0.94710312 -68.148945 0 + 1030 -34.07448 -34.07448 0 33.127362 0.94710312 -68.148945 0 + 1031 -34.07448 -34.07448 0 33.127362 0.94710311 -68.148945 0 + 1032 -34.07448 -34.07448 0 33.127362 0.94710311 -68.148945 0 + 1033 -34.07448 -34.07448 0 33.127362 0.94710311 -68.148945 0 + 1034 -34.07448 -34.07448 0 33.127362 0.94710311 -68.148945 0 + 1035 -34.07448 -34.07448 0 33.127362 0.9471031 -68.148945 0 + 1036 -34.07448 -34.07448 0 33.127362 0.9471031 -68.148945 0 + 1037 -34.07448 -34.07448 0 33.127362 0.9471031 -68.148945 0 + 1038 -34.07448 -34.07448 0 33.127362 0.94710309 -68.148944 0 + 1039 -34.07448 -34.07448 0 33.127362 0.94710309 -68.148944 0 + 1040 -34.07448 -34.07448 0 33.127362 0.94710309 -68.148944 0 + 1041 -34.07448 -34.07448 0 33.127362 0.94710309 -68.148944 0 + 1042 -34.07448 -34.07448 0 33.127362 0.94710308 -68.148944 0 + 1043 -34.07448 -34.07448 0 33.127362 0.94710308 -68.148944 0 + 1044 -34.07448 -34.07448 0 33.127362 0.94710308 -68.148944 0 + 1045 -34.07448 -34.07448 0 33.127362 0.94710308 -68.148944 0 + 1046 -34.07448 -34.07448 0 33.127362 0.94710307 -68.148944 0 + 1047 -34.07448 -34.07448 0 33.127362 0.94710307 -68.148944 0 + 1048 -34.07448 -34.07448 0 33.127362 0.94710307 -68.148944 0 + 1049 -34.07448 -34.07448 0 33.127362 0.94710306 -68.148944 0 + 1050 -34.07448 -34.07448 0 33.127362 0.94710306 -68.148944 0 + 1051 -34.07448 -34.07448 0 33.127362 0.94710305 -68.148944 0 + 1052 -34.07448 -34.07448 0 33.127362 0.94710305 -68.148944 0 + 1053 -34.07448 -34.07448 0 33.127361 0.94710305 -68.148944 0 + 1054 -34.07448 -34.07448 0 33.127361 0.94710305 -68.148944 0 + 1055 -34.07448 -34.07448 0 33.127361 0.94710305 -68.148944 0 + 1056 -34.07448 -34.07448 0 33.127361 0.94710304 -68.148944 0 + 1057 -34.07448 -34.07448 0 33.127361 0.94710304 -68.148944 0 + 1058 -34.07448 -34.07448 0 33.127361 0.94710303 -68.148944 0 + 1059 -34.07448 -34.07448 0 33.127361 0.94710303 -68.148944 0 + 1060 -34.07448 -34.07448 0 33.127361 0.94710303 -68.148944 0 + 1061 -34.07448 -34.07448 0 33.127361 0.94710303 -68.148944 0 + 1062 -34.07448 -34.07448 0 33.127361 0.94710302 -68.148944 0 + 1063 -34.07448 -34.07448 0 33.127361 0.94710302 -68.148944 0 + 1064 -34.07448 -34.07448 0 33.127361 0.94710301 -68.148944 0 + 1065 -34.07448 -34.07448 0 33.127361 0.94710301 -68.148944 0 + 1066 -34.07448 -34.07448 0 33.127361 0.94710301 -68.148944 0 + 1067 -34.07448 -34.07448 0 33.127361 0.94710301 -68.148944 0 + 1068 -34.07448 -34.07448 0 33.127361 0.94710301 -68.148944 0 + 1069 -34.07448 -34.07448 0 33.127361 0.947103 -68.148944 0 + 1070 -34.07448 -34.07448 0 33.127361 0.947103 -68.148944 0 + 1071 -34.07448 -34.07448 0 33.127361 0.94710299 -68.148944 0 + 1072 -34.07448 -34.07448 0 33.127361 0.94710299 -68.148944 0 + 1073 -34.07448 -34.07448 0 33.127361 0.94710299 -68.148944 0 + 1074 -34.07448 -34.07448 0 33.127361 0.94710298 -68.148944 0 + 1075 -34.07448 -34.07448 0 33.127361 0.94710298 -68.148944 0 + 1076 -34.07448 -34.07448 0 33.127361 0.94710298 -68.148944 0 + 1077 -34.07448 -34.07448 0 33.127361 0.94710297 -68.148944 0 + 1078 -34.07448 -34.07448 0 33.127361 0.94710297 -68.148944 0 + 1079 -34.07448 -34.07448 0 33.127361 0.94710297 -68.148944 0 + 1080 -34.07448 -34.07448 0 33.127361 0.94710297 -68.148944 0 + 1081 -34.07448 -34.07448 0 33.127361 0.94710296 -68.148944 0 + 1082 -34.07448 -34.07448 0 33.127361 0.94710296 -68.148944 0 + 1083 -34.07448 -34.07448 0 33.127361 0.94710295 -68.148944 0 + 1084 -34.07448 -34.07448 0 33.127361 0.94710295 -68.148944 0 + 1085 -34.07448 -34.07448 0 33.127361 0.94710295 -68.148944 0 + 1086 -34.07448 -34.07448 0 33.127361 0.94710295 -68.148944 0 + 1087 -34.07448 -34.07448 0 33.127361 0.94710294 -68.148944 0 + 1088 -34.07448 -34.07448 0 33.127361 0.94710294 -68.148944 0 + 1089 -34.07448 -34.07448 0 33.127361 0.94710294 -68.148944 0 + 1090 -34.07448 -34.07448 0 33.127361 0.94710294 -68.148944 0 + 1091 -34.07448 -34.07448 0 33.127361 0.94710293 -68.148944 0 + 1092 -34.07448 -34.07448 0 33.127361 0.94710293 -68.148944 0 + 1093 -34.07448 -34.07448 0 33.127361 0.94710293 -68.148944 0 + 1094 -34.07448 -34.07448 0 33.127361 0.94710293 -68.148944 0 + 1095 -34.07448 -34.07448 0 33.127361 0.94710293 -68.148943 0 + 1096 -34.07448 -34.07448 0 33.127361 0.94710292 -68.148943 0 + 1097 -34.07448 -34.07448 0 33.127361 0.94710291 -68.148943 0 + 1098 -34.07448 -34.07448 0 33.127361 0.94710291 -68.148943 0 + 1099 -34.07448 -34.07448 0 33.127361 0.94710291 -68.148943 0 + 1100 -34.07448 -34.07448 0 33.127361 0.9471029 -68.148943 0 + 1101 -34.07448 -34.07448 0 33.127361 0.9471029 -68.148943 0 + 1102 -34.07448 -34.07448 0 33.127361 0.9471029 -68.148943 0 + 1103 -34.07448 -34.07448 0 33.127361 0.9471029 -68.148943 0 + 1104 -34.07448 -34.07448 0 33.127361 0.94710289 -68.148943 0 + 1105 -34.07448 -34.07448 0 33.127361 0.94710289 -68.148943 0 + 1106 -34.07448 -34.07448 0 33.127361 0.94710289 -68.148943 0 + 1107 -34.07448 -34.07448 0 33.127361 0.94710289 -68.148943 0 + 1108 -34.07448 -34.07448 0 33.127361 0.94710288 -68.148943 0 + 1109 -34.07448 -34.07448 0 33.127361 0.94710288 -68.148943 0 + 1110 -34.07448 -34.07448 0 33.127361 0.94710288 -68.148943 0 + 1111 -34.07448 -34.07448 0 33.127361 0.94710288 -68.148943 0 + 1112 -34.07448 -34.07448 0 33.127361 0.94710287 -68.148943 0 + 1113 -34.07448 -34.07448 0 33.127361 0.94710287 -68.148943 0 + 1114 -34.07448 -34.07448 0 33.127361 0.94710287 -68.148943 0 + 1115 -34.07448 -34.07448 0 33.127361 0.94710286 -68.148943 0 + 1116 -34.07448 -34.07448 0 33.127361 0.94710286 -68.148943 0 + 1117 -34.07448 -34.07448 0 33.127361 0.94710286 -68.148943 0 + 1118 -34.07448 -34.07448 0 33.127361 0.94710286 -68.148943 0 + 1119 -34.07448 -34.07448 0 33.127361 0.94710285 -68.148943 0 + 1120 -34.07448 -34.07448 0 33.127361 0.94710285 -68.148943 0 + 1121 -34.07448 -34.07448 0 33.12736 0.94710285 -68.148943 0 + 1122 -34.07448 -34.07448 0 33.12736 0.94710285 -68.148943 0 + 1123 -34.07448 -34.07448 0 33.12736 0.94710284 -68.148943 0 + 1124 -34.07448 -34.07448 0 33.12736 0.94710284 -68.148943 0 + 1125 -34.07448 -34.07448 0 33.12736 0.94710284 -68.148943 0 + 1126 -34.07448 -34.07448 0 33.12736 0.94710283 -68.148943 0 + 1127 -34.07448 -34.07448 0 33.12736 0.94710283 -68.148943 0 + 1128 -34.07448 -34.07448 0 33.12736 0.94710283 -68.148943 0 + 1129 -34.07448 -34.07448 0 33.12736 0.94710283 -68.148943 0 + 1130 -34.07448 -34.07448 0 33.12736 0.94710282 -68.148943 0 + 1131 -34.07448 -34.07448 0 33.12736 0.94710282 -68.148943 0 + 1132 -34.07448 -34.07448 0 33.12736 0.94710282 -68.148943 0 + 1133 -34.07448 -34.07448 0 33.12736 0.94710281 -68.148943 0 + 1134 -34.07448 -34.07448 0 33.12736 0.94710281 -68.148943 0 + 1135 -34.07448 -34.07448 0 33.12736 0.94710281 -68.148943 0 + 1136 -34.07448 -34.07448 0 33.12736 0.9471028 -68.148943 0 + 1137 -34.07448 -34.07448 0 33.12736 0.9471028 -68.148943 0 + 1138 -34.07448 -34.07448 0 33.12736 0.9471028 -68.148943 0 + 1139 -34.07448 -34.07448 0 33.12736 0.94710279 -68.148943 0 + 1140 -34.07448 -34.07448 0 33.12736 0.94710279 -68.148943 0 + 1141 -34.07448 -34.07448 0 33.12736 0.94710279 -68.148943 0 + 1142 -34.07448 -34.07448 0 33.12736 0.94710278 -68.148943 0 + 1143 -34.07448 -34.07448 0 33.12736 0.94710278 -68.148943 0 + 1144 -34.07448 -34.07448 0 33.12736 0.94710278 -68.148943 0 + 1145 -34.07448 -34.07448 0 33.12736 0.94710278 -68.148943 0 + 1146 -34.07448 -34.07448 0 33.12736 0.94710277 -68.148943 0 + 1147 -34.07448 -34.07448 0 33.12736 0.94710277 -68.148943 0 + 1148 -34.07448 -34.07448 0 33.12736 0.94710277 -68.148943 0 + 1149 -34.07448 -34.07448 0 33.12736 0.94710276 -68.148943 0 + 1150 -34.07448 -34.07448 0 33.12736 0.94710276 -68.148942 0 + 1151 -34.07448 -34.07448 0 33.12736 0.94710276 -68.148942 0 + 1152 -34.07448 -34.07448 0 33.12736 0.94710275 -68.148942 0 + 1153 -34.07448 -34.07448 0 33.12736 0.94710275 -68.148942 0 + 1154 -34.07448 -34.07448 0 33.12736 0.94710275 -68.148942 0 + 1155 -34.07448 -34.07448 0 33.12736 0.94710275 -68.148942 0 + 1156 -34.07448 -34.07448 0 33.12736 0.94710274 -68.148942 0 + 1157 -34.07448 -34.07448 0 33.12736 0.94710274 -68.148942 0 + 1158 -34.07448 -34.07448 0 33.12736 0.94710274 -68.148942 0 + 1159 -34.07448 -34.07448 0 33.12736 0.94710273 -68.148942 0 + 1160 -34.07448 -34.07448 0 33.12736 0.94710273 -68.148942 0 + 1161 -34.07448 -34.07448 0 33.12736 0.94710273 -68.148942 0 + 1162 -34.07448 -34.07448 0 33.12736 0.94710272 -68.148942 0 + 1163 -34.07448 -34.07448 0 33.12736 0.94710272 -68.148942 0 + 1164 -34.07448 -34.07448 0 33.12736 0.94710272 -68.148942 0 + 1165 -34.07448 -34.07448 0 33.12736 0.94710271 -68.148942 0 + 1166 -34.07448 -34.07448 0 33.12736 0.94710271 -68.148942 0 + 1167 -34.07448 -34.07448 0 33.12736 0.94710271 -68.148942 0 + 1168 -34.07448 -34.07448 0 33.12736 0.9471027 -68.148942 0 + 1169 -34.07448 -34.07448 0 33.12736 0.9471027 -68.148942 0 + 1170 -34.07448 -34.07448 0 33.12736 0.9471027 -68.148942 0 + 1171 -34.07448 -34.07448 0 33.12736 0.9471027 -68.148942 0 + 1172 -34.07448 -34.07448 0 33.12736 0.94710269 -68.148942 0 + 1173 -34.07448 -34.07448 0 33.12736 0.94710269 -68.148942 0 + 1174 -34.07448 -34.07448 0 33.12736 0.94710269 -68.148942 0 + 1175 -34.07448 -34.07448 0 33.12736 0.94710268 -68.148942 0 + 1176 -34.07448 -34.07448 0 33.12736 0.94710268 -68.148942 0 + 1177 -34.07448 -34.07448 0 33.12736 0.94710268 -68.148942 0 + 1178 -34.07448 -34.07448 0 33.12736 0.94710267 -68.148942 0 + 1179 -34.07448 -34.07448 0 33.12736 0.94710267 -68.148942 0 + 1180 -34.07448 -34.07448 0 33.12736 0.94710267 -68.148942 0 + 1181 -34.07448 -34.07448 0 33.12736 0.94710266 -68.148942 0 + 1182 -34.07448 -34.07448 0 33.12736 0.94710266 -68.148942 0 + 1183 -34.07448 -34.07448 0 33.12736 0.94710266 -68.148942 0 + 1184 -34.07448 -34.07448 0 33.127359 0.94710266 -68.148942 0 + 1185 -34.07448 -34.07448 0 33.127359 0.94710265 -68.148942 0 + 1186 -34.07448 -34.07448 0 33.127359 0.94710265 -68.148942 0 + 1187 -34.07448 -34.07448 0 33.127359 0.94710264 -68.148942 0 + 1188 -34.07448 -34.07448 0 33.127359 0.94710264 -68.148942 0 + 1189 -34.07448 -34.07448 0 33.127359 0.94710264 -68.148942 0 + 1190 -34.07448 -34.07448 0 33.127359 0.94710264 -68.148942 0 + 1191 -34.07448 -34.07448 0 33.127359 0.94710263 -68.148942 0 + 1192 -34.07448 -34.07448 0 33.127359 0.94710263 -68.148942 0 + 1193 -34.07448 -34.07448 0 33.127359 0.94710262 -68.148942 0 + 1194 -34.07448 -34.07448 0 33.127359 0.94710262 -68.148942 0 + 1195 -34.07448 -34.07448 0 33.127359 0.94710262 -68.148942 0 + 1196 -34.07448 -34.07448 0 33.127359 0.94710262 -68.148942 0 + 1197 -34.07448 -34.07448 0 33.127359 0.94710262 -68.148942 0 + 1198 -34.07448 -34.07448 0 33.127359 0.94710261 -68.148942 0 + 1199 -34.07448 -34.07448 0 33.127359 0.94710261 -68.148942 0 + 1200 -34.07448 -34.07448 0 33.127359 0.94710261 -68.148942 0 + 1201 -34.07448 -34.07448 0 33.127359 0.9471026 -68.148942 0 + 1202 -34.07448 -34.07448 0 33.127359 0.9471026 -68.148941 0 + 1203 -34.07448 -34.07448 0 33.127359 0.9471026 -68.148941 0 + 1204 -34.07448 -34.07448 0 33.127359 0.94710259 -68.148941 0 + 1205 -34.07448 -34.07448 0 33.127359 0.94710259 -68.148941 0 + 1206 -34.07448 -34.07448 0 33.127359 0.94710259 -68.148941 0 + 1207 -34.07448 -34.07448 0 33.127359 0.94710259 -68.148941 0 + 1208 -34.07448 -34.07448 0 33.127359 0.94710258 -68.148941 0 + 1209 -34.07448 -34.07448 0 33.127359 0.94710258 -68.148941 0 + 1210 -34.07448 -34.07448 0 33.127359 0.94710258 -68.148941 0 + 1211 -34.07448 -34.07448 0 33.127359 0.94710257 -68.148941 0 + 1212 -34.07448 -34.07448 0 33.127359 0.94710257 -68.148941 0 + 1213 -34.07448 -34.07448 0 33.127359 0.94710257 -68.148941 0 + 1214 -34.07448 -34.07448 0 33.127359 0.94710256 -68.148941 0 + 1215 -34.07448 -34.07448 0 33.127359 0.94710256 -68.148941 0 + 1216 -34.07448 -34.07448 0 33.127359 0.94710256 -68.148941 0 + 1217 -34.07448 -34.07448 0 33.127359 0.94710256 -68.148941 0 + 1218 -34.07448 -34.07448 0 33.127359 0.94710255 -68.148941 0 + 1219 -34.07448 -34.07448 0 33.127359 0.94710255 -68.148941 0 + 1220 -34.07448 -34.07448 0 33.127359 0.94710255 -68.148941 0 + 1221 -34.07448 -34.07448 0 33.127359 0.94710254 -68.148941 0 + 1222 -34.07448 -34.07448 0 33.127359 0.94710254 -68.148941 0 + 1223 -34.07448 -34.07448 0 33.127359 0.94710254 -68.148941 0 + 1224 -34.07448 -34.07448 0 33.127359 0.94710253 -68.148941 0 + 1225 -34.07448 -34.07448 0 33.127359 0.94710253 -68.148941 0 + 1226 -34.07448 -34.07448 0 33.127359 0.94710253 -68.148941 0 + 1227 -34.07448 -34.07448 0 33.127359 0.94710253 -68.148941 0 + 1228 -34.07448 -34.07448 0 33.127359 0.94710252 -68.148941 0 + 1229 -34.07448 -34.07448 0 33.127359 0.94710252 -68.148941 0 + 1230 -34.07448 -34.07448 0 33.127359 0.94710252 -68.148941 0 + 1231 -34.07448 -34.07448 0 33.127359 0.94710251 -68.148941 0 + 1232 -34.07448 -34.07448 0 33.127359 0.94710251 -68.148941 0 + 1233 -34.07448 -34.07448 0 33.127359 0.94710251 -68.148941 0 + 1234 -34.07448 -34.07448 0 33.127359 0.9471025 -68.148941 0 + 1235 -34.07448 -34.07448 0 33.127359 0.9471025 -68.148941 0 + 1236 -34.07448 -34.07448 0 33.127359 0.9471025 -68.148941 0 + 1237 -34.07448 -34.07448 0 33.127359 0.94710249 -68.148941 0 + 1238 -34.07448 -34.07448 0 33.127359 0.94710249 -68.148941 0 + 1239 -34.07448 -34.07448 0 33.127359 0.94710249 -68.148941 0 + 1240 -34.07448 -34.07448 0 33.127359 0.94710248 -68.148941 0 + 1241 -34.07448 -34.07448 0 33.127359 0.94710248 -68.148941 0 + 1242 -34.07448 -34.07448 0 33.127359 0.94710248 -68.148941 0 + 1243 -34.07448 -34.07448 0 33.127359 0.94710248 -68.148941 0 + 1244 -34.07448 -34.07448 0 33.127359 0.94710247 -68.148941 0 + 1245 -34.07448 -34.07448 0 33.127359 0.94710247 -68.148941 0 + 1246 -34.07448 -34.07448 0 33.127359 0.94710247 -68.148941 0 + 1247 -34.07448 -34.07448 0 33.127359 0.94710246 -68.148941 0 + 1248 -34.07448 -34.07448 0 33.127358 0.94710246 -68.148941 0 + 1249 -34.07448 -34.07448 0 33.127358 0.94710246 -68.148941 0 + 1250 -34.07448 -34.07448 0 33.127358 0.94710245 -68.148941 0 + 1251 -34.07448 -34.07448 0 33.127358 0.94710245 -68.148941 0 + 1252 -34.07448 -34.07448 0 33.127358 0.94710245 -68.148941 0 + 1253 -34.07448 -34.07448 0 33.127358 0.94710244 -68.148941 0 + 1254 -34.07448 -34.07448 0 33.127358 0.94710244 -68.148941 0 + 1255 -34.07448 -34.07448 0 33.127358 0.94710244 -68.148941 0 + 1256 -34.07448 -34.07448 0 33.127358 0.94710244 -68.14894 0 + 1257 -34.07448 -34.07448 0 33.127358 0.94710244 -68.14894 0 + 1258 -34.07448 -34.07448 0 33.127358 0.94710243 -68.14894 0 + 1259 -34.07448 -34.07448 0 33.127358 0.94710243 -68.14894 0 + 1260 -34.07448 -34.07448 0 33.127358 0.94710243 -68.14894 0 + 1261 -34.07448 -34.07448 0 33.127358 0.94710243 -68.14894 0 + 1262 -34.07448 -34.07448 0 33.127358 0.94710242 -68.14894 0 + 1263 -34.07448 -34.07448 0 33.127358 0.94710242 -68.14894 0 + 1264 -34.07448 -34.07448 0 33.127358 0.94710241 -68.14894 0 + 1265 -34.07448 -34.07448 0 33.127358 0.94710241 -68.14894 0 + 1266 -34.07448 -34.07448 0 33.127358 0.94710241 -68.14894 0 + 1267 -34.07448 -34.07448 0 33.127358 0.94710241 -68.14894 0 + 1268 -34.07448 -34.07448 0 33.127358 0.94710241 -68.14894 0 + 1269 -34.07448 -34.07448 0 33.127358 0.9471024 -68.14894 0 + 1270 -34.07448 -34.07448 0 33.127358 0.9471024 -68.14894 0 + 1271 -34.07448 -34.07448 0 33.127358 0.9471024 -68.14894 0 + 1272 -34.07448 -34.07448 0 33.127358 0.94710239 -68.14894 0 + 1273 -34.07448 -34.07448 0 33.127358 0.94710239 -68.14894 0 + 1274 -34.07448 -34.07448 0 33.127358 0.94710239 -68.14894 0 + 1275 -34.07448 -34.07448 0 33.127358 0.94710238 -68.14894 0 + 1276 -34.07448 -34.07448 0 33.127358 0.94710238 -68.14894 0 + 1277 -34.07448 -34.07448 0 33.127358 0.94710238 -68.14894 0 + 1278 -34.07448 -34.07448 0 33.127358 0.94710237 -68.14894 0 + 1279 -34.07448 -34.07448 0 33.127358 0.94710237 -68.14894 0 + 1280 -34.07448 -34.07448 0 33.127358 0.94710237 -68.14894 0 + 1281 -34.07448 -34.07448 0 33.127358 0.94710237 -68.14894 0 + 1282 -34.07448 -34.07448 0 33.127358 0.94710236 -68.14894 0 + 1283 -34.07448 -34.07448 0 33.127358 0.94710236 -68.14894 0 + 1284 -34.07448 -34.07448 0 33.127358 0.94710236 -68.14894 0 + 1285 -34.07448 -34.07448 0 33.127358 0.94710235 -68.14894 0 + 1286 -34.07448 -34.07448 0 33.127358 0.94710235 -68.14894 0 + 1287 -34.07448 -34.07448 0 33.127358 0.94710235 -68.14894 0 + 1288 -34.07448 -34.07448 0 33.127358 0.94710235 -68.14894 0 + 1289 -34.07448 -34.07448 0 33.127358 0.94710234 -68.14894 0 + 1290 -34.07448 -34.07448 0 33.127358 0.94710234 -68.14894 0 + 1291 -34.07448 -34.07448 0 33.127358 0.94710234 -68.14894 0 + 1292 -34.07448 -34.07448 0 33.127358 0.94710234 -68.14894 0 + 1293 -34.07448 -34.07448 0 33.127358 0.94710233 -68.14894 0 + 1294 -34.07448 -34.07448 0 33.127358 0.94710233 -68.14894 0 + 1295 -34.07448 -34.07448 0 33.127358 0.94710233 -68.14894 0 + 1296 -34.07448 -34.07448 0 33.127358 0.94710232 -68.14894 0 + 1297 -34.07448 -34.07448 0 33.127358 0.94710232 -68.14894 0 + 1298 -34.07448 -34.07448 0 33.127358 0.94710232 -68.14894 0 + 1299 -34.07448 -34.07448 0 33.127358 0.94710232 -68.14894 0 + 1300 -34.07448 -34.07448 0 33.127358 0.94710231 -68.14894 0 + 1301 -34.07448 -34.07448 0 33.127358 0.94710231 -68.14894 0 + 1302 -34.07448 -34.07448 0 33.127358 0.94710231 -68.14894 0 + 1303 -34.07448 -34.07448 0 33.127358 0.9471023 -68.14894 0 + 1304 -34.07448 -34.07448 0 33.127358 0.9471023 -68.14894 0 + 1305 -34.07448 -34.07448 0 33.127358 0.9471023 -68.14894 0 + 1306 -34.07448 -34.07448 0 33.127358 0.9471023 -68.14894 0 + 1307 -34.07448 -34.07448 0 33.127358 0.94710229 -68.14894 0 + 1308 -34.07448 -34.07448 0 33.127358 0.94710229 -68.14894 0 + 1309 -34.07448 -34.07448 0 33.127358 0.94710229 -68.14894 0 + 1310 -34.07448 -34.07448 0 33.127358 0.94710229 -68.14894 0 + 1311 -34.07448 -34.07448 0 33.127358 0.94710228 -68.14894 0 + 1312 -34.07448 -34.07448 0 33.127358 0.94710228 -68.14894 0 + 1313 -34.07448 -34.07448 0 33.127358 0.94710228 -68.148939 0 + 1314 -34.07448 -34.07448 0 33.127358 0.94710227 -68.148939 0 + 1315 -34.07448 -34.07448 0 33.127357 0.94710227 -68.148939 0 + 1316 -34.07448 -34.07448 0 33.127357 0.94710227 -68.148939 0 + 1317 -34.07448 -34.07448 0 33.127357 0.94710227 -68.148939 0 + 1318 -34.07448 -34.07448 0 33.127357 0.94710226 -68.148939 0 + 1319 -34.07448 -34.07448 0 33.127357 0.94710226 -68.148939 0 + 1320 -34.07448 -34.07448 0 33.127357 0.94710226 -68.148939 0 + 1321 -34.07448 -34.07448 0 33.127357 0.94710225 -68.148939 0 + 1322 -34.07448 -34.07448 0 33.127357 0.94710225 -68.148939 0 + 1323 -34.07448 -34.07448 0 33.127357 0.94710225 -68.148939 0 + 1324 -34.07448 -34.07448 0 33.127357 0.94710224 -68.148939 0 + 1325 -34.07448 -34.07448 0 33.127357 0.94710222 -68.148939 0 + 1326 -34.07448 -34.07448 0 33.127357 0.94710222 -68.148939 0 + 1327 -34.07448 -34.07448 0 33.127357 0.94710222 -68.148939 0 + 1328 -34.07448 -34.07448 0 33.127357 0.94710222 -68.148939 0 + 1329 -34.07448 -34.07448 0 33.127357 0.94710222 -68.148939 0 + 1330 -34.07448 -34.07448 0 33.127357 0.94710221 -68.148939 0 + 1331 -34.07448 -34.07448 0 33.127357 0.94710221 -68.148939 0 + 1332 -34.07448 -34.07448 0 33.127357 0.9471022 -68.148939 0 + 1333 -34.07448 -34.07448 0 33.127357 0.9471022 -68.148939 0 + 1334 -34.07448 -34.07448 0 33.127357 0.9471022 -68.148939 0 + 1335 -34.07448 -34.07448 0 33.127357 0.9471022 -68.148939 0 + 1336 -34.07448 -34.07448 0 33.127357 0.9471022 -68.148939 0 + 1337 -34.07448 -34.07448 0 33.127357 0.9471022 -68.148939 0 + 1338 -34.07448 -34.07448 0 33.127357 0.94710219 -68.148939 0 + 1339 -34.07448 -34.07448 0 33.127357 0.94710219 -68.148939 0 + 1340 -34.07448 -34.07448 0 33.127357 0.94710219 -68.148939 0 + 1341 -34.07448 -34.07448 0 33.127357 0.94710218 -68.148939 0 + 1342 -34.07448 -34.07448 0 33.127357 0.94710218 -68.148939 0 + 1343 -34.07448 -34.07448 0 33.127357 0.94710218 -68.148939 0 + 1344 -34.07448 -34.07448 0 33.127357 0.94710217 -68.148939 0 + 1345 -34.07448 -34.07448 0 33.127357 0.94710217 -68.148939 0 + 1346 -34.07448 -34.07448 0 33.127357 0.94710217 -68.148939 0 + 1347 -34.07448 -34.07448 0 33.127357 0.94710216 -68.148939 0 + 1348 -34.07448 -34.07448 0 33.127357 0.94710216 -68.148939 0 + 1349 -34.07448 -34.07448 0 33.127357 0.94710216 -68.148939 0 + 1350 -34.07448 -34.07448 0 33.127357 0.94710216 -68.148939 0 + 1351 -34.07448 -34.07448 0 33.127357 0.94710215 -68.148939 0 + 1352 -34.07448 -34.07448 0 33.127357 0.94710215 -68.148939 0 + 1353 -34.07448 -34.07448 0 33.127357 0.94710214 -68.148939 0 + 1354 -34.07448 -34.07448 0 33.127357 0.94710214 -68.148939 0 + 1355 -34.07448 -34.07448 0 33.127357 0.94710214 -68.148939 0 + 1356 -34.07448 -34.07448 0 33.127357 0.94710214 -68.148939 0 + 1357 -34.07448 -34.07448 0 33.127357 0.94710214 -68.148939 0 + 1358 -34.07448 -34.07448 0 33.127357 0.94710213 -68.148939 0 + 1359 -34.07448 -34.07448 0 33.127357 0.94710213 -68.148939 0 + 1360 -34.07448 -34.07448 0 33.127357 0.94710213 -68.148939 0 + 1361 -34.07448 -34.07448 0 33.127357 0.94710212 -68.148939 0 + 1362 -34.07448 -34.07448 0 33.127357 0.94710212 -68.148939 0 + 1363 -34.07448 -34.07448 0 33.127357 0.94710212 -68.148939 0 + 1364 -34.07448 -34.07448 0 33.127357 0.94710212 -68.148938 0 + 1365 -34.07448 -34.07448 0 33.127357 0.94710211 -68.148938 0 + 1366 -34.07448 -34.07448 0 33.127357 0.94710211 -68.148938 0 + 1367 -34.07448 -34.07448 0 33.127357 0.9471021 -68.148938 0 + 1368 -34.07448 -34.07448 0 33.127357 0.9471021 -68.148938 0 + 1369 -34.07448 -34.07448 0 33.127357 0.9471021 -68.148938 0 + 1370 -34.07448 -34.07448 0 33.127357 0.9471021 -68.148938 0 + 1371 -34.07448 -34.07448 0 33.127357 0.9471021 -68.148938 0 + 1372 -34.07448 -34.07448 0 33.127357 0.94710209 -68.148938 0 + 1373 -34.07448 -34.07448 0 33.127357 0.94710209 -68.148938 0 + 1374 -34.07448 -34.07448 0 33.127357 0.94710209 -68.148938 0 + 1375 -34.07448 -34.07448 0 33.127356 0.94710208 -68.148938 0 + 1376 -34.07448 -34.07448 0 33.127356 0.94710208 -68.148938 0 + 1377 -34.07448 -34.07448 0 33.127356 0.94710208 -68.148938 0 + 1378 -34.07448 -34.07448 0 33.127356 0.94710208 -68.148938 0 + 1379 -34.07448 -34.07448 0 33.127356 0.94710207 -68.148938 0 + 1380 -34.07448 -34.07448 0 33.127356 0.94710207 -68.148938 0 + 1381 -34.07448 -34.07448 0 33.127356 0.94710207 -68.148938 0 + 1382 -34.07448 -34.07448 0 33.127356 0.94710207 -68.148938 0 + 1383 -34.07448 -34.07448 0 33.127356 0.94710206 -68.148938 0 + 1384 -34.07448 -34.07448 0 33.127356 0.94710206 -68.148938 0 + 1385 -34.07448 -34.07448 0 33.127356 0.94710206 -68.148938 0 + 1386 -34.07448 -34.07448 0 33.127356 0.94710205 -68.148938 0 + 1387 -34.07448 -34.07448 0 33.127356 0.94710205 -68.148938 0 + 1388 -34.07448 -34.07448 0 33.127356 0.94710205 -68.148938 0 + 1389 -34.07448 -34.07448 0 33.127356 0.94710204 -68.148938 0 + 1390 -34.07448 -34.07448 0 33.127356 0.94710204 -68.148938 0 + 1391 -34.07448 -34.07448 0 33.127356 0.94710204 -68.148938 0 + 1392 -34.07448 -34.07448 0 33.127356 0.94710204 -68.148938 0 + 1393 -34.07448 -34.07448 0 33.127356 0.94710204 -68.148938 0 + 1394 -34.07448 -34.07448 0 33.127356 0.94710203 -68.148938 0 + 1395 -34.07448 -34.07448 0 33.127356 0.94710203 -68.148938 0 + 1396 -34.07448 -34.07448 0 33.127356 0.94710203 -68.148938 0 + 1397 -34.07448 -34.07448 0 33.127356 0.94710202 -68.148938 0 + 1398 -34.07448 -34.07448 0 33.127356 0.94710202 -68.148938 0 + 1399 -34.07448 -34.07448 0 33.127356 0.94710202 -68.148938 0 + 1400 -34.07448 -34.07448 0 33.127356 0.94710202 -68.148938 0 + 1401 -34.07448 -34.07448 0 33.127356 0.94710201 -68.148938 0 + 1402 -34.07448 -34.07448 0 33.127356 0.94710201 -68.148938 0 + 1403 -34.07448 -34.07448 0 33.127356 0.947102 -68.148938 0 + 1404 -34.07448 -34.07448 0 33.127356 0.947102 -68.148938 0 + 1405 -34.07448 -34.07448 0 33.127356 0.947102 -68.148938 0 + 1406 -34.07448 -34.07448 0 33.127356 0.947102 -68.148938 0 + 1407 -34.07448 -34.07448 0 33.127356 0.947102 -68.148938 0 + 1408 -34.07448 -34.07448 0 33.127356 0.94710199 -68.148938 0 + 1409 -34.07448 -34.07448 0 33.127356 0.94710199 -68.148938 0 + 1410 -34.07448 -34.07448 0 33.127356 0.94710199 -68.148938 0 + 1411 -34.07448 -34.07448 0 33.127356 0.94710198 -68.148938 0 + 1412 -34.07448 -34.07448 0 33.127356 0.94710198 -68.148938 0 + 1413 -34.07448 -34.07448 0 33.127356 0.94710198 -68.148938 0 + 1414 -34.07448 -34.07448 0 33.127356 0.94710198 -68.148938 0 + 1415 -34.07448 -34.07448 0 33.127356 0.94710198 -68.148938 0 + 1416 -34.07448 -34.07448 0 33.127356 0.94710198 -68.148938 0 + 1417 -34.07448 -34.07448 0 33.127356 0.94710197 -68.148938 0 + 1418 -34.07448 -34.07448 0 33.127356 0.94710197 -68.148938 0 + 1419 -34.07448 -34.07448 0 33.127356 0.94710197 -68.148938 0 + 1420 -34.07448 -34.07448 0 33.127356 0.94710196 -68.148938 0 + 1421 -34.07448 -34.07448 0 33.127356 0.94710196 -68.148938 0 + 1422 -34.07448 -34.07448 0 33.127356 0.94710196 -68.148937 0 + 1423 -34.07448 -34.07448 0 33.127356 0.94710196 -68.148937 0 + 1424 -34.07448 -34.07448 0 33.127356 0.94710195 -68.148937 0 + 1425 -34.07448 -34.07448 0 33.127356 0.94710195 -68.148937 0 + 1426 -34.07448 -34.07448 0 33.127356 0.94710194 -68.148937 0 + 1427 -34.07448 -34.07448 0 33.127356 0.94710194 -68.148937 0 + 1428 -34.07448 -34.07448 0 33.127356 0.94710194 -68.148937 0 + 1429 -34.07448 -34.07448 0 33.127356 0.94710194 -68.148937 0 + 1430 -34.07448 -34.07448 0 33.127356 0.94710193 -68.148937 0 + 1431 -34.07448 -34.07448 0 33.127356 0.94710193 -68.148937 0 + 1432 -34.07448 -34.07448 0 33.127356 0.94710193 -68.148937 0 + 1433 -34.07448 -34.07448 0 33.127356 0.94710193 -68.148937 0 + 1434 -34.07448 -34.07448 0 33.127356 0.94710192 -68.148937 0 + 1435 -34.07448 -34.07448 0 33.127356 0.94710192 -68.148937 0 + 1436 -34.07448 -34.07448 0 33.127356 0.94710192 -68.148937 0 + 1437 -34.07448 -34.07448 0 33.127356 0.94710191 -68.148937 0 + 1438 -34.07448 -34.07448 0 33.127356 0.94710191 -68.148937 0 + 1439 -34.07448 -34.07448 0 33.127356 0.94710191 -68.148937 0 + 1440 -34.07448 -34.07448 0 33.127356 0.9471019 -68.148937 0 + 1441 -34.07448 -34.07448 0 33.127356 0.9471019 -68.148937 0 + 1442 -34.07448 -34.07448 0 33.127356 0.9471019 -68.148937 0 + 1443 -34.07448 -34.07448 0 33.127356 0.9471019 -68.148937 0 + 1444 -34.07448 -34.07448 0 33.127356 0.9471019 -68.148937 0 + 1445 -34.07448 -34.07448 0 33.127356 0.9471019 -68.148937 0 + 1446 -34.07448 -34.07448 0 33.127355 0.94710189 -68.148937 0 + 1447 -34.07448 -34.07448 0 33.127355 0.94710189 -68.148937 0 + 1448 -34.07448 -34.07448 0 33.127355 0.94710189 -68.148937 0 + 1449 -34.07448 -34.07448 0 33.127355 0.94710188 -68.148937 0 + 1450 -34.07448 -34.07448 0 33.127355 0.94710188 -68.148937 0 + 1451 -34.07448 -34.07448 0 33.127355 0.94710188 -68.148937 0 + 1452 -34.07448 -34.07448 0 33.127355 0.94710188 -68.148937 0 + 1453 -34.07448 -34.07448 0 33.127355 0.94710188 -68.148937 0 + 1454 -34.07448 -34.07448 0 33.127355 0.94710187 -68.148937 0 + 1455 -34.07448 -34.07448 0 33.127355 0.94710187 -68.148937 0 + 1456 -34.07448 -34.07448 0 33.127355 0.94710186 -68.148937 0 + 1457 -34.07448 -34.07448 0 33.127355 0.94710186 -68.148937 0 + 1458 -34.07448 -34.07448 0 33.127355 0.94710186 -68.148937 0 + 1459 -34.07448 -34.07448 0 33.127355 0.94710186 -68.148937 0 + 1460 -34.07448 -34.07448 0 33.127355 0.94710186 -68.148937 0 + 1461 -34.07448 -34.07448 0 33.127355 0.94710185 -68.148937 0 + 1462 -34.07448 -34.07448 0 33.127355 0.94710185 -68.148937 0 + 1463 -34.07448 -34.07448 0 33.127355 0.94710185 -68.148937 0 + 1464 -34.07448 -34.07448 0 33.127355 0.94710185 -68.148937 0 + 1465 -34.07448 -34.07448 0 33.127355 0.94710184 -68.148937 0 + 1466 -34.07448 -34.07448 0 33.127355 0.94710184 -68.148937 0 + 1467 -34.07448 -34.07448 0 33.127355 0.94710184 -68.148937 0 + 1468 -34.07448 -34.07448 0 33.127355 0.94710183 -68.148937 0 + 1469 -34.07448 -34.07448 0 33.127355 0.94710183 -68.148937 0 + 1470 -34.07448 -34.07448 0 33.127355 0.94710183 -68.148937 0 + 1471 -34.07448 -34.07448 0 33.127355 0.94710183 -68.148937 0 + 1472 -34.07448 -34.07448 0 33.127355 0.94710183 -68.148937 0 + 1473 -34.07448 -34.07448 0 33.127355 0.94710182 -68.148937 0 + 1474 -34.07448 -34.07448 0 33.127355 0.94710182 -68.148937 0 + 1475 -34.07448 -34.07448 0 33.127355 0.94710182 -68.148937 0 + 1476 -34.07448 -34.07448 0 33.127355 0.94710181 -68.148937 0 + 1477 -34.07448 -34.07448 0 33.127355 0.94710181 -68.148937 0 + 1478 -34.07448 -34.07448 0 33.127355 0.94710181 -68.148937 0 + 1479 -34.07448 -34.07448 0 33.127355 0.9471018 -68.148937 0 + 1480 -34.07448 -34.07448 0 33.127355 0.9471018 -68.148937 0 + 1481 -34.07448 -34.07448 0 33.127355 0.9471018 -68.148936 0 + 1482 -34.07448 -34.07448 0 33.127355 0.9471018 -68.148936 0 + 1483 -34.07448 -34.07448 0 33.127355 0.9471018 -68.148936 0 + 1484 -34.07448 -34.07448 0 33.127355 0.94710179 -68.148936 0 + 1485 -34.07448 -34.07448 0 33.127355 0.94710179 -68.148936 0 + 1486 -34.07448 -34.07448 0 33.127355 0.94710179 -68.148936 0 + 1487 -34.07448 -34.07448 0 33.127355 0.94710179 -68.148936 0 + 1488 -34.07448 -34.07448 0 33.127355 0.94710178 -68.148936 0 + 1489 -34.07448 -34.07448 0 33.127355 0.94710178 -68.148936 0 + 1490 -34.07448 -34.07448 0 33.127355 0.94710178 -68.148936 0 + 1491 -34.07448 -34.07448 0 33.127355 0.94710177 -68.148936 0 + 1492 -34.07448 -34.07448 0 33.127355 0.94710177 -68.148936 0 + 1493 -34.07448 -34.07448 0 33.127355 0.94710177 -68.148936 0 + 1494 -34.07448 -34.07448 0 33.127355 0.94710177 -68.148936 0 + 1495 -34.07448 -34.07448 0 33.127355 0.94710177 -68.148936 0 + 1496 -34.07448 -34.07448 0 33.127355 0.94710176 -68.148936 0 + 1497 -34.07448 -34.07448 0 33.127355 0.94710176 -68.148936 0 + 1498 -34.07448 -34.07448 0 33.127355 0.94710176 -68.148936 0 + 1499 -34.07448 -34.07448 0 33.127355 0.94710176 -68.148936 0 + 1500 -34.07448 -34.07448 0 33.127355 0.94710175 -68.148936 0 + 1501 -34.07448 -34.07448 0 33.127355 0.94710175 -68.148936 0 + 1502 -34.07448 -34.07448 0 33.127355 0.94710175 -68.148936 0 + 1503 -34.07448 -34.07448 0 33.127355 0.94710175 -68.148936 0 + 1504 -34.07448 -34.07448 0 33.127355 0.94710175 -68.148936 0 + 1505 -34.07448 -34.07448 0 33.127355 0.94710174 -68.148936 0 + 1506 -34.07448 -34.07448 0 33.127355 0.94710174 -68.148936 0 + 1507 -34.07448 -34.07448 0 33.127355 0.94710174 -68.148936 0 + 1508 -34.07448 -34.07448 0 33.127355 0.94710173 -68.148936 0 + 1509 -34.07448 -34.07448 0 33.127355 0.94710173 -68.148936 0 + 1510 -34.07448 -34.07448 0 33.127355 0.94710173 -68.148936 0 + 1511 -34.07448 -34.07448 0 33.127355 0.94710173 -68.148936 0 + 1512 -34.07448 -34.07448 0 33.127355 0.94710172 -68.148936 0 + 1513 -34.07448 -34.07448 0 33.127355 0.94710172 -68.148936 0 + 1514 -34.07448 -34.07448 0 33.127355 0.94710172 -68.148936 0 + 1515 -34.07448 -34.07448 0 33.127355 0.94710172 -68.148936 0 + 1516 -34.07448 -34.07448 0 33.127355 0.94710171 -68.148936 0 + 1517 -34.07448 -34.07448 0 33.127355 0.94710171 -68.148936 0 + 1518 -34.07448 -34.07448 0 33.127354 0.9471017 -68.148936 0 + 1519 -34.07448 -34.07448 0 33.127354 0.9471017 -68.148936 0 + 1520 -34.07448 -34.07448 0 33.127354 0.9471017 -68.148936 0 + 1521 -34.07448 -34.07448 0 33.127354 0.9471017 -68.148936 0 + 1522 -34.07448 -34.07448 0 33.127354 0.9471017 -68.148936 0 + 1523 -34.07448 -34.07448 0 33.127354 0.9471017 -68.148936 0 + 1524 -34.07448 -34.07448 0 33.127354 0.94710169 -68.148936 0 + 1525 -34.07448 -34.07448 0 33.127354 0.94710169 -68.148936 0 + 1526 -34.07448 -34.07448 0 33.127354 0.94710169 -68.148936 0 + 1527 -34.07448 -34.07448 0 33.127354 0.94710168 -68.148936 0 + 1528 -34.07448 -34.07448 0 33.127354 0.94710168 -68.148936 0 + 1529 -34.07448 -34.07448 0 33.127354 0.94710168 -68.148936 0 + 1530 -34.07448 -34.07448 0 33.127354 0.94710168 -68.148936 0 + 1531 -34.07448 -34.07448 0 33.127354 0.94710167 -68.148936 0 + 1532 -34.07448 -34.07448 0 33.127354 0.94710167 -68.148936 0 + 1533 -34.07448 -34.07448 0 33.127354 0.94710167 -68.148936 0 + 1534 -34.07448 -34.07448 0 33.127354 0.94710167 -68.148936 0 + 1535 -34.07448 -34.07448 0 33.127354 0.94710167 -68.148936 0 + 1536 -34.07448 -34.07448 0 33.127354 0.94710166 -68.148936 0 + 1537 -34.07448 -34.07448 0 33.127354 0.94710166 -68.148936 0 + 1538 -34.07448 -34.07448 0 33.127354 0.94710166 -68.148936 0 + 1539 -34.07448 -34.07448 0 33.127354 0.94710165 -68.148936 0 + 1540 -34.07448 -34.07448 0 33.127354 0.94710165 -68.148936 0 + 1541 -34.07448 -34.07448 0 33.127354 0.94710165 -68.148936 0 + 1542 -34.07448 -34.07448 0 33.127354 0.94710165 -68.148936 0 + 1543 -34.07448 -34.07448 0 33.127354 0.94710165 -68.148935 0 + 1544 -34.07448 -34.07448 0 33.127354 0.94710164 -68.148935 0 + 1545 -34.07448 -34.07448 0 33.127354 0.94710164 -68.148935 0 + 1546 -34.07448 -34.07448 0 33.127354 0.94710164 -68.148935 0 + 1547 -34.07448 -34.07448 0 33.127354 0.94710163 -68.148935 0 + 1548 -34.07448 -34.07448 0 33.127354 0.94710163 -68.148935 0 + 1549 -34.07448 -34.07448 0 33.127354 0.94710163 -68.148935 0 + 1550 -34.07448 -34.07448 0 33.127354 0.94710163 -68.148935 0 + 1551 -34.07448 -34.07448 0 33.127354 0.94710162 -68.148935 0 + 1552 -34.07448 -34.07448 0 33.127354 0.94710162 -68.148935 0 + 1553 -34.07448 -34.07448 0 33.127354 0.94710162 -68.148935 0 + 1554 -34.07448 -34.07448 0 33.127354 0.94710162 -68.148935 0 + 1555 -34.07448 -34.07448 0 33.127354 0.94710161 -68.148935 0 + 1556 -34.07448 -34.07448 0 33.127354 0.94710161 -68.148935 0 + 1557 -34.07448 -34.07448 0 33.127354 0.94710161 -68.148935 0 + 1558 -34.07448 -34.07448 0 33.127354 0.94710161 -68.148935 0 + 1559 -34.07448 -34.07448 0 33.127354 0.94710161 -68.148935 0 + 1560 -34.07448 -34.07448 0 33.127354 0.94710161 -68.148935 0 + 1561 -34.07448 -34.07448 0 33.127354 0.9471016 -68.148935 0 + 1562 -34.07448 -34.07448 0 33.127354 0.9471016 -68.148935 0 + 1563 -34.07448 -34.07448 0 33.127354 0.9471016 -68.148935 0 + 1564 -34.07448 -34.07448 0 33.127354 0.94710159 -68.148935 0 + 1565 -34.07448 -34.07448 0 33.127354 0.94710159 -68.148935 0 + 1566 -34.07448 -34.07448 0 33.127354 0.94710159 -68.148935 0 + 1567 -34.07448 -34.07448 0 33.127354 0.94710159 -68.148935 0 + 1568 -34.07448 -34.07448 0 33.127354 0.94710159 -68.148935 0 + 1569 -34.07448 -34.07448 0 33.127354 0.94710158 -68.148935 0 + 1570 -34.07448 -34.07448 0 33.127354 0.94710158 -68.148935 0 + 1571 -34.07448 -34.07448 0 33.127354 0.94710158 -68.148935 0 + 1572 -34.07448 -34.07448 0 33.127354 0.94710158 -68.148935 0 + 1573 -34.07448 -34.07448 0 33.127354 0.94710157 -68.148935 0 + 1574 -34.07448 -34.07448 0 33.127354 0.94710157 -68.148935 0 + 1575 -34.07448 -34.07448 0 33.127354 0.94710157 -68.148935 0 + 1576 -34.07448 -34.07448 0 33.127354 0.94710156 -68.148935 0 + 1577 -34.07448 -34.07448 0 33.127354 0.94710156 -68.148935 0 + 1578 -34.07448 -34.07448 0 33.127354 0.94710156 -68.148935 0 + 1579 -34.07448 -34.07448 0 33.127354 0.94710156 -68.148935 0 + 1580 -34.07448 -34.07448 0 33.127354 0.94710156 -68.148935 0 + 1581 -34.07448 -34.07448 0 33.127354 0.94710155 -68.148935 0 + 1582 -34.07448 -34.07448 0 33.127354 0.94710155 -68.148935 0 + 1583 -34.07448 -34.07448 0 33.127354 0.94710155 -68.148935 0 + 1584 -34.07448 -34.07448 0 33.127354 0.94710154 -68.148935 0 + 1585 -34.07448 -34.07448 0 33.127354 0.94710154 -68.148935 0 + 1586 -34.07448 -34.07448 0 33.127354 0.94710154 -68.148935 0 + 1587 -34.07448 -34.07448 0 33.127354 0.94710154 -68.148935 0 + 1588 -34.07448 -34.07448 0 33.127354 0.94710154 -68.148935 0 + 1589 -34.07448 -34.07448 0 33.127354 0.94710154 -68.148935 0 + 1590 -34.07448 -34.07448 0 33.127354 0.94710153 -68.148935 0 + 1591 -34.07448 -34.07448 0 33.127354 0.94710153 -68.148935 0 + 1592 -34.07448 -34.07448 0 33.127354 0.94710153 -68.148935 0 + 1593 -34.07448 -34.07448 0 33.127354 0.94710152 -68.148935 0 + 1594 -34.07448 -34.07448 0 33.127354 0.94710152 -68.148935 0 + 1595 -34.07448 -34.07448 0 33.127353 0.94710152 -68.148935 0 + 1596 -34.07448 -34.07448 0 33.127353 0.94710152 -68.148935 0 + 1597 -34.07448 -34.07448 0 33.127353 0.94710151 -68.148935 0 + 1598 -34.07448 -34.07448 0 33.127353 0.94710151 -68.148935 0 + 1599 -34.07448 -34.07448 0 33.127353 0.94710151 -68.148935 0 + 1600 -34.07448 -34.07448 0 33.127353 0.94710151 -68.148935 0 + 1601 -34.07448 -34.07448 0 33.127353 0.9471015 -68.148935 0 + 1602 -34.07448 -34.07448 0 33.127353 0.9471015 -68.148935 0 + 1603 -34.07448 -34.07448 0 33.127353 0.9471015 -68.148935 0 + 1604 -34.07448 -34.07448 0 33.127353 0.9471015 -68.148935 0 + 1605 -34.07448 -34.07448 0 33.127353 0.94710149 -68.148935 0 + 1606 -34.07448 -34.07448 0 33.127353 0.94710149 -68.148935 0 + 1607 -34.07448 -34.07448 0 33.127353 0.94710149 -68.148934 0 + 1608 -34.07448 -34.07448 0 33.127353 0.94710149 -68.148934 0 + 1609 -34.07448 -34.07448 0 33.127353 0.94710148 -68.148934 0 + 1610 -34.07448 -34.07448 0 33.127353 0.94710148 -68.148934 0 + 1611 -34.07448 -34.07448 0 33.127353 0.94710148 -68.148934 0 + 1612 -34.07448 -34.07448 0 33.127353 0.94710147 -68.148934 0 + 1613 -34.07448 -34.07448 0 33.127353 0.94710147 -68.148934 0 + 1614 -34.07448 -34.07448 0 33.127353 0.94710147 -68.148934 0 + 1615 -34.07448 -34.07448 0 33.127353 0.94710147 -68.148934 0 + 1616 -34.07448 -34.07448 0 33.127353 0.94710147 -68.148934 0 + 1617 -34.07448 -34.07448 0 33.127353 0.94710146 -68.148934 0 + 1618 -34.07448 -34.07448 0 33.127353 0.94710146 -68.148934 0 + 1619 -34.07448 -34.07448 0 33.127353 0.94710146 -68.148934 0 + 1620 -34.07448 -34.07448 0 33.127353 0.94710146 -68.148934 0 + 1621 -34.07448 -34.07448 0 33.127353 0.94710145 -68.148934 0 + 1622 -34.07448 -34.07448 0 33.127353 0.94710145 -68.148934 0 + 1623 -34.07448 -34.07448 0 33.127353 0.94710145 -68.148934 0 + 1624 -34.07448 -34.07448 0 33.127353 0.94710144 -68.148934 0 + 1625 -34.07448 -34.07448 0 33.127353 0.94710144 -68.148934 0 + 1626 -34.07448 -34.07448 0 33.127353 0.94710144 -68.148934 0 + 1627 -34.07448 -34.07448 0 33.127353 0.94710144 -68.148934 0 + 1628 -34.07448 -34.07448 0 33.127353 0.94710144 -68.148934 0 + 1629 -34.07448 -34.07448 0 33.127353 0.94710143 -68.148934 0 + 1630 -34.07448 -34.07448 0 33.127353 0.94710143 -68.148934 0 + 1631 -34.07448 -34.07448 0 33.127353 0.94710143 -68.148934 0 + 1632 -34.07448 -34.07448 0 33.127353 0.94710142 -68.148934 0 + 1633 -34.07448 -34.07448 0 33.127353 0.94710142 -68.148934 0 + 1634 -34.07448 -34.07448 0 33.127353 0.94710142 -68.148934 0 + 1635 -34.07448 -34.07448 0 33.127353 0.94710142 -68.148934 0 + 1636 -34.07448 -34.07448 0 33.127353 0.94710142 -68.148934 0 + 1637 -34.07448 -34.07448 0 33.127353 0.94710142 -68.148934 0 + 1638 -34.07448 -34.07448 0 33.127353 0.94710141 -68.148934 0 + 1639 -34.07448 -34.07448 0 33.127353 0.94710141 -68.148934 0 + 1640 -34.07448 -34.07448 0 33.127353 0.94710141 -68.148934 0 + 1641 -34.07448 -34.07448 0 33.127353 0.94710141 -68.148934 0 + 1642 -34.07448 -34.07448 0 33.127353 0.9471014 -68.148934 0 + 1643 -34.07448 -34.07448 0 33.127353 0.9471014 -68.148934 0 + 1644 -34.07448 -34.07448 0 33.127353 0.9471014 -68.148934 0 + 1645 -34.07448 -34.07448 0 33.127353 0.9471014 -68.148934 0 + 1646 -34.07448 -34.07448 0 33.127353 0.94710139 -68.148934 0 + 1647 -34.07448 -34.07448 0 33.127353 0.94710139 -68.148934 0 + 1648 -34.07448 -34.07448 0 33.127353 0.94710139 -68.148934 0 + 1649 -34.07448 -34.07448 0 33.127353 0.94710139 -68.148934 0 + 1650 -34.07448 -34.07448 0 33.127353 0.94710138 -68.148934 0 + 1651 -34.07448 -34.07448 0 33.127353 0.94710138 -68.148934 0 + 1652 -34.07448 -34.07448 0 33.127353 0.94710138 -68.148934 0 + 1653 -34.07448 -34.07448 0 33.127353 0.94710137 -68.148934 0 + 1654 -34.07448 -34.07448 0 33.127353 0.94710137 -68.148934 0 + 1655 -34.07448 -34.07448 0 33.127353 0.94710137 -68.148934 0 + 1656 -34.07448 -34.07448 0 33.127353 0.94710137 -68.148934 0 + 1657 -34.07448 -34.07448 0 33.127353 0.94710137 -68.148934 0 + 1658 -34.07448 -34.07448 0 33.127353 0.94710136 -68.148934 0 + 1659 -34.07448 -34.07448 0 33.127353 0.94710136 -68.148934 0 + 1660 -34.07448 -34.07448 0 33.127353 0.94710136 -68.148934 0 + 1661 -34.07448 -34.07448 0 33.127353 0.94710136 -68.148934 0 + 1662 -34.07448 -34.07448 0 33.127353 0.94710135 -68.148934 0 + 1663 -34.07448 -34.07448 0 33.127353 0.94710135 -68.148934 0 + 1664 -34.07448 -34.07448 0 33.127353 0.94710135 -68.148934 0 + 1665 -34.07448 -34.07448 0 33.127353 0.94710135 -68.148934 0 + 1666 -34.07448 -34.07448 0 33.127353 0.94710134 -68.148934 0 + 1667 -34.07448 -34.07448 0 33.127353 0.94710134 -68.148934 0 + 1668 -34.07448 -34.07448 0 33.127352 0.94710134 -68.148934 0 + 1669 -34.07448 -34.07448 0 33.127352 0.94710133 -68.148934 0 + 1670 -34.07448 -34.07448 0 33.127352 0.94710133 -68.148934 0 + 1671 -34.07448 -34.07448 0 33.127352 0.94710133 -68.148933 0 + 1672 -34.07448 -34.07448 0 33.127352 0.94710133 -68.148933 0 + 1673 -34.07448 -34.07448 0 33.127352 0.94710133 -68.148933 0 + 1674 -34.07448 -34.07448 0 33.127352 0.94710132 -68.148933 0 + 1675 -34.07448 -34.07448 0 33.127352 0.94710132 -68.148933 0 + 1676 -34.07448 -34.07448 0 33.127352 0.94710132 -68.148933 0 + 1677 -34.07448 -34.07448 0 33.127352 0.94710132 -68.148933 0 + 1678 -34.07448 -34.07448 0 33.127352 0.94710132 -68.148933 0 + 1679 -34.07448 -34.07448 0 33.127352 0.94710131 -68.148933 0 + 1680 -34.07448 -34.07448 0 33.127352 0.94710131 -68.148933 0 + 1681 -34.07448 -34.07448 0 33.127352 0.94710131 -68.148933 0 + 1682 -34.07448 -34.07448 0 33.127352 0.94710131 -68.148933 0 + 1683 -34.07448 -34.07448 0 33.127352 0.94710131 -68.148933 0 + 1684 -34.07448 -34.07448 0 33.127352 0.9471013 -68.148933 0 + 1685 -34.07448 -34.07448 0 33.127352 0.9471013 -68.148933 0 + 1686 -34.07448 -34.07448 0 33.127352 0.9471013 -68.148933 0 + 1687 -34.07448 -34.07448 0 33.127352 0.94710129 -68.148933 0 + 1688 -34.07448 -34.07448 0 33.127352 0.94710129 -68.148933 0 + 1689 -34.07448 -34.07448 0 33.127352 0.94710129 -68.148933 0 + 1690 -34.07448 -34.07448 0 33.127352 0.94710129 -68.148933 0 + 1691 -34.07448 -34.07448 0 33.127352 0.94710129 -68.148933 0 + 1692 -34.07448 -34.07448 0 33.127352 0.94710128 -68.148933 0 + 1693 -34.07448 -34.07448 0 33.127352 0.94710128 -68.148933 0 + 1694 -34.07448 -34.07448 0 33.127352 0.94710128 -68.148933 0 + 1695 -34.07448 -34.07448 0 33.127352 0.94710128 -68.148933 0 + 1696 -34.07448 -34.07448 0 33.127352 0.94710127 -68.148933 0 + 1697 -34.07448 -34.07448 0 33.127352 0.94710127 -68.148933 0 + 1698 -34.07448 -34.07448 0 33.127352 0.94710127 -68.148933 0 + 1699 -34.07448 -34.07448 0 33.127352 0.94710127 -68.148933 0 + 1700 -34.07448 -34.07448 0 33.127352 0.94710126 -68.148933 0 + 1701 -34.07448 -34.07448 0 33.127352 0.94710126 -68.148933 0 + 1702 -34.07448 -34.07448 0 33.127352 0.94710126 -68.148933 0 + 1703 -34.07448 -34.07448 0 33.127352 0.94710126 -68.148933 0 + 1704 -34.07448 -34.07448 0 33.127352 0.94710126 -68.148933 0 + 1705 -34.07448 -34.07448 0 33.127352 0.94710126 -68.148933 0 + 1706 -34.07448 -34.07448 0 33.127352 0.94710125 -68.148933 0 + 1707 -34.07448 -34.07448 0 33.127352 0.94710125 -68.148933 0 + 1708 -34.07448 -34.07448 0 33.127352 0.94710125 -68.148933 0 + 1709 -34.07448 -34.07448 0 33.127352 0.94710125 -68.148933 0 + 1710 -34.07448 -34.07448 0 33.127352 0.94710124 -68.148933 0 + 1711 -34.07448 -34.07448 0 33.127352 0.94710124 -68.148933 0 + 1712 -34.07448 -34.07448 0 33.127352 0.94710124 -68.148933 0 + 1713 -34.07448 -34.07448 0 33.127352 0.94710124 -68.148933 0 + 1714 -34.07448 -34.07448 0 33.127352 0.94710123 -68.148933 0 + 1715 -34.07448 -34.07448 0 33.127352 0.94710123 -68.148933 0 + 1716 -34.07448 -34.07448 0 33.127352 0.94710123 -68.148933 0 + 1717 -34.07448 -34.07448 0 33.127352 0.94710123 -68.148933 0 + 1718 -34.07448 -34.07448 0 33.127352 0.94710122 -68.148933 0 + 1719 -34.07448 -34.07448 0 33.127352 0.94710122 -68.148933 0 + 1720 -34.07448 -34.07448 0 33.127352 0.94710122 -68.148933 0 + 1721 -34.07448 -34.07448 0 33.127352 0.94710122 -68.148933 0 + 1722 -34.07448 -34.07448 0 33.127352 0.94710121 -68.148933 0 + 1723 -34.07448 -34.07448 0 33.127352 0.94710121 -68.148933 0 + 1724 -34.07448 -34.07448 0 33.127352 0.94710121 -68.148933 0 + 1725 -34.07448 -34.07448 0 33.127352 0.94710121 -68.148933 0 + 1726 -34.07448 -34.07448 0 33.127352 0.94710121 -68.148933 0 + 1727 -34.07448 -34.07448 0 33.127352 0.9471012 -68.148933 0 + 1728 -34.07448 -34.07448 0 33.127352 0.9471012 -68.148933 0 + 1729 -34.07448 -34.07448 0 33.127352 0.9471012 -68.148933 0 + 1730 -34.07448 -34.07448 0 33.127352 0.9471012 -68.148933 0 + 1731 -34.07448 -34.07448 0 33.127352 0.94710119 -68.148933 0 + 1732 -34.07448 -34.07448 0 33.127352 0.94710119 -68.148933 0 + 1733 -34.07448 -34.07448 0 33.127352 0.94710119 -68.148933 0 + 1734 -34.07448 -34.07448 0 33.127352 0.94710119 -68.148933 0 + 1735 -34.07448 -34.07448 0 33.127352 0.94710119 -68.148933 0 + 1736 -34.07448 -34.07448 0 33.127352 0.94710118 -68.148933 0 + 1737 -34.07448 -34.07448 0 33.127352 0.94710118 -68.148933 0 + 1738 -34.07448 -34.07448 0 33.127352 0.94710118 -68.148933 0 + 1739 -34.07448 -34.07448 0 33.127352 0.94710118 -68.148933 0 + 1740 -34.07448 -34.07448 0 33.127352 0.94710118 -68.148932 0 + 1741 -34.07448 -34.07448 0 33.127352 0.94710117 -68.148932 0 + 1742 -34.07448 -34.07448 0 33.127352 0.94710117 -68.148932 0 + 1743 -34.07448 -34.07448 0 33.127352 0.94710117 -68.148932 0 + 1744 -34.07448 -34.07448 0 33.127352 0.94710117 -68.148932 0 + 1745 -34.07448 -34.07448 0 33.127352 0.94710117 -68.148932 0 + 1746 -34.07448 -34.07448 0 33.127352 0.94710116 -68.148932 0 + 1747 -34.07448 -34.07448 0 33.127352 0.94710116 -68.148932 0 + 1748 -34.07448 -34.07448 0 33.127352 0.94710116 -68.148932 0 + 1749 -34.07448 -34.07448 0 33.127352 0.94710116 -68.148932 0 + 1750 -34.07448 -34.07448 0 33.127352 0.94710115 -68.148932 0 + 1751 -34.07448 -34.07448 0 33.127351 0.94710115 -68.148932 0 + 1752 -34.07448 -34.07448 0 33.127351 0.94710115 -68.148932 0 + 1753 -34.07448 -34.07448 0 33.127351 0.94710115 -68.148932 0 + 1754 -34.07448 -34.07448 0 33.127351 0.94710114 -68.148932 0 + 1755 -34.07448 -34.07448 0 33.127351 0.94710114 -68.148932 0 + 1756 -34.07448 -34.07448 0 33.127351 0.94710114 -68.148932 0 + 1757 -34.07448 -34.07448 0 33.127351 0.94710114 -68.148932 0 + 1758 -34.07448 -34.07448 0 33.127351 0.94710114 -68.148932 0 + 1759 -34.07448 -34.07448 0 33.127351 0.94710114 -68.148932 0 + 1760 -34.07448 -34.07448 0 33.127351 0.94710113 -68.148932 0 + 1761 -34.07448 -34.07448 0 33.127351 0.94710113 -68.148932 0 + 1762 -34.07448 -34.07448 0 33.127351 0.94710113 -68.148932 0 + 1763 -34.07448 -34.07448 0 33.127351 0.94710113 -68.148932 0 + 1764 -34.07448 -34.07448 0 33.127351 0.94710112 -68.148932 0 + 1765 -34.07448 -34.07448 0 33.127351 0.94710112 -68.148932 0 + 1766 -34.07448 -34.07448 0 33.127351 0.94710112 -68.148932 0 + 1767 -34.07448 -34.07448 0 33.127351 0.94710112 -68.148932 0 + 1768 -34.07448 -34.07448 0 33.127351 0.94710112 -68.148932 0 + 1769 -34.07448 -34.07448 0 33.127351 0.94710112 -68.148932 0 + 1770 -34.07448 -34.07448 0 33.127351 0.94710111 -68.148932 0 + 1771 -34.07448 -34.07448 0 33.127351 0.94710111 -68.148932 0 + 1772 -34.07448 -34.07448 0 33.127351 0.94710111 -68.148932 0 + 1773 -34.07448 -34.07448 0 33.127351 0.94710111 -68.148932 0 + 1774 -34.07448 -34.07448 0 33.127351 0.9471011 -68.148932 0 + 1775 -34.07448 -34.07448 0 33.127351 0.9471011 -68.148932 0 + 1776 -34.07448 -34.07448 0 33.127351 0.9471011 -68.148932 0 + 1777 -34.07448 -34.07448 0 33.127351 0.94710109 -68.148932 0 + 1778 -34.07448 -34.07448 0 33.127351 0.94710109 -68.148932 0 + 1779 -34.07448 -34.07448 0 33.127351 0.94710109 -68.148932 0 + 1780 -34.07448 -34.07448 0 33.127351 0.94710109 -68.148932 0 + 1781 -34.07448 -34.07448 0 33.127351 0.94710109 -68.148932 0 + 1782 -34.07448 -34.07448 0 33.127351 0.94710108 -68.148932 0 + 1783 -34.07448 -34.07448 0 33.127351 0.94710108 -68.148932 0 + 1784 -34.07448 -34.07448 0 33.127351 0.94710108 -68.148932 0 + 1785 -34.07448 -34.07448 0 33.127351 0.94710108 -68.148932 0 + 1786 -34.07448 -34.07448 0 33.127351 0.94710107 -68.148932 0 + 1787 -34.07448 -34.07448 0 33.127351 0.94710107 -68.148932 0 + 1788 -34.07448 -34.07448 0 33.127351 0.94710107 -68.148932 0 + 1789 -34.07448 -34.07448 0 33.127351 0.94710107 -68.148932 0 + 1790 -34.07448 -34.07448 0 33.127351 0.94710107 -68.148932 0 + 1791 -34.07448 -34.07448 0 33.127351 0.94710106 -68.148932 0 + 1792 -34.07448 -34.07448 0 33.127351 0.94710106 -68.148932 0 + 1793 -34.07448 -34.07448 0 33.127351 0.94710106 -68.148932 0 + 1794 -34.07448 -34.07448 0 33.127351 0.94710106 -68.148932 0 + 1795 -34.07448 -34.07448 0 33.127351 0.94710106 -68.148932 0 + 1796 -34.07448 -34.07448 0 33.127351 0.94710105 -68.148932 0 + 1797 -34.07448 -34.07448 0 33.127351 0.94710105 -68.148932 0 + 1798 -34.07448 -34.07448 0 33.127351 0.94710105 -68.148932 0 + 1799 -34.07448 -34.07448 0 33.127351 0.94710105 -68.148932 0 + 1800 -34.07448 -34.07448 0 33.127351 0.94710105 -68.148932 0 + 1801 -34.07448 -34.07448 0 33.127351 0.94710104 -68.148932 0 + 1802 -34.07448 -34.07448 0 33.127351 0.94710104 -68.148932 0 + 1803 -34.07448 -34.07448 0 33.127351 0.94710104 -68.148932 0 + 1804 -34.07448 -34.07448 0 33.127351 0.94710104 -68.148932 0 + 1805 -34.07448 -34.07448 0 33.127351 0.94710104 -68.148932 0 + 1806 -34.07448 -34.07448 0 33.127351 0.94710103 -68.148932 0 + 1807 -34.07448 -34.07448 0 33.127351 0.94710103 -68.148932 0 + 1808 -34.07448 -34.07448 0 33.127351 0.94710103 -68.148932 0 + 1809 -34.07448 -34.07448 0 33.127351 0.94710103 -68.148932 0 + 1810 -34.07448 -34.07448 0 33.127351 0.94710102 -68.148932 0 + 1811 -34.07448 -34.07448 0 33.127351 0.94710102 -68.148932 0 + 1812 -34.07448 -34.07448 0 33.127351 0.94710102 -68.148931 0 + 1813 -34.07448 -34.07448 0 33.127351 0.94710101 -68.148931 0 + 1814 -34.07448 -34.07448 0 33.127351 0.94710101 -68.148931 0 + 1815 -34.07448 -34.07448 0 33.127351 0.94710101 -68.148931 0 + 1816 -34.07448 -34.07448 0 33.127351 0.94710101 -68.148931 0 + 1817 -34.07448 -34.07448 0 33.127351 0.947101 -68.148931 0 + 1818 -34.07448 -34.07448 0 33.127351 0.947101 -68.148931 0 + 1819 -34.07448 -34.07448 0 33.127351 0.947101 -68.148931 0 + 1820 -34.07448 -34.07448 0 33.127351 0.947101 -68.148931 0 + 1821 -34.07448 -34.07448 0 33.127351 0.94710099 -68.148931 0 + 1822 -34.07448 -34.07448 0 33.127351 0.94710099 -68.148931 0 + 1823 -34.07448 -34.07448 0 33.127351 0.94710099 -68.148931 0 + 1824 -34.07448 -34.07448 0 33.127351 0.94710099 -68.148931 0 + 1825 -34.07448 -34.07448 0 33.127351 0.94710099 -68.148931 0 + 1826 -34.07448 -34.07448 0 33.127351 0.94710098 -68.148931 0 + 1827 -34.07448 -34.07448 0 33.127351 0.94710098 -68.148931 0 + 1828 -34.07448 -34.07448 0 33.127351 0.94710098 -68.148931 0 + 1829 -34.07448 -34.07448 0 33.127351 0.94710098 -68.148931 0 + 1830 -34.07448 -34.07448 0 33.127351 0.94710098 -68.148931 0 + 1831 -34.07448 -34.07448 0 33.127351 0.94710098 -68.148931 0 + 1832 -34.07448 -34.07448 0 33.127351 0.94710097 -68.148931 0 + 1833 -34.07448 -34.07448 0 33.127351 0.94710097 -68.148931 0 + 1834 -34.07448 -34.07448 0 33.127351 0.94710097 -68.148931 0 + 1835 -34.07448 -34.07448 0 33.12735 0.94710097 -68.148931 0 + 1836 -34.07448 -34.07448 0 33.12735 0.94710096 -68.148931 0 + 1837 -34.07448 -34.07448 0 33.12735 0.94710096 -68.148931 0 + 1838 -34.07448 -34.07448 0 33.12735 0.94710096 -68.148931 0 + 1839 -34.07448 -34.07448 0 33.12735 0.94710096 -68.148931 0 + 1840 -34.07448 -34.07448 0 33.12735 0.94710096 -68.148931 0 + 1841 -34.07448 -34.07448 0 33.12735 0.94710095 -68.148931 0 + 1842 -34.07448 -34.07448 0 33.12735 0.94710095 -68.148931 0 + 1843 -34.07448 -34.07448 0 33.12735 0.94710095 -68.148931 0 + 1844 -34.07448 -34.07448 0 33.12735 0.94710095 -68.148931 0 + 1845 -34.07448 -34.07448 0 33.12735 0.94710095 -68.148931 0 + 1846 -34.07448 -34.07448 0 33.12735 0.94710094 -68.148931 0 + 1847 -34.07448 -34.07448 0 33.12735 0.94710094 -68.148931 0 + 1848 -34.07448 -34.07448 0 33.12735 0.94710094 -68.148931 0 + 1849 -34.07448 -34.07448 0 33.12735 0.94710093 -68.148931 0 + 1850 -34.07448 -34.07448 0 33.12735 0.94710093 -68.148931 0 + 1851 -34.07448 -34.07448 0 33.12735 0.94710093 -68.148931 0 + 1852 -34.07448 -34.07448 0 33.12735 0.94710093 -68.148931 0 + 1853 -34.07448 -34.07448 0 33.12735 0.94710093 -68.148931 0 + 1854 -34.07448 -34.07448 0 33.12735 0.94710092 -68.148931 0 + 1855 -34.07448 -34.07448 0 33.12735 0.94710092 -68.148931 0 + 1856 -34.07448 -34.07448 0 33.12735 0.94710092 -68.148931 0 + 1857 -34.07448 -34.07448 0 33.12735 0.94710092 -68.148931 0 + 1858 -34.07448 -34.07448 0 33.12735 0.94710091 -68.148931 0 + 1859 -34.07448 -34.07448 0 33.12735 0.94710091 -68.148931 0 + 1860 -34.07448 -34.07448 0 33.12735 0.94710091 -68.148931 0 + 1861 -34.07448 -34.07448 0 33.12735 0.94710091 -68.148931 0 + 1862 -34.07448 -34.07448 0 33.12735 0.94710091 -68.148931 0 + 1863 -34.07448 -34.07448 0 33.12735 0.94710091 -68.148931 0 + 1864 -34.07448 -34.07448 0 33.12735 0.9471009 -68.148931 0 + 1865 -34.07448 -34.07448 0 33.12735 0.9471009 -68.148931 0 + 1866 -34.07448 -34.07448 0 33.12735 0.9471009 -68.148931 0 + 1867 -34.07448 -34.07448 0 33.12735 0.9471009 -68.148931 0 + 1868 -34.07448 -34.07448 0 33.12735 0.9471009 -68.148931 0 + 1869 -34.07448 -34.07448 0 33.12735 0.94710089 -68.148931 0 + 1870 -34.07448 -34.07448 0 33.12735 0.94710089 -68.148931 0 + 1871 -34.07448 -34.07448 0 33.12735 0.94710089 -68.148931 0 + 1872 -34.07448 -34.07448 0 33.12735 0.94710089 -68.148931 0 + 1873 -34.07448 -34.07448 0 33.12735 0.94710089 -68.148931 0 + 1874 -34.07448 -34.07448 0 33.12735 0.94710088 -68.148931 0 + 1875 -34.07448 -34.07448 0 33.12735 0.94710088 -68.148931 0 + 1876 -34.07448 -34.07448 0 33.12735 0.94710088 -68.148931 0 + 1877 -34.07448 -34.07448 0 33.12735 0.94710088 -68.148931 0 + 1878 -34.07448 -34.07448 0 33.12735 0.94710088 -68.148931 0 + 1879 -34.07448 -34.07448 0 33.12735 0.94710087 -68.148931 0 + 1880 -34.07448 -34.07448 0 33.12735 0.94710087 -68.148931 0 + 1881 -34.07448 -34.07448 0 33.12735 0.94710087 -68.148931 0 + 1882 -34.07448 -34.07448 0 33.12735 0.94710087 -68.148931 0 + 1883 -34.07448 -34.07448 0 33.12735 0.94710087 -68.148931 0 + 1884 -34.07448 -34.07448 0 33.12735 0.94710086 -68.14893 0 + 1885 -34.07448 -34.07448 0 33.12735 0.94710086 -68.14893 0 + 1886 -34.07448 -34.07448 0 33.12735 0.94710086 -68.14893 0 + 1887 -34.07448 -34.07448 0 33.12735 0.94710086 -68.14893 0 + 1888 -34.07448 -34.07448 0 33.12735 0.94710086 -68.14893 0 + 1889 -34.07448 -34.07448 0 33.12735 0.94710085 -68.14893 0 + 1890 -34.07448 -34.07448 0 33.12735 0.94710085 -68.14893 0 + 1891 -34.07448 -34.07448 0 33.12735 0.94710085 -68.14893 0 + 1892 -34.07448 -34.07448 0 33.12735 0.94710085 -68.14893 0 + 1893 -34.07448 -34.07448 0 33.12735 0.94710084 -68.14893 0 + 1894 -34.07448 -34.07448 0 33.12735 0.94710084 -68.14893 0 + 1895 -34.07448 -34.07448 0 33.12735 0.94710084 -68.14893 0 + 1896 -34.07448 -34.07448 0 33.12735 0.94710084 -68.14893 0 + 1897 -34.07448 -34.07448 0 33.12735 0.94710083 -68.14893 0 + 1898 -34.07448 -34.07448 0 33.12735 0.94710083 -68.14893 0 + 1899 -34.07448 -34.07448 0 33.12735 0.94710083 -68.14893 0 + 1900 -34.07448 -34.07448 0 33.12735 0.94710083 -68.14893 0 + 1901 -34.07448 -34.07448 0 33.12735 0.94710083 -68.14893 0 + 1902 -34.07448 -34.07448 0 33.12735 0.94710082 -68.14893 0 + 1903 -34.07448 -34.07448 0 33.12735 0.94710082 -68.14893 0 + 1904 -34.07448 -34.07448 0 33.12735 0.94710082 -68.14893 0 + 1905 -34.07448 -34.07448 0 33.12735 0.94710082 -68.14893 0 + 1906 -34.07448 -34.07448 0 33.12735 0.94710081 -68.14893 0 + 1907 -34.07448 -34.07448 0 33.12735 0.94710081 -68.14893 0 + 1908 -34.07448 -34.07448 0 33.12735 0.94710081 -68.14893 0 + 1909 -34.07448 -34.07448 0 33.12735 0.94710081 -68.14893 0 + 1910 -34.07448 -34.07448 0 33.12735 0.9471008 -68.14893 0 + 1911 -34.07448 -34.07448 0 33.12735 0.9471008 -68.14893 0 + 1912 -34.07448 -34.07448 0 33.12735 0.9471008 -68.14893 0 + 1913 -34.07448 -34.07448 0 33.12735 0.9471008 -68.14893 0 + 1914 -34.07448 -34.07448 0 33.12735 0.9471008 -68.14893 0 + 1915 -34.07448 -34.07448 0 33.12735 0.94710079 -68.14893 0 + 1916 -34.07448 -34.07448 0 33.12735 0.94710079 -68.14893 0 + 1917 -34.07448 -34.07448 0 33.12735 0.94710079 -68.14893 0 + 1918 -34.07448 -34.07448 0 33.12735 0.94710079 -68.14893 0 + 1919 -34.07448 -34.07448 0 33.12735 0.94710079 -68.14893 0 + 1920 -34.07448 -34.07448 0 33.127349 0.94710078 -68.14893 0 + 1921 -34.07448 -34.07448 0 33.127349 0.94710078 -68.14893 0 + 1922 -34.07448 -34.07448 0 33.127349 0.94710078 -68.14893 0 + 1923 -34.07448 -34.07448 0 33.127349 0.94710078 -68.14893 0 + 1924 -34.07448 -34.07448 0 33.127349 0.94710078 -68.14893 0 + 1925 -34.07448 -34.07448 0 33.127349 0.94710078 -68.14893 0 + 1926 -34.07448 -34.07448 0 33.127349 0.94710077 -68.14893 0 + 1927 -34.07448 -34.07448 0 33.127349 0.94710077 -68.14893 0 + 1928 -34.07448 -34.07448 0 33.127349 0.94710077 -68.14893 0 + 1929 -34.07448 -34.07448 0 33.127349 0.94710077 -68.14893 0 + 1930 -34.07448 -34.07448 0 33.127349 0.94710076 -68.14893 0 + 1931 -34.07448 -34.07448 0 33.127349 0.94710076 -68.14893 0 + 1932 -34.07448 -34.07448 0 33.127349 0.94710076 -68.14893 0 + 1933 -34.07448 -34.07448 0 33.127349 0.94710076 -68.14893 0 + 1934 -34.07448 -34.07448 0 33.127349 0.94710075 -68.14893 0 + 1935 -34.07448 -34.07448 0 33.127349 0.94710075 -68.14893 0 + 1936 -34.07448 -34.07448 0 33.127349 0.94710075 -68.14893 0 + 1937 -34.07448 -34.07448 0 33.127349 0.94710075 -68.14893 0 + 1938 -34.07448 -34.07448 0 33.127349 0.94710075 -68.14893 0 + 1939 -34.07448 -34.07448 0 33.127349 0.94710075 -68.14893 0 + 1940 -34.07448 -34.07448 0 33.127349 0.94710074 -68.14893 0 + 1941 -34.07448 -34.07448 0 33.127349 0.94710074 -68.14893 0 + 1942 -34.07448 -34.07448 0 33.127349 0.94710074 -68.14893 0 + 1943 -34.07448 -34.07448 0 33.127349 0.94710074 -68.14893 0 + 1944 -34.07448 -34.07448 0 33.127349 0.94710073 -68.14893 0 + 1945 -34.07448 -34.07448 0 33.127349 0.94710073 -68.14893 0 + 1946 -34.07448 -34.07448 0 33.127349 0.94710073 -68.14893 0 + 1947 -34.07448 -34.07448 0 33.127349 0.94710073 -68.14893 0 + 1948 -34.07448 -34.07448 0 33.127349 0.94710072 -68.14893 0 + 1949 -34.07448 -34.07448 0 33.127349 0.94710072 -68.14893 0 + 1950 -34.07448 -34.07448 0 33.127349 0.94710072 -68.14893 0 + 1951 -34.07448 -34.07448 0 33.127349 0.94710072 -68.14893 0 + 1952 -34.07448 -34.07448 0 33.127349 0.94710072 -68.14893 0 + 1953 -34.07448 -34.07448 0 33.127349 0.94710072 -68.14893 0 + 1954 -34.07448 -34.07448 0 33.127349 0.94710071 -68.14893 0 + 1955 -34.07448 -34.07448 0 33.127349 0.94710071 -68.148929 0 + 1956 -34.07448 -34.07448 0 33.127349 0.94710071 -68.148929 0 + 1957 -34.07448 -34.07448 0 33.127349 0.94710071 -68.148929 0 + 1958 -34.07448 -34.07448 0 33.127349 0.9471007 -68.148929 0 + 1959 -34.07448 -34.07448 0 33.127349 0.9471007 -68.148929 0 + 1960 -34.07448 -34.07448 0 33.127349 0.9471007 -68.148929 0 + 1961 -34.07448 -34.07448 0 33.127349 0.9471007 -68.148929 0 + 1962 -34.07448 -34.07448 0 33.127349 0.94710069 -68.148929 0 + 1963 -34.07448 -34.07448 0 33.127349 0.94710069 -68.148929 0 + 1964 -34.07448 -34.07448 0 33.127349 0.94710069 -68.148929 0 + 1965 -34.07448 -34.07448 0 33.127349 0.94710069 -68.148929 0 + 1966 -34.07448 -34.07448 0 33.127349 0.94710069 -68.148929 0 + 1967 -34.07448 -34.07448 0 33.127349 0.94710069 -68.148929 0 + 1968 -34.07448 -34.07448 0 33.127349 0.94710068 -68.148929 0 + 1969 -34.07448 -34.07448 0 33.127349 0.94710068 -68.148929 0 + 1970 -34.07448 -34.07448 0 33.127349 0.94710068 -68.148929 0 + 1971 -34.07448 -34.07448 0 33.127349 0.94710068 -68.148929 0 + 1972 -34.07448 -34.07448 0 33.127349 0.94710068 -68.148929 0 + 1973 -34.07448 -34.07448 0 33.127349 0.94710068 -68.148929 0 + 1974 -34.07448 -34.07448 0 33.127349 0.94710067 -68.148929 0 + 1975 -34.07448 -34.07448 0 33.127349 0.94710067 -68.148929 0 + 1976 -34.07448 -34.07448 0 33.127349 0.94710067 -68.148929 0 + 1977 -34.07448 -34.07448 0 33.127349 0.94710067 -68.148929 0 + 1978 -34.07448 -34.07448 0 33.127349 0.94710067 -68.148929 0 + 1979 -34.07448 -34.07448 0 33.127349 0.94710066 -68.148929 0 + 1980 -34.07448 -34.07448 0 33.127349 0.94710066 -68.148929 0 + 1981 -34.07448 -34.07448 0 33.127349 0.94710066 -68.148929 0 + 1982 -34.07448 -34.07448 0 33.127349 0.94710066 -68.148929 0 + 1983 -34.07448 -34.07448 0 33.127349 0.94710066 -68.148929 0 + 1984 -34.07448 -34.07448 0 33.127349 0.94710065 -68.148929 0 + 1985 -34.07448 -34.07448 0 33.127349 0.94710065 -68.148929 0 + 1986 -34.07448 -34.07448 0 33.127349 0.94710065 -68.148929 0 + 1987 -34.07448 -34.07448 0 33.127349 0.94710065 -68.148929 0 + 1988 -34.07448 -34.07448 0 33.127349 0.94710065 -68.148929 0 + 1989 -34.07448 -34.07448 0 33.127349 0.94710065 -68.148929 0 + 1990 -34.07448 -34.07448 0 33.127349 0.94710064 -68.148929 0 + 1991 -34.07448 -34.07448 0 33.127349 0.94710064 -68.148929 0 + 1992 -34.07448 -34.07448 0 33.127349 0.94710064 -68.148929 0 + 1993 -34.07448 -34.07448 0 33.127349 0.94710064 -68.148929 0 + 1994 -34.07448 -34.07448 0 33.127349 0.94710063 -68.148929 0 + 1995 -34.07448 -34.07448 0 33.127349 0.94710063 -68.148929 0 + 1996 -34.07448 -34.07448 0 33.127349 0.94710063 -68.148929 0 + 1997 -34.07448 -34.07448 0 33.127349 0.94710063 -68.148929 0 + 1998 -34.07448 -34.07448 0 33.127349 0.94710063 -68.148929 0 + 1999 -34.07448 -34.07448 0 33.127349 0.94710063 -68.148929 0 + 2000 -34.07448 -34.07448 0 33.127349 0.94710062 -68.148929 0 +Loop time of 0.0363811 on 4 procs for 2000 steps with 15 atoms + +94.3% CPU use with 4 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = max iterations + Energy initial, next-to-last, final = + -27.3140820331249 -34.0744796900716 -34.0744796895726 + Force two-norm initial, final = 10.728716 0.00075759801 + Force max component initial, final = 6.1727999 0.00051554079 + Final line search alpha, max atom move = 1 0.00051554079 + Iterations, force evaluations = 2000 3946 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0035511 | 0.0066605 | 0.009432 | 2.6 | 18.31 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.0075843 | 0.010873 | 0.013988 | 2.3 | 29.89 +Output | 0.0093178 | 0.010015 | 0.011809 | 1.0 | 27.53 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.008833 | | | 24.28 + +Nlocal: 3.75 ave 6 max 3 min +Histogram: 3 0 0 0 0 0 0 0 0 1 +Nghost: 11.25 ave 12 max 9 min +Histogram: 1 0 0 0 0 0 0 0 0 3 +Neighs: 26.25 ave 39 max 12 min +Histogram: 1 0 0 0 1 0 1 0 0 1 + +Total # of neighbors = 105 +Ave neighs/atom = 7 +Neighbor list builds = 0 +Dangerous builds = 0 + +Total wall time: 0:00:00 diff --git a/examples/PACKAGES/eff/CH4/log.12Aug24.ch4_ionized.dynamics.g++.1 b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4_ionized.dynamics.g++.1 new file mode 100644 index 0000000000..b280cb3110 --- /dev/null +++ b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4_ionized.dynamics.g++.1 @@ -0,0 +1,20200 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +variable sname index ch4_ionized + +units electron +newton on +boundary f f f + +atom_style electron + +read_data data.${sname} +read_data data.ch4_ionized +Reading data file ... + orthogonal box = (-5000 -5000 -5000) to (5000 5000 5000) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 14 atoms + read_data CPU = 0.000 seconds + +pair_style eff/cut 5000.0 +pair_coeff * * + +comm_modify vel yes + +# minimize + +min_style cg +min_modify line quadratic +minimize 0 1.0e-6 10000 100000 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- EFF package: doi:10.1002/jcc.21637 + +@Article{Jaramillo-Botero11, + author = {A. Jaramillo-Botero and J. Su and A. Qi and Goddard, III, W. A.}, + title = {Large-Scale, Long-Term Nonadiabatic Electron Molecular Dynamics for Describing Material Properties and Phenomena in Extreme Environments}, + journal = {J.~Comp.\ Chem.}, + year = 2011, + volume = 32, + number = 3, + pages = {497--512} +} + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 5002 + ghost atom cutoff = 5002 + binsize = 2501, bins = 4 4 4 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair eff/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.348 | 5.348 | 5.348 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 0 -33.560773 0 -33.560773 -2.8388238 + 622 0 -33.804012 0 -33.804012 3.0583031e-06 +Loop time of 0.00921583 on 1 procs for 622 steps with 14 atoms + +97.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = force tolerance + Energy initial, next-to-last, final = + -33.5607729657427 -33.8040121870298 -33.80401218703 + Force two-norm initial, final = 1.9929927 3.8799686e-07 + Force max component initial, final = 1.0150646 1.7000116e-07 + Final line search alpha, max atom move = 1 1.7000116e-07 + Iterations, force evaluations = 622 1234 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0079868 | 0.0079868 | 0.0079868 | 0.0 | 86.66 +Neigh | 1.854e-06 | 1.854e-06 | 1.854e-06 | 0.0 | 0.02 +Comm | 9.0712e-05 | 9.0712e-05 | 9.0712e-05 | 0.0 | 0.98 +Output | 0 | 0 | 0 | 0.0 | 0.00 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.001136 | | | 12.33 + +Nlocal: 14 ave 14 max 14 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 91 ave 91 max 91 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 91 +Ave neighs/atom = 6.5 +Neighbor list builds = 1 +Dangerous builds = 0 + +# dynamics +compute effTemp all temp/eff + +thermo 100 +thermo_style custom step etotal pe ke temp press +thermo_modify temp effTemp + +# equilibrate +timestep 0.001 +fix 1 all nvt/eff temp 300.0 300.0 0.1 + +# the custom dump includes the radii +compute 1 all property/atom spin eradius +dump 1 all custom 100 ${sname}.nvt.lammpstrj id type x y z c_1[1] c_1[2] +dump 1 all custom 100 ch4_ionized.nvt.lammpstrj id type x y z c_1[1] c_1[2] +dump 2 all xyz 100 ${sname}.nvt.xyz +dump 2 all xyz 100 ch4_ionized.nvt.xyz + +run 1000000 +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Per MPI rank memory allocation (min/avg/max) = 3.848 | 3.848 | 3.848 Mbytes + Step TotEng PotEng KinEng Temp Press + 622 -33.804012 -33.804012 0 0 3.0583031e-06 + 700 -33.804012 -33.804012 7.0604413e-16 3.7158473e-11 2.9728264e-06 + 800 -33.804012 -33.804012 6.2231494e-15 3.275188e-10 2.6252169e-06 + 900 -33.804012 -33.804012 3.435105e-14 1.8078651e-09 1.8894799e-06 + 1000 -33.804012 -33.804012 1.6540705e-13 8.7052257e-09 3.7672491e-08 + 1100 -33.804012 -33.804012 7.6713432e-13 4.0373595e-08 -3.6686641e-06 + 1200 -33.804012 -33.804012 3.5910417e-12 1.8899332e-07 -1.1200122e-05 + 1300 -33.804012 -33.804012 1.7240683e-11 9.0736177e-07 -2.7554095e-05 + 1400 -33.804012 -33.804012 8.5427133e-11 4.4959538e-06 -6.1232608e-05 + 1500 -33.804012 -33.804012 4.3700635e-10 2.2999254e-05 -0.00013310662 + 1600 -33.804012 -33.804012 2.3037228e-09 0.00012124288 -0.00029063418 + 1700 -33.804012 -33.804012 1.2483177e-08 0.0006569785 -0.00063241266 + 1800 -33.804012 -33.804012 6.9340461e-08 0.0036493266 -0.0013912929 + 1900 -33.804012 -33.804012 3.9384224e-07 0.020727566 -0.0030935022 + 2000 -33.80401 -33.804012 2.2820753e-06 0.12010359 -0.0069074409 + 2100 -33.803998 -33.804012 1.3458715e-05 0.70832015 -0.015484709 + 2200 -33.80393 -33.804011 8.0487289e-05 4.2359742 -0.034389205 + 2300 -33.803523 -33.804005 0.00048154248 25.343151 -0.073077852 + 2400 -33.801291 -33.80397 0.0026797922 141.03507 -0.13568815 + 2500 -33.794256 -33.803809 0.0095530307 502.76748 -0.21407827 + 2600 -33.795164 -33.803413 0.0082495844 434.16827 -0.50764907 + 2700 -33.799801 -33.803036 0.0032358116 170.29788 -0.76568064 + 2800 -33.799984 -33.802754 0.0027694985 145.75624 -0.84479154 + 2900 -33.796458 -33.802452 0.0059942384 315.47142 -0.7939711 + 3000 -33.79275 -33.80205 0.0092992961 489.41366 -0.67125294 + 3100 -33.796541 -33.801677 0.005135916 270.29868 -0.6403331 + 3200 -33.798252 -33.801443 0.0031904427 167.91016 -0.54564554 + 3300 -33.796537 -33.801268 0.0047309743 248.98696 -0.33134964 + 3400 -33.79192 -33.801021 0.0091008786 478.97112 0.062284142 + 3500 -33.794452 -33.800664 0.0062119301 326.92834 0.3574028 + 3600 -33.796659 -33.800326 0.0036661939 192.94851 0.57600367 + 3700 -33.796049 -33.799981 0.0039319803 206.93662 0.81361455 + 3800 -33.794887 -33.799567 0.0046799682 246.30255 1.0559974 + 3900 -33.792702 -33.799047 0.0063445337 333.90715 1.3077552 + 4000 -33.791049 -33.798389 0.0073406581 386.33229 1.5249114 + 4100 -33.792844 -33.797724 0.0048806687 256.86524 1.6049024 + 4200 -33.795043 -33.797278 0.0022347678 117.61384 1.5825753 + 4300 -33.7942 -33.797017 0.0028168558 148.24861 1.5355651 + 4400 -33.78957 -33.796765 0.0071953233 378.68345 1.4215752 + 4500 -33.789663 -33.796485 0.0068220147 359.03655 1.0960855 + 4600 -33.791837 -33.796232 0.0043949311 231.30131 0.72071271 + 4700 -33.792505 -33.796027 0.0035222151 185.37104 0.3938686 + 4800 -33.788342 -33.795792 0.0074492627 392.04805 0.09586807 + 4900 -33.785712 -33.795296 0.0095837683 504.38518 -0.41666964 + 5000 -33.790506 -33.794737 0.0042312773 222.68835 -0.96066665 + 5100 -33.790799 -33.794296 0.0034969793 184.0429 -1.2722315 + 5200 -33.789006 -33.793884 0.0048781777 256.73414 -1.5036915 + 5300 -33.787659 -33.793505 0.0058463257 307.68691 -1.706756 + 5400 -33.787428 -33.793263 0.005835045 307.09321 -1.8448126 + 5500 -33.787492 -33.793234 0.0057420306 302.19795 -1.8798082 + 5600 -33.787823 -33.793447 0.0056244402 296.00927 -1.8083929 + 5700 -33.788795 -33.793867 0.0050718497 266.92692 -1.6522419 + 5800 -33.789296 -33.794431 0.005134748 270.23721 -1.4106096 + 5900 -33.789023 -33.795094 0.0060702492 319.4718 -1.0810841 + 6000 -33.789512 -33.795765 0.0062534844 329.11531 -0.71197322 + 6100 -33.792039 -33.796287 0.0042482251 223.5803 -0.40790539 + 6200 -33.793361 -33.796641 0.0032798965 172.61803 -0.15124112 + 6300 -33.791281 -33.796933 0.0056521426 297.46722 0.16267623 + 6400 -33.785824 -33.797178 0.0113542 597.56142 0.64222132 + 6500 -33.7918 -33.797182 0.0053812552 283.21066 0.83429296 + 6600 -33.792836 -33.797097 0.0042611894 224.2626 0.98528515 + 6700 -33.791601 -33.797001 0.0053999895 284.19663 1.1108161 + 6800 -33.789487 -33.796904 0.0074171327 390.35708 1.1876497 + 6900 -33.790428 -33.796825 0.0063965735 336.64596 1.1284391 + 7000 -33.794184 -33.796829 0.0026455542 139.23316 0.96413871 + 7100 -33.793901 -33.796958 0.0030566609 160.86934 0.83341309 + 7200 -33.789361 -33.79726 0.0078994372 415.74033 0.66331067 + 7300 -33.789632 -33.797633 0.0080017515 421.12504 0.28020669 + 7400 -33.792427 -33.797885 0.0054578167 287.24002 -0.11753674 + 7500 -33.79301 -33.798048 0.0050387516 265.185 -0.43197683 + 7600 -33.792422 -33.798147 0.0057249225 301.29756 -0.71339323 + 7700 -33.790548 -33.798167 0.007618128 400.93528 -0.96829765 + 7800 -33.788433 -33.79806 0.0096268133 506.6506 -1.231179 + 7900 -33.793707 -33.797886 0.0041790327 219.93876 -1.5426903 + 8000 -33.794692 -33.797794 0.0031010449 163.20523 -1.6441141 + 8100 -33.79177 -33.797799 0.0060283568 317.26704 -1.5844331 + 8200 -33.788728 -33.797902 0.0091734436 482.79015 -1.4254757 + 8300 -33.791944 -33.798051 0.0061068204 321.39651 -1.3269979 + 8400 -33.792915 -33.798241 0.0053259973 280.30249 -1.1495539 + 8500 -33.792813 -33.798476 0.0056637299 298.07705 -0.90615802 + 8600 -33.792557 -33.798724 0.0061671657 324.57243 -0.62010076 + 8700 -33.793463 -33.79893 0.0054665474 287.69951 -0.34515407 + 8800 -33.795027 -33.799056 0.0040297808 212.08377 -0.12290492 + 8900 -33.79458 -33.799125 0.0045449618 239.19729 0.1041556 + 9000 -33.790542 -33.799127 0.0085848078 451.81078 0.42112982 + 9100 -33.791436 -33.798981 0.0075443973 397.0549 0.64624994 + 9200 -33.796075 -33.798804 0.0027286137 143.6045 0.68575417 + 9300 -33.795866 -33.798693 0.0028271765 148.79178 0.73469795 + 9400 -33.794074 -33.798623 0.0045495655 239.43958 0.75621484 + 9500 -33.792154 -33.798595 0.0064410478 338.9866 0.7124477 + 9600 -33.791917 -33.798607 0.0066892837 352.05103 0.57293272 + 9700 -33.794573 -33.798657 0.0040845657 214.96705 0.35228947 + 9800 -33.796807 -33.798746 0.0019390222 102.04901 0.1695612 + 9900 -33.795774 -33.798901 0.00312729 164.58648 0.051418793 + 10000 -33.790694 -33.799185 0.0084908086 446.86368 -0.083753162 + 10100 -33.792767 -33.799407 0.0066397386 349.44352 -0.38868837 + 10200 -33.795332 -33.799496 0.004163632 219.12824 -0.63207146 + 10300 -33.79537 -33.799525 0.0041546416 218.65508 -0.76603653 + 10400 -33.789048 -33.799506 0.010458033 550.39694 -0.75514793 + 10500 -33.790714 -33.799347 0.0086330445 454.34943 -0.88707409 + 10600 -33.794691 -33.799189 0.0044977845 236.71439 -0.98573506 + 10700 -33.794291 -33.799119 0.004827749 254.08012 -0.9264829 + 10800 -33.792159 -33.799158 0.0069985105 368.32537 -0.75114669 + 10900 -33.791371 -33.799321 0.0079505405 418.42986 -0.51592369 + 11000 -33.796227 -33.799544 0.0033168478 174.56274 -0.39045124 + 11100 -33.796915 -33.799801 0.002885676 151.87055 -0.22138624 + 11200 -33.793764 -33.800198 0.0064344511 338.63942 0.078048374 + 11300 -33.791812 -33.800708 0.0088960148 468.18932 0.44394927 + 11400 -33.794693 -33.801062 0.0063690222 335.19596 0.67171427 + 11500 -33.795826 -33.801262 0.0054354536 286.06308 0.86171826 + 11600 -33.796139 -33.801359 0.0052196723 274.7067 1.0098282 + 11700 -33.795361 -33.801379 0.0060176939 316.70586 1.125714 + 11800 -33.792597 -33.801322 0.0087248144 459.1792 1.2302974 + 11900 -33.795139 -33.801194 0.0060540449 318.61898 1.1724664 + 12000 -33.798041 -33.801109 0.003068475 161.4911 1.0591513 + 12100 -33.797217 -33.801117 0.0039007885 205.29502 0.9696359 + 12200 -33.79109 -33.801239 0.010148697 534.11687 0.8741565 + 12300 -33.793613 -33.80142 0.0078072061 410.88629 0.5344998 + 12400 -33.796183 -33.801595 0.0054116044 284.80791 0.23291046 + 12500 -33.796929 -33.80178 0.0048509364 255.30046 -0.0046952936 + 12600 -33.796101 -33.801979 0.0058777807 309.34236 -0.20275204 + 12700 -33.792379 -33.802178 0.0097985318 515.68799 -0.36443142 + 12800 -33.796058 -33.802285 0.0062265376 327.69712 -0.65950958 + 12900 -33.799153 -33.802298 0.0031449774 165.51736 -0.83557018 + 13000 -33.79814 -33.802292 0.0041520757 218.52004 -0.8671413 + 13100 -33.794281 -33.802247 0.0079663992 419.26448 -0.79491247 + 13200 -33.794987 -33.802121 0.0071344279 375.47857 -0.75787315 + 13300 -33.796426 -33.801961 0.005535419 291.32416 -0.69092275 + 13400 -33.796702 -33.801807 0.0051052715 268.68589 -0.55871099 + 13500 -33.795637 -33.801663 0.006025707 317.12758 -0.35090887 + 13600 -33.791523 -33.801489 0.0099659971 524.50154 -0.0065645427 + 13700 -33.794642 -33.801246 0.0066046832 347.59859 0.24294463 + 13800 -33.798083 -33.801066 0.0029830842 156.99706 0.38370038 + 13900 -33.797072 -33.800922 0.0038507676 202.66246 0.57729011 + 14000 -33.793472 -33.800704 0.0072323629 380.63281 0.85326054 + 14100 -33.793578 -33.800332 0.0067541947 355.46724 1.054267 + 14200 -33.794724 -33.799868 0.0051436745 270.707 1.1714057 + 14300 -33.794582 -33.799338 0.0047563764 250.32385 1.2498806 + 14400 -33.791158 -33.798659 0.0075010275 394.77239 1.3343516 + 14500 -33.784519 -33.797458 0.012939292 680.98337 1.408526 + 14600 -33.792226 -33.796328 0.00410249 215.91039 1.159671 + 14700 -33.79223 -33.79556 0.0033300181 175.25588 1.0357092 + 14800 -33.789552 -33.79484 0.0052882585 278.31633 0.88838665 + 14900 -33.786661 -33.794077 0.0074161095 390.30323 0.63457953 + 15000 -33.787547 -33.793441 0.0058944274 310.21845 0.27089305 + 15100 -33.789826 -33.793074 0.0032486456 170.97332 -0.061430971 + 15200 -33.791445 -33.792988 0.0015426192 81.186675 -0.27465542 + 15300 -33.790318 -33.793114 0.0027956284 147.13143 -0.37710898 + 15400 -33.785813 -33.793391 0.0075776027 398.80247 -0.43949072 + 15500 -33.78668 -33.793458 0.0067780851 356.72457 -0.59792911 + 15600 -33.789254 -33.793255 0.0040017004 210.60592 -0.73013928 + 15700 -33.789501 -33.792944 0.0034437649 181.24227 -0.75919522 + 15800 -33.783191 -33.792392 0.009200227 484.19974 -0.60585287 + 15900 -33.783609 -33.791289 0.0076803917 404.21216 -0.531006 + 16000 -33.786583 -33.79028 0.0036971346 194.5769 -0.49099466 + 16100 -33.785991 -33.789564 0.0035727307 188.02963 -0.3518642 + 16200 -33.78176 -33.788997 0.0072370642 380.88023 -0.056307477 + 16300 -33.781635 -33.788644 0.0070090659 368.88089 0.22829621 + 16400 -33.783326 -33.788709 0.0053833151 283.31907 0.44795959 + 16500 -33.784362 -33.789203 0.0048411309 254.7844 0.62632206 + 16600 -33.784743 -33.790072 0.005329118 280.46673 0.76506391 + 16700 -33.785638 -33.791195 0.0055571248 292.46652 0.8355991 + 16800 -33.787583 -33.792348 0.0047651571 250.78597 0.81885662 + 16900 -33.789029 -33.793418 0.0043896676 231.02429 0.75172481 + 17000 -33.789481 -33.794445 0.0049638758 261.24436 0.65012596 + 17100 -33.789121 -33.795458 0.0063373657 333.5299 0.50822833 + 17200 -33.790058 -33.796374 0.0063156747 332.38833 0.29183643 + 17300 -33.792894 -33.797035 0.0041411951 217.9474 0.038231875 + 17400 -33.793928 -33.797523 0.0035955704 189.23166 -0.15899028 + 17500 -33.791007 -33.798028 0.0070205396 369.48474 -0.29970884 + 17600 -33.787345 -33.798623 0.011277945 593.54818 -0.51229868 + 17700 -33.794334 -33.798976 0.004641996 244.30411 -0.86747351 + 17800 -33.794725 -33.799245 0.0045192969 237.84656 -1.0017361 + 17900 -33.793215 -33.799572 0.0063573132 334.57972 -1.0540018 + 18000 -33.792271 -33.799935 0.0076637008 403.33373 -1.0689104 + 18100 -33.79643 -33.800215 0.0037851412 199.20861 -1.1280923 + 18200 -33.797891 -33.80041 0.0025191907 132.58276 -1.0906635 + 18300 -33.795549 -33.800638 0.005088726 267.81511 -0.91035465 + 18400 -33.792301 -33.800864 0.0085632338 450.67536 -0.59798343 + 18500 -33.794534 -33.800897 0.0063629423 334.87598 -0.36495893 + 18600 -33.796063 -33.800787 0.0047243748 248.63963 -0.14622179 + 18700 -33.795782 -33.800611 0.0048290079 254.14638 0.095395846 + 18800 -33.789821 -33.800345 0.010524051 553.87144 0.49349862 + 18900 -33.791332 -33.799894 0.0085619341 450.60695 0.80926968 + 19000 -33.795906 -33.799611 0.0037049658 194.98905 0.91927277 + 19100 -33.795148 -33.799538 0.0043898698 231.03493 1.0563671 + 19200 -33.792291 -33.799672 0.0073808822 388.44924 1.1923179 + 19300 -33.792508 -33.79999 0.0074818038 393.76066 1.210908 + 19400 -33.79767 -33.800317 0.0026461601 139.26505 1.0712943 + 19500 -33.797812 -33.800645 0.0028330628 149.10157 0.98040264 + 19600 -33.795533 -33.801096 0.0055635274 292.80349 0.8473078 + 19700 -33.794111 -33.80155 0.0074389607 391.50587 0.59320999 + 19800 -33.796133 -33.801776 0.0056424739 296.95837 0.23871603 + 19900 -33.798402 -33.80178 0.0033788888 177.82791 -0.082788094 + 20000 -33.80039 -33.801696 0.0013051649 68.689664 -0.32506366 + 20100 -33.800356 -33.801613 0.001257794 66.196577 -0.4698061 + 20200 -33.797839 -33.801486 0.003646969 191.93672 -0.61777701 + 20300 -33.79513 -33.801243 0.0061129472 321.71896 -0.83135804 + 20400 -33.793371 -33.800864 0.0074929946 394.34962 -1.0852823 + 20500 -33.795283 -33.800458 0.0051751055 272.36118 -1.3534026 + 20600 -33.797258 -33.800203 0.0029453382 155.01052 -1.508343 + 20700 -33.796529 -33.800129 0.0035997212 189.45012 -1.5108917 + 20800 -33.790306 -33.800211 0.0099049718 521.28983 -1.2974488 + 20900 -33.793367 -33.800352 0.0069853937 367.63504 -1.1748502 + 21000 -33.796153 -33.800484 0.0043308728 227.92997 -1.0333696 + 21100 -33.795801 -33.800638 0.0048371385 254.57429 -0.79094504 + 21200 -33.793924 -33.800797 0.0068725273 361.69498 -0.44126353 + 21300 -33.791555 -33.800881 0.0093254428 490.78973 0.00053520203 + 21400 -33.795145 -33.80082 0.0056745843 298.64831 0.32815833 + 21500 -33.797672 -33.800728 0.0030564206 160.85669 0.54797679 + 21600 -33.796575 -33.800678 0.004103114 215.94323 0.79084963 + 21700 -33.792004 -33.800654 0.0086496198 455.22177 1.1443316 + 21800 -33.793686 -33.800627 0.0069406392 365.27965 1.3628945 + 21900 -33.796208 -33.800649 0.0044408768 233.71938 1.457512 + 22000 -33.795991 -33.800765 0.0047742843 251.26632 1.5205808 + 22100 -33.795161 -33.800978 0.0058168824 306.13733 1.521466 + 22200 -33.794865 -33.801239 0.006373825 335.44872 1.4353752 + 22300 -33.796301 -33.801469 0.0051677946 271.97642 1.2529524 + 22400 -33.799062 -33.801614 0.0025519146 134.30499 1.0299801 + 22500 -33.799297 -33.80171 0.0024132822 127.00889 0.85448072 + 22600 -33.79456 -33.801781 0.007220455 380.0061 0.67140595 + 22700 -33.79387 -33.801657 0.0077873923 409.84351 0.27002798 + 22800 -33.796686 -33.801333 0.0046472535 244.58081 -0.14883502 + 22900 -33.797219 -33.80095 0.0037305293 196.33443 -0.44426186 + 23000 -33.791864 -33.800433 0.0085690977 450.98397 -0.63153875 + 23100 -33.790079 -33.799531 0.0094518352 497.44166 -0.97427882 + 23200 -33.794042 -33.798765 0.0047228111 248.55733 -1.292488 + 23300 -33.794077 -33.798255 0.0041788144 219.92728 -1.402778 + 23400 -33.791423 -33.797911 0.0064880303 341.45925 -1.3572094 + 23500 -33.787769 -33.797668 0.0098990562 520.9785 -1.1757726 + 23600 -33.793808 -33.797534 0.0037264435 196.1194 -1.1157515 + 23700 -33.794936 -33.79757 0.0026337182 138.61024 -0.96289528 + 23800 -33.792168 -33.797742 0.0055744254 293.37704 -0.64061478 + 23900 -33.789107 -33.79793 0.0088226762 464.32958 -0.15512925 + 24000 -33.79249 -33.79792 0.0054293314 285.74087 0.19595535 + 24100 -33.794046 -33.797803 0.0037563181 197.69167 0.47614568 + 24200 -33.79322 -33.79764 0.004419979 232.61955 0.7670349 + 24300 -33.792363 -33.797418 0.0050553657 266.05939 1.0424445 + 24400 -33.791087 -33.797148 0.0060614456 319.00848 1.2881097 + 24500 -33.789862 -33.796841 0.0069795221 367.32602 1.4798856 + 24600 -33.790834 -33.796558 0.0057240476 301.25152 1.546663 + 24700 -33.793163 -33.796423 0.0032601546 171.57903 1.4907816 + 24800 -33.793091 -33.796487 0.0033960059 178.72876 1.3965592 + 24900 -33.787757 -33.796754 0.0089966484 473.48558 1.2674699 + 25000 -33.788798 -33.797028 0.0082308268 433.18107 0.86377916 + 25100 -33.79227 -33.797117 0.0048468018 255.08285 0.44807566 + 25200 -33.792168 -33.797101 0.0049336375 259.65294 0.10827524 + 25300 -33.790996 -33.79694 0.0059437983 312.8168 -0.25363724 + 25400 -33.78958 -33.796533 0.0069524037 365.8988 -0.65561898 + 25500 -33.788441 -33.795797 0.0073563162 387.15636 -1.0873609 + 25600 -33.790094 -33.794851 0.0047573278 250.37392 -1.5185011 + 25700 -33.790761 -33.793989 0.0032278334 169.87799 -1.8053649 + 25800 -33.787681 -33.793114 0.0054331699 285.94289 -1.9502622 + 25900 -33.784579 -33.792003 0.0074245257 390.74616 -2.0580309 + 26000 -33.785669 -33.791068 0.0053990453 284.14694 -2.1335427 + 26100 -33.786313 -33.790629 0.0043157703 227.13514 -2.0653627 + 26200 -33.782683 -33.790731 0.008048188 423.56895 -1.7577394 + 26300 -33.781136 -33.791351 0.010215478 537.63149 -1.279971 + 26400 -33.787392 -33.792044 0.004652008 244.83103 -1.0042511 + 26500 -33.787909 -33.792824 0.0049143268 258.63664 -0.67083916 + 26600 -33.787012 -33.793777 0.0067646722 356.01867 -0.28521373 + 26700 -33.788715 -33.794709 0.0059934054 315.42758 0.038846065 + 26800 -33.792404 -33.79532 0.0029157908 153.45547 0.19128706 + 26900 -33.792143 -33.795811 0.0036680776 193.04765 0.32712723 + 27000 -33.787584 -33.796377 0.0087924919 462.741 0.51396445 + 27100 -33.788794 -33.796809 0.0080148921 421.81662 0.53693113 + 27200 -33.792365 -33.796946 0.0045809612 241.0919 0.43903602 + 27300 -33.79205 -33.797002 0.0049513915 260.58732 0.35029033 + 27400 -33.790483 -33.797028 0.0065443212 344.42179 0.2075612 + 27500 -33.789809 -33.797016 0.0072074757 379.32302 -0.031406276 + 27600 -33.792719 -33.797002 0.0042828689 225.40357 -0.35415572 + 27700 -33.794504 -33.797079 0.0025752088 135.53094 -0.60086771 + 27800 -33.792533 -33.797318 0.004785622 251.86302 -0.77407532 + 27900 -33.786786 -33.797795 0.011009051 579.39655 -0.99574701 + 28000 -33.791802 -33.798178 0.0063753574 335.52937 -1.4057468 + 28100 -33.793667 -33.798439 0.004772347 251.16437 -1.646393 + 28200 -33.793407 -33.798687 0.0052805639 277.91137 -1.7840614 + 28300 -33.791224 -33.798944 0.00771975 406.28355 -1.8392964 + 28400 -33.789304 -33.799171 0.009866248 519.25183 -1.8556346 + 28500 -33.795315 -33.799293 0.0039786971 209.39528 -1.9654759 + 28600 -33.796119 -33.799443 0.0033245368 174.96741 -1.9128372 + 28700 -33.793276 -33.799742 0.0064664548 340.32375 -1.70176 + 28800 -33.790891 -33.800233 0.0093418813 491.65488 -1.3748932 + 28900 -33.796076 -33.8007 0.0046239935 243.35665 -1.1889364 + 29000 -33.79722 -33.801112 0.0038922321 204.8447 -0.97377923 + 29100 -33.795967 -33.801623 0.0056555074 297.64431 -0.67799138 + 29200 -33.794468 -33.802216 0.0077476899 407.75401 -0.32432406 + 29300 -33.797245 -33.802708 0.0054630283 287.5143 -0.071905759 + 29400 -33.79985 -33.802997 0.003147089 165.62849 0.081891883 + 29500 -33.799175 -33.803193 0.0040183294 211.48109 0.24036036 + 29600 -33.791017 -33.803329 0.012312481 647.99487 0.56536746 + 29700 -33.796123 -33.803192 0.007069693 372.07163 0.60640373 + 29800 -33.798505 -33.802911 0.0044059724 231.8824 0.617149 + 29900 -33.797989 -33.80256 0.0045706471 240.54908 0.62843563 + 30000 -33.793964 -33.802064 0.0081004687 426.32044 0.65163539 + 30100 -33.791848 -33.801308 0.009459835 497.86268 0.56879024 + 30200 -33.798331 -33.800731 0.0024009366 126.35915 0.32476272 + 30300 -33.798098 -33.800468 0.0023703181 124.74773 0.23037958 + 30400 -33.795017 -33.800334 0.0053168231 279.81966 0.14639988 + 30500 -33.792907 -33.800298 0.0073910014 388.98181 -0.0091100862 + 30600 -33.794523 -33.800323 0.0057994969 305.22235 -0.22667664 + 30700 -33.796934 -33.800381 0.00344681 181.40254 -0.39997141 + 30800 -33.798436 -33.800473 0.0020377525 107.2451 -0.49009636 + 30900 -33.797976 -33.800612 0.0026364826 138.75573 -0.48857756 + 31000 -33.793004 -33.800824 0.0078196356 411.54045 -0.34182592 + 31100 -33.793445 -33.800912 0.0074673064 392.99767 -0.24722191 + 31200 -33.796781 -33.800826 0.0040455713 212.91481 -0.19782341 + 31300 -33.797183 -33.800708 0.0035247794 185.50599 -0.079563201 + 31400 -33.7902 -33.800534 0.01033423 543.88131 0.25740756 + 31500 -33.79137 -33.800133 0.0087625339 461.16434 0.53621319 + 31600 -33.79515 -33.799758 0.0046074521 242.48609 0.69074311 + 31700 -33.795175 -33.799501 0.0043263152 227.69011 0.87787434 + 31800 -33.792011 -33.79931 0.0072988957 384.13437 1.1335947 + 31900 -33.788166 -33.799066 0.010899567 573.63448 1.4316211 + 32000 -33.795592 -33.798821 0.0032293516 169.95789 1.4297046 + 32100 -33.795756 -33.798736 0.0029792848 156.7971 1.4733166 + 32200 -33.792466 -33.798728 0.0062615815 329.54145 1.5298443 + 32300 -33.790505 -33.798666 0.0081602466 429.4665 1.492851 + 32400 -33.793447 -33.798495 0.0050480196 265.67277 1.315204 + 32500 -33.794876 -33.798334 0.0034578426 181.98317 1.15303 + 32600 -33.79184 -33.798216 0.0063756547 335.54502 1.0400857 + 32700 -33.787328 -33.797997 0.010668844 561.49173 0.82865814 + 32800 -33.793295 -33.797742 0.0044467895 234.03056 0.44651401 + 32900 -33.794363 -33.797672 0.0033090959 174.15477 0.2538955 + 33000 -33.791666 -33.797821 0.0061541471 323.88727 0.16036543 + 33100 -33.788503 -33.798186 0.0096827126 509.59253 0.07414479 + 33200 -33.79306 -33.798552 0.0054911968 288.99679 -0.10062739 + 33300 -33.793825 -33.798898 0.0050731376 266.99471 -0.12112393 + 33400 -33.793213 -33.79927 0.0060573191 318.7913 -0.045882652 + 33500 -33.793195 -33.799576 0.0063804426 335.797 0.082108744 + 33600 -33.795154 -33.799717 0.0045635944 240.1779 0.20909804 + 33700 -33.796816 -33.799727 0.0029116226 153.2361 0.34481903 + 33800 -33.795641 -33.79967 0.0040291151 212.04873 0.55909162 + 33900 -33.789934 -33.799416 0.0094822394 499.0418 0.98506229 + 34000 -33.792536 -33.798852 0.0063156859 332.38892 1.2843382 + 34100 -33.794562 -33.798293 0.003730389 196.32705 1.4998237 + 34200 -33.793545 -33.797796 0.0042507398 223.71264 1.7292056 + 34300 -33.789293 -33.79724 0.007946554 418.22005 2.0341692 + 34400 -33.789307 -33.79663 0.0073231029 385.40838 2.2364362 + 34500 -33.790936 -33.796193 0.0052572673 276.68529 2.3139628 + 34600 -33.791503 -33.795992 0.004489198 236.26249 2.3166938 + 34700 -33.789769 -33.79599 0.0062210265 327.40707 2.2678366 + 34800 -33.786744 -33.796087 0.0093427911 491.70276 2.1205591 + 34900 -33.791555 -33.796121 0.0045656725 240.28727 1.7527549 + 35000 -33.793389 -33.796155 0.0027665226 145.59962 1.476874 + 35100 -33.791737 -33.796247 0.0045108498 237.402 1.1993058 + 35200 -33.789421 -33.796303 0.0068819294 362.18981 0.78514023 + 35300 -33.790033 -33.796183 0.0061495965 323.64778 0.25548801 + 35400 -33.79094 -33.795939 0.0049986701 263.07555 -0.24359216 + 35500 -33.790499 -33.795662 0.0051637456 271.76333 -0.67875546 + 35600 -33.783494 -33.795309 0.011815734 621.85156 -1.0562648 + 35700 -33.787637 -33.794781 0.0071433351 375.94735 -1.6990404 + 35800 -33.790845 -33.794536 0.0036907688 194.24187 -2.0532259 + 35900 -33.789784 -33.794638 0.0048542615 255.47545 -2.1759516 + 36000 -33.786908 -33.795098 0.008189927 431.02855 -2.1498975 + 36100 -33.78975 -33.795742 0.0059925334 315.38169 -2.1199825 + 36200 -33.793632 -33.796247 0.0026148437 137.61689 -2.0584872 + 36300 -33.792367 -33.796851 0.0044841416 235.99637 -1.8059787 + 36400 -33.789234 -33.797628 0.0083938362 441.76011 -1.3556766 + 36500 -33.791938 -33.79822 0.00628159 330.59448 -0.94708415 + 36600 -33.795713 -33.798468 0.0027550156 144.99401 -0.68116161 + 36700 -33.795467 -33.798608 0.0031409295 165.30432 -0.3901319 + 36800 -33.793925 -33.798703 0.0047781549 251.47003 -0.030641206 + 36900 -33.791413 -33.798695 0.0072817895 383.23409 0.40637113 + 37000 -33.791825 -33.798528 0.0067024341 352.74313 0.78780455 + 37100 -33.795293 -33.798342 0.0030494489 160.48978 0.98487577 + 37200 -33.796356 -33.798318 0.0019616909 103.24204 1.0848762 + 37300 -33.792351 -33.798522 0.0061701868 324.73143 1.2031929 + 37400 -33.790163 -33.798997 0.0088338871 464.9196 1.2075846 + 37500 -33.794308 -33.799461 0.0051526745 271.18066 1.0179257 + 37600 -33.795801 -33.799884 0.0040829304 214.88099 0.83595799 + 37700 -33.794551 -33.800355 0.0058042012 305.46993 0.63997427 + 37800 -33.787679 -33.800925 0.013245669 697.10772 0.40697839 + 37900 -33.795783 -33.801289 0.0055059262 289.77199 -0.17111262 + 38000 -33.797595 -33.801411 0.0038165722 200.86279 -0.48560242 + 38100 -33.796012 -33.801474 0.0054621066 287.4658 -0.73813432 + 38200 -33.792875 -33.801446 0.0085710877 451.0887 -1.0197829 + 38300 -33.79589 -33.801285 0.0053942981 283.8971 -1.4064363 + 38400 -33.79912 -33.80117 0.0020500749 107.89362 -1.638052 + 38500 -33.798261 -33.801168 0.0029070945 152.99779 -1.6954243 + 38600 -33.795876 -33.80128 0.0054044414 284.43093 -1.6613818 + 38700 -33.794753 -33.801467 0.0067141403 353.35922 -1.5776733 + 38800 -33.795793 -33.801657 0.0058641835 308.62675 -1.4707916 + 38900 -33.798299 -33.801805 0.0035060495 184.52026 -1.3618969 + 39000 -33.799798 -33.801921 0.0021229133 111.72703 -1.2342917 + 39100 -33.79823 -33.802045 0.0038155124 200.80702 -1.0136061 + 39200 -33.792997 -33.802159 0.0091627389 482.22677 -0.56833018 + 39300 -33.795947 -33.802073 0.0061254535 322.37715 -0.25501377 + 39400 -33.798162 -33.801876 0.0037139808 195.46349 -0.026715836 + 39500 -33.797163 -33.801642 0.0044789453 235.7229 0.21773887 + 39600 -33.788884 -33.801224 0.01234046 649.46738 0.66506054 + 39700 -33.793309 -33.80062 0.0073106625 384.75365 0.85673854 + 39800 -33.795521 -33.800173 0.0046521811 244.84014 0.96780118 + 39900 -33.795182 -33.799901 0.0047192944 248.37226 1.0459098 + 40000 -33.791543 -33.799785 0.0082419766 433.76788 1.1182015 + 40100 -33.790247 -33.799802 0.0095551951 502.8814 1.0644232 + 40200 -33.796722 -33.799912 0.0031898419 167.87853 0.82977591 + 40300 -33.796371 -33.800142 0.00377064 198.44542 0.70333344 + 40400 -33.793105 -33.800526 0.0074216011 390.59225 0.54972112 + 40500 -33.793078 -33.800917 0.0078393417 412.57756 0.2503923 + 40600 -33.79819 -33.8011 0.0029101825 153.16031 -0.09294473 + 40700 -33.798679 -33.80118 0.0025016929 131.66186 -0.26259853 + 40800 -33.797123 -33.801222 0.004099585 215.7575 -0.39448789 + 40900 -33.794238 -33.801146 0.0069078711 363.55509 -0.5221235 + 41000 -33.79385 -33.80084 0.0069893104 367.84117 -0.69201445 + 41100 -33.796814 -33.800417 0.0036026593 189.60475 -0.85772886 + 41200 -33.798623 -33.800127 0.0015038763 79.147667 -0.90848051 + 41300 -33.797544 -33.799985 0.0024411479 128.47544 -0.81559826 + 41400 -33.793564 -33.79989 0.006326681 332.96758 -0.50344776 + 41500 -33.792652 -33.799786 0.0071335414 375.43192 -0.12033777 + 41600 -33.794683 -33.799662 0.0049787811 262.02881 0.22919669 + 41700 -33.796043 -33.799566 0.003523042 185.41456 0.54630023 + 41800 -33.794393 -33.799495 0.0051023867 268.53406 0.92247058 + 41900 -33.788308 -33.799302 0.010994046 578.60683 1.5296821 + 42000 -33.793219 -33.798882 0.0056627404 298.02498 1.8934693 + 42100 -33.794706 -33.798495 0.0037889417 199.40862 2.1405587 + 42200 -33.793554 -33.798119 0.004564514 240.2263 2.3580653 + 42300 -33.791467 -33.797693 0.0062258199 327.65935 2.5322187 + 42400 -33.790715 -33.797222 0.0065074982 342.48382 2.5958013 + 42500 -33.792046 -33.796812 0.0047663649 250.84953 2.5216652 + 42600 -33.794627 -33.796621 0.0019935614 104.91936 2.3578916 + 42700 -33.794164 -33.796685 0.002520152 132.63335 2.1942422 + 42800 -33.789874 -33.797008 0.0071344881 375.48174 1.9340884 + 42900 -33.789592 -33.797401 0.0078083054 410.94415 1.439287 + 43000 -33.793037 -33.797622 0.0045857766 241.34533 0.92832576 + 43100 -33.793986 -33.797745 0.0037586196 197.8128 0.56303081 + 43200 -33.789401 -33.797821 0.0084195992 443.116 0.29719809 + 43300 -33.78621 -33.797614 0.011403907 600.17745 -0.15950859 + 43400 -33.792387 -33.797181 0.0047942682 252.31806 -0.62740164 + 43500 -33.792728 -33.796793 0.0040657248 213.97547 -0.83155257 + 43600 -33.790142 -33.796423 0.0062811534 330.5715 -0.89588547 + 43700 -33.786667 -33.795983 0.0093160375 490.29475 -0.86708268 + 43800 -33.791964 -33.795616 0.0036516956 192.18548 -0.9230454 + 43900 -33.793474 -33.795591 0.0021174503 111.43952 -0.84635774 + 44000 -33.79157 -33.795894 0.0043239729 227.56684 -0.59400048 + 44100 -33.788792 -33.796522 0.0077300385 406.82503 -0.16358707 + 44200 -33.790525 -33.797186 0.0066612523 350.57576 0.23868931 + 44300 -33.793299 -33.797672 0.0043733902 230.16763 0.54480189 + 44400 -33.793934 -33.79805 0.0041156249 216.60167 0.8236913 + 44500 -33.789305 -33.798399 0.0090944622 478.63343 1.2133913 + 44600 -33.789563 -33.798564 0.0090001936 473.67216 1.5552963 + 44700 -33.794727 -33.798461 0.0037334593 196.48864 1.6501244 + 44800 -33.794767 -33.798322 0.0035543097 187.06015 1.7297735 + 44900 -33.79101 -33.798125 0.0071147874 374.44491 1.8041476 + 45000 -33.789604 -33.79775 0.0081451817 428.67365 1.7377838 + 45100 -33.792105 -33.797331 0.0052255419 275.01561 1.5290665 + 45200 -33.79221 -33.797002 0.0047917836 252.1873 1.3136189 + 45300 -33.791154 -33.796768 0.0056138 295.44929 1.0475983 + 45400 -33.78958 -33.79662 0.0070401147 370.51496 0.70781455 + 45500 -33.789945 -33.796539 0.0065945778 347.06675 0.27834667 + 45600 -33.793176 -33.796552 0.003376498 177.70208 -0.13145329 + 45700 -33.793506 -33.796706 0.0032006283 168.44621 -0.39070608 + 45800 -33.789235 -33.797051 0.0078154817 411.32183 -0.57723429 + 45900 -33.788471 -33.797468 0.0089970554 473.507 -0.8851859 + 46000 -33.792509 -33.797711 0.00520204 273.77873 -1.1841757 + 46100 -33.792811 -33.797911 0.0050999126 268.40385 -1.3138804 + 46200 -33.79212 -33.798129 0.0060083429 316.21373 -1.3558952 + 46300 -33.791667 -33.798355 0.0066880687 351.98709 -1.3353566 + 46400 -33.793779 -33.798561 0.0047820101 251.67292 -1.305569 + 46500 -33.795672 -33.798763 0.0030911813 162.68612 -1.23854 + 46600 -33.794418 -33.79904 0.0046217317 243.23761 -1.0672555 + 46700 -33.789051 -33.799442 0.010391575 546.89932 -0.71335967 + 46800 -33.793386 -33.799715 0.006329549 333.11852 -0.52433154 + 46900 -33.795469 -33.799821 0.0043527372 229.08068 -0.37538809 + 47000 -33.794676 -33.799874 0.0051976961 273.55011 -0.19881633 + 47100 -33.793094 -33.799849 0.0067553248 355.52672 -0.024181667 + 47200 -33.793049 -33.7997 0.0066516962 350.07284 0.084698897 + 47300 -33.796208 -33.7995 0.0032919859 173.25428 0.067029851 + 47400 -33.796984 -33.799385 0.0024011864 126.3723 0.034288431 + 47500 -33.793452 -33.799356 0.0059033188 310.68641 0.016067124 + 47600 -33.791139 -33.799367 0.0082276125 433.01191 -0.12825962 + 47700 -33.793937 -33.799409 0.0054724636 288.01088 -0.39961518 + 47800 -33.795311 -33.799544 0.0042321837 222.73605 -0.62853908 + 47900 -33.793807 -33.799826 0.0060189541 316.77218 -0.81161162 + 48000 -33.786453 -33.800374 0.013921141 732.65724 -0.9783976 + 48100 -33.795345 -33.800887 0.0055416679 291.65304 -1.4267373 + 48200 -33.796748 -33.801303 0.0045546215 239.70567 -1.6117599 + 48300 -33.795876 -33.801775 0.005898552 310.43553 -1.7029666 + 48400 -33.794319 -33.802295 0.0079758636 419.76259 -1.7386121 + 48500 -33.79765 -33.802704 0.0050542875 266.00264 -1.8160356 + 48600 -33.80013 -33.802921 0.0027912754 146.90233 -1.8231602 + 48700 -33.798837 -33.803071 0.0042335334 222.80709 -1.695431 + 48800 -33.793844 -33.803139 0.0092952716 489.20185 -1.3790058 + 48900 -33.795964 -33.802961 0.0069969319 368.24229 -1.1334512 + 49000 -33.79768 -33.802619 0.0049384562 259.90654 -0.8940739 + 49100 -33.797532 -33.802188 0.0046563293 245.05846 -0.61331555 + 49200 -33.793849 -33.801613 0.007763567 408.58961 -0.20423333 + 49300 -33.789318 -33.800665 0.011347359 597.20136 0.36562228 + 49400 -33.796761 -33.799855 0.0030939537 162.83202 0.58551189 + 49500 -33.79664 -33.799423 0.0027825127 146.44116 0.80585289 + 49600 -33.793749 -33.799114 0.0053652322 282.36738 1.0745564 + 49700 -33.79117 -33.798884 0.0077137434 405.96744 1.3405033 + 49800 -33.792969 -33.798757 0.00578767 304.59991 1.4511704 + 49900 -33.795599 -33.798748 0.003148853 165.72132 1.443464 + 50000 -33.797324 -33.798846 0.0015226854 80.137575 1.3734593 + 50100 -33.797347 -33.799045 0.0016975771 89.341968 1.2754091 + 50200 -33.793073 -33.799447 0.0063741533 335.466 1.1220747 + 50300 -33.792067 -33.799874 0.0078071191 410.88171 0.74449489 + 50400 -33.795315 -33.800045 0.0047301535 248.94376 0.29730341 + 50500 -33.796699 -33.800071 0.0033718201 177.45588 -0.03260726 + 50600 -33.793868 -33.800043 0.0061745854 324.96292 -0.27313859 + 50700 -33.788839 -33.79981 0.01097069 577.37764 -0.59523903 + 50800 -33.793984 -33.799382 0.0053982415 284.10463 -1.0263909 + 50900 -33.794749 -33.799008 0.0042594764 224.17244 -1.2233507 + 51000 -33.79318 -33.798669 0.0054885531 288.85765 -1.2786016 + 51100 -33.789671 -33.798262 0.0085905652 452.11378 -1.200824 + 51200 -33.789687 -33.797682 0.0079948301 420.76078 -1.0879949 + 51300 -33.794253 -33.797204 0.0029503579 155.27471 -1.0206987 + 51400 -33.794002 -33.796935 0.0029334049 154.38249 -0.81167326 + 51500 -33.7899 -33.796705 0.0068047578 358.12833 -0.36728002 + 51600 -33.788815 -33.796346 0.0075303838 396.31738 0.19134107 + 51700 -33.791087 -33.795956 0.0048689204 256.24694 0.65550653 + 51800 -33.791688 -33.795696 0.0040085437 210.96608 1.0804002 + 51900 -33.785117 -33.795575 0.01045735 550.36099 1.709916 + 52000 -33.786465 -33.79545 0.0089844582 472.84402 2.3477734 + 52100 -33.79121 -33.795475 0.0042652066 224.47402 2.6586287 + 52200 -33.791125 -33.79581 0.0046849223 246.56328 2.9008993 + 52300 -33.788536 -33.796524 0.0079883613 420.42033 3.100165 + 52400 -33.789469 -33.797505 0.0080355835 422.90559 3.1276561 + 52500 -33.79484 -33.798234 0.0033943161 178.63983 2.960443 + 52600 -33.794511 -33.798897 0.0043855504 230.8076 2.8082271 + 52700 -33.791411 -33.799648 0.0082362787 433.468 2.563489 + 52800 -33.793155 -33.80021 0.0070547578 371.28561 2.0907916 + 52900 -33.797749 -33.800358 0.0026086758 137.29228 1.6646141 + 53000 -33.797007 -33.800348 0.0033410637 175.8372 1.3653532 + 53100 -33.793955 -33.800134 0.0061787554 325.18239 0.9874038 + 53200 -33.793065 -33.799557 0.0064917756 341.65636 0.46775346 + 53300 -33.79383 -33.798736 0.0049056138 258.17808 -0.040788077 + 53400 -33.792949 -33.797835 0.0048861184 257.15206 -0.43956368 + 53500 -33.784059 -33.796487 0.012427322 654.03888 -0.75778143 + 53600 -33.789135 -33.794966 0.0058315091 306.90712 -1.291823 + 53700 -33.790739 -33.794184 0.0034453052 181.32334 -1.4893144 + 53800 -33.788825 -33.794006 0.0051814364 272.69437 -1.415292 + 53900 -33.785352 -33.794389 0.0090361761 475.56589 -1.0847063 + 54000 -33.788509 -33.795057 0.0065472055 344.57359 -0.73988091 + 54100 -33.789825 -33.795748 0.0059236042 311.75401 -0.33739042 + 54200 -33.790239 -33.79646 0.0062209561 327.40337 0.1388068 + 54300 -33.791832 -33.797043 0.0052107078 274.2349 0.58722943 + 54400 -33.793259 -33.797455 0.0041963937 220.85246 0.97442038 + 54500 -33.793158 -33.797767 0.0046089295 242.56385 1.3396984 + 54600 -33.788971 -33.798026 0.0090555904 476.58764 1.8094093 + 54700 -33.7902 -33.798093 0.007893839 415.44571 2.1871243 + 54800 -33.794887 -33.798045 0.0031577133 166.18763 2.3044347 + 54900 -33.794575 -33.798118 0.0035428185 186.45538 2.3779195 + 55000 -33.79251 -33.798379 0.0058685847 308.85838 2.3734092 + 55100 -33.791925 -33.798795 0.0068699532 361.55951 2.2140056 + 55200 -33.79333 -33.799261 0.0059308927 312.13759 1.9195104 + 55300 -33.794724 -33.799721 0.0049973646 263.00684 1.5678766 + 55400 -33.796686 -33.800151 0.0034651639 182.36849 1.1774633 + 55500 -33.798249 -33.800493 0.0022441671 118.10851 0.84191755 + 55600 -33.796438 -33.800861 0.0044225758 232.75622 0.53018374 + 55700 -33.792034 -33.801267 0.009232811 485.91461 0.063528719 + 55800 -33.795216 -33.801384 0.0061679769 324.61512 -0.5876786 + 55900 -33.797323 -33.80127 0.0039475198 207.75445 -1.0581333 + 56000 -33.796688 -33.801058 0.004369727 229.97483 -1.400416 + 56100 -33.795583 -33.800749 0.005166566 271.91176 -1.7040496 + 56200 -33.794687 -33.800383 0.0056951715 299.73179 -1.9522681 + 56300 -33.793803 -33.800027 0.00622456 327.59304 -2.1119956 + 56400 -33.792719 -33.79976 0.0070408618 370.55428 -2.1575601 + 56500 -33.793003 -33.799642 0.0066386385 349.38562 -2.1068874 + 56600 -33.795418 -33.79972 0.0043016596 226.39251 -1.9953927 + 56700 -33.796069 -33.799985 0.0039158181 206.08601 -1.7735753 + 56800 -33.793189 -33.800445 0.0072556983 381.86093 -1.3622374 + 56900 -33.790425 -33.80103 0.010604234 558.09138 -0.7611763 + 57000 -33.797465 -33.801345 0.0038804523 204.22475 -0.44918372 + 57100 -33.797615 -33.801514 0.0038987137 205.18583 -0.12879655 + 57200 -33.795335 -33.801627 0.0062926157 331.17475 0.26015039 + 57300 -33.793689 -33.801591 0.0079025651 415.90495 0.66427078 + 57400 -33.797872 -33.801399 0.003527137 185.63007 0.86021526 + 57500 -33.799619 -33.801278 0.0016589281 87.307906 0.93091626 + 57600 -33.7982 -33.801256 0.0030566306 160.86774 0.96828221 + 57700 -33.795826 -33.801316 0.0054905097 288.96063 0.92231063 + 57800 -33.794599 -33.801416 0.0068167377 358.75882 0.74353267 + 57900 -33.795656 -33.801506 0.0058494047 307.84895 0.44252907 + 58000 -33.798218 -33.801575 0.0033571461 176.68361 0.10741935 + 58100 -33.799259 -33.801655 0.0023953852 126.06699 -0.16578274 + 58200 -33.796069 -33.801768 0.0056985894 299.91168 -0.41000741 + 58300 -33.792353 -33.801791 0.009438129 496.72031 -0.83687092 + 58400 -33.796367 -33.801559 0.0051927617 273.29042 -1.3692517 + 58500 -33.797484 -33.801227 0.0037432914 197.00609 -1.7112048 + 58600 -33.795592 -33.800778 0.0051864359 272.9575 -1.9493501 + 58700 -33.78893 -33.799957 0.01102684 580.33276 -2.1315546 + 58800 -33.79445 -33.798784 0.0043336768 228.07754 -2.5201462 + 58900 -33.79662 -33.798193 0.0015722772 82.747544 -2.6349187 + 59000 -33.794832 -33.797804 0.0029714221 156.38329 -2.5462652 + 59100 -33.791004 -33.797482 0.006478869 340.9771 -2.2430711 + 59200 -33.789507 -33.797295 0.007788168 409.88434 -1.8138141 + 59300 -33.792456 -33.7973 0.0048437432 254.92188 -1.4359507 + 59400 -33.794261 -33.797495 0.0032339588 170.20037 -1.1000967 + 59500 -33.792772 -33.797891 0.0051190019 269.40851 -0.69710893 + 59600 -33.785947 -33.798593 0.012645837 665.5391 0.0061673968 + 59700 -33.793157 -33.799126 0.0059692839 314.15809 0.3835446 + 59800 -33.794755 -33.799441 0.0046859155 246.61555 0.67186835 + 59900 -33.794139 -33.799701 0.00556201 292.72362 0.92032672 + 60000 -33.792259 -33.799892 0.0076322797 401.68007 1.1318372 + 60100 -33.792774 -33.799927 0.0071520174 376.4043 1.2199314 + 60200 -33.79656 -33.799839 0.0032791404 172.57823 1.1456441 + 60300 -33.796701 -33.799762 0.0030614533 161.12156 1.0611607 + 60400 -33.792187 -33.799669 0.0074817672 393.75873 0.94683208 + 60500 -33.791316 -33.799411 0.0080942071 425.9909 0.61403541 + 60600 -33.79382 -33.79905 0.0052298474 275.2422 0.21693339 + 60700 -33.794156 -33.798687 0.0045309639 238.46059 -0.11101843 + 60800 -33.792319 -33.798286 0.0059670942 314.04285 -0.40977481 + 60900 -33.783422 -33.797629 0.014206353 747.66768 -0.66791497 + 61000 -33.790821 -33.796593 0.0057714592 303.74675 -1.2693003 + 61100 -33.792859 -33.795935 0.0030754595 161.85869 -1.5074236 + 61200 -33.790858 -33.795378 0.0045199633 237.88163 -1.5465055 + 61300 -33.787092 -33.794699 0.0076071519 400.35762 -1.4304337 + 61400 -33.787614 -33.793932 0.0063177429 332.49717 -1.2630647 + 61500 -33.789903 -33.793359 0.0034553676 181.85292 -1.0421156 + 61600 -33.791306 -33.793145 0.0018395459 96.813658 -0.76305641 + 61700 -33.790149 -33.7933 0.0031513042 165.85033 -0.34712773 + 61800 -33.785291 -33.793876 0.0085854085 451.84239 0.47150112 + 61900 -33.787472 -33.794528 0.007055642 371.33214 1.2835771 + 62000 -33.79083 -33.795006 0.0041754954 219.7526 1.8400025 + 62100 -33.790952 -33.795478 0.0045263929 238.22002 2.2985459 + 62200 -33.787052 -33.796054 0.0090020723 473.77104 2.7980845 + 62300 -33.783149 -33.796638 0.013489229 709.9261 3.34243 + 62400 -33.792335 -33.796816 0.0044811892 235.84099 3.3783623 + 62500 -33.792539 -33.796942 0.0044031294 231.73278 3.3873275 + 62600 -33.79021 -33.797095 0.006884771 362.33936 3.2745997 + 62700 -33.788906 -33.79718 0.0082739933 435.45289 2.9474305 + 62800 -33.793506 -33.797139 0.003632746 191.18818 2.4453967 + 62900 -33.79461 -33.797141 0.0025306149 133.184 2.057184 + 63000 -33.792172 -33.797239 0.0050671323 266.67865 1.6139925 + 63100 -33.790123 -33.797351 0.0072278044 380.3929 0.92813265 + 63200 -33.791492 -33.797359 0.005866589 308.75334 0.17088276 + 63300 -33.792846 -33.797326 0.0044800689 235.78203 -0.45748569 + 63400 -33.792532 -33.797333 0.004800398 252.64066 -0.93721031 + 63500 -33.787479 -33.797393 0.0099141295 521.77179 -1.3129417 + 63600 -33.789863 -33.797395 0.0075325124 396.42941 -1.8004573 + 63700 -33.793952 -33.797418 0.0034656436 182.39373 -2.0517944 + 63800 -33.793224 -33.7976 0.0043763232 230.32199 -2.0077352 + 63900 -33.790928 -33.79796 0.0070323205 370.10475 -1.7340042 + 64000 -33.791391 -33.798375 0.0069840282 367.56317 -1.3320171 + 64100 -33.796179 -33.79868 0.0025011476 131.63317 -1.0033146 + 64200 -33.796927 -33.798932 0.0020047466 105.50803 -0.6781027 + 64300 -33.795014 -33.799306 0.0042921123 225.89004 -0.16193914 + 64400 -33.792317 -33.799753 0.0074359252 391.34611 0.5940179 + 64500 -33.793525 -33.800036 0.0065111427 342.67563 1.3288946 + 64600 -33.796617 -33.800118 0.0035010946 184.25949 1.8395239 + 64700 -33.798341 -33.800152 0.0018103882 95.279118 2.1480168 + 64800 -33.798669 -33.800231 0.0015624282 82.229204 2.3150371 + 64900 -33.795279 -33.800431 0.0051517943 271.13434 2.4670282 + 65000 -33.792532 -33.800715 0.0081831891 430.67395 2.5137106 + 65100 -33.795316 -33.800897 0.005580662 293.70527 2.3379113 + 65200 -33.797567 -33.800997 0.003429624 180.49805 2.0996931 + 65300 -33.796669 -33.801099 0.0044303788 233.16689 1.8335819 + 65400 -33.788973 -33.801201 0.012228642 643.58251 1.4336905 + 65500 -33.794491 -33.801122 0.0066314867 349.00923 0.66665354 + 65600 -33.79649 -33.800976 0.0044854844 236.06704 0.11761916 + 65700 -33.795792 -33.800821 0.0050292511 264.685 -0.35727718 + 65800 -33.792676 -33.800622 0.007946467 418.21547 -0.84585943 + 65900 -33.790392 -33.800293 0.0099008698 521.07395 -1.4356861 + 66000 -33.796568 -33.799976 0.0034072133 179.3186 -2.0038232 + 66100 -33.796942 -33.799835 0.0028929381 152.25275 -2.2238184 + 66200 -33.793586 -33.799803 0.0062169783 327.19402 -2.2762173 + 66300 -33.791625 -33.799813 0.0081871724 430.88358 -2.2676493 + 66400 -33.794074 -33.79982 0.0057454372 302.37724 -2.24163 + 66500 -33.794889 -33.79986 0.0049717263 261.65752 -2.0969044 + 66600 -33.794448 -33.799954 0.0055065893 289.80689 -1.8376728 + 66700 -33.794062 -33.800092 0.0060300822 317.35785 -1.4947739 + 66800 -33.79432 -33.800255 0.0059351738 312.3629 -1.1146109 + 66900 -33.794686 -33.800436 0.0057493464 302.58297 -0.72441972 + 67000 -33.794895 -33.800637 0.0057424758 302.22138 -0.34114757 + 67100 -33.795106 -33.800859 0.005753195 302.78552 0.010413285 + 67200 -33.795549 -33.801094 0.0055441951 291.78604 0.30117311 + 67300 -33.797011 -33.801324 0.0043124529 226.96055 0.48290963 + 67400 -33.797434 -33.801551 0.0041164761 216.64646 0.58076859 + 67500 -33.794908 -33.80181 0.0069019126 363.2415 0.64816217 + 67600 -33.793204 -33.802041 0.0088373798 465.10342 0.5998084 + 67700 -33.798295 -33.802115 0.0038199333 201.03968 0.35256108 + 67800 -33.799215 -33.802119 0.002903364 152.80146 0.16009721 + 67900 -33.797404 -33.802083 0.0046795053 246.27819 -0.074694743 + 68000 -33.795919 -33.801935 0.0060157799 316.60513 -0.44333609 + 68100 -33.795783 -33.801633 0.0058496808 307.86348 -0.90015896 + 68200 -33.795978 -33.801203 0.0052256299 275.02024 -1.3679875 + 68300 -33.79489 -33.800671 0.0057805188 304.22355 -1.8016201 + 68400 -33.791031 -33.79992 0.0088888894 467.81432 -2.238646 + 68500 -33.792973 -33.799006 0.0060331733 317.52053 -2.7668739 + 68600 -33.795708 -33.798363 0.0026552064 139.74115 -3.0920519 + 68700 -33.794743 -33.797978 0.003235565 170.2849 -3.1730875 + 68800 -33.789136 -33.797608 0.0084715773 445.85156 -3.0245239 + 68900 -33.790887 -33.797266 0.0063785908 335.69955 -2.8739971 + 69000 -33.793039 -33.797072 0.0040331304 212.26005 -2.6429422 + 69100 -33.792709 -33.797019 0.0043103851 226.85172 -2.2698601 + 69200 -33.786098 -33.797031 0.010932925 575.39007 -1.5281152 + 69300 -33.789302 -33.796907 0.0076048937 400.23877 -0.76022947 + 69400 -33.792564 -33.796758 0.0041945038 220.75299 -0.22252345 + 69500 -33.791874 -33.796679 0.0048041177 252.83643 0.34235049 + 69600 -33.789595 -33.796654 0.0070598172 371.55188 0.98977088 + 69700 -33.789117 -33.79665 0.0075329861 396.45434 1.620273 + 69800 -33.793714 -33.796686 0.0029716267 156.39406 1.9490615 + 69900 -33.794345 -33.796858 0.0025126369 132.23784 2.1099144 + 70000 -33.79106 -33.79726 0.0061995741 326.27806 2.2204278 + 70100 -33.78945 -33.797822 0.0083724588 440.63504 2.1620329 + 70200 -33.792179 -33.798216 0.006036987 317.72124 1.9057719 + 70300 -33.793564 -33.798428 0.0048645255 256.01564 1.6021032 + 70400 -33.793326 -33.79851 0.0051833696 272.79612 1.2486642 + 70500 -33.78859 -33.798411 0.0098204312 516.84053 0.83783256 + 70600 -33.788697 -33.797879 0.0091821164 483.2466 0.11296048 + 70700 -33.793875 -33.797269 0.0033937329 178.60914 -0.50223245 + 70800 -33.793365 -33.796739 0.0033742719 177.58492 -0.88970227 + 70900 -33.79009 -33.796104 0.0060148153 316.55436 -1.2731067 + 71000 -33.788754 -33.795327 0.0065732656 345.94511 -1.7286445 + 71100 -33.789354 -33.794647 0.0052933501 278.58429 -2.1040251 + 71200 -33.789142 -33.794203 0.0050603488 266.32164 -2.3011643 + 71300 -33.783655 -33.793987 0.010332414 543.78573 -2.2316191 + 71400 -33.783844 -33.793868 0.010023914 527.54963 -2.0865324 + 71500 -33.789554 -33.7939 0.0043461936 228.73629 -1.9549582 + 71600 -33.789397 -33.794159 0.0047620744 250.62373 -1.5770086 + 71700 -33.787128 -33.79463 0.0075018685 394.81665 -0.94029148 + 71800 -33.787472 -33.795158 0.0076857448 404.49389 -0.14643662 + 71900 -33.792493 -33.795504 0.0030109027 158.46112 0.41201173 + 72000 -33.792584 -33.795825 0.0032408604 170.56359 0.93252686 + 72100 -33.789395 -33.796277 0.0068817344 362.17955 1.6501185 + 72200 -33.788838 -33.796739 0.0079009079 415.81773 2.4538579 + 72300 -33.790981 -33.797032 0.0060507208 318.44404 3.0667134 + 72400 -33.791943 -33.797247 0.0053042338 279.1571 3.5234698 + 72500 -33.792033 -33.797464 0.005431009 285.82916 3.8400453 + 72600 -33.790947 -33.797712 0.006764713 356.02081 4.029206 + 72700 -33.790107 -33.79796 0.0078537865 413.33778 4.0553235 + 72800 -33.793576 -33.798124 0.0045479517 239.35464 3.8453587 + 72900 -33.794932 -33.798248 0.0033152981 174.48118 3.5716769 + 73000 -33.792569 -33.798385 0.0058167662 306.13122 3.2101408 + 73100 -33.787221 -33.79841 0.011189534 588.89517 2.5565396 + 73200 -33.792663 -33.798126 0.005463309 287.52908 1.6591475 + 73300 -33.793406 -33.797748 0.0043416212 228.49565 1.0031576 + 73400 -33.792073 -33.797276 0.0052032287 273.84128 0.36894824 + 73500 -33.789227 -33.796635 0.007407654 389.85822 -0.32677639 + 73600 -33.788602 -33.795833 0.0072311936 380.57127 -1.0904341 + 73700 -33.792359 -33.795239 0.0028804533 151.59569 -1.6882523 + 73800 -33.792905 -33.7951 0.0021952853 115.53591 -1.901534 + 73900 -33.78913 -33.795392 0.0062621011 329.5688 -1.8284054 + 74000 -33.787494 -33.796111 0.0086169438 453.50207 -1.5813253 + 74100 -33.791039 -33.796873 0.005834001 307.03827 -1.312506 + 74200 -33.792704 -33.797575 0.0048701819 256.31333 -0.95512523 + 74300 -33.792712 -33.798293 0.0055813685 293.74244 -0.48997304 + 74400 -33.792213 -33.799027 0.0068146325 358.64803 0.070214235 + 74500 -33.793783 -33.799675 0.0058916999 310.07491 0.61188113 + 74600 -33.796042 -33.800149 0.0041073484 216.16608 1.0340398 + 74700 -33.796185 -33.800554 0.0043688404 229.92817 1.4087698 + 74800 -33.792927 -33.801008 0.0080808704 425.289 1.8477472 + 74900 -33.792769 -33.801472 0.0087033031 458.04708 2.2299373 + 75000 -33.79856 -33.801751 0.0031910668 167.943 2.310308 + 75100 -33.798441 -33.801999 0.0035580501 187.25701 2.3464552 + 75200 -33.79606 -33.802329 0.0062689173 329.92753 2.2971285 + 75300 -33.795249 -33.802664 0.0074147137 390.22977 2.07328 + 75400 -33.797547 -33.802863 0.0053159287 279.77259 1.70685 + 75500 -33.799551 -33.802937 0.003386033 178.2039 1.3264148 + 75600 -33.801745 -33.802946 0.0012015813 63.23815 0.99754214 + 75700 -33.801287 -33.802951 0.0016634724 87.547071 0.730043 + 75800 -33.798253 -33.802918 0.0046646522 245.49648 0.30877419 + 75900 -33.795672 -33.802712 0.0070403574 370.52773 -0.34344052 + 76000 -33.79592 -33.80227 0.0063502092 334.20585 -1.1070682 + 76100 -33.797993 -33.801754 0.0037604948 197.91148 -1.7591122 + 76200 -33.79853 -33.80133 0.0028004224 147.38373 -2.1855992 + 76300 -33.794207 -33.800924 0.0067174267 353.53218 -2.4595548 + 76400 -33.792053 -33.800447 0.0083941845 441.77845 -2.7784231 + 76500 -33.795379 -33.800151 0.0047723881 251.16653 -3.0197851 + 76600 -33.796371 -33.800116 0.0037449419 197.09295 -3.0177695 + 76700 -33.792164 -33.80032 0.0081561455 429.25066 -2.7193764 + 76800 -33.788645 -33.800749 0.012104021 637.02382 -2.1285508 + 76900 -33.795574 -33.801033 0.005459232 287.31451 -1.782392 + 77000 -33.796486 -33.801242 0.0047553228 250.2684 -1.3536827 + 77100 -33.795705 -33.801409 0.0057038022 300.18602 -0.84951799 + 77200 -33.793347 -33.801492 0.0081451204 428.67042 -0.23068348 + 77300 -33.794791 -33.801407 0.0066166305 348.22736 0.3367502 + 77400 -33.798414 -33.80125 0.0028360567 149.25913 0.65507537 + 77500 -33.798122 -33.801124 0.0030021294 157.99939 0.89565998 + 77600 -33.793571 -33.800966 0.0073949688 389.19061 1.1873236 + 77700 -33.793711 -33.800712 0.0070011902 368.4664 1.3213192 + 77800 -33.795666 -33.800456 0.0047901856 252.1032 1.2866315 + 77900 -33.795965 -33.800248 0.004283146 225.41815 1.1582013 + 78000 -33.790907 -33.800029 0.0091219742 480.08137 0.96454248 + 78100 -33.790095 -33.799602 0.0095073053 500.361 0.43889602 + 78200 -33.795125 -33.799176 0.0040502774 213.16248 -0.13442865 + 78300 -33.794723 -33.798801 0.0040779689 214.61987 -0.58906578 + 78400 -33.792263 -33.798341 0.0060780037 319.87991 -1.1290193 + 78500 -33.790273 -33.797686 0.0074133155 390.15618 -1.8306069 + 78600 -33.792626 -33.79695 0.0043236493 227.5498 -2.5847311 + 78700 -33.795122 -33.796512 0.0013895554 73.131061 -3.0409454 + 78800 -33.794249 -33.796311 0.0020620113 108.52182 -3.281735 + 78900 -33.791433 -33.796236 0.0048027878 252.76644 -3.4876122 + 79000 -33.789253 -33.796286 0.0070331224 370.14696 -3.654482 + 79100 -33.78982 -33.79643 0.0066103921 347.89904 -3.7571699 + 79200 -33.792834 -33.796629 0.0037941811 199.68437 -3.7671117 + 79300 -33.794162 -33.796889 0.0027267903 143.50854 -3.6287869 + 79400 -33.791333 -33.797285 0.0059517827 313.23702 -3.2528959 + 79500 -33.787065 -33.797854 0.010788764 567.80305 -2.5208979 + 79600 -33.792851 -33.798154 0.0053035226 279.11967 -1.9961963 + 79700 -33.793974 -33.798261 0.0042865513 225.59737 -1.4954712 + 79800 -33.792723 -33.798263 0.0055401955 291.57555 -0.91800473 + 79900 -33.789386 -33.798085 0.008698954 457.81819 -0.19277415 + 80000 -33.788032 -33.797573 0.0095404198 502.10379 0.59187269 + 80100 -33.793687 -33.796994 0.0033076766 174.08007 1.0018225 + 80200 -33.793816 -33.796585 0.0027686092 145.70943 1.2803593 + 80300 -33.790163 -33.796163 0.0060001487 315.78248 1.5573493 + 80400 -33.788144 -33.795612 0.0074680089 393.03465 1.7284106 + 80500 -33.789718 -33.795089 0.0053703797 282.63829 1.6909423 + 80600 -33.790493 -33.794706 0.004213613 221.75869 1.5401826 + 80700 -33.787567 -33.794427 0.0068600941 361.04063 1.3191969 + 80800 -33.783073 -33.794033 0.010960355 576.8337 0.86431016 + 80900 -33.789227 -33.793622 0.0043951141 231.31094 0.21444823 + 81000 -33.789931 -33.793401 0.0034694537 182.59425 -0.2182729 + 81100 -33.787613 -33.793314 0.0057013205 300.05541 -0.64299802 + 81200 -33.785233 -33.793296 0.0080632394 424.3611 -1.1803888 + 81300 -33.787112 -33.793315 0.0062029374 326.45506 -1.7354155 + 81400 -33.787914 -33.793438 0.0055241985 290.73364 -2.1096117 + 81500 -33.78807 -33.793715 0.0056450393 297.09338 -2.3191295 + 81600 -33.788067 -33.794148 0.0060813751 320.05735 -2.3633521 + 81700 -33.789143 -33.794688 0.0055457151 291.86604 -2.2622465 + 81800 -33.791185 -33.795236 0.004050922 213.19641 -2.0477382 + 81900 -33.791616 -33.79579 0.0041735627 219.65088 -1.6926667 + 82000 -33.788587 -33.796433 0.00784614 412.93535 -1.0827973 + 82100 -33.787652 -33.797062 0.0094095699 495.21727 -0.25889765 + 82200 -33.793803 -33.797342 0.0035380533 186.20459 0.26469479 + 82300 -33.793805 -33.797495 0.0036903294 194.21874 0.76802996 + 82400 -33.79143 -33.797624 0.0061931108 325.9379 1.3988552 + 82500 -33.790189 -33.797654 0.0074649194 392.87205 2.0945323 + 82600 -33.792895 -33.79757 0.0046757308 246.07954 2.6033648 + 82700 -33.796227 -33.797534 0.001307063 68.78956 2.8205756 + 82800 -33.795921 -33.797646 0.0017258205 90.828394 2.9135534 + 82900 -33.793681 -33.797965 0.0042839423 225.46006 2.9252971 + 83000 -33.791108 -33.79845 0.0073419522 386.40039 2.7931346 + 83100 -33.792189 -33.79889 0.0067013725 352.68726 2.4625683 + 83200 -33.795588 -33.799149 0.003561171 187.42125 2.0724172 + 83300 -33.796582 -33.799309 0.002727068 143.52316 1.7511996 + 83400 -33.791748 -33.799464 0.007715861 406.07888 1.4402072 + 83500 -33.790023 -33.79951 0.009487309 499.30861 0.8100412 + 83600 -33.795099 -33.799383 0.0042843067 225.47924 0.19193223 + 83700 -33.795562 -33.799269 0.0037071572 195.10437 -0.17405537 + 83800 -33.792534 -33.799198 0.0066641387 350.72767 -0.43621752 + 83900 -33.789331 -33.799143 0.0098123501 516.41523 -0.70396922 + 84000 -33.796442 -33.79913 0.0026886872 141.50321 -1.0248732 + 84100 -33.796658 -33.799262 0.0026039076 137.04133 -1.0212777 + 84200 -33.793407 -33.79961 0.0062027319 326.44425 -0.7904471 + 84300 -33.791302 -33.800128 0.0088262144 464.51579 -0.39513189 + 84400 -33.795638 -33.80053 0.0048925685 257.49152 -0.091931711 + 84500 -33.797078 -33.800794 0.0037165468 195.59855 0.21425911 + 84600 -33.795965 -33.801032 0.0050666977 266.65578 0.60635675 + 84700 -33.795158 -33.801228 0.0060696367 319.43957 1.04756 + 84800 -33.795434 -33.801334 0.0058995741 310.48932 1.4535308 + 84900 -33.796153 -33.801363 0.0052106007 274.22927 1.7849511 + 85000 -33.796631 -33.801361 0.0047292616 248.89682 2.0310708 + 85100 -33.795324 -33.801363 0.0060397521 317.86676 2.2260848 + 85200 -33.792946 -33.801372 0.0084266202 443.48551 2.3619946 + 85300 -33.796057 -33.801375 0.0053184178 279.90358 2.2831107 + 85400 -33.798552 -33.801417 0.0028645122 150.75672 2.1238829 + 85500 -33.797308 -33.801534 0.0042262906 222.42591 1.9324751 + 85600 -33.790345 -33.801749 0.011404281 600.19715 1.5900949 + 85700 -33.794938 -33.801863 0.0069247471 364.44326 0.91412444 + 85800 -33.797343 -33.80187 0.0045261571 238.20761 0.37665647 + 85900 -33.79719 -33.801835 0.0046442746 244.42403 -0.088911457 + 86000 -33.793116 -33.801741 0.0086248177 453.91646 -0.56578926 + 86100 -33.791205 -33.801477 0.01027216 540.61464 -1.2604327 + 86200 -33.798044 -33.801219 0.0031744322 167.06753 -1.8764584 + 86300 -33.797602 -33.801084 0.003482008 183.25497 -2.1512993 + 86400 -33.794375 -33.801028 0.00665332 350.1583 -2.3268817 + 86500 -33.793248 -33.80104 0.0077924867 410.11162 -2.4851798 + 86600 -33.796379 -33.801111 0.0047320682 249.04453 -2.6014804 + 86700 -33.798963 -33.801237 0.0022732596 119.63962 -2.5906138 + 86800 -33.800425 -33.801392 0.00096633216 50.8572 -2.4918031 + 86900 -33.799677 -33.801617 0.0019401795 102.10992 -2.259075 + 87000 -33.796684 -33.802005 0.0053204733 280.01177 -1.7300002 + 87100 -33.795355 -33.802328 0.0069736724 367.01816 -1.0508289 + 87200 -33.796597 -33.802404 0.0058065573 305.59393 -0.39583413 + 87300 -33.798532 -33.802269 0.0037364671 196.64693 0.12241803 + 87400 -33.798278 -33.802028 0.003749627 197.33952 0.57656457 + 87500 -33.792499 -33.801571 0.009072351 477.46974 1.2115074 + 87600 -33.793428 -33.80079 0.0073618524 387.44772 1.757313 + 87700 -33.796181 -33.800105 0.0039242037 206.52734 2.0383529 + 87800 -33.795665 -33.799584 0.0039189608 206.25141 2.1990822 + 87900 -33.793964 -33.799145 0.0051814251 272.69378 2.2304771 + 88000 -33.793066 -33.798808 0.0057411334 302.15073 2.0756622 + 88100 -33.792485 -33.798576 0.0060909339 320.56042 1.7468287 + 88200 -33.792635 -33.798409 0.0057739799 303.87941 1.2637356 + 88300 -33.79396 -33.798272 0.0043116682 226.91925 0.69316271 + 88400 -33.794357 -33.798156 0.0037997945 199.97979 0.13510087 + 88500 -33.791254 -33.797995 0.0067410701 354.77651 -0.47500453 + 88600 -33.788423 -33.797563 0.0091398784 481.02365 -1.346428 + 88700 -33.79313 -33.796951 0.003821705 201.13293 -2.232025 + 88800 -33.794384 -33.796525 0.0021414306 112.70158 -2.7211748 + 88900 -33.792498 -33.796205 0.0037070806 195.10035 -3.0506093 + 89000 -33.790985 -33.795919 0.0049335741 259.6496 -3.3476574 + 89100 -33.789221 -33.795728 0.0065063113 342.42136 -3.5043511 + 89200 -33.788452 -33.795634 0.0071825446 378.01092 -3.5098599 + 89300 -33.790838 -33.795651 0.0048129289 253.30015 -3.4016718 + 89400 -33.792563 -33.795806 0.0032427357 170.66229 -3.1566032 + 89500 -33.79142 -33.796115 0.0046951764 247.10295 -2.7128389 + 89600 -33.784789 -33.796575 0.011786095 620.29168 -1.8051552 + 89700 -33.790651 -33.796768 0.0061169128 321.92767 -1.0413952 + 89800 -33.792452 -33.796743 0.0042909795 225.83043 -0.42494229 + 89900 -33.791508 -33.796627 0.0051189813 269.40742 0.23556922 + 90000 -33.789115 -33.79636 0.0072446412 381.27901 1.0018378 + 90100 -33.787823 -33.795855 0.0080318331 422.70821 1.7944327 + 90200 -33.791501 -33.795293 0.0037919269 199.56573 2.3140097 + 90300 -33.792505 -33.794992 0.0024870266 130.88999 2.6051689 + 90400 -33.789445 -33.794924 0.0054795733 288.38505 2.8411909 + 90500 -33.786472 -33.795039 0.008566956 450.87125 2.9675918 + 90600 -33.789337 -33.795242 0.0059050064 310.77522 2.8265124 + 90700 -33.790882 -33.795536 0.004653396 244.90408 2.5897229 + 90800 -33.790434 -33.795954 0.0055203396 290.53055 2.269707 + 90900 -33.787104 -33.796479 0.0093755731 493.42805 1.845067 + 91000 -33.787411 -33.796962 0.009550985 502.65982 1.1409664 + 91100 -33.793272 -33.797151 0.0038787295 204.13407 0.5013339 + 91200 -33.79349 -33.797281 0.0037917175 199.55471 0.092913303 + 91300 -33.790193 -33.79742 0.0072262121 380.3091 -0.28591265 + 91400 -33.788678 -33.797451 0.0087726198 461.69515 -0.77738725 + 91500 -33.79427 -33.797358 0.0030874226 162.4883 -1.2390141 + 91600 -33.794976 -33.797367 0.002390951 125.83362 -1.3784885 + 91700 -33.793475 -33.79754 0.0040654406 213.96051 -1.3371093 + 91800 -33.790879 -33.797885 0.0070059469 368.71673 -1.1138503 + 91900 -33.791135 -33.798287 0.0071520191 376.40438 -0.79314938 + 92000 -33.794972 -33.798613 0.003640327 191.58716 -0.50619913 + 92100 -33.79669 -33.79889 0.0021998719 115.7773 -0.22246746 + 92200 -33.793729 -33.799259 0.005530231 291.05112 0.22404203 + 92300 -33.788989 -33.799805 0.010816153 569.24449 1.0444261 + 92400 -33.795085 -33.800046 0.0049617625 261.13313 1.5422962 + 92500 -33.796374 -33.80012 0.0037456509 197.13026 1.926471 + 92600 -33.794466 -33.800135 0.0056696166 298.38686 2.3141504 + 92700 -33.78961 -33.800015 0.010405107 547.61148 2.7816079 + 92800 -33.795515 -33.799705 0.004189578 220.49375 2.9363774 + 92900 -33.797275 -33.799517 0.0022411684 117.9507 2.9572731 + 93000 -33.795412 -33.799415 0.0040027425 210.66077 2.9032586 + 93100 -33.792108 -33.799325 0.0072175232 379.85181 2.685448 + 93200 -33.792471 -33.799179 0.0067077847 353.02472 2.239082 + 93300 -33.795017 -33.799021 0.0040041545 210.73508 1.7306267 + 93400 -33.79693 -33.798945 0.0020149141 106.04313 1.2975158 + 93500 -33.797338 -33.798988 0.0016496172 86.817881 0.95709703 + 93600 -33.793805 -33.799189 0.0053837599 283.34248 0.57490172 + 93700 -33.791343 -33.799493 0.0081502057 428.93805 -0.062057999 + 93800 -33.794316 -33.799702 0.0053856898 283.44405 -0.74141591 + 93900 -33.796338 -33.79986 0.0035214237 185.32939 -1.1876011 + 94000 -33.795178 -33.800081 0.0049028145 258.03075 -1.4348137 + 94100 -33.787577 -33.800467 0.012890553 678.41831 -1.5362592 + 94200 -33.794504 -33.800787 0.0062829672 330.66696 -1.8130242 + 94300 -33.796321 -33.801042 0.0047203548 248.42806 -1.8250405 + 94400 -33.795824 -33.801357 0.0055328202 291.18739 -1.6518436 + 94500 -33.794147 -33.801736 0.0075891688 399.41119 -1.3035438 + 94600 -33.79538 -33.802083 0.0067031039 352.77838 -0.88973952 + 94700 -33.799033 -33.802287 0.0032536381 171.23607 -0.57034833 + 94800 -33.798959 -33.802434 0.003474812 182.87626 -0.2080929 + 94900 -33.794147 -33.802558 0.008410904 442.65837 0.38240775 + 95000 -33.794116 -33.8025 0.0083840473 441.24493 1.027181 + 95100 -33.79695 -33.802261 0.0053117959 279.55508 1.4664728 + 95200 -33.797048 -33.801954 0.0049059833 258.19752 1.8362094 + 95300 -33.795761 -33.801592 0.005830902 306.87517 2.1522831 + 95400 -33.792627 -33.801151 0.0085241074 448.61617 2.4312645 + 95500 -33.792566 -33.800634 0.0080686264 424.64461 2.5484174 + 95600 -33.797274 -33.800309 0.0030349179 159.72502 2.4301077 + 95700 -33.797226 -33.800237 0.003010994 158.46593 2.2790118 + 95800 -33.79319 -33.800367 0.0071778552 377.76411 1.9993476 + 95900 -33.7927 -33.800614 0.0079140754 416.51073 1.4221016 + 96000 -33.795183 -33.800819 0.0056354952 296.59108 0.77745038 + 96100 -33.796094 -33.800971 0.0048770743 256.67607 0.20088692 + 96200 -33.795427 -33.801075 0.005648047 297.25168 -0.35401318 + 96300 -33.789377 -33.801072 0.011695041 615.49958 -0.92390539 + 96400 -33.793662 -33.800792 0.0071298048 375.23526 -1.7820775 + 96500 -33.797104 -33.800493 0.0033891117 178.36593 -2.2842138 + 96600 -33.796019 -33.800237 0.0042175281 221.96474 -2.5447217 + 96700 -33.792161 -33.799931 0.0077698759 408.92164 -2.688913 + 96800 -33.792477 -33.799549 0.0070724406 372.21624 -2.8148826 + 96900 -33.794525 -33.799237 0.0047129064 248.03606 -2.8314925 + 97000 -33.79433 -33.799037 0.0047069886 247.72461 -2.671116 + 97100 -33.793264 -33.798908 0.0056442203 297.05028 -2.355762 + 97200 -33.791975 -33.798796 0.0068216267 359.01613 -1.8986412 + 97300 -33.792752 -33.798644 0.0058922312 310.10287 -1.4016573 + 97400 -33.795346 -33.798487 0.0031410766 165.31206 -1.0002688 + 97500 -33.795709 -33.798389 0.0026801356 141.05314 -0.64054235 + 97600 -33.791027 -33.79829 0.0072628706 382.2384 -0.091891566 + 97700 -33.790001 -33.798003 0.0080013643 421.10467 0.5277535 + 97800 -33.793004 -33.797611 0.0046071662 242.47105 0.91954411 + 97900 -33.79347 -33.797276 0.0038064444 200.32977 1.1926669 + 98000 -33.787533 -33.796942 0.0094091496 495.19515 1.5088966 + 98100 -33.786543 -33.79638 0.0098369415 517.70945 1.6751738 + 98200 -33.790879 -33.795926 0.0050478168 265.6621 1.5835505 + 98300 -33.791296 -33.795708 0.0044120589 232.20272 1.4363419 + 98400 -33.789004 -33.795697 0.0066924289 352.21656 1.1897037 + 98500 -33.785037 -33.795816 0.010778844 567.28096 0.75575856 + 98600 -33.791896 -33.795906 0.0040098408 211.03435 0.087669687 + 98700 -33.792842 -33.796044 0.0032018743 168.51179 -0.31559731 + 98800 -33.790286 -33.796292 0.0060060588 316.09352 -0.72004519 + 98900 -33.787814 -33.79651 0.0086958316 457.65386 -1.2733303 + 99000 -33.792171 -33.796488 0.0043173687 227.21926 -1.8905299 + 99100 -33.794482 -33.796407 0.0019247042 101.29546 -2.2218974 + 99200 -33.793818 -33.79637 0.0025521542 134.3176 -2.3830165 + 99300 -33.791793 -33.796342 0.0045490991 239.41503 -2.4560196 + 99400 -33.788417 -33.796219 0.0078023683 410.63168 -2.4292646 + 99500 -33.78939 -33.795907 0.0065170934 342.98881 -2.3921625 + 99600 -33.792497 -33.795611 0.003113938 163.88378 -2.3196901 + 99700 -33.79324 -33.79552 0.0022798059 119.98415 -2.14044 + 99800 -33.788422 -33.795673 0.0072514629 381.63802 -1.6832286 + 99900 -33.787185 -33.795978 0.0087933428 462.78579 -1.038814 + 100000 -33.791619 -33.796217 0.0045979314 241.98503 -0.59031853 + 100100 -33.79246 -33.796472 0.0040120429 211.15024 -0.19406626 + 100200 -33.789998 -33.796811 0.0068124144 358.53129 0.26568476 + 100300 -33.782893 -33.797143 0.014249816 749.95508 0.92845291 + 100400 -33.792887 -33.797145 0.0042585034 224.12124 1.1235289 + 100500 -33.793382 -33.797069 0.0036867109 194.02831 1.2815937 + 100600 -33.790682 -33.796947 0.0062653839 329.74157 1.4088645 + 100700 -33.788139 -33.796642 0.0085030663 447.50879 1.434888 + 100800 -33.791912 -33.796198 0.0042859836 225.5675 1.2450558 + 100900 -33.794037 -33.795934 0.0018963318 99.802252 1.054691 + 101000 -33.792008 -33.795875 0.0038673267 203.53395 0.87123936 + 101100 -33.78744 -33.79596 0.0085202856 448.41503 0.48720279 + 101200 -33.790503 -33.796085 0.0055817703 293.76359 -0.073474003 + 101300 -33.792495 -33.796297 0.0038013309 200.06066 -0.49173677 + 101400 -33.791739 -33.796677 0.0049384154 259.9044 -0.79034002 + 101500 -33.786846 -33.797312 0.010466056 550.8192 -1.0281952 + 101600 -33.791791 -33.797974 0.0061829971 325.40562 -1.4229313 + 101700 -33.794936 -33.7984 0.0034643991 182.32824 -1.5904391 + 101800 -33.793707 -33.798883 0.0051755569 272.38494 -1.5483189 + 101900 -33.791293 -33.799464 0.0081707964 430.02173 -1.3547034 + 102000 -33.794474 -33.799943 0.0054692376 287.8411 -1.170116 + 102100 -33.797909 -33.800211 0.0023024675 121.17681 -1.0062523 + 102200 -33.79705 -33.800484 0.003433671 180.71104 -0.70021408 + 102300 -33.794638 -33.800839 0.0062009976 326.35297 -0.19773982 + 102400 -33.794318 -33.801158 0.0068402584 359.9967 0.37881654 + 102500 -33.796035 -33.801355 0.0053197097 279.97157 0.88761989 + 102600 -33.797905 -33.801472 0.0035665529 187.7045 1.2892765 + 102700 -33.799635 -33.801572 0.0019374973 101.96876 1.5480235 + 102800 -33.798821 -33.801718 0.0028969481 152.4638 1.7590082 + 102900 -33.794133 -33.801966 0.0078325356 412.21936 2.0534611 + 103000 -33.794925 -33.80215 0.0072253605 380.26428 2.1959119 + 103100 -33.797941 -33.802189 0.0042487115 223.6059 2.1814378 + 103200 -33.798369 -33.802167 0.0037984816 199.9107 2.1196191 + 103300 -33.791192 -33.802072 0.010880186 572.61446 2.0788904 + 103400 -33.792881 -33.801709 0.0088276267 464.59012 1.6936897 + 103500 -33.797008 -33.801317 0.0043088338 226.77008 1.3079443 + 103600 -33.796764 -33.800984 0.0042192961 222.05779 1.0103797 + 103700 -33.793472 -33.800644 0.0071729393 377.5054 0.69262043 + 103800 -33.791272 -33.800238 0.0089652031 471.83064 0.24203626 + 103900 -33.7974 -33.799953 0.0025532082 134.37307 -0.24774567 + 104000 -33.797607 -33.799924 0.0023171981 121.95207 -0.4310743 + 104100 -33.794631 -33.800094 0.0054634894 287.53857 -0.51009199 + 104200 -33.792455 -33.800397 0.0079427721 418.02101 -0.56969195 + 104300 -33.794936 -33.800642 0.0057054649 300.27353 -0.64721002 + 104400 -33.796986 -33.800799 0.0038126325 200.65545 -0.6446012 + 104500 -33.797096 -33.80093 0.003834035 201.78184 -0.54240754 + 104600 -33.792374 -33.801062 0.0086876038 457.22084 -0.24873894 + 104700 -33.792982 -33.801084 0.0081024439 426.42439 0.039438329 + 104800 -33.79734 -33.801018 0.0036775097 193.54406 0.19702541 + 104900 -33.797373 -33.801 0.0036263512 190.85163 0.40062557 + 105000 -33.793271 -33.801053 0.0077820265 409.56111 0.72908121 + 105100 -33.792337 -33.801126 0.0087889619 462.55523 1.0510522 + 105200 -33.795315 -33.801179 0.0058640165 308.61796 1.2131756 + 105300 -33.795806 -33.801259 0.0054531189 286.99279 1.3421991 + 105400 -33.795758 -33.801366 0.0056078807 295.13776 1.4089956 + 105500 -33.795379 -33.801466 0.0060868273 320.34429 1.4055686 + 105600 -33.795531 -33.801508 0.0059774716 314.589 1.3120614 + 105700 -33.796785 -33.801458 0.0046727945 245.925 1.1305447 + 105800 -33.797221 -33.801329 0.0041080602 216.20355 0.9154404 + 105900 -33.79444 -33.801083 0.0066433773 349.63502 0.67712008 + 106000 -33.791055 -33.800531 0.0094758762 498.70691 0.29175395 + 106100 -33.795967 -33.799826 0.0038585189 203.07041 -0.23800021 + 106200 -33.797245 -33.799336 0.0020906752 110.03037 -0.5511415 + 106300 -33.796008 -33.798918 0.0029095824 153.12873 -0.81107611 + 106400 -33.794255 -33.798519 0.0042642109 224.42162 -1.1027194 + 106500 -33.791189 -33.798159 0.0069702794 366.83959 -1.4057514 + 106600 -33.790428 -33.797866 0.0074382044 391.46606 -1.7478213 + 106700 -33.793858 -33.797734 0.0038759754 203.98913 -2.0449124 + 106800 -33.795536 -33.797794 0.002258501 118.86289 -2.1478939 + 106900 -33.792939 -33.798045 0.0051061729 268.73333 -2.0461008 + 107000 -33.787762 -33.798515 0.010753603 565.95255 -1.7281088 + 107100 -33.793383 -33.798784 0.0054001043 284.20267 -1.5791087 + 107200 -33.794926 -33.798892 0.0039659528 208.72456 -1.3657407 + 107300 -33.79356 -33.79893 0.0053700791 282.62247 -1.0500407 + 107400 -33.787872 -33.798822 0.010950192 576.29885 -0.52168732 + 107500 -33.792794 -33.798435 0.005640954 296.87838 -0.14973097 + 107600 -33.795728 -33.798138 0.002410148 126.84394 0.047156617 + 107700 -33.794099 -33.797906 0.0038069292 200.35529 0.28781521 + 107800 -33.790549 -33.797621 0.0070715685 372.17034 0.59134693 + 107900 -33.790556 -33.797261 0.0067055318 352.90616 0.79009867 + 108000 -33.792581 -33.796931 0.0043507119 228.97409 0.84770082 + 108100 -33.794201 -33.796715 0.002514467 132.33416 0.81069489 + 108200 -33.79433 -33.796626 0.0022961268 120.8431 0.71637498 + 108300 -33.79013 -33.796586 0.0064569003 339.8209 0.56407921 + 108400 -33.788129 -33.796366 0.0082375527 433.53505 0.17240129 + 108500 -33.791331 -33.795923 0.0045921893 241.68282 -0.33574503 + 108600 -33.792364 -33.795453 0.0030885861 162.54953 -0.73623177 + 108700 -33.787641 -33.794845 0.0072038585 379.13265 -1.0949512 + 108800 -33.784877 -33.793596 0.0087193045 458.88922 -1.7625343 + 108900 -33.7884 -33.792329 0.0039285399 206.75555 -2.415267 + 109000 -33.78851 -33.791403 0.0028924191 152.22544 -2.8193141 + 109100 -33.784447 -33.790575 0.0061284411 322.53439 -3.124866 + 109200 -33.783458 -33.789878 0.0064197978 337.86823 -3.4667718 + 109300 -33.78432 -33.78972 0.0054000577 284.20022 -3.6573702 + 109400 -33.784793 -33.790203 0.005410071 284.72721 -3.6246223 + 109500 -33.785047 -33.791271 0.006224064 327.56693 -3.3766288 + 109600 -33.787154 -33.792654 0.0055002396 289.4727 -3.0015491 + 109700 -33.789709 -33.793961 0.0042524506 223.80268 -2.5796115 + 109800 -33.790621 -33.795169 0.0045481664 239.36594 -2.0827106 + 109900 -33.790209 -33.79635 0.0061404791 323.16794 -1.4691813 + 110000 -33.790144 -33.797421 0.0072767692 382.96987 -0.75933357 + 110100 -33.793552 -33.798121 0.0045686553 240.44425 -0.18094277 + 110200 -33.795107 -33.798511 0.003403846 179.14138 0.27452397 + 110300 -33.793183 -33.79881 0.0056273255 296.16112 0.77257543 + 110400 -33.78741 -33.799046 0.011635189 612.34963 1.5047992 + 110500 -33.793556 -33.79903 0.0054744388 288.11483 1.9099572 + 110600 -33.79455 -33.798983 0.0044324449 233.27562 2.185501 + 110700 -33.79333 -33.799007 0.0056768358 298.76681 2.3898793 + 110800 -33.79141 -33.799114 0.0077036429 405.43586 2.4999059 + 110900 -33.793663 -33.799258 0.005595433 294.48265 2.4050569 + 111000 -33.796833 -33.799418 0.0025846812 136.02947 2.2088333 + 111100 -33.796018 -33.799664 0.0036463092 191.902 1.9992796 + 111200 -33.791155 -33.800033 0.0088779748 467.23989 1.657599 + 111300 -33.792561 -33.800256 0.0076954477 405.00455 1.0396532 + 111400 -33.79485 -33.800221 0.0053705145 282.64539 0.45926218 + 111500 -33.795525 -33.800035 0.0045093024 237.32057 -0.029579987 + 111600 -33.793693 -33.799727 0.0060336847 317.54744 -0.46354603 + 111700 -33.787251 -33.799122 0.011871067 624.76369 -0.93765601 + 111800 -33.793648 -33.798344 0.0046957596 247.13364 -1.5949591 + 111900 -33.795086 -33.797943 0.0028572847 150.37635 -1.8628331 + 112000 -33.793425 -33.797839 0.0044138531 232.29715 -1.9211951 + 112100 -33.790598 -33.798074 0.0074765115 393.48213 -1.8042068 + 112200 -33.791675 -33.79861 0.0069351096 364.98863 -1.6068843 + 112300 -33.795259 -33.799226 0.0039677539 208.81935 -1.386498 + 112400 -33.797541 -33.799806 0.0022652317 119.21712 -1.1349446 + 112500 -33.799134 -33.80029 0.0011558002 60.828735 -0.90645822 + 112600 -33.798542 -33.800793 0.0022505531 118.4446 -0.61492215 + 112700 -33.794675 -33.801571 0.0068953607 362.89669 -0.038367986 + 112800 -33.795221 -33.802249 0.0070274046 369.84603 0.57341495 + 112900 -33.797972 -33.802552 0.0045798936 241.03571 1.0370222 + 113000 -33.798967 -33.802622 0.0036544816 192.33211 1.4006057 + 113100 -33.795805 -33.802555 0.0067501583 355.25481 1.8060749 + 113200 -33.791669 -33.802199 0.010530089 554.18919 2.2998824 + 113300 -33.796896 -33.801687 0.004790661 252.12822 2.467326 + 113400 -33.79736 -33.801293 0.0039325198 206.96501 2.5573555 + 113500 -33.795781 -33.800988 0.0052073078 274.05597 2.5587848 + 113600 -33.793721 -33.800751 0.0070294915 369.95587 2.423884 + 113700 -33.794396 -33.800583 0.0061866285 325.59674 2.1056977 + 113800 -33.798516 -33.800531 0.0020153204 106.06451 1.7162321 + 113900 -33.798613 -33.800638 0.0020248804 106.56765 1.4413455 + 114000 -33.79554 -33.800909 0.0053685243 282.54064 1.0703549 + 114100 -33.793671 -33.801168 0.007496711 394.54522 0.46819681 + 114200 -33.795597 -33.801166 0.0055689964 293.09131 -0.2064851 + 114300 -33.797336 -33.800975 0.003638434 191.48754 -0.74507381 + 114400 -33.797039 -33.800711 0.0036724704 193.27884 -1.1401555 + 114500 -33.791477 -33.800252 0.0087744874 461.79344 -1.4889718 + 114600 -33.792351 -33.799468 0.0071165796 374.53924 -1.9888398 + 114700 -33.795562 -33.798849 0.0032871971 173.00225 -2.3197039 + 114800 -33.795149 -33.798592 0.0034429767 181.20079 -2.3847729 + 114900 -33.788166 -33.798679 0.010513147 553.29754 -2.1336761 + 115000 -33.791569 -33.799026 0.0074576486 392.48939 -1.9179599 + 115100 -33.794702 -33.799502 0.0048004895 252.64548 -1.6529348 + 115200 -33.795164 -33.80012 0.0049551976 260.78763 -1.2836202 + 115300 -33.794067 -33.800856 0.0067890225 357.3002 -0.79795334 + 115400 -33.793692 -33.801565 0.0078734396 414.3721 -0.24365765 + 115500 -33.797774 -33.801972 0.0041985048 220.96356 0.13488396 + 115600 -33.798785 -33.802156 0.0033708689 177.40583 0.43280602 + 115700 -33.796024 -33.802221 0.0061969941 326.14227 0.77942646 + 115800 -33.791679 -33.80199 0.010311244 542.67158 1.2078058 + 115900 -33.796844 -33.801434 0.004590686 241.60371 1.3445472 + 116000 -33.797639 -33.800899 0.003260635 171.60431 1.41438 + 116100 -33.796163 -33.80031 0.0041469771 218.25171 1.4221108 + 116200 -33.792806 -33.79952 0.0067135315 353.32717 1.333987 + 116300 -33.791581 -33.798493 0.0069112928 363.73518 1.0571432 + 116400 -33.793127 -33.797516 0.0043893011 231.005 0.65391294 + 116500 -33.794449 -33.796872 0.0024235002 127.54665 0.26207266 + 116600 -33.79269 -33.796552 0.0038622535 203.26695 -0.11469299 + 116700 -33.788058 -33.796373 0.0083148428 437.60276 -0.6862712 + 116800 -33.78965 -33.796234 0.006584116 346.51615 -1.4486037 + 116900 -33.792402 -33.796212 0.0038107136 200.55446 -2.0247589 + 117000 -33.792369 -33.796388 0.0040188002 211.50587 -2.3737247 + 117100 -33.784053 -33.796803 0.012749635 671.00192 -2.5358106 + 117200 -33.789432 -33.797109 0.0076770585 404.03674 -2.9317994 + 117300 -33.792691 -33.797234 0.0045430666 239.09754 -3.0797041 + 117400 -33.792427 -33.797422 0.0049944752 262.85477 -3.0084049 + 117500 -33.790121 -33.79769 0.0075690307 398.35133 -2.7401962 + 117600 -33.789615 -33.797928 0.0083132685 437.5199 -2.3440596 + 117700 -33.794771 -33.798046 0.0032744797 172.33295 -2.0642944 + 117800 -33.795161 -33.79822 0.003059409 161.01397 -1.7252303 + 117900 -33.791679 -33.798537 0.006857706 360.91495 -1.1694254 + 118000 -33.790459 -33.798826 0.0083668768 440.34126 -0.47195726 + 118100 -33.792959 -33.798878 0.0059190686 311.5153 0.075452697 + 118200 -33.793764 -33.798802 0.0050386966 265.18211 0.53812359 + 118300 -33.793249 -33.798662 0.0054124951 284.85479 0.94581086 + 118400 -33.789623 -33.798425 0.008801795 463.23062 1.3680767 + 118500 -33.788016 -33.797907 0.0098914055 520.57585 1.720597 + 118600 -33.794056 -33.797416 0.0033601689 176.84269 1.7323423 + 118700 -33.793813 -33.797187 0.0033736368 177.55149 1.701227 + 118800 -33.790527 -33.797106 0.0065796248 346.27978 1.5576383 + 118900 -33.789411 -33.797034 0.0076233943 401.21244 1.1764926 + 119000 -33.791187 -33.796906 0.0057186999 300.97007 0.66417345 + 119100 -33.791575 -33.796763 0.0051879795 273.03874 0.14800238 + 119200 -33.791107 -33.796597 0.0054901943 288.94403 -0.40339499 + 119300 -33.790301 -33.796363 0.006061555 319.01424 -0.99855595 + 119400 -33.787944 -33.796 0.0080564755 424.00512 -1.6118651 + 119500 -33.787147 -33.795374 0.0082272003 432.99021 -2.3235339 + 119600 -33.791216 -33.794777 0.0035607491 187.39905 -2.9210309 + 119700 -33.791626 -33.79453 0.0029034681 152.80693 -3.1974479 + 119800 -33.78734 -33.794632 0.007292772 383.81209 -3.245177 + 119900 -33.786679 -33.794988 0.0083086382 437.27622 -3.2187178 + 120000 -33.78986 -33.795439 0.005579401 293.6389 -3.1091533 + 120100 -33.79099 -33.796066 0.0050757751 267.13351 -2.8250795 + 120200 -33.790919 -33.796926 0.0060069461 316.14021 -2.3753301 + 120300 -33.792081 -33.797916 0.0058342947 307.05373 -1.8357186 + 120400 -33.794859 -33.798768 0.0039088423 205.71889 -1.3641748 + 120500 -33.795244 -33.799526 0.0042817817 225.34635 -0.88576551 + 120600 -33.792819 -33.800312 0.007493307 394.36606 -0.27773496 + 120700 -33.792351 -33.800959 0.0086081779 453.04072 0.39213956 + 120800 -33.797886 -33.801179 0.0032935712 173.33771 0.75064696 + 120900 -33.798044 -33.801232 0.0031886832 167.81755 1.0303299 + 121000 -33.795449 -33.801195 0.0057461216 302.41325 1.3304477 + 121100 -33.794106 -33.800953 0.0068472039 360.36224 1.5709589 + 121200 -33.795006 -33.800535 0.0055293158 291.00296 1.6661926 + 121300 -33.795229 -33.800085 0.0048566565 255.6015 1.6651742 + 121400 -33.793362 -33.799665 0.0063023672 331.68796 1.5972746 + 121500 -33.784113 -33.799126 0.015012139 790.07548 1.5030198 + 121600 -33.793179 -33.798572 0.0053930217 283.82992 0.98501593 + 121700 -33.794214 -33.798412 0.0041979767 220.93577 0.69124908 + 121800 -33.792444 -33.798584 0.0061405944 323.17401 0.41527713 + 121900 -33.790337 -33.799033 0.0086961255 457.66933 0.077946345 + 122000 -33.795228 -33.799502 0.0042737924 224.92588 -0.34532072 + 122100 -33.796864 -33.799897 0.0030330461 159.62651 -0.55217608 + 122200 -33.795129 -33.800399 0.0052705258 277.38307 -0.63441729 + 122300 -33.793252 -33.80093 0.0076777948 404.07549 -0.67589514 + 122400 -33.794881 -33.801215 0.0063348235 333.39611 -0.72755483 + 122500 -33.795807 -33.801254 0.0054463172 286.63482 -0.70093032 + 122600 -33.795864 -33.801132 0.0052682384 277.26269 -0.5916321 + 122700 -33.794943 -33.800896 0.0059531111 313.30693 -0.39140893 + 122800 -33.790863 -33.800523 0.0096602842 508.41214 -0.028284792 + 122900 -33.792386 -33.799964 0.0075786491 398.85754 0.32157256 + 123000 -33.796686 -33.799639 0.0029531167 155.4199 0.52276547 + 123100 -33.796007 -33.799663 0.0036560349 192.41386 0.78921788 + 123200 -33.79241 -33.800029 0.0076188177 400.97158 1.1860851 + 123300 -33.792927 -33.80057 0.0076429416 402.2412 1.5237504 + 123400 -33.79503 -33.801045 0.0060157231 316.60214 1.734331 + 123500 -33.796146 -33.801424 0.005277865 277.76933 1.8616462 + 123600 -33.796527 -33.801693 0.0051658264 271.87284 1.9103339 + 123700 -33.796374 -33.801815 0.0054409592 286.35283 1.8791774 + 123800 -33.795406 -33.801731 0.0063256314 332.91234 1.7691405 + 123900 -33.79514 -33.801371 0.0062317527 327.97158 1.5496063 + 124000 -33.796043 -33.800789 0.0047458713 249.77097 1.2441118 + 124100 -33.795761 -33.800108 0.0043467069 228.76331 0.91901336 + 124200 -33.791382 -33.799194 0.0078117883 411.12745 0.54441001 + 124300 -33.790224 -33.797894 0.0076693288 403.62993 -0.058781543 + 124400 -33.793512 -33.796848 0.0033356901 175.55439 -0.642775 + 124500 -33.794956 -33.796453 0.0014978041 78.828094 -0.98684857 + 124600 -33.794236 -33.796678 0.0024411676 128.47648 -1.1504417 + 124700 -33.788892 -33.797695 0.0088021309 463.2483 -1.1822383 + 124800 -33.791174 -33.799043 0.0078694879 414.16413 -1.2891769 + 124900 -33.795349 -33.799974 0.0046249139 243.40509 -1.3333469 + 125000 -33.795759 -33.800687 0.004927977 259.35503 -1.2203185 + 125100 -33.79472 -33.80127 0.0065504261 344.74308 -0.98953203 + 125200 -33.793714 -33.8016 0.0078857554 415.02027 -0.67046942 + 125300 -33.79698 -33.801568 0.0045879115 241.45769 -0.41925741 + 125400 -33.798449 -33.801371 0.0029221486 153.79007 -0.18317167 + 125500 -33.79627 -33.801085 0.0048155625 253.43876 0.1572863 + 125600 -33.792274 -33.800521 0.0082471622 434.04079 0.68269697 + 125700 -33.794061 -33.799778 0.0057168861 300.87462 1.0950361 + 125800 -33.795057 -33.799172 0.0041152038 216.57951 1.4171642 + 125900 -33.792274 -33.798741 0.0064666816 340.33568 1.7578631 + 126000 -33.785107 -33.798262 0.013154854 692.32823 2.2436669 + 126100 -33.791925 -33.797899 0.005974876 314.45239 2.3171824 + 126200 -33.793186 -33.797821 0.004635626 243.96886 2.3298669 + 126300 -33.792378 -33.797962 0.0055841466 293.88865 2.2430662 + 126400 -33.789695 -33.798216 0.0085215822 448.48327 2.0284842 + 126500 -33.791928 -33.798352 0.0064239993 338.08936 1.5725133 + 126600 -33.795404 -33.798336 0.0029319167 154.30416 1.1313636 + 126700 -33.794653 -33.7983 0.0036476304 191.97153 0.74241768 + 126800 -33.790378 -33.798129 0.0077517562 407.96802 0.19637376 + 126900 -33.79067 -33.797588 0.0069180578 364.09121 -0.61569429 + 127000 -33.792073 -33.796849 0.0047757207 251.34192 -1.3675179 + 127100 -33.791691 -33.796086 0.004395493 231.33087 -2.0077422 + 127200 -33.787382 -33.795227 0.0078443184 412.83948 -2.6260884 + 127300 -33.784549 -33.794049 0.0095002611 499.99027 -3.4300996 + 127400 -33.790732 -33.793263 0.0025318064 133.24671 -4.0994168 + 127500 -33.791125 -33.793311 0.0021868819 115.09364 -4.2522636 + 127600 -33.788374 -33.794128 0.0057533906 302.79582 -4.095038 + 127700 -33.785715 -33.795649 0.0099341527 522.8256 -3.6562368 + 127800 -33.791542 -33.796954 0.0054119327 284.82519 -3.2858952 + 127900 -33.793066 -33.797863 0.0047965623 252.43879 -2.8442137 + 128000 -33.792649 -33.79865 0.0060001329 315.78164 -2.2693301 + 128100 -33.792998 -33.799221 0.0062228845 327.50486 -1.6195976 + 128200 -33.796416 -33.799459 0.003043189 160.16032 -1.1077268 + 128300 -33.797144 -33.799523 0.0023796018 125.23632 -0.69168386 + 128400 -33.793884 -33.799514 0.005629935 296.29846 -0.11757905 + 128500 -33.791643 -33.799267 0.0076240449 401.24668 0.63170958 + 128600 -33.793578 -33.798806 0.0052275684 275.12226 1.2161601 + 128700 -33.794424 -33.798371 0.0039468346 207.71839 1.6479609 + 128800 -33.790004 -33.798009 0.0080048659 421.28895 2.1005643 + 128900 -33.787395 -33.797562 0.010167067 535.08367 2.5359828 + 129000 -33.792643 -33.797311 0.0046683701 245.69216 2.6054759 + 129100 -33.792851 -33.797395 0.0045441557 239.15486 2.5788984 + 129200 -33.791078 -33.797794 0.0067161047 353.4626 2.4116447 + 129300 -33.79059 -33.798404 0.007813689 411.22748 2.0319632 + 129400 -33.79566 -33.798907 0.0032467408 170.87307 1.5218465 + 129500 -33.795986 -33.799329 0.0033428328 175.93031 1.1339682 + 129600 -33.792541 -33.799832 0.0072902686 383.68033 0.66142023 + 129700 -33.791348 -33.800223 0.008875581 467.11391 -0.081617273 + 129800 -33.797064 -33.800261 0.0031968424 168.24696 -0.80638214 + 129900 -33.797407 -33.800205 0.0027981291 147.26304 -1.2162739 + 130000 -33.795578 -33.800113 0.0045357215 238.71098 -1.5837903 + 130100 -33.792552 -33.799914 0.0073625576 387.48484 -1.9768102 + 130200 -33.79302 -33.79958 0.00656015 345.25484 -2.3940902 + 130300 -33.796154 -33.799318 0.0031636987 166.50264 -2.6789667 + 130400 -33.797731 -33.799321 0.0015894924 83.653565 -2.7296989 + 130500 -33.795975 -33.799646 0.0036710683 193.20505 -2.5313733 + 130600 -33.791285 -33.800454 0.0091684443 482.52704 -1.9561847 + 130700 -33.794975 -33.801224 0.0062492442 328.89215 -1.4253686 + 130800 -33.797619 -33.801718 0.0040991248 215.73328 -0.96453722 + 130900 -33.797322 -33.80209 0.0047682178 250.94705 -0.45339523 + 131000 -33.79201 -33.802365 0.010354879 544.96806 0.28975741 + 131100 -33.79296 -33.80229 0.0093303964 491.05044 1.1054338 + 131200 -33.79854 -33.801989 0.0034482308 181.47731 1.4909474 + 131300 -33.797681 -33.801662 0.0039806665 209.49893 1.8533786 + 131400 -33.79404 -33.8012 0.0071605892 376.85542 2.2572649 + 131500 -33.793272 -33.800559 0.0072862977 383.47135 2.5579065 + 131600 -33.796192 -33.799999 0.0038062181 200.31786 2.6338837 + 131700 -33.798461 -33.799756 0.0012944175 68.124037 2.5705848 + 131800 -33.798344 -33.799814 0.0014699646 77.362923 2.4363197 + 131900 -33.794057 -33.800211 0.0061549192 323.92791 2.1300116 + 132000 -33.79319 -33.80075 0.0075599006 397.87083 1.5037345 + 132100 -33.796119 -33.801094 0.0049753192 261.84661 0.80710845 + 132200 -33.797649 -33.801266 0.003616579 190.33733 0.25532808 + 132300 -33.796115 -33.801361 0.0052461722 276.10136 -0.21698099 + 132400 -33.789868 -33.801299 0.011430714 601.58831 -0.77946255 + 132500 -33.795423 -33.800938 0.0055152569 290.26305 -1.5364294 + 132600 -33.796957 -33.800623 0.0036664112 192.95995 -1.926041 + 132700 -33.795706 -33.800408 0.0047017585 247.44936 -2.1160177 + 132800 -33.793032 -33.800292 0.0072594883 382.06039 -2.1463475 + 132900 -33.793281 -33.800274 0.0069934567 368.05939 -2.0713096 + 133000 -33.797769 -33.800376 0.002607315 137.22066 -1.9598224 + 133100 -33.798349 -33.80064 0.0022908641 120.56613 -1.704032 + 133200 -33.795988 -33.801152 0.0051632991 271.73983 -1.1873351 + 133300 -33.794533 -33.801765 0.0072312388 380.57365 -0.4496494 + 133400 -33.796151 -33.802135 0.0059847473 314.97191 0.26085047 + 133500 -33.797971 -33.80222 0.0042493158 223.6377 0.85583406 + 133600 -33.798483 -33.802122 0.0036388578 191.50984 1.3688287 + 133700 -33.795046 -33.801834 0.0067870962 357.19882 1.9638632 + 133800 -33.79222 -33.801108 0.0088878849 467.76145 2.6573075 + 133900 -33.796145 -33.800205 0.0040591469 213.62928 3.0454704 + 134000 -33.7971 -33.799542 0.0024419618 128.51827 3.2433261 + 134100 -33.79279 -33.798938 0.0061474355 323.53405 3.3928922 + 134200 -33.790977 -33.798167 0.0071895751 378.38093 3.3314278 + 134300 -33.79272 -33.797576 0.0048557298 255.55273 3.0483659 + 134400 -33.793172 -33.79729 0.0041181176 216.73286 2.6754443 + 134500 -33.789702 -33.797246 0.0075441869 397.04382 2.1906909 + 134600 -33.786949 -33.797238 0.010289254 541.51427 1.3661716 + 134700 -33.793306 -33.797141 0.0038351333 201.83965 0.50136976 + 134800 -33.79328 -33.797137 0.0038570477 202.99298 -0.058727835 + 134900 -33.791072 -33.797191 0.0061192888 322.05271 -0.63284295 + 135000 -33.789529 -33.797153 0.0076245978 401.27578 -1.2929587 + 135100 -33.793042 -33.79697 0.003927384 206.69472 -1.9283134 + 135200 -33.795208 -33.796902 0.0016934887 89.1268 -2.2296166 + 135300 -33.793933 -33.79706 0.0031265272 164.54634 -2.297477 + 135400 -33.791412 -33.797459 0.0060476578 318.28283 -2.210574 + 135500 -33.791123 -33.797927 0.0068039429 358.08544 -2.0255604 + 135600 -33.793161 -33.79833 0.0051690456 272.04226 -1.7880288 + 135700 -33.795353 -33.798679 0.0033257035 175.02881 -1.5194539 + 135800 -33.796198 -33.799046 0.0028481774 149.89704 -1.2101404 + 135900 -33.793028 -33.799542 0.0065143869 342.84637 -0.72140553 + 136000 -33.790012 -33.800133 0.010120701 532.64344 -0.0038120423 + 136100 -33.795562 -33.800404 0.0048416973 254.81421 0.43971275 + 136200 -33.796364 -33.800505 0.0041408825 217.93095 0.80239262 + 136300 -33.795034 -33.800538 0.0055036003 289.64958 1.1584789 + 136400 -33.793605 -33.800443 0.0068380438 359.88014 1.4779092 + 136500 -33.794804 -33.800188 0.0053834766 283.32757 1.6521562 + 136600 -33.798104 -33.799956 0.0018514416 97.439722 1.6399745 + 136700 -33.797696 -33.799858 0.0021619424 113.7811 1.5772741 + 136800 -33.794053 -33.799812 0.0057586772 303.07405 1.4007383 + 136900 -33.792391 -33.799672 0.0072800353 383.14177 0.98607267 + 137000 -33.794155 -33.799391 0.0052358728 275.55931 0.43976755 + 137100 -33.795891 -33.799101 0.0032097452 168.92603 -0.056491669 + 137200 -33.795431 -33.798871 0.0034401534 181.0522 -0.47840335 + 137300 -33.78982 -33.798562 0.0087420234 460.0849 -0.97849875 + 137400 -33.79093 -33.798008 0.0070777243 372.49432 -1.728313 + 137500 -33.79394 -33.797516 0.0035753406 188.16699 -2.2923322 + 137600 -33.793507 -33.797231 0.003723308 195.95438 -2.6062395 + 137700 -33.78525 -33.797032 0.011782412 620.09785 -2.7417834 + 137800 -33.789314 -33.796777 0.0074624162 392.74031 -3.0413074 + 137900 -33.79224 -33.79669 0.0044494395 234.17003 -3.122182 + 138000 -33.792156 -33.796857 0.0047005306 247.38473 -2.9808472 + 138100 -33.788755 -33.797291 0.0085362458 449.255 -2.5853895 + 138200 -33.788174 -33.797865 0.0096901622 509.98459 -2.027966 + 138300 -33.794654 -33.798235 0.0035808776 188.45839 -1.7044178 + 138400 -33.794415 -33.798611 0.0041955916 220.81024 -1.2934383 + 138500 -33.791388 -33.799095 0.0077068928 405.60689 -0.71067933 + 138600 -33.79176 -33.799508 0.0077486787 407.80605 -0.097968873 + 138700 -33.79711 -33.799679 0.002568918 135.19986 0.21123676 + 138800 -33.796847 -33.799823 0.0029756394 156.60525 0.47120189 + 138900 -33.794167 -33.800012 0.0058450297 307.6187 0.76819967 + 139000 -33.792931 -33.80013 0.0071992379 378.88947 1.01062 + 139100 -33.794582 -33.800095 0.0055123595 290.11057 1.1004361 + 139200 -33.795977 -33.799999 0.0040212313 211.63381 1.0886076 + 139300 -33.796713 -33.799936 0.0032229188 169.61934 0.99966017 + 139400 -33.794486 -33.799949 0.0054637038 287.54986 0.86929178 + 139500 -33.790687 -33.799984 0.009296722 489.27818 0.61088069 + 139600 -33.794528 -33.799952 0.0054235228 285.43517 0.15094099 + 139700 -33.796667 -33.799963 0.0032955507 173.44189 -0.19052538 + 139800 -33.795237 -33.800086 0.0048490128 255.19922 -0.45543841 + 139900 -33.787951 -33.800301 0.012350231 649.98166 -0.71990026 + 140000 -33.795905 -33.800362 0.0044572656 234.58191 -1.3030416 + 140100 -33.797496 -33.800378 0.0028825836 151.7078 -1.5191996 + 140200 -33.794826 -33.800459 0.0056324928 296.43307 -1.5844055 + 140300 -33.791539 -33.800507 0.0089674278 471.94773 -1.5892072 + 140400 -33.79525 -33.800409 0.0051591834 271.52322 -1.6528953 + 140500 -33.797305 -33.800326 0.0030209831 158.99165 -1.6085719 + 140600 -33.795292 -33.800345 0.005052932 265.9313 -1.388052 + 140700 -33.788712 -33.800424 0.011712219 616.40366 -0.85423001 + 140800 -33.794121 -33.800426 0.0063045725 331.80403 -0.51873301 + 140900 -33.796241 -33.800482 0.0042412338 223.21235 -0.19785549 + 141000 -33.795691 -33.800673 0.0049825394 262.2266 0.1651208 + 141100 -33.791058 -33.801025 0.0099665527 524.53078 0.68319616 + 141200 -33.793877 -33.801383 0.0075059061 395.02914 1.103634 + 141300 -33.798313 -33.801581 0.0032685986 172.02343 1.2724666 + 141400 -33.797252 -33.8018 0.0045485208 239.38459 1.4452223 + 141500 -33.793909 -33.802027 0.0081182373 427.25559 1.6099545 + 141600 -33.795477 -33.802067 0.0065895209 346.80061 1.6012367 + 141700 -33.799836 -33.801955 0.0021192867 111.53617 1.4637136 + 141800 -33.799516 -33.801842 0.0023256658 122.39772 1.353545 + 141900 -33.7975 -33.801657 0.0041572977 218.79487 1.1610878 + 142000 -33.794957 -33.801271 0.0063139878 332.29955 0.83280982 + 142100 -33.794033 -33.800599 0.006565874 345.55609 0.36712595 + 142200 -33.795051 -33.79977 0.0047188703 248.34994 -0.13770203 + 142300 -33.795955 -33.799029 0.0030739866 161.78117 -0.55924013 + 142400 -33.79355 -33.798377 0.0048265694 254.01804 -0.8877722 + 142500 -33.789376 -33.797578 0.0082023185 431.68071 -1.2705051 + 142600 -33.790907 -33.796822 0.0059149059 311.29622 -1.7002216 + 142700 -33.793087 -33.796421 0.0033338695 175.45858 -1.9398147 + 142800 -33.793216 -33.7964 0.0031847397 167.61001 -1.9528215 + 142900 -33.787697 -33.796719 0.0090217903 474.80878 -1.6514122 + 143000 -33.788723 -33.797093 0.0083693408 440.47094 -1.2627718 + 143100 -33.793088 -33.797254 0.0041651693 219.20914 -0.94659551 + 143200 -33.793033 -33.797386 0.0043533552 229.1132 -0.511029 + 143300 -33.790829 -33.797497 0.0066686887 350.96714 0.11049676 + 143400 -33.788585 -33.797442 0.0088573464 466.15424 0.90635497 + 143500 -33.792543 -33.79717 0.0046275548 243.54408 1.55307 + 143600 -33.794429 -33.796998 0.0025696474 135.23825 1.9878355 + 143700 -33.792514 -33.797026 0.0045120628 237.46584 2.4383426 + 143800 -33.788516 -33.797236 0.0087205382 458.95415 3.0202247 + 143900 -33.791112 -33.797481 0.006369773 335.23547 3.3876836 + 144000 -33.793349 -33.797766 0.004417006 232.46309 3.5465091 + 144100 -33.793048 -33.798185 0.0051373071 270.37189 3.5834936 + 144200 -33.792309 -33.798725 0.0064161515 337.67633 3.4675035 + 144300 -33.792818 -33.799232 0.0064142418 337.57582 3.1764871 + 144400 -33.794241 -33.799585 0.0053436955 281.23393 2.761602 + 144500 -33.795467 -33.799768 0.0043009959 226.35758 2.2943365 + 144600 -33.795378 -33.799814 0.0044356144 233.44243 1.8017186 + 144700 -33.791305 -33.799673 0.0083683379 440.41816 1.2192347 + 144800 -33.791191 -33.799116 0.0079248287 417.07667 0.35611042 + 144900 -33.795434 -33.798464 0.0030297018 159.4505 -0.37914907 + 145000 -33.795432 -33.798006 0.0025737967 135.45663 -0.82318187 + 145100 -33.79203 -33.797594 0.0055641041 292.83384 -1.226141 + 145200 -33.791129 -33.797203 0.0060745175 319.69644 -1.6820102 + 145300 -33.791285 -33.796971 0.0056853722 299.21607 -2.0099609 + 145400 -33.791506 -33.796948 0.0054424098 286.42917 -2.158487 + 145500 -33.791442 -33.797125 0.0056827225 299.07662 -2.1211668 + 145600 -33.791447 -33.79744 0.0059923876 315.37401 -1.916443 + 145700 -33.792509 -33.797795 0.005285595 278.17615 -1.6002976 + 145800 -33.793858 -33.798122 0.0042635222 224.38537 -1.2212363 + 145900 -33.793814 -33.798427 0.0046133292 242.7954 -0.76061947 + 146000 -33.790402 -33.798711 0.0083096719 437.33062 -0.096015523 + 146100 -33.790525 -33.7988 0.0082750772 435.50993 0.65047136 + 146200 -33.795588 -33.7987 0.0031116692 163.76438 1.0812604 + 146300 -33.795499 -33.798655 0.0031559116 166.09281 1.4387793 + 146400 -33.79324 -33.798688 0.0054484349 286.74627 1.8259973 + 146500 -33.792244 -33.798755 0.0065117629 342.70827 2.1518559 + 146600 -33.792993 -33.798836 0.0058427452 307.49847 2.322045 + 146700 -33.794074 -33.798961 0.0048869175 257.19411 2.3391733 + 146800 -33.795385 -33.799154 0.0037694247 198.38146 2.2153908 + 146900 -33.795424 -33.799423 0.0039993658 210.48305 1.9954487 + 147000 -33.791933 -33.799789 0.0078565703 413.48429 1.660937 + 147100 -33.791797 -33.800081 0.0082841237 435.98604 1.0498501 + 147200 -33.796634 -33.800136 0.0035023976 184.32806 0.42220795 + 147300 -33.796762 -33.800131 0.0033685127 177.28182 -0.026282847 + 147400 -33.794994 -33.800087 0.0050925803 268.01796 -0.52104698 + 147500 -33.793895 -33.799941 0.006046579 318.22606 -1.1111675 + 147600 -33.793878 -33.799695 0.0058171504 306.15144 -1.7048543 + 147700 -33.794156 -33.799429 0.0052734905 277.5391 -2.215133 + 147800 -33.793479 -33.799229 0.0057498471 302.60932 -2.5954574 + 147900 -33.791502 -33.799128 0.007625884 401.34347 -2.8549929 + 148000 -33.792952 -33.799144 0.0061912294 325.83888 -3.0433652 + 148100 -33.795696 -33.799308 0.0036114033 190.06493 -3.0809141 + 148200 -33.795854 -33.799645 0.0037912253 199.52881 -2.9140296 + 148300 -33.789689 -33.800238 0.010548779 555.17284 -2.3970209 + 148400 -33.792219 -33.800875 0.008655646 455.53893 -1.8059061 + 148500 -33.796356 -33.801169 0.0048124834 253.27671 -1.378819 + 148600 -33.79622 -33.801344 0.0051242787 269.68622 -0.8793566 + 148700 -33.794832 -33.801415 0.0065832688 346.47157 -0.2969591 + 148800 -33.793809 -33.801316 0.0075072594 395.10036 0.33028644 + 148900 -33.796684 -33.801071 0.0043865207 230.85867 0.79556436 + 149000 -33.79826 -33.800868 0.0026082315 137.2689 1.0868611 + 149100 -33.796007 -33.800741 0.0047347267 249.18444 1.3585835 + 149200 -33.791849 -33.800595 0.0087458882 460.28829 1.6545542 + 149300 -33.79441 -33.800415 0.0060048097 316.02778 1.7082454 + 149400 -33.795985 -33.800308 0.0043232388 227.5282 1.645022 + 149500 -33.795022 -33.800296 0.0052745739 277.59612 1.5044314 + 149600 -33.785391 -33.800308 0.014917636 785.10189 1.3144367 + 149700 -33.793583 -33.800128 0.0065457554 344.49727 0.63855242 + 149800 -33.795552 -33.799935 0.0043828461 230.66528 0.1955251 + 149900 -33.794597 -33.799746 0.0051491115 270.99314 -0.22157405 + 150000 -33.791455 -33.799479 0.0080234494 422.26699 -0.70633 + 150100 -33.791878 -33.799046 0.0071685977 377.27691 -1.3347719 + 150200 -33.796233 -33.798693 0.0024605626 129.49722 -1.8383931 + 150300 -33.796139 -33.798568 0.0024289663 127.83433 -2.0669541 + 150400 -33.792978 -33.79862 0.00564208 296.93764 -2.1846474 + 150500 -33.792001 -33.798796 0.0067949284 357.61102 -2.2748822 + 150600 -33.793366 -33.799013 0.0056472524 297.20986 -2.2910332 + 150700 -33.795043 -33.799249 0.004205652 221.33972 -2.1992459 + 150800 -33.795846 -33.799513 0.0036672719 193.00525 -1.9938177 + 150900 -33.793692 -33.799826 0.0061344297 322.84957 -1.6036435 + 151000 -33.790177 -33.800121 0.009944523 523.37138 -0.96175157 + 151100 -33.79552 -33.800163 0.0046432829 244.37184 -0.49336501 + 151200 -33.796877 -33.800105 0.0032278091 169.87671 -0.096125917 + 151300 -33.795419 -33.800018 0.0045985349 242.01679 0.38026903 + 151400 -33.793806 -33.799847 0.0060412478 317.94548 0.93647531 + 151500 -33.793652 -33.799578 0.0059256435 311.86133 1.4537329 + 151600 -33.793905 -33.799272 0.0053666492 282.44196 1.8792935 + 151700 -33.793297 -33.798994 0.0056968864 299.82205 2.2194721 + 151800 -33.789707 -33.798724 0.0090179092 474.60452 2.5432799 + 151900 -33.791979 -33.798451 0.0064716905 340.5993 2.6434322 + 152000 -33.795011 -33.798337 0.0033258001 175.03389 2.5722696 + 152100 -33.794327 -33.798419 0.004091821 215.34889 2.439168 + 152200 -33.788051 -33.798678 0.010627584 559.32025 2.2011011 + 152300 -33.791258 -33.798877 0.0076186621 400.96339 1.5877922 + 152400 -33.793866 -33.798915 0.0050491927 265.73451 1.0650512 + 152500 -33.793537 -33.798888 0.0053507374 281.60454 0.58097061 + 152600 -33.792367 -33.798755 0.0063874038 336.16336 0.0590127 + 152700 -33.791737 -33.798456 0.0067190559 353.61792 -0.50863267 + 152800 -33.793285 -33.798039 0.0047543696 250.21823 -1.0513931 + 152900 -33.794493 -33.797684 0.0031908192 167.92997 -1.4280388 + 153000 -33.792226 -33.79743 0.0052041919 273.89198 -1.6282182 + 153100 -33.787823 -33.797145 0.0093218918 490.60285 -1.7486009 + 153200 -33.791134 -33.796847 0.0057135378 300.6984 -1.8966506 + 153300 -33.792745 -33.796718 0.0039730014 209.09552 -1.8615159 + 153400 -33.791781 -33.796762 0.0049805941 262.12423 -1.6286143 + 153500 -33.790848 -33.796898 0.0060501455 318.41376 -1.2377597 + 153600 -33.790963 -33.797 0.0060370387 317.72396 -0.75947625 + 153700 -33.791791 -33.796993 0.0052028242 273.82 -0.25386702 + 153800 -33.792678 -33.796881 0.0042034302 221.22278 0.23776692 + 153900 -33.792042 -33.796688 0.0046453001 244.478 0.74636991 + 154000 -33.78787 -33.796299 0.0084284586 443.58226 1.4288884 + 154100 -33.788457 -33.795556 0.0070989548 373.61166 2.0793107 + 154200 -33.792147 -33.794884 0.0027374023 144.06704 2.4393736 + 154300 -33.792219 -33.79453 0.0023111844 121.63557 2.6654297 + 154400 -33.786389 -33.794342 0.0079537735 418.60001 2.951905 + 154500 -33.787304 -33.794258 0.0069543161 365.99945 3.0139632 + 154600 -33.790146 -33.794389 0.0042435223 223.33279 2.8946579 + 154700 -33.790618 -33.794807 0.004188599 220.44223 2.7006782 + 154800 -33.787251 -33.795602 0.0083509035 439.5006 2.419404 + 154900 -33.786591 -33.796738 0.010147378 534.04745 1.8607371 + 155000 -33.79342 -33.797519 0.0040989527 215.72422 1.263813 + 155100 -33.793345 -33.798192 0.0048478723 255.13919 0.86234263 + 155200 -33.791624 -33.798926 0.0073025693 384.32771 0.42840142 + 155300 -33.792903 -33.799556 0.0066534593 350.16563 -0.09524944 + 155400 -33.797088 -33.799897 0.0028095684 147.86508 -0.51421918 + 155500 -33.797001 -33.80015 0.0031480287 165.67794 -0.71600722 + 155600 -33.793235 -33.800457 0.0072215484 380.06365 -0.82123795 + 155700 -33.793023 -33.800704 0.0076811893 404.25414 -0.96351335 + 155800 -33.795218 -33.800808 0.0055900571 294.19972 -1.0603884 + 155900 -33.7962 -33.800879 0.0046789799 246.25054 -1.042412 + 156000 -33.7952 -33.800991 0.0057912791 304.78985 -0.89689847 + 156100 -33.789404 -33.801155 0.011750689 618.42826 -0.52886406 + 156200 -33.795479 -33.801236 0.0057563714 302.95269 -0.33190777 + 156300 -33.797678 -33.801289 0.003610939 190.0405 -0.13983475 + 156400 -33.796236 -33.801391 0.0051548564 271.2955 0.14091783 + 156500 -33.793171 -33.80148 0.0083092742 437.30969 0.5174369 + 156600 -33.796007 -33.801426 0.0054192513 285.21036 0.77245352 + 156700 -33.799387 -33.801332 0.0019453657 102.38286 0.86513071 + 156800 -33.798298 -33.801271 0.0029732483 156.47941 0.97229607 + 156900 -33.795172 -33.801161 0.0059890606 315.19892 1.084414 + 157000 -33.794232 -33.800905 0.0066736058 351.22592 1.0947863 + 157100 -33.79537 -33.800541 0.0051708587 272.13768 0.99852801 + 157200 -33.796568 -33.800192 0.0036242629 190.74173 0.85055085 + 157300 -33.795718 -33.799925 0.0042068063 221.40046 0.69229991 + 157400 -33.790878 -33.799663 0.0087849912 462.34625 0.48995394 + 157500 -33.792396 -33.799389 0.0069932143 368.04663 0.075855345 + 157600 -33.795784 -33.799271 0.0034867059 183.50222 -0.28916752 + 157700 -33.795493 -33.799357 0.0038640907 203.36365 -0.52148702 + 157800 -33.786272 -33.799679 0.013407561 705.62797 -0.64134477 + 157900 -33.790424 -33.800026 0.0096025475 505.37351 -1.0951084 + 158000 -33.794739 -33.800177 0.0054382606 286.21081 -1.4067107 + 158100 -33.796126 -33.800264 0.0041377559 217.7664 -1.5545784 + 158200 -33.795134 -33.80032 0.005185891 272.92882 -1.5798595 + 158300 -33.790971 -33.800278 0.0093070011 489.81917 -1.4739639 + 158400 -33.793629 -33.800003 0.0063734476 335.42886 -1.4377583 + 158500 -33.797312 -33.799733 0.0024209077 127.41021 -1.4051267 + 158600 -33.796477 -33.799546 0.0030691906 161.52877 -1.2348628 + 158700 -33.794051 -33.799371 0.0053195422 279.96276 -0.92367268 + 158800 -33.792762 -33.799188 0.006426204 338.20538 -0.53894146 + 158900 -33.793122 -33.79903 0.0059088133 310.97557 -0.16081589 + 159000 -33.794663 -33.798954 0.0042909842 225.83067 0.15253852 + 159100 -33.796243 -33.799004 0.0027611152 145.31503 0.37117328 + 159200 -33.795022 -33.799206 0.0041847441 220.23935 0.5803572 + 159300 -33.78991 -33.799597 0.0096861455 509.7732 0.87114668 + 159400 -33.793286 -33.799937 0.0066507326 350.02212 0.93976278 + 159500 -33.79583 -33.800129 0.0042983047 226.21594 0.91511671 + 159600 -33.795329 -33.800283 0.0049540769 260.72865 0.86017041 + 159700 -33.794251 -33.800395 0.0061436379 323.33418 0.72116381 + 159800 -33.794171 -33.800411 0.0062402942 328.42112 0.47419896 + 159900 -33.796429 -33.800334 0.0039056869 205.55282 0.14144074 + 160000 -33.798385 -33.800274 0.0018889414 99.413302 -0.13511382 + 160100 -33.797008 -33.800282 0.0032742632 172.32155 -0.36290822 + 160200 -33.793013 -33.800327 0.0073138068 384.91913 -0.69791325 + 160300 -33.793564 -33.800302 0.0067379158 354.6105 -1.183295 + 160400 -33.795954 -33.800224 0.0042698492 224.71836 -1.6038083 + 160500 -33.796848 -33.80017 0.0033218688 174.82699 -1.8715679 + 160600 -33.793648 -33.800151 0.0065021298 342.20129 -1.9899327 + 160700 -33.790012 -33.800039 0.010026579 527.68989 -2.0811709 + 160800 -33.795212 -33.799796 0.0045844161 241.27373 -2.2447585 + 160900 -33.79607 -33.79958 0.0035104801 184.75344 -2.2127174 + 161000 -33.794174 -33.799346 0.005171896 272.19227 -2.0095288 + 161100 -33.79223 -33.798984 0.0067532743 355.4188 -1.6587446 + 161200 -33.792695 -33.798491 0.0057964307 305.06098 -1.2666645 + 161300 -33.79297 -33.797947 0.0049767899 261.92401 -0.83215327 + 161400 -33.79172 -33.79736 0.0056399015 296.82298 -0.31477521 + 161500 -33.785708 -33.796559 0.010850621 571.05853 0.45992545 + 161600 -33.788939 -33.795474 0.006535276 343.94575 1.1541819 + 161700 -33.792301 -33.794832 0.0025316736 133.23972 1.5265308 + 161800 -33.7911 -33.794504 0.0034038024 179.13908 1.8711832 + 161900 -33.788094 -33.794356 0.0062618933 329.55786 2.2415653 + 162000 -33.787199 -33.794335 0.0071363819 375.58141 2.507322 + 162100 -33.789141 -33.794396 0.0052548354 276.5573 2.5764925 + 162200 -33.791609 -33.794542 0.002932894 154.3556 2.4954952 + 162300 -33.793288 -33.794775 0.0014871021 78.264855 2.3398599 + 162400 -33.792169 -33.795174 0.0030050749 158.15441 2.1363909 + 162500 -33.787348 -33.795912 0.0085641 450.72094 1.7286777 + 162600 -33.789862 -33.79653 0.0066686601 350.96563 1.0516391 + 162700 -33.792719 -33.796863 0.0041440117 218.09564 0.47855912 + 162800 -33.792883 -33.797108 0.0042246568 222.33992 0.036393562 + 162900 -33.787157 -33.797376 0.010218783 537.80542 -0.35102185 + 163000 -33.788469 -33.797541 0.0090724326 477.47404 -0.99427893 + 163100 -33.793269 -33.797585 0.0043158827 227.14106 -1.433037 + 163200 -33.792797 -33.797744 0.0049477446 260.39539 -1.5881296 + 163300 -33.790687 -33.798068 0.0073806939 388.43934 -1.5687996 + 163400 -33.791393 -33.798475 0.0070822696 372.73353 -1.4518311 + 163500 -33.795828 -33.7988 0.0029715277 156.38885 -1.3242514 + 163600 -33.795901 -33.79912 0.0032188175 169.40349 -1.0426043 + 163700 -33.792579 -33.79954 0.0069601375 366.30583 -0.49948858 + 163800 -33.791914 -33.79988 0.0079654511 419.21459 0.19481037 + 163900 -33.793912 -33.799943 0.0060311047 317.41166 0.80993254 + 164000 -33.795045 -33.799824 0.0047789983 251.51442 1.3590982 + 164100 -33.794615 -33.799608 0.0049920758 262.7285 1.8824898 + 164200 -33.789396 -33.79926 0.0098642528 519.14683 2.5483097 + 164300 -33.790692 -33.798687 0.0079948942 420.76415 3.1362779 + 164400 -33.795273 -33.798323 0.0030492306 160.47829 3.3625442 + 164500 -33.794591 -33.798249 0.0036578567 192.50973 3.4935067 + 164600 -33.792029 -33.798458 0.006428302 338.3158 3.507548 + 164700 -33.791469 -33.798913 0.0074442697 391.78527 3.3072421 + 164800 -33.794188 -33.799434 0.0052461609 276.10077 2.9255819 + 164900 -33.796933 -33.799906 0.0029732994 156.4821 2.5091686 + 165000 -33.799045 -33.800261 0.0012161554 64.005175 2.1659815 + 165100 -33.798293 -33.800647 0.0023540125 123.88958 1.8402827 + 165200 -33.795658 -33.80119 0.0055314883 291.11729 1.3204869 + 165300 -33.794503 -33.801652 0.0071487553 376.23261 0.58364461 + 165400 -33.796437 -33.801812 0.0053747838 282.87008 -0.19985936 + 165500 -33.79876 -33.801756 0.0029964348 157.69969 -0.80701868 + 165600 -33.799365 -33.801657 0.0022923789 120.64586 -1.200009 + 165700 -33.795418 -33.801543 0.0061243271 322.31787 -1.4761046 + 165800 -33.79299 -33.801301 0.0083113369 437.41825 -1.8293368 + 165900 -33.79617 -33.801023 0.004852955 255.4067 -2.1393523 + 166000 -33.797531 -33.800878 0.0033469806 176.1486 -2.2167515 + 166100 -33.794332 -33.800879 0.0065462241 344.52193 -2.027017 + 166200 -33.789332 -33.800905 0.01157345 609.10034 -1.5382992 + 166300 -33.79535 -33.800807 0.0054568211 287.18763 -1.2255677 + 166400 -33.796177 -33.800685 0.0045083755 237.27178 -0.8268886 + 166500 -33.794858 -33.800517 0.0056585977 297.80695 -0.31531798 + 166600 -33.790948 -33.800184 0.0092362802 486.09719 0.38554335 + 166700 -33.791747 -33.79955 0.0078024617 410.6366 1.0919907 + 166800 -33.796375 -33.799015 0.0026399974 138.94071 1.4584054 + 166900 -33.795876 -33.798684 0.0028081568 147.79079 1.7538187 + 167000 -33.792519 -33.798423 0.005903588 310.70057 2.0858832 + 167100 -33.79158 -33.798259 0.0066789993 351.50978 2.3103303 + 167200 -33.792763 -33.798287 0.0055247899 290.76476 2.3516197 + 167300 -33.794202 -33.798534 0.0043320183 227.99026 2.240807 + 167400 -33.795324 -33.798968 0.003644161 191.78895 2.0110627 + 167500 -33.794156 -33.799592 0.0054360294 286.09338 1.6901611 + 167600 -33.790712 -33.800457 0.0097451915 512.88074 1.183098 + 167700 -33.795767 -33.801184 0.0054168827 285.08571 0.43747838 + 167800 -33.798019 -33.801581 0.0035614198 187.43435 -0.088907963 + 167900 -33.796902 -33.801877 0.004974876 261.82329 -0.56754835 + 168000 -33.795118 -33.80205 0.0069323411 364.84293 -1.1359538 + 168100 -33.795822 -33.801987 0.0061657823 324.49962 -1.7661312 + 168200 -33.7986 -33.801752 0.0031521064 165.89255 -2.3032641 + 168300 -33.800592 -33.801579 0.00098646634 51.916844 -2.5678105 + 168400 -33.79973 -33.801477 0.0017468581 91.935584 -2.6496704 + 168500 -33.797151 -33.801372 0.0042215844 222.17822 -2.6253705 + 168600 -33.794045 -33.801202 0.0071570864 376.67107 -2.485721 + 168700 -33.793832 -33.800901 0.0070694794 372.06039 -2.2951278 + 168800 -33.796753 -33.80056 0.0038066832 200.34234 -2.121446 + 168900 -33.7978 -33.800292 0.0024926329 131.18505 -1.903855 + 169000 -33.794057 -33.800017 0.0059601187 313.67573 -1.4942227 + 169100 -33.790688 -33.799465 0.0087768268 461.91656 -0.8447136 + 169200 -33.79408 -33.798793 0.0047134105 248.06259 -0.37075085 + 169300 -33.795021 -33.798224 0.0032028975 168.56564 0.015593618 + 169400 -33.791012 -33.797614 0.006602098 347.46253 0.5038999 + 169500 -33.7876 -33.796603 0.0090024816 473.79257 1.1342208 + 169600 -33.790724 -33.795635 0.004911332 258.47902 1.4985564 + 169700 -33.791179 -33.794945 0.0037660384 198.20324 1.7355257 + 169800 -33.787407 -33.794405 0.0069978218 368.28912 1.9421724 + 169900 -33.783474 -33.793818 0.010344253 544.40879 2.0496985 + 170000 -33.787458 -33.793418 0.00596016 313.6779 1.8757312 + 170100 -33.788053 -33.793303 0.0052498306 276.2939 1.6580586 + 170200 -33.787681 -33.793431 0.0057501143 302.62339 1.3462664 + 170300 -33.787106 -33.793752 0.0066458715 349.76629 0.92721528 + 170400 -33.788759 -33.794163 0.0054041168 284.41385 0.4112646 + 170500 -33.791092 -33.794567 0.0034757329 182.92472 -0.048335079 + 170600 -33.790951 -33.795026 0.0040757625 214.50375 -0.40894837 + 170700 -33.78552 -33.795672 0.010152271 534.30499 -0.7503304 + 170800 -33.78854 -33.796293 0.0077531903 408.04349 -1.3285592 + 170900 -33.792617 -33.796622 0.004005235 210.79195 -1.702981 + 171000 -33.791977 -33.796954 0.0049770116 261.93568 -1.8584955 + 171100 -33.790042 -33.797356 0.007313958 384.92708 -1.8982771 + 171200 -33.791046 -33.797747 0.0067008014 352.6572 -1.8905285 + 171300 -33.795301 -33.798024 0.0027234146 143.33088 -1.8632254 + 171400 -33.79539 -33.798306 0.0029159092 153.4617 -1.6816167 + 171500 -33.791758 -33.798725 0.0069668996 366.66171 -1.2616216 + 171600 -33.791276 -33.799137 0.0078604214 413.68697 -0.73237932 + 171700 -33.793639 -33.799319 0.0056797912 298.92235 -0.27805574 + 171800 -33.794863 -33.799335 0.0044722067 235.36825 0.13119749 + 171900 -33.793997 -33.799241 0.0052440464 275.98948 0.55295039 + 172000 -33.787223 -33.798936 0.011712824 616.43547 1.1814931 + 172100 -33.792183 -33.798317 0.0061336536 322.80872 1.5788126 + 172200 -33.794583 -33.79783 0.0032464404 170.85726 1.7847964 + 172300 -33.793283 -33.797423 0.0041395353 217.86005 1.9502955 + 172400 -33.790478 -33.797 0.0065217817 343.23556 2.0575425 + 172500 -33.789937 -33.796576 0.0066392966 349.42026 2.0087702 + 172600 -33.790956 -33.796255 0.0052988201 278.87218 1.8260797 + 172700 -33.791092 -33.796079 0.0049872977 262.47703 1.5750129 + 172800 -33.785695 -33.796017 0.010321919 543.23339 1.3021467 + 172900 -33.786864 -33.795911 0.0090473312 476.15297 0.70236613 + 173000 -33.792075 -33.795828 0.0037524848 197.48993 0.18514331 + 173100 -33.791968 -33.795881 0.0039126264 205.91804 -0.14142759 + 173200 -33.788232 -33.79608 0.0078483832 413.05341 -0.43707587 + 173300 -33.787978 -33.796328 0.0083502951 439.46858 -0.84707413 + 173400 -33.793516 -33.796509 0.0029930219 157.52007 -1.20703 + 173500 -33.793672 -33.796767 0.0030946883 162.87068 -1.2982474 + 173600 -33.791738 -33.797227 0.0054885918 288.85969 -1.2451254 + 173700 -33.789852 -33.797865 0.0080125246 421.69202 -1.0772098 + 173800 -33.793119 -33.798459 0.0053406236 281.07225 -0.92928532 + 173900 -33.796263 -33.798883 0.0026190607 137.83883 -0.78182236 + 174000 -33.795684 -33.799312 0.0036283655 190.95764 -0.52703282 + 174100 -33.790547 -33.799925 0.0093785097 493.5826 -0.026706551 + 174200 -33.791887 -33.800508 0.0086208883 453.70966 0.45566757 + 174300 -33.795682 -33.800826 0.0051437718 270.71212 0.79024938 + 174400 -33.797224 -33.800999 0.0037747987 198.66429 1.05041 + 174500 -33.795955 -33.801132 0.0051766752 272.4438 1.3123779 + 174600 -33.791694 -33.801218 0.0095231806 501.1965 1.6360905 + 174700 -33.795435 -33.801157 0.0057220847 301.14821 1.747867 + 174800 -33.798503 -33.801073 0.0025700956 135.26184 1.7398974 + 174900 -33.797521 -33.801034 0.0035135863 184.91691 1.7170075 + 175000 -33.795171 -33.801007 0.00583686 307.18873 1.6139095 + 175100 -33.793996 -33.800935 0.0069389145 365.18888 1.3772677 + 175200 -33.795467 -33.800803 0.005335861 280.8216 1.0349333 + 175300 -33.798394 -33.800685 0.0022909996 120.57327 0.69735622 + 175400 -33.799178 -33.800658 0.0014800885 77.895739 0.47394496 + 175500 -33.796364 -33.800729 0.0043645581 229.7028 0.26691789 + 175600 -33.793857 -33.800861 0.0070046622 368.64912 -0.09192562 + 175700 -33.794867 -33.80095 0.0060823405 320.10815 -0.51709124 + 175800 -33.79685 -33.801002 0.0041520056 218.51635 -0.86130564 + 175900 -33.79725 -33.801075 0.0038252957 201.3219 -1.0713766 + 176000 -33.792768 -33.801209 0.0084413028 444.25824 -1.1334029 + 176100 -33.792088 -33.801355 0.0092670287 487.71546 -1.23686 + 176200 -33.79727 -33.801436 0.0041661052 219.2584 -1.3588245 + 176300 -33.797226 -33.801546 0.0043191521 227.31312 -1.2889243 + 176400 -33.795533 -33.801711 0.0061780001 325.14263 -1.0893541 + 176500 -33.794662 -33.80188 0.0072175788 379.85473 -0.80930415 + 176600 -33.798477 -33.801975 0.0034982851 184.11162 -0.6019587 + 176700 -33.800142 -33.802026 0.0018838604 99.145893 -0.4298651 + 176800 -33.798264 -33.80209 0.0038265001 201.38529 -0.15356212 + 176900 -33.795225 -33.802102 0.0068777719 361.971 0.26883057 + 177000 -33.795667 -33.801934 0.0062667646 329.81423 0.64350274 + 177100 -33.797179 -33.801622 0.0044430992 233.83635 0.92067247 + 177200 -33.797549 -33.801251 0.0037019512 194.83039 1.1312421 + 177300 -33.793436 -33.800743 0.0073068354 384.55223 1.3864974 + 177400 -33.791207 -33.79989 0.0086830229 456.97975 1.5795828 + 177500 -33.795131 -33.799063 0.0039321313 206.94456 1.5501183 + 177600 -33.79571 -33.798489 0.0027787928 146.24538 1.4877188 + 177700 -33.789881 -33.797915 0.0080341419 422.82972 1.4166344 + 177800 -33.789144 -33.797114 0.0079704643 419.47842 1.055728 + 177900 -33.792206 -33.796493 0.0042870171 225.62189 0.62407512 + 178000 -33.792447 -33.796112 0.0036658421 192.93 0.26856957 + 178100 -33.788066 -33.79584 0.0077738621 409.13143 -0.093580782 + 178200 -33.786176 -33.795502 0.0093263615 490.83809 -0.6884846 + 178300 -33.790301 -33.795219 0.0049176789 258.81305 -1.2687189 + 178400 -33.790343 -33.795092 0.0047491227 249.94209 -1.6323935 + 178500 -33.789044 -33.795111 0.0060671114 319.30666 -1.9056046 + 178600 -33.787826 -33.79527 0.007444588 391.80203 -2.1119959 + 178700 -33.790717 -33.795532 0.0048145158 253.38367 -2.2855627 + 178800 -33.793191 -33.795864 0.0026734426 140.7009 -2.3178896 + 178900 -33.791958 -33.796391 0.0044330103 233.30538 -2.159273 + 179000 -33.78643 -33.797307 0.010876825 572.43761 -1.7292398 + 179100 -33.790872 -33.7982 0.0073272959 385.62905 -1.4079875 + 179200 -33.79296 -33.798816 0.0058558686 308.18914 -1.0884947 + 179300 -33.793979 -33.799293 0.0053143417 279.68906 -0.76404308 + 179400 -33.794574 -33.799647 0.0050727328 266.9734 -0.45381819 + 179500 -33.794407 -33.799884 0.0054767385 288.23586 -0.15383235 + 179600 -33.792947 -33.79999 0.0070432174 370.67825 0.15686914 + 179700 -33.793236 -33.799908 0.0066720033 351.14159 0.401473 + 179800 -33.795941 -33.79969 0.0037488028 197.29615 0.50275714 + 179900 -33.796535 -33.79946 0.0029246633 153.92242 0.54720316 + 180000 -33.791952 -33.79915 0.007197281 378.78648 0.61278014 + 180100 -33.79017 -33.79855 0.0083794421 441.00256 0.52414702 + 180200 -33.793234 -33.797895 0.0046603969 245.27253 0.29331381 + 180300 -33.793528 -33.797333 0.0038053071 200.26992 0.089224152 + 180400 -33.788969 -33.796719 0.0077502503 407.88876 -0.10792355 + 180500 -33.784741 -33.795685 0.010944827 576.01651 -0.51200665 + 180600 -33.788905 -33.794699 0.0057941363 304.94022 -1.0207744 + 180700 -33.789771 -33.793963 0.0041922859 220.63627 -1.3651414 + 180800 -33.788049 -33.793399 0.0053507043 281.60279 -1.6120733 + 180900 -33.7833 -33.792852 0.0095522229 502.72497 -1.8114324 + 181000 -33.786755 -33.79236 0.0056051394 294.99349 -2.112776 + 181100 -33.789977 -33.792223 0.002245686 118.18845 -2.2358969 + 181200 -33.788995 -33.792425 0.0034304384 180.54091 -2.1406818 + 181300 -33.786388 -33.792976 0.0065876812 346.70379 -1.8522775 + 181400 -33.786183 -33.793724 0.0075408513 396.86828 -1.4585101 + 181500 -33.789878 -33.794385 0.0045063944 237.16752 -1.1182298 + 181600 -33.792335 -33.794919 0.0025841286 136.00038 -0.8206974 + 181700 -33.793528 -33.795442 0.0019140138 100.73284 -0.54014666 + 181800 -33.793172 -33.796036 0.0028635986 150.70864 -0.2361603 + 181900 -33.788358 -33.796977 0.0086194274 453.63278 0.30225146 + 182000 -33.790034 -33.798018 0.0079834031 420.15938 0.81270136 + 182100 -33.794297 -33.798671 0.0043738905 230.19396 1.1013341 + 182200 -33.794491 -33.799165 0.0046746489 246.0226 1.3506397 + 182300 -33.793159 -33.799643 0.0064842195 341.25869 1.576163 + 182400 -33.793068 -33.800055 0.0069868638 367.71241 1.7138168 + 182500 -33.797291 -33.800301 0.0030098668 158.40661 1.669515 + 182600 -33.79773 -33.800469 0.0027384574 144.12257 1.6119927 + 182700 -33.794158 -33.800672 0.0065137199 342.81127 1.5263012 + 182800 -33.792256 -33.800835 0.0085792368 451.51758 1.2661914 + 182900 -33.795779 -33.800835 0.0050569466 266.14259 0.88131121 + 183000 -33.796669 -33.800763 0.0040931387 215.41824 0.57975302 + 183100 -33.795721 -33.800647 0.0049261781 259.26036 0.29212016 + 183200 -33.794902 -33.800475 0.005572925 293.29807 -0.024830032 + 183300 -33.794256 -33.80025 0.0059937937 315.44802 -0.3418691 + 183400 -33.793912 -33.799992 0.0060799591 319.98282 -0.63269407 + 183500 -33.794086 -33.799744 0.00565813 297.78233 -0.8713789 + 183600 -33.794451 -33.799558 0.0051064985 268.75046 -1.0265794 + 183700 -33.793801 -33.799465 0.0056646572 298.12586 -1.0687252 + 183800 -33.792003 -33.79947 0.0074671316 392.98847 -0.99150088 + 183900 -33.793125 -33.799555 0.0064303763 338.42497 -0.87544451 + 184000 -33.796472 -33.799698 0.0032256145 169.76121 -0.76093356 + 184100 -33.796738 -33.79992 0.0031816358 167.44665 -0.55439065 + 184200 -33.790724 -33.800317 0.0095935429 504.89961 -0.082243224 + 184300 -33.791862 -33.800785 0.0089229777 469.60836 0.41811613 + 184400 -33.795652 -33.801052 0.0054007669 284.23755 0.75642323 + 184500 -33.796438 -33.801232 0.0047941904 252.31396 1.0715544 + 184600 -33.795473 -33.801375 0.0059023315 310.63444 1.3846321 + 184700 -33.791212 -33.801467 0.010254947 539.70871 1.7615009 + 184800 -33.794789 -33.801421 0.0066316905 349.01996 1.9446541 + 184900 -33.798277 -33.801337 0.0030597217 161.03043 1.9710545 + 185000 -33.797213 -33.801285 0.0040722193 214.31727 1.9801323 + 185100 -33.793571 -33.801215 0.0076431761 402.25354 1.9232472 + 185200 -33.794038 -33.801045 0.0070068826 368.76598 1.6738167 + 185300 -33.795419 -33.800806 0.0053874827 283.53841 1.3600622 + 185400 -33.7954 -33.800522 0.0051223749 269.58602 1.031036 + 185500 -33.794448 -33.80017 0.0057222739 301.15817 0.66365715 + 185600 -33.791506 -33.79969 0.0081838465 430.70854 0.25778035 + 185700 -33.788097 -33.798918 0.010821258 569.51314 -0.27392524 + 185800 -33.794489 -33.798185 0.0036964091 194.53871 -0.86145488 + 185900 -33.794861 -33.797738 0.0028763707 151.38083 -1.1345625 + 186000 -33.791847 -33.797382 0.0055352707 291.31636 -1.2908122 + 186100 -33.789758 -33.797067 0.0073081616 384.62202 -1.4296315 + 186200 -33.791022 -33.796895 0.0058724558 309.06211 -1.5295288 + 186300 -33.792005 -33.796913 0.0049081482 258.31146 -1.510734 + 186400 -33.791739 -33.797118 0.0053789643 283.09009 -1.3641573 + 186500 -33.788528 -33.797516 0.0089883494 473.04881 -1.0374066 + 186600 -33.791166 -33.798001 0.006834498 359.69353 -0.73666105 + 186700 -33.794707 -33.798384 0.0036767215 193.50257 -0.51865795 + 186800 -33.794468 -33.798779 0.0043109011 226.87888 -0.24831837 + 186900 -33.789908 -33.799297 0.0093887189 494.1199 0.17363545 + 187000 -33.791286 -33.799831 0.0085452254 449.72759 0.54737909 + 187100 -33.797044 -33.80009 0.0030456121 160.28785 0.64995693 + 187200 -33.79607 -33.800315 0.0042455336 223.43864 0.7902261 + 187300 -33.792409 -33.800574 0.0081650234 429.7179 0.93968474 + 187400 -33.793719 -33.80074 0.0070208183 369.49941 0.92449771 + 187500 -33.79781 -33.800772 0.0029620611 155.89063 0.78622272 + 187600 -33.798057 -33.800779 0.0027221831 143.26607 0.66734934 + 187700 -33.791126 -33.800758 0.0096315394 506.89933 0.5514747 + 187800 -33.792296 -33.800519 0.0082230961 432.77421 0.098150073 + 187900 -33.796209 -33.80017 0.0039616819 208.49979 -0.34059846 + 188000 -33.796471 -33.799827 0.0033567786 176.66426 -0.65397062 + 188100 -33.792859 -33.79937 0.0065111345 342.6752 -0.95533159 + 188200 -33.790395 -33.798604 0.0082084096 432.00128 -1.4052416 + 188300 -33.793016 -33.797762 0.0047467991 249.8198 -1.8864935 + 188400 -33.793898 -33.797077 0.0031786867 167.29145 -2.1902207 + 188500 -33.788405 -33.796352 0.0079468889 418.23767 -2.3157146 + 188600 -33.7865 -33.795234 0.0087335184 459.63728 -2.5234282 + 188700 -33.790619 -33.794335 0.0037166827 195.6057 -2.7078925 + 188800 -33.790757 -33.793793 0.0030354117 159.75101 -2.6714063 + 188900 -33.786475 -33.793364 0.0068891596 362.57033 -2.3772523 + 189000 -33.785183 -33.792899 0.0077162265 406.09812 -1.9325645 + 189100 -33.787282 -33.792533 0.0052506205 276.33547 -1.5035901 + 189200 -33.787856 -33.79233 0.0044735733 235.44017 -1.0363018 + 189300 -33.784965 -33.792261 0.0072955274 383.9571 -0.41997747 + 189400 -33.779379 -33.792161 0.012781554 672.68176 0.53033111 + 189500 -33.787359 -33.791984 0.0046242967 243.37261 1.0352123 + 189600 -33.787699 -33.791976 0.004276997 225.09454 1.4514489 + 189700 -33.785634 -33.792168 0.0065339013 343.8734 1.8491672 + 189800 -33.783992 -33.792528 0.0085362129 449.25327 2.1800083 + 189900 -33.789279 -33.792904 0.0036249921 190.7801 2.2154393 + 190000 -33.790432 -33.793308 0.0028756104 151.34081 2.1577152 + 190100 -33.788207 -33.793957 0.0057500301 302.61896 2.0033775 + 190200 -33.786486 -33.794828 0.0083425139 439.05907 1.6364528 + 190300 -33.7891 -33.795546 0.0064455494 339.22351 1.1009504 + 190400 -33.790262 -33.796054 0.0057912812 304.78996 0.58241248 + 190500 -33.790868 -33.796419 0.0055507717 292.13217 0.053744782 + 190600 -33.791365 -33.796659 0.0052936046 278.59769 -0.47196007 + 190700 -33.791673 -33.796799 0.0051250494 269.72678 -0.96655897 + 190800 -33.790955 -33.796874 0.0059186273 311.49208 -1.4093113 + 190900 -33.789777 -33.796896 0.0071186986 374.65076 -1.8196443 + 191000 -33.791215 -33.796874 0.0056590055 297.82841 -2.1929059 + 191100 -33.793519 -33.796895 0.0033758262 177.66672 -2.4138869 + 191200 -33.79349 -33.797035 0.0035456928 186.60665 -2.4350553 + 191300 -33.787481 -33.797369 0.0098878674 520.38964 -2.178774 + 191400 -33.789603 -33.797759 0.0081557723 429.23102 -1.9220027 + 191500 -33.793183 -33.798011 0.0048285313 254.12129 -1.6860287 + 191600 -33.793125 -33.798253 0.0051279183 269.87776 -1.3316658 + 191700 -33.792079 -33.798511 0.006432055 338.51332 -0.8702015 + 191800 -33.791743 -33.798746 0.0070025008 368.53537 -0.35065664 + 191900 -33.794765 -33.798915 0.0041497385 218.39703 0.055110493 + 192000 -33.795984 -33.799074 0.00308967 162.60658 0.36978724 + 192100 -33.793456 -33.799323 0.0058665676 308.75222 0.74013509 + 192200 -33.789741 -33.799707 0.0099663661 524.52096 1.2089396 + 192300 -33.794517 -33.800036 0.0055185307 290.43535 1.416637 + 192400 -33.7956 -33.800322 0.0047223546 248.53331 1.5431098 + 192500 -33.794884 -33.800665 0.0057810894 304.25358 1.6032408 + 192600 -33.794327 -33.801049 0.0067224948 353.79891 1.5586786 + 192700 -33.796531 -33.801388 0.0048571279 255.62631 1.3700938 + 192800 -33.799148 -33.801615 0.0024666858 129.81947 1.142602 + 192900 -33.798413 -33.801814 0.0034004196 178.96105 0.93300441 + 193000 -33.79283 -33.802038 0.0092083907 484.62939 0.6291524 + 193100 -33.794866 -33.802087 0.0072201794 379.9916 0.057841027 + 193200 -33.797309 -33.80195 0.0046412812 244.26649 -0.42950239 + 193300 -33.797295 -33.801723 0.0044288814 233.08808 -0.80254084 + 193400 -33.792646 -33.801365 0.008718514 458.84762 -1.1041106 + 193500 -33.789545 -33.800648 0.01110319 584.35097 -1.5502516 + 193600 -33.796214 -33.800026 0.0038127592 200.66212 -1.9815816 + 193700 -33.795671 -33.79961 0.0039390829 207.31042 -2.0901043 + 193800 -33.792501 -33.799257 0.0067564053 355.58359 -2.0153979 + 193900 -33.79089 -33.79893 0.0080404972 423.16419 -1.8177195 + 194000 -33.794733 -33.798714 0.0039812026 209.52714 -1.6325526 + 194100 -33.796573 -33.79868 0.0021074347 110.91241 -1.4009539 + 194200 -33.793843 -33.798804 0.0049611616 261.10151 -0.97398871 + 194300 -33.788942 -33.799032 0.010090409 531.04925 -0.12363395 + 194400 -33.793983 -33.799084 0.0051011664 268.46984 0.47397846 + 194500 -33.795535 -33.799076 0.0035412003 186.37021 0.94166691 + 194600 -33.793792 -33.799085 0.0052933593 278.58478 1.4312271 + 194700 -33.78892 -33.799078 0.010158024 534.60775 2.0793909 + 194800 -33.793672 -33.799004 0.0053318548 280.61076 2.4610735 + 194900 -33.796107 -33.79902 0.0029130204 153.30967 2.6200956 + 195000 -33.79505 -33.799213 0.0041634158 219.11686 2.6934799 + 195100 -33.792193 -33.799623 0.0074304749 391.05927 2.653356 + 195200 -33.792656 -33.800157 0.0075008357 394.76229 2.3917516 + 195300 -33.797061 -33.800582 0.0035204916 185.28033 2.0069047 + 195400 -33.797641 -33.800931 0.0032897165 173.13484 1.6849804 + 195500 -33.795415 -33.801326 0.0059106798 311.0738 1.2877349 + 195600 -33.794719 -33.801674 0.0069552065 366.04632 0.71029012 + 195700 -33.796115 -33.801819 0.0057034598 300.168 0.090170683 + 195800 -33.797362 -33.801787 0.0044252008 232.89437 -0.44873499 + 195900 -33.796812 -33.801638 0.0048260978 253.99322 -0.88945765 + 196000 -33.791529 -33.801306 0.0097764525 514.52597 -1.287405 + 196100 -33.793542 -33.800691 0.0071487368 376.23164 -1.8469761 + 196200 -33.797381 -33.800213 0.0028320495 149.04824 -2.1814585 + 196300 -33.796735 -33.79991 0.0031755551 167.12663 -2.2386336 + 196400 -33.794667 -33.799693 0.0050258422 264.50559 -2.1027227 + 196500 -33.792725 -33.799523 0.0067975486 357.74892 -1.7768935 + 196600 -33.793112 -33.799354 0.0062412593 328.47191 -1.3419125 + 196700 -33.796027 -33.799192 0.0031647888 166.56001 -0.92832584 + 196800 -33.797504 -33.799111 0.0016069023 84.569835 -0.57856807 + 196900 -33.795589 -33.799091 0.0035020923 184.31199 -0.095911337 + 197000 -33.792038 -33.798971 0.0069330071 364.87798 0.7364637 + 197100 -33.792597 -33.798589 0.0059925481 315.38246 1.5485425 + 197200 -33.793875 -33.798064 0.0041882203 220.4223 2.2021283 + 197300 -33.793046 -33.797504 0.0044578557 234.61297 2.7647316 + 197400 -33.787266 -33.796717 0.0094510402 497.39982 3.469997 + 197500 -33.78905 -33.795721 0.0066707189 351.07399 3.9760663 + 197600 -33.79161 -33.795089 0.0034788219 183.08729 4.1722253 + 197700 -33.790742 -33.794876 0.0041342104 217.57981 4.1956036 + 197800 -33.78706 -33.795053 0.0079921165 420.61796 4.0163048 + 197900 -33.787929 -33.795517 0.0075880182 399.35063 3.5056124 + 198000 -33.790855 -33.796062 0.005206434 274.00998 2.8676813 + 198100 -33.792381 -33.796611 0.0042301175 222.62731 2.2462696 + 198200 -33.791866 -33.797186 0.0053203429 280.0049 1.5949077 + 198300 -33.789202 -33.797754 0.0085525314 450.1121 0.80534003 + 198400 -33.791716 -33.798067 0.0063509556 334.24513 -0.1759976 + 198500 -33.795234 -33.7981 0.0028663892 150.85551 -0.87246416 + 198600 -33.794504 -33.798076 0.0035718627 187.98395 -1.3379778 + 198700 -33.790785 -33.797964 0.0071783958 377.79257 -1.8109814 + 198800 -33.790925 -33.79766 0.0067348594 354.44964 -2.3522209 + 198900 -33.792233 -33.797302 0.0050684857 266.74988 -2.7378233 + 199000 -33.792231 -33.797035 0.0048046371 252.86377 -2.9110249 + 199100 -33.787859 -33.796893 0.0090343509 475.46983 -2.8252884 + 199200 -33.786688 -33.796784 0.01009568 531.32666 -2.6102536 + 199300 -33.792825 -33.796774 0.0039489864 207.83163 -2.4731454 + 199400 -33.792438 -33.796977 0.0045383716 238.85045 -2.1217076 + 199500 -33.790022 -33.797377 0.007355324 387.10414 -1.5546542 + 199600 -33.790507 -33.797812 0.0073046721 384.43838 -0.90293994 + 199700 -33.795402 -33.798075 0.0026726987 140.66175 -0.49463408 + 199800 -33.795277 -33.798309 0.0030321162 159.57757 -0.11955094 + 199900 -33.792359 -33.798613 0.0062537141 329.1274 0.38389109 + 200000 -33.791615 -33.798847 0.0072316996 380.5979 0.90274034 + 200100 -33.793312 -33.798901 0.0055891573 294.15236 1.2730169 + 200200 -33.794041 -33.798871 0.0048294473 254.1695 1.5292212 + 200300 -33.792875 -33.798829 0.0059539414 313.35062 1.7137222 + 200400 -33.783561 -33.798734 0.015173744 798.58063 1.9722217 + 200500 -33.792699 -33.798504 0.0058057965 305.55389 1.7616794 + 200600 -33.794405 -33.798429 0.0040244013 211.80065 1.6049343 + 200700 -33.792947 -33.79855 0.0056033426 294.89892 1.3975852 + 200800 -33.789702 -33.798856 0.0091534585 481.73836 1.0608171 + 200900 -33.794129 -33.799179 0.0050504252 265.79938 0.50575737 + 201000 -33.796599 -33.799435 0.0028359728 149.25472 0.13155605 + 201100 -33.795042 -33.799778 0.0047355343 249.22695 -0.17256677 + 201200 -33.792362 -33.800174 0.0078118987 411.13326 -0.55226441 + 201300 -33.793956 -33.800384 0.006427825 338.2907 -1.0207539 + 201400 -33.795692 -33.800376 0.0046846313 246.54797 -1.3831305 + 201500 -33.795422 -33.800239 0.0048168301 253.50547 -1.6239524 + 201600 -33.79437 -33.799977 0.0056072703 295.10563 -1.7851101 + 201700 -33.792789 -33.799575 0.0067859267 357.13727 -1.8643023 + 201800 -33.792389 -33.799062 0.0066732516 351.20728 -1.8766421 + 201900 -33.794399 -33.798617 0.0042183387 222.00741 -1.8384804 + 202000 -33.795291 -33.798429 0.0031379107 165.14544 -1.6954259 + 202100 -33.79208 -33.798524 0.0064433672 339.10867 -1.3408584 + 202200 -33.789131 -33.798888 0.009757013 513.50289 -0.77281839 + 202300 -33.793991 -33.799285 0.0052942407 278.63117 -0.38001912 + 202400 -33.794858 -33.799699 0.0048410135 254.77822 -0.0041093859 + 202500 -33.794183 -33.800189 0.0060063729 316.11005 0.39577658 + 202600 -33.794209 -33.800676 0.0064667666 340.34016 0.76363819 + 202700 -33.797224 -33.801036 0.0038120096 200.62267 0.98195544 + 202800 -33.799247 -33.801261 0.0020135893 105.97341 1.0695435 + 202900 -33.797681 -33.801507 0.0038257833 201.34756 1.1406383 + 203000 -33.793827 -33.801818 0.0079912548 420.57261 1.1805984 + 203100 -33.795538 -33.801974 0.006436006 338.72126 1.0336683 + 203200 -33.797561 -33.801981 0.0044206157 232.65306 0.83700269 + 203300 -33.79757 -33.801946 0.0043755388 230.2807 0.64242513 + 203400 -33.791127 -33.801869 0.010742151 565.34985 0.47017143 + 203500 -33.793614 -33.801621 0.0080066771 421.38428 0.004199026 + 203600 -33.797411 -33.801406 0.0039952705 210.26752 -0.36058092 + 203700 -33.796769 -33.801301 0.0045321727 238.52421 -0.58160229 + 203800 -33.794258 -33.801271 0.0070128924 369.08227 -0.76044789 + 203900 -33.793728 -33.801243 0.0075152566 395.52125 -0.95586463 + 204000 -33.798668 -33.8012 0.0025314854 133.22982 -1.1566063 + 204100 -33.798928 -33.801231 0.0023034809 121.23015 -1.155446 + 204200 -33.795817 -33.801322 0.0055051708 289.73223 -0.98418233 + 204300 -33.793942 -33.801302 0.0073600311 387.35187 -0.71401856 + 204400 -33.795553 -33.801041 0.0054880778 288.83264 -0.46065613 + 204500 -33.796739 -33.800648 0.0039089171 205.72282 -0.19572418 + 204600 -33.794812 -33.800165 0.0053532229 281.73535 0.16552806 + 204700 -33.789222 -33.799279 0.010057206 529.3018 0.78217192 + 204800 -33.793199 -33.798193 0.004994113 262.83571 1.209571 + 204900 -33.794742 -33.797469 0.0027271861 143.52937 1.5215572 + 205000 -33.792026 -33.797001 0.0049752403 261.84246 1.8840875 + 205100 -33.78847 -33.796604 0.0081339752 428.08386 2.3463872 + 205200 -33.790698 -33.796419 0.0057211563 301.09936 2.597774 + 205300 -33.792237 -33.79652 0.0042834553 225.43443 2.7030896 + 205400 -33.791719 -33.796889 0.0051700997 272.09773 2.7121289 + 205500 -33.787109 -33.79751 0.010400886 547.38937 2.6515132 + 205600 -33.791319 -33.798082 0.0067628356 355.92201 2.2772006 + 205700 -33.794709 -33.798373 0.0036639245 192.82908 1.9344689 + 205800 -33.793745 -33.798625 0.0048796649 256.81241 1.6118089 + 205900 -33.790782 -33.798802 0.0080200246 422.08674 1.1751311 + 206000 -33.792198 -33.798707 0.0065083861 342.53055 0.5468708 + 206100 -33.796384 -33.798496 0.0021118404 111.14427 0.052420415 + 206200 -33.795764 -33.798363 0.0025992112 136.79417 -0.24435526 + 206300 -33.792496 -33.798226 0.0057298372 301.55622 -0.57025764 + 206400 -33.791313 -33.797977 0.0066648439 350.76479 -0.98319795 + 206500 -33.792245 -33.797658 0.0054133002 284.89716 -1.3560245 + 206600 -33.793351 -33.797406 0.0040544354 213.38132 -1.5974042 + 206700 -33.792824 -33.797306 0.0044814855 235.85658 -1.674876 + 206800 -33.788368 -33.797343 0.008975191 472.3563 -1.5535506 + 206900 -33.790167 -33.797394 0.0072267759 380.33877 -1.4359354 + 207000 -33.794008 -33.797483 0.0034744491 182.85716 -1.3182819 + 207100 -33.793599 -33.797735 0.0041361298 217.68082 -1.0595089 + 207200 -33.791757 -33.798179 0.0064222265 337.99605 -0.65460575 + 207300 -33.791913 -33.798678 0.0067653363 356.05361 -0.2150918 + 207400 -33.793293 -33.799103 0.005810697 305.8118 0.18028474 + 207500 -33.794418 -33.799449 0.0050312893 264.79227 0.52187386 + 207600 -33.795087 -33.799743 0.0046559064 245.0362 0.80863704 + 207700 -33.794946 -33.799997 0.0050515013 265.85601 1.0463064 + 207800 -33.793107 -33.800206 0.0070989771 373.61283 1.2677201 + 207900 -33.793315 -33.800281 0.0069654118 366.58341 1.3845956 + 208000 -33.796451 -33.80022 0.0037690448 198.36147 1.3471844 + 208100 -33.797315 -33.800162 0.0028465959 149.8138 1.2695712 + 208200 -33.792741 -33.800127 0.0073861455 388.72625 1.1865006 + 208300 -33.790892 -33.799933 0.0090406298 475.80028 0.87162523 + 208400 -33.794815 -33.799618 0.0048037205 252.81552 0.44622349 + 208500 -33.795309 -33.799364 0.0040549582 213.40883 0.11856377 + 208600 -33.792832 -33.799155 0.0063225461 332.74996 -0.19719322 + 208700 -33.78556 -33.79884 0.013280557 698.94385 -0.56655884 + 208800 -33.793779 -33.798358 0.0045791711 240.99769 -1.2292346 + 208900 -33.795288 -33.798137 0.002849591 149.97143 -1.4966646 + 209000 -33.792747 -33.798088 0.0053409261 281.08818 -1.608457 + 209100 -33.789174 -33.798077 0.0089024615 468.52861 -1.6598996 + 209200 -33.792509 -33.797962 0.0054529166 286.98214 -1.7618362 + 209300 -33.79471 -33.797862 0.0031522055 165.89777 -1.7495253 + 209400 -33.792795 -33.797839 0.0050442155 265.47256 -1.5597477 + 209500 -33.784831 -33.797698 0.012866961 677.1767 -1.0249471 + 209600 -33.792005 -33.797303 0.0052978519 278.82122 -0.77946032 + 209700 -33.793507 -33.797013 0.003506117 184.52381 -0.49970054 + 209800 -33.791583 -33.796863 0.0052797499 277.86853 -0.12039915 + 209900 -33.787373 -33.796792 0.0094183279 495.6782 0.43613212 + 210000 -33.790995 -33.796768 0.0057733124 303.84428 0.82076645 + 210100 -33.793399 -33.796918 0.0035185091 185.176 1.0505369 + 210200 -33.792739 -33.797337 0.0045985378 242.01694 1.2411627 + 210300 -33.791259 -33.798036 0.0067774642 356.69189 1.3716775 + 210400 -33.791892 -33.798862 0.0069698562 366.81731 1.3647324 + 210500 -33.79549 -33.799532 0.0040423221 212.74381 1.2084618 + 210600 -33.796597 -33.800052 0.0034546304 181.81412 1.0350953 + 210700 -33.7929 -33.800588 0.0076878029 404.60221 0.84636764 + 210800 -33.78888 -33.801095 0.012215108 642.87025 0.41676921 + 210900 -33.795895 -33.801134 0.005238871 275.71711 -0.16690563 + 211000 -33.796561 -33.800991 0.0044300783 233.15107 -0.55667985 + 211100 -33.794962 -33.80074 0.0057777682 304.07879 -0.92519785 + 211200 -33.791298 -33.800311 0.009013281 474.36094 -1.3396162 + 211300 -33.794012 -33.799748 0.005736123 301.88704 -1.8764406 + 211400 -33.797387 -33.799473 0.0020861345 109.7914 -2.1916786 + 211500 -33.796368 -33.799535 0.0031675225 166.70389 -2.2732686 + 211600 -33.793114 -33.799964 0.0068502397 360.522 -2.2073978 + 211700 -33.793453 -33.800608 0.0071555652 376.59101 -2.0934322 + 211800 -33.79602 -33.801203 0.0051826439 272.75793 -1.9410149 + 211900 -33.797547 -33.80168 0.0041335375 217.54439 -1.7202277 + 212000 -33.798011 -33.802062 0.0040509213 213.19637 -1.4303175 + 212100 -33.79616 -33.802347 0.0061875832 325.64699 -1.0160729 + 212200 -33.793793 -33.802426 0.0086320188 454.29545 -0.45732773 + 212300 -33.797454 -33.802185 0.0047306325 248.96897 -0.038622626 + 212400 -33.799175 -33.801863 0.0026879824 141.46611 0.27188431 + 212500 -33.79673 -33.801491 0.0047609786 250.56606 0.64251245 + 212600 -33.792491 -33.800811 0.0083199683 437.87251 1.1879521 + 212700 -33.794742 -33.800054 0.0053120233 279.56705 1.544335 + 212800 -33.795742 -33.799519 0.0037772003 198.79068 1.7786374 + 212900 -33.792834 -33.799208 0.0063734132 335.42705 1.9927379 + 213000 -33.78802 -33.799025 0.011005907 579.23105 2.1817066 + 213100 -33.793425 -33.799001 0.0055758721 293.45318 2.0582825 + 213200 -33.794083 -33.799161 0.0050780427 267.25286 1.9229463 + 213300 -33.79339 -33.799453 0.0060629135 319.08573 1.7028331 + 213400 -33.793315 -33.799752 0.0064364141 338.74273 1.3654713 + 213500 -33.796071 -33.799914 0.0038429651 202.25182 0.9442719 + 213600 -33.797428 -33.79996 0.0025317381 133.24312 0.60496659 + 213700 -33.794974 -33.799934 0.0049595655 261.01751 0.29222919 + 213800 -33.790792 -33.799613 0.0088207201 464.22663 -0.20541359 + 213900 -33.793405 -33.798916 0.0055112108 290.05011 -0.83058788 + 214000 -33.794456 -33.798155 0.0036996936 194.71157 -1.2835067 + 214100 -33.791853 -33.797334 0.005480314 288.42404 -1.6066544 + 214200 -33.786512 -33.796051 0.0095382063 501.98729 -1.9585168 + 214300 -33.789381 -33.794816 0.0054344008 286.00766 -2.3478653 + 214400 -33.790192 -33.794136 0.0039442066 207.58007 -2.4838265 + 214500 -33.78739 -33.794019 0.0066285589 348.85514 -2.3510153 + 214600 -33.78305 -33.794454 0.011404504 600.20887 -1.9391662 + 214700 -33.790904 -33.795064 0.0041596859 218.92056 -1.6984341 + 214800 -33.791035 -33.795781 0.0047453043 249.74113 -1.3080522 + 214900 -33.789488 -33.796734 0.0072464112 381.37216 -0.74462499 + 215000 -33.791201 -33.797623 0.0064215031 337.95798 -0.16836901 + 215100 -33.794835 -33.798149 0.0033133796 174.38022 0.23643052 + 215200 -33.794948 -33.798496 0.0035473232 186.69245 0.61438001 + 215300 -33.788708 -33.798789 0.010080984 530.55318 1.2066333 + 215400 -33.78892 -33.798712 0.0097920357 515.3461 1.8302813 + 215500 -33.792757 -33.798274 0.0055167793 290.34318 2.1866997 + 215600 -33.793637 -33.797798 0.0041610244 218.991 2.4514015 + 215700 -33.791826 -33.797361 0.005535345 291.32027 2.674678 + 215800 -33.787691 -33.796891 0.0092000182 484.18875 2.8774996 + 215900 -33.791025 -33.796486 0.0054605545 287.38411 2.8305764 + 216000 -33.794154 -33.796449 0.0022949858 120.78305 2.6931227 + 216100 -33.793206 -33.796816 0.0036099552 189.98872 2.5378794 + 216200 -33.791042 -33.797572 0.0065303874 343.68846 2.2618973 + 216300 -33.791092 -33.798444 0.0073518435 386.92097 1.8245939 + 216400 -33.794711 -33.799058 0.0043470583 228.7818 1.3366233 + 216500 -33.796442 -33.799418 0.0029755125 156.59857 0.97795573 + 216600 -33.794119 -33.799688 0.0055696298 293.12465 0.7008804 + 216700 -33.788118 -33.799774 0.011655698 613.42897 0.29066441 + 216800 -33.794783 -33.79942 0.0046373527 244.05974 -0.29136619 + 216900 -33.795882 -33.799037 0.0031544961 166.01831 -0.58289338 + 217000 -33.793483 -33.79865 0.0051670063 271.93493 -0.74235871 + 217100 -33.790494 -33.798159 0.0076650863 403.40665 -0.86411783 + 217200 -33.791826 -33.797728 0.0059019419 310.61394 -0.97552521 + 217300 -33.792591 -33.797566 0.0049751764 261.8391 -0.95746678 + 217400 -33.791863 -33.797727 0.0058637812 308.60558 -0.79461296 + 217500 -33.787022 -33.798215 0.011192921 589.07346 -0.41219084 + 217600 -33.791322 -33.79882 0.0074987131 394.65058 -0.10048104 + 217700 -33.795271 -33.799233 0.0039616411 208.49764 0.10763156 + 217800 -33.794792 -33.799659 0.0048665106 256.12011 0.38074253 + 217900 -33.791863 -33.800107 0.0082444739 433.89931 0.73995848 + 218000 -33.793254 -33.800366 0.007112703 374.33521 1.0207205 + 218100 -33.797652 -33.80038 0.0027274679 143.5442 1.1061387 + 218200 -33.797121 -33.800354 0.0032329452 170.14702 1.1953274 + 218300 -33.793909 -33.800265 0.0063561969 334.52098 1.2816157 + 218400 -33.793357 -33.80001 0.0066524778 350.11397 1.2432758 + 218500 -33.794472 -33.799659 0.0051870432 272.98946 1.1040741 + 218600 -33.794562 -33.799337 0.0047751098 251.30977 0.92642401 + 218700 -33.788942 -33.799053 0.010111293 532.14836 0.76041652 + 218800 -33.789464 -33.798685 0.0092215204 485.3204 0.31768717 + 218900 -33.794457 -33.798521 0.0040641402 213.89208 -0.10087388 + 219000 -33.794047 -33.798662 0.0046152477 242.89637 -0.36018202 + 219100 -33.791562 -33.799115 0.007553834 397.55155 -0.59685831 + 219200 -33.792458 -33.799754 0.0072960677 383.98553 -0.89898112 + 219300 -33.797464 -33.800243 0.0027783696 146.22311 -1.1550285 + 219400 -33.796935 -33.80072 0.0037845528 199.17764 -1.2067663 + 219500 -33.793482 -33.801322 0.0078395984 412.59107 -1.1490291 + 219600 -33.79434 -33.801794 0.0074542807 392.31214 -1.1263269 + 219700 -33.798886 -33.801941 0.0030558163 160.82488 -1.1493154 + 219800 -33.799443 -33.801967 0.0025241911 132.84593 -1.0734557 + 219900 -33.798348 -33.801941 0.0035931044 189.10188 -0.91412638 + 220000 -33.795338 -33.8018 0.0064621757 340.09855 -0.64361869 + 220100 -33.793412 -33.801409 0.0079971536 420.88306 -0.31770867 + 220200 -33.796391 -33.800868 0.0044775209 235.64793 -0.10801087 + 220300 -33.798049 -33.800462 0.0024132485 127.00711 0.048471891 + 220400 -33.795573 -33.800191 0.0046179687 243.03957 0.26425508 + 220500 -33.791163 -33.799875 0.0087119525 458.50229 0.58412155 + 220600 -33.794099 -33.799594 0.0054952661 289.21095 0.7123271 + 220700 -33.795883 -33.799494 0.0036111443 190.0513 0.76495783 + 220800 -33.794308 -33.799588 0.0052801787 277.89109 0.80725169 + 220900 -33.786886 -33.79984 0.012954782 681.79863 0.87248011 + 221000 -33.793837 -33.799967 0.0061308225 322.65972 0.58855557 + 221100 -33.79517 -33.800024 0.0048536736 255.44451 0.39258197 + 221200 -33.794522 -33.800071 0.0055494819 292.06428 0.17975908 + 221300 -33.792825 -33.800062 0.0072365498 380.85316 -0.08737783 + 221400 -33.793 -33.799914 0.006914738 363.91649 -0.45249139 + 221500 -33.796322 -33.799703 0.0033811056 177.94457 -0.82742237 + 221600 -33.796723 -33.799574 0.0028507484 150.03235 -1.0682986 + 221700 -33.792302 -33.799497 0.007194837 378.65786 -1.2471133 + 221800 -33.791106 -33.799325 0.0082190951 432.56365 -1.5602549 + 221900 -33.793999 -33.799099 0.0051005541 268.43761 -1.8660358 + 222000 -33.794576 -33.798953 0.0043762874 230.3201 -2.0204792 + 222100 -33.792247 -33.798907 0.0066598511 350.50202 -2.0362566 + 222200 -33.783103 -33.798868 0.015764427 829.66773 -1.8352385 + 222300 -33.793709 -33.798726 0.0050170893 264.04493 -1.9557025 + 222400 -33.794364 -33.79874 0.0043755967 230.28375 -1.8261259 + 222500 -33.792525 -33.798934 0.0064089465 337.29714 -1.548213 + 222600 -33.790973 -33.799245 0.0082723983 435.36894 -1.157175 + 222700 -33.79522 -33.799505 0.0042843395 225.48097 -0.8771513 + 222800 -33.796847 -33.799717 0.0028695367 151.02116 -0.63823916 + 222900 -33.794827 -33.799985 0.0051580454 271.46333 -0.31019778 + 223000 -33.790777 -33.800226 0.0094492816 497.30726 0.16679718 + 223100 -33.793082 -33.800162 0.0070801386 372.62138 0.50347877 + 223200 -33.79483 -33.799861 0.0050302939 264.73988 0.75234936 + 223300 -33.795216 -33.799449 0.0042327555 222.76615 0.94182434 + 223400 -33.792558 -33.798905 0.0063470579 334.04 1.1380334 + 223500 -33.788754 -33.798008 0.0092548557 487.0748 1.3231525 + 223600 -33.792937 -33.79702 0.0040825617 214.86158 1.2783679 + 223700 -33.795047 -33.796533 0.0014858886 78.200994 1.2037046 + 223800 -33.793967 -33.796453 0.0024857739 130.82406 1.1221596 + 223900 -33.792071 -33.796751 0.0046799271 246.30039 0.9499566 + 224000 -33.789645 -33.797391 0.0077466443 407.69898 0.68975363 + 224100 -33.791339 -33.79815 0.006811416 358.47875 0.30291371 + 224200 -33.794837 -33.79874 0.0039028734 205.40475 -0.036572653 + 224300 -33.795085 -33.799253 0.0041678425 219.34983 -0.24463688 + 224400 -33.790317 -33.799795 0.0094787347 498.85735 -0.35643343 + 224500 -33.789006 -33.800144 0.011137853 586.17527 -0.59185918 + 224600 -33.795986 -33.800032 0.0040466922 212.9738 -0.87150655 + 224700 -33.795559 -33.799777 0.004217884 221.98347 -0.91493076 + 224800 -33.792449 -33.7993 0.0068519589 360.61248 -0.8328161 + 224900 -33.790824 -33.798446 0.0076220519 401.14179 -0.69359827 + 225000 -33.793811 -33.797497 0.0036864425 194.01418 -0.5854812 + 225100 -33.795691 -33.79696 0.0012691545 66.794467 -0.4471691 + 225200 -33.794583 -33.796819 0.0022361286 117.68545 -0.18690028 + 225300 -33.790932 -33.796994 0.0060619384 319.03441 0.371896 + 225400 -33.789728 -33.797341 0.0076126839 400.64876 1.0226404 + 225500 -33.792486 -33.797657 0.0051703928 272.11316 1.5227809 + 225600 -33.794295 -33.797928 0.0036321955 191.15921 1.8581784 + 225700 -33.793302 -33.798237 0.0049345095 259.69884 2.1362807 + 225800 -33.785882 -33.798592 0.012710657 668.95053 2.5157396 + 225900 -33.792609 -33.798662 0.0060530807 318.56824 2.5234874 + 226000 -33.794463 -33.798594 0.004131074 217.41474 2.4735514 + 226100 -33.793274 -33.798526 0.0052523607 276.42706 2.3573992 + 226200 -33.790569 -33.798425 0.0078564039 413.47553 2.1148856 + 226300 -33.791661 -33.798242 0.0065811018 346.35752 1.6667162 + 226400 -33.795809 -33.798146 0.0023367527 122.98121 1.2256163 + 226500 -33.795547 -33.798284 0.002736863 144.03866 0.92099405 + 226600 -33.791749 -33.798749 0.0070004263 368.42619 0.55372898 + 226700 -33.791823 -33.79942 0.00759681 399.81334 0.014292345 + 226800 -33.794578 -33.800024 0.0054455054 286.59209 -0.46996236 + 226900 -33.795946 -33.800554 0.0046082579 242.52851 -0.78520111 + 227000 -33.795703 -33.801068 0.0053640127 282.30321 -0.96349243 + 227100 -33.792423 -33.801576 0.0091534655 481.73873 -1.0030709 + 227200 -33.795247 -33.801891 0.0066435899 349.64621 -1.07808 + 227300 -33.798543 -33.801956 0.003413372 179.64272 -1.0771155 + 227400 -33.797965 -33.80194 0.0039740641 209.15145 -0.91477998 + 227500 -33.792959 -33.8018 0.0088401517 465.2493 -0.51319536 + 227600 -33.793677 -33.801382 0.0077050252 405.5086 -0.084087291 + 227700 -33.795926 -33.800895 0.0049690891 261.51873 0.27071392 + 227800 -33.795623 -33.800449 0.0048259304 253.98441 0.66548002 + 227900 -33.793734 -33.800052 0.0063175647 332.48779 1.1239949 + 228000 -33.791473 -33.799708 0.0082348355 433.39205 1.6340607 + 228100 -33.794567 -33.799502 0.0049353967 259.74553 1.9699548 + 228200 -33.79709 -33.799549 0.002459059 129.41808 2.1101014 + 228300 -33.795656 -33.799862 0.0042051241 221.31193 2.1958568 + 228400 -33.791014 -33.800498 0.0094840489 499.13704 2.2235081 + 228500 -33.793794 -33.801093 0.0072987455 384.12647 1.9853589 + 228600 -33.79613 -33.801454 0.0053233987 280.16573 1.6868387 + 228700 -33.796825 -33.801654 0.004829619 254.17854 1.3550927 + 228800 -33.795704 -33.801714 0.0060101768 316.31024 0.96860687 + 228900 -33.790233 -33.801527 0.011293358 594.35934 0.47186545 + 229000 -33.795533 -33.800987 0.0054539819 287.0382 -0.30486132 + 229100 -33.797761 -33.800534 0.002773245 145.95341 -0.78812654 + 229200 -33.796315 -33.800155 0.0038400932 202.10068 -1.1644033 + 229300 -33.793654 -33.799769 0.0061151138 321.83299 -1.5922437 + 229400 -33.793213 -33.799459 0.0062455699 328.69877 -2.0446699 + 229500 -33.793797 -33.799332 0.0055345809 291.28006 -2.3949148 + 229600 -33.794701 -33.799421 0.0047205198 248.43675 -2.5979195 + 229700 -33.795937 -33.799689 0.0037521554 197.47259 -2.651265 + 229800 -33.795258 -33.800097 0.0048391878 254.68214 -2.5251128 + 229900 -33.791695 -33.800626 0.0089305581 470.00731 -2.1755798 + 230000 -33.794497 -33.801011 0.0065140365 342.82793 -1.8297082 + 230100 -33.798012 -33.801122 0.0031098573 163.66901 -1.5658354 + 230200 -33.797253 -33.801123 0.0038702838 203.68958 -1.1995153 + 230300 -33.795042 -33.800971 0.0059286291 312.01846 -0.6799802 + 230400 -33.794529 -33.80057 0.0060412038 317.94317 -0.11220851 + 230500 -33.794838 -33.799981 0.0051431747 270.6807 0.4196192 + 230600 -33.7942 -33.799291 0.005091485 267.96031 0.9323045 + 230700 -33.786669 -33.798376 0.01170649 616.10212 1.6435917 + 230800 -33.788573 -33.797023 0.0084498055 444.70573 2.2806104 + 230900 -33.792207 -33.796186 0.0039787052 209.3957 2.575758 + 231000 -33.791357 -33.795804 0.0044471636 234.05025 2.7734433 + 231100 -33.788057 -33.79582 0.0077627122 408.54462 2.8704326 + 231200 -33.788648 -33.796188 0.0075401927 396.83362 2.7186213 + 231300 -33.793871 -33.796647 0.0027764297 146.12102 2.3879984 + 231400 -33.793507 -33.797222 0.0037149088 195.51234 2.0848693 + 231500 -33.791035 -33.798033 0.0069978867 368.29254 1.6139142 + 231600 -33.791358 -33.798805 0.0074460694 391.87999 0.90366293 + 231700 -33.795882 -33.7992 0.0033181874 174.63324 0.19921137 + 231800 -33.796782 -33.799372 0.0025893846 136.277 -0.2722127 + 231900 -33.795544 -33.799467 0.0039238908 206.51087 -0.74882391 + 232000 -33.793945 -33.799423 0.0054783324 288.31975 -1.3066559 + 232100 -33.792119 -33.799139 0.0070191097 369.40948 -1.9278691 + 232200 -33.792544 -33.798605 0.0060610637 318.98837 -2.5656847 + 232300 -33.794744 -33.798065 0.0033205725 174.75877 -3.0531056 + 232400 -33.795096 -33.797745 0.0026493358 139.43218 -3.2850953 + 232500 -33.790809 -33.797621 0.0068119156 358.50504 -3.2779214 + 232600 -33.789493 -33.797627 0.0081348759 428.13126 -3.1644591 + 232700 -33.792821 -33.797744 0.0049227918 259.08214 -3.0005079 + 232800 -33.793994 -33.797994 0.0039995743 210.49403 -2.6978752 + 232900 -33.791193 -33.798399 0.0072055137 379.21976 -2.1633983 + 233000 -33.785704 -33.798884 0.013180377 693.67147 -1.2024732 + 233100 -33.793997 -33.798988 0.004991459 262.69604 -0.6489847 + 233200 -33.794697 -33.798952 0.0042555089 223.96364 -0.11864412 + 233300 -33.792854 -33.798828 0.0059740772 314.41036 0.47911937 + 233400 -33.789402 -33.79849 0.0090875384 478.26904 1.2109066 + 233500 -33.793068 -33.797926 0.0048572315 255.63176 1.746516 + 233600 -33.795592 -33.797569 0.0019770402 104.04986 1.9996613 + 233700 -33.794265 -33.797423 0.0031576659 166.18514 2.1821883 + 233800 -33.791454 -33.79743 0.0059762469 314.52454 2.3043825 + 233900 -33.790855 -33.797556 0.0067013557 352.68637 2.2556748 + 234000 -33.792361 -33.797766 0.0054047525 284.4473 2.0465521 + 234100 -33.794544 -33.798046 0.0035019898 184.3066 1.7558183 + 234200 -33.795764 -33.798396 0.0026326955 138.55642 1.4587024 + 234300 -33.793974 -33.798884 0.0049103542 258.42756 1.1515039 + 234400 -33.78867 -33.799603 0.01093317 575.40301 0.67494318 + 234500 -33.794229 -33.80008 0.0058509497 307.93026 -0.02636838 + 234600 -33.795878 -33.800292 0.0044142413 232.31758 -0.47532274 + 234700 -33.795083 -33.800409 0.005325907 280.29773 -0.82269399 + 234800 -33.793481 -33.800406 0.0069253228 364.47356 -1.1293321 + 234900 -33.792942 -33.800221 0.0072794908 383.11311 -1.4011929 + 235000 -33.795749 -33.799924 0.004174658 219.70853 -1.6127385 + 235100 -33.796644 -33.7997 0.003055903 160.82945 -1.6363806 + 235200 -33.793654 -33.799549 0.0058954111 310.27023 -1.4282377 + 235300 -33.790559 -33.799358 0.0087984136 463.05266 -1.0032328 + 235400 -33.793786 -33.799135 0.0053486373 281.49401 -0.6219206 + 235500 -33.795007 -33.799019 0.004011317 211.11204 -0.21532093 + 235600 -33.793925 -33.799028 0.0051028859 268.56033 0.29988192 + 235700 -33.793177 -33.799122 0.0059445263 312.85511 0.89271558 + 235800 -33.793287 -33.799253 0.0059656295 313.96576 1.4670547 + 235900 -33.794027 -33.799398 0.0053707025 282.65528 1.9585818 + 236000 -33.794931 -33.799564 0.0046335739 243.86086 2.3300131 + 236100 -33.794947 -33.79977 0.0048233307 253.84759 2.5946845 + 236200 -33.792556 -33.800031 0.0074755286 393.4304 2.8061524 + 236300 -33.792297 -33.80027 0.0079723518 419.57777 2.8660672 + 236400 -33.79685 -33.800396 0.0035459295 186.6191 2.7089724 + 236500 -33.797409 -33.800525 0.0031167365 164.03106 2.5329837 + 236600 -33.793809 -33.800731 0.0069221041 364.30416 2.2726022 + 236700 -33.791761 -33.800905 0.0091449422 481.29015 1.7354779 + 236800 -33.794624 -33.800891 0.0062671066 329.83223 1.0864927 + 236900 -33.796242 -33.800803 0.0045614566 240.06539 0.52789991 + 237000 -33.795983 -33.800729 0.00474591 249.77301 0.045536195 + 237100 -33.791723 -33.800671 0.0089488027 470.9675 -0.42039353 + 237200 -33.792047 -33.800545 0.00849801 447.24269 -1.056195 + 237300 -33.79741 -33.800471 0.003061183 161.10733 -1.5207606 + 237400 -33.796821 -33.800578 0.0037571342 197.73462 -1.667707 + 237500 -33.794052 -33.800871 0.0068197008 358.91477 -1.6499297 + 237600 -33.793735 -33.801228 0.0074923571 394.31607 -1.5457493 + 237700 -33.797275 -33.801469 0.0041943581 220.74532 -1.4213885 + 237800 -33.800025 -33.801613 0.0015881273 83.581725 -1.2598708 + 237900 -33.800543 -33.801744 0.0012009701 63.205985 -1.0423362 + 238000 -33.796412 -33.801947 0.0055340824 291.25382 -0.53918501 + 238100 -33.793437 -33.802041 0.0086035412 452.7967 0.29631505 + 238200 -33.796761 -33.801778 0.0050171071 264.04587 0.98237059 + 238300 -33.798359 -33.801396 0.0030369471 159.83182 1.4933075 + 238400 -33.796449 -33.800941 0.0044913984 236.37829 2.0179015 + 238500 -33.792286 -33.800183 0.0078968039 415.60175 2.7141896 + 238600 -33.793442 -33.799267 0.0058248043 306.55425 3.2436401 + 238700 -33.794361 -33.79855 0.0041892604 220.47704 3.564329 + 238800 -33.791108 -33.798074 0.0069653509 366.5802 3.7856604 + 238900 -33.785497 -33.797642 0.012144771 639.16846 3.888926 + 239000 -33.792014 -33.797443 0.0054293765 285.74324 3.5835293 + 239100 -33.792836 -33.797559 0.0047228588 248.55985 3.2432533 + 239200 -33.79177 -33.797915 0.0061451437 323.41343 2.7471519 + 239300 -33.790266 -33.798382 0.0081160151 427.13864 2.0282558 + 239400 -33.793973 -33.798702 0.0047295525 248.91213 1.1441809 + 239500 -33.795938 -33.798851 0.0029136006 153.3402 0.47672246 + 239600 -33.79424 -33.798951 0.0047113844 247.95596 -0.14894957 + 239700 -33.789463 -33.798866 0.0094029581 494.8693 -1.029808 + 239800 -33.79199 -33.798391 0.0064004671 336.85088 -2.0931974 + 239900 -33.793186 -33.797787 0.0046014865 242.17213 -2.8915511 + 240000 -33.792427 -33.797184 0.0047576417 250.39044 -3.5061417 + 240100 -33.789386 -33.796581 0.0071948665 378.6594 -4.0055406 + 240200 -33.785842 -33.795952 0.010110356 532.099 -4.4266219 + 240300 -33.791189 -33.795522 0.0043331852 228.05167 -4.7912941 + 240400 -33.792653 -33.79558 0.0029266102 154.02488 -4.7834918 + 240500 -33.790092 -33.796101 0.0060093208 316.2652 -4.4374261 + 240600 -33.786913 -33.797014 0.010101077 531.61068 -3.7459314 + 240700 -33.792961 -33.797705 0.0047438098 249.66248 -3.1978854 + 240800 -33.793749 -33.798148 0.0043982479 231.47586 -2.6470727 + 240900 -33.792515 -33.798514 0.0059983294 315.68672 -1.9587828 + 241000 -33.791721 -33.798684 0.0069626257 366.43678 -1.1745501 + 241100 -33.79414 -33.798578 0.0044380169 233.56887 -0.5050293 + 241200 -33.79629 -33.798391 0.0021005773 110.55151 -0.064876446 + 241300 -33.795153 -33.798242 0.0030888019 162.56089 0.33013575 + 241400 -33.791013 -33.798017 0.007003958 368.61206 0.89484235 + 241500 -33.791359 -33.79767 0.006311538 332.17062 1.3447162 + 241600 -33.792909 -33.797377 0.0044684609 235.17111 1.6018407 + 241700 -33.792931 -33.797274 0.0043435599 228.59768 1.7185972 + 241800 -33.787957 -33.797399 0.0094416069 496.90335 1.7778931 + 241900 -33.789411 -33.797662 0.0082518075 434.28527 1.5435183 + 242000 -33.793883 -33.797933 0.0040505096 213.17471 1.2017276 + 242100 -33.793389 -33.798334 0.0049443251 260.21542 0.88071651 + 242200 -33.79179 -33.798867 0.0070761641 372.41221 0.44204529 + 242300 -33.793366 -33.799348 0.0059827087 314.86462 -0.1440927 + 242400 -33.797302 -33.799615 0.0023123725 121.6981 -0.6304021 + 242500 -33.796779 -33.799832 0.0030524386 160.64712 -0.94640695 + 242600 -33.793417 -33.800065 0.0066478136 349.8685 -1.3049448 + 242700 -33.793156 -33.800123 0.0069665845 366.64513 -1.7885171 + 242800 -33.794824 -33.799958 0.0051341192 270.20412 -2.2185942 + 242900 -33.795262 -33.799705 0.0044428132 233.82129 -2.5032711 + 243000 -33.789998 -33.799385 0.0093874545 494.05336 -2.5954463 + 243100 -33.789079 -33.798796 0.0097169936 511.3967 -2.7255497 + 243200 -33.794266 -33.798359 0.0040936395 215.4446 -2.8259197 + 243300 -33.79406 -33.798243 0.004183478 220.17271 -2.6722737 + 243400 -33.791368 -33.798425 0.0070569915 371.40317 -2.2804248 + 243500 -33.790732 -33.798818 0.0080862276 425.57095 -1.7312091 + 243600 -33.796594 -33.799167 0.0025727188 135.3999 -1.376015 + 243700 -33.796457 -33.799535 0.0030778671 161.9854 -0.99947403 + 243800 -33.793103 -33.800062 0.00695983 366.28965 -0.41937575 + 243900 -33.792425 -33.800507 0.0080819894 425.34789 0.24450021 + 244000 -33.796163 -33.800611 0.0044478623 234.08703 0.69550988 + 244100 -33.797023 -33.800549 0.0035257952 185.55946 1.0369847 + 244200 -33.795437 -33.800386 0.0049490141 260.4622 1.3748092 + 244300 -33.79474 -33.800082 0.0053422623 281.1585 1.6554568 + 244400 -33.794011 -33.799679 0.0056675211 298.27658 1.8534223 + 244500 -33.792832 -33.799223 0.0063906332 336.33332 1.970539 + 244600 -33.792344 -33.798789 0.0064456111 339.22676 1.9762882 + 244700 -33.793334 -33.798519 0.0051852703 272.89615 1.8597553 + 244800 -33.794366 -33.798533 0.0041665903 219.28393 1.6742385 + 244900 -33.793322 -33.798873 0.0055505 292.11786 1.4641372 + 245000 -33.789775 -33.799577 0.0098022833 515.88543 1.1904148 + 245100 -33.794805 -33.800348 0.0055426915 291.70691 0.72310871 + 245200 -33.797156 -33.800918 0.0037617565 197.97789 0.43199012 + 245300 -33.796019 -33.801518 0.0054990371 289.40942 0.23670389 + 245400 -33.794394 -33.802113 0.0077184622 406.21578 0.044959075 + 245500 -33.798322 -33.802457 0.0041353765 217.64118 -0.21109123 + 245600 -33.800458 -33.802562 0.0021039243 110.72766 -0.32059045 + 245700 -33.798758 -33.802609 0.0038506271 202.65507 -0.28551737 + 245800 -33.795492 -33.80251 0.0070187078 369.38833 -0.14511371 + 245900 -33.795939 -33.802137 0.0061983142 326.21175 -0.013180658 + 246000 -33.797204 -33.801617 0.0044126363 232.23311 0.13838265 + 246100 -33.796306 -33.801065 0.0047595078 250.48865 0.3736651 + 246200 -33.789865 -33.800257 0.010392446 546.94516 0.86138253 + 246300 -33.793362 -33.799284 0.0059221089 311.67531 1.2156216 + 246400 -33.795612 -33.798714 0.0031026342 163.28887 1.4774472 + 246500 -33.794094 -33.798503 0.0044092223 232.05344 1.7841053 + 246600 -33.789813 -33.798576 0.0087636731 461.2243 2.2094016 + 246700 -33.791492 -33.798818 0.0073266305 385.59403 2.4824839 + 246800 -33.793994 -33.799133 0.0051389783 270.45984 2.607301 + 246900 -33.795075 -33.799504 0.0044293647 233.11351 2.6357413 + 247000 -33.7943 -33.799932 0.0056314766 296.37959 2.5900061 + 247100 -33.790533 -33.80037 0.0098368203 517.70308 2.4684883 + 247200 -33.794573 -33.800562 0.0059894511 315.21947 2.0848388 + 247300 -33.797473 -33.800545 0.0030722275 161.68859 1.7555864 + 247400 -33.79636 -33.800481 0.0041210475 216.88705 1.4556122 + 247500 -33.793025 -33.800277 0.0072516279 381.64671 1.033711 + 247600 -33.793372 -33.799814 0.0064415771 339.01446 0.44034329 + 247700 -33.794295 -33.799231 0.004935348 259.74296 -0.11548897 + 247800 -33.793799 -33.798635 0.0048358109 254.50441 -0.5929083 + 247900 -33.789629 -33.797976 0.0083476866 439.3313 -1.015877 + 248000 -33.785345 -33.796992 0.011646813 612.96136 -1.5443346 + 248100 -33.793329 -33.796278 0.0029490025 155.20337 -2.0596688 + 248200 -33.792777 -33.796138 0.0033615766 176.91678 -2.1526391 + 248300 -33.788905 -33.796433 0.0075283327 396.20944 -2.0156518 + 248400 -33.788782 -33.796998 0.0082160451 432.40313 -1.7839767 + 248500 -33.793119 -33.797499 0.0043804325 230.53826 -1.5866896 + 248600 -33.793429 -33.797995 0.0045657404 240.29084 -1.2791041 + 248700 -33.792463 -33.798548 0.0060845762 320.22582 -0.85514764 + 248800 -33.79256 -33.799011 0.0064512625 339.52419 -0.39002428 + 248900 -33.794712 -33.799263 0.0045512065 239.52594 0.0050882273 + 249000 -33.797411 -33.799362 0.0019511837 102.68906 0.26001218 + 249100 -33.797494 -33.799454 0.0019602073 103.16396 0.46570149 + 249200 -33.793075 -33.799599 0.0065241335 343.35933 0.80677643 + 249300 -33.792548 -33.799604 0.0070557704 371.3389 1.1070195 + 249400 -33.79476 -33.799425 0.0046652068 245.52567 1.2619857 + 249500 -33.795578 -33.799231 0.0036527539 192.24118 1.3401223 + 249600 -33.791905 -33.799059 0.0071541472 376.51638 1.4230036 + 249700 -33.788886 -33.798762 0.0098764602 519.78929 1.3969298 + 249800 -33.793711 -33.798462 0.0047508284 250.03186 1.1601703 + 249900 -33.79404 -33.798357 0.0043169566 227.19757 0.97525403 + 250000 -33.792642 -33.798448 0.0058059189 305.56033 0.75209061 + 250100 -33.791637 -33.798691 0.0070536042 371.2249 0.44491235 + 250200 -33.794506 -33.798977 0.0044707428 235.29121 0.055265256 + 250300 -33.7972 -33.799236 0.0020359512 107.1503 -0.21255039 + 250400 -33.79589 -33.799607 0.0037167616 195.60985 -0.37204604 + 250500 -33.792552 -33.800124 0.007571554 398.48414 -0.54945009 + 250600 -33.793593 -33.80047 0.0068767885 361.91925 -0.82304021 + 250700 -33.795557 -33.80053 0.0049738383 261.76867 -1.054506 + 250800 -33.795802 -33.800415 0.0046127521 242.76503 -1.1939747 + 250900 -33.791355 -33.800122 0.0087666923 461.3832 -1.205174 + 251000 -33.787473 -33.799272 0.01179817 620.92714 -1.224283 + 251100 -33.794041 -33.798398 0.0043579466 229.35484 -1.38304 + 251200 -33.794081 -33.797819 0.0037376605 196.70974 -1.3436996 + 251300 -33.790932 -33.797439 0.0065061498 342.41286 -1.1557821 + 251400 -33.788959 -33.797223 0.0082646914 434.96334 -0.88713998 + 251500 -33.792185 -33.797224 0.00503876 265.18544 -0.70350774 + 251600 -33.794577 -33.797456 0.0028788358 151.51056 -0.55059627 + 251700 -33.79665 -33.797822 0.0011712402 61.641328 -0.46026415 + 251800 -33.79598 -33.798363 0.0023829885 125.41456 -0.35288505 + 251900 -33.79231 -33.799284 0.0069748197 367.07854 -0.16248883 + 252000 -33.792477 -33.800177 0.0077002243 405.25594 -0.051396544 + 252100 -33.795702 -33.800624 0.0049221584 259.04881 -0.052601874 + 252200 -33.796673 -33.80078 0.0041069386 216.14452 -0.056762321 + 252300 -33.793707 -33.800762 0.0070545531 371.27484 -0.022829289 + 252400 -33.786957 -33.800302 0.013344706 702.31995 0.018086137 + 252500 -33.794622 -33.799563 0.0049415403 260.06886 -0.23753878 + 252600 -33.795321 -33.798988 0.0036676147 193.02329 -0.3452741 + 252700 -33.792869 -33.798533 0.005664162 298.09979 -0.40367968 + 252800 -33.789809 -33.798147 0.0083378158 438.81181 -0.47752006 + 252900 -33.792159 -33.797973 0.005813574 305.96321 -0.63638903 + 253000 -33.7939 -33.798133 0.004233128 222.78575 -0.72614723 + 253100 -33.793237 -33.798638 0.0054015757 284.28011 -0.71639342 + 253200 -33.789178 -33.799529 0.010350562 544.74086 -0.58584436 + 253300 -33.794441 -33.800365 0.0059240054 311.77512 -0.60406204 + 253400 -33.797067 -33.800898 0.0038314444 201.6455 -0.56843291 + 253500 -33.796499 -33.801347 0.0048476029 255.12502 -0.44919485 + 253600 -33.792977 -33.801715 0.0087385149 459.90025 -0.22634389 + 253700 -33.794712 -33.801756 0.0070439994 370.7194 -0.076642836 + 253800 -33.799031 -33.801562 0.0025307045 133.18872 -0.037138042 + 253900 -33.79843 -33.801358 0.0029284065 154.11942 0.078428093 + 254000 -33.795832 -33.801075 0.0052424915 275.90765 0.26339864 + 254100 -33.794618 -33.800673 0.0060546405 318.65033 0.44249309 + 254200 -33.794518 -33.800253 0.0057354362 301.85089 0.59031324 + 254300 -33.794244 -33.799938 0.0056939902 299.66963 0.71979588 + 254400 -33.791935 -33.799785 0.0078502264 413.15041 0.87110629 + 254500 -33.792353 -33.79978 0.0074263986 390.84473 0.94586831 + 254600 -33.796125 -33.799915 0.0037905833 199.49502 0.90327661 + 254700 -33.796504 -33.800214 0.0037102013 195.26458 0.88155413 + 254800 -33.791757 -33.800708 0.0089506076 471.06249 0.9087399 + 254900 -33.790598 -33.801185 0.010587101 557.18968 0.78482905 + 255000 -33.797129 -33.801262 0.0041335412 217.54458 0.52508647 + 255100 -33.796497 -33.801206 0.0047081814 247.78739 0.40051221 + 255200 -33.793869 -33.800968 0.0070987525 373.60101 0.26984716 + 255300 -33.793079 -33.800414 0.0073347506 386.02138 0.059037597 + 255400 -33.796427 -33.799738 0.003311122 174.2614 -0.20020439 + 255500 -33.797602 -33.799282 0.0016797516 88.403827 -0.33873343 + 255600 -33.794893 -33.798943 0.0040496327 213.12856 -0.37223625 + 255700 -33.792127 -33.79853 0.0064031725 336.99326 -0.40487841 + 255800 -33.79181 -33.798124 0.0063142089 332.31118 -0.44320863 + 255900 -33.792747 -33.797842 0.0050943804 268.1127 -0.44486106 + 256000 -33.793101 -33.797774 0.0046723122 245.89963 -0.37017121 + 256100 -33.790787 -33.797946 0.0071595672 376.80164 -0.16412875 + 256200 -33.789093 -33.798294 0.009201128 484.24716 0.13033245 + 256300 -33.794581 -33.798611 0.004030188 212.1052 0.27265891 + 256400 -33.795256 -33.798965 0.0037089818 195.20041 0.46318747 + 256500 -33.793167 -33.799467 0.0063000575 331.56641 0.74182488 + 256600 -33.792072 -33.79998 0.0079078176 416.18139 1.0401706 + 256700 -33.797736 -33.800241 0.0025051693 131.84482 1.134382 + 256800 -33.798152 -33.80039 0.0022374541 117.75522 1.2233246 + 256900 -33.795273 -33.800576 0.0053025866 279.07041 1.3572195 + 257000 -33.792707 -33.800643 0.0079361363 417.67177 1.4647525 + 257100 -33.795 -33.800429 0.0054292257 285.73531 1.4271496 + 257200 -33.797093 -33.800121 0.0030282999 159.37672 1.3487345 + 257300 -33.797192 -33.799863 0.0026717951 140.6142 1.2747628 + 257400 -33.792566 -33.799565 0.0069991729 368.36023 1.217829 + 257500 -33.791172 -33.799045 0.0078730677 414.35253 1.0014113 + 257600 -33.79431 -33.798514 0.0042044444 221.27616 0.70603088 + 257700 -33.795171 -33.798216 0.0030449502 160.25301 0.50331651 + 257800 -33.790216 -33.798128 0.0079114549 416.37281 0.39423479 + 257900 -33.788767 -33.798074 0.00930729 489.83437 0.13840011 + 258000 -33.792955 -33.798037 0.0050815917 267.43964 -0.15020663 + 258100 -33.793459 -33.798142 0.0046827294 246.44787 -0.29041994 + 258200 -33.792063 -33.798393 0.0063300587 333.14534 -0.35274594 + 258300 -33.789006 -33.798693 0.0096867623 509.80566 -0.35526188 + 258400 -33.792905 -33.798831 0.0059268321 311.92389 -0.46596538 + 258500 -33.795676 -33.798857 0.0031810914 167.418 -0.51789079 + 258600 -33.794582 -33.798902 0.0043197221 227.34312 -0.46204968 + 258700 -33.789949 -33.798885 0.0089357435 470.28021 -0.2939537 + 258800 -33.791848 -33.798599 0.0067503211 355.26338 -0.23013111 + 258900 -33.794445 -33.798236 0.0037907421 199.50338 -0.19504923 + 259000 -33.794135 -33.797934 0.0037997859 199.97935 -0.10203477 + 259100 -33.792448 -33.797689 0.0052415853 275.85996 0.034457613 + 259200 -33.78978 -33.797468 0.007687108 404.56564 0.21427062 + 259300 -33.79093 -33.797274 0.0063440375 333.88104 0.31944462 + 259400 -33.794594 -33.797257 0.0026629366 140.14798 0.33008537 + 259500 -33.795052 -33.797517 0.0024651495 129.73862 0.36003096 + 259600 -33.788682 -33.798209 0.0095267202 501.38278 0.50086735 + 259700 -33.789909 -33.799143 0.009233676 485.96013 0.45907053 + 259800 -33.794501 -33.799698 0.0051962222 273.47254 0.31915314 + 259900 -33.795579 -33.800056 0.0044767092 235.60521 0.22136085 + 260000 -33.794579 -33.80031 0.0057308601 301.61005 0.12597923 + 260100 -33.790235 -33.800381 0.010145392 533.94295 0.028132634 + 260200 -33.793701 -33.800053 0.0063525958 334.33145 -0.27830766 + 260300 -33.797007 -33.799654 0.0026464569 139.28067 -0.51433711 + 260400 -33.795979 -33.799285 0.0033055452 173.9679 -0.65350439 + 260500 -33.793107 -33.798801 0.0056941742 299.67931 -0.80973172 + 260600 -33.792312 -33.798225 0.0059128234 311.18662 -1.0330946 + 260700 -33.792226 -33.797735 0.0055087847 289.92242 -1.2444892 + 260800 -33.791087 -33.797468 0.0063805019 335.80012 -1.3939214 + 260900 -33.787334 -33.797492 0.01015788 534.60016 -1.4603829 + 261000 -33.792176 -33.79779 0.0056141368 295.46701 -1.6343163 + 261100 -33.79458 -33.798284 0.0037038231 194.92891 -1.6750648 + 261200 -33.793408 -33.799071 0.0056627873 298.02744 -1.576111 + 261300 -33.79078 -33.800139 0.0093590034 492.556 -1.3739237 + 261400 -33.796434 -33.801014 0.0045795808 241.01925 -1.3130855 + 261500 -33.798243 -33.801482 0.0032393642 170.48485 -1.2198686 + 261600 -33.796352 -33.801858 0.0055058958 289.77039 -1.0348944 + 261700 -33.792778 -33.802066 0.0092887425 488.85823 -0.76441826 + 261800 -33.797404 -33.801894 0.0044898765 236.29819 -0.66944599 + 261900 -33.799716 -33.80164 0.0019242199 101.26998 -0.61404999 + 262000 -33.798785 -33.801365 0.0025804692 135.80779 -0.51652005 + 262100 -33.796483 -33.800981 0.0044977968 236.71503 -0.38796588 + 262200 -33.79391 -33.800437 0.0065273117 343.52659 -0.25452492 + 262300 -33.793245 -33.799804 0.0065590088 345.19478 -0.17603003 + 262400 -33.794613 -33.799284 0.0046717152 245.86821 -0.16711109 + 262500 -33.796182 -33.799055 0.0028736759 151.239 -0.19085294 + 262600 -33.794997 -33.799146 0.0041489664 218.3564 -0.18302503 + 262700 -33.789777 -33.799586 0.0098086784 516.222 -0.12776466 + 262800 -33.793337 -33.800133 0.0067956312 357.64801 -0.26820904 + 262900 -33.796007 -33.800548 0.0045415045 239.01533 -0.3825778 + 263000 -33.795565 -33.800931 0.0053667367 282.44657 -0.43646588 + 263100 -33.794825 -33.801241 0.006416042 337.67057 -0.49080217 + 263200 -33.795797 -33.801364 0.0055670967 292.99133 -0.5765221 + 263300 -33.799075 -33.801315 0.0022402851 117.90421 -0.68377648 + 263400 -33.799262 -33.801239 0.0019768842 104.04165 -0.7007252 + 263500 -33.79599 -33.801109 0.0051195246 269.43601 -0.62432244 + 263600 -33.794159 -33.800797 0.0066378254 349.34283 -0.54426173 + 263700 -33.794721 -33.800342 0.005620503 295.80206 -0.48290157 + 263800 -33.795453 -33.799902 0.0044490296 234.14846 -0.3990438 + 263900 -33.793582 -33.799559 0.0059769532 314.56172 -0.22386255 + 264000 -33.789182 -33.799252 0.010069971 529.97357 0.091002874 + 264100 -33.793988 -33.799057 0.0050691485 266.78476 0.24558398 + 264200 -33.795817 -33.799113 0.0032966274 173.49856 0.39665024 + 264300 -33.794471 -33.799419 0.0049478056 260.3986 0.61860094 + 264400 -33.793105 -33.799897 0.006791824 357.44764 0.8715824 + 264500 -33.793913 -33.800329 0.0064161207 337.67471 1.0676257 + 264600 -33.795335 -33.800592 0.0052569758 276.66995 1.2017268 + 264700 -33.796022 -33.800694 0.0046719645 245.88132 1.2984208 + 264800 -33.795552 -33.800654 0.005102704 268.55076 1.3733511 + 264900 -33.792968 -33.800419 0.0074501652 392.09555 1.451602 + 265000 -33.793154 -33.799903 0.0067498594 355.23908 1.4324705 + 265100 -33.79565 -33.799327 0.0036772213 193.52888 1.3346458 + 265200 -33.795749 -33.798884 0.0031342967 164.95524 1.2627562 + 265300 -33.790489 -33.79845 0.0079605968 418.95911 1.2425814 + 265400 -33.790305 -33.797928 0.0076236152 401.22407 1.0636019 + 265500 -33.793019 -33.797591 0.0045721644 240.62893 0.85523754 + 265600 -33.79319 -33.797527 0.0043364604 228.22404 0.73180766 + 265700 -33.786784 -33.79771 0.010926705 575.06276 0.74018844 + 265800 -33.787784 -33.797929 0.010144689 533.90593 0.57646782 + 265900 -33.792961 -33.797978 0.0050172287 264.05227 0.39979177 + 266000 -33.793139 -33.798024 0.0048854087 257.1147 0.37021434 + 266100 -33.791692 -33.798038 0.0063458986 333.97898 0.41243424 + 266200 -33.789988 -33.797902 0.0079139771 416.50555 0.50026602 + 266300 -33.792889 -33.797573 0.0046839898 246.5142 0.52541252 + 266400 -33.794908 -33.797294 0.0023861957 125.58335 0.57257977 + 266500 -33.793216 -33.797117 0.0039014873 205.3318 0.72576378 + 266600 -33.788941 -33.796884 0.0079429016 418.02783 1.0326721 + 266700 -33.790571 -33.796546 0.0059752877 314.47406 1.2527664 + 266800 -33.7922 -33.796281 0.0040809505 214.77679 1.4343625 + 266900 -33.791221 -33.796172 0.0049514823 260.59209 1.6464858 + 267000 -33.784214 -33.796138 0.011923333 627.51436 2.0299751 + 267100 -33.789888 -33.795988 0.0060995285 321.01274 2.1428836 + 267200 -33.791744 -33.795919 0.0041754388 219.74962 2.216785 + 267300 -33.790647 -33.795991 0.0053440268 281.25136 2.2835402 + 267400 -33.788623 -33.796142 0.0075190387 395.7203 2.3024293 + 267500 -33.790417 -33.796252 0.0058348616 307.08356 2.1746192 + 267600 -33.793901 -33.796346 0.0024449584 128.67598 1.9890697 + 267700 -33.793146 -33.796573 0.0034267311 180.3458 1.8490439 + 267800 -33.78875 -33.796994 0.0082438676 433.8674 1.6548578 + 267900 -33.789913 -33.79736 0.0074461801 391.88582 1.2557041 + 268000 -33.792281 -33.797547 0.0052660804 277.14911 0.87036326 + 268100 -33.792687 -33.797689 0.0050018938 263.24521 0.55673266 + 268200 -33.791857 -33.797846 0.0059892306 315.20786 0.27365498 + 268300 -33.787978 -33.79802 0.010042159 528.50987 0.034765332 + 268400 -33.789572 -33.798111 0.0085389656 449.39814 -0.33205474 + 268500 -33.794589 -33.798172 0.003582335 188.53509 -0.61114624 + 268600 -33.79427 -33.798404 0.0041335369 217.54436 -0.67773147 + 268700 -33.790368 -33.798881 0.0085129191 448.02734 -0.60168646 + 268800 -33.79171 -33.79945 0.0077399807 407.34828 -0.55892085 + 268900 -33.796876 -33.799808 0.002932196 154.31886 -0.57220167 + 269000 -33.795999 -33.800174 0.004174578 219.70432 -0.43364792 + 269100 -33.793028 -33.800615 0.0075872605 399.31075 -0.18420504 + 269200 -33.793828 -33.800935 0.0071065238 374.01001 0.031843505 + 269300 -33.798284 -33.801031 0.0027471235 144.57866 0.11448605 + 269400 -33.798576 -33.801073 0.0024961815 131.37181 0.21861318 + 269500 -33.797047 -33.801111 0.0040643916 213.90531 0.35383149 + 269600 -33.795273 -33.801092 0.005818247 306.20915 0.48587811 + 269700 -33.793928 -33.80095 0.0070215277 369.53674 0.58415751 + 269800 -33.795277 -33.800692 0.005415577 285.01699 0.58541447 + 269900 -33.797821 -33.800472 0.0026506895 139.50342 0.51686619 + 270000 -33.797918 -33.800391 0.002472627 130.13215 0.45791888 + 270100 -33.793133 -33.800445 0.0073118116 384.81412 0.41659855 + 270200 -33.79284 -33.800566 0.0077257006 406.59673 0.19844297 + 270300 -33.796007 -33.800697 0.0046902381 246.84305 -0.07900571 + 270400 -33.796916 -33.800883 0.0039674871 208.80531 -0.28396971 + 270500 -33.793102 -33.801173 0.0080716515 424.80382 -0.41477794 + 270600 -33.789736 -33.801526 0.011790218 620.50863 -0.65503207 + 270700 -33.796748 -33.801647 0.0048991309 257.83689 -1.0146081 + 270800 -33.797124 -33.801686 0.0045621661 240.10273 -1.1665444 + 270900 -33.795372 -33.801662 0.0062894934 331.01043 -1.2460621 + 271000 -33.79267 -33.801482 0.008812138 463.77496 -1.2855126 + 271100 -33.796324 -33.801112 0.0047884297 252.01079 -1.4084518 + 271200 -33.798559 -33.800811 0.0022511547 118.47626 -1.4448857 + 271300 -33.796995 -33.800559 0.0035640482 187.57268 -1.3473699 + 271400 -33.793651 -33.800202 0.0065509742 344.77193 -1.1198419 + 271500 -33.793681 -33.799751 0.0060692856 319.42109 -0.89650185 + 271600 -33.794456 -33.799321 0.0048647109 256.02539 -0.67294907 + 271700 -33.793826 -33.798975 0.0051496377 271.02084 -0.41265874 + 271800 -33.788785 -33.798649 0.009864271 519.14779 -2.5684971e-05 + 271900 -33.791482 -33.798313 0.0068312314 359.52161 0.29070997 + 272000 -33.794977 -33.798188 0.003210568 168.96933 0.42720416 + 272100 -33.794174 -33.798298 0.0041246948 217.07901 0.57220877 + 272200 -33.792064 -33.798632 0.006567611 345.64751 0.70207835 + 272300 -33.792231 -33.799071 0.0068401839 359.99278 0.72473207 + 272400 -33.79366 -33.799472 0.0058120454 305.88277 0.65036466 + 272500 -33.794462 -33.799803 0.0053403101 281.05576 0.52373912 + 272600 -33.794525 -33.800056 0.0055306644 291.07393 0.34951434 + 272700 -33.79363 -33.800205 0.0065743124 346.0002 0.12962794 + 272800 -33.792962 -33.800192 0.0072296646 380.4908 -0.16714144 + 272900 -33.795244 -33.800011 0.0047671301 250.88981 -0.52722214 + 273000 -33.796202 -33.799788 0.0035861649 188.73666 -0.81781064 + 273100 -33.793732 -33.799539 0.0058070028 305.61738 -1.0535002 + 273200 -33.789651 -33.799128 0.009477645 498.8 -1.3527962 + 273300 -33.793557 -33.798647 0.0050906017 267.91383 -1.7646088 + 273400 -33.795273 -33.798366 0.0030927764 162.77006 -1.9859491 + 273500 -33.794071 -33.798271 0.0041995668 221.01946 -2.0627209 + 273600 -33.792939 -33.798328 0.0053884013 283.58675 -2.0645827 + 273700 -33.791782 -33.79849 0.0067076799 353.01921 -1.9769515 + 273800 -33.792482 -33.798669 0.0061868106 325.60632 -1.8425734 + 273900 -33.794781 -33.798804 0.0040237024 211.76387 -1.6943801 + 274000 -33.795609 -33.798923 0.0033137566 174.40005 -1.493161 + 274100 -33.792088 -33.799049 0.0069613509 366.36969 -1.1221368 + 274200 -33.788971 -33.799029 0.010057857 529.33606 -0.57345464 + 274300 -33.794168 -33.798778 0.0046102634 242.63405 -0.25171945 + 274400 -33.794646 -33.798518 0.0038720742 203.78381 0.066389778 + 274500 -33.793178 -33.798256 0.0050775755 267.22827 0.43053313 + 274600 -33.791492 -33.797973 0.0064804203 341.05874 0.82586049 + 274700 -33.791557 -33.797714 0.00615705 324.04005 1.1603991 + 274800 -33.792543 -33.797577 0.0050343678 264.95429 1.3931122 + 274900 -33.795069 -33.797627 0.0025573373 134.59038 1.4813289 + 275000 -33.795361 -33.797883 0.0025228139 132.77344 1.4999752 + 275100 -33.791466 -33.798446 0.0069802924 367.36656 1.5013179 + 275200 -33.790094 -33.799205 0.009111082 479.50812 1.3296835 + 275300 -33.794908 -33.799677 0.0047691242 250.99476 1.0075215 + 275400 -33.795588 -33.799934 0.0043460152 228.7269 0.76595985 + 275500 -33.794503 -33.800064 0.0055603215 292.63476 0.50711929 + 275600 -33.793743 -33.799989 0.0062457742 328.70952 0.18636503 + 275700 -33.7941 -33.799673 0.0055726258 293.28233 -0.16605484 + 275800 -33.794223 -33.799181 0.0049578107 260.92515 -0.48536683 + 275900 -33.787647 -33.798475 0.010827834 569.85923 -0.67499265 + 276000 -33.78765 -33.79711 0.0094602328 497.88361 -1.09522 + 276100 -33.792923 -33.796138 0.0032149573 169.20033 -1.4094516 + 276200 -33.792437 -33.795631 0.003194208 168.10832 -1.4501031 + 276300 -33.788204 -33.795411 0.0072063608 379.26434 -1.2684798 + 276400 -33.78765 -33.795428 0.0077782137 409.36045 -0.99759312 + 276500 -33.79056 -33.795615 0.0050552248 266.05197 -0.73424139 + 276600 -33.791382 -33.795929 0.0045476197 239.33717 -0.40828791 + 276700 -33.78974 -33.79634 0.0066005049 347.37868 0.032601725 + 276800 -33.781469 -33.796733 0.015264241 803.34337 0.81127869 + 276900 -33.791567 -33.796692 0.0051256731 269.7596 1.1495579 + 277000 -33.792957 -33.796536 0.0035799099 188.40746 1.4482098 + 277100 -33.791095 -33.796354 0.0052597434 276.81561 1.7697785 + 277200 -33.787303 -33.796033 0.0087303235 459.46914 2.1542619 + 277300 -33.789975 -33.795582 0.0056070075 295.0918 2.3504086 + 277400 -33.793398 -33.795352 0.0019539294 102.83356 2.3816758 + 277500 -33.793579 -33.795467 0.0018880659 99.367227 2.3639735 + 277600 -33.787334 -33.796132 0.008797978 463.02974 2.3285327 + 277700 -33.789515 -33.797139 0.0076244925 401.27024 1.9943199 + 277800 -33.793698 -33.797945 0.0042468893 223.51 1.6426855 + 277900 -33.79429 -33.79868 0.0043901632 231.05037 1.3720351 + 278000 -33.792239 -33.799491 0.0072526005 381.6979 1.1004094 + 278100 -33.790788 -33.800308 0.0095202433 501.04191 0.72935913 + 278200 -33.797021 -33.80075 0.0037290298 196.25551 0.28785764 + 278300 -33.797531 -33.80097 0.0034389986 180.99143 0.071738109 + 278400 -33.794767 -33.801128 0.0063604876 334.74679 -0.073727284 + 278500 -33.79264 -33.80113 0.0084904324 446.84389 -0.24996814 + 278600 -33.797093 -33.800945 0.0038527532 202.76697 -0.4914975 + 278700 -33.799454 -33.80083 0.0013762416 72.430366 -0.57898904 + 278800 -33.798732 -33.800836 0.0021039476 110.72888 -0.52691564 + 278900 -33.795897 -33.800969 0.0050722897 266.95008 -0.33509825 + 279000 -33.792972 -33.801197 0.0082249847 432.87361 -0.022483 + 279100 -33.795542 -33.801391 0.0058487194 307.81289 0.21915085 + 279200 -33.798267 -33.801532 0.0032649216 171.82991 0.39636936 + 279300 -33.797824 -33.801692 0.0038679588 203.56722 0.60222455 + 279400 -33.789273 -33.801929 0.012656345 666.09215 1.0505617 + 279500 -33.795372 -33.802037 0.0066647229 350.75842 1.2101917 + 279600 -33.797886 -33.80204 0.004153301 218.58453 1.307464 + 279700 -33.7972 -33.802035 0.0048350954 254.46676 1.3912584 + 279800 -33.793193 -33.80201 0.0088177074 464.06808 1.4737169 + 279900 -33.79343 -33.801887 0.0084569148 445.07988 1.3911063 + 280000 -33.7991 -33.801767 0.002667467 140.38641 1.1699575 + 280100 -33.798479 -33.801734 0.0032556672 171.34286 1.0268338 + 280200 -33.794791 -33.801749 0.0069576037 366.17248 0.81397394 + 280300 -33.794309 -33.801721 0.0074120813 390.09123 0.41427756 + 280400 -33.796616 -33.801622 0.0050063952 263.48211 -0.026162516 + 280500 -33.797216 -33.801495 0.0042789335 225.19645 -0.38848904 + 280600 -33.79118 -33.801303 0.010122464 532.73625 -0.66473897 + 280700 -33.790867 -33.800795 0.0099283554 522.52049 -1.230698 + 280800 -33.796323 -33.800302 0.0039791724 209.4203 -1.7005624 + 280900 -33.79614 -33.79991 0.0037698713 198.40497 -1.9247843 + 281000 -33.792444 -33.799484 0.007040094 370.51387 -2.0359294 + 281100 -33.790831 -33.798933 0.0081019481 426.3983 -2.1477658 + 281200 -33.794034 -33.798454 0.0044198633 232.61346 -2.2548581 + 281300 -33.795994 -33.79819 0.0021960968 115.57862 -2.2428481 + 281400 -33.797245 -33.79815 0.00090520148 47.639946 -2.1604748 + 281500 -33.796297 -33.798303 0.0020059634 105.57206 -1.9510315 + 281600 -33.79292 -33.798672 0.0057511654 302.67871 -1.4770637 + 281700 -33.79125 -33.799009 0.0077593366 408.36696 -0.86455004 + 281800 -33.793944 -33.799087 0.0051434812 270.69683 -0.36097365 + 281900 -33.795962 -33.79901 0.003048464 160.43794 0.0015245885 + 282000 -33.794628 -33.798897 0.0042687229 224.65908 0.35410915 + 282100 -33.788259 -33.798619 0.010360376 545.25732 0.91245442 + 282200 -33.792298 -33.798158 0.0058605483 308.43543 1.2075918 + 282300 -33.794107 -33.79783 0.0037225672 195.91539 1.3596082 + 282400 -33.792685 -33.797681 0.0049951329 262.88939 1.4494836 + 282500 -33.786325 -33.79769 0.011365192 598.13992 1.5106918 + 282600 -33.792775 -33.797775 0.0050000428 263.14779 1.2004611 + 282700 -33.795038 -33.797956 0.0029186177 153.60425 0.97317368 + 282800 -33.792609 -33.798364 0.005755272 302.89483 0.72745334 + 282900 -33.789535 -33.798962 0.0094268445 496.12642 0.3025123 + 283000 -33.794345 -33.799384 0.0050390621 265.20134 -0.28876673 + 283100 -33.796025 -33.799601 0.0035760334 188.20345 -0.68870213 + 283200 -33.794879 -33.79975 0.0048715581 256.38576 -1.0276549 + 283300 -33.793643 -33.799779 0.0061362941 322.94769 -1.3996614 + 283400 -33.79378 -33.799618 0.0058380658 307.25219 -1.7732902 + 283500 -33.794098 -33.799311 0.0052127156 274.34057 -2.0749131 + 283600 -33.79319 -33.798924 0.005733237 301.73515 -2.2668858 + 283700 -33.785564 -33.798346 0.012781889 672.69943 -2.270839 + 283800 -33.791695 -33.797604 0.005909345 311.00356 -2.4573169 + 283900 -33.793831 -33.797234 0.0034026649 179.07922 -2.4364233 + 284000 -33.79221 -33.797164 0.0049544284 260.74715 -2.2042987 + 284100 -33.788863 -33.79733 0.0084677778 445.65159 -1.7459217 + 284200 -33.791507 -33.797559 0.006051943 318.50836 -1.3043985 + 284300 -33.795613 -33.797744 0.0021310133 112.15333 -1.0216053 + 284400 -33.7951 -33.797994 0.0028941062 152.31423 -0.69865265 + 284500 -33.792268 -33.798337 0.0060683404 319.37134 -0.22757033 + 284600 -33.790199 -33.798563 0.0083640833 440.19425 0.34337956 + 284700 -33.793894 -33.798475 0.0045811588 241.1023 0.725282 + 284800 -33.795775 -33.79829 0.0025142994 132.32534 0.96329619 + 284900 -33.792821 -33.798091 0.0052699992 277.35536 1.2253336 + 285000 -33.788297 -33.797615 0.0093180269 490.39944 1.567856 + 285100 -33.792392 -33.797026 0.0046336195 243.86326 1.6441333 + 285200 -33.793464 -33.796656 0.0031923151 168.0087 1.6650728 + 285300 -33.79034 -33.79651 0.0061698295 324.71262 1.6775796 + 285400 -33.787012 -33.796547 0.0095349573 501.8163 1.5786671 + 285500 -33.790532 -33.796735 0.006202906 326.45341 1.2990827 + 285600 -33.791717 -33.797109 0.0053912221 283.73521 1.0603789 + 285700 -33.791865 -33.797671 0.0058059808 305.56359 0.82823871 + 285800 -33.7927 -33.798334 0.0056338474 296.50436 0.5789696 + 285900 -33.795755 -33.798902 0.0031474603 165.64803 0.33588949 + 286000 -33.796228 -33.799369 0.0031412066 165.3189 0.20489625 + 286100 -33.792246 -33.79989 0.0076446607 402.33167 0.16690332 + 286200 -33.790849 -33.800292 0.009443631 497.00988 0.058669843 + 286300 -33.795672 -33.800296 0.0046242125 243.36818 -0.1221211 + 286400 -33.795733 -33.800137 0.0044037959 231.76785 -0.15524246 + 286500 -33.794136 -33.799866 0.005730016 301.56563 -0.10903257 + 286600 -33.791869 -33.799458 0.0075895893 399.43332 0.0056609284 + 286700 -33.792871 -33.798991 0.0061194157 322.05939 0.1075042 + 286800 -33.79624 -33.798746 0.002506699 131.92533 0.1725183 + 286900 -33.796177 -33.798837 0.0026604365 140.0164 0.31600872 + 287000 -33.791384 -33.799341 0.0079565732 418.74735 0.65076597 + 287100 -33.792022 -33.800108 0.0080854993 425.53262 0.96081902 + 287200 -33.795455 -33.800733 0.0052780539 277.77927 1.1483252 + 287300 -33.796395 -33.801233 0.0048388183 254.66269 1.3142741 + 287400 -33.795745 -33.80166 0.0059152995 311.31694 1.4687848 + 287500 -33.792067 -33.801966 0.0098994331 520.99833 1.6483491 + 287600 -33.794953 -33.80198 0.0070267226 369.81014 1.6508194 + 287700 -33.798589 -33.801804 0.0032148938 169.19699 1.5693061 + 287800 -33.797909 -33.801595 0.0036859459 193.98804 1.5145101 + 287900 -33.79357 -33.801262 0.0076919181 404.81879 1.4388966 + 288000 -33.793645 -33.800739 0.0070948587 373.39608 1.1875833 + 288100 -33.795236 -33.800242 0.0050067533 263.50096 0.90078375 + 288200 -33.795078 -33.799871 0.0047930068 252.25167 0.64736762 + 288300 -33.793584 -33.799635 0.0060505348 318.43425 0.39655225 + 288400 -33.791019 -33.79953 0.0085115854 447.95715 0.13626985 + 288500 -33.789498 -33.799512 0.010013646 527.00928 -0.17442964 + 288600 -33.795481 -33.799546 0.0040641301 213.89154 -0.52116164 + 288700 -33.796162 -33.79969 0.0035279728 185.67406 -0.64343147 + 288800 -33.793234 -33.799961 0.0067271904 354.04603 -0.63123953 + 288900 -33.790744 -33.800249 0.0095045626 500.21665 -0.57115024 + 289000 -33.79672 -33.800334 0.0036138887 190.19574 -0.63239406 + 289100 -33.797357 -33.800358 0.0030010657 157.94341 -0.55691131 + 289200 -33.795554 -33.800375 0.0048213776 253.7448 -0.36701389 + 289300 -33.793061 -33.800311 0.0072501824 381.57063 -0.076649113 + 289400 -33.793823 -33.800096 0.0062729066 330.13748 0.19233372 + 289500 -33.797295 -33.799859 0.0025645709 134.97108 0.35610812 + 289600 -33.7984 -33.799772 0.0013720573 72.210153 0.47793133 + 289700 -33.796049 -33.799832 0.0037827826 199.08447 0.66553575 + 289800 -33.793477 -33.800001 0.0065240415 343.35448 0.90779096 + 289900 -33.793714 -33.800137 0.0064225096 338.01095 1.0676365 + 290000 -33.795541 -33.800204 0.0046624763 245.38197 1.1268338 + 290100 -33.796369 -33.800248 0.0038792464 204.16128 1.1317137 + 290200 -33.793799 -33.800299 0.0064995013 342.06296 1.1314045 + 290300 -33.789678 -33.800269 0.010591088 557.3995 1.0579164 + 290400 -33.795729 -33.800101 0.0043725441 230.12309 0.7460648 + 290500 -33.79655 -33.799985 0.0034342382 180.74089 0.54613448 + 290600 -33.79497 -33.799923 0.0049521524 260.62736 0.33338811 + 290700 -33.792972 -33.799873 0.0069002813 363.15565 0.041190624 + 290800 -33.793518 -33.799793 0.0062753572 330.26645 -0.33899386 + 290900 -33.796994 -33.799727 0.0027328282 143.82631 -0.70840364 + 291000 -33.798313 -33.799766 0.0014531382 76.477368 -0.89856744 + 291100 -33.79658 -33.799955 0.0033752942 177.63872 -0.99660118 + 291200 -33.793989 -33.800278 0.00628896 330.98236 -1.0939015 + 291300 -33.793825 -33.800528 0.0067035818 352.80353 -1.2158286 + 291400 -33.795847 -33.800608 0.0047616845 250.60321 -1.3291138 + 291500 -33.797485 -33.800587 0.0031015609 163.23238 -1.3783063 + 291600 -33.796816 -33.80054 0.0037244783 196.01597 -1.3322525 + 291700 -33.791126 -33.800403 0.0092775434 488.26883 -1.1166664 + 291800 -33.793189 -33.800046 0.0068568841 360.87169 -1.0016798 + 291900 -33.796057 -33.799695 0.0036378285 191.45567 -0.92029018 + 292000 -33.795425 -33.799437 0.0040119742 211.14663 -0.76890183 + 292100 -33.790398 -33.799177 0.0087784515 462.00207 -0.47980568 + 292200 -33.790515 -33.798779 0.0082638912 434.92122 -0.24145513 + 292300 -33.796704 -33.798538 0.0018338642 96.514636 -0.23591336 + 292400 -33.795387 -33.798497 0.0031099526 163.67403 -0.14096229 + 292500 -33.790641 -33.798521 0.0078795583 414.69413 0.010608814 + 292600 -33.790691 -33.798385 0.0076939846 404.92755 0.034311015 + 292700 -33.794354 -33.798111 0.0037567139 197.7125 -0.059635582 + 292800 -33.794609 -33.797848 0.0032384943 170.43906 -0.12359763 + 292900 -33.789326 -33.79748 0.0081541619 429.14627 -0.14473997 + 293000 -33.788457 -33.796735 0.0082778851 435.65771 -0.34647357 + 293100 -33.79121 -33.795943 0.0047323343 249.05853 -0.60871609 + 293200 -33.791345 -33.795319 0.0039740496 209.15069 -0.79688345 + 293300 -33.787266 -33.794802 0.0075366679 396.64811 -0.92371685 + 293400 -33.784623 -33.794271 0.0096480644 507.76902 -1.1364355 + 293500 -33.78877 -33.794011 0.005240943 275.82615 -1.4052824 + 293600 -33.788862 -33.794168 0.0053062793 279.26475 -1.5034702 + 293700 -33.788177 -33.794727 0.0065506726 344.75605 -1.514343 + 293800 -33.789304 -33.795551 0.0062474336 328.79686 -1.4894351 + 293900 -33.792641 -33.796345 0.0037044217 194.96041 -1.4597008 + 294000 -33.793624 -33.797056 0.0034328622 180.66847 -1.3533247 + 294100 -33.789881 -33.797867 0.0079852064 420.25429 -1.0877816 + 294200 -33.786719 -33.798732 0.012013279 632.24814 -0.6988328 + 294300 -33.793964 -33.798988 0.0050240299 264.41021 -0.5871892 + 294400 -33.794442 -33.798989 0.0045475843 239.33531 -0.39113179 + 294500 -33.792824 -33.798846 0.0060218434 316.92425 -0.14359004 + 294600 -33.78984 -33.7985 0.0086607502 455.80756 0.16648035 + 294700 -33.792518 -33.797996 0.0054778629 288.29504 0.35409127 + 294800 -33.795576 -33.797727 0.0021508016 113.19477 0.43103151 + 294900 -33.794532 -33.797777 0.0032448471 170.77341 0.53511899 + 295000 -33.790656 -33.798196 0.0075397172 396.80859 0.68391674 + 295100 -33.791721 -33.79882 0.0070987429 373.6005 0.69903837 + 295200 -33.794415 -33.799414 0.0049993344 263.11051 0.6323428 + 295300 -33.795548 -33.799956 0.0044086898 232.02541 0.55542811 + 295400 -33.794965 -33.80048 0.0055152585 290.26314 0.4709855 + 295500 -33.791672 -33.800979 0.0093068426 489.81083 0.37749041 + 295600 -33.795271 -33.801234 0.0059625071 313.80143 0.11151909 + 295700 -33.797999 -33.801262 0.0032632421 171.74152 -0.095038761 + 295800 -33.797022 -33.801228 0.0042057874 221.34684 -0.2198605 + 295900 -33.79185 -33.801091 0.0092412615 486.35935 -0.31307496 + 296000 -33.793444 -33.800766 0.0073221097 385.3561 -0.5604807 + 296100 -33.795177 -33.800447 0.0052700027 277.35554 -0.74662682 + 296200 -33.795256 -33.800246 0.0049901803 262.62874 -0.83942492 + 296300 -33.793485 -33.800211 0.0067260696 353.98704 -0.83568786 + 296400 -33.790408 -33.800346 0.0099378699 523.02123 -0.73640864 + 296500 -33.79593 -33.800559 0.0046287419 243.60656 -0.74821636 + 296600 -33.79761 -33.800813 0.0032026974 168.55511 -0.6609685 + 296700 -33.795619 -33.801188 0.005568916 293.08708 -0.43306795 + 296800 -33.792222 -33.801607 0.0093850833 493.92856 -0.06302902 + 296900 -33.797995 -33.801763 0.0037679994 198.30645 0.13125112 + 297000 -33.799524 -33.801747 0.0022234932 117.02047 0.28916241 + 297100 -33.797555 -33.801655 0.0040993727 215.74633 0.53736333 + 297200 -33.794155 -33.801333 0.0071785691 377.80169 0.89356656 + 297300 -33.794297 -33.800693 0.0063957992 336.60521 1.1971967 + 297400 -33.79625 -33.799973 0.0037232051 195.94896 1.3938607 + 297500 -33.797181 -33.799421 0.0022396614 117.87138 1.5236049 + 297600 -33.794585 -33.799008 0.0044229811 232.77755 1.6762146 + 297700 -33.790655 -33.798601 0.0079460359 418.19278 1.8384623 + 297800 -33.792099 -33.798347 0.0062482144 328.83795 1.8384574 + 297900 -33.794633 -33.798359 0.0037255337 196.07151 1.7531553 + 298000 -33.794961 -33.798618 0.0036574413 192.48787 1.6580501 + 298100 -33.789208 -33.799162 0.0099544939 523.89613 1.5922885 + 298200 -33.791031 -33.799796 0.0087648002 461.28362 1.2620297 + 298300 -33.795616 -33.800098 0.0044824663 235.90821 0.9347266 + 298400 -33.795489 -33.800269 0.0047808706 251.61295 0.71530868 + 298500 -33.793531 -33.800319 0.0067879807 357.24537 0.49891587 + 298600 -33.791307 -33.800125 0.0088183835 464.10366 0.24224585 + 298700 -33.795223 -33.79969 0.0044671813 235.10377 -0.10313629 + 298800 -33.796973 -33.799341 0.0023673183 124.58985 -0.28788236 + 298900 -33.794932 -33.799073 0.0041407109 217.92192 -0.34189367 + 299000 -33.791395 -33.798756 0.0073612774 387.41746 -0.34158916 + 299100 -33.792309 -33.798438 0.0061289066 322.55889 -0.3753189 + 299200 -33.793779 -33.798243 0.0044633743 234.90341 -0.36134867 + 299300 -33.793838 -33.798209 0.004370899 230.03652 -0.26824888 + 299400 -33.789506 -33.798311 0.0088043312 463.3641 -0.01708031 + 299500 -33.7901 -33.798397 0.0082977045 436.70078 0.21004997 + 299600 -33.79468 -33.798406 0.0037258697 196.0892 0.30303782 + 299700 -33.794473 -33.798455 0.003982374 209.58879 0.45503363 + 299800 -33.791899 -33.798535 0.0066364127 349.26848 0.66555297 + 299900 -33.791092 -33.798544 0.0074519546 392.18972 0.84302818 + 300000 -33.795278 -33.798468 0.0031897768 167.87511 0.8669141 + 300100 -33.797237 -33.798483 0.0012464512 65.599614 0.8535653 + 300200 -33.795805 -33.798675 0.0028705201 151.07291 0.85653692 + 300300 -33.792224 -33.799087 0.0068625812 361.17153 0.83159886 + 300400 -33.791886 -33.799533 0.0076474233 402.47706 0.67363707 + 300500 -33.795479 -33.799816 0.0043369585 228.25026 0.42947784 + 300600 -33.796827 -33.8 0.0031731983 167.00259 0.25095602 + 300700 -33.792919 -33.800185 0.00726608 382.40731 0.14948503 + 300800 -33.789382 -33.80027 0.010888498 573.05192 -0.078487871 + 300900 -33.795305 -33.800108 0.0048022251 252.73682 -0.43121791 + 301000 -33.795911 -33.799905 0.0039939562 210.19835 -0.60362221 + 301100 -33.793614 -33.799661 0.0060468384 318.23971 -0.69366937 + 301200 -33.789436 -33.799253 0.009816202 516.61796 -0.74213072 + 301300 -33.794883 -33.798737 0.0038545191 202.8599 -0.93403062 + 301400 -33.796461 -33.798488 0.0020271741 106.68837 -0.96712008 + 301500 -33.794288 -33.798388 0.0040999287 215.77559 -0.85510129 + 301600 -33.790954 -33.798332 0.0073784567 388.3216 -0.62249436 + 301700 -33.791771 -33.798221 0.0064490479 339.40764 -0.41627967 + 301800 -33.794065 -33.798085 0.0040193411 211.53434 -0.25289935 + 301900 -33.795348 -33.798004 0.0026562722 139.79723 -0.10213945 + 302000 -33.794558 -33.798009 0.0034506308 181.60362 0.075101854 + 302100 -33.789489 -33.798061 0.0085712863 451.09915 0.393525 + 302200 -33.790831 -33.798 0.0071690586 377.30116 0.60155076 + 302300 -33.794247 -33.797897 0.003649949 192.09356 0.67711493 + 302400 -33.794148 -33.797884 0.0037363397 196.64022 0.74870119 + 302500 -33.786255 -33.797977 0.011722189 616.92833 0.92706828 + 302600 -33.789061 -33.798013 0.0089518296 471.12681 0.84075249 + 302700 -33.792877 -33.798009 0.0051320169 270.09347 0.69083352 + 302800 -33.793732 -33.798091 0.0043588208 229.40085 0.56151531 + 302900 -33.792054 -33.79829 0.0062358364 328.18651 0.42843377 + 303000 -33.787976 -33.798568 0.010592315 557.46409 0.24923125 + 303100 -33.794126 -33.798732 0.0046060328 242.4114 -0.14423137 + 303200 -33.79567 -33.798834 0.0031639859 166.51776 -0.35958232 + 303300 -33.793709 -33.798975 0.0052660887 277.14955 -0.51674717 + 303400 -33.790933 -33.799079 0.0081461512 428.72467 -0.70948739 + 303500 -33.793329 -33.799014 0.005684582 299.17448 -0.99176816 + 303600 -33.79714 -33.7989 0.0017595334 92.602674 -1.2049439 + 303700 -33.797791 -33.798892 0.0011017769 57.985534 -1.2610631 + 303800 -33.796883 -33.799015 0.0021317663 112.19296 -1.2326627 + 303900 -33.794109 -33.799294 0.0051849109 272.87724 -1.100916 + 304000 -33.79123 -33.799675 0.0084451654 444.46152 -0.88361174 + 304100 -33.794279 -33.799975 0.0056957055 299.7599 -0.74826453 + 304200 -33.796901 -33.800179 0.0032782598 172.53189 -0.63142193 + 304300 -33.796034 -33.800411 0.0043772866 230.37269 -0.44146176 + 304400 -33.787022 -33.800782 0.01375997 724.17494 0.025383867 + 304500 -33.794138 -33.801027 0.0068887655 362.54958 0.18856709 + 304600 -33.796578 -33.801146 0.0045683501 240.42819 0.34036371 + 304700 -33.796383 -33.801258 0.0048749982 256.56681 0.499014 + 304800 -33.79337 -33.80137 0.0079994711 421.00503 0.69610217 + 304900 -33.792037 -33.8014 0.0093629914 492.76589 0.844879 + 305000 -33.798089 -33.801331 0.0032420393 170.62564 0.77890067 + 305100 -33.798163 -33.80129 0.0031265319 164.54658 0.76883366 + 305200 -33.795143 -33.801263 0.00612002 322.09119 0.76003942 + 305300 -33.793725 -33.801178 0.0074525444 392.22076 0.64850734 + 305400 -33.795325 -33.801028 0.0057033312 300.16123 0.44621514 + 305500 -33.795898 -33.800877 0.0049791418 262.04779 0.25453659 + 305600 -33.795325 -33.800747 0.0054216484 285.33652 0.069566923 + 305700 -33.794477 -33.800636 0.0061591039 324.14815 -0.12701566 + 305800 -33.794476 -33.80054 0.0060645246 319.17052 -0.33848725 + 305900 -33.796604 -33.800474 0.0038695622 203.65161 -0.54797176 + 306000 -33.796777 -33.800466 0.0036887975 194.13812 -0.65939042 + 306100 -33.793573 -33.800486 0.0069134188 363.84707 -0.67641339 + 306200 -33.791852 -33.800407 0.0085555093 450.26882 -0.69958235 + 306300 -33.796065 -33.800195 0.0041294864 217.33118 -0.79464782 + 306400 -33.797102 -33.799988 0.0028859957 151.88738 -0.78291198 + 306500 -33.793304 -33.799736 0.0064321563 338.51865 -0.61830423 + 306600 -33.789831 -33.799182 0.0093516861 492.1709 -0.36172149 + 306700 -33.793376 -33.798517 0.0051405598 270.54308 -0.23868966 + 306800 -33.794387 -33.797971 0.0035841587 188.63108 -0.085255517 + 306900 -33.791788 -33.797487 0.0056990943 299.93825 0.16551438 + 307000 -33.787301 -33.796879 0.0095781602 504.09003 0.54836472 + 307100 -33.790464 -33.796336 0.0058720567 309.04111 0.76555636 + 307200 -33.791252 -33.796047 0.0047948298 252.34762 0.95438954 + 307300 -33.790441 -33.795982 0.0055401799 291.57473 1.1332279 + 307400 -33.789266 -33.796108 0.0068422311 360.10052 1.2797757 + 307500 -33.790599 -33.796351 0.0057520092 302.72311 1.3194299 + 307600 -33.793711 -33.79661 0.0028983214 152.53607 1.2543308 + 307700 -33.793357 -33.796932 0.0035753476 188.16736 1.1971737 + 307800 -33.788418 -33.797405 0.0089875557 473.00704 1.1360293 + 307900 -33.789868 -33.797801 0.007933004 417.50693 0.8559579 + 308000 -33.793055 -33.79794 0.0048852332 257.10547 0.56437306 + 308100 -33.792925 -33.797988 0.0050633666 266.48047 0.33980043 + 308200 -33.791829 -33.797983 0.0061537951 323.86875 0.11313997 + 308300 -33.790741 -33.797923 0.0071818269 377.97314 -0.12938869 + 308400 -33.792388 -33.797835 0.0054467151 286.65576 -0.39707746 + 308500 -33.794689 -33.797829 0.0031402622 165.2692 -0.5836941 + 308600 -33.793987 -33.797985 0.0039980683 210.41477 -0.63074049 + 308700 -33.788496 -33.798358 0.0098623544 519.04692 -0.52041192 + 308800 -33.791465 -33.798753 0.0072878763 383.55443 -0.51160095 + 308900 -33.79412 -33.799012 0.0048921069 257.46722 -0.4581854 + 309000 -33.79387 -33.799238 0.0053677388 282.4993 -0.29682003 + 309100 -33.793095 -33.799415 0.0063203815 332.63604 -0.066260789 + 309200 -33.793368 -33.799488 0.006120137 322.09735 0.18516536 + 309300 -33.795819 -33.799461 0.003642122 191.68163 0.37753785 + 309400 -33.796383 -33.799424 0.0030408373 160.03656 0.5659011 + 309500 -33.792688 -33.799397 0.0067092934 353.10413 0.86912929 + 309600 -33.790499 -33.799284 0.008784608 462.32609 1.2139084 + 309700 -33.794067 -33.799107 0.0050397391 265.23697 1.3758234 + 309800 -33.79473 -33.79899 0.0042603628 224.21909 1.5008411 + 309900 -33.793804 -33.798947 0.0051430293 270.67304 1.5947916 + 310000 -33.79295 -33.798959 0.0060098062 316.29074 1.6198838 + 310100 -33.792883 -33.798994 0.006111572 321.64658 1.5536725 + 310200 -33.794186 -33.799019 0.004833685 254.39253 1.3923041 + 310300 -33.796534 -33.79904 0.0025054277 131.85843 1.1813594 + 310400 -33.796177 -33.799091 0.0029142622 153.37502 0.99408934 + 310500 -33.791475 -33.799144 0.0076689084 403.60781 0.74796661 + 310600 -33.791527 -33.799007 0.0074796244 393.64596 0.27081633 + 310700 -33.794261 -33.798702 0.0044411392 233.73319 -0.20036215 + 310800 -33.79448 -33.798368 0.0038879308 204.61833 -0.55231769 + 310900 -33.786396 -33.797894 0.011497847 605.12141 -0.81080822 + 311000 -33.788557 -33.797041 0.0084836938 446.48924 -1.3969747 + 311100 -33.792223 -33.7964 0.0041766109 219.8113 -1.7976129 + 311200 -33.791867 -33.796032 0.0041646328 219.18091 -1.9734645 + 311300 -33.787837 -33.795865 0.0080285316 422.53446 -1.9811261 + 311400 -33.787229 -33.795837 0.0086077453 453.01796 -1.9504915 + 311500 -33.793328 -33.795922 0.0025941228 136.52637 -1.9701998 + 311600 -33.792726 -33.796189 0.0034626254 182.23489 -1.7783073 + 311700 -33.78935 -33.79667 0.0073204795 385.2703 -1.3725525 + 311800 -33.789249 -33.797155 0.0079060312 416.08737 -0.88929184 + 311900 -33.793662 -33.797397 0.0037349582 196.56752 -0.56293028 + 312000 -33.794388 -33.79754 0.0031525608 165.91646 -0.26382833 + 312100 -33.793 -33.797694 0.004694231 247.05319 0.097314554 + 312200 -33.792101 -33.797836 0.0057350898 301.83266 0.47069754 + 312300 -33.791548 -33.797954 0.0064058795 337.13573 0.81553493 + 312400 -33.792356 -33.798076 0.0057201387 301.0458 1.0693054 + 312500 -33.79426 -33.798259 0.0039991163 210.46992 1.1942544 + 312600 -33.79497 -33.798562 0.0035921497 189.05164 1.2333899 + 312700 -33.791709 -33.799093 0.0073839925 388.61294 1.2516662 + 312800 -33.789908 -33.799905 0.0099967535 526.12022 1.1202544 + 312900 -33.79616 -33.800539 0.0043780908 230.41501 0.79784479 + 313000 -33.796473 -33.801047 0.0045740841 240.72997 0.5737487 + 313100 -33.795156 -33.801577 0.0064219617 337.98212 0.30322533 + 313200 -33.795074 -33.802038 0.0069638971 366.50369 -0.063916247 + 313300 -33.799181 -33.802288 0.0031074086 163.54014 -0.47197797 + 313400 -33.80017 -33.802398 0.0022279815 117.25668 -0.71309817 + 313500 -33.797468 -33.802477 0.005008878 263.61278 -0.9018895 + 313600 -33.795133 -33.802461 0.0073271925 385.6236 -1.1804738 + 313700 -33.796578 -33.802291 0.0057127846 300.65876 -1.4995087 + 313800 -33.797767 -33.802063 0.0042961464 226.10235 -1.7253644 + 313900 -33.796596 -33.801835 0.0052389323 275.72033 -1.8292769 + 314000 -33.790198 -33.801511 0.011313657 595.42766 -1.7870507 + 314100 -33.795355 -33.801114 0.0057587452 303.07762 -1.9061391 + 314200 -33.797291 -33.800876 0.0035857662 188.71568 -1.8876836 + 314300 -33.796005 -33.80074 0.0047355317 249.22681 -1.7238435 + 314400 -33.79382 -33.800636 0.0068160377 358.72199 -1.4372438 + 314500 -33.794024 -33.800498 0.0064747433 340.75996 -1.1245691 + 314600 -33.795732 -33.800327 0.0045949629 241.8288 -0.84203412 + 314700 -33.798682 -33.800188 0.00150583 79.250492 -0.65364257 + 314800 -33.798853 -33.800149 0.0012956412 68.188439 -0.49080975 + 314900 -33.796415 -33.80017 0.0037551263 197.62895 -0.22033637 + 315000 -33.793476 -33.800166 0.0066896812 352.07196 0.15798042 + 315100 -33.792981 -33.800017 0.007036084 370.30283 0.50887271 + 315200 -33.795462 -33.799769 0.0043071354 226.6807 0.72399274 + 315300 -33.796872 -33.799573 0.0027003634 142.11772 0.85092049 + 315400 -33.794654 -33.799461 0.0048069425 252.9851 0.98108503 + 315500 -33.789657 -33.799329 0.0096728105 509.07139 1.1313786 + 315600 -33.793481 -33.799145 0.0056638781 298.08485 1.0472824 + 315700 -33.79519 -33.799031 0.0038412441 202.16125 0.95335255 + 315800 -33.793854 -33.798994 0.0051401705 270.52259 0.86625282 + 315900 -33.785726 -33.798937 0.013210991 695.2827 0.81399888 + 316000 -33.791816 -33.798611 0.0067955358 357.64299 0.38939153 + 316100 -33.795006 -33.798329 0.0033237474 174.92586 0.14597638 + 316200 -33.793315 -33.798076 0.0047612473 250.5802 0.012144974 + 316300 -33.78938 -33.797711 0.0083303309 438.41789 -0.11211003 + 316400 -33.79088 -33.797208 0.0063279721 333.03553 -0.33180585 + 316500 -33.794012 -33.796844 0.0028319198 149.04141 -0.49175327 + 316600 -33.794267 -33.796741 0.0024740472 130.2069 -0.50589057 + 316700 -33.788106 -33.796914 0.0088078284 463.54815 -0.29060346 + 316800 -33.789566 -33.797286 0.0077198101 406.28672 -0.11794544 + 316900 -33.793501 -33.797677 0.0041757838 219.76778 0.012079201 + 317000 -33.793852 -33.798156 0.0043039984 226.5156 0.22530218 + 317100 -33.790409 -33.798816 0.0084076013 442.48456 0.58577204 + 317200 -33.78793 -33.799598 0.011668225 614.08826 1.0521395 + 317300 -33.79611 -33.799986 0.0038754009 203.95889 1.1830528 + 317400 -33.796011 -33.800208 0.0041974961 220.91048 1.3819901 + 317500 -33.793101 -33.800359 0.0072588467 382.02663 1.632156 + 317600 -33.792219 -33.800304 0.0080852232 425.51809 1.8335136 + 317700 -33.797147 -33.800069 0.0029220937 153.78719 1.8367487 + 317800 -33.797754 -33.799875 0.0021215121 111.65329 1.8397678 + 317900 -33.79598 -33.799671 0.0036910328 194.25576 1.8235342 + 318000 -33.794098 -33.799391 0.0052934658 278.59038 1.729367 + 318100 -33.792338 -33.799009 0.0066713222 351.10574 1.552859 + 318200 -33.79218 -33.798531 0.0063509704 334.24591 1.2859495 + 318300 -33.794249 -33.79808 0.0038307343 201.60813 0.97955566 + 318400 -33.795295 -33.797796 0.0025012152 131.63673 0.745845 + 318500 -33.792451 -33.797631 0.005180893 272.66578 0.57922259 + 318600 -33.788661 -33.797434 0.008773006 461.71548 0.33461322 + 318700 -33.791585 -33.797182 0.0055975082 294.59186 -0.0083955469 + 318800 -33.79312 -33.797006 0.0038865548 204.54591 -0.21963501 + 318900 -33.791226 -33.796929 0.0057030181 300.14475 -0.29530726 + 319000 -33.78248 -33.79683 0.014349586 755.20591 -0.21621728 + 319100 -33.790547 -33.79662 0.0060733391 319.63442 -0.40829421 + 319200 -33.792084 -33.796524 0.0044398927 233.66759 -0.39898745 + 319300 -33.791214 -33.796576 0.0053613187 282.16142 -0.27197515 + 319400 -33.787811 -33.796761 0.0089499781 471.02936 -0.0033681167 + 319500 -33.790203 -33.796961 0.0067584491 355.69115 0.21923475 + 319600 -33.794236 -33.797114 0.0028778098 151.45656 0.34006997 + 319700 -33.793379 -33.797348 0.0039690398 208.88702 0.54336931 + 319800 -33.789945 -33.797686 0.007741422 407.42413 0.85470396 + 319900 -33.790708 -33.797937 0.0072292412 380.46852 1.1005507 + 320000 -33.792489 -33.798014 0.0055251878 290.78571 1.2587136 + 320100 -33.792675 -33.798 0.0053249603 280.24791 1.386421 + 320200 -33.7922 -33.797929 0.0057283735 301.47919 1.4701725 + 320300 -33.79086 -33.797815 0.0069545072 366.00951 1.509465 + 320400 -33.789527 -33.797656 0.0081281149 427.77544 1.4782909 + 320500 -33.79293 -33.79752 0.0045894491 241.53861 1.2987826 + 320600 -33.794477 -33.797545 0.0030673697 161.43293 1.1318416 + 320700 -33.792122 -33.797789 0.0056671495 298.25702 0.98046634 + 320800 -33.787302 -33.798314 0.011011739 579.53802 0.72382182 + 320900 -33.792461 -33.798799 0.0063383569 333.58207 0.26436882 + 321000 -33.793774 -33.799202 0.0054281055 285.67635 -0.056851792 + 321100 -33.793986 -33.799591 0.0056050746 294.99008 -0.34006323 + 321200 -33.794149 -33.799942 0.00579285 304.87253 -0.60713026 + 321300 -33.795195 -33.80021 0.0050142858 263.89739 -0.85721677 + 321400 -33.796236 -33.800389 0.0041526953 218.55265 -1.0490966 + 321500 -33.795165 -33.800524 0.0053598408 282.08364 -1.1545619 + 321600 -33.791331 -33.800609 0.0092782818 488.3077 -1.1870644 + 321700 -33.794639 -33.800562 0.0059239437 311.77187 -1.323607 + 321800 -33.79784 -33.800509 0.0026684479 140.43803 -1.3938276 + 321900 -33.796933 -33.800541 0.0036078749 189.87924 -1.3282158 + 322000 -33.7948 -33.800662 0.0058616106 308.49134 -1.1714521 + 322100 -33.794304 -33.800818 0.0065134314 342.79608 -0.99284926 + 322200 -33.795383 -33.800954 0.00557127 293.21097 -0.82731206 + 322300 -33.797229 -33.80106 0.0038312762 201.63665 -0.69084726 + 322400 -33.798918 -33.801151 0.0022328727 117.5141 -0.59159044 + 322500 -33.797918 -33.801265 0.0033472716 176.16392 -0.45997629 + 322600 -33.792888 -33.801402 0.0085139826 448.08331 -0.2116887 + 322700 -33.794502 -33.801379 0.0068771044 361.93587 -0.096991575 + 322800 -33.797128 -33.801227 0.0040986776 215.70975 -0.063431287 + 322900 -33.796876 -33.801035 0.0041595129 218.91145 -0.021394118 + 323000 -33.78772 -33.800701 0.012981373 683.1981 0.15690437 + 323100 -33.791904 -33.800062 0.0081574522 429.31943 0.029138966 + 323200 -33.795065 -33.799537 0.0044721398 235.36473 -0.097074412 + 323300 -33.794802 -33.79915 0.0043480325 228.83307 -0.17589477 + 323400 -33.791096 -33.798822 0.007726427 406.63496 -0.22671784 + 323500 -33.789404 -33.798473 0.0090689416 477.29031 -0.36960769 + 323600 -33.795583 -33.798255 0.0026717372 140.61115 -0.6248506 + 323700 -33.795439 -33.798249 0.002809667 147.87027 -0.7031186 + 323800 -33.792575 -33.798384 0.0058089995 305.72246 -0.72841116 + 323900 -33.790801 -33.798531 0.0077292156 406.78172 -0.77909199 + 324000 -33.793161 -33.798531 0.0053695907 282.59677 -0.88782471 + 324100 -33.795322 -33.798443 0.0031211835 164.2651 -0.95515571 + 324200 -33.796912 -33.798376 0.0014639679 77.047323 -0.97601258 + 324300 -33.796617 -33.798392 0.0017748844 93.410585 -0.92572997 + 324400 -33.793134 -33.798508 0.0053742252 282.84068 -0.74225421 + 324500 -33.791082 -33.798634 0.0075518194 397.44552 -0.51053241 + 324600 -33.793022 -33.798689 0.0056667891 298.23806 -0.34155023 + 324700 -33.795334 -33.798745 0.003411227 179.52983 -0.21645403 + 324800 -33.795291 -33.79889 0.0035988812 189.40591 -0.070376063 + 324900 -33.788817 -33.799198 0.010381062 546.34604 0.242129 + 325000 -33.79177 -33.799507 0.0077375083 407.21816 0.39343762 + 325100 -33.795213 -33.799675 0.0044619164 234.82668 0.44782528 + 325200 -33.794897 -33.799824 0.0049271256 259.31023 0.52263795 + 325300 -33.793141 -33.799953 0.0068119837 358.50862 0.58605402 + 325400 -33.791895 -33.799977 0.0080823879 425.36887 0.59374382 + 325500 -33.795599 -33.799866 0.0042669369 224.56508 0.46438761 + 325600 -33.796926 -33.799753 0.0028270412 148.78465 0.3627498 + 325700 -33.794521 -33.799663 0.0051416464 270.60026 0.2926695 + 325800 -33.790754 -33.799505 0.0087503229 460.52169 0.16126925 + 325900 -33.793364 -33.799276 0.005911292 311.10603 -0.11316208 + 326000 -33.794685 -33.799115 0.0044294976 233.12051 -0.32166156 + 326100 -33.794052 -33.799068 0.0050158066 263.97743 -0.47038575 + 326200 -33.793318 -33.799146 0.0058282811 306.73723 -0.59947988 + 326300 -33.793294 -33.799334 0.0060404178 317.9018 -0.70541901 + 326400 -33.793886 -33.799595 0.005708956 300.45726 -0.77078551 + 326500 -33.795534 -33.799873 0.0043393697 228.37716 -0.7981675 + 326600 -33.797433 -33.800115 0.0026820674 141.15481 -0.78009598 + 326700 -33.796548 -33.800356 0.0038081865 200.42146 -0.65419177 + 326800 -33.79129 -33.800602 0.0093114522 490.05343 -0.33030407 + 326900 -33.79362 -33.800578 0.0069582231 366.20508 -0.084506315 + 327000 -33.796079 -33.800323 0.0042435068 223.33198 0.11431915 + 327100 -33.795618 -33.799943 0.00432533 227.63826 0.36503022 + 327200 -33.794231 -33.799399 0.0051679271 271.98339 0.66483628 + 327300 -33.792957 -33.798678 0.0057201938 301.0487 0.98903682 + 327400 -33.792169 -33.797843 0.0056739698 298.61597 1.3027291 + 327500 -33.790981 -33.79699 0.0060092797 316.26303 1.6004752 + 327600 -33.782372 -33.795954 0.013582171 714.81753 2.0667968 + 327700 -33.788832 -33.79483 0.0059975449 315.64544 2.2020377 + 327800 -33.790923 -33.794293 0.003369951 177.35751 2.2567111 + 327900 -33.789151 -33.794116 0.0049646409 261.28462 2.2830817 + 328000 -33.785072 -33.794165 0.0090936189 478.58905 2.2335991 + 328100 -33.788367 -33.794259 0.0058919074 310.08583 1.9412901 + 328200 -33.791804 -33.794373 0.0025693511 135.22266 1.6607452 + 328300 -33.791264 -33.794615 0.0033510896 176.36486 1.4284358 + 328400 -33.788937 -33.794997 0.006060295 318.94792 1.1261865 + 328500 -33.78715 -33.795396 0.0082465832 434.01032 0.69267639 + 328600 -33.790902 -33.795635 0.0047335871 249.12447 0.18174518 + 328700 -33.793142 -33.795836 0.0026943634 141.80194 -0.14017135 + 328800 -33.79111 -33.796207 0.0050967455 268.23717 -0.30454823 + 328900 -33.784719 -33.796963 0.01224379 644.37972 -0.43377185 + 329000 -33.791497 -33.797595 0.0060980688 320.93592 -0.73234299 + 329100 -33.793573 -33.798104 0.0045311307 238.46937 -0.81615942 + 329200 -33.793347 -33.798656 0.0053097021 279.44489 -0.76640115 + 329300 -33.79129 -33.799274 0.0079834984 420.1644 -0.59407313 + 329400 -33.79264 -33.799811 0.0071717954 377.44519 -0.41685792 + 329500 -33.796716 -33.800086 0.0033698765 177.35359 -0.31212578 + 329600 -33.796592 -33.800257 0.0036643871 192.85342 -0.1291089 + 329700 -33.792242 -33.800383 0.0081413009 428.4694 0.20893531 + 329800 -33.791885 -33.800315 0.0084303841 443.68359 0.54733235 + 329900 -33.7957 -33.800094 0.0043937562 231.23947 0.72350118 + 330000 -33.795508 -33.799874 0.0043656881 229.76227 0.91619258 + 330100 -33.793577 -33.799663 0.0060867164 320.33846 1.1241497 + 330200 -33.791575 -33.79946 0.0078846696 414.96313 1.3154023 + 330300 -33.79419 -33.799327 0.005137042 270.35794 1.3583253 + 330400 -33.796906 -33.799362 0.0024558756 129.25054 1.3196418 + 330500 -33.796149 -33.799595 0.0034459397 181.35673 1.2825693 + 330600 -33.789201 -33.800157 0.010956255 576.61794 1.2499716 + 330700 -33.793647 -33.800719 0.0070725356 372.22124 0.92031615 + 330800 -33.796533 -33.801066 0.0045326997 238.55194 0.6456651 + 330900 -33.796602 -33.801321 0.0047195546 248.38595 0.42147132 + 331000 -33.793545 -33.80151 0.007965595 419.22216 0.20715852 + 331100 -33.790175 -33.801508 0.01133283 596.43673 -0.10893844 + 331200 -33.797708 -33.801299 0.0035907887 188.98 -0.55159009 + 331300 -33.797856 -33.80112 0.0032640961 171.78647 -0.73623745 + 331400 -33.794912 -33.800938 0.0060253874 317.11076 -0.84853478 + 331500 -33.792971 -33.800708 0.0077363754 407.15854 -0.97684988 + 331600 -33.79493 -33.8005 0.005569955 293.14176 -1.1194439 + 331700 -33.795776 -33.800399 0.0046221444 243.25934 -1.1618237 + 331800 -33.795136 -33.800404 0.0052680653 277.25358 -1.103392 + 331900 -33.794648 -33.800478 0.0058301966 306.83805 -0.97987451 + 332000 -33.794533 -33.80056 0.0060273236 317.21266 -0.80753577 + 332100 -33.795244 -33.800587 0.0053429831 281.19644 -0.61830685 + 332200 -33.796298 -33.800535 0.0042366799 222.97269 -0.43299905 + 332300 -33.795922 -33.800405 0.0044835709 235.96634 -0.22320389 + 332400 -33.791734 -33.800108 0.0083738135 440.70634 0.10248622 + 332500 -33.791782 -33.799479 0.0076979405 405.13574 0.37830161 + 332600 -33.79605 -33.798851 0.0028004494 147.38515 0.47178098 + 332700 -33.796122 -33.798395 0.0022728694 119.61909 0.55812343 + 332800 -33.793489 -33.797903 0.0044134286 232.27481 0.65606904 + 332900 -33.792154 -33.797349 0.0051953941 273.42896 0.67580722 + 333000 -33.790205 -33.796809 0.0066040446 347.56498 0.63684441 + 333100 -33.789303 -33.796299 0.006995358 368.15945 0.49991948 + 333200 -33.791224 -33.795924 0.004700249 247.36991 0.26225704 + 333300 -33.7928 -33.795776 0.0029751191 156.57787 0.030104795 + 333400 -33.791421 -33.79583 0.0044094462 232.06522 -0.17016232 + 333500 -33.78546 -33.796028 0.010567556 556.16107 -0.42772499 + 333600 -33.789772 -33.796115 0.0063432626 333.84025 -0.92272465 + 333700 -33.791767 -33.796121 0.0043542601 229.16083 -1.2575832 + 333800 -33.791098 -33.79613 0.005032831 264.87341 -1.4987221 + 333900 -33.789613 -33.796124 0.0065110156 342.66894 -1.7111001 + 334000 -33.789306 -33.796064 0.0067581914 355.67758 -1.9127596 + 334100 -33.792283 -33.796 0.0037169826 195.62148 -2.0937722 + 334200 -33.793161 -33.796057 0.0028967763 152.45476 -2.1314868 + 334300 -33.790152 -33.796314 0.0061614234 324.27022 -1.9965245 + 334400 -33.787548 -33.79676 0.009211775 484.8075 -1.7447868 + 334500 -33.791995 -33.797146 0.0051514804 271.11782 -1.5897886 + 334600 -33.793274 -33.797478 0.0042039872 221.25209 -1.3801378 + 334700 -33.792455 -33.797856 0.005400146 284.20487 -1.0836764 + 334800 -33.791831 -33.798233 0.0064013736 336.89858 -0.74081275 + 334900 -33.792641 -33.798509 0.0058680204 308.82868 -0.42045264 + 335000 -33.795362 -33.798656 0.0032943655 173.37952 -0.19836062 + 335100 -33.797013 -33.798746 0.0017329647 91.204389 -0.064861343 + 335200 -33.795317 -33.798881 0.0035638702 187.56331 0.09513072 + 335300 -33.791448 -33.799084 0.0076359932 401.87551 0.3243288 + 335400 -33.792926 -33.799202 0.006276505 330.32686 0.41493828 + 335500 -33.795103 -33.799259 0.0041562931 218.742 0.42561886 + 335600 -33.795304 -33.799348 0.004043403 212.80069 0.41965659 + 335700 -33.789577 -33.799532 0.0099552868 523.93786 0.47197573 + 335800 -33.791275 -33.799751 0.0084766733 446.11976 0.31299853 + 335900 -33.795618 -33.799909 0.0042901683 225.78773 0.11134208 + 336000 -33.795287 -33.800116 0.0048296751 254.18149 -0.004048525 + 336100 -33.793466 -33.800395 0.0069296059 364.69898 -0.1186521 + 336200 -33.793392 -33.800668 0.0072754238 382.89907 -0.28918649 + 336300 -33.797832 -33.800825 0.0029927892 157.50783 -0.50598027 + 336400 -33.798199 -33.800933 0.0027340162 143.88883 -0.58885339 + 336500 -33.794562 -33.801051 0.0064887471 341.49697 -0.58229244 + 336600 -33.79302 -33.801062 0.0080426681 423.27845 -0.61255715 + 336700 -33.795439 -33.800899 0.0054602164 287.36632 -0.68921284 + 336800 -33.796135 -33.80066 0.0045248696 238.13985 -0.6944295 + 336900 -33.794797 -33.800365 0.0055679892 293.0383 -0.61858872 + 337000 -33.785039 -33.799886 0.014847083 781.38873 -0.31122813 + 337100 -33.79188 -33.799088 0.0072080438 379.35291 -0.26967613 + 337200 -33.794482 -33.798564 0.004082438 214.85507 -0.18498186 + 337300 -33.793255 -33.798172 0.0049165166 258.75188 -0.00094723969 + 337400 -33.789671 -33.797798 0.0081269264 427.71289 0.29488055 + 337500 -33.790572 -33.797403 0.0068312462 359.52239 0.54186265 + 337600 -33.794535 -33.797151 0.0026162578 137.69131 0.65510459 + 337700 -33.794581 -33.797093 0.0025119341 132.20085 0.78259861 + 337800 -33.790631 -33.797159 0.0065280979 343.56797 1.0036718 + 337900 -33.790223 -33.797207 0.0069846748 367.5972 1.1658853 + 338000 -33.792181 -33.797166 0.0049847984 262.34549 1.2321225 + 338100 -33.793052 -33.797112 0.0040601459 213.68186 1.2670153 + 338200 -33.790955 -33.797087 0.0061314185 322.69109 1.3199829 + 338300 -33.786347 -33.797022 0.010674793 561.80486 1.3806705 + 338400 -33.79247 -33.796883 0.0044137136 232.28981 1.2023427 + 338500 -33.793811 -33.796894 0.003082768 162.24333 1.1194086 + 338600 -33.792216 -33.797121 0.0049048462 258.13768 1.076942 + 338700 -33.790007 -33.797567 0.0075601467 397.88378 1.0204641 + 338800 -33.791802 -33.798079 0.0062768293 330.34393 0.88197436 + 338900 -33.795906 -33.798486 0.0025797754 135.77128 0.73423056 + 339000 -33.796507 -33.798848 0.0023410575 123.20777 0.69239812 + 339100 -33.794893 -33.799342 0.0044489994 234.14687 0.7121898 + 339200 -33.793593 -33.799892 0.0062986812 331.49397 0.74162588 + 339300 -33.793674 -33.800331 0.0066572928 350.36738 0.75786345 + 339400 -33.796065 -33.800572 0.0045076202 237.23203 0.73791404 + 339500 -33.797644 -33.80069 0.0030466369 160.34178 0.73902283 + 339600 -33.796169 -33.800791 0.0046229251 243.30043 0.81084131 + 339700 -33.790343 -33.800881 0.010538558 554.63492 0.99927487 + 339800 -33.794854 -33.800837 0.0059831992 314.89044 0.98441006 + 339900 -33.79673 -33.800782 0.0040517704 213.24106 0.99667446 + 340000 -33.79582 -33.800783 0.0049638387 261.2424 1.0535754 + 340100 -33.794208 -33.800832 0.0066231159 348.56868 1.1150553 + 340200 -33.794469 -33.800886 0.0064165233 337.6959 1.1216715 + 340300 -33.795135 -33.800929 0.005793868 304.9261 1.0960329 + 340400 -33.795298 -33.800961 0.0056631321 298.04559 1.0534972 + 340500 -33.795373 -33.800974 0.005600959 294.77348 0.98501235 + 340600 -33.795319 -33.800955 0.0056358782 296.61124 0.89099706 + 340700 -33.79498 -33.800897 0.0059169282 311.40266 0.77416516 + 340800 -33.7947 -33.80079 0.0060906227 320.54404 0.62910745 + 340900 -33.795137 -33.800645 0.0055086345 289.91452 0.45311014 + 341000 -33.795648 -33.800498 0.0048500749 255.25511 0.27361865 + 341100 -33.794662 -33.80037 0.0057081669 300.41573 0.11857681 + 341200 -33.791606 -33.800228 0.0086222716 453.78247 -0.027223123 + 341300 -33.793905 -33.800038 0.0061333218 322.79126 -0.28316907 + 341400 -33.797206 -33.799922 0.0027158704 142.93384 -0.47965089 + 341500 -33.796507 -33.799919 0.0034120104 179.57106 -0.54797577 + 341600 -33.791614 -33.799978 0.0083638117 440.17995 -0.5287795 + 341700 -33.792738 -33.799934 0.0071955934 378.69766 -0.61343245 + 341800 -33.795055 -33.799775 0.0047200955 248.41442 -0.68538981 + 341900 -33.79545 -33.79957 0.004119608 216.8113 -0.68658436 + 342000 -33.791568 -33.799267 0.0076981715 405.1479 -0.56994856 + 342100 -33.788313 -33.798605 0.01029204 541.66089 -0.4230071 + 342200 -33.794061 -33.797887 0.003825489 201.33207 -0.45806586 + 342300 -33.794009 -33.797347 0.0033381563 175.68419 -0.38599434 + 342400 -33.79185 -33.796816 0.0049660097 261.35666 -0.25336517 + 342500 -33.789051 -33.7962 0.0071485153 376.21999 -0.08242182 + 342600 -33.789323 -33.795558 0.0062347264 328.12809 0.026298138 + 342700 -33.792144 -33.795101 0.0029564599 155.59585 0.047427539 + 342800 -33.793596 -33.794983 0.001387386 73.01689 0.04583086 + 342900 -33.791868 -33.795169 0.0033017942 173.77048 0.070563687 + 343000 -33.788532 -33.795692 0.0071598354 376.81575 0.07638946 + 343100 -33.789614 -33.796266 0.0066524183 350.11084 -0.049971454 + 343200 -33.79238 -33.796722 0.0043420389 228.51764 -0.22542035 + 343300 -33.79339 -33.797124 0.0037331414 196.4719 -0.37125965 + 343400 -33.790329 -33.797594 0.0072655947 382.38177 -0.47079895 + 343500 -33.787071 -33.798162 0.011091157 583.71769 -0.66137551 + 343600 -33.793861 -33.798475 0.004613247 242.79107 -1.0072118 + 343700 -33.794372 -33.798716 0.0043440098 228.62136 -1.171075 + 343800 -33.792709 -33.799019 0.0063095785 332.06749 -1.2867807 + 343900 -33.791116 -33.799355 0.0082385168 433.58579 -1.4055758 + 344000 -33.795709 -33.799598 0.0038891544 204.68273 -1.6067211 + 344100 -33.797181 -33.799777 0.0025965879 136.6561 -1.6778722 + 344200 -33.794782 -33.800018 0.0052357362 275.55213 -1.6327307 + 344300 -33.791451 -33.800267 0.0088161183 463.98444 -1.5312882 + 344400 -33.794056 -33.800301 0.0062441065 328.62175 -1.5233915 + 344500 -33.795206 -33.800164 0.0049575997 260.91405 -1.4754967 + 344600 -33.794797 -33.799912 0.0051142886 269.16045 -1.3800809 + 344700 -33.79333 -33.799529 0.0061992789 326.26252 -1.2408112 + 344800 -33.787893 -33.798936 0.011043939 581.23268 -0.98901089 + 344900 -33.789498 -33.797996 0.0084980654 447.2456 -0.83863881 + 345000 -33.794234 -33.797377 0.0031433029 165.42923 -0.81539425 + 345100 -33.793405 -33.79708 0.0036748961 193.4065 -0.70374141 + 345200 -33.789569 -33.797013 0.0074431294 391.72526 -0.51083042 + 345300 -33.789713 -33.797161 0.0074487397 392.02053 -0.38693484 + 345400 -33.791983 -33.797456 0.0054732166 288.05051 -0.33923044 + 345500 -33.792403 -33.797867 0.0054643091 287.58172 -0.28769744 + 345600 -33.79226 -33.798356 0.0060964512 320.85079 -0.24982177 + 345700 -33.79274 -33.798821 0.0060812921 320.05298 -0.24996048 + 345800 -33.79407 -33.799168 0.0050978445 268.29501 -0.29061524 + 345900 -33.797122 -33.799367 0.0022449439 118.1494 -0.37853129 + 346000 -33.797689 -33.799494 0.0018056472 95.0296 -0.42077769 + 346100 -33.794723 -33.799652 0.0049296208 259.44154 -0.41328827 + 346200 -33.792457 -33.799743 0.0072859199 383.45147 -0.45223579 + 346300 -33.793951 -33.799633 0.0056821917 299.04868 -0.56824227 + 346400 -33.795632 -33.799435 0.0038024197 200.11796 -0.66602124 + 346500 -33.795273 -33.799258 0.0039846922 209.7108 -0.69814073 + 346600 -33.789441 -33.799061 0.0096199988 506.29196 -0.60463277 + 346700 -33.79158 -33.798774 0.0071949364 378.66309 -0.64312947 + 346800 -33.794877 -33.798605 0.0037273194 196.1655 -0.6751304 + 346900 -33.794319 -33.798611 0.004292218 225.89561 -0.59483396 + 347000 -33.792369 -33.798765 0.006396698 336.65251 -0.43289555 + 347100 -33.792341 -33.798976 0.0066350722 349.19793 -0.2653307 + 347200 -33.793366 -33.799155 0.005789238 304.68243 -0.10520837 + 347300 -33.794225 -33.799285 0.0050601449 266.31091 0.058259896 + 347400 -33.794411 -33.799379 0.004967754 261.44846 0.23388664 + 347500 -33.792538 -33.799443 0.0069048133 363.39417 0.46428501 + 347600 -33.791482 -33.799434 0.0079519372 418.50336 0.70540704 + 347700 -33.795097 -33.799376 0.0042787466 225.18661 0.81618145 + 347800 -33.796432 -33.799417 0.002985056 157.10083 0.9093622 + 347900 -33.793065 -33.799649 0.0065835269 346.48515 1.0790847 + 348000 -33.789403 -33.800125 0.010722377 564.30916 1.2770448 + 348100 -33.794517 -33.800544 0.0060268403 317.18723 1.2566088 + 348200 -33.795943 -33.800927 0.0049838317 262.29462 1.2581669 + 348300 -33.795816 -33.801336 0.0055195402 290.48848 1.2518585 + 348400 -33.794594 -33.801744 0.0071492832 376.2604 1.2283779 + 348500 -33.795029 -33.80205 0.0070208318 369.50012 1.1325632 + 348600 -33.798323 -33.802161 0.0038381308 201.9974 0.96971864 + 348700 -33.798842 -33.802166 0.0033242615 174.95292 0.86229482 + 348800 -33.794741 -33.802071 0.0073297 385.75557 0.80989912 + 348900 -33.792522 -33.801671 0.0091489441 481.50077 0.64932676 + 349000 -33.796005 -33.801083 0.0050779035 267.24553 0.40249629 + 349100 -33.796169 -33.800486 0.0043173583 227.21872 0.26179404 + 349200 -33.79464 -33.79984 0.0051999084 273.66654 0.17535709 + 349300 -33.792068 -33.799085 0.0070164872 369.27146 0.1278704 + 349400 -33.791011 -33.798256 0.0072449036 381.29281 0.08544247 + 349500 -33.79348 -33.797577 0.0040973287 215.63875 0.03020398 + 349600 -33.794271 -33.797231 0.002960194 155.79237 0.066455271 + 349700 -33.791254 -33.797104 0.0058497822 307.86882 0.2549368 + 349800 -33.787955 -33.797015 0.0090600837 476.82413 0.56408075 + 349900 -33.791726 -33.796838 0.0051118483 269.03202 0.75010698 + 350000 -33.793231 -33.796687 0.0034567369 181.92498 0.93169301 + 350100 -33.791856 -33.796571 0.0047145469 248.1224 1.178731 + 350200 -33.790508 -33.7964 0.0058927116 310.12815 1.4624325 + 350300 -33.790543 -33.796158 0.0056153001 295.52824 1.7053377 + 350400 -33.790457 -33.79591 0.0054528786 286.98014 1.9124094 + 350500 -33.789534 -33.795718 0.0061839871 325.45772 2.0933094 + 350600 -33.788059 -33.795613 0.0075540177 397.56121 2.2399876 + 350700 -33.789883 -33.795626 0.0057423789 302.21628 2.2568838 + 350800 -33.792601 -33.795813 0.0032116956 169.02868 2.1832427 + 350900 -33.792349 -33.796229 0.0038799995 204.20091 2.1049655 + 351000 -33.785767 -33.79701 0.011242805 591.69882 2.0387613 + 351100 -33.790037 -33.797807 0.0077698137 408.91837 1.6563443 + 351200 -33.793042 -33.798239 0.0051968716 273.50672 1.3431443 + 351300 -33.793114 -33.79855 0.0054352417 286.05192 1.0752359 + 351400 -33.792619 -33.798748 0.0061285646 322.54089 0.78811115 + 351500 -33.792578 -33.798796 0.0062181937 327.25799 0.47213745 + 351600 -33.794035 -33.798709 0.0046740247 245.98975 0.15037337 + 351700 -33.794768 -33.798594 0.003825459 201.3305 -0.10030942 + 351800 -33.79219 -33.798498 0.0063080018 331.98451 -0.2688167 + 351900 -33.788559 -33.798348 0.0097893653 515.20557 -0.45233809 + 352000 -33.793779 -33.798173 0.0043942243 231.2641 -0.74631619 + 352100 -33.795123 -33.798171 0.0030476611 160.39569 -0.85230841 + 352200 -33.793828 -33.79838 0.0045522593 239.58135 -0.84350065 + 352300 -33.792003 -33.798782 0.0067780766 356.72413 -0.76625989 + 352400 -33.79252 -33.799243 0.0067225704 353.80289 -0.68627264 + 352500 -33.796312 -33.799604 0.0032927121 173.2925 -0.65812426 + 352600 -33.79778 -33.799877 0.0020969318 110.35965 -0.59677764 + 352700 -33.794932 -33.800223 0.0052908899 278.45482 -0.42286114 + 352800 -33.791028 -33.800658 0.0096299317 506.81471 -0.14198666 + 352900 -33.795345 -33.800817 0.0054718607 287.97915 -0.047255301 + 353000 -33.797147 -33.800822 0.0036749531 193.4095 0.037901306 + 353100 -33.795852 -33.800791 0.00493967 259.97043 0.15694434 + 353200 -33.790382 -33.800675 0.010292859 541.70398 0.3588423 + 353300 -33.794441 -33.800397 0.0059557232 313.4444 0.34670022 + 353400 -33.79716 -33.800201 0.003040823 160.0358 0.30567963 + 353500 -33.796141 -33.800121 0.0039795968 209.44263 0.29584943 + 353600 -33.793205 -33.800106 0.0069005566 363.17014 0.27006503 + 353700 -33.79235 -33.800059 0.0077084505 405.68887 0.14425139 + 353800 -33.796285 -33.799955 0.0036705096 193.17564 -0.084598776 + 353900 -33.797694 -33.799903 0.0022087028 116.24206 -0.23577027 + 354000 -33.79394 -33.799904 0.0059635138 313.85441 -0.31547438 + 354100 -33.790488 -33.79977 0.0092817667 488.4911 -0.52716679 + 354200 -33.794738 -33.79944 0.0047017178 247.44722 -0.85985444 + 354300 -33.795785 -33.799121 0.0033365587 175.60011 -1.0596983 + 354400 -33.793095 -33.798792 0.0056971152 299.83409 -1.172689 + 354500 -33.789193 -33.79827 0.0090769004 477.70917 -1.2990493 + 354600 -33.791968 -33.797688 0.0057197184 301.02368 -1.5158567 + 354700 -33.792737 -33.797289 0.0045514269 239.53754 -1.6147231 + 354800 -33.791871 -33.797106 0.0052355143 275.54045 -1.6124608 + 354900 -33.790465 -33.797158 0.0066924194 352.21606 -1.5259759 + 355000 -33.791047 -33.797418 0.0063704496 335.27108 -1.409064 + 355100 -33.795131 -33.797762 0.0026314149 138.48902 -1.3456205 + 355200 -33.795133 -33.798207 0.0030740723 161.78568 -1.194731 + 355300 -33.790923 -33.798902 0.007979159 419.93602 -0.87599849 + 355400 -33.791178 -33.799598 0.0084200206 443.13817 -0.56434796 + 355500 -33.795107 -33.799903 0.0047955679 252.38646 -0.39639207 + 355600 -33.795196 -33.799999 0.0048023477 252.74328 -0.20734459 + 355700 -33.794175 -33.799942 0.0057677821 303.55323 -0.01383391 + 355800 -33.793011 -33.799708 0.0066973512 352.47562 0.16171669 + 355900 -33.792842 -33.799315 0.0064733129 340.68468 0.28141173 + 356000 -33.794445 -33.798911 0.0044653352 235.00661 0.31352837 + 356100 -33.794713 -33.79866 0.0039468193 207.71758 0.31941835 + 356200 -33.79129 -33.798587 0.0072974839 384.06007 0.34871667 + 356300 -33.789564 -33.798663 0.0090994548 478.89619 0.28684195 + 356400 -33.794999 -33.798835 0.0038358485 201.87728 0.074235897 + 356500 -33.795511 -33.799144 0.0036324314 191.17163 -0.031952537 + 356600 -33.793975 -33.799657 0.0056822289 299.05064 -0.12252923 + 356700 -33.793059 -33.800272 0.007213128 379.62049 -0.25277329 + 356800 -33.795663 -33.80076 0.0050972286 268.26259 -0.44560842 + 356900 -33.798923 -33.801036 0.0021126709 111.18798 -0.59927032 + 357000 -33.79881 -33.801248 0.0024376155 128.28953 -0.64622463 + 357100 -33.793951 -33.801506 0.0075548748 397.60632 -0.59163415 + 357200 -33.794619 -33.801605 0.006985797 367.65626 -0.63495119 + 357300 -33.797148 -33.80149 0.0043420159 228.51642 -0.68533673 + 357400 -33.797536 -33.801318 0.0037818645 199.03615 -0.65913075 + 357500 -33.79383 -33.8011 0.007270561 382.64314 -0.50121828 + 357600 -33.791649 -33.800717 0.0090675028 477.21459 -0.29860042 + 357700 -33.796239 -33.800345 0.004105877 216.08864 -0.22357703 + 357800 -33.796809 -33.80018 0.0033706515 177.39438 -0.081314549 + 357900 -33.795547 -33.800183 0.004635558 243.96528 0.13426101 + 358000 -33.793314 -33.800294 0.0069796597 367.33326 0.41995008 + 358100 -33.793361 -33.80038 0.007019496 369.42981 0.68501146 + 358200 -33.79701 -33.800372 0.0033618698 176.93221 0.8161166 + 358300 -33.79799 -33.800363 0.0023731436 124.89643 0.91645886 + 358400 -33.793471 -33.800365 0.0068936871 362.8086 1.1044882 + 358500 -33.791304 -33.80014 0.0088359536 465.02836 1.2543237 + 358600 -33.795122 -33.799705 0.0045831027 241.20461 1.2278448 + 358700 -33.79587 -33.799303 0.0034332849 180.69072 1.2100191 + 358800 -33.792373 -33.798896 0.0065226235 343.27986 1.227876 + 358900 -33.789281 -33.798292 0.0090113235 474.25792 1.1674318 + 359000 -33.792182 -33.797728 0.0055458112 291.8711 0.96969948 + 359100 -33.792802 -33.797407 0.0046044085 242.32591 0.82199665 + 359200 -33.791456 -33.797337 0.0058811963 309.52212 0.70489491 + 359300 -33.786876 -33.79748 0.010604358 558.09792 0.62475467 + 359400 -33.789838 -33.79766 0.007822281 411.67967 0.38039965 + 359500 -33.794337 -33.797803 0.0034663776 182.43236 0.19120005 + 359600 -33.793533 -33.798062 0.0045284712 238.3294 0.15300424 + 359700 -33.789677 -33.798418 0.0087412273 460.043 0.19700449 + 359800 -33.791907 -33.798618 0.0067113929 353.21462 0.14132011 + 359900 -33.796042 -33.798639 0.0025967149 136.66279 0.0714216 + 360000 -33.795229 -33.798681 0.0034523038 181.69167 0.12443985 + 360100 -33.792613 -33.798728 0.0061148752 321.82043 0.24895798 + 360200 -33.791631 -33.798663 0.0070327206 370.12581 0.37212593 + 360300 -33.793417 -33.798484 0.0050665843 266.64981 0.44259058 + 360400 -33.796051 -33.798346 0.0022948452 120.77565 0.47693342 + 360500 -33.797063 -33.798382 0.0013184916 69.391035 0.51562506 + 360600 -33.794857 -33.798657 0.0038002351 200.00298 0.62153437 + 360700 -33.791844 -33.7992 0.0073558405 387.13132 0.77013363 + 360800 -33.793234 -33.799681 0.0064477429 339.33896 0.82059568 + 360900 -33.795945 -33.799972 0.0040272709 211.95168 0.80988732 + 361000 -33.796576 -33.80017 0.0035938947 189.14348 0.81056161 + 361100 -33.791571 -33.800349 0.0087780278 461.97977 0.89585077 + 361200 -33.790892 -33.800329 0.0094369818 496.65993 0.85823947 + 361300 -33.795823 -33.800111 0.0042874804 225.64627 0.70208039 + 361400 -33.795747 -33.799912 0.0041654064 219.22162 0.63860431 + 361500 -33.793564 -33.799726 0.0061622692 324.31473 0.59464651 + 361600 -33.791752 -33.799506 0.0077538098 408.0761 0.51605775 + 361700 -33.795721 -33.799293 0.0035726056 188.02305 0.32813413 + 361800 -33.797394 -33.799268 0.0018740459 98.629363 0.2322948 + 361900 -33.795291 -33.799446 0.0041552641 218.68784 0.21862821 + 362000 -33.791844 -33.799785 0.0079406619 417.90996 0.21226731 + 362100 -33.793632 -33.800021 0.0063891506 336.2553 0.10021532 + 362200 -33.79598 -33.800113 0.0041338203 217.55928 -0.0051082342 + 362300 -33.796092 -33.800167 0.0040747829 214.45219 -0.052632595 + 362400 -33.789085 -33.800188 0.011103849 584.38566 0.033607242 + 362500 -33.792618 -33.799991 0.0073725676 388.01166 -0.09970211 + 362600 -33.796123 -33.799785 0.0036616273 192.70818 -0.2092585 + 362700 -33.795384 -33.799697 0.0043134166 227.01127 -0.22125929 + 362800 -33.791671 -33.799708 0.0080367771 422.96841 -0.1707345 + 362900 -33.792331 -33.799734 0.0074035648 389.64301 -0.20446744 + 363000 -33.79776 -33.799783 0.0020234778 106.49383 -0.32138989 + 363100 -33.797109 -33.799974 0.0028655928 150.8136 -0.3110609 + 363200 -33.793496 -33.800345 0.0068493662 360.47603 -0.24125343 + 363300 -33.79272 -33.800687 0.0079668744 419.28949 -0.23271101 + 363400 -33.796364 -33.800781 0.0044171692 232.47167 -0.31889308 + 363500 -33.797571 -33.800747 0.0031763684 167.16943 -0.3615079 + 363600 -33.792024 -33.800622 0.0085987163 452.54277 -0.28305598 + 363700 -33.790515 -33.800097 0.0095819115 504.28746 -0.31727811 + 363800 -33.795619 -33.799478 0.0038586458 203.07708 -0.47407061 + 363900 -33.795693 -33.799015 0.0033222145 174.84518 -0.52061741 + 364000 -33.791991 -33.798605 0.0066136317 348.06954 -0.49912399 + 364100 -33.790521 -33.798205 0.0076836631 404.38434 -0.53157467 + 364200 -33.792341 -33.797999 0.0056574184 297.74488 -0.6148069 + 364300 -33.792912 -33.798067 0.0051551522 271.31106 -0.65371694 + 364400 -33.79239 -33.798399 0.0060096477 316.2824 -0.6529629 + 364500 -33.791315 -33.798931 0.0076156493 400.80483 -0.62541497 + 364600 -33.793659 -33.799482 0.005823634 306.49266 -0.65391654 + 364700 -33.79608 -33.799898 0.0038183667 200.95723 -0.67864578 + 364800 -33.795837 -33.800252 0.0044152006 232.36807 -0.64455319 + 364900 -33.7917 -33.800566 0.0088658669 466.60267 -0.5210999 + 365000 -33.792572 -33.800618 0.0080453908 423.42174 -0.48731602 + 365100 -33.797718 -33.800445 0.0027267736 143.50766 -0.55557724 + 365200 -33.797189 -33.800265 0.0030763635 161.90627 -0.51597974 + 365300 -33.794609 -33.800025 0.0054158919 285.03356 -0.4243827 + 365400 -33.793009 -33.799671 0.0066623307 350.63252 -0.34113177 + 365500 -33.7936 -33.799288 0.0056880511 299.35706 -0.30057352 + 365600 -33.79463 -33.799019 0.0043895171 231.01637 -0.27352449 + 365700 -33.794955 -33.798956 0.0040013909 210.58963 -0.23821454 + 365800 -33.792136 -33.799126 0.0069900499 367.88009 -0.13935883 + 365900 -33.790631 -33.79948 0.0088489707 465.71343 -0.064179558 + 366000 -33.795524 -33.799806 0.0042818616 225.35056 -0.13390679 + 366100 -33.796433 -33.800106 0.0036729177 193.30238 -0.14438544 + 366200 -33.79457 -33.800458 0.0058888232 309.92351 -0.11533504 + 366300 -33.792973 -33.800751 0.0077773246 409.31366 -0.11223545 + 366400 -33.797852 -33.800803 0.0029511529 155.31655 -0.24907559 + 366500 -33.79926 -33.800773 0.0015138216 79.671079 -0.30672698 + 366600 -33.797259 -33.800735 0.0034758657 182.93171 -0.30834954 + 366700 -33.793634 -33.800563 0.0069280394 364.61654 -0.30711001 + 366800 -33.793241 -33.800131 0.0068892259 362.57381 -0.38648983 + 366900 -33.795504 -33.799603 0.0040985532 215.7032 -0.50388795 + 367000 -33.796453 -33.799209 0.002756197 145.05619 -0.56663075 + 367100 -33.792872 -33.798949 0.0060777717 319.8677 -0.51887855 + 367200 -33.789722 -33.798716 0.0089936783 473.32926 -0.45961902 + 367300 -33.793535 -33.798601 0.005065467 266.59101 -0.51172102 + 367400 -33.794826 -33.798688 0.0038621537 203.2617 -0.49303608 + 367500 -33.792617 -33.798978 0.0063614715 334.79857 -0.37517417 + 367600 -33.783352 -33.799431 0.016078761 846.21087 -0.05373505 + 367700 -33.793779 -33.799577 0.0057981715 305.15259 -0.13118006 + 367800 -33.794839 -33.799551 0.0047119244 247.98438 -0.057387266 + 367900 -33.794052 -33.799412 0.0053599516 282.08947 0.052711864 + 368000 -33.791647 -33.799072 0.0074253038 390.78711 0.20581043 + 368100 -33.791432 -33.798427 0.0069949588 368.13844 0.32204428 + 368200 -33.794704 -33.79773 0.0030253291 159.22037 0.34423554 + 368300 -33.795298 -33.797259 0.001960369 103.17247 0.39369653 + 368400 -33.791732 -33.796854 0.0051220487 269.56885 0.54140593 + 368500 -33.789656 -33.796398 0.0067426361 354.85893 0.69380832 + 368600 -33.790245 -33.796064 0.0058190124 306.24943 0.79416609 + 368700 -33.791419 -33.795974 0.0045552438 239.73842 0.86867877 + 368800 -33.791485 -33.796162 0.0046768551 246.13871 0.95105009 + 368900 -33.788536 -33.796633 0.0080969198 426.13366 1.0928141 + 369000 -33.78907 -33.797249 0.0081793957 430.4743 1.1647841 + 369100 -33.793967 -33.79768 0.0037134744 195.43685 1.113842 + 369200 -33.793974 -33.79806 0.0040862379 215.05506 1.1332871 + 369300 -33.791625 -33.798479 0.0068536868 360.70342 1.1823962 + 369400 -33.791065 -33.798792 0.007726325 406.62959 1.1755895 + 369500 -33.796565 -33.798886 0.0023215456 122.18088 1.0417541 + 369600 -33.796654 -33.79898 0.0023260125 122.41596 1.0171292 + 369700 -33.793305 -33.799187 0.0058813046 309.52781 1.0497586 + 369800 -33.791619 -33.79944 0.0078204145 411.58144 1.0358861 + 369900 -33.794296 -33.799621 0.0053258388 280.29415 0.94031865 + 370000 -33.796222 -33.799794 0.003572608 188.02317 0.87586039 + 370100 -33.796324 -33.800036 0.0037119707 195.35771 0.86237211 + 370200 -33.791761 -33.800411 0.0086500061 455.2421 0.95161248 + 370300 -33.79251 -33.800781 0.0082704343 435.26558 0.94407349 + 370400 -33.797035 -33.800943 0.0039083943 205.69531 0.86381742 + 370500 -33.797017 -33.80104 0.0040221831 211.68391 0.87457178 + 370600 -33.794117 -33.801092 0.006975419 367.11008 0.94520283 + 370700 -33.791588 -33.800974 0.0093864576 494.00089 1.0071656 + 370800 -33.797683 -33.800708 0.0030254912 159.2289 0.89020941 + 370900 -33.798269 -33.800539 0.0022696012 119.44708 0.87470615 + 371000 -33.795229 -33.800411 0.0051810459 272.67382 0.92138411 + 371100 -33.792435 -33.800239 0.0078041859 410.72734 0.94658398 + 371200 -33.794368 -33.800046 0.0056777446 298.81464 0.86823584 + 371300 -33.796476 -33.799939 0.0034626148 182.23433 0.78580019 + 371400 -33.79701 -33.799964 0.0029538161 155.45671 0.73467923 + 371500 -33.793174 -33.800138 0.0069646681 366.54427 0.7555895 + 371600 -33.791015 -33.800389 0.00937379 493.33421 0.71134557 + 371700 -33.796029 -33.80052 0.0044906683 236.33987 0.53436198 + 371800 -33.796834 -33.800603 0.0037688033 198.34876 0.45774245 + 371900 -33.794966 -33.800675 0.0057088137 300.44977 0.42926543 + 372000 -33.792786 -33.800652 0.0078664494 414.00421 0.39227685 + 372100 -33.796969 -33.800475 0.0035062256 184.52953 0.23469004 + 372200 -33.798863 -33.800356 0.0014933285 78.592544 0.16082034 + 372300 -33.797118 -33.800296 0.0031782921 167.27068 0.1694322 + 372400 -33.7934 -33.800207 0.0068070209 358.24744 0.21361291 + 372500 -33.792821 -33.799989 0.0071689139 377.29355 0.19551367 + 372600 -33.795401 -33.799706 0.0043049322 226.56474 0.12246264 + 372700 -33.796731 -33.799494 0.0027629742 145.41287 0.083013656 + 372800 -33.794345 -33.79936 0.0050153556 263.95369 0.12117954 + 372900 -33.789376 -33.799168 0.0097916866 515.32773 0.20534773 + 373000 -33.793486 -33.798904 0.0054175052 285.11847 0.10452361 + 373100 -33.795097 -33.798734 0.0036367981 191.40144 0.050383851 + 373200 -33.793478 -33.798671 0.0051927317 273.28884 0.049863606 + 373300 -33.786084 -33.798658 0.012573572 661.73588 0.13195117 + 373400 -33.793816 -33.798579 0.0047633275 250.68968 -0.10835961 + 373500 -33.795705 -33.798603 0.0028985189 152.54646 -0.20771721 + 373600 -33.793236 -33.798803 0.0055670983 292.99142 -0.24296136 + 373700 -33.789916 -33.799174 0.0092584172 487.26224 -0.31218773 + 373800 -33.7942 -33.799513 0.0053134537 279.64233 -0.54037867 + 373900 -33.796255 -33.799781 0.0035258278 185.56117 -0.69282672 + 374000 -33.795163 -33.800093 0.0049297381 259.44772 -0.78651886 + 374100 -33.793634 -33.800444 0.0068095565 358.38088 -0.89920085 + 374200 -33.794315 -33.800702 0.0063869686 336.14046 -1.063429 + 374300 -33.795542 -33.800822 0.0052801497 277.88957 -1.2254136 + 374400 -33.796184 -33.800831 0.0046467584 244.55475 -1.3583067 + 374500 -33.794695 -33.800746 0.006050569 318.43605 -1.4408887 + 374600 -33.790449 -33.800466 0.010017485 527.21128 -1.487797 + 374700 -33.794963 -33.799987 0.0050239628 264.40668 -1.6937121 + 374800 -33.79692 -33.799616 0.0026965517 141.91711 -1.792437 + 374900 -33.795375 -33.799306 0.003931286 206.90008 -1.7917315 + 375000 -33.793054 -33.798953 0.005898928 310.45532 -1.753196 + 375100 -33.792681 -33.798589 0.0059086455 310.96674 -1.7265447 + 375200 -33.792755 -33.79827 0.0055149475 290.24677 -1.684873 + 375300 -33.79246 -33.798019 0.0055592007 292.57577 -1.6156363 + 375400 -33.790822 -33.797817 0.0069946619 368.12282 -1.4980097 + 375500 -33.790496 -33.797618 0.0071218251 374.8153 -1.3875081 + 375600 -33.793389 -33.797457 0.0040682211 214.10685 -1.3506127 + 375700 -33.794378 -33.797406 0.0030274543 159.33222 -1.2961429 + 375800 -33.790694 -33.797458 0.0067639283 355.97951 -1.1440585 + 375900 -33.787527 -33.79749 0.0099635622 524.37339 -0.97034494 + 376000 -33.792061 -33.797394 0.0053331257 280.67765 -0.97350864 + 376100 -33.792828 -33.797303 0.0044754655 235.53976 -0.93024474 + 376200 -33.791648 -33.797243 0.0055949145 294.45536 -0.85761982 + 376300 -33.788869 -33.79718 0.008311295 437.41604 -0.75500112 + 376400 -33.787107 -33.797029 0.0099224416 522.20925 -0.67277242 + 376500 -33.793046 -33.796858 0.0038120371 200.62411 -0.75511542 + 376600 -33.793715 -33.796844 0.0031288254 164.66729 -0.74341246 + 376700 -33.790435 -33.797 0.0065652818 345.52492 -0.6472702 + 376800 -33.788204 -33.797249 0.0090442299 475.98976 -0.55675357 + 376900 -33.792054 -33.797405 0.00535101 281.61888 -0.58829629 + 377000 -33.792637 -33.797527 0.0048899848 257.35554 -0.55856172 + 377100 -33.7919 -33.797641 0.0057410401 302.14582 -0.49494302 + 377200 -33.791227 -33.797697 0.0064706729 340.54574 -0.42300489 + 377300 -33.792273 -33.797651 0.0053785521 283.0684 -0.3792302 + 377400 -33.794457 -33.797562 0.0031049956 163.41315 -0.36200487 + 377500 -33.794152 -33.797516 0.0033645128 177.07131 -0.29426764 + 377600 -33.789202 -33.797491 0.0082886063 436.22196 -0.099687877 + 377700 -33.78978 -33.797356 0.0075758407 398.70974 0.018986944 + 377800 -33.792723 -33.797201 0.004478439 235.69625 0.072242056 + 377900 -33.79275 -33.797155 0.0044055831 231.86191 0.17581436 + 378000 -33.791586 -33.797244 0.0056584657 297.8 0.31807745 + 378100 -33.791309 -33.797457 0.006147773 323.55181 0.45313895 + 378200 -33.79185 -33.797758 0.0059087048 310.96986 0.56767802 + 378300 -33.793124 -33.798111 0.0049871722 262.47043 0.6509026 + 378400 -33.79519 -33.798469 0.0032792754 172.58534 0.69015658 + 378500 -33.795886 -33.798829 0.0029434433 154.91079 0.72797455 + 378600 -33.792285 -33.799294 0.0070099747 368.92872 0.83911102 + 378700 -33.79 -33.799806 0.0098054661 516.05294 0.91681603 + 378800 -33.795091 -33.800022 0.0049315476 259.54295 0.82413048 + 378900 -33.795577 -33.800093 0.0045159858 237.67231 0.8029787 + 379000 -33.794453 -33.800103 0.0056499155 297.35001 0.79772625 + 379100 -33.793047 -33.800036 0.0069891765 367.83412 0.78219795 + 379200 -33.793741 -33.799897 0.0061557351 323.97085 0.7157042 + 379300 -33.796573 -33.799793 0.0032202544 169.47912 0.61789039 + 379400 -33.796526 -33.799823 0.0032973522 173.5367 0.59310019 + 379500 -33.791994 -33.800019 0.0080254504 422.3723 0.66429605 + 379600 -33.792037 -33.80029 0.0082529544 434.34563 0.65416988 + 379700 -33.795632 -33.800481 0.0048495071 255.22523 0.58866824 + 379800 -33.795787 -33.800646 0.0048592891 255.74005 0.60677526 + 379900 -33.794927 -33.800782 0.0058550879 308.14805 0.66365396 + 380000 -33.794531 -33.800816 0.0062857962 330.81585 0.72783211 + 380100 -33.795945 -33.800704 0.0047597536 250.50159 0.76433069 + 380200 -33.798186 -33.800535 0.0023482652 123.5871 0.77727356 + 380300 -33.797457 -33.800375 0.0029185349 153.59989 0.84870779 + 380400 -33.793117 -33.80011 0.0069936228 368.06813 1.0239177 + 380500 -33.792764 -33.799656 0.006891984 362.71897 1.1406913 + 380600 -33.794745 -33.799191 0.0044468112 234.03171 1.1909719 + 380700 -33.795376 -33.798869 0.0034928547 183.82583 1.2422745 + 380800 -33.791007 -33.798682 0.0076744772 403.90089 1.3820713 + 380900 -33.78927 -33.798562 0.0092920959 489.03472 1.4650867 + 381000 -33.794186 -33.798571 0.0043846081 230.75801 1.3822713 + 381100 -33.794616 -33.798754 0.0041374486 217.75023 1.3531191 + 381200 -33.792858 -33.799117 0.0062595151 329.4327 1.3265527 + 381300 -33.792106 -33.79957 0.0074643593 392.84257 1.232058 + 381400 -33.797427 -33.799891 0.0024640657 129.68158 1.0086629 + 381500 -33.797928 -33.800099 0.002170819 114.24827 0.90093267 + 381600 -33.794895 -33.800362 0.0054669169 287.71896 0.80714603 + 381700 -33.792404 -33.800568 0.0081636977 429.64813 0.60996338 + 381800 -33.795157 -33.800531 0.0053737342 282.81484 0.30184017 + 381900 -33.797094 -33.800383 0.0032886707 173.07981 0.063966114 + 382000 -33.795839 -33.80023 0.0043912726 231.10876 -0.087610582 + 382100 -33.789411 -33.799973 0.010561906 555.86369 -0.21431054 + 382200 -33.793926 -33.799629 0.0057029365 300.14046 -0.54569488 + 382300 -33.796033 -33.799457 0.0034237491 180.18886 -0.72633486 + 382400 -33.794542 -33.799479 0.0049372532 259.84323 -0.78228292 + 382500 -33.789036 -33.799692 0.010656388 560.83621 -0.73412584 + 382600 -33.795194 -33.799944 0.004750022 249.98942 -0.88056342 + 382700 -33.797308 -33.800147 0.0028392124 149.42522 -0.90491385 + 382800 -33.794944 -33.80046 0.0055166878 290.33836 -0.79907885 + 382900 -33.791791 -33.800831 0.0090399989 475.76708 -0.62680151 + 383000 -33.795789 -33.801015 0.0052261393 275.04705 -0.586804 + 383100 -33.797928 -33.801051 0.0031222135 164.31931 -0.54033624 + 383200 -33.796666 -33.801045 0.0043783246 230.42732 -0.42859439 + 383300 -33.793823 -33.800953 0.0071293461 375.21112 -0.26359302 + 383400 -33.794545 -33.800726 0.0061812009 325.31109 -0.17254578 + 383500 -33.795653 -33.800455 0.004801865 252.71787 -0.11534513 + 383600 -33.795332 -33.800212 0.0048791982 256.78785 -0.054614663 + 383700 -33.791631 -33.799975 0.0083433797 439.10463 0.054560536 + 383800 -33.791187 -33.799671 0.0084834812 446.47805 0.078747521 + 383900 -33.796483 -33.799457 0.0029735856 156.49716 -0.037007994 + 384000 -33.79625 -33.799407 0.0031569873 166.14943 -0.068044577 + 384100 -33.793761 -33.799444 0.0056827782 299.07955 -0.093192508 + 384200 -33.792519 -33.799437 0.0069182537 364.10152 -0.18802674 + 384300 -33.793591 -33.79928 0.0056890337 299.40877 -0.34972487 + 384400 -33.79444 -33.798992 0.0045521379 239.57496 -0.50826025 + 384500 -33.793031 -33.798579 0.0055483912 292.00688 -0.62979571 + 384600 -33.787949 -33.797796 0.0098467478 518.22555 -0.73690469 + 384700 -33.791452 -33.796712 0.0052596306 276.80966 -1.0165094 + 384800 -33.793368 -33.795902 0.0025342507 133.37535 -1.1851935 + 384900 -33.79141 -33.795285 0.0038748639 203.93063 -1.2343386 + 385000 -33.787914 -33.794611 0.0066969705 352.45559 -1.2401469 + 385100 -33.788176 -33.79411 0.0059344992 312.3274 -1.2733544 + 385200 -33.788923 -33.793947 0.0050235959 264.38737 -1.2568516 + 385300 -33.788837 -33.794127 0.0052893775 278.37522 -1.1682317 + 385400 -33.787225 -33.794601 0.0073757239 388.17777 -0.99308893 + 385500 -33.788331 -33.795207 0.0068761256 361.88436 -0.82919208 + 385600 -33.791913 -33.79569 0.0037776901 198.81646 -0.74074974 + 385700 -33.792255 -33.796112 0.0038567134 202.97539 -0.61453542 + 385800 -33.787706 -33.796577 0.0088711223 466.87925 -0.37124709 + 385900 -33.786073 -33.7969 0.010826644 569.79663 -0.14014387 + 386000 -33.79301 -33.796859 0.0038489881 202.56881 -0.16182753 + 386100 -33.792451 -33.796759 0.0043081573 226.73448 -0.084312623 + 386200 -33.789433 -33.7966 0.0071668652 377.18572 0.021345229 + 386300 -33.788624 -33.796327 0.0077033603 405.42098 0.058254971 + 386400 -33.792751 -33.796097 0.0033452465 176.05734 -0.031054279 + 386500 -33.794126 -33.796113 0.0019870154 104.57485 -0.08316444 + 386600 -33.790468 -33.79646 0.0059922925 315.36901 -0.060554579 + 386700 -33.78789 -33.797246 0.0093563513 492.41642 -0.10848499 + 386800 -33.792569 -33.797969 0.0054003867 284.21754 -0.29464248 + 386900 -33.794373 -33.798569 0.0041955552 220.80833 -0.40180225 + 387000 -33.793756 -33.799177 0.0054208402 285.29399 -0.45362947 + 387100 -33.789881 -33.799837 0.0099555334 523.95084 -0.44818151 + 387200 -33.793575 -33.800334 0.0067588277 355.71107 -0.5927565 + 387300 -33.797247 -33.800521 0.0032733114 172.27146 -0.70124065 + 387400 -33.79631 -33.800632 0.0043225087 227.48978 -0.69534195 + 387500 -33.792663 -33.800687 0.00802376 422.28333 -0.61507153 + 387600 -33.7936 -33.800595 0.0069942799 368.10271 -0.6034182 + 387700 -33.798353 -33.800466 0.0021131198 111.21161 -0.65673511 + 387800 -33.798929 -33.800459 0.001530193 80.532695 -0.62027399 + 387900 -33.79753 -33.80059 0.0030597512 161.03198 -0.50757488 + 388000 -33.794027 -33.800875 0.0068482953 360.41968 -0.2881386 + 388100 -33.793303 -33.801194 0.007891326 415.31345 -0.071935555 + 388200 -33.79709 -33.801384 0.0042943656 226.00863 0.028063652 + 388300 -33.798427 -33.80149 0.0030629665 161.20119 0.12687014 + 388400 -33.793964 -33.801577 0.0076131792 400.67483 0.33950071 + 388500 -33.790899 -33.801512 0.010613032 558.55442 0.58234275 + 388600 -33.79659 -33.80126 0.0046701314 245.78485 0.59392582 + 388700 -33.79719 -33.800999 0.0038093638 200.48342 0.65359103 + 388800 -33.794508 -33.8007 0.0061926019 325.91111 0.75561279 + 388900 -33.790689 -33.800242 0.0095537427 502.80496 0.86606403 + 389000 -33.796184 -33.799768 0.003583873 188.61604 0.76714242 + 389100 -33.797779 -33.79958 0.0018011491 94.792869 0.72296328 + 389200 -33.796162 -33.799571 0.0034088192 179.40311 0.71879677 + 389300 -33.792564 -33.799698 0.0071339079 375.45121 0.71466967 + 389400 -33.792452 -33.799833 0.007381608 388.48745 0.61000137 + 389500 -33.795797 -33.799881 0.0040831368 214.89185 0.44476757 + 389600 -33.797136 -33.799898 0.002761951 145.35902 0.34142494 + 389700 -33.794376 -33.799916 0.0055408739 291.61125 0.3202549 + 389800 -33.789469 -33.799799 0.010329303 543.62199 0.29969433 + 389900 -33.794638 -33.799476 0.0048379452 254.61674 0.095480627 + 390000 -33.795905 -33.799194 0.0032887257 173.0827 0.013355178 + 390100 -33.793637 -33.798955 0.0053175757 279.85927 0.026911582 + 390200 -33.789676 -33.798672 0.0089961357 473.4586 0.095593078 + 390300 -33.791804 -33.798412 0.0066073408 347.73845 0.07384778 + 390400 -33.79311 -33.798301 0.0051904802 273.17035 0.097263411 + 390500 -33.793224 -33.798371 0.0051465531 270.8585 0.17438241 + 390600 -33.791509 -33.798616 0.0071070286 374.03658 0.3248421 + 390700 -33.789844 -33.798982 0.0091382963 480.94038 0.51918917 + 390800 -33.795075 -33.799274 0.0041996981 221.02637 0.56413895 + 390900 -33.796148 -33.799507 0.0033596582 176.81581 0.65257917 + 391000 -33.793664 -33.79978 0.0061159118 321.87498 0.81892903 + 391100 -33.789815 -33.800025 0.010209799 537.33261 1.0459099 + 391200 -33.797042 -33.80005 0.0030080518 158.31108 1.0208701 + 391300 -33.797604 -33.800044 0.0024402967 128.43064 1.0619271 + 391400 -33.79483 -33.800071 0.0052403091 275.79279 1.1549291 + 391500 -33.791895 -33.800068 0.0081729119 430.13306 1.2386742 + 391600 -33.794353 -33.799989 0.0056353293 296.58235 1.1913424 + 391700 -33.796864 -33.799941 0.0030771893 161.94973 1.1226009 + 391800 -33.797183 -33.799999 0.0028159271 148.19973 1.0815849 + 391900 -33.792032 -33.800206 0.0081740459 430.19274 1.1150285 + 392000 -33.791773 -33.80047 0.0086973602 457.73431 1.0060226 + 392100 -33.796439 -33.800614 0.0041746907 219.71025 0.81401492 + 392200 -33.796767 -33.800727 0.0039596231 208.39143 0.72269917 + 392300 -33.793894 -33.800835 0.00694081 365.28864 0.6807764 + 392400 -33.789179 -33.800821 0.011641883 612.70194 0.63601023 + 392500 -33.797004 -33.800611 0.0036067093 189.81789 0.36129028 + 392600 -33.797856 -33.800452 0.0025959708 136.62363 0.28110358 + 392700 -33.794995 -33.800309 0.0053139535 279.66863 0.28397557 + 392800 -33.792005 -33.800088 0.0080821131 425.3544 0.28709216 + 392900 -33.794214 -33.799817 0.0056032624 294.8947 0.20313527 + 393000 -33.796266 -33.79963 0.0033641623 177.05286 0.1461265 + 393100 -33.796652 -33.799566 0.0029140275 153.36267 0.14215156 + 393200 -33.792678 -33.799601 0.006923121 364.35768 0.2426702 + 393300 -33.790456 -33.799607 0.0091507838 481.59759 0.32545023 + 393400 -33.795108 -33.799493 0.0043848126 230.76878 0.2642563 + 393500 -33.795917 -33.799367 0.0034494389 181.54089 0.2623784 + 393600 -33.793266 -33.799195 0.0059294213 312.06015 0.31426743 + 393700 -33.788723 -33.79879 0.010066948 529.81452 0.37851188 + 393800 -33.795213 -33.798211 0.0029978579 157.77459 0.20331108 + 393900 -33.796354 -33.797908 0.0015540894 81.790337 0.134362 + 394000 -33.794278 -33.797667 0.0033890625 178.36333 0.089139746 + 394100 -33.79029 -33.797362 0.0070723618 372.21209 -0.0018056966 + 394200 -33.789601 -33.796971 0.0073707629 387.91668 -0.22230029 + 394300 -33.792455 -33.796642 0.0041874458 220.38154 -0.49826398 + 394400 -33.79351 -33.796499 0.0029891618 157.31692 -0.69624585 + 394500 -33.789566 -33.796536 0.006970632 366.85814 -0.81189743 + 394600 -33.786679 -33.796669 0.0099895942 525.74343 -1.0434726 + 394700 -33.791672 -33.796751 0.0050792684 267.31736 -1.371605 + 394800 -33.792439 -33.796862 0.0044223906 232.74647 -1.5418767 + 394900 -33.791115 -33.797026 0.0059106409 311.07176 -1.6419325 + 395000 -33.788246 -33.797184 0.0089380712 470.40271 -1.6960534 + 395100 -33.789288 -33.797202 0.0079147702 416.54729 -1.8040874 + 395200 -33.793841 -33.797124 0.0032825689 172.75867 -1.9259916 + 395300 -33.793712 -33.797099 0.0033864394 178.22529 -1.9081953 + 395400 -33.789544 -33.797124 0.007580544 398.95727 -1.7565883 + 395500 -33.789095 -33.7971 0.008005046 421.29843 -1.6222951 + 395600 -33.791964 -33.797033 0.0050698192 266.82006 -1.5489688 + 395700 -33.792155 -33.797021 0.0048660668 256.09676 -1.4221876 + 395800 -33.791366 -33.79708 0.0057140588 300.72582 -1.2626486 + 395900 -33.790795 -33.797192 0.0063969053 336.66342 -1.0992462 + 396000 -33.792076 -33.797321 0.0052446262 276.02 -0.98677989 + 396100 -33.794861 -33.797457 0.0025962662 136.63918 -0.95395397 + 396200 -33.794577 -33.797659 0.0030822474 162.21593 -0.90107877 + 396300 -33.789779 -33.798008 0.0082294395 433.10806 -0.77792797 + 396400 -33.790506 -33.798346 0.0078396927 412.59603 -0.7915159 + 396500 -33.793543 -33.798524 0.0049804265 262.11541 -0.87953903 + 396600 -33.793852 -33.798658 0.0048051861 252.89266 -0.93654189 + 396700 -33.792996 -33.798804 0.0058077686 305.65768 -0.99515191 + 396800 -33.792628 -33.798963 0.0063344842 333.37825 -1.083921 + 396900 -33.793205 -33.799133 0.0059278221 311.97599 -1.1972571 + 397000 -33.793502 -33.799337 0.0058341472 307.04596 -1.2990401 + 397100 -33.793841 -33.799588 0.0057469731 302.45807 -1.3885409 + 397200 -33.794445 -33.79988 0.0054349142 286.03469 -1.4629733 + 397300 -33.79536 -33.800193 0.0048336154 254.38887 -1.516459 + 397400 -33.795869 -33.800509 0.0046392063 244.15729 -1.5330337 + 397500 -33.794621 -33.800829 0.0062072813 326.68368 -1.4865342 + 397600 -33.792812 -33.801114 0.0083019935 436.92651 -1.396868 + 397700 -33.796481 -33.80124 0.0047590047 250.46217 -1.3972362 + 397800 -33.798503 -33.801262 0.0027588987 145.19838 -1.3668641 + 397900 -33.796681 -33.801261 0.0045805412 241.0698 -1.2367041 + 398000 -33.791341 -33.801161 0.0098202856 516.83287 -0.96085749 + 398100 -33.794432 -33.800891 0.0064583991 339.89978 -0.83295703 + 398200 -33.796316 -33.800609 0.0042932887 225.95195 -0.71013452 + 398300 -33.795715 -33.800376 0.0046609708 245.30273 -0.54350074 + 398400 -33.78955 -33.800134 0.010584566 557.05626 -0.21744735 + 398500 -33.792322 -33.799814 0.0074923706 394.31678 -0.01996766 + 398600 -33.796188 -33.799644 0.0034559408 181.88308 0.060833823 + 398700 -33.795059 -33.799617 0.0045587307 239.92193 0.21226638 + 398800 -33.792043 -33.799675 0.0076324067 401.68676 0.41132966 + 398900 -33.792675 -33.799708 0.007032927 370.13668 0.53360802 + 399000 -33.796951 -33.799689 0.002737187 144.05571 0.53099998 + 399100 -33.797215 -33.799697 0.0024828392 130.66961 0.56243999 + 399200 -33.794997 -33.79973 0.0047326217 249.07366 0.62382988 + 399300 -33.793804 -33.799702 0.0058976995 310.39066 0.64742896 + 399400 -33.79349 -33.799557 0.006067215 319.31211 0.6365619 + 399500 -33.793921 -33.799321 0.0054006376 284.23074 0.6018196 + 399600 -33.794208 -33.799066 0.004857722 255.65758 0.57175629 + 399700 -33.79246 -33.798834 0.0063736054 335.43717 0.5901981 + 399800 -33.789889 -33.798607 0.0087183298 458.83792 0.640343 + 399900 -33.793605 -33.798451 0.0048453879 255.00845 0.59066669 + 400000 -33.79579 -33.798491 0.0027007813 142.13971 0.59257275 + 400100 -33.793961 -33.798765 0.0048039886 252.82963 0.71199493 + 400200 -33.787745 -33.799343 0.011597384 610.36 1.0078423 + 400300 -33.792441 -33.799825 0.0073842379 388.62585 1.110376 + 400400 -33.795277 -33.800098 0.0048212676 253.73902 1.214934 + 400500 -33.795891 -33.800265 0.0043744686 230.22438 1.3450878 + 400600 -33.793741 -33.800351 0.0066099947 347.87813 1.5362314 + 400700 -33.789168 -33.800235 0.011066742 582.43274 1.8127854 + 400800 -33.795836 -33.799879 0.004043123 212.78596 1.8330578 + 400900 -33.796857 -33.799606 0.0027490678 144.68098 1.888926 + 401000 -33.794872 -33.79937 0.0044973354 236.69075 1.9811633 + 401100 -33.792374 -33.799114 0.0067398882 354.7143 2.0640612 + 401200 -33.792614 -33.798873 0.0062590176 329.40652 2.0599603 + 401300 -33.793766 -33.798721 0.0049552921 260.7926 2.0037044 + 401400 -33.794783 -33.798694 0.0039118452 205.87692 1.9204627 + 401500 -33.794743 -33.798791 0.0040482148 213.05393 1.8332399 + 401600 -33.791419 -33.798991 0.0075720307 398.50922 1.7630501 + 401700 -33.790951 -33.79915 0.0081996019 431.53774 1.5778269 + 401800 -33.795448 -33.799158 0.0037102747 195.26845 1.320393 + 401900 -33.795939 -33.799141 0.0032024802 168.54367 1.1793876 + 402000 -33.792932 -33.79911 0.0061786559 325.17715 1.0873341 + 402100 -33.791091 -33.798946 0.0078549098 413.39689 0.92965267 + 402200 -33.792902 -33.798649 0.0057476514 302.49377 0.72280806 + 402300 -33.794011 -33.798361 0.0043506564 228.97117 0.57647178 + 402400 -33.792846 -33.79814 0.0052943127 278.63496 0.51256235 + 402500 -33.78775 -33.797924 0.01017423 535.46066 0.54381589 + 402600 -33.791688 -33.797661 0.0059722925 314.31643 0.42528318 + 402700 -33.794718 -33.797559 0.0028413965 149.54016 0.36973663 + 402800 -33.793446 -33.797632 0.0041858149 220.29571 0.43619849 + 402900 -33.790725 -33.797809 0.0070834729 372.79686 0.57356613 + 403000 -33.79102 -33.797915 0.0068955351 362.90586 0.67576478 + 403100 -33.79434 -33.797882 0.0035417102 186.39705 0.70099432 + 403200 -33.796548 -33.797839 0.0012909772 67.942978 0.71139947 + 403300 -33.796001 -33.797863 0.001861368 97.962135 0.75799438 + 403400 -33.792175 -33.797927 0.0057522877 302.73777 0.87657089 + 403500 -33.791325 -33.797864 0.0065391211 344.14811 0.92621002 + 403600 -33.792143 -33.797659 0.0055163943 290.32291 0.91685821 + 403700 -33.792924 -33.797444 0.0045194232 237.85321 0.88163184 + 403800 -33.791612 -33.797323 0.0057106438 300.54609 0.86167095 + 403900 -33.78779 -33.797341 0.0095512452 502.67352 0.8507287 + 404000 -33.791939 -33.797515 0.0055761088 293.46563 0.65887269 + 404100 -33.794836 -33.797846 0.0030101619 158.42213 0.51710213 + 404200 -33.79365 -33.798462 0.0048117829 253.23984 0.44609505 + 404300 -33.791766 -33.799403 0.0076369926 401.92811 0.35265009 + 404400 -33.793558 -33.800351 0.0067930028 357.50968 0.16968721 + 404500 -33.795222 -33.801069 0.0058473386 307.74021 -0.0036727848 + 404600 -33.795655 -33.801601 0.0059459191 312.92842 -0.15562578 + 404700 -33.796328 -33.801934 0.005606836 295.08278 -0.3164855 + 404800 -33.797408 -33.802067 0.0046589407 245.19589 -0.48082458 + 404900 -33.798434 -33.802052 0.0036175457 190.3882 -0.62749515 + 405000 -33.796974 -33.801942 0.0049684308 261.48408 -0.71984147 + 405100 -33.792582 -33.801661 0.0090788612 477.81237 -0.78933924 + 405200 -33.795206 -33.801199 0.0059934831 315.43167 -0.99903271 + 405300 -33.798161 -33.800843 0.0026823105 141.16761 -1.1529738 + 405400 -33.797131 -33.800632 0.0035011793 184.26395 -1.1861468 + 405500 -33.790049 -33.800394 0.010345036 544.45 -1.0945228 + 405600 -33.794405 -33.800126 0.005721064 301.09449 -1.2058126 + 405700 -33.796466 -33.799971 0.0035057772 184.50593 -1.2412252 + 405800 -33.795186 -33.799909 0.004723334 248.58486 -1.183961 + 405900 -33.789809 -33.799843 0.010034237 528.09295 -1.009427 + 406000 -33.793371 -33.799637 0.0062661251 329.78058 -0.99329246 + 406100 -33.796137 -33.799439 0.0033015663 173.75849 -0.98470381 + 406200 -33.795248 -33.799274 0.0040261531 211.89285 -0.90778804 + 406300 -33.792506 -33.799078 0.0065721145 345.88452 -0.78529476 + 406400 -33.791046 -33.798776 0.0077305824 406.85366 -0.68405063 + 406500 -33.794361 -33.798454 0.0040922262 215.37022 -0.69767132 + 406600 -33.796396 -33.798306 0.0019103027 100.53753 -0.71581482 + 406700 -33.794628 -33.798352 0.0037238112 195.98086 -0.67828551 + 406800 -33.789582 -33.798595 0.0090124292 474.31611 -0.59852249 + 406900 -33.792922 -33.798829 0.0059062056 310.83833 -0.70109341 + 407000 -33.795161 -33.799017 0.0038559853 202.93707 -0.78649824 + 407100 -33.794521 -33.799226 0.0047056077 247.65193 -0.82202786 + 407200 -33.78814 -33.799461 0.011321756 595.85391 -0.76928329 + 407300 -33.792662 -33.799505 0.0068430465 360.14343 -0.9533092 + 407400 -33.795932 -33.799417 0.0034848293 183.40346 -1.0749077 + 407500 -33.794616 -33.799314 0.0046983164 247.2682 -1.0910089 + 407600 -33.791383 -33.799135 0.0077513638 407.94736 -1.0633063 + 407700 -33.792094 -33.79883 0.0067361819 354.51924 -1.0980288 + 407800 -33.796221 -33.798582 0.0023604188 124.22674 -1.1736055 + 407900 -33.796697 -33.798526 0.0018287868 96.247418 -1.1511343 + 408000 -33.794077 -33.798648 0.0045709405 240.56452 -1.0191764 + 408100 -33.792633 -33.798901 0.0062679426 329.87623 -0.85145852 + 408200 -33.792842 -33.799165 0.0063231394 332.78119 -0.69019453 + 408300 -33.79452 -33.799375 0.0048550411 255.51648 -0.56155136 + 408400 -33.795667 -33.799546 0.0038787164 204.13338 -0.44389937 + 408500 -33.794305 -33.799722 0.0054170506 285.09454 -0.28334228 + 408600 -33.789262 -33.799899 0.010637099 559.82101 -0.016630149 + 408700 -33.794531 -33.799932 0.0054013642 284.26898 0.029770023 + 408800 -33.796565 -33.799937 0.003371886 177.45936 0.068495945 + 408900 -33.795334 -33.800012 0.0046785124 246.22593 0.14158679 + 409000 -33.793349 -33.800155 0.0068062875 358.20884 0.20600144 + 409100 -33.793759 -33.800313 0.0065547319 344.9697 0.1943721 + 409200 -33.796655 -33.800453 0.0037989245 199.93401 0.10839597 + 409300 -33.799222 -33.800589 0.0013668233 71.934691 0.022204679 + 409400 -33.798427 -33.800807 0.0023799994 125.25725 -0.010527118 + 409500 -33.795735 -33.801165 0.0054305447 285.80472 -0.045576483 + 409600 -33.794356 -33.801494 0.0071373449 375.6321 -0.14297938 + 409700 -33.796066 -33.801607 0.0055409424 291.61486 -0.30414312 + 409800 -33.798497 -33.801541 0.0030447546 160.24272 -0.4475104 + 409900 -33.799304 -33.801423 0.0021187872 111.50988 -0.51977671 + 410000 -33.796004 -33.801252 0.0052475619 276.1745 -0.48690998 + 410100 -33.792704 -33.800851 0.0081470188 428.77033 -0.43565623 + 410200 -33.795081 -33.800312 0.00523048 275.2755 -0.46180839 + 410300 -33.79666 -33.799888 0.0032277102 169.87151 -0.43473278 + 410400 -33.794376 -33.799604 0.0052287003 275.18183 -0.27744058 + 410500 -33.788737 -33.79931 0.010572889 556.4417 0.074861893 + 410600 -33.793408 -33.799069 0.0056608444 297.92519 0.25024274 + 410700 -33.794719 -33.798992 0.0042738608 224.92948 0.45154175 + 410800 -33.793538 -33.799041 0.0055028712 289.6112 0.71658954 + 410900 -33.790537 -33.799126 0.0085885674 452.00864 1.0623215 + 411000 -33.789694 -33.799071 0.0093772421 493.51589 1.4001585 + 411100 -33.795297 -33.798873 0.0035756364 188.18255 1.5080349 + 411200 -33.795605 -33.798691 0.0030855797 162.39131 1.6252521 + 411300 -33.792115 -33.798449 0.0063335527 333.32923 1.7891858 + 411400 -33.790096 -33.797977 0.0078811626 414.77856 1.9009806 + 411500 -33.792347 -33.7974 0.0050529425 265.93185 1.873409 + 411600 -33.792879 -33.796914 0.0040345124 212.33279 1.8308471 + 411700 -33.788227 -33.796496 0.0082692919 435.20546 1.8379151 + 411800 -33.78366 -33.795873 0.012213316 642.7759 1.7381745 + 411900 -33.790215 -33.795438 0.0052226033 274.86095 1.4442126 + 412000 -33.791438 -33.79537 0.0039318585 206.9302 1.2969926 + 412100 -33.789564 -33.795645 0.006080977 320.03639 1.2220409 + 412200 -33.78603 -33.796217 0.010187141 536.14017 1.1711038 + 412300 -33.792443 -33.796708 0.0042649878 224.46251 0.95663176 + 412400 -33.793608 -33.797045 0.0034378105 180.9289 0.90144261 + 412500 -33.791657 -33.797403 0.0057463561 302.4256 0.93709523 + 412600 -33.789675 -33.797645 0.0079698589 419.44656 0.99683722 + 412700 -33.793348 -33.797588 0.0042405304 223.17533 0.95702966 + 412800 -33.795811 -33.797462 0.0016512023 86.901302 0.93993597 + 412900 -33.79488 -33.797391 0.0025105135 132.12608 1.0030099 + 413000 -33.792727 -33.797354 0.0046272318 243.52708 1.119319 + 413100 -33.790605 -33.797347 0.0067418299 354.81649 1.2591125 + 413200 -33.790624 -33.797398 0.0067746504 356.54381 1.3601825 + 413300 -33.793687 -33.797573 0.0038859749 204.51539 1.3754613 + 413400 -33.795623 -33.797901 0.0022787785 119.93008 1.3744084 + 413500 -33.794037 -33.798479 0.0044420347 233.78032 1.4151505 + 413600 -33.787805 -33.799625 0.011819948 622.07333 1.5168048 + 413700 -33.794023 -33.800667 0.0066439269 349.66395 1.3447759 + 413800 -33.796385 -33.801352 0.0049673853 261.42906 1.2312013 + 413900 -33.796679 -33.801882 0.0052029945 273.82896 1.1338458 + 414000 -33.795839 -33.802285 0.0064452773 339.2092 1.0252421 + 414100 -33.794786 -33.802514 0.0077289723 406.76892 0.8795385 + 414200 -33.797693 -33.802519 0.004826016 253.98892 0.64822283 + 414300 -33.799349 -33.802416 0.0030673713 161.43302 0.47374618 + 414400 -33.797415 -33.80228 0.0048657959 256.0825 0.36784363 + 414500 -33.792285 -33.802026 0.0097404343 512.63037 0.2559946 + 414600 -33.795464 -33.8017 0.0062359351 328.1917 -0.016444349 + 414700 -33.796839 -33.801469 0.0046302954 243.68832 -0.19293994 + 414800 -33.796136 -33.801346 0.0052098396 274.18921 -0.29374661 + 414900 -33.794356 -33.801311 0.0069550356 366.03732 -0.35257787 + 415000 -33.792432 -33.801318 0.0088860326 467.66397 -0.38788939 + 415100 -33.796084 -33.801304 0.0052197329 274.70988 -0.50280719 + 415200 -33.798064 -33.801287 0.0032231441 169.6312 -0.55043037 + 415300 -33.796655 -33.801272 0.00461681 242.97859 -0.50575239 + 415400 -33.791897 -33.801164 0.0092666949 487.69789 -0.36760877 + 415500 -33.794545 -33.800847 0.006302296 331.68422 -0.36506143 + 415600 -33.797246 -33.800503 0.0032565356 171.38857 -0.37702659 + 415700 -33.796779 -33.800176 0.0033969317 178.77749 -0.33245321 + 415800 -33.795519 -33.799822 0.0043026698 226.44568 -0.2734709 + 415900 -33.792636 -33.79941 0.0067737146 356.49455 -0.18521157 + 416000 -33.791411 -33.798933 0.0075214556 395.8475 -0.14053413 + 416100 -33.794392 -33.798549 0.0041569251 218.77526 -0.19986795 + 416200 -33.796382 -33.798402 0.00201993 106.30711 -0.25932789 + 416300 -33.795059 -33.798461 0.0034020726 179.04804 -0.27881326 + 416400 -33.789663 -33.798718 0.0090552057 476.5674 -0.2858591 + 416500 -33.792632 -33.798926 0.0062946306 331.28079 -0.49406835 + 416600 -33.795167 -33.799014 0.0038471848 202.47391 -0.68019544 + 416700 -33.794645 -33.799049 0.0044043414 231.79656 -0.812018 + 416800 -33.787308 -33.798972 0.011664654 613.90034 -0.88159588 + 416900 -33.790942 -33.798559 0.007616933 400.87239 -1.2393223 + 417000 -33.793796 -33.79811 0.0043135622 227.01893 -1.4961394 + 417100 -33.792919 -33.79767 0.0047504739 250.0132 -1.6567295 + 417200 -33.78997 -33.797183 0.0072130926 379.61863 -1.7880504 + 417300 -33.788991 -33.796653 0.0076619747 403.24289 -1.9608274 + 417400 -33.79325 -33.796315 0.0030647388 161.29447 -2.1687803 + 417500 -33.79422 -33.796309 0.0020893691 109.96163 -2.222202 + 417600 -33.791457 -33.796624 0.0051670545 271.93747 -2.1373529 + 417700 -33.789428 -33.797253 0.0078247789 411.81113 -1.9945356 + 417800 -33.791774 -33.797868 0.0060944246 320.74413 -1.9016834 + 417900 -33.793919 -33.798339 0.0044200724 232.62447 -1.7998693 + 418000 -33.794283 -33.798715 0.0044321087 233.25793 -1.6548981 + 418100 -33.790412 -33.799043 0.0086315164 454.26901 -1.3850094 + 418200 -33.789736 -33.799196 0.0094603419 497.88936 -1.1069483 + 418300 -33.795349 -33.799097 0.0037475873 197.23218 -1.0247345 + 418400 -33.795287 -33.798955 0.0036676769 193.02657 -0.87622697 + 418500 -33.792606 -33.798762 0.0061555548 323.96136 -0.65856432 + 418600 -33.791161 -33.798466 0.0073048883 384.44976 -0.44166864 + 418700 -33.792414 -33.798153 0.0057388494 302.03053 -0.30341576 + 418800 -33.792691 -33.797921 0.0052301144 275.25625 -0.18293509 + 418900 -33.792152 -33.7978 0.0056482321 297.26142 -0.075112104 + 419000 -33.791028 -33.797791 0.0067627658 355.91833 0.018353516 + 419100 -33.790551 -33.797861 0.0073104374 384.7418 0.069170644 + 419200 -33.79348 -33.79796 0.0044793476 235.74407 0.017587243 + 419300 -33.794665 -33.798089 0.0034231931 180.1596 -0.029197104 + 419400 -33.792379 -33.79827 0.0058915969 310.06949 -0.040374759 + 419500 -33.787666 -33.798429 0.010762488 566.42015 -0.060519106 + 419600 -33.79373 -33.79837 0.0046406617 244.23388 -0.30345589 + 419700 -33.794819 -33.798261 0.0034418991 181.14408 -0.41845347 + 419800 -33.793297 -33.79814 0.0048436392 254.91641 -0.48694781 + 419900 -33.790573 -33.797959 0.0073856472 388.70002 -0.54842651 + 420000 -33.791098 -33.797701 0.0066037006 347.54687 -0.67027152 + 420100 -33.795006 -33.797522 0.0025157726 132.40287 -0.80905724 + 420200 -33.795784 -33.797552 0.0017679732 93.046851 -0.82901919 + 420300 -33.792695 -33.797837 0.0051423382 270.63667 -0.71734685 + 420400 -33.790996 -33.798371 0.0073750801 388.14389 -0.55922126 + 420500 -33.79312 -33.798875 0.0057551637 302.88913 -0.44530777 + 420600 -33.795157 -33.799259 0.0041021981 215.89503 -0.33052395 + 420700 -33.795235 -33.799576 0.0043416615 228.49777 -0.16981613 + 420800 -33.790171 -33.799878 0.0097069987 510.87068 0.14699169 + 420900 -33.79156 -33.800001 0.0084409516 444.23975 0.40695226 + 421000 -33.796224 -33.799921 0.0036966467 194.55122 0.51248955 + 421100 -33.795658 -33.799816 0.0041584433 218.85516 0.68430345 + 421200 -33.793086 -33.799681 0.0065942538 347.0497 0.91250816 + 421300 -33.792097 -33.799488 0.0073905429 388.95768 1.1220461 + 421400 -33.796202 -33.799324 0.0031213986 164.27642 1.1832369 + 421500 -33.797722 -33.799332 0.0016103089 84.749123 1.212154 + 421600 -33.795997 -33.799537 0.0035400373 186.30901 1.269357 + 421700 -33.7931 -33.799957 0.0068571615 360.88629 1.3172723 + 421800 -33.793458 -33.800404 0.0069457302 365.54758 1.2632004 + 421900 -33.796262 -33.800709 0.0044470353 234.0435 1.1373804 + 422000 -33.798006 -33.800894 0.0028877073 151.97746 1.0257648 + 422100 -33.798403 -33.801024 0.0026206213 137.92096 0.93646628 + 422200 -33.794619 -33.80114 0.006521855 343.23941 0.89560549 + 422300 -33.792249 -33.801135 0.0088859217 467.65813 0.76378827 + 422400 -33.796462 -33.800959 0.0044970108 236.67367 0.52357625 + 422500 -33.797603 -33.800796 0.0031927456 168.03136 0.39806562 + 422600 -33.794005 -33.800671 0.0066662638 350.83952 0.38694654 + 422700 -33.789841 -33.800486 0.010644702 560.22117 0.37956076 + 422800 -33.794451 -33.800307 0.0058564108 308.21768 0.24252291 + 422900 -33.796093 -33.800249 0.0041557285 218.71228 0.21691564 + 423000 -33.795108 -33.80032 0.0052115403 274.27872 0.2926649 + 423100 -33.789825 -33.800489 0.010664166 561.24552 0.52069681 + 423200 -33.794499 -33.80059 0.0060909662 320.56212 0.59795413 + 423300 -33.797532 -33.800616 0.0030836774 162.29119 0.65862076 + 423400 -33.796063 -33.800654 0.0045912008 241.6308 0.81762724 + 423500 -33.792834 -33.800639 0.0078049431 410.76719 1.0542347 + 423600 -33.793968 -33.800463 0.0064952366 341.83851 1.2105981 + 423700 -33.797948 -33.800246 0.0022976743 120.92455 1.2469254 + 423800 -33.798811 -33.80015 0.0013395407 70.49883 1.2772198 + 423900 -33.797202 -33.800154 0.0029525442 155.38977 1.3228841 + 424000 -33.795444 -33.800227 0.0047827336 251.711 1.3358434 + 424100 -33.792641 -33.800313 0.0076710919 403.72272 1.3201609 + 424200 -33.793485 -33.800317 0.0068316686 359.54463 1.1841854 + 424300 -33.796634 -33.800254 0.0036197317 190.50325 0.99608839 + 424400 -33.796943 -33.800204 0.003260804 171.61321 0.86134393 + 424500 -33.7908 -33.800135 0.0093345547 491.26929 0.78444594 + 424600 -33.791338 -33.799874 0.0085356397 449.2231 0.47833687 + 424700 -33.79482 -33.799543 0.004722768 248.55507 0.17164893 + 424800 -33.794897 -33.799246 0.0043487268 228.86961 -0.027701101 + 424900 -33.792297 -33.798947 0.0066496374 349.96448 -0.17820836 + 425000 -33.786548 -33.798537 0.011989162 630.97889 -0.31051505 + 425100 -33.793565 -33.798082 0.0045174171 237.74763 -0.66265677 + 425200 -33.795187 -33.797903 0.0027158934 142.93504 -0.78358826 + 425300 -33.792798 -33.79791 0.0051115312 269.01533 -0.77263928 + 425400 -33.789322 -33.798049 0.0087270731 459.29807 -0.69538773 + 425500 -33.792264 -33.798186 0.0059219525 311.66708 -0.70382796 + 425600 -33.794337 -33.798303 0.0039665013 208.75343 -0.67533925 + 425700 -33.793707 -33.798449 0.0047417923 249.5563 -0.56824032 + 425800 -33.792825 -33.798602 0.0057765417 304.01424 -0.42415126 + 425900 -33.792806 -33.798701 0.0058948682 310.24166 -0.28497744 + 426000 -33.793202 -33.798731 0.0055286465 290.96773 -0.15881508 + 426100 -33.793538 -33.798713 0.0051747021 272.33996 -0.049425417 + 426200 -33.792821 -33.798673 0.005851927 307.9817 0.058981907 + 426300 -33.790816 -33.798608 0.0077927533 410.12566 0.1731972 + 426400 -33.792394 -33.798509 0.0061148985 321.82165 0.18256191 + 426500 -33.795364 -33.798462 0.003097817 163.03534 0.11962428 + 426600 -33.795176 -33.798532 0.0033559884 176.62268 0.080026752 + 426700 -33.7885 -33.798745 0.010244784 539.17385 0.09493665 + 426800 -33.790959 -33.798931 0.0079719408 419.55613 -0.14212222 + 426900 -33.794041 -33.798992 0.0049507481 260.55346 -0.37731899 + 427000 -33.794273 -33.799007 0.0047346346 249.1796 -0.55811412 + 427100 -33.792268 -33.79897 0.0067021426 352.72779 -0.7247145 + 427200 -33.786367 -33.798752 0.012385501 651.83788 -0.89235765 + 427300 -33.793585 -33.79831 0.0047252704 248.68677 -1.3122357 + 427400 -33.795065 -33.797993 0.0029277681 154.08582 -1.499421 + 427500 -33.792944 -33.797724 0.0047799797 251.56607 -1.592131 + 427600 -33.789774 -33.797415 0.0076410915 402.14383 -1.6715977 + 427700 -33.790866 -33.797111 0.0062447578 328.65603 -1.8017897 + 427800 -33.792132 -33.796927 0.0047943355 252.3216 -1.8774474 + 427900 -33.791681 -33.796887 0.0052057654 273.97479 -1.8677594 + 428000 -33.783067 -33.796971 0.013904743 731.79423 -1.6423182 + 428100 -33.788087 -33.79701 0.0089230449 469.61189 -1.6295964 + 428200 -33.792686 -33.796996 0.004310319 226.84824 -1.6326867 + 428300 -33.792673 -33.797038 0.0043648998 229.72078 -1.5408954 + 428400 -33.78981 -33.797114 0.0073039992 384.40296 -1.3691483 + 428500 -33.788684 -33.797121 0.008436884 444.02568 -1.2058234 + 428600 -33.793833 -33.797034 0.0032009014 168.46059 -1.2014479 + 428700 -33.794417 -33.796996 0.0025788435 135.72223 -1.1520656 + 428800 -33.79246 -33.797017 0.0045566749 239.81373 -1.0599562 + 428900 -33.790957 -33.79705 0.006093012 320.66979 -0.98284463 + 429000 -33.790903 -33.797053 0.0061495387 323.64473 -0.95261834 + 429100 -33.791917 -33.797039 0.0051214696 269.53838 -0.96290813 + 429200 -33.793419 -33.797055 0.0036360476 191.36194 -0.99872958 + 429300 -33.79333 -33.797151 0.0038215579 201.12518 -1.0135963 + 429400 -33.789001 -33.797361 0.0083602733 439.99373 -0.95735274 + 429500 -33.789417 -33.797587 0.0081703099 429.99612 -1.0075953 + 429600 -33.793939 -33.79772 0.0037806379 198.9716 -1.1263981 + 429700 -33.793858 -33.797866 0.0040080464 210.93991 -1.137871 + 429800 -33.792375 -33.798056 0.0056810782 298.99008 -1.10802 + 429900 -33.791568 -33.798228 0.0066600769 350.51391 -1.0737037 + 430000 -33.792858 -33.79832 0.0054620449 287.46255 -1.0617065 + 430100 -33.796128 -33.79836 0.0022316068 117.44747 -1.0783722 + 430200 -33.796736 -33.798441 0.0017050551 89.735527 -1.0354643 + 430300 -33.793826 -33.798651 0.004825151 253.94339 -0.87747636 + 430400 -33.791861 -33.798992 0.0071307569 375.28537 -0.66656645 + 430500 -33.79339 -33.799325 0.005934861 312.34644 -0.50696725 + 430600 -33.795512 -33.799626 0.0041144443 216.53954 -0.38052054 + 430700 -33.796195 -33.799948 0.0037533792 197.537 -0.24632344 + 430800 -33.792846 -33.800385 0.0075380358 396.7201 -0.016965839 + 430900 -33.790952 -33.800973 0.010020751 527.38317 0.23480089 + 431000 -33.797016 -33.801385 0.0043692728 229.95093 0.27189431 + 431100 -33.797421 -33.801695 0.0042731747 224.89337 0.36461955 + 431200 -33.795772 -33.802009 0.0062366148 328.22747 0.48188271 + 431300 -33.794648 -33.802277 0.0076295938 401.53871 0.57500157 + 431400 -33.798984 -33.802398 0.0034143763 179.69558 0.53023299 + 431500 -33.800234 -33.802429 0.0021943185 115.48503 0.51265743 + 431600 -33.797805 -33.802431 0.0046254343 243.43248 0.54588189 + 431700 -33.794753 -33.802327 0.0075733788 398.58017 0.56348686 + 431800 -33.796129 -33.80207 0.0059409393 312.66634 0.4784068 + 431900 -33.797614 -33.801759 0.0041451515 218.15563 0.39503994 + 432000 -33.796812 -33.801443 0.004630844 243.71719 0.36328247 + 432100 -33.790305 -33.800981 0.010675963 561.86642 0.4347618 + 432200 -33.794227 -33.800406 0.0061794082 325.21674 0.30827937 + 432300 -33.796668 -33.800035 0.0033666978 177.1863 0.24490318 + 432400 -33.795472 -33.799805 0.0043329875 228.04127 0.28376775 + 432500 -33.792357 -33.799631 0.0072743221 382.84108 0.39958342 + 432600 -33.792677 -33.799486 0.0068089898 358.35106 0.48053696 + 432700 -33.793854 -33.799376 0.0055217772 290.60621 0.55895022 + 432800 -33.794385 -33.799295 0.0049095964 258.38768 0.66000445 + 432900 -33.79329 -33.799222 0.0059320567 312.19885 0.80724381 + 433000 -33.788871 -33.79908 0.010208866 537.28351 1.058762 + 433100 -33.793142 -33.798806 0.0056635534 298.06777 1.1451953 + 433200 -33.795701 -33.798597 0.002896498 152.44011 1.2025468 + 433300 -33.794425 -33.79846 0.0040356457 212.39244 1.320951 + 433400 -33.791615 -33.79833 0.0067147531 353.39147 1.4846396 + 433500 -33.791847 -33.798176 0.0063287702 333.07753 1.5818771 + 433600 -33.792813 -33.798033 0.0052201218 274.73036 1.6376381 + 433700 -33.792949 -33.797927 0.0049779168 261.98332 1.681639 + 433800 -33.789834 -33.797834 0.007999861 421.02555 1.7662665 + 433900 -33.78838 -33.797645 0.0092644263 487.57849 1.7964565 + 434000 -33.793647 -33.797422 0.00377454 198.65067 1.6727945 + 434100 -33.79389 -33.79729 0.0033997548 178.92606 1.631705 + 434200 -33.790957 -33.797201 0.0062438429 328.60788 1.6242899 + 434300 -33.78922 -33.797075 0.00785515 413.40954 1.553484 + 434400 -33.790761 -33.796918 0.0061574726 324.06229 1.4093336 + 434500 -33.791593 -33.796808 0.0052149973 274.46066 1.2837 + 434600 -33.791496 -33.796792 0.0052959125 278.71915 1.1785479 + 434700 -33.789384 -33.796898 0.0075147195 395.49298 1.1081163 + 434800 -33.788092 -33.797127 0.0090350048 475.50424 1.0067185 + 434900 -33.793381 -33.797387 0.0040063124 210.84865 0.80681455 + 435000 -33.794154 -33.797708 0.0035532502 187.00439 0.73566438 + 435100 -33.791426 -33.798205 0.0067787091 356.75741 0.74351814 + 435200 -33.788322 -33.798874 0.010552712 555.37982 0.75458348 + 435300 -33.796249 -33.799314 0.0030649291 161.30448 0.56455073 + 435400 -33.796325 -33.799595 0.0032693845 172.06479 0.54755519 + 435500 -33.792904 -33.799907 0.0070029679 368.55995 0.60249679 + 435600 -33.791806 -33.800135 0.0083283497 438.31362 0.60853725 + 435700 -33.796113 -33.800153 0.004039533 212.59702 0.50632585 + 435800 -33.797257 -33.800101 0.0028443339 149.69475 0.46773868 + 435900 -33.791196 -33.800013 0.0088168935 464.02524 0.56265026 + 436000 -33.790087 -33.799702 0.0096144862 506.00183 0.53180446 + 436100 -33.795211 -33.799355 0.0041435597 218.07185 0.3806197 + 436200 -33.795654 -33.799107 0.0034531811 181.73784 0.32185781 + 436300 -33.792243 -33.798894 0.00665128 350.05094 0.31587167 + 436400 -33.78979 -33.798613 0.0088238588 464.39182 0.24755174 + 436500 -33.793477 -33.79834 0.0048630558 255.93829 0.056004977 + 436600 -33.794254 -33.798171 0.0039168878 206.14231 -0.065209143 + 436700 -33.793315 -33.798072 0.0047573155 250.37327 -0.1653209 + 436800 -33.791604 -33.798005 0.0064009681 336.87724 -0.27526692 + 436900 -33.790831 -33.797917 0.0070867025 372.96683 -0.42752697 + 437000 -33.793582 -33.797808 0.0042259974 222.41047 -0.63537295 + 437100 -33.795503 -33.797762 0.0022589608 118.88709 -0.77620645 + 437200 -33.793859 -33.797811 0.0039523086 208.00648 -0.8257494 + 437300 -33.788931 -33.797931 0.008999838 473.65345 -0.83838875 + 437400 -33.791797 -33.797974 0.0061776204 325.12265 -0.99359393 + 437500 -33.793915 -33.797978 0.0040624661 213.80397 -1.0910489 + 437600 -33.793273 -33.798005 0.0047318655 249.03386 -1.1003421 + 437700 -33.78503 -33.798031 0.013000984 684.23019 -0.93202718 + 437800 -33.790843 -33.79789 0.0070470944 370.88229 -1.0145415 + 437900 -33.793172 -33.797726 0.0045539752 239.67166 -1.0178323 + 438000 -33.792401 -33.797582 0.0051815422 272.69994 -0.93938196 + 438100 -33.789903 -33.797416 0.0075133729 395.42211 -0.79690022 + 438200 -33.789724 -33.79718 0.0074564311 392.42532 -0.67646196 + 438300 -33.794028 -33.796983 0.002954544 155.49501 -0.66782827 + 438400 -33.794299 -33.796933 0.0026338946 138.61953 -0.60799642 + 438500 -33.790476 -33.79702 0.0065445355 344.43307 -0.46085131 + 438600 -33.789346 -33.797199 0.007853579 413.32686 -0.35814159 + 438700 -33.791803 -33.797386 0.0055829936 293.82797 -0.35379184 + 438800 -33.793094 -33.797605 0.0045109889 237.40932 -0.36024069 + 438900 -33.792392 -33.7979 0.0055083012 289.89698 -0.35662771 + 439000 -33.786558 -33.798334 0.011775198 619.71816 -0.28981821 + 439100 -33.792661 -33.798734 0.0060727408 319.60293 -0.48853624 + 439200 -33.795201 -33.798998 0.0037963571 199.79889 -0.60967975 + 439300 -33.794121 -33.799296 0.0051757473 272.39496 -0.67519829 + 439400 -33.791066 -33.799663 0.0085969934 452.45209 -0.73836451 + 439500 -33.794058 -33.799974 0.005916362 311.37285 -0.93808189 + 439600 -33.797709 -33.800142 0.0024321389 128.0013 -1.0976126 + 439700 -33.796582 -33.800322 0.0037396437 196.81411 -1.1437627 + 439800 -33.79286 -33.800564 0.0077038972 405.44924 -1.1503029 + 439900 -33.793742 -33.800742 0.0069998095 368.39373 -1.2441737 + 440000 -33.795821 -33.800808 0.0049873566 262.48013 -1.3319659 + 440100 -33.795958 -33.800826 0.0048680116 256.19911 -1.3510995 + 440200 -33.795243 -33.800813 0.0055695932 293.12272 -1.3249356 + 440300 -33.794986 -33.800764 0.0057780536 304.09381 -1.2776432 + 440400 -33.794975 -33.800684 0.0057095355 300.48776 -1.2060907 + 440500 -33.794983 -33.800585 0.0056020663 294.83175 -1.1091295 + 440600 -33.79465 -33.800473 0.0058230233 306.46052 -0.98095778 + 440700 -33.794012 -33.800346 0.0063340304 333.35437 -0.82181501 + 440800 -33.794353 -33.800204 0.0058509617 307.93089 -0.66697665 + 440900 -33.795456 -33.800074 0.0046181153 243.04729 -0.5321325 + 441000 -33.795463 -33.799982 0.0045195076 237.85765 -0.3855895 + 441100 -33.792017 -33.799907 0.0078895712 415.22109 -0.15326256 + 441200 -33.790987 -33.799774 0.0087876413 462.48573 0.064918335 + 441300 -33.796289 -33.799641 0.0033521159 176.41887 0.10035888 + 441400 -33.796447 -33.799596 0.0031495393 165.75744 0.18149237 + 441500 -33.794463 -33.799618 0.0051543638 271.26957 0.29459847 + 441600 -33.793148 -33.799663 0.0065151841 342.88833 0.38435347 + 441700 -33.793685 -33.799684 0.0059988089 315.71196 0.41554679 + 441800 -33.794938 -33.799676 0.004738757 249.39656 0.40900763 + 441900 -33.796765 -33.799666 0.002901344 152.69515 0.37179332 + 442000 -33.796957 -33.799688 0.0027307769 143.71835 0.35460645 + 442100 -33.792928 -33.799745 0.0068170822 358.77696 0.40471106 + 442200 -33.791397 -33.799732 0.0083350389 438.66566 0.38526567 + 442300 -33.794984 -33.799611 0.0046268987 243.50955 0.27024464 + 442400 -33.795965 -33.799488 0.0035233757 185.43212 0.22314851 + 442500 -33.790516 -33.799356 0.0088399248 465.23736 0.31342186 + 442600 -33.788259 -33.799006 0.010747841 565.64928 0.34694919 + 442700 -33.793835 -33.798627 0.0047919383 252.19544 0.24259488 + 442800 -33.794384 -33.798345 0.0039610724 208.46771 0.25768204 + 442900 -33.791719 -33.798103 0.0063843444 336.00235 0.36648218 + 443000 -33.78786 -33.797785 0.0099245226 522.31877 0.54367021 + 443100 -33.793967 -33.79746 0.0034930844 183.83792 0.52872778 + 443200 -33.795 -33.797337 0.0023368315 122.98536 0.5851794 + 443300 -33.793003 -33.797345 0.0043420587 228.51868 0.7237239 + 443400 -33.790071 -33.797434 0.0073625306 387.48342 0.92410509 + 443500 -33.790967 -33.797513 0.0065453661 344.47678 1.0590477 + 443600 -33.793808 -33.797576 0.0037672915 198.26919 1.1189174 + 443700 -33.795961 -33.797684 0.001722598 90.658795 1.1460186 + 443800 -33.796484 -33.797878 0.001394446 73.388447 1.1691228 + 443900 -33.793052 -33.7983 0.0052477005 276.1818 1.2532751 + 444000 -33.790808 -33.798991 0.0081832238 430.67577 1.2978803 + 444100 -33.794057 -33.799574 0.0055175269 290.38252 1.2121705 + 444200 -33.796236 -33.799976 0.0037400327 196.83459 1.1340106 + 444300 -33.795509 -33.800326 0.0048168352 253.50574 1.0994497 + 444400 -33.787609 -33.800711 0.013101487 689.5196 1.1659991 + 444500 -33.794347 -33.800884 0.006537422 344.05869 0.92030821 + 444600 -33.79639 -33.800857 0.0044665134 235.06862 0.79947984 + 444700 -33.795479 -33.800738 0.0052589181 276.77217 0.74190067 + 444800 -33.792895 -33.80048 0.0075852405 399.20444 0.71236399 + 444900 -33.792729 -33.80002 0.0072911819 383.7284 0.63557176 + 445000 -33.796762 -33.799562 0.002800726 147.39971 0.50682479 + 445100 -33.796995 -33.799252 0.0022568778 118.77746 0.48885526 + 445200 -33.7934 -33.798926 0.0055255793 290.80631 0.57570953 + 445300 -33.791763 -33.79849 0.0067275521 354.06506 0.65635058 + 445400 -33.792629 -33.798066 0.0054360993 286.09706 0.70667981 + 445500 -33.793354 -33.797739 0.0043844899 230.75179 0.7677933 + 445600 -33.791682 -33.797513 0.0058307966 306.86962 0.88627409 + 445700 -33.786932 -33.797308 0.010375531 546.05494 1.0966567 + 445800 -33.791962 -33.797131 0.0051685826 272.01789 1.1038192 + 445900 -33.793866 -33.797101 0.0032346688 170.23774 1.1210824 + 446000 -33.792571 -33.797223 0.0046515552 244.8072 1.174248 + 446100 -33.790867 -33.797477 0.0066100354 347.88027 1.2055346 + 446200 -33.791342 -33.797774 0.0064321206 338.51677 1.1555571 + 446300 -33.792532 -33.798046 0.00551478 290.23795 1.0555689 + 446400 -33.793014 -33.798291 0.0052769807 277.72279 0.93401437 + 446500 -33.792433 -33.798512 0.0060787425 319.9188 0.79356589 + 446600 -33.789155 -33.798689 0.0095333656 501.73253 0.6387284 + 446700 -33.793013 -33.798725 0.0057115945 300.59612 0.31247067 + 446800 -33.79542 -33.79869 0.00326978 172.08561 0.069529558 + 446900 -33.794302 -33.798658 0.0043553027 229.2157 -0.10089867 + 447000 -33.789297 -33.798572 0.0092750361 488.13688 -0.27591714 + 447100 -33.791488 -33.798338 0.0068498585 360.50195 -0.62794423 + 447200 -33.793696 -33.798086 0.00438959 231.02021 -0.89932834 + 447300 -33.793119 -33.797853 0.0047342491 249.15931 -1.0765822 + 447400 -33.791478 -33.797615 0.0061371813 322.99438 -1.2187918 + 447500 -33.790078 -33.797354 0.0072758603 382.92204 -1.35116 + 447600 -33.792204 -33.797116 0.0049117145 258.49915 -1.5107605 + 447700 -33.794563 -33.797023 0.002460591 129.49871 -1.6048279 + 447800 -33.793474 -33.797102 0.0036270831 190.89015 -1.5793053 + 447900 -33.788464 -33.797399 0.0089352851 470.25608 -1.4205633 + 448000 -33.790722 -33.797798 0.0070768747 372.4496 -1.3655726 + 448100 -33.793277 -33.798181 0.0049039368 258.08982 -1.3170817 + 448200 -33.793588 -33.798604 0.0050160298 263.98917 -1.2221862 + 448300 -33.792072 -33.799119 0.0070467823 370.86587 -1.0802988 + 448400 -33.78756 -33.799764 0.012203437 642.25602 -0.85652916 + 448500 -33.795281 -33.800264 0.0049825529 262.22732 -0.90036703 + 448600 -33.796887 -33.800581 0.0036938224 194.40258 -0.87951175 + 448700 -33.795196 -33.800901 0.0057042713 300.21071 -0.82036037 + 448800 -33.791542 -33.80124 0.0096982107 510.40818 -0.74750081 + 448900 -33.797003 -33.801431 0.0044289448 233.09142 -0.88213128 + 449000 -33.798915 -33.801493 0.0025777703 135.66575 -0.95903935 + 449100 -33.797181 -33.80153 0.0043492 228.89452 -0.99179631 + 449200 -33.794307 -33.801501 0.007194061 378.61701 -1.0504334 + 449300 -33.794874 -33.801337 0.0064624752 340.11431 -1.2049373 + 449400 -33.796608 -33.80109 0.0044823732 235.9033 -1.3712714 + 449500 -33.797731 -33.800837 0.0031059999 163.46601 -1.5032374 + 449600 -33.797236 -33.80061 0.0033741938 177.58081 -1.5812417 + 449700 -33.792808 -33.800314 0.0075059079 395.02924 -1.5886163 + 449800 -33.791983 -33.799881 0.007898112 415.67059 -1.6693242 + 449900 -33.795586 -33.79949 0.0039038174 205.45443 -1.7916922 + 450000 -33.796269 -33.799241 0.0029721399 156.42107 -1.8050909 + 450100 -33.790207 -33.799034 0.0088271577 464.56544 -1.6270777 + 450200 -33.789998 -33.798733 0.008735055 459.71816 -1.4839294 + 450300 -33.793988 -33.798494 0.0045057602 237.13414 -1.4166293 + 450400 -33.794342 -33.798366 0.0040236319 211.76016 -1.2658347 + 450500 -33.790933 -33.798313 0.00738 388.40282 -0.97792334 + 450600 -33.7869 -33.798252 0.011352146 597.45334 -0.55411195 + 450700 -33.795083 -33.798179 0.0030959849 162.93892 -0.43922895 + 450800 -33.79486 -33.798209 0.0033493207 176.27176 -0.24293288 + 450900 -33.791482 -33.798344 0.0068624983 361.16716 0.056873415 + 451000 -33.790261 -33.798512 0.0082511538 434.25087 0.36196754 + 451100 -33.794411 -33.798615 0.0042044342 221.27562 0.49707331 + 451200 -33.7958 -33.798703 0.0029028251 152.7731 0.59201658 + 451300 -33.790523 -33.798841 0.0083179071 437.76403 0.78268395 + 451400 -33.788269 -33.798943 0.010673363 561.72959 0.91867287 + 451500 -33.794286 -33.79887 0.0045833355 241.21686 0.8319713 + 451600 -33.794985 -33.798779 0.0037938941 199.66926 0.80707915 + 451700 -33.792367 -33.798672 0.0063054263 331.84896 0.80982905 + 451800 -33.788775 -33.798453 0.0096787672 509.38488 0.7819802 + 451900 -33.794423 -33.798161 0.0037374387 196.69806 0.56809289 + 452000 -33.795724 -33.798011 0.0022872794 120.37747 0.47926386 + 452100 -33.794158 -33.79796 0.0038016873 200.07941 0.45400757 + 452200 -33.791228 -33.79797 0.0067414627 354.79717 0.45731562 + 452300 -33.7909 -33.797985 0.0070848786 372.87084 0.42579198 + 452400 -33.793791 -33.797986 0.0041949852 220.77833 0.36682616 + 452500 -33.796226 -33.798026 0.0017998987 94.727064 0.35382446 + 452600 -33.796455 -33.798144 0.0016893308 88.907975 0.41852194 + 452700 -33.791662 -33.798423 0.0067612908 355.8407 0.67912358 + 452800 -33.790824 -33.798743 0.0079191436 416.77746 0.97660676 + 452900 -33.794351 -33.798894 0.0045427636 239.0816 1.170523 + 453000 -33.795489 -33.798962 0.0034725407 182.75672 1.3652042 + 453100 -33.792516 -33.79902 0.0065039779 342.29856 1.659935 + 453200 -33.787856 -33.79899 0.011134794 586.01427 2.0952157 + 453300 -33.793298 -33.798824 0.005526494 290.85445 2.2700265 + 453400 -33.793906 -33.798677 0.0047702469 251.05384 2.4437065 + 453500 -33.79282 -33.798566 0.0057462371 302.41933 2.6023286 + 453600 -33.790725 -33.798473 0.007748646 407.80433 2.7366215 + 453700 -33.791825 -33.798368 0.0065435669 344.38209 2.7471389 + 453800 -33.795332 -33.798308 0.002975887 156.61828 2.6458689 + 453900 -33.795109 -33.798344 0.0032347598 170.24252 2.5624454 + 454000 -33.79021 -33.798463 0.0082537668 434.38838 2.4645527 + 454100 -33.790587 -33.798527 0.0079402353 417.8875 2.1520528 + 454200 -33.793192 -33.79848 0.0052878028 278.29234 1.8092016 + 454300 -33.793623 -33.798404 0.0047810717 251.62354 1.5253018 + 454400 -33.792265 -33.798322 0.0060573021 318.79041 1.2626843 + 454500 -33.785343 -33.798186 0.012842994 675.91531 1.0376176 + 454600 -33.791372 -33.797918 0.0065467879 344.55161 0.53007346 + 454700 -33.794272 -33.797787 0.0035149701 184.98974 0.27452462 + 454800 -33.792828 -33.797819 0.004990491 262.64509 0.17931117 + 454900 -33.789188 -33.798003 0.0088150463 463.92803 0.16875691 + 455000 -33.792313 -33.798229 0.0059155983 311.33266 0.082295107 + 455100 -33.795845 -33.798416 0.0025705869 135.2877 0.042789496 + 455200 -33.794932 -33.79867 0.0037385322 196.75562 0.14271423 + 455300 -33.792485 -33.799012 0.0065269749 343.50887 0.3420689 + 455400 -33.792058 -33.799307 0.0072484787 381.48097 0.55193903 + 455500 -33.795415 -33.79944 0.0040247997 211.82162 0.66923194 + 455600 -33.797839 -33.799494 0.001655203 87.111856 0.73741329 + 455700 -33.797096 -33.799575 0.0024792437 130.48038 0.83410869 + 455800 -33.79178 -33.799739 0.0079596044 418.90688 1.0551968 + 455900 -33.793503 -33.799844 0.0063415771 333.75155 1.1244201 + 456000 -33.796006 -33.799899 0.0038928729 204.87843 1.1202909 + 456100 -33.795914 -33.799988 0.0040743047 214.42702 1.1162012 + 456200 -33.791209 -33.800161 0.0089524453 471.15921 1.1422322 + 456300 -33.792069 -33.80036 0.0082910911 436.35273 0.98634709 + 456400 -33.796955 -33.800492 0.003536703 186.13352 0.7542387 + 456500 -33.796484 -33.800654 0.0041699205 219.45919 0.60915847 + 456600 -33.794283 -33.800874 0.0065907656 346.86612 0.4322753 + 456700 -33.793495 -33.801083 0.0075883182 399.36642 0.16098818 + 456800 -33.797662 -33.801191 0.0035296155 185.76051 -0.18309783 + 456900 -33.799136 -33.801252 0.0021160113 111.36379 -0.384964 + 457000 -33.797221 -33.801337 0.0041162033 216.63211 -0.5218912 + 457100 -33.795029 -33.801421 0.0063920578 336.4083 -0.70970209 + 457200 -33.795393 -33.801432 0.0060390706 317.8309 -0.94284488 + 457300 -33.796482 -33.801384 0.0049023948 258.00866 -1.1462215 + 457400 -33.796798 -33.801324 0.0045256914 238.1831 -1.2838912 + 457500 -33.794027 -33.801264 0.0072373577 380.89568 -1.3263424 + 457600 -33.791748 -33.801157 0.0094085197 495.162 -1.3581893 + 457700 -33.797145 -33.801033 0.003887532 204.59734 -1.4932076 + 457800 -33.797827 -33.800981 0.003154341 166.01015 -1.4873982 + 457900 -33.795839 -33.800981 0.0051411532 270.5743 -1.3820491 + 458000 -33.794403 -33.80097 0.0065665383 345.59105 -1.2380669 + 458100 -33.794928 -33.80089 0.0059619331 313.77122 -1.1098964 + 458200 -33.79568 -33.800737 0.0050563924 266.11342 -0.98696711 + 458300 -33.79553 -33.800515 0.0049850854 262.3606 -0.8524385 + 458400 -33.791952 -33.800161 0.0082094438 432.0557 -0.64025456 + 458500 -33.791863 -33.79957 0.0077064909 405.58574 -0.48908924 + 458600 -33.795651 -33.799007 0.0033562573 176.63683 -0.46977608 + 458700 -33.795738 -33.798585 0.0028475042 149.86161 -0.42804162 + 458800 -33.790695 -33.798097 0.0074020499 389.56329 -0.31582516 + 458900 -33.790268 -33.797452 0.0071842626 378.10133 -0.32984995 + 459000 -33.792294 -33.796924 0.0046303453 243.69094 -0.42380049 + 459100 -33.792468 -33.796576 0.0041084858 216.22594 -0.50764489 + 459200 -33.787431 -33.796321 0.0088898335 467.86401 -0.53908196 + 459300 -33.786596 -33.79602 0.0094241109 495.98255 -0.7323814 + 459400 -33.791524 -33.79581 0.004285459 225.53989 -0.99884627 + 459500 -33.791176 -33.795719 0.0045428575 239.08654 -1.137053 + 459600 -33.789197 -33.795682 0.0064856706 341.33506 -1.256589 + 459700 -33.788031 -33.795616 0.0075852464 399.20475 -1.4052905 + 459800 -33.791897 -33.795496 0.0035994102 189.43375 -1.6160254 + 459900 -33.793324 -33.79544 0.0021160555 111.36611 -1.7059473 + 460000 -33.791055 -33.795464 0.0044080781 231.99322 -1.6818891 + 460100 -33.788127 -33.7955 0.0073733861 388.05473 -1.6063725 + 460200 -33.789483 -33.795458 0.0059750881 314.46356 -1.5768718 + 460300 -33.791059 -33.795396 0.0043368429 228.24417 -1.5202384 + 460400 -33.790826 -33.795389 0.004563087 240.1512 -1.3925931 + 460500 -33.785066 -33.795449 0.010383305 546.46408 -1.0727731 + 460600 -33.788323 -33.795486 0.0071637605 377.02233 -0.85874418 + 460700 -33.791827 -33.795553 0.0037254895 196.06919 -0.71786202 + 460800 -33.791151 -33.795759 0.0046075698 242.49229 -0.50260678 + 460900 -33.78909 -33.796139 0.0070495716 371.01267 -0.21959399 + 461000 -33.789832 -33.79661 0.0067779906 356.7196 0.020593818 + 461100 -33.794911 -33.796992 0.0020811751 109.53039 0.08898906 + 461200 -33.794925 -33.797354 0.0024295099 127.86294 0.17203761 + 461300 -33.791947 -33.797942 0.0059949451 315.50861 0.29764048 + 461400 -33.7905 -33.798702 0.0082014657 431.63583 0.37352064 + 461500 -33.793922 -33.799305 0.0053829872 283.30181 0.31404957 + 461600 -33.795676 -33.799725 0.0040487478 213.08198 0.25219906 + 461700 -33.794527 -33.800106 0.005579026 293.61916 0.21536136 + 461800 -33.782747 -33.800565 0.017818417 937.76739 0.31292263 + 461900 -33.794463 -33.800764 0.0063007392 331.60228 -0.066838187 + 462000 -33.796656 -33.80081 0.0041542695 218.6355 -0.21595596 + 462100 -33.79604 -33.800842 0.0048020284 252.72647 -0.29983738 + 462200 -33.792525 -33.800857 0.008332423 438.52799 -0.33752007 + 462300 -33.793461 -33.800781 0.0073193435 385.21052 -0.46466121 + 462400 -33.797978 -33.80068 0.0027017498 142.19068 -0.61167659 + 462500 -33.797638 -33.800637 0.0029992976 157.85036 -0.61892013 + 462600 -33.795369 -33.800616 0.0052471035 276.15038 -0.55180053 + 462700 -33.794118 -33.800549 0.0064307847 338.44646 -0.46596059 + 462800 -33.794552 -33.800397 0.0058446181 307.59704 -0.38292554 + 462900 -33.795811 -33.800189 0.0043786311 230.44345 -0.29819735 + 463000 -33.797004 -33.799992 0.0029879408 157.25266 -0.20732252 + 463100 -33.795446 -33.799819 0.0043725693 230.12442 -0.041674147 + 463200 -33.790769 -33.799557 0.0087879284 462.50084 0.26450931 + 463300 -33.792853 -33.799179 0.0063266816 332.96761 0.46546593 + 463400 -33.795543 -33.79888 0.0033372259 175.63522 0.59353688 + 463500 -33.794746 -33.798699 0.0039536651 208.07787 0.75572048 + 463600 -33.786476 -33.798492 0.012016194 632.40156 1.1290672 + 463700 -33.7923 -33.798213 0.0059124257 311.16569 1.21079 + 463800 -33.794324 -33.798043 0.003718848 195.71966 1.2761662 + 463900 -33.792987 -33.797972 0.0049848454 262.34797 1.3602664 + 464000 -33.787889 -33.797925 0.010036559 528.21513 1.4846098 + 464100 -33.792263 -33.797787 0.0055246803 290.759 1.3790959 + 464200 -33.795284 -33.797709 0.0024254712 127.65039 1.2762044 + 464300 -33.793596 -33.797721 0.0041258995 217.14241 1.2281547 + 464400 -33.789962 -33.797759 0.0077971278 410.35588 1.1474105 + 464500 -33.791005 -33.797702 0.0066969658 352.45534 0.93031599 + 464600 -33.794029 -33.797594 0.0035649815 187.6218 0.70381725 + 464700 -33.795535 -33.797553 0.0020178887 106.19968 0.55484082 + 464800 -33.795652 -33.797627 0.0019741961 103.90018 0.47173425 + 464900 -33.791785 -33.797885 0.0061007525 321.07716 0.46848866 + 465000 -33.789765 -33.798297 0.0085323138 449.04806 0.42321506 + 465100 -33.793677 -33.798656 0.0049788137 262.03052 0.2982759 + 465200 -33.795392 -33.798977 0.0035853302 188.69273 0.26225087 + 465300 -33.793455 -33.799392 0.005937756 312.4988 0.33947628 + 465400 -33.78551 -33.800053 0.01454344 765.4083 0.60222065 + 465500 -33.794317 -33.800546 0.0062284522 327.79789 0.54548235 + 465600 -33.795764 -33.800877 0.0051135256 269.12029 0.61798539 + 465700 -33.795819 -33.801182 0.0053625928 282.22847 0.72285318 + 465800 -33.795016 -33.801466 0.006449741 339.44412 0.84989728 + 465900 -33.795052 -33.801694 0.006642519 349.58985 0.95890664 + 466000 -33.797653 -33.801824 0.0041700468 219.46584 0.99060869 + 466100 -33.798771 -33.801896 0.0031249717 164.46448 1.0137894 + 466200 -33.795896 -33.801961 0.006065165 319.20422 1.0908404 + 466300 -33.791775 -33.801957 0.010181918 535.86527 1.1661809 + 466400 -33.796344 -33.801819 0.0054742721 288.10606 1.040803 + 466500 -33.797192 -33.801663 0.0044703941 235.27285 0.9674658 + 466600 -33.796185 -33.801503 0.0053183604 279.90056 0.90021549 + 466700 -33.794486 -33.801325 0.0068395012 359.95684 0.80757455 + 466800 -33.79399 -33.801121 0.0071307209 375.28348 0.65911948 + 466900 -33.796876 -33.800944 0.0040680136 214.09593 0.4505869 + 467000 -33.797721 -33.800861 0.0031398183 165.24584 0.31351644 + 467100 -33.794777 -33.800846 0.0060690166 319.40693 0.24289387 + 467200 -33.79159 -33.800804 0.0092141166 484.93074 0.13265857 + 467300 -33.795614 -33.800666 0.0050515399 265.85804 -0.095789604 + 467400 -33.796837 -33.800515 0.0036774469 193.54075 -0.21359472 + 467500 -33.795912 -33.800336 0.0044234372 232.80155 -0.263871 + 467600 -33.794422 -33.800074 0.0056520761 297.46372 -0.28352 + 467700 -33.79286 -33.799675 0.0068151821 358.67696 -0.28107807 + 467800 -33.793084 -33.799141 0.0060574706 318.79928 -0.29177901 + 467900 -33.795286 -33.798629 0.0033428954 175.93361 -0.31966639 + 468000 -33.795459 -33.798252 0.0027926395 146.97412 -0.29036827 + 468100 -33.791234 -33.797869 0.0066347212 349.17946 -0.14371745 + 468200 -33.789532 -33.79736 0.0078276823 411.96394 -0.011022752 + 468300 -33.792049 -33.796904 0.0048550811 255.51859 0.02650065 + 468400 -33.792957 -33.796605 0.0036479129 191.9864 0.068581873 + 468500 -33.788579 -33.796397 0.0078178702 411.44753 0.19884352 + 468600 -33.785812 -33.796071 0.010258319 539.88619 0.28294916 + 468700 -33.791403 -33.795748 0.0043446165 228.65329 0.16275958 + 468800 -33.791672 -33.795535 0.0038635113 203.33316 0.11055801 + 468900 -33.789072 -33.795347 0.0062743107 330.21138 0.060370159 + 469000 -33.786202 -33.795055 0.0088538374 465.96956 -0.063823275 + 469100 -33.791707 -33.794701 0.002993911 157.56687 -0.36879703 + 469200 -33.792794 -33.794556 0.001761531 92.707805 -0.52695046 + 469300 -33.790597 -33.794558 0.0039602172 208.4227 -0.66474098 + 469400 -33.787534 -33.794662 0.0071286299 375.17343 -0.8893757 + 469500 -33.788132 -33.794787 0.0066550864 350.25126 -1.2213929 + 469600 -33.790862 -33.794924 0.0040619914 213.77898 -1.5336427 + 469700 -33.792486 -33.795135 0.0026484043 139.38315 -1.7383681 + 469800 -33.792093 -33.795473 0.0033795238 177.86132 -1.8463927 + 469900 -33.786481 -33.796081 0.0096003137 505.25595 -1.8472613 + 470000 -33.789222 -33.796737 0.0075147929 395.49685 -1.999534 + 470100 -33.792869 -33.79714 0.0042705998 224.75786 -2.1105717 + 470200 -33.792668 -33.797476 0.0048079062 253.03581 -2.1006266 + 470300 -33.791109 -33.797804 0.0066940616 352.30249 -2.0245565 + 470400 -33.790923 -33.79806 0.007136987 375.61326 -1.9386751 + 470500 -33.794892 -33.798193 0.0033010124 173.72934 -1.9264848 + 470600 -33.795481 -33.798299 0.002817935 148.30541 -1.8508363 + 470700 -33.792069 -33.798465 0.006396137 336.62298 -1.6552483 + 470800 -33.78999 -33.798658 0.0086679647 456.18725 -1.4215494 + 470900 -33.793585 -33.798767 0.0051823428 272.74208 -1.3169833 + 471000 -33.794611 -33.798858 0.0042478016 223.55801 -1.1999534 + 471100 -33.793823 -33.798985 0.005161446 271.6423 -1.0549769 + 471200 -33.79318 -33.799138 0.0059581427 313.57174 -0.91704888 + 471300 -33.793214 -33.799289 0.0060752674 319.7359 -0.8065084 + 471400 -33.794416 -33.799417 0.0050013989 263.21916 -0.74533285 + 471500 -33.796546 -33.799526 0.0029797574 156.82198 -0.73722964 + 471600 -33.796571 -33.79965 0.003078984 162.04418 -0.71547125 + 471700 -33.791769 -33.799838 0.0080688087 424.65421 -0.61669558 + 471800 -33.791745 -33.799994 0.0082490444 434.13985 -0.62927556 + 471900 -33.795299 -33.80003 0.0047314989 249.01456 -0.71938362 + 472000 -33.795508 -33.800039 0.0045307039 238.44691 -0.74468128 + 472100 -33.794467 -33.800045 0.0055777676 293.55293 -0.74341478 + 472200 -33.793867 -33.80004 0.006173661 324.91427 -0.74339696 + 472300 -33.794187 -33.800029 0.0058419898 307.45871 -0.74747987 + 472400 -33.794504 -33.800025 0.0055214457 290.58876 -0.73069708 + 472500 -33.794446 -33.800043 0.0055970059 294.56543 -0.68198779 + 472600 -33.79432 -33.800078 0.0057576091 303.01783 -0.60472211 + 472700 -33.794307 -33.800115 0.0058083377 305.68763 -0.50082311 + 472800 -33.794713 -33.80014 0.0054268495 285.61025 -0.38126376 + 472900 -33.79545 -33.800141 0.0046902679 246.84462 -0.25381367 + 473000 -33.794898 -33.80012 0.0052214198 274.79866 -0.083965447 + 473100 -33.792285 -33.800041 0.0077568958 408.23851 0.16621107 + 473200 -33.792753 -33.799842 0.0070884756 373.06015 0.38832663 + 473300 -33.79663 -33.799624 0.0029943461 157.58977 0.4923115 + 473400 -33.796872 -33.799487 0.0026151188 137.63137 0.61888635 + 473500 -33.791869 -33.799368 0.0074985126 394.64003 0.88333621 + 473600 -33.79157 -33.79918 0.0076105549 400.53671 1.1027986 + 473700 -33.794267 -33.799003 0.004735631 249.23204 1.2130724 + 473800 -33.794949 -33.798907 0.0039582423 208.31876 1.3129599 + 473900 -33.791441 -33.798895 0.0074537676 392.28514 1.4753506 + 474000 -33.787806 -33.798913 0.011106419 584.5209 1.6444347 + 474100 -33.794414 -33.798923 0.0045089761 237.30339 1.5681091 + 474200 -33.794522 -33.799009 0.0044872782 236.16145 1.5798877 + 474300 -33.792763 -33.799198 0.0064347514 338.65523 1.6015913 + 474400 -33.791708 -33.799456 0.0077479464 407.76751 1.5837503 + 474500 -33.795938 -33.799686 0.0037470983 197.20644 1.4506502 + 474600 -33.797412 -33.799879 0.0024670778 129.84011 1.3806187 + 474700 -33.795158 -33.800151 0.0049923693 262.74395 1.3770781 + 474800 -33.792242 -33.800514 0.008272192 435.35808 1.3629068 + 474900 -33.794373 -33.800766 0.0063936097 336.48997 1.2499711 + 475000 -33.796139 -33.800892 0.0047533185 250.16291 1.1626736 + 475100 -33.796234 -33.800953 0.0047194148 248.37859 1.1263675 + 475200 -33.791431 -33.800958 0.0095265777 501.37529 1.2010091 + 475300 -33.791594 -33.800789 0.0091951862 483.93445 1.1891145 + 475400 -33.796871 -33.800567 0.0036963276 194.53442 1.0939112 + 475500 -33.796419 -33.800392 0.0039731112 209.1013 1.1344378 + 475600 -33.793622 -33.800206 0.0065837984 346.49944 1.2533834 + 475700 -33.792446 -33.799946 0.0074992755 394.68018 1.3723654 + 475800 -33.795942 -33.799676 0.0037338333 196.50832 1.3992379 + 475900 -33.798288 -33.79956 0.0012712092 66.902608 1.4116351 + 476000 -33.79739 -33.799574 0.0021831633 114.89794 1.4816372 + 476100 -33.794803 -33.799686 0.0048827537 256.97497 1.6011044 + 476200 -33.792418 -33.799803 0.0073844915 388.6392 1.7196659 + 476300 -33.793645 -33.799812 0.0061661238 324.5176 1.7436231 + 476400 -33.79662 -33.799746 0.0031261416 164.52604 1.6930347 + 476500 -33.797581 -33.799709 0.0021282191 112.00627 1.6457117 + 476600 -33.793955 -33.799725 0.0057698232 303.66065 1.6378249 + 476700 -33.79083 -33.799705 0.0088751276 467.09005 1.5229815 + 476800 -33.794663 -33.799594 0.0049311657 259.52285 1.2506151 + 476900 -33.796074 -33.799508 0.003434064 180.73173 1.0466249 + 477000 -33.793464 -33.799469 0.0060052838 316.05273 0.88908378 + 477100 -33.787458 -33.799374 0.011915941 627.12532 0.65713332 + 477200 -33.792892 -33.799161 0.0062698178 329.97492 0.21739437 + 477300 -33.794117 -33.798962 0.0048449039 254.98297 -0.066802664 + 477400 -33.793554 -33.798784 0.0052303881 275.27066 -0.29262193 + 477500 -33.790534 -33.798578 0.0080442817 423.36337 -0.48173974 + 477600 -33.789297 -33.798249 0.008952107 471.1414 -0.73355695 + 477700 -33.794728 -33.797937 0.0032085161 168.86134 -1.0285302 + 477800 -33.794873 -33.79777 0.0028968446 152.45835 -1.1307235 + 477900 -33.791727 -33.797663 0.0059364629 312.43075 -1.1431166 + 478000 -33.790296 -33.797533 0.007237228 380.88885 -1.1700797 + 478100 -33.791743 -33.797387 0.0056435397 297.01446 -1.2203786 + 478200 -33.79255 -33.797278 0.0047280263 248.83181 -1.2289395 + 478300 -33.791078 -33.797229 0.0061512413 323.73434 -1.1666471 + 478400 -33.784756 -33.797197 0.012441531 654.78669 -0.97641304 + 478500 -33.792022 -33.797126 0.0051038213 268.60956 -1.053381 + 478600 -33.793409 -33.797164 0.0037544741 197.59462 -1.0370171 + 478700 -33.791679 -33.797357 0.0056778035 298.81773 -0.9665263 + 478800 -33.788827 -33.797706 0.0088790883 467.29849 -0.8818428 + 478900 -33.793874 -33.798058 0.0041838472 220.19215 -0.97281125 + 479000 -33.795808 -33.798317 0.0025085145 132.02088 -1.0274355 + 479100 -33.793735 -33.798666 0.0049317116 259.55158 -1.0342602 + 479200 -33.790622 -33.799101 0.0084790652 446.24564 -1.0720729 + 479300 -33.793206 -33.799367 0.0061609616 324.24591 -1.2526151 + 479400 -33.795019 -33.799438 0.0044194129 232.58976 -1.4134077 + 479500 -33.794615 -33.799392 0.004777047 251.41172 -1.5410012 + 479600 -33.793665 -33.799218 0.0055527398 292.23574 -1.6799152 + 479700 -33.79251 -33.79889 0.0063807262 335.81193 -1.8334706 + 479800 -33.791781 -33.798406 0.0066254853 348.69338 -2.0033229 + 479900 -33.792267 -33.797839 0.0055718742 293.24277 -2.1816769 + 480000 -33.792954 -33.797326 0.0043718623 230.08721 -2.3206285 + 480100 -33.791327 -33.796907 0.0055797526 293.6574 -2.3729833 + 480200 -33.787337 -33.796511 0.0091732579 482.78038 -2.3465237 + 480300 -33.790552 -33.796197 0.0056446495 297.07287 -2.4126235 + 480400 -33.793573 -33.796135 0.0025621681 134.84462 -2.4282667 + 480500 -33.792633 -33.796309 0.0036758931 193.45898 -2.3122327 + 480600 -33.790728 -33.796695 0.0059674437 314.06124 -2.0985503 + 480700 -33.790424 -33.797151 0.0067274926 354.06194 -1.862054 + 480800 -33.792241 -33.797516 0.0052753251 277.63565 -1.6632348 + 480900 -33.794672 -33.797757 0.0030847834 162.3494 -1.5166706 + 481000 -33.795993 -33.79793 0.0019373669 101.96189 -1.4008276 + 481100 -33.794371 -33.798129 0.0037575977 197.75901 -1.237402 + 481200 -33.789514 -33.798402 0.0088883125 467.78396 -0.94415583 + 481300 -33.792342 -33.798532 0.0061903955 325.79499 -0.80998329 + 481400 -33.794829 -33.798569 0.0037394593 196.80441 -0.73791793 + 481500 -33.794151 -33.798639 0.0044875116 236.17374 -0.64554427 + 481600 -33.785415 -33.798797 0.013382373 704.30237 -0.400641 + 481700 -33.791428 -33.798923 0.0074951844 394.46487 -0.46341154 + 481800 -33.793925 -33.799044 0.0051191859 269.41819 -0.4975349 + 481900 -33.794143 -33.799256 0.0051135772 269.12301 -0.5108869 + 482000 -33.793002 -33.799572 0.0065698119 345.76334 -0.51618918 + 482100 -33.792204 -33.799952 0.0077481019 407.77569 -0.54587635 + 482200 -33.795951 -33.800263 0.0043122315 226.9489 -0.66545976 + 482300 -33.797349 -33.800492 0.0031427871 165.40208 -0.7248106 + 482400 -33.794938 -33.800735 0.0057967792 305.07932 -0.70357444 + 482500 -33.789724 -33.800968 0.011243987 591.761 -0.6280146 + 482600 -33.795205 -33.80098 0.0057757977 303.97508 -0.74890754 + 482700 -33.796015 -33.800888 0.0048724916 256.43488 -0.75372294 + 482800 -33.795194 -33.80075 0.0055559943 292.40702 -0.694593 + 482900 -33.793326 -33.800574 0.0072474968 381.42929 -0.57273238 + 483000 -33.79338 -33.800376 0.0069961841 368.20293 -0.44331416 + 483100 -33.796912 -33.800268 0.0033563655 176.64252 -0.37160879 + 483200 -33.797597 -33.800333 0.0027358922 143.98757 -0.24790404 + 483300 -33.793298 -33.800626 0.0073280831 385.67048 0.039396948 + 483400 -33.791932 -33.801148 0.0092156362 485.01071 0.38201315 + 483500 -33.795803 -33.801593 0.0057892138 304.68116 0.5788971 + 483600 -33.796967 -33.801955 0.0049882219 262.52567 0.77203078 + 483700 -33.796694 -33.802273 0.005578653 293.59953 0.96760533 + 483800 -33.794848 -33.802515 0.0076668694 403.5005 1.1795562 + 483900 -33.794488 -33.802586 0.0080979356 426.18713 1.3487297 + 484000 -33.798683 -33.802461 0.0037780539 198.83561 1.3628233 + 484100 -33.799228 -33.802275 0.003046926 160.357 1.3874678 + 484200 -33.795453 -33.801971 0.0065179905 343.03603 1.4574409 + 484300 -33.793301 -33.801367 0.0080663367 424.52411 1.4488201 + 484400 -33.795453 -33.800653 0.0051997848 273.66004 1.328009 + 484500 -33.795771 -33.799989 0.0042174593 221.96112 1.2329339 + 484600 -33.792912 -33.799305 0.0063934072 336.47932 1.179024 + 484700 -33.785615 -33.798306 0.012690972 667.91454 1.1528828 + 484800 -33.793291 -33.797362 0.0040709326 214.24955 0.8554501 + 484900 -33.793609 -33.796887 0.0032779728 172.51678 0.77815211 + 485000 -33.790771 -33.796585 0.0058141293 305.99244 0.79598241 + 485100 -33.787633 -33.796319 0.0086859039 457.13137 0.8540071 + 485200 -33.790903 -33.796063 0.0051593173 271.53027 0.82149715 + 485300 -33.792975 -33.795925 0.0029497487 155.24264 0.83845935 + 485400 -33.791048 -33.795906 0.0048588977 255.71945 0.97374926 + 485500 -33.783848 -33.795845 0.011996688 631.37498 1.3199027 + 485600 -33.789724 -33.795559 0.0058347991 307.08027 1.4133257 + 485700 -33.791482 -33.79531 0.0038274825 201.43699 1.5423799 + 485800 -33.790153 -33.79515 0.0049974213 263.00983 1.7359588 + 485900 -33.785016 -33.795004 0.0099879276 525.65572 2.0642097 + 486000 -33.789004 -33.794791 0.0057870972 304.56976 2.2223256 + 486100 -33.792425 -33.79475 0.0023252768 122.37725 2.2805734 + 486200 -33.791249 -33.794983 0.0037340648 196.5205 2.3893407 + 486300 -33.787753 -33.795509 0.0077558559 408.18378 2.53069 + 486400 -33.788597 -33.796114 0.007517458 395.63711 2.5542358 + 486500 -33.792708 -33.796532 0.0038241532 201.26177 2.4648913 + 486600 -33.79301 -33.796877 0.0038665603 203.49362 2.408177 + 486700 -33.791671 -33.797241 0.0055705859 293.17497 2.3314714 + 486800 -33.79128 -33.797523 0.0062425377 328.53919 2.1835466 + 486900 -33.791996 -33.797636 0.0056394623 296.79987 1.9797941 + 487000 -33.793214 -33.797609 0.0043951399 231.3123 1.7583082 + 487100 -33.793701 -33.797525 0.0038242205 201.26532 1.5563955 + 487200 -33.790702 -33.797419 0.0067173349 353.52735 1.3928849 + 487300 -33.788073 -33.797211 0.0091372748 480.88662 1.1471207 + 487400 -33.792761 -33.796994 0.0042325811 222.75697 0.80445888 + 487500 -33.794039 -33.796985 0.0029463796 155.06533 0.63124853 + 487600 -33.791849 -33.797248 0.0053992595 284.15821 0.56509144 + 487700 -33.78992 -33.797828 0.007908126 416.19762 0.50971182 + 487800 -33.792072 -33.798515 0.0064438342 339.13325 0.41641332 + 487900 -33.794529 -33.799165 0.0046358705 243.98173 0.36111624 + 488000 -33.79532 -33.799788 0.0044674501 235.11791 0.36945577 + 488100 -33.793993 -33.800441 0.0064472516 339.3131 0.44467984 + 488200 -33.791321 -33.80112 0.0097986988 515.69678 0.57014039 + 488300 -33.796917 -33.801545 0.0046272091 243.52589 0.52406411 + 488400 -33.798451 -33.801731 0.003280114 172.62948 0.53065594 + 488500 -33.796574 -33.801843 0.0052683654 277.26937 0.59202447 + 488600 -33.793144 -33.801828 0.0086841289 457.03796 0.66902959 + 488700 -33.796045 -33.801609 0.0055646178 292.86087 0.59712225 + 488800 -33.800128 -33.801402 0.0012745885 67.080458 0.48650716 + 488900 -33.800116 -33.801318 0.0012024986 63.286431 0.44293488 + 489000 -33.79832 -33.801302 0.0029829461 156.98979 0.38928776 + 489100 -33.794582 -33.801334 0.0067517447 355.3383 0.29140754 + 489200 -33.793467 -33.80134 0.0078733122 414.3654 0.073416943 + 489300 -33.796865 -33.801297 0.0044324843 233.2777 -0.2156231 + 489400 -33.798191 -33.801267 0.003075769 161.87498 -0.4125189 + 489500 -33.794703 -33.801261 0.0065584883 345.16739 -0.52085739 + 489600 -33.790296 -33.801165 0.010868823 572.01645 -0.71123227 + 489700 -33.795694 -33.800948 0.0052538052 276.50308 -1.0452677 + 489800 -33.796562 -33.80073 0.0041682031 219.36881 -1.2179077 + 489900 -33.794836 -33.800486 0.0056504208 297.37661 -1.3145723 + 490000 -33.789689 -33.800114 0.01042471 548.64319 -1.3487888 + 490100 -33.793453 -33.799577 0.0061237836 322.28927 -1.544585 + 490200 -33.79687 -33.799253 0.0023828935 125.40956 -1.6562125 + 490300 -33.795449 -33.799061 0.0036111985 190.05416 -1.6248015 + 490400 -33.791645 -33.798894 0.0072484648 381.48024 -1.4957108 + 490500 -33.791903 -33.798734 0.0068307051 359.49391 -1.4059276 + 490600 -33.794141 -33.798624 0.0044834654 235.96078 -1.3480718 + 490700 -33.795433 -33.798599 0.0031656879 166.60733 -1.2771001 + 490800 -33.795179 -33.798662 0.0034828629 183.29997 -1.1802776 + 490900 -33.79062 -33.79881 0.0081896388 431.01338 -0.97431796 + 491000 -33.790894 -33.798926 0.0080312122 422.67554 -0.84756383 + 491100 -33.795104 -33.798941 0.003837036 201.93978 -0.85082931 + 491200 -33.795254 -33.798951 0.0036973819 194.58991 -0.8197807 + 491300 -33.792647 -33.798964 0.0063166831 332.4414 -0.767771 + 491400 -33.791495 -33.798905 0.0074100437 389.98399 -0.7857799 + 491500 -33.792779 -33.798761 0.0059819666 314.82556 -0.88599557 + 491600 -33.793787 -33.798589 0.0048015337 252.70044 -1.0055006 + 491700 -33.79335 -33.798433 0.005083494 267.53975 -1.1208037 + 491800 -33.789613 -33.798277 0.0086638877 455.97268 -1.2169093 + 491900 -33.789936 -33.798068 0.0081320654 427.98335 -1.4437728 + 492000 -33.794964 -33.797951 0.0029869737 157.20176 -1.6997507 + 492100 -33.794616 -33.798005 0.0033889374 178.35675 -1.8003665 + 492200 -33.791967 -33.798244 0.0062765627 330.3299 -1.8558765 + 492300 -33.791387 -33.798613 0.0072264584 380.32206 -1.9439597 + 492400 -33.79305 -33.79898 0.0059302269 312.10255 -2.0385323 + 492500 -33.794 -33.799315 0.0053150262 279.72509 -2.0767525 + 492600 -33.794034 -33.799624 0.0055904969 294.22287 -2.0557906 + 492700 -33.793911 -33.79989 0.0059788577 314.66195 -1.9904636 + 492800 -33.795283 -33.800079 0.0047959322 252.40563 -1.9194002 + 492900 -33.796979 -33.800187 0.0032082878 168.84932 -1.8402573 + 493000 -33.795645 -33.800284 0.0046386974 244.13051 -1.6675607 + 493100 -33.791594 -33.800363 0.0087684526 461.47584 -1.3545223 + 493200 -33.793866 -33.800336 0.0064695787 340.48816 -1.1197558 + 493300 -33.797085 -33.800281 0.0031958938 168.19704 -0.96818083 + 493400 -33.796554 -33.800282 0.0037278967 196.19588 -0.77034502 + 493500 -33.788549 -33.800343 0.011794373 620.72732 -0.33941332 + 493600 -33.792076 -33.800349 0.0082732212 435.41225 -0.083569887 + 493700 -33.795571 -33.800319 0.0047475751 249.86064 0.068936211 + 493800 -33.796151 -33.800318 0.0041668321 219.29666 0.20787436 + 493900 -33.79362 -33.800338 0.0067181213 353.56873 0.37462937 + 494000 -33.78946 -33.800286 0.010825948 569.76001 0.56123742 + 494100 -33.796373 -33.800105 0.0037322962 196.42742 0.47799084 + 494200 -33.796985 -33.799947 0.0029621173 155.89359 0.4614588 + 494300 -33.794645 -33.799744 0.0050988398 268.34739 0.45817312 + 494400 -33.792083 -33.799372 0.007289361 383.63257 0.40357884 + 494500 -33.793001 -33.79884 0.0058392531 307.31468 0.2496723 + 494600 -33.794259 -33.798292 0.004032856 212.24561 0.096403439 + 494700 -33.793934 -33.797797 0.0038628075 203.29611 -0.010231451 + 494800 -33.789577 -33.797231 0.0076535354 402.79874 -0.047279014 + 494900 -33.788761 -33.796543 0.0077823417 409.5777 -0.15224833 + 495000 -33.792206 -33.796059 0.0038533095 202.79624 -0.27626824 + 495100 -33.792829 -33.795895 0.0030660831 161.36522 -0.26768658 + 495200 -33.787216 -33.796005 0.0087893333 462.57477 -0.034212774 + 495300 -33.787143 -33.796292 0.0091489999 481.5037 0.22503913 + 495400 -33.791292 -33.796523 0.0052309246 275.2989 0.40314017 + 495500 -33.792006 -33.796741 0.0047346873 249.18237 0.65678711 + 495600 -33.790868 -33.79695 0.0060824282 320.11277 0.99591107 + 495700 -33.786546 -33.797068 0.010521731 553.74932 1.4961838 + 495800 -33.790439 -33.796928 0.006488168 341.46649 1.8828982 + 495900 -33.79373 -33.796722 0.0029925684 157.4962 2.1094743 + 496000 -33.792599 -33.796562 0.0039626811 208.55237 2.3721066 + 496100 -33.788765 -33.796375 0.0076102002 400.51805 2.7313815 + 496200 -33.789269 -33.796125 0.0068551915 360.78262 2.9972908 + 496300 -33.790704 -33.79593 0.0052267111 275.07715 3.1544474 + 496400 -33.7907 -33.795857 0.0051572429 271.42109 3.2541974 + 496500 -33.789844 -33.795919 0.0060744058 319.69056 3.2933481 + 496600 -33.788828 -33.796097 0.0072691315 382.56791 3.2556496 + 496700 -33.789943 -33.796329 0.0063857872 336.07828 3.099184 + 496800 -33.792455 -33.796557 0.0041015168 215.85917 2.8817512 + 496900 -33.792661 -33.79681 0.0041492972 218.37381 2.6847929 + 497000 -33.789571 -33.797121 0.0075504685 397.37442 2.4784074 + 497100 -33.788486 -33.797379 0.0088925811 468.00861 2.1321982 + 497200 -33.794236 -33.797441 0.003204984 168.67545 1.7290386 + 497300 -33.794449 -33.797491 0.0030414445 160.06851 1.5320686 + 497400 -33.792408 -33.797592 0.0051834823 272.80205 1.3810137 + 497500 -33.790855 -33.797709 0.0068537712 360.70786 1.2169577 + 497600 -33.791768 -33.797809 0.0060406997 317.91664 1.0470484 + 497700 -33.793428 -33.797924 0.0044960683 236.62406 0.93442041 + 497800 -33.795872 -33.798099 0.0022262024 117.16305 0.87673924 + 497900 -33.796235 -33.798358 0.0021232876 111.74673 0.91739276 + 498000 -33.792392 -33.798842 0.0064506737 339.4932 1.1221684 + 498100 -33.790903 -33.799503 0.0086001339 452.61737 1.3752359 + 498200 -33.794652 -33.79996 0.0053077797 279.34371 1.5093697 + 498300 -33.79587 -33.800243 0.004373474 230.17204 1.6464913 + 498400 -33.794911 -33.800457 0.0055459504 291.87842 1.8058356 + 498500 -33.789519 -33.800602 0.011083038 583.29038 2.0459275 + 498600 -33.789653 -33.800544 0.010891006 573.18395 2.1740023 + 498700 -33.796334 -33.800384 0.0040503378 213.16567 2.0781191 + 498800 -33.796221 -33.80029 0.0040687901 214.13679 2.0442073 + 498900 -33.792869 -33.80026 0.0073903523 388.94765 1.9880104 + 499000 -33.791965 -33.800269 0.0083045677 437.06199 1.7794544 + 499100 -33.796991 -33.800319 0.0033277638 175.13724 1.4501063 + 499200 -33.797762 -33.80045 0.0026877788 141.4554 1.2334636 + 499300 -33.796316 -33.800711 0.0043949363 231.30158 0.99592475 + 499400 -33.794663 -33.801071 0.0064081255 337.25393 0.67593167 + 499500 -33.794635 -33.801418 0.0067826839 356.9666 0.27492467 + 499600 -33.797592 -33.801649 0.0040567789 213.50466 -0.13607789 + 499700 -33.799643 -33.801781 0.0021384012 112.54215 -0.40884685 + 499800 -33.798418 -33.801907 0.0034893811 183.64302 -0.56556988 + 499900 -33.792499 -33.802064 0.0095650638 503.40078 -0.70898445 + 500000 -33.79596 -33.802085 0.0061254167 322.37522 -1.0216637 + 500100 -33.798269 -33.802033 0.0037638933 198.09035 -1.2114432 + 500200 -33.797416 -33.801984 0.0045679074 240.40489 -1.2744698 + 500300 -33.790274 -33.801907 0.011633259 612.24803 -1.1791592 + 500400 -33.794672 -33.80173 0.007057954 371.45382 -1.2752647 + 500500 -33.79704 -33.801586 0.0045460407 239.25407 -1.2926209 + 500600 -33.79617 -33.801483 0.0053128769 279.61197 -1.2096034 + 500700 -33.794103 -33.801383 0.0072797352 383.12597 -1.0641448 + 500800 -33.794564 -33.801242 0.006677737 351.44334 -0.94300955 + 500900 -33.798084 -33.801103 0.0030191551 158.89544 -0.90688385 + 501000 -33.798558 -33.801021 0.0024632384 129.63804 -0.84443197 + 501100 -33.793759 -33.80094 0.0071805399 377.90541 -0.67397158 + 501200 -33.792787 -33.800717 0.0079307203 417.38674 -0.57251698 + 501300 -33.795676 -33.800406 0.004729898 248.93031 -0.58856884 + 501400 -33.796335 -33.800102 0.0037673113 198.27023 -0.6026277 + 501500 -33.792162 -33.799739 0.0075769333 398.76724 -0.56878715 + 501600 -33.788907 -33.799083 0.010176538 535.58211 -0.62833379 + 501700 -33.793411 -33.798433 0.005021995 264.30312 -0.85608457 + 501800 -33.793656 -33.797918 0.0042619022 224.30011 -1.0089755 + 501900 -33.79182 -33.797449 0.005628955 296.24688 -1.1596652 + 502000 -33.788782 -33.79695 0.008167578 429.85234 -1.3521004 + 502100 -33.790407 -33.796459 0.0060517572 318.49858 -1.6648295 + 502200 -33.793927 -33.796212 0.0022848108 120.24756 -1.9171906 + 502300 -33.793077 -33.796191 0.003113865 163.87994 -2.0293137 + 502400 -33.788696 -33.796337 0.0076414741 402.16397 -2.0925647 + 502500 -33.789149 -33.796493 0.0073441823 386.51776 -2.2485084 + 502600 -33.791842 -33.796558 0.0047160602 248.20204 -2.3925159 + 502700 -33.792297 -33.79658 0.004282971 225.40895 -2.438485 + 502800 -33.786498 -33.796544 0.010046004 528.71222 -2.3160363 + 502900 -33.785599 -33.796177 0.010578279 556.72539 -2.2436768 + 503000 -33.791335 -33.795692 0.0043575995 229.33658 -2.2909259 + 503100 -33.791332 -33.795261 0.0039287607 206.76717 -2.1997708 + 503200 -33.788129 -33.794777 0.0066475027 349.85214 -1.9890901 + 503300 -33.78585 -33.794107 0.00825625 434.51907 -1.7158014 + 503400 -33.789512 -33.79348 0.0039687432 208.87142 -1.5600391 + 503500 -33.792031 -33.793231 0.0011993906 63.122859 -1.4622476 + 503600 -33.791538 -33.793322 0.0017832837 93.852632 -1.3286881 + 503700 -33.789827 -33.793748 0.0039209215 206.3546 -1.13277 + 503800 -33.786779 -33.794459 0.0076801829 404.20118 -0.87629195 + 503900 -33.787743 -33.795207 0.0074644936 392.84964 -0.6985799 + 504000 -33.791819 -33.795699 0.0038797277 204.18661 -0.65854386 + 504100 -33.792159 -33.796083 0.0039242632 206.53047 -0.60613619 + 504200 -33.788794 -33.796512 0.0077183849 406.21171 -0.51315942 + 504300 -33.781362 -33.796942 0.015580428 819.98405 -0.37719943 + 504400 -33.792997 -33.797063 0.0040659046 213.98493 -0.64070994 + 504500 -33.793414 -33.797145 0.0037306677 196.34171 -0.69025946 + 504600 -33.790544 -33.797312 0.0067674985 356.16741 -0.69622906 + 504700 -33.788846 -33.797547 0.008701625 457.95876 -0.74810951 + 504800 -33.793564 -33.797762 0.0041983041 220.953 -0.90911317 + 504900 -33.794853 -33.798022 0.0031693401 166.79955 -0.96689423 + 505000 -33.793052 -33.79846 0.0054071828 284.57521 -0.93671434 + 505100 -33.791841 -33.799089 0.00724814 381.46314 -0.88865544 + 505200 -33.793356 -33.799714 0.0063579831 334.61498 -0.86709526 + 505300 -33.795411 -33.800233 0.0048220861 253.78209 -0.83426332 + 505400 -33.796377 -33.800662 0.00428571 225.55309 -0.76159717 + 505500 -33.795306 -33.801048 0.0057419959 302.19612 -0.62051261 + 505600 -33.791281 -33.8014 0.010118987 532.55326 -0.36024665 + 505700 -33.796144 -33.801539 0.0053953449 283.95219 -0.25919648 + 505800 -33.798358 -33.801529 0.0031710892 166.8916 -0.1576852 + 505900 -33.797001 -33.801475 0.0044735581 235.43937 0.024909166 + 506000 -33.794217 -33.801334 0.007117359 374.58026 0.28995578 + 506100 -33.794689 -33.80108 0.0063912664 336.36665 0.51251257 + 506200 -33.79555 -33.800795 0.005245104 276.04515 0.70576925 + 506300 -33.795406 -33.800535 0.0051290809 269.93895 0.89809778 + 506400 -33.792266 -33.800301 0.0080345193 422.84959 1.1524704 + 506500 -33.788825 -33.80001 0.01118522 588.66816 1.4526294 + 506600 -33.795906 -33.799797 0.0038904403 204.7504 1.4713383 + 506700 -33.796037 -33.799763 0.0037260629 196.09937 1.551778 + 506800 -33.793305 -33.799869 0.0065638577 345.44997 1.6592439 + 506900 -33.79175 -33.800049 0.0082989787 436.76785 1.7130744 + 507000 -33.797077 -33.800176 0.0030986293 163.07809 1.596609 + 507100 -33.798112 -33.800282 0.0021701977 114.21557 1.5422455 + 507200 -33.796235 -33.800443 0.0042079908 221.4628 1.509693 + 507300 -33.793311 -33.800589 0.0072781046 383.04015 1.4444371 + 507400 -33.794009 -33.80055 0.0065412838 344.26193 1.2749448 + 507500 -33.796829 -33.800356 0.0035266364 185.60373 1.0842767 + 507600 -33.798692 -33.800176 0.0014837877 78.090423 0.96014087 + 507700 -33.798702 -33.800087 0.0013848955 72.885814 0.91009591 + 507800 -33.795416 -33.80005 0.0046343605 243.90226 0.93309516 + 507900 -33.792722 -33.8 0.0072776961 383.01865 0.95429302 + 508000 -33.793329 -33.799893 0.006564526 345.48515 0.93409063 + 508100 -33.795891 -33.799797 0.0039051761 205.52594 0.90333122 + 508200 -33.796448 -33.799783 0.0033348398 175.50965 0.93571364 + 508300 -33.791482 -33.799858 0.0083757146 440.80639 1.1152783 + 508400 -33.790552 -33.799901 0.0093495481 492.05838 1.2687154 + 508500 -33.795092 -33.799846 0.0047545518 250.22782 1.287531 + 508600 -33.795229 -33.799793 0.004564299 240.21498 1.3712454 + 508700 -33.793716 -33.799736 0.0060196182 316.80713 1.4841097 + 508800 -33.791841 -33.799627 0.0077861563 409.77846 1.5967053 + 508900 -33.79327 -33.799445 0.0061746301 324.96528 1.6217538 + 509000 -33.79618 -33.79931 0.0031291468 164.6842 1.5801813 + 509100 -33.795726 -33.799296 0.0035696602 187.86803 1.5714284 + 509200 -33.791076 -33.799418 0.0083426318 439.06527 1.6008359 + 509300 -33.791929 -33.799618 0.0076884257 404.63499 1.4750875 + 509400 -33.795048 -33.79983 0.0047823946 251.69316 1.3001999 + 509500 -33.795135 -33.800117 0.0049813465 262.16382 1.1779723 + 509600 -33.794455 -33.800501 0.0060464609 318.21984 1.0464877 + 509700 -33.794585 -33.800925 0.0063400463 333.67098 0.87966558 + 509800 -33.79683 -33.80129 0.0044599608 234.72376 0.67843548 + 509900 -33.79963 -33.801527 0.0018972628 99.851248 0.51456329 + 510000 -33.79901 -33.801734 0.0027243764 143.3815 0.44171553 + 510100 -33.79503 -33.801981 0.0069509067 365.82002 0.40229281 + 510200 -33.795207 -33.802078 0.0068704397 361.58511 0.25795585 + 510300 -33.797223 -33.801959 0.0047365494 249.28037 0.099095816 + 510400 -33.797866 -33.801729 0.0038625391 203.28199 -0.0037222515 + 510500 -33.7937 -33.801372 0.0076717504 403.75738 -0.0058979239 + 510600 -33.791045 -33.800678 0.0096336925 507.01264 -0.057992253 + 510700 -33.795862 -33.800014 0.0041514361 218.48638 -0.22368338 + 510800 -33.796012 -33.799567 0.0035542866 187.05893 -0.26213383 + 510900 -33.794194 -33.799234 0.0050399057 265.24574 -0.24051375 + 511000 -33.792756 -33.799004 0.006248238 328.83919 -0.20889875 + 511100 -33.792781 -33.798885 0.0061031869 321.20528 -0.19572238 + 511200 -33.793519 -33.798854 0.0053353799 280.79629 -0.19468967 + 511300 -33.795183 -33.798877 0.0036933958 194.38013 -0.22019011 + 511400 -33.796399 -33.79894 0.0025408921 133.72488 -0.2501757 + 511500 -33.794225 -33.79905 0.0048249286 253.93169 -0.23219502 + 511600 -33.790054 -33.799119 0.0090642571 477.04377 -0.21699722 + 511700 -33.793187 -33.798975 0.0057877052 304.60176 -0.37603341 + 511800 -33.795219 -33.798754 0.0035354703 186.06865 -0.51454398 + 511900 -33.793914 -33.798523 0.0046096444 242.60147 -0.60924666 + 512000 -33.784141 -33.798094 0.013952882 734.32772 -0.63960104 + 512100 -33.790237 -33.797437 0.007200721 378.96752 -1.024014 + 512200 -33.793184 -33.796983 0.0037992383 199.95052 -1.2751981 + 512300 -33.792733 -33.796763 0.0040295265 212.07039 -1.4265262 + 512400 -33.788234 -33.796725 0.0084905021 446.84755 -1.522774 + 512500 -33.789012 -33.796791 0.0077784142 409.371 -1.7396578 + 512600 -33.793 -33.796907 0.0039074139 205.64371 -1.9438668 + 512700 -33.792844 -33.797117 0.0042727914 224.8732 -2.0088125 + 512800 -33.791432 -33.797398 0.0059659128 313.98067 -2.018073 + 512900 -33.790577 -33.79762 0.007042653 370.64855 -2.0087276 + 513000 -33.792993 -33.797658 0.0046653483 245.53312 -2.039039 + 513100 -33.795299 -33.797589 0.0022902797 120.53538 -2.0523366 + 513200 -33.794476 -33.797505 0.0030289156 159.40912 -1.984908 + 513300 -33.788936 -33.797277 0.0083410599 438.98254 -1.7688601 + 513400 -33.790493 -33.796769 0.0062756202 330.28029 -1.6654006 + 513500 -33.792558 -33.796245 0.0036871972 194.0539 -1.5915385 + 513600 -33.791677 -33.795823 0.00414569 218.18397 -1.4657523 + 513700 -33.785206 -33.795344 0.01013754 533.52968 -1.178168 + 513800 -33.788131 -33.794862 0.0067313783 354.26644 -1.0592674 + 513900 -33.790197 -33.79468 0.0044832001 235.94682 -0.97410928 + 514000 -33.789647 -33.794833 0.0051860308 272.93618 -0.86194742 + 514100 -33.787427 -33.795323 0.0078951097 415.51258 -0.72785761 + 514200 -33.7869 -33.796052 0.0091525259 481.68928 -0.64395419 + 514300 -33.792555 -33.79666 0.0041053859 216.0628 -0.72237969 + 514400 -33.793352 -33.797177 0.0038255136 201.33337 -0.74089304 + 514500 -33.791019 -33.797768 0.0067487955 355.18309 -0.72828496 + 514600 -33.788823 -33.798357 0.0095343746 501.78563 -0.75626773 + 514700 -33.795104 -33.798635 0.0035308722 185.82666 -0.95735397 + 514800 -33.795717 -33.798755 0.0030376467 159.86863 -1.030995 + 514900 -33.793549 -33.798853 0.0053045081 279.17153 -1.0615373 + 515000 -33.791658 -33.79887 0.0072116594 379.5432 -1.1169001 + 515100 -33.792858 -33.798761 0.0059027768 310.65788 -1.2254975 + 515200 -33.793772 -33.79862 0.0048480787 255.15006 -1.3000215 + 515300 -33.793391 -33.798521 0.0051300547 269.9902 -1.3192992 + 515400 -33.792984 -33.798497 0.0055128389 290.13579 -1.3030984 + 515500 -33.792609 -33.798571 0.0059620546 313.77762 -1.2478974 + 515600 -33.792633 -33.798746 0.0061128458 321.71362 -1.1616622 + 515700 -33.794042 -33.798996 0.0049536103 260.70409 -1.0729261 + 515800 -33.795753 -33.799289 0.0035369377 186.14588 -0.98187811 + 515900 -33.795348 -33.799647 0.0042987438 226.23905 -0.83697065 + 516000 -33.790241 -33.800138 0.009896883 520.86412 -0.53871624 + 516100 -33.793302 -33.800565 0.0072635539 382.27436 -0.36026164 + 516200 -33.797081 -33.800755 0.003673807 193.34919 -0.27686719 + 516300 -33.796288 -33.800899 0.0046110205 242.67389 -0.12507105 + 516400 -33.794096 -33.801012 0.0069160165 363.98378 0.066007793 + 516500 -33.79404 -33.801024 0.0069839291 367.55796 0.21657608 + 516600 -33.798377 -33.800965 0.0025872963 136.1671 0.23561014 + 516700 -33.799014 -33.800969 0.0019553379 102.90769 0.27565385 + 516800 -33.796399 -33.801078 0.0046790252 246.25292 0.37034002 + 516900 -33.79444 -33.801256 0.0068153761 358.68717 0.44995636 + 517000 -33.795344 -33.801401 0.0060567678 318.76229 0.4581379 + 517100 -33.797172 -33.801501 0.0043291381 227.83868 0.43443759 + 517200 -33.798259 -33.801594 0.0033358532 175.56298 0.41700595 + 517300 -33.796667 -33.801716 0.0050493296 265.74171 0.44861585 + 517400 -33.791783 -33.801845 0.010062478 529.57924 0.54455635 + 517500 -33.796142 -33.801839 0.0056966757 299.81096 0.45930062 + 517600 -33.798284 -33.801783 0.0034992945 184.16475 0.42377124 + 517700 -33.797241 -33.801737 0.0044962737 236.63488 0.46411879 + 517800 -33.795672 -33.801668 0.0059966037 315.59591 0.53212202 + 517900 -33.795412 -33.801536 0.0061237627 322.28817 0.58980679 + 518000 -33.795897 -33.801347 0.0054497704 286.81655 0.64371211 + 518100 -33.796093 -33.801127 0.0050340699 264.93861 0.71119406 + 518200 -33.794292 -33.800872 0.0065792338 346.25921 0.83235152 + 518300 -33.792627 -33.800516 0.0078886567 415.17296 0.973782 + 518400 -33.795363 -33.800135 0.0047719586 251.14392 1.0232501 + 518500 -33.796809 -33.799888 0.0030790563 162.04799 1.0765502 + 518600 -33.794314 -33.799762 0.0054473938 286.69147 1.2089407 + 518700 -33.789494 -33.799643 0.010149128 534.13953 1.4237681 + 518800 -33.793629 -33.799496 0.0058675053 308.80157 1.4460543 + 518900 -33.794872 -33.799408 0.0045360335 238.7274 1.4875252 + 519000 -33.794023 -33.799376 0.0053520733 281.67485 1.5491206 + 519100 -33.791788 -33.799341 0.0075527331 397.49361 1.6211141 + 519200 -33.788481 -33.799178 0.010697528 563.00137 1.6906276 + 519300 -33.794232 -33.798859 0.0046267545 243.50196 1.5577864 + 519400 -33.795737 -33.798614 0.0028770457 151.41635 1.4955457 + 519500 -33.793482 -33.798405 0.0049227638 259.08067 1.4829905 + 519600 -33.789767 -33.798069 0.0083016541 436.90865 1.4526176 + 519700 -33.791601 -33.797597 0.0059966746 315.59964 1.2953237 + 519800 -33.792707 -33.797166 0.0044586207 234.65323 1.1626743 + 519900 -33.791927 -33.796804 0.0048768331 256.66338 1.0693411 + 520000 -33.79085 -33.796495 0.0056450046 297.09156 0.97556865 + 520100 -33.790593 -33.796272 0.0056790756 298.88468 0.87036258 + 520200 -33.790379 -33.796168 0.0057891056 304.67546 0.77951984 + 520300 -33.790213 -33.796192 0.0059789183 314.66514 0.70475353 + 520400 -33.790776 -33.796331 0.0055543718 292.32163 0.63580521 + 520500 -33.791921 -33.796552 0.0046315689 243.75534 0.58073795 + 520600 -33.791992 -33.796843 0.0048512285 255.31583 0.56815346 + 520700 -33.789892 -33.797187 0.0072945763 383.90705 0.61575023 + 520800 -33.789401 -33.797462 0.0080614802 424.26851 0.64626275 + 520900 -33.794034 -33.797548 0.003513436 184.909 0.5787784 + 521000 -33.794647 -33.797596 0.0029487291 155.18898 0.59440288 + 521100 -33.791268 -33.797666 0.0063972767 336.68296 0.70645626 + 521200 -33.78933 -33.797632 0.0083019952 436.9266 0.81214066 + 521300 -33.791654 -33.797445 0.0057903185 304.7393 0.82871296 + 521400 -33.792811 -33.797248 0.0044366828 233.49866 0.85592804 + 521500 -33.791687 -33.797106 0.0054189378 285.19386 0.91980523 + 521600 -33.785376 -33.796969 0.011592398 610.09754 1.0866096 + 521700 -33.790945 -33.796759 0.0058138782 305.97922 1.0053818 + 521800 -33.793271 -33.796703 0.0034313669 180.58978 0.9573683 + 521900 -33.791737 -33.796841 0.0051032181 268.57782 0.95818374 + 522000 -33.789051 -33.797145 0.0080940895 425.98471 0.93977428 + 522100 -33.791745 -33.797466 0.005721418 301.11312 0.77956571 + 522200 -33.79539 -33.797701 0.0023105704 121.60326 0.61291051 + 522300 -33.794626 -33.79799 0.0033632998 177.00747 0.51783683 + 522400 -33.792285 -33.798381 0.0060960175 320.82796 0.39192317 + 522500 -33.791647 -33.798717 0.0070700047 372.08804 0.17450912 + 522600 -33.793817 -33.798865 0.0050473427 265.63714 -0.10303984 + 522700 -33.79658 -33.798897 0.002316435 121.91191 -0.34487768 + 522800 -33.797734 -33.798944 0.0012103407 63.699154 -0.48816533 + 522900 -33.795817 -33.799097 0.0032801357 172.63061 -0.56639348 + 523000 -33.792627 -33.799408 0.006780966 356.87619 -0.68299002 + 523100 -33.792975 -33.799711 0.0067359039 354.50461 -0.87484608 + 523200 -33.795458 -33.799938 0.0044802829 235.79329 -1.0633269 + 523300 -33.796509 -33.800137 0.0036278799 190.93208 -1.1683108 + 523400 -33.793807 -33.800376 0.006569124 345.72714 -1.1658993 + 523500 -33.78946 -33.800634 0.0111735 588.05132 -1.1155265 + 523600 -33.795936 -33.800704 0.0047675101 250.9098 -1.2489329 + 523700 -33.79652 -33.800695 0.0041746209 219.70658 -1.2381549 + 523800 -33.794947 -33.800641 0.0056940917 299.67497 -1.1541502 + 523900 -33.792909 -33.800484 0.0075747518 398.65243 -1.0263148 + 524000 -33.794833 -33.800201 0.0053685494 282.54197 -0.95982195 + 524100 -33.797818 -33.799974 0.0021562979 113.48403 -0.93727298 + 524200 -33.796987 -33.799844 0.0028568493 150.35343 -0.84364243 + 524300 -33.79298 -33.799724 0.0067440088 354.93117 -0.64677081 + 524400 -33.792731 -33.799572 0.00684126 360.04941 -0.50108319 + 524500 -33.794599 -33.799434 0.0048349429 254.45873 -0.42186712 + 524600 -33.795655 -33.799371 0.0037159008 195.56455 -0.36173023 + 524700 -33.794091 -33.799399 0.0053084559 279.3793 -0.27327749 + 524800 -33.78918 -33.799498 0.010317557 543.00385 -0.12845982 + 524900 -33.794004 -33.799566 0.0055623873 292.74348 -0.20207278 + 525000 -33.796065 -33.799636 0.0035709508 187.93596 -0.25111216 + 525100 -33.794893 -33.79977 0.0048768409 256.66379 -0.26292206 + 525200 -33.793 -33.799954 0.0069543749 366.00255 -0.29299668 + 525300 -33.793597 -33.80011 0.0065128497 342.76547 -0.39388427 + 525400 -33.794469 -33.800216 0.0057468416 302.45115 -0.50562759 + 525500 -33.79491 -33.800292 0.0053817684 283.23767 -0.6068211 + 525600 -33.794766 -33.800359 0.0055930853 294.35909 -0.68932586 + 525700 -33.793096 -33.800427 0.007331211 385.8351 -0.73480758 + 525800 -33.79305 -33.800472 0.0074224678 390.63786 -0.80037121 + 525900 -33.79656 -33.8005 0.0039400406 207.36082 -0.90100992 + 526000 -33.797337 -33.800572 0.0032357524 170.29476 -0.91009745 + 526100 -33.793128 -33.800726 0.0075983695 399.89541 -0.77768611 + 526200 -33.790855 -33.800887 0.010031542 527.95113 -0.62274448 + 526300 -33.795263 -33.800902 0.0056392285 296.78757 -0.59480692 + 526400 -33.79593 -33.800855 0.0049249316 259.19476 -0.49009829 + 526500 -33.795111 -33.800761 0.0056501733 297.36358 -0.33800683 + 526600 -33.792283 -33.800581 0.0082979042 436.7113 -0.11495035 + 526700 -33.791734 -33.800241 0.0085067747 447.70397 0.096311467 + 526800 -33.796655 -33.799913 0.0032581581 171.47395 0.14711461 + 526900 -33.796769 -33.799723 0.0029542055 155.4772 0.24348698 + 527000 -33.79304 -33.79959 0.0065508795 344.76695 0.42104498 + 527100 -33.791823 -33.79945 0.0076266684 401.38476 0.55685612 + 527200 -33.793755 -33.799328 0.005573874 293.34802 0.59603103 + 527300 -33.794573 -33.799263 0.0046898762 246.824 0.61882524 + 527400 -33.793222 -33.799252 0.006029972 317.35205 0.65161477 + 527500 -33.786346 -33.799229 0.012882896 678.01534 0.75788392 + 527600 -33.793782 -33.79909 0.0053084924 279.38122 0.55834478 + 527700 -33.795314 -33.798988 0.0036744459 193.38281 0.47604015 + 527800 -33.793618 -33.798926 0.0053076432 279.33653 0.44482395 + 527900 -33.790368 -33.79884 0.0084719639 445.8719 0.41960197 + 528000 -33.793418 -33.79868 0.0052621434 276.94191 0.26766734 + 528100 -33.796782 -33.798597 0.0018150823 95.526165 0.15728976 + 528200 -33.795756 -33.798639 0.0028830237 151.73097 0.16330813 + 528300 -33.792741 -33.798793 0.0060516364 318.49222 0.23381612 + 528400 -33.791785 -33.798961 0.0071759411 377.66338 0.29355182 + 528500 -33.793879 -33.799051 0.0051726742 272.23323 0.31264901 + 528600 -33.796203 -33.799091 0.002888233 152.00512 0.33448249 + 528700 -33.797376 -33.799141 0.0017645241 92.865331 0.37963507 + 528800 -33.795791 -33.799234 0.0034420596 181.15253 0.49580889 + 528900 -33.791025 -33.799334 0.0083092999 437.31104 0.74444065 + 529000 -33.79281 -33.799241 0.0064305722 338.43528 0.88118147 + 529100 -33.79539 -33.799027 0.0036366734 191.39487 0.95518234 + 529200 -33.795013 -33.798798 0.0037851174 199.20735 1.0567576 + 529300 -33.78737 -33.798412 0.011042681 581.16647 1.3161575 + 529400 -33.790787 -33.797787 0.0069998433 368.39551 1.3514602 + 529500 -33.793289 -33.797302 0.0040126368 211.1815 1.3512567 + 529600 -33.792556 -33.796981 0.0044258394 232.92798 1.3775661 + 529700 -33.788375 -33.796766 0.0083916287 441.64393 1.4356527 + 529800 -33.788438 -33.796613 0.0081753116 430.25936 1.3707646 + 529900 -33.794386 -33.796614 0.002227922 117.25355 1.1914039 + 530000 -33.793521 -33.796841 0.0033201991 174.73912 1.1343897 + 530100 -33.789307 -33.797353 0.0080460465 423.45625 1.0858604 + 530200 -33.790343 -33.797937 0.0075936047 399.64464 0.88648952 + 530300 -33.794106 -33.798322 0.004215598 221.86316 0.66113799 + 530400 -33.794364 -33.798621 0.004257025 224.04343 0.52571761 + 530500 -33.793292 -33.798908 0.0056157062 295.54961 0.40282795 + 530600 -33.793029 -33.799126 0.0060970206 320.88076 0.25536451 + 530700 -33.793544 -33.799238 0.0056939404 299.667 0.10021739 + 530800 -33.794463 -33.799263 0.0048007266 252.65796 -0.043628216 + 530900 -33.795186 -33.799255 0.0040694494 214.17149 -0.15616636 + 531000 -33.793528 -33.799249 0.0057204023 301.05967 -0.20455204 + 531100 -33.790067 -33.799196 0.0091299174 480.49941 -0.21856507 + 531200 -33.79376 -33.799046 0.00528626 278.21115 -0.35571908 + 531300 -33.796177 -33.798941 0.0027639279 145.46306 -0.43061169 + 531400 -33.794894 -33.798916 0.0040223434 211.69235 -0.40744699 + 531500 -33.792066 -33.798908 0.0068420101 360.08889 -0.33161728 + 531600 -33.792582 -33.798821 0.0062392524 328.36629 -0.30807975 + 531700 -33.793792 -33.798665 0.0048730221 256.4628 -0.29229875 + 531800 -33.793907 -33.798479 0.0045726799 240.65606 -0.25147631 + 531900 -33.79036 -33.798231 0.0078715697 414.27369 -0.13031275 + 532000 -33.788335 -33.797769 0.0094339945 496.50272 -0.02408423 + 532100 -33.793992 -33.79732 0.0033279613 175.14763 -0.087912481 + 532200 -33.794226 -33.797089 0.0028632882 150.6923 -0.063986097 + 532300 -33.792384 -33.797003 0.0046194806 243.11914 -0.00074087082 + 532400 -33.790584 -33.797053 0.0064699573 340.50808 0.057823761 + 532500 -33.790723 -33.797217 0.0064943741 341.79312 0.06616377 + 532600 -33.793039 -33.797458 0.0044195665 232.59784 0.017210719 + 532700 -33.795774 -33.797736 0.0019626943 103.29485 -0.052460562 + 532800 -33.795549 -33.798104 0.0025543442 134.43285 -0.075400487 + 532900 -33.790051 -33.798779 0.0087277175 459.33199 -0.029012152 + 533000 -33.791677 -33.799528 0.0078509379 413.18786 -0.160959 + 533100 -33.795197 -33.799995 0.0047981756 252.5237 -0.32542019 + 533200 -33.796014 -33.800305 0.0042910331 225.83324 -0.43045851 + 533300 -33.793803 -33.800558 0.0067544574 355.48107 -0.48978355 + 533400 -33.787813 -33.800715 0.012901646 679.0021 -0.52464245 + 533500 -33.796292 -33.800636 0.0043431529 228.57626 -0.82738202 + 533600 -33.796925 -33.800537 0.0036123538 190.11496 -0.92236702 + 533700 -33.794611 -33.80045 0.0058392236 307.31313 -0.94755286 + 533800 -33.792046 -33.800326 0.0082799883 435.7684 -0.96408278 + 533900 -33.795402 -33.800175 0.0047724265 251.16855 -1.072665 + 534000 -33.798378 -33.800129 0.0017509785 92.152436 -1.1337222 + 534100 -33.797695 -33.800223 0.0025287256 133.08457 -1.0890996 + 534200 -33.795682 -33.800456 0.0047742797 251.26608 -0.97477875 + 534300 -33.793484 -33.80074 0.0072554897 381.84995 -0.81207719 + 534400 -33.794528 -33.800923 0.0063949861 336.56241 -0.69468517 + 534500 -33.797897 -33.800969 0.0030715592 161.65342 -0.64938045 + 534600 -33.798801 -33.800985 0.0021838332 114.93319 -0.58728614 + 534700 -33.793995 -33.801015 0.0070200539 369.45917 -0.40321617 + 534800 -33.792289 -33.800942 0.0086533459 455.41788 -0.24199448 + 534900 -33.796361 -33.80077 0.0044092116 232.05287 -0.23142771 + 535000 -33.797138 -33.80065 0.0035120616 184.83667 -0.19655384 + 535100 -33.793514 -33.800599 0.007085332 372.8947 -0.09365648 + 535200 -33.790021 -33.800564 0.010542202 554.82667 -0.0078009427 + 535300 -33.794687 -33.800542 0.0058552701 308.15765 -0.10679429 + 535400 -33.795361 -33.800611 0.0052500355 276.30469 -0.14545296 + 535500 -33.795035 -33.800784 0.0057487229 302.55016 -0.1820823 + 535600 -33.794411 -33.80104 0.0066288792 348.872 -0.22963143 + 535700 -33.79569 -33.801314 0.0056239702 295.98454 -0.32247338 + 535800 -33.797991 -33.801538 0.0035470965 186.68052 -0.42660974 + 535900 -33.797961 -33.801738 0.0037774523 198.80395 -0.47420831 + 536000 -33.792733 -33.80194 0.009207496 484.5823 -0.42540517 + 536100 -33.793652 -33.801962 0.0083096084 437.32728 -0.50809437 + 536200 -33.797731 -33.801784 0.0040535775 213.33617 -0.62465266 + 536300 -33.797313 -33.801528 0.0042155348 221.85984 -0.62564661 + 536400 -33.795264 -33.801138 0.0058741514 309.15135 -0.56792745 + 536500 -33.793204 -33.800534 0.0073304943 385.79738 -0.47375867 + 536600 -33.794393 -33.799788 0.0053945552 283.91063 -0.41053452 + 536700 -33.797111 -33.799229 0.0021186081 111.50046 -0.37102585 + 536800 -33.796622 -33.798919 0.0022972504 120.90224 -0.25046872 + 536900 -33.792736 -33.798674 0.0059375678 312.4889 0.031822131 + 537000 -33.791312 -33.798425 0.0071135684 374.38076 0.35467645 + 537100 -33.79292 -33.798193 0.00527264 277.49434 0.61409309 + 537200 -33.79459 -33.798037 0.0034469729 181.41111 0.81127265 + 537300 -33.794451 -33.797982 0.003531026 185.83475 0.99359877 + 537400 -33.789052 -33.797967 0.0089149 469.18323 1.2960704 + 537500 -33.789932 -33.797796 0.0078641139 413.8813 1.4827353 + 537600 -33.793746 -33.797567 0.0038211508 201.10376 1.5178974 + 537700 -33.79353 -33.797421 0.0038903994 204.74825 1.5639615 + 537800 -33.791821 -33.797334 0.005513121 290.15064 1.5869733 + 537900 -33.791205 -33.797266 0.0060612558 318.99848 1.5363438 + 538000 -33.791486 -33.797211 0.0057251669 301.31043 1.426119 + 538100 -33.791847 -33.797184 0.005336516 280.85607 1.2852459 + 538200 -33.791696 -33.797191 0.0054948467 289.18888 1.1378871 + 538300 -33.790508 -33.797209 0.0067008776 352.66121 0.99275702 + 538400 -33.790705 -33.797172 0.0064673594 340.37136 0.81254487 + 538500 -33.792802 -33.797083 0.0042813701 225.32469 0.63002403 + 538600 -33.793542 -33.797022 0.0034794522 183.12046 0.52233362 + 538700 -33.790086 -33.796984 0.0068979454 363.03272 0.5245067 + 538800 -33.786664 -33.796749 0.010085244 530.77742 0.53434425 + 538900 -33.791808 -33.796317 0.0045090161 237.30549 0.40866817 + 539000 -33.792186 -33.795959 0.0037731068 198.57525 0.41898161 + 539100 -33.790661 -33.795636 0.0049744922 261.80309 0.51277235 + 539200 -33.788709 -33.795297 0.0065878556 346.71297 0.66593118 + 539300 -33.788623 -33.794955 0.0063324903 333.27331 0.82251996 + 539400 -33.791411 -33.794735 0.0033241728 174.94825 0.92471514 + 539500 -33.792976 -33.794792 0.0018163092 95.590735 1.0121285 + 539600 -33.790931 -33.795196 0.0042652091 224.47415 1.1857038 + 539700 -33.787304 -33.796024 0.0087192702 458.88741 1.4589413 + 539800 -33.790386 -33.796814 0.0064280623 338.30318 1.5854285 + 539900 -33.792868 -33.797391 0.0045230288 238.04297 1.6558583 + 540000 -33.79285 -33.797915 0.0050654017 266.58758 1.726585 + 540100 -33.790245 -33.798456 0.0082113772 432.15746 1.8099137 + 540200 -33.785772 -33.798949 0.01317657 693.47111 1.8858434 + 540300 -33.794662 -33.799097 0.0044348775 233.40365 1.6620233 + 540400 -33.795388 -33.799179 0.0037902721 199.47864 1.5750742 + 540500 -33.792879 -33.799301 0.006422168 337.99298 1.5057457 + 540600 -33.790205 -33.799392 0.0091869042 483.49857 1.3658878 + 540700 -33.795589 -33.79936 0.0037711292 198.47116 1.0698024 + 540800 -33.79691 -33.79937 0.0024606462 129.50161 0.916741 + 540900 -33.795412 -33.799481 0.0040693806 214.16787 0.81162552 + 541000 -33.793129 -33.79965 0.0065212843 343.20937 0.6924892 + 541100 -33.79297 -33.799762 0.0067922434 357.46971 0.52397356 + 541200 -33.79552 -33.799787 0.0042667302 224.5542 0.33761426 + 541300 -33.798087 -33.799824 0.0017364828 91.38954 0.2165607 + 541400 -33.797945 -33.799963 0.002018261 106.21927 0.19701549 + 541500 -33.792917 -33.800318 0.0074004618 389.4797 0.30489784 + 541600 -33.793405 -33.800728 0.0073227114 385.38777 0.3330433 + 541700 -33.796533 -33.801002 0.004468196 235.15717 0.31573049 + 541800 -33.797378 -33.801218 0.0038408733 202.14174 0.34333684 + 541900 -33.794227 -33.80146 0.0072326536 380.64811 0.45704102 + 542000 -33.790063 -33.801685 0.011621764 611.64306 0.60387208 + 542100 -33.797301 -33.801718 0.0044168348 232.45408 0.49921389 + 542200 -33.797454 -33.80171 0.0042566316 224.02272 0.50365764 + 542300 -33.795425 -33.80169 0.0062655874 329.75227 0.52255554 + 542400 -33.793545 -33.8016 0.0080547705 423.91539 0.50246961 + 542500 -33.797321 -33.801437 0.0041157677 216.60918 0.34645341 + 542600 -33.79933 -33.80135 0.0020196686 106.29336 0.23117841 + 542700 -33.797689 -33.801355 0.0036661894 192.94828 0.16331709 + 542800 -33.794746 -33.801412 0.0066654402 350.79617 0.049130074 + 542900 -33.795129 -33.801432 0.0063034949 331.74731 -0.16534023 + 543000 -33.796625 -33.801406 0.0047813145 251.63632 -0.38897121 + 543100 -33.79738 -33.801369 0.0039893386 209.95533 -0.57394096 + 543200 -33.795117 -33.801327 0.0062105451 326.85545 -0.6974955 + 543300 -33.791198 -33.801182 0.0099845054 525.47561 -0.83271065 + 543400 -33.796282 -33.800915 0.0046331276 243.83737 -1.1130889 + 543500 -33.797664 -33.800715 0.003050761 160.55883 -1.238249 + 543600 -33.796156 -33.800562 0.0044060299 231.88542 -1.2679826 + 543700 -33.794574 -33.800404 0.0058302589 306.84133 -1.2676812 + 543800 -33.794225 -33.800229 0.0060034611 315.9568 -1.2544678 + 543900 -33.794497 -33.80005 0.0055529388 292.24621 -1.21784 + 544000 -33.794974 -33.799891 0.0049173967 258.7982 -1.157732 + 544100 -33.794615 -33.799769 0.0051538137 271.24062 -1.0567235 + 544200 -33.792441 -33.799652 0.0072107026 379.49285 -0.89030552 + 544300 -33.792295 -33.799481 0.0071858347 378.18407 -0.7428755 + 544400 -33.795686 -33.799306 0.0036202154 190.52871 -0.69119995 + 544500 -33.796552 -33.799224 0.0026721308 140.63186 -0.62992941 + 544600 -33.79189 -33.799214 0.0073233782 385.42286 -0.46565517 + 544700 -33.790066 -33.799113 0.0090473551 476.15423 -0.34665845 + 544800 -33.794034 -33.798903 0.0048692447 256.26401 -0.38390421 + 544900 -33.794747 -33.798716 0.0039690495 208.88754 -0.39524938 + 545000 -33.792038 -33.798538 0.006499842 342.08089 -0.37278636 + 545100 -33.785679 -33.798207 0.012527108 659.29054 -0.33403308 + 545200 -33.794318 -33.797796 0.00347793 183.04035 -0.60162818 + 545300 -33.794557 -33.797627 0.0030693802 161.53874 -0.68407654 + 545400 -33.79149 -33.797609 0.0061186874 322.02106 -0.73253335 + 545500 -33.789045 -33.797675 0.0086297453 454.1758 -0.83731706 + 545600 -33.792859 -33.797743 0.0048842763 257.05511 -1.0537298 + 545700 -33.794702 -33.797855 0.0031530192 165.94059 -1.1850831 + 545800 -33.792294 -33.79807 0.0057759042 303.98069 -1.2153816 + 545900 -33.784268 -33.79835 0.014081629 741.10359 -1.1737474 + 546000 -33.792268 -33.79833 0.006061489 319.01076 -1.4250261 + 546100 -33.794157 -33.798215 0.004058497 213.59508 -1.5097283 + 546200 -33.793295 -33.798085 0.0047892894 252.05603 -1.5115107 + 546300 -33.788903 -33.797871 0.0089685474 472.00665 -1.4167723 + 546400 -33.790459 -33.797484 0.0070246053 369.69871 -1.4090474 + 546500 -33.794964 -33.797214 0.0022498755 118.40894 -1.4503406 + 546600 -33.794439 -33.797162 0.0027224763 143.2815 -1.3679711 + 546700 -33.792064 -33.797305 0.0052401192 275.7828 -1.1890045 + 546800 -33.790306 -33.797618 0.0073126785 384.85975 -0.96003183 + 546900 -33.792015 -33.79799 0.0059747181 314.44408 -0.78158994 + 547000 -33.795229 -33.798331 0.003102293 163.27091 -0.67264729 + 547100 -33.796841 -33.798651 0.0018095396 95.234456 -0.58861616 + 547200 -33.79595 -33.79904 0.0030900872 162.62853 -0.47403048 + 547300 -33.78968 -33.799691 0.010011143 526.87754 -0.20511234 + 547400 -33.793572 -33.800185 0.0066126573 348.01826 -0.13831017 + 547500 -33.796507 -33.800357 0.0038505445 202.65072 -0.11277446 + 547600 -33.795948 -33.800395 0.0044471216 234.04804 -0.04988362 + 547700 -33.791086 -33.800269 0.0091836028 483.32482 0.083925627 + 547800 -33.79105 -33.799777 0.0087267199 459.27948 0.10995304 + 547900 -33.797048 -33.799317 0.0022682216 119.37448 -0.0044461937 + 548000 -33.796181 -33.798996 0.0028143178 148.11504 0.008739766 + 548100 -33.79258 -33.798642 0.0060620077 319.03806 0.072990662 + 548200 -33.790962 -33.798232 0.0072696285 382.59406 0.096941591 + 548300 -33.792729 -33.797889 0.0051599856 271.56544 0.063409212 + 548400 -33.794752 -33.797733 0.0029812038 156.8981 0.039874449 + 548500 -33.795387 -33.797778 0.002390629 125.81667 0.058218686 + 548600 -33.791713 -33.798029 0.0063164436 332.42879 0.19337905 + 548700 -33.789033 -33.798404 0.0093711265 493.19403 0.35870145 + 548800 -33.793614 -33.798596 0.0049822271 262.21017 0.37363875 + 548900 -33.79469 -33.798686 0.0039962166 210.31731 0.44263744 + 549000 -33.79338 -33.798742 0.0053619635 282.19536 0.56887705 + 549100 -33.7918 -33.798719 0.0069189345 364.13735 0.72068304 + 549200 -33.792452 -33.798578 0.0061261366 322.41311 0.83336056 + 549300 -33.792935 -33.798377 0.0054417866 286.39638 0.93751877 + 549400 -33.792826 -33.79818 0.0053543831 281.79641 1.0444499 + 549500 -33.79165 -33.798015 0.0063653166 335.00094 1.1705312 + 549600 -33.790241 -33.797882 0.007640759 402.12633 1.2983391 + 549700 -33.792634 -33.797802 0.0051678164 271.97757 1.3325736 + 549800 -33.794933 -33.79785 0.0029169526 153.51661 1.3311579 + 549900 -33.793873 -33.798072 0.004198768 220.97742 1.3668371 + 550000 -33.787294 -33.798518 0.011223907 590.70424 1.4857205 + 550100 -33.79168 -33.798882 0.0072013888 379.00267 1.3609185 + 550200 -33.793827 -33.799066 0.005238724 275.70937 1.2634681 + 550300 -33.793975 -33.799178 0.005202907 273.82436 1.1879977 + 550400 -33.792999 -33.799224 0.0062244699 327.5883 1.1115512 + 550500 -33.790581 -33.799155 0.008573435 451.21224 1.0320588 + 550600 -33.792953 -33.798928 0.0059754466 314.48242 0.84567424 + 550700 -33.795801 -33.798731 0.0029299642 154.2014 0.68854925 + 550800 -33.794981 -33.798659 0.0036777152 193.55487 0.62769168 + 550900 -33.789656 -33.798696 0.0090405149 475.79424 0.64402253 + 551000 -33.79158 -33.79878 0.0072001849 378.93931 0.52232727 + 551100 -33.793957 -33.798931 0.0049739025 261.77205 0.43298535 + 551200 -33.794279 -33.799212 0.0049329407 259.61627 0.42292481 + 551300 -33.792107 -33.799657 0.0075501685 397.35864 0.49654034 + 551400 -33.788566 -33.800277 0.011710428 616.30939 0.64168285 + 551500 -33.796242 -33.800726 0.0044838752 235.98235 0.57066424 + 551600 -33.79704 -33.801057 0.0040176288 211.44422 0.62615824 + 551700 -33.794937 -33.801419 0.006481941 341.13877 0.75832173 + 551800 -33.792399 -33.801751 0.0093515677 492.16467 0.92386636 + 551900 -33.798258 -33.801878 0.0036200384 190.51939 0.90171757 + 552000 -33.799275 -33.801904 0.0026288363 138.35331 0.9306954 + 552100 -33.796934 -33.801905 0.0049711813 261.62884 1.0116181 + 552200 -33.794472 -33.801808 0.0073361064 386.09274 1.080923 + 552300 -33.795616 -33.801572 0.0059560889 313.46365 1.0534659 + 552400 -33.796593 -33.801296 0.0047025369 247.49032 1.0004264 + 552500 -33.795388 -33.801034 0.0056460432 297.14622 0.9613366 + 552600 -33.786264 -33.800667 0.014403042 758.01925 1.0116513 + 552700 -33.794614 -33.800269 0.0056544129 297.58671 0.69503309 + 552800 -33.796111 -33.8001 0.0039890864 209.94206 0.54595458 + 552900 -33.794533 -33.800112 0.0055787946 293.60698 0.44387918 + 553000 -33.790956 -33.800267 0.0093113806 490.04966 0.33442629 + 553100 -33.795464 -33.800434 0.0049693769 261.53387 0.059855167 + 553200 -33.797949 -33.800564 0.0026152925 137.64051 -0.10122251 + 553300 -33.796282 -33.800745 0.0044628328 234.87491 -0.17319895 + 553400 -33.79314 -33.800927 0.0077871842 409.83256 -0.24425074 + 553500 -33.79443 -33.800931 0.0065011327 342.14881 -0.40849141 + 553600 -33.796034 -33.800771 0.0047371612 249.31257 -0.55126506 + 553700 -33.795818 -33.800517 0.0046990934 247.30909 -0.63637155 + 553800 -33.795014 -33.800174 0.0051597868 271.55497 -0.69825638 + 553900 -33.793688 -33.799745 0.0060572685 318.78864 -0.73713667 + 554000 -33.792061 -33.79924 0.0071793026 377.84029 -0.75402848 + 554100 -33.791124 -33.798688 0.0075646742 398.12206 -0.76757732 + 554200 -33.793722 -33.798246 0.0045245053 238.12068 -0.82590169 + 554300 -33.794838 -33.798058 0.0032200546 169.4686 -0.83136366 + 554400 -33.792071 -33.798093 0.0060214239 316.90217 -0.73729161 + 554500 -33.788022 -33.79828 0.010257951 539.86683 -0.58203883 + 554600 -33.792946 -33.798413 0.0054674032 287.74455 -0.6077487 + 554700 -33.793735 -33.79851 0.0047752026 251.31465 -0.57496149 + 554800 -33.792835 -33.798578 0.0057423035 302.21231 -0.51918002 + 554900 -33.791886 -33.798533 0.0066463264 349.79023 -0.47902087 + 555000 -33.792925 -33.798313 0.005387879 283.55926 -0.50170651 + 555100 -33.795057 -33.798015 0.0029575267 155.65199 -0.56508619 + 555200 -33.79447 -33.797722 0.003251909 171.14507 -0.59413001 + 555300 -33.789782 -33.797259 0.0074766236 393.48803 -0.58563933 + 555400 -33.789702 -33.796514 0.0068124453 358.53292 -0.70882113 + 555500 -33.791599 -33.795787 0.0041878934 220.4051 -0.86790643 + 555600 -33.791098 -33.79522 0.0041217811 216.92566 -0.96654596 + 555700 -33.783806 -33.794585 0.010778216 567.24787 -0.96763912 + 555800 -33.787582 -33.793905 0.0063226175 332.75372 -1.1937449 + 555900 -33.789945 -33.793585 0.0036398922 191.56428 -1.3195236 + 556000 -33.7888 -33.793603 0.004802569 252.75492 -1.3225063 + 556100 -33.784041 -33.793889 0.009848088 518.29609 -1.2063338 + 556200 -33.787945 -33.794199 0.0062541267 329.14911 -1.2116815 + 556300 -33.79164 -33.794408 0.0027681089 145.6831 -1.2124941 + 556400 -33.790093 -33.794743 0.0046498809 244.71909 -1.0783468 + 556500 -33.785936 -33.795208 0.0092717824 487.96564 -0.82067366 + 556600 -33.789403 -33.795486 0.0060832034 320.15357 -0.69568999 + 556700 -33.792191 -33.795586 0.0033946338 178.65655 -0.61621797 + 556800 -33.791485 -33.795692 0.0042068715 221.4039 -0.48543106 + 556900 -33.790139 -33.795806 0.0056674443 298.27254 -0.34205009 + 557000 -33.789539 -33.795877 0.00633848 333.58855 -0.22584808 + 557100 -33.790317 -33.795887 0.0055698211 293.13472 -0.16597451 + 557200 -33.792628 -33.795904 0.0032758661 172.40591 -0.17864845 + 557300 -33.793513 -33.79603 0.0025165254 132.44249 -0.20032687 + 557400 -33.790242 -33.796358 0.0061165701 321.90963 -0.17891139 + 557500 -33.787624 -33.796879 0.0092543537 487.04838 -0.23039358 + 557600 -33.791787 -33.797267 0.0054802952 288.42305 -0.42896356 + 557700 -33.792959 -33.79757 0.0046108057 242.66259 -0.56014821 + 557800 -33.792292 -33.79789 0.0055983319 294.63521 -0.66423061 + 557900 -33.791831 -33.798199 0.0063684139 335.16394 -0.7792221 + 558000 -33.792413 -33.79844 0.0060267681 317.18343 -0.90571857 + 558100 -33.792847 -33.79861 0.0057628244 303.29231 -1.0063072 + 558200 -33.79303 -33.798734 0.0057037288 300.18216 -1.070879 + 558300 -33.793203 -33.798837 0.0056335966 296.49116 -1.1004167 + 558400 -33.793508 -33.798935 0.0054272819 285.633 -1.0919898 + 558500 -33.793847 -33.799053 0.0052058281 273.97809 -1.0403435 + 558600 -33.793431 -33.799209 0.0057778996 304.0857 -0.93020375 + 558700 -33.792692 -33.7994 0.0067087407 353.07504 -0.76368008 + 558800 -33.793901 -33.799598 0.005697343 299.84608 -0.60011523 + 558900 -33.796186 -33.799791 0.003605422 189.75014 -0.46546151 + 559000 -33.796492 -33.800031 0.0035384671 186.22637 -0.29947577 + 559100 -33.791481 -33.800407 0.0089259805 469.76639 0.026714 + 559200 -33.791819 -33.800835 0.0090166367 474.53755 0.32739125 + 559300 -33.796467 -33.801078 0.0046110541 242.67566 0.45620329 + 559400 -33.796372 -33.801284 0.0049121183 258.5204 0.62430256 + 559500 -33.795055 -33.801498 0.0064432265 339.10126 0.79978864 + 559600 -33.794605 -33.80167 0.0070649829 371.82375 0.93851989 + 559700 -33.79806 -33.801751 0.0036913632 194.27315 0.94968636 + 559800 -33.799268 -33.801812 0.0025438049 133.87818 0.94888084 + 559900 -33.796479 -33.801913 0.0054334984 285.96018 0.98797678 + 560000 -33.793204 -33.801993 0.0087891099 462.56301 0.98500048 + 560100 -33.796093 -33.801936 0.0058427329 307.49782 0.8349437 + 560200 -33.797357 -33.801828 0.0044708534 235.29703 0.71548936 + 560300 -33.79646 -33.801722 0.0052615733 276.91191 0.62902359 + 560400 -33.788975 -33.801572 0.012596765 662.95648 0.64106957 + 560500 -33.792365 -33.801203 0.0088380882 465.1407 0.39573298 + 560600 -33.796786 -33.800933 0.0041471551 218.26107 0.21302861 + 560700 -33.795971 -33.800788 0.0048165327 253.48982 0.17764904 + 560800 -33.792751 -33.800714 0.0079627809 419.07406 0.2211912 + 560900 -33.793473 -33.80064 0.0071667054 377.17731 0.22159291 + 561000 -33.79771 -33.800594 0.0028838915 151.77664 0.18037495 + 561100 -33.797676 -33.800643 0.0029670308 156.15218 0.24665979 + 561200 -33.795014 -33.800768 0.0057539966 302.82771 0.41578017 + 561300 -33.794315 -33.800844 0.0065294225 343.63768 0.59323153 + 561400 -33.795285 -33.800776 0.0054916048 289.01826 0.73969719 + 561500 -33.796139 -33.800592 0.0044533655 234.37665 0.87257663 + 561600 -33.794987 -33.800323 0.0053362673 280.84299 1.0367572 + 561700 -33.789864 -33.799824 0.0099599435 524.18294 1.3044395 + 561800 -33.793288 -33.799085 0.0057971151 305.097 1.3944207 + 561900 -33.795989 -33.798578 0.0025891359 136.26391 1.4248027 + 562000 -33.794963 -33.798301 0.0033382745 175.69041 1.4875419 + 562100 -33.793038 -33.798187 0.0051486035 270.96641 1.5421746 + 562200 -33.791977 -33.798238 0.0062606706 329.49351 1.5419171 + 562300 -33.791962 -33.798409 0.0064470975 339.30499 1.4779558 + 562400 -33.794036 -33.79862 0.0045835941 241.23047 1.3444244 + 562500 -33.795876 -33.798834 0.0029584618 155.7012 1.2062184 + 562600 -33.795191 -33.799088 0.0038965883 205.07397 1.1003168 + 562700 -33.788838 -33.799388 0.010549321 555.20137 1.0223066 + 562800 -33.792519 -33.799414 0.0068945994 362.85662 0.69089576 + 562900 -33.795043 -33.799232 0.0041894763 220.4884 0.44198614 + 563000 -33.794412 -33.798979 0.00456708 240.36135 0.27227145 + 563100 -33.792455 -33.798624 0.006168318 324.63307 0.11291 + 563200 -33.791286 -33.798135 0.0068492427 360.46953 -0.069657955 + 563300 -33.793074 -33.797629 0.0045551115 239.73146 -0.27508681 + 563400 -33.794959 -33.797364 0.0024056065 126.60493 -0.40225029 + 563500 -33.793346 -33.797373 0.0040269462 211.93459 -0.39872489 + 563600 -33.788818 -33.79764 0.0088225774 464.32438 -0.28627977 + 563700 -33.791285 -33.797978 0.0066933082 352.26284 -0.26940905 + 563800 -33.794229 -33.798272 0.0040429552 212.77713 -0.24802886 + 563900 -33.793938 -33.798609 0.0046706761 245.81352 -0.14883063 + 564000 -33.792449 -33.798994 0.0065447905 344.44648 -0.0013256837 + 564100 -33.792682 -33.799292 0.0066103934 347.89911 0.12135071 + 564200 -33.793788 -33.799425 0.0056374446 296.69368 0.2068263 + 564300 -33.794719 -33.799427 0.0047081678 247.78667 0.26628329 + 564400 -33.794167 -33.799353 0.0051857858 272.92328 0.32801976 + 564500 -33.789791 -33.799164 0.0093725502 493.26896 0.43800933 + 564600 -33.791631 -33.798768 0.0071374226 375.63618 0.39185786 + 564700 -33.79564 -33.798466 0.002826637 148.76339 0.27639189 + 564800 -33.795008 -33.798359 0.0033508914 176.35443 0.22115433 + 564900 -33.792686 -33.798399 0.0057133173 300.68679 0.1444334 + 565000 -33.791934 -33.798509 0.0065754328 346.05916 -0.016297686 + 565100 -33.792889 -33.798612 0.0057223984 301.16472 -0.2346117 + 565200 -33.794529 -33.798685 0.0041562025 218.73723 -0.45966733 + 565300 -33.796318 -33.798754 0.0024365745 128.23474 -0.65778109 + 565400 -33.795924 -33.798865 0.0029400707 154.7333 -0.79365916 + 565500 -33.790821 -33.799018 0.0081967526 431.38778 -0.89742286 + 565600 -33.791425 -33.799003 0.0075778987 398.81805 -1.1706596 + 565700 -33.794532 -33.798823 0.0042906535 225.81327 -1.4349356 + 565800 -33.79461 -33.798626 0.0040162577 211.37206 -1.5854258 + 565900 -33.790183 -33.79839 0.0082064198 431.89656 -1.6404139 + 566000 -33.784608 -33.797852 0.013243358 696.98613 -1.7145701 + 566100 -33.792919 -33.797333 0.0044142649 232.31883 -1.9834518 + 566200 -33.792594 -33.79705 0.0044569904 234.56743 -2.0050341 + 566300 -33.789854 -33.79694 0.0070866634 372.96477 -1.9104606 + 566400 -33.789075 -33.796982 0.0079063102 416.10206 -1.777729 + 566500 -33.792942 -33.79714 0.0041986622 220.97184 -1.7034177 + 566600 -33.794238 -33.797435 0.0031970873 168.25985 -1.5709478 + 566700 -33.790534 -33.797946 0.0074119399 390.08379 -1.2817427 + 566800 -33.786551 -33.798663 0.012112417 637.46569 -0.83219181 + 566900 -33.793091 -33.798993 0.0059017777 310.60529 -0.65842551 + 567000 -33.794315 -33.799112 0.0047970072 252.46221 -0.45778989 + 567100 -33.793867 -33.799126 0.0052585184 276.75114 -0.25698385 + 567200 -33.791039 -33.799006 0.007967255 419.30952 -0.017766697 + 567300 -33.790158 -33.798638 0.00847988 446.28852 0.17148757 + 567400 -33.795138 -33.798238 0.0031000443 163.15257 0.16721783 + 567500 -33.795409 -33.79805 0.0026416141 139.02579 0.18292243 + 567600 -33.792129 -33.79804 0.0059105982 311.06951 0.21006141 + 567700 -33.790917 -33.798172 0.0072559017 381.87164 0.13130954 + 567800 -33.792679 -33.798388 0.0057091822 300.46917 -0.04019451 + 567900 -33.794157 -33.798684 0.0045274087 238.27348 -0.21610089 + 568000 -33.794574 -33.799064 0.0044902832 236.3196 -0.37351748 + 568100 -33.792678 -33.79954 0.0068616614 361.12312 -0.50219344 + 568200 -33.791498 -33.800045 0.0085476205 449.85364 -0.67817314 + 568300 -33.796073 -33.800351 0.0042783888 225.16778 -0.92547341 + 568400 -33.797199 -33.800538 0.0033389531 175.72613 -1.0369971 + 568500 -33.794485 -33.800718 0.0062328024 328.02683 -1.0396405 + 568600 -33.789209 -33.800805 0.011595409 610.25601 -0.96929463 + 568700 -33.796855 -33.800653 0.00379869 199.92167 -1.1160208 + 568800 -33.797247 -33.80051 0.0032636793 171.76453 -1.0750458 + 568900 -33.794548 -33.800364 0.0058160192 306.0919 -0.9021716 + 569000 -33.791585 -33.800108 0.0085220669 448.50878 -0.62893973 + 569100 -33.7946 -33.799765 0.0051652695 271.84352 -0.44046261 + 569200 -33.796741 -33.799543 0.0028020971 147.47187 -0.275507 + 569300 -33.794958 -33.799472 0.004514039 237.56985 -0.028268236 + 569400 -33.788457 -33.799469 0.011012077 579.55577 0.46283273 + 569500 -33.793622 -33.799419 0.005797342 305.10894 0.70279899 + 569600 -33.795361 -33.799437 0.0040766274 214.54926 0.88857453 + 569700 -33.79422 -33.799578 0.005358693 282.02324 1.0784 + 569800 -33.78872 -33.799842 0.011122127 585.34761 1.3352946 + 569900 -33.793287 -33.800084 0.0067969869 357.71936 1.3517226 + 570000 -33.796932 -33.800242 0.0033100634 174.20568 1.2930308 + 570100 -33.795598 -33.800498 0.0049001852 257.89238 1.2637938 + 570200 -33.791995 -33.800879 0.0088834441 467.52774 1.1918488 + 570300 -33.795262 -33.801197 0.0059343963 312.32199 0.92672669 + 570400 -33.798748 -33.801372 0.0026243619 138.11783 0.69773638 + 570500 -33.798015 -33.801554 0.0035385996 186.23334 0.55188065 + 570600 -33.795933 -33.801748 0.0058154236 306.06055 0.38654123 + 570700 -33.794754 -33.801831 0.0070771472 372.46394 0.16464161 + 570800 -33.796657 -33.801715 0.0050578191 266.18851 -0.094214595 + 570900 -33.79964 -33.801538 0.00189878 99.9311 -0.28365814 + 571000 -33.799855 -33.801437 0.001581632 83.239879 -0.33431729 + 571100 -33.796339 -33.801358 0.0050195761 264.17581 -0.25117501 + 571200 -33.79452 -33.801187 0.0066667892 350.86717 -0.13099286 + 571300 -33.794912 -33.800891 0.0059791054 314.67499 0.001279199 + 571400 -33.796181 -33.80056 0.0043789783 230.46172 0.14896634 + 571500 -33.795972 -33.800266 0.0042936037 225.96853 0.35004708 + 571600 -33.791178 -33.799929 0.0087507569 460.54453 0.71981787 + 571700 -33.79128 -33.799406 0.0081261479 427.67191 1.0824475 + 571800 -33.795688 -33.798989 0.003300301 173.6919 1.2562761 + 571900 -33.795413 -33.798785 0.0033718443 177.45716 1.4466512 + 572000 -33.793682 -33.798726 0.0050439184 265.45693 1.6550466 + 572100 -33.792078 -33.798768 0.006690137 352.09594 1.8365682 + 572200 -33.792611 -33.798856 0.0062454142 328.69058 1.9211731 + 572300 -33.795861 -33.798962 0.0031006103 163.18235 1.8768395 + 572400 -33.797305 -33.799127 0.0018222342 95.902559 1.8041479 + 572500 -33.794954 -33.799449 0.0044947904 236.55681 1.7324492 + 572600 -33.791623 -33.79993 0.0083071675 437.19881 1.5377665 + 572700 -33.79434 -33.800202 0.0058614966 308.48534 1.1786672 + 572800 -33.796318 -33.800273 0.0039552458 208.16106 0.86962553 + 572900 -33.795636 -33.80026 0.0046240018 243.35709 0.61942243 + 573000 -33.788299 -33.800075 0.011775611 619.73989 0.39202187 + 573100 -33.792889 -33.79951 0.0066207978 348.44668 -0.11383492 + 573200 -33.795031 -33.798966 0.0039355938 207.12679 -0.4195155 + 573300 -33.79394 -33.798454 0.0045143346 237.5854 -0.59605784 + 573400 -33.791081 -33.79786 0.0067788438 356.76451 -0.70432702 + 573500 -33.789993 -33.797127 0.0071339323 375.45249 -0.80177294 + 573600 -33.79353 -33.796483 0.0029529071 155.40887 -0.90840783 + 573700 -33.794753 -33.796261 0.0015080048 79.364948 -0.89109785 + 573800 -33.792643 -33.796357 0.0037138354 195.45584 -0.71967093 + 573900 -33.789542 -33.796689 0.0071467199 376.1255 -0.39131505 + 574000 -33.79038 -33.796995 0.0066149308 348.13791 -0.084968826 + 574100 -33.792994 -33.797175 0.0041815527 220.07139 0.13855581 + 574200 -33.794117 -33.797331 0.0032137673 169.1377 0.3304038 + 574300 -33.791772 -33.797537 0.005765246 303.41975 0.57290289 + 574400 -33.787287 -33.797721 0.010434274 549.14652 0.90737485 + 574500 -33.792766 -33.79767 0.0049038258 258.08398 0.98400229 + 574600 -33.794148 -33.79761 0.0034617327 182.1879 1.0376214 + 574700 -33.792567 -33.797644 0.0050772419 267.21071 1.0887682 + 574800 -33.790567 -33.797739 0.0071724632 377.48034 1.0871205 + 574900 -33.791438 -33.797824 0.0063864984 336.11571 0.9674563 + 575000 -33.792457 -33.797934 0.0054760859 288.20152 0.80430949 + 575100 -33.792903 -33.798108 0.00520485 273.92661 0.62284033 + 575200 -33.792482 -33.798369 0.0058874245 309.8499 0.42684272 + 575300 -33.791446 -33.7987 0.0072540482 381.77408 0.20847005 + 575400 -33.793397 -33.799009 0.0056119598 295.35244 -0.071401133 + 575500 -33.79561 -33.799277 0.0036674393 193.01406 -0.30362703 + 575600 -33.795318 -33.79958 0.0042616613 224.28743 -0.44799001 + 575700 -33.789197 -33.799978 0.010781432 567.41712 -0.49951176 + 575800 -33.792645 -33.800233 0.0075872783 399.31169 -0.76607677 + 575900 -33.796275 -33.800261 0.0039855754 209.75728 -0.94930079 + 576000 -33.795434 -33.800259 0.0048245291 253.91067 -1.0019116 + 576100 -33.792936 -33.800201 0.0072641885 382.30776 -0.99748671 + 576200 -33.792797 -33.800016 0.0072191502 379.93744 -1.0109193 + 576300 -33.797168 -33.799826 0.0026585083 139.91492 -1.0838511 + 576400 -33.797685 -33.79981 0.0021251012 111.84218 -1.0527725 + 576500 -33.79455 -33.800001 0.0054513753 286.90102 -0.89596017 + 576600 -33.79305 -33.800355 0.0073049945 384.45535 -0.70930661 + 576700 -33.794975 -33.800695 0.0057195167 301.01306 -0.58435002 + 576800 -33.796826 -33.800988 0.0041620122 219.04299 -0.48446983 + 576900 -33.797219 -33.801267 0.0040481671 213.05142 -0.3828069 + 577000 -33.793576 -33.801573 0.0079967879 420.86381 -0.20506657 + 577100 -33.792741 -33.801779 0.0090373802 475.62926 -0.079895665 + 577200 -33.797938 -33.80176 0.0038218556 201.14085 -0.12781287 + 577300 -33.79812 -33.801692 0.0035718135 187.98136 -0.12240705 + 577400 -33.795849 -33.801575 0.0057258634 301.34708 -0.10843565 + 577500 -33.794598 -33.801338 0.0067407624 354.76031 -0.16060719 + 577600 -33.795305 -33.801005 0.0057006542 300.02035 -0.28027542 + 577700 -33.795573 -33.800661 0.0050875674 267.75413 -0.40994918 + 577800 -33.794459 -33.800345 0.0058854163 309.74421 -0.53022774 + 577900 -33.788133 -33.799992 0.011858966 624.12682 -0.59137827 + 578000 -33.793098 -33.79957 0.0064719482 340.61286 -0.89617751 + 578100 -33.795958 -33.799396 0.0034380794 180.94305 -1.0647736 + 578200 -33.794551 -33.799455 0.0049039745 258.0918 -1.1049311 + 578300 -33.791243 -33.799713 0.0084696697 445.75116 -1.0810275 + 578400 -33.794196 -33.800003 0.0058071528 305.62527 -1.1406498 + 578500 -33.797901 -33.800208 0.0023062494 121.37585 -1.1788072 + 578600 -33.796803 -33.800462 0.0036597725 192.61056 -1.0784802 + 578700 -33.793715 -33.800763 0.0070484538 370.95384 -0.86332762 + 578800 -33.793731 -33.800887 0.0071561666 376.62266 -0.64998958 + 578900 -33.796889 -33.800761 0.003872668 203.81506 -0.51083842 + 579000 -33.799109 -33.800588 0.0014790026 77.83859 -0.39804077 + 579100 -33.799692 -33.800498 0.00080525172 42.37968 -0.29086488 + 579200 -33.797891 -33.800486 0.0025946805 136.55572 -0.096333698 + 579300 -33.794873 -33.800494 0.0056210882 295.83286 0.24596408 + 579400 -33.79225 -33.8004 0.0081493404 428.89252 0.65935108 + 579500 -33.794606 -33.800173 0.0055670376 292.98822 0.94900249 + 579600 -33.796758 -33.799984 0.0032252798 169.7436 1.1269797 + 579700 -33.795632 -33.799905 0.0042730912 224.88898 1.2935943 + 579800 -33.788831 -33.799868 0.011037758 580.90737 1.5627497 + 579900 -33.792957 -33.799726 0.0067685802 356.22434 1.5616678 + 580000 -33.794904 -33.799592 0.0046879136 246.72071 1.5163346 + 580100 -33.794392 -33.799495 0.0051026138 268.54601 1.4491403 + 580200 -33.792036 -33.799374 0.0073383707 386.2119 1.3365846 + 580300 -33.788024 -33.799078 0.011054327 581.77937 1.1466703 + 580400 -33.794151 -33.798596 0.0044457001 233.97323 0.73854205 + 580500 -33.795532 -33.79826 0.00272846 143.59642 0.50167352 + 580600 -33.793236 -33.797988 0.0047518245 250.08428 0.31317506 + 580700 -33.790121 -33.797626 0.0075047638 394.96902 0.050426391 + 580800 -33.791294 -33.797214 0.0059200212 311.56543 -0.29113172 + 580900 -33.792309 -33.796906 0.0045974911 241.96186 -0.54872017 + 581000 -33.790751 -33.796767 0.006016418 316.63871 -0.68144974 + 581100 -33.782973 -33.796725 0.013752717 723.79323 -0.66750041 + 581200 -33.791273 -33.796665 0.0053926676 283.81129 -0.88579008 + 581300 -33.792494 -33.796777 0.0042833732 225.43011 -0.85599413 + 581400 -33.791077 -33.797098 0.0060207828 316.86843 -0.66986048 + 581500 -33.788769 -33.797557 0.0087880462 462.50703 -0.33827727 + 581600 -33.793383 -33.797909 0.0045258095 238.18932 -0.0956728 + 581700 -33.795342 -33.798132 0.0027900917 146.84004 0.12034263 + 581800 -33.793465 -33.798401 0.0049359543 259.77487 0.45290235 + 581900 -33.790026 -33.798644 0.0086188164 453.60062 0.94488813 + 582000 -33.792156 -33.798622 0.0064660979 340.30497 1.3313418 + 582100 -33.793227 -33.798414 0.0051871829 272.99681 1.6500026 + 582200 -33.792962 -33.798113 0.005151557 271.12185 1.9349584 + 582300 -33.791369 -33.797745 0.0063762073 335.5741 2.2015763 + 582400 -33.787161 -33.797252 0.010091117 531.0865 2.4879455 + 582500 -33.7902 -33.79664 0.0064401382 338.93873 2.5650129 + 582600 -33.79356 -33.796348 0.0027882484 146.74302 2.5151841 + 582700 -33.792389 -33.796406 0.004016629 211.3916 2.4561775 + 582800 -33.788428 -33.796805 0.0083767527 440.86103 2.3107997 + 582900 -33.789936 -33.797333 0.0073975323 389.32553 1.9533391 + 583000 -33.791993 -33.797798 0.0058057081 305.54924 1.5770016 + 583100 -33.792832 -33.798227 0.005394718 283.91919 1.2189579 + 583200 -33.793158 -33.798616 0.0054576276 287.23007 0.86539953 + 583300 -33.793646 -33.798947 0.0053010005 278.98693 0.51383828 + 583400 -33.794186 -33.799207 0.0050203992 264.21913 0.19210537 + 583500 -33.793727 -33.799419 0.0056923532 299.58347 -0.074956321 + 583600 -33.792604 -33.799593 0.0069890105 367.82539 -0.30574574 + 583700 -33.793716 -33.799692 0.0059753596 314.47784 -0.53061531 + 583800 -33.796357 -33.799763 0.003406584 179.28548 -0.68646989 + 583900 -33.796683 -33.799903 0.0032208914 169.51264 -0.70817724 + 584000 -33.791262 -33.800178 0.0089165453 469.26983 -0.53173881 + 584100 -33.791644 -33.800441 0.0087964583 462.94976 -0.38010685 + 584200 -33.795554 -33.800519 0.0049652583 261.31711 -0.30035825 + 584300 -33.795703 -33.800552 0.0048489421 255.1955 -0.14041145 + 584400 -33.794436 -33.800554 0.006117208 321.9432 0.073901227 + 584500 -33.792348 -33.800467 0.0081185502 427.27205 0.32811685 + 584600 -33.793294 -33.800233 0.0069390521 365.19612 0.52012915 + 584700 -33.796692 -33.799988 0.0032960039 173.46575 0.58662589 + 584800 -33.796553 -33.799843 0.0032893785 173.11705 0.65650682 + 584900 -33.791923 -33.799732 0.0078087897 410.96964 0.77611408 + 585000 -33.791694 -33.79953 0.0078363638 412.42084 0.75622158 + 585100 -33.794266 -33.799308 0.0050421145 265.36199 0.63060079 + 585200 -33.794456 -33.799145 0.0046896773 246.81354 0.50689809 + 585300 -33.793418 -33.799034 0.0056155583 295.54183 0.34620594 + 585400 -33.792752 -33.798945 0.0061932591 325.9457 0.11697522 + 585500 -33.793009 -33.798862 0.0058527696 308.02604 -0.16298351 + 585600 -33.793223 -33.798795 0.0055718181 293.23981 -0.45407611 + 585700 -33.793153 -33.798748 0.0055950698 294.46353 -0.73814092 + 585800 -33.79248 -33.798718 0.0062377125 328.28524 -1.0035708 + 585900 -33.791374 -33.798683 0.0073089244 384.66217 -1.2570638 + 586000 -33.793202 -33.798626 0.0054245526 285.48937 -1.5221646 + 586100 -33.795087 -33.798627 0.0035403633 186.32616 -1.6940068 + 586200 -33.794275 -33.798742 0.0044672851 235.10923 -1.7378942 + 586300 -33.788064 -33.798978 0.010913432 574.36422 -1.6156635 + 586400 -33.79243 -33.799128 0.0066974403 352.48031 -1.6472046 + 586500 -33.794952 -33.799185 0.004233273 222.79338 -1.6135834 + 586600 -33.794088 -33.799262 0.0051736791 272.28612 -1.4629307 + 586700 -33.792265 -33.799321 0.0070559732 371.34958 -1.2308045 + 586800 -33.792698 -33.799279 0.0065811159 346.35826 -0.99935192 + 586900 -33.796407 -33.799189 0.0027821998 146.42469 -0.86977375 + 587000 -33.796756 -33.79918 0.0024241949 127.58321 -0.7244718 + 587100 -33.792766 -33.799274 0.0065079533 342.50778 -0.45345004 + 587200 -33.791704 -33.799375 0.0076714117 403.73956 -0.18371412 + 587300 -33.794222 -33.799411 0.0051890828 273.0968 -0.038927348 + 587400 -33.795344 -33.799466 0.0041217515 216.9241 0.062184499 + 587500 -33.793026 -33.799589 0.0065623552 345.3709 0.1808857 + 587600 -33.787578 -33.799741 0.012162939 640.12463 0.32450779 + 587700 -33.794889 -33.799758 0.0048683403 256.21641 0.16432731 + 587800 -33.795628 -33.799782 0.0041548847 218.66788 0.086061219 + 587900 -33.793861 -33.799858 0.0059967515 315.60368 -0.0027905952 + 588000 -33.791366 -33.799911 0.0085448084 449.70565 -0.15389555 + 588100 -33.795374 -33.799855 0.0044816107 235.86317 -0.46208678 + 588200 -33.797493 -33.799812 0.0023196447 122.08083 -0.66596226 + 588300 -33.79568 -33.799832 0.0041528774 218.56223 -0.79891886 + 588400 -33.792093 -33.799838 0.0077453149 407.62901 -0.97462946 + 588500 -33.793324 -33.799692 0.0063676293 335.12265 -1.254578 + 588600 -33.794892 -33.799464 0.0045726434 240.65415 -1.4780894 + 588700 -33.794421 -33.799237 0.0048165894 253.49281 -1.6048088 + 588800 -33.785721 -33.798907 0.013185963 693.96548 -1.5492352 + 588900 -33.791777 -33.798389 0.0066117476 347.97038 -1.7417006 + 589000 -33.794202 -33.798095 0.0038934306 204.90778 -1.7735656 + 589100 -33.793065 -33.798045 0.0049802271 262.10491 -1.6464504 + 589200 -33.78958 -33.79823 0.0086500631 455.24511 -1.3524771 + 589300 -33.792361 -33.798533 0.0061722661 324.84086 -1.0914795 + 589400 -33.796269 -33.798812 0.0025431497 133.8437 -0.93074638 + 589500 -33.794969 -33.799217 0.0042482359 223.58087 -0.65204128 + 589600 -33.791364 -33.799779 0.0084154281 442.89647 -0.21178054 + 589700 -33.793468 -33.800181 0.0067128857 353.29318 0.15387977 + 589800 -33.796489 -33.800304 0.003815441 200.80326 0.39005347 + 589900 -33.796295 -33.800304 0.0040097214 211.02806 0.62392753 + 590000 -33.795182 -33.800186 0.0050043625 263.37514 0.8605738 + 590100 -33.793204 -33.799884 0.0066799392 351.55924 1.0990001 + 590200 -33.792471 -33.799341 0.0068704182 361.58398 1.2842539 + 590300 -33.794531 -33.798697 0.0041661273 219.25956 1.350764 + 590400 -33.79581 -33.798215 0.0024046971 126.55706 1.3600584 + 590500 -33.79338 -33.79787 0.0044897208 236.29 1.3866979 + 590600 -33.789421 -33.797473 0.0080526813 423.80543 1.3698352 + 590700 -33.791215 -33.797105 0.0058899932 309.98509 1.1936772 + 590800 -33.79313 -33.796921 0.0037906406 199.49803 1.0193892 + 590900 -33.792682 -33.796962 0.004279668 225.23511 0.89488679 + 591000 -33.785938 -33.797204 0.0112663 592.9353 0.84246577 + 591100 -33.790607 -33.79738 0.0067727222 356.44233 0.54615633 + 591200 -33.793436 -33.797464 0.0040284863 212.01564 0.36914714 + 591300 -33.792665 -33.797581 0.0049158582 258.71723 0.30888607 + 591400 -33.790126 -33.797693 0.007567119 398.25072 0.31742947 + 591500 -33.789924 -33.797658 0.0077331524 406.98891 0.31556614 + 591600 -33.794605 -33.79753 0.0029243437 153.9056 0.25601711 + 591700 -33.79483 -33.797535 0.0027047984 142.35113 0.32300258 + 591800 -33.791048 -33.797722 0.0066746431 351.28051 0.54534137 + 591900 -33.78994 -33.798006 0.0080662962 424.52197 0.80726797 + 592000 -33.792922 -33.798244 0.0053227038 280.12916 0.98173443 + 592100 -33.793922 -33.798507 0.0045848488 241.2965 1.1598599 + 592200 -33.792912 -33.798861 0.0059493605 313.10954 1.3725885 + 592300 -33.784118 -33.799301 0.015182602 799.04682 1.7687791 + 592400 -33.792481 -33.799522 0.0070410435 370.56384 1.8232602 + 592500 -33.795584 -33.79955 0.0039657912 208.71605 1.8552894 + 592600 -33.794872 -33.799585 0.004712452 248.01215 1.8978437 + 592700 -33.791304 -33.799597 0.0082930422 436.45542 1.9368799 + 592800 -33.792291 -33.799449 0.0071579946 376.71887 1.8217038 + 592900 -33.796695 -33.799266 0.0025700756 135.26079 1.6237909 + 593000 -33.796445 -33.799199 0.0027537131 144.92546 1.5035718 + 593100 -33.794396 -33.799215 0.0048192866 253.63476 1.3508707 + 593200 -33.792953 -33.799255 0.006301734 331.65464 1.1163145 + 593300 -33.792984 -33.799264 0.0062800761 330.51481 0.8278295 + 593400 -33.794813 -33.799262 0.0044491006 234.1522 0.53546158 + 593500 -33.796809 -33.799326 0.0025172448 132.48035 0.31984392 + 593600 -33.796251 -33.799525 0.0032740796 172.31189 0.21944913 + 593700 -33.79065 -33.79995 0.0092999475 489.44794 0.22492237 + 593800 -33.792946 -33.80038 0.0074341437 391.25235 0.09726693 + 593900 -33.79597 -33.800642 0.0046723596 245.90212 0.016134131 + 594000 -33.795967 -33.800863 0.004895768 257.6599 0.042995249 + 594100 -33.794779 -33.801067 0.0062876588 330.91387 0.13997423 + 594200 -33.7941 -33.8012 0.0070997836 373.65528 0.27082386 + 594300 -33.796539 -33.801226 0.0046870421 246.67485 0.35371335 + 594400 -33.797847 -33.801224 0.0033770679 177.73207 0.44483479 + 594500 -33.795953 -33.801254 0.0053010738 278.99079 0.61003582 + 594600 -33.792016 -33.801261 0.0092454467 486.57962 0.85452463 + 594700 -33.795676 -33.801163 0.0054871841 288.78561 0.93341036 + 594800 -33.798266 -33.801089 0.0028234249 148.59433 0.96083237 + 594900 -33.797352 -33.801098 0.0037461281 197.15538 1.010651 + 595000 -33.795939 -33.801161 0.005221894 274.82362 1.0310017 + 595100 -33.794957 -33.801211 0.0062541885 329.15236 0.9924849 + 595200 -33.794906 -33.801194 0.0062877702 330.91974 0.88211458 + 595300 -33.796478 -33.801104 0.0046268567 243.50734 0.7045262 + 595400 -33.797699 -33.801004 0.0033049633 173.93727 0.51908897 + 595500 -33.795912 -33.800918 0.0050059343 263.45786 0.35618085 + 595600 -33.790817 -33.800725 0.0099085356 521.47739 0.13426856 + 595700 -33.794635 -33.800359 0.0057247243 301.28714 -0.29250544 + 595800 -33.796487 -33.800044 0.0035568277 187.19267 -0.58923752 + 595900 -33.795559 -33.799781 0.0042215075 222.17417 -0.81151438 + 596000 -33.794114 -33.799523 0.0054086734 284.65365 -1.0389469 + 596100 -33.792894 -33.799245 0.0063510221 334.24863 -1.2706324 + 596200 -33.792832 -33.798946 0.0061139058 321.76941 -1.4974624 + 596300 -33.794725 -33.798689 0.0039640189 208.62278 -1.6996418 + 596400 -33.79565 -33.798565 0.0029143553 153.37992 -1.7983992 + 596500 -33.792792 -33.798562 0.0057698528 303.66221 -1.7636192 + 596600 -33.789345 -33.798563 0.0092184328 485.15789 -1.6647465 + 596700 -33.793166 -33.798457 0.0052908416 278.45228 -1.6692536 + 596800 -33.794505 -33.798365 0.0038593108 203.11209 -1.6057138 + 596900 -33.793605 -33.798313 0.0047075702 247.75522 -1.4631531 + 597000 -33.792632 -33.79827 0.0056381468 296.73063 -1.2776199 + 597100 -33.792003 -33.798197 0.0061939225 325.98062 -1.075551 + 597200 -33.792276 -33.798081 0.0058044219 305.48155 -0.89032487 + 597300 -33.793836 -33.797965 0.004128798 217.29496 -0.7593982 + 597400 -33.79429 -33.797914 0.0036239704 190.72633 -0.65363023 + 597500 -33.790972 -33.797933 0.0069604196 366.32068 -0.4946024 + 597600 -33.788692 -33.797889 0.0091968504 484.02203 -0.37149444 + 597700 -33.793723 -33.79774 0.0040176133 211.4434 -0.44898089 + 597800 -33.794492 -33.797668 0.0031759389 167.14683 -0.49268263 + 597900 -33.793169 -33.797676 0.0045071812 237.20893 -0.54843401 + 598000 -33.791444 -33.797719 0.0062744957 330.22111 -0.66088229 + 598100 -33.790975 -33.797722 0.0067466475 355.07004 -0.85171992 + 598200 -33.793501 -33.797672 0.0041718955 219.56314 -1.1096524 + 598300 -33.79569 -33.79768 0.001989999 104.73187 -1.3064928 + 598400 -33.794584 -33.797819 0.0032344571 170.22659 -1.4159789 + 598500 -33.789739 -33.798118 0.008379491 441.00514 -1.5161129 + 598600 -33.791737 -33.798322 0.006584884 346.55657 -1.7561464 + 598700 -33.794227 -33.798393 0.0041657479 219.23959 -1.934444 + 598800 -33.794226 -33.798454 0.0042283432 222.53393 -2.003618 + 598900 -33.787303 -33.798522 0.011219145 590.45359 -1.8924998 + 599000 -33.790257 -33.798397 0.0081403085 428.41718 -1.9287835 + 599100 -33.793797 -33.798224 0.0044278567 233.03415 -1.9389537 + 599200 -33.793272 -33.798139 0.0048671 256.15113 -1.8173915 + 599300 -33.790892 -33.798129 0.0072377043 380.91392 -1.586048 + 599400 -33.790145 -33.798122 0.0079768717 419.81564 -1.3162821 + 599500 -33.794994 -33.798111 0.0031164474 164.01584 -1.1847514 + 599600 -33.795415 -33.79821 0.002795361 147.11736 -1.0194314 + 599700 -33.791922 -33.798462 0.0065406128 344.22662 -0.73358535 + 599800 -33.790377 -33.798751 0.0083740617 440.7194 -0.41649169 + 599900 -33.792962 -33.79888 0.0059179303 311.4554 -0.22675443 + 600000 -33.793917 -33.798923 0.0050063876 263.48172 -0.068587191 + 600100 -33.793516 -33.798941 0.0054251383 285.52019 0.076537286 + 600200 -33.790314 -33.798926 0.0086126245 453.27475 0.24887367 + 600300 -33.787963 -33.798768 0.010804962 568.65553 0.38965799 + 600400 -33.79477 -33.79856 0.0037902882 199.47949 0.29608898 + 600500 -33.794917 -33.798511 0.0035945947 189.18031 0.29056213 + 600600 -33.791729 -33.798631 0.0069023602 363.26506 0.31823793 + 600700 -33.790395 -33.798863 0.0084681714 445.67231 0.27544853 + 600800 -33.795067 -33.799088 0.0040214187 211.64368 0.11278543 + 600900 -33.79696 -33.799337 0.0023762751 125.06124 0.029487378 + 601000 -33.792924 -33.799742 0.0068179961 358.82505 0.069939911 + 601100 -33.788677 -33.800408 0.011731073 617.39591 0.086713115 + 601200 -33.796315 -33.800657 0.0043422554 228.52903 -0.10225893 + 601300 -33.797335 -33.800754 0.0034180589 179.88939 -0.12817061 + 601400 -33.795045 -33.800796 0.0057507345 302.65603 -0.057216027 + 601500 -33.791733 -33.800669 0.0089357276 470.27938 0.078911933 + 601600 -33.795386 -33.800318 0.0049314975 259.54032 0.10295095 + 601700 -33.797667 -33.800028 0.0023610645 124.26072 0.15323404 + 601800 -33.795421 -33.799856 0.004435377 233.42994 0.32937588 + 601900 -33.790223 -33.799633 0.0094104087 495.26142 0.70732211 + 602000 -33.794279 -33.799394 0.0051149485 269.19518 0.90743185 + 602100 -33.79581 -33.799309 0.0034988385 184.14075 1.0952561 + 602200 -33.79392 -33.799398 0.0054781398 288.30961 1.3459525 + 602300 -33.788736 -33.799617 0.010881705 572.69441 1.7282679 + 602400 -33.794786 -33.799755 0.0049691251 261.52062 1.852341 + 602500 -33.79625 -33.799866 0.0036158975 190.30146 1.9434355 + 602600 -33.794648 -33.800047 0.0053988502 284.13667 2.0449211 + 602700 -33.792289 -33.800232 0.0079430148 418.03378 2.1127836 + 602800 -33.794707 -33.800291 0.0055843928 293.90161 2.0283771 + 602900 -33.797939 -33.80028 0.0023403489 123.17048 1.896394 + 603000 -33.797401 -33.800313 0.0029121006 153.26126 1.8053782 + 603100 -33.792675 -33.800373 0.007697463 405.11061 1.6958965 + 603200 -33.793578 -33.800284 0.0067052114 352.88929 1.4018996 + 603300 -33.795699 -33.800082 0.0043833273 230.6906 1.1085897 + 603400 -33.795833 -33.79988 0.0040471963 213.00033 0.88729633 + 603500 -33.791337 -33.799645 0.0083080754 437.2466 0.73219353 + 603600 -33.790201 -33.799214 0.0090133041 474.36215 0.45091115 + 603700 -33.795179 -33.798824 0.0036452672 191.84716 0.15346981 + 603800 -33.794993 -33.798635 0.0036427494 191.71465 0.054387563 + 603900 -33.792973 -33.798584 0.0056107519 295.28887 0.043303681 + 604000 -33.790908 -33.7986 0.0076914245 404.79281 0.087278571 + 604100 -33.793362 -33.798602 0.0052394159 275.74579 0.090490826 + 604200 -33.796552 -33.798644 0.0020915232 110.075 0.097101421 + 604300 -33.795994 -33.798816 0.0028224044 148.54063 0.20441449 + 604400 -33.792894 -33.799165 0.0062711189 330.04339 0.43424743 + 604500 -33.792888 -33.799517 0.0066296711 348.91368 0.64580154 + 604600 -33.794608 -33.799754 0.0051463023 270.8453 0.80463116 + 604700 -33.795814 -33.799922 0.0041082221 216.21207 0.93127255 + 604800 -33.794716 -33.800094 0.0053786466 283.07337 1.0731866 + 604900 -33.789601 -33.800276 0.010675392 561.83635 1.2933112 + 605000 -33.794721 -33.800313 0.0055921918 294.31206 1.273444 + 605100 -33.796994 -33.800331 0.0033364658 175.59522 1.2405306 + 605200 -33.795812 -33.800438 0.0046260787 243.4664 1.2212144 + 605300 -33.793823 -33.800618 0.0067946408 357.59588 1.1506771 + 605400 -33.794219 -33.800771 0.0065519894 344.82536 0.97684146 + 605500 -33.795689 -33.800852 0.0051623229 271.68845 0.75834725 + 605600 -33.796049 -33.800885 0.0048356521 254.49606 0.54603858 + 605700 -33.792455 -33.800854 0.0083999557 442.08218 0.36555708 + 605800 -33.79199 -33.800597 0.0086064645 452.95055 0.03758001 + 605900 -33.796544 -33.80023 0.0036867783 194.03186 -0.31407795 + 606000 -33.796802 -33.799934 0.0031320103 164.83491 -0.50568148 + 606100 -33.793057 -33.799613 0.0065556632 345.01871 -0.62991467 + 606200 -33.791079 -33.79912 0.0080403681 423.1574 -0.8267277 + 606300 -33.793487 -33.798618 0.0051308392 270.03149 -1.0525391 + 606400 -33.793964 -33.798276 0.004311872 226.92998 -1.1655231 + 606500 -33.792612 -33.798085 0.0054728172 288.02949 -1.1860523 + 606600 -33.791894 -33.79803 0.0061356154 322.91197 -1.1646065 + 606700 -33.792214 -33.798096 0.0058821411 309.57184 -1.1143513 + 606800 -33.792916 -33.798254 0.0053385572 280.9635 -1.0329994 + 606900 -33.7935 -33.798476 0.0049751497 261.83769 -0.92531886 + 607000 -33.793342 -33.798728 0.0053851432 283.41528 -0.78866638 + 607100 -33.791985 -33.798968 0.0069830071 367.50944 -0.61188607 + 607200 -33.792478 -33.7991 0.006621936 348.50658 -0.47124308 + 607300 -33.795412 -33.799093 0.0036809216 193.72362 -0.42243717 + 607400 -33.796069 -33.799053 0.0029841194 157.05154 -0.37497254 + 607500 -33.791395 -33.798974 0.0075791273 398.88271 -0.24938323 + 607600 -33.789871 -33.798628 0.0087567848 460.86177 -0.21679361 + 607700 -33.793419 -33.798119 0.0047002238 247.36859 -0.32277697 + 607800 -33.793715 -33.797639 0.0039243842 206.53684 -0.39846387 + 607900 -33.791374 -33.797129 0.0057556368 302.91403 -0.47044766 + 608000 -33.788189 -33.796453 0.0082640095 434.92745 -0.59981921 + 608100 -33.791665 -33.795743 0.0040776262 214.60183 -0.88718012 + 608200 -33.794269 -33.795502 0.0012336937 64.928198 -1.0604254 + 608300 -33.792669 -33.795634 0.0029646182 156.02521 -1.1406911 + 608400 -33.788363 -33.796138 0.0077749502 409.18869 -1.2243647 + 608500 -33.789136 -33.796717 0.0075811879 398.99116 -1.4268149 + 608600 -33.792989 -33.79709 0.0041011767 215.84127 -1.6300032 + 608700 -33.793423 -33.79739 0.0039666792 208.76279 -1.7086184 + 608800 -33.789479 -33.797713 0.0082345145 433.37515 -1.666077 + 608900 -33.784701 -33.79791 0.013208847 695.16984 -1.5835496 + 609000 -33.793665 -33.7978 0.0041357131 217.65889 -1.7413814 + 609100 -33.793425 -33.797721 0.0042965067 226.12131 -1.6727398 + 609200 -33.790581 -33.797704 0.0071234519 374.90092 -1.4837562 + 609300 -33.789729 -33.797702 0.0079729357 419.60849 -1.254575 + 609400 -33.79401 -33.797745 0.0037349423 196.56668 -1.1228943 + 609500 -33.795339 -33.79795 0.0026109346 137.41116 -0.97012366 + 609600 -33.790942 -33.798449 0.0075064106 395.0557 -0.65447941 + 609700 -33.788256 -33.799309 0.011053899 581.75684 -0.21772222 + 609800 -33.794184 -33.799886 0.0057014444 300.06193 -0.037585687 + 609900 -33.795919 -33.800292 0.0043729699 230.14551 0.12627629 + 610000 -33.795406 -33.800667 0.0052611151 276.8878 0.28468138 + 610100 -33.791993 -33.801019 0.0090259003 475.02508 0.47316348 + 610200 -33.793712 -33.801192 0.0074797879 393.65456 0.52474739 + 610300 -33.798132 -33.801174 0.0030419827 160.09684 0.45165736 + 610400 -33.797523 -33.801145 0.0036218338 190.61388 0.42240245 + 610500 -33.794067 -33.80108 0.0070129627 369.08597 0.37956511 + 610600 -33.793788 -33.800879 0.0070910442 373.19533 0.2041543 + 610700 -33.795195 -33.800599 0.0054040353 284.40956 -0.019598149 + 610800 -33.795361 -33.800325 0.0049646674 261.28602 -0.21986364 + 610900 -33.794197 -33.80008 0.0058826759 309.59998 -0.40478549 + 611000 -33.78809 -33.799816 0.011726147 617.13667 -0.52609571 + 611100 -33.790966 -33.799386 0.0084202546 443.15049 -0.8612412 + 611200 -33.795496 -33.799129 0.0036333713 191.22109 -1.089885 + 611300 -33.794608 -33.799079 0.0044709184 235.30045 -1.1271788 + 611400 -33.79083 -33.79918 0.008350072 439.45684 -1.0389924 + 611500 -33.792226 -33.799306 0.0070799624 372.61211 -0.98043957 + 611600 -33.796868 -33.799404 0.002535954 133.465 -0.95838768 + 611700 -33.796453 -33.799598 0.003145494 165.54455 -0.79675316 + 611800 -33.794177 -33.799923 0.0057460155 302.40767 -0.49694052 + 611900 -33.792775 -33.80025 0.007474413 393.37169 -0.10800864 + 612000 -33.795259 -33.800417 0.0051587851 271.50226 0.2130456 + 612100 -33.798428 -33.800477 0.0020487556 107.82418 0.4213258 + 612200 -33.798983 -33.800565 0.0015815319 83.234612 0.59434422 + 612300 -33.79412 -33.800776 0.0066557681 350.28714 0.92745512 + 612400 -33.793097 -33.800968 0.0078707734 414.23178 1.2811834 + 612500 -33.79642 -33.800973 0.0045526943 239.60424 1.4685871 + 612600 -33.797434 -33.800921 0.0034869518 183.51516 1.5973547 + 612700 -33.794614 -33.800859 0.0062449037 328.66371 1.7467454 + 612800 -33.790124 -33.800635 0.010511603 553.21631 1.8916767 + 612900 -33.795239 -33.800241 0.0050015963 263.22955 1.7818868 + 613000 -33.795783 -33.7999 0.0041165415 216.64991 1.7075358 + 613100 -33.794279 -33.79956 0.0052815999 277.96589 1.6099151 + 613200 -33.791794 -33.799135 0.0073405028 386.32412 1.4517846 + 613300 -33.792091 -33.798588 0.0064968514 341.9235 1.1826917 + 613400 -33.795642 -33.798143 0.0025014784 131.65057 0.89109165 + 613500 -33.795945 -33.797965 0.0020200504 106.31345 0.73067737 + 613600 -33.792337 -33.797974 0.0056363775 296.63752 0.62224048 + 613700 -33.790919 -33.798064 0.0071457401 376.07393 0.42725233 + 613800 -33.79273 -33.798161 0.0054310016 285.82877 0.21588408 + 613900 -33.794382 -33.798319 0.0039366752 207.1837 0.088193976 + 614000 -33.794152 -33.798611 0.0044592098 234.68424 0.068393598 + 614100 -33.788991 -33.799114 0.010123504 532.791 0.21711365 + 614200 -33.792436 -33.799619 0.007182643 378.01609 0.25820817 + 614300 -33.79604 -33.799932 0.0038918584 204.82503 0.29728755 + 614400 -33.79539 -33.800255 0.0048657906 256.08222 0.44720178 + 614500 -33.793443 -33.800597 0.0071534611 376.48028 0.66931852 + 614600 -33.794462 -33.800802 0.0063402601 333.68223 0.85187034 + 614700 -33.798632 -33.800835 0.0022031587 115.95028 0.9057158 + 614800 -33.79823 -33.800854 0.002623075 138.0501 0.99953576 + 614900 -33.794578 -33.800828 0.0062508263 328.97541 1.1588167 + 615000 -33.793603 -33.800576 0.0069728055 366.97254 1.2524317 + 615100 -33.795143 -33.800107 0.0049633311 261.21569 1.2479335 + 615200 -33.795766 -33.799574 0.0038082152 200.42297 1.2126375 + 615300 -33.791533 -33.798918 0.0073849414 388.66288 1.2135297 + 615400 -33.788934 -33.797816 0.0088823242 467.4688 1.0852004 + 615500 -33.79293 -33.796798 0.0038683667 203.58869 0.81609165 + 615600 -33.793325 -33.796192 0.0028668299 150.8787 0.63149679 + 615700 -33.787825 -33.7958 0.0079753861 419.73746 0.48005911 + 615800 -33.787465 -33.795507 0.0080415567 423.21996 0.11054914 + 615900 -33.790629 -33.795468 0.0048391377 254.6795 -0.25850338 + 616000 -33.79148 -33.795728 0.004247885 223.5624 -0.50283078 + 616100 -33.789557 -33.79629 0.006733031 354.35342 -0.65915369 + 616200 -33.785534 -33.797129 0.01159531 610.25081 -0.78830699 + 616300 -33.79323 -33.797757 0.0045267827 238.24053 -1.087291 + 616400 -33.794154 -33.798201 0.0040469682 212.98833 -1.1615474 + 616500 -33.792323 -33.798697 0.0063743307 335.47534 -1.1338694 + 616600 -33.790492 -33.799176 0.0086846609 457.06596 -1.0619044 + 616700 -33.795799 -33.799433 0.0036340398 191.25627 -1.102845 + 616800 -33.797016 -33.799585 0.0025686747 135.18706 -1.056428 + 616900 -33.794711 -33.7998 0.0050890563 267.83249 -0.89639321 + 617000 -33.792314 -33.800045 0.0077303962 406.84386 -0.66660814 + 617100 -33.793997 -33.800169 0.0061712866 324.78931 -0.50975454 + 617200 -33.795265 -33.800207 0.0049419336 260.08956 -0.37191384 + 617300 -33.79501 -33.800228 0.0052184268 274.64115 -0.22511448 + 617400 -33.789191 -33.800221 0.011030659 580.53376 0.028766736 + 617500 -33.790799 -33.800011 0.009211671 484.80203 0.14406889 + 617600 -33.795853 -33.799774 0.0039207355 206.34481 0.10376576 + 617700 -33.795339 -33.799622 0.0042825582 225.38722 0.11472745 + 617800 -33.791755 -33.799489 0.0077334124 407.0026 0.12821108 + 617900 -33.791313 -33.799257 0.0079443048 418.10167 0.0078130287 + 618000 -33.796617 -33.799036 0.0024191804 127.3193 -0.23112073 + 618100 -33.796614 -33.79897 0.0023568062 124.03661 -0.35817637 + 618200 -33.794375 -33.798998 0.0046233423 243.32238 -0.51008643 + 618300 -33.792095 -33.799022 0.006927582 364.59246 -0.75221262 + 618400 -33.792674 -33.798929 0.0062547762 329.18329 -1.0847273 + 618500 -33.795087 -33.798767 0.0036805039 193.70164 -1.4074745 + 618600 -33.796985 -33.798684 0.001699318 89.433591 -1.6232944 + 618700 -33.796463 -33.798748 0.0022858787 120.30376 -1.7257784 + 618800 -33.792001 -33.799006 0.0070048011 368.65644 -1.7609257 + 618900 -33.792019 -33.79929 0.0072716954 382.70284 -1.8690012 + 619000 -33.795001 -33.799476 0.0044748237 235.50598 -1.9745303 + 619100 -33.796113 -33.799646 0.0035330229 185.93984 -1.982057 + 619200 -33.79278 -33.799877 0.0070962565 373.46965 -1.8353493 + 619300 -33.788919 -33.800101 0.011182262 588.51246 -1.5759868 + 619400 -33.795173 -33.800102 0.0049296461 259.44288 -1.5162142 + 619500 -33.795657 -33.800059 0.004401809 231.66328 -1.349806 + 619600 -33.794036 -33.800002 0.0059655747 313.96287 -1.1013697 + 619700 -33.79143 -33.799858 0.0084274597 443.52968 -0.77087004 + 619800 -33.793816 -33.799572 0.0057558659 302.92609 -0.52186758 + 619900 -33.796796 -33.799351 0.0025543234 134.43176 -0.38278215 + 620000 -33.795759 -33.799249 0.0034902629 183.68942 -0.20190429 + 620100 -33.791317 -33.799181 0.0078642391 413.88789 0.091723256 + 620200 -33.792105 -33.799028 0.006923318 364.36805 0.2864922 + 620300 -33.79412 -33.798858 0.0047376602 249.33883 0.39400896 + 620400 -33.794148 -33.798753 0.0046048274 242.34796 0.48653024 + 620500 -33.787017 -33.798701 0.011684519 614.94583 0.68953157 + 620600 -33.789367 -33.79852 0.0091537596 481.7542 0.68717427 + 620700 -33.793905 -33.798377 0.004472311 235.37374 0.59779895 + 620800 -33.793668 -33.798403 0.0047344633 249.17058 0.57362755 + 620900 -33.791055 -33.798606 0.0075512544 397.41578 0.568923 + 621000 -33.790651 -33.798915 0.0082635518 434.90336 0.49136143 + 621100 -33.796055 -33.799182 0.0031261548 164.52674 0.31467218 + 621200 -33.79618 -33.799502 0.0033224818 174.85925 0.26671666 + 621300 -33.793151 -33.800004 0.0068534844 360.69277 0.28084663 + 621400 -33.792504 -33.800558 0.008054322 423.89178 0.24838147 + 621500 -33.794974 -33.800905 0.0059304086 312.11212 0.17255236 + 621600 -33.795579 -33.801097 0.0055180047 290.40766 0.15492773 + 621700 -33.795647 -33.801173 0.0055257315 290.81432 0.17371148 + 621800 -33.795205 -33.801136 0.0059305878 312.12155 0.23062737 + 621900 -33.793821 -33.800967 0.0071452122 376.04614 0.33737368 + 622000 -33.794187 -33.800641 0.0064532911 339.63095 0.44193204 + 622100 -33.796456 -33.800288 0.0038324372 201.69775 0.51511878 + 622200 -33.796637 -33.800034 0.0033971656 178.78979 0.63164625 + 622300 -33.791603 -33.799803 0.0081991005 431.51135 0.90452497 + 622400 -33.791031 -33.799422 0.0083912484 441.62392 1.1562911 + 622500 -33.794386 -33.799045 0.0046585618 245.17595 1.2782287 + 622600 -33.794338 -33.79877 0.0044320938 233.25715 1.4221124 + 622700 -33.79299 -33.798537 0.0055466866 291.91717 1.5705119 + 622800 -33.792055 -33.798282 0.006226975 327.72014 1.6837186 + 622900 -33.792218 -33.797985 0.005766721 303.49738 1.7307227 + 623000 -33.792394 -33.797671 0.0052771916 277.73389 1.723945 + 623100 -33.792143 -33.797356 0.0052126861 274.33902 1.674484 + 623200 -33.791655 -33.797053 0.0053975185 284.06658 1.5781613 + 623300 -33.790581 -33.796762 0.0061817623 325.34064 1.4386 + 623400 -33.789498 -33.796477 0.0069790699 367.30222 1.2474082 + 623500 -33.790527 -33.796228 0.0057015859 300.06938 0.98830113 + 623600 -33.792627 -33.796138 0.0035113413 184.79876 0.74232967 + 623700 -33.79235 -33.796288 0.003938665 207.28842 0.58361419 + 623800 -33.787078 -33.796722 0.0096446423 507.58892 0.50198835 + 623900 -33.789561 -33.797205 0.0076439607 402.29483 0.26167343 + 624000 -33.793172 -33.797519 0.004347008 228.77915 0.093621466 + 624100 -33.792724 -33.79786 0.0051358167 270.29345 0.072288967 + 624200 -33.791531 -33.798224 0.0066932863 352.26169 0.12491709 + 624300 -33.79231 -33.798484 0.006173138 324.88675 0.19426709 + 624400 -33.79586 -33.798598 0.002737542 144.0744 0.22904533 + 624500 -33.796235 -33.798706 0.0024715126 130.0735 0.33722326 + 624600 -33.792012 -33.798882 0.0068698036 361.55164 0.61093067 + 624700 -33.790989 -33.798953 0.007964059 419.14132 0.91359732 + 624800 -33.793714 -33.798825 0.0051101946 268.94498 1.1071535 + 624900 -33.794583 -33.798672 0.0040884087 215.1693 1.2794815 + 625000 -33.791508 -33.798552 0.0070447043 370.7565 1.50691 + 625100 -33.786287 -33.798331 0.012043292 633.82774 1.8055872 + 625200 -33.793094 -33.798078 0.0049845021 262.3299 1.783124 + 625300 -33.793518 -33.798022 0.0045043623 237.06057 1.7935564 + 625400 -33.7919 -33.798172 0.0062716304 330.07032 1.768004 + 625500 -33.790232 -33.798479 0.0082468769 434.02578 1.6511602 + 625600 -33.794639 -33.798785 0.0041467641 218.2405 1.364404 + 625700 -33.796371 -33.799062 0.0026907774 141.61321 1.1498914 + 625800 -33.79431 -33.799453 0.0051426237 270.6517 0.9481936 + 625900 -33.790968 -33.799922 0.0089538922 471.23536 0.62807981 + 626000 -33.793489 -33.800149 0.0066601894 350.51983 0.16398267 + 626100 -33.794818 -33.80015 0.0053319768 280.61718 -0.22542548 + 626200 -33.794971 -33.800027 0.0050561356 266.0999 -0.55731434 + 626300 -33.793295 -33.799808 0.0065132181 342.78486 -0.84292963 + 626400 -33.788275 -33.799398 0.011122528 585.36875 -1.1080993 + 626500 -33.793947 -33.79885 0.0049034979 258.06672 -1.5297237 + 626600 -33.795753 -33.79859 0.0028374208 149.33093 -1.7010599 + 626700 -33.793914 -33.798597 0.0046824308 246.43216 -1.7088555 + 626800 -33.791223 -33.798852 0.007628875 401.50088 -1.6135854 + 626900 -33.792471 -33.799235 0.0067638525 355.97552 -1.5206866 + 627000 -33.793999 -33.799645 0.005645216 297.10269 -1.389623 + 627100 -33.794486 -33.800067 0.0055804167 293.69235 -1.2045055 + 627200 -33.79463 -33.800469 0.0058395759 307.33167 -0.98722833 + 627300 -33.795917 -33.800784 0.004866793 256.13497 -0.78647849 + 627400 -33.798539 -33.800967 0.0024277238 127.76894 -0.66626612 + 627500 -33.797901 -33.801111 0.0032108589 168.98464 -0.51637125 + 627600 -33.79342 -33.801234 0.0078140744 411.24777 -0.25368309 + 627700 -33.793764 -33.801134 0.0073703582 387.89538 -0.073621744 + 627800 -33.796869 -33.800855 0.0039862888 209.79483 -0.015836516 + 627900 -33.797172 -33.800567 0.0033943045 178.63922 0.037989356 + 628000 -33.789064 -33.80013 0.011065945 582.39083 0.22261545 + 628100 -33.792333 -33.79938 0.0070464927 370.85063 0.14253548 + 628200 -33.79537 -33.798819 0.0034491648 181.52647 0.036620315 + 628300 -33.794475 -33.798467 0.0039923597 210.11433 -0.022841473 + 628400 -33.789666 -33.798186 0.0085196992 448.38417 -0.069132835 + 628500 -33.790461 -33.797906 0.0074456162 391.85614 -0.27430809 + 628600 -33.792192 -33.797719 0.0055262912 290.84378 -0.48183727 + 628700 -33.792491 -33.797652 0.0051604924 271.59211 -0.6421999 + 628800 -33.791667 -33.797682 0.0060149545 316.56169 -0.76849919 + 628900 -33.788947 -33.797747 0.0088002115 463.14728 -0.85735123 + 629000 -33.791311 -33.797734 0.0064228786 338.03037 -1.0304554 + 629100 -33.794499 -33.797713 0.0032146357 169.18341 -1.1563357 + 629200 -33.793879 -33.797803 0.0039233487 206.48235 -1.1588204 + 629300 -33.788559 -33.798015 0.0094555232 497.63575 -1.0221438 + 629400 -33.790402 -33.798165 0.0077633728 408.57939 -0.98423412 + 629500 -33.792735 -33.798234 0.00549912 289.41378 -0.94082249 + 629600 -33.793104 -33.798345 0.005240724 275.81463 -0.83443999 + 629700 -33.792513 -33.79854 0.0060274089 317.21716 -0.68081979 + 629800 -33.791265 -33.798811 0.0075450362 397.08853 -0.48263634 + 629900 -33.793238 -33.799083 0.0058456534 307.65152 -0.33892515 + 630000 -33.795987 -33.799324 0.0033374465 175.64683 -0.25715921 + 630100 -33.795637 -33.799619 0.0039821553 209.57728 -0.14370983 + 630200 -33.789531 -33.80003 0.010498538 552.52867 0.097047905 + 630300 -33.792611 -33.800279 0.0076687279 403.59831 0.15272245 + 630400 -33.795712 -33.800274 0.0045620515 240.0967 0.14488333 + 630500 -33.795086 -33.800177 0.0050909187 267.93051 0.1713996 + 630600 -33.793185 -33.799952 0.0067668881 356.13529 0.18508468 + 630700 -33.792242 -33.799529 0.007287001 383.50836 0.14088726 + 630800 -33.795169 -33.799027 0.0038579658 203.0413 -0.00047949932 + 630900 -33.796452 -33.798697 0.0022442437 118.11254 -0.10447384 + 631000 -33.793773 -33.798501 0.0047284682 248.85507 -0.14901062 + 631100 -33.790352 -33.798298 0.0079460039 418.1911 -0.24122802 + 631200 -33.792346 -33.798096 0.0057498529 302.60963 -0.44054612 + 631300 -33.794017 -33.798009 0.0039920257 210.09675 -0.58842648 + 631400 -33.793206 -33.798086 0.0048803541 256.84868 -0.64995297 + 631500 -33.786361 -33.798334 0.011973278 630.14293 -0.57785698 + 631600 -33.792391 -33.798527 0.0061350731 322.88342 -0.72697958 + 631700 -33.794563 -33.798687 0.0041234842 217.01529 -0.74965659 + 631800 -33.793571 -33.798937 0.0053665621 282.43738 -0.65520961 + 631900 -33.791326 -33.799241 0.0079150172 416.56029 -0.4678599 + 632000 -33.793393 -33.799444 0.0060509518 318.4562 -0.31605849 + 632100 -33.796934 -33.79952 0.002586152 136.10687 -0.22405795 + 632200 -33.796168 -33.799616 0.0034481789 181.47458 -0.040967666 + 632300 -33.791837 -33.799718 0.0078805966 414.74877 0.30619091 + 632400 -33.792503 -33.799622 0.0071189662 374.66484 0.61482723 + 632500 -33.794515 -33.799368 0.0048530921 255.41391 0.84364363 + 632600 -33.794484 -33.799079 0.0045949002 241.8255 1.0681601 + 632700 -33.792563 -33.798758 0.0061947401 326.02365 1.3201801 + 632800 -33.782469 -33.798277 0.015808284 831.97591 1.7560481 + 632900 -33.789843 -33.797415 0.0075726077 398.53959 1.852175 + 633000 -33.792974 -33.796922 0.0039483916 207.80033 1.8829276 + 633100 -33.791934 -33.796727 0.004792829 252.24232 1.9186815 + 633200 -33.788202 -33.796765 0.008563397 450.68394 1.9318541 + 633300 -33.79011 -33.796931 0.006820394 358.95125 1.7602906 + 633400 -33.793992 -33.797145 0.0031532748 165.95404 1.5411407 + 633500 -33.793508 -33.797504 0.0039964793 210.33114 1.3889458 + 633600 -33.791809 -33.798019 0.0062104477 326.85032 1.1942109 + 633700 -33.791825 -33.798489 0.0066640846 350.72483 0.91692085 + 633800 -33.793376 -33.798761 0.0053853127 283.4242 0.61789733 + 633900 -33.794894 -33.798861 0.003966962 208.77767 0.35816895 + 634000 -33.796446 -33.798886 0.0024398825 128.40884 0.15562501 + 634100 -33.795583 -33.79893 0.003346879 176.14326 0.04632325 + 634200 -33.790996 -33.798983 0.0079873421 420.36669 -0.0043818073 + 634300 -33.791751 -33.798898 0.0071463499 376.10602 -0.15114767 + 634400 -33.79492 -33.798771 0.0038512616 202.68847 -0.27842364 + 634500 -33.795304 -33.798776 0.0034728686 182.77398 -0.28888269 + 634600 -33.787563 -33.798976 0.011413454 600.67993 -0.070214114 + 634700 -33.791208 -33.799189 0.0079816487 420.06705 -0.012687949 + 634800 -33.794932 -33.799335 0.0044026325 231.70662 0.028224399 + 634900 -33.794754 -33.799547 0.0047933891 252.27179 0.15592795 + 635000 -33.792127 -33.799829 0.0077024364 405.37236 0.36348599 + 635100 -33.790607 -33.80005 0.0094435185 497.00395 0.58011185 + 635200 -33.796634 -33.80008 0.0034451848 181.317 0.59750616 + 635300 -33.797004 -33.800095 0.0030914743 162.70153 0.66896639 + 635400 -33.793785 -33.800125 0.0063402898 333.6838 0.7981048 + 635500 -33.792003 -33.800042 0.0080387653 423.07305 0.88891674 + 635600 -33.794237 -33.799818 0.0055816122 293.75527 0.86445669 + 635700 -33.794764 -33.79958 0.0048155179 253.43641 0.83798554 + 635800 -33.794078 -33.799376 0.0052977687 278.81684 0.80401498 + 635900 -33.792989 -33.799225 0.0062353331 328.16002 0.74268354 + 636000 -33.792448 -33.799144 0.0066951736 352.36101 0.6397529 + 636100 -33.7939 -33.799162 0.0052619783 276.93323 0.48478816 + 636200 -33.795233 -33.799303 0.0040700455 214.20287 0.34049976 + 636300 -33.79425 -33.799589 0.0053392747 281.00126 0.24069741 + 636400 -33.791185 -33.799997 0.008812349 463.78607 0.15364381 + 636500 -33.794474 -33.800313 0.0058388316 307.2925 -0.066794409 + 636600 -33.797507 -33.800468 0.0029615574 155.86412 -0.22597361 + 636700 -33.796549 -33.800603 0.0040543716 213.37796 -0.28409043 + 636800 -33.794158 -33.800697 0.0065388468 344.13368 -0.3200062 + 636900 -33.794278 -33.800628 0.0063496621 334.17705 -0.40057494 + 637000 -33.795166 -33.800409 0.0052424398 275.90493 -0.4780123 + 637100 -33.795176 -33.800125 0.0049492016 260.47207 -0.51681802 + 637200 -33.790769 -33.799769 0.0090002981 473.67766 -0.44934746 + 637300 -33.789581 -33.799184 0.0096028083 505.38724 -0.43271402 + 637400 -33.79512 -33.798745 0.0036245575 190.75723 -0.53212253 + 637500 -33.794827 -33.79858 0.003753061 197.52025 -0.49787438 + 637600 -33.792185 -33.798627 0.0064414785 339.00927 -0.39402665 + 637700 -33.791286 -33.798808 0.0075218296 395.86718 -0.30503282 + 637800 -33.793363 -33.799008 0.0056442865 297.05377 -0.28221032 + 637900 -33.793833 -33.799207 0.0053743807 282.84886 -0.24774046 + 638000 -33.79353 -33.799387 0.0058569774 308.2475 -0.21592811 + 638100 -33.793573 -33.79949 0.0059174456 311.42988 -0.21511708 + 638200 -33.79447 -33.799479 0.0050092367 263.63166 -0.25991552 + 638300 -33.795479 -33.799386 0.0039074133 205.64367 -0.32979773 + 638400 -33.794232 -33.799249 0.0050172327 264.05248 -0.38206354 + 638500 -33.789738 -33.79896 0.0092218353 485.33697 -0.42686114 + 638600 -33.792386 -33.798455 0.0060688476 319.39804 -0.64652041 + 638700 -33.795587 -33.798081 0.0024942143 131.26827 -0.83437914 + 638800 -33.794816 -33.797925 0.0031090211 163.62501 -0.92114544 + 638900 -33.78976 -33.797916 0.0081558028 429.23263 -0.96171343 + 639000 -33.791457 -33.797959 0.0065012702 342.15605 -1.1405866 + 639100 -33.793818 -33.798071 0.0042523828 223.79911 -1.2793824 + 639200 -33.793968 -33.798294 0.0043254027 227.64209 -1.3253742 + 639300 -33.790671 -33.798635 0.0079644353 419.16113 -1.2665429 + 639400 -33.789884 -33.798945 0.0090609244 476.86837 -1.2180395 + 639500 -33.795791 -33.799029 0.0032380503 170.4157 -1.2835753 + 639600 -33.795614 -33.799088 0.0034742373 182.84601 -1.2090398 + 639700 -33.793044 -33.799147 0.0061030942 321.2004 -1.0348307 + 639800 -33.79181 -33.799092 0.0072825911 383.27628 -0.83424172 + 639900 -33.793535 -33.798911 0.0053753643 282.90063 -0.68672761 + 640000 -33.79456 -33.798728 0.0041682766 219.37268 -0.53983721 + 640100 -33.793212 -33.79862 0.0054082214 284.62987 -0.34545536 + 640200 -33.789403 -33.798557 0.0091543965 481.78772 -0.056888477 + 640300 -33.792616 -33.798495 0.0058792354 309.41891 0.087155915 + 640400 -33.795124 -33.798543 0.0034192057 179.94974 0.16804704 + 640500 -33.7942 -33.798759 0.0045594323 239.95885 0.27611605 + 640600 -33.788283 -33.799168 0.010884573 572.84539 0.47484394 + 640700 -33.793208 -33.799497 0.0062890645 330.98785 0.430133 + 640800 -33.795924 -33.799644 0.0037197802 195.76871 0.37848536 + 640900 -33.794588 -33.799776 0.0051878398 273.03138 0.36857094 + 641000 -33.792006 -33.799818 0.0078116181 411.11849 0.3353708 + 641100 -33.793521 -33.799638 0.0061164645 321.90407 0.18726739 + 641200 -33.796919 -33.799383 0.0024646632 129.71303 0.017307953 + 641300 -33.796856 -33.799206 0.0023499336 123.67491 -0.068570407 + 641400 -33.791592 -33.798992 0.0074004666 389.47996 -0.095159461 + 641500 -33.791841 -33.798597 0.006756044 355.56457 -0.26740759 + 641600 -33.793922 -33.798192 0.0042703033 224.74225 -0.43830634 + 641700 -33.793967 -33.797908 0.0039407564 207.39849 -0.52235392 + 641800 -33.788967 -33.797686 0.0087191465 458.8809 -0.48257557 + 641900 -33.788753 -33.797378 0.0086249548 453.92368 -0.51147334 + 642000 -33.792972 -33.797145 0.0041724189 219.59069 -0.58025724 + 642100 -33.792713 -33.797098 0.0043848901 230.77285 -0.51360224 + 642200 -33.791056 -33.797216 0.0061593488 324.16103 -0.35696709 + 642300 -33.790089 -33.797423 0.0073339114 385.97722 -0.15077055 + 642400 -33.793603 -33.797634 0.0040306809 212.13114 -0.0201676 + 642500 -33.795653 -33.79787 0.002216519 116.65342 0.091694148 + 642600 -33.793936 -33.798285 0.0043494157 228.90587 0.2936125 + 642700 -33.790383 -33.798955 0.0085726314 451.16994 0.61626412 + 642800 -33.792721 -33.799516 0.0067950482 357.61733 0.82729678 + 642900 -33.79498 -33.79987 0.0048897225 257.34174 0.9773746 + 643000 -33.795482 -33.800123 0.0046411218 244.2581 1.1137572 + 643100 -33.792531 -33.800323 0.007791594 410.06464 1.2972396 + 643200 -33.789205 -33.80035 0.011144523 586.52632 1.4892646 + 643300 -33.796131 -33.800143 0.0040118376 211.13943 1.4196488 + 643400 -33.796358 -33.799963 0.0036047403 189.71427 1.4293752 + 643500 -33.793761 -33.799786 0.0060250141 317.09112 1.4548383 + 643600 -33.791677 -33.799516 0.0078392507 412.57277 1.4258773 + 643700 -33.793994 -33.799198 0.0052036373 273.86279 1.2862984 + 643800 -33.797448 -33.799022 0.0015742785 82.852874 1.1358779 + 643900 -33.797922 -33.799093 0.0011712482 61.641749 1.0737677 + 644000 -33.796162 -33.799443 0.0032818784 172.72234 1.041164 + 644100 -33.793134 -33.800084 0.0069494996 365.74597 0.99752948 + 644200 -33.793327 -33.800741 0.0074140323 390.19391 0.87130816 + 644300 -33.797012 -33.801152 0.0041401003 217.88979 0.69666301 + 644400 -33.798229 -33.801402 0.0031733865 167.0125 0.60339659 + 644500 -33.793446 -33.801632 0.0081868349 430.86582 0.63637908 + 644600 -33.791309 -33.801726 0.01041767 548.27267 0.58933295 + 644700 -33.797034 -33.801572 0.0045372214 238.78992 0.4160376 + 644800 -33.797491 -33.801406 0.003915148 206.05074 0.37785384 + 644900 -33.794736 -33.801247 0.0065112153 342.67946 0.42179977 + 645000 -33.791433 -33.801009 0.0095757032 503.96072 0.49542455 + 645100 -33.797748 -33.800751 0.0030028928 158.03957 0.39088748 + 645200 -33.798474 -33.800698 0.0022232738 117.00892 0.39896124 + 645300 -33.795912 -33.800799 0.004886576 257.17614 0.48972792 + 645400 -33.792944 -33.800939 0.00799535 420.78814 0.60595122 + 645500 -33.794962 -33.800923 0.0059607566 313.7093 0.61245723 + 645600 -33.79735 -33.800782 0.0034322699 180.63731 0.58570124 + 645700 -33.797964 -33.800619 0.0026554016 139.75142 0.56918141 + 645800 -33.794762 -33.800398 0.0056366068 296.64959 0.59732059 + 645900 -33.790971 -33.799874 0.0089035112 468.58385 0.58398738 + 646000 -33.794261 -33.799139 0.0048771496 256.68004 0.40167423 + 646100 -33.795848 -33.798559 0.002711415 142.69935 0.25936198 + 646200 -33.793036 -33.798101 0.0050650126 266.5671 0.17833316 + 646300 -33.789454 -33.79754 0.0080861315 425.56589 0.012354458 + 646400 -33.791822 -33.797119 0.005297586 278.80722 -0.2704599 + 646500 -33.793074 -33.797047 0.0039730851 209.09993 -0.47885993 + 646600 -33.790898 -33.797358 0.0064592383 339.94395 -0.5973505 + 646700 -33.78572 -33.798136 0.012416075 653.44693 -0.68587977 + 646800 -33.793747 -33.798874 0.0051272487 269.84253 -0.97864776 + 646900 -33.794511 -33.799511 0.0050005268 263.17326 -1.0559629 + 647000 -33.7938 -33.800207 0.0064078505 337.23945 -1.0652619 + 647100 -33.794592 -33.800816 0.0062237597 327.55092 -1.0746084 + 647200 -33.797946 -33.801171 0.0032247025 169.71321 -1.1150102 + 647300 -33.798617 -33.801353 0.0027355364 143.96884 -1.0880987 + 647400 -33.794061 -33.801452 0.0073910211 388.98285 -0.92943163 + 647500 -33.79233 -33.801254 0.0089238703 469.65534 -0.78471337 + 647600 -33.795793 -33.800755 0.0049611686 261.10188 -0.75893343 + 647700 -33.796353 -33.800196 0.0038426165 202.23348 -0.69628435 + 647800 -33.793385 -33.79953 0.0061458041 323.44819 -0.56178181 + 647900 -33.788881 -33.798485 0.0096039563 505.44766 -0.37436758 + 648000 -33.791582 -33.797426 0.0058444664 307.58906 -0.34891069 + 648100 -33.792082 -33.796671 0.0045897014 241.55189 -0.30923248 + 648200 -33.790566 -33.796211 0.0056452785 297.10597 -0.25049943 + 648300 -33.786852 -33.795999 0.0091466622 481.38068 -0.17397472 + 648400 -33.789963 -33.795973 0.0060095816 316.27892 -0.26135792 + 648500 -33.793306 -33.796144 0.002837567 149.33862 -0.36801729 + 648600 -33.791939 -33.796554 0.0046153828 242.90348 -0.41008261 + 648700 -33.78831 -33.797199 0.0088889162 467.81573 -0.4630687 + 648800 -33.791707 -33.797725 0.0060176656 316.70438 -0.68951886 + 648900 -33.795274 -33.797975 0.0027009998 142.15121 -0.88066529 + 649000 -33.794525 -33.798194 0.0036690227 193.09739 -0.98186349 + 649100 -33.791808 -33.798399 0.0065909439 346.8755 -1.0814463 + 649200 -33.790596 -33.798439 0.0078421981 412.72789 -1.2485076 + 649300 -33.794255 -33.798281 0.0040263485 211.90313 -1.482915 + 649400 -33.796127 -33.79816 0.0020335653 107.02473 -1.6126124 + 649500 -33.793737 -33.79818 0.0044427009 233.81538 -1.6168547 + 649600 -33.789364 -33.798301 0.0089365294 470.32157 -1.5688919 + 649700 -33.792945 -33.798383 0.0054381019 286.20245 -1.6424336 + 649800 -33.794857 -33.798517 0.0036597428 192.609 -1.6409753 + 649900 -33.79357 -33.79878 0.0052097334 274.18362 -1.5309615 + 650000 -33.786668 -33.799203 0.012534793 659.69499 -1.2288631 + 650100 -33.794019 -33.799456 0.0054368555 286.13685 -1.1774649 + 650200 -33.795454 -33.799552 0.0040981503 215.68199 -1.0612605 + 650300 -33.793829 -33.799617 0.0057877717 304.60526 -0.86379499 + 650400 -33.79158 -33.799542 0.007961247 418.99333 -0.61211639 + 650500 -33.794152 -33.799262 0.0051099963 268.93455 -0.45878324 + 650600 -33.796862 -33.79899 0.0021277117 111.97957 -0.37769224 + 650700 -33.79594 -33.798805 0.0028642858 150.74481 -0.25048105 + 650800 -33.79179 -33.798576 0.0067856556 357.123 -0.014531098 + 650900 -33.792068 -33.798257 0.0061888467 325.71348 0.14446531 + 651000 -33.793322 -33.797993 0.0046715411 245.85904 0.25253548 + 651100 -33.793138 -33.797875 0.0047370363 249.306 0.35847497 + 651200 -33.78877 -33.797931 0.0091608849 482.1292 0.54320079 + 651300 -33.79002 -33.79813 0.0081099791 426.82097 0.61630438 + 651400 -33.794914 -33.798389 0.0034747591 182.87347 0.56897838 + 651500 -33.794378 -33.798845 0.0044665982 235.07308 0.60134112 + 651600 -33.792327 -33.799574 0.0072475311 381.4311 0.64516531 + 651700 -33.793616 -33.800394 0.0067786135 356.75238 0.60209036 + 651800 -33.798454 -33.800968 0.0025145968 132.34099 0.48197161 + 651900 -33.798306 -33.801411 0.0031056956 163.44999 0.45555071 + 652000 -33.795948 -33.801925 0.0059769909 314.5637 0.45462413 + 652100 -33.794746 -33.802351 0.0076049583 400.24217 0.40896039 + 652200 -33.797701 -33.802477 0.0047758413 251.34827 0.2766398 + 652300 -33.800575 -33.802419 0.0018436799 97.03123 0.16903262 + 652400 -33.801154 -33.802338 0.0011834022 62.281404 0.13098886 + 652500 -33.798009 -33.802222 0.0042128629 221.71922 0.17345758 + 652600 -33.794603 -33.801904 0.0073014726 384.26999 0.22250482 + 652700 -33.7947 -33.801341 0.0066408902 349.50413 0.21140037 + 652800 -33.796773 -33.800758 0.0039848862 209.721 0.1755845 + 652900 -33.796665 -33.800295 0.0036302492 191.05678 0.20409807 + 653000 -33.791496 -33.799833 0.0083376824 438.80479 0.36975519 + 653100 -33.791418 -33.799287 0.0078684753 414.11084 0.47452152 + 653200 -33.794289 -33.7989 0.0046111989 242.68329 0.51768252 + 653300 -33.79417 -33.798728 0.0045578755 239.87692 0.61901363 + 653400 -33.793014 -33.798692 0.0056776035 298.80721 0.75339328 + 653500 -33.792511 -33.79873 0.0062195731 327.33058 0.88189362 + 653600 -33.79296 -33.798777 0.0058167996 306.13297 0.97928272 + 653700 -33.793929 -33.798796 0.0048671047 256.15138 1.0428578 + 653800 -33.796022 -33.79882 0.0027981452 147.26388 1.0536285 + 653900 -33.796074 -33.798897 0.0028226202 148.55199 1.0741205 + 654000 -33.791986 -33.799056 0.0070701393 372.09512 1.1564736 + 654100 -33.790969 -33.799156 0.008186651 430.85614 1.1528892 + 654200 -33.794646 -33.79911 0.0044635613 234.91325 1.0396079 + 654300 -33.795552 -33.799099 0.0035471117 186.68132 0.97817346 + 654400 -33.78901 -33.799187 0.010176755 535.59355 1.0446795 + 654500 -33.789035 -33.799234 0.010199353 536.78286 0.93607236 + 654600 -33.794399 -33.799217 0.0048178904 253.56127 0.75359898 + 654700 -33.794984 -33.799304 0.004319752 227.34469 0.68989597 + 654800 -33.792816 -33.799535 0.006718104 353.56782 0.69242533 + 654900 -33.789777 -33.799823 0.010045345 528.67753 0.71795874 + 655000 -33.796089 -33.799956 0.0038665818 203.49475 0.57244832 + 655100 -33.79694 -33.800038 0.0030978956 163.03948 0.55558616 + 655200 -33.794496 -33.800128 0.0056324268 296.4296 0.62194712 + 655300 -33.792091 -33.800099 0.0080082018 421.46452 0.70303554 + 655400 -33.794139 -33.799848 0.005709354 300.47821 0.69954114 + 655500 -33.794939 -33.799505 0.0045651335 240.2589 0.71761098 + 655600 -33.794331 -33.799127 0.0047953731 252.37621 0.76354249 + 655700 -33.792701 -33.79871 0.0060093007 316.26414 0.83257895 + 655800 -33.790771 -33.798257 0.0074866721 394.01687 0.90769713 + 655900 -33.791821 -33.797846 0.0060249964 317.09018 0.91477739 + 656000 -33.794809 -33.797668 0.0028596919 150.50304 0.86769903 + 656100 -33.79457 -33.797795 0.0032246449 169.71018 0.86771696 + 656200 -33.789292 -33.798271 0.0089798131 472.59955 0.94124792 + 656300 -33.790733 -33.79892 0.0081869273 430.87068 0.85075264 + 656400 -33.793902 -33.799407 0.0055051774 289.73258 0.71238419 + 656500 -33.794441 -33.799806 0.005365468 282.37979 0.60737694 + 656600 -33.794298 -33.800135 0.0058376221 307.22885 0.48977372 + 656700 -33.794577 -33.800327 0.005750529 302.64521 0.33577069 + 656800 -33.795995 -33.800355 0.0043607989 229.50496 0.15123956 + 656900 -33.796048 -33.800267 0.0042193313 222.05964 -0.0058633609 + 657000 -33.792884 -33.800029 0.00714429 375.99761 -0.13701865 + 657100 -33.791038 -33.799496 0.0084573486 445.10271 -0.35378004 + 657200 -33.795534 -33.798873 0.0033391073 175.73424 -0.65416915 + 657300 -33.796773 -33.798528 0.0017551622 92.372623 -0.79822959 + 657400 -33.793807 -33.798378 0.0045714987 240.5939 -0.83307745 + 657500 -33.791599 -33.798335 0.0067362848 354.52466 -0.89013606 + 657600 -33.792493 -33.798404 0.0059117492 311.13009 -0.97160377 + 657700 -33.793934 -33.798559 0.0046255512 243.43863 -1.0162881 + 657800 -33.794099 -33.798785 0.0046859812 246.61901 -0.99647487 + 657900 -33.79166 -33.799061 0.007400839 389.49955 -0.88682684 + 658000 -33.790275 -33.799228 0.0089530502 471.19104 -0.75875916 + 658100 -33.795601 -33.799182 0.003580133 188.41921 -0.7730983 + 658200 -33.796062 -33.799084 0.0030222077 159.0561 -0.70891471 + 658300 -33.793475 -33.798922 0.0054471304 286.67761 -0.56666696 + 658400 -33.791781 -33.79858 0.0067993897 357.84581 -0.42043338 + 658500 -33.792569 -33.798082 0.0055128337 290.13552 -0.33485041 + 658600 -33.79281 -33.797562 0.0047524475 250.11708 -0.26092714 + 658700 -33.790005 -33.797032 0.0070269414 369.82166 -0.14435493 + 658800 -33.784287 -33.796261 0.011974454 630.20485 0.025618285 + 658900 -33.791378 -33.795603 0.0042253048 222.37402 -0.089589684 + 659000 -33.791773 -33.795346 0.0035729359 188.04043 -0.10717664 + 659100 -33.789609 -33.795398 0.0057895095 304.69672 -0.10303891 + 659200 -33.787561 -33.795724 0.0081632069 429.6223 -0.14126725 + 659300 -33.791349 -33.796142 0.0047928322 252.24248 -0.31481391 + 659400 -33.794167 -33.796532 0.0023652385 124.48039 -0.44663588 + 659500 -33.793175 -33.797049 0.003873474 203.85748 -0.51258914 + 659600 -33.791045 -33.797745 0.0067004672 352.63961 -0.59142153 + 659700 -33.791305 -33.798388 0.0070828649 372.76486 -0.74293493 + 659800 -33.794955 -33.798757 0.0038015538 200.07239 -0.94484374 + 659900 -33.796941 -33.798958 0.0020173138 106.16942 -1.0685 + 660000 -33.795628 -33.799155 0.0035271427 185.63038 -1.1074572 + 660100 -33.789631 -33.799441 0.0098105538 516.3207 -1.0871253 + 660200 -33.793691 -33.799557 0.0058664634 308.74673 -1.2580039 + 660300 -33.79614 -33.799589 0.0034490393 181.51986 -1.3526457 + 660400 -33.79508 -33.799695 0.0046152428 242.89611 -1.3453605 + 660500 -33.789267 -33.799908 0.010640838 560.01779 -1.2109984 + 660600 -33.79355 -33.800092 0.0065419758 344.29835 -1.2475191 + 660700 -33.796012 -33.800231 0.0042183082 222.0058 -1.2400627 + 660800 -33.794979 -33.800421 0.0054413164 286.37163 -1.1362278 + 660900 -33.793215 -33.800637 0.0074223485 390.63158 -0.98257805 + 661000 -33.794836 -33.800759 0.0059232562 311.73569 -0.87880037 + 661100 -33.79786 -33.800785 0.0029254331 153.96294 -0.82630303 + 661200 -33.797861 -33.800806 0.0029449231 154.98868 -0.73018495 + 661300 -33.791216 -33.800795 0.009579339 504.15207 -0.45645226 + 661400 -33.793005 -33.800581 0.0075758141 398.70834 -0.30736026 + 661500 -33.796097 -33.800277 0.0041795412 219.96553 -0.2332945 + 661600 -33.795954 -33.800006 0.0040520533 213.25595 -0.12000649 + 661700 -33.790894 -33.799712 0.0088171339 464.03789 0.1076852 + 661800 -33.789976 -33.799255 0.0092787947 488.33469 0.28964589 + 661900 -33.794946 -33.798939 0.003992432 210.11814 0.307161 + 662000 -33.794401 -33.798843 0.0044420874 233.7831 0.40415719 + 662100 -33.791824 -33.798948 0.0071244464 374.95326 0.54175723 + 662200 -33.79145 -33.799226 0.0077760859 409.24846 0.63781812 + 662300 -33.795634 -33.799534 0.0038995648 205.23062 0.61435729 + 662400 -33.796595 -33.799876 0.0032806487 172.65761 0.624292 + 662500 -33.792973 -33.800354 0.0073811123 388.46136 0.71114073 + 662600 -33.787453 -33.800964 0.013511562 711.10144 0.81737544 + 662700 -33.795313 -33.80121 0.0058976634 310.38876 0.64344349 + 662800 -33.796205 -33.801252 0.0050477405 265.65808 0.59969929 + 662900 -33.795961 -33.801187 0.0052260054 275.04 0.57296546 + 663000 -33.794353 -33.800995 0.0066416479 349.54401 0.56898328 + 663100 -33.79332 -33.800627 0.0073066429 384.5421 0.55177408 + 663200 -33.795756 -33.800185 0.0044288385 233.08582 0.47639898 + 663300 -33.797382 -33.799863 0.0024812538 130.58617 0.43990557 + 663400 -33.7953 -33.799672 0.0043717937 230.0836 0.50319909 + 663500 -33.790825 -33.799451 0.0086264817 454.00404 0.65584831 + 663600 -33.793228 -33.799152 0.0059233108 311.73857 0.69323844 + 663700 -33.79501 -33.79891 0.0038997637 205.24109 0.73945507 + 663800 -33.79376 -33.798718 0.0049578642 260.92797 0.85293722 + 663900 -33.785286 -33.79837 0.013083971 688.59772 1.1618999 + 664000 -33.791716 -33.797762 0.0060463926 318.21625 1.1733484 + 664100 -33.793172 -33.797247 0.0040753069 214.47977 1.2310161 + 664200 -33.791796 -33.796797 0.0050016053 263.23003 1.3276806 + 664300 -33.788025 -33.796259 0.0082339821 433.34713 1.46141 + 664400 -33.788564 -33.795609 0.0070456433 370.80592 1.4913635 + 664500 -33.793192 -33.795236 0.0020440472 107.57638 1.4054504 + 664600 -33.792682 -33.795222 0.002539523 133.65283 1.3912327 + 664700 -33.789173 -33.795573 0.0064003034 336.84226 1.3955986 + 664800 -33.788593 -33.796158 0.0075644419 398.10983 1.2961175 + 664900 -33.791524 -33.796753 0.0052285468 275.17375 1.1179288 + 665000 -33.793417 -33.797316 0.0038983443 205.16638 0.97628081 + 665100 -33.793868 -33.797906 0.004037553 212.49282 0.87117399 + 665200 -33.79138 -33.79863 0.0072501935 381.57122 0.81546439 + 665300 -33.790739 -33.799397 0.0086581374 455.67005 0.70392914 + 665400 -33.79566 -33.799876 0.0042154358 221.85463 0.51345387 + 665500 -33.796503 -33.800185 0.0036824357 193.80331 0.44330775 + 665600 -33.793831 -33.800464 0.0066334588 349.11302 0.4614632 + 665700 -33.788503 -33.800655 0.012151666 639.53134 0.54046151 + 665800 -33.797229 -33.800557 0.0033285681 175.17957 0.35902725 + 665900 -33.797574 -33.800444 0.0028705622 151.07513 0.36582988 + 666000 -33.794308 -33.800308 0.0060004081 315.79613 0.4722524 + 666100 -33.791776 -33.799976 0.0082001447 431.5663 0.59633431 + 666200 -33.794587 -33.79953 0.0049426652 260.12806 0.61644125 + 666300 -33.796503 -33.799164 0.0026605225 140.02093 0.63533395 + 666400 -33.796172 -33.798933 0.0027614479 145.33254 0.68941346 + 666500 -33.790816 -33.798741 0.0079247702 417.07358 0.85288803 + 666600 -33.790666 -33.798444 0.0077776831 409.33253 0.91047509 + 666700 -33.794307 -33.798225 0.0039177079 206.18547 0.86128413 + 666800 -33.794671 -33.798158 0.0034866053 183.49693 0.84288892 + 666900 -33.789118 -33.798223 0.0091042522 479.14867 0.8992397 + 667000 -33.788628 -33.798316 0.009687096 509.82322 0.79487796 + 667100 -33.792639 -33.798297 0.0056582807 297.79026 0.59092374 + 667200 -33.793498 -33.798306 0.0048075805 253.01867 0.44092349 + 667300 -33.792698 -33.798336 0.0056382604 296.73662 0.3001898 + 667400 -33.789193 -33.798336 0.0091430111 481.18852 0.15908054 + 667500 -33.791007 -33.798221 0.0072140344 379.6682 -0.12870378 + 667600 -33.795203 -33.798082 0.0028789641 151.51731 -0.38671578 + 667700 -33.794563 -33.79806 0.0034967618 184.03146 -0.51333102 + 667800 -33.791043 -33.798128 0.0070848142 372.86745 -0.61118759 + 667900 -33.79104 -33.798185 0.0071450335 376.03674 -0.79430546 + 668000 -33.792704 -33.798238 0.0055339615 291.24746 -0.9737274 + 668100 -33.793326 -33.798305 0.0049795928 262.07153 -1.0924166 + 668200 -33.792356 -33.798437 0.0060813714 320.05715 -1.1515703 + 668300 -33.787495 -33.798612 0.011116588 585.05612 -1.1241381 + 668400 -33.793046 -33.798686 0.0056402091 296.83917 -1.2835025 + 668500 -33.795308 -33.798756 0.0034471063 181.41813 -1.3431445 + 668600 -33.793903 -33.79889 0.0049861234 262.41523 -1.3068664 + 668700 -33.789767 -33.799086 0.0093195163 490.47783 -1.1934825 + 668800 -33.793994 -33.799208 0.0052145393 274.43655 -1.2344007 + 668900 -33.797091 -33.799271 0.0021798483 114.72347 -1.2640077 + 669000 -33.795566 -33.799428 0.003861898 203.24825 -1.1935963 + 669100 -33.792042 -33.799669 0.007626065 401.353 -1.0625798 + 669200 -33.79295 -33.799856 0.0069061724 363.46569 -1.0103453 + 669300 -33.796037 -33.799945 0.0039073569 205.64071 -1.0187085 + 669400 -33.797441 -33.800014 0.0025737521 135.45428 -1.0115895 + 669500 -33.797239 -33.800135 0.0028957454 152.4005 -0.98043767 + 669600 -33.792578 -33.800326 0.0077479823 407.7694 -0.86127752 + 669700 -33.792204 -33.800455 0.0082504335 434.21295 -0.82977669 + 669800 -33.796392 -33.800435 0.0040431512 212.78744 -0.9015186 + 669900 -33.796808 -33.800374 0.0035664732 187.70031 -0.91065998 + 670000 -33.79292 -33.800283 0.0073626953 387.49208 -0.84388891 + 670100 -33.788851 -33.79996 0.011109321 584.67364 -0.78882312 + 670200 -33.796014 -33.799546 0.0035324019 185.90716 -0.95631679 + 670300 -33.795699 -33.799249 0.0035501093 186.83908 -0.96900433 + 670400 -33.792468 -33.798935 0.0064670955 340.35747 -0.92385161 + 670500 -33.790153 -33.798543 0.0083907975 441.60019 -0.89775185 + 670600 -33.793517 -33.798185 0.0046681778 245.68204 -0.97411104 + 670700 -33.795101 -33.798036 0.0029343491 154.43217 -1.0003294 + 670800 -33.792182 -33.798098 0.005916053 311.35659 -0.91982547 + 670900 -33.787272 -33.798344 0.01107212 582.71578 -0.76598583 + 671000 -33.792795 -33.798594 0.0057987545 305.18328 -0.81344958 + 671100 -33.794266 -33.798845 0.0045784587 240.9602 -0.78563457 + 671200 -33.793601 -33.799164 0.0055626665 292.75818 -0.70518542 + 671300 -33.790238 -33.799555 0.0093165095 490.31959 -0.55188424 + 671400 -33.791906 -33.799859 0.0079528478 418.55128 -0.48203594 + 671500 -33.796679 -33.79999 0.0033103813 174.22242 -0.50383686 + 671600 -33.796255 -33.800085 0.003829678 201.55254 -0.43498128 + 671700 -33.79242 -33.80017 0.0077500708 407.87931 -0.28079298 + 671800 -33.792415 -33.800135 0.0077195942 406.27536 -0.18660812 + 671900 -33.795623 -33.799973 0.0043502994 228.95238 -0.17755032 + 672000 -33.795744 -33.799823 0.004078742 214.66055 -0.12032123 + 672100 -33.794479 -33.799671 0.0051914968 273.22385 -0.034561081 + 672200 -33.792138 -33.799482 0.0073437263 386.49376 0.077705326 + 672300 -33.792617 -33.799248 0.0066305255 348.95864 0.13714916 + 672400 -33.795799 -33.799043 0.0032441985 170.73927 0.12562556 + 672500 -33.796465 -33.798979 0.0025142421 132.32232 0.14828057 + 672600 -33.791239 -33.799019 0.0077800761 409.45847 0.29481294 + 672700 -33.790184 -33.799012 0.0088271026 464.56254 0.37403272 + 672800 -33.794213 -33.798916 0.0047024538 247.48595 0.33741805 + 672900 -33.794796 -33.798811 0.0040155779 211.33628 0.36068968 + 673000 -33.791997 -33.79871 0.0067135605 353.3287 0.4559916 + 673100 -33.785484 -33.798456 0.012972419 682.72687 0.64546005 + 673200 -33.794635 -33.798085 0.0034493498 181.5362 0.52195218 + 673300 -33.794868 -33.797927 0.0030590427 160.99469 0.56582966 + 673400 -33.791793 -33.797905 0.0061119713 321.6676 0.70709165 + 673500 -33.789578 -33.797997 0.0084195489 443.11335 0.87973717 + 673600 -33.793183 -33.798155 0.0049725664 261.70174 0.94209259 + 673700 -33.795352 -33.798381 0.0030290152 159.41437 1.008353 + 673800 -33.793722 -33.798761 0.0050393836 265.21827 1.152299 + 673900 -33.786763 -33.799402 0.012638884 665.17319 1.4730565 + 674000 -33.794376 -33.799805 0.0054288723 285.71671 1.4848176 + 674100 -33.795965 -33.799987 0.0040224039 211.69553 1.5529586 + 674200 -33.794646 -33.800079 0.005432809 285.92389 1.6586981 + 674300 -33.790426 -33.800019 0.0095932915 504.88637 1.8177968 + 674400 -33.793821 -33.79965 0.0058289599 306.77296 1.8040812 + 674500 -33.79711 -33.799319 0.0022091272 116.26439 1.7515478 + 674600 -33.795925 -33.799054 0.0031297706 164.71703 1.7612908 + 674700 -33.792871 -33.798714 0.0058423966 307.48012 1.772222 + 674800 -33.791809 -33.798295 0.006486411 341.37403 1.7113104 + 674900 -33.792412 -33.797858 0.0054455681 286.59539 1.5993521 + 675000 -33.793329 -33.797506 0.0041767967 219.82108 1.4769493 + 675100 -33.792954 -33.797278 0.0043235213 227.54307 1.3828146 + 675200 -33.788979 -33.797071 0.0080918365 425.86614 1.3341535 + 675300 -33.788945 -33.796771 0.0078261446 411.88301 1.177881 + 675400 -33.793124 -33.796475 0.0033505864 176.33837 0.97969173 + 675500 -33.793231 -33.796314 0.0030836999 162.29238 0.90099365 + 675600 -33.790067 -33.796224 0.006157088 324.04205 0.88836501 + 675700 -33.789279 -33.796076 0.0067967663 357.70775 0.82610849 + 675800 -33.790623 -33.795922 0.0052993027 278.89757 0.74114365 + 675900 -33.791323 -33.795838 0.0045146431 237.60164 0.69236285 + 676000 -33.789635 -33.795887 0.0062518378 329.02864 0.71081959 + 676100 -33.785657 -33.796108 0.010450895 550.02128 0.78895204 + 676200 -33.791698 -33.796368 0.0046694071 245.74673 0.68009226 + 676300 -33.793363 -33.796725 0.0033614116 176.9081 0.66263474 + 676400 -33.791727 -33.797338 0.0056108277 295.29286 0.71556797 + 676500 -33.790131 -33.798205 0.0080739664 424.92565 0.77078713 + 676600 -33.794277 -33.799016 0.0047383441 249.37482 0.70189076 + 676700 -33.797198 -33.799508 0.0023099808 121.57223 0.63928615 + 676800 -33.796075 -33.800004 0.0039298841 206.8263 0.64057294 + 676900 -33.793147 -33.800578 0.0074311663 391.09565 0.64807392 + 677000 -33.793797 -33.801003 0.0072053322 379.21021 0.55155336 + 677100 -33.797914 -33.801158 0.0032442012 170.73941 0.38691857 + 677200 -33.798738 -33.801193 0.0024550529 129.20725 0.29601501 + 677300 -33.792047 -33.801191 0.0091440661 481.24404 0.31363248 + 677400 -33.79288 -33.801004 0.0081236645 427.54122 0.11229712 + 677500 -33.796877 -33.800748 0.0038706516 203.70894 -0.11100325 + 677600 -33.797015 -33.800586 0.0035716701 187.97381 -0.22309751 + 677700 -33.792834 -33.800479 0.0076443613 402.31592 -0.25837037 + 677800 -33.791739 -33.800383 0.0086432629 454.88722 -0.37658632 + 677900 -33.795158 -33.800325 0.0051671674 271.94341 -0.54251376 + 678000 -33.795272 -33.800341 0.0050692186 266.78845 -0.60414953 + 678100 -33.79442 -33.800432 0.0060122292 316.41826 -0.62187718 + 678200 -33.793926 -33.800519 0.0065923742 346.95078 -0.6238242 + 678300 -33.795989 -33.800562 0.0045736869 240.70906 -0.65670989 + 678400 -33.797834 -33.800581 0.0027462862 144.53459 -0.67376183 + 678500 -33.796446 -33.800604 0.0041581586 218.84018 -0.6139126 + 678600 -33.791245 -33.80059 0.0093448277 491.80995 -0.45392041 + 678700 -33.793865 -33.800394 0.0065283541 343.58145 -0.44647545 + 678800 -33.795758 -33.800152 0.0043941011 231.25762 -0.44399712 + 678900 -33.795224 -33.799932 0.0047078872 247.77191 -0.40851871 + 679000 -33.793769 -33.799706 0.005936372 312.42596 -0.36926968 + 679100 -33.793482 -33.79951 0.0060281283 317.25501 -0.37120475 + 679200 -33.793736 -33.79936 0.0056237863 295.97486 -0.40766457 + 679300 -33.793757 -33.799278 0.0055211209 290.57167 -0.46247368 + 679400 -33.793177 -33.799264 0.006087387 320.37375 -0.53008615 + 679500 -33.792009 -33.79925 0.0072416153 381.11975 -0.61908759 + 679600 -33.793573 -33.799212 0.0056383865 296.74325 -0.78091656 + 679700 -33.795579 -33.799151 0.0035715843 187.9693 -0.94094825 + 679800 -33.795034 -33.799104 0.0040702516 214.21371 -1.0486913 + 679900 -33.788994 -33.799012 0.010018387 527.25876 -1.0974931 + 680000 -33.791395 -33.798685 0.0072893908 383.63414 -1.3524531 + 680100 -33.794186 -33.798346 0.0041597651 218.92473 -1.5539986 + 680200 -33.793606 -33.798041 0.0044352022 233.42074 -1.6542891 + 680300 -33.791712 -33.797729 0.0060167451 316.65593 -1.7119118 + 680400 -33.790221 -33.797415 0.0071939462 378.61097 -1.7522414 + 680500 -33.792302 -33.797121 0.0048184438 253.5904 -1.819699 + 680600 -33.794874 -33.79703 0.0021565075 113.49507 -1.8469836 + 680700 -33.793796 -33.797147 0.0033519163 176.40837 -1.7474942 + 680800 -33.789302 -33.797472 0.0081702273 429.99178 -1.4773041 + 680900 -33.790716 -33.797809 0.0070927191 373.28348 -1.257398 + 681000 -33.793355 -33.797979 0.0046238966 243.35156 -1.0839753 + 681100 -33.793564 -33.798091 0.004527746 238.29123 -0.87546852 + 681200 -33.788583 -33.798149 0.009565142 503.40489 -0.52773286 + 681300 -33.786026 -33.797887 0.011861198 624.24425 -0.10338835 + 681400 -33.792805 -33.797505 0.0047005008 247.38316 0.012079225 + 681500 -33.792983 -33.79718 0.0041971053 220.88991 0.1799807 + 681600 -33.790312 -33.796923 0.006611092 347.93588 0.38899402 + 681700 -33.787794 -33.796701 0.0089074406 468.79065 0.59409449 + 681800 -33.792867 -33.79657 0.0037027142 194.87055 0.59260028 + 681900 -33.794311 -33.79671 0.0023992329 126.26949 0.58926919 + 682000 -33.792672 -33.797138 0.0044655075 235.01568 0.59653709 + 682100 -33.790769 -33.797878 0.0071095874 374.17124 0.55455272 + 682200 -33.792032 -33.798683 0.0066519317 350.08523 0.40982329 + 682300 -33.794712 -33.799295 0.004582193 241.15673 0.22761498 + 682400 -33.796746 -33.799767 0.0030203827 158.96005 0.070423105 + 682500 -33.798545 -33.800089 0.0015436756 81.24227 -0.053575849 + 682600 -33.797756 -33.800397 0.0026418875 139.04018 -0.11580786 + 682700 -33.793551 -33.800843 0.0072926966 383.80812 -0.14968253 + 682800 -33.794076 -33.801147 0.0070719442 372.19011 -0.29713327 + 682900 -33.796848 -33.801226 0.0043777893 230.39914 -0.45567535 + 683000 -33.79765 -33.801181 0.0035302412 185.79345 -0.53423922 + 683100 -33.792819 -33.801044 0.0082252109 432.88551 -0.47761084 + 683200 -33.791052 -33.800636 0.0095839967 504.3972 -0.46675903 + 683300 -33.795895 -33.800128 0.0042332457 222.79195 -0.55623281 + 683400 -33.795903 -33.799714 0.0038114219 200.59173 -0.51860028 + 683500 -33.793435 -33.799263 0.0058280315 306.7241 -0.38886389 + 683600 -33.791497 -33.798682 0.0071845919 378.11866 -0.21791003 + 683700 -33.792205 -33.798082 0.0058772018 309.31189 -0.079653873 + 683800 -33.79236 -33.797522 0.0051613752 271.63857 0.072607804 + 683900 -33.791561 -33.79705 0.0054894315 288.90388 0.25238906 + 684000 -33.788814 -33.796606 0.0077921815 410.09556 0.48736707 + 684100 -33.786614 -33.796107 0.0094926938 499.59201 0.73861467 + 684200 -33.792159 -33.795777 0.0036183543 190.43076 0.78569238 + 684300 -33.792835 -33.795738 0.0029026852 152.76573 0.85665334 + 684400 -33.789838 -33.796021 0.0061828004 325.39527 0.98224865 + 684500 -33.788167 -33.796591 0.0084241702 443.35656 1.0697812 + 684600 -33.79079 -33.797184 0.0063933744 336.47759 1.0384765 + 684700 -33.792395 -33.797773 0.0053783799 283.05933 0.99763435 + 684800 -33.793063 -33.798345 0.0052816611 277.96911 0.94985237 + 684900 -33.79345 -33.798927 0.0054769588 288.24746 0.88864204 + 685000 -33.794241 -33.799444 0.0052027468 273.81593 0.80636587 + 685100 -33.794691 -33.799857 0.0051661554 271.89015 0.72291977 + 685200 -33.794302 -33.800189 0.0058864449 309.79834 0.65213507 + 685300 -33.793776 -33.800372 0.0065957404 347.12793 0.57934431 + 685400 -33.795078 -33.800399 0.0053201886 279.99678 0.47649847 + 685500 -33.796808 -33.800319 0.0035112482 184.79386 0.38992232 + 685600 -33.79615 -33.800204 0.0040538084 213.34832 0.37349313 + 685700 -33.790515 -33.800007 0.0094917022 499.53982 0.46787571 + 685800 -33.792504 -33.79958 0.0070761408 372.41098 0.42612418 + 685900 -33.795279 -33.799195 0.0039163212 206.11249 0.38673839 + 686000 -33.794727 -33.798905 0.0041773584 219.85065 0.43354633 + 686100 -33.793238 -33.798645 0.0054068328 284.55679 0.52620928 + 686200 -33.791945 -33.798438 0.0064933631 341.73991 0.6409018 + 686300 -33.792237 -33.79825 0.0060135924 316.49 0.73541339 + 686400 -33.795092 -33.798164 0.0030719692 161.675 0.76748912 + 686500 -33.795971 -33.798244 0.0022733009 119.6418 0.81129478 + 686600 -33.792803 -33.79852 0.0057170206 300.8817 0.93553404 + 686700 -33.790211 -33.799018 0.0088060836 463.45633 1.0622683 + 686800 -33.793706 -33.79942 0.0057139627 300.72076 1.0402017 + 686900 -33.795226 -33.799742 0.0045159281 237.66927 1.0217744 + 687000 -33.794648 -33.800091 0.0054433136 286.47674 1.0136809 + 687100 -33.791616 -33.800459 0.0088434372 465.42221 1.0130884 + 687200 -33.78833 -33.800812 0.012481738 656.90274 0.95667542 + 687300 -33.796683 -33.800925 0.0042424487 223.27629 0.6765422 + 687400 -33.797254 -33.801005 0.0037515705 197.44181 0.55715325 + 687500 -33.794477 -33.801139 0.006662144 350.6227 0.46772823 + 687600 -33.792142 -33.801224 0.0090821021 477.98294 0.30374624 + 687700 -33.797548 -33.801215 0.0036672019 193.00157 0.0077082318 + 687800 -33.798631 -33.801211 0.0025795767 135.76082 -0.13567329 + 687900 -33.797152 -33.801243 0.0040914931 215.33163 -0.22880565 + 688000 -33.794835 -33.80128 0.006444423 339.16423 -0.32312528 + 688100 -33.79434 -33.801196 0.006856496 360.85127 -0.45682817 + 688200 -33.79687 -33.801017 0.0041471967 218.26327 -0.61757347 + 688300 -33.799228 -33.80087 0.0016421081 86.422685 -0.71435665 + 688400 -33.798676 -33.800794 0.0021182896 111.48369 -0.70762499 + 688500 -33.794609 -33.800721 0.006111735 321.65516 -0.58501711 + 688600 -33.793839 -33.800496 0.0066570052 350.35225 -0.48306905 + 688700 -33.795067 -33.800145 0.0050784763 267.27568 -0.39950319 + 688800 -33.795749 -33.79976 0.0040107653 211.083 -0.29903681 + 688900 -33.793084 -33.799298 0.0062135659 327.01443 -0.10870158 + 689000 -33.788675 -33.798548 0.0098736013 519.63883 0.1812848 + 689100 -33.793143 -33.79769 0.0045473583 239.32341 0.27780795 + 689200 -33.794423 -33.797142 0.0027198942 143.1456 0.36964233 + 689300 -33.793142 -33.796783 0.0036415008 191.64894 0.48975521 + 689400 -33.791484 -33.79654 0.0050563257 266.10991 0.60050022 + 689500 -33.789141 -33.796441 0.0072997412 384.17887 0.69615503 + 689600 -33.789773 -33.796405 0.0066322098 349.04728 0.68454469 + 689700 -33.793281 -33.796456 0.0031759223 167.14596 0.57029477 + 689800 -33.794 -33.796651 0.0026509925 139.51937 0.47723877 + 689900 -33.788266 -33.797052 0.0087860634 462.40268 0.42879428 + 690000 -33.788182 -33.797579 0.009396445 494.52652 0.13635568 + 690100 -33.792859 -33.797826 0.0049662202 261.36774 -0.21527167 + 690200 -33.793692 -33.797987 0.0042949175 226.03768 -0.45937313 + 690300 -33.791824 -33.79816 0.0063363124 333.47447 -0.66862606 + 690400 -33.786304 -33.798261 0.011956697 629.27032 -0.88900698 + 690500 -33.793722 -33.798191 0.0044684654 235.17135 -1.3409722 + 690600 -33.795146 -33.798153 0.0030070272 158.25716 -1.5262733 + 690700 -33.792886 -33.798229 0.0053427784 281.18566 -1.6005575 + 690800 -33.789921 -33.798385 0.0084635685 445.43006 -1.6433792 + 690900 -33.792707 -33.798468 0.0057614396 303.21943 -1.7513941 + 691000 -33.79522 -33.798542 0.0033215584 174.81066 -1.7972185 + 691100 -33.796326 -33.798662 0.0023354811 122.91429 -1.7700518 + 691200 -33.796031 -33.79885 0.0028196375 148.39501 -1.6761062 + 691300 -33.791601 -33.799158 0.0075574023 397.73934 -1.4221167 + 691400 -33.791008 -33.799379 0.008370852 440.55047 -1.1642364 + 691500 -33.795355 -33.799388 0.0040329757 212.25191 -1.0436894 + 691600 -33.795904 -33.799339 0.0034351931 180.79115 -0.89646027 + 691700 -33.792219 -33.799261 0.0070419956 370.61395 -0.6470692 + 691800 -33.78888 -33.799014 0.010134489 533.3691 -0.34156453 + 691900 -33.792341 -33.798628 0.0062872055 330.89002 -0.21781743 + 692000 -33.7935 -33.798306 0.0048061534 252.94357 -0.10710511 + 692100 -33.79304 -33.798101 0.0050612012 266.36651 -0.0064413014 + 692200 -33.789963 -33.797999 0.0080364807 422.95281 0.11737414 + 692300 -33.78995 -33.797962 0.0080117 421.64862 0.15224345 + 692400 -33.794901 -33.797983 0.0030819024 162.19777 0.050166875 + 692500 -33.794766 -33.798155 0.003388855 178.35242 0.019607572 + 692600 -33.791835 -33.798496 0.0066613689 350.5819 0.005957469 + 692700 -33.791293 -33.798843 0.0075502268 397.3617 -0.095469552 + 692800 -33.793 -33.799027 0.0060273056 317.21172 -0.24567177 + 692900 -33.793868 -33.799058 0.005190594 273.17633 -0.3700895 + 693000 -33.793755 -33.798987 0.0052318925 275.34983 -0.46413521 + 693100 -33.790408 -33.798801 0.0083926454 441.69744 -0.48540823 + 693200 -33.788348 -33.798321 0.0099733734 524.88975 -0.5320212 + 693300 -33.794338 -33.797847 0.0035092099 184.68659 -0.68594869 + 693400 -33.794472 -33.797619 0.003147031 165.62543 -0.66373444 + 693500 -33.791745 -33.79761 0.0058654924 308.69563 -0.51126754 + 693600 -33.790525 -33.797825 0.0072991457 384.14753 -0.30098231 + 693700 -33.792061 -33.798177 0.0061155638 321.85667 -0.10575717 + 693800 -33.793316 -33.798646 0.0053302195 280.5247 0.099887666 + 693900 -33.793938 -33.799187 0.0052495955 276.28153 0.31841147 + 694000 -33.795791 -33.799724 0.0039336574 207.02488 0.49489777 + 694100 -33.796814 -33.800181 0.0033675544 177.23139 0.63738443 + 694200 -33.794673 -33.800633 0.0059602995 313.68525 0.83102281 + 694300 -33.791352 -33.801033 0.0096812509 509.5156 1.0668699 + 694400 -33.796659 -33.801099 0.0044404241 233.69556 1.0835133 + 694500 -33.798144 -33.801003 0.0028590007 150.46666 1.1009863 + 694600 -33.796891 -33.800836 0.0039448215 207.61244 1.1321176 + 694700 -33.794952 -33.800528 0.0055756776 293.44294 1.1338499 + 694800 -33.793739 -33.800064 0.0063243279 332.84373 1.0770687 + 694900 -33.793738 -33.799512 0.0057740398 303.88257 0.96271746 + 695000 -33.793882 -33.79901 0.0051283565 269.90083 0.82832787 + 695100 -33.792518 -33.798652 0.0061333095 322.79061 0.7105474 + 695200 -33.790796 -33.798442 0.0076454323 402.37228 0.57998178 + 695300 -33.792904 -33.798452 0.0055477075 291.9709 0.39073918 + 695400 -33.795348 -33.798679 0.0033313278 175.32481 0.25256615 + 695500 -33.795091 -33.799117 0.004026398 211.90574 0.21107825 + 695600 -33.787782 -33.799903 0.012120184 637.87446 0.33169044 + 695700 -33.793125 -33.800674 0.007548562 397.27408 0.21983643 + 695800 -33.796156 -33.801067 0.004911177 258.47087 0.17355061 + 695900 -33.796051 -33.801331 0.0052796139 277.86137 0.21215909 + 696000 -33.794903 -33.801465 0.006562093 345.3571 0.29578212 + 696100 -33.794137 -33.80142 0.0072829409 383.29469 0.39563002 + 696200 -33.796721 -33.801185 0.0044639455 234.93347 0.43714935 + 696300 -33.798135 -33.800951 0.0028153873 148.17132 0.49342648 + 696400 -33.79574 -33.800742 0.005001723 263.23622 0.64332636 + 696500 -33.791638 -33.800386 0.0087479184 460.39514 0.89138494 + 696600 -33.794186 -33.799951 0.0057646989 303.39096 1.0092216 + 696700 -33.795471 -33.799599 0.0041274331 217.22312 1.112853 + 696800 -33.793712 -33.799343 0.0056305967 296.33328 1.2607423 + 696900 -33.783676 -33.798963 0.015286182 804.49812 1.598129 + 697000 -33.791971 -33.798372 0.0064002444 336.83915 1.5385506 + 697100 -33.79341 -33.797923 0.0045133076 237.53135 1.5441204 + 697200 -33.792511 -33.797546 0.0050345695 264.9649 1.5426805 + 697300 -33.788941 -33.797121 0.0081797064 430.49065 1.530033 + 697400 -33.78892 -33.796548 0.007627861 401.44752 1.3759115 + 697500 -33.793642 -33.796108 0.0024658544 129.77572 1.1306371 + 697600 -33.79355 -33.795989 0.0024392057 128.37322 0.98767367 + 697700 -33.790914 -33.796121 0.0052072285 274.05179 0.81933171 + 697800 -33.789739 -33.796439 0.0066992418 352.57512 0.54258499 + 697900 -33.790848 -33.796843 0.0059942923 315.47426 0.21727118 + 698000 -33.793024 -33.79725 0.0042257576 222.39785 -0.077767768 + 698100 -33.79488 -33.797682 0.002802648 147.50086 -0.29102113 + 698200 -33.795014 -33.798174 0.0031590914 166.26017 -0.41140124 + 698300 -33.789921 -33.798878 0.0089571154 471.40499 -0.42438273 + 698400 -33.791091 -33.799602 0.0085104971 447.89987 -0.56488824 + 698500 -33.795348 -33.799926 0.0045775121 240.91038 -0.71458522 + 698600 -33.795298 -33.800092 0.004794258 252.31752 -0.74451471 + 698700 -33.793956 -33.800143 0.0061864591 325.58783 -0.72613498 + 698800 -33.792845 -33.800004 0.0071586971 376.75584 -0.69399381 + 698900 -33.794575 -33.799689 0.0051140316 269.14692 -0.70585937 + 699000 -33.796312 -33.799358 0.0030460325 160.30997 -0.71309746 + 699100 -33.794838 -33.799065 0.0042269408 222.46013 -0.64878772 + 699200 -33.790279 -33.798661 0.0083819629 441.13523 -0.50354687 + 699300 -33.791684 -33.79813 0.0064458749 339.24065 -0.47132886 + 699400 -33.793851 -33.79774 0.0038888745 204.668 -0.47207884 + 699500 -33.793058 -33.797545 0.0044865616 236.12373 -0.4291216 + 699600 -33.784961 -33.797461 0.012500063 657.86714 -0.24552582 + 699700 -33.791534 -33.797419 0.0058851716 309.73133 -0.3675472 + 699800 -33.793577 -33.797511 0.0039342707 207.05716 -0.42073856 + 699900 -33.792379 -33.797817 0.0054373356 286.16212 -0.42781404 + 700000 -33.788538 -33.79832 0.009781104 514.77078 -0.41444806 + 700100 -33.793148 -33.798808 0.0056601977 297.89116 -0.59053885 + 700200 -33.796064 -33.799115 0.0030506999 160.55561 -0.71122679 + 700300 -33.79456 -33.799446 0.0048866607 257.1806 -0.75176449 + 700400 -33.790928 -33.799822 0.0088942697 468.09748 -0.78115675 + 700500 -33.794288 -33.799989 0.0057009045 300.03352 -0.95801665 + 700600 -33.797766 -33.799988 0.0022218078 116.93176 -1.0936183 + 700700 -33.797172 -33.799977 0.0028052306 147.63679 -1.1232619 + 700800 -33.79485 -33.799926 0.0050759522 267.14284 -1.1093763 + 700900 -33.79217 -33.79974 0.0075696258 398.38265 -1.0766798 + 701000 -33.793426 -33.799367 0.0059412643 312.68344 -1.10113 + 701100 -33.796384 -33.799015 0.0026312798 138.48191 -1.1365376 + 701200 -33.797348 -33.798861 0.0015125885 79.606182 -1.1111874 + 701300 -33.794444 -33.798882 0.0044376755 233.5509 -0.96261935 + 701400 -33.79104 -33.799049 0.0080087074 421.49113 -0.7112744 + 701500 -33.793255 -33.799206 0.0059503313 313.16063 -0.55352135 + 701600 -33.795611 -33.79934 0.0037283716 196.22087 -0.43989397 + 701700 -33.795286 -33.799519 0.0042329324 222.77546 -0.29890836 + 701800 -33.788205 -33.799753 0.011547918 607.75661 0.0030735562 + 701900 -33.792359 -33.799841 0.0074823849 393.79125 0.093902221 + 702000 -33.795328 -33.799778 0.0044504493 234.22318 0.12598539 + 702100 -33.794736 -33.799688 0.0049522603 260.63304 0.18716212 + 702200 -33.792451 -33.799555 0.0071037689 373.86502 0.24992787 + 702300 -33.791265 -33.799301 0.0080356989 422.91166 0.25385709 + 702400 -33.795597 -33.799032 0.0034354169 180.80293 0.12458526 + 702500 -33.796584 -33.798926 0.0023415679 123.23463 0.05327831 + 702600 -33.793576 -33.798969 0.0053925321 283.80415 0.030214626 + 702700 -33.791075 -33.799117 0.0080423856 423.26358 -0.054655423 + 702800 -33.793373 -33.799232 0.0058584183 308.32333 -0.23597751 + 702900 -33.794903 -33.799344 0.004440882 233.71966 -0.37445366 + 703000 -33.794366 -33.799488 0.005121965 269.56445 -0.45134115 + 703100 -33.787548 -33.799646 0.012098389 636.72743 -0.41113662 + 703200 -33.793198 -33.799647 0.0064495555 339.43435 -0.60793518 + 703300 -33.795855 -33.799576 0.003720527 195.80802 -0.69148313 + 703400 -33.794737 -33.799542 0.0048051918 252.89296 -0.66149451 + 703500 -33.791237 -33.799509 0.0082714148 435.31718 -0.53856893 + 703600 -33.792787 -33.7994 0.0066136135 348.06858 -0.47141804 + 703700 -33.797333 -33.799355 0.0020215104 106.39029 -0.4704315 + 703800 -33.796604 -33.799472 0.0028675291 150.9155 -0.3447008 + 703900 -33.793277 -33.799811 0.0065346703 343.91387 -0.082189797 + 704000 -33.792822 -33.800274 0.0074520963 392.19718 0.19437162 + 704100 -33.795552 -33.80067 0.0051180623 269.35906 0.39080745 + 704200 -33.79731 -33.800999 0.0036883823 194.11627 0.55472358 + 704300 -33.798237 -33.801291 0.0030538615 160.72201 0.69542798 + 704400 -33.796832 -33.801586 0.0047540777 250.20287 0.86345934 + 704500 -33.79249 -33.801877 0.0093867579 494.0167 1.1110871 + 704600 -33.795864 -33.801927 0.0060631575 319.09857 1.1846791 + 704700 -33.79857 -33.801809 0.0032383884 170.43349 1.1993576 + 704800 -33.797637 -33.801611 0.0039740807 209.15232 1.2398962 + 704900 -33.794886 -33.801244 0.0063585879 334.64681 1.2777297 + 705000 -33.794788 -33.800676 0.0058882508 309.89339 1.2233184 + 705100 -33.795034 -33.800015 0.004980781 262.13406 1.1315673 + 705200 -33.793773 -33.799319 0.0055453732 291.84805 1.0431141 + 705300 -33.788876 -33.798444 0.009567977 503.5541 0.97670279 + 705400 -33.79055 -33.797398 0.0068478681 360.39719 0.74469832 + 705500 -33.794508 -33.796812 0.0023037849 121.24614 0.54468506 + 705600 -33.793675 -33.796609 0.0029336777 154.39684 0.48451336 + 705700 -33.791058 -33.796665 0.005607641 295.12514 0.47138817 + 705800 -33.789848 -33.79687 0.007021689 369.54523 0.45040229 + 705900 -33.791411 -33.797072 0.0056607137 297.91831 0.40293675 + 706000 -33.793973 -33.797232 0.0032587365 171.50439 0.36392208 + 706100 -33.795661 -33.797383 0.0017224604 90.651553 0.36321179 + 706200 -33.795076 -33.797613 0.0025377186 133.55787 0.42921055 + 706300 -33.789871 -33.798024 0.008152555 429.0617 0.64824033 + 706400 -33.791286 -33.798336 0.0070499761 371.03395 0.77050697 + 706500 -33.794479 -33.798465 0.003985868 209.77268 0.82390548 + 706600 -33.794745 -33.798575 0.0038302918 201.58484 0.9077894 + 706700 -33.78826 -33.798774 0.010514319 553.35922 1.1299805 + 706800 -33.789891 -33.798928 0.0090367126 475.59412 1.1986703 + 706900 -33.79378 -33.79899 0.0052107583 274.23756 1.1670264 + 707000 -33.794047 -33.799122 0.0050742127 267.05129 1.1620049 + 707100 -33.792964 -33.799329 0.0063651909 334.99432 1.1386761 + 707200 -33.791777 -33.799583 0.007805988 410.82219 1.0668408 + 707300 -33.795088 -33.799763 0.0046753856 246.06137 0.87234999 + 707400 -33.796886 -33.79989 0.0030038383 158.08933 0.7115191 + 707500 -33.795066 -33.800043 0.0049771599 261.94349 0.59359715 + 707600 -33.789545 -33.800146 0.010600249 557.88167 0.43979422 + 707700 -33.793563 -33.800002 0.0064392194 338.89038 0.07196037 + 707800 -33.79486 -33.799729 0.0048690943 256.25609 -0.18541824 + 707900 -33.794321 -33.799392 0.0050706966 266.86624 -0.38656929 + 708000 -33.791901 -33.798974 0.0070723154 372.20965 -0.54906412 + 708100 -33.788567 -33.798365 0.0097977167 515.64509 -0.70231749 + 708200 -33.793362 -33.797738 0.0043764713 230.32978 -0.95833935 + 708300 -33.795095 -33.797457 0.0023621765 124.31924 -1.0376491 + 708400 -33.792921 -33.797447 0.0045262161 238.21072 -0.9524688 + 708500 -33.789704 -33.797659 0.0079550852 418.66904 -0.7373076 + 708600 -33.791469 -33.797894 0.0064257144 338.17961 -0.55591191 + 708700 -33.793324 -33.798104 0.0047803002 251.58293 -0.37055517 + 708800 -33.793547 -33.798309 0.0047618496 250.61189 -0.14991726 + 708900 -33.789471 -33.798505 0.0090339552 475.44901 0.19436876 + 709000 -33.789365 -33.798544 0.0091792776 483.09719 0.52682176 + 709100 -33.794683 -33.79841 0.0037269128 196.1441 0.63415231 + 709200 -33.794609 -33.798329 0.0037199388 195.77706 0.76129859 + 709300 -33.791266 -33.798299 0.0070322072 370.09879 0.91741378 + 709400 -33.790102 -33.798238 0.008135942 428.18737 0.98717102 + 709500 -33.793434 -33.798183 0.0047487242 249.92112 0.90126694 + 709600 -33.794107 -33.798232 0.0041248365 217.08647 0.80731159 + 709700 -33.79324 -33.798425 0.0051852812 272.89673 0.67599628 + 709800 -33.791559 -33.798733 0.007173456 377.53259 0.47849645 + 709900 -33.792529 -33.799026 0.0064970467 341.93377 0.16801354 + 710000 -33.795492 -33.79923 0.0037387775 196.76852 -0.1542948 + 710100 -33.796119 -33.799391 0.0032719067 172.19753 -0.39295423 + 710200 -33.790928 -33.799556 0.0086289602 454.13448 -0.5699721 + 710300 -33.789945 -33.799514 0.0095682243 503.56711 -0.95750838 + 710400 -33.794479 -33.799208 0.0047295693 248.91302 -1.3496556 + 710500 -33.794559 -33.798852 0.0042921695 225.89305 -1.570306 + 710600 -33.792471 -33.798399 0.0059270927 311.9376 -1.7192181 + 710700 -33.789044 -33.797747 0.008703109 458.03686 -1.8294543 + 710800 -33.790456 -33.796941 0.0064855283 341.32757 -1.9892566 + 710900 -33.793941 -33.796433 0.0024924957 131.17782 -2.0914413 + 711000 -33.793228 -33.796294 0.0030662473 161.37386 -2.023717 + 711100 -33.78885 -33.796471 0.0076214021 401.1076 -1.7602533 + 711200 -33.789324 -33.796895 0.0075701077 398.40802 -1.4856912 + 711300 -33.792499 -33.79739 0.0048911575 257.41726 -1.2732517 + 711400 -33.793307 -33.797953 0.0046461564 244.52307 -1.0365729 + 711500 -33.791768 -33.798664 0.0068965272 362.95808 -0.73603559 + 711600 -33.785256 -33.799587 0.014330978 754.2266 -0.25229973 + 711700 -33.794995 -33.800206 0.0052111535 274.25836 -0.15627585 + 711800 -33.79658 -33.800564 0.003984036 209.67626 -0.032318583 + 711900 -33.795266 -33.800896 0.0056296438 296.28313 0.09998507 + 712000 -33.792133 -33.801204 0.0090717456 477.43788 0.23673013 + 712100 -33.796168 -33.801327 0.0051586219 271.49367 0.18233756 + 712200 -33.798812 -33.801339 0.0025269641 132.99186 0.10702826 + 712300 -33.797568 -33.801363 0.0037957894 199.76901 0.063546761 + 712400 -33.795103 -33.801363 0.0062596707 329.44089 -0.022176313 + 712500 -33.794942 -33.801261 0.0063193701 332.58281 -0.19928405 + 712600 -33.795846 -33.801063 0.0052170696 274.56972 -0.40394828 + 712700 -33.796268 -33.800827 0.004558915 239.93163 -0.58597556 + 712800 -33.794015 -33.800561 0.006546238 344.52267 -0.70895825 + 712900 -33.791169 -33.800142 0.0089732471 472.25399 -0.83830168 + 713000 -33.795102 -33.799677 0.0045754302 240.80081 -1.0520839 + 713100 -33.796595 -33.799395 0.0028005683 147.39141 -1.1286796 + 713200 -33.793648 -33.799259 0.0056103708 295.26881 -1.0458867 + 713300 -33.789234 -33.799127 0.0098934442 520.68314 -0.83827247 + 713400 -33.793092 -33.798956 0.0058635956 308.59581 -0.74866865 + 713500 -33.794674 -33.798866 0.0041918355 220.61256 -0.60201197 + 713600 -33.793669 -33.798871 0.0052020311 273.77826 -0.36558412 + 713700 -33.787147 -33.798903 0.011755634 618.68851 0.090024025 + 713800 -33.792667 -33.798777 0.0061096364 321.54471 0.36448051 + 713900 -33.795385 -33.79866 0.0032747516 172.34725 0.54240076 + 714000 -33.793842 -33.798619 0.00477762 251.44188 0.78615347 + 714100 -33.790577 -33.798571 0.00799432 420.73393 1.0956485 + 714200 -33.792043 -33.798412 0.0063687096 335.17951 1.2940387 + 714300 -33.796016 -33.79827 0.0022546552 118.66049 1.3393846 + 714400 -33.796414 -33.79828 0.0018661476 98.213682 1.3649247 + 714500 -33.793106 -33.798466 0.0053599553 282.08967 1.4004375 + 714600 -33.792064 -33.798719 0.0066555124 350.27368 1.3179246 + 714700 -33.793269 -33.798874 0.0056052251 294.998 1.142584 + 714800 -33.794547 -33.798946 0.0043993149 231.53202 0.94498433 + 714900 -33.794091 -33.798975 0.0048840479 257.04308 0.75949129 + 715000 -33.790104 -33.798936 0.0088317075 464.80489 0.57926271 + 715100 -33.791022 -33.798673 0.0076507706 402.65323 0.23901925 + 715200 -33.79564 -33.798389 0.002748488 144.65047 -0.069882952 + 715300 -33.795204 -33.798245 0.0030413829 160.06527 -0.20360241 + 715400 -33.792911 -33.798186 0.0052750391 277.6206 -0.28807978 + 715500 -33.791662 -33.798162 0.0065000171 342.0901 -0.36904843 + 715600 -33.792223 -33.798146 0.0059227561 311.70937 -0.4300444 + 715700 -33.793823 -33.798162 0.0043391711 228.3667 -0.44599399 + 715800 -33.795773 -33.79826 0.0024870597 130.89173 -0.41284239 + 715900 -33.795349 -33.798477 0.0031271817 164.58078 -0.27647442 + 716000 -33.790196 -33.798872 0.0086753188 456.57429 0.082426672 + 716100 -33.791524 -33.799179 0.0076559613 402.92641 0.41698099 + 716200 -33.794719 -33.799241 0.0045228836 238.03533 0.65691772 + 716300 -33.794696 -33.799208 0.0045120628 237.46584 0.92738129 + 716400 -33.793481 -33.79908 0.0055989758 294.6691 1.2355658 + 716500 -33.792938 -33.798824 0.0058854854 309.74785 1.5333904 + 716600 -33.79301 -33.798472 0.0054617497 287.44702 1.7825473 + 716700 -33.792781 -33.798092 0.0053106268 279.49355 1.984511 + 716800 -33.791585 -33.797742 0.0061576255 324.07034 2.1502186 + 716900 -33.784651 -33.797385 0.01273362 670.15904 2.3787856 + 717000 -33.790454 -33.796999 0.0065446999 344.44172 2.291086 + 717100 -33.79331 -33.796935 0.003625559 190.80994 2.1839649 + 717200 -33.792022 -33.797222 0.0051999776 273.67018 2.0778019 + 717300 -33.788676 -33.797897 0.0092207366 485.27914 1.8945414 + 717400 -33.793554 -33.798683 0.005128368 269.90143 1.4884001 + 717500 -33.796139 -33.799254 0.0031152645 163.95359 1.2118621 + 717600 -33.79455 -33.79993 0.0053796488 283.12612 0.98651926 + 717700 -33.792259 -33.800704 0.0084450797 444.45701 0.68405856 + 717800 -33.796485 -33.801234 0.004748618 249.91553 0.25614509 + 717900 -33.79908 -33.801452 0.0023717603 124.82363 -0.0044685824 + 718000 -33.798014 -33.801597 0.0035825168 188.54466 -0.16169092 + 718100 -33.795661 -33.801655 0.0059936338 315.4396 -0.31508251 + 718200 -33.794639 -33.801494 0.0068547292 360.75828 -0.49958741 + 718300 -33.79614 -33.801126 0.0049864154 262.4306 -0.69243825 + 718400 -33.798608 -33.800755 0.0021473388 113.01252 -0.82853747 + 718500 -33.798969 -33.800535 0.0015661624 82.42573 -0.85116396 + 718600 -33.795811 -33.800381 0.0045697136 240.49995 -0.74014769 + 718700 -33.793221 -33.800183 0.00696188 366.39753 -0.5612202 + 718800 -33.793646 -33.799924 0.0062786847 330.44157 -0.39932022 + 718900 -33.795625 -33.799682 0.004057201 213.52687 -0.27558692 + 719000 -33.79626 -33.799528 0.0032682187 172.00344 -0.14817784 + 719100 -33.792326 -33.799439 0.0071138257 374.3943 0.080629461 + 719200 -33.789793 -33.799249 0.0094562481 497.67391 0.32358997 + 719300 -33.794486 -33.798997 0.0045112216 237.42157 0.36203564 + 719400 -33.795021 -33.798847 0.0038258393 201.35051 0.40975332 + 719500 -33.793659 -33.798792 0.0051330838 270.14962 0.44383844 + 719600 -33.79266 -33.798823 0.006163389 324.37367 0.41493344 + 719700 -33.792911 -33.798926 0.0060151567 316.57233 0.30593058 + 719800 -33.793623 -33.799114 0.0054912485 288.99951 0.14573416 + 719900 -33.794755 -33.799399 0.0046433124 244.37339 -0.049976503 + 720000 -33.796318 -33.799754 0.0034364107 180.85523 -0.25243516 + 720100 -33.79532 -33.800226 0.0049063047 258.21444 -0.41175947 + 720200 -33.791543 -33.800872 0.0093287977 490.9663 -0.57650042 + 720300 -33.795309 -33.801414 0.0061056223 321.33346 -0.90196107 + 720400 -33.79831 -33.801689 0.0033790385 177.83578 -1.1168836 + 720500 -33.797448 -33.801877 0.0044284284 233.06424 -1.2127693 + 720600 -33.795695 -33.801963 0.0062681193 329.88553 -1.2745371 + 720700 -33.795575 -33.80183 0.0062547975 329.18442 -1.338559 + 720800 -33.796229 -33.801479 0.0052507218 276.34081 -1.3747144 + 720900 -33.796075 -33.800974 0.0048993977 257.85093 -1.3478493 + 721000 -33.795478 -33.800329 0.0048516832 255.33976 -1.2607706 + 721100 -33.794663 -33.799593 0.0049299239 259.4575 -1.1161006 + 721200 -33.792631 -33.798763 0.0061318043 322.71139 -0.8825874 + 721300 -33.789971 -33.797795 0.0078231504 411.72543 -0.55683958 + 721400 -33.790471 -33.796814 0.0063429741 333.82507 -0.24987838 + 721500 -33.793404 -33.796195 0.0027915819 146.91846 -0.054620405 + 721600 -33.793093 -33.796 0.0029074189 153.01486 0.14457708 + 721700 -33.788107 -33.796107 0.0080000916 421.03768 0.47428022 + 721800 -33.788456 -33.796337 0.0078810853 414.77449 0.71348654 + 721900 -33.791491 -33.796541 0.0050499544 265.7746 0.79787553 + 722000 -33.792002 -33.796762 0.0047604193 250.53662 0.83784874 + 722100 -33.790927 -33.797025 0.0060975895 320.9107 0.83018256 + 722200 -33.78617 -33.797262 0.011092198 583.77248 0.800562 + 722300 -33.789162 -33.797263 0.0081014661 426.37293 0.51549378 + 722400 -33.793754 -33.797148 0.0033940431 178.62546 0.23119442 + 722500 -33.793239 -33.797118 0.0038797103 204.18569 0.033722272 + 722600 -33.789172 -33.797171 0.0079990339 420.98202 -0.192828 + 722700 -33.78963 -33.797202 0.0075716126 398.48722 -0.58912839 + 722800 -33.793055 -33.797226 0.0041708863 219.51003 -0.96162026 + 722900 -33.793322 -33.797384 0.0040619224 213.77535 -1.1852345 + 723000 -33.792411 -33.797711 0.0053002686 278.94841 -1.3486964 + 723100 -33.791717 -33.798154 0.0064374014 338.79469 -1.4708489 + 723200 -33.792477 -33.798611 0.0061340901 322.83169 -1.5581478 + 723300 -33.794677 -33.79898 0.004302272 226.42474 -1.6015 + 723400 -33.79579 -33.799286 0.0034965172 184.01858 -1.5589227 + 723500 -33.793788 -33.799592 0.0058039961 305.45914 -1.3812148 + 723600 -33.788749 -33.799857 0.011107515 584.57861 -1.012248 + 723700 -33.794879 -33.799831 0.0049520751 260.6233 -0.84334699 + 723800 -33.796037 -33.7997 0.0036633831 192.80059 -0.62841744 + 723900 -33.794614 -33.79953 0.0049162232 258.73644 -0.32101004 + 724000 -33.792489 -33.799253 0.0067636073 355.96262 0.080606184 + 724100 -33.792577 -33.798851 0.0062741615 330.20353 0.47518584 + 724200 -33.795431 -33.798473 0.0030421395 160.10509 0.7519744 + 724300 -33.796975 -33.798335 0.0013603776 71.595461 0.90898707 + 724400 -33.795341 -33.798433 0.0030922189 162.74072 1.0853237 + 724500 -33.791892 -33.798771 0.0068784234 362.00529 1.3187509 + 724600 -33.792051 -33.799156 0.0071055989 373.96133 1.4487961 + 724700 -33.795023 -33.799446 0.0044224911 232.75176 1.4468436 + 724800 -33.796393 -33.799676 0.0032830273 172.7828 1.404975 + 724900 -33.794289 -33.799938 0.0056498353 297.34579 1.3669969 + 725000 -33.788775 -33.80022 0.011444758 602.32743 1.2805127 + 725100 -33.795132 -33.80025 0.005118386 269.37609 0.93339996 + 725200 -33.796366 -33.8002 0.0038342437 201.79283 0.72421902 + 725300 -33.794813 -33.800144 0.005331231 280.57793 0.5483026 + 725400 -33.791891 -33.800036 0.0081448674 428.65711 0.34549352 + 725500 -33.794408 -33.79983 0.0054213909 285.32297 0.033125748 + 725600 -33.797795 -33.799726 0.0019318704 101.67262 -0.17109223 + 725700 -33.796634 -33.799801 0.0031675662 166.70618 -0.21406333 + 725800 -33.792613 -33.800035 0.0074215221 390.58809 -0.16409407 + 725900 -33.793084 -33.800235 0.0071509495 376.34809 -0.15713866 + 726000 -33.795881 -33.800293 0.0044121048 232.20514 -0.15643062 + 726100 -33.796707 -33.800289 0.003582005 188.51773 -0.086645146 + 726200 -33.792364 -33.800236 0.0078719783 414.29519 0.13704651 + 726300 -33.790067 -33.799892 0.0098246304 517.06154 0.4144265 + 726400 -33.795421 -33.7994 0.0039783153 209.37519 0.49800004 + 726500 -33.795639 -33.798993 0.0033536524 176.49973 0.64025956 + 726600 -33.792684 -33.79856 0.0058753862 309.21633 0.86575591 + 726700 -33.790809 -33.797995 0.0071852065 378.15101 1.1032361 + 726800 -33.791875 -33.79744 0.0055659431 292.93062 1.2502837 + 726900 -33.792173 -33.797039 0.0048654916 256.06648 1.3628712 + 727000 -33.790395 -33.796808 0.0064131912 337.52053 1.4722438 + 727100 -33.783704 -33.796668 0.012964808 682.32628 1.639474 + 727200 -33.791587 -33.796573 0.0049864841 262.43421 1.4704147 + 727300 -33.792956 -33.796687 0.0037306913 196.34296 1.3859706 + 727400 -33.791027 -33.797078 0.0060503287 318.4234 1.3087652 + 727500 -33.788861 -33.797717 0.00885594 466.08022 1.1579263 + 727600 -33.794346 -33.798299 0.0039524643 208.01467 0.84430083 + 727700 -33.795745 -33.798749 0.0030043039 158.11384 0.66858206 + 727800 -33.793905 -33.799329 0.0054241399 285.46764 0.53333018 + 727900 -33.792129 -33.800008 0.0078798965 414.71192 0.34782084 + 728000 -33.794888 -33.800509 0.0056209062 295.82328 0.083101956 + 728100 -33.798374 -33.800775 0.0024009316 126.35889 -0.12323397 + 728200 -33.799956 -33.800945 0.00098913748 52.057424 -0.2128742 + 728300 -33.798959 -33.801157 0.0021976445 115.66007 -0.2047552 + 728400 -33.794434 -33.801566 0.0071317252 375.33633 -0.088142622 + 728500 -33.794938 -33.801865 0.0069263776 364.52908 -0.037051056 + 728600 -33.79767 -33.801952 0.0042822471 225.37085 -0.016172167 + 728700 -33.798208 -33.801955 0.0037471178 197.20747 0.056671338 + 728800 -33.795075 -33.801917 0.0068420815 360.09265 0.23439928 + 728900 -33.792378 -33.801743 0.0093654008 492.89269 0.4570366 + 729000 -33.797675 -33.801492 0.003817342 200.9033 0.49640814 + 729100 -33.798608 -33.801357 0.0027487357 144.66351 0.56827314 + 729200 -33.797246 -33.801314 0.0040682158 214.10657 0.67553493 + 729300 -33.794684 -33.801315 0.0066311113 348.98947 0.7998619 + 729400 -33.793932 -33.801266 0.0073341422 385.98936 0.86597559 + 729500 -33.797377 -33.801144 0.0037668193 198.24434 0.80653448 + 729600 -33.799197 -33.801054 0.0018560733 97.683483 0.74182407 + 729700 -33.797147 -33.80101 0.0038627152 203.29125 0.71002319 + 729800 -33.792831 -33.800858 0.008026899 422.44853 0.61648972 + 729900 -33.795 -33.800503 0.0055027954 289.60722 0.35437999 + 730000 -33.796545 -33.800112 0.0035674699 187.75276 0.12202606 + 730100 -33.794982 -33.79972 0.0047372126 249.31527 -0.061926524 + 730200 -33.789585 -33.799127 0.0095414587 502.15846 -0.27537902 + 730300 -33.792179 -33.798392 0.0062122152 326.94335 -0.66713964 + 730400 -33.793619 -33.797854 0.0042350226 222.88546 -0.94735344 + 730500 -33.792805 -33.797518 0.0047126316 248.0216 -1.1366576 + 730600 -33.791427 -33.797344 0.0059174075 311.42788 -1.2872953 + 730700 -33.790881 -33.797314 0.0064331542 338.57117 -1.4152727 + 730800 -33.792008 -33.797376 0.0053674704 282.48518 -1.5194451 + 730900 -33.795392 -33.797496 0.0021039518 110.72911 -1.6050469 + 731000 -33.79561 -33.797715 0.0021051434 110.79182 -1.5764041 + 731100 -33.792163 -33.79813 0.0059672452 314.05079 -1.4079024 + 731200 -33.790822 -33.798591 0.0077690216 408.87668 -1.2075903 + 731300 -33.793442 -33.798809 0.0053668912 282.4547 -1.0817427 + 731400 -33.794911 -33.798865 0.0039545416 208.124 -0.95418916 + 731500 -33.793036 -33.798866 0.0058305663 306.85751 -0.75692941 + 731600 -33.786746 -33.798686 0.011940206 628.4024 -0.39378126 + 731700 -33.793329 -33.798289 0.0049607796 261.08141 -0.31463328 + 731800 -33.794377 -33.798007 0.0036299637 191.04175 -0.20382653 + 731900 -33.792431 -33.797827 0.0053955646 283.96375 -0.052293988 + 732000 -33.789526 -33.797674 0.0081480936 428.8269 0.11602891 + 732100 -33.792047 -33.797489 0.0054415182 286.38225 0.14347571 + 732200 -33.795898 -33.797427 0.0015291373 80.477131 0.085592344 + 732300 -33.79504 -33.797562 0.0025220194 132.73163 0.074743723 + 732400 -33.791482 -33.797874 0.0063914479 336.3762 0.054440361 + 732500 -33.790188 -33.798129 0.0079412483 417.94081 -0.081724696 + 732600 -33.793539 -33.798126 0.0045867323 241.39563 -0.32425305 + 732700 -33.795157 -33.798039 0.0028818022 151.66668 -0.5062066 + 732800 -33.79227 -33.797968 0.0056986509 299.91492 -0.6087751 + 732900 -33.787638 -33.797756 0.010117383 532.46885 -0.78295845 + 733000 -33.792786 -33.797447 0.0046613109 245.32064 -1.1122143 + 733100 -33.794004 -33.797358 0.0033532079 176.47634 -1.2683963 + 733200 -33.79131 -33.797592 0.0062825936 330.6473 -1.2984016 + 733300 -33.78753 -33.798234 0.010703345 563.30751 -1.2698011 + 733400 -33.793267 -33.798934 0.0056671524 298.25717 -1.3682762 + 733500 -33.793883 -33.799653 0.0057693453 303.6355 -1.3099546 + 733600 -33.794228 -33.800445 0.0062170112 327.19575 -1.1916722 + 733700 -33.79587 -33.801147 0.0052766785 277.70688 -1.0662409 + 733800 -33.797611 -33.801654 0.0040431384 212.78677 -0.93927633 + 733900 -33.797985 -33.801994 0.0040088543 210.98242 -0.78387526 + 734000 -33.794463 -33.802199 0.0077367967 407.18071 -0.51699127 + 734100 -33.79266 -33.802075 0.0094154648 495.52752 -0.22067133 + 734200 -33.798114 -33.801658 0.0035439624 186.51558 -0.13432627 + 734300 -33.79832 -33.801234 0.0029140547 153.3641 -0.011469392 + 734400 -33.796586 -33.800712 0.0041261349 217.1548 0.1439408 + 734500 -33.794781 -33.80005 0.0052691828 277.31239 0.30186032 + 734600 -33.793337 -33.799313 0.0059759162 314.50714 0.43685784 + 734700 -33.792226 -33.798607 0.0063809762 335.82509 0.53922892 + 734800 -33.790536 -33.798028 0.0074910788 394.24879 0.62297311 + 734900 -33.790373 -33.79762 0.0072465162 381.37768 0.64348829 + 735000 -33.793369 -33.797505 0.0041363063 217.69011 0.5708678 + 735100 -33.794025 -33.797683 0.003658025 192.5186 0.52191934 + 735200 -33.790537 -33.798145 0.0076078113 400.39232 0.52294516 + 735300 -33.787892 -33.798808 0.010916052 574.50208 0.45504118 + 735400 -33.795065 -33.799174 0.0041097183 216.29081 0.21038577 + 735500 -33.794906 -33.799417 0.0045107685 237.39772 0.13035665 + 735600 -33.792811 -33.799603 0.0067912797 357.41899 0.081670307 + 735700 -33.792058 -33.799601 0.007543239 396.99394 -0.00014128425 + 735800 -33.796128 -33.799415 0.0032870413 172.99405 -0.14861083 + 735900 -33.797292 -33.799281 0.0019884585 104.6508 -0.19026196 + 736000 -33.79462 -33.799232 0.0046122475 242.73847 -0.11354062 + 736100 -33.792305 -33.799199 0.0068940049 362.82533 0.014494145 + 736200 -33.793374 -33.799152 0.0057775242 304.06595 0.11575637 + 736300 -33.794714 -33.799166 0.0044522128 234.31599 0.23161858 + 736400 -33.794512 -33.799294 0.0047819847 251.67159 0.40025326 + 736500 -33.79019 -33.799554 0.0093640623 492.82224 0.71165708 + 736600 -33.792209 -33.799798 0.0075888057 399.39208 0.94885075 + 736700 -33.796444 -33.799926 0.0034819452 183.25167 1.0527997 + 736800 -33.795836 -33.800092 0.0042551543 223.94498 1.210517 + 736900 -33.793492 -33.800298 0.0068061038 358.19917 1.4036544 + 737000 -33.793465 -33.80043 0.0069654814 366.58707 1.535512 + 737100 -33.796999 -33.80045 0.0034516539 181.65747 1.5409989 + 737200 -33.799277 -33.800488 0.0012103914 63.701817 1.5071481 + 737300 -33.798295 -33.800647 0.0023523374 123.80142 1.492036 + 737400 -33.79535 -33.800956 0.0056058604 295.03143 1.4480724 + 737500 -33.793632 -33.801262 0.0076299435 401.55712 1.3072467 + 737600 -33.796049 -33.801381 0.0053323392 280.63626 1.0612606 + 737700 -33.798522 -33.801369 0.0028470076 149.83547 0.84522579 + 737800 -33.798699 -33.80134 0.0026406329 138.97416 0.69827934 + 737900 -33.793121 -33.801266 0.0081452912 428.67941 0.60765635 + 738000 -33.793114 -33.80095 0.007836314 412.41821 0.33630232 + 738100 -33.796679 -33.800542 0.0038631693 203.31516 0.063535298 + 738200 -33.796783 -33.800208 0.0034247921 180.24375 -0.075284496 + 738300 -33.790912 -33.799831 0.0089193734 469.41866 -0.09236586 + 738400 -33.790572 -33.799222 0.0086501272 455.24848 -0.22946474 + 738500 -33.793602 -33.79868 0.0050778931 267.24498 -0.37185253 + 738600 -33.794015 -33.79832 0.0043048724 226.5616 -0.40803687 + 738700 -33.791308 -33.798093 0.0067846017 357.06754 -0.33606933 + 738800 -33.785976 -33.797869 0.011893315 625.93456 -0.16096006 + 738900 -33.793928 -33.797653 0.0037251562 196.05165 -0.2358196 + 739000 -33.794372 -33.797642 0.0032699488 172.09449 -0.17117934 + 739100 -33.79172 -33.797812 0.0060912463 320.57686 -0.016018494 + 739200 -33.789681 -33.798061 0.0083798706 441.02511 0.16322832 + 739300 -33.79359 -33.798222 0.0046320314 243.77968 0.20939322 + 739400 -33.796113 -33.798345 0.0022323082 117.48439 0.23125103 + 739500 -33.794414 -33.798554 0.0041402242 217.8963 0.31267141 + 739600 -33.787791 -33.798901 0.011109798 584.69875 0.50247678 + 739700 -33.793931 -33.798987 0.0050555906 266.07122 0.41271674 + 739800 -33.795559 -33.798973 0.0034137606 179.66318 0.38045814 + 739900 -33.793725 -33.798954 0.0052289025 275.19247 0.39046179 + 740000 -33.78923 -33.798819 0.0095882587 504.6215 0.41245369 + 740100 -33.793052 -33.798461 0.005409508 284.69758 0.24780162 + 740200 -33.795716 -33.798162 0.0024455974 128.70961 0.12243801 + 740300 -33.795023 -33.797957 0.002933919 154.40954 0.059755051 + 740400 -33.79281 -33.79777 0.0049603177 261.0571 0.0034123366 + 740500 -33.789568 -33.797486 0.0079184928 416.74321 -0.072449623 + 740600 -33.790911 -33.797066 0.0061546212 323.91222 -0.25101299 + 740700 -33.793949 -33.796745 0.0027955374 147.12664 -0.41968374 + 740800 -33.794509 -33.796679 0.0021697452 114.19176 -0.49548764 + 740900 -33.789315 -33.79692 0.0076040362 400.19364 -0.44732307 + 741000 -33.788854 -33.797431 0.0085767632 451.3874 -0.49281428 + 741100 -33.793351 -33.797937 0.0045865065 241.38375 -0.60862849 + 741200 -33.794256 -33.798495 0.0042387854 223.08349 -0.62736634 + 741300 -33.792277 -33.79924 0.0069629121 366.45185 -0.56935267 + 741400 -33.787045 -33.800221 0.013176094 693.44605 -0.42961991 + 741500 -33.796213 -33.800911 0.004697801 247.24108 -0.57683211 + 741600 -33.79733 -33.8013 0.0039693956 208.90575 -0.57855027 + 741700 -33.795478 -33.801633 0.0061548235 323.92287 -0.52571039 + 741800 -33.792931 -33.801839 0.0089086488 468.85424 -0.46536328 + 741900 -33.797672 -33.801775 0.0041036287 215.97032 -0.56257265 + 742000 -33.799407 -33.801624 0.0022172972 116.69437 -0.6101927 + 742100 -33.797852 -33.801418 0.0035656234 187.65558 -0.60594064 + 742200 -33.795622 -33.801046 0.0054231513 285.41561 -0.61259004 + 742300 -33.794531 -33.800486 0.0059551184 313.41257 -0.66182048 + 742400 -33.793892 -33.799792 0.0059002097 310.52277 -0.73328922 + 742500 -33.792568 -33.799018 0.0064503896 339.47825 -0.80224035 + 742600 -33.789826 -33.798137 0.0083114071 437.42194 -0.85827324 + 742700 -33.791606 -33.797288 0.0056814443 299.00934 -1.0013928 + 742800 -33.793879 -33.796812 0.0029330524 154.36393 -1.1170563 + 742900 -33.792835 -33.796695 0.0038603494 203.16675 -1.1368386 + 743000 -33.786347 -33.796866 0.010518892 553.59989 -1.0402513 + 743100 -33.790045 -33.797142 0.0070971336 373.51581 -1.129062 + 743200 -33.792517 -33.797415 0.0048972691 257.73891 -1.168293 + 743300 -33.792589 -33.797735 0.0051469247 270.87806 -1.1359131 + 743400 -33.791239 -33.798099 0.0068606318 361.06893 -1.0472842 + 743500 -33.788685 -33.798427 0.0097419303 512.7091 -0.89733374 + 743600 -33.793701 -33.798571 0.0048706266 256.33673 -0.88450187 + 743700 -33.795561 -33.798641 0.0030799657 162.09585 -0.82470853 + 743800 -33.793695 -33.798764 0.0050692296 266.78903 -0.6646994 + 743900 -33.78941 -33.79892 0.0095102898 500.51807 -0.3810331 + 744000 -33.792491 -33.798952 0.0064612189 340.04818 -0.22317467 + 744100 -33.793695 -33.798931 0.0052362559 275.57948 -0.059389293 + 744200 -33.79343 -33.798915 0.0054850757 288.67464 0.12669896 + 744300 -33.792531 -33.79889 0.0063587524 334.65547 0.32635602 + 744400 -33.791931 -33.798813 0.0068820702 362.19721 0.51486952 + 744500 -33.793871 -33.79867 0.0047984092 252.536 0.61871999 + 744600 -33.795132 -33.798542 0.0034095455 179.44134 0.68198508 + 744700 -33.793206 -33.798448 0.0052426915 275.91818 0.77209283 + 744800 -33.788199 -33.798262 0.010063143 529.61425 0.89920722 + 744900 -33.792347 -33.797928 0.0055811073 293.7287 0.8117274 + 745000 -33.794079 -33.797694 0.0036149572 190.25197 0.7445703 + 745100 -33.793218 -33.797608 0.0043901057 231.04735 0.70381746 + 745200 -33.791349 -33.79769 0.0063409851 333.72039 0.65486818 + 745300 -33.790596 -33.797943 0.0073467227 386.65146 0.55913497 + 745400 -33.794342 -33.798299 0.0039564616 208.22505 0.38641081 + 745500 -33.796388 -33.798687 0.0022994445 121.01771 0.29094547 + 745600 -33.794689 -33.799271 0.0045819607 241.1445 0.28546457 + 745700 -33.791456 -33.800143 0.0086863156 457.15304 0.31126508 + 745800 -33.793806 -33.800866 0.0070597571 371.54872 0.23638824 + 745900 -33.796228 -33.801278 0.0050498539 265.76931 0.17332887 + 746000 -33.797029 -33.801478 0.004449088 234.15153 0.1557979 + 746100 -33.795112 -33.801524 0.0064122939 337.47331 0.20404623 + 746200 -33.789551 -33.801291 0.011740385 617.88597 0.33635336 + 746300 -33.796278 -33.800779 0.0045013374 236.90137 0.2284706 + 746400 -33.797274 -33.800366 0.0030913634 162.6957 0.23276201 + 746500 -33.795414 -33.799975 0.0045610838 240.04577 0.30611299 + 746600 -33.792969 -33.799545 0.0065755956 346.06773 0.41093063 + 746700 -33.792966 -33.799152 0.0061861152 325.56972 0.47582793 + 746800 -33.793625 -33.798894 0.0052690886 277.30743 0.52359201 + 746900 -33.793444 -33.7988 0.005355877 281.87503 0.58146671 + 747000 -33.789604 -33.798838 0.0092347222 486.01519 0.70808107 + 747100 -33.791461 -33.798893 0.0074323749 391.15926 0.71531007 + 747200 -33.795327 -33.798936 0.0036094922 189.96435 0.65612191 + 747300 -33.795103 -33.79903 0.0039272772 206.68909 0.6575351 + 747400 -33.790652 -33.799159 0.008507397 447.73672 0.72204199 + 747500 -33.790803 -33.799137 0.0083341687 438.61986 0.66824989 + 747600 -33.796387 -33.798986 0.0025981546 136.73856 0.51097042 + 747700 -33.79601 -33.798884 0.0028737899 151.245 0.47749218 + 747800 -33.793174 -33.798778 0.0056039126 294.92892 0.47835802 + 747900 -33.790604 -33.798551 0.0079469007 418.23829 0.45498655 + 748000 -33.792857 -33.798196 0.0053384624 280.95851 0.34344834 + 748100 -33.795397 -33.797913 0.0025162538 132.42819 0.254374 + 748200 -33.795945 -33.797799 0.001854019 97.575364 0.23215568 + 748300 -33.792088 -33.797819 0.0057309736 301.61603 0.32200733 + 748400 -33.78918 -33.797806 0.0086255017 453.95246 0.42048928 + 748500 -33.792631 -33.797626 0.0049953703 262.90188 0.40094987 + 748600 -33.794127 -33.79743 0.0033028745 173.82734 0.41567608 + 748700 -33.791715 -33.797241 0.0055258957 290.82296 0.51238535 + 748800 -33.785637 -33.796821 0.011183913 588.59938 0.70714046 + 748900 -33.790261 -33.796207 0.0059460431 312.93495 0.67794326 + 749000 -33.79145 -33.79573 0.0042798676 225.24562 0.6893201 + 749100 -33.790174 -33.795425 0.0052511625 276.364 0.73332012 + 749200 -33.785351 -33.795277 0.009926286 522.41158 0.82992082 + 749300 -33.788327 -33.795268 0.0069413019 365.31453 0.74869664 + 749400 -33.792616 -33.795469 0.0028533709 150.17037 0.6317312 + 749500 -33.791303 -33.796011 0.0047078993 247.77254 0.60172052 + 749600 -33.787613 -33.796998 0.0093848854 493.91815 0.5691266 + 749700 -33.791995 -33.798019 0.0060243497 317.05615 0.34877184 + 749800 -33.794847 -33.798699 0.0038514721 202.69954 0.18015944 + 749900 -33.794042 -33.799342 0.0053000217 278.93542 0.068249735 + 750000 -33.792931 -33.799959 0.0070280044 369.8776 -0.073725261 + 750100 -33.794805 -33.800382 0.0055779436 293.56219 -0.29069764 + 750200 -33.798196 -33.800576 0.0023796556 125.23915 -0.49355409 + 750300 -33.798219 -33.800705 0.00248578 130.82438 -0.5953163 + 750400 -33.793236 -33.800874 0.0076378383 401.97262 -0.63471155 + 750500 -33.793685 -33.800958 0.0072728821 382.7653 -0.81371358 + 750600 -33.79638 -33.800933 0.0045527924 239.60941 -0.99568948 + 750700 -33.796991 -33.800919 0.0039278813 206.72089 -1.0921272 + 750800 -33.793053 -33.800953 0.0079001323 415.77692 -1.0739293 + 750900 -33.79039 -33.800949 0.010558461 555.68239 -1.0722176 + 751000 -33.79646 -33.800874 0.0044137341 232.29089 -1.2078888 + 751100 -33.796369 -33.800834 0.0044647657 234.97664 -1.1864299 + 751200 -33.794439 -33.800805 0.0063657127 335.02178 -1.0932624 + 751300 -33.792957 -33.800699 0.0077423829 407.47471 -0.97239769 + 751400 -33.79658 -33.800497 0.0039169928 206.14784 -0.94184483 + 751500 -33.798274 -33.80035 0.0020760223 109.2592 -0.89450412 + 751600 -33.796314 -33.800247 0.0039334878 207.01595 -0.7566637 + 751700 -33.793135 -33.800077 0.0069414838 365.3241 -0.53287589 + 751800 -33.793803 -33.799801 0.0059983674 315.68873 -0.37154067 + 751900 -33.795007 -33.799513 0.00450592 237.14255 -0.24292919 + 752000 -33.794541 -33.79928 0.0047387687 249.39717 -0.1012131 + 752100 -33.789012 -33.799044 0.01003193 527.97153 0.15741803 + 752200 -33.791679 -33.798737 0.0070575342 371.43173 0.26062641 + 752300 -33.795136 -33.798569 0.0034325727 180.65324 0.27681655 + 752400 -33.794365 -33.798566 0.0042013227 221.11187 0.33422027 + 752500 -33.792389 -33.798684 0.0062954779 331.32539 0.38612664 + 752600 -33.792122 -33.798822 0.0066997475 352.60173 0.36751131 + 752700 -33.793363 -33.798896 0.005533592 291.22801 0.28721272 + 752800 -33.793876 -33.798902 0.0050262263 264.52581 0.19718702 + 752900 -33.793319 -33.798836 0.0055169517 290.35225 0.10161295 + 753000 -33.790403 -33.798652 0.0082493091 434.15378 0.022591589 + 753100 -33.784781 -33.798063 0.013281502 698.99359 -0.087521066 + 753200 -33.793544 -33.797401 0.0038568374 202.98191 -0.42465894 + 753300 -33.79412 -33.796994 0.0028738639 151.2489 -0.53031636 + 753400 -33.790952 -33.796704 0.0057515344 302.69812 -0.54076561 + 753500 -33.787957 -33.79643 0.0084727587 445.91373 -0.5428948 + 753600 -33.790946 -33.796222 0.0052758954 277.66567 -0.62110231 + 753700 -33.792993 -33.7962 0.0032067736 168.76964 -0.63586363 + 753800 -33.791813 -33.796377 0.0045643702 240.21873 -0.5447426 + 753900 -33.784553 -33.796758 0.012205785 642.3796 -0.24616449 + 754000 -33.791201 -33.796983 0.0057812731 304.26325 -0.20259079 + 754100 -33.793123 -33.797092 0.0039690013 208.885 -0.10872876 + 754200 -33.791971 -33.79723 0.005258719 276.76169 0.051500066 + 754300 -33.787976 -33.797375 0.0093995774 494.69137 0.30167945 + 754400 -33.7908 -33.797398 0.0065979828 347.24595 0.429012 + 754500 -33.794861 -33.797416 0.0025549646 134.46551 0.45169904 + 754600 -33.793799 -33.797601 0.0038022505 200.10905 0.54248575 + 754700 -33.790008 -33.798036 0.0080277942 422.49565 0.68857376 + 754800 -33.791355 -33.798583 0.0072288731 380.44914 0.71786788 + 754900 -33.793901 -33.799071 0.0051701446 272.1001 0.68859536 + 755000 -33.794164 -33.799567 0.0054034121 284.37676 0.67826626 + 755100 -33.793942 -33.800088 0.0061459344 323.45505 0.65328022 + 755200 -33.794475 -33.800552 0.0060769292 319.82337 0.59175309 + 755300 -33.796138 -33.800886 0.0047485653 249.91276 0.49707006 + 755400 -33.799111 -33.801069 0.0019577831 103.03638 0.38351028 + 755500 -33.799156 -33.801194 0.0020382269 107.27006 0.33823129 + 755600 -33.795558 -33.801331 0.0057731978 303.83825 0.34687263 + 755700 -33.794255 -33.801334 0.0070790182 372.56241 0.28547141 + 755800 -33.795907 -33.801122 0.0052154646 274.48525 0.1736117 + 755900 -33.797093 -33.800817 0.0037238067 195.98063 0.095852273 + 756000 -33.795184 -33.800467 0.0052826287 278.02004 0.10028727 + 756100 -33.789739 -33.79987 0.010130987 533.1848 0.19004279 + 756200 -33.793827 -33.799156 0.0053293605 280.47949 0.11785123 + 756300 -33.795431 -33.798689 0.0032579429 171.46263 0.12099074 + 756400 -33.793909 -33.798406 0.0044968842 236.66701 0.22572877 + 756500 -33.792059 -33.798234 0.0061747587 324.97204 0.39208482 + 756600 -33.792133 -33.798156 0.0060229364 316.98177 0.54970374 + 756700 -33.792802 -33.798153 0.0053517517 281.65792 0.70098747 + 756800 -33.793378 -33.798203 0.0048246236 253.91564 0.84225499 + 756900 -33.79292 -33.798286 0.0053660685 282.4114 0.98798814 + 757000 -33.790564 -33.798361 0.007797333 410.36668 1.166001 + 757100 -33.791588 -33.798326 0.006738109 354.62067 1.2546425 + 757200 -33.795053 -33.798242 0.0031897417 167.87326 1.2359636 + 757300 -33.795175 -33.798238 0.0030632366 161.21541 1.2331005 + 757400 -33.789003 -33.79832 0.0093166975 490.32948 1.2952013 + 757500 -33.790206 -33.79832 0.0081141474 427.04034 1.1454318 + 757600 -33.793477 -33.798231 0.0047544305 250.22144 0.94531409 + 757700 -33.793836 -33.798175 0.0043389585 228.35552 0.78967999 + 757800 -33.790652 -33.798148 0.0074960782 394.51191 0.65823915 + 757900 -33.785521 -33.797973 0.012451907 655.33276 0.45535917 + 758000 -33.794 -33.797669 0.0036690044 193.09643 0.037450653 + 758100 -33.793909 -33.797487 0.0035783393 188.3248 -0.13244531 + 758200 -33.790828 -33.797348 0.0065195997 343.12072 -0.26368929 + 758300 -33.788983 -33.797151 0.0081677053 429.85904 -0.45394946 + 758400 -33.792779 -33.796933 0.004153309 218.58495 -0.70713103 + 758500 -33.794997 -33.796888 0.0018912681 99.535754 -0.83647798 + 758600 -33.793197 -33.797077 0.0038792406 204.16097 -0.82966663 + 758700 -33.787527 -33.797631 0.010104438 531.78754 -0.70664853 + 758800 -33.792692 -33.798161 0.0054680822 287.78029 -0.7650097 + 758900 -33.794867 -33.798596 0.003728799 196.24337 -0.74547494 + 759000 -33.793921 -33.799114 0.0051929538 273.30053 -0.6330596 + 759100 -33.789345 -33.799812 0.010467005 550.86913 -0.39230362 + 759200 -33.794832 -33.80042 0.0055878637 294.08428 -0.3251241 + 759300 -33.797553 -33.800745 0.0031912691 167.95364 -0.26610458 + 759400 -33.796002 -33.801067 0.0050658531 266.61133 -0.12295455 + 759500 -33.793001 -33.801388 0.0083866442 441.3816 0.076456096 + 759600 -33.795904 -33.801531 0.005627311 296.16036 0.15114311 + 759700 -33.799473 -33.801534 0.0020615611 108.49812 0.15055174 + 759800 -33.798905 -33.801537 0.0026319312 138.51619 0.19790175 + 759900 -33.79684 -33.801528 0.0046884044 246.74654 0.25679265 + 760000 -33.794418 -33.80143 0.0070126578 369.06993 0.29858145 + 760100 -33.794737 -33.801185 0.006447308 339.31607 0.25993957 + 760200 -33.797693 -33.800897 0.0032038485 168.61569 0.15267875 + 760300 -33.799135 -33.800729 0.0015943079 83.907001 0.075747621 + 760400 -33.797147 -33.800674 0.0035270841 185.62729 0.052030288 + 760500 -33.793264 -33.800659 0.0073953333 389.2098 0.0057803638 + 760600 -33.794331 -33.800612 0.0062804268 330.53326 -0.1569317 + 760700 -33.79653 -33.800567 0.0040371013 212.46904 -0.31654951 + 760800 -33.796719 -33.800573 0.0038543405 202.8505 -0.41109658 + 760900 -33.791299 -33.800627 0.009328234 490.93663 -0.39816443 + 761000 -33.791895 -33.800597 0.0087024422 458.00177 -0.51817413 + 761100 -33.796209 -33.80049 0.0042816002 225.3368 -0.66660324 + 761200 -33.795865 -33.8004 0.0045342867 238.63547 -0.68754222 + 761300 -33.793972 -33.800289 0.0063170865 332.46263 -0.6518294 + 761400 -33.792627 -33.80008 0.0074529119 392.2401 -0.60146734 + 761500 -33.79584 -33.799787 0.0039467052 207.71157 -0.62299336 + 761600 -33.797472 -33.799577 0.0021045139 110.75869 -0.6111063 + 761700 -33.795457 -33.799409 0.0039528252 208.03366 -0.50651091 + 761800 -33.79183 -33.799121 0.0072911656 383.72754 -0.32164998 + 761900 -33.792563 -33.798654 0.0060909754 320.5626 -0.21186448 + 762000 -33.793993 -33.798149 0.0041558539 218.71888 -0.13653264 + 762100 -33.793379 -33.797676 0.0042972479 226.16033 -0.039944944 + 762200 -33.787159 -33.797026 0.0098664076 519.26023 0.17612498 + 762300 -33.78957 -33.796177 0.0066063154 347.68449 0.21716182 + 762400 -33.792338 -33.795617 0.0032782661 172.53222 0.20403166 + 762500 -33.791388 -33.795367 0.0039782772 209.37318 0.23036687 + 762600 -33.787355 -33.795384 0.0080298235 422.60245 0.28811015 + 762700 -33.788213 -33.795633 0.0074201815 390.51753 0.21719289 + 762800 -33.790705 -33.796049 0.0053437585 281.23724 0.097384166 + 762900 -33.792124 -33.796591 0.0044663865 235.06194 -0.0047711314 + 763000 -33.791958 -33.797257 0.0052981819 278.83859 -0.085111334 + 763100 -33.789671 -33.79806 0.0083892371 441.51807 -0.14509989 + 763200 -33.792001 -33.798798 0.0067966681 357.70258 -0.30814561 + 763300 -33.795779 -33.799212 0.0034326255 180.65602 -0.46393831 + 763400 -33.795479 -33.799508 0.004029201 212.05325 -0.51449735 + 763500 -33.791082 -33.799761 0.0086790626 456.77132 -0.47881376 + 763600 -33.791609 -33.79979 0.0081810758 430.56272 -0.53518988 + 763700 -33.797497 -33.79966 0.0021637317 113.87527 -0.6604645 + 763800 -33.796607 -33.79958 0.0029724598 156.43791 -0.61203963 + 763900 -33.79286 -33.799507 0.0066468879 349.81978 -0.44628114 + 764000 -33.791755 -33.799357 0.0076025557 400.11572 -0.26844667 + 764100 -33.794619 -33.799177 0.0045586846 239.9195 -0.15874299 + 764200 -33.796366 -33.799093 0.0027268481 143.51158 -0.047774055 + 764300 -33.795899 -33.799133 0.0032333606 170.16888 0.10391954 + 764400 -33.790076 -33.799287 0.0092114218 484.78891 0.42888547 + 764500 -33.791956 -33.799368 0.0074119796 390.08587 0.64093392 + 764600 -33.795502 -33.799341 0.0038387613 202.03058 0.7341257 + 764700 -33.795207 -33.799321 0.0041139789 216.51504 0.84497596 + 764800 -33.791674 -33.79929 0.0076157501 400.81014 0.99756798 + 764900 -33.788765 -33.799121 0.01035672 545.06492 1.1138077 + 765000 -33.795875 -33.798892 0.0030166085 158.76141 0.98058015 + 765100 -33.796288 -33.798823 0.0025354934 133.44076 0.93852728 + 765200 -33.792899 -33.798907 0.0060082408 316.20835 0.91667924 + 765300 -33.790648 -33.799092 0.0084442858 444.41523 0.7948476 + 765400 -33.794101 -33.799249 0.0051482995 270.95041 0.55035062 + 765500 -33.795857 -33.7994 0.0035429143 186.46042 0.37076005 + 765600 -33.793486 -33.799602 0.0061158945 321.87407 0.26878903 + 765700 -33.786642 -33.799786 0.013144299 691.77273 0.16123819 + 765800 -33.79446 -33.799684 0.005224015 274.93525 -0.19181498 + 765900 -33.795481 -33.799489 0.0040082544 210.95085 -0.3404115 + 766000 -33.793641 -33.799209 0.0055682289 293.05092 -0.40908418 + 766100 -33.789313 -33.798694 0.0093815954 493.745 -0.42806283 + 766200 -33.792902 -33.797946 0.0050440077 265.46163 -0.58022652 + 766300 -33.795736 -33.797496 0.0017599828 92.626326 -0.65479604 + 766400 -33.79466 -33.797253 0.0025928569 136.45975 -0.60240302 + 766500 -33.792057 -33.797128 0.005071006 266.88252 -0.45301297 + 766600 -33.790134 -33.797151 0.0070166982 369.28257 -0.24898384 + 766700 -33.791026 -33.797304 0.006278454 330.42943 -0.066674565 + 766800 -33.794139 -33.797552 0.0034128583 179.61569 0.049550685 + 766900 -33.795603 -33.797878 0.0022747199 119.71648 0.14971787 + 767000 -33.793168 -33.798368 0.0052002012 273.68195 0.32054721 + 767100 -33.788201 -33.799193 0.010992493 578.52512 0.60591705 + 767200 -33.794117 -33.799773 0.0056559486 297.66753 0.6366396 + 767300 -33.795741 -33.800095 0.0043536149 229.12687 0.68327281 + 767400 -33.794892 -33.800332 0.0054401826 286.31196 0.74364091 + 767500 -33.790894 -33.800475 0.0095804579 504.21095 0.83256044 + 767600 -33.791495 -33.800386 0.0088911525 467.93343 0.79155341 + 767700 -33.797083 -33.800203 0.0031197417 164.18922 0.63878642 + 767800 -33.796592 -33.800085 0.003493637 183.867 0.58889369 + 767900 -33.792802 -33.800011 0.0072085925 379.3818 0.56071691 + 768000 -33.792385 -33.799944 0.0075597967 397.86536 0.42787971 + 768100 -33.794641 -33.79991 0.0052692518 277.31602 0.25249908 + 768200 -33.794917 -33.799965 0.00504808 265.67595 0.1342758 + 768300 -33.794358 -33.800097 0.0057397795 302.07948 0.041541116 + 768400 -33.794127 -33.800268 0.0061403306 323.16012 -0.04732372 + 768500 -33.79493 -33.800429 0.0054984296 289.37745 -0.13708229 + 768600 -33.797642 -33.800541 0.0028993618 152.59082 -0.234118 + 768700 -33.798434 -33.800645 0.0022106682 116.3455 -0.26056823 + 768800 -33.795199 -33.800802 0.0056024418 294.85151 -0.18095462 + 768900 -33.792622 -33.800934 0.0083114962 437.42663 -0.086880383 + 769000 -33.795445 -33.80091 0.0054651629 287.62665 -0.09148482 + 769100 -33.796844 -33.80082 0.0039765391 209.28171 -0.069289791 + 769200 -33.794616 -33.800712 0.00609585 320.81915 0.029563134 + 769300 -33.787459 -33.800445 0.012986626 683.47456 0.25726871 + 769400 -33.794691 -33.800062 0.0053705561 282.64758 0.18513182 + 769500 -33.795657 -33.799775 0.0041178565 216.71911 0.20451118 + 769600 -33.793912 -33.799544 0.0056323469 296.42539 0.26160787 + 769700 -33.789956 -33.799265 0.0093091411 489.93179 0.34469638 + 769800 -33.793687 -33.798904 0.0052166825 274.54935 0.24997062 + 769900 -33.796515 -33.79871 0.0021945366 115.49651 0.16057839 + 770000 -33.794999 -33.798638 0.0036389581 191.51512 0.12983484 + 770100 -33.791547 -33.7986 0.0070528722 371.18637 0.07825413 + 770200 -33.791813 -33.798488 0.0066745443 351.27532 -0.087685166 + 770300 -33.793657 -33.798314 0.0046573322 245.11124 -0.28347993 + 770400 -33.794532 -33.798172 0.0036408189 191.61305 -0.44603669 + 770500 -33.792662 -33.798074 0.0054125371 284.857 -0.55553944 + 770600 -33.78841 -33.79793 0.0095199646 501.02725 -0.66687496 + 770700 -33.792243 -33.797715 0.0054721773 287.99581 -0.92479589 + 770800 -33.794434 -33.797591 0.0031565967 166.12887 -1.0697366 + 770900 -33.792903 -33.797616 0.0047137394 248.0799 -1.0922391 + 771000 -33.786446 -33.797747 0.011300514 594.73598 -0.98343872 + 771100 -33.790051 -33.797767 0.0077169104 406.13411 -1.0295672 + 771200 -33.792273 -33.797717 0.0054435369 286.48849 -1.0092316 + 771300 -33.793202 -33.797652 0.0044498917 234.19383 -0.92642289 + 771400 -33.792096 -33.797579 0.0054836347 288.5988 -0.75838323 + 771500 -33.787953 -33.797413 0.0094594774 497.84386 -0.45275853 + 771600 -33.79086 -33.797019 0.0061589846 324.14187 -0.23787592 + 771700 -33.794223 -33.796712 0.0024891386 131.00115 -0.11492329 + 771800 -33.793272 -33.796548 0.0032759356 172.40957 0.077358697 + 771900 -33.790766 -33.796457 0.0056915296 299.54012 0.35358698 + 772000 -33.790003 -33.796439 0.0064355539 338.69746 0.61781424 + 772100 -33.790815 -33.796508 0.0056924499 299.58856 0.81721348 + 772200 -33.792464 -33.796702 0.0042380946 223.04714 0.9382313 + 772300 -33.794183 -33.797037 0.0028536753 150.18639 0.98090037 + 772400 -33.793409 -33.797547 0.0041383849 217.79951 1.0079267 + 772500 -33.788215 -33.798414 0.010199505 536.79087 1.0548057 + 772600 -33.792445 -33.799312 0.006866115 361.35751 0.8522695 + 772700 -33.795319 -33.799876 0.0045577414 239.86987 0.66597545 + 772800 -33.79488 -33.800355 0.005474801 288.13389 0.50907621 + 772900 -33.794117 -33.800751 0.0066335798 349.11939 0.30671376 + 773000 -33.795556 -33.800968 0.0054117268 284.81435 0.035558825 + 773100 -33.798484 -33.801016 0.0025320267 133.25831 -0.21665969 + 773200 -33.798262 -33.801007 0.002745479 144.49211 -0.36905694 + 773300 -33.793575 -33.80092 0.0073446411 386.54191 -0.48791717 + 773400 -33.793441 -33.80062 0.0071791712 377.83338 -0.7443132 + 773500 -33.795614 -33.800205 0.004590615 241.59997 -0.98838977 + 773600 -33.79585 -33.799808 0.0039583849 208.32627 -1.1252265 + 773700 -33.789321 -33.79933 0.010008664 526.74707 -1.0982287 + 773800 -33.790105 -33.798583 0.0084781077 446.19525 -1.1938109 + 773900 -33.793844 -33.79804 0.0041956895 220.8154 -1.2721088 + 774000 -33.79345 -33.79772 0.0042701588 224.73465 -1.1996739 + 774100 -33.790945 -33.797549 0.0066041468 347.57036 -0.99852367 + 774200 -33.789671 -33.797504 0.0078336705 412.27909 -0.72550341 + 774300 -33.794931 -33.797551 0.0026198769 137.88178 -0.58659666 + 774400 -33.795527 -33.797741 0.002214057 116.52384 -0.42021061 + 774500 -33.792468 -33.798182 0.005714799 300.76477 -0.11470148 + 774600 -33.790306 -33.79881 0.0085043753 447.57769 0.27951452 + 774700 -33.793704 -33.799294 0.0055896347 294.17749 0.5309303 + 774800 -33.795339 -33.7996 0.0042610155 224.25345 0.72230693 + 774900 -33.794662 -33.79984 0.0051788999 272.56088 0.9113325 + 775000 -33.793826 -33.800021 0.0061952078 326.04826 1.0743913 + 775100 -33.794149 -33.800072 0.005922664 311.70452 1.163324 + 775200 -33.79474 -33.800011 0.005270245 277.36829 1.187867 + 775300 -33.794734 -33.799881 0.0051470806 270.88626 1.1695855 + 775400 -33.792682 -33.799675 0.0069932472 368.04836 1.1332922 + 775500 -33.790591 -33.799331 0.0087393615 459.9448 1.0300841 + 775600 -33.794866 -33.798942 0.004075795 214.50546 0.78650936 + 775700 -33.796143 -33.798723 0.0025800325 135.78481 0.63179323 + 775800 -33.793203 -33.798638 0.0054347767 286.02745 0.53796313 + 775900 -33.789934 -33.798569 0.0086347587 454.43965 0.37259595 + 776000 -33.792643 -33.798466 0.0058226278 306.43971 0.1091958 + 776100 -33.794203 -33.798413 0.004210236 221.58096 -0.066966441 + 776200 -33.793345 -33.798437 0.0050921116 267.99329 -0.14786627 + 776300 -33.786594 -33.798523 0.011928983 627.81176 -0.090227303 + 776400 -33.792294 -33.798523 0.0062297028 327.8637 -0.24262157 + 776500 -33.794762 -33.798542 0.0037797955 198.92726 -0.27504545 + 776600 -33.79351 -33.7987 0.0051891663 273.10119 -0.17750479 + 776700 -33.790996 -33.798987 0.00799031 420.52289 0.012772957 + 776800 -33.793396 -33.7993 0.0059037147 310.70724 0.14505425 + 776900 -33.797173 -33.799553 0.0023801304 125.26414 0.20681405 + 777000 -33.79642 -33.799874 0.0034541033 181.78638 0.34590039 + 777100 -33.793657 -33.800354 0.006696813 352.4473 0.56028941 + 777200 -33.793768 -33.800817 0.0070485525 370.95903 0.72757381 + 777300 -33.795629 -33.801092 0.0054627115 287.49763 0.81678632 + 777400 -33.796472 -33.801224 0.0047524383 250.11659 0.87249771 + 777500 -33.795018 -33.801244 0.0062255427 327.64476 0.92869593 + 777600 -33.789196 -33.801039 0.01184362 623.31914 1.0195842 + 777700 -33.795773 -33.800604 0.0048311727 254.26031 0.8201406 + 777800 -33.797138 -33.800233 0.0030946706 162.86975 0.70487111 + 777900 -33.794967 -33.799873 0.0049064041 258.21967 0.609063 + 778000 -33.791649 -33.799393 0.0077432488 407.52028 0.43768279 + 778100 -33.792777 -33.798862 0.0060843148 320.21206 0.14188778 + 778200 -33.793553 -33.798459 0.0049059583 258.19621 -0.12562303 + 778300 -33.792856 -33.798201 0.0053443345 281.26756 -0.35248945 + 778400 -33.788133 -33.798049 0.0099159305 521.86658 -0.51674508 + 778500 -33.786602 -33.797886 0.011283887 593.86089 -0.80452263 + 778600 -33.793595 -33.797769 0.0041743133 219.69039 -1.1200501 + 778700 -33.793378 -33.7978 0.0044219107 232.72122 -1.1927376 + 778800 -33.790465 -33.797947 0.0074818683 393.76405 -1.1440148 + 778900 -33.78995 -33.798064 0.0081138437 427.02436 -1.0724754 + 779000 -33.795138 -33.798091 0.0029528369 155.40517 -1.0778545 + 779100 -33.795335 -33.798147 0.0028113012 147.95628 -0.95815909 + 779200 -33.793056 -33.798253 0.0051963838 273.48104 -0.70501901 + 779300 -33.79169 -33.798335 0.0066447571 349.70764 -0.37863554 + 779400 -33.792455 -33.798303 0.005848133 307.78202 -0.071745263 + 779500 -33.79355 -33.798209 0.0046589077 245.19416 0.2020673 + 779600 -33.794002 -33.798137 0.0041347051 217.60584 0.44658389 + 779700 -33.791672 -33.798107 0.0064343022 338.63159 0.73279381 + 779800 -33.789228 -33.798088 0.0088605434 466.3225 1.038511 + 779900 -33.793402 -33.798068 0.004666316 245.58405 1.1341515 + 780000 -33.79507 -33.79814 0.0030693447 161.53687 1.1636698 + 780100 -33.792677 -33.798378 0.0057003336 300.00347 1.1913664 + 780200 -33.786145 -33.798786 0.012641227 665.29651 1.1825511 + 780300 -33.791787 -33.799019 0.0072329261 380.66245 0.87051434 + 780400 -33.794157 -33.799111 0.0049531734 260.6811 0.60995979 + 780500 -33.794767 -33.79914 0.0043730612 230.15031 0.36168913 + 780600 -33.79277 -33.799124 0.0063539167 334.40097 0.10899706 + 780700 -33.788796 -33.79895 0.01015322 534.35489 -0.22325841 + 780800 -33.794354 -33.798584 0.0042301411 222.62855 -0.72830747 + 780900 -33.795887 -33.798346 0.0024591023 129.42036 -0.9947707 + 781000 -33.794228 -33.7982 0.0039716808 209.02602 -1.1719657 + 781100 -33.791869 -33.798095 0.0062257039 327.65324 -1.3501968 + 781200 -33.791546 -33.798023 0.0064766027 340.85783 -1.5377753 + 781300 -33.792793 -33.797993 0.0052002729 273.68572 -1.6826009 + 781400 -33.794912 -33.798046 0.003133109 164.89273 -1.7589197 + 781500 -33.79604 -33.798203 0.0021630105 113.83732 -1.7437892 + 781600 -33.793518 -33.798514 0.0049956575 262.917 -1.5773311 + 781700 -33.789669 -33.798998 0.0093286072 490.95628 -1.249263 + 781800 -33.793434 -33.799315 0.0058809873 309.51112 -1.0458456 + 781900 -33.795167 -33.799463 0.0042963986 226.11563 -0.84558262 + 782000 -33.794491 -33.799559 0.0050684117 266.74599 -0.59209618 + 782100 -33.792513 -33.799589 0.007075618 372.38347 -0.27881725 + 782200 -33.787903 -33.799471 0.011567668 608.79605 0.12701544 + 782300 -33.792604 -33.799149 0.0065448104 344.44753 0.3481487 + 782400 -33.795839 -33.798907 0.0030681531 161.47416 0.45377286 + 782500 -33.79479 -33.798813 0.0040229626 211.72493 0.5757453 + 782600 -33.790251 -33.798824 0.0085724684 451.16137 0.74110422 + 782700 -33.791716 -33.798847 0.007130818 375.28859 0.74098104 + 782800 -33.794493 -33.798896 0.0044031024 231.73135 0.65721215 + 782900 -33.794236 -33.799004 0.004768004 250.9358 0.5837517 + 783000 -33.793276 -33.799144 0.0058680706 308.83132 0.46699731 + 783100 -33.792893 -33.799248 0.0063549124 334.45337 0.28746234 + 783200 -33.794301 -33.799245 0.0049437537 260.18535 0.050846587 + 783300 -33.796624 -33.799186 0.0025620913 134.84058 -0.17305643 + 783400 -33.79651 -33.799147 0.0026372813 138.79776 -0.31775768 + 783500 -33.791692 -33.799087 0.0073952647 389.20618 -0.42170484 + 783600 -33.791504 -33.798875 0.0073711646 387.93782 -0.66665747 + 783700 -33.794158 -33.798593 0.0044349231 233.40605 -0.90501931 + 783800 -33.794647 -33.79839 0.0037433857 197.01105 -1.0239036 + 783900 -33.788145 -33.798272 0.010126932 532.97139 -0.95401262 + 784000 -33.789431 -33.798121 0.0086893243 457.31139 -0.98762882 + 784100 -33.793561 -33.798073 0.0045121667 237.47131 -1.0146858 + 784200 -33.793491 -33.79821 0.0047192319 248.36897 -0.89157986 + 784300 -33.791362 -33.798523 0.0071619053 376.92469 -0.63878752 + 784400 -33.789799 -33.798947 0.0091483784 481.471 -0.3012923 + 784500 -33.795415 -33.799256 0.003840983 202.14751 -0.12716033 + 784600 -33.796301 -33.799492 0.0031914753 167.9645 0.067612012 + 784700 -33.793448 -33.799787 0.0063395223 333.6434 0.36364295 + 784800 -33.790698 -33.800058 0.0093597394 492.59473 0.73222787 + 784900 -33.795723 -33.800126 0.0044030002 231.72597 0.88596241 + 785000 -33.796999 -33.800135 0.0031365338 165.07297 0.99837024 + 785100 -33.795888 -33.800169 0.0042807151 225.29022 1.1093927 + 785200 -33.793148 -33.800231 0.0070830292 372.77351 1.2123641 + 785300 -33.792774 -33.800274 0.0075004339 394.74115 1.2145518 + 785400 -33.796697 -33.800303 0.003606292 189.79593 1.0838129 + 785500 -33.798052 -33.800412 0.0023595833 124.18276 0.97628206 + 785600 -33.7938 -33.800679 0.0068784504 362.00671 0.91627531 + 785700 -33.791219 -33.801117 0.0098978268 520.91379 0.68349406 + 785800 -33.796363 -33.801387 0.0050243404 264.42655 0.32833448 + 785900 -33.79751 -33.801552 0.0040421198 212.73316 0.10688261 + 786000 -33.795748 -33.801681 0.005933102 312.25387 -0.05457458 + 786100 -33.789977 -33.8017 0.011723194 616.98123 -0.18825171 + 786200 -33.796889 -33.801454 0.0045656806 240.2877 -0.55004761 + 786300 -33.798447 -33.80122 0.0027730641 145.94389 -0.67922404 + 786400 -33.796346 -33.80095 0.004604059 242.30752 -0.68146187 + 786500 -33.793094 -33.800497 0.0074027836 389.6019 -0.6075074 + 786600 -33.793756 -33.799893 0.0061366514 322.96649 -0.55002055 + 786700 -33.795331 -33.799315 0.0039843173 209.69107 -0.46519001 + 786800 -33.796003 -33.798878 0.0028744146 151.27788 -0.32439991 + 786900 -33.793309 -33.798541 0.0052324601 275.37971 -0.043799663 + 787000 -33.789183 -33.798122 0.0089388735 470.44494 0.4181786 + 787100 -33.792149 -33.797702 0.0055533694 292.26888 0.76346101 + 787200 -33.794275 -33.797467 0.0031916802 167.97528 1.012043 + 787300 -33.792656 -33.797393 0.0047369009 249.29887 1.2862451 + 787400 -33.78493 -33.79738 0.01244984 655.22396 1.7672448 + 787500 -33.79079 -33.797248 0.0064574288 339.84872 1.9185187 + 787600 -33.792753 -33.797128 0.004375528 230.28014 2.0011196 + 787700 -33.792142 -33.797079 0.004937771 259.87048 2.0338611 + 787800 -33.787796 -33.797023 0.0092266288 485.58924 2.0322658 + 787900 -33.788204 -33.796802 0.0085981265 452.51173 1.8127753 + 788000 -33.793829 -33.79659 0.0027612119 145.32012 1.4982763 + 788100 -33.793165 -33.796504 0.0033392037 175.73931 1.2794683 + 788200 -33.789793 -33.796501 0.0067075497 353.01236 0.97747066 + 788300 -33.789178 -33.796453 0.0072751384 382.88404 0.49956589 + 788400 -33.791235 -33.796332 0.0050975217 268.27802 0.0055693951 + 788500 -33.792059 -33.796257 0.0041979458 220.93414 -0.37743053 + 788600 -33.789393 -33.796225 0.0068325021 359.58849 -0.66011871 + 788700 -33.78608 -33.796113 0.010032679 528.01094 -0.98572244 + 788800 -33.791434 -33.795913 0.0044787642 235.71336 -1.365065 + 788900 -33.792407 -33.795798 0.0033912624 178.47911 -1.5024164 + 789000 -33.789736 -33.795796 0.0060603361 318.95008 -1.4717672 + 789100 -33.785733 -33.795808 0.010074465 530.21009 -1.3187309 + 789200 -33.791706 -33.795727 0.004021058 211.62469 -1.3052846 + 789300 -33.793095 -33.795773 0.0026777351 140.92681 -1.1911928 + 789400 -33.791354 -33.796012 0.0046584939 245.17238 -0.93757759 + 789500 -33.78796 -33.796462 0.0085018441 447.44447 -0.52327065 + 789600 -33.790549 -33.796986 0.0064367613 338.76101 -0.17947714 + 789700 -33.794024 -33.797416 0.0033917311 178.50379 0.035053323 + 789800 -33.793802 -33.797925 0.004122833 216.98102 0.25691582 + 789900 -33.787076 -33.798731 0.011655238 613.40479 0.63146206 + 790000 -33.790303 -33.799751 0.0094479595 497.23768 0.85781287 + 790100 -33.796008 -33.800289 0.0042811593 225.3136 0.86218715 + 790200 -33.79553 -33.800775 0.0052455015 276.06606 0.90054085 + 790300 -33.79376 -33.801273 0.0075126391 395.38349 0.88577457 + 790400 -33.795405 -33.801684 0.0062789251 330.45423 0.73070934 + 790500 -33.798326 -33.801878 0.0035513361 186.90365 0.51956434 + 790600 -33.798406 -33.801974 0.0035679518 187.77812 0.33722663 + 790700 -33.791744 -33.80199 0.01024514 539.19259 0.17139947 + 790800 -33.793313 -33.801673 0.0083596839 439.9627 -0.29883128 + 790900 -33.796582 -33.801223 0.0046409211 244.24754 -0.70767957 + 791000 -33.796364 -33.80072 0.0043567924 229.2941 -0.99543016 + 791100 -33.793724 -33.800069 0.0063452945 333.94719 -1.2435758 + 791200 -33.789934 -33.799174 0.0092403527 486.31152 -1.506329 + 791300 -33.793642 -33.798192 0.0045498597 239.45506 -1.8578087 + 791400 -33.79583 -33.7977 0.0018706091 98.448491 -1.9979324 + 791500 -33.794133 -33.797534 0.0034015189 179.0189 -1.935355 + 791600 -33.790416 -33.79757 0.0071534239 376.47832 -1.6775072 + 791700 -33.790813 -33.797787 0.0069730474 366.98526 -1.3714198 + 791800 -33.793635 -33.798041 0.0044056273 231.86423 -1.0926624 + 791900 -33.795041 -33.798296 0.0032549749 171.30643 -0.80928371 + 792000 -33.794223 -33.798625 0.0044019436 231.67036 -0.46736327 + 792100 -33.788855 -33.799019 0.010164251 534.93546 0.10395543 + 792200 -33.792819 -33.799226 0.0064067351 337.18075 0.524865 + 792300 -33.795724 -33.799269 0.0035448139 186.56039 0.77891271 + 792400 -33.794895 -33.799268 0.004373457 230.17114 1.0215831 + 792500 -33.792024 -33.799245 0.0072209572 380.03254 1.2786386 + 792600 -33.79217 -33.799135 0.0069652936 366.57719 1.4180324 + 792700 -33.793225 -33.798942 0.0057160934 300.8329 1.4403715 + 792800 -33.793444 -33.798776 0.0053324607 280.64265 1.3863433 + 792900 -33.792882 -33.79862 0.0057380072 301.9862 1.2540711 + 793000 -33.791289 -33.79844 0.0071514419 376.37401 1.0425097 + 793100 -33.791298 -33.798235 0.0069374947 365.11416 0.71098983 + 793200 -33.79431 -33.798011 0.0037011524 194.78835 0.3280896 + 793300 -33.794883 -33.797896 0.003012904 158.56645 0.03934303 + 793400 -33.790441 -33.797864 0.0074227954 390.6551 -0.21435688 + 793500 -33.788605 -33.797703 0.0090979724 478.81817 -0.6689317 + 793600 -33.792259 -33.797493 0.0052340729 275.46459 -1.1326774 + 793700 -33.792812 -33.797347 0.0045350892 238.6777 -1.4117605 + 793800 -33.791553 -33.797277 0.0057233977 301.21731 -1.5788415 + 793900 -33.788203 -33.797353 0.0091499898 481.5558 -1.6356493 + 794000 -33.787042 -33.79748 0.010437621 549.32268 -1.6470774 + 794100 -33.793919 -33.797656 0.0037370971 196.68009 -1.7132995 + 794200 -33.794255 -33.798032 0.003777315 198.79672 -1.5589848 + 794300 -33.791003 -33.798708 0.007704711 405.49207 -1.1813979 + 794400 -33.790857 -33.799655 0.0087978638 463.02373 -0.68528907 + 794500 -33.796908 -33.800331 0.0034234332 180.17223 -0.40229082 + 794600 -33.796674 -33.80086 0.004185943 220.30245 -0.061826915 + 794700 -33.794521 -33.801463 0.0069418947 365.34573 0.39047759 + 794800 -33.794658 -33.801945 0.0072863197 383.4725 0.83829573 + 794900 -33.799263 -33.802149 0.0028852228 151.8467 1.0716159 + 795000 -33.799888 -33.802231 0.0023427277 123.29567 1.2361238 + 795100 -33.79795 -33.802258 0.00430752 226.70093 1.4099127 + 795200 -33.796364 -33.802182 0.0058177281 306.18184 1.5399863 + 795300 -33.795787 -33.80195 0.0061624287 324.32313 1.5874447 + 795400 -33.796063 -33.801555 0.0054921488 289.04689 1.5442852 + 795500 -33.796337 -33.80112 0.0047831441 251.73261 1.4332628 + 795600 -33.794596 -33.800634 0.0060379972 317.77441 1.2913717 + 795700 -33.791544 -33.799992 0.0084476727 444.59348 1.073312 + 795800 -33.793949 -33.799348 0.0053989323 284.14099 0.70585543 + 795900 -33.79649 -33.798944 0.0024544347 129.17471 0.41359916 + 796000 -33.795406 -33.79879 0.0033841267 178.10357 0.23151929 + 796100 -33.789055 -33.79876 0.0097049633 510.76356 0.044541831 + 796200 -33.792245 -33.798658 0.0064132339 337.52278 -0.337847 + 796300 -33.794597 -33.79858 0.0039833905 209.64229 -0.58368824 + 796400 -33.794008 -33.798531 0.0045225031 238.0153 -0.69636137 + 796500 -33.787503 -33.798389 0.010886033 572.92219 -0.66067841 + 796600 -33.790343 -33.797945 0.0076015989 400.06537 -0.77367458 + 796700 -33.794257 -33.797499 0.0032421568 170.63182 -0.84300836 + 796800 -33.793125 -33.797105 0.0039800907 209.46862 -0.74910557 + 796900 -33.789709 -33.79664 0.0069307747 364.76049 -0.51427867 + 797000 -33.788848 -33.796003 0.0071551239 376.56779 -0.24466701 + 797100 -33.791456 -33.79546 0.0040031499 210.68221 -0.041788632 + 797200 -33.793618 -33.795253 0.0016349627 86.04663 0.11330433 + 797300 -33.793377 -33.795387 0.0020102402 105.79715 0.27718026 + 797400 -33.788543 -33.795997 0.0074534314 392.26745 0.60328094 + 797500 -33.789039 -33.796805 0.0077667795 408.75868 0.86001333 + 797600 -33.792821 -33.797366 0.0045445814 239.17727 0.95196658 + 797700 -33.793729 -33.797808 0.0040788584 214.66668 1.0012339 + 797800 -33.791153 -33.798224 0.0070712087 372.15141 1.0453107 + 797900 -33.784925 -33.798559 0.013634543 717.57383 1.0611805 + 798000 -33.794011 -33.798564 0.0045529224 239.61624 0.73036623 + 798100 -33.794391 -33.798461 0.0040697716 214.18845 0.55191282 + 798200 -33.792097 -33.798361 0.0062639917 329.6683 0.35095794 + 798300 -33.789696 -33.798179 0.0084830852 446.45721 0.039122965 + 798400 -33.793784 -33.797932 0.0041478767 218.29905 -0.40186754 + 798500 -33.795907 -33.797904 0.0019976646 105.13531 -0.66212239 + 798600 -33.794514 -33.798101 0.0035875356 188.8088 -0.8203321 + 798700 -33.792264 -33.798573 0.0063092354 332.04943 -0.98796584 + 798800 -33.792402 -33.799185 0.0067833952 357.00404 -1.1716619 + 798900 -33.794674 -33.799699 0.0050254383 264.48433 -1.3268494 + 799000 -33.796747 -33.800126 0.0033795053 177.86035 -1.4016027 + 799100 -33.797724 -33.800486 0.0027621789 145.37101 -1.3878545 + 799200 -33.795704 -33.800843 0.0051383321 270.42583 -1.2474437 + 799300 -33.79107 -33.801242 0.010172183 535.3529 -0.94773285 + 799400 -33.795915 -33.801355 0.0054408527 286.34722 -0.80683525 + 799500 -33.797663 -33.801307 0.0036436844 191.76386 -0.64775467 + 799600 -33.796573 -33.801221 0.004647317 244.58415 -0.41890106 + 799700 -33.795058 -33.801049 0.005991514 315.32804 -0.13996575 + 799800 -33.794893 -33.800825 0.0059315952 312.17457 0.12342529 + 799900 -33.79513 -33.800599 0.0054682973 287.79161 0.34865038 + 800000 -33.794866 -33.800388 0.0055221618 290.62645 0.542851 + 800100 -33.791252 -33.800222 0.008969528 472.05826 0.77241283 + 800200 -33.791107 -33.799979 0.0088718535 466.91774 0.90426358 + 800300 -33.796115 -33.799783 0.0036681239 193.05009 0.84404744 + 800400 -33.796054 -33.79973 0.0036761463 193.4723 0.80903608 + 800500 -33.792201 -33.799735 0.0075341788 396.51711 0.75913115 + 800600 -33.791107 -33.79968 0.0085730724 451.19315 0.54497613 + 800700 -33.79622 -33.799559 0.0033387105 175.71336 0.21339629 + 800800 -33.79699 -33.799482 0.0024924149 131.17357 0.010542412 + 800900 -33.795584 -33.799471 0.0038867819 204.55787 -0.18926774 + 801000 -33.791808 -33.799444 0.0076353338 401.8408 -0.43826408 + 801100 -33.79179 -33.799246 0.0074556692 392.38522 -0.82652263 + 801200 -33.795396 -33.799007 0.0036108781 190.03729 -1.191824 + 801300 -33.796027 -33.798853 0.0028259253 148.72593 -1.3833614 + 801400 -33.789849 -33.798769 0.0089197333 469.43761 -1.4075577 + 801500 -33.790388 -33.79866 0.0082716588 435.33002 -1.5486275 + 801600 -33.794189 -33.798548 0.0043596365 229.44378 -1.6543429 + 801700 -33.794469 -33.798603 0.0041341678 217.57756 -1.5917236 + 801800 -33.790586 -33.798825 0.0082389006 433.60599 -1.3315413 + 801900 -33.787665 -33.799083 0.01141814 600.92654 -0.92251311 + 802000 -33.795729 -33.799235 0.0035060448 184.52001 -0.78182146 + 802100 -33.795196 -33.79937 0.0041745224 219.70139 -0.49955188 + 802200 -33.79189 -33.799547 0.0076575725 403.01121 -0.064909256 + 802300 -33.792012 -33.799634 0.0076222853 401.15408 0.38494758 + 802400 -33.796505 -33.799551 0.0030458172 160.29864 0.63045779 + 802500 -33.796897 -33.79952 0.0026234908 138.07198 0.83466869 + 802600 -33.794849 -33.799533 0.0046839988 246.51468 1.0772593 + 802700 -33.793751 -33.799519 0.0057681809 303.57421 1.2876886 + 802800 -33.793295 -33.799505 0.006209594 326.8054 1.4335059 + 802900 -33.793779 -33.799442 0.0056627925 298.02772 1.490818 + 803000 -33.794887 -33.79941 0.0045228293 238.03247 1.4626297 + 803100 -33.794955 -33.79948 0.0045256791 238.18246 1.3886841 + 803200 -33.79183 -33.799621 0.0077908075 410.02325 1.293603 + 803300 -33.791335 -33.799821 0.0084853937 446.5787 1.0536328 + 803400 -33.796465 -33.799963 0.003498283 184.11151 0.7291479 + 803500 -33.79666 -33.800122 0.0034617619 182.18944 0.53693058 + 803600 -33.794582 -33.800391 0.0058090471 305.72497 0.35227719 + 803700 -33.793777 -33.800625 0.0068477569 360.39134 0.10457296 + 803800 -33.794824 -33.800704 0.0058793138 309.42304 -0.16082811 + 803900 -33.795572 -33.800657 0.0050847874 267.60782 -0.37144888 + 804000 -33.795104 -33.800456 0.0053524151 281.69283 -0.51379387 + 804100 -33.788548 -33.800018 0.011470064 603.65924 -0.52033707 + 804200 -33.792432 -33.799214 0.0067821473 356.93836 -0.70646365 + 804300 -33.795533 -33.798561 0.0030284813 159.38627 -0.79051432 + 804400 -33.794389 -33.798089 0.0036998884 194.72183 -0.71336449 + 804500 -33.790959 -33.797608 0.0066488951 349.92542 -0.48517895 + 804600 -33.790718 -33.797166 0.0064476724 339.33525 -0.22988333 + 804700 -33.79164 -33.796954 0.0053140488 279.67365 0.034904704 + 804800 -33.791881 -33.796934 0.0050530967 265.93997 0.3215988 + 804900 -33.790133 -33.797138 0.0070050798 368.6711 0.66599112 + 805000 -33.789002 -33.797518 0.0085156879 448.17306 1.0373745 + 805100 -33.793401 -33.797823 0.0044213901 232.69382 1.2141816 + 805200 -33.794538 -33.798133 0.0035954728 189.22653 1.3361026 + 805300 -33.792105 -33.798511 0.0064055128 337.11642 1.4678478 + 805400 -33.78634 -33.798868 0.012527982 659.33652 1.613552 + 805500 -33.795237 -33.79898 0.0037430912 196.99555 1.404691 + 805600 -33.795558 -33.79895 0.003392144 178.52552 1.3131925 + 805700 -33.79273 -33.798872 0.0061427679 323.2884 1.1985453 + 805800 -33.790416 -33.798635 0.0082189486 432.55593 0.95703178 + 805900 -33.793609 -33.798202 0.0045928784 241.7191 0.5846741 + 806000 -33.796044 -33.797927 0.0018834058 99.121966 0.31261031 + 806100 -33.795877 -33.797848 0.0019707046 103.71643 0.14605611 + 806200 -33.790678 -33.797906 0.0072279494 380.40053 0.0043699435 + 806300 -33.790171 -33.798047 0.0078758725 414.50015 -0.28451647 + 806400 -33.793746 -33.798064 0.004317874 227.24586 -0.56596363 + 806500 -33.79455 -33.798107 0.003556623 187.1819 -0.68713246 + 806600 -33.791073 -33.798214 0.0071410492 375.82705 -0.65814076 + 806700 -33.787016 -33.798131 0.011115335 584.99016 -0.56048075 + 806800 -33.79324 -33.797918 0.0046783319 246.21643 -0.61589674 + 806900 -33.793347 -33.797699 0.0043520648 229.04529 -0.51184797 + 807000 -33.791479 -33.797463 0.005984192 314.94269 -0.30005385 + 807100 -33.789273 -33.797271 0.0079975573 420.90431 0.0069460003 + 807200 -33.79203 -33.797071 0.0050410395 265.30541 0.23567685 + 807300 -33.794933 -33.797096 0.002163296 113.85234 0.37813613 + 807400 -33.793978 -33.797418 0.003440307 181.06029 0.56720871 + 807500 -33.789579 -33.798131 0.00855274 450.12308 0.88049248 + 807600 -33.791765 -33.799055 0.0072906731 383.70162 1.0567645 + 807700 -33.794811 -33.799803 0.0049924034 262.74574 1.1242923 + 807800 -33.795837 -33.800419 0.0045817014 241.13086 1.1502166 + 807900 -33.794848 -33.801044 0.0061951363 326.0445 1.1474297 + 808000 -33.790898 -33.801627 0.010729404 564.67897 1.1147533 + 808100 -33.796722 -33.801946 0.0052235965 274.91322 0.83482121 + 808200 -33.798682 -33.802043 0.0033610083 176.88687 0.63706655 + 808300 -33.797088 -33.802028 0.0049398534 259.98008 0.4558299 + 808400 -33.793149 -33.801867 0.0087175812 458.79852 0.20399649 + 808500 -33.795501 -33.801494 0.0059938416 315.45054 -0.22177961 + 808600 -33.799715 -33.801165 0.0014498365 76.303603 -0.55474231 + 808700 -33.79965 -33.801029 0.0013793307 72.592946 -0.7009063 + 808800 -33.797775 -33.800972 0.0031973088 168.27151 -0.82323759 + 808900 -33.794006 -33.800925 0.006919155 364.14896 -0.95415918 + 809000 -33.793222 -33.800862 0.0076391901 402.04376 -1.1434022 + 809100 -33.796485 -33.800693 0.0042074143 221.43246 -1.3396934 + 809200 -33.797695 -33.800566 0.0028701205 151.05188 -1.4065813 + 809300 -33.793737 -33.800472 0.006735287 354.47215 -1.2943095 + 809400 -33.790285 -33.800143 0.0098579667 518.81599 -1.0966916 + 809500 -33.79509 -33.799775 0.0046850067 246.56772 -1.0321485 + 809600 -33.795781 -33.799465 0.0036838505 193.87776 -0.87368448 + 809700 -33.793208 -33.799127 0.005918969 311.51006 -0.58712348 + 809800 -33.788985 -33.798735 0.0097492371 513.09365 -0.13437749 + 809900 -33.794642 -33.798282 0.0036394867 191.54294 0.11562093 + 810000 -33.796493 -33.798149 0.001655327 87.118382 0.26692628 + 810100 -33.794613 -33.798258 0.0036456749 191.86862 0.48188418 + 810200 -33.790484 -33.798523 0.0080393667 423.1047 0.78862573 + 810300 -33.791749 -33.798896 0.0071471244 376.14678 0.97220931 + 810400 -33.795289 -33.799153 0.003864374 203.37855 1.0035983 + 810500 -33.795507 -33.79936 0.0038526508 202.76157 1.0072431 + 810600 -33.788609 -33.799675 0.011066481 582.41901 1.0615989 + 810700 -33.789632 -33.799828 0.010196356 536.6251 0.8293266 + 810800 -33.794302 -33.79976 0.0054585741 287.27988 0.52255734 + 810900 -33.79508 -33.799666 0.0045864742 241.38205 0.28107279 + 811000 -33.793863 -33.799468 0.0056047536 294.97318 0.033856737 + 811100 -33.79035 -33.799234 0.0088842061 467.56784 -0.26225784 + 811200 -33.792734 -33.798884 0.006149313 323.63286 -0.70621829 + 811300 -33.796266 -33.798624 0.0023579334 124.09593 -1.0227999 + 811400 -33.795447 -33.798588 0.0031410422 165.31025 -1.1756874 + 811500 -33.792488 -33.798639 0.0061514531 323.74549 -1.2772992 + 811600 -33.792156 -33.798732 0.0065756 346.06796 -1.3877357 + 811700 -33.793481 -33.798867 0.005386655 283.49485 -1.4615454 + 811800 -33.794811 -33.798918 0.0041077225 216.18577 -1.4614372 + 811900 -33.79518 -33.799036 0.0038563042 202.95385 -1.3705031 + 812000 -33.792028 -33.799201 0.0071725958 377.48732 -1.1302432 + 812100 -33.790171 -33.799236 0.0090649271 477.07903 -0.80369465 + 812200 -33.795245 -33.799252 0.0040063651 210.85142 -0.62405661 + 812300 -33.795987 -33.799246 0.0032592202 171.52985 -0.42112225 + 812400 -33.794226 -33.799296 0.0050692643 266.79086 -0.14088939 + 812500 -33.793133 -33.799456 0.0063234077 332.79531 0.17306275 + 812600 -33.79357 -33.799542 0.0059727168 314.33876 0.43521104 + 812700 -33.794545 -33.799646 0.0051007674 268.44884 0.62947571 + 812800 -33.795652 -33.799776 0.0041246927 217.0789 0.75556287 + 812900 -33.795745 -33.799869 0.004123964 217.04055 0.83335574 + 813000 -33.792494 -33.800022 0.0075278325 396.18311 0.91851619 + 813100 -33.791593 -33.80007 0.0084771474 446.14471 0.8963566 + 813200 -33.796415 -33.799947 0.00353149 185.85917 0.72481596 + 813300 -33.796882 -33.79987 0.0029885185 157.28306 0.61446831 + 813400 -33.794879 -33.799736 0.0048573868 255.63994 0.49302469 + 813500 -33.793702 -33.799505 0.0058028447 305.39854 0.29579465 + 813600 -33.793408 -33.799212 0.0058047497 305.4988 0.053228465 + 813700 -33.793202 -33.798759 0.0055571644 292.46861 -0.19360609 + 813800 -33.791821 -33.798276 0.0064556933 339.75738 -0.39876772 + 813900 -33.789487 -33.797675 0.0081878602 430.91978 -0.58709051 + 814000 -33.791736 -33.796959 0.0052234144 274.90364 -0.81682377 + 814100 -33.793805 -33.796584 0.0027789291 146.25256 -0.92517433 + 814200 -33.792373 -33.796412 0.0040391656 212.57768 -0.8776607 + 814300 -33.786485 -33.79629 0.0098051438 516.03597 -0.62631976 + 814400 -33.789795 -33.796291 0.0064958385 341.87019 -0.46847078 + 814500 -33.791874 -33.796212 0.0043376739 228.28791 -0.29394173 + 814600 -33.791319 -33.796273 0.0049543377 260.74238 -0.038453524 + 814700 -33.786062 -33.796455 0.010392658 546.95631 0.4016294 + 814800 -33.78589 -33.79636 0.010470507 551.05345 0.86309594 + 814900 -33.792504 -33.796371 0.0038662954 203.47968 1.0157666 + 815000 -33.791952 -33.796407 0.0044546072 234.442 1.2262553 + 815100 -33.788665 -33.796508 0.0078435468 412.79887 1.4810115 + 815200 -33.789197 -33.796794 0.0075969352 399.81992 1.6320588 + 815300 -33.793984 -33.796892 0.0029077735 153.03353 1.5963859 + 815400 -33.794071 -33.797111 0.0030405405 160.02094 1.577349 + 815500 -33.79222 -33.797533 0.0053130447 279.62081 1.5124074 + 815600 -33.791216 -33.797898 0.0066817209 351.65301 1.3357718 + 815700 -33.792337 -33.798288 0.0059509213 313.19168 1.0760534 + 815800 -33.794751 -33.798514 0.0037625796 198.02121 0.78449668 + 815900 -33.796823 -33.798652 0.0018288757 96.252098 0.5433956 + 816000 -33.796468 -33.798887 0.0024183822 127.2773 0.38527704 + 816100 -33.791273 -33.799233 0.0079599601 418.9256 0.22102497 + 816200 -33.79229 -33.799594 0.0073040694 384.40666 -0.13444336 + 816300 -33.795501 -33.799838 0.0043373746 228.27216 -0.43774541 + 816400 -33.796034 -33.799966 0.0039317535 206.92468 -0.60962454 + 816500 -33.790918 -33.800184 0.0092658395 487.65287 -0.64309278 + 816600 -33.789882 -33.800381 0.010499168 552.56183 -0.74922865 + 816700 -33.795496 -33.8004 0.0049043906 258.1137 -0.90444245 + 816800 -33.795606 -33.800484 0.0048781191 256.73106 -0.88270537 + 816900 -33.794037 -33.800534 0.0064967795 341.91971 -0.75804407 + 817000 -33.792479 -33.800577 0.0080981443 426.19811 -0.55575828 + 817100 -33.796271 -33.800616 0.004344964 228.67158 -0.43136299 + 817200 -33.798075 -33.800605 0.0025301749 133.16085 -0.3044702 + 817300 -33.795983 -33.800693 0.0047099644 247.88123 -0.070210009 + 817400 -33.791913 -33.80081 0.0088974092 468.26271 0.31229335 + 817500 -33.794413 -33.800769 0.0063567387 334.54949 0.55965503 + 817600 -33.796098 -33.80074 0.004642081 244.30858 0.74972852 + 817700 -33.795761 -33.800658 0.0048962908 257.68742 0.92231184 + 817800 -33.789432 -33.800527 0.011094478 583.8925 1.1854782 + 817900 -33.791883 -33.80032 0.0084368397 444.02335 1.257753 + 818000 -33.79622 -33.800072 0.0038518274 202.71824 1.1951425 + 818100 -33.795353 -33.799955 0.0046016766 242.18213 1.1559222 + 818200 -33.792244 -33.799878 0.0076341846 401.78033 1.0680237 + 818300 -33.79238 -33.799708 0.007327691 385.64984 0.82471012 + 818400 -33.797212 -33.79965 0.0024376008 128.28876 0.51075635 + 818500 -33.797259 -33.799653 0.0023940999 125.99934 0.32121234 + 818600 -33.79489 -33.799747 0.0048568145 255.60982 0.10260568 + 818700 -33.793197 -33.799907 0.0067104048 353.16262 -0.2217983 + 818800 -33.793844 -33.799896 0.0060528123 318.55411 -0.60428545 + 818900 -33.795716 -33.799843 0.0041275055 217.22693 -0.94248544 + 819000 -33.797433 -33.799786 0.0023528699 123.82944 -1.1770233 + 819100 -33.796966 -33.799751 0.0027857664 146.6124 -1.2852088 + 819200 -33.792023 -33.799795 0.007771653 409.01516 -1.2766729 + 819300 -33.792289 -33.799714 0.0074251911 390.78119 -1.3334845 + 819400 -33.795366 -33.799558 0.0041925784 220.65166 -1.3786767 + 819500 -33.795801 -33.799488 0.0036872298 194.05561 -1.3101389 + 819600 -33.788636 -33.799372 0.010735913 565.02152 -0.99820871 + 819700 -33.79032 -33.799135 0.0088149873 463.92492 -0.73373839 + 819800 -33.794416 -33.798908 0.0044917654 236.39761 -0.57405016 + 819900 -33.794326 -33.798731 0.0044054331 231.85402 -0.34905565 + 820000 -33.791367 -33.798677 0.0073093621 384.68521 -0.024781575 + 820100 -33.788549 -33.79862 0.010071181 530.03726 0.36004195 + 820200 -33.795325 -33.798573 0.0032479682 170.93767 0.47261311 + 820300 -33.795755 -33.798698 0.0029426322 154.86811 0.58738402 + 820400 -33.792594 -33.798987 0.0063933076 336.47408 0.73413324 + 820500 -33.790944 -33.799416 0.008472054 445.87664 0.81559248 + 820600 -33.794307 -33.799781 0.0054738176 288.08214 0.7365185 + 820700 -33.795189 -33.800006 0.0048170239 253.51567 0.64745518 + 820800 -33.794674 -33.800216 0.0055422846 291.6855 0.53110584 + 820900 -33.794167 -33.800351 0.0061843353 325.47605 0.3556054 + 821000 -33.794601 -33.800334 0.0057335194 301.75001 0.11761297 + 821100 -33.796477 -33.800264 0.0037865862 199.28465 -0.14267037 + 821200 -33.796857 -33.800159 0.0033017073 173.76591 -0.347206 + 821300 -33.793108 -33.800014 0.0069060085 363.45707 -0.50421323 + 821400 -33.791166 -33.799765 0.0085990235 452.55894 -0.75948585 + 821500 -33.794928 -33.799403 0.0044750106 235.51582 -1.0618135 + 821600 -33.795783 -33.799164 0.0033812463 177.95198 -1.2018065 + 821700 -33.789425 -33.798984 0.0095589683 503.07998 -1.1381587 + 821800 -33.787817 -33.79848 0.010662685 561.1676 -1.1302831 + 821900 -33.7935 -33.798052 0.0045520466 239.57015 -1.1977252 + 822000 -33.794071 -33.797718 0.0036469246 191.93439 -1.1081945 + 822100 -33.791151 -33.797354 0.0062031173 326.46453 -0.86344929 + 822200 -33.787738 -33.796879 0.0091412128 481.09388 -0.46327715 + 822300 -33.791879 -33.796235 0.0043562255 229.26426 -0.20436638 + 822400 -33.793999 -33.795859 0.0018608288 97.933759 -0.0049080846 + 822500 -33.791123 -33.795707 0.0045836218 241.23192 0.30518799 + 822600 -33.786466 -33.795415 0.0089488495 470.96997 0.86172453 + 822700 -33.790115 -33.795244 0.0051281697 269.89099 1.2169438 + 822800 -33.791849 -33.795223 0.0033740606 177.5738 1.4595009 + 822900 -33.790239 -33.795359 0.0051198911 269.4553 1.6875595 + 823000 -33.785772 -33.795912 0.010140203 533.66986 1.9510592 + 823100 -33.790781 -33.796445 0.0056640493 298.09386 1.9463138 + 823200 -33.792953 -33.796907 0.0039542915 208.11084 1.8855319 + 823300 -33.791936 -33.797561 0.0056249747 296.0374 1.7903887 + 823400 -33.790952 -33.798207 0.0072553973 381.84509 1.583568 + 823500 -33.79376 -33.798813 0.0050530815 265.93917 1.2438831 + 823600 -33.796634 -33.799193 0.0025587686 134.66571 0.94421687 + 823700 -33.795906 -33.79946 0.0035535857 187.02205 0.70694521 + 823800 -33.789338 -33.799822 0.010484436 551.78654 0.42213334 + 823900 -33.792213 -33.799934 0.00772136 406.36829 -0.13799657 + 824000 -33.795333 -33.799788 0.0044547052 234.44716 -0.57971469 + 824100 -33.795706 -33.799665 0.0039590256 208.35999 -0.86346761 + 824200 -33.792026 -33.799442 0.0074165991 390.329 -1.0371245 + 824300 -33.789473 -33.799096 0.0096226243 506.43013 -1.2395415 + 824400 -33.795109 -33.79887 0.0037606338 197.9188 -1.474618 + 824500 -33.795486 -33.798775 0.0032893236 173.11417 -1.4668263 + 824600 -33.793641 -33.798949 0.0053077696 279.34318 -1.2812566 + 824700 -33.791093 -33.799297 0.0082041496 431.77707 -0.92239718 + 824800 -33.793902 -33.799592 0.0056901803 299.46911 -0.58391536 + 824900 -33.797086 -33.79988 0.0027937132 147.03063 -0.31971202 + 825000 -33.796484 -33.800108 0.0036241581 190.73621 0.0075495382 + 825100 -33.79271 -33.800366 0.0076560326 402.93017 0.52288338 + 825200 -33.793336 -33.800568 0.0072317293 380.59946 1.0222688 + 825300 -33.795607 -33.800486 0.0048793955 256.79823 1.3885941 + 825400 -33.796394 -33.800397 0.0040029838 210.67347 1.6681536 + 825500 -33.794018 -33.800301 0.0062823828 330.63621 1.9465801 + 825600 -33.789858 -33.800023 0.01016478 534.96331 2.2389486 + 825700 -33.795638 -33.799868 0.0042294951 222.59456 2.2326563 + 825800 -33.797017 -33.799819 0.0028021798 147.47622 2.179173 + 825900 -33.795514 -33.799939 0.0044257051 232.92091 2.0662288 + 826000 -33.792984 -33.800309 0.0073244715 385.4804 1.8233052 + 826100 -33.793849 -33.800611 0.0067619874 355.87736 1.3967605 + 826200 -33.79782 -33.80084 0.0030191569 158.89553 0.95217983 + 826300 -33.798938 -33.801002 0.0020633802 108.59386 0.65497731 + 826400 -33.79414 -33.801118 0.0069778268 367.2368 0.40288605 + 826500 -33.792199 -33.801139 0.0089402568 470.51774 -0.14257696 + 826600 -33.796573 -33.800846 0.0042725249 224.85918 -0.69018388 + 826700 -33.797291 -33.80048 0.0031887256 167.81978 -1.0131077 + 826800 -33.794164 -33.800061 0.0058974111 310.37548 -1.2201089 + 826900 -33.791116 -33.79931 0.0081946991 431.2797 -1.4492213 + 827000 -33.793189 -33.798556 0.0053678098 282.50304 -1.6770159 + 827100 -33.793722 -33.798061 0.0043391961 228.36802 -1.737844 + 827200 -33.792501 -33.797725 0.0052232213 274.89348 -1.6420571 + 827300 -33.791686 -33.797715 0.006029211 317.312 -1.4208991 + 827400 -33.791827 -33.797945 0.0061179149 321.9804 -1.1186902 + 827500 -33.792795 -33.798296 0.0055015073 289.53942 -0.77926917 + 827600 -33.794529 -33.798799 0.0042703763 224.7461 -0.45476051 + 827700 -33.796043 -33.799234 0.0031909007 167.93426 -0.17897882 + 827800 -33.795386 -33.799679 0.0042932134 225.94799 0.11380202 + 827900 -33.78996 -33.800244 0.010284243 541.25052 0.57306563 + 828000 -33.793834 -33.800515 0.006681737 351.65386 0.84964032 + 828100 -33.796886 -33.800565 0.0036788299 193.61353 0.98437558 + 828200 -33.796132 -33.80053 0.0043985216 231.49027 1.1037626 + 828300 -33.794108 -33.800358 0.0062499357 328.92854 1.1762484 + 828400 -33.793229 -33.800125 0.0068955901 362.90876 1.1529247 + 828500 -33.795729 -33.799806 0.004077179 214.57829 0.98701729 + 828600 -33.797996 -33.799666 0.0016700746 87.894537 0.80593562 + 828700 -33.796773 -33.799756 0.0029832046 157.0034 0.64804527 + 828800 -33.792887 -33.800021 0.0071337043 375.4405 0.37458403 + 828900 -33.793342 -33.800368 0.0070257001 369.75633 -0.08059144 + 829000 -33.796077 -33.800619 0.00454224 239.05404 -0.51473621 + 829100 -33.797197 -33.800754 0.003557668 187.23689 -0.82926386 + 829200 -33.794786 -33.800905 0.0061183045 322.00091 -1.0462951 + 829300 -33.789904 -33.800905 0.011001136 578.98 -1.2844819 + 829400 -33.795935 -33.800652 0.0047162129 248.21008 -1.6562818 + 829500 -33.796959 -33.800425 0.0034657806 182.40094 -1.7913517 + 829600 -33.795093 -33.800152 0.0050594559 266.27465 -1.7819566 + 829700 -33.79267 -33.799819 0.0071495932 376.27671 -1.6650126 + 829800 -33.793354 -33.799504 0.0061500252 323.67034 -1.5226301 + 829900 -33.793964 -33.799204 0.0052398484 275.76855 -1.3166688 + 830000 -33.79364 -33.799079 0.0054384831 286.22251 -1.0229273 + 830100 -33.791402 -33.799053 0.0076510173 402.66621 -0.61407508 + 830200 -33.788787 -33.798975 0.010188289 536.20056 -0.091032212 + 830300 -33.794879 -33.798971 0.0040915583 215.33506 0.18372355 + 830400 -33.795615 -33.79896 0.0033445882 176.0227 0.41704781 + 830500 -33.79283 -33.799005 0.0061753754 325.0045 0.69034063 + 830600 -33.790015 -33.799021 0.0090066277 474.01078 0.97108862 + 830700 -33.794442 -33.798763 0.0043212247 227.4222 1.0158012 + 830800 -33.797002 -33.798608 0.0016056492 84.503884 0.97529234 + 830900 -33.796334 -33.798528 0.0021941338 115.47531 0.9083844 + 831000 -33.794762 -33.798427 0.0036643595 192.85197 0.73201998 + 831100 -33.791857 -33.798329 0.0064714124 340.58466 0.43656557 + 831200 -33.789697 -33.797968 0.0082704955 435.2688 -0.042469318 + 831300 -33.792732 -33.79745 0.0047177841 248.29277 -0.62061454 + 831400 -33.79401 -33.797101 0.0030918463 162.72111 -1.0511324 + 831500 -33.791498 -33.796793 0.0052955159 278.69828 -1.4006231 + 831600 -33.787662 -33.796513 0.008850125 465.77419 -1.844101 + 831700 -33.790427 -33.796321 0.0058937108 310.18074 -2.3402712 + 831800 -33.791699 -33.796232 0.0045331708 238.57674 -2.61993 + 831900 -33.791004 -33.796475 0.0054718713 287.9797 -2.6994673 + 832000 -33.790174 -33.796888 0.0067137557 353.33898 -2.6289287 + 832100 -33.79077 -33.797342 0.0065725693 345.90846 -2.4393676 + 832200 -33.791755 -33.797867 0.0061118007 321.65862 -2.1272755 + 832300 -33.793185 -33.798222 0.0050373829 265.11297 -1.749435 + 832400 -33.794066 -33.798524 0.0044578837 234.61444 -1.3161989 + 832500 -33.793357 -33.798795 0.0054384252 286.21947 -0.78693131 + 832600 -33.789828 -33.798877 0.009048679 476.22391 -0.050654008 + 832700 -33.792534 -33.798788 0.0062540311 329.14408 0.62378818 + 832800 -33.795744 -33.798608 0.0028649192 150.77814 1.0450384 + 832900 -33.794917 -33.798473 0.0035557019 187.13342 1.4320494 + 833000 -33.791212 -33.798446 0.0072336705 380.70163 1.9171787 + 833100 -33.791662 -33.798373 0.006710902 353.18878 2.2857698 + 833200 -33.793308 -33.798354 0.0050456625 265.54872 2.4838147 + 833300 -33.793916 -33.798524 0.004607904 242.50988 2.5465214 + 833400 -33.791953 -33.798791 0.0068378351 359.86916 2.5153283 + 833500 -33.788804 -33.79925 0.010445115 549.71707 2.3439009 + 833600 -33.79521 -33.799666 0.0044560148 234.51608 1.9139751 + 833700 -33.79621 -33.799957 0.0037472731 197.21564 1.5949917 + 833800 -33.794329 -33.800396 0.0060673449 319.31895 1.2411555 + 833900 -33.792337 -33.80085 0.0085134317 448.05432 0.73887637 + 834000 -33.797778 -33.801109 0.0033304297 175.27755 0.12808637 + 834100 -33.798919 -33.801292 0.0023728918 124.88318 -0.18551884 + 834200 -33.796389 -33.801476 0.0050872439 267.73711 -0.43066942 + 834300 -33.793584 -33.80163 0.0080453637 423.42031 -0.74203496 + 834400 -33.79574 -33.801646 0.0059060852 310.832 -1.0870036 + 834500 -33.797325 -33.801473 0.0041477948 218.29474 -1.2959698 + 834600 -33.795724 -33.8013 0.0055755304 293.43519 -1.3365016 + 834700 -33.787382 -33.800881 0.013499595 710.47166 -1.1502001 + 834800 -33.795174 -33.800262 0.0050872582 267.73786 -1.2069 + 834900 -33.796291 -33.799893 0.0036026261 189.603 -1.0739672 + 835000 -33.794069 -33.799607 0.0055378642 291.45285 -0.76938188 + 835100 -33.790234 -33.799307 0.0090722612 477.46502 -0.25413674 + 835200 -33.79391 -33.799069 0.0051587746 271.50171 0.15589749 + 835300 -33.797033 -33.798941 0.0019071224 100.37015 0.4036579 + 835400 -33.796418 -33.799028 0.0026095335 137.33742 0.66947568 + 835500 -33.793848 -33.79928 0.0054322069 285.89221 1.0169942 + 835600 -33.791025 -33.799473 0.0084481177 444.6169 1.4138551 + 835700 -33.794172 -33.799524 0.0053523386 281.68881 1.6297847 + 835800 -33.796622 -33.799435 0.0028130068 148.04604 1.7098881 + 835900 -33.79518 -33.799351 0.0041709061 219.51107 1.7586264 + 836000 -33.788372 -33.799193 0.010821273 569.51393 1.8021965 + 836100 -33.793344 -33.798777 0.0054328712 285.92717 1.5298188 + 836200 -33.795073 -33.798493 0.0034198186 179.982 1.2956534 + 836300 -33.793221 -33.798395 0.0051740158 272.30383 1.0647412 + 836400 -33.788196 -33.798359 0.010162659 534.8517 0.71480991 + 836500 -33.791902 -33.798454 0.0065520297 344.82748 0.15412063 + 836600 -33.793138 -33.798644 0.0055065309 289.80381 -0.25596779 + 836700 -33.793157 -33.798976 0.0058191936 306.25897 -0.59541322 + 836800 -33.793532 -33.799469 0.0059373623 312.47808 -0.88565635 + 836900 -33.795539 -33.799916 0.0043768026 230.34722 -1.1181276 + 837000 -33.797242 -33.800291 0.0030490976 160.47129 -1.2358605 + 837100 -33.796247 -33.800658 0.0044112404 232.15965 -1.2142365 + 837200 -33.789951 -33.800963 0.011011902 579.54657 -0.997681 + 837300 -33.79454 -33.800934 0.0063935301 336.48578 -0.93319108 + 837400 -33.796652 -33.800662 0.0040099918 211.04229 -0.81942158 + 837500 -33.795761 -33.800256 0.0044945698 236.5452 -0.6012272 + 837600 -33.793379 -33.799713 0.0063342106 333.36385 -0.27060597 + 837700 -33.791905 -33.798952 0.0070475564 370.90661 0.1232966 + 837800 -33.793475 -33.798188 0.0047131574 248.04927 0.45920832 + 837900 -33.795437 -33.797812 0.0023748734 124.98747 0.69119573 + 838000 -33.794003 -33.797782 0.0037788261 198.87625 0.94218521 + 838100 -33.789416 -33.798153 0.0087372128 459.83172 1.3010244 + 838200 -33.791781 -33.798748 0.0069666624 366.64923 1.481144 + 838300 -33.794871 -33.799238 0.004367303 229.84726 1.5114117 + 838400 -33.794806 -33.799793 0.0049876042 262.49316 1.4920737 + 838500 -33.793941 -33.800373 0.0064320277 338.51188 1.3784834 + 838600 -33.794326 -33.800819 0.0064926028 341.69989 1.1389333 + 838700 -33.795314 -33.801096 0.0057827656 304.34179 0.81434888 + 838800 -33.796186 -33.801132 0.0049456449 260.28488 0.44474832 + 838900 -33.796093 -33.801008 0.0049151604 258.68051 0.056366026 + 839000 -33.792516 -33.800697 0.008180667 430.54121 -0.36775995 + 839100 -33.792151 -33.799966 0.0078147065 411.28103 -0.98675079 + 839200 -33.796113 -33.799276 0.0031624939 166.43923 -1.5447752 + 839300 -33.796315 -33.798824 0.0025092181 132.05791 -1.86441 + 839400 -33.791358 -33.798395 0.0070361168 370.30455 -2.096372 + 839500 -33.79104 -33.798035 0.0069952463 368.15357 -2.4233357 + 839600 -33.793058 -33.797777 0.0047192619 248.37054 -2.6434188 + 839700 -33.793603 -33.797758 0.0041554792 218.69917 -2.6663607 + 839800 -33.790558 -33.797957 0.0073993875 389.42316 -2.4560044 + 839900 -33.787336 -33.79807 0.010733949 564.91815 -2.0336578 + 840000 -33.794086 -33.798048 0.003962029 208.51805 -1.7831812 + 840100 -33.794212 -33.797962 0.0037501763 197.36844 -1.4196861 + 840200 -33.791896 -33.797779 0.005882802 309.60662 -0.87334602 + 840300 -33.789845 -33.797426 0.0075813986 399.00225 -0.15357876 + 840400 -33.792322 -33.796808 0.0044862705 236.10841 0.47142096 + 840500 -33.795166 -33.796432 0.0012664772 66.653568 0.83200515 + 840600 -33.794608 -33.796351 0.0017428872 91.726601 1.1419434 + 840700 -33.792315 -33.796478 0.0041637216 219.13295 1.5541617 + 840800 -33.789898 -33.796867 0.00696947 366.79699 2.0036885 + 840900 -33.790072 -33.797366 0.0072937288 383.86244 2.3395533 + 841000 -33.793752 -33.79779 0.0040381134 212.52231 2.4332884 + 841100 -33.795132 -33.798272 0.0031404547 165.27933 2.4097699 + 841200 -33.791574 -33.79891 0.0073359145 386.08264 2.3275916 + 841300 -33.787888 -33.799808 0.011920633 627.37226 1.9969077 + 841400 -33.79485 -33.800389 0.0055385556 291.48924 1.4584832 + 841500 -33.795896 -33.800685 0.0047889933 252.04045 1.0480236 + 841600 -33.795224 -33.800915 0.0056910483 299.5148 0.61859225 + 841700 -33.793084 -33.801062 0.0079773414 419.84036 0.1285956 + 841800 -33.79419 -33.800941 0.00675122 355.31069 -0.48376148 + 841900 -33.797722 -33.80079 0.0030680138 161.46683 -0.97526445 + 842000 -33.797523 -33.800667 0.0031431319 165.42023 -1.2576804 + 842100 -33.792553 -33.800501 0.0079481823 418.30574 -1.4613303 + 842200 -33.792705 -33.800315 0.0076100364 400.50943 -1.7599566 + 842300 -33.795087 -33.800055 0.0049683582 261.48026 -1.969248 + 842400 -33.795444 -33.799915 0.0044709593 235.3026 -2.0035236 + 842500 -33.791816 -33.799917 0.008100807 426.33825 -1.8206262 + 842600 -33.787483 -33.799812 0.012328612 648.84387 -1.4350131 + 842700 -33.795395 -33.799811 0.0044156394 232.39116 -1.2770278 + 842800 -33.795403 -33.79987 0.0044667316 235.0801 -0.94968283 + 842900 -33.793148 -33.800015 0.0068676635 361.439 -0.46245809 + 843000 -33.792164 -33.800283 0.0081191626 427.30428 0.13395709 + 843100 -33.797019 -33.800383 0.003363996 177.04411 0.52484749 + 843200 -33.797914 -33.80051 0.0025961075 136.63082 0.81516032 + 843300 -33.795557 -33.800733 0.0051757881 272.39711 1.1682868 + 843400 -33.793814 -33.800862 0.00704758 370.90785 1.5376885 + 843500 -33.794961 -33.800899 0.0059380686 312.51525 1.772688 + 843600 -33.796122 -33.800773 0.0046512272 244.78994 1.8925264 + 843700 -33.795744 -33.800527 0.0047832328 251.73727 1.932809 + 843800 -33.790182 -33.800176 0.0099936164 525.95512 1.9564038 + 843900 -33.792381 -33.799454 0.0070733153 372.26227 1.705401 + 844000 -33.795846 -33.798894 0.0030478001 160.403 1.4183519 + 844100 -33.795085 -33.798548 0.0034639514 182.30467 1.1651689 + 844200 -33.792787 -33.798186 0.0053994756 284.16958 0.80619627 + 844300 -33.791922 -33.797956 0.0060339308 317.56039 0.31976675 + 844400 -33.791958 -33.797825 0.0058663323 308.73984 -0.19968869 + 844500 -33.792494 -33.797711 0.0052169855 274.5653 -0.6840417 + 844600 -33.793238 -33.797814 0.0045756114 240.81034 -1.0735854 + 844700 -33.792639 -33.797965 0.0053255488 280.27888 -1.340161 + 844800 -33.790227 -33.798139 0.0079120517 416.40423 -1.5021067 + 844900 -33.791844 -33.798358 0.006513599 342.80491 -1.6408834 + 845000 -33.795371 -33.798395 0.0030243532 159.16901 -1.6925161 + 845100 -33.795177 -33.798521 0.0033444575 176.01582 -1.5590142 + 845200 -33.788745 -33.798786 0.010041484 528.47433 -1.1055234 + 845300 -33.790431 -33.798809 0.0083776001 440.90562 -0.62858498 + 845400 -33.793714 -33.798761 0.0050469927 265.61872 -0.24231006 + 845500 -33.794422 -33.798698 0.0042764554 225.06603 0.14919409 + 845600 -33.792107 -33.79862 0.0065129331 342.76986 0.63097563 + 845700 -33.786945 -33.798623 0.011678517 614.62994 1.3000293 + 845800 -33.794466 -33.798487 0.0040214101 211.64323 1.6080099 + 845900 -33.795192 -33.798507 0.0033149784 174.46436 1.8159891 + 846000 -33.792814 -33.798801 0.0059868093 315.08043 1.9903075 + 846100 -33.790725 -33.799125 0.0084002351 442.09688 2.0611875 + 846200 -33.794974 -33.799502 0.0045287225 238.34263 1.9076123 + 846300 -33.797323 -33.799779 0.0024565831 129.28778 1.7184212 + 846400 -33.796371 -33.800047 0.0036766655 193.49963 1.4910792 + 846500 -33.794379 -33.800454 0.0060756964 319.75848 1.1374008 + 846600 -33.793404 -33.800715 0.0073115032 384.79789 0.61214343 + 846700 -33.796219 -33.800727 0.00450748 237.22465 0.0052023151 + 846800 -33.798666 -33.800719 0.0020528188 108.03802 -0.43000408 + 846900 -33.797963 -33.800673 0.0027100276 142.62633 -0.72857765 + 847000 -33.792582 -33.800616 0.0080337402 422.80858 -1.0964197 + 847100 -33.794027 -33.800537 0.0065098728 342.6088 -1.6188243 + 847200 -33.796476 -33.800336 0.003859732 203.13425 -1.9911692 + 847300 -33.796302 -33.800324 0.0040215136 211.64868 -2.1550096 + 847400 -33.790093 -33.800403 0.010310169 542.61502 -2.0886478 + 847500 -33.792327 -33.800346 0.0080185726 422.01032 -2.0709463 + 847600 -33.795658 -33.800374 0.0047160436 248.20117 -1.9847093 + 847700 -33.795219 -33.800323 0.005103731 268.60481 -1.7226205 + 847800 -33.793643 -33.800216 0.0065735236 345.95868 -1.2987628 + 847900 -33.792789 -33.800066 0.0072767303 382.96783 -0.76763605 + 848000 -33.795659 -33.799663 0.00400385 210.71905 -0.32227648 + 848100 -33.79687 -33.799379 0.0025091228 132.05289 0.054096923 + 848200 -33.794237 -33.799105 0.0048684257 256.2209 0.53362613 + 848300 -33.790735 -33.798473 0.0077372866 407.20649 1.2106635 + 848400 -33.792339 -33.797887 0.0055487227 292.02433 1.7637212 + 848500 -33.793415 -33.797327 0.0039126694 205.9203 2.1500866 + 848600 -33.790115 -33.796788 0.0066735841 351.22478 2.5083568 + 848700 -33.785779 -33.796339 0.010560061 555.76662 2.8964631 + 848800 -33.791063 -33.795854 0.0047911486 252.15388 2.9089407 + 848900 -33.791758 -33.795757 0.0039985078 210.4379 2.8268238 + 849000 -33.789975 -33.796036 0.0060607312 318.97088 2.6194347 + 849100 -33.788272 -33.796344 0.0080716197 424.80215 2.1851646 + 849200 -33.793607 -33.796843 0.003236097 170.3129 1.5631714 + 849300 -33.794649 -33.797203 0.0025538559 134.40716 1.1512541 + 849400 -33.791753 -33.797632 0.0058785982 309.38538 0.6771101 + 849500 -33.789102 -33.798243 0.0091410993 481.0879 -0.064117493 + 849600 -33.793268 -33.798454 0.005185538 272.91024 -0.88579863 + 849700 -33.794497 -33.798463 0.0039652227 208.68614 -1.4471912 + 849800 -33.79365 -33.798469 0.0048188418 253.61135 -1.9083661 + 849900 -33.792415 -33.79829 0.0058748427 309.18773 -2.3367237 + 850000 -33.791604 -33.798094 0.0064895145 341.53736 -2.7009578 + 850100 -33.792292 -33.797919 0.0056269707 296.14245 -2.9679846 + 850200 -33.794101 -33.797766 0.0036653489 192.90405 -3.0914081 + 850300 -33.793695 -33.797933 0.0042379879 223.04152 -2.9911206 + 850400 -33.789387 -33.798332 0.0089452343 470.7797 -2.6001964 + 850500 -33.791341 -33.798819 0.0074785262 393.58816 -2.140911 + 850600 -33.795607 -33.799311 0.0037036546 194.92004 -1.7744844 + 850700 -33.795176 -33.799711 0.0045350877 238.67762 -1.3058582 + 850800 -33.793661 -33.800213 0.0065517128 344.8108 -0.70069869 + 850900 -33.793988 -33.800687 0.0066987878 352.55123 -0.060795351 + 851000 -33.797907 -33.80087 0.0029634657 155.96455 0.37731023 + 851100 -33.799167 -33.801032 0.0018658097 98.195901 0.64155717 + 851200 -33.797327 -33.801209 0.0038824749 204.33119 0.92342774 + 851300 -33.795255 -33.801366 0.0061109773 321.61528 1.2186989 + 851400 -33.795187 -33.801532 0.0063450776 333.93577 1.4077776 + 851500 -33.796504 -33.801524 0.0050205465 264.22688 1.4644145 + 851600 -33.797773 -33.801516 0.0037428414 196.9824 1.4177941 + 851700 -33.797042 -33.801587 0.0045442768 239.16123 1.3120846 + 851800 -33.792107 -33.801597 0.0094895648 499.42733 1.1360564 + 851900 -33.794836 -33.801639 0.0068029572 358.03357 0.69562004 + 852000 -33.79821 -33.801638 0.0034277045 180.39703 0.31295227 + 852100 -33.797581 -33.801631 0.0040500532 213.15069 0.014748459 + 852200 -33.795933 -33.801724 0.0057904268 304.745 -0.32255287 + 852300 -33.795301 -33.801708 0.0064078508 337.23947 -0.71177635 + 852400 -33.796073 -33.801565 0.0054927092 289.07639 -1.0916644 + 852500 -33.797912 -33.801414 0.0035015633 184.28415 -1.3945901 + 852600 -33.799176 -33.801217 0.002041195 107.42627 -1.5547721 + 852700 -33.797153 -33.80105 0.0038970725 205.09945 -1.5573176 + 852800 -33.793156 -33.800777 0.0076211589 401.0948 -1.4294553 + 852900 -33.793996 -33.800193 0.0061970339 326.14437 -1.3057127 + 853000 -33.795972 -33.7997 0.0037283532 196.2199 -1.1498618 + 853100 -33.795927 -33.799267 0.0033394345 175.75146 -0.90688439 + 853200 -33.790175 -33.79867 0.0084950544 447.08713 -0.37838671 + 853300 -33.790479 -33.798065 0.0075857836 399.23302 0.21276336 + 853400 -33.793729 -33.797468 0.0037390519 196.78297 0.62745034 + 853500 -33.793537 -33.797176 0.0036382031 191.47538 1.019676 + 853600 -33.785693 -33.797088 0.011395384 599.7289 1.6559289 + 853700 -33.788215 -33.796758 0.0085438667 449.65608 2.1624703 + 853800 -33.79169 -33.796675 0.0049847981 262.34548 2.4302812 + 853900 -33.792195 -33.796708 0.0045129588 237.51299 2.5810247 + 854000 -33.790146 -33.796752 0.0066057926 347.65697 2.648421 + 854100 -33.785945 -33.797022 0.011077465 582.99708 2.6174456 + 854200 -33.792753 -33.79704 0.0042876703 225.65626 2.2645125 + 854300 -33.793893 -33.797067 0.0031737754 167.03297 2.0086204 + 854400 -33.791661 -33.797282 0.0056209397 295.82504 1.702404 + 854500 -33.789091 -33.79729 0.0081986812 431.48928 1.2054315 + 854600 -33.791882 -33.797298 0.0054164337 285.06207 0.58018646 + 854700 -33.79536 -33.797285 0.0019258016 101.35322 0.10836339 + 854800 -33.796459 -33.797339 0.00088049424 46.339626 -0.11343339 + 854900 -33.795683 -33.797671 0.001987671 104.60935 -0.23093501 + 855000 -33.793371 -33.798254 0.0048832002 256.99847 -0.29952884 + 855100 -33.790372 -33.798962 0.0085905534 452.11316 -0.32194393 + 855200 -33.793681 -33.799624 0.0059436019 312.80647 -0.40365646 + 855300 -33.796473 -33.79989 0.0034170162 179.83451 -0.42061946 + 855400 -33.795749 -33.80013 0.0043811868 230.57795 -0.30104427 + 855500 -33.788789 -33.800428 0.011639014 612.55091 0.050577228 + 855600 -33.792748 -33.800417 0.0076691504 403.62054 0.2955032 + 855700 -33.797329 -33.800463 0.0031339716 164.93813 0.40889228 + 855800 -33.795737 -33.800516 0.0047792817 251.52933 0.64256624 + 855900 -33.79175 -33.800556 0.0088056979 463.43603 0.99158745 + 856000 -33.794377 -33.800765 0.006387805 336.18448 1.224263 + 856100 -33.797446 -33.800789 0.003343868 175.98479 1.3305962 + 856200 -33.796822 -33.800888 0.0040661019 213.99532 1.440838 + 856300 -33.789784 -33.801092 0.011308073 595.1338 1.6476556 + 856400 -33.792967 -33.800943 0.0079767142 419.80735 1.5947842 + 856500 -33.796117 -33.800827 0.0047094687 247.85514 1.489361 + 856600 -33.795368 -33.800613 0.005244662 276.02188 1.3957534 + 856700 -33.79329 -33.800159 0.0068689109 361.50465 1.2395434 + 856800 -33.792909 -33.799789 0.00688009 362.093 0.98565538 + 856900 -33.795173 -33.799286 0.0041136195 216.49613 0.66703578 + 857000 -33.796105 -33.798963 0.0028576959 150.39799 0.40835526 + 857100 -33.792518 -33.798884 0.0063660449 335.03927 0.21073196 + 857200 -33.789207 -33.798587 0.0093806959 493.69766 -0.13502908 + 857300 -33.793364 -33.798557 0.0051926627 273.28521 -0.55680489 + 857400 -33.794292 -33.798618 0.0043255557 227.65014 -0.79915679 + 857500 -33.793122 -33.798579 0.005457561 287.22657 -0.95788452 + 857600 -33.792027 -33.798802 0.006775793 356.60394 -1.0690624 + 857700 -33.792599 -33.798875 0.0062759345 330.29684 -1.1577632 + 857800 -33.793156 -33.798787 0.0056311794 296.36395 -1.1897213 + 857900 -33.793514 -33.798851 0.0053376079 280.91354 -1.148367 + 858000 -33.793159 -33.798655 0.0054951331 289.20395 -1.0462622 + 858100 -33.790782 -33.798421 0.0076392911 402.04908 -0.84414895 + 858200 -33.790429 -33.798239 0.007809741 411.0197 -0.60757442 + 858300 -33.794435 -33.797833 0.0033978008 178.82323 -0.48678457 + 858400 -33.795022 -33.797777 0.0027550842 144.99762 -0.3333445 + 858500 -33.790312 -33.797838 0.007525984 396.08582 -0.023907649 + 858600 -33.789313 -33.797729 0.0084161903 442.93659 0.28641038 + 858700 -33.792677 -33.797921 0.0052439518 275.9845 0.44837351 + 858800 -33.79367 -33.797922 0.0042518942 223.7734 0.57001157 + 858900 -33.791724 -33.79792 0.0061952117 326.04847 0.6936156 + 859000 -33.784546 -33.798099 0.013552961 713.28023 0.88094858 + 859100 -33.793005 -33.797824 0.0048183761 253.58684 0.691757 + 859200 -33.793868 -33.79772 0.0038520958 202.73237 0.60306427 + 859300 -33.791849 -33.797768 0.0059190444 311.51403 0.49489273 + 859400 -33.789212 -33.797552 0.0083402171 438.93819 0.28414143 + 859500 -33.79293 -33.79772 0.0047896007 252.07241 -0.070684739 + 859600 -33.795594 -33.797857 0.0022630897 119.10439 -0.32487988 + 859700 -33.794415 -33.79807 0.0036550464 192.36183 -0.50481824 + 859800 -33.792045 -33.798776 0.0067308935 354.24092 -0.70983783 + 859900 -33.792456 -33.799381 0.0069250068 364.45693 -0.9914523 + 860000 -33.794797 -33.799922 0.0051250917 269.72901 -1.2587815 + 860100 -33.796556 -33.800446 0.0038907704 204.76778 -1.4327764 + 860200 -33.798363 -33.800695 0.0023325066 122.75774 -1.5428218 + 860300 -33.798337 -33.80098 0.0026428768 139.09225 -1.5560884 + 860400 -33.793978 -33.801327 0.00734877 386.75921 -1.4224328 + 860500 -33.793415 -33.801424 0.0080093689 421.52594 -1.3032995 + 860600 -33.796996 -33.80152 0.0045236984 238.07821 -1.2489548 + 860700 -33.797678 -33.801409 0.0037303784 196.32649 -1.1327026 + 860800 -33.79252 -33.801156 0.0086352662 454.46636 -0.84397272 + 860900 -33.789225 -33.800823 0.011597965 610.39054 -0.45357719 + 861000 -33.794937 -33.800247 0.0053091449 279.41556 -0.31762344 + 861100 -33.79593 -33.799894 0.0039635682 208.59906 -0.14204716 + 861200 -33.793928 -33.799635 0.0057064543 300.3256 0.07477042 + 861300 -33.789335 -33.799156 0.0098210185 516.87145 0.3630468 + 861400 -33.794107 -33.798881 0.0047742635 251.26523 0.44801441 + 861500 -33.796253 -33.798681 0.0024272575 127.7444 0.46894248 + 861600 -33.79476 -33.798543 0.0037828744 199.0893 0.50269779 + 861700 -33.791723 -33.798556 0.0068326901 359.59838 0.51924929 + 861800 -33.791371 -33.798342 0.006970508 366.85162 0.41151805 + 861900 -33.794001 -33.79813 0.004128741 217.29196 0.21941473 + 862000 -33.796428 -33.798053 0.0016245663 85.499473 0.054611515 + 862100 -33.796697 -33.798037 0.0013403752 70.542749 -0.052873468 + 862200 -33.79288 -33.798266 0.0053861683 283.46923 -0.13893158 + 862300 -33.791112 -33.798703 0.0075917543 399.54726 -0.33989202 + 862400 -33.793421 -33.798984 0.005562989 292.77515 -0.60462679 + 862500 -33.795602 -33.799381 0.0037794814 198.91073 -0.78709872 + 862600 -33.795284 -33.799678 0.004394195 231.26257 -0.86157513 + 862700 -33.78896 -33.800033 0.011072287 582.72457 -0.7710511 + 862800 -33.793297 -33.800539 0.0072413497 381.10578 -0.83486374 + 862900 -33.79648 -33.800637 0.0041568776 218.77276 -0.83980804 + 863000 -33.795717 -33.800793 0.0050760156 267.14618 -0.69135804 + 863100 -33.793626 -33.800917 0.0072909067 383.71392 -0.43389157 + 863200 -33.793945 -33.800796 0.0068513905 360.58257 -0.16158682 + 863300 -33.79803 -33.80078 0.0027504317 144.75277 0.019062065 + 863400 -33.798259 -33.800702 0.0024428845 128.56683 0.22016416 + 863500 -33.794504 -33.800603 0.0060989543 320.98252 0.56759443 + 863600 -33.793211 -33.800572 0.0073617428 387.44196 0.98064743 + 863700 -33.795043 -33.800293 0.0052506219 276.33555 1.2733154 + 863800 -33.796002 -33.80012 0.0041183098 216.74297 1.4905927 + 863900 -33.793812 -33.799969 0.0061563146 324.00134 1.7196332 + 864000 -33.788311 -33.799486 0.011174574 588.10785 1.9975329 + 864100 -33.794344 -33.799204 0.0048603145 255.79402 1.9683743 + 864200 -33.795362 -33.798897 0.0035351403 186.05128 1.9353164 + 864300 -33.793705 -33.798602 0.0048964387 257.6952 1.8632717 + 864400 -33.791594 -33.79844 0.0068468017 360.34107 1.6900733 + 864500 -33.791913 -33.798054 0.0061411443 323.20295 1.3830365 + 864600 -33.792478 -33.79776 0.0052820055 277.98724 1.0485836 + 864700 -33.792245 -33.797556 0.0053115746 279.54343 0.70841167 + 864800 -33.791558 -33.797193 0.0056350301 296.56661 0.34803402 + 864900 -33.790417 -33.797026 0.0066096698 347.86103 -0.0018083275 + 865000 -33.788046 -33.796808 0.0087626323 461.16952 -0.33644829 + 865100 -33.790614 -33.796455 0.005841576 307.43693 -0.72871747 + 865200 -33.79319 -33.796482 0.0032920223 173.2562 -0.9460675 + 865300 -33.792352 -33.796548 0.0041960168 220.83262 -0.97963772 + 865400 -33.786655 -33.796767 0.010111629 532.16601 -0.81793716 + 865500 -33.789922 -33.797279 0.0073564651 387.1642 -0.71509121 + 865600 -33.79229 -33.797407 0.00511694 269.29999 -0.56741721 + 865700 -33.792159 -33.797697 0.0055372817 291.4222 -0.31185867 + 865800 -33.79167 -33.797992 0.0063220841 332.72564 0.021827935 + 865900 -33.792292 -33.798075 0.0057829454 304.35126 0.36791025 + 866000 -33.794514 -33.798317 0.0038025644 200.12557 0.64608747 + 866100 -33.795027 -33.798429 0.0034020639 179.04759 0.89509687 + 866200 -33.79112 -33.798532 0.0074122614 390.10071 1.2503478 + 866300 -33.789308 -33.79882 0.0095113583 500.57431 1.6287043 + 866400 -33.794258 -33.798751 0.0044932857 236.47762 1.7539379 + 866500 -33.794481 -33.798778 0.0042976032 226.17902 1.8620499 + 866600 -33.793094 -33.798885 0.0057916738 304.81063 1.9214233 + 866700 -33.791767 -33.798806 0.0070389145 370.45179 1.8881346 + 866800 -33.793665 -33.798884 0.0052191277 274.67804 1.7236001 + 866900 -33.796607 -33.798886 0.002278969 119.9401 1.5115548 + 867000 -33.795993 -33.798916 0.002922814 153.82509 1.3312479 + 867100 -33.791508 -33.799197 0.0076882985 404.62829 1.0801046 + 867200 -33.792205 -33.799316 0.0071109585 374.2434 0.61348104 + 867300 -33.794697 -33.799417 0.0047200685 248.413 0.17133962 + 867400 -33.795326 -33.799611 0.0042852961 225.53131 -0.15574766 + 867500 -33.791103 -33.799722 0.0086184254 453.58004 -0.38754731 + 867600 -33.789494 -33.800029 0.010534814 554.43784 -0.74290697 + 867700 -33.795703 -33.800252 0.004549041 239.41197 -1.0940495 + 867800 -33.795843 -33.800399 0.0045564995 239.8045 -1.2006012 + 867900 -33.793864 -33.800783 0.0069182824 364.10303 -1.1814565 + 868000 -33.792782 -33.801137 0.0083555967 439.7476 -1.1022218 + 868100 -33.797904 -33.801377 0.0034731137 182.78688 -1.0942436 + 868200 -33.79864 -33.801606 0.0029667271 156.1362 -0.98086858 + 868300 -33.795625 -33.801761 0.0061364347 322.95508 -0.72167508 + 868400 -33.793259 -33.801862 0.008603462 452.79253 -0.35910874 + 868500 -33.79585 -33.801828 0.0059781293 314.62361 -0.10627733 + 868600 -33.796602 -33.801533 0.0049314139 259.53592 0.12829092 + 868700 -33.796001 -33.80123 0.0052289767 275.19638 0.37050077 + 868800 -33.793437 -33.800783 0.0073459767 386.6122 0.63599123 + 868900 -33.787694 -33.799896 0.012201212 642.13889 0.96659827 + 869000 -33.794923 -33.799191 0.0042681822 224.63062 0.98273588 + 869100 -33.796083 -33.7987 0.0026166068 137.70968 0.98846081 + 869200 -33.793754 -33.798357 0.0046022944 242.21465 0.97766383 + 869300 -33.790878 -33.798168 0.0072899443 383.66327 0.87054463 + 869400 -33.791662 -33.797836 0.0061745733 324.96229 0.59992421 + 869500 -33.793059 -33.79771 0.0046500703 244.72905 0.29837272 + 869600 -33.793596 -33.797606 0.0040101178 211.04892 -0.00068029895 + 869700 -33.791689 -33.797405 0.0057154548 300.79929 -0.29969403 + 869800 -33.78826 -33.797244 0.0089836215 472.79999 -0.67878109 + 869900 -33.791514 -33.796778 0.0052643066 277.05576 -1.1913609 + 870000 -33.793627 -33.796428 0.0028011887 147.42406 -1.5297991 + 870100 -33.791776 -33.796285 0.0045085852 237.28282 -1.7161868 + 870200 -33.786211 -33.795891 0.0096803764 509.46958 -1.8910313 + 870300 -33.789676 -33.795769 0.0060929727 320.66772 -2.1654031 + 870400 -33.791551 -33.795774 0.0042229971 222.25257 -2.2761231 + 870500 -33.790795 -33.795864 0.0050690952 266.78196 -2.2306923 + 870600 -33.784161 -33.796453 0.01229182 646.90751 -1.923503 + 870700 -33.790441 -33.79696 0.0065192184 343.10065 -1.7684293 + 870800 -33.793285 -33.797339 0.0040544849 213.38392 -1.5937047 + 870900 -33.792144 -33.797893 0.0057482061 302.52296 -1.2809328 + 871000 -33.790262 -33.798235 0.0079726683 419.59442 -0.87402548 + 871100 -33.793558 -33.798643 0.0050852159 267.63038 -0.55516624 + 871200 -33.796233 -33.798836 0.0026035776 137.02397 -0.35054582 + 871300 -33.795105 -33.798871 0.0037661864 198.21103 -0.11698617 + 871400 -33.791352 -33.799038 0.0076857757 404.49552 0.22594544 + 871500 -33.792323 -33.798949 0.0066266183 348.75301 0.4658589 + 871600 -33.794011 -33.798704 0.0046929074 246.98353 0.60528619 + 871700 -33.79407 -33.798615 0.0045452662 239.2133 0.70508659 + 871800 -33.78916 -33.798299 0.0091391723 480.98648 0.83910873 + 871900 -33.788898 -33.797935 0.0090371881 475.61915 0.82111689 + 872000 -33.793955 -33.797796 0.0038412885 202.16359 0.65556699 + 872100 -33.793514 -33.797626 0.0041124313 216.43359 0.54440131 + 872200 -33.79119 -33.797786 0.0065955793 347.11945 0.39997161 + 872300 -33.790412 -33.798022 0.007609421 400.47704 0.14853427 + 872400 -33.795062 -33.79814 0.0030772649 161.95371 -0.19400248 + 872500 -33.79614 -33.798434 0.0022946183 120.76372 -0.37289251 + 872600 -33.794179 -33.798729 0.00455026 239.47613 -0.51133164 + 872700 -33.792039 -33.7991 0.0070610412 371.6163 -0.69760034 + 872800 -33.793141 -33.799565 0.0064243463 338.10762 -0.93118162 + 872900 -33.795151 -33.799666 0.0045141067 237.57341 -1.1311572 + 873000 -33.796525 -33.799838 0.0033127395 174.34653 -1.2509493 + 873100 -33.796844 -33.800034 0.003189838 167.87833 -1.2847525 + 873200 -33.793265 -33.80014 0.0068749295 361.82141 -1.182763 + 873300 -33.791623 -33.800512 0.0088882911 467.78283 -1.0373661 + 873400 -33.796259 -33.800658 0.0043985662 231.49261 -0.98813742 + 873500 -33.797271 -33.800754 0.0034831748 183.31638 -0.853675 + 873600 -33.795283 -33.801042 0.0057588921 303.08535 -0.59572622 + 873700 -33.793243 -33.801158 0.007914212 416.51792 -0.24639588 + 873800 -33.79455 -33.801262 0.006712429 353.26915 0.064839664 + 873900 -33.796009 -33.8013 0.0052918128 278.50339 0.34019371 + 874000 -33.796677 -33.801082 0.0044050726 231.83504 0.58254594 + 874100 -33.795108 -33.800931 0.0058230739 306.46319 0.85884674 + 874200 -33.790942 -33.800538 0.0095952784 504.99094 1.2078891 + 874300 -33.794502 -33.799833 0.0053306031 280.54489 1.3711207 + 874400 -33.797183 -33.799525 0.0023416333 123.23807 1.4322121 + 874500 -33.796058 -33.799191 0.003132449 164.858 1.4888221 + 874600 -33.793752 -33.798903 0.0051510948 271.09753 1.5102767 + 874700 -33.792414 -33.79887 0.0064565197 339.80087 1.4528681 + 874800 -33.792534 -33.798636 0.0061018914 321.1371 1.2976403 + 874900 -33.794448 -33.798725 0.0042767993 225.08413 1.0900095 + 875000 -33.796204 -33.798891 0.0026872644 141.42833 0.89961317 + 875100 -33.795125 -33.799036 0.0039114587 205.85658 0.75838648 + 875200 -33.789518 -33.799548 0.01002976 527.85731 0.62459847 + 875300 -33.793008 -33.799852 0.0068433273 360.15821 0.28371827 + 875400 -33.795437 -33.79995 0.0045128362 237.50654 0.049192698 + 875500 -33.795086 -33.800147 0.0050603386 266.32111 -0.079972852 + 875600 -33.793882 -33.800087 0.0062053512 326.5821 -0.16908302 + 875700 -33.793359 -33.800046 0.0066868948 351.92531 -0.22194494 + 875800 -33.79567 -33.800033 0.0043630914 229.62561 -0.27887319 + 875900 -33.796803 -33.799873 0.0030702485 161.58444 -0.26871595 + 876000 -33.794402 -33.799904 0.0055026045 289.59717 -0.11528459 + 876100 -33.790685 -33.799859 0.0091738362 482.81081 0.15165901 + 876200 -33.794331 -33.799607 0.0052760681 277.67476 0.29130164 + 876300 -33.796445 -33.799586 0.0031410077 165.30843 0.42981647 + 876400 -33.794676 -33.799429 0.0047526532 250.1279 0.63288143 + 876500 -33.785976 -33.799038 0.013061756 687.42856 1.0734966 + 876600 -33.792781 -33.798892 0.006111312 321.6329 1.2018901 + 876700 -33.795009 -33.79846 0.0034507531 181.61006 1.288654 + 876800 -33.793786 -33.798346 0.0045596448 239.97004 1.3849354 + 876900 -33.7891 -33.798342 0.0092417466 486.38488 1.5143926 + 877000 -33.791458 -33.798064 0.0066052682 347.62938 1.4364907 + 877100 -33.794722 -33.798294 0.0035712373 187.95104 1.3066833 + 877200 -33.794322 -33.798407 0.0040848459 214.98179 1.1944969 + 877300 -33.792825 -33.798602 0.0057770435 304.04065 1.0367184 + 877400 -33.791616 -33.799138 0.0075214648 395.84798 0.80827199 + 877500 -33.794276 -33.799234 0.0049581098 260.94089 0.47396659 + 877600 -33.796872 -33.79944 0.0025675168 135.12612 0.22407845 + 877700 -33.796167 -33.799625 0.0034578383 181.98295 0.070271988 + 877800 -33.789266 -33.799441 0.010175257 535.5147 -0.06432806 + 877900 -33.792909 -33.799536 0.0066269161 348.76868 -0.39167774 + 878000 -33.795357 -33.799234 0.0038773285 204.06034 -0.60650675 + 878100 -33.794592 -33.798886 0.0042937079 225.97402 -0.69666605 + 878200 -33.788498 -33.798778 0.010279427 540.9971 -0.6171232 + 878300 -33.790557 -33.798164 0.0076073683 400.36901 -0.65985675 + 878400 -33.793361 -33.798009 0.0046488243 244.66347 -0.65962429 + 878500 -33.792633 -33.798126 0.0054924009 289.06016 -0.52011952 + 878600 -33.791132 -33.798019 0.006886528 362.43183 -0.31277194 + 878700 -33.792046 -33.79846 0.0064143636 337.58223 -0.10693327 + 878800 -33.795252 -33.798717 0.0034648152 182.35013 0.015382776 + 878900 -33.795845 -33.798868 0.0030224982 159.07138 0.14188898 + 879000 -33.790145 -33.79932 0.0091750008 482.87211 0.40332685 + 879100 -33.78966 -33.799365 0.0097043652 510.73208 0.58354552 + 879200 -33.794285 -33.799343 0.005057956 266.19571 0.59419366 + 879300 -33.794767 -33.799332 0.0045651937 240.26207 0.61479143 + 879400 -33.793022 -33.798841 0.0058187481 306.23552 0.60671376 + 879500 -33.788012 -33.798443 0.010431429 548.99681 0.60209691 + 879600 -33.792374 -33.797891 0.0055177627 290.39493 0.3450392 + 879700 -33.795409 -33.797465 0.0020558431 108.19719 0.14055733 + 879800 -33.793961 -33.797514 0.003553384 187.01143 0.010456415 + 879900 -33.790717 -33.797438 0.0067214478 353.74381 -0.19851624 + 880000 -33.790762 -33.797591 0.0068291753 359.41341 -0.52963265 + 880100 -33.793046 -33.798085 0.0050383957 265.16627 -0.83962541 + 880200 -33.795059 -33.798129 0.0030698902 161.56558 -1.0833398 + 880300 -33.796501 -33.798526 0.0020244202 106.54343 -1.2344492 + 880400 -33.795542 -33.798911 0.003368895 177.30194 -1.2850982 + 880500 -33.79032 -33.799125 0.0088055723 463.42942 -1.2485063 + 880600 -33.792662 -33.799798 0.0071359795 375.56024 -1.3273838 + 880700 -33.795624 -33.799856 0.0042321649 222.73506 -1.38991 + 880800 -33.795468 -33.799827 0.0043589687 229.40864 -1.3457544 + 880900 -33.79328 -33.800049 0.006769837 356.29048 -1.2178211 + 881000 -33.790183 -33.799794 0.0096116536 505.85276 -1.0352396 + 881100 -33.791606 -33.799738 0.0081317509 427.9668 -0.87460472 + 881200 -33.796247 -33.799841 0.003593269 189.11054 -0.82292289 + 881300 -33.79629 -33.799769 0.0034783395 183.0619 -0.71044184 + 881400 -33.792302 -33.800165 0.0078621976 413.78045 -0.46006046 + 881500 -33.791984 -33.800598 0.0086140735 453.351 -0.25364983 + 881600 -33.79697 -33.800809 0.0038382467 202.0035 -0.21624469 + 881700 -33.797059 -33.801188 0.004128484 217.27843 -0.11763126 + 881800 -33.795585 -33.801275 0.0056907194 299.49749 -0.021627215 + 881900 -33.7944 -33.801278 0.0068781182 361.98923 0.042770559 + 882000 -33.796139 -33.801315 0.0051757369 272.39441 0.033290116 + 882100 -33.798981 -33.800982 0.0020009203 105.30665 -0.038257513 + 882200 -33.798677 -33.800833 0.0021562592 113.482 -0.066515194 + 882300 -33.794963 -33.800601 0.0056380021 296.72302 -0.067971921 + 882400 -33.793708 -33.799936 0.0062282587 327.7877 -0.16750213 + 882500 -33.793914 -33.799612 0.0056982129 299.89186 -0.29490916 + 882600 -33.794106 -33.79905 0.0049435581 260.17505 -0.42300492 + 882700 -33.791891 -33.798489 0.0065984503 347.27055 -0.49193878 + 882800 -33.788697 -33.798379 0.0096822394 509.56763 -0.53034879 + 882900 -33.793519 -33.797911 0.0043924846 231.17255 -0.71004561 + 883000 -33.795013 -33.798007 0.0029941178 157.57775 -0.74667202 + 883100 -33.793138 -33.798349 0.0052101955 274.20794 -0.67274118 + 883200 -33.791187 -33.798438 0.0072514029 381.63486 -0.56780682 + 883300 -33.79238 -33.79895 0.0065699859 345.7725 -0.47177533 + 883400 -33.793895 -33.799054 0.0051586916 271.49734 -0.38964997 + 883500 -33.794476 -33.798908 0.0044314219 233.22178 -0.29519301 + 883600 -33.792066 -33.798963 0.0068963149 362.9469 -0.10846029 + 883700 -33.787948 -33.798272 0.010324631 543.37611 0.14089225 + 883800 -33.793601 -33.797754 0.0041524954 218.54213 0.18436786 + 883900 -33.794638 -33.797486 0.002847481 149.86038 0.27321642 + 884000 -33.792876 -33.796962 0.004086189 215.05248 0.40468293 + 884100 -33.791112 -33.796954 0.0058418595 307.45186 0.56729333 + 884200 -33.790676 -33.797068 0.0063922094 336.41628 0.70245704 + 884300 -33.791479 -33.797057 0.0055785423 293.59371 0.78200209 + 884400 -33.793783 -33.797739 0.0039564616 208.22504 0.81521496 + 884500 -33.795354 -33.798114 0.0027602984 145.27204 0.81296504 + 884600 -33.793782 -33.798609 0.0048270283 254.04219 0.84646405 + 884700 -33.787724 -33.799651 0.011926623 627.68754 0.94311279 + 884800 -33.793862 -33.800037 0.0061745228 324.95963 0.75863568 + 884900 -33.795418 -33.800324 0.0049062696 258.21259 0.6702031 + 885000 -33.79495 -33.800497 0.0055467313 291.91952 0.60658953 + 885100 -33.793596 -33.800214 0.006618338 348.31722 0.53068795 + 885200 -33.792331 -33.800103 0.0077717602 409.02081 0.45471185 + 885300 -33.794937 -33.799738 0.0048004833 252.64516 0.30586898 + 885400 -33.796635 -33.799433 0.0027976831 147.23957 0.2107163 + 885500 -33.794567 -33.79954 0.0049731274 261.73126 0.232889 + 885600 -33.789893 -33.799461 0.0095677986 503.5447 0.31990427 + 885700 -33.793424 -33.799756 0.0063323738 333.26718 0.28181123 + 885800 -33.795117 -33.800189 0.0050727202 266.97274 0.30731786 + 885900 -33.79494 -33.800329 0.0053886174 283.59813 0.38312016 + 886000 -33.794354 -33.800837 0.0064830166 341.19538 0.50214888 + 886100 -33.796147 -33.801189 0.005042408 265.37744 0.58207618 + 886200 -33.798552 -33.801306 0.002754228 144.95256 0.6239471 + 886300 -33.797575 -33.801579 0.0040044052 210.74828 0.72797878 + 886400 -33.792893 -33.801589 0.0086965007 457.68907 0.92049964 + 886500 -33.794548 -33.80146 0.0069119893 363.77183 0.9934785 + 886600 -33.797402 -33.801372 0.0039701847 208.94728 1.0025305 + 886700 -33.797133 -33.800965 0.0038320781 201.67885 1.0289924 + 886800 -33.796053 -33.800705 0.0046516225 244.81075 1.0516563 + 886900 -33.794453 -33.80041 0.0059569686 313.50995 1.0510577 + 887000 -33.792799 -33.79973 0.0069305369 364.74797 1.00235 + 887100 -33.793387 -33.799432 0.0060448643 318.13581 0.89233532 + 887200 -33.79593 -33.799 0.0030702134 161.58259 0.73051454 + 887300 -33.79601 -33.798731 0.0027212362 143.21624 0.62145982 + 887400 -33.791264 -33.798803 0.0075393752 396.79059 0.56165667 + 887500 -33.790513 -33.798428 0.007914869 416.55249 0.34073644 + 887600 -33.793541 -33.798293 0.0047520314 250.09518 0.088900082 + 887700 -33.794022 -33.79827 0.0042474934 223.54179 -0.072507663 + 887800 -33.790267 -33.797839 0.0075728587 398.5528 -0.16496381 + 887900 -33.784102 -33.797476 0.013374304 703.87768 -0.26865177 + 888000 -33.791328 -33.796992 0.0056637981 298.08064 -0.57583638 + 888100 -33.792268 -33.796326 0.0040573373 213.53404 -0.69791649 + 888200 -33.790506 -33.796177 0.0056714514 298.48343 -0.70576717 + 888300 -33.786563 -33.795734 0.0091711334 482.66857 -0.64714568 + 888400 -33.789895 -33.795267 0.0053724871 282.74921 -0.68966279 + 888500 -33.793061 -33.795471 0.002410162 126.84468 -0.68963263 + 888600 -33.792066 -33.795454 0.0033882435 178.32024 -0.58827748 + 888700 -33.789555 -33.795927 0.0063719295 335.34897 -0.37882168 + 888800 -33.789352 -33.796738 0.0073860059 388.7189 -0.16739333 + 888900 -33.792002 -33.796979 0.0049762324 261.89467 -0.049015747 + 889000 -33.794315 -33.797619 0.0033042527 173.89987 0.051610326 + 889100 -33.79638 -33.797969 0.0015889616 83.625629 0.090006863 + 889200 -33.796236 -33.798268 0.0020315011 106.91609 0.13089552 + 889300 -33.791678 -33.799025 0.0073470403 386.66818 0.25591676 + 889400 -33.791888 -33.799548 0.0076601573 403.14725 0.24628802 + 889500 -33.795228 -33.799927 0.0046996142 247.3365 0.14771308 + 889600 -33.796253 -33.800219 0.0039654486 208.69802 0.075229594 + 889700 -33.793321 -33.800144 0.0068227469 359.07509 0.02987134 + 889800 -33.788066 -33.800093 0.01202726 632.98396 -0.051940564 + 889900 -33.794779 -33.799918 0.0051388274 270.4519 -0.35769743 + 890000 -33.795379 -33.79955 0.0041701725 219.47246 -0.52019253 + 890100 -33.7936 -33.79956 0.005960039 313.67154 -0.63045512 + 890200 -33.790805 -33.79945 0.0086452104 454.98971 -0.75007581 + 890300 -33.794399 -33.799391 0.0049912129 262.68308 -0.97682919 + 890400 -33.797148 -33.799719 0.0025708274 135.30035 -1.0935157 + 890500 -33.795669 -33.7999 0.0042313416 222.69174 -1.0939903 + 890600 -33.791841 -33.800379 0.0085382742 449.36175 -1.0050454 + 890700 -33.793851 -33.801004 0.0071526594 376.43809 -0.9936378 + 890800 -33.795709 -33.801066 0.0053569629 281.93218 -0.98047032 + 890900 -33.795928 -33.801277 0.0053492557 281.52656 -0.90045919 + 891000 -33.795465 -33.801228 0.0057633899 303.32207 -0.79475013 + 891100 -33.793329 -33.800803 0.0074742246 393.36177 -0.64696238 + 891200 -33.791113 -33.800455 0.0093416023 491.6402 -0.44390486 + 891300 -33.79581 -33.799707 0.003897323 205.11263 -0.41232347 + 891400 -33.796685 -33.799246 0.002561004 134.78336 -0.34323386 + 891500 -33.793413 -33.799054 0.0056410992 296.88602 -0.16798541 + 891600 -33.791154 -33.798471 0.0073173135 385.10368 0.0052227588 + 891700 -33.792834 -33.798502 0.0056681997 298.3123 0.09460651 + 891800 -33.794129 -33.798746 0.0046162808 242.95074 0.15939864 + 891900 -33.794108 -33.798868 0.0047607429 250.55365 0.2027926 + 892000 -33.791162 -33.799603 0.0084413519 444.26082 0.28549291 + 892100 -33.792567 -33.800185 0.0076182948 400.94406 0.24533642 + 892200 -33.796855 -33.800562 0.0037066417 195.07725 0.12382653 + 892300 -33.796792 -33.801014 0.0042220178 222.20103 0.070961605 + 892400 -33.793511 -33.80109 0.0075788162 398.86634 0.031978171 + 892500 -33.790035 -33.80105 0.011015149 579.71746 -0.058723138 + 892600 -33.797693 -33.800952 0.0032590657 171.52172 -0.33995034 + 892700 -33.798069 -33.800525 0.0024560142 129.25784 -0.44140566 + 892800 -33.794989 -33.800243 0.0052542234 276.52509 -0.46643549 + 892900 -33.792476 -33.799613 0.0071376687 375.64914 -0.51909808 + 893000 -33.793299 -33.79871 0.0054116782 284.8118 -0.62382585 + 893100 -33.794253 -33.798475 0.004221842 222.19178 -0.65088496 + 893200 -33.792627 -33.797872 0.005245049 276.04225 -0.5863973 + 893300 -33.787813 -33.797377 0.0095642246 503.35661 -0.38053211 + 893400 -33.791625 -33.797671 0.006046025 318.1969 -0.24942766 + 893500 -33.794097 -33.797477 0.0033800827 177.89074 -0.12918243 + 893600 -33.792991 -33.797917 0.004925881 259.24473 0.095174128 + 893700 -33.790852 -33.798497 0.0076448726 402.34283 0.4164109 + 893800 -33.791832 -33.798689 0.0068569363 360.87444 0.68428916 + 893900 -33.793107 -33.799353 0.0062460452 328.72379 0.91736196 + 894000 -33.794526 -33.799437 0.0049115323 258.48956 1.0854051 + 894100 -33.794987 -33.799417 0.0044308031 233.18921 1.2252718 + 894200 -33.79266 -33.799642 0.006981755 367.44354 1.3837537 + 894300 -33.789154 -33.799063 0.0099090552 521.50474 1.5220988 + 894400 -33.794897 -33.798916 0.0040197196 211.55426 1.4551799 + 894500 -33.796086 -33.798814 0.0027286123 143.60443 1.4098624 + 894600 -33.79445 -33.798441 0.0039904213 210.01232 1.3533386 + 894700 -33.792536 -33.798654 0.0061183342 322.00247 1.2619537 + 894800 -33.792226 -33.798746 0.0065193482 343.10748 1.077551 + 894900 -33.793517 -33.798705 0.0051878639 273.03265 0.83854771 + 895000 -33.796007 -33.799203 0.003195833 168.19384 0.63420983 + 895100 -33.797147 -33.799311 0.0021643491 113.90776 0.49204442 + 895200 -33.794296 -33.799531 0.0052346832 275.49671 0.42940444 + 895300 -33.79026 -33.800115 0.0098552643 518.67377 0.35926936 + 895400 -33.7943 -33.799982 0.0056826286 299.07167 0.14082351 + 895500 -33.795746 -33.800043 0.0042967511 226.13418 0.030236787 + 895600 -33.794753 -33.799864 0.0051108116 268.97746 -0.00037952916 + 895700 -33.788619 -33.799127 0.010507714 553.0116 0.091789538 + 895800 -33.788607 -33.798547 0.009940163 523.14191 0.098735698 + 895900 -33.794864 -33.797792 0.0029283346 154.11564 -0.009297049 + 896000 -33.793829 -33.797235 0.003405353 179.22069 0.075667017 + 896100 -33.789912 -33.797058 0.0071453809 376.05502 0.29304945 + 896200 -33.789187 -33.79647 0.007282147 383.2529 0.49043243 + 896300 -33.792068 -33.796496 0.0044284179 233.06369 0.6416769 + 896400 -33.794072 -33.796781 0.0027091507 142.58018 0.75218616 + 896500 -33.794783 -33.797013 0.00222993 117.35923 0.83515582 + 896600 -33.791614 -33.797774 0.0061603755 324.21507 1.0043636 + 896700 -33.788349 -33.798784 0.010435623 549.21751 1.1737035 + 896800 -33.79428 -33.799451 0.0051709859 272.14437 1.1039346 + 896900 -33.795407 -33.800056 0.0046489908 244.67224 1.0887094 + 897000 -33.794567 -33.800253 0.0056859618 299.2471 1.0421338 + 897100 -33.793115 -33.800389 0.007274413 382.84587 0.94474323 + 897200 -33.793745 -33.800495 0.0067507417 355.28551 0.76531994 + 897300 -33.796686 -33.800181 0.0034949889 183.93815 0.52175071 + 897400 -33.796777 -33.800116 0.0033386297 175.7091 0.34359382 + 897500 -33.792605 -33.800047 0.0074418822 391.65962 0.18305195 + 897600 -33.791762 -33.799711 0.0079488164 418.33912 -0.14177991 + 897700 -33.794874 -33.799863 0.0049893222 262.58358 -0.4761724 + 897800 -33.795345 -33.799866 0.0045214876 237.96186 -0.69525276 + 897900 -33.79449 -33.800014 0.0055233484 290.6889 -0.84842039 + 898000 -33.794114 -33.800523 0.0064093007 337.31578 -0.96508166 + 898100 -33.794896 -33.800712 0.0058161197 306.09719 -1.066185 + 898200 -33.79687 -33.801044 0.0041743503 219.69233 -1.1173297 + 898300 -33.79898 -33.801291 0.0023102784 121.58789 -1.1273572 + 898400 -33.798704 -33.801347 0.0026430952 139.10374 -1.0597968 + 898500 -33.793195 -33.801519 0.0083240428 438.08695 -0.78941657 + 898600 -33.794005 -33.801394 0.0073891867 388.8863 -0.5787231 + 898700 -33.796902 -33.800978 0.0040755745 214.49385 -0.45172213 + 898800 -33.796879 -33.800696 0.0038169498 200.88266 -0.27322023 + 898900 -33.790077 -33.799935 0.0098579601 518.81565 0.078179433 + 899000 -33.790895 -33.798867 0.0079722849 419.57424 0.33990791 + 899100 -33.793776 -33.798131 0.0043549138 229.19523 0.49024356 + 899200 -33.793492 -33.797402 0.0039098208 205.77038 0.6294925 + 899300 -33.788892 -33.797066 0.0081744979 430.21653 0.82990633 + 899400 -33.788296 -33.797009 0.0087130449 458.55978 0.93378736 + 899500 -33.791388 -33.797026 0.0056380174 296.72383 0.88235081 + 899600 -33.791655 -33.79766 0.006004169 315.99406 0.8229305 + 899700 -33.792279 -33.798207 0.0059277309 311.97119 0.68378355 + 899800 -33.794029 -33.798819 0.0047892627 252.05463 0.47508098 + 899900 -33.795891 -33.799495 0.0036041977 189.68571 0.25077558 + 900000 -33.796411 -33.799848 0.0034362739 180.84803 0.032465296 + 900100 -33.792701 -33.800252 0.0075507225 397.38779 -0.16917059 + 900200 -33.790688 -33.800544 0.0098565622 518.74207 -0.54287553 + 900300 -33.796372 -33.800303 0.0039306504 206.86662 -1.0018172 + 900400 -33.7966 -33.800117 0.0035178741 185.14258 -1.2518555 + 900500 -33.794885 -33.79971 0.0048255171 253.96266 -1.4613968 + 900600 -33.79304 -33.799038 0.0059983215 315.68631 -1.6815358 + 900700 -33.792668 -33.798531 0.0058624472 308.53537 -1.8756701 + 900800 -33.792613 -33.797778 0.0051655964 271.86073 -2.0001988 + 900900 -33.789702 -33.797245 0.0075436052 397.01322 -1.9719908 + 901000 -33.783101 -33.796789 0.01368746 720.3588 -1.7370853 + 901100 -33.791569 -33.796263 0.0046938575 247.03353 -1.7412378 + 901200 -33.792128 -33.796346 0.0042179231 221.98553 -1.535419 + 901300 -33.78986 -33.796655 0.0067953061 357.6309 -1.1612919 + 901400 -33.787968 -33.797038 0.009069635 477.3268 -0.6531295 + 901500 -33.793952 -33.797637 0.0036848032 193.92791 -0.35188536 + 901600 -33.794535 -33.797932 0.0033966331 178.76177 -0.076735218 + 901700 -33.792177 -33.79837 0.0061933125 325.94851 0.28618487 + 901800 -33.790746 -33.798901 0.0081556794 429.22613 0.67386516 + 901900 -33.7955 -33.799047 0.0035472407 186.68811 0.85197805 + 902000 -33.797466 -33.799246 0.0017809252 93.728504 0.93118302 + 902100 -33.79629 -33.799477 0.003186315 167.69292 0.99943262 + 902200 -33.793274 -33.799761 0.0064872085 341.416 1.0444353 + 902300 -33.792616 -33.800256 0.0076392916 402.0491 0.97977374 + 902400 -33.795962 -33.800448 0.004485403 236.06276 0.78538156 + 902500 -33.798172 -33.800654 0.00248259 130.6565 0.6124062 + 902600 -33.798476 -33.800933 0.0024568747 129.30313 0.46808627 + 902700 -33.7939 -33.80121 0.0073100525 384.72154 0.33911232 + 902800 -33.792655 -33.801676 0.0090218927 474.81416 0.034142355 + 902900 -33.797405 -33.801847 0.0044423957 233.79932 -0.33301119 + 903000 -33.79803 -33.80184 0.0038094067 200.48568 -0.54260437 + 903100 -33.795516 -33.801866 0.006350054 334.19768 -0.67812206 + 903200 -33.78957 -33.80156 0.0119906 631.05461 -0.787749 + 903300 -33.796526 -33.801038 0.0045122935 237.47798 -1.1137312 + 903400 -33.798266 -33.800719 0.0024529085 129.09439 -1.2115226 + 903500 -33.796136 -33.80031 0.0041740468 219.67636 -1.1665625 + 903600 -33.792428 -33.799804 0.0073767904 388.2339 -0.99796458 + 903700 -33.792931 -33.799259 0.0063273217 333.0013 -0.83475848 + 903800 -33.794892 -33.798671 0.0037789417 198.88233 -0.67350764 + 903900 -33.7956 -33.798453 0.0028533174 150.16755 -0.45957969 + 904000 -33.792158 -33.798339 0.0061808196 325.29102 -0.080924667 + 904100 -33.789121 -33.798189 0.0090684116 477.26241 0.47037787 + 904200 -33.793334 -33.798318 0.0049848041 262.34579 0.85197992 + 904300 -33.794718 -33.798332 0.0036140126 190.20226 1.1412969 + 904400 -33.792732 -33.798504 0.0057718074 303.76507 1.4628356 + 904500 -33.782491 -33.798854 0.01636342 861.19221 2.0166407 + 904600 -33.79385 -33.798739 0.0048896949 257.34028 2.0751087 + 904700 -33.794758 -33.798719 0.0039611812 208.47343 2.1533831 + 904800 -33.792631 -33.798718 0.0060861926 320.31089 2.192356 + 904900 -33.790106 -33.798428 0.0083214141 437.9486 2.1180201 + 905000 -33.793282 -33.798335 0.0050527813 265.92337 1.8640163 + 905100 -33.795473 -33.798159 0.0026867946 141.4036 1.6128028 + 905200 -33.793712 -33.798067 0.0043548021 229.18935 1.386577 + 905300 -33.787672 -33.798225 0.010553276 555.40951 1.0203945 + 905400 -33.792239 -33.798084 0.0058444475 307.58806 0.41889363 + 905500 -33.794164 -33.798095 0.0039316493 206.9192 0.017518364 + 905600 -33.793064 -33.79826 0.0051964856 273.4864 -0.26053095 + 905700 -33.786561 -33.798316 0.011755094 618.6601 -0.47273305 + 905800 -33.792722 -33.798557 0.0058347168 307.07594 -0.89008537 + 905900 -33.795237 -33.798626 0.0033889135 178.35549 -1.040695 + 906000 -33.79339 -33.798713 0.0053229326 280.14119 -0.99377331 + 906100 -33.790212 -33.798949 0.0087369719 459.81904 -0.78820298 + 906200 -33.793548 -33.798909 0.0053609633 282.14272 -0.63329158 + 906300 -33.796439 -33.798856 0.0024170208 127.20565 -0.48127043 + 906400 -33.795613 -33.798872 0.0032585041 171.49217 -0.20836498 + 906500 -33.793936 -33.798781 0.0048455704 255.01805 0.19442774 + 906600 -33.792549 -33.798692 0.0061427055 323.28511 0.6784447 + 906700 -33.791869 -33.798498 0.006628937 348.87504 1.1923629 + 906800 -33.793096 -33.798127 0.0050308159 264.76735 1.6179365 + 906900 -33.794689 -33.79799 0.0033009287 173.72494 1.9135281 + 907000 -33.793694 -33.797945 0.0042511403 223.73372 2.1540156 + 907100 -33.788511 -33.798003 0.0094924723 499.58035 2.4404051 + 907200 -33.791514 -33.798387 0.006872866 361.71281 2.4856825 + 907300 -33.794392 -33.798627 0.0042345308 222.85958 2.3942401 + 907400 -33.793975 -33.799067 0.0050920063 267.98775 2.2517202 + 907500 -33.793154 -33.799709 0.0065544302 344.95382 1.987281 + 907600 -33.794016 -33.800223 0.0062069729 326.66745 1.5798018 + 907700 -33.797397 -33.800738 0.0033416483 175.86797 1.1252385 + 907800 -33.799311 -33.801026 0.0017147119 90.243759 0.80316825 + 907900 -33.798041 -33.801277 0.0032357565 170.29498 0.51321965 + 908000 -33.795699 -33.801655 0.0059554601 313.43055 0.10372092 + 908100 -33.7953 -33.801785 0.0064848564 341.29221 -0.41222264 + 908200 -33.796571 -33.801701 0.0051306737 270.02278 -0.91764172 + 908300 -33.797936 -33.801542 0.0036064897 189.80633 -1.3023794 + 908400 -33.797258 -33.801257 0.0039991893 210.47377 -1.5427271 + 908500 -33.792104 -33.800898 0.0087930651 462.77117 -1.6693352 + 908600 -33.793325 -33.800414 0.0070893633 373.10687 -1.8486762 + 908700 -33.796505 -33.799988 0.0034828735 183.30053 -1.9262421 + 908800 -33.796076 -33.799879 0.0038025596 200.12532 -1.8032966 + 908900 -33.786004 -33.799816 0.013811815 726.90352 -1.2645432 + 909000 -33.791865 -33.79969 0.0078248008 411.81228 -0.87455956 + 909100 -33.795181 -33.799629 0.0044481251 234.10085 -0.54006794 + 909200 -33.795233 -33.799539 0.004305131 226.57521 -0.17011751 + 909300 -33.792029 -33.7995 0.0074701908 393.14948 0.32562519 + 909400 -33.789673 -33.799375 0.009701395 510.57576 0.90782316 + 909500 -33.796072 -33.799119 0.0030472026 160.37155 1.1592589 + 909600 -33.796301 -33.799053 0.0027523487 144.85366 1.3444374 + 909700 -33.79387 -33.799078 0.00520749 274.06555 1.5156803 + 909800 -33.792017 -33.799123 0.007105952 373.97992 1.5993182 + 909900 -33.793291 -33.799289 0.0059979704 315.66783 1.5261483 + 910000 -33.795002 -33.799394 0.0043919679 231.14535 1.3525032 + 910100 -33.796708 -33.799574 0.0028656704 150.81768 1.1134694 + 910200 -33.796911 -33.799854 0.0029426926 154.87129 0.8631415 + 910300 -33.792879 -33.800199 0.0073191205 385.19878 0.54452074 + 910400 -33.791961 -33.800626 0.0086655067 456.05789 -0.032583155 + 910500 -33.796406 -33.800812 0.0044062176 231.8953 -0.62484963 + 910600 -33.796954 -33.800825 0.003871312 203.7437 -1.0226482 + 910700 -33.795613 -33.800831 0.0052187307 274.65714 -1.3862799 + 910800 -33.794772 -33.800667 0.0058947836 310.2372 -1.7619957 + 910900 -33.794676 -33.800344 0.0056677756 298.28997 -2.0986594 + 911000 -33.794546 -33.799981 0.0054344926 286.0125 -2.3577145 + 911100 -33.792251 -33.799414 0.0071627902 376.97126 -2.4957856 + 911200 -33.78962 -33.798642 0.0090220517 474.82253 -2.5526758 + 911300 -33.793789 -33.797937 0.0041477565 218.29273 -2.6407351 + 911400 -33.794862 -33.79747 0.002608479 137.28193 -2.5649981 + 911500 -33.791285 -33.797269 0.0059847808 314.97367 -2.2392044 + 911600 -33.788576 -33.797083 0.008506684 447.69919 -1.6867162 + 911700 -33.791444 -33.796904 0.0054595289 287.33014 -1.217085 + 911800 -33.792723 -33.796933 0.0042102526 221.58184 -0.76656655 + 911900 -33.79134 -33.796922 0.0055818243 293.76644 -0.26446031 + 912000 -33.784149 -33.796877 0.012728652 669.8976 0.52520142 + 912100 -33.791308 -33.79672 0.0054125118 284.85567 1.0095943 + 912200 -33.792731 -33.796429 0.0036982687 194.63658 1.3245888 + 912300 -33.791029 -33.796306 0.0052765329 277.69922 1.6127181 + 912400 -33.788084 -33.796092 0.0080084925 421.47982 1.865448 + 912500 -33.789957 -33.795754 0.0057975771 305.12131 1.9197667 + 912600 -33.793766 -33.795734 0.0019676739 103.55692 1.8153765 + 912700 -33.793231 -33.795819 0.0025886415 136.23789 1.683501 + 912800 -33.790508 -33.796229 0.005721511 301.11802 1.4283036 + 912900 -33.789661 -33.796895 0.007234262 380.73276 0.97595488 + 913000 -33.791805 -33.797351 0.0055465187 291.90833 0.42812706 + 913100 -33.794178 -33.797843 0.0036647463 192.87233 -0.030862468 + 913200 -33.795774 -33.798223 0.0024498113 128.93138 -0.37923871 + 913300 -33.795953 -33.79858 0.0026276175 138.28916 -0.62171468 + 913400 -33.791384 -33.799169 0.0077847513 409.70452 -0.78175761 + 913500 -33.791044 -33.799706 0.008661427 455.84318 -1.0709729 + 913600 -33.795446 -33.799986 0.0045406373 238.96969 -1.3437909 + 913700 -33.795854 -33.800168 0.0043139442 227.03904 -1.4224083 + 913800 -33.794571 -33.80021 0.0056392957 296.7911 -1.3913155 + 913900 -33.793878 -33.800249 0.0063711038 335.30551 -1.2892264 + 914000 -33.794328 -33.800212 0.0058848328 309.7135 -1.1326832 + 914100 -33.794626 -33.800062 0.0054358777 286.0854 -0.91944887 + 914200 -33.794436 -33.800008 0.0055717619 293.23686 -0.64534433 + 914300 -33.793135 -33.799904 0.0067687513 356.23334 -0.29757126 + 914400 -33.790475 -33.799717 0.0092410743 486.3495 0.15367836 + 914500 -33.794705 -33.799625 0.0049198863 258.92923 0.44270763 + 914600 -33.796463 -33.799513 0.0030502123 160.52995 0.64653819 + 914700 -33.794425 -33.799545 0.0051199871 269.46036 0.88722158 + 914800 -33.789496 -33.799687 0.010190959 536.34106 1.216452 + 914900 -33.792943 -33.799648 0.0067054584 352.90229 1.3200868 + 915000 -33.794409 -33.799695 0.0052851395 278.15218 1.3715484 + 915100 -33.79452 -33.799741 0.0052204012 274.74506 1.3693513 + 915200 -33.793241 -33.799799 0.0065572419 345.10179 1.3126649 + 915300 -33.790841 -33.800007 0.0091660284 482.3999 1.1985075 + 915400 -33.79511 -33.800096 0.0049868463 262.45327 0.9068639 + 915500 -33.797145 -33.800244 0.0030998383 163.14172 0.68642908 + 915600 -33.795434 -33.800531 0.0050970502 268.2532 0.51983875 + 915700 -33.790224 -33.800831 0.01060658 558.21486 0.31414843 + 915800 -33.795609 -33.801142 0.0055331124 291.20277 -0.10769344 + 915900 -33.797443 -33.801265 0.0038221731 201.15756 -0.33713981 + 916000 -33.796003 -33.801313 0.0053108367 279.5046 -0.46728576 + 916100 -33.793452 -33.801365 0.0079135436 416.48274 -0.56168768 + 916200 -33.795152 -33.801178 0.0060265729 317.17316 -0.69596749 + 916300 -33.798093 -33.800956 0.0028623585 150.64338 -0.77532695 + 916400 -33.797939 -33.80082 0.0028816824 151.66037 -0.72294215 + 916500 -33.791571 -33.80052 0.008949091 470.98268 -0.42953471 + 916600 -33.793168 -33.800124 0.0069557376 366.07427 -0.1833537 + 916700 -33.795862 -33.799728 0.0038660614 203.46737 0.019242307 + 916800 -33.795468 -33.799381 0.0039128251 205.92849 0.28376204 + 916900 -33.788665 -33.799072 0.010407597 547.74253 0.79856159 + 917000 -33.790563 -33.798511 0.0079477553 418.28327 1.2374196 + 917100 -33.793117 -33.798026 0.0049082449 258.31655 1.5312404 + 917200 -33.792976 -33.797734 0.0047573262 250.37383 1.7931319 + 917300 -33.790525 -33.797347 0.0068222659 359.04977 2.0462887 + 917400 -33.785822 -33.796889 0.011066239 582.4063 2.3032399 + 917500 -33.792101 -33.796407 0.0043060441 226.62326 2.2476388 + 917600 -33.793529 -33.796082 0.0025528475 134.35409 2.1708019 + 917700 -33.791194 -33.79602 0.0048269092 254.03592 2.0458669 + 917800 -33.788133 -33.795939 0.0078058337 410.81407 1.746434 + 917900 -33.789641 -33.795793 0.0061518458 323.76616 1.2662196 + 918000 -33.791053 -33.795792 0.0047390949 249.41434 0.80118664 + 918100 -33.790592 -33.795695 0.0051025738 268.54391 0.35902219 + 918200 -33.780958 -33.795597 0.014639 770.43749 -0.065083785 + 918300 -33.788412 -33.795418 0.0070058501 368.71164 -0.92185154 + 918400 -33.79127 -33.79512 0.0038505525 202.65115 -1.3929088 + 918500 -33.790311 -33.795174 0.0048631794 255.94479 -1.6625739 + 918600 -33.786515 -33.795282 0.0087670813 461.40367 -1.8411866 + 918700 -33.788764 -33.795445 0.0066808319 351.60622 -2.0619245 + 918800 -33.793141 -33.795845 0.0027036792 142.29222 -2.1582758 + 918900 -33.792393 -33.796247 0.0038544011 202.85369 -2.0298889 + 919000 -33.789853 -33.797063 0.0072096776 379.4389 -1.6989694 + 919100 -33.790692 -33.798059 0.0073670768 387.72268 -1.3019208 + 919200 -33.794588 -33.798665 0.0040772948 214.58439 -0.99353437 + 919300 -33.796396 -33.799232 0.0028354365 149.2265 -0.70551953 + 919400 -33.797871 -33.799635 0.00176414 92.845115 -0.46436492 + 919500 -33.797437 -33.799983 0.0025459565 133.99142 -0.21880432 + 919600 -33.79296 -33.800558 0.0075975059 399.84996 0.21708379 + 919700 -33.792912 -33.800928 0.0080155994 421.85385 0.64087098 + 919800 -33.796928 -33.801071 0.0041425879 218.02071 0.86729714 + 919900 -33.797468 -33.801096 0.0036282613 190.95216 1.0416429 + 920000 -33.793328 -33.800921 0.0075932044 399.62358 1.2502038 + 920100 -33.788711 -33.800561 0.011849981 623.65392 1.449595 + 920200 -33.793751 -33.80004 0.0062894139 331.00624 1.3711205 + 920300 -33.795085 -33.799517 0.0044318709 233.24541 1.2797112 + 920400 -33.79432 -33.799231 0.0049104663 258.43346 1.1613675 + 920500 -33.790556 -33.798934 0.0083784256 440.94906 0.99035747 + 920600 -33.791227 -33.798668 0.0074407176 391.59833 0.62765546 + 920700 -33.795918 -33.798701 0.0027832353 146.47919 0.2694372 + 920800 -33.795642 -33.798804 0.0031615667 166.39044 0.057752082 + 920900 -33.793425 -33.799182 0.0057568033 302.97542 -0.15815928 + 921000 -33.792641 -33.799692 0.0070513896 371.10835 -0.42663893 + 921100 -33.794324 -33.799998 0.0056741885 298.62748 -0.70705247 + 921200 -33.796261 -33.800309 0.0040475594 213.01944 -0.9097492 + 921300 -33.798459 -33.800473 0.0020142545 106.00842 -1.0319905 + 921400 -33.798717 -33.800626 0.0019086916 100.45274 -1.0413185 + 921500 -33.795017 -33.800941 0.005924137 311.78204 -0.89590236 + 921600 -33.793367 -33.801176 0.0078087292 410.96645 -0.70398393 + 921700 -33.796139 -33.8013 0.0051616884 271.65505 -0.57204789 + 921800 -33.797798 -33.801353 0.0035548922 187.09081 -0.43237886 + 921900 -33.796218 -33.801296 0.0050781728 267.2597 -0.2224182 + 922000 -33.789592 -33.801193 0.011600561 610.52718 0.18802023 + 922100 -33.795385 -33.800898 0.005512114 290.09764 0.33394605 + 922200 -33.796812 -33.80056 0.0037482651 197.26785 0.45901886 + 922300 -33.795267 -33.800311 0.0050433316 265.42604 0.60258428 + 922400 -33.792174 -33.799865 0.0076909069 404.76557 0.74372181 + 922500 -33.793218 -33.799274 0.0060562029 318.73256 0.74902903 + 922600 -33.797322 -33.798957 0.001634962 86.046592 0.64335072 + 922700 -33.796725 -33.798736 0.0020109022 105.83199 0.57558445 + 922800 -33.793502 -33.798635 0.0051328917 270.13951 0.45142103 + 922900 -33.791283 -33.798543 0.0072602359 382.09974 0.1901192 + 923000 -33.79241 -33.798258 0.0058479643 307.77315 -0.18135157 + 923100 -33.794748 -33.798214 0.0034661016 182.41784 -0.51701026 + 923200 -33.795543 -33.798201 0.0026576827 139.87147 -0.74723823 + 923300 -33.791672 -33.798335 0.0066633616 350.68678 -0.87442088 + 923400 -33.789443 -33.798871 0.0094277265 496.17283 -1.0666874 + 923500 -33.794194 -33.799133 0.0049388864 259.92919 -1.3092136 + 923600 -33.795206 -33.799503 0.0042975223 226.17476 -1.3582971 + 923700 -33.794026 -33.799959 0.00593332 312.26534 -1.2736251 + 923800 -33.792873 -33.800274 0.0074015518 389.53707 -1.096349 + 923900 -33.796637 -33.800632 0.0039955798 210.2838 -0.94930313 + 924000 -33.798172 -33.800745 0.0025725327 135.3901 -0.78094529 + 924100 -33.796011 -33.800781 0.0047695613 251.01776 -0.47449497 + 924200 -33.792023 -33.80081 0.0087864971 462.4255 0.041565786 + 924300 -33.794629 -33.800438 0.0058088114 305.71256 0.44737836 + 924400 -33.796778 -33.800087 0.0033094509 174.17345 0.74621596 + 924500 -33.794839 -33.799797 0.004957779 260.92349 1.0754778 + 924600 -33.788069 -33.79904 0.010970593 577.3725 1.6258441 + 924700 -33.793666 -33.798597 0.0049305746 259.49174 1.8535859 + 924800 -33.79497 -33.798311 0.0033405233 175.80876 1.9848326 + 924900 -33.79257 -33.798175 0.005605577 295.01652 2.0852719 + 925000 -33.788508 -33.798486 0.0099776354 525.11405 2.1162154 + 925100 -33.792371 -33.798633 0.0062614182 329.53286 1.8854733 + 925200 -33.793344 -33.798849 0.0055054031 289.74445 1.6560268 + 925300 -33.793376 -33.799176 0.005799768 305.23661 1.366275 + 925400 -33.793578 -33.799221 0.0056424307 296.9561 0.99739421 + 925500 -33.794311 -33.799307 0.0049957739 262.92312 0.60074381 + 925600 -33.794793 -33.799247 0.0044541508 234.41798 0.20590583 + 925700 -33.793034 -33.798913 0.0058788677 309.39956 -0.17827203 + 925800 -33.789519 -33.798512 0.0089929984 473.29348 -0.60931561 + 925900 -33.792635 -33.797733 0.0050983159 268.31982 -1.1555517 + 926000 -33.795183 -33.797214 0.0020311079 106.89539 -1.480444 + 926100 -33.793852 -33.797013 0.0031609348 166.35718 -1.595819 + 926200 -33.789822 -33.79666 0.0068378825 359.87166 -1.6245528 + 926300 -33.790409 -33.796672 0.0062629473 329.61333 -1.6470091 + 926400 -33.792077 -33.796859 0.0047823269 251.6896 -1.582773 + 926500 -33.792656 -33.797009 0.0043530702 229.0982 -1.4206043 + 926600 -33.790594 -33.797592 0.0069982615 368.31226 -1.1014585 + 926700 -33.788222 -33.798187 0.0099645345 524.42456 -0.6351838 + 926800 -33.794501 -33.798641 0.0041405217 217.91196 -0.36914682 + 926900 -33.79538 -33.799095 0.0037147551 195.50425 -0.09993914 + 927000 -33.79342 -33.799418 0.0059981436 315.67695 0.24340761 + 927100 -33.791449 -33.799815 0.0083666473 440.32919 0.64984276 + 927200 -33.796939 -33.800161 0.0032221335 169.57801 0.83784242 + 927300 -33.798171 -33.800255 0.0020834859 109.652 0.93975843 + 927400 -33.795847 -33.800511 0.0046637395 245.44845 1.0718099 + 927500 -33.792973 -33.800777 0.007804328 410.73482 1.1750874 + 927600 -33.794762 -33.800871 0.0061092302 321.52333 1.1185328 + 927700 -33.797018 -33.801009 0.0039911954 210.05306 1.0149036 + 927800 -33.797823 -33.800968 0.003144998 165.51844 0.8939133 + 927900 -33.795509 -33.800952 0.0054427236 286.44569 0.77209142 + 928000 -33.791317 -33.80095 0.0096329948 506.97593 0.58245809 + 928100 -33.79535 -33.8006 0.0052498136 276.293 0.20649812 + 928200 -33.797241 -33.800436 0.0031952688 168.16415 -0.047430362 + 928300 -33.795489 -33.800243 0.0047538702 250.19195 -0.20829157 + 928400 -33.789657 -33.799754 0.010096337 531.36119 -0.35723649 + 928500 -33.792164 -33.799438 0.0072742293 382.8362 -0.65885651 + 928600 -33.794097 -33.798924 0.0048267084 254.02536 -0.86377672 + 928700 -33.794208 -33.798565 0.0043574513 229.32878 -0.9462023 + 928800 -33.790875 -33.798399 0.0075236443 395.96269 -0.89695639 + 928900 -33.787961 -33.797866 0.0099050019 521.29141 -0.79662671 + 929000 -33.794482 -33.797765 0.0032825964 172.76012 -0.82188573 + 929100 -33.794742 -33.797745 0.00300285 158.03732 -0.71069739 + 929200 -33.79244 -33.797754 0.0053146143 279.70341 -0.47709826 + 929300 -33.790433 -33.798106 0.0076727102 403.80789 -0.1409114 + 929400 -33.792411 -33.798248 0.0058365395 307.17187 0.11774958 + 929500 -33.795265 -33.798378 0.0031127567 163.82161 0.28844881 + 929600 -33.7974 -33.79861 0.0012098446 63.673042 0.3823834 + 929700 -33.797056 -33.798794 0.0017373728 91.436379 0.46148421 + 929800 -33.794147 -33.799246 0.0050995337 268.38391 0.57970394 + 929900 -33.79284 -33.799817 0.0069769298 367.18959 0.64291146 + 930000 -33.794143 -33.800084 0.0059408367 312.66094 0.60458615 + 930100 -33.796424 -33.80034 0.0039159359 206.09222 0.5048005 + 930200 -33.796866 -33.8004 0.0035334731 185.96354 0.40258189 + 930300 -33.791937 -33.800312 0.0083750118 440.7694 0.33742652 + 930400 -33.791151 -33.800201 0.0090497138 476.27837 0.082467216 + 930500 -33.795542 -33.799775 0.0042327282 222.76471 -0.24649621 + 930600 -33.79547 -33.799449 0.0039792051 209.42202 -0.44657783 + 930700 -33.793719 -33.79915 0.0054310566 285.83166 -0.63838412 + 930800 -33.792255 -33.798623 0.0063680994 335.14739 -0.86835399 + 930900 -33.792396 -33.798277 0.0058811375 309.51902 -1.0936573 + 931000 -33.792611 -33.79792 0.0053085979 279.38677 -1.2750285 + 931100 -33.792316 -33.797556 0.0052394186 275.74593 -1.3920832 + 931200 -33.791664 -33.797478 0.0058147337 306.02425 -1.4212597 + 931300 -33.790943 -33.797303 0.0063598617 334.71385 -1.3881318 + 931400 -33.791083 -33.79723 0.006146981 323.51013 -1.2978848 + 931500 -33.792922 -33.797366 0.0044444957 233.90984 -1.1756157 + 931600 -33.793582 -33.797406 0.003823965 201.25187 -1.0043702 + 931700 -33.79077 -33.797688 0.0069182651 364.10212 -0.68623488 + 931800 -33.788097 -33.798109 0.01001125 526.88316 -0.23691363 + 931900 -33.79446 -33.798308 0.0038471457 202.47185 -0.024688324 + 932000 -33.795102 -33.798655 0.0035528741 186.9846 0.19630246 + 932100 -33.793369 -33.799061 0.0056923521 299.58341 0.46186572 + 932200 -33.791995 -33.799561 0.0075660046 398.19207 0.72802145 + 932300 -33.795175 -33.800224 0.0050490143 265.72512 0.85462397 + 932400 -33.798505 -33.800569 0.0020631624 108.5824 0.85764359 + 932500 -33.797853 -33.800974 0.0031215551 164.28466 0.86674058 + 932600 -33.795726 -33.801583 0.0058579552 308.29896 0.83509835 + 932700 -33.794845 -33.802064 0.0072194228 379.95178 0.69221945 + 932800 -33.79732 -33.802488 0.0051681303 271.99409 0.45294116 + 932900 -33.800196 -33.802643 0.002446316 128.74743 0.22196423 + 933000 -33.801057 -33.802669 0.0016119952 84.83787 0.054214272 + 933100 -33.798 -33.802702 0.0047017564 247.44925 -0.072914739 + 933200 -33.794206 -33.802473 0.0082661116 435.03808 -0.33216555 + 933300 -33.796514 -33.802022 0.0055073159 289.84512 -0.71985918 + 933400 -33.798371 -33.801611 0.0032405398 170.54672 -0.99227231 + 933500 -33.796856 -33.801048 0.0041922758 220.63574 -1.1462705 + 933600 -33.791191 -33.800242 0.0090502992 476.30917 -1.2449259 + 933700 -33.793263 -33.799355 0.0060926466 320.65056 -1.4422672 + 933800 -33.794672 -33.798522 0.003849705 202.60654 -1.5317783 + 933900 -33.792777 -33.798027 0.0052501661 276.31156 -1.4564624 + 934000 -33.784593 -33.797265 0.012671726 666.90165 -1.1202817 + 934100 -33.789939 -33.796545 0.0066061462 347.67558 -0.9785199 + 934200 -33.791507 -33.796231 0.0047239917 248.61947 -0.7580621 + 934300 -33.790927 -33.795896 0.0049682425 261.47417 -0.46361598 + 934400 -33.787347 -33.795746 0.0083984807 442.00455 -0.021981205 + 934500 -33.786504 -33.79566 0.0091564652 481.8966 0.47610325 + 934600 -33.792488 -33.795454 0.002966324 156.11498 0.69465133 + 934700 -33.792353 -33.795553 0.0032002706 168.42739 0.9201898 + 934800 -33.78922 -33.795794 0.0065746515 346.01805 1.217092 + 934900 -33.788492 -33.79605 0.0075579678 397.7691 1.4631137 + 935000 -33.790717 -33.796519 0.005801989 305.3535 1.579171 + 935100 -33.791568 -33.796819 0.0052501805 276.31232 1.633816 + 935200 -33.791466 -33.79723 0.005764156 303.36239 1.6301929 + 935300 -33.791553 -33.797813 0.0062605102 329.48507 1.5571963 + 935400 -33.792164 -33.79821 0.0060461967 318.20594 1.4109349 + 935500 -33.792721 -33.798702 0.0059813951 314.79549 1.2190961 + 935600 -33.793193 -33.799113 0.0059194116 311.53335 0.99667174 + 935700 -33.793763 -33.799307 0.00554485 291.82051 0.75221317 + 935800 -33.794635 -33.799544 0.0049090668 258.35981 0.50325282 + 935900 -33.796296 -33.799588 0.0032916127 173.23464 0.2741301 + 936000 -33.795666 -33.799566 0.0039005852 205.28432 0.12465753 + 936100 -33.791278 -33.799585 0.0083068647 437.18288 0.027947854 + 936200 -33.791899 -33.799242 0.007343594 386.4868 -0.17487146 + 936300 -33.795638 -33.798981 0.0033431239 175.94563 -0.35458758 + 936400 -33.795821 -33.798834 0.0030123335 158.53642 -0.38693215 + 936500 -33.787317 -33.798505 0.011187969 588.81281 -0.17609257 + 936600 -33.791168 -33.798376 0.00720786 379.34324 -0.13405895 + 936700 -33.794357 -33.798158 0.003801132 200.05019 -0.080914527 + 936800 -33.793859 -33.798071 0.0042125547 221.70299 0.075618351 + 936900 -33.789133 -33.798195 0.0090616935 476.90885 0.38734851 + 937000 -33.790264 -33.798064 0.0078003631 410.52615 0.63891407 + 937100 -33.795349 -33.798094 0.0027447457 144.45352 0.71990928 + 937200 -33.794506 -33.798145 0.0036387085 191.50198 0.85619348 + 937300 -33.791333 -33.798123 0.0067895671 357.32886 1.0352144 + 937400 -33.790521 -33.798218 0.0076970451 405.08862 1.155889 + 937500 -33.794231 -33.798119 0.0038888001 204.66408 1.1174156 + 937600 -33.796311 -33.798102 0.0017912701 94.272948 1.0598 + 937700 -33.795518 -33.798273 0.0027554674 145.01779 1.0074423 + 937800 -33.789764 -33.798538 0.0087742537 461.78115 0.92036187 + 937900 -33.792089 -33.799048 0.0069582999 366.20912 0.60901025 + 938000 -33.795556 -33.79945 0.003894192 204.94785 0.31358116 + 938100 -33.795637 -33.799772 0.0041350178 217.6223 0.1029013 + 938200 -33.790948 -33.800381 0.009433052 496.45311 -0.050763869 + 938300 -33.791844 -33.801011 0.0091675276 482.4788 -0.39858654 + 938400 -33.797879 -33.801393 0.0035140212 184.9398 -0.71259881 + 938500 -33.797019 -33.801752 0.004733595 249.12488 -0.81831265 + 938600 -33.79404 -33.802002 0.0079623543 419.05161 -0.87421588 + 938700 -33.795421 -33.80222 0.0067983677 357.79203 -0.97928305 + 938800 -33.799566 -33.802265 0.0026990187 142.04695 -1.0757081 + 938900 -33.799411 -33.802186 0.002774123 145.99962 -1.0386073 + 939000 -33.79731 -33.802116 0.0048053179 252.89959 -0.88841961 + 939100 -33.796065 -33.801859 0.0057937378 304.91925 -0.68693237 + 939200 -33.795339 -33.801396 0.0060565495 318.7508 -0.44827654 + 939300 -33.795052 -33.800908 0.0058560849 308.20052 -0.17795331 + 939400 -33.7945 -33.800178 0.0056777727 298.81611 0.10615449 + 939500 -33.79278 -33.799376 0.0065959946 347.14131 0.43893916 + 939600 -33.791515 -33.79854 0.0070252694 369.73366 0.79009435 + 939700 -33.792618 -33.797574 0.0049558745 260.82325 1.0446751 + 939800 -33.79355 -33.797025 0.0034751828 182.89577 1.2287431 + 939900 -33.791119 -33.796635 0.0055154696 290.27425 1.4190078 + 940000 -33.786539 -33.796108 0.0095694861 503.63352 1.6102849 + 940100 -33.79046 -33.796061 0.0056016224 294.80839 1.5814136 + 940200 -33.792134 -33.796001 0.0038668754 203.5102 1.5008146 + 940300 -33.791283 -33.796145 0.0048618713 255.87595 1.3761013 + 940400 -33.790334 -33.796617 0.0062831279 330.67542 1.1730368 + 940500 -33.790674 -33.796937 0.0062632562 329.62959 0.85837665 + 940600 -33.792966 -33.797413 0.0044469256 234.03773 0.48801536 + 940700 -33.795712 -33.797806 0.0020936774 110.18838 0.18799962 + 940800 -33.795509 -33.798124 0.0026149037 137.62005 -0.018213861 + 940900 -33.790258 -33.798813 0.0085547303 450.22782 -0.2281617 + 941000 -33.791847 -33.799491 0.0076439828 402.296 -0.63188744 + 941100 -33.795209 -33.799885 0.0046758889 246.08786 -0.97220126 + 941200 -33.795896 -33.800262 0.0043660751 229.78264 -1.1680178 + 941300 -33.793085 -33.800445 0.0073598469 387.34218 -1.2492625 + 941400 -33.787752 -33.800516 0.012764914 671.80604 -1.2719166 + 941500 -33.796032 -33.800482 0.004449133 234.1539 -1.4878116 + 941600 -33.796241 -33.800195 0.0039536122 208.07508 -1.476211 + 941700 -33.793735 -33.799953 0.0062187408 327.28678 -1.3316726 + 941800 -33.791104 -33.799463 0.0083589607 439.92464 -1.0987692 + 941900 -33.794688 -33.798758 0.004069668 214.183 -0.96428219 + 942000 -33.79683 -33.798481 0.001650255 86.851446 -0.8443227 + 942100 -33.795733 -33.798166 0.0024329091 128.04184 -0.64418906 + 942200 -33.793552 -33.797853 0.0043011322 226.36475 -0.33440929 + 942300 -33.791179 -33.797712 0.0065327953 343.81519 0.066732177 + 942400 -33.790083 -33.79721 0.0071267502 375.07451 0.47449671 + 942500 -33.792445 -33.797038 0.0045923846 241.6931 0.75139185 + 942600 -33.794556 -33.796973 0.0024168327 127.19575 0.90129172 + 942700 -33.793751 -33.796938 0.0031866775 167.71199 1.0126604 + 942800 -33.787735 -33.797345 0.0096104455 505.78917 1.1713584 + 942900 -33.790728 -33.797685 0.0069571548 366.14885 1.086297 + 943000 -33.793665 -33.797933 0.0042679433 224.61805 0.94931942 + 943100 -33.793544 -33.798374 0.004830612 254.2308 0.80905062 + 943200 -33.789865 -33.798652 0.0087869669 462.45023 0.64710143 + 943300 -33.786547 -33.799006 0.012458888 655.70016 0.3381954 + 943400 -33.795043 -33.799321 0.0042784047 225.16862 -0.12205987 + 943500 -33.795186 -33.799288 0.0041025198 215.91196 -0.35590582 + 943600 -33.792431 -33.799489 0.0070578637 371.44907 -0.53622286 + 943700 -33.791039 -33.799635 0.0085958688 452.39291 -0.78423097 + 943800 -33.796357 -33.799592 0.0032356868 170.29131 -1.0867227 + 943900 -33.797176 -33.799796 0.0026205969 137.91968 -1.1688036 + 944000 -33.795329 -33.799926 0.0045969291 241.93228 -1.1421453 + 944100 -33.793631 -33.800129 0.00649796 341.98184 -1.0519669 + 944200 -33.794121 -33.800563 0.0064423258 339.05386 -0.92831842 + 944300 -33.796031 -33.800618 0.0045874565 241.43375 -0.81022399 + 944400 -33.798356 -33.80083 0.0024738002 130.1939 -0.69504608 + 944500 -33.799093 -33.801001 0.0019076888 100.39996 -0.5620382 + 944600 -33.79582 -33.801043 0.0052223242 274.84626 -0.29646732 + 944700 -33.793082 -33.801334 0.0082526242 434.32825 0.083939094 + 944800 -33.795867 -33.801276 0.0054091348 284.67794 0.32319712 + 944900 -33.797558 -33.80111 0.0035522525 186.95188 0.50422928 + 945000 -33.795757 -33.801022 0.0052645541 277.06879 0.70224766 + 945100 -33.788826 -33.800363 0.011537268 607.19613 1.0108507 + 945200 -33.794318 -33.79986 0.0055419127 291.66592 1.0445863 + 945300 -33.795531 -33.799397 0.0038668913 203.51104 1.0549009 + 945400 -33.793995 -33.798759 0.0047639491 250.72239 1.0359504 + 945500 -33.790814 -33.798331 0.0075166303 395.59355 0.98545114 + 945600 -33.791108 -33.797715 0.0066062994 347.68364 0.77654529 + 945700 -33.792004 -33.797172 0.0051677548 271.97432 0.52465504 + 945800 -33.791594 -33.797053 0.0054589519 287.29977 0.29475731 + 945900 -33.790568 -33.796722 0.0061546469 323.91358 0.028016137 + 946000 -33.789908 -33.796647 0.0067395353 354.69573 -0.26155341 + 946100 -33.791863 -33.796814 0.0049503743 260.53378 -0.55080541 + 946200 -33.793823 -33.796792 0.0029687032 156.2402 -0.76008576 + 946300 -33.792875 -33.797109 0.0042336175 222.81151 -0.83463317 + 946400 -33.786826 -33.797534 0.010708033 563.55421 -0.77219146 + 946500 -33.790969 -33.79776 0.0067912617 357.41805 -0.85977607 + 946600 -33.793289 -33.798114 0.0048251421 253.94293 -0.8387852 + 946700 -33.793012 -33.798191 0.0051787139 272.55109 -0.70694137 + 946800 -33.791734 -33.798276 0.0065416166 344.27945 -0.46459517 + 946900 -33.790688 -33.798522 0.0078338405 412.28804 -0.132378 + 947000 -33.793539 -33.798365 0.0048253306 253.95285 0.13191952 + 947100 -33.795295 -33.798445 0.0031505073 165.80839 0.37915952 + 947200 -33.793643 -33.798558 0.004914647 258.65349 0.70016469 + 947300 -33.788635 -33.798368 0.009732957 512.23684 1.187186 + 947400 -33.792249 -33.798519 0.0062691771 329.9412 1.5283642 + 947500 -33.794018 -33.798345 0.0043262439 227.68636 1.7485748 + 947600 -33.793241 -33.798119 0.004878317 256.74147 1.9344098 + 947700 -33.791533 -33.798132 0.0065988862 347.29349 2.0961642 + 947800 -33.790814 -33.797763 0.0069492611 365.73342 2.1464484 + 947900 -33.793629 -33.797611 0.0039812676 209.53056 2.0434262 + 948000 -33.795135 -33.797638 0.00250315 131.73855 1.9143247 + 948100 -33.792935 -33.797573 0.0046385092 244.1206 1.7569296 + 948200 -33.788922 -33.797914 0.0089923819 473.26104 1.4536025 + 948300 -33.79187 -33.798194 0.0063240333 332.82823 0.97175868 + 948400 -33.793791 -33.798316 0.0045247246 238.13222 0.57058485 + 948500 -33.793454 -33.798733 0.0052790989 277.83427 0.24745782 + 948600 -33.789667 -33.798999 0.0093317092 491.11953 -0.039690358 + 948700 -33.787508 -33.799232 0.011723602 617.00273 -0.45736012 + 948800 -33.795133 -33.799595 0.0044622143 234.84236 -0.87640648 + 948900 -33.795447 -33.799576 0.004129215 217.3169 -1.0335824 + 949000 -33.792853 -33.799754 0.0069005383 363.16918 -1.0615104 + 949100 -33.790947 -33.800007 0.0090602252 476.83157 -1.0373622 + 949200 -33.796591 -33.799961 0.0033702224 177.3718 -1.1119374 + 949300 -33.797387 -33.800164 0.0027765593 146.12784 -1.0362263 + 949400 -33.795359 -33.800324 0.0049648543 261.29585 -0.82873605 + 949500 -33.793575 -33.800438 0.0068630671 361.1971 -0.53461015 + 949600 -33.794555 -33.800855 0.0062997326 331.54931 -0.2443882 + 949700 -33.795996 -33.800909 0.0049127983 258.55619 0.0020267758 + 949800 -33.796642 -33.801052 0.0044104183 232.11638 0.23115857 + 949900 -33.795712 -33.801295 0.0055829556 293.82597 0.4749384 + 950000 -33.793256 -33.8012 0.0079439243 418.08165 0.73854198 + 950100 -33.795221 -33.80133 0.0061084721 321.48344 0.88220918 + 950200 -33.797911 -33.8013 0.0033893973 178.38096 0.91572806 + 950300 -33.79751 -33.801121 0.0036111066 190.04932 0.92741717 + 950400 -33.790532 -33.801056 0.010524109 553.87444 0.9838957 + 950500 -33.793042 -33.800593 0.007550412 397.37145 0.76443516 + 950600 -33.795647 -33.800103 0.0044557821 234.50384 0.52939526 + 950700 -33.795261 -33.799804 0.0045433161 239.11067 0.32803056 + 950800 -33.792093 -33.799031 0.0069377334 365.12672 0.095475545 + 950900 -33.786708 -33.798061 0.011352145 597.45327 -0.22749732 + 951000 -33.793568 -33.797261 0.0036935008 194.38565 -0.75524166 + 951100 -33.794678 -33.796605 0.0019261704 101.37263 -0.99482781 + 951200 -33.792263 -33.796374 0.0041107067 216.34283 -1.1293783 + 951300 -33.789071 -33.795973 0.0069016392 363.22712 -1.2734982 + 951400 -33.789141 -33.795601 0.0064597941 339.9732 -1.4360755 + 951500 -33.791397 -33.795976 0.0045794624 241.01302 -1.5226034 + 951600 -33.793322 -33.795928 0.0026066058 137.18334 -1.5310281 + 951700 -33.793481 -33.796304 0.0028229121 148.56734 -1.4198806 + 951800 -33.788352 -33.797067 0.0087149473 458.6599 -1.0701007 + 951900 -33.789031 -33.797456 0.0084253477 443.41853 -0.70791498 + 952000 -33.793491 -33.798234 0.0047432611 249.6336 -0.46406935 + 952100 -33.793822 -33.798586 0.0047642494 250.7382 -0.20129615 + 952200 -33.792707 -33.798705 0.0059980752 315.67335 0.093373875 + 952300 -33.791872 -33.799226 0.0073544669 387.05903 0.39682924 + 952400 -33.794851 -33.799213 0.0043623895 229.58867 0.5487789 + 952500 -33.796466 -33.799306 0.0028399173 149.46232 0.63066445 + 952600 -33.794502 -33.799544 0.005041952 265.35344 0.71570022 + 952700 -33.790269 -33.799278 0.0090091296 474.14245 0.76454514 + 952800 -33.7934 -33.79943 0.0060296564 317.33544 0.62702647 + 952900 -33.795444 -33.799357 0.0039130624 205.94098 0.46378167 + 953000 -33.794796 -33.798996 0.0042000495 221.04486 0.29675916 + 953100 -33.793524 -33.799018 0.0054947593 289.18428 0.089933969 + 953200 -33.792122 -33.798637 0.0065152471 342.89165 -0.19850459 + 953300 -33.791864 -33.798145 0.006280568 330.54069 -0.54583068 + 953400 -33.793986 -33.798079 0.0040929571 215.40868 -0.88799499 + 953500 -33.795 -33.797686 0.0026850233 141.31038 -1.1392491 + 953600 -33.792025 -33.797555 0.0055306786 291.07468 -1.2743671 + 953700 -33.788503 -33.797682 0.0091787457 483.0692 -1.4212852 + 953800 -33.79188 -33.797391 0.0055112057 290.04984 -1.6526365 + 953900 -33.793294 -33.797744 0.0044499438 234.19657 -1.7119607 + 954000 -33.792585 -33.797887 0.0053024234 279.06181 -1.6520985 + 954100 -33.791853 -33.797986 0.0061325714 322.75176 -1.4965997 + 954200 -33.792259 -33.798611 0.0063519852 334.29932 -1.2596451 + 954300 -33.793292 -33.798679 0.0053874826 283.5384 -1.0076589 + 954400 -33.794266 -33.798924 0.0046577453 245.13298 -0.71082181 + 954500 -33.794703 -33.799277 0.0045736709 240.70822 -0.3862491 + 954600 -33.792951 -33.799148 0.0061962872 326.10507 -0.0010132574 + 954700 -33.790598 -33.799348 0.0087505165 460.53188 0.50916864 + 954800 -33.794599 -33.79934 0.0047413832 249.53477 0.8370903 + 954900 -33.796551 -33.799165 0.0026139779 137.57132 1.035014 + 955000 -33.794422 -33.79934 0.0049177729 258.818 1.2731673 + 955100 -33.789295 -33.799159 0.0098643663 519.1528 1.572284 + 955200 -33.792822 -33.7992 0.0063784359 335.69139 1.6383516 + 955300 -33.794987 -33.799444 0.0044560168 234.51619 1.6456927 + 955400 -33.794866 -33.799286 0.0044203626 232.63974 1.5916527 + 955500 -33.789971 -33.799485 0.0095141187 500.71958 1.5350153 + 955600 -33.790807 -33.799716 0.008909567 468.90257 1.2584272 + 955700 -33.796431 -33.799686 0.0032551261 171.31439 0.92452371 + 955800 -33.795644 -33.799952 0.0043078271 226.7171 0.72487505 + 955900 -33.792635 -33.799984 0.0073489264 386.76744 0.48798319 + 956000 -33.792658 -33.800004 0.0073453802 386.58081 0.13008482 + 956100 -33.797431 -33.800264 0.00283277 149.08616 -0.21406414 + 956200 -33.79802 -33.800189 0.0021689188 114.14826 -0.37010555 + 956300 -33.796399 -33.800321 0.0039217382 206.39758 -0.44906234 + 956400 -33.794164 -33.800503 0.0063390495 333.61852 -0.49044695 + 956500 -33.79343 -33.800314 0.0068839959 362.29856 -0.54024888 + 956600 -33.795893 -33.800444 0.0045504799 239.4877 -0.58569838 + 956700 -33.798302 -33.800315 0.0020133135 105.9589 -0.59402232 + 956800 -33.797881 -33.800222 0.0023407004 123.18898 -0.51364855 + 956900 -33.792734 -33.800369 0.0076344685 401.79527 -0.22262434 + 957000 -33.793326 -33.800162 0.0068360781 359.77669 0.026252585 + 957100 -33.795984 -33.800162 0.0041780213 219.88554 0.20170506 + 957200 -33.796479 -33.800245 0.0037662856 198.21625 0.38706597 + 957300 -33.791672 -33.800093 0.0084205971 443.16851 0.69265442 + 957400 -33.790717 -33.800341 0.0096243043 506.51855 0.9822475 + 957500 -33.79546 -33.800382 0.0049220628 259.04377 1.0629696 + 957600 -33.795626 -33.80035 0.0047242854 248.63493 1.1541399 + 957700 -33.794275 -33.800633 0.0063578943 334.61031 1.2133575 + 957800 -33.793044 -33.800665 0.007620096 401.03885 1.2028452 + 957900 -33.7961 -33.800754 0.0046538694 244.929 1.0597 + 958000 -33.79807 -33.800911 0.0028410502 149.52194 0.9062899 + 958100 -33.796474 -33.800835 0.0043608539 229.50785 0.77006803 + 958200 -33.791659 -33.800817 0.0091583161 481.99401 0.57370275 + 958300 -33.794033 -33.800654 0.0066215074 348.48403 0.17530942 + 958400 -33.795612 -33.800153 0.004540327 238.95336 -0.15727367 + 958500 -33.79504 -33.799821 0.0047809574 251.61752 -0.41149014 + 958600 -33.793418 -33.799173 0.0057550165 302.88139 -0.65823583 + 958700 -33.792207 -33.798251 0.0060431411 318.04513 -0.90544171 + 958800 -33.792053 -33.797563 0.0055099553 289.98403 -1.105393 + 958900 -33.79177 -33.796495 0.0047257742 248.71328 -1.2350455 + 959000 -33.790208 -33.79557 0.0053616112 282.17682 -1.2470371 + 959100 -33.787184 -33.794751 0.0075670633 398.24779 -1.1190765 + 959200 -33.786525 -33.793291 0.0067661131 356.0945 -0.93666849 + 959300 -33.789502 -33.792742 0.0032397861 170.50705 -0.75365343 + 959400 -33.790371 -33.792426 0.0020552672 108.16688 -0.53663452 + 959500 -33.786979 -33.792115 0.0051362006 270.31366 -0.1157711 + 959600 -33.784314 -33.792777 0.0084622544 445.3609 0.54387599 + 959700 -33.78735 -33.792955 0.0056045714 294.96359 1.0243485 + 959800 -33.789432 -33.793461 0.0040289141 212.03815 1.3976658 + 959900 -33.789133 -33.79433 0.005196978 273.51232 1.7007048 + 960000 -33.782845 -33.794996 0.01215151 639.52315 2.0669468 + 960100 -33.789596 -33.796473 0.0068770025 361.93051 2.1577589 + 960200 -33.792739 -33.797297 0.0045585456 239.91219 2.1170715 + 960300 -33.792523 -33.797946 0.0054228632 285.40045 2.0087662 + 960400 -33.791479 -33.798982 0.0075027793 394.86458 1.8115824 + 960500 -33.79433 -33.799659 0.0053285814 280.43849 1.4184706 + 960600 -33.797226 -33.800118 0.0028920272 152.20481 1.0533524 + 960700 -33.796383 -33.800554 0.0041709308 219.51237 0.73673172 + 960800 -33.790659 -33.800701 0.010042282 528.51633 0.29000258 + 960900 -33.793322 -33.800822 0.0074994858 394.69125 -0.44227657 + 961000 -33.795251 -33.80062 0.0053693885 282.58613 -1.0225522 + 961100 -33.795257 -33.800109 0.0048521693 255.36534 -1.5058528 + 961200 -33.793506 -33.799673 0.0061665317 324.53906 -1.9202923 + 961300 -33.789929 -33.798873 0.0089441908 470.72478 -2.3258036 + 961400 -33.79195 -33.797913 0.0059632599 313.84105 -2.7782004 + 961500 -33.795213 -33.797566 0.0023527369 123.82244 -3.0105188 + 961600 -33.794367 -33.797312 0.0029458441 155.03715 -2.999398 + 961700 -33.790579 -33.797394 0.0068149498 358.66473 -2.7257499 + 961800 -33.79078 -33.797863 0.0070835521 372.80103 -2.3484297 + 961900 -33.793108 -33.798081 0.0049732075 261.73548 -1.9779588 + 962000 -33.794527 -33.79859 0.004063088 213.8367 -1.5600083 + 962100 -33.794379 -33.798988 0.0046089323 242.56399 -1.0954538 + 962200 -33.790299 -33.799248 0.008949772 471.01852 -0.4396717 + 962300 -33.79224 -33.799769 0.0075292527 396.25785 0.23464772 + 962400 -33.79631 -33.799791 0.0034814785 183.22711 0.62228316 + 962500 -33.795951 -33.799835 0.0038837378 204.39766 0.95228889 + 962600 -33.793043 -33.800028 0.0069853231 367.63132 1.3355897 + 962700 -33.792633 -33.799916 0.0072834694 383.3225 1.6132931 + 962800 -33.793959 -33.800009 0.0060497809 318.39457 1.7332026 + 962900 -33.794717 -33.800077 0.0053603568 282.11079 1.7495307 + 963000 -33.794837 -33.800006 0.005168732 272.02575 1.6464377 + 963100 -33.793571 -33.800211 0.0066401836 349.46694 1.45358 + 963200 -33.792172 -33.800226 0.0080544409 423.89804 1.1285618 + 963300 -33.795567 -33.800171 0.0046037148 242.2894 0.65890179 + 963400 -33.797196 -33.800251 0.0030549915 160.78148 0.28950958 + 963500 -33.795058 -33.800128 0.0050704492 266.85322 -0.045254659 + 963600 -33.789659 -33.799914 0.010254386 539.67921 -0.54010388 + 963700 -33.793438 -33.799689 0.0062515124 329.01152 -1.1878733 + 963800 -33.794879 -33.799168 0.0042886169 225.70608 -1.6359976 + 963900 -33.79389 -33.798887 0.0049975576 263.017 -1.9279916 + 964000 -33.78878 -33.798497 0.0097163641 511.36357 -2.0893692 + 964100 -33.788637 -33.797675 0.0090374364 475.63221 -2.3168868 + 964200 -33.794805 -33.797624 0.0028193617 148.38049 -2.4594204 + 964300 -33.793855 -33.797456 0.0036012916 189.53276 -2.3098359 + 964400 -33.789657 -33.797482 0.00782521 411.83382 -1.8876092 + 964500 -33.790214 -33.797879 0.0076644183 403.3715 -1.3543184 + 964600 -33.793799 -33.797743 0.003943447 207.5401 -0.93607717 + 964700 -33.794079 -33.797887 0.0038086967 200.44831 -0.50511217 + 964800 -33.791513 -33.797945 0.0064319859 338.50968 0.065785812 + 964900 -33.782023 -33.797424 0.015400841 810.53253 0.9556795 + 965000 -33.786979 -33.79699 0.010010858 526.86253 1.8069248 + 965100 -33.792543 -33.796271 0.003728366 196.22058 2.1589077 + 965200 -33.792463 -33.795839 0.0033766933 177.71235 2.4229869 + 965300 -33.788736 -33.795734 0.0069985715 368.32858 2.6623722 + 965400 -33.787116 -33.795477 0.0083606357 440.0128 2.7446863 + 965500 -33.791245 -33.795754 0.0045087477 237.29137 2.5880126 + 965600 -33.792615 -33.796182 0.0035669298 187.72434 2.3763141 + 965700 -33.789725 -33.796725 0.0069996398 368.3848 2.1030205 + 965800 -33.782715 -33.798019 0.01530397 805.4343 1.5744842 + 965900 -33.792295 -33.798825 0.0065300997 343.67332 0.78822449 + 966000 -33.794384 -33.799262 0.0048772946 256.68766 0.27948803 + 966100 -33.794966 -33.799762 0.0047963531 252.42779 -0.14017977 + 966200 -33.793936 -33.800029 0.006093666 320.7042 -0.51385899 + 966300 -33.791995 -33.800185 0.0081902902 431.04767 -0.87703323 + 966400 -33.795113 -33.80029 0.0051769338 272.45741 -1.2649446 + 966500 -33.79754 -33.80014 0.0026000978 136.84083 -1.4647141 + 966600 -33.796172 -33.800098 0.003925711 206.60667 -1.4557807 + 966700 -33.791162 -33.800016 0.0088541156 465.98421 -1.2365707 + 966800 -33.793275 -33.799674 0.0063984253 336.74342 -1.0381303 + 966900 -33.795142 -33.799521 0.0043791595 230.47126 -0.7787292 + 967000 -33.794665 -33.799289 0.0046241905 243.36702 -0.41551426 + 967100 -33.787512 -33.79895 0.011438481 601.99705 0.28280654 + 967200 -33.791131 -33.798696 0.0075650594 398.14233 0.94919205 + 967300 -33.794249 -33.798297 0.0040476144 213.02234 1.3750496 + 967400 -33.793275 -33.798136 0.0048612393 255.84269 1.8237622 + 967500 -33.790577 -33.798048 0.0074716754 393.22761 2.3101516 + 967600 -33.790645 -33.797811 0.007165641 377.12129 2.7000909 + 967700 -33.795253 -33.797912 0.0026588894 139.93498 2.8242584 + 967800 -33.795487 -33.798033 0.0025459251 133.98977 2.8389867 + 967900 -33.79246 -33.798365 0.0059049571 310.77262 2.7624716 + 968000 -33.791504 -33.799029 0.0075255325 396.06206 2.4762483 + 968100 -33.793667 -33.799414 0.005746977 302.45827 2.0309963 + 968200 -33.795292 -33.799801 0.0045086613 237.28682 1.587161 + 968300 -33.795436 -33.800125 0.0046889077 246.77303 1.1465979 + 968400 -33.791599 -33.800271 0.0086721859 456.40941 0.65949608 + 968500 -33.792401 -33.800446 0.008044722 423.38654 -0.039728781 + 968600 -33.796771 -33.800349 0.0035780363 188.30886 -0.61592849 + 968700 -33.796624 -33.800228 0.0036039146 189.67081 -0.95730131 + 968800 -33.792894 -33.800201 0.0073064635 384.53266 -1.213339 + 968900 -33.791803 -33.799911 0.0081079027 426.71169 -1.5313156 + 969000 -33.793632 -33.799637 0.0060043524 316.00371 -1.7760831 + 969100 -33.79424 -33.799419 0.0051796901 272.60247 -1.8610324 + 969200 -33.793834 -33.799083 0.0052483394 276.21542 -1.8187383 + 969300 -33.791226 -33.798871 0.0076447512 402.33644 -1.5990745 + 969400 -33.789769 -33.798522 0.0087531 460.66785 -1.2625562 + 969500 -33.794687 -33.798138 0.0034511042 181.62854 -1.0489921 + 969600 -33.795292 -33.798049 0.0027567905 145.08743 -0.77814779 + 969700 -33.792192 -33.797969 0.0057770037 304.03855 -0.33517566 + 969800 -33.790433 -33.797905 0.0074714636 393.21646 0.2415643 + 969900 -33.792218 -33.797948 0.0057301684 301.57365 0.72692432 + 970000 -33.793399 -33.797837 0.0044385926 233.59917 1.1062422 + 970100 -33.792364 -33.797892 0.0055280571 290.93671 1.4513361 + 970200 -33.786192 -33.79801 0.011817792 621.95987 1.9111512 + 970300 -33.792225 -33.797883 0.0056576975 297.75957 2.0388592 + 970400 -33.794252 -33.797966 0.0037147194 195.50237 2.0625491 + 970500 -33.792889 -33.798079 0.0051898958 273.13958 2.0208297 + 970600 -33.790405 -33.798193 0.0077885841 409.90623 1.8389077 + 970700 -33.792922 -33.798469 0.0055472931 291.94909 1.4469435 + 970800 -33.796499 -33.798532 0.002033621 107.02766 1.0894129 + 970900 -33.79545 -33.798685 0.0032348965 170.24972 0.7849058 + 971000 -33.792059 -33.799007 0.0069484515 365.69081 0.33115796 + 971100 -33.79212 -33.799068 0.0069479948 365.66677 -0.32663106 + 971200 -33.79425 -33.799092 0.0048413008 254.79334 -0.94842399 + 971300 -33.795184 -33.799013 0.0038293524 201.5354 -1.4231526 + 971400 -33.792652 -33.798819 0.006167557 324.59302 -1.7841801 + 971500 -33.788751 -33.798663 0.009912286 521.67477 -2.1771445 + 971600 -33.793578 -33.798322 0.0047445613 249.70203 -2.6069283 + 971700 -33.794944 -33.798179 0.0032350698 170.25884 -2.7547312 + 971800 -33.792531 -33.798313 0.0057823806 304.32153 -2.6629006 + 971900 -33.787618 -33.798435 0.010817569 569.319 -2.3309289 + 972000 -33.79437 -33.798705 0.0043350619 228.15044 -2.1414428 + 972100 -33.795401 -33.798909 0.0035080049 184.62317 -1.8685435 + 972200 -33.793079 -33.799112 0.006033947 317.56125 -1.4082188 + 972300 -33.790784 -33.799429 0.0086444272 454.94849 -0.78252738 + 972400 -33.794584 -33.799501 0.0049163094 258.74098 -0.30166629 + 972500 -33.796412 -33.799477 0.0030646945 161.29214 0.053422436 + 972600 -33.794335 -33.799527 0.0051921942 273.26055 0.43927229 + 972700 -33.788168 -33.799384 0.011215315 590.25203 1.030499 + 972800 -33.792723 -33.799223 0.0064997778 342.07751 1.3423738 + 972900 -33.794605 -33.799116 0.0045103232 237.37428 1.5198546 + 973000 -33.794145 -33.799053 0.0049079802 258.30262 1.6139763 + 973100 -33.789498 -33.799276 0.0097786433 514.64127 1.6760245 + 973200 -33.791335 -33.799593 0.0082582752 434.62566 1.47324 + 973300 -33.796509 -33.799892 0.0033828351 178.0356 1.1850299 + 973400 -33.795589 -33.800357 0.0047678403 250.92718 0.950795 + 973500 -33.792585 -33.800919 0.0083337429 438.59745 0.608298 + 973600 -33.795276 -33.801513 0.0062368981 328.24239 0.072084633 + 973700 -33.799138 -33.801855 0.0027175669 143.02312 -0.33910237 + 973800 -33.798284 -33.802053 0.0037683141 198.32301 -0.61307876 + 973900 -33.795777 -33.802263 0.0064866137 341.38469 -0.91416779 + 974000 -33.795413 -33.802252 0.0068392266 359.94239 -1.2858601 + 974100 -33.797147 -33.801972 0.0048252964 253.95105 -1.6201806 + 974200 -33.798974 -33.801678 0.002703846 142.30101 -1.8389605 + 974300 -33.799801 -33.801384 0.0015831238 83.318394 -1.9160273 + 974400 -33.797628 -33.801086 0.0034581505 181.99937 -1.8135603 + 974500 -33.794106 -33.800722 0.0066155412 348.17003 -1.5200205 + 974600 -33.793112 -33.800055 0.0069425854 365.38207 -1.1328759 + 974700 -33.794819 -33.799516 0.0046973526 247.21748 -0.72438363 + 974800 -33.795903 -33.799108 0.00320533 168.69366 -0.32574813 + 974900 -33.793376 -33.798733 0.0053567998 281.92359 0.19729354 + 975000 -33.788644 -33.798443 0.0097994643 515.73707 1.042133 + 975100 -33.792566 -33.797977 0.0054112659 284.7901 1.6598654 + 975200 -33.793966 -33.797682 0.0037156552 195.55162 2.0903287 + 975300 -33.792693 -33.797601 0.0049081496 258.31154 2.4797256 + 975400 -33.79139 -33.797429 0.0060388346 317.81848 2.784462 + 975500 -33.79148 -33.797404 0.0059236513 311.75648 2.9365327 + 975600 -33.791973 -33.797437 0.0054637242 287.55093 2.9370886 + 975700 -33.792298 -33.797386 0.0050879525 267.7744 2.7878219 + 975800 -33.791465 -33.797553 0.0060884858 320.43158 2.5255722 + 975900 -33.790088 -33.797664 0.0075765707 398.74816 2.1130115 + 976000 -33.792307 -33.797696 0.0053893826 283.6384 1.5498491 + 976100 -33.794619 -33.797884 0.0032649531 171.83157 1.0624466 + 976200 -33.794031 -33.798033 0.0040013739 210.58874 0.65592378 + 976300 -33.787059 -33.798304 0.011245318 591.83106 0.19893258 + 976400 -33.791352 -33.798576 0.0072243759 380.21246 -0.53045775 + 976500 -33.793771 -33.798481 0.0047098324 247.87428 -1.0021842 + 976600 -33.793355 -33.798484 0.005128386 269.90238 -1.276499 + 976700 -33.791499 -33.798376 0.0068778229 361.97368 -1.4318473 + 976800 -33.788924 -33.797982 0.009057997 476.7143 -1.490099 + 976900 -33.792656 -33.797654 0.0049981676 263.0491 -1.5340758 + 977000 -33.794649 -33.797309 0.0026601406 140.00083 -1.4496143 + 977100 -33.792827 -33.797127 0.0042996562 226.28707 -1.164496 + 977200 -33.788686 -33.797103 0.008417096 442.98425 -0.55784395 + 977300 -33.79053 -33.796867 0.0063370685 333.51426 0.033462767 + 977400 -33.792183 -33.796839 0.0046554883 245.0142 0.56284269 + 977500 -33.791826 -33.796906 0.0050794341 267.32608 1.1105863 + 977600 -33.78425 -33.796916 0.012666808 666.64279 1.9037358 + 977700 -33.789165 -33.797101 0.007935305 417.62802 2.5591715 + 977800 -33.792781 -33.797073 0.0042925025 225.91058 2.8839725 + 977900 -33.792142 -33.797185 0.0050435647 265.43831 3.1175835 + 978000 -33.78949 -33.797515 0.0080244201 422.31807 3.2593837 + 978100 -33.790817 -33.797714 0.0068975764 363.0133 3.1716477 + 978200 -33.795138 -33.797955 0.0028170537 148.25902 2.9244323 + 978300 -33.794728 -33.798225 0.0034968116 184.03408 2.6644557 + 978400 -33.791408 -33.798537 0.0071294629 375.21727 2.2358458 + 978500 -33.791452 -33.798917 0.007464365 392.84287 1.5436147 + 978600 -33.793291 -33.799024 0.0057324988 301.6963 0.82471825 + 978700 -33.794077 -33.799016 0.0049391054 259.94071 0.17419222 + 978800 -33.793391 -33.799064 0.0056736307 298.59812 -0.41864617 + 978900 -33.787736 -33.798982 0.011245598 591.84578 -0.99410799 + 979000 -33.79193 -33.798887 0.00695679 366.12965 -1.7899355 + 979100 -33.795381 -33.798926 0.0035446932 186.55404 -2.2041335 + 979200 -33.794298 -33.799131 0.0048329845 254.35566 -2.3198109 + 979300 -33.79117 -33.799711 0.0085414625 449.52955 -2.2325297 + 979400 -33.794642 -33.800359 0.005717612 300.91282 -2.1139108 + 979500 -33.798121 -33.80079 0.0026687487 140.45386 -1.9506385 + 979600 -33.796651 -33.801304 0.0046533415 244.90121 -1.5759715 + 979700 -33.793506 -33.801838 0.0083316825 438.48902 -0.94901713 + 979800 -33.796077 -33.802182 0.0061046028 321.2798 -0.34264169 + 979900 -33.799738 -33.802267 0.00252906 133.10217 0.048005564 + 980000 -33.799529 -33.802219 0.0026901169 141.57845 0.41181836 + 980100 -33.79823 -33.802123 0.0038926925 204.86893 0.83630642 + 980200 -33.795637 -33.801857 0.0062205935 327.38429 1.3232172 + 980300 -33.793712 -33.801291 0.0075793062 398.89212 1.8207132 + 980400 -33.795819 -33.800653 0.0048339262 254.40522 2.1341242 + 980500 -33.797957 -33.800121 0.0021635886 113.86774 2.2467582 + 980600 -33.797361 -33.799818 0.0024572751 129.3242 2.2538981 + 980700 -33.792804 -33.799602 0.0067975399 357.74846 2.1405059 + 980800 -33.792223 -33.79932 0.0070969922 373.50837 1.7433784 + 980900 -33.794549 -33.799181 0.0046321293 243.78483 1.227262 + 981000 -33.795675 -33.799142 0.0034673333 182.48266 0.73642592 + 981100 -33.793158 -33.799178 0.0060203827 316.84737 0.23472158 + 981200 -33.788162 -33.799289 0.01112689 585.59829 -0.53373538 + 981300 -33.794117 -33.79919 0.0050728195 266.97796 -1.4404005 + 981400 -33.795025 -33.7991 0.0040746786 214.4467 -1.9964521 + 981500 -33.793646 -33.7991 0.0054545213 287.06659 -2.4473617 + 981600 -33.791766 -33.799055 0.00728828 383.57568 -2.8710182 + 981700 -33.793393 -33.799037 0.0056440917 297.04351 -3.2496459 + 981800 -33.796884 -33.799097 0.0022126774 116.45124 -3.4395801 + 981900 -33.79627 -33.799272 0.0030028082 158.03511 -3.3652019 + 982000 -33.791995 -33.799727 0.0077327133 406.9658 -2.9761083 + 982100 -33.792684 -33.800166 0.0074824247 393.79334 -2.4777798 + 982200 -33.795551 -33.80036 0.0048096085 253.1254 -2.0105579 + 982300 -33.796002 -33.800475 0.0044736101 235.44211 -1.4860586 + 982400 -33.793217 -33.800409 0.0071920317 378.51021 -0.80317845 + 982500 -33.78429 -33.79987 0.015580094 819.96646 0.39304023 + 982600 -33.793867 -33.799126 0.0052590412 276.77865 1.0392517 + 982700 -33.794565 -33.798367 0.003802064 200.09924 1.5567175 + 982800 -33.792234 -33.797675 0.0054412788 286.36965 2.0619314 + 982900 -33.788428 -33.796811 0.0083826124 441.16941 2.6053244 + 983000 -33.79024 -33.795852 0.0056120851 295.35903 2.8973194 + 983100 -33.793477 -33.7955 0.0020224955 106.44214 2.9289021 + 983200 -33.794175 -33.795526 0.0013511485 71.109741 2.8117368 + 983300 -33.789728 -33.796031 0.0063034127 331.74299 2.5161254 + 983400 -33.788355 -33.797191 0.0088366605 465.06556 1.7536019 + 983500 -33.793054 -33.797924 0.0048706933 256.34024 0.8863655 + 983600 -33.794621 -33.798531 0.0039101927 205.78995 0.22054806 + 983700 -33.793337 -33.799059 0.0057227187 301.18158 -0.40647924 + 983800 -33.788159 -33.799442 0.011283543 593.8428 -1.1686893 + 983900 -33.794654 -33.799699 0.0050451303 265.52071 -2.1350515 + 984000 -33.79667 -33.799678 0.003007984 158.30751 -2.6071383 + 984100 -33.794793 -33.799697 0.0049041963 258.10348 -2.8818755 + 984200 -33.791597 -33.799774 0.0081770111 430.3488 -3.0647099 + 984300 -33.793499 -33.799644 0.0061454644 323.43031 -3.2123064 + 984400 -33.796468 -33.799583 0.0031149107 163.93497 -3.2209006 + 984500 -33.798537 -33.799602 0.0010646408 56.031098 -3.1045668 + 984600 -33.798568 -33.799727 0.001159351 61.015608 -2.868399 + 984700 -33.796378 -33.800075 0.0036971152 194.57588 -2.3378285 + 984800 -33.794198 -33.800454 0.0062555778 329.22548 -1.4987994 + 984900 -33.793359 -33.800597 0.0072385083 380.95623 -0.50718791 + 985000 -33.795848 -33.800492 0.0046437627 244.39709 0.34439492 + 985100 -33.797409 -33.800215 0.0028064932 147.70324 0.98248031 + 985200 -33.795196 -33.799937 0.0047406586 249.49663 1.6171206 + 985300 -33.7905 -33.799479 0.0089789896 472.55621 2.5171094 + 985400 -33.793382 -33.798876 0.0054948472 289.18891 3.1552851 + 985500 -33.794907 -33.798607 0.0036997898 194.71664 3.5118925 + 985600 -33.792476 -33.79861 0.0061339318 322.82336 3.7257913 + 985700 -33.785592 -33.798869 0.013276764 698.74423 3.8450905 + 985800 -33.793092 -33.799359 0.0062668371 329.81805 3.5107251 + 985900 -33.794476 -33.799752 0.0052758013 277.66071 3.163736 + 986000 -33.794751 -33.800268 0.005516713 290.33968 2.7002575 + 986100 -33.795227 -33.800803 0.0055756752 293.44281 2.1082336 + 986200 -33.796902 -33.801132 0.0042301499 222.62902 1.4577656 + 986300 -33.797861 -33.80138 0.0035185568 185.17851 0.86595886 + 986400 -33.795723 -33.801492 0.0057684034 303.58593 0.27510477 + 986500 -33.79122 -33.801274 0.01005387 529.1262 -0.52931871 + 986600 -33.796135 -33.800826 0.0046901765 246.8398 -1.4554808 + 986700 -33.797859 -33.800354 0.0024955253 131.33727 -1.9748413 + 986800 -33.797035 -33.799979 0.0029436683 154.92264 -2.2880165 + 986900 -33.79515 -33.799753 0.0046030277 242.25324 -2.4692139 + 987000 -33.792316 -33.799541 0.0072246259 380.22562 -2.4852269 + 987100 -33.792689 -33.7996 0.0069113756 363.73953 -2.3539155 + 987200 -33.796361 -33.799812 0.0034510174 181.62397 -2.1462006 + 987300 -33.797967 -33.800115 0.0021477471 113.03401 -1.8364308 + 987400 -33.794869 -33.800692 0.0058230691 306.46294 -1.2528642 + 987500 -33.790145 -33.801467 0.011321154 595.82226 -0.12910072 + 987600 -33.796524 -33.801821 0.0052966719 278.75912 0.65724434 + 987700 -33.797839 -33.801882 0.0040432952 212.79502 1.2998293 + 987800 -33.796355 -33.801672 0.0053169668 279.82722 1.9500051 + 987900 -33.791157 -33.801181 0.010023651 527.53581 2.7953042 + 988000 -33.79467 -33.800281 0.005610958 295.29971 3.447165 + 988100 -33.797917 -33.799658 0.0017412117 91.638418 3.6921394 + 988200 -33.796885 -33.799304 0.0024181996 127.26769 3.8113174 + 988300 -33.79421 -33.798966 0.0047561128 250.30997 3.7716692 + 988400 -33.791812 -33.798678 0.0068661582 361.35978 3.4853165 + 988500 -33.791927 -33.798519 0.0065914693 346.90315 2.950148 + 988600 -33.794574 -33.798292 0.0037179885 195.67442 2.30044 + 988700 -33.796153 -33.798302 0.0021486052 113.07917 1.75152 + 988800 -33.794473 -33.798465 0.0039923155 210.11201 1.2233727 + 988900 -33.789208 -33.7986 0.009392378 494.31248 0.35008174 + 989000 -33.792677 -33.79872 0.0060433318 318.05516 -0.71677851 + 989100 -33.794833 -33.798623 0.0037899106 199.45962 -1.4530683 + 989200 -33.793816 -33.798535 0.0047185948 248.33544 -1.9727986 + 989300 -33.785575 -33.798581 0.013005192 684.45165 -2.3718155 + 989400 -33.791348 -33.798304 0.0069553527 366.05401 -2.9842947 + 989500 -33.793369 -33.79822 0.0048504352 255.27408 -3.1928722 + 989600 -33.792715 -33.798424 0.0057092831 300.47448 -3.0950462 + 989700 -33.791508 -33.798635 0.0071278203 375.13083 -2.7522671 + 989800 -33.793318 -33.799133 0.0058140672 305.98917 -2.2817773 + 989900 -33.796224 -33.799517 0.0032929318 173.30407 -1.8147282 + 990000 -33.796262 -33.799841 0.0035787882 188.34843 -1.277109 + 990100 -33.789078 -33.800371 0.011292321 594.30478 -0.32182935 + 990200 -33.792042 -33.800532 0.0084902376 446.83363 0.7226542 + 990300 -33.795562 -33.800401 0.0048395689 254.70219 1.4211481 + 990400 -33.795507 -33.800248 0.0047408322 249.50577 2.0284087 + 990500 -33.79329 -33.799818 0.0065273368 343.52792 2.6195551 + 990600 -33.789729 -33.799355 0.0096259227 506.60373 3.2298865 + 990700 -33.794427 -33.798881 0.004453892 234.40436 3.504299 + 990800 -33.796486 -33.798648 0.0021621468 113.79186 3.5254187 + 990900 -33.794612 -33.798856 0.0042442096 223.36897 3.3974207 + 991000 -33.79162 -33.799254 0.0076334971 401.74415 2.9770447 + 991100 -33.793174 -33.799736 0.0065616327 345.33287 2.2626093 + 991200 -33.79534 -33.800233 0.0048933811 257.53428 1.5283155 + 991300 -33.796017 -33.800449 0.0044327946 233.29403 0.8195473 + 991400 -33.793535 -33.80069 0.007154423 376.5309 0.067792197 + 991500 -33.790881 -33.800756 0.0098751063 519.71803 -0.94899603 + 991600 -33.796299 -33.80043 0.0041305268 217.38594 -1.9321308 + 991700 -33.797074 -33.800248 0.0031737692 167.03264 -2.5136625 + 991800 -33.79417 -33.799992 0.0058222219 306.41835 -2.9603125 + 991900 -33.791311 -33.799548 0.0082374949 433.53201 -3.4357366 + 992000 -33.79317 -33.799303 0.0061326391 322.75533 -3.8374448 + 992100 -33.794074 -33.798987 0.0049134054 258.58814 -3.9946178 + 992200 -33.793473 -33.798919 0.0054458134 286.6083 -3.9035525 + 992300 -33.789209 -33.799111 0.0099027804 521.1745 -3.5162358 + 992400 -33.790871 -33.799079 0.00820718 431.93656 -3.0114858 + 992500 -33.795734 -33.799296 0.0035628938 187.51192 -2.6219994 + 992600 -33.795182 -33.799473 0.0042909378 225.82823 -2.1085713 + 992700 -33.791861 -33.79957 0.0077096248 405.75068 -1.3409096 + 992800 -33.792197 -33.799783 0.007586476 399.26947 -0.46052495 + 992900 -33.797506 -33.79964 0.0021341495 112.31838 0.029561961 + 993000 -33.797163 -33.799556 0.0023927846 125.93012 0.42053809 + 993100 -33.794321 -33.799601 0.0052793785 277.84898 0.9170176 + 993200 -33.792369 -33.799263 0.0068945397 362.85348 1.4275364 + 993300 -33.793244 -33.798984 0.0057408222 302.13435 1.7830612 + 993400 -33.795001 -33.798669 0.0036684601 193.06778 1.9414521 + 993500 -33.795918 -33.798331 0.0024127843 126.98269 1.9438238 + 993600 -33.793166 -33.798299 0.0051325821 270.12322 1.8463603 + 993700 -33.789127 -33.79811 0.0089835252 472.79492 1.5070326 + 993800 -33.792347 -33.797821 0.0054746983 288.12849 0.91966292 + 993900 -33.794215 -33.797815 0.0036003873 189.48517 0.40664315 + 994000 -33.792452 -33.79761 0.0051580118 271.46156 -0.093520813 + 994100 -33.783944 -33.797321 0.013377122 704.02598 -0.82219331 + 994200 -33.790875 -33.79716 0.0062849214 330.76981 -1.8112309 + 994300 -33.792731 -33.796637 0.0039057184 205.55447 -2.4251494 + 994400 -33.791555 -33.796601 0.0050467313 265.60497 -2.8096861 + 994500 -33.786914 -33.79657 0.0096564953 508.21273 -3.0943095 + 994600 -33.790189 -33.796275 0.006085895 320.29523 -3.4339468 + 994700 -33.794079 -33.796675 0.0025966876 136.66135 -3.4944829 + 994800 -33.792924 -33.79697 0.0040460706 212.94109 -3.258715 + 994900 -33.789791 -33.797714 0.0079235572 417.00975 -2.6957915 + 995000 -33.791693 -33.798922 0.0072292008 380.46639 -2.0039052 + 995100 -33.795682 -33.799411 0.00372893 196.25026 -1.470286 + 995200 -33.795723 -33.800055 0.0043319097 227.98454 -0.90164303 + 995300 -33.79467 -33.80067 0.0059994795 315.74726 -0.2225467 + 995400 -33.794435 -33.800914 0.0064789786 340.98286 0.47613273 + 995500 -33.796427 -33.801312 0.004885112 257.09909 1.0585405 + 995600 -33.798768 -33.80132 0.0025526818 134.34537 1.4162339 + 995700 -33.798732 -33.801302 0.0025696263 135.23714 1.6562071 + 995800 -33.793268 -33.801448 0.0081796474 430.48755 1.9709028 + 995900 -33.793693 -33.801147 0.0074539925 392.29698 2.0922006 + 996000 -33.796814 -33.800972 0.0041578243 218.82258 2.0363119 + 996100 -33.797028 -33.800879 0.0038509518 202.67216 1.9195787 + 996200 -33.790321 -33.800444 0.010122978 532.76333 1.7398368 + 996300 -33.790988 -33.800238 0.0092498215 486.80985 1.1982895 + 996400 -33.79481 -33.799854 0.0050436079 265.44059 0.6565765 + 996500 -33.795035 -33.799502 0.0044670156 235.09505 0.20411835 + 996600 -33.792742 -33.799501 0.0067588546 355.71249 -0.22630331 + 996700 -33.788726 -33.799238 0.010511836 553.22855 -0.74752583 + 996800 -33.794934 -33.799167 0.0042334374 222.80203 -1.3862488 + 996900 -33.79635 -33.799301 0.0029504576 155.27995 -1.6478185 + 997000 -33.794089 -33.799397 0.0053081321 279.36226 -1.7312594 + 997100 -33.791203 -33.799805 0.0086024481 452.73917 -1.7041867 + 997200 -33.793988 -33.80014 0.0061513104 323.73798 -1.6637 + 997300 -33.795284 -33.800182 0.004897962 257.77537 -1.5056633 + 997400 -33.794937 -33.800427 0.0054896164 288.91361 -1.1990078 + 997500 -33.794308 -33.800469 0.0061604246 324.21765 -0.77006561 + 997600 -33.794231 -33.800412 0.0061808557 325.29292 -0.26109604 + 997700 -33.795845 -33.800529 0.0046836613 246.49692 0.2358522 + 997800 -33.796838 -33.800437 0.0035992684 189.42628 0.6767729 + 997900 -33.794585 -33.800504 0.0059189696 311.51009 1.1976085 + 998000 -33.790707 -33.800671 0.0099644858 524.422 1.889693 + 998100 -33.795846 -33.800485 0.004639081 244.1507 2.2991363 + 998200 -33.797472 -33.800559 0.003086603 162.44516 2.5300529 + 998300 -33.796288 -33.800592 0.0043042598 226.52935 2.6917593 + 998400 -33.79428 -33.80053 0.0062495704 328.90931 2.7508571 + 998500 -33.793677 -33.800642 0.006964692 366.54553 2.6589243 + 998600 -33.796386 -33.800374 0.0039876184 209.8648 2.39148 + 998700 -33.798636 -33.800295 0.0016586379 87.292634 2.1155586 + 998800 -33.797594 -33.800348 0.0027531003 144.89321 1.8357759 + 998900 -33.793721 -33.800205 0.0064834936 341.22049 1.3275537 + 999000 -33.79369 -33.80023 0.0065398468 344.1863 0.59279521 + 999100 -33.795296 -33.800028 0.0047328721 249.08684 -0.11264387 + 999200 -33.795855 -33.799686 0.0038316026 201.65383 -0.67632173 + 999300 -33.792266 -33.799576 0.0073104066 384.74018 -1.1383198 + 999400 -33.789145 -33.799003 0.009858378 518.83764 -1.7183535 + 999500 -33.794514 -33.798593 0.0040794245 214.69647 -2.2421675 + 999600 -33.794859 -33.798493 0.0036348353 191.29814 -2.41214 + 999700 -33.793204 -33.798274 0.0050701067 266.83519 -2.3755425 + 999800 -33.791536 -33.798375 0.0068393154 359.94707 -2.1465196 + 999900 -33.792319 -33.798521 0.0062015378 326.3814 -1.8166928 + 1000000 -33.795834 -33.798467 0.0026330017 138.57253 -1.5012117 + 1000100 -33.797027 -33.798733 0.0017064923 89.811167 -1.1940922 + 1000200 -33.795109 -33.799018 0.003909223 205.73892 -0.7135307 + 1000300 -33.792801 -33.799361 0.0065602104 345.25802 0.027715471 + 1000400 -33.793411 -33.799848 0.006436506 338.74757 0.77324377 + 1000500 -33.795414 -33.799842 0.0044286043 233.07349 1.3606719 + 1000600 -33.796446 -33.799877 0.0034315932 180.60169 1.8125515 + 1000622 -33.796394 -33.799836 0.0034421763 181.15867 1.8982246 +Loop time of 5.90316 on 1 procs for 1000000 steps with 14 atoms + +Performance: 14636220.835 fs/day, 0.000 hours/fs, 169400.704 timesteps/s, 2.372 Matom-step/s +98.5% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 4.956 | 4.956 | 4.956 | 0.0 | 83.96 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.059496 | 0.059496 | 0.059496 | 0.0 | 1.01 +Output | 0.25311 | 0.25311 | 0.25311 | 0.0 | 4.29 +Modify | 0.51294 | 0.51294 | 0.51294 | 0.0 | 8.69 +Other | | 0.1216 | | | 2.06 + +Nlocal: 14 ave 14 max 14 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 91 ave 91 max 91 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 91 +Ave neighs/atom = 6.5 +Neighbor list builds = 0 +Dangerous builds = 0 + +fix 2 all nve/eff + +run 1000000 +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +WARNING: One or more atoms are time integrated more than once (src/modify.cpp:296) +Per MPI rank memory allocation (min/avg/max) = 6.35 | 6.35 | 6.35 Mbytes + Step TotEng PotEng KinEng Temp Press + 1000622 -33.796394 -33.799836 0.0034421763 181.15867 1.8982246 + 1000700 -33.794022 -33.799733 0.0057107591 300.55216 2.4762679 + 1000800 -33.789613 -33.799137 0.0095239427 501.23661 3.0349171 + 1000900 -33.79341 -33.798249 0.0048390992 254.67748 2.8974838 + 1001000 -33.794702 -33.797861 0.0031597405 166.29432 2.3059771 + 1001100 -33.789984 -33.79826 0.0082760458 435.56091 1.250156 + 1001200 -33.786874 -33.7988 0.011926022 627.65589 -0.87616562 + 1001300 -33.792944 -33.798241 0.0052975147 278.80347 -2.5855383 + 1001400 -33.79374 -33.79754 0.0037997625 199.97811 -3.4159852 + 1001500 -33.791296 -33.797363 0.006066992 319.30038 -3.5287185 + 1001600 -33.78801 -33.797829 0.0098186014 516.74424 -2.8840861 + 1001700 -33.793957 -33.798176 0.0042192029 222.05288 -2.0171877 + 1001800 -33.795251 -33.798606 0.0033549838 176.5698 -1.1393217 + 1001900 -33.793709 -33.79954 0.0058315809 306.9109 -0.030615942 + 1002000 -33.792903 -33.800525 0.0076218449 401.1309 1.112293 + 1002100 -33.796487 -33.800717 0.004229973 222.61971 1.718526 + 1002200 -33.798641 -33.80063 0.0019890027 104.67944 1.7297274 + 1002300 -33.796782 -33.800808 0.0040254472 211.8557 1.3056033 + 1002400 -33.791129 -33.800804 0.0096752473 509.19964 0.051246917 + 1002500 -33.794785 -33.799627 0.0048422473 254.84316 -1.5146911 + 1002600 -33.795761 -33.798517 0.0027569411 145.09535 -2.5457659 + 1002700 -33.792593 -33.798295 0.0057020383 300.09319 -3.154082 + 1002800 -33.789849 -33.798974 0.0091246742 480.22346 -3.3778991 + 1002900 -33.793335 -33.799396 0.0060608042 318.97472 -3.1065478 + 1003000 -33.794911 -33.799619 0.0047087277 247.81614 -2.3102054 + 1003100 -33.794674 -33.799907 0.0052334684 275.43278 -1.033765 + 1003200 -33.792728 -33.799825 0.0070971956 373.51908 0.62622943 + 1003300 -33.784874 -33.798378 0.013503734 710.68949 2.8944819 + 1003400 -33.792211 -33.796618 0.0044069467 231.93367 4.4128945 + 1003500 -33.793139 -33.796755 0.0036156445 190.28815 4.8254735 + 1003600 -33.790595 -33.798426 0.0078316606 412.17331 4.3576019 + 1003700 -33.792152 -33.80008 0.0079275354 417.21912 2.947077 + 1003800 -33.797624 -33.800623 0.0029995179 157.86195 1.5506151 + 1003900 -33.796931 -33.8006 0.0036688904 193.09043 0.29818522 + 1004000 -33.79393 -33.799644 0.0057136751 300.70562 -1.2102854 + 1004100 -33.791706 -33.797291 0.0055849247 293.92961 -2.8893371 + 1004200 -33.790616 -33.795205 0.0045889194 241.51074 -4.0538812 + 1004300 -33.788196 -33.795135 0.0069387981 365.18275 -4.2316447 + 1004400 -33.787578 -33.796823 0.0092442661 486.51748 -3.3645882 + 1004500 -33.795247 -33.798531 0.0032845843 172.86474 -2.2776192 + 1004600 -33.795409 -33.800194 0.0047849241 251.82628 -0.8657685 + 1004700 -33.794159 -33.801396 0.007237276 380.89138 0.94144225 + 1004800 -33.795328 -33.80082 0.0054923554 289.05777 2.6541903 + 1004900 -33.796763 -33.799404 0.0026406684 138.97602 3.6987533 + 1005000 -33.794804 -33.798476 0.003672485 193.27961 4.1288259 + 1005100 -33.790618 -33.798125 0.0075071616 395.09522 3.9452398 + 1005200 -33.790997 -33.797816 0.0068190823 358.88222 2.8905916 + 1005300 -33.793672 -33.798102 0.0044301765 233.15624 1.4677871 + 1005400 -33.795492 -33.79918 0.0036876714 194.07885 0.22085938 + 1005500 -33.79636 -33.800095 0.0037350156 196.57054 -0.82355184 + 1005600 -33.795115 -33.800336 0.0052202535 274.73729 -1.6328199 + 1005700 -33.791283 -33.799977 0.0086941025 457.56286 -2.2058059 + 1005800 -33.793817 -33.799441 0.0056243034 296.00207 -2.5348983 + 1005900 -33.796296 -33.799041 0.0027454319 144.48963 -2.3697667 + 1006000 -33.794615 -33.799111 0.0044962265 236.63239 -1.6578191 + 1006100 -33.787815 -33.799818 0.01200324 631.71983 -0.07233911 + 1006200 -33.794139 -33.800309 0.0061703583 324.74046 1.155768 + 1006300 -33.795856 -33.799855 0.0039997845 210.50509 1.8078635 + 1006400 -33.794442 -33.799053 0.0046111296 242.67964 1.9648391 + 1006500 -33.789515 -33.798408 0.0088930897 468.03538 1.6580555 + 1006600 -33.791304 -33.797964 0.0066592207 350.46885 0.72698729 + 1006700 -33.795507 -33.797399 0.0018926401 99.607962 -0.22405671 + 1006800 -33.795581 -33.797644 0.0020634603 108.59808 -0.84727847 + 1006900 -33.793778 -33.799069 0.0052908882 278.45473 -1.4620144 + 1007000 -33.791939 -33.800616 0.0086774935 456.68874 -2.0693466 + 1007100 -33.795682 -33.800554 0.0048721422 256.4165 -2.4860539 + 1007200 -33.797547 -33.800113 0.0025660535 135.04911 -2.4765578 + 1007300 -33.795077 -33.800238 0.0051603811 271.58626 -1.9473835 + 1007400 -33.789902 -33.800441 0.010538895 554.65266 -0.62407617 + 1007500 -33.79413 -33.799645 0.0055155906 290.28061 0.44258446 + 1007600 -33.795551 -33.799231 0.0036794672 193.64708 1.1801682 + 1007700 -33.793961 -33.799697 0.0057364113 301.90221 1.6978925 + 1007800 -33.78759 -33.80001 0.012420659 653.68822 1.9499693 + 1007900 -33.794547 -33.799063 0.0045157275 237.65871 1.5676932 + 1008000 -33.796017 -33.798642 0.002624643 138.13262 1.1191932 + 1008100 -33.793867 -33.799012 0.0051448922 270.77109 0.42216763 + 1008200 -33.79078 -33.799168 0.0083881562 441.46118 -0.597656 + 1008300 -33.792871 -33.798514 0.0056431108 296.99189 -1.6363507 + 1008400 -33.795742 -33.798756 0.0030141088 158.62986 -2.1245935 + 1008500 -33.797899 -33.799777 0.0018783371 98.855208 -1.9889398 + 1008600 -33.798283 -33.800731 0.0024474877 128.8091 -1.4480841 + 1008700 -33.792596 -33.801562 0.0089664048 471.89389 -0.21288342 + 1008800 -33.793053 -33.801646 0.0085933474 452.26021 1.5482921 + 1008900 -33.796291 -33.800473 0.0041814064 220.06369 2.672783 + 1009000 -33.795803 -33.798773 0.0029691493 156.26368 3.2852743 + 1009100 -33.792654 -33.797098 0.0044442627 233.89758 3.5164818 + 1009200 -33.79082 -33.797013 0.0061931156 325.93815 3.1380742 + 1009300 -33.790566 -33.79774 0.0071746272 377.59423 2.184575 + 1009400 -33.792825 -33.797725 0.0049003372 257.90038 0.98556426 + 1009500 -33.795478 -33.798018 0.0025400917 133.68276 0.0075576686 + 1009600 -33.795872 -33.798869 0.0029974023 157.75061 -0.56512161 + 1009700 -33.789652 -33.799555 0.0099024517 521.1572 -0.85374784 + 1009800 -33.79078 -33.798731 0.0079511343 418.46111 -1.2350103 + 1009900 -33.794433 -33.798166 0.0037330761 196.46847 -1.2584824 + 1010000 -33.794072 -33.798748 0.0046752007 246.05164 -0.83560384 + 1010100 -33.791085 -33.799672 0.0085868379 451.91762 -0.067340402 + 1010200 -33.793355 -33.800139 0.0067846559 357.07039 0.77782454 + 1010300 -33.798137 -33.800869 0.0027327188 143.82056 1.1663464 + 1010400 -33.797308 -33.801581 0.0042723806 224.85158 1.3344162 + 1010500 -33.793208 -33.801472 0.008264182 434.93653 1.3103625 + 1010600 -33.793745 -33.800062 0.006316617 332.43792 0.87425284 + 1010700 -33.7968 -33.799324 0.0025235678 132.81312 0.33247 + 1010800 -33.797967 -33.799461 0.0014937212 78.613214 -0.042059982 + 1010900 -33.796747 -33.799976 0.0032293724 169.95899 -0.34934755 + 1011000 -33.791336 -33.800939 0.0096031484 505.40514 -0.70156343 + 1011100 -33.795601 -33.801842 0.0062412422 328.47101 -1.1009109 + 1011200 -33.798056 -33.801599 0.0035437019 186.50187 -1.2479518 + 1011300 -33.796892 -33.800431 0.0035387067 186.23898 -1.1050002 + 1011400 -33.793485 -33.798918 0.0054332154 285.94528 -0.58946497 + 1011500 -33.792753 -33.798643 0.0058894768 309.95791 0.084705682 + 1011600 -33.79234 -33.798489 0.006148475 323.58875 0.74259199 + 1011700 -33.791377 -33.797516 0.0061394165 323.11201 1.2216653 + 1011800 -33.790705 -33.797119 0.0064144632 337.58748 1.3940871 + 1011900 -33.792729 -33.797751 0.0050222158 264.31474 1.249834 + 1012000 -33.793998 -33.797596 0.003597384 189.32711 0.81960754 + 1012100 -33.791767 -33.796624 0.0048577386 255.65845 0.1069558 + 1012200 -33.787077 -33.796219 0.0091417412 481.12169 -0.9788537 + 1012300 -33.790629 -33.797107 0.0064781254 340.93796 -2.0924365 + 1012400 -33.792142 -33.79712 0.0049782677 262.00179 -2.6906147 + 1012500 -33.791704 -33.797385 0.0056809536 298.98352 -2.7249415 + 1012600 -33.792433 -33.79938 0.0069467282 365.60011 -2.2611525 + 1012700 -33.795081 -33.801108 0.0060271266 317.2023 -1.5605815 + 1012800 -33.796435 -33.800905 0.0044700997 235.25736 -0.78237775 + 1012900 -33.795681 -33.79996 0.0042788517 225.19215 0.049644917 + 1013000 -33.782429 -33.798525 0.016096284 847.13309 1.4140124 + 1013100 -33.789596 -33.796847 0.0072516299 381.64681 2.4798045 + 1013200 -33.791959 -33.794745 0.0027859982 146.6246 2.7236474 + 1013300 -33.789897 -33.794119 0.0042220461 222.20252 2.4503222 + 1013400 -33.785979 -33.79676 0.010780699 567.37855 1.6160385 + 1013500 -33.791903 -33.798951 0.0070487565 370.96977 0.35280642 + 1013600 -33.793742 -33.798644 0.0049019566 257.98561 -0.6275342 + 1013700 -33.793687 -33.798486 0.0047988035 252.55675 -1.3651945 + 1013800 -33.792863 -33.799284 0.006421096 337.93656 -1.8113303 + 1013900 -33.790289 -33.799105 0.0088164439 464.00158 -1.9016486 + 1014000 -33.790477 -33.797485 0.0070086254 368.8577 -1.6805957 + 1014100 -33.794624 -33.798043 0.0034183518 179.9048 -1.2220852 + 1014200 -33.795237 -33.799626 0.0043896409 231.02289 -0.52015327 + 1014300 -33.79166 -33.800253 0.0085924747 452.21428 0.45723701 + 1014400 -33.788245 -33.799001 0.010755602 566.05775 1.6487059 + 1014500 -33.796179 -33.799135 0.0029564623 155.59597 2.1975632 + 1014600 -33.795884 -33.799057 0.0031736962 167.0288 2.3337189 + 1014700 -33.792734 -33.797721 0.0049867727 262.4494 1.9700439 + 1014800 -33.790203 -33.795763 0.0055606397 292.65151 1.0455844 + 1014900 -33.790319 -33.796933 0.0066144055 348.11026 -0.05347884 + 1015000 -33.793153 -33.798824 0.0056710995 298.46491 -0.98101204 + 1015100 -33.796312 -33.799296 0.0029842128 157.05646 -1.4124022 + 1015200 -33.79668 -33.800318 0.0036372804 191.42682 -1.3360164 + 1015300 -33.791164 -33.802354 0.011189795 588.90893 -0.71099679 + 1015400 -33.792761 -33.802783 0.010022057 527.45193 0.18751741 + 1015500 -33.797817 -33.80088 0.0030632126 161.21415 0.64867161 + 1015600 -33.797086 -33.799483 0.0023968262 126.14283 1.0803623 + 1015700 -33.79366 -33.799445 0.0057850417 304.46159 1.6335707 + 1015800 -33.791318 -33.798971 0.0076537047 402.80765 1.9638782 + 1015900 -33.791687 -33.797083 0.0053958221 283.9773 1.8286218 + 1016000 -33.794069 -33.797709 0.0036404979 191.59616 1.4837564 + 1016100 -33.796414 -33.799271 0.0028577303 150.3998 0.97969378 + 1016200 -33.796123 -33.799186 0.0030631453 161.21061 0.370913 + 1016300 -33.790206 -33.797438 0.0072317232 380.59914 -0.59281943 + 1016400 -33.791398 -33.798211 0.0068133986 358.58309 -1.8453194 + 1016500 -33.794402 -33.799505 0.0051036174 268.59883 -2.5281591 + 1016600 -33.794542 -33.799088 0.0045465343 239.28005 -2.6234944 + 1016700 -33.789241 -33.798392 0.0091517308 481.64743 -2.1128949 + 1016800 -33.791351 -33.800604 0.0092524408 486.94771 -1.0298152 + 1016900 -33.796732 -33.801445 0.0047123029 248.0043 -0.28330473 + 1017000 -33.796014 -33.79955 0.0035351465 186.05161 0.33850546 + 1017100 -33.792655 -33.797011 0.00435554 229.22819 1.0840522 + 1017200 -33.790077 -33.797246 0.0071692644 377.31199 1.8865772 + 1017300 -33.789642 -33.796663 0.0070214676 369.53358 2.1916174 + 1017400 -33.788642 -33.793114 0.0044715469 235.33353 1.963555 + 1017500 -33.781314 -33.791225 0.0099115396 521.63549 1.2990162 + 1017600 -33.7857 -33.796247 0.010546956 555.0769 0.16293054 + 1017700 -33.790619 -33.796305 0.00568527 299.21069 -0.71841191 + 1017800 -33.790739 -33.794066 0.0033276868 175.13319 -1.4644609 + 1017900 -33.789217 -33.795334 0.0061170322 321.93395 -1.8800437 + 1018000 -33.789314 -33.799246 0.0099323655 522.73154 -1.9168163 + 1018100 -33.795001 -33.799365 0.0043641315 229.68035 -1.9511882 + 1018200 -33.795903 -33.798712 0.0028094673 147.85976 -1.6260186 + 1018300 -33.794085 -33.800302 0.00621764 327.22885 -0.8208111 + 1018400 -33.790014 -33.802014 0.011999755 631.53642 0.31752471 + 1018500 -33.794548 -33.799807 0.0052582722 276.73818 1.1627372 + 1018600 -33.796946 -33.79854 0.001593569 83.868116 1.5412675 + 1018700 -33.795576 -33.799394 0.0038178397 200.9295 1.6254293 + 1018800 -33.791425 -33.800032 0.0086070365 452.98065 1.3733421 + 1018900 -33.791369 -33.797237 0.0058688081 308.87013 0.56163655 + 1019000 -33.793614 -33.797404 0.0037901611 199.4728 -0.27047997 + 1019100 -33.795616 -33.800402 0.0047857037 251.86732 -0.69482193 + 1019200 -33.797721 -33.801 0.0032785822 172.54886 -0.95346614 + 1019300 -33.798194 -33.800169 0.0019746357 103.92332 -1.0131831 + 1019400 -33.794438 -33.800338 0.0059001005 310.51703 -0.61412313 + 1019500 -33.791845 -33.802426 0.010580516 556.8431 0.12744674 + 1019600 -33.79566 -33.801008 0.0053480152 281.46127 0.52491817 + 1019700 -33.796031 -33.798361 0.0023296781 122.60888 0.84746981 + 1019800 -33.794636 -33.798477 0.003841179 202.15783 1.1350984 + 1019900 -33.792739 -33.800276 0.0075374478 396.68915 1.2964769 + 1020000 -33.791666 -33.798378 0.006712009 353.24705 1.1679022 + 1020100 -33.792826 -33.79673 0.0039038842 205.45794 0.73735417 + 1020200 -33.79635 -33.799421 0.0030709367 161.62066 0.42547692 + 1020300 -33.797263 -33.800396 0.003132358 164.85321 0.22860816 + 1020400 -33.794488 -33.798271 0.0037833962 199.11677 -0.13554159 + 1020500 -33.792622 -33.797334 0.0047120737 247.99224 -0.48640667 + 1020600 -33.793032 -33.800642 0.007609366 400.47415 -0.54146593 + 1020700 -33.795203 -33.801359 0.0061561155 323.99087 -0.64861617 + 1020800 -33.796901 -33.799567 0.00266577 140.2971 -0.5876875 + 1020900 -33.797157 -33.800056 0.0028986653 152.55417 -0.28543379 + 1021000 -33.793217 -33.802092 0.008875187 467.09318 0.23773935 + 1021100 -33.790415 -33.800392 0.0099769629 525.07866 0.85884636 + 1021200 -33.794665 -33.79724 0.0025753093 135.53623 1.0626362 + 1021300 -33.795748 -33.798197 0.0024496079 128.92068 1.1457252 + 1021400 -33.7921 -33.800113 0.0080137695 421.75754 1.185037 + 1021500 -33.787738 -33.797094 0.009355699 492.3821 0.59343357 + 1021600 -33.791632 -33.794771 0.0031394129 165.2245 -0.23491024 + 1021700 -33.793872 -33.798127 0.0042548279 223.9278 -0.5335194 + 1021800 -33.793539 -33.800066 0.0065265397 343.48596 -0.78934499 + 1021900 -33.788725 -33.795993 0.0072681663 382.51711 -1.1145627 + 1022000 -33.787708 -33.794019 0.0063112051 332.15309 -1.1932208 + 1022100 -33.794322 -33.800089 0.0057677506 303.55157 -1.0556952 + 1022200 -33.794592 -33.800855 0.0062627845 329.60476 -0.80685788 + 1022300 -33.792923 -33.797252 0.0043288586 227.82397 -0.46259998 + 1022400 -33.791339 -33.79701 0.0056714866 298.48528 0.0091705074 + 1022500 -33.793455 -33.800816 0.007361413 387.4246 0.57755063 + 1022600 -33.796495 -33.799895 0.0034003887 178.95943 0.71161876 + 1022700 -33.795825 -33.797013 0.0011885436 62.551989 0.52072214 + 1022800 -33.790655 -33.796812 0.0061567157 324.02245 0.34514853 + 1022900 -33.790442 -33.801615 0.011172685 588.00847 0.068987731 + 1023000 -33.793986 -33.799318 0.0053325912 280.64952 -0.60659895 + 1023100 -33.795597 -33.797423 0.0018267761 96.141594 -0.94332025 + 1023200 -33.795191 -33.800212 0.0050204692 264.22282 -0.94016403 + 1023300 -33.787938 -33.802149 0.014210063 747.86292 -0.75830973 + 1023400 -33.790658 -33.797482 0.0068248274 359.18458 -0.75763251 + 1023500 -33.794726 -33.797124 0.0023976481 126.18608 -0.67504866 + 1023600 -33.794701 -33.800487 0.0057856159 304.4918 -0.33483558 + 1023700 -33.792318 -33.800638 0.0083199673 437.87246 0.083948274 + 1023800 -33.788405 -33.794022 0.005617766 295.65802 0.20989066 + 1023900 -33.786834 -33.793504 0.0066693224 351.00049 0.56910347 + 1024000 -33.793105 -33.800064 0.0069586962 366.22997 0.93093621 + 1024100 -33.794285 -33.798642 0.0043567222 229.2904 0.76583861 + 1024200 -33.791934 -33.793821 0.0018868816 99.304897 0.43488638 + 1024300 -33.787644 -33.795644 0.0080008429 421.07723 0.2177454 + 1024400 -33.789669 -33.801402 0.011732801 617.48683 -0.13900813 + 1024500 -33.79268 -33.797872 0.0051915817 273.22831 -0.59042516 + 1024600 -33.793069 -33.795463 0.0023943442 126.0122 -0.79176382 + 1024700 -33.793226 -33.800309 0.0070831241 372.7785 -0.56884679 + 1024800 -33.794705 -33.802617 0.007912641 416.43524 -0.2135511 + 1024900 -33.797798 -33.799964 0.0021656645 113.97699 -0.097051037 + 1025000 -33.798499 -33.799847 0.0013484904 70.969847 0.12667004 + 1025100 -33.795274 -33.802165 0.0068906549 362.64902 0.64489828 + 1025200 -33.791039 -33.800966 0.0099271896 522.45913 1.1047155 + 1025300 -33.792341 -33.795057 0.002716514 142.96771 1.1175127 + 1025400 -33.793468 -33.79656 0.0030923559 162.74793 1.273381 + 1025500 -33.793353 -33.800924 0.0075709357 398.45159 1.2496404 + 1025600 -33.789044 -33.797551 0.0085067425 447.70227 0.73321226 + 1025700 -33.787467 -33.791732 0.0042644692 224.43521 -0.11200776 + 1025800 -33.793348 -33.799179 0.0058316327 306.91363 -0.53982383 + 1025900 -33.794996 -33.802335 0.0073394428 386.26833 -0.71479346 + 1026000 -33.793904 -33.797866 0.0039623623 208.5356 -0.86661743 + 1026100 -33.791357 -33.794152 0.0027949468 147.09556 -0.83116673 + 1026200 -33.787234 -33.799763 0.012528606 659.36934 -0.089226863 + 1026300 -33.789391 -33.800861 0.011469524 603.6308 0.54179032 + 1026400 -33.794292 -33.795912 0.001619823 85.249842 0.52986087 + 1026500 -33.794565 -33.796436 0.0018706265 98.449404 0.72298813 + 1026600 -33.791626 -33.80103 0.0094044454 494.94758 1.0134379 + 1026700 -33.787086 -33.798056 0.010969735 577.32737 0.70873149 + 1026800 -33.789867 -33.792207 0.0023394967 123.12562 0.14151513 + 1026900 -33.791815 -33.797418 0.0056033248 294.89799 -0.0015769071 + 1027000 -33.792514 -33.802376 0.0098616134 519.00792 -0.18676015 + 1027100 -33.793527 -33.798374 0.0048472033 255.10399 -0.5323786 + 1027200 -33.79458 -33.796213 0.0016329115 85.938675 -0.79463263 + 1027300 -33.796149 -33.801091 0.0049420769 260.0971 -0.6870899 + 1027400 -33.796661 -33.80261 0.0059488862 313.08458 -0.49680232 + 1027500 -33.793164 -33.796919 0.0037554619 197.64661 -0.51286022 + 1027600 -33.789282 -33.794042 0.0047605378 250.54286 -0.24042325 + 1027700 -33.791515 -33.801759 0.010243693 539.11644 0.4130396 + 1027800 -33.794475 -33.801324 0.00684922 360.46834 0.44129776 + 1027900 -33.79442 -33.796123 0.0017026003 89.606336 0.29664874 + 1028000 -33.793501 -33.797586 0.0040852186 215.00141 0.34142783 + 1028100 -33.791961 -33.802588 0.01062694 559.28639 0.30874806 + 1028200 -33.790456 -33.797783 0.007327192 385.62358 -0.076823285 + 1028300 -33.78912 -33.790664 0.0015439902 81.258828 -0.59998222 + 1028400 -33.790121 -33.797293 0.007171586 377.43417 -0.65940765 + 1028500 -33.793115 -33.801512 0.0083970224 441.9278 -0.57217263 + 1028600 -33.794534 -33.79726 0.0027259546 143.46456 -0.70879369 + 1028700 -33.793947 -33.795924 0.001976554 104.02427 -0.6171814 + 1028800 -33.789022 -33.800962 0.01193919 628.34892 0.083062498 + 1028900 -33.789383 -33.801151 0.011768519 619.36665 0.50772288 + 1029000 -33.794793 -33.796416 0.0016230211 85.418154 0.44183884 + 1029100 -33.795067 -33.797426 0.0023590871 124.15665 0.62998711 + 1029200 -33.79306 -33.801967 0.0089062162 468.72622 0.78091593 + 1029300 -33.790675 -33.798874 0.0081984178 431.47542 0.48042607 + 1029400 -33.791379 -33.793688 0.0023087415 121.507 0.023955173 + 1029500 -33.79248 -33.79885 0.006369386 335.2151 -0.12842437 + 1029600 -33.793136 -33.802853 0.009716662 511.37925 -0.22228263 + 1029700 -33.793789 -33.797842 0.0040530684 213.30937 -0.51441886 + 1029800 -33.793451 -33.795019 0.0015670672 82.473346 -0.67930762 + 1029900 -33.791152 -33.800459 0.0093066707 489.80178 -0.27945492 + 1030000 -33.788711 -33.801659 0.012948612 681.4739 0.14059536 + 1030100 -33.793539 -33.795869 0.0023298935 122.62022 0.031155924 + 1030200 -33.795879 -33.797804 0.001925214 101.3223 0.28055273 + 1030300 -33.795219 -33.802323 0.0071036109 373.85671 0.61908136 + 1030400 -33.791966 -33.799783 0.0078169967 411.40156 0.5843578 + 1030500 -33.790564 -33.792273 0.0017093371 89.960888 0.35381109 + 1030600 -33.791112 -33.796868 0.0057562544 302.94653 0.42278618 + 1030700 -33.792502 -33.802558 0.010056773 529.279 0.41400928 + 1030800 -33.794222 -33.798298 0.0040762578 214.52981 0.11139676 + 1030900 -33.795079 -33.795933 0.00085381753 44.935655 -0.18308933 + 1031000 -33.795127 -33.800623 0.0054963656 289.26882 -0.14049425 + 1031100 -33.791682 -33.802069 0.010386963 546.65661 -0.032336987 + 1031200 -33.78826 -33.79314 0.0048796424 256.81123 -0.4311359 + 1031300 -33.790971 -33.794311 0.0033395952 175.75992 -0.4446035 + 1031400 -33.795438 -33.802285 0.0068463707 360.31838 -0.12051121 + 1031500 -33.795293 -33.801395 0.0061015031 321.11667 -0.11743569 + 1031600 -33.793606 -33.795388 0.0017815459 93.761174 -0.18059246 + 1031700 -33.791515 -33.797027 0.0055120935 290.09656 0.12902278 + 1031800 -33.791197 -33.803052 0.011855869 623.96379 0.46261183 + 1031900 -33.796345 -33.800168 0.0038231747 201.21027 0.34035561 + 1032000 -33.797155 -33.79762 0.000465235 24.484903 0.21700419 + 1032100 -33.795128 -33.800218 0.0050900401 267.88427 0.22228976 + 1032200 -33.790282 -33.802668 0.012386497 651.89028 0.25282603 + 1032300 -33.791086 -33.795621 0.0045347622 238.66049 -0.29198837 + 1032400 -33.792796 -33.794888 0.0020914996 110.07376 -0.58567427 + 1032500 -33.793889 -33.801465 0.0075759796 398.71705 -0.39088669 + 1032600 -33.793828 -33.801358 0.0075306702 396.33246 -0.39053204 + 1032700 -33.790565 -33.793082 0.0025173522 132.486 -0.58170112 + 1032800 -33.787709 -33.793676 0.0059668089 314.02783 -0.23250192 + 1032900 -33.791136 -33.802305 0.011168824 587.80523 0.25259471 + 1033000 -33.794926 -33.799599 0.0046735335 245.9639 0.17654621 + 1033100 -33.794834 -33.795539 0.00070506541 37.106963 0.11805609 + 1033200 -33.792213 -33.798671 0.0064574442 339.84953 0.27784463 + 1033300 -33.782818 -33.801887 0.019068892 1003.5788 0.48462669 + 1033400 -33.78742 -33.793174 0.0057542362 302.84032 -0.043136627 + 1033500 -33.790417 -33.792961 0.0025444694 133.91316 -0.28633809 + 1033600 -33.79319 -33.801292 0.0081022067 426.41191 -0.09848836 + 1033700 -33.794992 -33.801616 0.0066243764 348.63502 -0.098184922 + 1033800 -33.794589 -33.796247 0.0016577565 87.246246 -0.33986605 + 1033900 -33.79075 -33.79543 0.0046797824 246.29277 -0.21201304 + 1034000 -33.786026 -33.802021 0.015994921 841.7984 0.34406624 + 1034100 -33.792948 -33.79933 0.0063813002 335.84214 0.13203911 + 1034200 -33.794601 -33.795851 0.0012500091 65.786866 0.055399478 + 1034300 -33.793836 -33.799382 0.0055457064 291.86558 0.25406102 + 1034400 -33.791249 -33.802008 0.010759117 566.24271 0.32361956 + 1034500 -33.788342 -33.793888 0.0055466027 291.91275 0.051068538 + 1034600 -33.788545 -33.791771 0.003226024 169.78277 -0.13409693 + 1034700 -33.794 -33.801086 0.007085815 372.92012 -0.00094338035 + 1034800 -33.795435 -33.80127 0.0058353115 307.10724 0.0032849596 + 1034900 -33.793703 -33.795719 0.0020166044 106.13209 -0.21039804 + 1035000 -33.788652 -33.794486 0.0058336508 307.01984 -0.17173747 + 1035100 -33.787027 -33.80156 0.014533213 764.87004 0.28654219 + 1035200 -33.794706 -33.799803 0.0050975699 268.28056 0.053839053 + 1035300 -33.7951 -33.79646 0.0013594782 71.548124 -0.054681472 + 1035400 -33.793395 -33.799209 0.0058134559 305.957 0.17922241 + 1035500 -33.789828 -33.801586 0.011757949 618.81038 0.32515111 + 1035600 -33.789918 -33.795312 0.0053940551 283.88431 0.10441259 + 1035700 -33.794108 -33.7966 0.002492217 131.16316 0.097678537 + 1035800 -33.796253 -33.801658 0.0054053557 284.47905 0.18736272 + 1035900 -33.795248 -33.801206 0.0059581383 313.5715 0.17313362 + 1036000 -33.793447 -33.796123 0.002675526 140.81055 -0.022464195 + 1036100 -33.792551 -33.797287 0.0047367447 249.29065 -0.072938365 + 1036200 -33.792202 -33.801519 0.0093172065 490.35627 0.084078848 + 1036300 -33.793187 -33.798776 0.0055885988 294.12297 -0.067715965 + 1036400 -33.796031 -33.797797 0.0017661959 92.953313 -0.21842481 + 1036500 -33.797859 -33.801249 0.0033900482 178.41521 -0.071344758 + 1036600 -33.796291 -33.80201 0.0057183603 300.9522 0.024260701 + 1036700 -33.791296 -33.796012 0.0047153673 248.16558 -0.078849839 + 1036800 -33.790528 -33.794622 0.0040933756 215.43071 0.013112196 + 1036900 -33.792067 -33.80034 0.0082722631 435.36183 0.25215831 + 1037000 -33.795132 -33.800774 0.0056415538 296.90994 0.20182476 + 1037100 -33.797125 -33.798969 0.0018442733 97.062459 0.10609264 + 1037200 -33.798477 -33.800796 0.0023189294 122.04318 0.086824138 + 1037300 -33.798523 -33.802451 0.0039271143 206.68052 0.081511722 + 1037400 -33.794478 -33.799333 0.0048554963 255.54044 -0.018859019 + 1037500 -33.791415 -33.7955 0.004085144 214.99749 -0.28096638 + 1037600 -33.790716 -33.79859 0.0078745494 414.43051 -0.27244414 + 1037700 -33.793497 -33.80049 0.0069926075 368.01469 -0.28012469 + 1037800 -33.796995 -33.799469 0.0024745233 130.23195 -0.4164758 + 1037900 -33.797439 -33.799936 0.0024974036 131.43612 -0.32641239 + 1038000 -33.791816 -33.800178 0.0083616985 440.06873 -0.020273084 + 1038100 -33.788427 -33.79714 0.0087135575 458.58676 0.17341176 + 1038200 -33.792008 -33.795763 0.0037550132 197.623 0.30041008 + 1038300 -33.794683 -33.79943 0.004747741 249.86937 0.48752945 + 1038400 -33.794989 -33.800845 0.0058567066 308.23325 0.47711336 + 1038500 -33.790686 -33.796243 0.0055571515 292.46793 0.26580313 + 1038600 -33.784987 -33.792449 0.0074616138 392.69808 -0.087466904 + 1038700 -33.789459 -33.799096 0.0096365181 507.16135 -0.27491344 + 1038800 -33.792717 -33.799178 0.0064609875 340.03601 -0.47245362 + 1038900 -33.793424 -33.796661 0.0032372254 170.37229 -0.64895556 + 1039000 -33.792942 -33.798233 0.0052911555 278.46879 -0.52528391 + 1039100 -33.789224 -33.799431 0.010206288 537.14781 -0.16868793 + 1039200 -33.78496 -33.793324 0.0083641444 440.19746 -0.003117671 + 1039300 -33.790964 -33.795438 0.0044741886 235.47256 0.2494235 + 1039400 -33.794191 -33.80051 0.0063189668 332.56159 0.56235571 + 1039500 -33.794013 -33.800204 0.006191046 325.82923 0.55033289 + 1039600 -33.791896 -33.79537 0.0034741003 182.8388 0.3088473 + 1039700 -33.786261 -33.793956 0.0076951988 404.99145 0.19380288 + 1039800 -33.784398 -33.799302 0.014903752 784.37119 0.057967072 + 1039900 -33.793636 -33.798701 0.0050641157 266.51989 -0.36649077 + 1040000 -33.794601 -33.79677 0.0021685691 114.12986 -0.51596313 + 1040100 -33.793809 -33.799938 0.0061289745 322.56246 -0.39070416 + 1040200 -33.790391 -33.800626 0.01023448 538.63157 -0.16594003 + 1040300 -33.786835 -33.79244 0.0056045115 294.96044 -0.17048781 + 1040400 -33.790001 -33.794498 0.0044971023 236.67848 0.054130642 + 1040500 -33.795302 -33.80182 0.0065175692 343.01386 0.38431415 + 1040600 -33.795198 -33.800608 0.0054098988 284.71815 0.40012157 + 1040700 -33.792571 -33.794843 0.0022723524 119.59188 0.17674264 + 1040800 -33.788203 -33.795635 0.0074323655 391.15877 0.22874263 + 1040900 -33.788452 -33.801274 0.01282156 674.78728 0.29173799 + 1041000 -33.795887 -33.799238 0.003351592 176.3913 -0.09236485 + 1041100 -33.796047 -33.797298 0.0012510986 65.844206 -0.20442384 + 1041200 -33.793573 -33.800637 0.0070634096 371.74095 -0.069619251 + 1041300 -33.788979 -33.801124 0.012145452 639.20431 0.0025203008 + 1041400 -33.789861 -33.793304 0.0034434351 181.22492 -0.26101492 + 1041500 -33.794835 -33.797457 0.0026211317 137.94782 -0.18838942 + 1041600 -33.796619 -33.802655 0.0060363193 317.6861 0.021269454 + 1041700 -33.794886 -33.800769 0.0058839036 309.6646 0.077272373 + 1041800 -33.791714 -33.79346 0.001745453 91.861634 -0.10026937 + 1041900 -33.789522 -33.796274 0.0067525412 355.38022 0.14561025 + 1042000 -33.791801 -33.802662 0.010860796 571.59401 0.43745168 + 1042100 -33.797266 -33.800189 0.0029227834 153.82348 0.18004836 + 1042200 -33.796943 -33.797721 0.0007780232 40.946667 0.058096837 + 1042300 -33.794462 -33.800845 0.0063821478 335.88674 0.15549199 + 1042400 -33.790873 -33.802036 0.011163112 587.50465 0.087992255 + 1042500 -33.790882 -33.794033 0.0031517027 165.8713 -0.35653261 + 1042600 -33.792174 -33.795047 0.0028739437 151.25309 -0.44096218 + 1042700 -33.793327 -33.802398 0.0090706385 477.37961 -0.22252158 + 1042800 -33.793499 -33.800502 0.0070031332 368.56865 -0.21272546 + 1042900 -33.792899 -33.793873 0.00097374756 51.247465 -0.35540976 + 1043000 -33.791779 -33.797096 0.0053166058 279.80822 -0.055842232 + 1043100 -33.790712 -33.803125 0.012412741 653.27148 0.42584829 + 1043200 -33.793343 -33.797992 0.0046488825 244.66654 0.28066285 + 1043300 -33.796145 -33.796781 0.00063609855 33.4773 0.21124108 + 1043400 -33.796793 -33.8016 0.0048063896 252.956 0.37771834 + 1043500 -33.792268 -33.802485 0.010217875 537.75766 0.36979726 + 1043600 -33.78799 -33.791819 0.0038282383 201.47677 -0.22210968 + 1043700 -33.789783 -33.792738 0.0029550613 155.52224 -0.46507625 + 1043800 -33.792996 -33.802404 0.0094078836 495.12852 -0.32402982 + 1043900 -33.794629 -33.801212 0.0065824995 346.43108 -0.43180047 + 1044000 -33.794077 -33.794919 0.00084159647 44.292471 -0.59084016 + 1044100 -33.788014 -33.794333 0.0063189004 332.55809 -0.3142071 + 1044200 -33.783632 -33.802938 0.019305429 1016.0275 0.50595911 + 1044300 -33.791503 -33.796967 0.0054637418 287.55186 0.38850303 + 1044400 -33.793606 -33.794285 0.00067846621 35.707072 0.32426784 + 1044500 -33.794063 -33.800796 0.006732118 354.30537 0.59011882 + 1044600 -33.792843 -33.802715 0.0098716524 519.53626 0.5895099 + 1044700 -33.787682 -33.791366 0.0036836852 193.86907 -0.028490196 + 1044800 -33.785312 -33.789289 0.0039770805 209.3102 -0.39241044 + 1044900 -33.791464 -33.802457 0.010992296 578.51474 -0.26169379 + 1045000 -33.794036 -33.800854 0.0068181085 358.83097 -0.50734099 + 1045100 -33.793645 -33.794252 0.00060674741 31.932575 -0.70849255 + 1045200 -33.791998 -33.797126 0.0051284481 269.90565 -0.41905276 + 1045300 -33.786775 -33.803385 0.016609635 874.15029 0.1773846 + 1045400 -33.786431 -33.793928 0.0074965041 394.53433 0.22347462 + 1045500 -33.793262 -33.794033 0.00077096404 40.57515 0.28468953 + 1045600 -33.794694 -33.801101 0.0064066946 337.17862 0.59665559 + 1045700 -33.793663 -33.802673 0.0090102093 474.19928 0.66984651 + 1045800 -33.790101 -33.793017 0.0029152561 153.42733 0.14544236 + 1045900 -33.785421 -33.789475 0.0040548814 213.40479 -0.21651507 + 1046000 -33.789115 -33.802179 0.013063482 687.51941 -0.083668485 + 1046100 -33.795235 -33.801205 0.0059703052 314.21184 -0.44496918 + 1046200 -33.79489 -33.795367 0.00047664648 25.085479 -0.6667636 + 1046300 -33.792545 -33.797478 0.0049329386 259.61616 -0.40919801 + 1046400 -33.787878 -33.803603 0.015724616 827.57249 0.096820787 + 1046500 -33.790323 -33.796099 0.0057760853 303.99022 0.087869198 + 1046600 -33.795943 -33.796335 0.00039257041 20.660631 0.14375102 + 1046700 -33.79607 -33.801453 0.0053835595 283.33193 0.3844619 + 1046800 -33.793212 -33.802959 0.0097471827 512.98553 0.54752991 + 1046900 -33.789786 -33.792881 0.0030950073 162.88747 0.11569078 + 1047000 -33.789402 -33.792034 0.0026320669 138.52333 -0.094506293 + 1047100 -33.792051 -33.802452 0.010401441 547.41855 0.15996566 + 1047200 -33.795725 -33.801677 0.0059520351 313.2503 -0.087726295 + 1047300 -33.800282 -33.800479 0.00019652831 10.34311 -0.28034458 + 1047400 -33.800572 -33.801947 0.0013748833 72.358883 -0.19597395 + 1047500 -33.798046 -33.803759 0.0057130144 300.67085 -0.037498604 + 1047600 -33.794053 -33.799181 0.005127637 269.86296 0.010756824 + 1047700 -33.790999 -33.791924 0.00092438797 48.649714 0.010709061 + 1047800 -33.789501 -33.798796 0.0092946207 489.1676 0.45664109 + 1047900 -33.792757 -33.803039 0.010282232 541.1447 0.69382938 + 1048000 -33.796286 -33.798091 0.0018042752 94.957395 0.41483861 + 1048100 -33.796262 -33.797308 0.0010463658 55.0693 0.24462585 + 1048200 -33.794061 -33.802397 0.0083357077 438.70086 0.32406266 + 1048300 -33.792681 -33.801586 0.0089053755 468.68197 0.03423904 + 1048400 -33.792747 -33.794063 0.0013151016 69.212623 -0.57338166 + 1048500 -33.792853 -33.796622 0.003769296 198.37468 -0.61558556 + 1048600 -33.793202 -33.803245 0.010043291 528.56943 -0.43152621 + 1048700 -33.794136 -33.799453 0.0053174625 279.85331 -0.56119907 + 1048800 -33.794285 -33.79477 0.00048545424 25.549023 -0.53500786 + 1048900 -33.792971 -33.799416 0.0064449161 339.19019 -0.085819946 + 1049000 -33.789124 -33.803015 0.013890442 731.04159 0.45855879 + 1049100 -33.78919 -33.793673 0.0044828977 235.93091 0.48569371 + 1049200 -33.794005 -33.795479 0.0014739926 77.574917 0.58840388 + 1049300 -33.795845 -33.802202 0.0063572211 334.57487 0.80785792 + 1049400 -33.794479 -33.801777 0.0072984949 384.11328 0.68151841 + 1049500 -33.791825 -33.793484 0.001659553 87.340793 0.012458455 + 1049600 -33.790511 -33.795098 0.004586611 241.38925 -0.34105164 + 1049700 -33.791114 -33.803248 0.012133087 638.55356 -0.405361 + 1049800 -33.792766 -33.799108 0.0063420481 333.77633 -0.8996718 + 1049900 -33.793863 -33.794316 0.00045367731 23.876632 -1.1166114 + 1050000 -33.794603 -33.799734 0.0051309017 270.03478 -0.7505847 + 1050100 -33.795352 -33.803404 0.008051865 423.76247 -0.36476585 + 1050200 -33.794465 -33.797855 0.0033894549 178.38399 -0.14281287 + 1050300 -33.790988 -33.792682 0.0016939079 89.148863 0.22454035 + 1050400 -33.78779 -33.800342 0.012552619 660.63314 1.1350282 + 1050500 -33.792776 -33.801803 0.0090270662 475.08644 1.4990775 + 1050600 -33.796004 -33.7971 0.0010963419 57.699494 1.2154229 + 1050700 -33.795355 -33.797831 0.0024761109 130.31551 0.96564816 + 1050800 -33.792719 -33.802961 0.010241522 539.00215 0.69464072 + 1050900 -33.790177 -33.798689 0.0085115733 447.95651 -0.28246627 + 1051000 -33.791049 -33.792243 0.0011945909 62.870253 -1.3608199 + 1051100 -33.796209 -33.800083 0.0038740555 203.88808 -1.5112936 + 1051200 -33.796695 -33.803134 0.0064386711 338.86152 -1.3996885 + 1051300 -33.793367 -33.797595 0.0042278968 222.51044 -1.1554338 + 1051400 -33.790271 -33.792472 0.0022014203 115.85879 -0.43659324 + 1051500 -33.790728 -33.800616 0.0098876536 520.37839 0.81846601 + 1051600 -33.792822 -33.801989 0.0091670164 482.45189 1.5646595 + 1051700 -33.793414 -33.795202 0.0017875566 94.077509 1.6521088 + 1051800 -33.792868 -33.795571 0.0027031434 142.26403 1.6350914 + 1051900 -33.792012 -33.802353 0.010340609 544.21702 1.5526832 + 1052000 -33.792245 -33.799881 0.0076362729 401.89023 0.78177961 + 1052100 -33.792935 -33.794444 0.0015090848 79.421787 -0.26762196 + 1052200 -33.793698 -33.798793 0.0050956302 268.17847 -0.78651548 + 1052300 -33.796459 -33.803046 0.0065865744 346.64553 -1.1077041 + 1052400 -33.798492 -33.800686 0.002194146 115.47595 -1.3484889 + 1052500 -33.797107 -33.798027 0.000919742 48.405201 -1.188979 + 1052600 -33.792788 -33.800564 0.0077763258 409.26109 -0.37515261 + 1052700 -33.79149 -33.802066 0.01057573 556.59125 0.56834729 + 1052800 -33.79295 -33.795827 0.0028763868 151.38167 1.1124207 + 1052900 -33.794723 -33.796983 0.0022601178 118.94799 1.5428008 + 1053000 -33.79733 -33.802368 0.0050373951 265.11361 1.7211412 + 1053100 -33.798377 -33.801969 0.0035926325 189.07704 1.4342372 + 1053200 -33.794647 -33.796813 0.0021663231 114.01165 0.63822053 + 1053300 -33.790583 -33.79719 0.0066073156 347.73712 -0.5626119 + 1053400 -33.791975 -33.802197 0.010221782 537.96327 -1.6083689 + 1053500 -33.794802 -33.798973 0.0041713406 219.53394 -2.5234902 + 1053600 -33.795316 -33.796333 0.001017283 53.538698 -2.7073974 + 1053700 -33.792059 -33.798956 0.0068967963 362.97224 -1.9743181 + 1053800 -33.786362 -33.801386 0.015023972 790.69824 -0.45774801 + 1053900 -33.792372 -33.79685 0.0044779887 235.67255 0.69520464 + 1054000 -33.794713 -33.797127 0.0024141052 127.0522 1.5219526 + 1054100 -33.794318 -33.801122 0.0068044414 358.11168 2.0943255 + 1054200 -33.791552 -33.799615 0.0080626315 424.3291 2.1711801 + 1054300 -33.786026 -33.790069 0.0040436783 212.81518 1.4348988 + 1054400 -33.781618 -33.791611 0.0099928684 525.91575 0.51362184 + 1054500 -33.792271 -33.801876 0.0096052427 505.51536 -0.13341952 + 1054600 -33.795124 -33.799185 0.0040608539 213.71912 -0.79683946 + 1054700 -33.795052 -33.79679 0.0017383619 91.488434 -1.181892 + 1054800 -33.792455 -33.799584 0.0071290386 375.19494 -1.0440043 + 1054900 -33.787616 -33.800164 0.012547098 660.34259 -0.76483335 + 1055000 -33.789895 -33.794244 0.0043483894 228.85186 -0.67465068 + 1055100 -33.795779 -33.798307 0.0025277606 133.03379 -0.2667214 + 1055200 -33.795752 -33.801717 0.0059649238 313.92862 0.13828538 + 1055300 -33.793061 -33.799822 0.0067611442 355.83299 0.42552111 + 1055400 -33.789669 -33.79339 0.003721001 195.83296 0.5947951 + 1055500 -33.789251 -33.796351 0.0071000172 373.66757 0.90616267 + 1055600 -33.79579 -33.802014 0.0062234521 327.53473 1.0180409 + 1055700 -33.796906 -33.800107 0.0032011829 168.4754 0.77578053 + 1055800 -33.794816 -33.797372 0.0025565018 134.54641 0.32413217 + 1055900 -33.790848 -33.799127 0.008279549 435.74528 -0.10836873 + 1056000 -33.789847 -33.799486 0.0096387763 507.2802 -0.74925244 + 1056100 -33.792262 -33.795929 0.0036668825 192.98476 -1.4466023 + 1056200 -33.795623 -33.798694 0.0030709071 161.6191 -1.5031344 + 1056300 -33.799106 -33.802384 0.0032781572 172.52649 -1.2766578 + 1056400 -33.797879 -33.801355 0.0034758449 182.93062 -0.88599865 + 1056500 -33.794556 -33.798028 0.0034719747 182.72693 -0.10811996 + 1056600 -33.791727 -33.798625 0.0068983755 363.05535 1.116044 + 1056700 -33.79133 -33.79983 0.0084997693 447.33528 2.2207501 + 1056800 -33.793483 -33.797308 0.0038252543 201.31972 2.6824719 + 1056900 -33.796414 -33.798666 0.0022517359 118.50685 2.606886 + 1057000 -33.796778 -33.801097 0.004318551 227.28149 2.151099 + 1057100 -33.792043 -33.800161 0.0081185712 427.27316 1.0839472 + 1057200 -33.788574 -33.79622 0.0076452124 402.36071 -1.0130609 + 1057300 -33.792068 -33.797851 0.0057831489 304.36197 -2.6509003 + 1057400 -33.793056 -33.799171 0.0061146526 321.80871 -3.4351259 + 1057500 -33.791721 -33.796485 0.0047638242 250.71582 -3.625285 + 1057600 -33.786855 -33.793019 0.0061641136 324.4118 -2.874632 + 1057700 -33.784728 -33.797336 0.012608043 663.55008 -0.94257307 + 1057800 -33.794998 -33.801023 0.0060253506 317.10883 0.2545552 + 1057900 -33.795985 -33.798887 0.0029021967 152.74002 1.0106157 + 1058000 -33.794602 -33.798582 0.0039796155 209.44361 1.656629 + 1058100 -33.790153 -33.799558 0.0094052201 494.98834 2.1632142 + 1058200 -33.787759 -33.795558 0.007798502 410.42821 2.1551928 + 1058300 -33.790869 -33.794431 0.0035626928 187.50134 1.6862209 + 1058400 -33.795977 -33.800458 0.0044810452 235.83341 1.2886028 + 1058500 -33.795613 -33.801542 0.0059290804 312.04221 0.71902687 + 1058600 -33.793297 -33.797857 0.0045600633 239.99206 -0.29367353 + 1058700 -33.790597 -33.795982 0.0053850023 283.40787 -1.3936331 + 1058800 -33.790267 -33.799617 0.009350062 492.08543 -2.1074981 + 1058900 -33.794897 -33.799752 0.0048549254 255.51039 -2.5784214 + 1059000 -33.796165 -33.797977 0.0018125704 95.393961 -2.448624 + 1059100 -33.794373 -33.799147 0.0047739172 251.24701 -1.5848055 + 1059200 -33.787977 -33.801164 0.013187285 694.03506 0.084619255 + 1059300 -33.791051 -33.797731 0.0066803712 351.58198 1.6625378 + 1059400 -33.794982 -33.797016 0.0020332404 107.00763 2.523575 + 1059500 -33.794365 -33.799676 0.0053114616 279.53749 2.8909274 + 1059600 -33.79112 -33.800168 0.0090483455 476.20635 2.6495995 + 1059700 -33.788414 -33.79379 0.0053763868 282.95444 1.4227498 + 1059800 -33.791692 -33.796231 0.0045383536 238.8495 0.096976045 + 1059900 -33.795958 -33.802171 0.0062132464 326.99762 -0.62240961 + 1060000 -33.795614 -33.800777 0.0051623773 271.69131 -1.2760901 + 1060100 -33.793611 -33.795624 0.0020126842 105.92577 -1.8724432 + 1060200 -33.791095 -33.796956 0.0058608441 308.451 -1.8399035 + 1060300 -33.790206 -33.801556 0.011350133 597.34738 -1.3764318 + 1060400 -33.791755 -33.797278 0.0055225842 290.64868 -1.0483187 + 1060500 -33.792288 -33.794665 0.0023768339 125.09065 -0.4064155 + 1060600 -33.792789 -33.800174 0.0073850308 388.66758 0.51542534 + 1060700 -33.793743 -33.801629 0.0078854084 415.00201 1.116567 + 1060800 -33.794707 -33.797 0.0022926717 120.66127 1.2714336 + 1060900 -33.794806 -33.797445 0.0026387395 138.87451 1.2864687 + 1061000 -33.792663 -33.802108 0.0094446459 497.06329 1.233472 + 1061100 -33.788598 -33.798719 0.010121132 532.66616 0.60883228 + 1061200 -33.789837 -33.791987 0.002150016 113.15343 -0.5206539 + 1061300 -33.794953 -33.799005 0.0040516999 213.23735 -0.85127017 + 1061400 -33.795678 -33.802627 0.0069482275 365.67902 -0.89935676 + 1061500 -33.793763 -33.79824 0.0044775509 235.64951 -1.0621672 + 1061600 -33.791534 -33.793702 0.0021685882 114.13086 -0.91718232 + 1061700 -33.79114 -33.80016 0.0090204092 474.73609 -0.18682659 + 1061800 -33.792444 -33.802213 0.0097689792 514.13266 0.30124767 + 1061900 -33.79308 -33.795728 0.002648426 139.3843 0.48109064 + 1062000 -33.792918 -33.795394 0.0024757387 130.29592 0.7573672 + 1062100 -33.791362 -33.801595 0.010232059 538.50412 1.1189808 + 1062200 -33.786786 -33.797912 0.0111263 585.56724 1.0299555 + 1062300 -33.787311 -33.789286 0.0019753978 103.96342 0.35859755 + 1062400 -33.793443 -33.79861 0.0051668358 271.92596 0.267911 + 1062500 -33.794945 -33.803356 0.0084110978 442.66857 0.19481664 + 1062600 -33.79404 -33.798348 0.0043079866 226.72549 -0.28396923 + 1062700 -33.790945 -33.792207 0.0012621209 66.424296 -0.73304479 + 1062800 -33.784292 -33.798086 0.013793947 725.96311 -0.55364558 + 1062900 -33.789082 -33.801634 0.012552566 660.63035 -0.68049763 + 1063000 -33.794471 -33.796037 0.0015663182 82.433931 -0.94957686 + 1063100 -33.794472 -33.796871 0.0023987055 126.24173 -0.67604735 + 1063200 -33.792616 -33.802866 0.010250944 539.49804 -0.057547205 + 1063300 -33.789777 -33.799438 0.0096605975 508.42863 0.35403215 + 1063400 -33.790498 -33.791896 0.0013982645 73.589412 0.53530326 + 1063500 -33.794897 -33.799055 0.0041584685 218.85649 0.94519312 + 1063600 -33.796238 -33.803128 0.006890356 362.63329 1.0786557 + 1063700 -33.794077 -33.798231 0.0041543492 218.63969 0.71078528 + 1063800 -33.790264 -33.791893 0.0016295305 85.760736 0.013093559 + 1063900 -33.789848 -33.800011 0.010163546 534.89835 -0.28227859 + 1064000 -33.792243 -33.80244 0.010197026 536.66036 -0.72522998 + 1064100 -33.794473 -33.796334 0.0018608384 97.934268 -1.2873034 + 1064200 -33.795131 -33.797013 0.0018811433 99.002894 -1.2376272 + 1064300 -33.793893 -33.802672 0.0087792304 462.04307 -0.71762042 + 1064400 -33.788047 -33.798942 0.010895104 573.39959 -0.20142293 + 1064500 -33.78791 -33.789285 0.0013745013 72.338779 0.25442308 + 1064600 -33.792521 -33.79775 0.0052291037 275.20306 1.0539777 + 1064700 -33.79444 -33.803436 0.0089960849 473.45592 1.4239335 + 1064800 -33.793827 -33.798263 0.0044362817 233.47755 1.1875905 + 1064900 -33.792313 -33.793202 0.00088928731 46.802398 0.65117483 + 1065000 -33.789668 -33.799752 0.010083919 530.70765 0.34830874 + 1065100 -33.785208 -33.801808 0.016599293 873.606 -0.23064549 + 1065200 -33.791064 -33.793375 0.0023105579 121.6026 -1.4084424 + 1065300 -33.794145 -33.796117 0.0019726071 103.81655 -1.5995111 + 1065400 -33.794496 -33.802582 0.0080853082 425.52256 -1.2238135 + 1065500 -33.792242 -33.80042 0.0081782417 430.41357 -0.89649486 + 1065600 -33.786046 -33.788615 0.0025687624 135.19167 -0.43375781 + 1065700 -33.786 -33.794462 0.0084617834 445.33611 0.87215505 + 1065800 -33.793917 -33.803069 0.0091517221 481.64697 1.5658732 + 1065900 -33.794181 -33.798071 0.0038898933 204.72161 1.5344028 + 1066000 -33.792379 -33.793168 0.0007886599 41.506467 1.1857644 + 1066100 -33.788871 -33.799686 0.010814909 569.17899 0.9153131 + 1066200 -33.790117 -33.802639 0.0125219 659.01641 0.26361651 + 1066300 -33.796159 -33.797781 0.0016220547 85.367292 -0.62065346 + 1066400 -33.796354 -33.797815 0.0014612032 76.901819 -0.92695379 + 1066500 -33.794041 -33.802737 0.0086960639 457.66609 -0.77417241 + 1066600 -33.78996 -33.799803 0.0098429626 518.02634 -0.77735862 + 1066700 -33.789923 -33.790849 0.00092597171 48.733065 -0.88776055 + 1066800 -33.790953 -33.796408 0.005455476 287.11684 -0.28362667 + 1066900 -33.792288 -33.803456 0.011168773 587.80258 0.31056697 + 1067000 -33.793999 -33.798599 0.0046002215 242.10556 0.39213489 + 1067100 -33.795279 -33.795895 0.00061621898 32.431055 0.46295556 + 1067200 -33.797673 -33.801807 0.004133287 217.53121 0.6514669 + 1067300 -33.798019 -33.803375 0.0053561495 281.88937 0.62321304 + 1067400 -33.793837 -33.79655 0.002713589 142.81377 0.19535654 + 1067500 -33.791393 -33.793588 0.0021954868 115.54651 -0.37342743 + 1067600 -33.790909 -33.801903 0.010993232 578.56398 -0.47417503 + 1067700 -33.79316 -33.80109 0.0079295716 417.32628 -0.85584809 + 1067800 -33.796258 -33.796834 0.00057537501 30.281474 -1.1782901 + 1067900 -33.79806 -33.800184 0.0021237318 111.77011 -0.91749234 + 1068000 -33.797518 -33.803669 0.0061505103 323.69587 -0.47216937 + 1068100 -33.791275 -33.798772 0.0074978021 394.60264 0.086886955 + 1068200 -33.789864 -33.791332 0.0014678846 77.253459 0.77179671 + 1068300 -33.791762 -33.798533 0.0067702404 356.31171 1.6884803 + 1068400 -33.794721 -33.802721 0.0079995874 421.01115 2.0171881 + 1068500 -33.795476 -33.79809 0.0026142349 137.58485 1.666378 + 1068600 -33.792621 -33.79451 0.0018885468 99.392531 0.98135445 + 1068700 -33.786274 -33.800534 0.014259782 750.47963 0.16972391 + 1068800 -33.791459 -33.801501 0.01004116 528.45727 -1.0565246 + 1068900 -33.794462 -33.795845 0.0013835114 72.812973 -1.9827174 + 1069000 -33.794207 -33.797003 0.0027958935 147.14538 -2.0741801 + 1069100 -33.791911 -33.802436 0.010525128 553.92807 -1.5135828 + 1069200 -33.786999 -33.797045 0.010045878 528.7056 -0.90898988 + 1069300 -33.781549 -33.784686 0.0031367148 165.0825 0.019897229 + 1069400 -33.790153 -33.798219 0.008065408 424.47523 1.4620873 + 1069500 -33.793969 -33.802669 0.0087003469 457.8915 1.9640129 + 1069600 -33.794381 -33.797268 0.0028865913 151.91873 1.7558673 + 1069700 -33.792675 -33.794504 0.0018286148 96.238365 1.2619809 + 1069800 -33.787862 -33.800797 0.012935368 680.77688 0.72457075 + 1069900 -33.78907 -33.800733 0.011662919 613.80903 -0.41707117 + 1070000 -33.795313 -33.796593 0.001280155 67.373416 -1.4143908 + 1070100 -33.795515 -33.798144 0.002628917 138.35755 -1.6015867 + 1070200 -33.793099 -33.802592 0.0094932529 499.62143 -1.2760318 + 1070300 -33.788838 -33.79752 0.0086828222 456.96919 -0.95368973 + 1070400 -33.788999 -33.790989 0.0019900568 104.73491 -0.46394853 + 1070500 -33.796406 -33.800774 0.0043672255 229.84318 0.32591629 + 1070600 -33.796724 -33.802983 0.0062591506 329.41351 0.69782504 + 1070700 -33.79364 -33.797159 0.0035194053 185.22316 0.73224517 + 1070800 -33.790254 -33.792679 0.002424561 127.60248 0.71660764 + 1070900 -33.789331 -33.800373 0.011041892 581.12493 0.94031349 + 1071000 -33.79312 -33.80118 0.0080601863 424.20041 0.663318 + 1071100 -33.797089 -33.798344 0.0012550232 66.050752 0.21835864 + 1071200 -33.797365 -33.799703 0.0023376468 123.02827 0.016787356 + 1071300 -33.795871 -33.802803 0.0069312653 364.78631 -0.10515343 + 1071400 -33.792338 -33.79887 0.0065314127 343.74242 -0.48975441 + 1071500 -33.789581 -33.791707 0.0021261948 111.89974 -1.0209538 + 1071600 -33.789581 -33.797416 0.007834657 412.33101 -0.9400623 + 1071700 -33.79523 -33.802478 0.0072482742 381.4702 -0.80210311 + 1071800 -33.796848 -33.799503 0.0026549918 139.72985 -0.77485457 + 1071900 -33.795494 -33.797479 0.0019847684 104.45659 -0.46332298 + 1072000 -33.792542 -33.800706 0.0081647166 429.70175 0.28012187 + 1072100 -33.790638 -33.800087 0.0094487411 497.27882 0.909583 + 1072200 -33.791432 -33.794458 0.0030259134 159.25112 1.1670989 + 1072300 -33.792143 -33.796637 0.0044941666 236.52398 1.4281688 + 1072400 -33.792083 -33.801193 0.0091101593 479.45956 1.4741192 + 1072500 -33.792329 -33.798368 0.0060388056 317.81695 0.9809847 + 1072600 -33.793163 -33.795818 0.0026541194 139.68393 0.29025704 + 1072700 -33.795149 -33.800303 0.0051544558 271.27441 -0.13346112 + 1072800 -33.797356 -33.802336 0.0049796617 262.07516 -0.46434643 + 1072900 -33.79716 -33.799667 0.0025069022 131.93603 -0.79075498 + 1073000 -33.792204 -33.795551 0.0033466687 176.13219 -0.93873932 + 1073100 -33.789072 -33.799292 0.010220006 537.86981 -0.62895512 + 1073200 -33.79096 -33.799145 0.008184298 430.7323 -0.45955178 + 1073300 -33.794568 -33.797209 0.0026416932 139.02996 -0.33483556 + 1073400 -33.796163 -33.799738 0.0035744089 188.11795 -0.0082130986 + 1073500 -33.794747 -33.801604 0.0068568701 360.87096 0.31577017 + 1073600 -33.786525 -33.795055 0.0085293998 448.8947 0.56349795 + 1073700 -33.787652 -33.792536 0.004884332 257.05803 0.73803438 + 1073800 -33.792754 -33.799357 0.0066036963 347.54665 0.96340318 + 1073900 -33.794766 -33.800767 0.0060009863 315.82655 0.8807764 + 1074000 -33.794362 -33.797833 0.003471341 182.69358 0.49230019 + 1074100 -33.790091 -33.795917 0.0058258395 306.60874 0.038772213 + 1074200 -33.783398 -33.797544 0.014145814 744.48155 -0.47529936 + 1074300 -33.789476 -33.796873 0.0073968809 389.29124 -1.2454805 + 1074400 -33.791928 -33.795599 0.003671297 193.21709 -1.5491 + 1074500 -33.79275 -33.79895 0.0062003564 326.31922 -1.3090887 + 1074600 -33.793487 -33.800463 0.0069764592 367.16482 -0.91478429 + 1074700 -33.794705 -33.798317 0.003612374 190.11602 -0.49901583 + 1074800 -33.796095 -33.799219 0.0031246641 164.44829 0.039337263 + 1074900 -33.796136 -33.801501 0.0053645853 282.33334 0.56132264 + 1075000 -33.792251 -33.798862 0.0066112699 347.94524 0.94516528 + 1075100 -33.788208 -33.792845 0.0046370313 244.04282 1.1615339 + 1075200 -33.78909 -33.796635 0.007545062 397.08988 1.4151735 + 1075300 -33.79283 -33.800521 0.0076910085 404.77092 1.3555979 + 1075400 -33.794099 -33.798125 0.0040259875 211.88413 0.87811372 + 1075500 -33.793589 -33.797206 0.0036172461 190.37243 0.30545608 + 1075600 -33.792532 -33.800363 0.0078305214 412.11336 -0.18372488 + 1075700 -33.791438 -33.799336 0.0078982403 415.67734 -0.84055545 + 1075800 -33.791078 -33.794547 0.0034693768 182.59021 -1.5083127 + 1075900 -33.792167 -33.797263 0.0050956818 268.18119 -1.5950998 + 1076000 -33.794525 -33.801531 0.0070063969 368.74042 -1.3397315 + 1076100 -33.795976 -33.799831 0.0038550141 202.88595 -1.0662108 + 1076200 -33.795434 -33.797708 0.0022736611 119.66076 -0.56796365 + 1076300 -33.790323 -33.798988 0.0086647545 456.0183 0.43946796 + 1076400 -33.787564 -33.799871 0.012306955 647.70407 1.6362531 + 1076500 -33.792349 -33.795722 0.0033726889 177.50161 2.1062513 + 1076600 -33.794312 -33.797012 0.0027003268 142.11579 2.2298498 + 1076700 -33.793651 -33.801112 0.0074614497 392.68944 2.0308028 + 1076800 -33.792386 -33.799823 0.0074376279 391.43572 1.1922165 + 1076900 -33.79215 -33.795416 0.0032659594 171.88453 -0.098393936 + 1077000 -33.794865 -33.799379 0.0045140754 237.57176 -0.98420979 + 1077100 -33.797855 -33.802697 0.0048422966 254.84575 -1.3896295 + 1077200 -33.796749 -33.799849 0.0031006801 163.18603 -1.6032814 + 1077300 -33.792823 -33.794777 0.0019537251 102.82281 -1.4601173 + 1077400 -33.791296 -33.799647 0.008350241 439.46573 -0.58670308 + 1077500 -33.792073 -33.801723 0.0096502944 507.88639 0.24700846 + 1077600 -33.794676 -33.797171 0.0024953139 131.32615 0.67024716 + 1077700 -33.796854 -33.798708 0.0018540143 97.575119 1.0412293 + 1077800 -33.798329 -33.802767 0.0044378655 233.5609 1.2220667 + 1077900 -33.797592 -33.80188 0.0042882145 225.6849 1.02198 + 1078000 -33.792934 -33.794967 0.0020328432 106.98672 0.29709475 + 1078100 -33.790331 -33.796466 0.0061352231 322.89132 -0.50336952 + 1078200 -33.79115 -33.80237 0.011219644 590.47986 -1.1138013 + 1078300 -33.794993 -33.798991 0.0039985509 210.44017 -1.7808746 + 1078400 -33.796666 -33.797462 0.00079617212 41.901828 -1.8835875 + 1078500 -33.796643 -33.801219 0.0045763801 240.8508 -1.3659112 + 1078600 -33.79127 -33.802308 0.011037773 580.90815 -0.40758693 + 1078700 -33.788768 -33.794006 0.0052385739 275.70147 0.65049367 + 1078800 -33.792183 -33.79499 0.0028066947 147.71384 1.7546047 + 1078900 -33.794855 -33.801693 0.0068379655 359.87603 2.4249523 + 1079000 -33.79438 -33.800678 0.006297955 331.45575 2.3365937 + 1079100 -33.790844 -33.792997 0.0021526068 113.28978 1.5019961 + 1079200 -33.780327 -33.791571 0.011244578 591.79209 0.20982595 + 1079300 -33.788857 -33.802788 0.013930778 733.1644 -1.1413182 + 1079400 -33.793039 -33.798293 0.0052543449 276.53149 -2.0992799 + 1079500 -33.793376 -33.793924 0.00054801192 28.841378 -2.4971649 + 1079600 -33.792447 -33.799203 0.0067561449 355.56988 -1.9538552 + 1079700 -33.790515 -33.802707 0.012191451 641.62518 -1.0109728 + 1079800 -33.792065 -33.795911 0.0038455141 202.38598 -0.29721553 + 1079900 -33.795579 -33.797202 0.0016222986 85.380127 0.54126481 + 1080000 -33.796948 -33.802608 0.0056600912 297.88555 1.2042496 + 1080100 -33.794221 -33.801511 0.0072899305 383.66254 1.4433768 + 1080200 -33.788575 -33.790187 0.0016113746 84.805206 1.1448059 + 1080300 -33.7891 -33.794379 0.0052788831 277.82291 0.99664692 + 1080400 -33.792627 -33.803304 0.010676523 561.89587 0.84683117 + 1080500 -33.795376 -33.799959 0.0045834162 241.22111 0.23790984 + 1080600 -33.795514 -33.796021 0.0005069777 26.681784 -0.37107417 + 1080700 -33.792136 -33.799402 0.0072659879 382.40246 -0.5947496 + 1080800 -33.78534 -33.802548 0.017207978 905.64056 -0.83187596 + 1080900 -33.790137 -33.793453 0.0033161029 174.52354 -1.6586103 + 1081000 -33.792758 -33.794282 0.0015240875 80.211365 -1.6309884 + 1081100 -33.793233 -33.802181 0.0089478095 470.91523 -0.99490294 + 1081200 -33.792988 -33.801606 0.0086181944 453.56788 -0.49678768 + 1081300 -33.792435 -33.793814 0.0013791184 72.581772 -0.08472055 + 1081400 -33.791647 -33.796073 0.0044259235 232.93241 0.71835382 + 1081500 -33.791932 -33.803285 0.011353051 597.50094 1.5080904 + 1081600 -33.793863 -33.799007 0.0051442212 270.73578 1.5458346 + 1081700 -33.794756 -33.795087 0.00033076683 17.407963 1.248521 + 1081800 -33.794612 -33.800266 0.0056541567 297.57323 1.0576188 + 1081900 -33.791224 -33.803207 0.011982111 630.60783 0.60595376 + 1082000 -33.787701 -33.792769 0.0050685082 266.75106 -0.73196438 + 1082100 -33.790356 -33.792544 0.0021875989 115.13138 -1.6817749 + 1082200 -33.794966 -33.802073 0.0071072716 374.04937 -1.7156402 + 1082300 -33.794857 -33.801689 0.0068315927 359.54063 -1.6443846 + 1082400 -33.793057 -33.794405 0.0013480999 70.949293 -1.3925353 + 1082500 -33.791075 -33.795827 0.0047522585 250.10712 -0.39565485 + 1082600 -33.79175 -33.803544 0.011793669 620.6903 0.89305366 + 1082700 -33.797299 -33.800991 0.0036926127 194.33891 1.2655329 + 1082800 -33.797373 -33.797447 7.4644507e-05 3.9284738 1.3027411 + 1082900 -33.794678 -33.799751 0.0050727389 266.97372 1.3001931 + 1083000 -33.79058 -33.803544 0.012963595 682.26246 1.014362 + 1083100 -33.791292 -33.795546 0.0042547114 223.92167 -0.055451964 + 1083200 -33.792976 -33.794221 0.0012458015 65.565421 -0.82592263 + 1083300 -33.794932 -33.801999 0.0070663374 371.89503 -0.96341024 + 1083400 -33.798821 -33.803131 0.0043107408 226.87044 -1.1085497 + 1083500 -33.799456 -33.800104 0.000647495 34.077085 -1.1190878 + 1083600 -33.797699 -33.799309 0.0016101917 84.742951 -0.698848 + 1083700 -33.795038 -33.803438 0.0084002607 442.09823 0.26964254 + 1083800 -33.792822 -33.80032 0.0074987005 394.64992 1.0635435 + 1083900 -33.791158 -33.791942 0.00078390919 41.256441 1.6115139 + 1084000 -33.789753 -33.796217 0.0064635876 340.17285 2.3561505 + 1084100 -33.789963 -33.802871 0.012908136 679.34369 2.6631216 + 1084200 -33.79414 -33.797708 0.00356786 187.77329 2.0137456 + 1084300 -33.795704 -33.796558 0.00085425784 44.958828 1.2833177 + 1084400 -33.795548 -33.802024 0.0064759756 340.82482 0.64130483 + 1084500 -33.79012 -33.802566 0.012446127 655.02855 -0.33834692 + 1084600 -33.78664 -33.790814 0.0041735846 219.65203 -2.3140058 + 1084700 -33.790672 -33.793381 0.0027089456 142.56939 -3.3588019 + 1084800 -33.792559 -33.801348 0.0087887866 462.546 -3.2446125 + 1084900 -33.792034 -33.799615 0.0075805804 398.95918 -2.7897386 + 1085000 -33.791733 -33.793774 0.0020410749 107.41995 -1.8473984 + 1085100 -33.794084 -33.799129 0.0050449913 265.51339 -0.28295871 + 1085200 -33.798452 -33.803869 0.0054175547 285.12107 0.72085229 + 1085300 -33.797901 -33.800774 0.0028728312 151.19454 1.2372784 + 1085400 -33.795949 -33.796241 0.00029201216 15.36834 1.5754023 + 1085500 -33.793681 -33.800107 0.0064258306 338.18573 1.9715707 + 1085600 -33.791015 -33.802637 0.011622236 611.66794 1.9822758 + 1085700 -33.790476 -33.793618 0.0031417196 165.3459 1.0465728 + 1085800 -33.79283 -33.795015 0.0021850089 114.99507 0.26843811 + 1085900 -33.797519 -33.8032 0.0056807554 298.97309 -0.01272987 + 1086000 -33.796784 -33.802328 0.0055440048 291.77603 -0.45647809 + 1086100 -33.793915 -33.794734 0.00081885549 43.095634 -1.1184026 + 1086200 -33.791807 -33.795825 0.0040180939 211.4687 -1.3296414 + 1086300 -33.790936 -33.803507 0.012571071 661.60427 -1.1156303 + 1086400 -33.792098 -33.798285 0.0061867917 325.60533 -1.1780118 + 1086500 -33.793788 -33.794061 0.00027239226 14.335761 -0.97888658 + 1086600 -33.798197 -33.801687 0.00348981 183.66559 -0.41311763 + 1086700 -33.798215 -33.803796 0.0055806903 293.70675 0.018607044 + 1086800 -33.795346 -33.79821 0.0028638009 150.71929 0.31471884 + 1086900 -33.793251 -33.7944 0.0011487442 60.45738 0.71949803 + 1087000 -33.791725 -33.801464 0.0097394914 512.58075 1.4795411 + 1087100 -33.791195 -33.8014 0.010205574 537.11027 1.6724609 + 1087200 -33.792903 -33.793836 0.00093344291 49.126268 1.1794413 + 1087300 -33.796069 -33.798432 0.0023632707 124.37683 0.98545722 + 1087400 -33.796907 -33.803635 0.0067283217 354.10557 0.74021974 + 1087500 -33.793538 -33.800086 0.0065474696 344.58749 0.032680792 + 1087600 -33.788997 -33.790427 0.0014295067 75.233661 -1.1741306 + 1087700 -33.789843 -33.797414 0.0075714341 398.47782 -1.7863032 + 1087800 -33.791972 -33.802876 0.01090444 573.89094 -2.020673 + 1087900 -33.79317 -33.796509 0.0033389171 175.72423 -2.1792378 + 1088000 -33.793075 -33.794161 0.0010853029 57.118524 -1.7616717 + 1088100 -33.793262 -33.801617 0.0083545641 439.69326 -0.64197933 + 1088200 -33.794581 -33.802871 0.0082898001 436.28479 0.3044814 + 1088300 -33.795369 -33.796956 0.0015872975 83.53805 0.80798319 + 1088400 -33.794554 -33.796866 0.0023111708 121.63486 1.3990708 + 1088500 -33.789784 -33.802711 0.01292689 680.33068 2.1166565 + 1088600 -33.786727 -33.797356 0.010628737 559.38096 2.0052286 + 1088700 -33.790838 -33.791179 0.00034016075 17.902357 1.3909582 + 1088800 -33.794441 -33.799131 0.0046901459 246.8382 1.1733762 + 1088900 -33.794029 -33.803538 0.0095090881 500.45482 0.70728832 + 1089000 -33.792662 -33.797448 0.004786066 251.88639 -0.29411925 + 1089100 -33.791438 -33.793147 0.0017094686 89.967807 -1.2734531 + 1089200 -33.79177 -33.800691 0.0089212053 469.51508 -1.6092473 + 1089300 -33.795359 -33.8024 0.0070411343 370.56862 -1.7908361 + 1089400 -33.796522 -33.79766 0.0011386042 59.923724 -1.798215 + 1089500 -33.794717 -33.796937 0.002219983 116.83572 -1.1999972 + 1089600 -33.787326 -33.802842 0.015515978 816.59211 0.44674902 + 1089700 -33.79052 -33.799957 0.0094376951 496.69747 1.6272512 + 1089800 -33.793185 -33.79376 0.00057495076 30.259146 2.1253489 + 1089900 -33.793459 -33.797806 0.0043464234 228.74839 2.5243913 + 1090000 -33.791915 -33.803008 0.01109237 583.78156 2.4419678 + 1090100 -33.786048 -33.794335 0.008287468 436.16205 1.302974 + 1090200 -33.782793 -33.786123 0.0033302117 175.26607 -0.55979211 + 1090300 -33.791697 -33.800424 0.0087263913 459.26219 -1.3824823 + 1090400 -33.793783 -33.802195 0.0084110776 442.66751 -1.8961663 + 1090500 -33.793437 -33.795214 0.0017772706 93.536166 -2.2589621 + 1090600 -33.791135 -33.794064 0.0029290913 154.15546 -1.8991842 + 1090700 -33.786911 -33.802671 0.015760006 829.43506 -0.58088742 + 1090800 -33.793258 -33.80085 0.0075918594 399.55279 0.23045927 + 1090900 -33.796057 -33.796469 0.00041208647 21.687744 0.57161758 + 1091000 -33.795443 -33.799139 0.0036959767 194.51595 1.0677403 + 1091100 -33.79151 -33.803412 0.011901883 626.38548 1.5217462 + 1091200 -33.788707 -33.795081 0.0063737893 335.44685 1.1685475 + 1091300 -33.790084 -33.79107 0.00098576588 51.879979 0.68598634 + 1091400 -33.791406 -33.800541 0.0091350886 480.77156 0.59254328 + 1091500 -33.792989 -33.80286 0.0098711715 519.51095 0.13389466 + 1091600 -33.794406 -33.796067 0.0016609814 87.415969 -0.57584662 + 1091700 -33.795076 -33.796804 0.0017282554 90.956543 -0.8556275 + 1091800 -33.795434 -33.80304 0.0076058112 400.28706 -0.74445336 + 1091900 -33.793159 -33.800765 0.0076068215 400.34023 -0.69335113 + 1092000 -33.789169 -33.790354 0.001184771 62.353442 -0.75211106 + 1092100 -33.78846 -33.795433 0.0069731718 366.99181 -0.091655626 + 1092200 -33.79401 -33.80357 0.0095603969 503.15516 0.51636057 + 1092300 -33.795839 -33.799334 0.003495707 183.97594 0.47419161 + 1092400 -33.79473 -33.795139 0.00040989311 21.572309 0.40831488 + 1092500 -33.792135 -33.800283 0.0081480714 428.82573 0.65651763 + 1092600 -33.789298 -33.802599 0.013300694 700.00364 0.60171246 + 1092700 -33.792596 -33.794743 0.0021465913 112.97319 -0.0098845769 + 1092800 -33.796748 -33.798087 0.0013390696 70.474039 -0.12851704 + 1092900 -33.796622 -33.803107 0.0064844772 341.27225 -0.067591647 + 1093000 -33.792791 -33.800897 0.0081065526 426.64063 -0.16176637 + 1093100 -33.790221 -33.791167 0.00094559256 49.765693 -0.57021562 + 1093200 -33.790504 -33.795936 0.0054319309 285.87768 -0.419431 + 1093300 -33.792005 -33.803569 0.011563618 608.58288 -0.052581665 + 1093400 -33.793392 -33.798349 0.0049575308 260.91043 -0.1809553 + 1093500 -33.793411 -33.793894 0.0004831228 25.426322 -0.22572618 + 1093600 -33.792883 -33.800148 0.0072649251 382.34653 0.22154875 + 1093700 -33.792554 -33.802962 0.010408078 547.76787 0.4633829 + 1093800 -33.79262 -33.795336 0.0027158076 142.93053 0.23480184 + 1093900 -33.792662 -33.794695 0.0020338078 107.03749 0.24577157 + 1094000 -33.793634 -33.80245 0.0088154299 463.94821 0.45821342 + 1094100 -33.795972 -33.801798 0.0058255828 306.59522 0.282952 + 1094200 -33.796465 -33.797109 0.00064445045 33.916852 -0.023014471 + 1094300 -33.794088 -33.797936 0.0038476125 202.49641 -0.11080004 + 1094400 -33.787921 -33.803246 0.015324088 806.49307 0.027479365 + 1094500 -33.790026 -33.796749 0.0067228081 353.81539 -0.44637606 + 1094600 -33.792724 -33.793412 0.00068780669 36.198653 -0.72674171 + 1094700 -33.793325 -33.800051 0.0067260862 353.98792 -0.40636446 + 1094800 -33.792803 -33.802693 0.0098898234 520.49258 -0.13486117 + 1094900 -33.792316 -33.795313 0.0029973466 157.74768 -0.21872839 + 1095000 -33.791897 -33.794296 0.0023991528 126.26527 0.020608219 + 1095100 -33.793927 -33.802387 0.0084597857 445.23098 0.49296747 + 1095200 -33.796496 -33.802011 0.0055144349 290.21979 0.49147277 + 1095300 -33.796064 -33.796943 0.00087864294 46.242194 0.29802766 + 1095400 -33.792239 -33.796517 0.0042783868 225.16768 0.22426528 + 1095500 -33.788148 -33.802653 0.014504988 763.38459 0.27917051 + 1095600 -33.790647 -33.797125 0.0064785432 340.95995 -0.23924016 + 1095700 -33.792619 -33.793746 0.0011274555 59.336978 -0.62027422 + 1095800 -33.793211 -33.800076 0.00686551 361.32567 -0.45569549 + 1095900 -33.79303 -33.802476 0.0094463015 497.15042 -0.30479055 + 1096000 -33.792827 -33.795802 0.0029749256 156.56768 -0.46454519 + 1096100 -33.792504 -33.794995 0.0024903648 131.06568 -0.28514196 + 1096200 -33.792204 -33.801801 0.009596816 505.07187 0.23523901 + 1096300 -33.792352 -33.800338 0.007986138 420.30332 0.35539074 + 1096400 -33.792569 -33.794103 0.00153405 80.735683 0.25625566 + 1096500 -33.792936 -33.797628 0.0046913199 246.89998 0.44024041 + 1096600 -33.795415 -33.802978 0.0075638223 398.07722 0.53363156 + 1096700 -33.797383 -33.800585 0.0032019401 168.51525 0.29707993 + 1096800 -33.796385 -33.797466 0.0010804091 56.860969 0.020297712 + 1096900 -33.790926 -33.798941 0.008015188 421.83219 -0.10939036 + 1097000 -33.789185 -33.801246 0.012060992 634.75924 -0.32907716 + 1097100 -33.791828 -33.795267 0.0034389716 180.99001 -0.86840669 + 1097200 -33.793972 -33.796591 0.0026192297 137.84772 -0.92232302 + 1097300 -33.795382 -33.801967 0.0065849296 346.55897 -0.61130478 + 1097400 -33.798061 -33.802029 0.0039680474 208.8348 -0.45235807 + 1097500 -33.798894 -33.799969 0.0010754849 56.601813 -0.31655145 + 1097600 -33.796756 -33.799909 0.003153614 165.97189 0.057562966 + 1097700 -33.792464 -33.801893 0.0094283556 496.20595 0.71294459 + 1097800 -33.791065 -33.797268 0.0062035942 326.48963 1.0362346 + 1097900 -33.791378 -33.793839 0.0024614292 129.54282 1.1914868 + 1098000 -33.793866 -33.799788 0.0059229373 311.71891 1.370965 + 1098100 -33.797272 -33.802219 0.004946676 260.33915 1.1716368 + 1098200 -33.796874 -33.799383 0.0025085249 132.02143 0.6767234 + 1098300 -33.79235 -33.796521 0.0041702815 219.47819 -0.054539582 + 1098400 -33.789312 -33.800175 0.010862697 571.69407 -0.88974467 + 1098500 -33.791806 -33.799083 0.0072771302 382.98887 -1.7558776 + 1098600 -33.793791 -33.796139 0.0023479669 123.57141 -2.2324076 + 1098700 -33.794332 -33.798533 0.0042010875 221.09949 -1.9800826 + 1098800 -33.792494 -33.800922 0.0084275033 443.53198 -1.236889 + 1098900 -33.787503 -33.795965 0.0084620069 445.34787 -0.22205625 + 1099000 -33.790209 -33.795043 0.0048343096 254.4254 1.0092804 + 1099100 -33.794975 -33.800434 0.0054588474 287.29427 1.8465622 + 1099200 -33.794966 -33.800505 0.0055388099 291.50263 2.0505839 + 1099300 -33.792851 -33.796368 0.0035172108 185.10767 1.7348064 + 1099400 -33.789988 -33.79601 0.0060217964 316.92177 1.0896713 + 1099500 -33.790481 -33.80022 0.0097392079 512.56583 0.23042195 + 1099600 -33.797193 -33.800738 0.0035452941 186.58567 -0.54584837 + 1099700 -33.79732 -33.799188 0.0018681481 98.318966 -0.96081852 + 1099800 -33.794359 -33.799778 0.0054190284 285.19863 -1.0817847 + 1099900 -33.790193 -33.799827 0.0096336032 507.00794 -0.98114566 + 1100000 -33.790205 -33.795315 0.0051102405 268.9474 -0.95486687 + 1100100 -33.792962 -33.796903 0.0039402636 207.37256 -0.59697325 + 1100200 -33.797097 -33.801725 0.0046278829 243.56135 -0.14966341 + 1100300 -33.797725 -33.801306 0.0035814161 188.48673 0.070822292 + 1100400 -33.796441 -33.798765 0.0023233466 122.27566 0.26572864 + 1100500 -33.79378 -33.799157 0.0053766995 282.9709 0.60886829 + 1100600 -33.790427 -33.800422 0.0099948582 526.02047 0.90612005 + 1100700 -33.790537 -33.796208 0.0056708592 298.45226 0.80077499 + 1100800 -33.795138 -33.797689 0.0025503849 134.22448 0.66801488 + 1100900 -33.797025 -33.801279 0.0042541301 223.89107 0.56855692 + 1101000 -33.795271 -33.800898 0.0056269165 296.1396 0.28664607 + 1101100 -33.792176 -33.796277 0.0041015571 215.86129 -0.29688615 + 1101200 -33.791628 -33.797451 0.0058228845 306.45322 -0.75220311 + 1101300 -33.792665 -33.801227 0.0085622128 450.62162 -0.93951294 + 1101400 -33.79358 -33.798679 0.0050992126 268.36701 -1.1465586 + 1101500 -33.793189 -33.795558 0.0023693839 124.69856 -1.1184559 + 1101600 -33.788331 -33.797225 0.0088933627 468.04975 -0.50242442 + 1101700 -33.785429 -33.799241 0.013811943 726.91026 0.37121958 + 1101800 -33.792228 -33.796093 0.0038645277 203.38665 0.67960648 + 1101900 -33.794242 -33.797359 0.0031168669 164.03792 0.95863976 + 1102000 -33.794044 -33.801533 0.0074885645 394.11647 1.1469565 + 1102100 -33.792068 -33.799677 0.0076092866 400.46996 0.90035938 + 1102200 -33.78597 -33.790417 0.0044470383 234.04366 0.19041214 + 1102300 -33.785097 -33.794343 0.0092456725 486.5915 -0.35128002 + 1102400 -33.792706 -33.801341 0.0086353376 454.47012 -0.68030806 + 1102500 -33.793562 -33.797498 0.0039360357 207.15005 -1.0036069 + 1102600 -33.792525 -33.794909 0.0023840979 125.47295 -1.0526585 + 1102700 -33.790104 -33.800017 0.0099131805 521.72185 -0.54419391 + 1102800 -33.790431 -33.801272 0.010840412 570.52121 -0.058175508 + 1102900 -33.795711 -33.797832 0.0021212785 111.641 0.042413848 + 1103000 -33.796693 -33.798875 0.0021820829 114.84108 0.29999883 + 1103100 -33.794671 -33.802232 0.0075606877 397.91225 0.64890816 + 1103200 -33.789528 -33.798114 0.0085860348 451.87535 0.67331735 + 1103300 -33.789592 -33.791461 0.0018687311 98.349652 0.4065457 + 1103400 -33.791337 -33.797797 0.0064594433 339.95474 0.50618375 + 1103500 -33.793943 -33.802805 0.0088628238 466.44251 0.43821666 + 1103600 -33.79562 -33.798926 0.0033053145 173.95575 0.051159184 + 1103700 -33.796758 -33.797925 0.0011663873 61.385922 -0.20831921 + 1103800 -33.797459 -33.802173 0.0047136176 248.07349 -0.20914619 + 1103900 -33.794658 -33.802158 0.007500132 394.72526 -0.22882818 + 1104000 -33.790532 -33.793283 0.0027509262 144.77879 -0.55389858 + 1104100 -33.789551 -33.793493 0.0039412476 207.42434 -0.51583897 + 1104200 -33.791702 -33.802281 0.010578511 556.73759 -0.089612552 + 1104300 -33.796348 -33.80105 0.0047010782 247.41355 -0.1348649 + 1104400 -33.797559 -33.798149 0.00058981514 31.041445 -0.17130895 + 1104500 -33.79644 -33.800177 0.0037372333 196.68726 0.071190704 + 1104600 -33.794953 -33.803467 0.0085136759 448.06717 0.34407335 + 1104700 -33.792675 -33.797651 0.0049760717 261.88621 0.26718233 + 1104800 -33.790362 -33.791854 0.001492242 78.535364 0.16620895 + 1104900 -33.789343 -33.799362 0.010019631 527.32425 0.46118668 + 1105000 -33.793078 -33.801858 0.0087802751 462.09805 0.42729441 + 1105100 -33.796153 -33.797573 0.0014194222 74.702923 0.10412726 + 1105200 -33.795915 -33.798088 0.0021724674 114.33502 -0.00074029273 + 1105300 -33.792619 -33.803011 0.010392446 546.94518 0.13081064 + 1105400 -33.780877 -33.797315 0.016437551 865.09364 -0.058334363 + 1105500 -33.78795 -33.789909 0.0019586773 103.08344 -0.71658616 + 1105600 -33.791726 -33.796631 0.004905395 258.16656 -0.53780934 + 1105700 -33.791596 -33.801617 0.010021821 527.4395 -0.2654781 + 1105800 -33.790795 -33.796194 0.0053989493 284.14189 -0.28730608 + 1105900 -33.791674 -33.794171 0.0024971812 131.42442 -0.12933149 + 1106000 -33.795548 -33.801947 0.0063989109 336.76897 0.27539307 + 1106100 -33.797251 -33.803272 0.0060207753 316.86804 0.3982494 + 1106200 -33.795505 -33.797618 0.0021130755 111.20928 0.25474255 + 1106300 -33.789415 -33.792623 0.0032086265 168.86715 0.13056039 + 1106400 -33.788891 -33.801244 0.012352693 650.11121 0.38151394 + 1106500 -33.791375 -33.799149 0.0077746446 409.17261 0.12815593 + 1106600 -33.793304 -33.794033 0.00072898677 38.365923 -0.25590694 + 1106700 -33.794696 -33.798844 0.0041473582 218.27176 -0.16319511 + 1106800 -33.797089 -33.803644 0.0065548844 344.97772 -0.05161136 + 1106900 -33.799145 -33.801708 0.002563437 134.9114 -0.18136775 + 1107000 -33.798508 -33.799316 0.00080810672 42.529936 -0.21614955 + 1107100 -33.793194 -33.800501 0.0073070058 384.5612 0.040484111 + 1107200 -33.791217 -33.802336 0.011118452 585.15423 0.27761115 + 1107300 -33.791789 -33.794572 0.0027825741 146.44439 0.10677101 + 1107400 -33.791918 -33.793354 0.0014355552 75.551991 0.13104406 + 1107500 -33.79137 -33.801013 0.0096425755 507.48015 0.46135984 + 1107600 -33.791351 -33.800801 0.0094494979 497.31865 0.43554706 + 1107700 -33.794121 -33.795869 0.0017479543 91.993276 0.07844491 + 1107800 -33.79658 -33.799637 0.0030571567 160.89543 0.074292834 + 1107900 -33.796991 -33.803709 0.0067183074 353.57853 0.13752656 + 1108000 -33.791122 -33.798588 0.0074653823 392.89641 -0.091249987 + 1108100 -33.788273 -33.789892 0.0016184801 85.179166 -0.55638039 + 1108200 -33.790361 -33.797538 0.0071762519 377.67973 -0.39483466 + 1108300 -33.792804 -33.801959 0.0091543243 481.78392 -0.29851605 + 1108400 -33.793507 -33.796541 0.0030340562 159.67967 -0.43740858 + 1108500 -33.793053 -33.795148 0.0020945805 110.2359 -0.32153939 + 1108600 -33.792394 -33.802016 0.0096218637 506.3901 0.15682798 + 1108700 -33.79438 -33.80256 0.0081802023 430.51675 0.34193154 + 1108800 -33.796394 -33.797761 0.0013670831 71.948362 0.2262154 + 1108900 -33.796452 -33.798597 0.0021447704 112.87735 0.28676789 + 1109000 -33.791783 -33.802806 0.011022578 580.10843 0.52414461 + 1109100 -33.788303 -33.797456 0.0091529767 481.713 0.24356462 + 1109200 -33.790237 -33.790724 0.00048788002 25.67669 -0.25259175 + 1109300 -33.792617 -33.798377 0.0057608146 303.18654 -0.12144623 + 1109400 -33.794055 -33.803183 0.0091272033 480.35657 -0.041300023 + 1109500 -33.794021 -33.797984 0.003963363 208.58826 -0.29243302 + 1109600 -33.792283 -33.794462 0.0021790233 114.68005 -0.36515873 + 1109700 -33.790833 -33.801241 0.010408267 547.77783 0.0073516986 + 1109800 -33.793374 -33.802107 0.0087334299 459.63263 0.076561941 + 1109900 -33.795143 -33.796171 0.0010278172 54.093101 -0.091041221 + 1110000 -33.794657 -33.796582 0.001925436 101.33398 0.0093487092 + 1110100 -33.789145 -33.802668 0.01352305 711.70605 0.43725039 + 1110200 -33.787556 -33.798668 0.011112399 584.83562 0.40455887 + 1110300 -33.792111 -33.793301 0.0011896588 62.61068 0.086639373 + 1110400 -33.793417 -33.798955 0.0055376776 291.44303 0.23963468 + 1110500 -33.793583 -33.803407 0.0098246974 517.06506 0.3491877 + 1110600 -33.792539 -33.79662 0.0040814119 214.80107 -0.044213347 + 1110700 -33.788145 -33.788967 0.00082187095 43.254335 -0.40651824 + 1110800 -33.783854 -33.799017 0.015163534 798.04326 -0.074634579 + 1110900 -33.791488 -33.802133 0.010645319 560.25363 -0.24951023 + 1111000 -33.793647 -33.79512 0.0014733763 77.542478 -0.55367632 + 1111100 -33.793656 -33.796556 0.0028995787 152.60224 -0.40543914 + 1111200 -33.793048 -33.803499 0.010451009 550.0273 0.013467184 + 1111300 -33.792379 -33.799841 0.0074621223 392.72484 0.09655248 + 1111400 -33.791716 -33.792128 0.00041175328 21.670208 -0.0076616569 + 1111500 -33.79134 -33.797536 0.0061963477 326.10825 0.35516753 + 1111600 -33.792379 -33.803281 0.010901401 573.73101 0.66743923 + 1111700 -33.794937 -33.798074 0.0031366931 165.08136 0.36980872 + 1111800 -33.796283 -33.797018 0.00073435744 38.648577 0.1979301 + 1111900 -33.796689 -33.80229 0.0056009747 294.7743 0.2768229 + 1112000 -33.793272 -33.80272 0.0094481115 497.24568 0.14547385 + 1112100 -33.7889 -33.792375 0.0034757742 182.92689 -0.47046658 + 1112200 -33.789895 -33.793402 0.0035068827 184.56411 -0.69303286 + 1112300 -33.793383 -33.802075 0.0086918178 457.44262 -0.54800874 + 1112400 -33.795105 -33.800308 0.0052031151 273.83531 -0.59262426 + 1112500 -33.79274 -33.794073 0.0013331598 70.16301 -0.5940071 + 1112600 -33.785552 -33.795887 0.010335011 543.92242 0.032493706 + 1112700 -33.79135 -33.803669 0.012318872 648.33127 0.6847453 + 1112800 -33.795494 -33.798909 0.003414247 179.68877 0.62750104 + 1112900 -33.795379 -33.79576 0.00038115921 20.060069 0.5401996 + 1113000 -33.792233 -33.800181 0.0079479871 418.29547 0.69882663 + 1113100 -33.787361 -33.801799 0.014438573 759.88922 0.56141209 + 1113200 -33.789961 -33.792813 0.0028525936 150.12946 -0.24696183 + 1113300 -33.792015 -33.795074 0.0030587238 160.9779 -0.47373714 + 1113400 -33.793432 -33.802974 0.009541453 502.15816 -0.37350441 + 1113500 -33.794237 -33.800756 0.0065191862 343.09895 -0.53855125 + 1113600 -33.793419 -33.794079 0.00066071386 34.772781 -0.69533351 + 1113700 -33.78922 -33.795962 0.0067419228 354.82138 -0.32634004 + 1113800 -33.786781 -33.803083 0.016301531 857.93501 0.35360303 + 1113900 -33.793017 -33.797245 0.0042277711 222.50382 0.29693109 + 1114000 -33.794739 -33.795529 0.00079029471 41.592505 0.30540946 + 1114100 -33.794226 -33.80127 0.0070436083 370.69882 0.57383312 + 1114200 -33.792255 -33.802328 0.010072522 530.10786 0.59301804 + 1114300 -33.788803 -33.792161 0.0033578691 176.72166 0.038766733 + 1114400 -33.782374 -33.788335 0.0059608975 313.71672 -0.28768484 + 1114500 -33.788382 -33.801965 0.013583093 714.86609 -0.16414483 + 1114600 -33.793209 -33.799519 0.0063103314 332.10711 -0.50172923 + 1114700 -33.793655 -33.794353 0.00069749852 36.708725 -0.69486618 + 1114800 -33.792848 -33.798544 0.0056964798 299.80065 -0.39018297 + 1114900 -33.790003 -33.803132 0.013128746 690.95419 0.058165573 + 1115000 -33.789783 -33.795715 0.0059313453 312.16141 0.082391082 + 1115100 -33.794063 -33.795534 0.0014710254 77.418755 0.19937982 + 1115200 -33.795999 -33.801583 0.0055833469 293.84657 0.4865884 + 1115300 -33.79463 -33.801925 0.0072951638 383.93796 0.53962744 + 1115400 -33.788951 -33.792005 0.0030543731 160.74893 0.13443466 + 1115500 -33.787558 -33.792638 0.0050803814 267.37594 -0.052518718 + 1115600 -33.790386 -33.802299 0.011913196 626.98089 0.065341028 + 1115700 -33.793976 -33.79996 0.0059842535 314.94593 -0.26819176 + 1115800 -33.795115 -33.796071 0.00095539842 50.281767 -0.5073611 + 1115900 -33.794548 -33.799497 0.004948988 260.46082 -0.32968455 + 1116000 -33.787798 -33.802117 0.014318963 753.59423 0.016587755 + 1116100 -33.786885 -33.79314 0.0062545687 329.17237 -0.10065092 + 1116200 -33.791793 -33.793971 0.0021774686 114.59823 0.016739293 + 1116300 -33.79352 -33.801036 0.0075151708 395.51673 0.35108009 + 1116400 -33.793217 -33.801156 0.0079387141 417.80744 0.4081269 + 1116500 -33.792095 -33.794658 0.0025636394 134.92205 0.15589073 + 1116600 -33.789314 -33.794888 0.0055747438 293.39379 0.11768411 + 1116700 -33.786668 -33.801459 0.014791328 778.4544 0.29163571 + 1116800 -33.793115 -33.798812 0.0056973188 299.84481 -0.079158132 + 1116900 -33.795083 -33.796359 0.0012758883 67.148862 -0.30401184 + 1117000 -33.794482 -33.799798 0.0053165277 279.80411 -0.17478934 + 1117100 -33.789792 -33.801253 0.011460998 603.18211 0.0031867485 + 1117200 -33.783595 -33.790897 0.0073024442 384.32112 -0.22338375 + 1117300 -33.791111 -33.795008 0.0038970418 205.09784 -0.10987518 + 1117400 -33.794359 -33.801679 0.0073204413 385.2683 0.14478703 + 1117500 -33.793758 -33.800259 0.0065012512 342.15505 0.12775786 + 1117600 -33.791407 -33.79371 0.0023029203 121.20064 -0.028205769 + 1117700 -33.788455 -33.795584 0.0071282168 375.15169 0.113774 + 1117800 -33.789937 -33.801507 0.011569439 608.88928 0.29071838 + 1117900 -33.795783 -33.799393 0.0036101013 189.99641 0.080517843 + 1118000 -33.796059 -33.797807 0.0017479942 91.995378 -0.041512053 + 1118100 -33.79413 -33.80075 0.0066200711 348.40844 0.054581851 + 1118200 -33.789941 -33.800118 0.010176822 535.59709 0.073444518 + 1118300 -33.788459 -33.792386 0.0039273 206.6903 -0.30335393 + 1118400 -33.794199 -33.797926 0.0037268392 196.14022 -0.23588209 + 1118500 -33.796827 -33.802372 0.0055447517 291.81534 -0.086433927 + 1118600 -33.795383 -33.799989 0.0046063415 242.42764 -0.13013128 + 1118700 -33.791325 -33.794353 0.003027831 159.35204 -0.15319238 + 1118800 -33.789139 -33.798045 0.0089054769 468.6873 0.18724851 + 1118900 -33.792308 -33.801162 0.0088532419 465.93822 0.31952062 + 1119000 -33.796621 -33.798886 0.0022650306 119.20654 0.20479287 + 1119100 -33.796859 -33.798868 0.0020090106 105.73244 0.17554228 + 1119200 -33.795394 -33.801731 0.0063377788 333.55164 0.22429924 + 1119300 -33.792137 -33.799765 0.0076281681 401.46368 0.1162214 + 1119400 -33.789924 -33.793637 0.0037129389 195.40866 -0.26815531 + 1119500 -33.791576 -33.797649 0.0060730193 319.61759 -0.30332854 + 1119600 -33.796699 -33.802253 0.0055544254 292.32445 -0.24940304 + 1119700 -33.79664 -33.799582 0.0029411853 154.79196 -0.34044157 + 1119800 -33.794393 -33.796625 0.0022313034 117.43151 -0.30361995 + 1119900 -33.791902 -33.800227 0.0083249427 438.13431 0.11025315 + 1120000 -33.79179 -33.80078 0.0089892827 473.09793 0.3164177 + 1120100 -33.792975 -33.795942 0.0029670698 156.15424 0.26380393 + 1120200 -33.793849 -33.797576 0.0037264273 196.11855 0.39515766 + 1120300 -33.796087 -33.80215 0.0060628478 319.08227 0.48457454 + 1120400 -33.797948 -33.801075 0.0031275938 164.60247 0.32419365 + 1120500 -33.796466 -33.79803 0.0015631945 82.269533 0.086664141 + 1120600 -33.791856 -33.799214 0.0073576762 387.22793 -0.059710586 + 1120700 -33.790717 -33.801717 0.011000517 578.9474 -0.2438677 + 1120800 -33.792994 -33.796655 0.0036606591 192.65723 -0.70169601 + 1120900 -33.794532 -33.796535 0.0020027392 105.40238 -0.80785106 + 1121000 -33.797053 -33.801718 0.0046652388 245.52736 -0.55633979 + 1121100 -33.798573 -33.802161 0.0035882407 188.84591 -0.40902918 + 1121200 -33.79624 -33.798616 0.00237623 125.05887 -0.24124719 + 1121300 -33.792092 -33.798244 0.0061525332 323.80233 0.31156559 + 1121400 -33.792537 -33.802205 0.0096683975 508.83914 0.92686825 + 1121500 -33.79405 -33.79871 0.0046604305 245.2743 1.0261351 + 1121600 -33.793502 -33.794554 0.0010519176 55.361485 0.94004402 + 1121700 -33.786962 -33.796403 0.0094410725 496.87522 0.9301423 + 1121800 -33.785834 -33.800981 0.015146974 797.17174 0.61750018 + 1121900 -33.792323 -33.796104 0.0037808883 198.98478 -0.13910286 + 1122000 -33.794081 -33.796851 0.0027700064 145.78297 -0.47473086 + 1122100 -33.794426 -33.80229 0.0078645976 413.90676 -0.47134499 + 1122200 -33.793193 -33.800641 0.0074480723 391.9854 -0.56573405 + 1122300 -33.787274 -33.789705 0.0024303264 127.90591 -0.83844542 + 1122400 -33.784934 -33.793017 0.0080829037 425.39601 -0.42430622 + 1122500 -33.790812 -33.802093 0.011280961 593.7069 0.096060107 + 1122600 -33.79293 -33.797546 0.0046168422 242.98029 0.041604895 + 1122700 -33.792867 -33.794432 0.0015650182 82.365512 0.10504171 + 1122800 -33.792781 -33.800684 0.0079026516 415.9095 0.48975645 + 1122900 -33.795133 -33.802868 0.0077353566 407.10492 0.52528325 + 1123000 -33.797814 -33.799255 0.0014408196 75.829048 0.29331011 + 1123100 -33.797658 -33.799051 0.0013933329 73.329869 0.1759258 + 1123200 -33.792784 -33.802483 0.0096998974 510.49695 0.15601116 + 1123300 -33.790336 -33.799846 0.0095101923 500.51294 -0.21630386 + 1123400 -33.791836 -33.792916 0.0010800104 56.839984 -0.81516446 + 1123500 -33.79368 -33.797992 0.0043120925 226.94158 -0.79420512 + 1123600 -33.795851 -33.803079 0.0072279253 380.39926 -0.56236882 + 1123700 -33.798278 -33.800759 0.0024808099 130.56281 -0.56699571 + 1123800 -33.798893 -33.799509 0.00061599494 32.419264 -0.42368924 + 1123900 -33.796107 -33.801861 0.0057539182 302.82358 0.070978731 + 1124000 -33.791222 -33.80302 0.011797541 620.89407 0.71829817 + 1124100 -33.792609 -33.795896 0.0032865309 172.96719 0.87474054 + 1124200 -33.794055 -33.795596 0.001540417 81.070771 1.084416 + 1124300 -33.79446 -33.801282 0.0068213695 359.00259 1.2465417 + 1124400 -33.790978 -33.799755 0.0087769919 461.92525 0.96409937 + 1124500 -33.787174 -33.790387 0.0032124667 169.06926 0.059980115 + 1124600 -33.791353 -33.797467 0.0061134551 321.74569 -0.43897999 + 1124700 -33.795116 -33.803763 0.0086471814 455.09345 -0.62504461 + 1124800 -33.795037 -33.799405 0.0043689676 229.93487 -0.94933138 + 1124900 -33.793163 -33.793655 0.00049165936 25.875594 -1.1292448 + 1125000 -33.788768 -33.798383 0.0096147767 506.01712 -0.54622652 + 1125100 -33.783424 -33.801544 0.018120201 953.65003 0.24427118 + 1125200 -33.792384 -33.794482 0.002098047 110.41834 0.26928815 + 1125300 -33.794868 -33.796549 0.001681368 88.488896 0.55670718 + 1125400 -33.795066 -33.802926 0.0078596792 413.6479 0.86246689 + 1125500 -33.793025 -33.801318 0.0082937169 436.49092 0.73888082 + 1125600 -33.790212 -33.792437 0.0022245443 117.07578 0.21394699 + 1125700 -33.790212 -33.796301 0.0060884055 320.42735 -0.013075134 + 1125800 -33.795166 -33.802906 0.0077401534 407.35737 -0.1277637 + 1125900 -33.796077 -33.799259 0.0031818192 167.45631 -0.41261692 + 1126000 -33.793905 -33.794575 0.00067031917 35.2783 -0.6332312 + 1126100 -33.790392 -33.7999 0.0095076509 500.37919 -0.30701795 + 1126200 -33.791437 -33.803342 0.011905284 626.56447 -0.045220325 + 1126300 -33.793998 -33.79671 0.0027121701 142.73909 -0.22482614 + 1126400 -33.795059 -33.796607 0.0015480353 81.471715 -0.072907997 + 1126500 -33.79437 -33.802294 0.0079236878 417.01662 0.32588247 + 1126600 -33.787628 -33.799048 0.01141992 601.02022 0.46251611 + 1126700 -33.786786 -33.787846 0.0010604627 55.811206 0.20319878 + 1126800 -33.790767 -33.796497 0.0057308525 301.60965 0.49543824 + 1126900 -33.793389 -33.80366 0.010270935 540.55013 0.63466176 + 1127000 -33.793888 -33.798566 0.0046778165 246.18931 0.29149491 + 1127100 -33.793402 -33.794282 0.00087958427 46.291736 -0.10282687 + 1127200 -33.79145 -33.800346 0.0088955223 468.16341 -0.092596475 + 1127300 -33.786094 -33.801845 0.015750693 828.94493 -0.17674717 + 1127400 -33.789372 -33.791645 0.0022723599 119.59228 -0.90156043 + 1127500 -33.793337 -33.795452 0.0021148078 111.30045 -0.87766158 + 1127600 -33.794119 -33.802591 0.008472503 445.90027 -0.47547073 + 1127700 -33.793049 -33.800508 0.0074595788 392.59098 -0.31311273 + 1127800 -33.79048 -33.792456 0.0019758401 103.9867 -0.21242803 + 1127900 -33.785008 -33.795032 0.010023877 527.54768 0.50745713 + 1128000 -33.790565 -33.802904 0.01233935 649.40897 1.0712666 + 1128100 -33.794456 -33.797783 0.0033266226 175.07718 0.9076768 + 1128200 -33.794093 -33.794797 0.00070347721 37.023378 0.69980701 + 1128300 -33.791072 -33.800358 0.0092853646 488.68046 0.65270123 + 1128400 -33.785105 -33.801216 0.016110735 847.89361 0.26121766 + 1128500 -33.793242 -33.795409 0.0021673273 114.0645 -0.70012764 + 1128600 -33.795948 -33.798345 0.00239719 126.16197 -0.88090899 + 1128700 -33.795263 -33.803021 0.0077588099 408.33924 -0.70757749 + 1128800 -33.791285 -33.798839 0.0075542511 397.5735 -0.62331028 + 1128900 -33.788466 -33.789613 0.0011467929 60.354688 -0.56880474 + 1129000 -33.789494 -33.79714 0.0076457992 402.39159 0.185451 + 1129100 -33.794994 -33.803016 0.0080214376 422.16111 0.62206673 + 1129200 -33.7963 -33.798993 0.0026933699 141.74966 0.53958955 + 1129300 -33.794962 -33.796545 0.0015827405 83.29822 0.47482487 + 1129400 -33.791732 -33.801351 0.009618502 506.21318 0.58931703 + 1129500 -33.789703 -33.800941 0.01123774 591.43221 0.31161209 + 1129600 -33.793324 -33.795017 0.0016934132 89.122825 -0.27105071 + 1129700 -33.796536 -33.798793 0.0022574471 118.80743 -0.36283357 + 1129800 -33.796095 -33.802566 0.0064706753 340.54587 -0.28578863 + 1129900 -33.793645 -33.799522 0.0058776615 309.33608 -0.32669112 + 1130000 -33.792583 -33.794884 0.00230123 121.11168 -0.41220065 + 1130100 -33.792727 -33.799593 0.0068655353 361.327 -0.082159343 + 1130200 -33.793861 -33.802446 0.0085852673 451.83496 0.20034319 + 1130300 -33.795837 -33.798318 0.0024812331 130.58508 0.11189115 + 1130400 -33.797522 -33.798685 0.0011630312 61.209294 0.16867407 + 1130500 -33.796998 -33.802004 0.0050056169 263.44115 0.3429767 + 1130600 -33.79186 -33.800723 0.008862654 466.43358 0.32907528 + 1130700 -33.790515 -33.794262 0.0037478038 197.24357 -0.0014232544 + 1130800 -33.792659 -33.7976 0.0049414704 260.06518 -0.027477832 + 1130900 -33.795012 -33.802294 0.0072818892 383.23933 -0.009096589 + 1131000 -33.795365 -33.799417 0.0040524131 213.27489 -0.1698375 + 1131100 -33.790698 -33.792686 0.0019873081 104.59025 -0.36026645 + 1131200 -33.786231 -33.797041 0.010810183 568.93029 -0.11108965 + 1131300 -33.790414 -33.801194 0.010779607 567.32109 0.048800715 + 1131400 -33.794601 -33.79745 0.0028485882 149.91866 -0.15016156 + 1131500 -33.795038 -33.797868 0.0028301921 148.95049 -0.097449738 + 1131600 -33.793565 -33.801808 0.0082428804 433.81544 0.17939766 + 1131700 -33.785806 -33.796746 0.01094042 575.78457 0.18786998 + 1131800 -33.783659 -33.787377 0.003717464 195.64682 -0.060517583 + 1131900 -33.788791 -33.796569 0.0077779442 409.34626 0.25580828 + 1132000 -33.791259 -33.801051 0.0097922466 515.35721 0.33690571 + 1132100 -33.793258 -33.797033 0.0037751981 198.68531 0.093815606 + 1132200 -33.794588 -33.797168 0.0025798159 135.77341 0.0094964428 + 1132300 -33.7962 -33.801992 0.0057924484 304.85139 0.068290402 + 1132400 -33.798023 -33.802237 0.0042147162 221.81675 -0.0096273757 + 1132500 -33.797529 -33.799123 0.0015943954 83.911608 -0.1640836 + 1132600 -33.793075 -33.797656 0.0045803999 241.06236 -0.18496903 + 1132700 -33.790025 -33.801238 0.011213247 590.14318 0.015331798 + 1132800 -33.79098 -33.79683 0.0058500217 307.88142 -0.17002107 + 1132900 -33.793378 -33.795173 0.0017944513 94.44037 -0.26615911 + 1133000 -33.796727 -33.801023 0.0042964913 226.12051 -0.041335974 + 1133100 -33.797554 -33.802441 0.0048869059 257.1935 0.042993082 + 1133200 -33.792656 -33.797138 0.0044824695 235.90837 -0.019645544 + 1133300 -33.788071 -33.794745 0.0066746109 351.27882 0.10251128 + 1133400 -33.792233 -33.801129 0.0088954281 468.15844 0.33626916 + 1133500 -33.795041 -33.799899 0.0048574268 255.64204 0.23566656 + 1133600 -33.794533 -33.795862 0.001328884 69.937978 0.082882777 + 1133700 -33.789881 -33.796484 0.0066022295 347.46945 0.12196811 + 1133800 -33.78682 -33.801456 0.014635391 770.24758 0.23433858 + 1133900 -33.791452 -33.797172 0.0057200412 301.04067 -0.11965241 + 1134000 -33.793519 -33.796091 0.0025712014 135.32004 -0.29379185 + 1134100 -33.794354 -33.801161 0.0068064215 358.21589 -0.13660669 + 1134200 -33.79361 -33.801138 0.0075276331 396.17262 -0.077478514 + 1134300 -33.787585 -33.790742 0.0031564492 166.12111 -0.31801767 + 1134400 -33.784663 -33.791108 0.0064449561 339.19229 -0.098778776 + 1134500 -33.789753 -33.801758 0.012004866 631.80541 0.36258649 + 1134600 -33.792873 -33.798762 0.0058881224 309.88663 0.19820626 + 1134700 -33.793419 -33.795022 0.001603606 84.396353 0.065116106 + 1134800 -33.79358 -33.800026 0.006445849 339.23928 0.24211038 + 1134900 -33.794271 -33.802768 0.0084969456 447.18667 0.2335171 + 1135000 -33.795558 -33.798032 0.0024741014 130.20975 -0.041253612 + 1135100 -33.795204 -33.796784 0.0015801166 83.160128 -0.16326436 + 1135200 -33.791545 -33.801579 0.010033522 528.05529 -0.01334827 + 1135300 -33.787356 -33.799215 0.011859446 624.15204 -0.069207413 + 1135400 -33.790222 -33.791615 0.0013923641 73.278879 -0.4944173 + 1135500 -33.794662 -33.798548 0.0038859738 204.51534 -0.31964456 + 1135600 -33.794892 -33.803391 0.0084981952 447.25243 -0.033638894 + 1135700 -33.793311 -33.79851 0.0051991797 273.62819 -0.10968658 + 1135800 -33.790938 -33.792111 0.0011738925 61.780914 -0.17155803 + 1135900 -33.788764 -33.79888 0.010115979 532.39493 0.35351181 + 1136000 -33.792361 -33.802504 0.01014396 533.86757 0.50527465 + 1136100 -33.796064 -33.797641 0.0015768104 82.986126 0.25897871 + 1136200 -33.795849 -33.797447 0.0015983501 84.119741 0.2227784 + 1136300 -33.792309 -33.802744 0.010434898 549.17935 0.34355545 + 1136400 -33.787265 -33.799284 0.012019236 632.56169 0.084209465 + 1136500 -33.790383 -33.791634 0.0012508422 65.830711 -0.50808743 + 1136600 -33.791921 -33.797273 0.0053520551 281.67389 -0.47882554 + 1136700 -33.792206 -33.803072 0.010865782 571.85643 -0.26248216 + 1136800 -33.792684 -33.797071 0.0043872234 230.89565 -0.43579997 + 1136900 -33.792623 -33.793445 0.00082206944 43.264781 -0.45614275 + 1137000 -33.792795 -33.800941 0.0081463215 428.73363 0.064340118 + 1137100 -33.794843 -33.803104 0.0082608463 434.76097 0.29209045 + 1137200 -33.796744 -33.798135 0.0013911727 73.216177 0.15666721 + 1137300 -33.796789 -33.798307 0.0015183487 79.90934 0.24069957 + 1137400 -33.792405 -33.803034 0.01062945 559.41849 0.50561197 + 1137500 -33.788441 -33.798909 0.010467682 550.90476 0.31097796 + 1137600 -33.790311 -33.790572 0.00026126419 13.750101 -0.16201836 + 1137700 -33.792864 -33.797969 0.0051050668 268.67511 -0.065027426 + 1137800 -33.794361 -33.803641 0.0092805994 488.42967 0.038342789 + 1137900 -33.794216 -33.79826 0.004043549 212.80838 -0.19689476 + 1138000 -33.793726 -33.794681 0.00095438791 50.228584 -0.37171162 + 1138100 -33.79286 -33.801235 0.0083751715 440.77781 -0.061568015 + 1138200 -33.791981 -33.802505 0.010524423 553.89101 0.099208009 + 1138300 -33.79187 -33.793604 0.0017339681 91.257193 -0.20158723 + 1138400 -33.792145 -33.794624 0.0024788463 130.45947 -0.058624105 + 1138500 -33.793258 -33.802922 0.0096635666 508.58489 0.33321221 + 1138600 -33.79494 -33.800815 0.0058746321 309.17665 0.21373534 + 1138700 -33.795503 -33.795976 0.00047297156 24.892071 0.025015366 + 1138800 -33.794545 -33.799401 0.0048563057 255.58304 0.14329896 + 1138900 -33.789618 -33.803881 0.014263299 750.66469 0.31181828 + 1139000 -33.788601 -33.794689 0.0060879837 320.40515 -0.1145098 + 1139100 -33.793137 -33.793844 0.0007071111 37.214626 -0.34347738 + 1139200 -33.795437 -33.801238 0.0058009321 305.29788 -0.13557047 + 1139300 -33.794316 -33.802316 0.0080001599 421.04128 -0.023903499 + 1139400 -33.792395 -33.79488 0.0024848093 130.7733 -0.23715221 + 1139500 -33.791478 -33.795316 0.0038377389 201.97677 -0.11449402 + 1139600 -33.794629 -33.803174 0.0085456582 449.75037 0.2473408 + 1139700 -33.798698 -33.802136 0.0034383399 180.95676 0.13551172 + 1139800 -33.797512 -33.797727 0.00021503249 11.316968 -0.0058563071 + 1139900 -33.794516 -33.798658 0.004142175 217.99898 0.090997815 + 1140000 -33.791475 -33.803615 0.01214051 638.94422 0.26395873 + 1140100 -33.790999 -33.796347 0.005348487 281.4861 -0.075415611 + 1140200 -33.792539 -33.793422 0.0008824916 46.444746 -0.28082226 + 1140300 -33.796813 -33.801984 0.0051709682 272.14344 -0.084302648 + 1140400 -33.797522 -33.803247 0.005724305 301.26507 -0.029061795 + 1140500 -33.795688 -33.797319 0.0016318629 85.883489 -0.19435932 + 1140600 -33.79397 -33.796023 0.0020529281 108.04378 -0.17003399 + 1140700 -33.792223 -33.802831 0.010607921 558.28542 0.24033372 + 1140800 -33.791419 -33.799904 0.0084851881 446.56788 0.21268452 + 1140900 -33.791935 -33.79245 0.00051539349 27.1247 -0.063422256 + 1141000 -33.794968 -33.799027 0.0040583501 213.58734 0.16735173 + 1141100 -33.796703 -33.803586 0.0068824363 362.21648 0.28458467 + 1141200 -33.79492 -33.798983 0.0040621236 213.78594 0.064324035 + 1141300 -33.789748 -33.791497 0.0017485191 92.023001 -0.20913478 + 1141400 -33.788905 -33.799688 0.010783318 567.51643 -0.013580007 + 1141500 -33.791667 -33.801918 0.010250392 539.46899 -0.084015676 + 1141600 -33.792975 -33.794775 0.001800019 94.733396 -0.39428644 + 1141700 -33.792843 -33.795476 0.0026329773 138.57125 -0.35289872 + 1141800 -33.791625 -33.802545 0.010920148 574.71766 0.034204476 + 1141900 -33.788839 -33.798805 0.0099663348 524.51931 0.11086021 + 1142000 -33.790841 -33.792441 0.0015993261 84.171107 -0.07312667 + 1142100 -33.79452 -33.799342 0.0048217744 253.76569 0.21989276 + 1142200 -33.795741 -33.803076 0.0073351626 386.04306 0.39448674 + 1142300 -33.793447 -33.797389 0.0039417225 207.44934 0.15617893 + 1142400 -33.787244 -33.789314 0.0020696135 108.92191 -0.11470718 + 1142500 -33.78744 -33.799777 0.012337375 649.30506 0.16782363 + 1142600 -33.791786 -33.801498 0.0097115935 511.1125 -0.012279446 + 1142700 -33.793919 -33.79572 0.0018007054 94.76952 -0.31877466 + 1142800 -33.794266 -33.797513 0.0032465799 170.86461 -0.27291992 + 1142900 -33.792633 -33.802601 0.0099678765 524.60045 -0.036603616 + 1143000 -33.785045 -33.795208 0.010162416 534.83889 -0.027935629 + 1143100 -33.786274 -33.788361 0.0020865229 109.81184 -0.21467357 + 1143200 -33.791844 -33.799131 0.0072862314 383.46786 0.17376745 + 1143300 -33.793639 -33.80232 0.0086807316 456.85916 0.35124787 + 1143400 -33.793715 -33.796783 0.0030678393 161.45765 0.095410124 + 1143500 -33.792461 -33.79526 0.0027988006 147.29838 0.018525551 + 1143600 -33.787031 -33.800581 0.013549986 713.12366 0.30304963 + 1143700 -33.78645 -33.797794 0.011344319 597.04142 0.022869831 + 1143800 -33.793065 -33.794743 0.0016781285 88.318405 -0.30397765 + 1143900 -33.794252 -33.798782 0.0045300088 238.41032 -0.1784825 + 1144000 -33.793419 -33.802289 0.0088704004 466.84126 -0.058225951 + 1144100 -33.790832 -33.79646 0.0056280515 296.19933 -0.15615455 + 1144200 -33.785579 -33.789564 0.0039856609 209.76178 -0.21565483 + 1144300 -33.785817 -33.798552 0.012734864 670.22453 0.20911618 + 1144400 -33.793725 -33.80096 0.007235175 380.78081 0.24749266 + 1144500 -33.79447 -33.796436 0.0019661978 103.47924 0.062165679 + 1144600 -33.793357 -33.797475 0.0041184351 216.74957 0.08701983 + 1144700 -33.789075 -33.801485 0.012410853 653.17213 0.31622989 + 1144800 -33.785689 -33.794858 0.0091690712 482.56004 0.0047213959 + 1144900 -33.792644 -33.794869 0.0022244084 117.06863 -0.2412938 + 1145000 -33.795223 -33.800687 0.0054633054 287.52889 -0.071916995 + 1145100 -33.794364 -33.801708 0.0073439496 386.50552 -0.049245623 + 1145200 -33.790749 -33.794456 0.0037075961 195.12748 -0.2396188 + 1145300 -33.786936 -33.792411 0.0054740453 288.09412 -0.1540726 + 1145400 -33.79124 -33.801399 0.010159299 534.67486 0.14651331 + 1145500 -33.796339 -33.800847 0.0045079874 237.25136 0.06315526 + 1145600 -33.795434 -33.796881 0.0014473406 76.172247 -0.03888164 + 1145700 -33.791984 -33.79825 0.0062665182 329.80126 0.081432394 + 1145800 -33.788436 -33.801328 0.012892231 678.50661 0.28401571 + 1145900 -33.791271 -33.79567 0.0043986991 231.49961 -0.0048568135 + 1146000 -33.796323 -33.798079 0.0017560048 92.416965 -0.060028795 + 1146100 -33.796563 -33.802082 0.0055193949 290.48083 0.085513985 + 1146200 -33.794169 -33.801108 0.0069385433 365.16935 0.072107761 + 1146300 -33.790843 -33.793347 0.0025035283 131.75846 -0.22189361 + 1146400 -33.789365 -33.795297 0.0059325474 312.22468 -0.12344965 + 1146500 -33.792939 -33.802422 0.0094835571 499.11115 0.069303258 + 1146600 -33.797378 -33.800535 0.0031565972 166.12889 -0.11174913 + 1146700 -33.79657 -33.797539 0.00096958151 51.02821 -0.16980566 + 1146800 -33.793612 -33.800245 0.0066339354 349.1381 0.047364982 + 1146900 -33.790436 -33.801778 0.011341324 596.88375 0.22129215 + 1147000 -33.791036 -33.79432 0.0032838338 172.82525 0.0080998792 + 1147100 -33.79236 -33.7953 0.0029402201 154.74116 0.041964604 + 1147200 -33.793071 -33.802169 0.0090986275 478.85265 0.2891722 + 1147300 -33.792961 -33.800039 0.0070776027 372.48792 0.21016114 + 1147400 -33.792532 -33.793819 0.0012868892 67.72783 -0.10724245 + 1147500 -33.791973 -33.797858 0.005885206 309.73314 -0.009219047 + 1147600 -33.792518 -33.802975 0.010457174 550.35172 0.14687158 + 1147700 -33.795443 -33.798711 0.0032681329 171.99892 -0.16148395 + 1147800 -33.796692 -33.797541 0.00084932943 44.69945 -0.23963908 + 1147900 -33.795812 -33.801864 0.0060511452 318.46637 -0.013888764 + 1148000 -33.789176 -33.801383 0.012207675 642.47907 0.12326442 + 1148100 -33.788748 -33.791305 0.0025568504 134.56476 -0.1641624 + 1148200 -33.791455 -33.795084 0.0036285737 190.9686 0.011646312 + 1148300 -33.793685 -33.80301 0.009324602 490.74549 0.28346474 + 1148400 -33.793955 -33.799888 0.0059331483 312.2563 0.18688168 + 1148500 -33.793346 -33.793965 0.00061874155 32.563816 -0.059974379 + 1148600 -33.792629 -33.798877 0.0062481858 328.83645 0.074565075 + 1148700 -33.792152 -33.803343 0.011191114 588.97835 0.23421837 + 1148800 -33.792868 -33.796427 0.0035592418 187.31972 -0.13583782 + 1148900 -33.79593 -33.7969 0.0009693875 51.018 -0.23839649 + 1149000 -33.797778 -33.802623 0.0048447206 254.97332 -0.03186465 + 1149100 -33.795847 -33.802424 0.0065771052 346.14718 -0.0037588917 + 1149200 -33.791727 -33.793407 0.0016795216 88.391723 -0.23465118 + 1149300 -33.790744 -33.794749 0.0040050048 210.77983 -0.057038039 + 1149400 -33.79171 -33.803399 0.011688517 615.1562 0.30032144 + 1149500 -33.794713 -33.800017 0.0053041089 279.15052 0.14717757 + 1149600 -33.797631 -33.797747 0.00011616899 6.1138703 0.016021893 + 1149700 -33.799265 -33.801821 0.0025559002 134.51475 0.10381165 + 1149800 -33.797288 -33.803729 0.0064410535 338.9869 0.18811491 + 1149900 -33.793576 -33.797534 0.0039572459 208.26632 -0.056172026 + 1150000 -33.79247 -33.793616 0.0011462163 60.32434 -0.32752925 + 1150100 -33.791615 -33.801203 0.0095873114 504.57165 -0.072728305 + 1150200 -33.79233 -33.802034 0.0097034325 510.683 -0.085217547 + 1150300 -33.793997 -33.794974 0.00097660171 51.397677 -0.41944005 + 1150400 -33.795156 -33.797416 0.0022604197 118.96387 -0.263881 + 1150500 -33.795905 -33.803466 0.0075609896 397.92814 0.048104252 + 1150600 -33.794245 -33.80048 0.0062349545 328.1401 0.044664658 + 1150700 -33.789639 -33.790991 0.0013522442 71.167408 -0.062520761 + 1150800 -33.788478 -33.797073 0.0085956204 452.37984 0.33928546 + 1150900 -33.793499 -33.803265 0.0097659004 513.97063 0.53620071 + 1151000 -33.795322 -33.797919 0.0025968289 136.66879 0.30135161 + 1151100 -33.794457 -33.79517 0.00071320666 37.535431 0.10024183 + 1151200 -33.792261 -33.801577 0.0093158572 490.28526 0.23662044 + 1151300 -33.790328 -33.802071 0.011743732 618.06215 0.12231653 + 1151400 -33.793971 -33.795352 0.0013811699 72.689742 -0.43393691 + 1151500 -33.797276 -33.799118 0.0018425367 96.971064 -0.41527703 + 1151600 -33.796775 -33.803481 0.0067058078 352.92068 -0.19509484 + 1151700 -33.793109 -33.799685 0.0065762418 346.10174 -0.19747489 + 1151800 -33.791564 -33.791885 0.00032096228 16.891958 -0.26768081 + 1151900 -33.791419 -33.798129 0.0067100964 353.14639 0.20964872 + 1152000 -33.792713 -33.803721 0.011008626 579.37417 0.5331041 + 1152100 -33.795977 -33.798581 0.0026040232 137.04742 0.3560253 + 1152200 -33.798487 -33.798932 0.00044504368 23.422252 0.2905522 + 1152300 -33.798474 -33.80277 0.0042961178 226.10085 0.33487081 + 1152400 -33.793434 -33.802449 0.0090149615 474.44938 0.23989633 + 1152500 -33.79202 -33.794003 0.0019833599 104.38246 -0.41115334 + 1152600 -33.79211 -33.795263 0.00315342 165.96168 -0.66621813 + 1152700 -33.792938 -33.802949 0.010010806 526.85977 -0.51345219 + 1152800 -33.794262 -33.799991 0.0057292049 301.52294 -0.67522733 + 1152900 -33.794593 -33.79498 0.00038679401 20.356624 -0.74995839 + 1153000 -33.793482 -33.799183 0.0057007023 300.02288 -0.27751727 + 1153100 -33.7895 -33.803558 0.014058706 739.89713 0.35552302 + 1153200 -33.789711 -33.794839 0.0051280529 269.88485 0.44108925 + 1153300 -33.794303 -33.79538 0.0010760483 56.631462 0.64209374 + 1153400 -33.795937 -33.801864 0.0059273071 311.94888 0.89450056 + 1153500 -33.794472 -33.80198 0.007507537 395.11498 0.78742037 + 1153600 -33.792413 -33.794339 0.0019257569 101.35087 0.21178792 + 1153700 -33.791856 -33.795941 0.0040844117 214.95894 -0.17303013 + 1153800 -33.792355 -33.803204 0.01084839 570.94107 -0.30502465 + 1153900 -33.793613 -33.79961 0.0059961136 315.57011 -0.73614099 + 1154000 -33.794188 -33.794732 0.00054422414 28.642031 -1.0601955 + 1154100 -33.794809 -33.799664 0.0048556841 255.55032 -0.78295509 + 1154200 -33.794029 -33.802946 0.0089172574 469.3073 -0.37389553 + 1154300 -33.790894 -33.795512 0.0046186383 243.07482 -0.20889919 + 1154400 -33.788701 -33.791651 0.0029500266 155.25727 0.25729991 + 1154500 -33.79202 -33.801356 0.0093363657 491.3646 1.030979 + 1154600 -33.796271 -33.802014 0.0057433035 302.26494 1.0846158 + 1154700 -33.795631 -33.796769 0.0011379199 59.88771 0.8154624 + 1154800 -33.793517 -33.797152 0.0036352658 191.3208 0.55020043 + 1154900 -33.791012 -33.802755 0.011742912 618.019 0.25380092 + 1155000 -33.791567 -33.798251 0.0066840006 351.77299 -0.49030234 + 1155100 -33.79235 -33.793758 0.0014083741 74.121473 -1.1462062 + 1155200 -33.79265 -33.799436 0.0067856443 357.12241 -1.1613163 + 1155300 -33.792718 -33.802119 0.0094012205 494.77785 -0.98516574 + 1155400 -33.792951 -33.796069 0.0031177595 164.0849 -0.9877684 + 1155500 -33.793285 -33.795822 0.0025373075 133.53623 -0.57063772 + 1155600 -33.793578 -33.801955 0.0083775654 440.90379 0.19603615 + 1155700 -33.793677 -33.800714 0.0070367421 370.33746 0.57983923 + 1155800 -33.792903 -33.7947 0.0017969086 94.569694 0.72773855 + 1155900 -33.790676 -33.796617 0.0059404675 312.64151 1.084867 + 1156000 -33.787732 -33.801628 0.013895838 731.32555 1.3120838 + 1156100 -33.791615 -33.796586 0.0049712003 261.62984 0.84792534 + 1156200 -33.79529 -33.796813 0.0015225461 80.130245 0.49628202 + 1156300 -33.7955 -33.80139 0.0058903715 310.005 0.30510284 + 1156400 -33.793217 -33.801554 0.0083364272 438.73873 -0.046223697 + 1156500 -33.787929 -33.79231 0.0043816245 230.60099 -0.83469564 + 1156600 -33.779278 -33.788288 0.0090104483 474.21185 -1.467646 + 1156700 -33.787917 -33.800626 0.012708672 668.84606 -1.5192026 + 1156800 -33.792624 -33.798189 0.0055648267 292.87187 -1.6585239 + 1156900 -33.793452 -33.79524 0.001787496 94.074319 -1.4221836 + 1157000 -33.793576 -33.79984 0.0062640972 329.67385 -0.60255137 + 1157100 -33.793877 -33.802438 0.0085608851 450.55175 0.20350235 + 1157200 -33.795103 -33.798394 0.0032910117 173.20301 0.6687807 + 1157300 -33.795836 -33.797985 0.0021492464 113.11292 1.0983136 + 1157400 -33.794445 -33.801499 0.0070539426 371.24271 1.4354825 + 1157500 -33.788895 -33.798459 0.0095646775 503.38045 1.3421984 + 1157600 -33.787774 -33.790481 0.0027073258 142.48414 0.67221876 + 1157700 -33.790837 -33.797025 0.0061883624 325.68799 0.31570305 + 1157800 -33.793634 -33.802384 0.0087502701 460.51891 0.031502312 + 1157900 -33.793754 -33.798241 0.0044877278 236.18511 -0.49947545 + 1158000 -33.793175 -33.795498 0.0023233669 122.27673 -0.90248916 + 1158100 -33.792009 -33.800412 0.0084028768 442.23591 -0.80663464 + 1158200 -33.789611 -33.80021 0.010598617 557.79574 -0.70148781 + 1158300 -33.788751 -33.791735 0.0029836555 157.02713 -0.80250003 + 1158400 -33.791486 -33.795843 0.0043567453 229.29162 -0.34186939 + 1158500 -33.795004 -33.802421 0.0074163148 390.31403 0.13528635 + 1158600 -33.795461 -33.800091 0.0046305978 243.70423 0.23846478 + 1158700 -33.792692 -33.79493 0.0022379994 117.78391 0.30313264 + 1158800 -33.783603 -33.79663 0.013026902 685.59426 0.76016843 + 1158900 -33.788546 -33.801075 0.012528702 659.37443 0.89380139 + 1159000 -33.791938 -33.794836 0.0028978231 152.50985 0.55589424 + 1159100 -33.792612 -33.795097 0.002484346 130.74891 0.3633003 + 1159200 -33.792483 -33.801507 0.0090232574 474.88599 0.34296828 + 1159300 -33.793323 -33.800647 0.0073232439 385.41579 0.032223124 + 1159400 -33.795818 -33.797431 0.0016133509 84.909217 -0.40208019 + 1159500 -33.797049 -33.80044 0.0033906476 178.44676 -0.43915889 + 1159600 -33.79558 -33.803104 0.0075234539 395.95267 -0.30393693 + 1159700 -33.789822 -33.796049 0.0062272331 327.73372 -0.41337125 + 1159800 -33.789073 -33.790774 0.0017011053 89.527652 -0.41698991 + 1159900 -33.790643 -33.799297 0.0086538801 455.44599 0.13893401 + 1160000 -33.793321 -33.80161 0.0082881233 436.19654 0.30633107 + 1160100 -33.79624 -33.797799 0.0015588744 82.042169 0.20814162 + 1160200 -33.799272 -33.800612 0.0013401478 70.530784 0.27943068 + 1160300 -33.798633 -33.803413 0.0047794272 251.53699 0.32763198 + 1160400 -33.79574 -33.801698 0.0059582535 313.57757 0.20000206 + 1160500 -33.793958 -33.796084 0.0021267588 111.92942 -0.18688469 + 1160600 -33.79284 -33.797933 0.0050935575 268.06939 -0.32586184 + 1160700 -33.790674 -33.801632 0.010957767 576.69749 -0.27155965 + 1160800 -33.782901 -33.79065 0.0077490487 407.82552 -0.65034688 + 1160900 -33.781939 -33.784348 0.0024095808 126.81409 -0.91013298 + 1161000 -33.788913 -33.799701 0.01078829 567.77806 -0.31150888 + 1161100 -33.792118 -33.801801 0.0096836156 509.64005 -0.14697699 + 1161200 -33.79455 -33.796513 0.0019621124 103.26422 -0.2330174 + 1161300 -33.79575 -33.798492 0.0027418926 144.30336 0.020591552 + 1161400 -33.795799 -33.803381 0.0075821744 399.04307 0.34141459 + 1161500 -33.791546 -33.799326 0.007779991 409.45399 0.37469296 + 1161600 -33.787842 -33.789407 0.001564874 82.357921 0.17702019 + 1161700 -33.789467 -33.796833 0.0073663463 387.68424 0.4292563 + 1161800 -33.793519 -33.802299 0.008780682 462.11946 0.50809487 + 1161900 -33.794208 -33.797229 0.0030215384 159.02087 0.20044393 + 1162000 -33.793473 -33.795328 0.001855079 97.631153 -0.048118737 + 1162100 -33.792743 -33.802019 0.0092760457 488.19001 0.053017383 + 1162200 -33.79406 -33.802562 0.0085021382 447.45995 -0.099168511 + 1162300 -33.797356 -33.798387 0.00103054 54.2364 -0.44404715 + 1162400 -33.798789 -33.800147 0.0013581774 71.479667 -0.389638 + 1162500 -33.796909 -33.803286 0.0063769104 335.6111 -0.14101181 + 1162600 -33.792054 -33.799452 0.0073978209 389.34071 -0.0048917445 + 1162700 -33.791183 -33.792005 0.00082158516 43.239294 0.010060595 + 1162800 -33.7919 -33.798444 0.0065436439 344.38614 0.4653618 + 1162900 -33.794789 -33.80361 0.0088204149 464.21057 0.69890989 + 1163000 -33.796805 -33.799225 0.0024199367 127.35911 0.47730854 + 1163100 -33.796794 -33.797435 0.00064090774 33.730402 0.26663485 + 1163200 -33.7925 -33.801659 0.0091581382 481.98465 0.26270976 + 1163300 -33.788404 -33.801682 0.01327788 698.80299 -0.049068539 + 1163400 -33.791618 -33.793069 0.0014511418 76.372297 -0.84555963 + 1163500 -33.794277 -33.796772 0.0024950873 131.31422 -0.90579564 + 1163600 -33.794681 -33.80301 0.0083287273 438.33349 -0.61406895 + 1163700 -33.793387 -33.799834 0.0064475403 339.3283 -0.52594146 + 1163800 -33.793083 -33.794288 0.0012047687 63.405904 -0.38268834 + 1163900 -33.79314 -33.799497 0.0063563672 334.52994 0.22824003 + 1164000 -33.793804 -33.803423 0.0096182144 506.19804 0.68898823 + 1164100 -33.794246 -33.797199 0.0029532327 155.426 0.65843316 + 1164200 -33.792618 -33.793415 0.00079650999 41.91961 0.60536252 + 1164300 -33.787413 -33.800592 0.013179312 693.61542 0.87546582 + 1164400 -33.788103 -33.800969 0.012865739 677.11237 0.61955739 + 1164500 -33.794158 -33.795241 0.0010832686 57.011461 -0.014856192 + 1164600 -33.794765 -33.797972 0.003206795 168.77076 -0.14849721 + 1164700 -33.793636 -33.803632 0.0099958402 526.07215 -0.091759531 + 1164800 -33.791097 -33.798082 0.0069847578 367.60157 -0.43168578 + 1164900 -33.787058 -33.787665 0.00060737449 31.965578 -0.8727984 + 1165000 -33.78421 -33.796181 0.011971185 630.03276 -0.45782147 + 1165100 -33.792129 -33.802687 0.010557503 555.63197 -0.28129649 + 1165200 -33.794417 -33.796717 0.002300719 121.08479 -0.42428202 + 1165300 -33.794159 -33.796172 0.0020130829 105.94676 -0.23200915 + 1165400 -33.792293 -33.802652 0.010359108 545.19062 0.30165185 + 1165500 -33.788082 -33.799747 0.011665017 613.91942 0.54138459 + 1165600 -33.788735 -33.790199 0.0014642946 77.064518 0.38701382 + 1165700 -33.793424 -33.797606 0.0041816646 220.07728 0.65111165 + 1165800 -33.794796 -33.80267 0.0078739611 414.39955 0.75292384 + 1165900 -33.793286 -33.798088 0.0048020031 252.72514 0.40228448 + 1166000 -33.789879 -33.792573 0.0026938571 141.7753 -0.10201722 + 1166100 -33.782904 -33.79877 0.015866008 835.01383 -0.19140009 + 1166200 -33.791009 -33.801673 0.010664576 561.26711 -0.63076884 + 1166300 -33.794282 -33.795817 0.0015353536 80.804288 -1.0442651 + 1166400 -33.793853 -33.796107 0.002254651 118.66027 -0.91620782 + 1166500 -33.790261 -33.802024 0.011763898 619.12348 -0.28583564 + 1166600 -33.787739 -33.798686 0.010946861 576.12355 0.1366228 + 1166700 -33.795329 -33.796704 0.0013755638 72.394697 0.33748385 + 1166800 -33.796642 -33.80045 0.0038078578 200.40416 0.64729197 + 1166900 -33.794693 -33.802758 0.0080647068 424.43832 0.806758 + 1167000 -33.790711 -33.795365 0.0046546513 244.97015 0.49962959 + 1167100 -33.78933 -33.791503 0.0021737672 114.40343 0.098311303 + 1167200 -33.790307 -33.800548 0.01024138 538.9947 0.087233829 + 1167300 -33.792224 -33.801124 0.0089000858 468.40358 -0.18590888 + 1167400 -33.792996 -33.795072 0.0020766206 109.29069 -0.64778917 + 1167500 -33.793199 -33.797408 0.0042089279 221.51212 -0.64693243 + 1167600 -33.793237 -33.802622 0.0093855928 493.95538 -0.37730735 + 1167700 -33.793718 -33.798788 0.0050697418 266.81599 -0.41065704 + 1167800 -33.793601 -33.79484 0.0012387278 65.193137 -0.34200159 + 1167900 -33.792228 -33.799564 0.0073359198 386.08291 0.15850866 + 1168000 -33.789881 -33.801629 0.011748416 618.30865 0.55089459 + 1168100 -33.790892 -33.794348 0.0034561761 181.89546 0.4706616 + 1168200 -33.794798 -33.797316 0.0025177404 132.50643 0.58004424 + 1168300 -33.796495 -33.802618 0.0061232932 322.26346 0.66584779 + 1168400 -33.794805 -33.800612 0.0058070656 305.62068 0.42797506 + 1168500 -33.789183 -33.791405 0.0022220561 116.94483 -0.2076015 + 1168600 -33.787955 -33.796105 0.0081494241 428.89692 -0.54798865 + 1168700 -33.790978 -33.80212 0.011141675 586.3764 -0.72939735 + 1168800 -33.794219 -33.797695 0.0034760243 182.94006 -1.1065275 + 1168900 -33.795138 -33.796751 0.0016129069 84.885852 -1.0699165 + 1169000 -33.794225 -33.801537 0.0073112558 384.78487 -0.5479452 + 1169100 -33.787412 -33.799763 0.012351177 650.03144 0.084370043 + 1169200 -33.787329 -33.790541 0.0032121968 169.05505 0.50869726 + 1169300 -33.792246 -33.796859 0.0046130593 242.78119 1.1785133 + 1169400 -33.79372 -33.802386 0.0086662849 456.09885 1.5049312 + 1169500 -33.793171 -33.798276 0.005105229 268.68365 1.2112231 + 1169600 -33.791681 -33.79352 0.0018387494 96.771743 0.6441751 + 1169700 -33.788171 -33.798889 0.010718013 564.07945 0.24180365 + 1169800 -33.787069 -33.801046 0.013977127 735.60372 -0.4806576 + 1169900 -33.793645 -33.795877 0.002232271 117.48243 -1.3450874 + 1170000 -33.795018 -33.797374 0.0023561397 124.00153 -1.457086 + 1170100 -33.794034 -33.802402 0.0083679414 440.39729 -1.0648023 + 1170200 -33.788863 -33.798297 0.0094338443 496.49481 -0.61230213 + 1170300 -33.78407 -33.786984 0.0029139085 153.35641 -0.055348268 + 1170400 -33.791338 -33.798315 0.006977647 367.22734 1.0509358 + 1170500 -33.794396 -33.802755 0.0083583877 439.89449 1.4655442 + 1170600 -33.793625 -33.796921 0.0032964525 173.48935 1.236868 + 1170700 -33.791129 -33.793184 0.0020547346 108.13885 0.85394502 + 1170800 -33.788143 -33.801044 0.012900413 678.93722 0.63335566 + 1170900 -33.793295 -33.801619 0.0083235227 438.05957 -0.11463107 + 1171000 -33.79644 -33.797278 0.0008376657 44.085599 -0.70188015 + 1171100 -33.795831 -33.798691 0.0028597472 150.50595 -0.82597551 + 1171200 -33.792383 -33.803193 0.010810582 568.95127 -0.6295225 + 1171300 -33.789849 -33.796934 0.0070842782 372.83924 -0.67450748 + 1171400 -33.790645 -33.79161 0.00096537638 50.806898 -0.63593313 + 1171500 -33.791713 -33.799823 0.0081101664 426.83082 -0.003015384 + 1171600 -33.793273 -33.802921 0.009647703 507.75 0.41150134 + 1171700 -33.794639 -33.79656 0.0019205286 101.0757 0.33309086 + 1171800 -33.796071 -33.797564 0.0014929371 78.571945 0.44336335 + 1171900 -33.79738 -33.803153 0.0057727137 303.81277 0.62509371 + 1172000 -33.795392 -33.80151 0.0061185166 322.01207 0.44121648 + 1172100 -33.790836 -33.791971 0.001135407 59.75546 -0.15132044 + 1172200 -33.789826 -33.796096 0.0062696442 329.96578 -0.37765064 + 1172300 -33.791892 -33.80354 0.011648654 613.05827 -0.46964581 + 1172400 -33.794568 -33.798364 0.0037962231 199.79183 -0.84937238 + 1172500 -33.795958 -33.79634 0.00038225884 20.117942 -0.91746108 + 1172600 -33.798936 -33.802359 0.0034235011 180.17581 -0.59928013 + 1172700 -33.798414 -33.803443 0.0050291278 264.67851 -0.28343988 + 1172800 -33.794703 -33.797298 0.0025947731 136.5606 -0.017530565 + 1172900 -33.792893 -33.795606 0.0027132414 142.79548 0.54301559 + 1173000 -33.792007 -33.802421 0.010414015 548.08032 1.3850283 + 1173100 -33.792174 -33.799878 0.0077039972 405.4545 1.5433214 + 1173200 -33.792578 -33.792851 0.00027319123 14.377811 1.2258747 + 1173300 -33.792681 -33.797488 0.0048076577 253.02273 1.1203251 + 1173400 -33.792666 -33.80354 0.010873419 572.25835 0.81152541 + 1173500 -33.79403 -33.798587 0.0045570371 239.8328 -0.019914916 + 1173600 -33.79576 -33.79668 0.00092054898 48.447672 -0.63338217 + 1173700 -33.797014 -33.802065 0.005050412 265.79868 -0.77790679 + 1173800 -33.795734 -33.802947 0.0072136651 379.64876 -0.82567146 + 1173900 -33.790439 -33.792927 0.0024882251 130.95307 -1.0170893 + 1174000 -33.788994 -33.792024 0.0030305183 159.49347 -0.73171031 + 1174100 -33.790798 -33.802587 0.011788993 620.44419 0.083253193 + 1174200 -33.794628 -33.800669 0.0060411732 317.94156 0.26835293 + 1174300 -33.795813 -33.796174 0.00036014558 18.954141 0.27022183 + 1174400 -33.795494 -33.799731 0.0042370248 222.99084 0.55650761 + 1174500 -33.79151 -33.803842 0.012331778 649.01048 0.8130778 + 1174600 -33.789316 -33.795469 0.0061529293 323.82318 0.39233008 + 1174700 -33.791733 -33.79289 0.0011569068 60.886974 0.06981155 + 1174800 -33.794631 -33.801195 0.006564013 345.45815 0.14258314 + 1174900 -33.795066 -33.802163 0.0070969169 373.50441 0.0023267538 + 1175000 -33.789803 -33.792585 0.0027817192 146.3994 -0.40665136 + 1175100 -33.784953 -33.791214 0.0062607573 329.49807 -0.56914862 + 1175200 -33.790288 -33.803172 0.012884495 678.09947 -0.30092754 + 1175300 -33.794017 -33.799991 0.0059734466 314.37716 -0.45480185 + 1175400 -33.794455 -33.794759 0.0003038603 15.991897 -0.5668263 + 1175500 -33.793037 -33.798801 0.0057642485 303.36726 -0.15836755 + 1175600 -33.784768 -33.802797 0.01802927 948.8644 0.54539099 + 1175700 -33.786911 -33.792073 0.0051623193 271.68826 0.46030081 + 1175800 -33.791193 -33.792999 0.001806804 95.090481 0.63583939 + 1175900 -33.792504 -33.801878 0.0093735153 493.31975 0.98093317 + 1176000 -33.793643 -33.801573 0.0079302709 417.36308 0.76831755 + 1176100 -33.794284 -33.79535 0.0010665763 56.132961 0.25081804 + 1176200 -33.794447 -33.798041 0.0035940971 189.15412 0.013394444 + 1176300 -33.793428 -33.803399 0.009971314 524.78136 -0.11854588 + 1176400 -33.79063 -33.797343 0.0067130075 353.29959 -0.61574958 + 1176500 -33.788553 -33.78966 0.0011070112 58.26101 -1.1569817 + 1176600 -33.790252 -33.7989 0.0086478678 455.12957 -0.93055915 + 1176700 -33.795437 -33.802737 0.0072995716 384.16994 -0.7672012 + 1176800 -33.795631 -33.797701 0.0020697068 108.92683 -0.73224316 + 1176900 -33.79391 -33.796396 0.0024862559 130.84943 -0.33376004 + 1177000 -33.790784 -33.802396 0.011612418 611.15121 0.55628359 + 1177100 -33.78841 -33.799041 0.010630463 559.47179 1.0436355 + 1177200 -33.790052 -33.791272 0.0012203731 64.227146 1.1299889 + 1177300 -33.793112 -33.79777 0.0046577876 245.1352 1.4231499 + 1177400 -33.79465 -33.802539 0.0078890621 415.1943 1.3688429 + 1177500 -33.793946 -33.798238 0.0042921523 225.89214 0.77580365 + 1177600 -33.790286 -33.793578 0.003292177 173.26434 -0.042146707 + 1177700 -33.787478 -33.800069 0.012591788 662.69459 -0.6785869 + 1177800 -33.794547 -33.801729 0.0071825641 378.01194 -1.3591655 + 1177900 -33.795591 -33.796866 0.0012748537 67.094413 -1.7063485 + 1178000 -33.793994 -33.79678 0.0027865836 146.65541 -1.4707712 + 1178100 -33.790204 -33.802206 0.012002324 631.67161 -0.53987664 + 1178200 -33.790663 -33.798861 0.0081987489 431.49284 0.19177315 + 1178300 -33.792838 -33.794775 0.0019371004 101.94787 0.71048741 + 1178400 -33.793226 -33.799392 0.0061659398 324.50791 1.3886397 + 1178500 -33.792885 -33.802006 0.0091203323 479.99495 1.6944884 + 1178600 -33.791356 -33.794974 0.0036175856 190.3903 1.3090537 + 1178700 -33.787789 -33.791148 0.0033591722 176.79024 0.75876463 + 1178800 -33.786186 -33.800543 0.014356741 755.58245 0.36089681 + 1178900 -33.794012 -33.800931 0.0069187851 364.12949 -0.41486929 + 1179000 -33.795229 -33.796522 0.0012923824 68.016931 -0.92463717 + 1179100 -33.79433 -33.798772 0.004441231 233.73803 -0.97513847 + 1179200 -33.790088 -33.802464 0.012375434 651.30806 -0.69904297 + 1179300 -33.784513 -33.792684 0.0081717884 430.07393 -0.64921718 + 1179400 -33.7889 -33.791224 0.0023239448 122.30714 -0.39514521 + 1179500 -33.794243 -33.800854 0.0066117371 347.96983 0.16082524 + 1179600 -33.794256 -33.801683 0.0074265029 390.85023 0.42127219 + 1179700 -33.792189 -33.794908 0.0027191174 143.10472 0.33351345 + 1179800 -33.789027 -33.794678 0.0056505563 297.38374 0.49069544 + 1179900 -33.790205 -33.802313 0.012108032 637.23492 0.77162895 + 1180000 -33.795903 -33.800121 0.0042181991 222.00006 0.44260662 + 1180100 -33.795944 -33.796638 0.00069427288 36.538962 0.15670755 + 1180200 -33.793439 -33.799588 0.0061486144 323.59609 0.084380833 + 1180300 -33.789103 -33.802293 0.013189973 694.17653 -0.10248059 + 1180400 -33.790577 -33.794835 0.0042577931 224.08385 -0.72368014 + 1180500 -33.791961 -33.794669 0.0027087746 142.56039 -0.92770555 + 1180600 -33.793121 -33.801829 0.0087087268 458.33252 -0.6677367 + 1180700 -33.793977 -33.800658 0.0066819811 351.66671 -0.53428385 + 1180800 -33.793787 -33.794928 0.0011413244 60.066884 -0.48794309 + 1180900 -33.791746 -33.797302 0.0055560251 292.40864 0.02981989 + 1181000 -33.788917 -33.802979 0.014061721 740.05581 0.79684801 + 1181100 -33.792657 -33.797429 0.0047717009 251.13036 0.8170254 + 1181200 -33.795784 -33.796602 0.00081850755 43.077322 0.81377953 + 1181300 -33.795859 -33.801498 0.0056390038 296.77574 0.91103028 + 1181400 -33.793249 -33.802131 0.0088818429 467.44347 0.64585685 + 1181500 -33.791591 -33.794146 0.0025548567 134.45983 -0.15106629 + 1181600 -33.791881 -33.795505 0.0036235997 190.70682 -0.63692544 + 1181700 -33.792936 -33.80292 0.0099840582 525.45208 -0.77808389 + 1181800 -33.794572 -33.800128 0.0055556988 292.39147 -1.0630092 + 1181900 -33.795183 -33.795589 0.00040559227 21.345959 -1.1764422 + 1182000 -33.794285 -33.799459 0.0051745964 272.33439 -0.72289607 + 1182100 -33.78928 -33.803184 0.013903596 731.73387 0.1036676 + 1182200 -33.788462 -33.793681 0.0052182577 274.63225 0.48639842 + 1182300 -33.793214 -33.794739 0.0015250606 80.262577 0.94463375 + 1182400 -33.79539 -33.802206 0.0068158422 358.71169 1.3693021 + 1182500 -33.794353 -33.801787 0.0074342811 391.25958 1.2456828 + 1182600 -33.79225 -33.793553 0.0013036273 68.608744 0.5504248 + 1182700 -33.790243 -33.795234 0.00499124 262.68451 0.026637776 + 1182800 -33.791298 -33.803488 0.012190011 641.54942 -0.373971 + 1182900 -33.796631 -33.800362 0.0037308376 196.35065 -0.99109748 + 1183000 -33.796805 -33.796993 0.0001884756 9.919303 -1.1999395 + 1183100 -33.794168 -33.800402 0.0062332384 328.04978 -0.85716428 + 1183200 -33.78945 -33.803159 0.013708756 721.47961 -0.19308215 + 1183300 -33.790759 -33.793925 0.0031660069 166.62412 0.036577962 + 1183400 -33.792262 -33.794124 0.0018622129 98.006605 0.49928386 + 1183500 -33.792834 -33.80252 0.0096865215 509.79298 1.1333043 + 1183600 -33.792819 -33.800769 0.007949154 418.35689 1.1835701 + 1183700 -33.792605 -33.793192 0.00058652446 30.868259 0.74313737 + 1183800 -33.792414 -33.797559 0.0051444096 270.74569 0.60517118 + 1183900 -33.792462 -33.803922 0.011460291 603.14489 0.43180311 + 1184000 -33.793039 -33.797693 0.0046531341 244.8903 -0.32231388 + 1184100 -33.793032 -33.793462 0.00042977469 22.618659 -0.87277362 + 1184200 -33.792391 -33.80068 0.0082889277 436.23887 -0.81509106 + 1184300 -33.791033 -33.802387 0.011353859 597.54346 -0.81236366 + 1184400 -33.791229 -33.793111 0.0018823293 99.065312 -1.022024 + 1184500 -33.792777 -33.795588 0.0028107132 147.92533 -0.66703593 + 1184600 -33.79529 -33.803538 0.0082476723 434.06764 -0.093321422 + 1184700 -33.796519 -33.801373 0.0048548392 255.50586 0.12552049 + 1184800 -33.794508 -33.79474 0.00023157459 12.187564 0.18445677 + 1184900 -33.788819 -33.796438 0.0076185373 400.95683 0.70931744 + 1185000 -33.788217 -33.803592 0.015375406 809.19392 1.3265129 + 1185100 -33.793108 -33.79644 0.003331612 175.33977 0.96841811 + 1185200 -33.794527 -33.795322 0.00079504251 41.842378 0.73826001 + 1185300 -33.794104 -33.802172 0.0080684094 424.63319 0.7128856 + 1185400 -33.793139 -33.802178 0.009039642 475.7483 0.23546472 + 1185500 -33.792646 -33.793871 0.0012254683 64.495305 -0.60008551 + 1185600 -33.792276 -33.795929 0.0036525603 192.23099 -0.94581057 + 1185700 -33.792788 -33.803384 0.010596128 557.66478 -0.94876327 + 1185800 -33.796078 -33.800306 0.0042274073 222.48468 -1.1300114 + 1185900 -33.796465 -33.796724 0.00025853037 13.606223 -1.061436 + 1186000 -33.794302 -33.800293 0.005990991 315.30051 -0.44544927 + 1186100 -33.789025 -33.803244 0.0142196 748.36486 0.56119533 + 1186200 -33.790221 -33.793934 0.0037133735 195.43154 0.98436718 + 1186300 -33.793467 -33.795022 0.0015555562 81.867537 1.4125444 + 1186400 -33.795672 -33.802326 0.006653308 350.15767 1.7333221 + 1186500 -33.795394 -33.801624 0.0062302531 327.89267 1.4148987 + 1186600 -33.794005 -33.795369 0.0013634046 71.754768 0.57642478 + 1186700 -33.791747 -33.797166 0.0054191605 285.20558 -0.17039838 + 1186800 -33.790662 -33.803303 0.012641447 665.30807 -0.88489307 + 1186900 -33.794049 -33.79844 0.0043917893 231.13595 -1.8051552 + 1187000 -33.796193 -33.796582 0.00038904205 20.474936 -2.070915 + 1187100 -33.796354 -33.801158 0.0048037896 252.81916 -1.6518221 + 1187200 -33.789829 -33.80234 0.012511081 658.44702 -0.69377057 + 1187300 -33.788584 -33.793439 0.0048553402 255.53223 0.39048839 + 1187400 -33.792946 -33.795871 0.0029247692 153.928 1.4706113 + 1187500 -33.794642 -33.80215 0.0075072518 395.09996 2.2103059 + 1187600 -33.793592 -33.799862 0.006270097 329.98961 2.2064054 + 1187700 -33.790308 -33.791749 0.0014408239 75.829275 1.4882613 + 1187800 -33.783189 -33.794425 0.011235076 591.292 0.69060271 + 1187900 -33.783592 -33.802594 0.019001666 1000.0408 -0.53265006 + 1188000 -33.79324 -33.796807 0.00356633 187.69277 -1.8006501 + 1188100 -33.794625 -33.795859 0.0012342925 64.959715 -2.0970355 + 1188200 -33.79424 -33.801493 0.0072529018 381.71375 -1.676693 + 1188300 -33.790937 -33.800895 0.0099584848 524.10617 -1.0506665 + 1188400 -33.788329 -33.791466 0.0031369195 165.09328 -0.2851842 + 1188500 -33.791776 -33.796651 0.0048746119 256.54648 0.89046417 + 1188600 -33.796145 -33.803025 0.0068800228 362.08946 1.5253082 + 1188700 -33.795384 -33.79955 0.0041657491 219.23966 1.5613448 + 1188800 -33.79275 -33.793866 0.001116262 58.747871 1.1650306 + 1188900 -33.790143 -33.79909 0.0089469429 470.86962 0.8101142 + 1189000 -33.79087 -33.80221 0.011339688 596.79769 0.18207455 + 1189100 -33.792388 -33.795315 0.0029278451 154.08988 -0.8458522 + 1189200 -33.792953 -33.795676 0.0027223037 143.27242 -1.342472 + 1189300 -33.793098 -33.80214 0.0090425443 475.90104 -1.2714381 + 1189400 -33.79305 -33.799879 0.0068290736 359.40805 -1.3059714 + 1189500 -33.792433 -33.793733 0.0012999767 68.416615 -1.1667368 + 1189600 -33.791583 -33.798043 0.0064596777 339.96708 -0.35649449 + 1189700 -33.792307 -33.802937 0.010630592 559.47856 0.45255452 + 1189800 -33.795242 -33.798324 0.0030824425 162.2262 0.72290444 + 1189900 -33.7967 -33.797732 0.0010318915 54.30753 0.9191957 + 1190000 -33.796436 -33.802182 0.0057462283 302.41887 1.0779246 + 1190100 -33.79042 -33.800868 0.010447947 549.86613 0.89861627 + 1190200 -33.788546 -33.791026 0.002480396 130.54103 -0.022441444 + 1190300 -33.791163 -33.795925 0.0047617341 250.60582 -0.48553833 + 1190400 -33.79439 -33.803038 0.0086481469 455.14426 -0.59703989 + 1190500 -33.794742 -33.799333 0.0045904166 241.58953 -0.89517794 + 1190600 -33.793846 -33.794718 0.00087224481 45.905466 -1.0320469 + 1190700 -33.792797 -33.799964 0.0071672641 377.20672 -0.5393312 + 1190800 -33.791987 -33.802546 0.010558845 555.70259 -0.042321769 + 1190900 -33.792544 -33.795264 0.0027205329 143.17922 0.072717499 + 1191000 -33.795394 -33.797302 0.0019087618 100.45643 0.44832524 + 1191100 -33.797334 -33.80299 0.0056559036 297.66516 0.75638001 + 1191200 -33.795593 -33.80127 0.0056777454 298.81467 0.69700079 + 1191300 -33.790952 -33.792195 0.0012429415 65.414903 0.26796124 + 1191400 -33.790034 -33.796669 0.00663491 349.18939 0.091770919 + 1191500 -33.791869 -33.803303 0.011433332 601.72609 -0.03041584 + 1191600 -33.794443 -33.798049 0.0036067699 189.82108 -0.50353381 + 1191700 -33.795722 -33.796446 0.0007246981 38.140215 -0.72030806 + 1191800 -33.798374 -33.802396 0.0040218187 211.66473 -0.50681348 + 1191900 -33.798661 -33.803166 0.004504809 237.08408 -0.33905389 + 1192000 -33.794918 -33.79691 0.0019922484 104.85025 -0.26203733 + 1192100 -33.79269 -33.795913 0.0032234155 169.64548 0.21248398 + 1192200 -33.791688 -33.802781 0.011092615 583.79443 0.97210272 + 1192300 -33.792365 -33.799244 0.0068789365 362.03229 1.0720347 + 1192400 -33.793879 -33.794164 0.00028462134 14.979367 0.93210956 + 1192500 -33.795751 -33.799901 0.0041499352 218.40739 0.97215137 + 1192600 -33.796428 -33.803501 0.0070732719 372.25999 0.77510282 + 1192700 -33.793122 -33.797692 0.0045703015 240.53089 0.16604604 + 1192800 -33.788277 -33.791671 0.0033939073 178.61832 -0.73662248 + 1192900 -33.790275 -33.800722 0.010447246 549.82924 -1.1400627 + 1193000 -33.793279 -33.801 0.007720928 406.34555 -1.4625218 + 1193100 -33.793074 -33.794058 0.00098372057 51.772336 -1.7034362 + 1193200 -33.79195 -33.795795 0.0038448757 202.35238 -1.2330697 + 1193300 -33.791178 -33.803409 0.012230806 643.69642 -0.22270728 + 1193400 -33.796374 -33.801011 0.0046372789 244.05585 0.20086647 + 1193500 -33.798451 -33.798826 0.00037522165 19.747581 0.43622552 + 1193600 -33.797428 -33.80125 0.0038218007 201.13796 0.78700232 + 1193700 -33.794156 -33.803302 0.0091458577 481.33833 1.0145709 + 1193800 -33.792359 -33.795568 0.0032091437 168.89437 0.6836054 + 1193900 -33.791338 -33.792664 0.001325835 69.777514 0.34784624 + 1194000 -33.790911 -33.801822 0.010911518 574.26344 0.32044186 + 1194100 -33.795617 -33.802316 0.0066992766 352.57695 -0.09107442 + 1194200 -33.797713 -33.79827 0.00055739772 29.335345 -0.48347429 + 1194300 -33.796733 -33.799335 0.0026016025 136.92002 -0.53003408 + 1194400 -33.792545 -33.803804 0.011258438 592.52153 -0.25495701 + 1194500 -33.791463 -33.798071 0.0066072771 347.7351 -0.36981302 + 1194600 -33.792005 -33.792292 0.00028649679 15.07807 -0.4600519 + 1194700 -33.792519 -33.79949 0.0069712804 366.89227 0.040313712 + 1194800 -33.793986 -33.803025 0.0090390616 475.71775 0.32776121 + 1194900 -33.796961 -33.798592 0.001630233 85.797711 0.18843949 + 1195000 -33.797594 -33.798749 0.0011550374 60.788587 0.22910948 + 1195100 -33.794898 -33.803144 0.008246287 433.99473 0.41363909 + 1195200 -33.789444 -33.800817 0.011372922 598.54675 0.29347976 + 1195300 -33.791127 -33.792475 0.0013482123 70.955213 -0.22584685 + 1195400 -33.792618 -33.796668 0.0040504335 213.1707 -0.2406762 + 1195500 -33.792734 -33.802541 0.0098076686 516.16885 -0.09511909 + 1195600 -33.78957 -33.7963 0.0067295235 354.16882 -0.28310908 + 1195700 -33.782929 -33.786252 0.0033226497 174.86809 -0.52175704 + 1195800 -33.789727 -33.800099 0.010372128 545.87585 -0.017967929 + 1195900 -33.794164 -33.802755 0.0085906649 452.11903 0.11005347 + 1196000 -33.794706 -33.796296 0.0015899917 83.679847 -0.10248558 + 1196100 -33.793138 -33.795354 0.0022161589 116.63447 -0.0058903291 + 1196200 -33.786821 -33.802472 0.015651428 823.72067 0.52842153 + 1196300 -33.787607 -33.79813 0.010523275 553.83057 0.37054252 + 1196400 -33.794169 -33.794673 0.00050415497 26.533226 0.13339849 + 1196500 -33.794428 -33.799285 0.0048565383 255.59528 0.27066615 + 1196600 -33.792742 -33.803348 0.010606036 558.18624 0.32594604 + 1196700 -33.790303 -33.795303 0.0050003403 263.16345 -0.058619898 + 1196800 -33.789362 -33.79136 0.0019985552 105.18218 -0.37795798 + 1196900 -33.793269 -33.801506 0.0082369486 433.50326 -0.20171271 + 1197000 -33.796368 -33.802319 0.0059514252 313.2182 -0.21802386 + 1197100 -33.795429 -33.796618 0.001189328 62.59327 -0.39857521 + 1197200 -33.792269 -33.796207 0.0039382341 207.26575 -0.23337835 + 1197300 -33.78933 -33.803012 0.013682797 720.11341 0.35037607 + 1197400 -33.791097 -33.798012 0.0069154701 363.95502 0.26611429 + 1197500 -33.792635 -33.793421 0.00078581219 41.356595 0.18207943 + 1197600 -33.79383 -33.799855 0.0060252601 317.10406 0.47461928 + 1197700 -33.794701 -33.802809 0.0081076585 426.69883 0.48510915 + 1197800 -33.794735 -33.797362 0.0026272368 138.26913 0.16526118 + 1197900 -33.792763 -33.795322 0.0025592207 134.6895 -0.039424403 + 1198000 -33.789041 -33.801878 0.012837282 675.6147 0.012892913 + 1198100 -33.790865 -33.799874 0.0090084483 474.1066 -0.29699447 + 1198200 -33.795387 -33.796058 0.00067060134 35.29315 -0.63821571 + 1198300 -33.795923 -33.799249 0.0033262218 175.05608 -0.52208512 + 1198400 -33.794115 -33.803035 0.0089202922 469.46702 -0.16878503 + 1198500 -33.792765 -33.798182 0.0054170217 285.09302 -0.10389705 + 1198600 -33.792856 -33.794937 0.0020804249 109.49091 0.014309174 + 1198700 -33.793201 -33.800734 0.0075327775 396.44336 0.49424182 + 1198800 -33.793176 -33.801547 0.0083712187 440.56977 0.64812867 + 1198900 -33.790469 -33.792961 0.0024921531 131.15979 0.37920643 + 1199000 -33.785734 -33.791043 0.0053098618 279.45329 0.33613116 + 1199100 -33.788361 -33.802077 0.013716357 721.87965 0.49648513 + 1199200 -33.793994 -33.799709 0.0057149466 300.77254 0.10074406 + 1199300 -33.794597 -33.795723 0.0011256592 59.242441 -0.20239897 + 1199400 -33.793789 -33.799881 0.0060921409 320.62394 -0.18238627 + 1199500 -33.789288 -33.80224 0.012951874 681.64556 -0.11596515 + 1199600 -33.783359 -33.789405 0.0060463861 318.21591 -0.55170082 + 1199700 -33.788662 -33.791866 0.0032035688 168.60097 -0.61836265 + 1199800 -33.79239 -33.801421 0.0090313702 475.31296 -0.23785859 + 1199900 -33.792827 -33.800239 0.0074115107 390.0612 -0.14017316 + 1200000 -33.792831 -33.79457 0.0017386261 91.502341 -0.21858152 + 1200100 -33.793462 -33.798628 0.0051663845 271.90221 0.12610525 + 1200200 -33.796172 -33.803347 0.0071755511 377.64285 0.39331789 + 1200300 -33.79748 -33.800221 0.0027406676 144.23889 0.26351233 + 1200400 -33.795475 -33.796391 0.00091666993 48.243521 0.14736472 + 1200500 -33.789875 -33.799893 0.010017673 527.22118 0.30281158 + 1200600 -33.78988 -33.801424 0.011543305 607.51383 0.15071862 + 1200700 -33.792999 -33.794822 0.0018229443 95.939933 -0.28952249 + 1200800 -33.794915 -33.797515 0.0025998988 136.83035 -0.31336618 + 1200900 -33.796206 -33.803009 0.0068030119 358.03645 -0.16507054 + 1201000 -33.798126 -33.80164 0.0035137053 184.92317 -0.19848723 + 1201100 -33.797695 -33.798427 0.00073193186 38.520921 -0.25753799 + 1201200 -33.793947 -33.799753 0.0058053897 305.53248 -0.0032415947 + 1201300 -33.790471 -33.802983 0.012511759 658.48274 0.44011346 + 1201400 -33.79191 -33.795907 0.0039963238 210.32296 0.27871908 + 1201500 -33.793966 -33.795158 0.0011924674 62.758495 0.29257228 + 1201600 -33.797139 -33.801709 0.0045692373 240.47488 0.50168941 + 1201700 -33.797967 -33.802239 0.0042716474 224.81299 0.39987441 + 1201800 -33.794336 -33.797163 0.0028267571 148.7697 0.10048235 + 1201900 -33.791135 -33.79751 0.0063746806 335.49375 -0.10558678 + 1202000 -33.793443 -33.80306 0.0096169679 506.13244 -0.23839997 + 1202100 -33.795662 -33.799911 0.0042485181 223.59572 -0.53428699 + 1202200 -33.795003 -33.795295 0.00029157415 15.345287 -0.70229617 + 1202300 -33.790359 -33.797417 0.0070583541 371.47488 -0.40776012 + 1202400 -33.787708 -33.802195 0.01448649 762.41103 0.16559257 + 1202500 -33.791482 -33.79534 0.0038573119 203.00688 0.12421487 + 1202600 -33.793991 -33.796196 0.0022050731 116.05103 0.274633 + 1202700 -33.79464 -33.802782 0.0081417546 428.49328 0.63313846 + 1202800 -33.794196 -33.801657 0.0074610996 392.67101 0.57478756 + 1202900 -33.793369 -33.794425 0.0010558971 55.570924 0.15795849 + 1203000 -33.792554 -33.796712 0.0041577927 218.82092 0.087371565 + 1203100 -33.791875 -33.802893 0.011018722 579.9055 0.090662248 + 1203200 -33.79157 -33.797043 0.005472371 288.006 -0.38413554 + 1203300 -33.791627 -33.792556 0.00092900087 48.892487 -0.69221888 + 1203400 -33.794257 -33.80101 0.0067531578 355.41267 -0.47746672 + 1203500 -33.797496 -33.803503 0.0060063991 316.11143 -0.39352619 + 1203600 -33.796795 -33.798556 0.0017618474 92.724459 -0.40414748 + 1203700 -33.792349 -33.794885 0.0025354874 133.44044 -0.19258121 + 1203800 -33.789714 -33.802339 0.012625768 664.48292 0.57493747 + 1203900 -33.791646 -33.799631 0.0079849463 420.2406 0.79859601 + 1204000 -33.793148 -33.793304 0.00015565524 8.1919964 0.63446175 + 1204100 -33.793963 -33.798325 0.0043624373 229.59119 0.79736416 + 1204200 -33.795352 -33.803489 0.008136399 428.21142 0.81135914 + 1204300 -33.796682 -33.799937 0.003255241 171.32043 0.33631425 + 1204400 -33.795996 -33.797228 0.0012325297 64.866939 -0.074085137 + 1204500 -33.791653 -33.801316 0.0096626544 508.53688 -0.2409437 + 1204600 -33.788675 -33.801796 0.013120758 690.5338 -0.6973881 + 1204700 -33.792828 -33.79416 0.0013322726 70.116317 -1.3436805 + 1204800 -33.795858 -33.797321 0.0014622816 76.958575 -1.2796277 + 1204900 -33.795491 -33.802275 0.0067838395 357.02742 -0.83843155 + 1205000 -33.793613 -33.80072 0.0071072543 374.04845 -0.32867321 + 1205100 -33.792603 -33.795624 0.0030208965 158.98709 0.14714212 + 1205200 -33.794677 -33.799992 0.0053144745 279.69605 0.8626533 + 1205300 -33.798345 -33.80333 0.0049855812 262.38669 1.214541 + 1205400 -33.798009 -33.80007 0.0020606186 108.44852 1.0632477 + 1205500 -33.794764 -33.795261 0.00049734355 26.174747 0.62655979 + 1205600 -33.793079 -33.800967 0.0078881591 415.14678 0.30455749 + 1205700 -33.791165 -33.802318 0.011152884 586.96635 -0.35995574 + 1205800 -33.791929 -33.794367 0.0024378674 128.30279 -1.341167 + 1205900 -33.794438 -33.79708 0.0026417084 139.03076 -1.6026949 + 1206000 -33.796608 -33.803143 0.0065351378 343.93848 -1.3943227 + 1206100 -33.795904 -33.800959 0.0050545863 266.01837 -1.1261612 + 1206200 -33.789475 -33.791087 0.0016117937 84.827262 -0.55977068 + 1206300 -33.788373 -33.796859 0.0084867197 446.64849 0.88616096 + 1206400 -33.7926 -33.802904 0.010303856 542.28274 1.9380199 + 1206500 -33.79458 -33.797399 0.0028183573 148.32763 2.0169917 + 1206600 -33.793917 -33.795093 0.0011750125 61.839861 1.7993976 + 1206700 -33.789248 -33.801563 0.012315057 648.13047 1.5652495 + 1206800 -33.78104 -33.800152 0.019111473 1005.8198 0.32737577 + 1206900 -33.790339 -33.792231 0.0018921681 99.583121 -1.3693112 + 1207000 -33.792411 -33.796122 0.0037108725 195.29991 -1.8282765 + 1207100 -33.793209 -33.802354 0.0091450972 481.29831 -1.7542486 + 1207200 -33.792486 -33.798147 0.0056604358 297.90369 -1.6809762 + 1207300 -33.790045 -33.792096 0.0020510221 107.94346 -1.1823796 + 1207400 -33.789475 -33.799474 0.0099987707 526.22638 0.07586145 + 1207500 -33.795454 -33.803218 0.0077643945 408.63316 0.81762283 + 1207600 -33.796496 -33.798252 0.0017557215 92.402056 1.0170755 + 1207700 -33.794879 -33.796356 0.0014764813 77.705895 1.1233422 + 1207800 -33.790692 -33.801897 0.011204785 589.69782 1.3294538 + 1207900 -33.790276 -33.799602 0.0093253627 490.78552 0.93033206 + 1208000 -33.7919 -33.79301 0.0011100294 58.419858 0.1023259 + 1208100 -33.793788 -33.79873 0.0049411679 260.04926 -0.17771199 + 1208200 -33.795842 -33.803535 0.0076932246 404.88755 -0.34582548 + 1208300 -33.7983 -33.800571 0.0022715687 119.55063 -0.72724027 + 1208400 -33.799297 -33.79973 0.00043319181 22.798498 -0.77751171 + 1208500 -33.79767 -33.802263 0.004592677 241.70849 -0.47451588 + 1208600 -33.79305 -33.802306 0.0092557278 487.1207 -0.016265699 + 1208700 -33.791469 -33.793885 0.0024160143 127.15268 0.24986244 + 1208800 -33.79105 -33.794623 0.0035732625 188.05762 0.79161012 + 1208900 -33.792945 -33.802682 0.009737388 512.47005 1.3234037 + 1209000 -33.796828 -33.801002 0.0041744585 219.69803 1.2104701 + 1209100 -33.797265 -33.79783 0.00056455591 29.712074 0.84441156 + 1209200 -33.793614 -33.79957 0.0059550779 313.41044 0.4728588 + 1209300 -33.787897 -33.802687 0.014790408 778.40595 -0.20966583 + 1209400 -33.791851 -33.795578 0.0037269444 196.14576 -1.4511704 + 1209500 -33.794124 -33.795602 0.0014776149 77.765555 -1.8939529 + 1209600 -33.794495 -33.801705 0.007210655 379.49034 -1.6045407 + 1209700 -33.790381 -33.800313 0.0099321297 522.71913 -1.1841761 + 1209800 -33.784248 -33.787996 0.0037487238 197.29199 -0.51509196 + 1209900 -33.789403 -33.795943 0.0065398012 344.1839 0.80515891 + 1210000 -33.792916 -33.802861 0.0099452872 523.4116 1.5943306 + 1210100 -33.793636 -33.797933 0.0042968998 226.14201 1.6520288 + 1210200 -33.792651 -33.793641 0.00099001283 52.103492 1.4145985 + 1210300 -33.788075 -33.799488 0.011413603 600.68775 1.2102736 + 1210400 -33.785073 -33.801114 0.016040229 844.18295 0.44160796 + 1210500 -33.793498 -33.795396 0.0018980276 99.8915 -0.70975332 + 1210600 -33.79456 -33.797245 0.0026846937 141.29304 -1.0672885 + 1210700 -33.793621 -33.802905 0.0092843795 488.62861 -0.97204506 + 1210800 -33.790256 -33.798112 0.0078558016 413.44383 -1.023261 + 1210900 -33.786272 -33.787387 0.001115602 58.713137 -1.0314475 + 1211000 -33.787739 -33.797173 0.0094341341 496.51006 -0.11366298 + 1211100 -33.795056 -33.803319 0.0082633565 434.89308 0.32261986 + 1211200 -33.795282 -33.797744 0.0024621898 129.58285 0.33069345 + 1211300 -33.793307 -33.794891 0.0015839803 83.363469 0.45155691 + 1211400 -33.78852 -33.801701 0.013180193 693.66182 0.89272343 + 1211500 -33.788125 -33.799559 0.011434795 601.80307 0.76499874 + 1211600 -33.795786 -33.796331 0.00054432684 28.647436 0.36105091 + 1211700 -33.79626 -33.799393 0.0031329128 164.8824 0.28240525 + 1211800 -33.793787 -33.803604 0.0098173603 516.67892 0.22633001 + 1211900 -33.789795 -33.796283 0.0064881115 341.46352 -0.32916025 + 1212000 -33.789295 -33.790379 0.0010846006 57.08156 -0.95834478 + 1212100 -33.793348 -33.800633 0.0072850183 383.40402 -0.83109971 + 1212200 -33.79704 -33.803063 0.0060229043 316.98008 -0.76259422 + 1212300 -33.795722 -33.79731 0.0015884497 83.598692 -0.7649688 + 1212400 -33.792823 -33.795306 0.0024833799 130.69807 -0.32943629 + 1212500 -33.789775 -33.802901 0.013126181 690.8192 0.68321508 + 1212600 -33.791638 -33.799669 0.0080307285 422.65008 1.0462871 + 1212700 -33.796621 -33.796784 0.0001622078 8.5368518 1.0976757 + 1212800 -33.797728 -33.800709 0.0029808959 156.88189 1.1683959 + 1212900 -33.795809 -33.803682 0.0078726957 414.33295 0.96381607 + 1213000 -33.792521 -33.797189 0.0046682549 245.68609 0.14374483 + 1213100 -33.791097 -33.792664 0.0015670666 82.473317 -0.87543319 + 1213200 -33.791706 -33.801089 0.0093836693 493.85414 -1.305624 + 1213300 -33.796403 -33.802546 0.0061435915 323.33174 -1.6431089 + 1213400 -33.798389 -33.799026 0.0006370435 33.527031 -1.7563258 + 1213500 -33.797189 -33.799123 0.0019342301 101.79681 -1.2771139 + 1213600 -33.793843 -33.803631 0.0097877065 515.11826 -0.074144413 + 1213700 -33.792497 -33.800106 0.0076086497 400.43645 0.98359388 + 1213800 -33.792998 -33.793843 0.00084472801 44.457282 1.7726955 + 1213900 -33.793383 -33.798529 0.0051464561 270.85339 2.5709381 + 1214000 -33.793642 -33.802577 0.0089343751 470.20819 2.7295628 + 1214100 -33.792433 -33.796174 0.0037406558 196.86738 2.0028852 + 1214200 -33.79034 -33.792877 0.0025367513 133.50696 0.87192486 + 1214300 -33.791409 -33.802026 0.010616872 558.75652 -0.12598534 + 1214400 -33.796259 -33.802588 0.0063288813 333.08338 -1.077621 + 1214500 -33.796646 -33.797304 0.00065852439 34.657551 -1.7456023 + 1214600 -33.794848 -33.797412 0.0025639321 134.93746 -1.8545507 + 1214700 -33.792192 -33.803338 0.011146502 586.63048 -1.2797996 + 1214800 -33.792001 -33.798608 0.0066068669 347.71351 -0.87777768 + 1214900 -33.792576 -33.793197 0.00062118626 32.692479 -0.3622099 + 1215000 -33.794219 -33.800286 0.006067339 319.31864 0.61631731 + 1215100 -33.797125 -33.803631 0.0065058058 342.39476 1.1007878 + 1215200 -33.798183 -33.799643 0.0014605199 76.86586 1.0465345 + 1215300 -33.795958 -33.796747 0.00078906319 41.527692 0.88516767 + 1215400 -33.790527 -33.802174 0.011647708 613.00849 0.71571028 + 1215500 -33.790136 -33.800935 0.010798153 568.29716 -0.031548115 + 1215600 -33.793339 -33.793933 0.00059399726 31.261546 -0.93096922 + 1215700 -33.795491 -33.798635 0.003143381 165.43334 -1.10681 + 1215800 -33.795783 -33.803632 0.0078483661 413.05251 -0.9470581 + 1215900 -33.789311 -33.796466 0.0071549887 376.56068 -0.83757634 + 1216000 -33.786684 -33.788041 0.0013575303 71.44561 -0.56932627 + 1216100 -33.790864 -33.799877 0.0090126973 474.33022 0.4128433 + 1216200 -33.794332 -33.802851 0.0085192664 448.36139 0.82379411 + 1216300 -33.794399 -33.796085 0.0016863056 88.748757 0.69356988 + 1216400 -33.792605 -33.7949 0.002294663 120.76606 0.70817033 + 1216500 -33.783493 -33.802543 0.019049986 1002.5838 0.99262419 + 1216600 -33.785691 -33.797567 0.011875524 624.99826 0.26987221 + 1216700 -33.790663 -33.791251 0.00058773069 30.931742 -0.3950174 + 1216800 -33.792461 -33.798604 0.0061421735 323.25711 -0.38895985 + 1216900 -33.794097 -33.803267 0.0091692146 482.56759 -0.37495275 + 1217000 -33.794656 -33.79759 0.0029340118 154.41442 -0.57969181 + 1217100 -33.793245 -33.794717 0.001472252 77.483309 -0.56982654 + 1217200 -33.788145 -33.801338 0.013193306 694.35193 0.040273419 + 1217300 -33.788644 -33.800515 0.011870982 624.75919 0.38040726 + 1217400 -33.794461 -33.795268 0.00080697608 42.470431 0.23226634 + 1217500 -33.795039 -33.798181 0.0031413159 165.32465 0.42835908 + 1217600 -33.793424 -33.803191 0.009766662 514.01071 0.66859882 + 1217700 -33.790782 -33.797381 0.0065985799 347.27738 0.32941546 + 1217800 -33.788915 -33.790634 0.0017183697 90.436264 -0.10350279 + 1217900 -33.791625 -33.799971 0.0083462381 439.25506 -0.011223991 + 1218000 -33.795858 -33.802818 0.0069600172 366.2995 -0.15608854 + 1218100 -33.795869 -33.797487 0.0016184099 85.175467 -0.40716318 + 1218200 -33.792834 -33.795209 0.0023748125 124.98426 -0.42515587 + 1218300 -33.787873 -33.802262 0.014388899 757.27492 0.0069991931 + 1218400 -33.790284 -33.799233 0.0089487303 470.96369 0.0097263753 + 1218500 -33.792374 -33.793302 0.00092825646 48.85331 -0.15780762 + 1218600 -33.793145 -33.79873 0.0055856448 293.9675 0.129849 + 1218700 -33.793149 -33.802979 0.0098306862 517.38025 0.40387194 + 1218800 -33.791789 -33.795852 0.0040636975 213.86877 0.15253138 + 1218900 -33.788127 -33.790383 0.0022563614 118.75029 -0.017525002 + 1219000 -33.787938 -33.800886 0.012947751 681.42858 0.36580044 + 1219100 -33.794044 -33.801665 0.0076208344 401.07772 0.15872999 + 1219200 -33.795302 -33.796225 0.00092296613 48.574884 -0.14899317 + 1219300 -33.794436 -33.798041 0.0036055703 189.75795 -0.10578398 + 1219400 -33.790035 -33.803095 0.013060095 687.34117 0.090893334 + 1219500 -33.780863 -33.7912 0.010336861 544.01979 -0.24154661 + 1219600 -33.786247 -33.787971 0.0017240736 90.736456 -0.51083588 + 1219700 -33.79109 -33.800332 0.009241985 486.39743 -0.1349984 + 1219800 -33.793075 -33.802394 0.0093191639 490.45928 -0.021957392 + 1219900 -33.794609 -33.796097 0.0014877868 78.300891 -0.21872309 + 1220000 -33.794769 -33.797225 0.0024567089 129.2944 -0.10808904 + 1220100 -33.792693 -33.80315 0.010457451 550.36632 0.28444241 + 1220200 -33.78729 -33.797039 0.0097490051 513.08144 0.2624118 + 1220300 -33.787094 -33.78786 0.00076621952 40.32545 -0.037889091 + 1220400 -33.793509 -33.799725 0.0062162046 327.15331 0.33905935 + 1220500 -33.794946 -33.803356 0.008409972 442.60933 0.41095189 + 1220600 -33.793636 -33.796484 0.002848177 149.89702 0.044073145 + 1220700 -33.790894 -33.792736 0.0018422324 96.955049 -0.17699683 + 1220800 -33.787031 -33.801711 0.014680111 772.60112 0.054641146 + 1220900 -33.791695 -33.80075 0.0090545823 476.53459 -0.26342239 + 1221000 -33.79569 -33.796122 0.00043242487 22.758135 -0.55097626 + 1221100 -33.795747 -33.799249 0.0035019096 184.30238 -0.39430627 + 1221200 -33.79258 -33.803699 0.011119464 585.20745 -0.018309454 + 1221300 -33.787777 -33.794585 0.0068074726 358.27121 0.0040569385 + 1221400 -33.788613 -33.789624 0.0010110271 53.209455 0.047798098 + 1221500 -33.792182 -33.800979 0.0087964688 462.95031 0.60258661 + 1221600 -33.792901 -33.802415 0.0095141306 500.72021 0.71631634 + 1221700 -33.792764 -33.794191 0.0014269833 75.100856 0.29380441 + 1221800 -33.79227 -33.795384 0.0031140043 163.88727 0.20107887 + 1221900 -33.792048 -33.803477 0.011428522 601.4729 0.31749791 + 1222000 -33.79424 -33.799997 0.0057571562 302.994 -0.12165869 + 1222100 -33.796205 -33.796316 0.00011152186 5.8692961 -0.43505235 + 1222200 -33.796828 -33.800881 0.0040535527 213.33486 -0.32733661 + 1222300 -33.793323 -33.803574 0.010250815 539.49125 -0.15924897 + 1222400 -33.788528 -33.793005 0.0044765749 235.59814 -0.32857866 + 1222500 -33.78932 -33.790975 0.0016546878 87.084743 -0.26463033 + 1222600 -33.792476 -33.802279 0.0098032048 515.93392 0.24953931 + 1222700 -33.794391 -33.801909 0.0075183753 395.68539 0.33089227 + 1222800 -33.794116 -33.794636 0.00052047902 27.392346 0.074506292 + 1222900 -33.793308 -33.797166 0.0038585037 203.06961 0.18364629 + 1223000 -33.792011 -33.803917 0.011905388 626.56996 0.45998029 + 1223100 -33.79163 -33.797423 0.0057932392 304.89301 0.07376626 + 1223200 -33.792956 -33.793199 0.00024249318 12.7622 -0.23068992 + 1223300 -33.795675 -33.801379 0.0057045467 300.2252 -0.027148534 + 1223400 -33.796323 -33.803466 0.0071428613 375.92242 -0.032337512 + 1223500 -33.793264 -33.795422 0.0021576554 113.55548 -0.29329797 + 1223600 -33.788995 -33.791469 0.0024737619 130.19188 -0.32759398 + 1223700 -33.788876 -33.802875 0.013998968 736.75319 0.14375703 + 1223800 -33.792092 -33.80018 0.0080884664 425.68877 0.057237462 + 1223900 -33.793269 -33.793375 0.00010509466 5.5310383 -0.18282078 + 1224000 -33.793291 -33.798548 0.0052570112 276.67181 0.049596461 + 1224100 -33.792673 -33.80391 0.011236983 591.39237 0.33534089 + 1224200 -33.792475 -33.796437 0.0039627099 208.55389 0.046354239 + 1224300 -33.792129 -33.792882 0.00075356481 39.659444 -0.11608284 + 1224400 -33.795047 -33.802107 0.0070593883 371.52931 0.18197197 + 1224500 -33.796712 -33.802928 0.0062164089 327.16406 0.13739194 + 1224600 -33.795186 -33.796172 0.00098564149 51.873433 -0.15328372 + 1224700 -33.791523 -33.794835 0.0033117042 174.29204 -0.16386682 + 1224800 -33.788485 -33.803552 0.01506757 792.99278 0.1715255 + 1224900 -33.79196 -33.798608 0.00664876 349.91831 -0.14307463 + 1225000 -33.795776 -33.795878 0.00010231342 5.3846642 -0.31441536 + 1225100 -33.796246 -33.800889 0.0046436361 244.39042 -0.10590813 + 1225200 -33.794676 -33.803572 0.0088953699 468.15538 0.089489506 + 1225300 -33.79192 -33.795152 0.0032315528 170.07374 -0.074655075 + 1225400 -33.789654 -33.791498 0.0018441192 97.054346 -0.084900582 + 1225500 -33.790042 -33.802021 0.011979324 630.46113 0.41618222 + 1225600 -33.796393 -33.802139 0.005745697 302.39091 0.33106288 + 1225700 -33.796681 -33.797103 0.00042198655 22.208776 0.07455004 + 1225800 -33.794632 -33.79828 0.0036475865 191.96923 0.089617307 + 1225900 -33.790273 -33.803648 0.013374438 703.88475 0.26662609 + 1226000 -33.790551 -33.796474 0.0059235381 311.75052 -0.2266324 + 1226100 -33.791687 -33.792365 0.00067839504 35.703326 -0.51537545 + 1226200 -33.792586 -33.800736 0.0081495612 428.90414 -0.24105188 + 1226300 -33.793433 -33.802645 0.0092123318 484.8368 -0.18574806 + 1226400 -33.794738 -33.796148 0.0014095813 74.185009 -0.35575281 + 1226500 -33.796514 -33.798362 0.001848141 97.266014 -0.19729255 + 1226600 -33.796589 -33.803437 0.0068477832 360.39272 0.10545284 + 1226700 -33.792638 -33.799791 0.00715306 376.45917 0.217363 + 1226800 -33.789417 -33.790148 0.00073066683 38.454343 0.062716553 + 1226900 -33.789679 -33.79731 0.0076311717 401.62176 0.45965821 + 1227000 -33.792412 -33.803242 0.010829922 569.96912 0.69999432 + 1227100 -33.793782 -33.79692 0.0031377488 165.13692 0.32262129 + 1227200 -33.793487 -33.79488 0.0013926545 73.294165 0.098441649 + 1227300 -33.792536 -33.801923 0.0093869138 494.0249 0.21422129 + 1227400 -33.791576 -33.801034 0.0094578051 497.75585 -0.066717709 + 1227500 -33.791677 -33.79286 0.0011829983 62.260145 -0.57812443 + 1227600 -33.793313 -33.797459 0.0041454578 218.17175 -0.52245842 + 1227700 -33.795546 -33.803466 0.0079197699 416.81042 -0.35111658 + 1227800 -33.795871 -33.799711 0.003839887 202.08983 -0.38652131 + 1227900 -33.792327 -33.79314 0.00081300966 42.787973 -0.36066977 + 1228000 -33.787037 -33.798651 0.011613445 611.20523 0.31065831 + 1228100 -33.789793 -33.802144 0.012350805 650.01183 0.77460154 + 1228200 -33.79307 -33.79501 0.0019407432 102.13959 0.57973612 + 1228300 -33.793459 -33.796064 0.0026057505 137.13833 0.60376256 + 1228400 -33.792823 -33.802843 0.01002058 527.37419 0.76472767 + 1228500 -33.791961 -33.799292 0.007331227 385.83594 0.34829404 + 1228600 -33.790355 -33.791336 0.00098064201 51.610314 -0.30116191 + 1228700 -33.789096 -33.797448 0.0083524715 439.58312 -0.39478956 + 1228800 -33.792488 -33.803117 0.010629683 559.43075 -0.52580983 + 1228900 -33.795507 -33.797926 0.0024184665 127.28174 -0.85867085 + 1229000 -33.795666 -33.796838 0.0011723002 61.697111 -0.79177598 + 1229100 -33.791884 -33.802127 0.010242946 539.07714 -0.24447029 + 1229200 -33.785679 -33.79946 0.013780696 725.26575 0.34506335 + 1229300 -33.789841 -33.791055 0.0012142113 63.902859 0.46130887 + 1229400 -33.792366 -33.797179 0.0048131791 253.31332 0.90817533 + 1229500 -33.793227 -33.80331 0.010082792 530.64836 1.1937035 + 1229600 -33.793211 -33.797783 0.00457246 240.64449 0.8128353 + 1229700 -33.791504 -33.792492 0.0009872589 51.958556 0.26598078 + 1229800 -33.786686 -33.799496 0.012810894 674.22592 0.093018432 + 1229900 -33.789656 -33.801971 0.012314357 648.09364 -0.4756843 + 1230000 -33.794424 -33.795701 0.0012771451 67.21501 -1.1425098 + 1230100 -33.794839 -33.797266 0.0024266757 127.71378 -1.1136075 + 1230200 -33.793208 -33.803256 0.010047898 528.8119 -0.66052318 + 1230300 -33.787259 -33.797119 0.0098600982 518.92817 -0.3607322 + 1230400 -33.781238 -33.782539 0.0013011056 68.476025 -0.011757613 + 1230500 -33.789478 -33.798464 0.0089860693 472.92881 1.0726243 + 1230600 -33.792911 -33.803095 0.010183592 535.95337 1.3979984 + 1230700 -33.79375 -33.796083 0.0023332386 122.79627 1.0638806 + 1230800 -33.793428 -33.795113 0.0016849715 88.678549 0.72717766 + 1230900 -33.791841 -33.802694 0.010853493 571.20965 0.56267086 + 1231000 -33.789875 -33.800118 0.010243508 539.10669 -0.12151698 + 1231100 -33.791201 -33.791783 0.00058200624 30.630469 -1.1073935 + 1231200 -33.794581 -33.798671 0.0040906551 215.28753 -1.2160799 + 1231300 -33.796119 -33.803684 0.0075659168 398.18745 -1.0455135 + 1231400 -33.793906 -33.798232 0.0043269079 227.72131 -0.98314984 + 1231500 -33.786709 -33.787983 0.0012739939 67.049163 -0.55712112 + 1231600 -33.787716 -33.799946 0.0122301 643.65924 0.79265089 + 1231700 -33.792458 -33.802457 0.0099995604 526.26795 1.3654176 + 1231800 -33.79429 -33.795374 0.0010838058 57.039735 1.2924216 + 1231900 -33.794156 -33.796587 0.0024310039 127.94157 1.257825 + 1232000 -33.790117 -33.803547 0.01342988 706.80258 1.1959684 + 1232100 -33.783996 -33.796016 0.012019556 632.57849 0.18973083 + 1232200 -33.790114 -33.790532 0.00041783656 21.990366 -1.0358702 + 1232300 -33.792857 -33.799367 0.0065099365 342.61215 -1.1969387 + 1232400 -33.793324 -33.803362 0.010038635 528.32438 -1.1666285 + 1232500 -33.792774 -33.795642 0.0028680593 150.9434 -1.3373457 + 1232600 -33.790438 -33.792135 0.0016972775 89.326203 -0.98857255 + 1232700 -33.786377 -33.801942 0.015564691 819.15578 0.24700107 + 1232800 -33.792196 -33.801261 0.0090644269 477.0527 0.77477078 + 1232900 -33.79519 -33.795493 0.00030362718 15.979627 0.83760392 + 1233000 -33.794919 -33.798458 0.0035390496 186.25702 1.0634298 + 1233100 -33.792 -33.80384 0.011839911 623.12394 1.1698577 + 1233200 -33.786019 -33.79401 0.0079910726 420.56302 0.48605837 + 1233300 -33.78245 -33.7837 0.0012501026 65.791784 -0.55562066 + 1233400 -33.792043 -33.800925 0.0088818569 467.4442 -0.61829801 + 1233500 -33.794973 -33.802858 0.0078846585 414.96255 -0.76213833 + 1233600 -33.7948 -33.796009 0.0012096414 63.662347 -1.0333226 + 1233700 -33.792463 -33.79513 0.0026665319 140.33719 -0.80805235 + 1233800 -33.787581 -33.803326 0.015745138 828.65259 0.12028065 + 1233900 -33.790518 -33.798611 0.0080929229 425.92331 0.3908937 + 1234000 -33.79579 -33.795894 0.00010366415 5.4557519 0.47537949 + 1234100 -33.795757 -33.800237 0.0044797957 235.76765 0.76948237 + 1234200 -33.792978 -33.803589 0.010611567 558.47732 0.86984297 + 1234300 -33.789509 -33.793911 0.0044020083 231.67377 0.32362064 + 1234400 -33.789068 -33.790812 0.0017441372 91.792383 -0.15444788 + 1234500 -33.79489 -33.802455 0.0075647697 398.12708 -0.1470989 + 1234600 -33.796724 -33.802498 0.0057743956 303.90129 -0.29990261 + 1234700 -33.794704 -33.795493 0.00078869676 41.508407 -0.58899293 + 1234800 -33.791234 -33.795498 0.0042638227 224.40119 -0.50386887 + 1234900 -33.789238 -33.803581 0.014342806 754.84906 0.018414037 + 1235000 -33.79188 -33.797752 0.0058716508 309.01974 -0.098187156 + 1235100 -33.793369 -33.793767 0.00039801789 20.947327 -0.13956733 + 1235200 -33.793289 -33.80049 0.0072009335 378.97871 0.29031068 + 1235300 -33.792513 -33.802884 0.010370459 545.78802 0.48665594 + 1235400 -33.79187 -33.794171 0.0023017681 121.14 0.18037406 + 1235500 -33.791245 -33.793888 0.0026430021 139.09884 0.17097095 + 1235600 -33.792424 -33.802911 0.010487519 551.94878 0.39691147 + 1235700 -33.79574 -33.801201 0.0054606599 287.38966 0.14749382 + 1235800 -33.796565 -33.796887 0.0003223124 16.963014 -0.13132884 + 1235900 -33.794779 -33.799372 0.004592926 241.7216 -0.11590428 + 1236000 -33.787482 -33.803255 0.015773042 830.12114 0.05767701 + 1236100 -33.789297 -33.794188 0.0048904815 257.38168 -0.44182548 + 1236200 -33.79233 -33.793643 0.00131253 69.077281 -0.5790337 + 1236300 -33.793678 -33.801887 0.0082095756 432.06264 -0.21522666 + 1236400 -33.793555 -33.801808 0.00825312 434.35434 -0.087816981 + 1236500 -33.792974 -33.794188 0.0012135065 63.865765 -0.22730569 + 1236600 -33.792379 -33.796445 0.0040658684 213.98303 0.080235689 + 1236700 -33.792063 -33.803313 0.011249755 592.06459 0.52712 + 1236800 -33.79248 -33.798144 0.0056644758 298.11631 0.39135412 + 1236900 -33.792663 -33.793367 0.00070371104 37.035684 0.22900391 + 1237000 -33.79311 -33.80028 0.0071704019 377.37186 0.41994173 + 1237100 -33.79619 -33.803178 0.0069882891 367.78742 0.3357013 + 1237200 -33.797562 -33.798966 0.0014040885 73.895927 0.028540476 + 1237300 -33.796064 -33.797624 0.0015599448 82.098502 -0.14865481 + 1237400 -33.790372 -33.802372 0.01199976 631.53669 -0.062882356 + 1237500 -33.790019 -33.799281 0.0092621595 487.45919 -0.3678128 + 1237600 -33.792159 -33.792866 0.00070655727 37.185479 -0.78888661 + 1237700 -33.794108 -33.798981 0.0048729225 256.45756 -0.56093493 + 1237800 -33.796373 -33.803535 0.007161317 376.89373 -0.28874231 + 1237900 -33.799514 -33.801212 0.0016986059 89.396113 -0.31018863 + 1238000 -33.799381 -33.799827 0.00044650066 23.498931 -0.1924985 + 1238100 -33.796459 -33.802093 0.0056342658 296.52638 0.22058734 + 1238200 -33.793727 -33.802294 0.0085670092 450.87405 0.59736599 + 1238300 -33.791723 -33.793644 0.0019208896 101.09471 0.6063407 + 1238400 -33.790053 -33.793999 0.0039468144 207.71732 0.83768262 + 1238500 -33.790497 -33.802842 0.012345123 649.71279 1.1474668 + 1238600 -33.795879 -33.800441 0.0045610643 240.04475 0.79229577 + 1238700 -33.796719 -33.797155 0.00043555332 22.922783 0.3851297 + 1238800 -33.795151 -33.80047 0.0053193818 279.95432 0.16098379 + 1238900 -33.789972 -33.802971 0.01299837 684.09261 -0.15968346 + 1239000 -33.789708 -33.793689 0.0039803996 209.48488 -1.1400426 + 1239100 -33.790917 -33.792964 0.0020468012 107.72132 -1.5702484 + 1239200 -33.792612 -33.801909 0.0092968743 489.2862 -1.2803896 + 1239300 -33.794504 -33.80124 0.0067364666 354.53423 -1.1284349 + 1239400 -33.795584 -33.796385 0.00080136499 42.175125 -0.91280767 + 1239500 -33.796293 -33.799652 0.0033588114 176.77125 -0.26093515 + 1239600 -33.795214 -33.803737 0.0085237101 448.59526 0.46730905 + 1239700 -33.790645 -33.796936 0.0062905831 331.06778 0.93961514 + 1239800 -33.788506 -33.789665 0.0011587137 60.982069 1.3603733 + 1239900 -33.790344 -33.799425 0.0090813596 477.94386 2.0209078 + 1240000 -33.795642 -33.802372 0.0067305505 354.22287 1.946173 + 1240100 -33.795966 -33.797539 0.0015732588 82.799207 1.3361014 + 1240200 -33.794548 -33.797446 0.0028979177 152.51483 0.5826762 + 1240300 -33.79204 -33.803299 0.01125957 592.58115 -0.17421719 + 1240400 -33.791762 -33.79981 0.0080479364 423.55571 -1.3845542 + 1240500 -33.795 -33.795364 0.0003637712 19.144954 -2.311624 + 1240600 -33.796648 -33.799746 0.0030976341 163.02572 -2.2460557 + 1240700 -33.794866 -33.803001 0.0081351046 428.1433 -1.6745817 + 1240800 -33.789183 -33.796098 0.0069146435 363.91152 -0.7427795 + 1240900 -33.790613 -33.793566 0.0029531181 155.41997 0.61361427 + 1241000 -33.793264 -33.80138 0.0081158801 427.13153 1.9391603 + 1241100 -33.794134 -33.801579 0.0074451568 391.83196 2.4794443 + 1241200 -33.79237 -33.793566 0.0011952602 62.905476 2.2664629 + 1241300 -33.784751 -33.790346 0.0055945284 294.43504 1.7000932 + 1241400 -33.784975 -33.803266 0.018291077 962.64308 1.0283896 + 1241500 -33.791476 -33.798542 0.0070665116 371.9042 -0.28783427 + 1241600 -33.794019 -33.794505 0.00048594925 25.575075 -1.2216725 + 1241700 -33.794971 -33.800469 0.0054985343 289.38296 -1.3734973 + 1241800 -33.793708 -33.80316 0.0094513758 497.41748 -1.2882215 + 1241900 -33.787237 -33.791441 0.0042037087 221.23744 -1.3553927 + 1242000 -33.78615 -33.789105 0.0029546076 155.49836 -0.74228678 + 1242100 -33.79068 -33.802446 0.011766007 619.23445 0.35871647 + 1242200 -33.792993 -33.80087 0.0078772762 414.57402 0.68890145 + 1242300 -33.793354 -33.793779 0.00042510439 22.372865 0.72309205 + 1242400 -33.793018 -33.797892 0.0048739845 256.51346 1.0021264 + 1242500 -33.791757 -33.803847 0.012090072 636.28971 1.128416 + 1242600 -33.791194 -33.796374 0.005179758 272.60604 0.55555649 + 1242700 -33.792087 -33.792808 0.00072117269 37.954676 -0.047247997 + 1242800 -33.794254 -33.801433 0.0071792932 377.8398 -0.15135132 + 1242900 -33.796174 -33.802919 0.0067453713 355.00288 -0.36951829 + 1243000 -33.795863 -33.797095 0.0012316582 64.821073 -0.744956 + 1243100 -33.791291 -33.794463 0.003171905 166.93453 -0.77390171 + 1243200 -33.787458 -33.80319 0.015732579 827.99161 -0.18988072 + 1243300 -33.792144 -33.799303 0.007159447 376.79531 -0.24666942 + 1243400 -33.794313 -33.79441 9.6552382e-05 5.0814657 -0.27443915 + 1243500 -33.794065 -33.799361 0.0052964407 278.74695 0.1518833 + 1243600 -33.792759 -33.803475 0.01071634 563.99143 0.51892152 + 1243700 -33.792202 -33.796036 0.0038334635 201.75176 0.38596959 + 1243800 -33.792422 -33.7941 0.0016783994 88.332663 0.36507442 + 1243900 -33.796197 -33.802523 0.0063257718 332.91973 0.55858741 + 1244000 -33.798145 -33.802724 0.0045788911 240.98295 0.42559912 + 1244100 -33.796039 -33.796834 0.00079495561 41.837805 0.042483648 + 1244200 -33.792713 -33.796384 0.0036710731 193.2053 -0.24958137 + 1244300 -33.79106 -33.803594 0.012534442 659.67649 -0.2909581 + 1244400 -33.792276 -33.798414 0.0061382651 323.05142 -0.78243072 + 1244500 -33.79453 -33.794878 0.00034803698 18.316876 -1.0541553 + 1244600 -33.797707 -33.801547 0.0038405455 202.12448 -0.74678297 + 1244700 -33.798011 -33.803485 0.0054737656 288.0794 -0.45014088 + 1244800 -33.794349 -33.797116 0.0027664879 145.59779 -0.21750841 + 1244900 -33.792953 -33.79493 0.0019778059 104.09016 0.37273571 + 1245000 -33.792224 -33.802281 0.010057479 529.31614 1.2600968 + 1245100 -33.792439 -33.800727 0.0082879541 436.18763 1.535386 + 1245200 -33.792961 -33.7936 0.00063907656 33.634029 1.3094166 + 1245300 -33.793311 -33.797675 0.004363713 229.65832 1.2107022 + 1245400 -33.793878 -33.803468 0.0095900155 504.71396 0.94428586 + 1245500 -33.794508 -33.79881 0.0043020578 226.41346 0.17738315 + 1245600 -33.794065 -33.795106 0.0010408965 54.781456 -0.58073927 + 1245700 -33.791871 -33.800667 0.0087959418 462.92257 -0.89368107 + 1245800 -33.788144 -33.801476 0.013331208 701.60959 -1.2347173 + 1245900 -33.789501 -33.791503 0.0020023633 105.38259 -1.8967361 + 1246000 -33.794056 -33.79661 0.0025530929 134.367 -1.6601191 + 1246100 -33.795384 -33.802932 0.0075480818 397.24881 -1.0441161 + 1246200 -33.794016 -33.800284 0.0062685749 329.9095 -0.50868395 + 1246300 -33.791471 -33.793394 0.0019227735 101.19386 0.16835662 + 1246400 -33.785363 -33.796518 0.01115475 587.06455 1.519401 + 1246500 -33.784803 -33.801548 0.016745214 881.28567 2.8138503 + 1246600 -33.79199 -33.794716 0.0027256889 143.45058 2.7732725 + 1246700 -33.792714 -33.79441 0.0016964003 89.280033 2.4634635 + 1246800 -33.792154 -33.801529 0.0093751622 493.40642 1.9353263 + 1246900 -33.792905 -33.801439 0.0085335864 449.11504 0.76894861 + 1247000 -33.796893 -33.798334 0.0014411508 75.846482 -0.48579564 + 1247100 -33.798103 -33.800662 0.0025589961 134.67768 -1.0805356 + 1247200 -33.795834 -33.803212 0.0073778197 388.28807 -1.3575577 + 1247300 -33.791483 -33.797285 0.0058022239 305.36587 -1.8099681 + 1247400 -33.790867 -33.791714 0.00084705972 44.579998 -1.9999199 + 1247500 -33.790897 -33.799158 0.0082610355 434.77093 -1.3099651 + 1247600 -33.793234 -33.802327 0.0090930493 478.55907 -0.63986567 + 1247700 -33.796792 -33.798505 0.0017128017 90.143228 -0.28909665 + 1247800 -33.797716 -33.799432 0.0017151727 90.268008 0.18540247 + 1247900 -33.794469 -33.803206 0.0087367818 459.80903 0.80683196 + 1248000 -33.788103 -33.799102 0.010999588 578.89848 1.3241442 + 1248100 -33.791148 -33.792349 0.0012012934 63.223 1.329522 + 1248200 -33.793389 -33.79783 0.0044402396 233.68585 1.4653676 + 1248300 -33.793589 -33.802154 0.008565501 450.79468 1.3349732 + 1248400 -33.788899 -33.79534 0.0064407327 338.97002 0.53696831 + 1248500 -33.784412 -33.78966 0.0052480724 276.20137 -0.67333328 + 1248600 -33.792081 -33.80138 0.0092988114 489.38815 -1.1638562 + 1248700 -33.794324 -33.801622 0.0072976138 384.0669 -1.5239151 + 1248800 -33.793702 -33.79492 0.0012184627 64.126603 -1.7468761 + 1248900 -33.790607 -33.794724 0.0041170872 216.67863 -1.2570326 + 1249000 -33.785229 -33.802715 0.017486902 920.32003 0.043577337 + 1249100 -33.793923 -33.799385 0.005462142 287.46766 0.60132736 + 1249200 -33.795872 -33.796498 0.00062598586 32.945078 0.85361839 + 1249300 -33.794818 -33.800677 0.0058588534 308.34623 1.2024385 + 1249400 -33.790832 -33.80272 0.011887434 625.62506 1.3017201 + 1249500 -33.788847 -33.792697 0.003849948 202.61933 0.61695217 + 1249600 -33.791553 -33.794032 0.0024781944 130.42516 0.13439053 + 1249700 -33.796169 -33.802496 0.0063269396 332.98119 0.045850022 + 1249800 -33.795516 -33.801309 0.0057931115 304.88629 -0.24553775 + 1249900 -33.79297 -33.794536 0.0015660053 82.41746 -0.71577683 + 1250000 -33.790939 -33.797409 0.0064704458 340.53379 -0.72737505 + 1250100 -33.792571 -33.803371 0.010799101 568.34708 -0.54038559 + 1250200 -33.798165 -33.800517 0.0023517872 123.77246 -0.68023418 + 1250300 -33.797864 -33.798146 0.00028186541 14.834325 -0.56601785 + 1250400 -33.795021 -33.801252 0.0062318478 327.97659 -0.012973881 + 1250500 -33.791436 -33.802994 0.011558789 608.32876 0.66653023 + 1250600 -33.792264 -33.795385 0.0031210917 164.26027 0.86910738 + 1250700 -33.794353 -33.796472 0.0021191854 111.53084 1.1246805 + 1250800 -33.797512 -33.802525 0.0050130132 263.83041 1.2739096 + 1250900 -33.798738 -33.801924 0.0031861167 167.68248 1.0077059 + 1251000 -33.794915 -33.79672 0.0018046238 94.975739 0.38033229 + 1251100 -33.79148 -33.798541 0.0070604278 371.58402 -0.44986191 + 1251200 -33.793626 -33.803398 0.0097716735 514.27446 -1.1582469 + 1251300 -33.795794 -33.799053 0.0032590754 171.52223 -1.8322212 + 1251400 -33.795026 -33.795214 0.00018861931 9.926866 -1.9931415 + 1251500 -33.789993 -33.799166 0.0091734883 482.79251 -1.2591181 + 1251600 -33.788336 -33.802281 0.013945305 733.92895 -0.19451546 + 1251700 -33.79246 -33.795156 0.0026963803 141.90809 0.35807291 + 1251800 -33.794309 -33.796937 0.0026286253 138.3422 1.0040876 + 1251900 -33.794422 -33.803155 0.0087323795 459.57734 1.5524616 + 1252000 -33.793203 -33.80005 0.0068466739 360.33434 1.5025804 + 1252100 -33.789522 -33.790191 0.00066892738 35.205051 0.87737149 + 1252200 -33.779064 -33.79228 0.013216245 695.55917 0.33505981 + 1252300 -33.786655 -33.802782 0.01612666 848.73174 -0.28687618 + 1252400 -33.791769 -33.795083 0.0033142285 174.42489 -1.2078202 + 1252500 -33.793491 -33.794905 0.0014141193 74.423836 -1.4394407 + 1252600 -33.794539 -33.802385 0.0078460516 412.9307 -1.062018 + 1252700 -33.795234 -33.802356 0.0071214737 374.79681 -0.76894405 + 1252800 -33.795094 -33.796387 0.0012930032 68.049604 -0.53167657 + 1252900 -33.79303 -33.797056 0.0040252763 211.8467 0.16318311 + 1253000 -33.788726 -33.803048 0.014322896 753.80125 1.2296648 + 1253100 -33.788844 -33.795739 0.0068944687 362.84974 1.5995067 + 1253200 -33.793294 -33.793586 0.00029244526 15.391133 1.6877494 + 1253300 -33.795413 -33.800654 0.0052406117 275.80872 1.7564787 + 1253400 -33.794434 -33.803072 0.0086381273 454.61694 1.363921 + 1253500 -33.793013 -33.796844 0.0038309478 201.61936 0.30777865 + 1253600 -33.792925 -33.796114 0.0031890692 167.83787 -0.70163622 + 1253700 -33.796718 -33.802547 0.0058292772 306.78966 -1.193366 + 1253800 -33.797719 -33.801571 0.0038527039 202.76437 -1.4778371 + 1253900 -33.794899 -33.795647 0.00074859234 39.397747 -1.5578514 + 1254000 -33.791549 -33.79734 0.0057908645 304.76803 -0.89719098 + 1254100 -33.791374 -33.803828 0.012453537 655.41855 0.14334973 + 1254200 -33.794814 -33.799092 0.0042780713 225.15108 0.55938707 + 1254300 -33.796567 -33.797012 0.00044499697 23.419794 0.86653628 + 1254400 -33.797746 -33.801668 0.0039226667 206.44645 1.1678031 + 1254500 -33.798037 -33.802958 0.0049212105 258.99892 1.1046095 + 1254600 -33.794364 -33.797045 0.0026811602 141.10707 0.57221691 + 1254700 -33.79118 -33.795327 0.004147133 218.25991 -0.17527092 + 1254800 -33.791799 -33.802615 0.010816327 569.25362 -0.68386206 + 1254900 -33.795155 -33.800556 0.0054006948 284.23375 -1.3027026 + 1255000 -33.796893 -33.797099 0.00020592157 10.837469 -1.5939548 + 1255100 -33.798257 -33.800616 0.0023586276 124.13247 -1.3043734 + 1255200 -33.798032 -33.803404 0.0053721478 282.73135 -0.77705207 + 1255300 -33.792916 -33.799378 0.0064621541 340.09741 -0.061337882 + 1255400 -33.791763 -33.795657 0.0038942224 204.94945 0.93362185 + 1255500 -33.793959 -33.800402 0.0064425748 339.06697 1.9251405 + 1255600 -33.794558 -33.80071 0.0061521477 323.78204 2.2769775 + 1255700 -33.788221 -33.790784 0.0025633459 134.90661 1.9061312 + 1255800 -33.785463 -33.790896 0.005433415 285.95579 1.2623022 + 1255900 -33.790705 -33.802669 0.011964015 629.65542 0.74144876 + 1256000 -33.794958 -33.800885 0.0059267581 311.91999 -0.094136787 + 1256100 -33.795602 -33.796785 0.0011830092 62.26072 -0.79308674 + 1256200 -33.794516 -33.7998 0.0052836752 278.07511 -1.0390718 + 1256300 -33.787 -33.802162 0.015162434 797.98536 -1.0440747 + 1256400 -33.786386 -33.791358 0.0049719373 261.66863 -1.5175504 + 1256500 -33.789425 -33.791287 0.0018613758 97.96255 -1.3981846 + 1256600 -33.791036 -33.800805 0.0097689667 514.132 -0.66799992 + 1256700 -33.792409 -33.800995 0.0085861568 451.88178 -0.19087037 + 1256800 -33.794033 -33.796019 0.0019860142 104.52215 0.06457622 + 1256900 -33.796383 -33.79972 0.0033371271 175.63002 0.5316598 + 1257000 -33.799768 -33.803652 0.0038832569 204.37234 0.74864425 + 1257100 -33.798904 -33.801382 0.0024779638 130.41302 0.63273681 + 1257200 -33.796897 -33.797366 0.00046930967 24.699349 0.29281581 + 1257300 -33.794565 -33.800515 0.0059499806 313.14217 0.049538923 + 1257400 -33.791084 -33.80252 0.011435771 601.8544 -0.35367474 + 1257500 -33.79008 -33.793489 0.0034086898 179.3963 -1.2260536 + 1257600 -33.792247 -33.794819 0.0025712088 135.32043 -1.528631 + 1257700 -33.796879 -33.802834 0.0059548169 313.3967 -1.2827945 + 1257800 -33.796484 -33.801581 0.0050962118 268.20908 -1.0200108 + 1257900 -33.794058 -33.795252 0.0011944346 62.862029 -0.61961705 + 1258000 -33.79202 -33.797754 0.0057331512 301.73063 0.4079443 + 1258100 -33.791746 -33.803131 0.011384874 599.17574 1.5010023 + 1258200 -33.792585 -33.796931 0.0043456736 228.70893 1.7982437 + 1258300 -33.792628 -33.793623 0.00099510649 52.371567 1.839835 + 1258400 -33.792105 -33.800797 0.0086925993 457.48375 1.8921334 + 1258500 -33.791667 -33.801827 0.010160103 534.71717 1.3098348 + 1258600 -33.793097 -33.794955 0.0018585394 97.813271 0.19768551 + 1258700 -33.794587 -33.79767 0.0030832268 162.26748 -0.47527141 + 1258800 -33.795368 -33.803315 0.0079464519 418.21468 -0.82679422 + 1258900 -33.793549 -33.799342 0.0057927043 304.86486 -1.2777418 + 1259000 -33.788336 -33.789087 0.0007505158 39.498977 -1.7022947 + 1259100 -33.786975 -33.797173 0.010197814 536.70187 -1.2002894 + 1259200 -33.791463 -33.802981 0.011517902 606.17692 -0.68389017 + 1259300 -33.793174 -33.795898 0.0027241319 143.36863 -0.54710168 + 1259400 -33.793155 -33.795053 0.0018980031 99.890208 -0.056629403 + 1259500 -33.792697 -33.802541 0.0098442034 518.09165 0.76415005 + 1259600 -33.792481 -33.800726 0.0082445267 433.90209 1.0744859 + 1259700 -33.792796 -33.793425 0.00062866034 33.085833 0.95896357 + 1259800 -33.793187 -33.797882 0.0046954499 247.11734 1.0755147 + 1259900 -33.793704 -33.803631 0.0099267098 522.43389 1.0166527 + 1260000 -33.79409 -33.798198 0.0041078599 216.193 0.37671794 + 1260100 -33.793248 -33.794012 0.00076410682 40.21426 -0.27047563 + 1260200 -33.790552 -33.800693 0.010140826 533.70261 -0.50356624 + 1260300 -33.788457 -33.801798 0.013340841 702.11655 -0.91761526 + 1260400 -33.792881 -33.794048 0.0011669375 61.414879 -1.5629881 + 1260500 -33.795598 -33.797738 0.0021404703 112.65104 -1.4024709 + 1260600 -33.795304 -33.80345 0.0081464778 428.74186 -0.82878706 + 1260700 -33.792835 -33.799751 0.0069165235 364.01047 -0.30886846 + 1260800 -33.790665 -33.791602 0.00093732775 49.330723 0.25328747 + 1260900 -33.790365 -33.797951 0.00758599 399.24389 1.342387 + 1261000 -33.795931 -33.803396 0.0074649704 392.87474 1.8186188 + 1261100 -33.796673 -33.798763 0.0020905382 110.02316 1.5670861 + 1261200 -33.794454 -33.795502 0.0010479259 55.151407 1.052815 + 1261300 -33.789872 -33.801884 0.012012295 632.19635 0.47697849 + 1261400 -33.790506 -33.801498 0.010992487 578.52478 -0.68110921 + 1261500 -33.794644 -33.795298 0.00065431037 34.435771 -1.7662563 + 1261600 -33.796157 -33.798596 0.0024391175 128.36858 -1.9185245 + 1261700 -33.795388 -33.80344 0.0080526678 423.80472 -1.5524289 + 1261800 -33.793976 -33.799404 0.0054282006 285.68136 -1.1305614 + 1261900 -33.791992 -33.793075 0.0010828419 56.989004 -0.44107984 + 1262000 -33.790699 -33.799472 0.008773084 461.71959 0.92494531 + 1262100 -33.793618 -33.803095 0.0094765667 498.74325 1.8621908 + 1262200 -33.796791 -33.798173 0.0013826128 72.765678 1.8926625 + 1262300 -33.796611 -33.797625 0.0010141764 53.3752 1.7190995 + 1262400 -33.790715 -33.802659 0.011943809 628.59203 1.3495881 + 1262500 -33.788691 -33.800478 0.011787272 620.35361 -0.062266436 + 1262600 -33.792978 -33.793894 0.00091532233 48.172598 -1.5227832 + 1262700 -33.794773 -33.798456 0.0036824847 193.80589 -1.9630429 + 1262800 -33.794253 -33.803191 0.0089377476 470.38569 -1.8992919 + 1262900 -33.787802 -33.794852 0.0070504644 371.05965 -1.7358472 + 1263000 -33.785264 -33.787185 0.0019207467 101.08719 -1.0346512 + 1263100 -33.789625 -33.800452 0.010827052 569.81808 0.38712917 + 1263200 -33.79293 -33.802583 0.0096533564 508.04753 1.1206346 + 1263300 -33.794218 -33.795446 0.001228161 64.637017 1.2100571 + 1263400 -33.793949 -33.7963 0.0023506501 123.71262 1.3469792 + 1263500 -33.789664 -33.803195 0.013530914 712.11995 1.4887531 + 1263600 -33.785487 -33.796593 0.01110629 584.51411 0.6678151 + 1263700 -33.791298 -33.791866 0.00056781564 29.883631 -0.34073807 + 1263800 -33.793875 -33.799827 0.0059524017 313.26959 -0.52342715 + 1263900 -33.793713 -33.803405 0.009691981 510.08031 -0.67519946 + 1264000 -33.792232 -33.79536 0.0031278081 164.61375 -1.0753752 + 1264100 -33.788567 -33.79039 0.0018235146 95.969946 -1.1088075 + 1264200 -33.783322 -33.801288 0.017965855 945.52695 -0.24273538 + 1264300 -33.792291 -33.801118 0.0088265422 464.53304 -0.041554363 + 1264400 -33.794512 -33.795023 0.0005112219 26.905152 -0.070769081 + 1264500 -33.794271 -33.7984 0.0041293227 217.32257 0.28537173 + 1264600 -33.791837 -33.803648 0.011810797 621.59174 0.73388846 + 1264700 -33.787284 -33.794136 0.0068516484 360.59614 0.54225903 + 1264800 -33.786071 -33.787304 0.0012338607 64.936987 0.28954265 + 1264900 -33.793128 -33.801301 0.0081724928 430.11101 0.60553899 + 1265000 -33.795125 -33.802614 0.0074890654 394.14283 0.45397538 + 1265100 -33.794096 -33.795478 0.0013817831 72.722014 -0.032344921 + 1265200 -33.790904 -33.794577 0.0036736311 193.33993 -0.29343188 + 1265300 -33.785518 -33.803041 0.017523312 922.2363 -0.22017261 + 1265400 -33.792807 -33.798912 0.0061049111 321.29603 -0.79126477 + 1265500 -33.79569 -33.795996 0.00030582536 16.095316 -0.98893754 + 1265600 -33.795223 -33.800615 0.0053916836 283.7595 -0.6423971 + 1265700 -33.791442 -33.802991 0.011548532 607.78893 -0.098731387 + 1265800 -33.788235 -33.792239 0.0040040772 210.73101 0.095754436 + 1265900 -33.789988 -33.792692 0.0027041931 142.31927 0.61458815 + 1266000 -33.796248 -33.802883 0.0066342822 349.15636 1.1155856 + 1266100 -33.795834 -33.801459 0.005624927 296.03489 1.0303042 + 1266200 -33.793 -33.793833 0.00083373138 43.878539 0.5100781 + 1266300 -33.789918 -33.796407 0.0064890519 341.51301 0.15135496 + 1266400 -33.790132 -33.803448 0.013316649 700.84337 -0.19587915 + 1266500 -33.79555 -33.798691 0.0031407948 165.29723 -0.91211434 + 1266600 -33.797861 -33.798297 0.00043615697 22.954553 -1.0786907 + 1266700 -33.796921 -33.802112 0.0051905292 273.17292 -0.79151204 + 1266800 -33.793205 -33.802363 0.0091582202 481.98896 -0.34099802 + 1266900 -33.79033 -33.792725 0.0023955321 126.07472 -0.040590589 + 1267000 -33.79025 -33.794223 0.0039726546 209.07727 0.68174695 + 1267100 -33.794136 -33.803054 0.0089171107 469.29958 1.3641024 + 1267200 -33.797439 -33.80117 0.0037306627 196.34145 1.2760099 + 1267300 -33.796653 -33.797025 0.00037180533 19.567783 0.90503882 + 1267400 -33.794622 -33.800029 0.0054070724 284.5694 0.5600674 + 1267500 -33.791587 -33.803358 0.011771422 619.51943 -0.017944453 + 1267600 -33.791219 -33.795168 0.0039487539 207.81939 -1.1657698 + 1267700 -33.793117 -33.794639 0.0015214035 80.070111 -1.7869042 + 1267800 -33.797506 -33.802453 0.0049475163 260.38337 -1.6631659 + 1267900 -33.796771 -33.802198 0.005426931 285.61454 -1.3689723 + 1268000 -33.793349 -33.795179 0.0018305733 96.341439 -0.8387076 + 1268100 -33.791577 -33.796703 0.0051260661 269.78028 0.39457523 + 1268200 -33.792166 -33.803268 0.011102606 584.32024 1.7207648 + 1268300 -33.793476 -33.798397 0.0049210853 258.99233 2.172656 + 1268400 -33.793332 -33.793645 0.00031248684 16.445904 2.1706565 + 1268500 -33.790417 -33.799183 0.008765897 461.34134 2.1247304 + 1268600 -33.787011 -33.802394 0.015383257 809.6071 1.4117172 + 1268700 -33.792627 -33.795092 0.002465663 129.76565 -0.039731468 + 1268800 -33.7952 -33.797227 0.0020269909 106.67872 -0.72403371 + 1268900 -33.795115 -33.803135 0.0080199528 422.08296 -0.97868238 + 1269000 -33.791913 -33.799796 0.0078834505 414.89897 -1.3425572 + 1269100 -33.785298 -33.785802 0.00050393235 26.52151 -1.8263507 + 1269200 -33.785524 -33.794861 0.0093365084 491.37211 -1.2494521 + 1269300 -33.789501 -33.803562 0.014060752 740.00484 -0.55955027 + 1269400 -33.793486 -33.796866 0.0033793414 177.85172 -0.43053255 + 1269500 -33.795016 -33.79594 0.00092435604 48.648034 -0.066810383 + 1269600 -33.795204 -33.802435 0.0072314112 380.58272 0.55345593 + 1269700 -33.790952 -33.801397 0.010445464 549.73544 0.89951731 + 1269800 -33.786128 -33.787507 0.0013784119 72.54459 0.71459518 + 1269900 -33.788265 -33.793748 0.0054829309 288.56176 1.0061596 + 1270000 -33.792346 -33.803651 0.011304982 594.97111 1.1845096 + 1270100 -33.793454 -33.798583 0.0051283984 269.90303 0.6629057 + 1270200 -33.793219 -33.793601 0.00038241676 20.126253 0.04311246 + 1270300 -33.792434 -33.800381 0.0079477951 418.28537 -0.15839025 + 1270400 -33.790856 -33.802977 0.012121708 637.95465 -0.4843173 + 1270500 -33.791237 -33.793446 0.0022083549 116.22375 -1.2073653 + 1270600 -33.792831 -33.794919 0.0020880321 109.89127 -1.2867776 + 1270700 -33.794959 -33.803114 0.0081553886 429.21083 -0.87724285 + 1270800 -33.796028 -33.801474 0.0054457354 286.6042 -0.66220334 + 1270900 -33.794333 -33.794869 0.00053598338 28.208327 -0.43584857 + 1271000 -33.788981 -33.796404 0.0074232456 390.6788 0.46455056 + 1271100 -33.788375 -33.803675 0.015300284 805.24028 1.5772881 + 1271200 -33.793562 -33.797022 0.003460686 182.13282 1.6280574 + 1271300 -33.794415 -33.79493 0.00051566803 27.139149 1.5309647 + 1271400 -33.793577 -33.801645 0.0080688116 424.65436 1.4609471 + 1271500 -33.79223 -33.802207 0.0099771709 525.08961 0.83344789 + 1271600 -33.792051 -33.793785 0.001733987 91.258189 -0.35065106 + 1271700 -33.794243 -33.797347 0.003103654 163.34254 -0.98792207 + 1271800 -33.797411 -33.803567 0.0061556183 323.9647 -1.1393606 + 1271900 -33.796474 -33.800693 0.0042188103 222.03222 -1.2529275 + 1272000 -33.792396 -33.792692 0.00029543607 15.548537 -1.1811575 + 1272100 -33.79062 -33.798521 0.0079011158 415.82868 -0.27900906 + 1272200 -33.791694 -33.803624 0.011930173 627.87436 0.61334286 + 1272300 -33.794326 -33.796867 0.0025415059 133.75719 0.80631387 + 1272400 -33.796089 -33.797033 0.00094407026 49.685576 1.0194266 + 1272500 -33.798817 -33.803009 0.0041916951 220.60517 1.179805 + 1272600 -33.798929 -33.802865 0.0039361109 207.15401 0.9326079 + 1272700 -33.794529 -33.795879 0.0013501516 71.057277 0.18254938 + 1272800 -33.792903 -33.797126 0.0042227474 222.23943 -0.65298738 + 1272900 -33.791968 -33.803414 0.011445527 602.36785 -1.2599328 + 1273000 -33.792386 -33.798005 0.0056194787 295.74815 -2.052297 + 1273100 -33.792741 -33.792972 0.000230958 12.155114 -2.383422 + 1273200 -33.793027 -33.799847 0.0068199652 358.92869 -1.796059 + 1273300 -33.793746 -33.803117 0.0093704086 493.15625 -1.0090211 + 1273400 -33.794859 -33.797301 0.0024423756 128.54005 -0.42319211 + 1273500 -33.795337 -33.797223 0.001885786 99.247237 0.38607403 + 1273600 -33.794465 -33.802872 0.0084062908 442.41559 1.3375579 + 1273700 -33.789803 -33.799508 0.0097047648 510.75312 1.8864755 + 1273800 -33.787135 -33.787868 0.00073370941 38.614472 1.8574181 + 1273900 -33.789365 -33.795889 0.0065242608 343.36603 2.0946054 + 1274000 -33.79479 -33.803229 0.0084398122 444.17979 1.8997355 + 1274100 -33.794796 -33.798552 0.0037551984 197.63274 1.0697305 + 1274200 -33.79339 -33.795055 0.0016646669 87.609937 0.018781511 + 1274300 -33.791246 -33.8012 0.0099542309 523.88229 -0.81986678 + 1274400 -33.790561 -33.801457 0.010896103 573.45218 -1.8200998 + 1274500 -33.793559 -33.794689 0.0011298781 59.464474 -2.7062209 + 1274600 -33.795241 -33.797529 0.0022874256 120.38517 -2.5860666 + 1274700 -33.794942 -33.802961 0.0080190392 422.03488 -1.8123462 + 1274800 -33.789367 -33.798668 0.0093004463 489.47419 -0.72289276 + 1274900 -33.787318 -33.790593 0.0032749837 172.35947 0.8248655 + 1275000 -33.793111 -33.799269 0.0061580534 324.09286 2.3857744 + 1275100 -33.794155 -33.802124 0.0079691615 419.40986 3.0023261 + 1275200 -33.792531 -33.795424 0.0028926351 152.23681 2.6869841 + 1275300 -33.789715 -33.792525 0.0028096538 147.86957 1.8769758 + 1275400 -33.789284 -33.80195 0.012665878 666.59384 0.96091509 + 1275500 -33.796482 -33.802232 0.0057499887 302.61678 -0.20530793 + 1275600 -33.796817 -33.797584 0.00076728445 40.381496 -1.0371287 + 1275700 -33.794834 -33.798443 0.0036095525 189.96753 -1.4723219 + 1275800 -33.790538 -33.803002 0.012463625 655.94945 -1.5560597 + 1275900 -33.790063 -33.795949 0.0058862966 309.79054 -1.8693166 + 1276000 -33.791075 -33.792051 0.00097519881 51.323843 -1.7364252 + 1276100 -33.792065 -33.800595 0.0085299152 448.92183 -0.84299545 + 1276200 -33.792964 -33.802556 0.0095918678 504.81145 -0.081604425 + 1276300 -33.7934 -33.795396 0.0019959874 105.04704 0.32860304 + 1276400 -33.793203 -33.796075 0.002871609 151.13022 0.96122121 + 1276500 -33.7926 -33.802865 0.010264934 540.23434 1.626847 + 1276600 -33.792423 -33.799138 0.0067148488 353.3965 1.5647628 + 1276700 -33.792274 -33.792895 0.00062099815 32.682579 1.0898924 + 1276800 -33.792171 -33.798983 0.0068120993 358.51471 0.83577547 + 1276900 -33.793125 -33.803351 0.010225137 538.13985 0.35640337 + 1277000 -33.798015 -33.799796 0.001781197 93.742808 -0.38788538 + 1277100 -33.798664 -33.799314 0.00065082372 34.252272 -0.67813238 + 1277200 -33.796479 -33.802651 0.0061720857 324.83137 -0.64409523 + 1277300 -33.792783 -33.801513 0.0087300757 459.4561 -0.62138615 + 1277400 -33.791668 -33.792889 0.0012206053 64.239366 -0.80467499 + 1277500 -33.791459 -33.796068 0.0046086043 242.54674 -0.40254907 + 1277600 -33.793868 -33.803546 0.0096775718 509.32197 0.16567892 + 1277700 -33.797745 -33.800826 0.0030803942 162.1184 0.17484591 + 1277800 -33.797517 -33.79776 0.00024260346 12.768004 0.18191916 + 1277900 -33.794672 -33.800731 0.006058974 318.8784 0.44687485 + 1278000 -33.792169 -33.803029 0.010859705 571.53659 0.59021026 + 1278100 -33.79221 -33.794736 0.0025264433 132.96446 0.1951807 + 1278200 -33.792507 -33.794677 0.0021695208 114.17995 0.060385997 + 1278300 -33.793809 -33.802888 0.0090781973 477.77743 0.19327147 + 1278400 -33.796585 -33.801715 0.0051306996 270.02414 -0.029651704 + 1278500 -33.797565 -33.797827 0.00026162467 13.769073 -0.28133793 + 1278600 -33.796072 -33.79969 0.0036179304 190.40845 -0.21937186 + 1278700 -33.789612 -33.803727 0.014114345 742.82537 0.096242448 + 1278800 -33.789987 -33.79542 0.0054330402 285.93606 -0.19689422 + 1278900 -33.792568 -33.79334 0.00077173359 40.61565 -0.26646427 + 1279000 -33.794738 -33.801635 0.0068966757 362.96589 0.10287781 + 1279100 -33.795067 -33.802602 0.0075345021 396.53413 0.18886958 + 1279200 -33.789965 -33.792132 0.0021668106 114.03731 -0.067288318 + 1279300 -33.786239 -33.791592 0.00535347 281.74835 0.065834306 + 1279400 -33.790581 -33.803394 0.012812853 674.32902 0.45723859 + 1279500 -33.794689 -33.799854 0.0051654208 271.85149 0.20802247 + 1279600 -33.794778 -33.794845 6.6909444e-05 3.5213844 -0.036375877 + 1279700 -33.792791 -33.799497 0.0067057596 352.91814 0.092013143 + 1279800 -33.783624 -33.803028 0.019403164 1021.1712 0.28101025 + 1279900 -33.786971 -33.790923 0.0039513502 207.95604 -0.42272904 + 1280000 -33.79057 -33.792709 0.0021385101 112.54788 -0.52185898 + 1280100 -33.79232 -33.802626 0.010305956 542.39328 -0.16183086 + 1280200 -33.79423 -33.801167 0.0069373994 365.10914 -0.18462759 + 1280300 -33.794785 -33.795085 0.00029908326 15.740485 -0.34284157 + 1280400 -33.793899 -33.798342 0.0044427091 233.81582 -0.0467531 + 1280500 -33.788883 -33.80395 0.015066573 792.94032 0.47362273 + 1280600 -33.788076 -33.794452 0.0063758449 335.55503 0.28795459 + 1280700 -33.79303 -33.793682 0.00065288276 34.360637 0.2662434 + 1280800 -33.795063 -33.801646 0.0065830952 346.46243 0.5281415 + 1280900 -33.79407 -33.802549 0.0084789672 446.24048 0.46204108 + 1281000 -33.79208 -33.793821 0.0017411085 91.632989 -0.028040832 + 1281100 -33.790114 -33.794075 0.0039604772 208.43638 -0.24988496 + 1281200 -33.789556 -33.803417 0.013861014 729.49279 -0.1402517 + 1281300 -33.794817 -33.800168 0.0053507861 281.6071 -0.50362546 + 1281400 -33.79609 -33.79611 1.9700471e-05 1.0368182 -0.70560843 + 1281500 -33.795104 -33.800057 0.0049531663 260.68073 -0.4236355 + 1281600 -33.789092 -33.803461 0.014368326 756.19219 0.11147605 + 1281700 -33.788524 -33.793092 0.0045678434 240.40152 0.077167578 + 1281800 -33.791023 -33.792803 0.0017794753 93.652196 0.31835457 + 1281900 -33.792316 -33.802231 0.009915008 521.81803 0.83362427 + 1282000 -33.793133 -33.801242 0.0081092914 426.78477 0.77036226 + 1282100 -33.793153 -33.793675 0.00052218648 27.482208 0.34658493 + 1282200 -33.792287 -33.7969 0.0046131997 242.78859 0.25340151 + 1282300 -33.790609 -33.803837 0.013227142 696.13268 0.22413909 + 1282400 -33.792244 -33.797545 0.0053006917 278.97068 -0.37025682 + 1282500 -33.794815 -33.795278 0.00046318285 24.3769 -0.71053645 + 1282600 -33.796322 -33.801677 0.0053541977 281.78665 -0.54190664 + 1282700 -33.795059 -33.802945 0.0078855983 415.012 -0.37461882 + 1282800 -33.788708 -33.791465 0.0027575134 145.12547 -0.4318205 + 1282900 -33.787905 -33.79164 0.0037352 196.58024 -0.0010885571 + 1283000 -33.791786 -33.80311 0.011324805 596.01436 0.71261345 + 1283100 -33.794647 -33.80054 0.0058928323 310.13451 0.69137647 + 1283200 -33.79445 -33.794713 0.00026248785 13.814502 0.45732745 + 1283300 -33.793273 -33.798948 0.0056743813 298.63763 0.52054453 + 1283400 -33.792147 -33.803526 0.011379759 598.90658 0.45598175 + 1283500 -33.79241 -33.796051 0.0036413324 191.64007 -0.16964276 + 1283600 -33.79253 -33.79383 0.001300202 68.428471 -0.54537134 + 1283700 -33.792885 -33.801982 0.0090975532 478.79611 -0.43857142 + 1283800 -33.795713 -33.80228 0.0065675313 345.64332 -0.55024939 + 1283900 -33.797737 -33.798284 0.00054702407 28.789389 -0.67653938 + 1284000 -33.797218 -33.799543 0.00232491 122.35794 -0.44163898 + 1284100 -33.79168 -33.803524 0.011844543 623.36776 0.20773985 + 1284200 -33.790179 -33.797294 0.0071155175 374.48334 0.53208052 + 1284300 -33.791712 -33.792323 0.00061153911 32.184758 0.70582439 + 1284400 -33.793796 -33.800315 0.0065196368 343.12267 1.1563605 + 1284500 -33.796211 -33.803155 0.0069435925 365.43508 1.1561526 + 1284600 -33.79904 -33.800118 0.0010777759 56.722382 0.74359264 + 1284700 -33.799587 -33.800452 0.00086482973 45.515217 0.45283984 + 1284800 -33.796645 -33.8032 0.0065552146 344.9951 0.14649517 + 1284900 -33.793092 -33.801007 0.0079145018 416.53317 -0.66590556 + 1285000 -33.791985 -33.793144 0.0011590646 61.000535 -1.7018757 + 1285100 -33.791148 -33.796506 0.0053583013 282.00262 -2.044647 + 1285200 -33.79089 -33.80267 0.0117795 619.94456 -1.8792268 + 1285300 -33.793557 -33.797597 0.0040404995 212.64789 -1.7940178 + 1285400 -33.795885 -33.796845 0.00095913508 50.478424 -1.3273183 + 1285500 -33.796694 -33.802149 0.0054544249 287.06152 -0.46867951 + 1285600 -33.793487 -33.802543 0.0090567288 476.64756 0.43597615 + 1285700 -33.787767 -33.79183 0.0040626291 213.81255 1.3326108 + 1285800 -33.7895 -33.793579 0.0040788214 214.66473 2.4495714 + 1285900 -33.792422 -33.80167 0.0092483078 486.73019 3.1050159 + 1286000 -33.793009 -33.798751 0.0057416108 302.17585 2.7061429 + 1286100 -33.792397 -33.793883 0.0014858187 78.197314 1.7032264 + 1286200 -33.792318 -33.799649 0.0073302185 385.78286 0.71237499 + 1286300 -33.793494 -33.803391 0.0098973803 520.8903 -0.44740268 + 1286400 -33.795011 -33.79797 0.0029587382 155.71575 -1.6816123 + 1286500 -33.795342 -33.79655 0.0012079339 63.572484 -2.3188777 + 1286600 -33.79304 -33.801492 0.008451499 444.79485 -2.1973139 + 1286700 -33.787603 -33.799642 0.012038748 633.58858 -1.7167537 + 1286800 -33.788924 -33.790707 0.0017827472 93.824397 -1.2168196 + 1286900 -33.793466 -33.797869 0.0044027467 231.71263 -0.18617828 + 1287000 -33.794804 -33.803512 0.0087074322 458.26439 0.67113541 + 1287100 -33.794033 -33.79872 0.0046874191 246.69469 1.0126548 + 1287200 -33.792374 -33.793248 0.00087388722 45.991905 1.1916055 + 1287300 -33.788927 -33.799513 0.010585169 557.08799 1.6348646 + 1287400 -33.780543 -33.800799 0.020256712 1066.0927 1.6125514 + 1287500 -33.789665 -33.791684 0.0020183649 106.22475 0.59642305 + 1287600 -33.79265 -33.795576 0.0029254808 153.96544 0.26648248 + 1287700 -33.793525 -33.80295 0.0094243111 495.99309 0.10194113 + 1287800 -33.793648 -33.799879 0.0062312523 327.94525 -0.39636925 + 1287900 -33.792679 -33.793675 0.0009962464 52.431559 -0.92525016 + 1288000 -33.790608 -33.798514 0.0079052075 416.04402 -0.87496934 + 1288100 -33.790737 -33.803213 0.012476527 656.62848 -0.66968402 + 1288200 -33.794913 -33.79737 0.0024574246 129.33207 -0.82920085 + 1288300 -33.79618 -33.797031 0.00085076918 44.775223 -0.61958881 + 1288400 -33.794794 -33.802335 0.007540986 396.87537 -0.018464113 + 1288500 -33.786551 -33.80047 0.013918802 732.53416 0.67216422 + 1288600 -33.789144 -33.791048 0.0019047341 100.24445 0.89194502 + 1288700 -33.792753 -33.797017 0.0042644582 224.43463 1.3710242 + 1288800 -33.7942 -33.803331 0.0091306 480.53534 1.5552028 + 1288900 -33.793582 -33.798484 0.0049017265 257.97349 1.0486908 + 1289000 -33.78861 -33.789594 0.00098398393 51.786197 0.16064045 + 1289100 -33.782836 -33.797568 0.014731832 775.3232 -0.52003019 + 1289200 -33.790097 -33.802403 0.012305901 647.64861 -1.3314119 + 1289300 -33.792636 -33.79444 0.0018045645 94.972619 -2.0116059 + 1289400 -33.793214 -33.795512 0.0022981294 120.9485 -1.9024967 + 1289500 -33.793359 -33.803053 0.0096935882 510.1649 -1.1627864 + 1289600 -33.794251 -33.800873 0.0066215406 348.48577 -0.56428674 + 1289700 -33.795401 -33.796007 0.00060590287 31.888128 -0.055259892 + 1289800 -33.795576 -33.79981 0.004233565 222.80875 0.74235934 + 1289900 -33.792628 -33.803507 0.010878686 572.53552 1.5078864 + 1290000 -33.787818 -33.793405 0.0055874234 294.06111 1.63855 + 1290100 -33.788069 -33.789285 0.0012161302 64.003849 1.6443025 + 1290200 -33.79215 -33.801251 0.0091011086 478.98323 1.8439702 + 1290300 -33.794244 -33.802166 0.0079213183 416.89192 1.359826 + 1290400 -33.793727 -33.795196 0.0014692301 77.324271 0.39986318 + 1290500 -33.792685 -33.796707 0.0040219241 211.67028 -0.38213308 + 1290600 -33.791643 -33.803538 0.01189525 626.03639 -0.95811428 + 1290700 -33.792967 -33.798673 0.0057062155 300.31303 -1.7523196 + 1290800 -33.794722 -33.794802 7.9380296e-05 4.1777142 -2.1163288 + 1290900 -33.795504 -33.800453 0.0049489065 260.45654 -1.6812823 + 1291000 -33.793655 -33.803316 0.0096610266 508.45121 -0.90824386 + 1291100 -33.788175 -33.793582 0.0054064825 284.53835 -0.08851677 + 1291200 -33.788993 -33.792264 0.0032717235 172.18789 1.1808221 + 1291300 -33.794125 -33.802099 0.007974259 419.67814 2.2455141 + 1291400 -33.794565 -33.800853 0.0062883139 330.94835 2.3461387 + 1291500 -33.792941 -33.793699 0.00075801475 39.89364 1.7716096 + 1291600 -33.790501 -33.796541 0.0060402059 317.89065 1.1085224 + 1291700 -33.790875 -33.803874 0.012999182 684.13537 0.2201658 + 1291800 -33.797119 -33.800288 0.0031681483 166.73682 -0.84440768 + 1291900 -33.797265 -33.797559 0.00029405402 15.475801 -1.3415428 + 1292000 -33.794944 -33.801143 0.0061994135 326.2696 -1.3305693 + 1292100 -33.791184 -33.802493 0.011308692 595.16639 -1.0794239 + 1292200 -33.791087 -33.793348 0.0022614252 119.01679 -1.0460056 + 1292300 -33.791918 -33.79474 0.0028223993 148.54036 -0.47624186 + 1292400 -33.793718 -33.803171 0.0094524111 497.47197 0.37182372 + 1292500 -33.798293 -33.802089 0.0037959811 199.7791 0.58986928 + 1292600 -33.799372 -33.799548 0.00017626619 9.2767322 0.57361086 + 1292700 -33.798089 -33.800931 0.002842647 149.60597 0.62804825 + 1292800 -33.795259 -33.803732 0.0084731313 445.93334 0.5825586 + 1292900 -33.792925 -33.797302 0.0043774618 230.38191 -0.013872236 + 1293000 -33.791223 -33.792356 0.0011337774 59.669695 -0.62526908 + 1293100 -33.790282 -33.800634 0.01035157 544.79387 -0.70830486 + 1293200 -33.794292 -33.80222 0.0079281475 417.25133 -0.95423719 + 1293300 -33.796856 -33.797745 0.00088946662 46.811835 -1.1372952 + 1293400 -33.796249 -33.798616 0.0023668957 124.56761 -0.85158845 + 1293500 -33.791309 -33.8034 0.012091126 636.3452 -0.032611544 + 1293600 -33.789183 -33.798021 0.0088376001 465.11501 0.61556665 + 1293700 -33.791155 -33.792081 0.00092626132 48.748307 0.98997255 + 1293800 -33.792307 -33.79881 0.0065029332 342.24357 1.5844942 + 1293900 -33.792834 -33.802364 0.009530403 501.57661 1.7355861 + 1294000 -33.792781 -33.795786 0.0030045952 158.12916 1.1506441 + 1294100 -33.792233 -33.794826 0.0025922013 136.42524 0.56330717 + 1294200 -33.792685 -33.802547 0.0098618525 519.0205 0.17656887 + 1294300 -33.795231 -33.801655 0.006423618 338.06929 -0.51437668 + 1294400 -33.79642 -33.797052 0.00063172126 33.246926 -1.0724718 + 1294500 -33.79548 -33.798878 0.0033976743 178.81657 -1.1213416 + 1294600 -33.788896 -33.802981 0.014084857 741.27345 -0.74531223 + 1294700 -33.788547 -33.795058 0.0065114007 342.68921 -0.69576801 + 1294800 -33.791815 -33.793027 0.001212017 63.787374 -0.4324581 + 1294900 -33.793932 -33.80133 0.0073975044 389.32406 0.20869013 + 1295000 -33.794007 -33.802476 0.008469217 445.72734 0.57060307 + 1295100 -33.793353 -33.795093 0.0017403062 91.590763 0.50943387 + 1295200 -33.792412 -33.795593 0.0031807398 167.3995 0.65074878 + 1295300 -33.791072 -33.802928 0.011855953 623.96826 0.93908699 + 1295400 -33.789757 -33.797802 0.00804476 423.38854 0.54960568 + 1295500 -33.790994 -33.791681 0.00068745398 36.18009 -0.023124258 + 1295600 -33.793687 -33.799816 0.0061285863 322.54203 -0.027512501 + 1295700 -33.795596 -33.803369 0.0077737681 409.12648 -0.13885411 + 1295800 -33.795098 -33.797597 0.002498933 131.51662 -0.48253135 + 1295900 -33.790238 -33.792275 0.0020364475 107.17642 -0.64628981 + 1296000 -33.786117 -33.801368 0.015250781 802.63497 -0.19826175 + 1296100 -33.790769 -33.800219 0.0094504222 497.36729 -0.23518061 + 1296200 -33.792804 -33.793454 0.00065017239 34.217993 -0.411411 + 1296300 -33.793028 -33.797794 0.0047664278 250.85284 -0.090494266 + 1296400 -33.7926 -33.80348 0.010880524 572.63228 0.32444021 + 1296500 -33.792399 -33.79721 0.0048110799 253.20285 0.22014782 + 1296600 -33.792608 -33.793645 0.0010366221 54.556498 0.15395538 + 1296700 -33.79346 -33.801318 0.007857972 413.55806 0.4653316 + 1296800 -33.79456 -33.802546 0.0079862999 420.31184 0.42586247 + 1296900 -33.794383 -33.795701 0.0013183484 69.383502 0.03480305 + 1297000 -33.791745 -33.794923 0.0031779977 167.25518 -0.10185756 + 1297100 -33.786301 -33.803098 0.016796653 883.99285 0.086087607 + 1297200 -33.790789 -33.798214 0.0074254351 390.79403 -0.41362383 + 1297300 -33.794849 -33.795089 0.00023986006 12.623621 -0.68287562 + 1297400 -33.794705 -33.80021 0.0055043366 289.68833 -0.43356292 + 1297500 -33.792554 -33.803382 0.010827648 569.84947 -0.10719798 + 1297600 -33.789483 -33.793432 0.0039491819 207.84192 -0.17409884 + 1297700 -33.786982 -33.789554 0.0025717841 135.3507 0.03654269 + 1297800 -33.790865 -33.802101 0.011236463 591.365 0.70903336 + 1297900 -33.795395 -33.801614 0.006219006 327.30074 0.66971395 + 1298000 -33.795252 -33.795663 0.00041143447 21.653429 0.36575757 + 1298100 -33.792669 -33.797387 0.004718368 248.3235 0.30533002 + 1298200 -33.786116 -33.803859 0.017742673 933.78104 0.33664708 + 1298300 -33.790653 -33.796073 0.0054194298 285.21975 -0.47756622 + 1298400 -33.795292 -33.795618 0.00032624396 17.169929 -0.76276431 + 1298500 -33.794776 -33.80137 0.0065943754 347.0561 -0.54041329 + 1298600 -33.791668 -33.802523 0.010855033 571.2907 -0.31377202 + 1298700 -33.788956 -33.791226 0.0022695038 119.44196 -0.41684724 + 1298800 -33.789537 -33.793178 0.0036409803 191.62154 -0.011821081 + 1298900 -33.795174 -33.803538 0.0083631217 440.14363 0.50310273 + 1299000 -33.796125 -33.801057 0.0049319605 259.56468 0.48876753 + 1299100 -33.79456 -33.794683 0.00012326151 6.4871432 0.25852134 + 1299200 -33.791956 -33.798376 0.0064191634 337.83485 0.35501964 + 1299300 -33.790259 -33.803705 0.013446568 707.68089 0.41715139 + 1299400 -33.791566 -33.795231 0.0036653844 192.90591 -0.18611841 + 1299500 -33.792074 -33.793154 0.0010796171 56.819286 -0.46552551 + 1299600 -33.79259 -33.80215 0.0095595748 503.11189 -0.23113455 + 1299700 -33.794069 -33.802036 0.0079669741 419.29474 -0.30913085 + 1299800 -33.796489 -33.796931 0.00044155257 23.238518 -0.50248023 + 1299900 -33.797889 -33.799976 0.0020874489 109.86057 -0.3038733 + 1300000 -33.796671 -33.803946 0.0072750629 382.88007 0.025505246 + 1300100 -33.791141 -33.797974 0.006833417 359.63664 0.18536941 + 1300200 -33.790243 -33.790466 0.00022317746 11.745631 0.23053217 + 1300300 -33.791379 -33.799357 0.0079784105 419.89663 0.77477997 + 1300400 -33.794599 -33.803357 0.0087579782 460.92458 0.9267331 + 1300500 -33.797091 -33.798516 0.0014242162 74.955226 0.57454034 + 1300600 -33.798862 -33.799718 0.00085561143 45.030066 0.39699098 + 1300700 -33.800031 -33.803538 0.003507269 184.58444 0.32184446 + 1300800 -33.797172 -33.802316 0.0051441006 270.72942 0.042342298 + 1300900 -33.794175 -33.795235 0.0010595764 55.764561 -0.65367866 + 1301000 -33.792194 -33.796678 0.0044840182 235.98988 -1.0393651 + 1301100 -33.789882 -33.803195 0.013313712 700.68881 -1.0993332 + 1301200 -33.790478 -33.796279 0.0058015482 305.33031 -1.4698631 + 1301300 -33.793798 -33.794274 0.00047595755 25.049221 -1.4326622 + 1301400 -33.796225 -33.801433 0.0052074744 274.06473 -0.86715248 + 1301500 -33.795604 -33.80321 0.0076064924 400.32291 -0.29086155 + 1301600 -33.789793 -33.794138 0.0043455967 228.70488 0.19390352 + 1301700 -33.784933 -33.790506 0.0055723739 293.26907 1.230224 + 1301800 -33.788793 -33.801369 0.012576068 661.86722 2.3783998 + 1301900 -33.791814 -33.798557 0.006742417 354.84739 2.4294729 + 1302000 -33.792734 -33.793329 0.0005949607 31.312251 1.9199583 + 1302100 -33.79299 -33.798611 0.0056207925 295.8173 1.461965 + 1302200 -33.795061 -33.803504 0.0084421275 444.30164 0.75092562 + 1302300 -33.797734 -33.800514 0.0027792462 146.26925 -0.17454276 + 1302400 -33.797784 -33.798934 0.0011499559 60.521153 -0.81360316 + 1302500 -33.79343 -33.801551 0.008120379 427.3683 -1.1664837 + 1302600 -33.789785 -33.800837 0.011051901 581.65167 -1.6597673 + 1302700 -33.790826 -33.792406 0.0015797248 83.139507 -2.1852149 + 1302800 -33.791751 -33.794939 0.003187254 167.74234 -1.8819592 + 1302900 -33.794333 -33.802153 0.0078198303 411.5507 -1.1389132 + 1303000 -33.797459 -33.801213 0.0037538815 197.56344 -0.67844264 + 1303100 -33.797176 -33.798781 0.001605242 84.482455 -0.18865485 + 1303200 -33.791735 -33.80026 0.0085249031 448.65805 0.76015904 + 1303300 -33.788256 -33.802199 0.013942317 733.77169 1.9663408 + 1303400 -33.791961 -33.795513 0.003552069 186.94222 2.2238209 + 1303500 -33.792215 -33.793393 0.0011775931 61.975677 2.2139175 + 1303600 -33.789715 -33.799146 0.0094304988 496.31874 2.0500178 + 1303700 -33.783796 -33.798882 0.015086119 793.96898 1.0535034 + 1303800 -33.793841 -33.796293 0.0024513733 129.01359 -0.42868848 + 1303900 -33.796079 -33.799744 0.0036653243 192.90275 -0.94446321 + 1304000 -33.795483 -33.8032 0.0077169258 406.13492 -1.171361 + 1304100 -33.792275 -33.798418 0.0061431696 323.30954 -1.3899896 + 1304200 -33.789268 -33.791747 0.0024785374 130.44321 -1.4109005 + 1304300 -33.789538 -33.798129 0.0085907851 452.12536 -0.71727335 + 1304400 -33.794899 -33.801245 0.0063460432 333.98659 -0.21232804 + 1304500 -33.795624 -33.797668 0.0020436727 107.55667 -0.013556336 + 1304600 -33.793779 -33.797374 0.0035953325 189.21914 0.38046988 + 1304700 -33.791302 -33.802642 0.011340008 596.81449 1.0185961 + 1304800 -33.796749 -33.801902 0.0051531295 271.20461 1.0451238 + 1304900 -33.798644 -33.799325 0.00068088341 35.834286 0.8445346 + 1305000 -33.797194 -33.800026 0.002831442 149.01627 0.63217616 + 1305100 -33.79305 -33.802693 0.0096430152 507.50329 0.19830693 + 1305200 -33.791411 -33.797381 0.0059698089 314.18572 -0.78153549 + 1305300 -33.792039 -33.794012 0.0019733421 103.85524 -1.5865142 + 1305400 -33.794454 -33.8004 0.0059452874 312.89517 -1.6980729 + 1305500 -33.79747 -33.802175 0.0047053719 247.63952 -1.5889519 + 1305600 -33.796994 -33.798961 0.0019667783 103.50979 -1.2888767 + 1305700 -33.789652 -33.796062 0.0064094611 337.32422 -0.3217215 + 1305800 -33.790277 -33.802414 0.012136951 638.75691 1.2814901 + 1305900 -33.794395 -33.800102 0.0057071188 300.36057 2.0030612 + 1306000 -33.794709 -33.795284 0.00057585396 30.30668 2.1463204 + 1306100 -33.791818 -33.796915 0.0050965288 268.22577 2.1501486 + 1306200 -33.786289 -33.802013 0.015723728 827.52579 1.718822 + 1306300 -33.790323 -33.796069 0.005745821 302.39744 0.33742946 + 1306400 -33.793564 -33.7957 0.0021364063 112.43716 -0.57599794 + 1306500 -33.79501 -33.801908 0.0068979189 363.03132 -0.93660716 + 1306600 -33.794634 -33.802034 0.0074002928 389.47081 -1.2739618 + 1306700 -33.788676 -33.791832 0.0031562516 166.11071 -1.6009224 + 1306800 -33.785022 -33.791405 0.0063831417 335.93906 -1.2835665 + 1306900 -33.789566 -33.801709 0.012143121 639.08164 -0.52739942 + 1307000 -33.792156 -33.797871 0.0057155494 300.80427 -0.21389737 + 1307100 -33.792383 -33.793546 0.0011627258 61.19322 0.092675213 + 1307200 -33.792579 -33.799781 0.0072020557 379.03777 0.76416248 + 1307300 -33.79662 -33.803456 0.006836561 359.80211 1.0958119 + 1307400 -33.798778 -33.800458 0.0016793613 88.383289 0.90736036 + 1307500 -33.797506 -33.798847 0.0013407696 70.563508 0.65585531 + 1307600 -33.793936 -33.802316 0.0083807231 441.06998 0.4050195 + 1307700 -33.792512 -33.80089 0.00837738 440.89404 -0.31686698 + 1307800 -33.791893 -33.792938 0.0010451132 55.003377 -1.2287294 + 1307900 -33.790583 -33.795209 0.0046260407 243.46439 -1.5336358 + 1308000 -33.786776 -33.802667 0.01589102 836.33021 -1.3810595 + 1308100 -33.789778 -33.796626 0.0068482073 360.41504 -1.5221191 + 1308200 -33.794501 -33.795398 0.00089638601 47.175996 -1.332093 + 1308300 -33.795403 -33.801278 0.0058741803 309.15287 -0.67331624 + 1308400 -33.793865 -33.802909 0.0090435961 475.95639 0.067129893 + 1308500 -33.788088 -33.79213 0.0040418436 212.71863 0.58569646 + 1308600 -33.784518 -33.789084 0.0045655357 240.28007 1.5627877 + 1308700 -33.791008 -33.801657 0.010649311 560.46372 2.5640168 + 1308800 -33.793141 -33.799675 0.00653407 343.88228 2.3922722 + 1308900 -33.792483 -33.793623 0.0011397766 59.985424 1.626604 + 1309000 -33.791861 -33.798468 0.0066070895 347.72523 0.93172849 + 1309100 -33.794073 -33.803718 0.0096456546 507.6422 0.047360652 + 1309200 -33.79715 -33.799697 0.0025475065 134.073 -0.91682874 + 1309300 -33.797375 -33.797796 0.00042068612 22.140335 -1.393533 + 1309400 -33.792665 -33.801073 0.0084083796 442.52552 -1.379784 + 1309500 -33.788947 -33.801917 0.012969272 682.56124 -1.2172439 + 1309600 -33.791906 -33.793794 0.0018871896 99.321103 -1.2531405 + 1309700 -33.794653 -33.797324 0.0026708355 140.56369 -0.77104529 + 1309800 -33.795506 -33.803355 0.0078488632 413.07867 -0.078876096 + 1309900 -33.792201 -33.799308 0.0071072452 374.04798 0.3607701 + 1310000 -33.78527 -33.786161 0.00089073354 46.878512 0.72908483 + 1310100 -33.787642 -33.796596 0.0089537435 471.22753 1.7952937 + 1310200 -33.792469 -33.802881 0.010411695 547.95824 2.1483672 + 1310300 -33.79404 -33.796819 0.0027785118 146.2306 1.6178223 + 1310400 -33.79385 -33.795588 0.0017382263 91.4813 1.0354042 + 1310500 -33.792189 -33.802542 0.010353184 544.87882 0.51622154 + 1310600 -33.789875 -33.801063 0.011188755 588.8542 -0.56671446 + 1310700 -33.792228 -33.79329 0.0010623137 55.908623 -1.7825651 + 1310800 -33.794639 -33.797806 0.0031665626 166.65337 -2.0584235 + 1310900 -33.795189 -33.802926 0.0077373954 407.21222 -1.8050135 + 1311000 -33.790271 -33.797191 0.0069202869 364.20852 -1.3407258 + 1311100 -33.785987 -33.788854 0.0028670065 150.88799 -0.35698893 + 1311200 -33.79063 -33.799967 0.0093371069 491.40361 1.1833235 + 1311300 -33.793599 -33.80262 0.0090214048 474.78849 1.9522084 + 1311400 -33.793804 -33.795613 0.0018089521 95.203533 1.8973608 + 1311500 -33.792185 -33.794467 0.0022817499 120.08646 1.7159643 + 1311600 -33.784587 -33.802334 0.017747486 934.03435 1.5149944 + 1311700 -33.787182 -33.798279 0.011096558 584.00193 0.092656447 + 1311800 -33.792932 -33.793521 0.00058967607 31.034125 -0.962319 + 1311900 -33.793509 -33.798807 0.0052981653 278.83771 -1.199759 + 1312000 -33.792928 -33.803159 0.010231421 538.47054 -1.2330894 + 1312100 -33.791105 -33.795454 0.0043487564 228.87117 -1.3798216 + 1312200 -33.788543 -33.790606 0.0020631354 108.58097 -1.1017383 + 1312300 -33.789671 -33.801276 0.0116056 610.7924 -0.11059502 + 1312400 -33.795484 -33.802268 0.0067841577 357.04417 0.30626609 + 1312500 -33.795857 -33.796664 0.00080646782 42.443682 0.39205153 + 1312600 -33.794081 -33.797406 0.0033253261 175.00895 0.67947219 + 1312700 -33.788698 -33.803223 0.014524528 764.41293 1.1882009 + 1312800 -33.788114 -33.795701 0.007586793 399.28615 0.86684242 + 1312900 -33.791047 -33.791788 0.00074099554 38.997934 0.45892645 + 1313000 -33.791825 -33.800089 0.0082640089 434.92742 0.51162607 + 1313100 -33.793125 -33.802748 0.0096232569 506.46343 0.23785695 + 1313200 -33.7944 -33.796237 0.0018368481 96.671679 -0.35776853 + 1313300 -33.794545 -33.79674 0.0021952639 115.53478 -0.55567846 + 1313400 -33.792849 -33.803007 0.01015843 534.62909 -0.42707893 + 1313500 -33.787935 -33.798143 0.010207989 537.23735 -0.55111535 + 1313600 -33.787143 -33.788007 0.00086398133 45.470567 -0.82385665 + 1313700 -33.792857 -33.798779 0.0059213438 311.63504 -0.37740882 + 1313800 -33.794978 -33.80329 0.0083115529 437.42961 -0.065308208 + 1313900 -33.793908 -33.797191 0.0032825758 172.75903 -0.071407278 + 1314000 -33.791382 -33.793079 0.0016977662 89.351918 0.042045722 + 1314100 -33.787099 -33.801161 0.014062361 740.08954 0.71796322 + 1314200 -33.788656 -33.800453 0.011797082 620.8699 0.85235588 + 1314300 -33.794495 -33.79523 0.00073528567 38.697429 0.51677793 + 1314400 -33.795428 -33.798625 0.0031971354 168.26238 0.53578486 + 1314500 -33.793831 -33.803429 0.009597238 505.09407 0.53050319 + 1314600 -33.788369 -33.795857 0.0074884094 394.10831 -0.069379282 + 1314700 -33.786797 -33.788381 0.0015840981 83.369672 -0.81279309 + 1314800 -33.793042 -33.80058 0.0075388061 396.76064 -0.78120156 + 1314900 -33.795106 -33.802704 0.0075979663 399.87419 -0.79205252 + 1315000 -33.79358 -33.79554 0.0019602662 103.16706 -0.86296151 + 1315100 -33.790706 -33.793958 0.003252355 171.16854 -0.49966383 + 1315200 -33.788623 -33.802857 0.014234331 749.14013 0.41636921 + 1315300 -33.794917 -33.800718 0.0058008512 305.29363 0.6550059 + 1315400 -33.796726 -33.796982 0.00025678619 13.514428 0.60716327 + 1315500 -33.795674 -33.799937 0.004262957 224.35563 0.73105671 + 1315600 -33.792115 -33.803389 0.011273656 593.32248 0.77408133 + 1315700 -33.790729 -33.795111 0.0043822812 230.63555 0.070330664 + 1315800 -33.791333 -33.792858 0.0015247064 80.243939 -0.43604935 + 1315900 -33.792091 -33.801835 0.0097431054 512.77095 -0.40682611 + 1316000 -33.793026 -33.801655 0.0086294754 454.1616 -0.65621717 + 1316100 -33.793457 -33.794276 0.00081860485 43.082443 -0.96146138 + 1316200 -33.793937 -33.797484 0.0035468635 186.66826 -0.69968864 + 1316300 -33.794865 -33.803695 0.0088304782 464.74019 -0.24892704 + 1316400 -33.794315 -33.799222 0.0049068129 258.24119 -0.06994785 + 1316500 -33.791654 -33.792199 0.00054489856 28.677525 0.097656247 + 1316600 -33.788051 -33.798811 0.010760444 566.31255 0.85363219 + 1316700 -33.790796 -33.802813 0.012017247 632.45698 1.3033437 + 1316800 -33.79584 -33.797236 0.0013958751 73.463661 0.98803618 + 1316900 -33.795683 -33.797225 0.0015425505 81.183056 0.79169923 + 1317000 -33.793199 -33.803163 0.0099634756 524.36883 0.68085355 + 1317100 -33.789522 -33.79951 0.0099882281 525.67153 -0.070183746 + 1317200 -33.78957 -33.790307 0.000737092 38.792495 -1.1501675 + 1317300 -33.795868 -33.799685 0.0038165601 200.86215 -1.2628054 + 1317400 -33.796641 -33.803597 0.0069562043 366.09883 -1.1424173 + 1317500 -33.793638 -33.797649 0.0040117495 211.1348 -1.0294876 + 1317600 -33.790212 -33.791408 0.001195689 62.928048 -0.53300643 + 1317700 -33.789896 -33.80093 0.011033962 580.70757 0.66592896 + 1317800 -33.792865 -33.802352 0.0094871804 499.30184 1.2904993 + 1317900 -33.793902 -33.794928 0.0010259829 53.996565 1.2842562 + 1318000 -33.793489 -33.796332 0.0028426461 149.60593 1.3320082 + 1318100 -33.792162 -33.803516 0.011354112 597.55677 1.3384255 + 1318200 -33.791221 -33.798481 0.0072608207 382.13052 0.58887632 + 1318300 -33.791954 -33.79237 0.00041591951 21.889473 -0.37279239 + 1318400 -33.795075 -33.800448 0.0053727498 282.76303 -0.62674702 + 1318500 -33.79662 -33.803604 0.006984426 367.58411 -0.78275416 + 1318600 -33.794399 -33.79703 0.0026307407 138.45354 -1.062729 + 1318700 -33.788955 -33.790837 0.0018823512 99.066465 -0.99218155 + 1318800 -33.788726 -33.802055 0.01332956 701.52287 -0.144506 + 1318900 -33.792483 -33.801186 0.0087035087 458.0579 0.13429274 + 1319000 -33.794174 -33.794536 0.00036242355 19.074028 0.16493154 + 1319100 -33.794166 -33.798083 0.0039166908 206.13194 0.51337308 + 1319200 -33.790348 -33.803811 0.013463159 708.55403 0.91009858 + 1319300 -33.782939 -33.792063 0.009124212 480.19914 0.60669289 + 1319400 -33.788535 -33.789463 0.00092778837 48.828674 0.21650638 + 1319500 -33.792572 -33.801057 0.0084850348 446.55981 0.4081902 + 1319600 -33.794058 -33.802736 0.0086782888 456.7306 0.26273433 + 1319700 -33.79395 -33.795259 0.0013082701 68.853089 -0.26906978 + 1319800 -33.79157 -33.794568 0.0029978243 157.77282 -0.45165772 + 1319900 -33.784968 -33.80325 0.018282 962.16533 -0.15358842 + 1320000 -33.79031 -33.798243 0.0079330079 417.50713 -0.62590365 + 1320100 -33.793908 -33.794055 0.00014656425 7.7135458 -0.82286926 + 1320200 -33.79397 -33.799851 0.0058808998 309.50651 -0.43195852 + 1320300 -33.792475 -33.803431 0.010955669 576.58707 -0.024010225 + 1320400 -33.789514 -33.793413 0.003898694 205.18479 0.017229959 + 1320500 -33.785791 -33.788428 0.0026374895 138.80872 0.312617 + 1320600 -33.78906 -33.801963 0.012903493 679.09932 1.0700054 + 1320700 -33.794682 -33.801411 0.0067290763 354.14528 1.0139305 + 1320800 -33.794778 -33.795211 0.00043283269 22.779599 0.61146779 + 1320900 -33.793093 -33.797814 0.0047211056 248.46757 0.41692359 + 1321000 -33.786824 -33.803658 0.016834153 885.96646 0.26758266 + 1321100 -33.785265 -33.792475 0.0072102378 379.46839 -0.87373832 + 1321200 -33.793832 -33.794516 0.00068374771 35.985032 -1.3730604 + 1321300 -33.794892 -33.801554 0.0066621833 350.62477 -1.1302376 + 1321400 -33.793319 -33.802334 0.0090146274 474.4318 -0.8701365 + 1321500 -33.790017 -33.792291 0.0022738502 119.67071 -0.66516955 + 1321600 -33.788076 -33.792915 0.0048396607 254.70703 0.16684175 + 1321700 -33.793238 -33.803256 0.010017574 527.21599 1.0434967 + 1321800 -33.796291 -33.800647 0.0043557733 229.24046 1.1203525 + 1321900 -33.795158 -33.795397 0.00023978113 12.619467 0.91002898 + 1322000 -33.791937 -33.798961 0.0070236856 369.65031 0.80738569 + 1322100 -33.789234 -33.80319 0.013956095 734.49685 0.50729007 + 1322200 -33.791234 -33.794679 0.0034448971 181.30186 -0.47775003 + 1322300 -33.792077 -33.793938 0.0018604716 97.914959 -0.99197294 + 1322400 -33.792645 -33.802298 0.0096531834 508.03843 -0.89681046 + 1322500 -33.793589 -33.801042 0.0074535631 392.27438 -0.99803094 + 1322600 -33.794608 -33.795178 0.00056950104 29.972332 -1.0583251 + 1322700 -33.795502 -33.799124 0.0036218995 190.61734 -0.56114242 + 1322800 -33.795073 -33.803746 0.0086731398 456.45961 0.041584335 + 1322900 -33.79122 -33.796959 0.0057393418 302.05644 0.3819751 + 1323000 -33.787837 -33.789091 0.0012541394 66.004236 0.79698251 + 1323100 -33.789413 -33.799773 0.010359772 545.22558 1.6305286 + 1323200 -33.795272 -33.802485 0.0072133739 379.63343 1.6877681 + 1323300 -33.795299 -33.796652 0.0013520708 71.158282 1.2039907 + 1323400 -33.793638 -33.796623 0.0029850661 157.10137 0.63701032 + 1323500 -33.790379 -33.803278 0.012899811 678.90556 0.09169928 + 1323600 -33.790391 -33.798519 0.0081281318 427.77632 -1.0503405 + 1323700 -33.79547 -33.795788 0.00031822468 16.747881 -1.8584434 + 1323800 -33.796703 -33.800526 0.0038227935 201.19021 -1.7533897 + 1323900 -33.794461 -33.8032 0.0087392167 459.93718 -1.2684132 + 1324000 -33.790349 -33.795093 0.0047440611 249.6757 -0.69455053 + 1324100 -33.790527 -33.793054 0.0025270726 132.99758 0.34531292 + 1324200 -33.792017 -33.801878 0.0098603905 518.94356 1.5730788 + 1324300 -33.793454 -33.801112 0.0076576635 403.016 2.0149379 + 1324400 -33.793527 -33.794184 0.00065737562 34.597093 1.8438815 + 1324500 -33.791239 -33.796133 0.0048942552 257.58029 1.6048356 + 1324600 -33.786119 -33.803517 0.017398079 915.6454 1.108839 + 1324700 -33.791941 -33.797485 0.0055447674 291.81616 -0.24082366 + 1324800 -33.794857 -33.795462 0.00060481168 31.830699 -1.0344921 + 1324900 -33.794776 -33.801241 0.0064650942 340.25214 -1.1709191 + 1325000 -33.792262 -33.802361 0.010099568 531.53124 -1.1735805 + 1325100 -33.786749 -33.789635 0.002886446 151.91108 -1.4203609 + 1325200 -33.781438 -33.787214 0.0057768388 304.02987 -0.86047845 + 1325300 -33.790793 -33.803318 0.012524618 659.15945 0.15802286 + 1325400 -33.794761 -33.800183 0.0054216497 285.33659 0.26500003 + 1325500 -33.795046 -33.795188 0.00014199324 7.4729778 0.30623988 + 1325600 -33.793498 -33.79957 0.0060721033 319.56938 0.66330779 + 1325700 -33.788391 -33.803294 0.014903173 784.34072 0.91982053 + 1325800 -33.787753 -33.79172 0.0039665784 208.75748 0.38400323 + 1325900 -33.794008 -33.795552 0.0015439095 81.254579 0.21879078 + 1326000 -33.79574 -33.803006 0.007265691 382.38683 0.29077928 + 1326100 -33.794081 -33.801492 0.0074114897 390.06009 0.063458711 + 1326200 -33.790708 -33.791369 0.00066085202 34.780053 -0.5422563 + 1326300 -33.788278 -33.794759 0.0064809733 341.08784 -0.64286435 + 1326400 -33.792939 -33.803813 0.010873955 572.28657 -0.51064358 + 1326500 -33.797069 -33.800037 0.0029674064 156.17195 -0.73654043 + 1326600 -33.79592 -33.79615 0.00022976912 12.092544 -0.68748521 + 1326700 -33.792183 -33.800766 0.0085829021 451.71048 -0.026335603 + 1326800 -33.789338 -33.802587 0.013249362 697.3021 0.60866192 + 1326900 -33.791534 -33.793203 0.0016682001 87.795884 0.66033306 + 1327000 -33.79424 -33.796495 0.0022549218 118.67452 0.95774386 + 1327100 -33.798177 -33.803452 0.0052748824 277.61235 1.0980768 + 1327200 -33.799363 -33.80237 0.0030070665 158.25923 0.8437817 + 1327300 -33.798139 -33.798478 0.00033904373 17.843569 0.32496488 + 1327400 -33.795147 -33.799726 0.004578692 240.97248 -0.23946458 + 1327500 -33.791009 -33.803703 0.012694887 668.1206 -0.87284621 + 1327600 -33.790449 -33.795242 0.0047929065 252.24639 -2.0079945 + 1327700 -33.791935 -33.792634 0.00069872608 36.77333 -2.5430582 + 1327800 -33.795614 -33.801448 0.005833385 307.00585 -2.1333622 + 1327900 -33.796732 -33.802593 0.0058603635 308.4257 -1.6207447 + 1328000 -33.794513 -33.796876 0.0023627217 124.34793 -0.89807021 + 1328100 -33.789705 -33.79551 0.0058041977 305.46975 0.64239282 + 1328200 -33.784461 -33.802467 0.018005794 947.62889 2.8699566 + 1328300 -33.79116 -33.797422 0.006261955 329.5611 3.8249552 + 1328400 -33.793509 -33.793587 7.8334914e-05 4.1226967 3.8350821 + 1328500 -33.793172 -33.798732 0.0055596615 292.60002 3.3920361 + 1328600 -33.790457 -33.802961 0.012504206 658.08521 2.154393 + 1328700 -33.793321 -33.79816 0.0048388019 254.66183 0.0097650039 + 1328800 -33.797493 -33.799009 0.00151563 79.766256 -1.3562259 + 1328900 -33.797403 -33.802487 0.0050832114 267.52488 -1.9779427 + 1329000 -33.794681 -33.801286 0.0066051837 347.62492 -2.4042462 + 1329100 -33.792818 -33.793749 0.00093071608 48.982757 -2.6951231 + 1329200 -33.791411 -33.795704 0.0042932023 225.94741 -2.0341999 + 1329300 -33.790804 -33.80341 0.012606252 663.45582 -0.71819598 + 1329400 -33.795655 -33.800151 0.004495649 236.602 0.054769116 + 1329500 -33.797837 -33.79823 0.00039301584 20.684073 0.57762036 + 1329600 -33.797024 -33.801415 0.0043909919 231.09399 1.137588 + 1329700 -33.794483 -33.803159 0.0086758366 456.60154 1.500141 + 1329800 -33.793001 -33.79584 0.0028389836 149.41317 1.257653 + 1329900 -33.792028 -33.794194 0.0021660213 113.99577 0.90213655 + 1330000 -33.791429 -33.80224 0.010811738 569.01215 0.68544944 + 1330100 -33.794576 -33.801157 0.0065808838 346.34604 0.0065965775 + 1330200 -33.797014 -33.797424 0.00040979873 21.567342 -0.60706572 + 1330300 -33.796683 -33.799816 0.0031335567 164.91629 -0.74692968 + 1330400 -33.791532 -33.803593 0.012060438 634.73008 -0.60475341 + 1330500 -33.789714 -33.796565 0.0068503177 360.52611 -0.865032 + 1330600 -33.791792 -33.793159 0.0013666173 71.92385 -0.87078944 + 1330700 -33.793154 -33.800556 0.0074022647 389.57459 -0.32227072 + 1330800 -33.793227 -33.801848 0.0086215067 453.74221 0.040192034 + 1330900 -33.789972 -33.792544 0.0025719964 135.36187 0.12847519 + 1331000 -33.782906 -33.789316 0.0064096712 337.33528 0.66921685 + 1331100 -33.788624 -33.802832 0.014208051 747.75706 1.4279024 + 1331200 -33.793479 -33.799544 0.0060650358 319.19742 1.2594803 + 1331300 -33.794253 -33.794869 0.00061533445 32.384503 0.84676626 + 1331400 -33.793805 -33.799789 0.0059837383 314.91881 0.63039039 + 1331500 -33.789924 -33.802825 0.012900671 678.95082 0.25398895 + 1331600 -33.785606 -33.79075 0.005143936 270.72077 -0.96918118 + 1331700 -33.789493 -33.792089 0.0025963151 136.64175 -1.6805394 + 1331800 -33.793812 -33.802049 0.008236665 433.48833 -1.5388177 + 1331900 -33.793754 -33.800923 0.0071688978 377.2927 -1.4012463 + 1332000 -33.792435 -33.793905 0.0014702338 77.377095 -1.1201418 + 1332100 -33.790516 -33.79696 0.0064438775 339.13553 -0.12213571 + 1332200 -33.790784 -33.803386 0.012602513 663.25901 1.0176775 + 1332300 -33.795268 -33.798718 0.003450117 181.57658 1.3150264 + 1332400 -33.796094 -33.796533 0.00043947619 23.12924 1.3960584 + 1332500 -33.794132 -33.801158 0.0070260595 369.77524 1.4523905 + 1332600 -33.787223 -33.801713 0.014489692 762.57959 1.0176269 + 1332700 -33.789576 -33.792432 0.0028556299 150.28926 -0.26269807 + 1332800 -33.792271 -33.795824 0.0035524214 186.96077 -0.87950749 + 1332900 -33.793757 -33.803032 0.0092751594 488.14337 -1.0152171 + 1333000 -33.793768 -33.799482 0.005714095 300.72772 -1.2785844 + 1333100 -33.790021 -33.790578 0.00055676936 29.302275 -1.4006917 + 1333200 -33.783674 -33.795663 0.011988925 630.96645 -0.48680459 + 1333300 -33.789574 -33.803207 0.013633007 717.49301 0.34060769 + 1333400 -33.793325 -33.796077 0.0027519718 144.83382 0.40227512 + 1333500 -33.793832 -33.79544 0.0016077611 84.615033 0.64916084 + 1333600 -33.793326 -33.802574 0.0092485775 486.74438 1.0368033 + 1333700 -33.790311 -33.800138 0.0098268985 517.1809 0.8989657 + 1333800 -33.786138 -33.787208 0.0010696375 56.294068 0.17801096 + 1333900 -33.788122 -33.795325 0.0072034823 379.11285 0.0098960469 + 1334000 -33.793934 -33.803604 0.0096698249 508.91426 -0.08945038 + 1334100 -33.794463 -33.798156 0.0036933144 194.37584 -0.48785087 + 1334200 -33.793232 -33.793996 0.00076410095 40.213951 -0.74464434 + 1334300 -33.789796 -33.800876 0.011080096 583.13558 -0.39971012 + 1334400 -33.783202 -33.8008 0.017598123 926.17351 -0.10579887 + 1334500 -33.790515 -33.791733 0.0012182676 64.116339 -0.43115283 + 1334600 -33.793868 -33.796829 0.0029613594 155.8537 -0.12856556 + 1334700 -33.794083 -33.803384 0.0093013092 489.51961 0.27965227 + 1334800 -33.792271 -33.79869 0.0064188764 337.81974 0.23999069 + 1334900 -33.788303 -33.789199 0.00089637975 47.175667 0.061945806 + 1335000 -33.786184 -33.797655 0.011471653 603.74285 0.49946848 + 1335100 -33.794013 -33.803389 0.0093760482 493.45305 0.52112344 + 1335200 -33.795364 -33.797192 0.0018274775 96.178511 0.17884641 + 1335300 -33.794161 -33.795523 0.0013615845 71.658979 -0.017205051 + 1335400 -33.789763 -33.802576 0.012812927 674.33292 0.12041339 + 1335500 -33.786642 -33.799008 0.012365882 650.80532 -0.20847858 + 1335600 -33.794919 -33.795147 0.00022864134 12.03319 -0.72893754 + 1335700 -33.796423 -33.799919 0.0034962055 184.00218 -0.57672343 + 1335800 -33.794662 -33.803898 0.0092362701 486.09666 -0.25726016 + 1335900 -33.790479 -33.79582 0.0053401682 281.04829 -0.23687738 + 1336000 -33.788918 -33.789738 0.00081975315 43.142877 -0.060151612 + 1336100 -33.791086 -33.800866 0.0097805355 514.74086 0.66822861 + 1336200 -33.796478 -33.80293 0.0064516494 339.54455 0.75801237 + 1336300 -33.7965 -33.797415 0.0009148881 48.149745 0.51254213 + 1336400 -33.794757 -33.797202 0.0024454152 128.70002 0.36385247 + 1336500 -33.790866 -33.80365 0.012784806 672.85295 0.35274498 + 1336600 -33.7899 -33.798311 0.0084113275 442.68067 -0.26317543 + 1336700 -33.793701 -33.793851 0.00015065721 7.9289548 -0.85142123 + 1336800 -33.797047 -33.800796 0.0037493326 197.32403 -0.73957635 + 1336900 -33.796028 -33.803536 0.0075083125 395.15579 -0.51679976 + 1337000 -33.793143 -33.796633 0.0034907325 183.71414 -0.46902028 + 1337100 -33.791445 -33.793206 0.0017611243 92.686401 -0.14052801 + 1337200 -33.7915 -33.802081 0.010581303 556.88456 0.66976247 + 1337300 -33.7928 -33.801542 0.0087421897 460.09365 0.9338522 + 1337400 -33.793092 -33.793734 0.00064182608 33.778734 0.75469091 + 1337500 -33.792652 -33.796579 0.0039264695 206.64659 0.83004629 + 1337600 -33.791746 -33.803549 0.01180255 621.15769 0.8783868 + 1337700 -33.792013 -33.797742 0.0057291027 301.51756 0.26736853 + 1337800 -33.795373 -33.795864 0.00049064177 25.822039 -0.2409805 + 1337900 -33.79735 -33.801889 0.0045390711 238.88727 -0.27685072 + 1338000 -33.795986 -33.803335 0.0073484597 386.74288 -0.33382121 + 1338100 -33.791298 -33.794144 0.0028459427 149.77943 -0.67309097 + 1338200 -33.790124 -33.792762 0.0026383494 138.85397 -0.69394215 + 1338300 -33.791042 -33.802518 0.011476278 603.98625 -0.19933484 + 1338400 -33.793293 -33.800327 0.0070334703 370.16527 -0.14473065 + 1338500 -33.795018 -33.795306 0.00028848709 15.182818 -0.19528999 + 1338600 -33.798419 -33.80102 0.0026005774 136.86607 0.099307377 + 1338700 -33.798575 -33.803803 0.0052274045 275.11364 0.28762198 + 1338800 -33.795267 -33.799248 0.0039801869 209.47368 0.21216298 + 1338900 -33.793407 -33.794939 0.0015319324 80.624237 0.098802025 + 1339000 -33.792505 -33.80093 0.0084255871 443.43113 0.32382643 + 1339100 -33.792065 -33.80171 0.0096454771 507.63286 0.26862972 + 1339200 -33.791418 -33.79301 0.0015912263 83.744822 -0.15584467 + 1339300 -33.789652 -33.79322 0.0035674188 187.75007 -0.22747422 + 1339400 -33.788775 -33.802637 0.013862098 729.54986 0.04606626 + 1339500 -33.79397 -33.799892 0.0059216915 311.65334 -0.20478054 + 1339600 -33.79603 -33.796729 0.00069904217 36.789966 -0.3757505 + 1339700 -33.795649 -33.800727 0.0050782417 267.26333 -0.16055335 + 1339800 -33.79214 -33.803268 0.011127945 585.65383 0.13398735 + 1339900 -33.782099 -33.789146 0.0070472269 370.88927 -0.049515852 + 1340000 -33.784842 -33.788093 0.0032519051 171.14486 0.069864556 + 1340100 -33.788692 -33.800356 0.011664117 613.87209 0.62126248 + 1340200 -33.792023 -33.799568 0.0075448763 397.08011 0.5094439 + 1340300 -33.793649 -33.794773 0.0011231483 59.110293 0.2291554 + 1340400 -33.794689 -33.799106 0.0044173323 232.48026 0.26311818 + 1340500 -33.797108 -33.803721 0.0066128695 348.02942 0.22668208 + 1340600 -33.799035 -33.801569 0.0025344937 133.38814 -0.014434913 + 1340700 -33.798 -33.798967 0.00096668756 50.875904 -0.21123281 + 1340800 -33.792762 -33.800679 0.0079167706 416.65258 -0.20087997 + 1340900 -33.791171 -33.801607 0.010435231 549.19688 -0.25152463 + 1341000 -33.791394 -33.793394 0.0020001781 105.26759 -0.63761384 + 1341100 -33.791087 -33.793594 0.0025073841 131.96139 -0.58413138 + 1341200 -33.790217 -33.801688 0.011471862 603.75387 -0.078530792 + 1341300 -33.792269 -33.799764 0.007494683 394.43848 -0.0077699883 + 1341400 -33.795631 -33.796842 0.0012104705 63.70598 -0.034993365 + 1341500 -33.796889 -33.800965 0.0040754349 214.4865 0.22181488 + 1341600 -33.795212 -33.803606 0.0083945872 441.79964 0.4111255 + 1341700 -33.787733 -33.794594 0.0068609316 361.08471 0.22153193 + 1341800 -33.788808 -33.791075 0.0022668233 119.30089 0.041988911 + 1341900 -33.791576 -33.799809 0.0082334939 433.32144 0.25842878 + 1342000 -33.792619 -33.800169 0.0075502373 397.36226 0.17465646 + 1342100 -33.791445 -33.793549 0.0021041246 110.7382 -0.14011474 + 1342200 -33.786216 -33.794301 0.0080855565 425.53562 -0.11296407 + 1342300 -33.790569 -33.803538 0.012969278 682.56153 0.080280523 + 1342400 -33.795776 -33.800294 0.0045179846 237.7775 -0.17209352 + 1342500 -33.795863 -33.796436 0.00057307957 30.160667 -0.32094966 + 1342600 -33.793362 -33.799709 0.0063473127 334.05341 -0.069133317 + 1342700 -33.788108 -33.801852 0.013744414 723.35626 0.26027423 + 1342800 -33.789066 -33.792067 0.0030012957 157.95552 -0.028315366 + 1342900 -33.790779 -33.793491 0.0027119026 142.72501 0.1003169 + 1343000 -33.792545 -33.802737 0.01019186 536.38852 0.46992826 + 1343100 -33.794056 -33.801077 0.0070207072 369.49356 0.32701642 + 1343200 -33.794442 -33.795363 0.00092067408 48.454256 0.026981164 + 1343300 -33.793605 -33.798704 0.0050988768 268.34934 0.059891145 + 1343400 -33.78977 -33.803277 0.013506822 710.85198 0.14816484 + 1343500 -33.788959 -33.794127 0.0051687319 272.02575 -0.34258173 + 1343600 -33.791224 -33.792154 0.00092941639 48.914356 -0.58391815 + 1343700 -33.794111 -33.801344 0.0072334998 380.69264 -0.29795655 + 1343800 -33.795208 -33.802331 0.0071228057 374.86691 -0.19657506 + 1343900 -33.793187 -33.795389 0.0022014622 115.86099 -0.31067207 + 1344000 -33.786336 -33.793358 0.007022259 369.57523 -0.0049662826 + 1344100 -33.789721 -33.803052 0.01333115 701.60653 0.59335724 + 1344200 -33.794205 -33.79914 0.0049352713 259.73893 0.45353146 + 1344300 -33.794009 -33.794078 6.9954588e-05 3.6816476 0.2809246 + 1344400 -33.791916 -33.798859 0.0069433449 365.42205 0.4490067 + 1344500 -33.786247 -33.802708 0.016460978 866.32657 0.49890537 + 1344600 -33.786593 -33.791525 0.0049324494 259.59041 -0.21865458 + 1344700 -33.794141 -33.796096 0.0019546226 102.87004 -0.38261784 + 1344800 -33.795734 -33.80299 0.0072556865 381.86031 -0.22830423 + 1344900 -33.794468 -33.801305 0.0068362702 359.7868 -0.25906862 + 1345000 -33.790441 -33.790975 0.00053362369 28.084139 -0.50375213 + 1345100 -33.787826 -33.794479 0.0066527118 350.12629 -0.1470269 + 1345200 -33.78995 -33.803676 0.013726255 722.40055 0.3792462 + 1345300 -33.792745 -33.797299 0.0045532795 239.63504 0.18647554 + 1345400 -33.792944 -33.793667 0.00072336659 38.070138 0.1023308 + 1345500 -33.792943 -33.801399 0.0084561989 445.0422 0.43001607 + 1345600 -33.793563 -33.802755 0.0091923921 483.7874 0.40175279 + 1345700 -33.794927 -33.796019 0.0010917668 57.458714 0.0051288475 + 1345800 -33.795639 -33.797648 0.0020095052 105.75846 -0.04989071 + 1345900 -33.794421 -33.803519 0.0090976833 478.80296 0.079891668 + 1346000 -33.789158 -33.79811 0.0089520208 471.13687 -0.1537102 + 1346100 -33.787801 -33.788148 0.0003477717 18.302914 -0.64060994 + 1346200 -33.7912 -33.798629 0.0074288091 390.9716 -0.36141154 + 1346300 -33.794193 -33.803725 0.0095316575 501.64263 -0.17867368 + 1346400 -33.793936 -33.796691 0.0027542466 144.95354 -0.34297813 + 1346500 -33.792624 -33.793787 0.001163376 61.227443 -0.26954716 + 1346600 -33.789901 -33.802081 0.012180592 641.05369 0.34647399 + 1346700 -33.788007 -33.80013 0.012122826 638.01354 0.53366279 + 1346800 -33.792674 -33.793027 0.00035298379 18.577222 0.27914979 + 1346900 -33.795444 -33.79887 0.0034258507 180.29947 0.4685023 + 1347000 -33.795324 -33.803926 0.0086020467 452.71805 0.57386849 + 1347100 -33.791552 -33.79732 0.0057673731 303.5317 0.17863827 + 1347200 -33.785899 -33.786745 0.0008462257 44.536104 -0.4715322 + 1347300 -33.7872 -33.799358 0.012158409 639.8862 -0.38834104 + 1347400 -33.790705 -33.802289 0.011583586 609.63381 -0.55275415 + 1347500 -33.793217 -33.794532 0.0013146674 69.189772 -0.93484112 + 1347600 -33.79435 -33.796757 0.0024065186 126.65293 -0.75129604 + 1347700 -33.794992 -33.803467 0.0084753793 446.05165 -0.25281686 + 1347800 -33.79494 -33.800637 0.0056971053 299.83357 -0.048183062 + 1347900 -33.792723 -33.793354 0.00063077934 33.197354 0.064530258 + 1348000 -33.789231 -33.797505 0.0082740535 435.45606 0.72113361 + 1348100 -33.78932 -33.803121 0.013800699 726.31848 1.2710661 + 1348200 -33.795118 -33.797423 0.0023050833 121.31448 0.9905785 + 1348300 -33.795949 -33.796843 0.00089407015 47.054115 0.8138642 + 1348400 -33.794613 -33.802395 0.0077823688 409.57913 0.71488595 + 1348500 -33.792463 -33.801605 0.0091419937 481.13497 0.18129226 + 1348600 -33.792092 -33.793737 0.0016448638 86.567713 -0.72743611 + 1348700 -33.792638 -33.797074 0.0044356742 233.44558 -1.0904951 + 1348800 -33.793038 -33.803185 0.010146809 534.01749 -1.093559 + 1348900 -33.792822 -33.797846 0.0050242134 264.41987 -1.2560262 + 1349000 -33.791933 -33.792551 0.00061799385 32.524465 -1.1466838 + 1349100 -33.790828 -33.799808 0.0089802806 472.62416 -0.30457141 + 1349200 -33.792558 -33.80283 0.010271968 540.6045 0.38375167 + 1349300 -33.796448 -33.797951 0.0015032695 79.115735 0.51121009 + 1349400 -33.797221 -33.798749 0.0015276551 80.399127 0.71479782 + 1349500 -33.794258 -33.80321 0.0089525509 471.16477 0.97128015 + 1349600 -33.788093 -33.798778 0.010684562 562.31896 0.71396925 + 1349700 -33.790165 -33.790918 0.00075325741 39.643265 0.010284397 + 1349800 -33.792877 -33.79827 0.0053926697 283.8114 -0.077085512 + 1349900 -33.794518 -33.803189 0.0086709403 456.34385 -0.15351518 + 1350000 -33.794074 -33.797627 0.0035523108 186.95495 -0.52298406 + 1350100 -33.788682 -33.790851 0.0021697554 114.19229 -0.75861366 + 1350200 -33.785763 -33.800469 0.014705436 773.934 -0.30310585 + 1350300 -33.792737 -33.801715 0.0089778339 472.49539 -0.29629245 + 1350400 -33.79428 -33.795229 0.00094814531 49.900042 -0.4358721 + 1350500 -33.793715 -33.797043 0.0033280304 175.15127 -0.1488929 + 1350600 -33.790547 -33.803135 0.01258875 662.53471 0.41017084 + 1350700 -33.782854 -33.793502 0.010648328 560.41198 0.48796315 + 1350800 -33.786048 -33.787614 0.001565903 82.412078 0.45497328 + 1350900 -33.792911 -33.80042 0.0075092173 395.20341 0.86643318 + 1351000 -33.793924 -33.802863 0.0089399193 470.49998 0.82230134 + 1351100 -33.793579 -33.795587 0.0020079108 105.67455 0.28361003 + 1351200 -33.791725 -33.794326 0.0026007394 136.8746 -0.1042624 + 1351300 -33.787484 -33.80263 0.015146169 797.12939 -0.16099095 + 1351400 -33.789497 -33.798604 0.0091076305 479.32647 -0.79871693 + 1351500 -33.794793 -33.795088 0.00029533582 15.543261 -1.2178166 + 1351600 -33.795402 -33.79987 0.004468693 235.18333 -0.95706959 + 1351700 -33.793512 -33.803577 0.0100647 529.69616 -0.47284612 + 1351800 -33.789185 -33.794472 0.0052870048 278.25035 -0.21029956 + 1351900 -33.784164 -33.786828 0.002664392 140.22458 0.36718028 + 1352000 -33.78722 -33.800496 0.013275216 698.66279 1.5486367 + 1352100 -33.794072 -33.801397 0.0073244406 385.47877 1.6425413 + 1352200 -33.794561 -33.795295 0.00073389501 38.62424 1.252252 + 1352300 -33.793171 -33.797299 0.0041280982 217.25812 0.91400018 + 1352400 -33.78882 -33.803774 0.01495389 787.00989 0.47336304 + 1352500 -33.789801 -33.79697 0.0071693519 377.3166 -0.75151923 + 1352600 -33.795378 -33.795795 0.00041662524 21.926615 -1.4741967 + 1352700 -33.796004 -33.801056 0.0050523867 265.90261 -1.4182155 + 1352800 -33.79347 -33.802706 0.0092357651 486.07008 -1.1070703 + 1352900 -33.790128 -33.793212 0.0030835779 162.28596 -0.84893098 + 1353000 -33.790137 -33.793362 0.0032251514 169.73684 -0.044961539 + 1353100 -33.791517 -33.802996 0.011478733 604.11546 1.0340146 + 1353200 -33.793259 -33.800393 0.0071340694 375.45971 1.3636107 + 1353300 -33.793959 -33.79416 0.00020080903 10.5684 1.2674195 + 1353400 -33.793813 -33.798685 0.0048717693 256.39687 1.3174257 + 1353500 -33.791665 -33.803608 0.011942274 628.51125 1.1176694 + 1353600 -33.789375 -33.794681 0.0053059477 279.24729 0.089133752 + 1353700 -33.790556 -33.792004 0.0014477024 76.191286 -0.82359269 + 1353800 -33.794714 -33.802047 0.0073330265 385.93064 -0.99695977 + 1353900 -33.795969 -33.802508 0.006539198 344.15216 -1.1451162 + 1354000 -33.794474 -33.795474 0.00099985623 52.621541 -1.2668812 + 1354100 -33.792464 -33.796029 0.0035646099 187.60224 -0.79442345 + 1354200 -33.791872 -33.803718 0.011846476 623.46948 0.13387598 + 1354300 -33.792743 -33.798905 0.0061620974 324.30569 0.53437933 + 1354400 -33.793586 -33.793733 0.00014669775 7.7205717 0.76545083 + 1354500 -33.794607 -33.800246 0.0056389493 296.77287 1.2254296 + 1354600 -33.79612 -33.803481 0.0073609656 387.40105 1.2751971 + 1354700 -33.795846 -33.797974 0.0021275922 111.97328 0.78668717 + 1354800 -33.792192 -33.794087 0.0018948845 99.72608 0.16884214 + 1354900 -33.787992 -33.802233 0.014240371 749.458 -0.28651961 + 1355000 -33.791534 -33.800644 0.009110194 479.46139 -1.1724813 + 1355100 -33.794012 -33.794276 0.00026456308 13.923719 -1.8074755 + 1355200 -33.793806 -33.797806 0.003999814 210.50664 -1.6285716 + 1355300 -33.792376 -33.803623 0.011246236 591.87938 -0.98044943 + 1355400 -33.79141 -33.797136 0.0057257215 301.33962 -0.53371035 + 1355500 -33.792375 -33.793474 0.0010988902 57.83361 0.080468087 + 1355600 -33.796263 -33.801848 0.0055856223 293.96632 0.87238968 + 1355700 -33.797193 -33.803118 0.005924971 311.82594 1.1422929 + 1355800 -33.794055 -33.795704 0.001648859 86.777977 0.92257835 + 1355900 -33.790604 -33.793443 0.0028389986 149.41396 0.65939385 + 1356000 -33.790485 -33.803175 0.012689699 667.84756 0.59771941 + 1356100 -33.793218 -33.80009 0.0068713508 361.63306 -0.057831271 + 1356200 -33.79527 -33.795463 0.00019263602 10.138262 -0.63294869 + 1356300 -33.796569 -33.800465 0.0038964921 205.0689 -0.65515486 + 1356400 -33.798197 -33.80384 0.0056427605 296.97345 -0.58775263 + 1356500 -33.797617 -33.799861 0.0022444213 118.12189 -0.61609477 + 1356600 -33.793723 -33.794513 0.00078963751 41.557918 -0.43636313 + 1356700 -33.790676 -33.80135 0.010674263 561.77694 0.41786582 + 1356800 -33.790973 -33.801675 0.010702274 563.25112 0.94707786 + 1356900 -33.793932 -33.794689 0.00075682209 39.830872 0.90111834 + 1357000 -33.796815 -33.799044 0.0022289209 117.30612 1.0421351 + 1357100 -33.797693 -33.803659 0.005965793 313.97437 1.0297097 + 1357200 -33.790578 -33.798099 0.0075215573 395.85285 0.48612167 + 1357300 -33.788445 -33.789804 0.0013586958 71.50695 -0.71089706 + 1357400 -33.791602 -33.79916 0.0075581807 397.78031 -1.1476128 + 1357500 -33.794746 -33.802996 0.0082499443 434.18721 -1.4067982 + 1357600 -33.794913 -33.797031 0.0021180111 111.46904 -1.6067279 + 1357700 -33.791523 -33.793435 0.0019119845 100.62604 -1.2764115 + 1357800 -33.784546 -33.801788 0.017241419 907.40053 0.11165346 + 1357900 -33.790253 -33.800296 0.010043345 528.5723 0.89093618 + 1358000 -33.792828 -33.793467 0.00063890833 33.625176 1.1284998 + 1358100 -33.793469 -33.798073 0.0046040005 242.30444 1.5190634 + 1358200 -33.792984 -33.803308 0.010324182 543.35249 1.6495333 + 1358300 -33.789976 -33.795519 0.0055427881 291.71199 0.96148642 + 1358400 -33.786273 -33.78826 0.0019869178 104.56971 -0.066416793 + 1358500 -33.789859 -33.800771 0.010911581 574.26677 -0.47519659 + 1358600 -33.794668 -33.80233 0.0076613684 403.21099 -0.96547743 + 1358700 -33.794605 -33.795668 0.0010624938 55.9181 -1.3860263 + 1358800 -33.792918 -33.796206 0.0032881592 173.05288 -1.2123676 + 1358900 -33.787379 -33.803312 0.015933038 838.54158 -0.41414882 + 1359000 -33.78198 -33.793596 0.011616073 611.34356 0.068034631 + 1359100 -33.791653 -33.792269 0.00061583656 32.410929 0.47731457 + 1359200 -33.794194 -33.800477 0.0062829601 330.66659 1.017399 + 1359300 -33.794299 -33.802983 0.0086836206 457.01121 1.1505425 + 1359400 -33.792332 -33.794929 0.0025971287 136.68457 0.70290308 + 1359500 -33.788798 -33.792005 0.0032075859 168.81238 0.22515206 + 1359600 -33.787861 -33.802476 0.014614058 769.12482 0.067099458 + 1359700 -33.795162 -33.801051 0.0058893525 309.95137 -0.52821825 + 1359800 -33.795784 -33.796045 0.00026114679 13.743923 -0.91069152 + 1359900 -33.794239 -33.798922 0.0046829751 246.4608 -0.7631409 + 1360000 -33.78952 -33.803488 0.01396809 735.1281 -0.28899356 + 1360100 -33.78854 -33.793912 0.0053711757 282.68019 -0.31199299 + 1360200 -33.795474 -33.796523 0.0010487217 55.193288 -0.028861643 + 1360300 -33.796981 -33.802686 0.0057059544 300.29929 0.35302527 + 1360400 -33.794554 -33.802117 0.0075632134 398.04517 0.46810317 + 1360500 -33.790713 -33.791935 0.0012216268 64.29313 0.21869887 + 1360600 -33.78925 -33.794178 0.0049287434 259.39537 0.31266223 + 1360700 -33.791408 -33.803629 0.012221333 643.19785 0.51952505 + 1360800 -33.796414 -33.800237 0.0038230014 201.20115 0.17854239 + 1360900 -33.797228 -33.797403 0.00017441032 9.1790596 -0.078239507 + 1361000 -33.796301 -33.801322 0.0050209553 264.2484 -0.042023045 + 1361100 -33.793083 -33.80322 0.010136462 533.47297 -0.016961144 + 1361200 -33.789926 -33.792974 0.0030476701 160.39616 -0.51532462 + 1361300 -33.789365 -33.7919 0.0025351684 133.42365 -0.63103434 + 1361400 -33.793513 -33.802752 0.0092391952 486.2506 -0.25802482 + 1361500 -33.796848 -33.801827 0.0049798744 262.08635 -0.30939317 + 1361600 -33.795832 -33.796174 0.00034215964 18.007556 -0.35686287 + 1361700 -33.793482 -33.798273 0.0047914455 252.1695 0.025402829 + 1361800 -33.790718 -33.80388 0.013161593 692.68292 0.56790481 + 1361900 -33.791465 -33.7963 0.0048344895 254.43487 0.51118353 + 1362000 -33.792386 -33.793036 0.00065054039 34.23736 0.48078408 + 1362100 -33.792423 -33.80124 0.0088165245 464.00582 0.75619517 + 1362200 -33.792262 -33.802148 0.0098865516 520.32039 0.65727664 + 1362300 -33.792504 -33.793723 0.0012180783 64.106373 0.058044877 + 1362400 -33.79325 -33.796438 0.0031871606 167.73742 -0.14735371 + 1362500 -33.795812 -33.803743 0.007931287 417.41656 -0.10698146 + 1362600 -33.797176 -33.801142 0.0039669098 208.77493 -0.35927297 + 1362700 -33.795154 -33.795298 0.00014453573 7.6067863 -0.58643653 + 1362800 -33.789494 -33.797946 0.0084516028 444.80032 -0.26845843 + 1362900 -33.789223 -33.803412 0.014189002 746.75454 0.097918091 + 1363000 -33.792864 -33.795451 0.002587524 136.17908 -0.12866011 + 1363100 -33.794432 -33.795628 0.0011959252 62.940474 -0.0059069755 + 1363200 -33.794447 -33.802795 0.0083475194 439.3225 0.35916083 + 1363300 -33.787954 -33.799915 0.011960872 629.49003 0.42768711 + 1363400 -33.783607 -33.784958 0.0013505289 71.077134 -0.031505138 + 1363500 -33.789719 -33.795891 0.0061720996 324.8321 0.21426157 + 1363600 -33.79353 -33.803712 0.010181453 535.84076 0.37886165 + 1363700 -33.794444 -33.798285 0.0038410399 202.1505 0.07133536 + 1363800 -33.793314 -33.793704 0.00039016284 20.533922 -0.21989522 + 1363900 -33.787922 -33.800131 0.01220905 642.5514 0.015660114 + 1364000 -33.785843 -33.801956 0.016112286 847.97525 0.0039896411 + 1364100 -33.793294 -33.794569 0.0012753423 67.12013 -0.54874512 + 1364200 -33.794053 -33.796594 0.0025412271 133.74251 -0.44915949 + 1364300 -33.793144 -33.803471 0.010326933 543.49728 -0.05164207 + 1364400 -33.790833 -33.798485 0.0076521018 402.72329 -0.072564054 + 1364500 -33.787983 -33.78825 0.00026744947 14.075627 -0.17892048 + 1364600 -33.788028 -33.797526 0.0094978227 499.86194 0.3986277 + 1364700 -33.794566 -33.803658 0.0090919478 478.5011 0.57047411 + 1364800 -33.795628 -33.797752 0.0021248405 111.82846 0.33114199 + 1364900 -33.794284 -33.79547 0.0011855014 62.391881 0.15272686 + 1365000 -33.789038 -33.802337 0.013299106 699.92009 0.29727479 + 1365100 -33.785488 -33.799124 0.013636978 717.70197 -0.029626074 + 1365200 -33.795239 -33.79547 0.00023021691 12.11611 -0.64230448 + 1365300 -33.796071 -33.799409 0.0033386145 175.7083 -0.5513804 + 1365400 -33.793832 -33.80378 0.0099476 523.53332 -0.24177872 + 1365500 -33.789863 -33.795871 0.0060075535 316.17218 -0.3075888 + 1365600 -33.788988 -33.790086 0.0010978855 57.780733 -0.21640046 + 1365700 -33.79269 -33.801034 0.0083445396 439.16568 0.40359784 + 1365800 -33.796165 -33.802906 0.0067412474 354.78584 0.48750806 + 1365900 -33.795491 -33.796638 0.0011467377 60.351783 0.28717077 + 1366000 -33.793765 -33.796272 0.0025066315 131.92178 0.2420964 + 1366100 -33.791071 -33.803378 0.012307154 647.71453 0.38162397 + 1366200 -33.790852 -33.798725 0.0078732364 414.36141 0.012260578 + 1366300 -33.795401 -33.795649 0.00024770335 13.036407 -0.39587664 + 1366400 -33.797818 -33.801317 0.0034983939 184.11735 -0.3003004 + 1366500 -33.796162 -33.80361 0.0074479894 391.98104 -0.14357936 + 1366600 -33.792241 -33.79575 0.0035086658 184.65795 -0.29811725 + 1366700 -33.790804 -33.79231 0.0015067866 79.300836 -0.25651262 + 1366800 -33.79104 -33.801937 0.010896689 573.48304 0.32717129 + 1366900 -33.793778 -33.801649 0.0078703598 414.21002 0.36389894 + 1367000 -33.797983 -33.798307 0.00032354584 17.027929 0.19040701 + 1367100 -33.798979 -33.800811 0.0018326295 96.449655 0.2612313 + 1367200 -33.79741 -33.803833 0.0064226215 338.01684 0.30768979 + 1367300 -33.794716 -33.799425 0.0047083053 247.79391 0.031068439 + 1367400 -33.792588 -33.793117 0.0005281324 27.795137 -0.37948335 + 1367500 -33.790891 -33.799588 0.0086978654 457.7609 -0.32681989 + 1367600 -33.791222 -33.802679 0.011456587 602.94998 -0.33082617 + 1367700 -33.796533 -33.797861 0.0013277521 69.878408 -0.64131802 + 1367800 -33.797507 -33.798743 0.0012363422 65.067586 -0.55095191 + 1367900 -33.795561 -33.803228 0.0076671827 403.51699 -0.11768388 + 1368000 -33.791382 -33.800269 0.0088874605 467.73912 0.21828752 + 1368100 -33.791292 -33.792324 0.0010314921 54.286507 0.28921054 + 1368200 -33.792081 -33.797654 0.0055736557 293.33653 0.79301482 + 1368300 -33.792919 -33.803125 0.010205602 537.11171 1.0986519 + 1368400 -33.793959 -33.797402 0.0034431368 181.20922 0.74473641 + 1368500 -33.795375 -33.796249 0.00087455024 46.026799 0.46273797 + 1368600 -33.795923 -33.802229 0.0063062064 331.89002 0.38046688 + 1368700 -33.793749 -33.802449 0.0087002626 457.88706 0.040429103 + 1368800 -33.789457 -33.79228 0.0028227342 148.55798 -0.72867805 + 1368900 -33.788584 -33.793514 0.0049300611 259.46472 -1.1308631 + 1369000 -33.793949 -33.80244 0.0084913067 446.8899 -1.0865965 + 1369100 -33.795884 -33.799948 0.0040636481 213.86617 -1.1041764 + 1369200 -33.794406 -33.795402 0.00099635199 52.437116 -0.91494271 + 1369300 -33.791768 -33.799743 0.007974569 419.69446 -0.07208353 + 1369400 -33.791864 -33.803426 0.011561526 608.47278 0.81724816 + 1369500 -33.797826 -33.799577 0.0017506314 92.13417 0.95975605 + 1369600 -33.798121 -33.798703 0.00058195341 30.627689 1.0208317 + 1369700 -33.795863 -33.802275 0.0064121829 337.46747 1.0569302 + 1369800 -33.792515 -33.801416 0.0089012424 468.46445 0.59608596 + 1369900 -33.791732 -33.79356 0.0018277563 96.193184 -0.3518005 + 1370000 -33.792638 -33.797261 0.0046226216 243.28445 -0.83763648 + 1370100 -33.796189 -33.803478 0.0072896125 383.6458 -1.0282402 + 1370200 -33.798619 -33.801118 0.0024982519 131.48077 -1.1862376 + 1370300 -33.797521 -33.797777 0.00025558581 13.451253 -1.069747 + 1370400 -33.794286 -33.800667 0.0063818762 335.87245 -0.32924563 + 1370500 -33.793057 -33.803339 0.010282552 541.16152 0.59168795 + 1370600 -33.792602 -33.795579 0.0029771616 156.68536 1.016339 + 1370700 -33.792387 -33.79443 0.0020430048 107.52152 1.4846575 + 1370800 -33.792234 -33.802152 0.009917655 521.95734 1.9825485 + 1370900 -33.792533 -33.800127 0.0075936499 399.64702 1.6730459 + 1371000 -33.792859 -33.793537 0.00067794611 35.679699 0.87872795 + 1371100 -33.793438 -33.798568 0.0051295353 269.96287 0.37497116 + 1371200 -33.795125 -33.803902 0.0087777882 461.96717 -0.14328528 + 1371300 -33.796633 -33.799669 0.0030360909 159.78676 -0.8429927 + 1371400 -33.796062 -33.796554 0.00049166758 25.876026 -1.2445995 + 1371500 -33.791191 -33.800707 0.0095157476 500.80531 -1.1024467 + 1371600 -33.788089 -33.801619 0.013529589 712.0502 -0.86385734 + 1371700 -33.791048 -33.792401 0.0013532349 71.219548 -0.94727569 + 1371800 -33.793399 -33.79629 0.0028914996 152.17704 -0.46028761 + 1371900 -33.793985 -33.803491 0.0095061629 500.30088 0.23176566 + 1372000 -33.793629 -33.799895 0.0062666653 329.809 0.49314054 + 1372100 -33.79304 -33.793683 0.00064298032 33.839481 0.56654606 + 1372200 -33.792268 -33.799167 0.006898973 363.08679 0.98974453 + 1372300 -33.791383 -33.803167 0.011784612 620.21364 1.1495537 + 1372400 -33.79208 -33.794962 0.0028820249 151.6784 0.59362824 + 1372500 -33.793009 -33.794391 0.0013819585 72.731242 0.23761039 + 1372600 -33.794299 -33.802519 0.0082198057 432.60104 0.17606456 + 1372700 -33.795708 -33.802104 0.0063959309 336.61214 -0.18207762 + 1372800 -33.795906 -33.796708 0.0008020189 42.209539 -0.60656467 + 1372900 -33.793663 -33.797912 0.00424868 223.60424 -0.64479726 + 1373000 -33.788211 -33.803578 0.015367392 808.77216 -0.32775331 + 1373100 -33.789713 -33.795807 0.0060938068 320.71162 -0.53385617 + 1373200 -33.794053 -33.794334 0.00028118793 14.79867 -0.52303078 + 1373300 -33.795433 -33.800982 0.0055497125 292.07642 -0.09360107 + 1373400 -33.7942 -33.802867 0.008667512 456.16343 0.24065723 + 1373500 -33.792661 -33.795858 0.0031973855 168.27555 0.22308921 + 1373600 -33.792171 -33.795689 0.0035177491 185.136 0.43749659 + 1373700 -33.795003 -33.802801 0.0077981106 410.4076 0.75269275 + 1373800 -33.797564 -33.801399 0.003834376 201.79979 0.58405875 + 1373900 -33.796189 -33.796491 0.00030169956 15.878179 0.25754106 + 1374000 -33.791584 -33.797751 0.0061674137 324.58548 0.049798655 + 1374100 -33.79088 -33.803894 0.013014447 684.93875 -0.1696208 + 1374200 -33.793831 -33.797985 0.0041545131 218.64832 -0.77475481 + 1374300 -33.79545 -33.796173 0.00072371744 38.088603 -1.0094065 + 1374400 -33.795782 -33.801725 0.0059431937 312.78498 -0.73658092 + 1374500 -33.791619 -33.801696 0.010077928 530.39236 -0.36299905 + 1374600 -33.787606 -33.789927 0.0023206602 122.13428 -0.20940965 + 1374700 -33.7894 -33.794017 0.0046173457 243.00678 0.49600125 + 1374800 -33.793925 -33.803545 0.0096202451 506.30492 1.1159964 + 1374900 -33.794842 -33.799993 0.0051512284 271.10455 1.0147299 + 1375000 -33.793902 -33.794216 0.00031347167 16.497735 0.6564388 + 1375100 -33.792198 -33.799301 0.0071022692 373.78609 0.54679063 + 1375200 -33.789946 -33.803087 0.013140441 691.5697 0.20860791 + 1375300 -33.788241 -33.792057 0.0038157264 200.81828 -0.77372393 + 1375400 -33.790181 -33.79248 0.0022988741 120.98769 -1.2508442 + 1375500 -33.793939 -33.802602 0.0086630524 455.92872 -1.0960073 + 1375600 -33.795561 -33.801609 0.0060482093 318.31186 -1.0535499 + 1375700 -33.794531 -33.795274 0.00074324884 39.116523 -0.94193814 + 1375800 -33.789416 -33.796026 0.0066100517 347.88112 -0.16759574 + 1375900 -33.786312 -33.803433 0.017120564 901.04 1.1359811 + 1376000 -33.791825 -33.796399 0.0045740632 240.72886 1.3954325 + 1376100 -33.792615 -33.79325 0.00063529501 33.435009 1.4809192 + 1376200 -33.792258 -33.800891 0.0086333736 454.36675 1.6785259 + 1376300 -33.79204 -33.80209 0.010049735 528.9086 1.2868222 + 1376400 -33.793986 -33.795565 0.0015790583 83.10443 0.34376961 + 1376500 -33.796679 -33.798984 0.0023050315 121.31175 -0.12911127 + 1376600 -33.797439 -33.803636 0.0061976723 326.17797 -0.37306193 + 1376700 -33.792917 -33.799315 0.0063977743 336.70915 -0.81747586 + 1376800 -33.789724 -33.790109 0.00038448343 20.23502 -1.4687296 + 1376900 -33.79 -33.797851 0.0078518726 413.23705 -1.3279013 + 1377000 -33.79286 -33.803247 0.010386769 546.64638 -1.0633761 + 1377100 -33.795561 -33.797868 0.0023074021 121.43652 -0.99883359 + 1377200 -33.796739 -33.797856 0.0011168944 58.781157 -0.60772107 + 1377300 -33.798788 -33.803175 0.0043870013 230.88397 -0.037366888 + 1377400 -33.798711 -33.802856 0.0041453937 218.16837 0.30545527 + 1377500 -33.794951 -33.795961 0.0010106898 53.191702 0.49851585 + 1377600 -33.792614 -33.796612 0.0039981106 210.41699 1.021829 + 1377700 -33.790675 -33.8033 0.012624304 664.40587 1.6423453 + 1377800 -33.791097 -33.797048 0.0059513788 313.21576 1.3816494 + 1377900 -33.793969 -33.794432 0.00046348842 24.392982 0.9865832 + 1378000 -33.796776 -33.801576 0.0048002856 252.63475 0.86635965 + 1378100 -33.796302 -33.803293 0.006990388 367.89788 0.46737224 + 1378200 -33.791146 -33.794621 0.0034746459 182.86751 -0.43588355 + 1378300 -33.788473 -33.792278 0.0038045038 200.22764 -1.4001023 + 1378400 -33.790459 -33.802128 0.011668984 614.12822 -1.7331352 + 1378500 -33.793299 -33.799864 0.0065649031 345.505 -2.0449391 + 1378600 -33.79422 -33.794634 0.00041392547 21.784528 -2.0161929 + 1378700 -33.793963 -33.798939 0.0049763292 261.89977 -1.2282852 + 1378800 -33.791435 -33.803654 0.0122196 643.10663 -0.025834588 + 1378900 -33.790346 -33.796127 0.0057812633 304.26273 0.85895696 + 1379000 -33.793234 -33.794593 0.0013586525 71.504669 1.6433851 + 1379100 -33.795805 -33.801641 0.0058357903 307.13244 2.220748 + 1379200 -33.795231 -33.801946 0.006714905 353.39946 2.0904984 + 1379300 -33.787647 -33.790514 0.0028671526 150.89568 1.0420552 + 1379400 -33.787412 -33.793543 0.0061309927 322.66868 -0.18444647 + 1379500 -33.792073 -33.803352 0.011278742 593.59013 -0.98336479 + 1379600 -33.794539 -33.799442 0.0049030751 258.04447 -1.7870685 + 1379700 -33.794261 -33.794492 0.00023147005 12.182062 -2.1415308 + 1379800 -33.790569 -33.798968 0.0083989152 442.02742 -1.6263788 + 1379900 -33.78335 -33.802797 0.019446441 1023.4488 -0.46200024 + 1380000 -33.790334 -33.793546 0.0032119465 169.04188 -0.015531571 + 1380100 -33.792327 -33.794448 0.0021216351 111.65977 0.6435047 + 1380200 -33.793257 -33.802588 0.0093310473 491.0847 1.3702996 + 1380300 -33.793584 -33.800595 0.0070114818 369.00803 1.4284947 + 1380400 -33.792401 -33.793035 0.0006341265 33.373512 0.9904817 + 1380500 -33.789206 -33.796531 0.0073247585 385.49551 0.73768656 + 1380600 -33.789276 -33.80383 0.014553649 765.94556 0.34914006 + 1380700 -33.795091 -33.798306 0.0032151055 169.20814 -0.52760449 + 1380800 -33.795779 -33.796234 0.00045468518 23.929675 -0.9089267 + 1380900 -33.794375 -33.801718 0.0073429403 386.4524 -0.79264757 + 1381000 -33.791335 -33.801981 0.01064613 560.29632 -0.68939575 + 1381100 -33.79108 -33.792691 0.0016102458 84.745798 -0.81553956 + 1381200 -33.791717 -33.795537 0.0038201759 201.05245 -0.37630617 + 1381300 -33.792944 -33.803668 0.010723676 564.37753 0.27285079 + 1381400 -33.794759 -33.799852 0.0050932969 268.05567 0.38782628 + 1381500 -33.795784 -33.79583 4.5443757e-05 2.3916644 0.37373385 + 1381600 -33.796234 -33.800823 0.0045887455 241.50158 0.6030638 + 1381700 -33.793463 -33.803455 0.0099923465 525.88828 0.69019159 + 1381800 -33.78899 -33.79314 0.0041491515 218.36614 0.10797906 + 1381900 -33.789175 -33.791552 0.0023761638 125.05538 -0.31164074 + 1382000 -33.793105 -33.802541 0.0094360475 496.61076 -0.21077019 + 1382100 -33.795053 -33.801559 0.0065063298 342.42233 -0.4267181 + 1382200 -33.794333 -33.794712 0.00037963814 19.980017 -0.69076728 + 1382300 -33.79263 -33.797272 0.0046424943 244.33033 -0.43976778 + 1382400 -33.789632 -33.803937 0.014305045 752.86176 0.091394054 + 1382500 -33.790642 -33.796264 0.0056221613 295.88934 0.059192489 + 1382600 -33.795343 -33.795761 0.00041806608 22.002445 0.13510058 + 1382700 -33.796527 -33.801941 0.0054130316 284.88302 0.43292329 + 1382800 -33.794255 -33.802822 0.0085673146 450.89013 0.52872897 + 1382900 -33.789626 -33.791886 0.0022601138 118.94777 0.10200552 + 1383000 -33.78931 -33.792922 0.0036115992 190.07525 -0.027662711 + 1383100 -33.791019 -33.803312 0.012293411 646.99124 0.1899397 + 1383200 -33.793509 -33.799818 0.0063093317 332.0545 -0.14053519 + 1383300 -33.794486 -33.794572 8.6701171e-05 4.5630053 -0.44525541 + 1383400 -33.795048 -33.799971 0.0049227166 259.07818 -0.23967496 + 1383500 -33.795775 -33.803769 0.0079945016 420.74349 -0.06341876 + 1383600 -33.794213 -33.797358 0.0031453828 165.53869 -0.18419993 + 1383700 -33.790592 -33.792107 0.0015146874 79.716645 -0.14187017 + 1383800 -33.788118 -33.801443 0.013325632 701.31614 0.47321914 + 1383900 -33.79344 -33.801586 0.0081462579 428.73029 0.51405095 + 1384000 -33.796272 -33.796692 0.00041964062 22.085311 0.28153176 + 1384100 -33.795554 -33.798596 0.003042648 160.13185 0.29821335 + 1384200 -33.792709 -33.803805 0.011096387 583.99293 0.41401448 + 1384300 -33.790428 -33.797387 0.0069588107 366.236 -0.03242407 + 1384400 -33.791493 -33.79237 0.00087676008 46.143101 -0.49878331 + 1384500 -33.796876 -33.80144 0.0045631052 240.15215 -0.35508683 + 1384600 -33.796895 -33.80306 0.0061653953 324.47926 -0.2868552 + 1384700 -33.79357 -33.795892 0.0023224094 122.22633 -0.4105971 + 1384800 -33.791105 -33.793881 0.0027756861 146.08188 -0.21416498 + 1384900 -33.791096 -33.802907 0.011811773 621.64307 0.39648014 + 1385000 -33.793393 -33.80067 0.0072772824 382.99688 0.43925984 + 1385100 -33.794628 -33.794927 0.00029952656 15.763816 0.28142449 + 1385200 -33.796054 -33.799642 0.0035879917 188.8328 0.42335591 + 1385300 -33.797838 -33.80359 0.0057518198 302.71315 0.44526412 + 1385400 -33.796007 -33.799339 0.0033319467 175.35738 0.15460718 + 1385500 -33.791954 -33.793661 0.0017067594 89.825225 -0.28659798 + 1385600 -33.790499 -33.800893 0.010394658 547.06157 -0.3285215 + 1385700 -33.792794 -33.801998 0.0092035838 484.37641 -0.55661271 + 1385800 -33.795258 -33.796131 0.00087280242 45.934813 -0.91179315 + 1385900 -33.798067 -33.799546 0.0014785284 77.813631 -0.74834412 + 1386000 -33.798752 -33.803277 0.0045251852 238.15646 -0.42363184 + 1386100 -33.79597 -33.801358 0.0053882812 283.58043 -0.11695701 + 1386200 -33.794313 -33.796635 0.0023224746 122.22977 0.22708953 + 1386300 -33.793899 -33.799711 0.0058127929 305.92211 0.83666237 + 1386400 -33.793123 -33.802273 0.009150102 481.56171 1.2560002 + 1386500 -33.789064 -33.793417 0.0043532671 229.10856 1.1020559 + 1386600 -33.784328 -33.786135 0.0018070724 95.104607 0.77187762 + 1386700 -33.786145 -33.799725 0.013579467 714.67523 0.87476393 + 1386800 -33.790931 -33.800699 0.0097672093 514.03951 0.4197031 + 1386900 -33.792948 -33.794861 0.0019129035 100.6744 -0.23820621 + 1387000 -33.794575 -33.798799 0.0042238008 222.29487 -0.42591208 + 1387100 -33.795954 -33.803636 0.0076820713 404.30056 -0.42415201 + 1387200 -33.796295 -33.799998 0.0037023682 194.85234 -0.62011478 + 1387300 -33.793445 -33.793956 0.00051103113 26.895113 -0.70656107 + 1387400 -33.788888 -33.7987 0.0098121235 516.40331 -0.12612211 + 1387500 -33.788781 -33.802059 0.013277423 698.77894 0.38810309 + 1387600 -33.793576 -33.795431 0.0018543924 97.59502 0.30721994 + 1387700 -33.795232 -33.797212 0.0019805435 104.23424 0.47750628 + 1387800 -33.794604 -33.803118 0.0085143484 448.10256 0.71623639 + 1387900 -33.793404 -33.800642 0.0072378538 380.92179 0.51363541 + 1388000 -33.79241 -33.79357 0.0011602217 61.061433 0.030268141 + 1388100 -33.791345 -33.797744 0.0063996458 336.80765 -0.089432897 + 1388200 -33.790821 -33.802932 0.012111153 637.39918 -0.1600924 + 1388300 -33.792771 -33.796277 0.0035062172 184.52908 -0.6492459 + 1388400 -33.794112 -33.795115 0.001002906 52.782049 -0.79074258 + 1388500 -33.794909 -33.801943 0.0070345453 370.22184 -0.45218395 + 1388600 -33.794669 -33.802381 0.0077122717 405.88998 -0.23688656 + 1388700 -33.79208 -33.794494 0.0024146548 127.08113 -0.21889761 + 1388800 -33.789072 -33.79469 0.0056186714 295.70566 0.25323166 + 1388900 -33.791161 -33.802711 0.011550182 607.87576 0.87890234 + 1389000 -33.795614 -33.799494 0.0038802459 204.21388 0.77667004 + 1389100 -33.795452 -33.795783 0.00033178333 17.461461 0.59561868 + 1389200 -33.79354 -33.800057 0.006516907 342.979 0.59153306 + 1389300 -33.79238 -33.803367 0.010986971 578.23451 0.37457073 + 1389400 -33.793424 -33.796959 0.0035348573 186.03639 -0.27098869 + 1389500 -33.794313 -33.796329 0.002015971 106.09875 -0.62908368 + 1389600 -33.794704 -33.802214 0.0075102225 395.25631 -0.58502014 + 1389700 -33.792896 -33.800452 0.0075553502 397.63134 -0.63102249 + 1389800 -33.78877 -33.789991 0.0012211483 64.267948 -0.83034053 + 1389900 -33.787642 -33.794825 0.0071831064 378.04048 -0.30991168 + 1390000 -33.792912 -33.803468 0.010555957 555.55062 0.23989086 + 1390100 -33.795122 -33.798909 0.0037869982 199.30634 0.20393037 + 1390200 -33.794461 -33.79528 0.00081876531 43.090888 0.2227303 + 1390300 -33.792766 -33.801092 0.0083253341 438.15491 0.58022044 + 1390400 -33.790391 -33.802305 0.011913901 627.018 0.64966669 + 1390500 -33.788245 -33.791054 0.0028092747 147.84962 0.14446181 + 1390600 -33.78974 -33.793437 0.0036970192 194.57082 0.031535462 + 1390700 -33.793628 -33.802616 0.0089883288 473.04773 0.14215172 + 1390800 -33.794978 -33.800072 0.0050936564 268.07459 -0.097260643 + 1390900 -33.793569 -33.794452 0.0008829438 46.468545 -0.38571932 + 1391000 -33.786934 -33.797518 0.010583844 557.01826 -0.20415147 + 1391100 -33.788506 -33.803537 0.015030602 791.04716 -0.013158272 + 1391200 -33.794089 -33.79698 0.0028910805 152.15499 -0.36548408 + 1391300 -33.793996 -33.794969 0.00097337308 51.227757 -0.36276135 + 1391400 -33.791982 -33.801498 0.0095157911 500.8076 0.089509859 + 1391500 -33.787713 -33.799967 0.012253718 644.90223 0.29858989 + 1391600 -33.788265 -33.789747 0.0014827737 78.037058 0.075402971 + 1391700 -33.795085 -33.798686 0.003601586 189.54826 0.37849544 + 1391800 -33.795905 -33.80385 0.0079453115 418.15466 0.54375994 + 1391900 -33.793778 -33.798922 0.0051440676 270.72769 0.27461868 + 1392000 -33.790089 -33.791183 0.0010946329 57.609554 -0.16736667 + 1392100 -33.788256 -33.798918 0.010661611 561.11106 -0.11073381 + 1392200 -33.794781 -33.802624 0.0078430839 412.77451 -0.29713138 + 1392300 -33.796344 -33.797696 0.0013519029 71.149444 -0.56472554 + 1392400 -33.794645 -33.796621 0.0019764566 104.01915 -0.51468131 + 1392500 -33.790384 -33.803 0.01261609 663.97359 0.016477918 + 1392600 -33.791355 -33.800663 0.0093072497 489.83225 0.16345672 + 1392700 -33.796576 -33.797071 0.00049514779 26.059187 0.092656575 + 1392800 -33.79758 -33.800264 0.0026840806 141.26077 0.28677007 + 1392900 -33.795842 -33.803322 0.0074805522 393.69479 0.4623144 + 1393000 -33.792156 -33.796902 0.0047460683 249.78134 0.22332126 + 1393100 -33.790024 -33.7914 0.0013763866 72.437999 -0.077462098 + 1393200 -33.790984 -33.801023 0.010038776 528.33184 0.11522988 + 1393300 -33.796063 -33.803074 0.0070105085 368.95681 -0.031702426 + 1393400 -33.797253 -33.798163 0.00091047929 47.917713 -0.30075366 + 1393500 -33.796405 -33.798197 0.0017914867 94.28435 -0.29645546 + 1393600 -33.793724 -33.803374 0.0096493058 507.83436 0.0022775221 + 1393700 -33.790203 -33.79845 0.0082466745 434.01512 -0.017741662 + 1393800 -33.789642 -33.790032 0.00038992602 20.521458 -0.22461421 + 1393900 -33.792886 -33.799181 0.0062953349 331.31786 0.17656684 + 1394000 -33.797231 -33.803779 0.0065486681 344.65056 0.30977964 + 1394100 -33.796185 -33.798562 0.0023766268 125.07975 0.11115832 + 1394200 -33.793576 -33.794626 0.0010502216 55.272227 -0.033839182 + 1394300 -33.790567 -33.801841 0.01127385 593.33266 0.22154371 + 1394400 -33.790737 -33.800969 0.01023226 538.5147 0.065305963 + 1394500 -33.792411 -33.793046 0.00063449212 33.392754 -0.35843394 + 1394600 -33.793054 -33.797213 0.0041588162 218.87479 -0.24878877 + 1394700 -33.792744 -33.803729 0.010984927 578.12692 0.018514863 + 1394800 -33.79258 -33.797861 0.0052804792 277.90691 -0.14955772 + 1394900 -33.792482 -33.793119 0.00063617442 33.481292 -0.26244557 + 1395000 -33.793112 -33.800785 0.007672485 403.79604 0.11920051 + 1395100 -33.795586 -33.803089 0.0075025384 394.8519 0.2410815 + 1395200 -33.79681 -33.797958 0.0011478425 60.409929 0.039279186 + 1395300 -33.79559 -33.797288 0.0016977511 89.351127 0.048494328 + 1395400 -33.789187 -33.802973 0.013785622 725.52497 0.39518365 + 1395500 -33.789133 -33.798708 0.0095747321 503.90961 0.14579777 + 1395600 -33.792354 -33.792716 0.00036268926 19.088012 -0.21224722 + 1395700 -33.793859 -33.799293 0.0054333586 285.95282 -0.025953885 + 1395800 -33.79365 -33.803538 0.0098872875 520.35912 0.10028033 + 1395900 -33.793053 -33.796379 0.003326319 175.0612 -0.17198842 + 1396000 -33.792324 -33.793563 0.0012382014 65.165434 -0.26499179 + 1396100 -33.791689 -33.801996 0.010306562 542.42519 0.096854096 + 1396200 -33.79491 -33.8022 0.0072894638 383.63798 0.093150648 + 1396300 -33.797642 -33.798109 0.00046756791 24.607682 -0.1117113 + 1396400 -33.797248 -33.799587 0.0023385888 123.07784 -0.027239974 + 1396500 -33.792919 -33.803718 0.010799046 568.34417 0.2699871 + 1396600 -33.790384 -33.797082 0.0066984314 352.53247 0.060185645 + 1396700 -33.790981 -33.791373 0.00039197532 20.629311 -0.17155213 + 1396800 -33.792652 -33.800282 0.0076298304 401.55117 0.15121266 + 1396900 -33.796171 -33.803405 0.0072346278 380.75201 0.16489429 + 1397000 -33.799426 -33.800334 0.00090834891 47.805593 -0.039394379 + 1397100 -33.799046 -33.799868 0.00082237104 43.280654 -0.064371005 + 1397200 -33.797109 -33.803353 0.0062431321 328.57047 0.075207498 + 1397300 -33.794147 -33.801178 0.0070306119 370.01484 0.030287513 + 1397400 -33.791755 -33.792307 0.00055108949 29.003348 -0.29751378 + 1397500 -33.790334 -33.796418 0.0060832616 320.15663 -0.13658662 + 1397600 -33.791919 -33.803687 0.011767752 619.32627 0.14058159 + 1397700 -33.797213 -33.799831 0.0026177413 137.76939 -0.11239921 + 1397800 -33.797205 -33.797562 0.00035758615 18.81944 -0.18303292 + 1397900 -33.794793 -33.801802 0.0070084706 368.84956 0.093493054 + 1398000 -33.791503 -33.802483 0.010980013 577.86829 0.24709306 + 1398100 -33.791734 -33.793482 0.0017476765 91.978657 -0.065555688 + 1398200 -33.792324 -33.795397 0.0030727191 161.71447 0.04231601 + 1398300 -33.792998 -33.803276 0.010278671 540.95728 0.33753847 + 1398400 -33.795547 -33.800374 0.0048272303 254.05282 0.1389549 + 1398500 -33.797789 -33.797916 0.0001275167 6.7110902 -0.03668531 + 1398600 -33.797567 -33.801241 0.0036747099 193.39671 0.048885868 + 1398700 -33.792773 -33.80369 0.010916784 574.5406 0.17432371 + 1398800 -33.790861 -33.795355 0.0044940432 236.51748 -0.19430357 + 1398900 -33.791889 -33.793498 0.0016091409 84.687652 -0.36456829 + 1399000 -33.793326 -33.801789 0.0084620646 445.35091 -0.079138625 + 1399100 -33.795313 -33.801684 0.0063706454 335.28138 -0.083944792 + 1399200 -33.797685 -33.798133 0.00044739198 23.545841 -0.23239248 + 1399300 -33.797875 -33.800096 0.0022215091 116.91604 -0.085090265 + 1399400 -33.793733 -33.803881 0.010147905 534.07518 0.2591976 + 1399500 -33.790762 -33.798694 0.0079319707 417.45254 0.24225636 + 1399600 -33.792584 -33.79384 0.0012553134 66.066025 0.12676106 + 1399700 -33.793786 -33.799644 0.0058579356 308.29793 0.37661691 + 1399800 -33.79269 -33.801943 0.0092522557 486.93797 0.449857 + 1399900 -33.783972 -33.788421 0.0044495621 234.17649 -0.012701861 + 1400000 -33.785233 -33.789596 0.0043634563 229.64481 -0.20095139 + 1400100 -33.791782 -33.802903 0.011121713 585.32585 0.044462313 + 1400200 -33.794515 -33.801154 0.0066387798 349.39306 -0.14337448 + 1400300 -33.794939 -33.795524 0.00058579071 30.829642 -0.40762863 + 1400400 -33.793654 -33.798696 0.0050417536 265.343 -0.22489772 + 1400500 -33.786535 -33.80342 0.016885065 888.64593 0.22237712 + 1400600 -33.787332 -33.79292 0.0055875189 294.06614 -0.077253314 + 1400700 -33.791976 -33.792841 0.00086459263 45.502739 -0.061852785 + 1400800 -33.792893 -33.80126 0.008366773 440.3358 0.32277507 + 1400900 -33.792476 -33.801813 0.0093373084 491.41421 0.35142344 + 1401000 -33.792401 -33.794172 0.0017709885 93.205543 0.027157019 + 1401100 -33.793845 -33.797507 0.0036615836 192.70588 0.065777165 + 1401200 -33.797155 -33.803757 0.0066020728 347.4612 0.15942401 + 1401300 -33.797317 -33.801024 0.0037065355 195.07166 -0.01002284 + 1401400 -33.792997 -33.793285 0.00028802163 15.158321 -0.31450475 + 1401500 -33.790108 -33.798244 0.0081355311 428.16575 -0.18282246 + 1401600 -33.790743 -33.803057 0.012314597 648.10625 -0.052868632 + 1401700 -33.793492 -33.795906 0.0024141688 127.05555 -0.42049349 + 1401800 -33.795383 -33.79667 0.0012868815 67.727427 -0.38699922 + 1401900 -33.797552 -33.803013 0.0054608432 287.39931 -0.086349724 + 1402000 -33.799646 -33.803048 0.0034017408 179.03059 -0.057418783 + 1402100 -33.799119 -33.799719 0.00060050293 31.603933 -0.092025212 + 1402200 -33.794692 -33.798445 0.0037530371 197.51899 0.098896485 + 1402300 -33.791774 -33.803485 0.01171095 616.33685 0.50456872 + 1402400 -33.791021 -33.79706 0.006038988 317.82655 0.40544278 + 1402500 -33.791201 -33.79145 0.00024936459 13.123836 0.23662761 + 1402600 -33.7924 -33.799553 0.0071530111 376.45659 0.4664177 + 1402700 -33.795404 -33.802756 0.0073525746 386.95944 0.44349228 + 1402800 -33.796733 -33.798594 0.0018605069 97.91682 0.11540703 + 1402900 -33.795891 -33.79828 0.0023887707 125.71887 -0.054569617 + 1403000 -33.789416 -33.80292 0.013504404 710.72476 0.064622343 + 1403100 -33.789793 -33.799525 0.0097319707 512.18494 -0.31725537 + 1403200 -33.793601 -33.794026 0.00042526629 22.381385 -0.72137018 + 1403300 -33.794029 -33.797717 0.0036877017 194.08045 -0.53401969 + 1403400 -33.792619 -33.802388 0.0097682641 514.09503 -0.16871048 + 1403500 -33.792146 -33.797687 0.0055404722 291.59011 -0.098719445 + 1403600 -33.793461 -33.795986 0.0025257417 132.92753 0.090470689 + 1403700 -33.796382 -33.802225 0.005842389 307.47972 0.45193956 + 1403800 -33.79889 -33.803072 0.0041817289 220.08066 0.50003 + 1403900 -33.799841 -33.800387 0.00054605443 28.738357 0.35435057 + 1404000 -33.798841 -33.799976 0.0011345254 59.709062 0.23015779 + 1404100 -33.794473 -33.803268 0.0087950547 462.87588 0.17909384 + 1404200 -33.791287 -33.799961 0.0086742626 456.5187 -0.27207365 + 1404300 -33.791593 -33.793042 0.0014496779 76.295254 -0.92730492 + 1404400 -33.793849 -33.798737 0.0048879758 257.2498 -0.90900589 + 1404500 -33.796222 -33.802694 0.0064725772 340.64596 -0.75227384 + 1404600 -33.796507 -33.799058 0.0025515507 134.28584 -0.71123912 + 1404700 -33.792373 -33.794895 0.0025215671 132.70783 -0.37188281 + 1404800 -33.788518 -33.801359 0.012841373 675.83003 0.64183172 + 1404900 -33.793661 -33.80198 0.0083197295 437.85994 1.0821735 + 1405000 -33.79538 -33.796337 0.00095671461 50.351036 1.0534139 + 1405100 -33.794476 -33.796967 0.0024910167 131.09999 1.0451041 + 1405200 -33.792224 -33.802626 0.010402548 547.47683 0.99102761 + 1405300 -33.791734 -33.79876 0.0070260528 369.77489 0.33304621 + 1405400 -33.792829 -33.794469 0.0016396392 86.292746 -0.44695845 + 1405500 -33.794596 -33.800608 0.0060127014 316.44311 -0.68263815 + 1405600 -33.797616 -33.803323 0.0057069628 300.35236 -0.83814814 + 1405700 -33.799731 -33.800727 0.00099604093 52.420746 -0.98360058 + 1405800 -33.798854 -33.799544 0.00068982578 36.304916 -0.80414894 + 1405900 -33.795651 -33.802746 0.0070947794 373.39191 -0.097526242 + 1406000 -33.793517 -33.8019 0.0083829571 441.18756 0.58683158 + 1406100 -33.792196 -33.794205 0.0020088004 105.72137 1.0124024 + 1406200 -33.791643 -33.796329 0.0046858281 246.61095 1.6183679 + 1406300 -33.792052 -33.802367 0.010315522 542.89671 1.9830837 + 1406400 -33.793544 -33.797823 0.0042795787 225.23041 1.5705471 + 1406500 -33.793967 -33.794872 0.00090534299 47.647394 0.93945392 + 1406600 -33.793543 -33.80096 0.00741683 390.34114 0.46867121 + 1406700 -33.792986 -33.803097 0.0101105 532.10658 -0.21995263 + 1406800 -33.794328 -33.796882 0.0025534836 134.38756 -1.1819516 + 1406900 -33.795688 -33.797563 0.001874658 98.661578 -1.5687334 + 1407000 -33.795647 -33.802569 0.0069214886 364.27177 -1.3856544 + 1407100 -33.79064 -33.799112 0.0084721671 445.8826 -1.0859407 + 1407200 -33.787987 -33.789246 0.001258441 66.23063 -0.64100876 + 1407300 -33.790204 -33.797305 0.0071015379 373.74761 0.51240363 + 1407400 -33.793375 -33.803503 0.010127415 532.99684 1.2501176 + 1407500 -33.793978 -33.797557 0.0035787845 188.34824 1.2807207 + 1407600 -33.793375 -33.79449 0.0011145017 58.655231 1.1856107 + 1407700 -33.792097 -33.801526 0.009429062 496.24312 1.1887971 + 1407800 -33.789724 -33.801241 0.011517257 606.14297 0.68225747 + 1407900 -33.787997 -33.789811 0.0018138542 95.461527 -0.4704589 + 1408000 -33.790731 -33.79526 0.0045287485 238.34399 -0.99086017 + 1408100 -33.794439 -33.803269 0.0088303149 464.7316 -1.0504506 + 1408200 -33.795145 -33.799649 0.0045040937 237.04643 -1.2040722 + 1408300 -33.792968 -33.793866 0.00089832884 47.278245 -1.1306736 + 1408400 -33.785026 -33.798001 0.012974504 682.83658 -0.10990581 + 1408500 -33.788751 -33.802683 0.013932473 733.2536 0.84219477 + 1408600 -33.792423 -33.794573 0.0021500288 113.1541 0.93210674 + 1408700 -33.792631 -33.794497 0.0018665139 98.23296 1.1769383 + 1408800 -33.791854 -33.802344 0.010490013 552.08005 1.4670042 + 1408900 -33.791145 -33.799914 0.0087692917 461.52 1.0629102 + 1409000 -33.79312 -33.794141 0.0010211186 53.740561 0.33226639 + 1409100 -33.796068 -33.800101 0.0040332589 212.26682 0.057195216 + 1409200 -33.796842 -33.8038 0.0069578961 366.18787 -0.17389196 + 1409300 -33.792733 -33.79724 0.0045066864 237.18289 -0.65985572 + 1409400 -33.788636 -33.78974 0.0011034941 58.075911 -1.2532683 + 1409500 -33.789423 -33.800222 0.010799395 568.36251 -1.0679299 + 1409600 -33.792804 -33.801937 0.0091325808 480.63958 -1.0009777 + 1409700 -33.794617 -33.795704 0.0010864003 57.176277 -1.04983 + 1409800 -33.795061 -33.797763 0.0027020446 142.2062 -0.57471842 + 1409900 -33.795924 -33.803674 0.0077496179 407.85548 0.10569414 + 1410000 -33.795454 -33.800691 0.0052360536 275.56883 0.40990493 + 1410100 -33.792542 -33.793422 0.00087973615 46.299729 0.61008121 + 1410200 -33.789144 -33.797825 0.0086809242 456.8693 1.2357623 + 1410300 -33.790033 -33.802711 0.012677552 667.20823 1.5564542 + 1410400 -33.79569 -33.797545 0.0018547362 97.61311 1.1479207 + 1410500 -33.796145 -33.797124 0.00097875768 51.511144 0.82848382 + 1410600 -33.794451 -33.802488 0.008037457 423.00419 0.54684103 + 1410700 -33.792275 -33.801786 0.0095112972 500.57109 -0.13210808 + 1410800 -33.792799 -33.794851 0.0020522411 108.00762 -1.1291262 + 1410900 -33.796033 -33.799002 0.0029697552 156.29557 -1.4456239 + 1411000 -33.798627 -33.803212 0.0045851324 241.31143 -1.3283743 + 1411100 -33.796736 -33.800342 0.0036064917 189.80644 -1.0959664 + 1411200 -33.793944 -33.795029 0.0010848618 57.09531 -0.51860991 + 1411300 -33.792214 -33.800086 0.0078715925 414.27489 0.73663219 + 1411400 -33.792535 -33.803128 0.010593328 557.51741 1.750417 + 1411500 -33.795295 -33.79725 0.0019546279 102.87032 1.9640853 + 1411600 -33.79763 -33.798515 0.00088555654 46.606051 1.9724147 + 1411700 -33.797671 -33.802767 0.0050959767 268.19671 1.7309716 + 1411800 -33.791625 -33.801137 0.0095118334 500.59931 0.78581832 + 1411900 -33.790945 -33.793752 0.0028070442 147.73223 -1.1068406 + 1412000 -33.7934 -33.797866 0.0044660946 235.04657 -2.2609223 + 1412100 -33.794895 -33.802553 0.0076574844 403.00657 -2.685704 + 1412200 -33.792894 -33.797618 0.0047244405 248.64309 -2.7909824 + 1412300 -33.786095 -33.788479 0.0023834126 125.43688 -2.1815506 + 1412400 -33.788194 -33.799679 0.011484364 604.41184 -0.38362229 + 1412500 -33.793367 -33.802736 0.0093686568 493.06405 0.75277336 + 1412600 -33.794458 -33.796175 0.0017175595 90.393622 1.2375059 + 1412700 -33.793706 -33.795944 0.0022387026 117.82092 1.7306395 + 1412800 -33.788269 -33.802581 0.014312324 753.24487 2.264951 + 1412900 -33.783807 -33.7964 0.012593542 662.78688 1.8194738 + 1413000 -33.790571 -33.791391 0.00081930297 43.119184 0.94911106 + 1413100 -33.792239 -33.798846 0.0066072399 347.73314 0.60418264 + 1413200 -33.793315 -33.803225 0.0099095956 521.53318 0.096638778 + 1413300 -33.794126 -33.797007 0.0028809858 151.62371 -0.71923506 + 1413400 -33.793794 -33.795214 0.0014201973 74.743715 -1.1987961 + 1413500 -33.7913 -33.802013 0.010713507 563.84233 -1.0982611 + 1413600 -33.788011 -33.80027 0.012259641 645.21396 -1.0460264 + 1413700 -33.791562 -33.792592 0.0010303019 54.223868 -1.1683944 + 1413800 -33.795253 -33.798592 0.0033390612 175.73181 -0.66518263 + 1413900 -33.795291 -33.803415 0.0081242389 427.57145 -0.05726622 + 1414000 -33.793318 -33.79836 0.0050422849 265.37096 0.26208456 + 1414100 -33.791566 -33.792678 0.0011128232 58.566893 0.61219596 + 1414200 -33.791296 -33.80021 0.0089131341 469.0903 1.3365177 + 1414300 -33.79211 -33.802506 0.010396178 547.14157 1.5325047 + 1414400 -33.793118 -33.795038 0.0019202616 101.06165 1.083502 + 1414500 -33.793645 -33.79608 0.002434773 128.13993 0.74963154 + 1414600 -33.794593 -33.802989 0.0083957496 441.86081 0.49284426 + 1414700 -33.795746 -33.800962 0.0052152631 274.47464 -0.091965006 + 1414800 -33.794836 -33.795518 0.00068255367 35.922191 -0.73309392 + 1414900 -33.790833 -33.797984 0.0071509292 376.34703 -0.98239619 + 1415000 -33.787721 -33.803193 0.015472392 814.29817 -1.0201182 + 1415100 -33.793674 -33.796776 0.0031016963 163.23951 -1.4584576 + 1415200 -33.795759 -33.796546 0.00078651399 41.39353 -1.3177532 + 1415300 -33.794808 -33.801961 0.0071523345 376.42099 -0.63013377 + 1415400 -33.791954 -33.801648 0.0096939701 510.185 0.10578696 + 1415500 -33.790251 -33.792576 0.0023242915 122.32539 0.62840396 + 1415600 -33.792139 -33.79646 0.0043211871 227.42022 1.4436357 + 1415700 -33.796858 -33.803242 0.0063847488 336.02363 1.8044412 + 1415800 -33.796292 -33.800187 0.0038943213 204.95466 1.5081205 + 1415900 -33.793066 -33.794037 0.00097058989 51.08128 0.73179385 + 1416000 -33.790796 -33.799505 0.0087096726 458.3823 -0.038259214 + 1416100 -33.791856 -33.802952 0.011095476 583.94498 -0.921999 + 1416200 -33.793314 -33.795712 0.0023979438 126.20164 -1.9099701 + 1416300 -33.793419 -33.79507 0.001650986 86.889923 -2.2074865 + 1416400 -33.791073 -33.802224 0.011150797 586.85651 -1.6855142 + 1416500 -33.786061 -33.798859 0.012798487 673.57295 -0.99861222 + 1416600 -33.79076 -33.791873 0.0011125192 58.550891 -0.44326917 + 1416700 -33.79439 -33.798922 0.0045322099 238.52617 0.44357421 + 1416800 -33.794736 -33.803534 0.0087976972 463.01496 1.085145 + 1416900 -33.792651 -33.79699 0.0043388126 228.34784 1.1419824 + 1417000 -33.786888 -33.788127 0.0012386872 65.191005 1.0130795 + 1417100 -33.783576 -33.799437 0.015861565 834.78001 1.3537464 + 1417200 -33.792891 -33.802065 0.0091736734 482.80225 0.94275586 + 1417300 -33.793761 -33.794829 0.0010679885 56.207281 0.29227282 + 1417400 -33.793327 -33.796698 0.0033703294 177.37743 -0.079304268 + 1417500 -33.791885 -33.803616 0.011730534 617.36753 -0.25276539 + 1417600 -33.791149 -33.798072 0.0069226833 364.33465 -0.83845364 + 1417700 -33.792194 -33.79256 0.00036604586 19.264667 -1.3164058 + 1417800 -33.794857 -33.800447 0.0055903883 294.21715 -1.0425783 + 1417900 -33.796576 -33.803425 0.006849544 360.48539 -0.73202804 + 1418000 -33.794737 -33.797291 0.0025540548 134.41763 -0.56985898 + 1418100 -33.788394 -33.791409 0.0030149817 158.6758 0.069347265 + 1418200 -33.788656 -33.802133 0.013477488 709.30816 1.3687827 + 1418300 -33.793133 -33.80066 0.0075268267 396.13018 1.6824007 + 1418400 -33.79407 -33.79432 0.00025048621 13.182866 1.5055822 + 1418500 -33.793344 -33.797909 0.0045651523 240.25989 1.3915346 + 1418600 -33.791697 -33.803744 0.012046418 633.99225 1.0289373 + 1418700 -33.792155 -33.797272 0.0051173981 269.3241 -0.020925196 + 1418800 -33.798296 -33.798693 0.00039709998 20.899018 -0.68043792 + 1418900 -33.798748 -33.802517 0.0037692426 198.37188 -0.79247917 + 1419000 -33.795441 -33.802975 0.0075333436 396.47315 -0.79198148 + 1419100 -33.791765 -33.79387 0.0021051996 110.79478 -0.99231591 + 1419200 -33.790005 -33.792948 0.0029428351 154.87879 -0.69424354 + 1419300 -33.790716 -33.803028 0.012311567 647.9468 0.1237733 + 1419400 -33.795839 -33.801086 0.0052471282 276.15168 0.26697931 + 1419500 -33.797021 -33.797181 0.00015988671 8.414695 0.27301845 + 1419600 -33.796018 -33.800148 0.0041300453 217.3606 0.51642907 + 1419700 -33.79418 -33.803867 0.0096867453 509.80477 0.69148728 + 1419800 -33.792603 -33.796671 0.0040681296 214.10203 0.32826515 + 1419900 -33.791284 -33.792357 0.0010733733 56.49068 -0.02300373 + 1420000 -33.789893 -33.801096 0.011203039 589.60597 0.0786526 + 1420100 -33.792035 -33.801566 0.0095311796 501.61748 -0.17640714 + 1420200 -33.794964 -33.795646 0.00068205476 35.895934 -0.59531298 + 1420300 -33.795751 -33.798525 0.0027744558 146.01713 -0.51226742 + 1420400 -33.794133 -33.803856 0.0097224179 511.68218 -0.16946145 + 1420500 -33.787293 -33.796693 0.009399737 494.69978 -0.084745012 + 1420600 -33.788029 -33.789186 0.0011570084 60.892322 -0.084326436 + 1420700 -33.791965 -33.799245 0.0072797662 383.1276 0.47248409 + 1420800 -33.792754 -33.80232 0.0095653043 503.41344 0.68023005 + 1420900 -33.792211 -33.794729 0.0025183499 132.53851 0.37981356 + 1421000 -33.791448 -33.794335 0.0028865465 151.91637 0.28096127 + 1421100 -33.79341 -33.803013 0.0096029045 505.3923 0.39949256 + 1421200 -33.797527 -33.802214 0.004686584 246.65074 0.1208216 + 1421300 -33.797263 -33.797658 0.00039559291 20.819702 -0.18789566 + 1421400 -33.793986 -33.798265 0.004278963 225.198 -0.25524126 + 1421500 -33.790559 -33.803397 0.012838392 675.67312 -0.15899181 + 1421600 -33.791236 -33.796 0.0047638022 250.71466 -0.55949504 + 1421700 -33.79244 -33.793226 0.0007854799 41.339107 -0.69867714 + 1421800 -33.794865 -33.801691 0.0068258661 359.23924 -0.31736306 + 1421900 -33.798064 -33.803281 0.0052169908 274.56557 -0.17924446 + 1422000 -33.798618 -33.799514 0.00089608713 47.160267 -0.19886287 + 1422100 -33.794703 -33.796976 0.0022729129 119.62138 -0.0019008256 + 1422200 -33.789993 -33.803001 0.013007428 684.56934 0.67300571 + 1422300 -33.79036 -33.79849 0.0081304848 427.90016 0.76785483 + 1422400 -33.792891 -33.793045 0.00015401651 8.1057515 0.62206677 + 1422500 -33.79495 -33.799612 0.0046617515 245.34382 0.77661688 + 1422600 -33.796114 -33.803416 0.0073023903 384.31829 0.70432542 + 1422700 -33.796017 -33.798972 0.0029544092 155.48792 0.23892931 + 1422800 -33.793294 -33.795467 0.0021727626 114.35056 -0.24445207 + 1422900 -33.789538 -33.801496 0.011958344 629.357 -0.43424884 + 1423000 -33.791359 -33.800698 0.0093397672 491.54362 -0.89884904 + 1423100 -33.795113 -33.795598 0.00048511527 25.531184 -1.3030923 + 1423200 -33.796027 -33.798472 0.002445079 128.68232 -1.0828541 + 1423300 -33.792061 -33.803218 0.01115723 587.19507 -0.43272061 + 1423400 -33.785603 -33.79744 0.01183692 622.96652 0.30732264 + 1423500 -33.792321 -33.794235 0.0019140956 100.73714 0.76315784 + 1423600 -33.794432 -33.7999 0.005468534 287.80407 1.2965455 + 1423700 -33.793711 -33.801822 0.008110954 426.87227 1.4507113 + 1423800 -33.789037 -33.7925 0.0034635511 182.28361 0.92106039 + 1423900 -33.786305 -33.790528 0.0042228544 222.24506 0.28591541 + 1424000 -33.789808 -33.802645 0.012836294 675.56271 0.03939868 + 1424100 -33.792948 -33.800824 0.0078766276 414.53989 -0.59006186 + 1424200 -33.794515 -33.795191 0.00067624072 35.589946 -1.1187923 + 1424300 -33.794788 -33.798915 0.0041269185 217.19604 -1.0345161 + 1424400 -33.791529 -33.803125 0.01159658 610.31767 -0.63334324 + 1424500 -33.7859 -33.792662 0.0067620615 355.88127 -0.44615868 + 1424600 -33.788391 -33.790119 0.0017283147 90.959664 -0.0057131091 + 1424700 -33.792471 -33.801549 0.0090778475 477.75902 0.76161062 + 1424800 -33.793477 -33.802123 0.008645935 455.02785 0.97403905 + 1424900 -33.793359 -33.794579 0.0012197858 64.196237 0.68960715 + 1425000 -33.792312 -33.796074 0.0037615757 197.96837 0.60561076 + 1425100 -33.788305 -33.803378 0.015073479 793.30377 0.6321349 + 1425200 -33.787884 -33.795982 0.0080981303 426.19737 -0.16683975 + 1425300 -33.792921 -33.79331 0.00038896747 20.471011 -0.76352298 + 1425400 -33.794874 -33.800729 0.0058546324 308.12408 -0.67054174 + 1425500 -33.794173 -33.80315 0.0089772573 472.46504 -0.57464303 + 1425600 -33.791666 -33.794744 0.0030772176 161.95122 -0.69235882 + 1425700 -33.784861 -33.789018 0.004157431 218.80188 -0.4153297 + 1425800 -33.782496 -33.801541 0.019044402 1002.2899 0.67788376 + 1425900 -33.791889 -33.799207 0.007318481 385.16513 0.71662526 + 1426000 -33.792894 -33.793141 0.00024717511 13.008606 0.56533934 + 1426100 -33.792916 -33.798544 0.0056275419 296.17251 0.73699576 + 1426200 -33.792811 -33.803628 0.010816767 569.27679 0.75161734 + 1426300 -33.794559 -33.798167 0.0036080818 189.89013 0.21840983 + 1426400 -33.796502 -33.797496 0.00099373704 52.299494 -0.12006456 + 1426500 -33.797252 -33.802542 0.0052900403 278.4101 -0.14862794 + 1426600 -33.79346 -33.801833 0.0083732781 440.67816 -0.28421729 + 1426700 -33.789519 -33.790914 0.001394305 73.381029 -0.82490025 + 1426800 -33.789527 -33.793956 0.0044286136 233.07398 -0.79960187 + 1426900 -33.79238 -33.803482 0.01110182 584.27887 -0.43790032 + 1427000 -33.795454 -33.800077 0.0046230343 243.30617 -0.48177386 + 1427100 -33.795901 -33.796225 0.00032330018 17.015 -0.42399825 + 1427200 -33.793435 -33.800195 0.006760264 355.78667 0.085711183 + 1427300 -33.787325 -33.803046 0.015720747 827.36888 0.77911354 + 1427400 -33.79007 -33.793036 0.0029661989 156.1084 0.7221227 + 1427500 -33.793519 -33.795083 0.0015637086 82.296587 0.8832091 + 1427600 -33.794623 -33.802588 0.0079646752 419.17375 1.0875898 + 1427700 -33.79322 -33.800913 0.0076934295 404.89833 0.77205976 + 1427800 -33.785669 -33.788107 0.0024378817 128.30354 -0.11158375 + 1427900 -33.783745 -33.793776 0.010030913 527.918 -0.64504308 + 1428000 -33.790911 -33.803154 0.012242546 644.31429 -0.91888581 + 1428100 -33.79278 -33.796601 0.003820449 201.06682 -1.3785836 + 1428200 -33.792892 -33.793552 0.0006606182 34.767747 -1.3803044 + 1428300 -33.792189 -33.801138 0.0089487708 470.96583 -0.70290404 + 1428400 -33.792179 -33.802471 0.010291724 541.64424 -0.10192235 + 1428500 -33.795001 -33.796509 0.0015080504 79.36735 0.1362646 + 1428600 -33.796744 -33.798855 0.0021102388 111.05998 0.54546298 + 1428700 -33.796325 -33.803488 0.0071631493 376.99016 0.92790949 + 1428800 -33.790158 -33.798114 0.0079558292 418.70819 0.89099106 + 1428900 -33.788801 -33.789123 0.00032245011 16.970262 0.42730173 + 1429000 -33.790654 -33.798331 0.0076771247 404.04022 0.49995661 + 1429100 -33.793975 -33.803437 0.0094626917 498.01302 0.35092974 + 1429200 -33.795093 -33.797545 0.0024520281 129.04805 -0.17158099 + 1429300 -33.794016 -33.795481 0.0014649288 77.097898 -0.46416547 + 1429400 -33.783614 -33.801341 0.017726985 932.95542 -0.28114808 + 1429500 -33.788098 -33.800112 0.012014126 632.29276 -0.66203544 + 1429600 -33.792818 -33.79327 0.0004520722 23.792157 -1.0346452 + 1429700 -33.793741 -33.797663 0.0039213666 206.37803 -0.7398977 + 1429800 -33.793151 -33.803445 0.010293751 541.75093 -0.22468507 + 1429900 -33.79033 -33.796883 0.0065523401 344.84381 -0.015672203 + 1430000 -33.787202 -33.789403 0.0022012633 115.85052 0.24857052 + 1430100 -33.791194 -33.800304 0.00911001 479.4517 0.98728744 + 1430200 -33.795119 -33.802437 0.0073179326 385.13626 1.112622 + 1430300 -33.794596 -33.795977 0.0013805052 72.654756 0.74464709 + 1430400 -33.792196 -33.795161 0.0029646968 156.02935 0.43200801 + 1430500 -33.787531 -33.803172 0.015641107 823.17751 0.2987455 + 1430600 -33.789864 -33.798769 0.0089054304 468.68486 -0.575007 + 1430700 -33.795062 -33.795367 0.00030534436 16.070001 -1.1379562 + 1430800 -33.795955 -33.800137 0.0041827331 220.13351 -1.0148424 + 1430900 -33.793697 -33.803259 0.0095619485 503.23682 -0.68312286 + 1431000 -33.789076 -33.794137 0.0050608108 266.34596 -0.48342815 + 1431100 -33.789133 -33.7916 0.0024669287 129.83226 0.043927947 + 1431200 -33.792709 -33.802074 0.0093648912 492.86587 0.85410459 + 1431300 -33.793938 -33.801512 0.0075738508 398.60501 1.0653564 + 1431400 -33.793215 -33.793953 0.00073831959 38.857101 0.81436745 + 1431500 -33.791495 -33.796109 0.0046131637 242.78669 0.75397874 + 1431600 -33.788808 -33.803529 0.014720335 774.71812 0.73658306 + 1431700 -33.79228 -33.797638 0.0053577422 281.97319 -0.052764262 + 1431800 -33.795961 -33.796438 0.00047687335 25.097419 -0.49238999 + 1431900 -33.796256 -33.80167 0.0054138592 284.92658 -0.45159962 + 1432000 -33.793066 -33.802774 0.0097078975 510.91799 -0.42489271 + 1432100 -33.788404 -33.79133 0.0029260315 153.99443 -0.72945936 + 1432200 -33.78887 -33.792308 0.0034378305 180.92995 -0.52470988 + 1432300 -33.790776 -33.802749 0.011972381 630.09571 0.062611235 + 1432400 -33.793582 -33.799972 0.0063901338 336.30704 0.11033056 + 1432500 -33.794867 -33.795234 0.00036664456 19.296176 0.055621622 + 1432600 -33.795575 -33.800138 0.0045624613 240.11827 0.32417947 + 1432700 -33.796238 -33.803764 0.0075254657 396.05855 0.48284132 + 1432800 -33.794439 -33.797836 0.003397419 178.80313 0.23453981 + 1432900 -33.790518 -33.792084 0.0015662746 82.431637 -0.056441887 + 1433000 -33.788315 -33.800857 0.012542986 660.12619 0.14177362 + 1433100 -33.792543 -33.801203 0.0086598537 455.76038 -0.10738219 + 1433200 -33.796232 -33.796809 0.00057777739 30.407909 -0.43824812 + 1433300 -33.795902 -33.798775 0.0028724977 151.17699 -0.33483382 + 1433400 -33.793802 -33.803731 0.009929303 522.57036 -0.014915672 + 1433500 -33.791539 -33.798593 0.0070531933 371.20327 -0.023054187 + 1433600 -33.79143 -33.792724 0.0012942196 68.113622 -0.062067864 + 1433700 -33.794794 -33.800241 0.0054467228 286.65616 0.29560731 + 1433800 -33.796741 -33.802621 0.0058795176 309.43376 0.39391874 + 1433900 -33.794552 -33.796959 0.0024073094 126.69454 0.19463216 + 1434000 -33.789767 -33.793589 0.0038222445 201.16132 0.048523018 + 1434100 -33.790432 -33.802746 0.012314522 648.1023 0.23823073 + 1434200 -33.793682 -33.800968 0.0072855545 383.43223 -0.020374817 + 1434300 -33.794612 -33.795044 0.00043222638 22.747689 -0.36894483 + 1434400 -33.79348 -33.797751 0.004271707 224.81613 -0.27100463 + 1434500 -33.784428 -33.803001 0.018572287 977.44291 0.15585032 + 1434600 -33.78743 -33.793875 0.006444859 339.18718 -0.22251987 + 1434700 -33.791874 -33.793196 0.00132202 69.576734 -0.25887822 + 1434800 -33.79379 -33.801843 0.0080531962 423.83253 0.12055161 + 1434900 -33.794466 -33.80255 0.0080839338 425.45023 0.17870606 + 1435000 -33.793202 -33.794478 0.0012752642 67.116017 -0.064077167 + 1435100 -33.787511 -33.791934 0.0044227301 232.76434 -0.013777733 + 1435200 -33.78523 -33.803108 0.017878733 940.94176 0.45568579 + 1435300 -33.791893 -33.798198 0.0063048729 331.81984 0.11417961 + 1435400 -33.793185 -33.793505 0.00032076276 16.881458 -0.15147103 + 1435500 -33.793243 -33.80026 0.0070173674 369.31779 0.049534749 + 1435600 -33.793077 -33.80341 0.010332846 543.80847 0.1413753 + 1435700 -33.793498 -33.795854 0.0023564984 124.02041 -0.22995241 + 1435800 -33.793791 -33.795426 0.0016343911 86.016545 -0.28118873 + 1435900 -33.793371 -33.802792 0.0094213062 495.83494 0.038625054 + 1436000 -33.791391 -33.800141 0.0087498949 460.49917 -0.015569499 + 1436100 -33.788826 -33.789337 0.00051190354 26.941027 -0.33140576 + 1436200 -33.788667 -33.795953 0.0072852809 383.41783 0.018965217 + 1436300 -33.794622 -33.803965 0.0093433184 491.73051 0.23916989 + 1436400 -33.795958 -33.798983 0.0030253564 159.22181 0.041780483 + 1436500 -33.794664 -33.795099 0.00043484999 22.885767 -0.08276389 + 1436600 -33.791012 -33.801214 0.010202606 536.95406 0.19461671 + 1436700 -33.7872 -33.801428 0.014228588 748.83791 0.2515756 + 1436800 -33.794282 -33.794929 0.00064701568 34.051858 -0.20784352 + 1436900 -33.796669 -33.79883 0.0021608201 113.72203 -0.13595078 + 1437000 -33.795995 -33.803832 0.0078370703 412.45802 0.081259968 + 1437100 -33.791835 -33.798729 0.0068935673 362.8023 -0.020920005 + 1437200 -33.789307 -33.789696 0.00038940694 20.49414 -0.30530491 + 1437300 -33.790163 -33.798627 0.0084644341 445.47562 0.087916764 + 1437400 -33.79508 -33.80349 0.0084101527 442.61883 0.20784381 + 1437500 -33.796751 -33.798432 0.0016813892 88.490014 -0.018450861 + 1437600 -33.795968 -33.797042 0.0010738454 56.515526 -0.039734007 + 1437700 -33.793492 -33.802874 0.0093817668 493.75402 0.23923553 + 1437800 -33.790156 -33.800671 0.010514487 553.36807 0.19912457 + 1437900 -33.790288 -33.791067 0.00077870797 40.982706 -0.19436993 + 1438000 -33.794556 -33.798424 0.0038681225 203.57584 -0.025276086 + 1438100 -33.796736 -33.803562 0.0068262736 359.26069 0.11977342 + 1438200 -33.795044 -33.799016 0.003971544 209.01882 -0.028720399 + 1438300 -33.792355 -33.793326 0.00097084758 51.094842 -0.216159 + 1438400 -33.791341 -33.800678 0.0093369866 491.39727 0.098893361 + 1438500 -33.79237 -33.802726 0.010355696 545.01105 0.17874013 + 1438600 -33.793319 -33.794886 0.0015663832 82.43735 -0.14750878 + 1438700 -33.793202 -33.795457 0.0022554446 118.70204 -0.096369648 + 1438800 -33.790631 -33.802946 0.012314279 648.0895 0.28601739 + 1438900 -33.787186 -33.79764 0.010454492 550.21061 0.15684129 + 1439000 -33.79083 -33.791449 0.00061892762 32.573609 -0.14254365 + 1439100 -33.794571 -33.799958 0.0053865847 283.49115 0.11172396 + 1439200 -33.795088 -33.803681 0.0085926221 452.22204 0.22051231 + 1439300 -33.793316 -33.796491 0.0031749388 167.0942 -0.053963191 + 1439400 -33.788294 -33.78966 0.0013664384 71.914434 -0.28197272 + 1439500 -33.781404 -33.800572 0.019167416 1008.764 0.20371398 + 1439600 -33.789193 -33.800341 0.011147993 586.70891 -0.018386914 + 1439700 -33.791424 -33.792015 0.00059105965 31.106942 -0.4208611 + 1439800 -33.793372 -33.797826 0.0044533221 234.37437 -0.21354005 + 1439900 -33.795037 -33.803868 0.0088305883 464.74599 0.045929648 + 1440000 -33.795089 -33.799014 0.0039245715 206.5467 -0.093296734 + 1440100 -33.792092 -33.792637 0.00054504268 28.68511 -0.20067375 + 1440200 -33.786565 -33.799303 0.012737604 670.36874 0.30562184 + 1440300 -33.789386 -33.802109 0.012723145 669.60775 0.43959813 + 1440400 -33.793228 -33.794539 0.0013110094 68.997253 0.088871736 + 1440500 -33.793329 -33.796091 0.0027621442 145.36919 0.124342 + 1440600 -33.792494 -33.803404 0.010909564 574.16063 0.34600453 + 1440700 -33.791881 -33.799094 0.0072131279 379.62049 0.079099565 + 1440800 -33.792267 -33.792743 0.00047539122 25.019416 -0.30402484 + 1440900 -33.794238 -33.799909 0.0056701135 298.41302 -0.1608613 + 1441000 -33.796201 -33.803545 0.0073446512 386.54244 -0.091385239 + 1441100 -33.795521 -33.797902 0.0023811892 125.31986 -0.29674401 + 1441200 -33.790322 -33.791877 0.0015548376 81.829716 -0.36901587 + 1441300 -33.787419 -33.801651 0.014232045 749.01981 0.20965132 + 1441400 -33.791497 -33.800946 0.0094495971 497.32387 0.21661226 + 1441500 -33.793591 -33.794117 0.00052540093 27.651382 -0.030774411 + 1441600 -33.79366 -33.797839 0.0041788043 219.92674 0.15916318 + 1441700 -33.792756 -33.803692 0.010936392 575.57254 0.4076228 + 1441800 -33.792289 -33.79732 0.0050313971 264.79794 0.11389179 + 1441900 -33.792187 -33.792917 0.00073083435 38.46316 -0.12503522 + 1442000 -33.793936 -33.801115 0.00717867 377.807 0.08181504 + 1442100 -33.797784 -33.803301 0.0055173865 290.37513 0.032115616 + 1442200 -33.796981 -33.798171 0.0011901294 62.635449 -0.17579131 + 1442300 -33.793544 -33.795698 0.0021543933 113.3838 -0.21819568 + 1442400 -33.789945 -33.803119 0.013174274 693.35028 0.1448161 + 1442500 -33.790913 -33.799175 0.0082625612 434.85123 0.0081591821 + 1442600 -33.794131 -33.794327 0.00019590093 10.310091 -0.22922731 + 1442700 -33.797112 -33.800738 0.0036259109 190.82846 -0.0073317262 + 1442800 -33.797322 -33.803758 0.0064362713 338.73522 0.14858985 + 1442900 -33.795896 -33.798598 0.0027022425 142.21661 -0.0049444298 + 1443000 -33.794553 -33.79541 0.00085748921 45.128893 -0.072571291 + 1443100 -33.791501 -33.801783 0.01028204 541.13461 0.27757056 + 1443200 -33.789123 -33.801165 0.012041465 633.73158 0.29187713 + 1443300 -33.791766 -33.792547 0.00078044425 41.074085 -0.11077082 + 1443400 -33.795389 -33.798295 0.0029060496 152.9428 0.020471303 + 1443500 -33.796056 -33.80366 0.0076036955 400.17571 0.18338674 + 1443600 -33.794548 -33.799438 0.0048896899 257.34002 0.018317901 + 1443700 -33.79343 -33.793966 0.000536333 28.226727 -0.21775466 + 1443800 -33.792584 -33.800183 0.0075991601 399.93702 0.0026862561 + 1443900 -33.792257 -33.803153 0.010896281 573.46155 0.11663745 + 1444000 -33.793594 -33.79559 0.0019959144 105.04319 -0.21786409 + 1444100 -33.795852 -33.797198 0.0013452125 70.797334 -0.18991077 + 1444200 -33.796689 -33.803084 0.0063950091 336.56362 0.063910545 + 1444300 -33.793464 -33.80089 0.0074260142 390.8245 0.081234076 + 1444400 -33.789112 -33.790401 0.0012891027 67.844326 -0.17723136 + 1444500 -33.789789 -33.796627 0.006837822 359.86847 0.13060887 + 1444600 -33.792462 -33.80367 0.011207912 589.86242 0.379383 + 1444700 -33.793668 -33.797425 0.0037572407 197.74023 0.10296423 + 1444800 -33.793245 -33.793742 0.00049722474 26.168494 -0.065621098 + 1444900 -33.79219 -33.801164 0.0089733694 472.26043 0.18092654 + 1445000 -33.792005 -33.802234 0.010228876 538.33664 0.15092978 + 1445100 -33.792569 -33.794105 0.0015364857 80.863872 -0.25665594 + 1445200 -33.793118 -33.796481 0.0033620838 176.94347 -0.23428087 + 1445300 -33.794417 -33.803633 0.009215946 485.02702 0.0045424342 + 1445400 -33.797364 -33.801095 0.0037308565 196.35165 -0.14604747 + 1445500 -33.798177 -33.798214 3.6831711e-05 1.9384201 -0.24979465 + 1445600 -33.796135 -33.80067 0.0045343684 238.63976 -0.043124835 + 1445700 -33.790588 -33.803606 0.013017481 685.09843 0.31191422 + 1445800 -33.79106 -33.794728 0.0036679661 193.04178 0.061509984 + 1445900 -33.793001 -33.794463 0.0014627984 76.985773 0.090861076 + 1446000 -33.795446 -33.802599 0.0071526259 376.43632 0.3783709 + 1446100 -33.797728 -33.802501 0.0047731107 251.20456 0.27930662 + 1446200 -33.799363 -33.799644 0.00028125506 14.802203 0.06920986 + 1446300 -33.799103 -33.800894 0.0017915494 94.287645 0.037486147 + 1446400 -33.794613 -33.803927 0.0093142117 490.19866 0.099071096 + 1446500 -33.792159 -33.79867 0.0065113353 342.68577 -0.24720043 + 1446600 -33.791757 -33.792429 0.00067166209 35.348977 -0.64561242 + 1446700 -33.792179 -33.799339 0.0071605361 376.85263 -0.45254972 + 1446800 -33.79446 -33.802628 0.0081677822 429.86309 -0.32192977 + 1446900 -33.796461 -33.798052 0.0015903161 83.696917 -0.43920479 + 1447000 -33.796391 -33.798006 0.0016150941 85.000962 -0.27588582 + 1447100 -33.79168 -33.803065 0.011385613 599.21465 0.28328311 + 1447200 -33.788617 -33.800362 0.011744689 618.11248 0.58689797 + 1447300 -33.793049 -33.79403 0.00098025617 51.590008 0.49687097 + 1447400 -33.794094 -33.79775 0.0036552718 192.3737 0.70186767 + 1447500 -33.79291 -33.802454 0.0095441805 502.30171 0.83043294 + 1447600 -33.791194 -33.796662 0.0054674665 287.74789 0.41265088 + 1447700 -33.791052 -33.793228 0.002175725 114.50647 -0.050327856 + 1447800 -33.79596 -33.801978 0.0060185786 316.75242 -0.08661372 + 1447900 -33.79794 -33.803264 0.0053243672 280.2167 -0.20763439 + 1448000 -33.796075 -33.797632 0.0015570585 81.946599 -0.46793889 + 1448100 -33.793294 -33.79576 0.0024660117 129.78399 -0.49752773 + 1448200 -33.791297 -33.802695 0.011398345 599.88475 -0.099041132 + 1448300 -33.791356 -33.799028 0.0076718008 403.76004 -0.10666488 + 1448400 -33.792355 -33.792782 0.00042708545 22.477126 -0.20873774 + 1448500 -33.796134 -33.800159 0.0040248943 211.82659 0.13874002 + 1448600 -33.797808 -33.803583 0.0057751286 303.93986 0.29572151 + 1448700 -33.795592 -33.798975 0.0033831268 178.05095 0.17436411 + 1448800 -33.792555 -33.794803 0.0022478151 118.3005 0.04934722 + 1448900 -33.792042 -33.801523 0.0094814159 498.99846 0.25488094 + 1449000 -33.792876 -33.801446 0.0085702073 451.04237 0.15077727 + 1449100 -33.793008 -33.794018 0.0010102217 53.167068 -0.22655883 + 1449200 -33.790796 -33.794661 0.0038650986 203.41669 -0.2315895 + 1449300 -33.784459 -33.802795 0.018336338 965.02511 0.16695442 + 1449400 -33.790813 -33.79772 0.0069073697 363.52871 -0.18995188 + 1449500 -33.79402 -33.794773 0.00075335465 39.648383 -0.36423243 + 1449600 -33.794317 -33.800706 0.0063887921 336.23643 -0.078464337 + 1449700 -33.793148 -33.803041 0.0098927465 520.64643 0.11936058 + 1449800 -33.789236 -33.793121 0.0038844616 204.43575 -0.10102371 + 1449900 -33.78484 -33.789097 0.0042570058 224.04242 -0.032279206 + 1450000 -33.789828 -33.801668 0.011839309 623.09229 0.45539213 + 1450100 -33.793767 -33.799953 0.0061855628 325.54065 0.31435921 + 1450200 -33.793338 -33.794044 0.00070593496 37.152727 0.053040747 + 1450300 -33.791758 -33.798153 0.0063952665 336.57717 0.15747644 + 1450400 -33.790472 -33.803701 0.013229604 696.26225 0.26279783 + 1450500 -33.795361 -33.798808 0.0034469925 181.41214 -0.14253757 + 1450600 -33.797089 -33.797783 0.00069417122 36.533612 -0.28562987 + 1450700 -33.796092 -33.802029 0.0059368971 312.4536 -0.12450661 + 1450800 -33.7907 -33.801412 0.010712225 563.77485 -0.0075196513 + 1450900 -33.789982 -33.791558 0.0015763427 82.961509 -0.33439193 + 1451000 -33.79112 -33.795084 0.0039642159 208.63315 -0.14228169 + 1451100 -33.793541 -33.803432 0.0098909614 520.55247 0.21755989 + 1451200 -33.796068 -33.800496 0.0044274297 233.01168 0.085555691 + 1451300 -33.798462 -33.798737 0.00027541124 14.494648 -0.014697258 + 1451400 -33.799799 -33.802308 0.0025088289 132.03743 0.098100393 + 1451500 -33.797626 -33.80364 0.0060142396 316.52407 0.16111956 + 1451600 -33.794491 -33.797451 0.0029600055 155.78245 -0.076938375 + 1451700 -33.792757 -33.79411 0.0013537665 71.247522 -0.24618845 + 1451800 -33.790325 -33.801636 0.011311388 595.30828 0.019203099 + 1451900 -33.789697 -33.800347 0.010649533 560.47544 -0.048572819 + 1452000 -33.793609 -33.794117 0.00050854309 26.764169 -0.37834193 + 1452100 -33.79624 -33.799251 0.0030111239 158.47277 -0.20158859 + 1452200 -33.795827 -33.803808 0.0079815068 420.05959 0.068235213 + 1452300 -33.792331 -33.798315 0.005983896 314.92711 0.02638771 + 1452400 -33.787519 -33.789317 0.0017977996 94.616589 -0.081808884 + 1452500 -33.783232 -33.797455 0.014223009 748.54429 0.51862426 + 1452600 -33.790555 -33.801425 0.010869841 572.07004 0.60790763 + 1452700 -33.793982 -33.795308 0.0013257237 69.771658 0.28072862 + 1452800 -33.794279 -33.796717 0.0024374182 128.27915 0.24844559 + 1452900 -33.792949 -33.803202 0.010252764 539.59384 0.37276605 + 1453000 -33.7917 -33.800452 0.0087511357 460.56447 0.087495388 + 1453100 -33.794298 -33.795572 0.0012737555 67.036613 -0.33121116 + 1453200 -33.796756 -33.800176 0.0034201648 180.00023 -0.2945206 + 1453300 -33.796228 -33.802902 0.0066741043 351.25216 -0.17927861 + 1453400 -33.790607 -33.795169 0.0045615081 240.0681 -0.28135407 + 1453500 -33.78966 -33.791588 0.0019274861 101.44188 -0.24558715 + 1453600 -33.792019 -33.80182 0.0098010236 515.81913 0.29298038 + 1453700 -33.79543 -33.802644 0.0072131048 379.61927 0.36164922 + 1453800 -33.795898 -33.79677 0.00087229546 45.908132 0.15048554 + 1453900 -33.792833 -33.795978 0.0031447977 165.5079 0.17040609 + 1454000 -33.785191 -33.803184 0.017992884 946.94943 0.50216629 + 1454100 -33.790115 -33.796802 0.0066869475 351.92808 -0.020967592 + 1454200 -33.793264 -33.793557 0.00029318085 15.429846 -0.31808254 + 1454300 -33.794165 -33.800692 0.0065274067 343.53159 -0.12362209 + 1454400 -33.793679 -33.803361 0.0096827105 509.59242 -0.049529538 + 1454500 -33.790363 -33.793902 0.0035395958 186.28577 -0.33407116 + 1454600 -33.785593 -33.789658 0.0040642472 213.8977 -0.34235724 + 1454700 -33.789331 -33.801988 0.012656823 666.11731 0.15620038 + 1454800 -33.793693 -33.799993 0.0062999867 331.56268 0.071897343 + 1454900 -33.793627 -33.794005 0.00037831699 19.910486 -0.11751722 + 1455000 -33.792313 -33.79832 0.0060069704 316.1415 0.12510084 + 1455100 -33.789844 -33.803887 0.014042999 739.07054 0.42986493 + 1455200 -33.792101 -33.7968 0.0046986749 247.28707 0.081820822 + 1455300 -33.795319 -33.796117 0.00079860994 42.030129 -0.043975219 + 1455400 -33.796052 -33.801896 0.0058432584 307.52548 0.12569242 + 1455500 -33.792615 -33.801665 0.0090499942 476.29312 0.10144015 + 1455600 -33.788116 -33.790166 0.0020493403 107.85495 -0.37375989 + 1455700 -33.789312 -33.794295 0.0049823806 262.21825 -0.34457046 + 1455800 -33.79236 -33.803753 0.011393033 599.60515 -0.088720496 + 1455900 -33.7943 -33.799563 0.0052624643 276.9588 -0.26881095 + 1456000 -33.794171 -33.79427 9.9584107e-05 5.2410227 -0.40863013 + 1456100 -33.791004 -33.799169 0.0081649036 429.71159 -0.023241116 + 1456200 -33.782548 -33.802577 0.020029838 1054.1525 0.54353156 + 1456300 -33.789664 -33.792302 0.0026378642 138.82844 0.16957549 + 1456400 -33.792483 -33.794659 0.0021762661 114.53494 0.27953189 + 1456500 -33.793614 -33.803195 0.0095814728 504.26436 0.5891045 + 1456600 -33.794108 -33.80092 0.006811538 358.48517 0.37858235 + 1456700 -33.793141 -33.793468 0.00032782045 17.252898 -0.059226688 + 1456800 -33.78949 -33.796469 0.0069789705 367.29699 -0.083942541 + 1456900 -33.786896 -33.803635 0.016738293 880.92144 -0.034040432 + 1457000 -33.793192 -33.79659 0.0033983643 178.85288 -0.60751515 + 1457100 -33.794989 -33.795689 0.0007004047 36.861675 -0.69905313 + 1457200 -33.794393 -33.802184 0.0077907481 410.02013 -0.33767378 + 1457300 -33.792333 -33.802024 0.009690907 510.02379 -0.073824965 + 1457400 -33.78967 -33.791305 0.0016355724 86.078714 -0.13190553 + 1457500 -33.784193 -33.790874 0.006680702 351.59939 0.35386438 + 1457600 -33.787048 -33.803135 0.016086269 846.60597 1.143786 + 1457700 -33.793372 -33.798212 0.0048397273 254.71053 0.90515156 + 1457800 -33.794023 -33.794375 0.00035212209 18.531872 0.63822211 + 1457900 -33.793389 -33.800684 0.0072956039 383.96112 0.65835947 + 1458000 -33.790556 -33.802934 0.012378419 651.46518 0.39901529 + 1458100 -33.788311 -33.791925 0.0036143977 190.22253 -0.50842124 + 1458200 -33.791344 -33.794248 0.0029040627 152.83823 -0.89253517 + 1458300 -33.795006 -33.802692 0.0076867312 404.54581 -0.79724906 + 1458400 -33.794863 -33.800528 0.0056656922 298.18033 -0.82074372 + 1458500 -33.792089 -33.792982 0.00089276201 46.985268 -0.78102684 + 1458600 -33.786182 -33.796154 0.009972244 524.83031 -0.0039404793 + 1458700 -33.784488 -33.80348 0.018992581 999.56257 1.0581328 + 1458800 -33.793916 -33.796914 0.0029984601 157.80628 0.98695984 + 1458900 -33.795062 -33.795769 0.00070722916 37.22084 0.976885 + 1459000 -33.794033 -33.801812 0.0077790826 409.40618 1.0748899 + 1459100 -33.789602 -33.801099 0.011497509 605.10362 0.69673323 + 1459200 -33.788863 -33.791242 0.0023788545 125.19699 -0.35140028 + 1459300 -33.794468 -33.798174 0.0037055131 195.01785 -0.69211687 + 1459400 -33.796215 -33.803552 0.0073369519 386.13723 -0.72658192 + 1459500 -33.794463 -33.799061 0.0045985982 242.02012 -0.90766371 + 1459600 -33.791511 -33.791804 0.00029335929 15.439238 -0.95152278 + 1459700 -33.789564 -33.79914 0.0095757864 503.9651 -0.2552895 + 1459800 -33.791086 -33.80307 0.011983227 630.66656 0.28951416 + 1459900 -33.792661 -33.794974 0.0023137415 121.77015 0.30289834 + 1460000 -33.79297 -33.795242 0.0022726299 119.60648 0.53399198 + 1460100 -33.792967 -33.802986 0.010018189 527.24833 0.92543798 + 1460200 -33.793023 -33.800169 0.0071460989 376.09281 0.75008852 + 1460300 -33.792688 -33.79296 0.00027198073 14.314103 0.23727011 + 1460400 -33.791873 -33.798037 0.0061634657 324.3777 0.13123257 + 1460500 -33.79171 -33.803738 0.012028802 633.06511 0.01021949 + 1460600 -33.794264 -33.797487 0.0032230476 169.62612 -0.59264138 + 1460700 -33.796218 -33.796917 0.00069934605 36.805959 -0.77874798 + 1460800 -33.796977 -33.802592 0.0056153152 295.52903 -0.54816719 + 1460900 -33.79323 -33.801967 0.0087362637 459.78177 -0.35077979 + 1461000 -33.788756 -33.790294 0.0015386224 80.976326 -0.32514617 + 1461100 -33.789223 -33.794028 0.0048055777 252.91327 0.26287156 + 1461200 -33.792925 -33.803647 0.010721561 564.26619 0.84955889 + 1461300 -33.794973 -33.799629 0.0046555273 245.01625 0.76677774 + 1461400 -33.794492 -33.794688 0.00019647386 10.340244 0.50699785 + 1461500 -33.793532 -33.800336 0.0068042711 358.10272 0.52256096 + 1461600 -33.79245 -33.803272 0.010821371 569.51911 0.34603708 + 1461700 -33.792037 -33.794551 0.0025138052 132.29933 -0.39025981 + 1461800 -33.791864 -33.793918 0.0020536814 108.08342 -0.74412357 + 1461900 -33.793794 -33.802896 0.0091021295 479.03695 -0.59170844 + 1462000 -33.795937 -33.801541 0.0056037451 294.92011 -0.70291945 + 1462100 -33.795548 -33.79589 0.00034260392 18.030939 -0.75317649 + 1462200 -33.79161 -33.797352 0.0057423227 302.21332 -0.24417898 + 1462300 -33.78691 -33.803851 0.016940985 891.58892 0.67895726 + 1462400 -33.791054 -33.795686 0.0046311852 243.73515 0.7865115 + 1462500 -33.792559 -33.793223 0.00066404893 34.948303 0.90212391 + 1462600 -33.792612 -33.801399 0.0087870103 462.45252 1.2166393 + 1462700 -33.792358 -33.802028 0.0096703368 508.9412 1.0398456 + 1462800 -33.792645 -33.793897 0.001252524 65.919218 0.31303054 + 1462900 -33.7944 -33.797547 0.0031473637 165.64295 -0.025366918 + 1463000 -33.796334 -33.803806 0.0074719135 393.24015 -0.14382547 + 1463100 -33.795704 -33.800286 0.0045819037 241.14151 -0.51451679 + 1463200 -33.791058 -33.791112 5.3168823e-05 2.7982278 -0.95786029 + 1463300 -33.78814 -33.797783 0.0096435966 507.53389 -0.69089024 + 1463400 -33.790315 -33.803296 0.012981218 683.18995 -0.44034965 + 1463500 -33.7931 -33.795467 0.0023671523 124.58111 -0.61630889 + 1463600 -33.793631 -33.795267 0.0016359611 86.099173 -0.35412976 + 1463700 -33.793229 -33.803005 0.0097757827 514.49073 0.26715044 + 1463800 -33.792916 -33.80091 0.0079946758 420.75266 0.4867281 + 1463900 -33.792728 -33.793017 0.00028869126 15.193564 0.41242171 + 1464000 -33.792399 -33.797542 0.0051434199 270.6936 0.68987377 + 1464100 -33.792115 -33.803831 0.011716377 616.62247 0.89337337 + 1464200 -33.79253 -33.796876 0.0043458328 228.7173 0.42976874 + 1464300 -33.792574 -33.79325 0.00067550372 35.551158 -0.012861467 + 1464400 -33.792624 -33.801546 0.008922354 469.57553 0.00099021724 + 1464500 -33.794465 -33.802729 0.0082640479 434.92947 -0.24701342 + 1464600 -33.797576 -33.798199 0.00062211924 32.741581 -0.63796705 + 1464700 -33.797846 -33.799409 0.0015633654 82.278529 -0.5902116 + 1464800 -33.794209 -33.803739 0.0095294043 501.52405 -0.20527829 + 1464900 -33.790751 -33.798661 0.0079104832 416.32167 -0.053411933 + 1465000 -33.791216 -33.791404 0.00018842821 9.9168084 -0.0015481432 + 1465100 -33.792777 -33.799309 0.0065311035 343.72615 0.53205662 + 1465200 -33.795719 -33.803726 0.0080067357 421.38736 0.74119753 + 1465300 -33.798708 -33.800057 0.0013495108 71.023552 0.51264714 + 1465400 -33.799647 -33.80011 0.00046343578 24.390212 0.36615339 + 1465500 -33.79781 -33.803215 0.0054048213 284.45092 0.29064348 + 1465600 -33.7924 -33.801739 0.009339349 491.52161 -0.12139425 + 1465700 -33.79064 -33.791843 0.0012033176 63.329531 -1.0675197 + 1465800 -33.790742 -33.795439 0.0046973455 247.2171 -1.3641501 + 1465900 -33.793428 -33.803358 0.0099305469 522.63583 -1.2169966 + 1466000 -33.796238 -33.799839 0.0036008622 189.51017 -1.2778382 + 1466100 -33.796735 -33.797108 0.00037346525 19.655143 -1.0251911 + 1466200 -33.794579 -33.801168 0.0065890078 346.7736 -0.21781192 + 1466300 -33.788543 -33.802982 0.014439419 759.93373 0.92251581 + 1466400 -33.790715 -33.793642 0.0029270174 154.04631 1.4837217 + 1466500 -33.793947 -33.795721 0.0017734232 93.333679 1.9610857 + 1466600 -33.794755 -33.802368 0.0076130895 400.67011 2.152773 + 1466700 -33.793369 -33.800366 0.006996692 368.22966 1.6262101 + 1466800 -33.792783 -33.794157 0.001373521 72.287187 0.51178244 + 1466900 -33.792914 -33.798859 0.0059446152 312.8598 -0.33315815 + 1467000 -33.794059 -33.803641 0.009581478 504.26464 -1.0159361 + 1467100 -33.795423 -33.798489 0.0030654281 161.33075 -1.7706086 + 1467200 -33.795323 -33.795765 0.00044241935 23.284136 -2.000652 + 1467300 -33.791744 -33.800953 0.0092097184 484.69927 -1.3925406 + 1467400 -33.787428 -33.801493 0.014064843 740.22012 -0.46238823 + 1467500 -33.791576 -33.793285 0.0017089816 89.942177 0.080778857 + 1467600 -33.794564 -33.797489 0.0029246816 153.92338 0.82873592 + 1467700 -33.794411 -33.803466 0.0090554097 476.57814 1.4257308 + 1467800 -33.792931 -33.798955 0.0060244307 317.06041 1.391902 + 1467900 -33.790786 -33.791234 0.00044771616 23.562902 0.96344546 + 1468000 -33.787471 -33.797911 0.010439553 549.42436 0.799541 + 1468100 -33.788051 -33.803022 0.01497049 787.88354 0.29924377 + 1468200 -33.794289 -33.796294 0.0020043971 105.48963 -0.5961265 + 1468300 -33.795319 -33.796745 0.0014266505 75.083342 -0.87471467 + 1468400 -33.794209 -33.802918 0.0087082084 458.30524 -0.69590598 + 1468500 -33.788224 -33.799397 0.011172109 587.97813 -0.61910261 + 1468600 -33.785843 -33.787093 0.0012493712 65.753293 -0.76182048 + 1468700 -33.791669 -33.797595 0.0059259435 311.87712 -0.11839432 + 1468800 -33.79389 -33.80351 0.0096195074 506.26609 0.31956746 + 1468900 -33.793118 -33.797093 0.0039747839 209.18933 0.282384 + 1469000 -33.791301 -33.792253 0.00095237336 50.122561 0.30347149 + 1469100 -33.789332 -33.800938 0.011605893 610.8078 0.76434212 + 1469200 -33.793101 -33.802363 0.0092623907 487.47136 0.69034803 + 1469300 -33.796537 -33.797299 0.00076274258 40.142462 0.30663625 + 1469400 -33.796317 -33.798584 0.0022670842 119.31462 0.16972516 + 1469500 -33.793304 -33.803649 0.010345599 544.47963 0.14825177 + 1469600 -33.790675 -33.798065 0.007390292 388.94448 -0.37218727 + 1469700 -33.791225 -33.791567 0.00034222208 18.010843 -0.96559385 + 1469800 -33.792165 -33.799417 0.0072518812 381.66004 -0.81963173 + 1469900 -33.793904 -33.803287 0.0093829018 493.81375 -0.64684364 + 1470000 -33.795755 -33.797621 0.0018666721 98.241288 -0.73367871 + 1470100 -33.797115 -33.798212 0.0010967952 57.723355 -0.46727066 + 1470200 -33.797426 -33.803258 0.0058317326 306.91888 0.030576167 + 1470300 -33.793139 -33.801252 0.0081124787 426.95252 0.39603045 + 1470400 -33.789946 -33.79115 0.0012043009 63.381282 0.56358542 + 1470500 -33.790363 -33.795987 0.0056245679 296.01599 1.1324193 + 1470600 -33.792888 -33.803292 0.010404188 547.56315 1.4581627 + 1470700 -33.796071 -33.79912 0.0030490131 160.46684 1.0920229 + 1470800 -33.799057 -33.799373 0.00031594309 16.627803 0.76216821 + 1470900 -33.799103 -33.802599 0.003496356 184.0101 0.52999958 + 1471000 -33.796889 -33.803455 0.0065658574 345.55522 0.0760741 + 1471100 -33.79493 -33.797718 0.0027879364 146.72661 -0.80302303 + 1471200 -33.793255 -33.796098 0.002842758 149.61182 -1.4936022 + 1471300 -33.790915 -33.801754 0.010838876 570.44035 -1.6540837 + 1471400 -33.785111 -33.796358 0.011246507 591.89361 -1.8704858 + 1471500 -33.780306 -33.780772 0.0004659422 24.522123 -2.047369 + 1471600 -33.787264 -33.795681 0.0084168112 442.96927 -0.98794714 + 1471700 -33.791436 -33.802983 0.011546557 607.68499 -0.22214426 + 1471800 -33.793944 -33.797665 0.00372021 195.79134 0.066485254 + 1471900 -33.795479 -33.797077 0.0015972019 84.059309 0.4504361 + 1472000 -33.796303 -33.802678 0.0063754061 335.53193 0.90869282 + 1472100 -33.794787 -33.802157 0.0073708895 387.92334 1.0011237 + 1472200 -33.789674 -33.791647 0.0019731373 103.84446 0.57521487 + 1472300 -33.788084 -33.793289 0.0052042903 273.89716 0.324627 + 1472400 -33.790892 -33.802434 0.011541532 607.42051 0.24523339 + 1472500 -33.794651 -33.798904 0.0042531889 223.84154 -0.25776735 + 1472600 -33.795035 -33.795788 0.00075307831 39.63384 -0.57624412 + 1472700 -33.794022 -33.800804 0.0067820229 356.93182 -0.43430574 + 1472800 -33.793674 -33.80349 0.009816078 516.61143 -0.29919418 + 1472900 -33.794107 -33.797235 0.0031281479 164.63163 -0.44486559 + 1473000 -33.7942 -33.796153 0.0019525727 102.76216 -0.28526926 + 1473100 -33.792669 -33.801922 0.0092535364 487.00537 0.21774177 + 1473200 -33.787307 -33.798312 0.011005137 579.19055 0.48243934 + 1473300 -33.785978 -33.786766 0.00078789447 41.466183 0.3883489 + 1473400 -33.791088 -33.796863 0.0057751861 303.94289 0.82791505 + 1473500 -33.793994 -33.803311 0.0093174966 490.37154 0.9711939 + 1473600 -33.793712 -33.798254 0.0045421484 239.04922 0.57074819 + 1473700 -33.793002 -33.794871 0.0018690697 98.367471 0.090606174 + 1473800 -33.792929 -33.801453 0.0085240111 448.6111 -0.058976682 + 1473900 -33.795212 -33.802481 0.0072691907 382.57102 -0.38971349 + 1474000 -33.796444 -33.797325 0.0008810876 46.370855 -0.80402026 + 1474100 -33.795111 -33.797159 0.0020477152 107.76942 -0.80653479 + 1474200 -33.788867 -33.803021 0.014153612 744.89197 -0.27913104 + 1474300 -33.789699 -33.798629 0.008930385 469.9982 -0.18260343 + 1474400 -33.792911 -33.793633 0.00072157595 37.975898 -0.14148244 + 1474500 -33.79395 -33.799678 0.0057279405 301.4564 0.31416961 + 1474600 -33.793503 -33.803274 0.0097710663 514.2425 0.6177797 + 1474700 -33.792717 -33.795943 0.0032258801 169.77519 0.43095612 + 1474800 -33.79196 -33.793594 0.0016335428 85.971902 0.32580966 + 1474900 -33.791725 -33.802005 0.010279664 541.00957 0.52438241 + 1475000 -33.795963 -33.802067 0.0061045795 321.27858 0.27838091 + 1475100 -33.797398 -33.79792 0.00052291654 27.520631 -0.071905571 + 1475200 -33.796136 -33.799177 0.003040563 160.02212 -0.15984653 + 1475300 -33.79115 -33.803792 0.012642618 665.36971 -0.049649999 + 1475400 -33.790288 -33.797322 0.0070344468 370.21666 -0.47878972 + 1475500 -33.792806 -33.793467 0.00066059531 34.766542 -0.75691943 + 1475600 -33.795637 -33.800675 0.0050382449 265.15833 -0.46764007 + 1475700 -33.799006 -33.802974 0.0039683855 208.85259 -0.33715938 + 1475800 -33.799714 -33.800777 0.0010632423 55.957494 -0.29379361 + 1475900 -33.798007 -33.799854 0.0018467557 97.193108 -0.067489499 + 1476000 -33.796356 -33.803402 0.0070453379 370.78985 0.394151 + 1476100 -33.793823 -33.801755 0.0079312806 417.41623 0.68255311 + 1476200 -33.791857 -33.794382 0.0025246253 132.86878 0.67898368 + 1476300 -33.79061 -33.795493 0.0048833105 257.00428 0.84921807 + 1476400 -33.787558 -33.80031 0.012751894 671.12082 1.0489372 + 1476500 -33.782804 -33.790343 0.0075383227 396.7352 0.48780291 + 1476600 -33.785252 -33.787283 0.0020314964 106.91584 -0.10843387 + 1476700 -33.792013 -33.800313 0.008299952 436.81907 -0.0020367389 + 1476800 -33.79371 -33.802606 0.0088960067 468.1889 -0.12333687 + 1476900 -33.795298 -33.79795 0.0026522418 139.58512 -0.45495618 + 1477000 -33.796538 -33.799227 0.0026893018 141.53556 -0.43339685 + 1477100 -33.797149 -33.803274 0.0061249982 322.35319 -0.21556003 + 1477200 -33.794073 -33.799999 0.0059265003 311.90642 -0.1452845 + 1477300 -33.790069 -33.79064 0.00057180001 30.093324 -0.13663603 + 1477400 -33.788692 -33.796088 0.0073958968 389.23945 0.44073769 + 1477500 -33.790495 -33.802395 0.011900098 626.29156 0.87692972 + 1477600 -33.795353 -33.797927 0.0025738584 135.45987 0.67612092 + 1477700 -33.796484 -33.797757 0.0012732573 67.010395 0.54453191 + 1477800 -33.795528 -33.802647 0.0071184264 374.63643 0.52148056 + 1477900 -33.79416 -33.802485 0.008324357 438.10349 0.21067972 + 1478000 -33.79331 -33.795647 0.0023369511 122.99165 -0.46029477 + 1478100 -33.792102 -33.796247 0.0041448548 218.14001 -0.77658954 + 1478200 -33.787546 -33.801784 0.014238907 749.38098 -0.71884134 + 1478300 -33.785696 -33.793673 0.0079776739 419.85786 -1.1542449 + 1478400 -33.789483 -33.790021 0.00053844544 28.337903 -1.2762598 + 1478500 -33.793015 -33.799532 0.0065169378 342.98062 -0.72404137 + 1478600 -33.79352 -33.802731 0.0092111577 484.77501 -0.27068465 + 1478700 -33.79391 -33.797636 0.0037264807 196.12135 -0.037841959 + 1478800 -33.795239 -33.798063 0.0028241753 148.63383 0.34880998 + 1478900 -33.798919 -33.803208 0.0042885415 225.70211 0.67557936 + 1479000 -33.79916 -33.802323 0.0031637913 166.50752 0.67502455 + 1479100 -33.796619 -33.797014 0.0003942604 20.749573 0.37912128 + 1479200 -33.794745 -33.798419 0.0036741166 193.36548 0.13697199 + 1479300 -33.791443 -33.803576 0.01213306 638.55214 -0.029710034 + 1479400 -33.79001 -33.796422 0.0064129216 337.50634 -0.79882011 + 1479500 -33.792573 -33.793621 0.0010473427 55.120711 -1.302239 + 1479600 -33.796526 -33.801723 0.0051966553 273.49533 -1.0907157 + 1479700 -33.796417 -33.802933 0.0065160044 342.9315 -0.85807333 + 1479800 -33.794611 -33.796389 0.0017778805 93.568267 -0.64209285 + 1479900 -33.793148 -33.795809 0.0026610587 140.04915 0.029704217 + 1480000 -33.79201 -33.80309 0.011080703 583.16754 1.023225 + 1480100 -33.79227 -33.79964 0.0073704576 387.90061 1.4241543 + 1480200 -33.793946 -33.794195 0.00024914332 13.112191 1.4204195 + 1480300 -33.796891 -33.800434 0.0035421724 186.42138 1.4938108 + 1480400 -33.796954 -33.803604 0.0066498178 349.97398 1.2581251 + 1480500 -33.792696 -33.797264 0.0045680269 240.41118 0.37246204 + 1480600 -33.790197 -33.792626 0.0024291618 127.84462 -0.9187892 + 1480700 -33.791299 -33.801131 0.0098315559 517.42602 -1.6001482 + 1480800 -33.792784 -33.801127 0.0083433727 439.10426 -2.1647832 + 1480900 -33.792692 -33.793612 0.00092008258 48.423126 -2.5024846 + 1481000 -33.790601 -33.795128 0.0045275693 238.28193 -1.8976925 + 1481100 -33.78251 -33.803602 0.021092256 1110.0666 -0.22993112 + 1481200 -33.791769 -33.798464 0.0066951932 352.36205 0.58538189 + 1481300 -33.794439 -33.794848 0.00040935609 21.544046 1.0885363 + 1481400 -33.794563 -33.800421 0.0058577293 308.28707 1.6402327 + 1481500 -33.791613 -33.802568 0.010954571 576.52931 1.7877473 + 1481600 -33.786411 -33.790171 0.0037594528 197.85665 1.0446465 + 1481700 -33.787466 -33.791198 0.0037320079 196.41225 0.34035107 + 1481800 -33.794666 -33.803342 0.008676705 456.64724 0.12196598 + 1481900 -33.794833 -33.801043 0.0062106149 326.85912 -0.35032374 + 1482000 -33.793015 -33.79339 0.00037473195 19.721808 -0.98397607 + 1482100 -33.790024 -33.796839 0.0068158554 358.71239 -1.0311973 + 1482200 -33.788126 -33.803491 0.015365428 808.66877 -0.76023845 + 1482300 -33.794589 -33.797489 0.0029006272 152.65742 -1.032882 + 1482400 -33.796219 -33.79684 0.00062148099 32.70799 -0.83729257 + 1482500 -33.795164 -33.802347 0.0071827157 378.01992 -0.19938235 + 1482600 -33.791345 -33.801983 0.010638176 559.87773 0.38563673 + 1482700 -33.789012 -33.791017 0.0020053217 105.53829 0.67408807 + 1482800 -33.791214 -33.795425 0.0042104832 221.59398 1.283312 + 1482900 -33.796157 -33.803259 0.007102219 373.78345 1.5437346 + 1483000 -33.795738 -33.800043 0.0043047217 226.55366 1.217217 + 1483100 -33.792236 -33.793063 0.00082768855 43.56051 0.42162652 + 1483200 -33.789145 -33.798904 0.0097589199 513.60325 -0.25998566 + 1483300 -33.791706 -33.80329 0.011584004 609.65577 -0.98203524 + 1483400 -33.793945 -33.796214 0.0022691759 119.4247 -1.8079577 + 1483500 -33.793668 -33.795015 0.0013465947 70.870076 -1.9557973 + 1483600 -33.79214 -33.802301 0.010161253 534.77769 -1.3181814 + 1483700 -33.790132 -33.800173 0.010040505 528.42282 -0.73695573 + 1483800 -33.790982 -33.79198 0.00099807671 52.527887 -0.21363524 + 1483900 -33.795355 -33.799289 0.0039337959 207.03217 0.65432279 + 1484000 -33.796681 -33.803807 0.0071259676 375.03332 1.1160953 + 1484100 -33.794319 -33.798378 0.004059184 213.63123 1.0753955 + 1484200 -33.79002 -33.790702 0.00068208009 35.897267 0.76118131 + 1484300 -33.789494 -33.800282 0.010788689 567.7991 0.76699643 + 1484400 -33.791844 -33.802354 0.010510372 553.15152 0.3745246 + 1484500 -33.794074 -33.79525 0.0011761862 61.901632 -0.35475113 + 1484600 -33.795069 -33.797442 0.0023726721 124.87162 -0.60195762 + 1484700 -33.796794 -33.803558 0.0067642295 355.99537 -0.5249108 + 1484800 -33.798064 -33.801706 0.0036415964 191.65397 -0.62129673 + 1484900 -33.796018 -33.796432 0.00041350614 21.762459 -0.65226326 + 1485000 -33.791642 -33.798552 0.006909954 363.66472 -0.089270593 + 1485100 -33.790374 -33.803405 0.013031007 685.81025 0.60140487 + 1485200 -33.79253 -33.795683 0.0031527326 165.9255 0.62209179 + 1485300 -33.794633 -33.795602 0.00096983489 51.041545 0.77498139 + 1485400 -33.797889 -33.802572 0.0046825879 246.44042 0.93970477 + 1485500 -33.798164 -33.802722 0.0045572407 239.84351 0.74761426 + 1485600 -33.795509 -33.797234 0.0017253555 90.803921 0.21068322 + 1485700 -33.794371 -33.79838 0.0040090058 210.9904 -0.30227592 + 1485800 -33.79331 -33.803321 0.010010902 526.86483 -0.62884294 + 1485900 -33.79195 -33.797955 0.0060053882 316.05823 -1.2059338 + 1486000 -33.789479 -33.789743 0.00026411738 13.900262 -1.6916402 + 1486100 -33.785651 -33.796678 0.011026763 580.32869 -1.2242849 + 1486200 -33.788936 -33.802209 0.013272141 698.50095 -0.67715814 + 1486300 -33.794485 -33.796615 0.0021300974 112.10513 -0.65781519 + 1486400 -33.794853 -33.797127 0.0022739973 119.67845 -0.21944248 + 1486500 -33.793861 -33.803202 0.0093416401 491.64218 0.49295983 + 1486600 -33.790866 -33.800258 0.0093921805 494.30208 0.83625894 + 1486700 -33.787539 -33.789403 0.0018641525 98.108685 0.8775533 + 1486800 -33.789127 -33.795777 0.006649662 349.96578 1.2694208 + 1486900 -33.793925 -33.802157 0.0082318647 433.2357 1.3091109 + 1487000 -33.794265 -33.797627 0.0033614302 176.90908 0.85179357 + 1487100 -33.792645 -33.794789 0.0021446798 112.87258 0.24660361 + 1487200 -33.790302 -33.801589 0.011286685 594.00817 -0.127881 + 1487300 -33.793129 -33.80248 0.0093509186 492.1305 -0.72849879 + 1487400 -33.796525 -33.797638 0.0011133393 58.594055 -1.2932153 + 1487500 -33.796511 -33.798406 0.0018959244 99.78081 -1.255206 + 1487600 -33.792611 -33.802823 0.010212508 537.47521 -0.65509397 + 1487700 -33.789438 -33.797971 0.0085323612 449.05056 -0.14932709 + 1487800 -33.791032 -33.792159 0.0011268935 59.3074 0.32615926 + 1487900 -33.793082 -33.799471 0.006389108 336.25306 1.1006224 + 1488000 -33.793874 -33.80306 0.0091858143 483.44122 1.4165673 + 1488100 -33.793617 -33.796577 0.0029600763 155.78617 1.1321875 + 1488200 -33.793069 -33.795031 0.0019620045 103.25854 0.77428826 + 1488300 -33.792411 -33.802323 0.0099118796 521.65338 0.52539829 + 1488400 -33.792956 -33.801152 0.0081953255 431.31267 -0.10267798 + 1488500 -33.795559 -33.796116 0.00055684383 29.306194 -0.83563013 + 1488600 -33.796852 -33.799523 0.0026716218 140.60507 -0.9763636 + 1488700 -33.795254 -33.803476 0.0082227448 432.75573 -0.78468908 + 1488800 -33.789596 -33.796973 0.0073768433 388.23668 -0.71538856 + 1488900 -33.789965 -33.791798 0.0018325845 96.447286 -0.5200887 + 1489000 -33.79244 -33.800397 0.0079566828 418.75312 0.224519 + 1489100 -33.793644 -33.802355 0.0087110739 458.45605 0.59372715 + 1489200 -33.7932 -33.794932 0.0017321099 91.159397 0.5281426 + 1489300 -33.792099 -33.79468 0.0025806054 135.81496 0.66852859 + 1489400 -33.791399 -33.802871 0.011471913 603.75653 0.93024328 + 1489500 -33.792342 -33.800033 0.0076912323 404.7827 0.59198665 + 1489600 -33.793652 -33.794493 0.00084110837 44.266783 0.075976432 + 1489700 -33.795018 -33.799813 0.004795783 252.39778 -0.05492543 + 1489800 -33.797149 -33.803601 0.0064519915 339.56256 -0.16767347 + 1489900 -33.798213 -33.800116 0.0019029051 100.1482 -0.43602808 + 1490000 -33.796148 -33.796785 0.00063761187 33.556944 -0.57697936 + 1490100 -33.791229 -33.801483 0.010254183 539.66852 -0.20929803 + 1490200 -33.790708 -33.801819 0.011111088 584.76663 -0.0071892716 + 1490300 -33.793388 -33.794517 0.001128504 59.392157 -0.19523127 + 1490400 -33.7956 -33.798082 0.0024822287 130.63748 0.070309193 + 1490500 -33.797754 -33.803365 0.0056104382 295.27236 0.32681608 + 1490600 -33.799723 -33.802073 0.0023505789 123.70887 0.24384803 + 1490700 -33.79935 -33.799809 0.00045941432 24.178566 0.15393877 + 1490800 -33.794881 -33.800719 0.005837569 307.22605 0.18973912 + 1490900 -33.792403 -33.80343 0.011026489 580.31431 0.1651779 + 1491000 -33.792707 -33.796313 0.0036062196 189.79212 -0.24794359 + 1491100 -33.792822 -33.793909 0.0010865322 57.18322 -0.46963871 + 1491200 -33.791002 -33.800604 0.0096016284 505.32514 -0.22719591 + 1491300 -33.785847 -33.799388 0.013541248 712.66378 -0.094726611 + 1491400 -33.78944 -33.791337 0.0018969895 99.836866 -0.42192539 + 1491500 -33.794316 -33.798366 0.0040495612 213.12479 -0.13756927 + 1491600 -33.794754 -33.803736 0.0089813284 472.6793 0.20560948 + 1491700 -33.793557 -33.798784 0.0052271652 275.10104 0.11140904 + 1491800 -33.790375 -33.791437 0.0010621351 55.899221 0.007968547 + 1491900 -33.784573 -33.797841 0.013268101 698.2883 0.51551931 + 1492000 -33.789843 -33.801837 0.011994731 631.27197 0.5688374 + 1492100 -33.794141 -33.795579 0.0014383594 75.699572 0.22521597 + 1492200 -33.793832 -33.79625 0.0024185763 127.28751 0.17239341 + 1492300 -33.791734 -33.803055 0.011320334 595.77907 0.30999915 + 1492400 -33.79074 -33.799959 0.009218974 485.18638 0.039247303 + 1492500 -33.795012 -33.795893 0.00088086275 46.359021 -0.3745269 + 1492600 -33.797041 -33.800426 0.0033858827 178.19599 -0.31822302 + 1492700 -33.795647 -33.803249 0.007602735 400.12516 -0.15976769 + 1492800 -33.790939 -33.795731 0.0047920271 252.20011 -0.29929438 + 1492900 -33.790549 -33.792183 0.0016342538 86.009318 -0.30316473 + 1493000 -33.791836 -33.801289 0.0094531376 497.5102 0.2082227 + 1493100 -33.794265 -33.802024 0.0077592764 408.36379 0.28333142 + 1493200 -33.795751 -33.79665 0.00089868176 47.296819 0.097857119 + 1493300 -33.79693 -33.799169 0.0022395738 117.86677 0.19356289 + 1493400 -33.797111 -33.803665 0.0065539827 344.93027 0.31038357 + 1493500 -33.793115 -33.799733 0.0066184497 348.3231 0.13730961 + 1493600 -33.789973 -33.791871 0.0018981593 99.898432 -0.26423031 + 1493700 -33.790986 -33.798539 0.0075528359 397.49902 -0.20716088 + 1493800 -33.793806 -33.802256 0.0084500359 444.71785 -0.20153139 + 1493900 -33.797155 -33.798468 0.0013125462 69.078136 -0.42209115 + 1494000 -33.798658 -33.799506 0.00084798412 44.628648 -0.38098245 + 1494100 -33.797252 -33.802921 0.0056689624 298.35243 -0.099518021 + 1494200 -33.793899 -33.802628 0.0087291025 459.40488 0.15883677 + 1494300 -33.794174 -33.797398 0.0032240422 169.67846 0.15262115 + 1494400 -33.794726 -33.79823 0.0035042074 184.42331 0.36634812 + 1494500 -33.793091 -33.801384 0.0082932519 436.46645 0.63722325 + 1494600 -33.786361 -33.793735 0.0073739184 388.08275 0.48763663 + 1494700 -33.786301 -33.787104 0.00080391854 42.309516 0.19183028 + 1494800 -33.789762 -33.798673 0.0089111707 468.98697 0.44447606 + 1494900 -33.793834 -33.802851 0.0090169821 474.55573 0.35758171 + 1495000 -33.795196 -33.798126 0.0029294109 154.17228 0.013905998 + 1495100 -33.795271 -33.798039 0.0027678407 145.66899 -0.15419539 + 1495200 -33.793373 -33.802877 0.009503533 500.16246 -0.072543707 + 1495300 -33.787013 -33.79844 0.011426815 601.38309 -0.21011217 + 1495400 -33.788016 -33.788876 0.00086049721 45.287201 -0.71936003 + 1495500 -33.791275 -33.796016 0.0047413185 249.53136 -0.48243512 + 1495600 -33.793031 -33.801604 0.0085722129 451.14792 -0.17034831 + 1495700 -33.792873 -33.797751 0.0048771106 256.67798 -0.19107466 + 1495800 -33.793157 -33.796232 0.0030751707 161.84349 -0.051339589 + 1495900 -33.795928 -33.802386 0.0064578505 339.87091 0.31252223 + 1496000 -33.797418 -33.803006 0.0055884049 294.11277 0.36711157 + 1496100 -33.795752 -33.797552 0.0017995562 94.709038 0.22105828 + 1496200 -33.791685 -33.794982 0.0032974415 173.54141 0.16830968 + 1496300 -33.78953 -33.80166 0.012130198 638.4015 0.32146071 + 1496400 -33.790405 -33.797611 0.007205869 379.23846 0.030629136 + 1496500 -33.79234 -33.793048 0.00070750606 37.235413 -0.31927105 + 1496600 -33.796701 -33.800419 0.0037180719 195.67881 -0.19237203 + 1496700 -33.797073 -33.803268 0.0061954669 326.0619 -0.059204013 + 1496800 -33.7949 -33.79925 0.0043500534 228.93943 -0.14441436 + 1496900 -33.793176 -33.796768 0.0035928734 189.08972 -0.13498882 + 1497000 -33.79348 -33.801653 0.0081731221 430.14412 0.18387452 + 1497100 -33.796393 -33.801369 0.0049759041 261.8774 0.17169297 + 1497200 -33.798074 -33.798484 0.00040916654 21.53407 0.052363651 + 1497300 -33.796774 -33.799016 0.0022418027 117.98407 0.11778529 + 1497400 -33.791918 -33.803249 0.011331331 596.35786 0.32254723 + 1497500 -33.792822 -33.800647 0.0078252837 411.8377 0.13315846 + 1497600 -33.796015 -33.797686 0.0016709476 87.940484 -0.095503895 + 1497700 -33.796679 -33.800599 0.0039197987 206.29551 -0.061353173 + 1497800 -33.791378 -33.801861 0.010483119 551.7172 0.065218388 + 1497900 -33.787681 -33.792156 0.0044746111 235.49479 -0.25221393 + 1498000 -33.789569 -33.791529 0.001960273 103.16742 -0.35251723 + 1498100 -33.792488 -33.800952 0.0084646085 445.48479 0.0011936341 + 1498200 -33.794478 -33.801258 0.0067803171 356.84204 0.037913735 + 1498300 -33.795238 -33.797067 0.0018293039 96.274631 -0.11950745 + 1498400 -33.7964 -33.800006 0.0036058264 189.77143 0.035054526 + 1498500 -33.797339 -33.803768 0.0064290874 338.35714 0.20452895 + 1498600 -33.795317 -33.800083 0.0047659565 250.82804 0.082765447 + 1498700 -33.791057 -33.792886 0.0018291885 96.268561 -0.094680078 + 1498800 -33.789552 -33.798119 0.0085674512 450.89732 0.12933883 + 1498900 -33.790458 -33.800726 0.010268837 540.43973 0.16208113 + 1499000 -33.793016 -33.794762 0.0017455994 91.86934 -0.10509821 + 1499100 -33.796249 -33.797811 0.0015618977 82.201281 -0.074088076 + 1499200 -33.796231 -33.802661 0.0064304876 338.43082 0.10498417 + 1499300 -33.792907 -33.801923 0.0090161771 474.51336 0.17188577 + 1499400 -33.79015 -33.795651 0.0055005273 289.48784 -0.040564648 + 1499500 -33.795584 -33.799287 0.0037037177 194.92336 -0.0050861956 + 1499600 -33.797126 -33.801841 0.0047157199 248.18413 0.092972612 + 1499700 -33.794593 -33.797929 0.0033362074 175.58162 -0.036032837 + 1499800 -33.791903 -33.793459 0.0015556323 81.871541 -0.15482393 + 1499900 -33.790917 -33.80057 0.0096538046 508.07112 0.17384609 + 1500000 -33.794657 -33.803442 0.0087851621 462.35524 0.16627727 + 1500100 -33.797274 -33.7991 0.0018259097 96.096 -0.046176762 + 1500200 -33.796864 -33.798499 0.0016353301 86.065966 -0.058452276 + 1500300 -33.791234 -33.802488 0.011253773 592.27601 0.1693354 + 1500400 -33.788307 -33.797979 0.0096726003 509.06033 0.07665145 + 1500500 -33.790754 -33.790931 0.00017708306 9.3197233 -0.26633475 + 1500600 -33.792853 -33.797969 0.0051159684 269.24885 -0.058650187 + 1500700 -33.79435 -33.803121 0.0087708605 461.60257 0.1627608 + 1500800 -33.795159 -33.79887 0.0037112787 195.32129 -0.02553328 + 1500900 -33.795514 -33.797284 0.0017707002 93.19037 -0.10634684 + 1501000 -33.795176 -33.802347 0.0071710608 377.40653 0.13826309 + 1501100 -33.792664 -33.801971 0.0093072393 489.8317 0.15034965 + 1501200 -33.789244 -33.791517 0.0022737552 119.66571 -0.21638435 + 1501300 -33.787675 -33.792128 0.0044522969 234.32042 -0.12703732 + 1501400 -33.790817 -33.801503 0.010686237 562.40711 0.14760015 + 1501500 -33.794866 -33.799136 0.0042701674 224.7351 -0.026166612 + 1501600 -33.794487 -33.79584 0.0013527817 71.195693 -0.11050564 + 1501700 -33.792529 -33.800491 0.007962031 419.03459 0.10857188 + 1501800 -33.7913 -33.803635 0.012334864 649.17287 0.28262089 + 1501900 -33.796082 -33.798761 0.002678584 140.97148 0.023878979 + 1502000 -33.797259 -33.798137 0.00087777329 46.196425 -0.049407478 + 1502100 -33.795419 -33.80184 0.0064208836 337.92538 0.13533223 + 1502200 -33.790913 -33.800244 0.0093305803 491.06012 0.16930241 + 1502300 -33.790357 -33.791809 0.0014523334 76.435014 -0.22598762 + 1502400 -33.791893 -33.797001 0.0051079547 268.8271 -0.056027577 + 1502500 -33.795377 -33.80379 0.0084129558 442.76636 0.13583518 + 1502600 -33.79714 -33.800554 0.0034141729 179.68488 -0.071585321 + 1502700 -33.796118 -33.796693 0.00057469994 30.245945 -0.18253537 + 1502800 -33.79039 -33.799749 0.0093593897 492.57633 0.073182289 + 1502900 -33.788247 -33.802165 0.013917768 732.4797 0.18651004 + 1503000 -33.79224 -33.794024 0.001784215 93.901646 -0.14717299 + 1503100 -33.794258 -33.796045 0.0017865506 94.024566 -0.10237902 + 1503200 -33.79435 -33.80265 0.0083005866 436.85247 0.15562572 + 1503300 -33.789088 -33.799463 0.010374982 546.02605 0.20371006 + 1503400 -33.784952 -33.788677 0.0037250556 196.04635 -0.14654781 + 1503500 -33.791975 -33.79833 0.0063553808 334.47802 0.092104843 + 1503600 -33.794054 -33.802905 0.0088509906 465.81974 0.26860078 + 1503700 -33.793312 -33.796579 0.0032672393 171.95189 -0.028657664 + 1503800 -33.790027 -33.791005 0.000978477 51.496372 -0.21228617 + 1503900 -33.785003 -33.800236 0.015233206 801.71007 0.25072503 + 1504000 -33.793662 -33.802533 0.0088713086 466.88906 0.060508008 + 1504100 -33.795949 -33.797026 0.0010774548 56.705486 -0.200287 + 1504200 -33.795003 -33.79814 0.0031367674 165.08527 -0.12277319 + 1504300 -33.791449 -33.803597 0.012148376 639.35818 0.15129698 + 1504400 -33.788784 -33.7967 0.0079163911 416.6326 0.0047203565 + 1504500 -33.79026 -33.790514 0.00025408291 13.372157 -0.22858392 + 1504600 -33.795129 -33.800276 0.0051472456 270.89494 0.060411469 + 1504700 -33.795678 -33.802921 0.0072425191 381.16732 0.20220889 + 1504800 -33.793571 -33.796707 0.0031355092 165.01905 -0.010879223 + 1504900 -33.791221 -33.794722 0.0035008392 184.24605 -0.066272004 + 1505000 -33.792708 -33.802558 0.0098494762 518.36915 0.23387478 + 1505100 -33.798086 -33.802085 0.0039996698 210.49905 0.058363708 + 1505200 -33.797373 -33.797623 0.0002503692 13.176708 -0.12400553 + 1505300 -33.794145 -33.797996 0.0038512232 202.68644 -0.038091066 + 1505400 -33.790658 -33.803651 0.012992268 683.77145 0.1864132 + 1505500 -33.791291 -33.796988 0.0056961767 299.7847 -0.10529738 + 1505600 -33.794122 -33.795011 0.00088967269 46.82268 -0.23275327 + 1505700 -33.797171 -33.802129 0.0049574677 260.9071 -0.035615028 + 1505800 -33.797338 -33.803125 0.0057871993 304.57514 0.038854902 + 1505900 -33.789741 -33.791782 0.0020403062 107.37949 -0.18913749 + 1506000 -33.78816 -33.792217 0.0040575219 213.54376 -0.099047192 + 1506100 -33.791257 -33.803266 0.012009165 632.03165 0.37271795 + 1506200 -33.795038 -33.800236 0.0051980016 273.56619 0.18524978 + 1506300 -33.795528 -33.795722 0.0001945196 10.237393 -0.044905763 + 1506400 -33.793679 -33.799811 0.0061316818 322.70494 0.14074104 + 1506500 -33.785411 -33.803301 0.017890589 941.56576 0.3468022 + 1506600 -33.788728 -33.792635 0.0039072093 205.63294 -0.29357195 + 1506700 -33.791663 -33.793354 0.0016911948 89.006075 -0.35382409 + 1506800 -33.792577 -33.802278 0.0097010201 510.55604 -0.051791291 + 1506900 -33.792959 -33.800904 0.0079450862 418.1428 -0.10217501 + 1507000 -33.792822 -33.793459 0.00063654023 33.500545 -0.28722581 + 1507100 -33.792641 -33.797706 0.0050650771 266.57049 -0.048219617 + 1507200 -33.79343 -33.803936 0.010506461 552.9457 0.26970075 + 1507300 -33.794965 -33.798806 0.003840889 202.14256 0.13792337 + 1507400 -33.795192 -33.795603 0.00041094291 21.627559 0.0068531445 + 1507500 -33.793159 -33.801161 0.0080020562 421.14108 0.27203222 + 1507600 -33.787059 -33.801624 0.014565068 766.54652 0.41517942 + 1507700 -33.788297 -33.789946 0.001648517 86.759978 -0.21571578 + 1507800 -33.792784 -33.795882 0.0030984414 163.06821 -0.12167131 + 1507900 -33.794 -33.803594 0.0095941685 504.93253 0.1357058 + 1508000 -33.793381 -33.799664 0.0062827907 330.65767 -0.092741502 + 1508100 -33.792071 -33.792491 0.00042015176 22.112212 -0.3260277 + 1508200 -33.790121 -33.798469 0.0083479004 439.34255 -0.027555518 + 1508300 -33.789898 -33.803303 0.013405149 705.50103 0.14942845 + 1508400 -33.794393 -33.796537 0.0021447717 112.87742 -0.11644288 + 1508500 -33.795842 -33.796883 0.0010401744 54.743452 -0.11434749 + 1508600 -33.795022 -33.802856 0.0078340115 412.29704 0.14616015 + 1508700 -33.78725 -33.799793 0.012543401 660.148 0.28653336 + 1508800 -33.787226 -33.788665 0.0014395705 75.763311 -0.15796806 + 1508900 -33.79083 -33.796583 0.005753157 302.78352 0.086042646 + 1509000 -33.793023 -33.80349 0.010467387 550.88927 0.35197353 + 1509100 -33.7937 -33.797643 0.0039426776 207.4996 0.022224544 + 1509200 -33.79256 -33.793073 0.00051298411 26.997896 -0.17849051 + 1509300 -33.786667 -33.799964 0.013297224 699.82102 0.19037627 + 1509400 -33.787321 -33.802093 0.01477193 777.43352 0.1067535 + 1509500 -33.793568 -33.794815 0.0012468535 65.620789 -0.31783263 + 1509600 -33.794327 -33.79702 0.002692686 141.71366 -0.23458289 + 1509700 -33.793416 -33.803531 0.010115175 532.35264 0.033990527 + 1509800 -33.789739 -33.797741 0.0080027331 421.1767 -0.0075063796 + 1509900 -33.78407 -33.784294 0.00022413779 11.796172 -0.31333863 + 1510000 -33.786579 -33.797333 0.010753712 565.95825 0.22352778 + 1510100 -33.793769 -33.803495 0.0097260046 511.87095 0.40582904 + 1510200 -33.794194 -33.796426 0.0022321572 117.47644 0.086256308 + 1510300 -33.793203 -33.794805 0.0016022084 84.322796 -0.026603958 + 1510400 -33.790335 -33.802754 0.012418891 653.59518 0.29095063 + 1510500 -33.787967 -33.799284 0.011317031 595.60524 0.043361785 + 1510600 -33.791952 -33.792113 0.00016074554 8.4598945 -0.4342441 + 1510700 -33.795331 -33.799253 0.003921944 206.40842 -0.23771007 + 1510800 -33.795287 -33.803841 0.0085537796 450.17779 -0.065156133 + 1510900 -33.792403 -33.797044 0.0046411747 244.26089 -0.20326353 + 1511000 -33.787373 -33.788617 0.0012439787 65.469488 -0.27952537 + 1511100 -33.785711 -33.799764 0.014052368 739.5636 0.33808835 + 1511200 -33.795262 -33.802547 0.0072851578 383.41136 0.346836 + 1511300 -33.796051 -33.796741 0.00069047948 36.339319 0.12953275 + 1511400 -33.794428 -33.79712 0.0026921935 141.68774 0.11876431 + 1511500 -33.789575 -33.803684 0.014108898 742.5387 0.3833703 + 1511600 -33.789252 -33.797338 0.0080860422 425.56119 0.0023057916 + 1511700 -33.793753 -33.794059 0.00030620687 16.115394 -0.37357267 + 1511800 -33.796146 -33.80105 0.0049040702 258.09684 -0.18080023 + 1511900 -33.795099 -33.803455 0.0083561089 439.77456 -0.053833903 + 1512000 -33.792564 -33.795218 0.0026537836 139.66626 -0.30371499 + 1512100 -33.790072 -33.792029 0.0019573847 103.01541 -0.25122021 + 1512200 -33.789464 -33.802459 0.012994961 683.91319 0.310751 + 1512300 -33.796313 -33.802076 0.0057629415 303.29847 0.21314013 + 1512400 -33.797048 -33.797309 0.00026105921 13.739313 0.057827673 + 1512500 -33.795277 -33.798945 0.0036676244 193.0238 0.14197364 + 1512600 -33.790815 -33.803914 0.013099835 689.43263 0.36075495 + 1512700 -33.790436 -33.796008 0.0055717927 293.23848 -0.0021503887 + 1512800 -33.791571 -33.792114 0.00054342469 28.599957 -0.29648572 + 1512900 -33.792284 -33.801046 0.0087625081 461.16298 -0.02798564 + 1513000 -33.792658 -33.80244 0.0097813193 514.78211 0.019224822 + 1513100 -33.792818 -33.79416 0.0013423112 70.644642 -0.34438036 + 1513200 -33.792648 -33.795756 0.0031081022 163.57665 -0.23256517 + 1513300 -33.793533 -33.803574 0.010041313 528.46532 0.14750922 + 1513400 -33.797283 -33.80127 0.0039864007 209.80071 -0.00099993857 + 1513500 -33.797357 -33.797429 7.2108437e-05 3.7950027 -0.092625869 + 1513600 -33.794583 -33.799895 0.0053121431 279.57336 0.12745804 + 1513700 -33.790029 -33.803529 0.013500447 710.5165 0.37621624 + 1513800 -33.790573 -33.794079 0.0035060704 184.52136 0.055207133 + 1513900 -33.792376 -33.793848 0.0014722059 77.480885 -0.0032189647 + 1514000 -33.795095 -33.802729 0.0076340578 401.77365 0.23409477 + 1514100 -33.799414 -33.8031 0.0036855457 193.96699 0.14881543 + 1514200 -33.799705 -33.799997 0.00029153774 15.343371 -0.033974122 + 1514300 -33.798414 -33.800308 0.001894102 99.684898 -0.063814172 + 1514400 -33.79532 -33.803884 0.0085646929 450.75215 0.10186587 + 1514500 -33.792109 -33.798109 0.0059998607 315.76732 -0.17487135 + 1514600 -33.790496 -33.790715 0.00021856151 11.502698 -0.50707524 + 1514700 -33.79057 -33.799447 0.0088763601 467.15491 -0.14628235 + 1514800 -33.795953 -33.803526 0.0075725625 398.53721 -0.10659086 + 1514900 -33.797432 -33.798761 0.0013289141 69.939563 -0.26242484 + 1515000 -33.796086 -33.79739 0.0013042499 68.641509 -0.17309419 + 1515100 -33.793039 -33.803077 0.010038662 528.32581 0.23521228 + 1515200 -33.791781 -33.800386 0.0086049867 452.87278 0.33248987 + 1515300 -33.792063 -33.792348 0.00028456405 14.976352 0.1388948 + 1515400 -33.792419 -33.797816 0.0053973071 284.05546 0.36421845 + 1515500 -33.794276 -33.803752 0.0094765375 498.74171 0.54967408 + 1515600 -33.798175 -33.800334 0.0021587373 113.61242 0.24982204 + 1515700 -33.798066 -33.79844 0.00037414241 19.690781 0.046796118 + 1515800 -33.794823 -33.802003 0.0071799178 377.87267 0.093726067 + 1515900 -33.791609 -33.802399 0.010790667 567.90318 -0.087119795 + 1516000 -33.791914 -33.793477 0.0015626517 82.240968 -0.69268177 + 1516100 -33.792597 -33.795558 0.0029615511 155.86379 -0.712204 + 1516200 -33.794656 -33.803151 0.0084951045 447.08977 -0.44190283 + 1516300 -33.797818 -33.80134 0.0035219272 185.35589 -0.47867006 + 1516400 -33.797672 -33.798065 0.00039290972 20.678488 -0.40333152 + 1516500 -33.792911 -33.799629 0.0067183984 353.58332 0.073911998 + 1516600 -33.789954 -33.803536 0.013582088 714.81315 0.76553047 + 1516700 -33.792859 -33.796173 0.0033142954 174.42841 0.81247367 + 1516800 -33.794193 -33.795097 0.00090473249 47.615264 0.85764824 + 1516900 -33.793979 -33.801597 0.0076172365 400.88836 1.0433866 + 1517000 -33.788051 -33.800195 0.012144207 639.1388 0.82242199 + 1517100 -33.786863 -33.789564 0.002701237 142.1637 -0.20038469 + 1517200 -33.792647 -33.797514 0.0048664951 256.1193 -0.4733098 + 1517300 -33.794468 -33.803627 0.0091583464 481.9956 -0.50684525 + 1517400 -33.793844 -33.798373 0.0045295557 238.38648 -0.84219664 + 1517500 -33.791115 -33.791343 0.0002282556 12.012888 -0.98330017 + 1517600 -33.784866 -33.798244 0.013377353 704.03816 -0.28366719 + 1517700 -33.789031 -33.802683 0.013651687 718.47612 0.16922141 + 1517800 -33.794972 -33.796265 0.0012928853 68.043398 0.061130554 + 1517900 -33.795143 -33.797408 0.0022654886 119.23065 0.24667239 + 1518000 -33.793249 -33.803561 0.010312041 542.7135 0.59055711 + 1518100 -33.78943 -33.798389 0.008958983 471.50328 0.5002503 + 1518200 -33.788307 -33.788639 0.00033224398 17.485705 0.025762076 + 1518300 -33.792538 -33.798823 0.0062855512 330.80296 0.19598654 + 1518400 -33.795812 -33.803391 0.007579393 398.89669 0.22197585 + 1518500 -33.794813 -33.797617 0.0028042519 147.58528 -0.13203646 + 1518600 -33.792135 -33.79394 0.0018057601 95.035543 -0.35567548 + 1518700 -33.788926 -33.801981 0.01305459 687.05144 -0.069894639 + 1518800 -33.793464 -33.801723 0.0082590632 434.66713 -0.27196889 + 1518900 -33.796592 -33.796953 0.00036070612 18.983641 -0.49980438 + 1519000 -33.796179 -33.798807 0.0026282709 138.32355 -0.31939275 + 1519100 -33.79181 -33.803685 0.011874969 624.96903 0.12153372 + 1519200 -33.78946 -33.797039 0.0075798929 398.923 0.19217258 + 1519300 -33.79174 -33.792703 0.00096271978 50.667083 0.20171041 + 1519400 -33.793477 -33.800582 0.0071048764 373.92331 0.5730912 + 1519500 -33.79337 -33.802676 0.0093056082 489.74586 0.68065179 + 1519600 -33.792499 -33.794425 0.0019261184 101.36989 0.25711252 + 1519700 -33.791029 -33.79369 0.0026610932 140.05096 0.041502083 + 1519800 -33.789041 -33.803021 0.013980482 735.78032 0.21010037 + 1519900 -33.793271 -33.800455 0.0071836473 378.06895 -0.22691675 + 1520000 -33.796045 -33.796277 0.000231588 12.18827 -0.56635397 + 1520100 -33.796127 -33.800098 0.0039704847 208.96307 -0.40757049 + 1520200 -33.79175 -33.803613 0.01186331 624.35543 -0.096633496 + 1520300 -33.787624 -33.793027 0.0054027379 284.34128 -0.20497558 + 1520400 -33.789343 -33.790681 0.0013384956 70.443831 -0.06219936 + 1520500 -33.791733 -33.801736 0.010002558 526.42572 0.49104247 + 1520600 -33.793751 -33.802014 0.0082633521 434.89285 0.55058994 + 1520700 -33.794274 -33.795026 0.00075203348 39.578851 0.26069426 + 1520800 -33.793383 -33.797088 0.0037059856 195.04271 0.24981605 + 1520900 -33.789047 -33.803776 0.014729365 775.19335 0.4263242 + 1521000 -33.788996 -33.796206 0.0072098752 379.4493 -0.12046509 + 1521100 -33.792936 -33.793236 0.00029982935 15.779751 -0.5272772 + 1521200 -33.795067 -33.801025 0.0059576411 313.54534 -0.32400294 + 1521300 -33.79455 -33.803103 0.008552734 450.12276 -0.21118437 + 1521400 -33.791782 -33.79444 0.0026580815 139.89246 -0.40473936 + 1521500 -33.782204 -33.787003 0.0047992461 252.58004 -0.23998185 + 1521600 -33.782155 -33.802115 0.019959253 1050.4377 0.69347059 + 1521700 -33.78974 -33.798323 0.0085825115 451.68992 0.56816234 + 1521800 -33.792607 -33.792721 0.00011455243 6.028792 0.35092397 + 1521900 -33.794076 -33.799208 0.0051315844 270.07071 0.50795835 + 1522000 -33.794548 -33.803545 0.0089971114 473.50995 0.50895975 + 1522100 -33.793621 -33.797574 0.0039533126 208.05931 0.079351957 + 1522200 -33.790704 -33.793221 0.0025167837 132.45608 -0.32723862 + 1522300 -33.788929 -33.801146 0.012217055 642.97271 -0.27924097 + 1522400 -33.793601 -33.801078 0.0074768673 393.50086 -0.53291948 + 1522500 -33.79555 -33.796048 0.00049867118 26.24462 -0.78645356 + 1522600 -33.79469 -33.797932 0.00324148 170.5962 -0.55360497 + 1522700 -33.787325 -33.803689 0.016363099 861.17532 0.15939539 + 1522800 -33.785331 -33.796262 0.010931134 575.29582 0.43861131 + 1522900 -33.79255 -33.793532 0.00098167555 51.664709 0.52205326 + 1523000 -33.792991 -33.799352 0.0063612461 334.78671 0.87761828 + 1523100 -33.791758 -33.801745 0.0099872182 525.61839 0.93258687 + 1523200 -33.789437 -33.792678 0.0032407391 170.55721 0.38348267 + 1523300 -33.789221 -33.793116 0.003895125 204.99696 0.021585996 + 1523400 -33.794626 -33.803224 0.008597596 452.48381 -0.025837006 + 1523500 -33.796407 -33.801775 0.0053683309 282.53047 -0.30607178 + 1523600 -33.795247 -33.795856 0.00060947394 32.07607 -0.63502987 + 1523700 -33.792834 -33.797943 0.0051088444 268.87392 -0.54190487 + 1523800 -33.790715 -33.80314 0.012425032 653.91835 -0.20430773 + 1523900 -33.791254 -33.795657 0.0044028556 231.71836 -0.35065208 + 1524000 -33.79181 -33.79283 0.0010203077 53.697884 -0.26646815 + 1524100 -33.793175 -33.801624 0.00844897 444.66176 0.26566331 + 1524200 -33.797026 -33.803049 0.0060224108 316.95411 0.36332521 + 1524300 -33.798897 -33.799593 0.00069568269 36.613159 0.22011357 + 1524400 -33.797877 -33.799626 0.0017486866 92.031815 0.21094237 + 1524500 -33.790984 -33.803394 0.012409817 653.11758 0.35095129 + 1524600 -33.790962 -33.798405 0.0074421626 391.67438 -0.074514352 + 1524700 -33.792437 -33.792569 0.00013177388 6.9351417 -0.51559604 + 1524800 -33.793955 -33.799538 0.0055832133 293.83954 -0.37656432 + 1524900 -33.795366 -33.803362 0.0079968593 420.86757 -0.27049771 + 1525000 -33.796054 -33.798484 0.0024296458 127.87009 -0.40190163 + 1525100 -33.79478 -33.79645 0.0016702774 87.905211 -0.32008082 + 1525200 -33.790228 -33.802261 0.012032794 633.27523 0.24105031 + 1525300 -33.789163 -33.80028 0.011117255 585.09122 0.4899109 + 1525400 -33.793852 -33.794225 0.00037340574 19.652011 0.33618153 + 1525500 -33.795837 -33.798565 0.0027283551 143.5909 0.51430744 + 1525600 -33.79481 -33.803192 0.0083819104 441.13247 0.65438439 + 1525700 -33.793247 -33.798995 0.0057477593 302.49944 0.32567874 + 1525800 -33.792944 -33.794986 0.0020422859 107.48369 -0.079481886 + 1525900 -33.794152 -33.800994 0.0068416359 360.06919 -0.10730059 + 1526000 -33.798164 -33.80297 0.0048060773 252.93956 -0.26600804 + 1526100 -33.798711 -33.79963 0.00091863548 48.346966 -0.43801743 + 1526200 -33.796529 -33.79798 0.0014509146 76.360342 -0.40292924 + 1526300 -33.793718 -33.803092 0.0093739507 493.34266 0.010532975 + 1526400 -33.792879 -33.801331 0.0084523831 444.84138 0.18842877 + 1526500 -33.793702 -33.794922 0.0012195909 64.185981 0.12514615 + 1526600 -33.794883 -33.798571 0.003687161 194.05199 0.38634852 + 1526700 -33.795765 -33.802779 0.0070142543 369.15395 0.58965408 + 1526800 -33.793243 -33.797653 0.0044102998 232.11014 0.38119674 + 1526900 -33.788731 -33.79111 0.0023791531 125.21271 0.044097221 + 1527000 -33.789948 -33.800834 0.010885878 572.91403 0.17504513 + 1527100 -33.794396 -33.802754 0.0083576395 439.85511 -0.025824538 + 1527200 -33.794665 -33.795982 0.0013176694 69.347767 -0.41421226 + 1527300 -33.793488 -33.795785 0.0022972091 120.90007 -0.45611494 + 1527400 -33.790353 -33.802839 0.012485619 657.10699 -0.12153562 + 1527500 -33.787362 -33.797292 0.009929982 522.6061 -0.20348511 + 1527600 -33.791113 -33.791801 0.00068819293 36.21898 -0.3771216 + 1527700 -33.795441 -33.800483 0.0050415379 265.33164 -0.030091659 + 1527800 -33.796085 -33.80373 0.0076445283 402.3247 0.17340118 + 1527900 -33.79345 -33.796611 0.0031617308 166.39907 0.025103836 + 1528000 -33.789243 -33.79085 0.0016070609 84.578184 -0.038648025 + 1528100 -33.788414 -33.801523 0.013108574 689.89255 0.46308974 + 1528200 -33.791176 -33.800691 0.009515109 500.7717 0.37369311 + 1528300 -33.792296 -33.792887 0.00059141548 31.125669 -0.018173523 + 1528400 -33.792741 -33.797413 0.0046722794 245.8979 0.06997176 + 1528500 -33.793587 -33.803926 0.010338678 544.11542 0.20738138 + 1528600 -33.797119 -33.800192 0.0030733517 161.74776 -0.10856431 + 1528700 -33.79854 -33.798733 0.00019282115 10.148005 -0.24199512 + 1528800 -33.797335 -33.802059 0.0047232095 248.5783 -0.10745949 + 1528900 -33.792403 -33.802976 0.010573728 556.48586 0.033276897 + 1529000 -33.791557 -33.793758 0.002200332 115.80151 -0.28173416 + 1529100 -33.791768 -33.794311 0.0025429467 133.83301 -0.21682421 + 1529200 -33.793523 -33.803127 0.0096038453 505.44181 0.15735529 + 1529300 -33.797011 -33.801607 0.004596224 241.89517 0.070567347 + 1529400 -33.798109 -33.798237 0.00012778554 6.7252391 -0.064511809 + 1529500 -33.796579 -33.800298 0.0037188524 195.71988 0.065502728 + 1529600 -33.789782 -33.803852 0.014069889 740.48573 0.36109069 + 1529700 -33.790389 -33.795339 0.0049495183 260.48873 -0.0092130936 + 1529800 -33.793219 -33.794111 0.00089191986 46.940947 -0.12884863 + 1529900 -33.795213 -33.801901 0.0066882392 351.99606 0.12654225 + 1530000 -33.794693 -33.802171 0.0074778002 393.54995 0.12269748 + 1530100 -33.787095 -33.789303 0.0022076723 116.18782 -0.24182682 + 1530200 -33.78625 -33.79256 0.0063096143 332.06937 -0.11879412 + 1530300 -33.792064 -33.803712 0.011647592 613.00236 0.1898126 + 1530400 -33.79449 -33.799342 0.0048526805 255.39225 -0.024977994 + 1530500 -33.794209 -33.794357 0.0001481248 7.7956761 -0.2080893 + 1530600 -33.791667 -33.799751 0.0080842835 425.46863 0.082652127 + 1530700 -33.782493 -33.802322 0.019829441 1043.6058 0.43197752 + 1530800 -33.788067 -33.790752 0.0026850835 141.31355 -0.11217905 + 1530900 -33.791266 -33.793883 0.0026164292 137.70033 -0.03282057 + 1531000 -33.792623 -33.803125 0.010502257 552.72442 0.31259323 + 1531100 -33.794195 -33.800588 0.0063937244 336.49601 0.15723467 + 1531200 -33.79477 -33.795022 0.00025126585 13.223897 -0.10004419 + 1531300 -33.79437 -33.799359 0.0049887224 262.55201 0.047983104 + 1531400 -33.790856 -33.803729 0.012872787 677.48331 0.24534399 + 1531500 -33.787975 -33.79316 0.0051851178 272.88813 -0.15655873 + 1531600 -33.790042 -33.791447 0.001404382 73.911371 -0.30862252 + 1531700 -33.794888 -33.802157 0.0072687772 382.54926 0.00024560575 + 1531800 -33.795218 -33.802162 0.0069441222 365.46296 0.016821647 + 1531900 -33.793673 -33.794764 0.0010907572 57.405581 -0.21398339 + 1532000 -33.791692 -33.79623 0.0045384053 238.85222 -0.062435917 + 1532100 -33.790461 -33.803738 0.013276748 698.74343 0.33650746 + 1532200 -33.79514 -33.799507 0.0043668082 229.82122 0.10840996 + 1532300 -33.796776 -33.796855 7.8699226e-05 4.1418701 -0.020646154 + 1532400 -33.795889 -33.801079 0.0051901513 273.15303 0.15784008 + 1532500 -33.790681 -33.803009 0.012328688 648.84784 0.2955217 + 1532600 -33.789678 -33.793081 0.0034037222 179.13486 -0.15234791 + 1532700 -33.791616 -33.794197 0.0025809561 135.83342 -0.21379055 + 1532800 -33.793019 -33.802905 0.0098868085 520.33391 0.053590911 + 1532900 -33.793229 -33.800365 0.0071363524 375.57986 -0.071189578 + 1533000 -33.79265 -33.792847 0.00019747445 10.392904 -0.35239957 + 1533100 -33.791674 -33.797604 0.0059293043 312.054 -0.11916404 + 1533200 -33.790774 -33.803799 0.013025134 685.50116 0.19637872 + 1533300 -33.793854 -33.797498 0.0036434919 191.75373 -0.067662763 + 1533400 -33.795683 -33.796393 0.00070953005 37.341934 -0.11828919 + 1533500 -33.795864 -33.802355 0.0064915644 341.64524 0.14017448 + 1533600 -33.791993 -33.801875 0.0098822479 520.09389 0.21265748 + 1533700 -33.78773 -33.789167 0.0014363817 75.595487 -0.20988329 + 1533800 -33.788625 -33.793421 0.0047957354 252.39528 -0.075450475 + 1533900 -33.791212 -33.80366 0.01244739 655.09506 0.25176627 + 1534000 -33.792862 -33.798596 0.0057338039 301.76498 -0.012311923 + 1534100 -33.793277 -33.793568 0.00029086207 15.307811 -0.24206721 + 1534200 -33.793389 -33.800393 0.0070032166 368.57304 0.0093015473 + 1534300 -33.79466 -33.803468 0.0088083967 463.57806 0.095699026 + 1534400 -33.796036 -33.79762 0.0015840227 83.3657 -0.16057094 + 1534500 -33.795309 -33.796623 0.0013137984 69.144036 -0.17444396 + 1534600 -33.790838 -33.802896 0.012057907 634.59691 0.19566046 + 1534700 -33.787915 -33.799132 0.011217126 590.34731 0.14919022 + 1534800 -33.791132 -33.791321 0.00018911077 9.9527313 -0.20050292 + 1534900 -33.793827 -33.798758 0.0049307985 259.50353 0.054334425 + 1535000 -33.793703 -33.803878 0.010175457 535.52521 0.26830504 + 1535100 -33.792679 -33.796717 0.0040387434 212.55546 -0.010156017 + 1535200 -33.791121 -33.791916 0.00079493803 41.836879 -0.18733742 + 1535300 -33.789504 -33.801198 0.011694592 615.47593 0.19147873 + 1535400 -33.793108 -33.802278 0.0091692295 482.56837 0.12849509 + 1535500 -33.796222 -33.796802 0.00057929283 30.487665 -0.16575655 + 1535600 -33.796212 -33.798573 0.0023607545 124.2444 -0.094226162 + 1535700 -33.791942 -33.803878 0.011935519 628.15571 0.21362536 + 1535800 -33.787223 -33.796176 0.0089530875 471.19301 0.041442688 + 1535900 -33.789502 -33.789757 0.00025528402 13.43537 -0.23807111 + 1536000 -33.792174 -33.799869 0.0076943033 404.94432 0.1221121 + 1536100 -33.794246 -33.803369 0.0091226949 480.1193 0.23601539 + 1536200 -33.794601 -33.796444 0.0018435942 97.026716 -0.054204705 + 1536300 -33.792193 -33.793959 0.0017667661 92.983323 -0.11448768 + 1536400 -33.785637 -33.802629 0.016992089 894.2785 0.35701419 + 1536500 -33.790037 -33.799601 0.0095637946 503.33398 0.10526327 + 1536600 -33.793826 -33.793951 0.00012527847 6.5932942 -0.21615776 + 1536700 -33.794193 -33.799025 0.0048315911 254.28233 -0.021180631 + 1536800 -33.792947 -33.803845 0.010898461 573.5763 0.19005389 + 1536900 -33.789589 -33.794565 0.0049762394 261.89504 -0.094910306 + 1537000 -33.782847 -33.784447 0.0016004599 84.230774 -0.32646169 + 1537100 -33.786133 -33.800796 0.014663139 771.70793 0.26137858 + 1537200 -33.792799 -33.80179 0.0089909089 473.18352 0.17705282 + 1537300 -33.793767 -33.794308 0.00054053709 28.447985 -0.14292332 + 1537400 -33.793663 -33.797354 0.0036904128 194.22314 -0.034502181 + 1537500 -33.79218 -33.80392 0.011739717 617.85081 0.24547365 + 1537600 -33.789156 -33.796212 0.0070557961 371.34026 -0.022686708 + 1537700 -33.788059 -33.788473 0.00041368397 21.771818 -0.33613316 + 1537800 -33.79216 -33.800432 0.0082719302 435.34431 0.040860739 + 1537900 -33.795479 -33.803207 0.0077285782 406.74818 0.079105434 + 1538000 -33.794946 -33.796432 0.0014859609 78.204799 -0.17261206 + 1538100 -33.792846 -33.795081 0.0022351563 117.63428 -0.15581689 + 1538200 -33.787973 -33.803297 0.015324175 806.49768 0.30064863 + 1538300 -33.777848 -33.793923 0.016074354 845.9789 0.17870011 + 1538400 -33.786411 -33.786598 0.00018645961 9.8132029 -0.25312706 + 1538500 -33.791558 -33.798726 0.0071681251 377.25203 0.12436907 + 1538600 -33.793997 -33.803461 0.0094631921 498.03936 0.23538747 + 1538700 -33.794837 -33.797232 0.0023951733 126.05583 -0.048939141 + 1538800 -33.793912 -33.795345 0.0014323759 75.384666 -0.14916925 + 1538900 -33.789353 -33.802448 0.013095118 689.18438 0.16979488 + 1539000 -33.7868 -33.799631 0.012830267 675.24552 0.072881425 + 1539100 -33.79348 -33.793762 0.00028218425 14.851106 -0.34097726 + 1539200 -33.79503 -33.798569 0.0035395502 186.28337 -0.17447504 + 1539300 -33.793709 -33.803586 0.0098766605 519.79983 0.098433291 + 1539400 -33.790833 -33.796671 0.0058375711 307.22616 -0.055351666 + 1539500 -33.788634 -33.790215 0.001581373 83.226251 -0.17313768 + 1539600 -33.791812 -33.800785 0.0089729567 472.23871 0.26204505 + 1539700 -33.796238 -33.802891 0.0066528269 350.13235 0.26759828 + 1539800 -33.795723 -33.796803 0.0010795867 56.817683 0.022705188 + 1539900 -33.792412 -33.795024 0.002612187 137.47707 -0.033282925 + 1540000 -33.788537 -33.803298 0.014761467 776.88286 0.25576158 + 1540100 -33.790901 -33.798968 0.0080665745 424.53662 -0.065523925 + 1540200 -33.792692 -33.792991 0.00029964131 15.769855 -0.40814173 + 1540300 -33.793462 -33.799495 0.0060334215 317.53359 -0.19066294 + 1540400 -33.793351 -33.803437 0.01008637 530.83663 0.0062268048 + 1540500 -33.790915 -33.794477 0.003562657 187.49946 -0.22937061 + 1540600 -33.787067 -33.789131 0.0020638912 108.62075 -0.23678016 + 1540700 -33.788562 -33.802008 0.013445886 707.64498 0.38771162 + 1540800 -33.794313 -33.801611 0.0072977724 384.07525 0.31654935 + 1540900 -33.795005 -33.795378 0.00037339996 19.651707 0.065472715 + 1541000 -33.79398 -33.798113 0.004132798 217.50547 0.16584024 + 1541100 -33.78857 -33.803842 0.015272238 803.76428 0.40585533 + 1541200 -33.781134 -33.790081 0.0089469754 470.87134 -0.15448921 + 1541300 -33.787858 -33.788912 0.0010545021 55.497503 -0.50847274 + 1541400 -33.790929 -33.801102 0.010172969 535.3943 -0.1625414 + 1541500 -33.793326 -33.802391 0.0090652357 477.09527 -0.1602271 + 1541600 -33.794869 -33.795742 0.00087325493 45.958628 -0.39231559 + 1541700 -33.795035 -33.797685 0.0026502199 139.47871 -0.21796545 + 1541800 -33.79251 -33.803799 0.011289343 594.14805 0.22406266 + 1541900 -33.786837 -33.796204 0.0093666794 492.95998 0.25254159 + 1542000 -33.78802 -33.788316 0.00029620611 15.589063 0.10627187 + 1542100 -33.793164 -33.800008 0.0068444203 360.21573 0.54584283 + 1542200 -33.794132 -33.8033 0.0091674218 482.47323 0.63215219 + 1542300 -33.793207 -33.795557 0.0023499223 123.67432 0.20568953 + 1542400 -33.791383 -33.793541 0.0021576791 113.55672 -0.047194557 + 1542500 -33.788468 -33.802733 0.014265656 750.78877 0.10779724 + 1542600 -33.791355 -33.800177 0.0088217366 464.28013 -0.31542023 + 1542700 -33.795318 -33.795441 0.00012391748 6.5216666 -0.68646464 + 1542800 -33.795853 -33.799615 0.003761927 197.98686 -0.51296469 + 1542900 -33.793136 -33.803788 0.010652668 560.64043 -0.16340197 + 1543000 -33.786526 -33.793197 0.0066700881 351.04079 -0.13800778 + 1543100 -33.787654 -33.789079 0.0014249494 74.993816 0.051282484 + 1543200 -33.790371 -33.801194 0.010823044 569.60715 0.7397842 + 1543300 -33.793211 -33.802032 0.0088210794 464.24554 0.82970855 + 1543400 -33.794508 -33.795234 0.00072608449 38.213179 0.48213184 + 1543500 -33.794576 -33.797544 0.0029683128 156.21965 0.40638232 + 1543600 -33.792486 -33.803827 0.011340518 596.84133 0.4292762 + 1543700 -33.788745 -33.79697 0.0082249296 432.87071 -0.17228313 + 1543800 -33.789502 -33.790059 0.00055629343 29.277227 -0.86559363 + 1543900 -33.793844 -33.800278 0.0064337673 338.60344 -0.75914184 + 1544000 -33.795454 -33.803193 0.0077387551 407.28378 -0.68259399 + 1544100 -33.794383 -33.796471 0.0020873202 109.8538 -0.75015383 + 1544200 -33.792966 -33.794988 0.0020228264 106.45955 -0.43702364 + 1544300 -33.792102 -33.803003 0.010900225 573.66911 0.33097883 + 1544400 -33.792664 -33.80072 0.0080558881 423.9742 0.63909865 + 1544500 -33.79309 -33.793424 0.0003338427 17.569844 0.61450904 + 1544600 -33.792938 -33.797889 0.004951028 260.56819 0.89345473 + 1544700 -33.791411 -33.803569 0.012157598 639.84353 1.065069 + 1544800 -33.790266 -33.795273 0.0050072537 263.5273 0.47384642 + 1544900 -33.791264 -33.792394 0.0011298181 59.461318 -0.055427579 + 1545000 -33.79419 -33.801976 0.0077854573 409.74167 -0.072843826 + 1545100 -33.796155 -33.802852 0.0066969267 352.45328 -0.30540124 + 1545200 -33.795117 -33.796117 0.0010004559 52.6531 -0.6748937 + 1545300 -33.788511 -33.792714 0.0042028468 221.19208 -0.6991467 + 1545400 -33.786962 -33.803408 0.016446385 865.55859 -0.17640258 + 1545500 -33.792203 -33.798428 0.0062252659 327.63019 -0.32784833 + 1545600 -33.793867 -33.793999 0.00013202381 6.9482955 -0.36751657 + 1545700 -33.793808 -33.800341 0.0065330773 343.83003 0.069782562 + 1545800 -33.792806 -33.803426 0.01062034 558.93903 0.41094767 + 1545900 -33.791223 -33.794246 0.0030221504 159.05308 0.23469657 + 1546000 -33.786111 -33.789046 0.0029357073 154.50366 0.24647857 + 1546100 -33.786322 -33.802111 0.01578933 830.97837 0.80360214 + 1546200 -33.793199 -33.800313 0.0071139965 374.40329 0.52679048 + 1546300 -33.794481 -33.794692 0.00021153341 11.132815 0.14934415 + 1546400 -33.794055 -33.798975 0.0049207769 258.9761 0.15428848 + 1546500 -33.790116 -33.803859 0.013742881 723.27555 0.19094191 + 1546600 -33.784894 -33.792193 0.0072993578 384.15869 -0.46705741 + 1546700 -33.790155 -33.791685 0.0015290167 80.470787 -0.82330835 + 1546800 -33.793687 -33.801492 0.0078055074 410.79689 -0.55143096 + 1546900 -33.79337 -33.801616 0.0082459339 433.97615 -0.44125462 + 1547000 -33.791555 -33.793016 0.0014612978 76.906799 -0.50799954 + 1547100 -33.788751 -33.794436 0.0056854627 299.22083 -0.045186187 + 1547200 -33.790004 -33.803729 0.013724945 722.33161 0.67571394 + 1547300 -33.795734 -33.799921 0.0041872145 220.36937 0.59948329 + 1547400 -33.795988 -33.796074 8.5901717e-05 4.5209307 0.46760148 + 1547500 -33.793718 -33.80027 0.0065511426 344.78079 0.5813106 + 1547600 -33.788095 -33.802821 0.014726058 775.01932 0.51787325 + 1547700 -33.789573 -33.792561 0.0029879227 157.25171 -0.30846029 + 1547800 -33.791425 -33.794 0.0025747908 135.50894 -0.58512618 + 1547900 -33.793235 -33.803098 0.0098634128 519.10262 -0.42671916 + 1548000 -33.794581 -33.800925 0.0063434418 333.84968 -0.57262641 + 1548100 -33.794537 -33.79469 0.00015282622 8.0431079 -0.70900436 + 1548200 -33.792202 -33.797863 0.0056616361 297.96686 -0.30325263 + 1548300 -33.78764 -33.803763 0.016123616 848.57152 0.39556485 + 1548400 -33.790675 -33.795082 0.0044067388 231.92273 0.37899015 + 1548500 -33.794636 -33.795414 0.00077763227 40.926093 0.49194876 + 1548600 -33.795252 -33.802333 0.0070811463 372.67442 0.77255309 + 1548700 -33.793873 -33.802188 0.008314359 437.5773 0.67559788 + 1548800 -33.792292 -33.793332 0.0010398352 54.725598 0.075280611 + 1548900 -33.791386 -33.795447 0.0040609478 213.72406 -0.18218457 + 1549000 -33.791465 -33.803754 0.012288305 646.72254 -0.19352084 + 1549100 -33.792315 -33.798245 0.0059295893 312.06899 -0.68453214 + 1549200 -33.792804 -33.793003 0.00019832663 10.437754 -0.9914926 + 1549300 -33.793439 -33.80036 0.006921805 364.28842 -0.64148422 + 1549400 -33.795459 -33.803489 0.0080294311 422.5818 -0.37824536 + 1549500 -33.797274 -33.798637 0.0013623852 71.701118 -0.36057073 + 1549600 -33.796951 -33.798063 0.0011119988 58.523503 -0.10971445 + 1549700 -33.791922 -33.802964 0.011042393 581.15132 0.5472923 + 1549800 -33.789152 -33.799673 0.010520367 553.67753 0.93287212 + 1549900 -33.791249 -33.791497 0.0002480008 13.052061 0.84385439 + 1550000 -33.793517 -33.798354 0.0048369538 254.56456 1.0937239 + 1550100 -33.794905 -33.803796 0.0088910868 467.92997 1.1035423 + 1550200 -33.795085 -33.798492 0.0034072251 179.31922 0.52664413 + 1550300 -33.793262 -33.794037 0.00077479748 40.7769 -0.11919206 + 1550400 -33.789932 -33.801045 0.011113655 584.90173 -0.41273826 + 1550500 -33.789877 -33.80179 0.01191385 627.01528 -0.99909651 + 1550600 -33.793788 -33.794579 0.00079091067 41.624923 -1.6590108 + 1550700 -33.795548 -33.797952 0.0024040084 126.52082 -1.5008409 + 1550800 -33.795014 -33.803621 0.0086064841 452.95158 -0.923468 + 1550900 -33.786245 -33.79638 0.010135493 533.42198 -0.26007421 + 1551000 -33.786457 -33.787687 0.0012298817 64.727577 0.62559727 + 1551100 -33.791306 -33.799204 0.0078974051 415.63338 1.7976813 + 1551200 -33.793533 -33.802844 0.0093113543 490.04827 2.1857745 + 1551300 -33.793544 -33.795703 0.0021583981 113.59456 1.7586206 + 1551400 -33.791551 -33.793813 0.0022626669 119.08214 1.1513265 + 1551500 -33.784378 -33.802578 0.018200124 957.85628 0.54291601 + 1551600 -33.790603 -33.800088 0.0094857326 499.22564 -0.91370877 + 1551700 -33.794139 -33.794383 0.00024423995 12.854131 -1.8302839 + 1551800 -33.794084 -33.798579 0.0044945438 236.54383 -1.8439256 + 1551900 -33.791695 -33.803488 0.011793265 620.66899 -1.3794183 + 1552000 -33.78727 -33.793569 0.0062984922 331.48403 -1.0342188 + 1552100 -33.786593 -33.788673 0.0020798895 109.46273 -0.20810877 + 1552200 -33.794196 -33.80206 0.0078639911 413.87484 0.87121603 + 1552300 -33.795433 -33.802414 0.0069803205 367.36804 1.1992741 + 1552400 -33.793699 -33.794588 0.00088887541 46.78072 1.0339419 + 1552500 -33.789833 -33.794146 0.0043123812 226.95677 0.94443426 + 1552600 -33.787342 -33.803738 0.016395772 862.89485 0.9381039 + 1552700 -33.795212 -33.799757 0.0045441241 239.1532 0.14972109 + 1552800 -33.796539 -33.796665 0.00012618834 6.6411798 -0.30425827 + 1552900 -33.795091 -33.800984 0.0058929871 310.14266 -0.37226383 + 1553000 -33.790694 -33.803077 0.012382218 651.6651 -0.43624748 + 1553100 -33.788972 -33.791762 0.0027904967 146.86135 -1.0288043 + 1553200 -33.790841 -33.793291 0.0024500443 128.94365 -1.0142137 + 1553300 -33.796021 -33.803279 0.0072575746 381.95968 -0.58889822 + 1553400 -33.796151 -33.801601 0.0054502098 286.83968 -0.42434445 + 1553500 -33.794251 -33.794613 0.00036220236 19.062387 -0.28333566 + 1553600 -33.791561 -33.797475 0.0059148199 311.2917 0.3982469 + 1553700 -33.789872 -33.803798 0.013925623 732.89312 1.1842145 + 1553800 -33.794171 -33.797341 0.0031696736 166.8171 1.1381496 + 1553900 -33.797522 -33.797852 0.00033017838 17.376994 1.0716903 + 1554000 -33.796795 -33.802396 0.0056010146 294.7764 1.0024435 + 1554100 -33.792657 -33.802442 0.0097851842 514.98551 0.51618423 + 1554200 -33.790782 -33.792796 0.0020137436 105.98153 -0.69215221 + 1554300 -33.791392 -33.795056 0.0036643276 192.85029 -1.4009286 + 1554400 -33.792707 -33.803231 0.010524442 553.89197 -1.5423536 + 1554500 -33.793507 -33.799154 0.0056466167 297.1764 -1.7719578 + 1554600 -33.792567 -33.792843 0.00027596228 14.523649 -1.6742929 + 1554700 -33.78967 -33.79853 0.0088602718 466.3082 -0.65554595 + 1554800 -33.790371 -33.803576 0.013204966 694.96556 0.46801567 + 1554900 -33.794687 -33.796931 0.0022437481 118.08646 0.82252572 + 1555000 -33.795854 -33.796926 0.0010715412 56.394256 1.1582675 + 1555100 -33.794741 -33.80281 0.0080698062 424.7067 1.48364 + 1555200 -33.787586 -33.799499 0.011913406 626.99196 1.2442249 + 1555300 -33.787689 -33.788413 0.00072381906 38.093951 0.19834936 + 1555400 -33.790795 -33.796803 0.0060087162 316.23337 -0.14149969 + 1555500 -33.793117 -33.803918 0.010801461 568.47126 -0.35568734 + 1555600 -33.79395 -33.797816 0.0038656474 203.44558 -0.89517073 + 1555700 -33.793249 -33.793679 0.00042965049 22.612122 -1.1430492 + 1555800 -33.787914 -33.800401 0.012487568 657.20959 -0.6439198 + 1555900 -33.784793 -33.801324 0.016531315 870.02834 -0.17435168 + 1556000 -33.791913 -33.792926 0.0010126355 53.294103 -0.28505641 + 1556100 -33.7936 -33.796753 0.0031522223 165.89865 0.1089128 + 1556200 -33.793679 -33.803772 0.010093404 531.20683 0.5967817 + 1556300 -33.792479 -33.798701 0.0062210656 327.40913 0.54692799 + 1556400 -33.788284 -33.788386 0.00010232063 5.3850437 0.25497981 + 1556500 -33.784554 -33.797165 0.01261109 663.71044 0.58912781 + 1556600 -33.791802 -33.803346 0.011543305 607.51385 0.52261204 + 1556700 -33.79427 -33.796116 0.0018463268 97.170534 0.022669726 + 1556800 -33.793965 -33.795664 0.001699196 89.427171 -0.16680721 + 1556900 -33.791989 -33.803147 0.011157693 587.21942 -0.0073439435 + 1557000 -33.786958 -33.798438 0.011480003 604.18231 -0.26596986 + 1557100 -33.785215 -33.78547 0.00025533527 13.438067 -0.87967553 + 1557200 -33.791913 -33.798185 0.0062716009 330.06876 -0.53880984 + 1557300 -33.794467 -33.803823 0.009356603 492.42967 -0.28173534 + 1557400 -33.794072 -33.797301 0.0032297319 169.97791 -0.36419877 + 1557500 -33.791744 -33.79267 0.00092554314 48.71051 -0.23615529 + 1557600 -33.785904 -33.801107 0.015202584 800.09843 0.58658514 + 1557700 -33.788374 -33.800942 0.012568112 661.44854 0.8794407 + 1557800 -33.794448 -33.794909 0.000461862 24.307385 0.62793225 + 1557900 -33.794813 -33.798103 0.0032901194 173.15605 0.67841639 + 1558000 -33.793027 -33.803883 0.010856681 571.37743 0.71222666 + 1558100 -33.788788 -33.79605 0.0072616188 382.17252 0.080916086 + 1558200 -33.786328 -33.787033 0.0007053372 37.121268 -0.77093358 + 1558300 -33.791847 -33.800366 0.0085190155 448.34819 -0.75779358 + 1558400 -33.795379 -33.803109 0.0077299163 406.8186 -0.81448975 + 1558500 -33.794617 -33.796132 0.0015148187 79.723556 -0.96538921 + 1558600 -33.79167 -33.794214 0.0025443557 133.90717 -0.64380679 + 1558700 -33.786781 -33.803157 0.01637654 861.88271 0.39494903 + 1558800 -33.793206 -33.800062 0.006855792 360.81422 0.70779651 + 1558900 -33.796327 -33.796361 3.3918119e-05 1.7850804 0.70934986 + 1559000 -33.795684 -33.800206 0.0045223607 238.00781 0.88201948 + 1559100 -33.791501 -33.803619 0.012118121 637.76589 0.90561229 + 1559200 -33.788913 -33.793345 0.0044315491 233.22848 0.10854114 + 1559300 -33.790447 -33.792061 0.0016139194 84.939138 -0.46675046 + 1559400 -33.794971 -33.802574 0.0076031281 400.14585 -0.45699609 + 1559500 -33.796525 -33.802354 0.0058296732 306.8105 -0.61076847 + 1559600 -33.795109 -33.79567 0.00056081348 29.515113 -0.80366578 + 1559700 -33.792212 -33.796381 0.0041695473 219.43956 -0.50108273 + 1559800 -33.788743 -33.803938 0.015195142 799.70677 0.24122777 + 1559900 -33.791665 -33.797256 0.0055910585 294.25242 0.31722711 + 1560000 -33.796224 -33.796411 0.00018696236 9.8396624 0.39933166 + 1560100 -33.79652 -33.801686 0.0051657178 271.86712 0.65240304 + 1560200 -33.794372 -33.803173 0.0088008191 463.17926 0.67581295 + 1560300 -33.791788 -33.793989 0.0022007192 115.82189 0.1376876 + 1560400 -33.79064 -33.793356 0.002716299 142.95639 -0.19574081 + 1560500 -33.791289 -33.803191 0.011901781 626.38012 -0.13620389 + 1560600 -33.793782 -33.80039 0.0066082282 347.78516 -0.50608858 + 1560700 -33.798881 -33.798892 1.160937e-05 0.61099076 -0.72677907 + 1560800 -33.799556 -33.801856 0.0023006158 121.07936 -0.54325703 + 1560900 -33.79679 -33.803887 0.0070966823 373.49206 -0.17987775 + 1561000 -33.792871 -33.79701 0.0041392084 217.84285 0.088012103 + 1561100 -33.7908 -33.792037 0.0012370226 65.103396 0.50121 + 1561200 -33.790418 -33.801163 0.010744838 565.49125 1.3367721 + 1561300 -33.79443 -33.802067 0.0076374065 401.94989 1.4854618 + 1561400 -33.797043 -33.797576 0.00053229743 28.014339 1.1373094 + 1561500 -33.796598 -33.798998 0.0024002342 126.32219 0.85448407 + 1561600 -33.792679 -33.803859 0.011179651 588.37508 0.48545699 + 1561700 -33.790913 -33.798566 0.0076534395 402.79369 -0.63220115 + 1561800 -33.792057 -33.792724 0.00066664519 35.084942 -1.6754631 + 1561900 -33.793313 -33.799467 0.0061541866 323.88935 -1.8280433 + 1562000 -33.793707 -33.802618 0.0089106763 468.96094 -1.6965779 + 1562100 -33.791924 -33.795015 0.0030911292 162.68337 -1.5334279 + 1562200 -33.788012 -33.791582 0.0035703207 187.9028 -0.69803472 + 1562300 -33.789468 -33.802483 0.013014282 684.93004 0.79444772 + 1562400 -33.795634 -33.801578 0.0059437902 312.81638 1.2620341 + 1562500 -33.79547 -33.795729 0.00025857064 13.608342 1.2939388 + 1562600 -33.79333 -33.797755 0.0044248671 232.87681 1.376436 + 1562700 -33.788923 -33.803648 0.014724445 774.93443 1.3015588 + 1562800 -33.790016 -33.79553 0.005514064 290.20027 0.29154647 + 1562900 -33.791771 -33.79278 0.001009845 53.147239 -0.50861809 + 1563000 -33.792388 -33.801423 0.0090353427 475.52203 -0.69776426 + 1563100 -33.793437 -33.802387 0.00895027 471.04473 -0.99214032 + 1563200 -33.794092 -33.79505 0.00095890549 50.466341 -1.3659711 + 1563300 -33.793677 -33.796493 0.0028152652 148.1649 -1.1087738 + 1563400 -33.790719 -33.803618 0.012898669 678.84544 -0.32393557 + 1563500 -33.788152 -33.797098 0.0089461286 470.82677 0.13385501 + 1563600 -33.791484 -33.791833 0.00034972896 18.405923 0.49526999 + 1563700 -33.79531 -33.800626 0.0053163658 279.79559 1.0633992 + 1563800 -33.795279 -33.803457 0.0081784609 430.4251 1.2085157 + 1563900 -33.79342 -33.795985 0.0025652732 135.00804 0.75264858 + 1564000 -33.791591 -33.79345 0.001859179 97.846935 0.24134668 + 1564100 -33.791047 -33.802635 0.011588214 609.87739 0.039373188 + 1564200 -33.792096 -33.800747 0.0086500909 455.24657 -0.57066024 + 1564300 -33.792985 -33.793277 0.00029219103 15.377754 -1.2419616 + 1564400 -33.793582 -33.798088 0.0045062758 237.16127 -1.1783987 + 1564500 -33.795217 -33.80381 0.0085929478 452.23918 -0.85963666 + 1564600 -33.797086 -33.799939 0.002853143 150.15837 -0.77936408 + 1564700 -33.796581 -33.796988 0.00040709507 21.42505 -0.48009286 + 1564800 -33.791913 -33.801064 0.0091505227 481.58385 0.41449605 + 1564900 -33.788875 -33.802175 0.013299872 699.96039 1.3493475 + 1565000 -33.791447 -33.79291 0.001462729 76.982125 1.5337705 + 1565100 -33.793018 -33.795684 0.0026658431 140.30095 1.7806681 + 1565200 -33.793277 -33.803238 0.0099604363 524.20888 1.8425555 + 1565300 -33.793139 -33.799629 0.0064895624 341.53988 1.1396021 + 1565400 -33.792968 -33.793709 0.00074034481 38.963687 0.099327746 + 1565500 -33.793005 -33.799616 0.0066102802 347.89315 -0.51919306 + 1565600 -33.794183 -33.803493 0.0093097812 489.96548 -1.0512514 + 1565700 -33.79648 -33.798339 0.0018585869 97.815772 -1.630461 + 1565800 -33.796853 -33.797573 0.00071991935 37.888713 -1.6278973 + 1565900 -33.793796 -33.802557 0.0087612949 461.09913 -0.94571581 + 1566000 -33.788801 -33.800955 0.012154219 639.66569 0.0074778672 + 1566100 -33.791008 -33.792236 0.0012276812 64.611764 0.64329481 + 1566200 -33.793197 -33.797322 0.0041248611 217.08776 1.4821729 + 1566300 -33.793602 -33.803398 0.009796312 515.57116 1.9947677 + 1566400 -33.793045 -33.797808 0.0047631109 250.67828 1.6914737 + 1566500 -33.792329 -33.792951 0.00062229075 32.750607 1.0490253 + 1566600 -33.791939 -33.800735 0.00879597 462.92405 0.62301461 + 1566700 -33.793581 -33.80311 0.0095289602 501.50068 -0.10455736 + 1566800 -33.798635 -33.799524 0.00088870546 46.771776 -0.85741178 + 1566900 -33.798736 -33.799665 0.00092859285 48.871013 -1.0358687 + 1567000 -33.796067 -33.803344 0.0072767522 382.96898 -0.81316827 + 1567100 -33.792795 -33.800475 0.007679817 404.18192 -0.59065217 + 1567200 -33.791541 -33.791983 0.00044197936 23.260979 -0.4375424 + 1567300 -33.791345 -33.797608 0.0062628144 329.60634 0.32501433 + 1567400 -33.794766 -33.803868 0.009101886 479.02414 0.90866632 + 1567500 -33.797861 -33.800023 0.0021616429 113.76534 0.81756784 + 1567600 -33.797121 -33.797444 0.00032289001 16.993413 0.66625596 + 1567700 -33.794295 -33.80192 0.0076241121 401.25022 0.62744548 + 1567800 -33.792645 -33.802423 0.0097777519 514.59436 0.20246085 + 1567900 -33.792342 -33.793682 0.0013394277 70.492884 -0.6429632 + 1568000 -33.792281 -33.795644 0.0033623052 176.95512 -0.97779392 + 1568100 -33.793677 -33.803525 0.0098476937 518.27534 -0.91228814 + 1568200 -33.796697 -33.800732 0.0040344001 212.32688 -1.0461269 + 1568300 -33.797058 -33.797183 0.00012560929 6.6107047 -0.96866785 + 1568400 -33.793993 -33.8001 0.0061074653 321.43045 -0.33106545 + 1568500 -33.788357 -33.803478 0.015120399 795.77309 0.7713142 + 1568600 -33.791094 -33.794286 0.0031917712 167.98007 1.1303285 + 1568700 -33.793248 -33.794668 0.0014200641 74.736708 1.4968976 + 1568800 -33.79392 -33.802462 0.0085417957 449.54709 1.8171023 + 1568900 -33.792857 -33.80093 0.0080729462 424.87196 1.4255551 + 1569000 -33.784282 -33.786356 0.0020742035 109.16348 0.25257961 + 1569100 -33.782166 -33.792301 0.010134772 533.38399 -0.78650114 + 1569200 -33.791017 -33.803541 0.012523925 659.12298 -1.3804188 + 1569300 -33.793922 -33.797625 0.0037034401 194.90875 -1.9696959 + 1569400 -33.794183 -33.794631 0.00044796687 23.576097 -1.9592582 + 1569500 -33.792715 -33.801286 0.0085707489 451.07087 -1.1546633 + 1569600 -33.787391 -33.801957 0.014566165 766.60425 -0.059829468 + 1569700 -33.788657 -33.79094 0.0022831784 120.16164 0.70166121 + 1569800 -33.794364 -33.797059 0.0026950862 141.83998 1.5349131 + 1569900 -33.795026 -33.803232 0.0082059573 431.87221 1.986105 + 1570000 -33.792981 -33.799139 0.0061585646 324.11976 1.6817973 + 1570100 -33.789783 -33.79045 0.00066615804 35.059303 0.76186255 + 1570200 -33.788258 -33.79803 0.0097720187 514.29263 0.12629316 + 1570300 -33.795457 -33.803687 0.0082301054 433.14311 -0.54226161 + 1570400 -33.796751 -33.798537 0.0017859768 93.994363 -1.119281 + 1570500 -33.795077 -33.795979 0.00090106301 47.422143 -1.2968154 + 1570600 -33.790411 -33.802296 0.01188545 625.52062 -0.82249423 + 1570700 -33.789575 -33.800438 0.010863202 571.72064 -0.50073397 + 1570800 -33.791815 -33.792339 0.00052387671 27.571164 -0.38336072 + 1570900 -33.792896 -33.797636 0.0047397437 249.44848 0.2352349 + 1571000 -33.792935 -33.80393 0.010994403 578.6256 0.83265121 + 1571100 -33.792852 -33.79735 0.0044988477 236.77034 0.80239244 + 1571200 -33.792215 -33.792632 0.00041773235 21.984881 0.66603905 + 1571300 -33.790434 -33.800712 0.010277759 540.90929 0.88314022 + 1571400 -33.789788 -33.802223 0.012434778 654.43128 0.65121268 + 1571500 -33.793326 -33.794399 0.0010727076 56.455644 -0.1050451 + 1571600 -33.795409 -33.797766 0.0023570581 124.04987 -0.28650793 + 1571700 -33.795638 -33.80375 0.0081126647 426.9623 -0.23704273 + 1571800 -33.790063 -33.798144 0.0080812656 425.3098 -0.48149661 + 1571900 -33.786187 -33.786263 7.5633554e-05 3.9805265 -0.92610589 + 1572000 -33.788825 -33.797918 0.0090925579 478.53321 -0.47263079 + 1572100 -33.792758 -33.803592 0.010833825 570.17457 -0.21514784 + 1572200 -33.79401 -33.796361 0.0023514334 123.75384 -0.3269558 + 1572300 -33.793674 -33.795048 0.0013746142 72.344721 -0.15070899 + 1572400 -33.791103 -33.802795 0.011692367 615.35886 0.44329062 + 1572500 -33.78341 -33.798293 0.014882608 783.25839 0.73722819 + 1572600 -33.788183 -33.78838 0.00019691204 10.363305 0.44036636 + 1572700 -33.792447 -33.797769 0.0053221144 280.09813 0.7405596 + 1572800 -33.793588 -33.803861 0.010273802 540.70101 0.84533178 + 1572900 -33.793587 -33.797478 0.0038910706 204.78358 0.3208908 + 1573000 -33.791982 -33.792673 0.00069046089 36.338341 -0.18366341 + 1573100 -33.787036 -33.800635 0.013598894 715.69766 -0.1974664 + 1573200 -33.788486 -33.801538 0.013051614 686.89483 -0.64739766 + 1573300 -33.794112 -33.794834 0.00072180227 37.98781 -1.1899638 + 1573400 -33.794692 -33.797497 0.0028043922 147.59266 -1.0155195 + 1573500 -33.793336 -33.803772 0.010436008 549.2378 -0.47282092 + 1573600 -33.789983 -33.797586 0.0076027713 400.12707 -0.15012103 + 1573700 -33.783869 -33.784691 0.00082243357 43.283945 0.17170609 + 1573800 -33.784778 -33.797241 0.012462875 655.90999 1.3699859 + 1573900 -33.793127 -33.802937 0.0098101483 516.29936 1.7000863 + 1574000 -33.794068 -33.795811 0.0017428529 91.724793 1.3000612 + 1574100 -33.793375 -33.795438 0.002062516 108.54838 0.90364142 + 1574200 -33.79073 -33.80316 0.012429881 654.17356 0.60677953 + 1574300 -33.788504 -33.799049 0.01054464 554.955 -0.38751392 + 1574400 -33.792472 -33.792787 0.00031521127 16.589288 -1.450199 + 1574500 -33.795521 -33.799604 0.0040835258 214.91232 -1.5129018 + 1574600 -33.795238 -33.803554 0.0083163957 437.68449 -1.2778932 + 1574700 -33.791731 -33.796224 0.0044924006 236.43104 -1.0670247 + 1574800 -33.787137 -33.789106 0.0019691843 103.63641 -0.37684617 + 1574900 -33.790311 -33.80079 0.010478229 551.45982 0.9909488 + 1575000 -33.797122 -33.802835 0.0057133591 300.68899 1.3034557 + 1575100 -33.795643 -33.796558 0.00091509939 48.160865 1.1676883 + 1575200 -33.792058 -33.795252 0.0031937227 168.08278 0.96283769 + 1575300 -33.788437 -33.803586 0.015149011 797.27894 0.78734166 + 1575400 -33.791775 -33.79864 0.0068655492 361.32773 -0.12984142 + 1575500 -33.795317 -33.795457 0.00014076382 7.4082742 -0.79117349 + 1575600 -33.795711 -33.800742 0.0050314766 264.80213 -0.82509259 + 1575700 -33.794332 -33.803465 0.0091330169 480.66253 -0.72937725 + 1575800 -33.792898 -33.795619 0.0027206219 143.1839 -0.88724439 + 1575900 -33.791736 -33.793417 0.0016816527 88.503881 -0.62924323 + 1576000 -33.791207 -33.802599 0.011392187 599.56067 0.19104518 + 1576100 -33.796038 -33.802078 0.0060399419 317.87676 0.41839864 + 1576200 -33.79766 -33.797888 0.00022792798 11.995647 0.38859409 + 1576300 -33.796482 -33.799465 0.0029829563 156.99033 0.53019083 + 1576400 -33.791586 -33.803943 0.012357157 650.34613 0.72394906 + 1576500 -33.790658 -33.796417 0.0057584893 303.06416 0.23785223 + 1576600 -33.791695 -33.792198 0.0005030186 26.47342 -0.20978838 + 1576700 -33.793264 -33.801128 0.0078637811 413.86378 -0.12136524 + 1576800 -33.796364 -33.803216 0.0068517639 360.60222 -0.23723215 + 1576900 -33.799335 -33.799986 0.00065113873 34.268851 -0.46187584 + 1577000 -33.798894 -33.799949 0.0010549987 55.523638 -0.40148167 + 1577100 -33.796147 -33.803578 0.0074314611 391.11117 -0.033469873 + 1577200 -33.793878 -33.80064 0.0067623442 355.89614 0.15001778 + 1577300 -33.792025 -33.792368 0.0003436047 18.083609 0.14760397 + 1577400 -33.790285 -33.797216 0.0069306309 364.75292 0.6404744 + 1577500 -33.79058 -33.803534 0.012954756 681.79726 1.0221871 + 1577600 -33.795619 -33.798152 0.0025333976 133.33046 0.67636035 + 1577700 -33.796575 -33.797241 0.00066571989 35.036244 0.4735934 + 1577800 -33.79499 -33.802512 0.0075214413 395.84674 0.43550505 + 1577900 -33.788254 -33.801303 0.01304907 686.76091 0.049562489 + 1578000 -33.788732 -33.790456 0.0017242117 90.743722 -0.97053832 + 1578100 -33.790703 -33.795095 0.0043919194 231.1428 -1.2069413 + 1578200 -33.792347 -33.803014 0.010666476 561.36712 -1.0206491 + 1578300 -33.793621 -33.798558 0.0049378543 259.87487 -1.0594686 + 1578400 -33.794309 -33.794908 0.00059886811 31.517895 -0.86992646 + 1578500 -33.79576 -33.801326 0.0055657368 292.91976 -0.20610318 + 1578600 -33.796611 -33.803617 0.00700621 368.73058 0.28980446 + 1578700 -33.794446 -33.797057 0.0026107176 137.39974 0.46670658 + 1578800 -33.789859 -33.792527 0.0026680346 140.41628 0.82366162 + 1578900 -33.788503 -33.801734 0.013230736 696.32181 1.5582558 + 1579000 -33.791374 -33.79933 0.0079554167 418.68649 1.4509008 + 1579100 -33.792595 -33.793003 0.00040723212 21.432263 0.96128175 + 1579200 -33.79248 -33.798109 0.0056293011 296.26509 0.73235235 + 1579300 -33.792558 -33.803869 0.011311618 595.32035 0.3764946 + 1579400 -33.794444 -33.798488 0.0040438532 212.82439 -0.42518641 + 1579500 -33.796332 -33.797134 0.00080237602 42.228334 -0.9020432 + 1579600 -33.79798 -33.802294 0.0043146206 227.07463 -0.87832917 + 1579700 -33.797492 -33.802761 0.0052686369 277.28366 -0.78065237 + 1579800 -33.792765 -33.794586 0.00182033 95.802343 -0.68174154 + 1579900 -33.790575 -33.794577 0.0040015754 210.59934 -0.027494621 + 1580000 -33.791401 -33.803441 0.012040422 633.67669 0.93452095 + 1580100 -33.795304 -33.800385 0.0050806112 267.38804 1.0867745 + 1580200 -33.796695 -33.796747 5.2680224e-05 2.7725132 0.9872695 + 1580300 -33.796192 -33.800525 0.0043333282 228.0592 0.98484069 + 1580400 -33.789604 -33.803481 0.013876952 730.33158 0.72278231 + 1580500 -33.788752 -33.793491 0.0047387325 249.39527 -0.46521563 + 1580600 -33.792554 -33.794209 0.0016553106 87.117518 -1.1525478 + 1580700 -33.794895 -33.802436 0.0075406216 396.85619 -1.1594121 + 1580800 -33.794427 -33.801593 0.0071661511 377.14814 -1.1696535 + 1580900 -33.792268 -33.793087 0.00081908719 43.107828 -1.162291 + 1581000 -33.788469 -33.794748 0.0062793422 330.47618 -0.41229369 + 1581100 -33.775406 -33.803736 0.028330723 1491.0207 1.301229 + 1581200 -33.788685 -33.795099 0.0064140889 337.56778 1.5453151 + 1581300 -33.791888 -33.792352 0.00046407786 24.424004 1.6408649 + 1581400 -33.793667 -33.800956 0.0072892543 383.62695 1.8143752 + 1581500 -33.794445 -33.802614 0.008168917 429.92282 1.4037801 + 1581600 -33.793643 -33.795619 0.0019764638 104.01953 0.43198858 + 1581700 -33.790696 -33.794817 0.0041215634 216.91421 -0.49177081 + 1581800 -33.78784 -33.8031 0.015259262 803.08135 -1.2065101 + 1581900 -33.793736 -33.799459 0.005722946 301.19355 -2.1600785 + 1582000 -33.795497 -33.795564 6.7020344e-05 3.5272209 -2.4269371 + 1582100 -33.79459 -33.799683 0.0050934484 268.06365 -1.8306093 + 1582200 -33.791792 -33.803518 0.011725548 617.10516 -0.68846936 + 1582300 -33.791744 -33.796221 0.0044774198 235.64261 0.26353806 + 1582400 -33.794206 -33.795823 0.001617218 85.112743 1.2503412 + 1582500 -33.799352 -33.802771 0.0034197768 179.9798 1.7952329 + 1582600 -33.797889 -33.802533 0.0046435218 244.38441 1.7377968 + 1582700 -33.794219 -33.795804 0.0015849326 83.41359 0.96718789 + 1582800 -33.791332 -33.796101 0.004768489 250.96132 -0.056886736 + 1582900 -33.791012 -33.803422 0.012409599 653.10611 -0.98505012 + 1583000 -33.794857 -33.799479 0.0046222035 243.26245 -2.0372581 + 1583100 -33.79669 -33.796759 6.8919366e-05 3.6271648 -2.3977804 + 1583200 -33.796689 -33.800892 0.0042035554 221.22937 -1.9622297 + 1583300 -33.790482 -33.803329 0.012846859 676.11871 -0.85002058 + 1583400 -33.789436 -33.794793 0.0053564592 281.90567 0.38085512 + 1583500 -33.793663 -33.795668 0.0020052655 105.53533 1.558056 + 1583600 -33.795247 -33.802052 0.006804877 358.1346 2.3721514 + 1583700 -33.793695 -33.800632 0.0069368591 365.08071 2.4440977 + 1583800 -33.789935 -33.791108 0.0011727919 61.722993 1.6864917 + 1583900 -33.788681 -33.795739 0.0070578947 371.4507 0.89522062 + 1584000 -33.791091 -33.803941 0.012850017 676.28492 0.076950056 + 1584100 -33.794598 -33.798746 0.0041486779 218.34122 -1.0525537 + 1584200 -33.795648 -33.795998 0.00035003014 18.421774 -1.6636136 + 1584300 -33.794625 -33.801208 0.0065834486 346.48103 -1.5732075 + 1584400 -33.787654 -33.801778 0.014124132 743.34046 -1.1648968 + 1584500 -33.78786 -33.790249 0.0023895639 125.76062 -0.99128689 + 1584600 -33.791121 -33.794649 0.003527708 185.66013 -0.20239229 + 1584700 -33.793059 -33.803563 0.010504443 552.83944 0.657457 + 1584800 -33.793754 -33.799843 0.0060890968 320.46373 0.89175382 + 1584900 -33.793162 -33.793279 0.00011761505 6.1899754 0.85547547 + 1585000 -33.789311 -33.797768 0.00845725 445.09752 1.1052706 + 1585100 -33.783596 -33.803157 0.019561358 1029.4968 1.1633168 + 1585200 -33.79138 -33.794215 0.002834733 149.18947 0.25547324 + 1585300 -33.793433 -33.794986 0.0015529827 81.732092 -0.093832136 + 1585400 -33.793675 -33.802869 0.0091944333 483.89482 -0.085964364 + 1585500 -33.792885 -33.801007 0.0081214481 427.42457 -0.39248967 + 1585600 -33.789921 -33.790562 0.00064136588 33.754514 -0.92417157 + 1585700 -33.785896 -33.793946 0.0080503561 423.68306 -0.76916139 + 1585800 -33.790168 -33.803788 0.013620282 716.82331 -0.39722164 + 1585900 -33.79466 -33.798115 0.0034547259 181.81914 -0.56848163 + 1586000 -33.794497 -33.795006 0.00050918787 26.798104 -0.44812348 + 1586100 -33.792729 -33.801553 0.0088234984 464.37285 0.16905125 + 1586200 -33.787317 -33.801509 0.014191652 746.89398 0.65605296 + 1586300 -33.783277 -33.785437 0.0021603925 113.69953 0.53904401 + 1586400 -33.79046 -33.794947 0.0044868574 236.1393 0.99148274 + 1586500 -33.793882 -33.803535 0.0096529535 508.02633 1.2199421 + 1586600 -33.794104 -33.79922 0.0051162868 269.26561 0.79940637 + 1586700 -33.79252 -33.792887 0.0003678794 19.361165 0.14696799 + 1586800 -33.788459 -33.798893 0.010433953 549.12961 -0.15015841 + 1586900 -33.787408 -33.802896 0.015487759 815.10695 -0.65927603 + 1587000 -33.794582 -33.796309 0.0017264228 90.860093 -1.4367229 + 1587100 -33.79533 -33.796721 0.0013918878 73.253815 -1.4304187 + 1587200 -33.793768 -33.803031 0.009263846 487.54795 -0.85352778 + 1587300 -33.789383 -33.799611 0.010227332 538.25538 -0.28089496 + 1587400 -33.786341 -33.787501 0.0011603528 61.068331 0.20734277 + 1587500 -33.791314 -33.797563 0.0062493272 328.89652 1.2480754 + 1587600 -33.795442 -33.803572 0.0081294452 427.84545 1.6471409 + 1587700 -33.795032 -33.798163 0.0031305611 164.75864 1.3447301 + 1587800 -33.79189 -33.792882 0.00099145456 52.179369 0.7534593 + 1587900 -33.787692 -33.800947 0.013255559 697.62826 0.31910276 + 1588000 -33.792117 -33.802177 0.010060589 529.47985 -0.58676598 + 1588100 -33.796228 -33.796903 0.0006750111 35.525232 -1.2993396 + 1588200 -33.795636 -33.79797 0.0023335617 122.81327 -1.3420055 + 1588300 -33.792391 -33.803609 0.011218052 590.39607 -0.86830009 + 1588400 -33.789115 -33.797371 0.0082564754 434.53093 -0.54809562 + 1588500 -33.790359 -33.790896 0.00053705146 28.264539 -0.17112264 + 1588600 -33.795512 -33.800869 0.0053562448 281.89438 0.5721543 + 1588700 -33.796421 -33.803545 0.0071242635 374.94364 0.87558797 + 1588800 -33.794577 -33.796764 0.0021866212 115.07992 0.7044223 + 1588900 -33.791967 -33.793568 0.0016013131 84.275682 0.51618767 + 1589000 -33.789964 -33.802555 0.012591014 662.65384 0.62318367 + 1589100 -33.791636 -33.800635 0.0089990035 473.60953 0.13568512 + 1589200 -33.792949 -33.793262 0.00031242937 16.442879 -0.51591806 + 1589300 -33.792934 -33.797899 0.0049650493 261.30611 -0.57729906 + 1589400 -33.792388 -33.803849 0.01146149 603.208 -0.46420566 + 1589500 -33.792291 -33.79673 0.0044393193 233.63742 -0.73770186 + 1589600 -33.792372 -33.792971 0.00059884632 31.516748 -0.7416691 + 1589700 -33.793619 -33.801633 0.0080139857 421.76892 -0.19284327 + 1589800 -33.795831 -33.802932 0.0071008966 373.71386 0.057383913 + 1589900 -33.796235 -33.797138 0.00090337693 47.543922 0.033240393 + 1590000 -33.793651 -33.796229 0.0025781541 135.68595 0.25179331 + 1590100 -33.78751 -33.803526 0.016016444 842.93116 0.88893428 + 1590200 -33.789892 -33.797743 0.0078505664 413.16831 0.72922417 + 1590300 -33.792872 -33.792958 8.655119e-05 4.5551119 0.44178066 + 1590400 -33.793552 -33.79994 0.0063880944 336.19971 0.55579712 + 1590500 -33.793037 -33.803486 0.010449381 549.94158 0.44742835 + 1590600 -33.792528 -33.795239 0.0027106997 142.66171 -0.1918493 + 1590700 -33.79169 -33.793546 0.001856873 97.725572 -0.55978103 + 1590800 -33.79119 -33.802639 0.011449451 602.57438 -0.43665586 + 1590900 -33.793531 -33.801078 0.0075473227 397.20886 -0.64660866 + 1591000 -33.795182 -33.795389 0.00020636403 10.860755 -0.84854774 + 1591100 -33.795408 -33.799152 0.0037445399 197.0718 -0.5196114 + 1591200 -33.792123 -33.803907 0.011784314 620.19794 0.056210481 + 1591300 -33.786769 -33.793711 0.0069416587 365.33331 0.28176441 + 1591400 -33.788718 -33.78976 0.0010418436 54.831297 0.58853654 + 1591500 -33.792593 -33.801321 0.008728074 459.35075 1.2035548 + 1591600 -33.7933 -33.802325 0.00902472 474.96296 1.2132795 + 1591700 -33.792886 -33.794042 0.0011561062 60.844837 0.6455015 + 1591800 -33.79184 -33.795453 0.0036122068 190.10722 0.29547809 + 1591900 -33.79025 -33.803679 0.013428911 706.75161 0.11485 + 1592000 -33.792584 -33.798828 0.0062447149 328.65377 -0.62942873 + 1592100 -33.795251 -33.795338 8.6589322e-05 4.5571188 -1.0864975 + 1592200 -33.796116 -33.800937 0.0048206689 253.7075 -0.91232857 + 1592300 -33.79324 -33.803338 0.010098366 531.46797 -0.578993 + 1592400 -33.787068 -33.791356 0.0042887976 225.71559 -0.41358996 + 1592500 -33.788509 -33.79106 0.0025515292 134.28471 0.19269136 + 1592600 -33.792095 -33.802673 0.010577268 556.67218 1.0200917 + 1592700 -33.793826 -33.800987 0.0071614027 376.89824 1.1201124 + 1592800 -33.793585 -33.793879 0.00029387683 15.466475 0.80711888 + 1592900 -33.79228 -33.797609 0.0053285497 280.43682 0.7344453 + 1593000 -33.783769 -33.80384 0.020070849 1056.3109 0.64831748 + 1593100 -33.786102 -33.792361 0.0062584504 329.37666 -0.62186491 + 1593200 -33.791793 -33.792723 0.00093018312 48.954708 -1.1761657 + 1593300 -33.793419 -33.801702 0.0082838242 435.97028 -0.99540723 + 1593400 -33.793742 -33.80214 0.0083979672 441.97752 -0.89445775 + 1593500 -33.792523 -33.793715 0.0011925697 62.763879 -0.88436287 + 1593600 -33.788697 -33.79375 0.0050531995 265.94538 -0.24632823 + 1593700 -33.786809 -33.803676 0.016867449 887.71879 0.90231096 + 1593800 -33.794074 -33.799086 0.0050114932 263.75042 1.030943 + 1593900 -33.795019 -33.79511 9.0142783e-05 4.7441343 0.97530585 + 1594000 -33.793983 -33.800486 0.0065037301 342.28551 1.0820374 + 1594100 -33.790324 -33.802983 0.012659103 666.23728 0.87436278 + 1594200 -33.785174 -33.78929 0.0041166337 216.65476 -0.23439202 + 1594300 -33.78426 -33.788639 0.0043781785 230.41963 -1.0510503 + 1594400 -33.79278 -33.802941 0.010161498 534.79056 -1.0883441 + 1594500 -33.794711 -33.800683 0.0059716589 314.28308 -1.2763606 + 1594600 -33.794051 -33.794276 0.0002251805 11.851049 -1.2980856 + 1594700 -33.791051 -33.797773 0.006721892 353.76718 -0.5775902 + 1594800 -33.786011 -33.803744 0.017733046 933.27437 0.6025925 + 1594900 -33.793181 -33.79651 0.0033293933 175.223 0.92393288 + 1595000 -33.795584 -33.796246 0.00066259894 34.871991 1.1475773 + 1595100 -33.794818 -33.802277 0.0074595045 392.58707 1.3847667 + 1595200 -33.790948 -33.80136 0.010412437 547.99726 1.1072871 + 1595300 -33.788166 -33.789686 0.0015204062 80.017622 0.040328896 + 1595400 -33.790696 -33.795563 0.004866867 256.13887 -0.49657248 + 1595500 -33.796646 -33.803816 0.0071700048 377.35096 -0.63996659 + 1595600 -33.795617 -33.799899 0.0042821279 225.36457 -0.90276752 + 1595700 -33.79236 -33.792467 0.00010787264 5.677241 -1.0765117 + 1595800 -33.789398 -33.798896 0.0094985373 499.89955 -0.49040719 + 1595900 -33.790573 -33.803267 0.012694076 668.07789 0.065963849 + 1596000 -33.794542 -33.796284 0.0017423091 91.696175 0.054927966 + 1596100 -33.796662 -33.797943 0.0012810583 67.420955 0.29116138 + 1596200 -33.800052 -33.803575 0.0035227187 185.39754 0.52064233 + 1596300 -33.799998 -33.802867 0.0028688966 150.98747 0.45126835 + 1596400 -33.797598 -33.797952 0.00035387878 18.624325 0.13616191 + 1596500 -33.795037 -33.798788 0.0037513307 197.42919 -0.096299869 + 1596600 -33.791353 -33.803918 0.012565394 661.30547 -0.242624 + 1596700 -33.790011 -33.79585 0.0058395306 307.32929 -0.94426538 + 1596800 -33.791424 -33.791927 0.00050290271 26.467321 -1.3450692 + 1596900 -33.795865 -33.801586 0.0057208656 301.08405 -1.026665 + 1597000 -33.796619 -33.803038 0.0064193947 337.84702 -0.75272532 + 1597100 -33.79476 -33.79651 0.0017500411 92.103102 -0.51821323 + 1597200 -33.792979 -33.795979 0.0029996051 157.86654 0.15198299 + 1597300 -33.792307 -33.803312 0.01100518 579.1928 1.1300862 + 1597400 -33.792755 -33.799654 0.0068984931 363.06154 1.4564956 + 1597500 -33.792782 -33.792853 7.049328e-05 3.7099985 1.361071 + 1597600 -33.791879 -33.79826 0.0063813091 335.84261 1.4496352 + 1597700 -33.789753 -33.803312 0.013559432 713.62083 1.2251992 + 1597800 -33.791411 -33.79517 0.0037583219 197.79713 0.18239211 + 1597900 -33.794441 -33.795774 0.001333112 70.160493 -0.44047642 + 1598000 -33.796104 -33.802815 0.0067107677 353.18172 -0.56930299 + 1598100 -33.794682 -33.801957 0.0072754025 382.89794 -0.78594349 + 1598200 -33.787235 -33.788648 0.0014129684 74.363267 -1.2134946 + 1598300 -33.787301 -33.793656 0.0063554748 334.48297 -0.89603795 + 1598400 -33.791659 -33.803501 0.01184154 623.20969 -0.34674136 + 1598500 -33.794041 -33.798381 0.004339702 228.39465 -0.30094574 + 1598600 -33.793934 -33.794388 0.00045435685 23.912396 -0.13675288 + 1598700 -33.792304 -33.800816 0.0085120766 447.983 0.48830163 + 1598800 -33.783338 -33.801931 0.018592439 978.50348 1.0872599 + 1598900 -33.787996 -33.79048 0.0024839239 130.7267 0.82205758 + 1599000 -33.792459 -33.795254 0.0027949825 147.09744 0.94912617 + 1599100 -33.793467 -33.802973 0.0095060774 500.29637 1.0518964 + 1599200 -33.793013 -33.799463 0.0064497224 339.44313 0.55906765 + 1599300 -33.790508 -33.791256 0.00074783666 39.357976 -0.22513495 + 1599400 -33.786073 -33.796803 0.010730471 564.73513 -0.57860573 + 1599500 -33.791216 -33.80356 0.012343555 649.63027 -0.95772199 + 1599600 -33.795134 -33.797472 0.0023387567 123.08668 -1.417936 + 1599700 -33.79476 -33.795813 0.0010529635 55.41653 -1.3286163 + 1599800 -33.792097 -33.802273 0.010175545 535.52985 -0.57194912 + 1599900 -33.786378 -33.799813 0.013434934 707.06859 0.22548347 + 1600000 -33.786414 -33.787503 0.0010890845 57.317547 0.66734643 + 1600100 -33.793881 -33.797917 0.0040362058 212.42191 1.4267926 + 1600200 -33.795166 -33.803543 0.0083767865 440.8628 1.6963434 + 1600300 -33.793579 -33.798286 0.0047071253 247.73181 1.2339007 + 1600400 -33.789934 -33.791169 0.0012346881 64.980533 0.37569178 + 1600500 -33.787912 -33.79982 0.011908645 626.74137 -0.18552374 + 1600600 -33.795006 -33.802903 0.0078966259 415.59238 -0.92165566 + 1600700 -33.796193 -33.797301 0.0011082608 58.326778 -1.4109264 + 1600800 -33.794644 -33.796553 0.0019095139 100.49601 -1.375216 + 1600900 -33.790519 -33.803218 0.012698552 668.31347 -0.67869299 + 1601000 -33.790093 -33.799215 0.0091223876 480.10312 -0.19571064 + 1601100 -33.792913 -33.793452 0.00053841892 28.336508 0.11650706 + 1601200 -33.79408 -33.799377 0.0052973475 278.79467 0.75161933 + 1601300 -33.793395 -33.803435 0.010040436 528.41918 1.1942049 + 1601400 -33.791721 -33.795289 0.0035684528 187.80449 0.95993258 + 1601500 -33.789746 -33.791145 0.0013994977 73.654318 0.66960768 + 1601600 -33.789605 -33.801722 0.012116657 637.68886 0.73758807 + 1601700 -33.795499 -33.802347 0.0068482825 360.419 0.26612975 + 1601800 -33.796556 -33.797105 0.00054830829 28.856976 -0.24014755 + 1601900 -33.795301 -33.798453 0.0031517679 165.87473 -0.4136463 + 1602000 -33.791684 -33.803821 0.012137897 638.80669 -0.3713574 + 1602100 -33.790956 -33.797084 0.0061285003 322.5375 -0.7747071 + 1602200 -33.791498 -33.79174 0.00024293077 12.78523 -0.99852108 + 1602300 -33.792339 -33.800298 0.007959418 418.89707 -0.52959486 + 1602400 -33.794271 -33.803161 0.008889407 467.84156 -0.19858491 + 1602500 -33.796983 -33.798156 0.0011723188 61.698091 -0.19274269 + 1602600 -33.798473 -33.799612 0.0011393561 59.963296 0.035711178 + 1602700 -33.797814 -33.803627 0.0058123994 305.9014 0.37260061 + 1602800 -33.792175 -33.800467 0.0082923682 436.41994 0.53778859 + 1602900 -33.790689 -33.791187 0.00049766392 26.191608 0.34282835 + 1603000 -33.791066 -33.797108 0.0060420113 317.98566 0.61113876 + 1603100 -33.793842 -33.803547 0.0097046752 510.7484 0.7247874 + 1603200 -33.796679 -33.799239 0.0025606686 134.7657 0.33694207 + 1603300 -33.797563 -33.798044 0.000481161 25.323074 0.08930141 + 1603400 -33.797313 -33.802582 0.0052697899 277.34434 0.069125453 + 1603500 -33.792477 -33.802515 0.0100381 528.29624 -0.095450959 + 1603600 -33.789838 -33.792532 0.0026943013 141.79867 -0.74173512 + 1603700 -33.791167 -33.794846 0.0036791407 193.62989 -0.88282552 + 1603800 -33.79455 -33.802751 0.0082013737 431.63098 -0.6535161 + 1603900 -33.796523 -33.800435 0.0039121373 205.8923 -0.64385333 + 1604000 -33.796763 -33.797216 0.00045317265 23.850072 -0.53232219 + 1604100 -33.79437 -33.800299 0.0059289774 312.03679 0.012322871 + 1604200 -33.789714 -33.803694 0.013979836 735.74628 0.77567764 + 1604300 -33.792485 -33.796553 0.0040683747 214.11493 0.89918197 + 1604400 -33.795506 -33.796558 0.0010515763 55.343525 1.0231873 + 1604500 -33.795754 -33.801768 0.0060143113 316.52784 1.1554263 + 1604600 -33.789612 -33.800109 0.010497278 552.46236 0.85113478 + 1604700 -33.787265 -33.789547 0.0022816867 120.08314 -0.27606144 + 1604800 -33.790703 -33.796127 0.0054243309 285.4777 -0.78302317 + 1604900 -33.794554 -33.803714 0.0091595886 482.06098 -0.94363905 + 1605000 -33.795655 -33.799781 0.0041258019 217.13727 -1.1912111 + 1605100 -33.794032 -33.794544 0.00051221129 26.957224 -1.1957912 + 1605200 -33.787216 -33.798537 0.011321189 595.8241 -0.37700352 + 1605300 -33.787451 -33.802319 0.01486798 782.48852 0.56098742 + 1605400 -33.791289 -33.793345 0.0020564035 108.22668 0.69461838 + 1605500 -33.792222 -33.794567 0.0023449958 123.41504 1.0334389 + 1605600 -33.79261 -33.802745 0.010134645 533.37732 1.4137312 + 1605700 -33.793907 -33.800579 0.0066717502 351.12826 1.0870101 + 1605800 -33.796956 -33.797449 0.00049393236 25.99522 0.55490355 + 1605900 -33.798106 -33.801206 0.0030996014 163.12926 0.31614919 + 1606000 -33.795692 -33.803819 0.008127056 427.71971 0.0033417336 + 1606100 -33.791056 -33.796239 0.0051832701 272.79088 -0.8776476 + 1606200 -33.790915 -33.791974 0.0010587165 55.719306 -1.6915042 + 1606300 -33.791651 -33.800531 0.0088797606 467.33388 -1.7065239 + 1606400 -33.793442 -33.801594 0.0081518008 429.02201 -1.6255083 + 1606500 -33.796515 -33.797428 0.00091265752 48.032351 -1.502206 + 1606600 -33.797865 -33.79988 0.0020148287 106.03864 -0.9523576 + 1606700 -33.796245 -33.80384 0.0075947065 399.70263 -0.1000477 + 1606800 -33.789301 -33.799296 0.0099950712 526.03168 0.95795357 + 1606900 -33.791005 -33.792866 0.001860595 97.921457 1.8228346 + 1607000 -33.792975 -33.798239 0.0052645508 277.06861 2.6110749 + 1607100 -33.792755 -33.801438 0.0086826351 456.95934 2.7552422 + 1607200 -33.786306 -33.791836 0.0055298867 291.033 1.8817611 + 1607300 -33.783021 -33.788313 0.0052923258 278.53038 0.37502521 + 1607400 -33.790184 -33.802237 0.01205307 634.34235 -0.51924898 + 1607500 -33.793981 -33.801616 0.0076349032 401.81815 -1.4161481 + 1607600 -33.79518 -33.795888 0.00070803424 37.26321 -2.0064188 + 1607700 -33.794479 -33.798034 0.0035549946 187.0962 -1.8559425 + 1607800 -33.788435 -33.803314 0.014879045 783.07088 -0.97920312 + 1607900 -33.787136 -33.794879 0.0077424393 407.47767 -0.21034851 + 1608000 -33.791329 -33.792249 0.00092040589 48.440141 0.52393552 + 1608100 -33.792526 -33.800452 0.0079263145 417.15486 1.4331592 + 1608200 -33.792621 -33.802306 0.0096852529 509.72622 1.8122054 + 1608300 -33.792671 -33.794664 0.0019935022 104.91624 1.4429447 + 1608400 -33.793005 -33.796102 0.0030973012 163.0082 1.1375009 + 1608500 -33.795204 -33.803383 0.008179436 430.47642 0.85182494 + 1608600 -33.796805 -33.801346 0.0045411062 238.99437 0.17439398 + 1608700 -33.795514 -33.795927 0.00041257307 21.713353 -0.55777874 + 1608800 -33.79002 -33.797464 0.0074440076 391.77148 -1.0793751 + 1608900 -33.788541 -33.803088 0.014546912 765.59102 -1.5317887 + 1609000 -33.791812 -33.795306 0.0034943047 183.90214 -2.1600604 + 1609100 -33.793204 -33.794378 0.001174047 61.789045 -2.0647202 + 1609200 -33.793299 -33.802098 0.0087992408 463.09619 -1.2368248 + 1609300 -33.793189 -33.801933 0.0087435362 460.16451 -0.39868486 + 1609400 -33.793329 -33.794778 0.0014488095 76.24955 0.22880925 + 1609500 -33.793343 -33.797267 0.0039241721 206.52568 1.1569649 + 1609600 -33.793014 -33.803273 0.010258625 539.9023 1.9906423 + 1609700 -33.791929 -33.797479 0.0055497652 292.07919 1.9611222 + 1609800 -33.790019 -33.790554 0.00053531914 28.173369 1.509564 + 1609900 -33.789368 -33.799437 0.010068435 529.89276 1.2813073 + 1610000 -33.794276 -33.803265 0.0089890952 473.08806 0.59808287 + 1610100 -33.796452 -33.79795 0.0014978311 78.829513 -0.21146258 + 1610200 -33.795738 -33.797454 0.0017162163 90.322935 -0.70547962 + 1610300 -33.793246 -33.803108 0.0098619738 519.02688 -0.8961104 + 1610400 -33.79226 -33.79999 0.0077301877 406.83288 -1.2839182 + 1610500 -33.79219 -33.792457 0.00026646583 14.023859 -1.6085828 + 1610600 -33.792109 -33.797939 0.0058297732 306.81576 -1.1478976 + 1610700 -33.793279 -33.803721 0.0104415 549.52681 -0.4627452 + 1610800 -33.796711 -33.799269 0.0025573594 134.59154 -0.23881295 + 1610900 -33.797719 -33.798275 0.00055601754 29.262707 0.071992344 + 1611000 -33.795871 -33.802482 0.006611182 347.94061 0.6294775 + 1611100 -33.789423 -33.801793 0.012370432 651.04481 1.1406866 + 1611200 -33.790347 -33.79175 0.0014037614 73.878711 1.0057571 + 1611300 -33.792395 -33.795783 0.0033880416 178.30961 1.1621715 + 1611400 -33.794439 -33.803245 0.0088057529 463.43892 1.202038 + 1611500 -33.796175 -33.800411 0.0042353177 222.90099 0.67862834 + 1611600 -33.797943 -33.798279 0.00033593236 17.67982 0.16250528 + 1611700 -33.797949 -33.801783 0.0038335672 201.75722 -0.088777537 + 1611800 -33.793614 -33.803551 0.0099367497 522.96227 -0.38840734 + 1611900 -33.790884 -33.795038 0.0041542623 218.63512 -1.1844033 + 1612000 -33.791287 -33.793007 0.0017202632 90.535917 -1.6243837 + 1612100 -33.792354 -33.801317 0.0089628016 471.70425 -1.3396272 + 1612200 -33.795941 -33.801393 0.0054525711 286.96396 -1.1499646 + 1612300 -33.797768 -33.79851 0.00074140525 39.019497 -0.95358931 + 1612400 -33.79675 -33.800149 0.0033993218 178.90327 -0.35200518 + 1612500 -33.790812 -33.803918 0.013106488 689.78279 0.74098123 + 1612600 -33.79109 -33.798349 0.0072586947 382.01863 1.440157 + 1612700 -33.792554 -33.793544 0.00098968529 52.086254 1.8164567 + 1612800 -33.792277 -33.798361 0.0060842369 320.20796 2.1793598 + 1612900 -33.788798 -33.800523 0.011724804 617.06596 2.0128226 + 1613000 -33.784713 -33.7899 0.0051868786 272.98079 0.85142971 + 1613100 -33.792302 -33.79601 0.0037081977 195.15913 -0.016674757 + 1613200 -33.795599 -33.803481 0.0078819435 414.81966 -0.34777493 + 1613300 -33.79536 -33.801323 0.0059629898 313.82684 -0.80818903 + 1613400 -33.79295 -33.793999 0.0010489323 55.204371 -1.2973655 + 1613500 -33.789081 -33.796231 0.0071495889 376.27648 -1.1909111 + 1613600 -33.787393 -33.80224 0.014846527 781.35949 -0.71194615 + 1613700 -33.794473 -33.797152 0.002679271 141.00764 -0.75074062 + 1613800 -33.795611 -33.796617 0.0010053451 52.910414 -0.49848343 + 1613900 -33.79419 -33.802072 0.0078821452 414.83027 0.1226757 + 1614000 -33.791204 -33.802442 0.011238331 591.46336 0.63481907 + 1614100 -33.792795 -33.795472 0.0026772258 140.9 0.70867018 + 1614200 -33.796715 -33.798761 0.0020457628 107.66667 0.90401337 + 1614300 -33.79686 -33.802544 0.0056837008 299.1281 0.9697778 + 1614400 -33.792995 -33.798956 0.0059618423 313.76644 0.5756399 + 1614500 -33.791321 -33.792935 0.0016140634 84.946717 -0.21903411 + 1614600 -33.792166 -33.799751 0.0075846983 399.17591 -0.56400314 + 1614700 -33.795037 -33.803561 0.0085239693 448.6089 -0.85276944 + 1614800 -33.796609 -33.798658 0.0020490805 107.84128 -1.1902835 + 1614900 -33.796205 -33.796954 0.00074923668 39.431658 -1.1290829 + 1615000 -33.791204 -33.801799 0.010595114 557.61139 -0.40737327 + 1615100 -33.78804 -33.800327 0.012287157 646.66213 0.3517136 + 1615200 -33.791685 -33.792663 0.00097808772 51.475884 0.64845592 + 1615300 -33.794674 -33.79834 0.0036663486 192.95666 1.1467783 + 1615400 -33.794911 -33.803712 0.0088017901 463.23036 1.396846 + 1615500 -33.793834 -33.798625 0.0047902381 252.10596 0.98130311 + 1615600 -33.79296 -33.793667 0.00070703462 37.210601 0.3308451 + 1615700 -33.7924 -33.800474 0.0080738713 424.92064 0.0082891637 + 1615800 -33.792293 -33.80261 0.010317232 542.9867 -0.50224606 + 1615900 -33.792562 -33.794426 0.0018634477 98.07159 -1.2702432 + 1616000 -33.792698 -33.795214 0.0025159074 132.40996 -1.4378155 + 1616100 -33.795113 -33.803191 0.0080776093 425.11737 -1.0959206 + 1616200 -33.796231 -33.801368 0.0051369619 270.35372 -0.88333741 + 1616300 -33.794588 -33.795302 0.0007135339 37.552653 -0.57791294 + 1616400 -33.790261 -33.797543 0.0072822602 383.25886 0.40739856 + 1616500 -33.788518 -33.803262 0.014743279 775.9256 1.6206434 + 1616600 -33.794067 -33.796835 0.0027673071 145.64091 1.8141088 + 1616700 -33.796353 -33.796935 0.00058201584 30.630975 1.8052368 + 1616800 -33.795407 -33.802088 0.0066811109 351.62091 1.6614748 + 1616900 -33.79238 -33.802215 0.009834448 517.57823 0.91449878 + 1617000 -33.791066 -33.793897 0.0028303589 148.95927 -0.52554687 + 1617100 -33.793504 -33.797139 0.0036355429 191.33538 -1.4331923 + 1617200 -33.797233 -33.802889 0.0056566473 297.7043 -1.6979618 + 1617300 -33.79643 -33.800234 0.003803846 200.19302 -1.7470181 + 1617400 -33.794053 -33.794998 0.00094498232 49.733577 -1.4204557 + 1617500 -33.79278 -33.800134 0.0073539055 387.02949 -0.32589696 + 1617600 -33.793208 -33.803559 0.010350091 544.71607 0.78081563 + 1617700 -33.794974 -33.7975 0.0025256978 132.92522 1.2707538 + 1617800 -33.796452 -33.797302 0.00085027123 44.749016 1.6078862 + 1617900 -33.797112 -33.802374 0.0052616101 276.91385 1.7810847 + 1618000 -33.793431 -33.801289 0.007858032 413.56122 1.3827061 + 1618100 -33.789821 -33.792605 0.0027835596 146.49626 0.12480691 + 1618200 -33.791498 -33.797114 0.0056157697 295.55295 -0.81573776 + 1618300 -33.794382 -33.803308 0.0089263211 469.78432 -1.3480854 + 1618400 -33.79461 -33.798562 0.0039520108 207.9908 -1.8547226 + 1618500 -33.793586 -33.793842 0.00025612773 13.479774 -1.9480695 + 1618600 -33.792352 -33.800215 0.0078631847 413.8324 -1.2160301 + 1618700 -33.791662 -33.803001 0.011339329 596.77876 -0.32897241 + 1618800 -33.794269 -33.796461 0.0021918874 115.35708 0.1770424 + 1618900 -33.797711 -33.799103 0.0013921157 73.265805 0.71556945 + 1619000 -33.798001 -33.803355 0.0053543265 281.79343 1.1002552 + 1619100 -33.795433 -33.801088 0.0056550543 297.62046 1.0768069 + 1619200 -33.793974 -33.794302 0.00032787955 17.256008 0.59839428 + 1619300 -33.792365 -33.79792 0.0055546877 292.33826 0.33086043 + 1619400 -33.790431 -33.803866 0.013435021 707.07317 0.015108846 + 1619500 -33.79258 -33.796668 0.0040879681 215.14611 -0.86692639 + 1619600 -33.796179 -33.796747 0.00056806352 29.896676 -1.2041777 + 1619700 -33.796989 -33.802337 0.0053478863 281.45449 -0.99451804 + 1619800 -33.793897 -33.802395 0.0084980405 447.24429 -0.68661587 + 1619900 -33.790045 -33.791899 0.0018540709 97.578099 -0.43488356 + 1620000 -33.790554 -33.794643 0.0040893489 215.21878 0.36166567 + 1620100 -33.7926 -33.803476 0.010875146 572.34924 1.1930552 + 1620200 -33.794906 -33.799878 0.0049721388 261.67923 1.2490252 + 1620300 -33.795461 -33.795543 8.2899259e-05 4.362914 1.0206335 + 1620400 -33.794289 -33.800262 0.0059733724 314.37326 0.93796731 + 1620500 -33.788644 -33.803261 0.014617288 769.29485 0.56880545 + 1620600 -33.788844 -33.79263 0.0037859655 199.25199 -0.70564774 + 1620700 -33.793166 -33.794887 0.0017209618 90.572682 -1.2827885 + 1620800 -33.794939 -33.802743 0.0078040548 410.72044 -1.1994808 + 1620900 -33.794068 -33.801146 0.007077729 372.49457 -1.1615925 + 1621000 -33.792521 -33.793247 0.00072584204 38.200419 -1.0497768 + 1621100 -33.79116 -33.796946 0.0057859179 304.5077 -0.23965846 + 1621200 -33.792693 -33.803903 0.011210361 589.99129 0.6744699 + 1621300 -33.797162 -33.799924 0.0027622329 145.37385 0.82080292 + 1621400 -33.797119 -33.797327 0.00020821165 10.957994 0.85420878 + 1621500 -33.793988 -33.801368 0.0073802178 388.41428 1.0047922 + 1621600 -33.789971 -33.802436 0.012464855 656.01418 0.81566794 + 1621700 -33.791109 -33.792926 0.0018169963 95.626892 -0.060321557 + 1621800 -33.792745 -33.795685 0.0029397829 154.71815 -0.41777699 + 1621900 -33.794054 -33.803496 0.0094419499 496.9214 -0.4193985 + 1622000 -33.794661 -33.800177 0.0055154288 290.2721 -0.71065504 + 1622100 -33.79415 -33.794258 0.00010811141 5.689807 -0.91630397 + 1622200 -33.792038 -33.798844 0.0068065183 358.22099 -0.48773536 + 1622300 -33.789337 -33.803629 0.014291202 752.1332 0.10320475 + 1622400 -33.791794 -33.794953 0.0031589894 166.2548 0.10288653 + 1622500 -33.794971 -33.796114 0.0011428551 60.147442 0.34614187 + 1622600 -33.796116 -33.802842 0.006725505 353.95733 0.6909663 + 1622700 -33.793464 -33.8015 0.0080355917 422.90602 0.67441224 + 1622800 -33.785497 -33.786473 0.00097601508 51.366803 0.060078071 + 1622900 -33.787393 -33.794449 0.0070566092 371.38305 0.0039471972 + 1623000 -33.792588 -33.803897 0.011308838 595.17405 0.03902516 + 1623100 -33.794915 -33.79869 0.0037754725 198.69975 -0.36403982 + 1623200 -33.794724 -33.794974 0.00024926092 13.11838 -0.57947106 + 1623300 -33.791165 -33.800905 0.0097400747 512.61145 -0.2394173 + 1623400 -33.784376 -33.801599 0.017223237 906.44361 0.06214696 + 1623500 -33.789755 -33.791268 0.0015127237 79.613297 -0.3057 + 1623600 -33.792096 -33.795346 0.0032499997 171.04459 -0.044388456 + 1623700 -33.792909 -33.803675 0.010766288 566.62011 0.37075553 + 1623800 -33.79363 -33.799467 0.0058364112 307.16512 0.24114806 + 1623900 -33.793593 -33.793679 8.5314331e-05 4.4900171 0.030132628 + 1624000 -33.792822 -33.799601 0.00677854 356.74852 0.2345105 + 1624100 -33.790953 -33.803484 0.012530923 659.4913 0.33069183 + 1624200 -33.790935 -33.793923 0.0029871857 157.21292 -0.15815053 + 1624300 -33.792827 -33.794501 0.0016733956 88.069317 -0.29543659 + 1624400 -33.795867 -33.803038 0.0071710935 377.40825 -0.079987241 + 1624500 -33.796553 -33.80205 0.005497282 289.31705 -0.13575711 + 1624600 -33.791433 -33.792208 0.00077535104 40.806033 -0.39789304 + 1624700 -33.787386 -33.794178 0.0067925313 357.48486 -0.13148359 + 1624800 -33.790108 -33.803931 0.013823245 727.50503 0.3246174 + 1624900 -33.794289 -33.798233 0.0039444193 207.59127 0.06260157 + 1625000 -33.794896 -33.795225 0.00032818475 17.272071 -0.024774197 + 1625100 -33.793745 -33.801431 0.0076860747 404.51126 0.25686573 + 1625200 -33.784227 -33.8013 0.017073223 898.54851 0.38736478 + 1625300 -33.785439 -33.787262 0.0018230816 95.947158 -0.24920076 + 1625400 -33.790418 -33.794462 0.0040442063 212.84297 -0.14315273 + 1625500 -33.792971 -33.803633 0.010661842 561.12323 0.1055664 + 1625600 -33.794222 -33.799623 0.0054012096 284.26085 -0.072708298 + 1625700 -33.793945 -33.794 5.5403917e-05 2.9158587 -0.2954848 + 1625800 -33.791067 -33.7992 0.0081322282 427.99192 -0.01244737 + 1625900 -33.786025 -33.803041 0.017016545 895.56559 0.34227795 + 1626000 -33.791278 -33.793789 0.002510268 132.11316 -0.10237077 + 1626100 -33.794411 -33.795906 0.0014951184 78.686748 -0.05185976 + 1626200 -33.794339 -33.803086 0.0087476567 460.38137 0.26898768 + 1626300 -33.792657 -33.800618 0.0079612161 418.9917 0.1778328 + 1626400 -33.789559 -33.790081 0.00052250728 27.499092 -0.19617611 + 1626500 -33.783132 -33.792984 0.0098522083 518.51293 0.031266857 + 1626600 -33.787097 -33.803899 0.016802083 884.27864 0.29106536 + 1626700 -33.793619 -33.797017 0.0033982535 178.84705 -0.13209107 + 1626800 -33.794238 -33.79493 0.00069190769 36.414485 -0.22994017 + 1626900 -33.793644 -33.802058 0.0084143347 442.83893 0.066634673 + 1627000 -33.790597 -33.801597 0.010999973 578.91877 0.15465688 + 1627100 -33.787004 -33.788443 0.0014395635 75.762941 -0.24332724 + 1627200 -33.788253 -33.793779 0.0055251915 290.7859 -0.020113575 + 1627300 -33.794667 -33.803806 0.0091389991 480.97737 0.27641736 + 1627400 -33.795126 -33.799496 0.0043701991 229.99968 0.095013212 + 1627500 -33.793343 -33.793504 0.00016086642 8.4662561 -0.13445106 + 1627600 -33.789252 -33.799268 0.010015836 527.1245 0.14807922 + 1627700 -33.785486 -33.802607 0.017120944 901.05999 0.29395357 + 1627800 -33.794063 -33.795654 0.0015902449 83.693169 -0.21745752 + 1627900 -33.795764 -33.797341 0.0015769154 82.991652 -0.19292918 + 1628000 -33.794996 -33.803345 0.008348493 439.37374 0.06009317 + 1628100 -33.790729 -33.799603 0.0088738114 467.02078 0.032746868 + 1628200 -33.788075 -33.78834 0.00026522454 13.958531 -0.29272554 + 1628300 -33.789946 -33.797192 0.0072459496 381.34787 0.059719049 + 1628400 -33.795808 -33.803882 0.0080741515 424.93539 0.23396159 + 1628500 -33.7957 -33.798498 0.0027978489 147.24829 0.031037817 + 1628600 -33.79368 -33.794266 0.00058635542 30.859363 -0.1237091 + 1628700 -33.789908 -33.801506 0.01159789 610.38662 0.20647003 + 1628800 -33.789128 -33.801264 0.012136051 638.70955 0.16606154 + 1628900 -33.795028 -33.795524 0.00049622271 26.115759 -0.2470362 + 1629000 -33.796765 -33.799139 0.0023730201 124.88993 -0.14553544 + 1629100 -33.795314 -33.803929 0.0086147512 453.38667 0.080754037 + 1629200 -33.791938 -33.798113 0.0061750818 324.98905 -0.063743777 + 1629300 -33.790267 -33.790454 0.0001873147 9.8582053 -0.27658283 + 1629400 -33.790586 -33.79946 0.0088738659 467.02365 0.12000874 + 1629500 -33.79181 -33.80322 0.011409972 600.49666 0.27000564 + 1629600 -33.79275 -33.794748 0.0019974635 105.12472 -0.053464133 + 1629700 -33.79307 -33.795112 0.0020411136 107.42199 -0.056025915 + 1629800 -33.793862 -33.803214 0.0093522967 492.20303 0.22692416 + 1629900 -33.796758 -33.80175 0.0049915283 262.69968 0.092478314 + 1630000 -33.797477 -33.797587 0.00011008943 5.7939087 -0.1275428 + 1630100 -33.795466 -33.799453 0.0039864863 209.80522 -0.043676108 + 1630200 -33.7897 -33.803897 0.014197087 747.18005 0.22495485 + 1630300 -33.790381 -33.795154 0.0047726972 251.1828 -0.19714511 + 1630400 -33.792367 -33.793167 0.00079901365 42.051376 -0.32696715 + 1630500 -33.794379 -33.802008 0.007628951 401.50489 0.0052142973 + 1630600 -33.796359 -33.802884 0.0065249042 343.39989 0.014410976 + 1630700 -33.799012 -33.799453 0.00044188202 23.255857 -0.12982635 + 1630800 -33.799022 -33.800374 0.0013519259 71.150656 -0.051860401 + 1630900 -33.795582 -33.803775 0.0081930861 431.19481 0.19728047 + 1631000 -33.792427 -33.799295 0.0068679193 361.45247 0.17150479 + 1631100 -33.791213 -33.791253 4.0433016e-05 2.1279535 -0.063374881 + 1631200 -33.790969 -33.798665 0.007696258 405.0472 0.24629603 + 1631300 -33.794743 -33.803711 0.0089674649 471.94968 0.3737435 + 1631400 -33.797508 -33.79921 0.0017024757 89.599777 0.084432501 + 1631500 -33.796818 -33.79754 0.0007213602 37.964544 -0.038383215 + 1631600 -33.793467 -33.802664 0.0091967582 484.01718 0.14977209 + 1631700 -33.79199 -33.801283 0.0092926086 489.0617 -0.015176817 + 1631800 -33.792281 -33.792885 0.00060436854 31.807377 -0.45496283 + 1631900 -33.792808 -33.797106 0.0042985794 226.2304 -0.32388555 + 1632000 -33.794344 -33.803891 0.0095474367 502.47308 -0.081158967 + 1632100 -33.796846 -33.80004 0.0031933133 168.06123 -0.21493875 + 1632200 -33.797523 -33.797717 0.0001948301 10.253735 -0.22301975 + 1632300 -33.795503 -33.801562 0.0060593967 318.90064 0.084767012 + 1632400 -33.789462 -33.802818 0.013356562 702.94396 0.46460399 + 1632500 -33.790174 -33.792413 0.0022394041 117.85784 0.22961821 + 1632600 -33.792523 -33.795002 0.002479132 130.47451 0.35485111 + 1632700 -33.794766 -33.803232 0.0084663952 445.57883 0.62683458 + 1632800 -33.795278 -33.800869 0.0055909037 294.24427 0.41110911 + 1632900 -33.792336 -33.79277 0.00043425325 22.854361 -0.063732429 + 1633000 -33.788186 -33.796666 0.008479648 446.27631 -0.12743776 + 1633100 -33.789808 -33.803746 0.013937896 733.53903 -0.19930297 + 1633200 -33.794634 -33.797405 0.0027706312 145.81585 -0.71405931 + 1633300 -33.795301 -33.796029 0.00072738796 38.28178 -0.76151662 + 1633400 -33.79384 -33.802232 0.0083914033 441.63207 -0.34299795 + 1633500 -33.784849 -33.799996 0.015146122 797.1269 0.070593571 + 1633600 -33.785252 -33.786652 0.0014001214 73.687139 0.080546914 + 1633700 -33.78935 -33.795073 0.005722587 301.17465 0.67308076 + 1633800 -33.792569 -33.803634 0.011065359 582.35995 1.0721524 + 1633900 -33.794553 -33.798745 0.0041923537 220.63983 0.80339842 + 1634000 -33.794642 -33.794943 0.00030175738 15.881222 0.41571005 + 1634100 -33.792244 -33.800823 0.0085781766 451.46178 0.32498651 + 1634200 -33.786238 -33.802213 0.015975616 840.7824 -0.034643954 + 1634300 -33.790312 -33.792327 0.0020148276 106.03858 -1.1023103 + 1634400 -33.794031 -33.796246 0.002215067 116.577 -1.2436948 + 1634500 -33.794106 -33.803204 0.0090982817 478.83445 -0.90892813 + 1634600 -33.792664 -33.799658 0.0069944821 368.11335 -0.77029207 + 1634700 -33.790516 -33.791233 0.00071664312 37.716288 -0.53659735 + 1634800 -33.787158 -33.796756 0.0095985404 505.16262 0.44713137 + 1634900 -33.789919 -33.803562 0.013643348 718.03724 1.2502387 + 1635000 -33.794894 -33.797262 0.0023687798 124.66677 1.1789651 + 1635100 -33.795247 -33.796148 0.00090114317 47.426361 1.0740745 + 1635200 -33.793149 -33.802384 0.0092347189 486.01502 1.0224922 + 1635300 -33.785855 -33.800004 0.014148495 744.62265 0.4222339 + 1635400 -33.787802 -33.789087 0.0012847246 67.613911 -0.98229201 + 1635500 -33.793675 -33.797762 0.0040862748 215.057 -1.2862775 + 1635600 -33.793779 -33.803536 0.0097573975 513.52313 -1.1836669 + 1635700 -33.792224 -33.797348 0.0051243477 269.68985 -1.2842042 + 1635800 -33.790082 -33.790758 0.00067586277 35.570055 -1.0540922 + 1635900 -33.789483 -33.800036 0.010552714 555.37995 0.020303715 + 1636000 -33.795028 -33.803222 0.0081935655 431.22005 0.5484702 + 1636100 -33.796633 -33.797749 0.0011158852 58.728044 0.59967462 + 1636200 -33.795553 -33.797369 0.0018161542 95.582576 0.75288451 + 1636300 -33.792763 -33.803323 0.010559966 555.76158 0.99021114 + 1636400 -33.791868 -33.799547 0.0076788911 404.13319 0.65909053 + 1636500 -33.792131 -33.792299 0.00016729786 8.8047373 0.029286723 + 1636600 -33.792572 -33.798846 0.006273975 330.19371 -0.11655045 + 1636700 -33.794729 -33.803763 0.0090339169 475.44699 -0.24584273 + 1636800 -33.798174 -33.799954 0.0017793603 93.646143 -0.61554182 + 1636900 -33.798292 -33.798738 0.00044644518 23.496012 -0.67126593 + 1637000 -33.794685 -33.802467 0.0077825341 409.58783 -0.27396859 + 1637100 -33.791373 -33.801733 0.010359094 545.18988 0.10334112 + 1637200 -33.791838 -33.792863 0.0010244701 53.916949 0.10896905 + 1637300 -33.792931 -33.796554 0.0036232171 190.68669 0.54133934 + 1637400 -33.794971 -33.803657 0.0086857395 457.12272 0.8977869 + 1637500 -33.797223 -33.800637 0.003413528 179.65093 0.69350901 + 1637600 -33.797845 -33.798065 0.0002193128 11.542237 0.43433738 + 1637700 -33.795822 -33.801233 0.0054106878 284.75967 0.30806677 + 1637800 -33.790033 -33.803278 0.013244941 697.06943 -0.0095289631 + 1637900 -33.790522 -33.793608 0.0030859716 162.41194 -0.95045624 + 1638000 -33.792722 -33.79454 0.0018172243 95.638894 -1.315602 + 1638100 -33.795281 -33.802477 0.007196272 378.73337 -1.0916222 + 1638200 -33.7985 -33.802252 0.0037519623 197.46243 -0.98024602 + 1638300 -33.799893 -33.800285 0.00039214971 20.63849 -0.82211293 + 1638400 -33.798688 -33.801262 0.0025736901 135.45102 -0.32221605 + 1638500 -33.795012 -33.803918 0.0089058062 468.70464 0.60459772 + 1638600 -33.793975 -33.799151 0.0051757862 272.39701 1.220058 + 1638700 -33.792737 -33.793732 0.00099560995 52.398064 1.677257 + 1638800 -33.789856 -33.798436 0.0085800954 451.56277 2.2756725 + 1638900 -33.784526 -33.800068 0.015542017 817.96249 2.3637858 + 1639000 -33.787092 -33.789407 0.0023149543 121.83398 1.4175967 + 1639100 -33.793686 -33.796357 0.0026706441 140.55362 0.97748871 + 1639200 -33.79448 -33.803188 0.0087076151 458.27402 0.61885314 + 1639300 -33.794323 -33.801149 0.0068264527 359.27011 -0.11439919 + 1639400 -33.793879 -33.795462 0.0015829544 83.309481 -0.98771313 + 1639500 -33.792812 -33.798719 0.0059068148 310.87039 -1.3370984 + 1639600 -33.79008 -33.802317 0.012237634 644.05576 -1.3790139 + 1639700 -33.787627 -33.792479 0.0048513253 255.32092 -1.6996593 + 1639800 -33.78777 -33.789313 0.0015426889 81.190343 -1.4495058 + 1639900 -33.79283 -33.801141 0.0083112665 437.41454 -0.58811672 + 1640000 -33.795077 -33.802015 0.0069379869 365.14006 -0.16583976 + 1640100 -33.794575 -33.796691 0.0021163478 111.3815 0.11359687 + 1640200 -33.793167 -33.797907 0.004739791 249.45097 0.66027445 + 1640300 -33.788182 -33.803223 0.015041161 791.60291 1.3546058 + 1640400 -33.788321 -33.796074 0.0077531891 408.04343 1.3486004 + 1640500 -33.79252 -33.792822 0.00030230992 15.910302 1.1081462 + 1640600 -33.793578 -33.79895 0.0053726633 282.75848 1.0662978 + 1640700 -33.791851 -33.802029 0.010177629 535.63951 0.76747151 + 1640800 -33.78616 -33.793728 0.007568898 398.34435 -0.16916506 + 1640900 -33.789379 -33.79463 0.0052515225 276.38294 -1.0091719 + 1641000 -33.795288 -33.802308 0.007019764 369.44392 -1.1684398 + 1641100 -33.795237 -33.80068 0.0054434365 286.48321 -1.2784677 + 1641200 -33.79198 -33.792939 0.00095972108 50.509264 -1.2516247 + 1641300 -33.788634 -33.795545 0.0069108854 363.71374 -0.43298447 + 1641400 -33.7901 -33.803226 0.013126015 690.81047 0.57101556 + 1641500 -33.792877 -33.797671 0.0047938192 252.29443 0.85150463 + 1641600 -33.793389 -33.794584 0.0011950379 62.893781 1.0359952 + 1641700 -33.793127 -33.800958 0.00783068 412.1217 1.3386569 + 1641800 -33.791993 -33.802011 0.010017943 527.23538 1.2015633 + 1641900 -33.789086 -33.792056 0.0029695522 156.28488 0.39641871 + 1642000 -33.78859 -33.793431 0.0048404534 254.74875 -0.21984956 + 1642100 -33.793151 -33.802651 0.0095007824 500.0177 -0.45727404 + 1642200 -33.795249 -33.800042 0.0047934202 252.27343 -0.85986678 + 1642300 -33.794296 -33.795003 0.00070723179 37.220978 -1.1021955 + 1642400 -33.788371 -33.798141 0.0097697792 514.17476 -0.67330697 + 1642500 -33.784981 -33.803038 0.018057467 950.3484 0.035549655 + 1642600 -33.791374 -33.79505 0.0036757768 193.45285 -0.026346497 + 1642700 -33.792515 -33.794023 0.0015082826 79.379566 0.22912182 + 1642800 -33.792781 -33.801483 0.0087019044 457.97347 0.72109007 + 1642900 -33.792168 -33.800557 0.0083895837 441.53631 0.76383399 + 1643000 -33.791091 -33.793063 0.0019726472 103.81866 0.44664519 + 1643100 -33.791925 -33.797438 0.0055132797 290.15899 0.424903 + 1643200 -33.795679 -33.803579 0.0078996199 415.74995 0.37464 + 1643300 -33.796822 -33.800062 0.0032399584 170.51612 0.029780782 + 1643400 -33.794235 -33.795081 0.00084635777 44.543055 -0.3377487 + 1643500 -33.787775 -33.79925 0.011475503 603.94548 -0.33995373 + 1643600 -33.790197 -33.802109 0.01191159 626.89634 -0.49095201 + 1643700 -33.793362 -33.794995 0.0016325734 85.920884 -0.90253734 + 1643800 -33.793997 -33.796137 0.0021398706 112.61948 -0.75435452 + 1643900 -33.792642 -33.802762 0.010119598 532.5854 -0.20272482 + 1644000 -33.785219 -33.797993 0.012774561 672.31373 0.18216422 + 1644100 -33.789088 -33.791008 0.0019203885 101.06833 0.35591398 + 1644200 -33.793772 -33.799151 0.0053793422 283.10998 0.84692188 + 1644300 -33.794321 -33.803004 0.008683027 456.97997 1.0200315 + 1644400 -33.792452 -33.796032 0.0035799842 188.41138 0.65495605 + 1644500 -33.78769 -33.789747 0.0020569379 108.25481 0.14089381 + 1644600 -33.784931 -33.800572 0.015641811 823.21456 0.050028461 + 1644700 -33.794256 -33.801796 0.0075399633 396.82154 -0.44632207 + 1644800 -33.795111 -33.795909 0.00079726557 41.959376 -0.83379222 + 1644900 -33.793958 -33.797832 0.0038742866 203.90025 -0.72502502 + 1645000 -33.790156 -33.803646 0.013489787 709.95544 -0.21927149 + 1645100 -33.788719 -33.796269 0.0075499794 397.34868 -0.16046526 + 1645200 -33.793606 -33.794069 0.00046259269 24.345841 -0.035906217 + 1645300 -33.795897 -33.800965 0.0050677588 266.71163 0.37298923 + 1645400 -33.794565 -33.802692 0.0081276865 427.75289 0.54901289 + 1645500 -33.791055 -33.794504 0.0034489825 181.51687 0.30381789 + 1645600 -33.78977 -33.793817 0.0040469359 212.98663 0.22717512 + 1645700 -33.795569 -33.80294 0.0073711086 387.93487 0.33079208 + 1645800 -33.797593 -33.801896 0.0043033763 226.48285 0.14240778 + 1645900 -33.795289 -33.795654 0.00036554372 19.23824 -0.19665452 + 1646000 -33.791687 -33.796914 0.0052274811 275.11767 -0.276179 + 1646100 -33.789316 -33.80378 0.014464261 761.24114 -0.15898309 + 1646200 -33.792672 -33.797234 0.0045620934 240.09891 -0.59567446 + 1646300 -33.796104 -33.796677 0.00057240138 30.124974 -0.68357855 + 1646400 -33.796765 -33.802183 0.0054177066 285.12907 -0.36299907 + 1646500 -33.795479 -33.802879 0.0073992443 389.41563 -0.0954828 + 1646600 -33.79342 -33.794947 0.0015268198 80.355163 -0.074538536 + 1646700 -33.79094 -33.794137 0.0031973378 168.27304 0.30623855 + 1646800 -33.789053 -33.803262 0.014208446 747.77782 1.0298655 + 1646900 -33.795037 -33.800347 0.005309399 279.42894 0.92946826 + 1647000 -33.797023 -33.797157 0.00013387853 7.0459077 0.69787135 + 1647100 -33.796026 -33.800619 0.0045933041 241.7415 0.61455654 + 1647200 -33.791577 -33.803642 0.0120645 634.94388 0.36502592 + 1647300 -33.790322 -33.794405 0.0040825554 214.86125 -0.60443455 + 1647400 -33.791294 -33.792884 0.0015902137 83.691528 -1.2101936 + 1647500 -33.791961 -33.801846 0.0098854303 520.26138 -1.1286979 + 1647600 -33.792466 -33.800999 0.0085330453 449.08656 -1.1553012 + 1647700 -33.792777 -33.793491 0.00071428824 37.592353 -1.1839099 + 1647800 -33.794646 -33.798517 0.0038718948 203.77437 -0.5852361 + 1647900 -33.797146 -33.803941 0.0067946069 357.5941 -0.0048244201 + 1648000 -33.796453 -33.800189 0.0037357412 196.60873 0.25173985 + 1648100 -33.792212 -33.792768 0.00055612929 29.268589 0.516381 + 1648200 -33.789502 -33.799389 0.0098872003 520.35453 1.3296131 + 1648300 -33.79072 -33.802267 0.011547215 607.71964 1.6811861 + 1648400 -33.792723 -33.794387 0.0016637135 87.559757 1.2725687 + 1648500 -33.793867 -33.796123 0.0022564436 118.75461 0.99799786 + 1648600 -33.797661 -33.803402 0.0057416577 302.17832 0.79338147 + 1648700 -33.798823 -33.802366 0.0035433173 186.48163 0.35010739 + 1648800 -33.79651 -33.797357 0.00084707837 44.580979 -0.29980824 + 1648900 -33.793675 -33.798943 0.0052679494 277.24748 -0.84449544 + 1649000 -33.792209 -33.803257 0.011048209 581.4574 -1.2479167 + 1649100 -33.791606 -33.795749 0.0041429637 218.04048 -1.8661911 + 1649200 -33.790082 -33.790796 0.00071437639 37.596992 -1.9857608 + 1649300 -33.786243 -33.799976 0.013733096 722.7606 -1.0797801 + 1649400 -33.790334 -33.801906 0.011571583 609.0021 -0.36388506 + 1649500 -33.79493 -33.796087 0.001157852 60.936719 -0.1141464 + 1649600 -33.795403 -33.79831 0.0029072243 153.00462 0.40820003 + 1649700 -33.793718 -33.803717 0.0099990545 526.24132 1.0139474 + 1649800 -33.787004 -33.795999 0.0089954871 473.42446 1.1161492 + 1649900 -33.784872 -33.785323 0.00045087329 23.729059 0.85033833 + 1650000 -33.789036 -33.79838 0.0093447418 491.80543 1.1694839 + 1650100 -33.791088 -33.802593 0.011505012 605.49854 0.99386612 + 1650200 -33.792928 -33.795188 0.00226002 118.94283 0.22945474 + 1650300 -33.794406 -33.796629 0.0022222976 116.95754 -0.17060779 + 1650400 -33.796004 -33.803339 0.0073350759 386.0385 -0.27441107 + 1650500 -33.797241 -33.802022 0.0047812656 251.63374 -0.56537142 + 1650600 -33.796217 -33.796569 0.0003521821 18.53503 -0.82666813 + 1650700 -33.791876 -33.797297 0.0054210308 285.30402 -0.62644662 + 1650800 -33.788661 -33.803446 0.014784656 778.10324 -0.072076939 + 1650900 -33.791246 -33.795764 0.0045181919 237.78841 -0.10607152 + 1651000 -33.794411 -33.795078 0.0006672616 35.117383 0.04466563 + 1651100 -33.796146 -33.802199 0.0060522172 318.52279 0.42676299 + 1651200 -33.795248 -33.802733 0.0074846172 393.90873 0.52938168 + 1651300 -33.793822 -33.795505 0.0016832242 88.586589 0.23804203 + 1651400 -33.79336 -33.796535 0.003174527 167.07252 0.17540675 + 1651500 -33.792375 -33.803314 0.010938204 575.66793 0.29758553 + 1651600 -33.791562 -33.798298 0.0067352226 354.46876 -0.096487512 + 1651700 -33.790943 -33.791119 0.00017627483 9.2771873 -0.56481694 + 1651800 -33.791254 -33.798809 0.007554938 397.60965 -0.39238385 + 1651900 -33.794835 -33.803518 0.0086832213 456.99019 -0.31374923 + 1652000 -33.79703 -33.79893 0.0019001606 100.00376 -0.47629331 + 1652100 -33.796445 -33.797666 0.001221092 64.264981 -0.36997049 + 1652200 -33.788957 -33.802135 0.013177379 693.51372 0.25336614 + 1652300 -33.788671 -33.800176 0.011504747 605.48457 0.58874082 + 1652400 -33.792368 -33.792847 0.00047848979 25.182491 0.49354117 + 1652500 -33.793732 -33.797486 0.0037544032 197.59089 0.73138638 + 1652600 -33.79328 -33.80327 0.0099904259 525.7872 0.89569966 + 1652700 -33.788041 -33.795827 0.0077862188 409.78175 0.46895174 + 1652800 -33.784545 -33.78778 0.0032349598 170.25305 -0.2377877 + 1652900 -33.7918 -33.800589 0.0087894495 462.58089 -0.25108054 + 1653000 -33.794147 -33.802258 0.0081106524 426.8564 -0.41592957 + 1653100 -33.793562 -33.794904 0.0013418687 70.621353 -0.75988632 + 1653200 -33.790561 -33.793865 0.00330349 173.85973 -0.66380204 + 1653300 -33.784618 -33.80305 0.018431274 970.02152 0.068857953 + 1653400 -33.793701 -33.80029 0.0065892142 346.78446 0.043015799 + 1653500 -33.795748 -33.79601 0.00026216214 13.79736 -0.0028258915 + 1653600 -33.794895 -33.800006 0.0051102074 268.94566 0.2962273 + 1653700 -33.790827 -33.803261 0.012434819 654.43345 0.60951094 + 1653800 -33.788243 -33.79268 0.0044368941 233.50978 0.27957333 + 1653900 -33.790459 -33.792304 0.0018447683 97.088508 0.17479012 + 1654000 -33.796136 -33.802706 0.0065694549 345.74455 0.3885828 + 1654100 -33.79571 -33.802037 0.006327569 333.01431 0.25358202 + 1654200 -33.793078 -33.794215 0.0011377907 59.880911 -0.19182709 + 1654300 -33.790214 -33.795749 0.0055350157 291.30294 -0.30548159 + 1654400 -33.790347 -33.80357 0.013222914 695.91016 -0.20209315 + 1654500 -33.797003 -33.80018 0.0031774898 167.22845 -0.56137172 + 1654600 -33.79724 -33.797427 0.00018742284 9.8638966 -0.62512954 + 1654700 -33.795043 -33.801117 0.0060734072 319.638 -0.264505 + 1654800 -33.791083 -33.803087 0.012004132 631.76675 0.20793279 + 1654900 -33.791417 -33.794463 0.0030462003 160.31881 0.22414599 + 1655000 -33.792929 -33.795214 0.0022849498 120.25487 0.48159058 + 1655100 -33.794099 -33.802601 0.0085022868 447.46777 0.85990469 + 1655200 -33.797166 -33.801513 0.0043471042 228.78422 0.71726313 + 1655300 -33.798174 -33.798564 0.00038956349 20.502379 0.4277867 + 1655400 -33.796445 -33.800264 0.0038186008 200.96955 0.26524608 + 1655500 -33.791422 -33.803935 0.012513529 658.57588 0.063150856 + 1655600 -33.791727 -33.797326 0.0055991367 294.67757 -0.71711029 + 1655700 -33.793847 -33.794693 0.00084651094 44.551116 -1.1752924 + 1655800 -33.796107 -33.800722 0.0046155042 242.90987 -1.0340796 + 1655900 -33.798435 -33.802319 0.0038846566 204.44601 -0.88924383 + 1656000 -33.797239 -33.799328 0.0020896514 109.97649 -0.67222867 + 1656100 -33.790826 -33.797569 0.006743296 354.89366 0.047998757 + 1656200 -33.792596 -33.802899 0.010303798 542.27969 1.002237 + 1656300 -33.795345 -33.800284 0.0049397197 259.97304 1.3471648 + 1656400 -33.79481 -33.79502 0.00020913498 11.006587 1.3373699 + 1656500 -33.790235 -33.795746 0.0055112224 290.05072 1.3322606 + 1656600 -33.787898 -33.802296 0.014398173 757.76301 1.1669601 + 1656700 -33.792042 -33.797041 0.0049998898 263.13974 0.26446292 + 1656800 -33.795123 -33.796908 0.0017844818 93.915688 -0.29552857 + 1656900 -33.795852 -33.802525 0.0066726213 351.17411 -0.4333463 + 1657000 -33.794505 -33.802324 0.0078183104 411.4707 -0.65543195 + 1657100 -33.786983 -33.790034 0.0030508992 160.56611 -1.1226833 + 1657200 -33.783896 -33.789577 0.0056810842 298.99039 -1.0469414 + 1657300 -33.787818 -33.801202 0.013383998 704.38786 -0.4900318 + 1657400 -33.791621 -33.797468 0.0058471398 307.72975 -0.47329647 + 1657500 -33.793152 -33.794389 0.00123665 65.083789 -0.33565599 + 1657600 -33.794637 -33.800787 0.0061491241 323.62291 0.15127814 + 1657700 -33.798644 -33.803838 0.0051942488 273.36868 0.36651902 + 1657800 -33.799901 -33.801314 0.0014132168 74.376341 0.30621192 + 1657900 -33.79852 -33.7995 0.00097976201 51.564 0.24005917 + 1658000 -33.796455 -33.802575 0.0061206542 322.12457 0.29662898 + 1658100 -33.793603 -33.801114 0.0075117515 395.33678 0.11618913 + 1658200 -33.790573 -33.791524 0.00095135481 50.068955 -0.47320162 + 1658300 -33.788822 -33.794071 0.0052485802 276.22809 -0.59694955 + 1658400 -33.79092 -33.803273 0.012352976 650.1261 -0.42905277 + 1658500 -33.796671 -33.800232 0.0035610764 187.41627 -0.68061856 + 1658600 -33.79643 -33.797193 0.00076295126 40.153444 -0.65358377 + 1658700 -33.794328 -33.801162 0.0068343757 359.6871 -0.16936275 + 1658800 -33.790732 -33.802872 0.012140558 638.94672 0.37779618 + 1658900 -33.790131 -33.793041 0.0029099505 153.1481 0.4692784 + 1659000 -33.793358 -33.795272 0.0019133071 100.69564 0.7725973 + 1659100 -33.795808 -33.802159 0.0063514286 334.27002 1.0267322 + 1659200 -33.794596 -33.80085 0.0062538581 329.13497 0.84696046 + 1659300 -33.789957 -33.793053 0.0030958209 162.93029 0.22746006 + 1659400 -33.78949 -33.797653 0.0081623506 429.57723 -0.16006622 + 1659500 -33.79632 -33.803202 0.0068822199 362.20509 -0.43055399 + 1659600 -33.796228 -33.798901 0.002672577 140.65534 -0.74611359 + 1659700 -33.793764 -33.794272 0.00050736603 26.702222 -0.87387504 + 1659800 -33.790023 -33.800547 0.010523571 553.84616 -0.34537941 + 1659900 -33.790515 -33.802314 0.011798979 620.96973 0.033097009 + 1660000 -33.794656 -33.796186 0.0015302545 80.535932 0.0083452686 + 1660100 -33.796027 -33.798273 0.0022457825 118.19353 0.27146694 + 1660200 -33.795238 -33.803315 0.0080778749 425.13135 0.60491435 + 1660300 -33.793156 -33.799413 0.0062564164 329.26962 0.53318473 + 1660400 -33.790486 -33.791018 0.00053173385 27.984678 0.19159035 + 1660500 -33.788962 -33.797855 0.0088927257 468.01622 0.30770513 + 1660600 -33.794324 -33.803528 0.0092045527 484.4274 0.23122323 + 1660700 -33.796874 -33.798852 0.0019778981 104.09501 -0.13714119 + 1660800 -33.795781 -33.796771 0.0009895222 52.077671 -0.306858 + 1660900 -33.792365 -33.802374 0.010008813 526.7549 -0.090437927 + 1661000 -33.790575 -33.800954 0.010379015 546.2383 -0.1612941 + 1661100 -33.791665 -33.792685 0.0010193851 53.649327 -0.50700175 + 1661200 -33.792266 -33.796717 0.0044504656 234.22404 -0.27311402 + 1661300 -33.792492 -33.803495 0.011003032 579.07977 0.10110463 + 1661400 -33.793008 -33.797836 0.0048282923 254.10872 -0.002752904 + 1661500 -33.794219 -33.794829 0.00060991799 32.09944 -0.02322373 + 1661600 -33.795882 -33.80152 0.0056382212 296.73455 0.26966135 + 1661700 -33.79572 -33.803202 0.0074823772 393.79084 0.35147516 + 1661800 -33.791965 -33.794664 0.0026987487 142.03273 0.057857923 + 1661900 -33.788306 -33.79233 0.004023278 211.74153 -0.076553376 + 1662000 -33.790012 -33.802526 0.012514318 658.61739 0.16771724 + 1662100 -33.793608 -33.799873 0.0062648008 329.71088 -0.098118359 + 1662200 -33.793626 -33.793831 0.00020415461 10.744475 -0.39619821 + 1662300 -33.792528 -33.798522 0.0059939022 315.45373 -0.18955353 + 1662400 -33.790926 -33.803546 0.012620272 664.19367 0.086474391 + 1662500 -33.792956 -33.796857 0.0039011577 205.31445 -0.16467956 + 1662600 -33.796503 -33.797445 0.0009415179 49.551247 -0.14230251 + 1662700 -33.797321 -33.802694 0.0053727352 282.76226 0.10412258 + 1662800 -33.793932 -33.801948 0.0080155011 421.84867 0.18629475 + 1662900 -33.790364 -33.791757 0.0013933191 73.329142 -0.069529397 + 1663000 -33.790593 -33.79494 0.0043470118 228.77935 0.088428265 + 1663100 -33.792419 -33.80338 0.010960117 576.8212 0.37561046 + 1663200 -33.794943 -33.799555 0.0046122505 242.73863 0.15240889 + 1663300 -33.796058 -33.796382 0.00032373771 17.038027 -0.063431266 + 1663400 -33.796842 -33.801483 0.0046401788 244.20847 0.051046197 + 1663500 -33.795605 -33.803495 0.0078892412 415.20373 0.10235721 + 1663600 -33.790985 -33.794719 0.0037336394 196.49811 -0.24539218 + 1663700 -33.789209 -33.791904 0.0026957784 141.87641 -0.39429107 + 1663800 -33.791162 -33.801932 0.010770339 566.83335 -0.050107167 + 1663900 -33.79569 -33.801044 0.0053540909 281.78103 -0.17007323 + 1664000 -33.797195 -33.797605 0.00040979278 21.567028 -0.27308457 + 1664100 -33.796805 -33.800099 0.003293996 173.36007 -0.066291744 + 1664200 -33.791253 -33.803978 0.012724947 669.70259 0.33447727 + 1664300 -33.79023 -33.797336 0.0071063236 373.99947 0.28841142 + 1664400 -33.793986 -33.795109 0.0011232208 59.114111 0.23976909 + 1664500 -33.795489 -33.800642 0.0051535872 271.2287 0.43758777 + 1664600 -33.793161 -33.801587 0.0084258288 443.44386 0.46334486 + 1664700 -33.787208 -33.790722 0.0035137608 184.9261 -0.033239419 + 1664800 -33.788792 -33.79381 0.0050180486 264.09542 -0.2179037 + 1664900 -33.792929 -33.803392 0.010462168 550.61457 -0.083066782 + 1665000 -33.795095 -33.800703 0.0056076385 295.12501 -0.32014726 + 1665100 -33.794796 -33.795085 0.00028829175 15.172538 -0.54091109 + 1665200 -33.790542 -33.797638 0.0070954119 373.4252 -0.23769153 + 1665300 -33.784534 -33.802804 0.018270192 961.54393 0.3225745 + 1665400 -33.790007 -33.793726 0.0037192172 195.73908 0.057168853 + 1665500 -33.792407 -33.793953 0.0015459664 81.362833 0.15964059 + 1665600 -33.793373 -33.802376 0.0090027999 473.80933 0.51837797 + 1665700 -33.793833 -33.801679 0.0078456649 412.91035 0.44347458 + 1665800 -33.793988 -33.794982 0.00099339429 52.281455 0.083947317 + 1665900 -33.793728 -33.797912 0.0041838462 220.19209 0.046683425 + 1666000 -33.792457 -33.803593 0.011136552 586.1068 0.11573111 + 1666100 -33.790924 -33.796765 0.0058409801 307.40557 -0.29313789 + 1666200 -33.790043 -33.790572 0.00052866264 27.823043 -0.67433673 + 1666300 -33.791415 -33.800093 0.0086783225 456.73237 -0.38132951 + 1666400 -33.795625 -33.802871 0.0072457241 381.336 -0.30965963 + 1666500 -33.796355 -33.797811 0.0014561891 76.637936 -0.42796068 + 1666600 -33.794106 -33.796644 0.002538641 133.60641 -0.23053604 + 1666700 -33.785339 -33.80299 0.017650698 928.94051 0.56762474 + 1666800 -33.789987 -33.798854 0.0088666567 466.64423 0.6223505 + 1666900 -33.792719 -33.793069 0.00034954259 18.396115 0.50528525 + 1667000 -33.793388 -33.798452 0.0050639919 266.51338 0.70844292 + 1667100 -33.792094 -33.802922 0.010827717 569.85308 0.74221907 + 1667200 -33.786334 -33.792591 0.0062577974 329.3423 0.15469549 + 1667300 -33.786004 -33.789778 0.0037739756 198.62097 -0.42224197 + 1667400 -33.793329 -33.802262 0.008932465 470.10766 -0.38747115 + 1667500 -33.794617 -33.801863 0.0072460222 381.35169 -0.52822551 + 1667600 -33.793637 -33.79432 0.00068298544 35.944914 -0.8006465 + 1667700 -33.790331 -33.795165 0.0048344015 254.43024 -0.53567388 + 1667800 -33.784728 -33.803258 0.018530937 975.26671 0.28448217 + 1667900 -33.793221 -33.79807 0.004848941 255.19544 0.2292789 + 1668000 -33.795468 -33.795877 0.0004087386 21.511548 0.25510517 + 1668100 -33.794776 -33.801426 0.0066506209 350.01625 0.55898237 + 1668200 -33.791331 -33.802717 0.011385914 599.2305 0.63128224 + 1668300 -33.788805 -33.791889 0.0030842398 162.32079 0.10817881 + 1668400 -33.790844 -33.794117 0.003273922 172.30359 -0.043605679 + 1668500 -33.795956 -33.802963 0.0070072889 368.78736 0.045804817 + 1668600 -33.795607 -33.800708 0.0051010642 268.46446 -0.12450733 + 1668700 -33.79292 -33.793578 0.00065770877 34.614626 -0.42531015 + 1668800 -33.790287 -33.797935 0.0076476522 402.48911 -0.25376771 + 1668900 -33.791187 -33.803716 0.012528763 659.37762 -0.011536197 + 1669000 -33.792843 -33.796685 0.0038420322 202.20273 -0.2651092 + 1669100 -33.793341 -33.794315 0.00097487235 51.306662 -0.27481862 + 1669200 -33.79298 -33.801663 0.00868301 456.97907 0.15991477 + 1669300 -33.78991 -33.800655 0.010745012 565.50041 0.31096931 + 1669400 -33.786185 -33.787936 0.0017507597 92.140921 0.012471468 + 1669500 -33.789084 -33.794777 0.0056921849 299.57462 0.32854247 + 1669600 -33.794201 -33.803929 0.0097284677 512.00058 0.56779244 + 1669700 -33.794775 -33.799258 0.0044836938 235.9728 0.29185085 + 1669800 -33.793526 -33.794035 0.00050836112 26.754592 -0.028137519 + 1669900 -33.789667 -33.799532 0.0098648326 519.17734 0.045494652 + 1670000 -33.781612 -33.8017 0.02008822 1057.2251 -0.0065072228 + 1670100 -33.791034 -33.792449 0.0014151978 74.4806 -0.79506914 + 1670200 -33.793426 -33.795922 0.0024955768 131.33998 -0.76417603 + 1670300 -33.793525 -33.803202 0.0096766191 509.27183 -0.37730603 + 1670400 -33.792833 -33.799977 0.0071437301 375.96814 -0.26071719 + 1670500 -33.791928 -33.792723 0.00079464868 41.821651 -0.24756469 + 1670600 -33.791721 -33.798726 0.0070046033 368.64603 0.3157922 + 1670700 -33.794414 -33.803472 0.0090580523 476.71721 0.68617568 + 1670800 -33.796478 -33.798578 0.0020991342 110.47556 0.50481274 + 1670900 -33.796015 -33.796691 0.00067563283 35.557953 0.39982483 + 1671000 -33.789998 -33.80174 0.011741435 617.94125 0.52950086 + 1671100 -33.788319 -33.801033 0.01271442 669.1486 0.1298703 + 1671200 -33.792435 -33.793463 0.0010281108 54.108555 -0.55254296 + 1671300 -33.794141 -33.797784 0.003642996 191.72763 -0.59249265 + 1671400 -33.793944 -33.803619 0.0096746478 509.16808 -0.42250914 + 1671500 -33.792786 -33.798044 0.0052578728 276.71716 -0.51478708 + 1671600 -33.79171 -33.792047 0.00033730994 17.752321 -0.54205852 + 1671700 -33.791327 -33.800119 0.0087916115 462.69467 0.045822103 + 1671800 -33.792044 -33.802944 0.01090017 573.66623 0.44789197 + 1671900 -33.793461 -33.79539 0.0019281425 101.47642 0.29588274 + 1672000 -33.794464 -33.796469 0.0020049337 105.51787 0.40943642 + 1672100 -33.795266 -33.803344 0.008077173 425.09441 0.66374976 + 1672200 -33.7949 -33.800794 0.0058934637 310.16774 0.42311144 + 1672300 -33.791306 -33.791776 0.00047045388 24.759568 -0.09550089 + 1672400 -33.787682 -33.795966 0.0082830408 435.92905 -0.19814326 + 1672500 -33.790279 -33.803797 0.013518465 711.46477 -0.31030317 + 1672600 -33.795059 -33.797819 0.0027600073 145.25672 -0.76789806 + 1672700 -33.794954 -33.795791 0.00083735458 44.069225 -0.81328125 + 1672800 -33.79343 -33.802094 0.008663122 455.93238 -0.36939718 + 1672900 -33.790459 -33.801521 0.011061618 582.16309 0.012537227 + 1673000 -33.788495 -33.789696 0.0012007235 63.193006 0.0069005203 + 1673100 -33.789998 -33.79508 0.0050824714 267.48594 0.544567 + 1673200 -33.79493 -33.803599 0.0086686372 456.22264 0.95747069 + 1673300 -33.795724 -33.799788 0.0040639701 213.88312 0.74981649 + 1673400 -33.793638 -33.793931 0.00029337973 15.440313 0.3514892 + 1673500 -33.787543 -33.798937 0.011394523 599.68359 0.26190428 + 1673600 -33.788158 -33.80275 0.014591945 767.96105 -0.16860593 + 1673700 -33.791349 -33.793588 0.002239754 117.87626 -0.98582257 + 1673800 -33.792468 -33.794732 0.0022639645 119.15043 -1.1105637 + 1673900 -33.793375 -33.802984 0.0096083214 505.67738 -0.76344726 + 1674000 -33.794418 -33.800611 0.0061930984 325.93725 -0.64788759 + 1674100 -33.795108 -33.795522 0.00041496744 21.839366 -0.50784933 + 1674200 -33.794916 -33.799693 0.0047767518 251.39619 0.048576271 + 1674300 -33.792107 -33.803765 0.011658127 613.55682 0.7036324 + 1674400 -33.788545 -33.794001 0.0054562533 287.15775 0.84668687 + 1674500 -33.788867 -33.790315 0.0014473678 76.173674 0.98726189 + 1674600 -33.794309 -33.801717 0.0074078959 389.87095 1.3583014 + 1674700 -33.795554 -33.802015 0.0064605844 340.01479 1.1426286 + 1674800 -33.793944 -33.795314 0.0013698784 72.09548 0.44130043 + 1674900 -33.791444 -33.796202 0.0047581348 250.41639 -0.14677479 + 1675000 -33.790199 -33.803711 0.01351197 711.12294 -0.58352751 + 1675100 -33.796091 -33.800114 0.0040225302 211.70217 -1.3353337 + 1675200 -33.797123 -33.797285 0.00016182537 8.516725 -1.5236522 + 1675300 -33.795493 -33.800627 0.0051339394 270.19465 -1.1058922 + 1675400 -33.790376 -33.80319 0.012814066 674.39286 -0.24942663 + 1675500 -33.790577 -33.794062 0.0034848179 183.40286 0.3198949 + 1675600 -33.792413 -33.794718 0.0023052414 121.3228 1.0314636 + 1675700 -33.793635 -33.802562 0.0089263019 469.78331 1.7089361 + 1675800 -33.793537 -33.800814 0.0072770181 382.98297 1.7075022 + 1675900 -33.793022 -33.793493 0.00047031004 24.751998 1.1197999 + 1676000 -33.792206 -33.797741 0.0055344962 291.2756 0.71253069 + 1676100 -33.791985 -33.803669 0.011684226 614.93038 0.22183281 + 1676200 -33.795686 -33.798996 0.0033101868 174.21218 -0.71394956 + 1676300 -33.79743 -33.797781 0.00035115958 18.481216 -1.1205428 + 1676400 -33.796567 -33.802153 0.0055855754 293.96385 -1.0057365 + 1676500 -33.790937 -33.802246 0.011308627 595.16294 -0.73381755 + 1676600 -33.79035 -33.792677 0.0023265343 122.44342 -0.66145004 + 1676700 -33.791905 -33.795177 0.0032716994 172.18662 -0.095655013 + 1676800 -33.793865 -33.803234 0.0093689973 493.08197 0.56973146 + 1676900 -33.795398 -33.800329 0.0049304358 259.48444 0.69731125 + 1677000 -33.796771 -33.796961 0.00018996043 9.9974479 0.62072413 + 1677100 -33.796913 -33.800892 0.0039794289 209.43379 0.69080625 + 1677200 -33.793164 -33.803649 0.010484902 551.81103 0.64235595 + 1677300 -33.789666 -33.794836 0.0051707151 272.13012 -0.11178344 + 1677400 -33.790945 -33.792899 0.0019545677 102.86715 -0.71616394 + 1677500 -33.794133 -33.801782 0.0076490927 402.56493 -0.70756857 + 1677600 -33.796953 -33.801929 0.0049753888 261.85028 -0.82816824 + 1677700 -33.799847 -33.800244 0.00039718246 20.903358 -0.85466921 + 1677800 -33.799668 -33.801202 0.0015349477 80.78293 -0.57962145 + 1677900 -33.796632 -33.803865 0.0072329854 380.66557 0.018615178 + 1678000 -33.794324 -33.800831 0.0065069777 342.45643 0.59222955 + 1678100 -33.793757 -33.79589 0.0021327145 112.24286 1.026503 + 1678200 -33.793059 -33.79877 0.0057108152 300.55511 1.5529554 + 1678300 -33.787324 -33.800662 0.013338313 701.9835 1.8970454 + 1678400 -33.78417 -33.788177 0.0040070987 210.89003 1.2912605 + 1678500 -33.786946 -33.78968 0.0027336089 143.8674 0.81215798 + 1678600 -33.790526 -33.800916 0.01039048 546.8417 0.68912892 + 1678700 -33.792318 -33.800934 0.0086165448 453.48107 0.14238416 + 1678800 -33.794366 -33.796468 0.0021024049 110.6477 -0.52830472 + 1678900 -33.796128 -33.800192 0.0040637553 213.87182 -0.68674499 + 1679000 -33.798015 -33.80362 0.0056053904 295.0067 -0.68005528 + 1679100 -33.799408 -33.801416 0.0020087816 105.72038 -0.73669696 + 1679200 -33.798104 -33.798321 0.00021705827 11.423583 -0.59462492 + 1679300 -33.794362 -33.800815 0.0064527595 339.60298 0.087298723 + 1679400 -33.791262 -33.802563 0.01130088 594.75523 0.90949366 + 1679500 -33.790758 -33.793801 0.0030428408 160.142 1.2320922 + 1679600 -33.792652 -33.795187 0.0025349707 133.41325 1.5750672 + 1679700 -33.796261 -33.802838 0.0065773309 346.15906 1.7446674 + 1679800 -33.796816 -33.80153 0.0047138951 248.08809 1.3384133 + 1679900 -33.792482 -33.794266 0.0017839672 93.888605 0.38973271 + 1680000 -33.786823 -33.796262 0.009438616 496.74594 -0.82218964 + 1680100 -33.791131 -33.802705 0.011573989 609.12874 -1.8322329 + 1680200 -33.794083 -33.797183 0.0031001063 163.15583 -2.6451252 + 1680300 -33.79399 -33.794718 0.0007281412 38.321422 -2.6541539 + 1680400 -33.790347 -33.800991 0.010644736 560.22294 -1.6462992 + 1680500 -33.785322 -33.80161 0.016287833 857.21415 -0.13058318 + 1680600 -33.79442 -33.796331 0.0019113151 100.59081 0.73924927 + 1680700 -33.795375 -33.797801 0.0024261522 127.68623 1.4512578 + 1680800 -33.793666 -33.802877 0.0092101077 484.71975 2.0174836 + 1680900 -33.789471 -33.797079 0.0076078824 400.39607 1.9045243 + 1681000 -33.78788 -33.788863 0.00098237432 51.701484 1.1725991 + 1681100 -33.791463 -33.79903 0.0075671035 398.24991 0.83216442 + 1681200 -33.795982 -33.803647 0.0076647702 403.39002 0.39896467 + 1681300 -33.795295 -33.79775 0.0024546881 129.18804 -0.36059447 + 1681400 -33.793024 -33.795018 0.0019938706 104.93563 -0.99276828 + 1681500 -33.789595 -33.801831 0.012236106 643.97535 -1.1451606 + 1681600 -33.789344 -33.799715 0.010370636 545.79734 -1.5451757 + 1681700 -33.794749 -33.794969 0.00022040556 11.599748 -1.7961222 + 1681800 -33.796134 -33.799333 0.0031995344 168.38864 -1.325443 + 1681900 -33.794585 -33.803617 0.0090319637 475.34419 -0.54312238 + 1682000 -33.790558 -33.797662 0.007104581 373.90776 0.23872088 + 1682100 -33.788107 -33.790724 0.0026166458 137.71173 1.1650485 + 1682200 -33.792757 -33.800161 0.0074038896 389.66011 2.2053694 + 1682300 -33.795658 -33.801882 0.0062247947 327.60539 2.3643281 + 1682400 -33.794356 -33.796095 0.0017382983 91.48509 1.8018688 + 1682500 -33.790114 -33.794513 0.0043988165 231.50579 0.85505804 + 1682600 -33.789383 -33.803173 0.013789922 725.7513 -0.16011178 + 1682700 -33.79455 -33.80073 0.0061804391 325.27099 -1.3907965 + 1682800 -33.794859 -33.795306 0.00044743789 23.548257 -2.1490157 + 1682900 -33.793507 -33.798578 0.0050710237 266.88346 -2.0986687 + 1683000 -33.789629 -33.802782 0.013153261 692.24438 -1.5015771 + 1683100 -33.788204 -33.793603 0.0053992594 284.1582 -1.0162358 + 1683200 -33.793521 -33.79503 0.0015088923 79.411654 -0.17133594 + 1683300 -33.796238 -33.802583 0.0063441971 333.88944 0.59794794 + 1683400 -33.79496 -33.802171 0.0072107819 379.49702 1.0018467 + 1683500 -33.791592 -33.793415 0.0018225208 95.917646 1.0222083 + 1683600 -33.789199 -33.794414 0.0052150967 274.46589 1.1977534 + 1683700 -33.792149 -33.803115 0.010966093 577.13571 1.3252447 + 1683800 -33.79718 -33.800228 0.0030475388 160.38925 0.85499312 + 1683900 -33.79621 -33.796774 0.00056402282 29.684018 0.32708006 + 1684000 -33.79257 -33.80034 0.0077692513 408.88876 -0.085855637 + 1684100 -33.790098 -33.80316 0.013061326 687.40593 -0.71940228 + 1684200 -33.793276 -33.795761 0.0024848981 130.77797 -1.6605346 + 1684300 -33.796004 -33.797425 0.0014208905 74.780202 -1.7919758 + 1684400 -33.798925 -33.802645 0.0037193159 195.74428 -1.4634921 + 1684500 -33.799629 -33.80257 0.002940934 154.77873 -1.1010882 + 1684600 -33.795105 -33.797757 0.0026515882 139.55072 -0.41621159 + 1684700 -33.793318 -33.799152 0.0058342677 307.05231 1.0262325 + 1684800 -33.794414 -33.802777 0.008363054 440.14007 2.2899997 + 1684900 -33.79465 -33.798547 0.0038968952 205.09012 2.7432023 + 1685000 -33.792155 -33.792431 0.00027612348 14.532133 2.6109898 + 1685100 -33.787839 -33.79778 0.009941389 523.20643 2.295481 + 1685200 -33.788748 -33.802117 0.01336913 703.60538 1.29402 + 1685300 -33.79388 -33.79663 0.0027495073 144.70412 -0.115586 + 1685400 -33.794629 -33.797257 0.0026283388 138.32712 -0.9162703 + 1685500 -33.794071 -33.802919 0.008847981 465.66135 -1.2905039 + 1685600 -33.792471 -33.800194 0.0077226738 406.43744 -1.7209257 + 1685700 -33.788045 -33.789524 0.0014792996 77.854216 -2.0330146 + 1685800 -33.783495 -33.793308 0.0098137745 516.4902 -1.3279847 + 1685900 -33.790367 -33.802102 0.011735024 617.60387 -0.49709367 + 1686000 -33.793142 -33.796892 0.0037507855 197.40049 -0.21810556 + 1686100 -33.792989 -33.794726 0.0017368022 91.406351 0.22512909 + 1686200 -33.792843 -33.801786 0.0089430287 470.66362 0.95036587 + 1686300 -33.795641 -33.802661 0.0070200874 369.46094 1.18514 + 1686400 -33.79807 -33.799077 0.001007141 53.004931 0.97349183 + 1686500 -33.797826 -33.799596 0.0017701479 93.161305 0.7708359 + 1686600 -33.792133 -33.803204 0.01107114 582.66423 0.47027037 + 1686700 -33.790675 -33.7985 0.0078246687 411.80533 -0.58334141 + 1686800 -33.792125 -33.792942 0.00081632389 42.962398 -1.5728885 + 1686900 -33.793852 -33.799021 0.0051689411 272.03676 -1.7145424 + 1687000 -33.7956 -33.802913 0.0073126971 384.86072 -1.5719583 + 1687100 -33.797224 -33.799399 0.0021747952 114.45753 -1.3956521 + 1687200 -33.797214 -33.798762 0.0015486654 81.504877 -0.86004736 + 1687300 -33.793544 -33.802568 0.0090234934 474.89841 0.21518467 + 1687400 -33.789726 -33.801404 0.011677487 614.57572 1.4643729 + 1687500 -33.792674 -33.794159 0.0014848661 78.147178 2.0827409 + 1687600 -33.7951 -33.797441 0.0023417807 123.24583 2.4860505 + 1687700 -33.79769 -33.801851 0.0041612304 219.00184 2.4136194 + 1687800 -33.798862 -33.801295 0.0024324846 128.0195 1.8357498 + 1687900 -33.795238 -33.799 0.0037620024 197.99083 0.84480383 + 1688000 -33.79039 -33.801203 0.01081342 569.10064 -0.84348179 + 1688100 -33.795534 -33.802382 0.0068478053 360.39389 -2.3829068 + 1688200 -33.796451 -33.798335 0.0018833456 99.118802 -3.2215225 + 1688300 -33.794154 -33.794992 0.00083790238 44.098055 -3.2905425 + 1688400 -33.790887 -33.79975 0.0088625278 466.42693 -2.2173977 + 1688500 -33.790162 -33.800787 0.010625591 559.21537 -0.68615502 + 1688600 -33.794034 -33.79659 0.0025553779 134.48726 0.54325126 + 1688700 -33.796417 -33.799495 0.0030772126 161.95095 1.5325613 + 1688800 -33.796084 -33.803046 0.0069616465 366.38525 2.1779978 + 1688900 -33.792514 -33.799453 0.006939086 365.19791 2.2083564 + 1689000 -33.782233 -33.788417 0.0061835135 325.4328 1.5302657 + 1689100 -33.785464 -33.79553 0.010066059 529.76771 0.81229638 + 1689200 -33.792247 -33.799821 0.0075740637 398.61622 0.22970267 + 1689300 -33.791227 -33.794702 0.0034749027 182.88103 -0.53740077 + 1689400 -33.788657 -33.792799 0.0041417652 217.97741 -1.1098786 + 1689500 -33.791234 -33.801797 0.010562523 555.89616 -1.1976818 + 1689600 -33.796356 -33.802584 0.0062275346 327.74959 -1.3076435 + 1689700 -33.796659 -33.798758 0.0020993139 110.48502 -1.2127162 + 1689800 -33.794986 -33.798875 0.0038896635 204.70952 -0.66712135 + 1689900 -33.788597 -33.80235 0.013753039 723.81018 0.47497694 + 1690000 -33.786633 -33.794789 0.0081566599 429.27774 1.425686 + 1690100 -33.792689 -33.793089 0.00040044133 21.07487 1.9600153 + 1690200 -33.794004 -33.798351 0.004347588 228.80968 2.2020216 + 1690300 -33.791285 -33.80149 0.010204964 537.07814 1.9539064 + 1690400 -33.791133 -33.797713 0.0065805088 346.32631 0.89603824 + 1690500 -33.796829 -33.799892 0.0030629092 161.19818 0.021561162 + 1690600 -33.797808 -33.803148 0.0053392644 281.00073 -0.47880535 + 1690700 -33.796039 -33.801534 0.0054952389 289.20952 -1.0613609 + 1690800 -33.793601 -33.794715 0.0011136463 58.61021 -1.7341815 + 1690900 -33.792185 -33.79578 0.0035943319 189.16648 -1.8876546 + 1691000 -33.789826 -33.801434 0.011608337 610.93645 -1.4940683 + 1691100 -33.788676 -33.795684 0.0070084925 368.85071 -1.1589426 + 1691200 -33.793247 -33.794965 0.0017184326 90.439576 -0.60752211 + 1691300 -33.796809 -33.801982 0.0051726902 272.23407 0.06425605 + 1691400 -33.795881 -33.803412 0.007531647 396.38386 0.57089209 + 1691500 -33.793012 -33.79645 0.0034375584 180.91563 0.7460115 + 1691600 -33.790088 -33.793972 0.0038842927 204.42686 1.0252897 + 1691700 -33.788655 -33.800957 0.012302508 647.47003 1.4866561 + 1691800 -33.791959 -33.798491 0.0065325949 343.80464 1.1924412 + 1691900 -33.793787 -33.794186 0.00039907698 21.003065 0.70284653 + 1692000 -33.793745 -33.798778 0.0050331857 264.89208 0.48792206 + 1692100 -33.792135 -33.80332 0.011184896 588.65112 0.18090097 + 1692200 -33.793068 -33.798866 0.0057979071 305.13868 -0.53800603 + 1692300 -33.796814 -33.798265 0.0014509317 76.361243 -0.94242606 + 1692400 -33.797712 -33.802218 0.0045057473 237.13346 -0.87694865 + 1692500 -33.79429 -33.801705 0.0074149329 390.2413 -0.66170689 + 1692600 -33.79122 -33.793121 0.0019004016 100.01644 -0.47006916 + 1692700 -33.790614 -33.793927 0.0033138656 174.40579 0.17491352 + 1692800 -33.791168 -33.802692 0.011523125 606.45177 1.0545278 + 1692900 -33.794865 -33.800117 0.0052520919 276.41291 1.1801216 + 1693000 -33.797117 -33.797764 0.000647093 34.055928 1.0397693 + 1693100 -33.797465 -33.80133 0.0038648156 203.4018 0.97024429 + 1693200 -33.791638 -33.803606 0.011967897 629.85973 0.67998562 + 1693300 -33.789147 -33.7949 0.0057535972 302.80669 -0.51559862 + 1693400 -33.792387 -33.794078 0.0016910201 88.996881 -1.3333842 + 1693500 -33.794279 -33.800803 0.0065238446 343.34412 -1.4267578 + 1693600 -33.792809 -33.800497 0.0076873852 404.58023 -1.3898777 + 1693700 -33.784194 -33.788381 0.0041868689 220.35117 -1.2138999 + 1693800 -33.787474 -33.795303 0.0078291283 412.04004 -0.22728508 + 1693900 -33.792915 -33.80372 0.010804806 568.64729 0.60101488 + 1694000 -33.794977 -33.799314 0.0043367977 228.24179 0.78777701 + 1694100 -33.794656 -33.794971 0.0003148779 16.571743 0.81242408 + 1694200 -33.79085 -33.799243 0.0083932169 441.72752 1.070939 + 1694300 -33.785614 -33.801879 0.016264967 856.01073 1.0507653 + 1694400 -33.789695 -33.792182 0.0024870762 130.8926 0.17450117 + 1694500 -33.791866 -33.794965 0.003098245 163.05787 -0.12693674 + 1694600 -33.793235 -33.803232 0.0099967569 526.1204 -0.13027469 + 1694700 -33.794369 -33.800764 0.0063951749 336.57235 -0.48817843 + 1694800 -33.794779 -33.795107 0.00032873526 17.301044 -0.80759097 + 1694900 -33.794295 -33.799333 0.0050371582 265.10114 -0.59845365 + 1695000 -33.791156 -33.8033 0.012144259 639.14152 -0.21607049 + 1695100 -33.788373 -33.793491 0.0051175674 269.33301 -0.22361697 + 1695200 -33.789661 -33.791065 0.0014037959 73.880524 -0.0029767288 + 1695300 -33.794691 -33.802261 0.0075700682 398.40593 0.52715242 + 1695400 -33.795654 -33.802245 0.0065915866 346.90932 0.58706596 + 1695500 -33.794252 -33.795487 0.0012345268 64.972047 0.28412734 + 1695600 -33.792313 -33.79649 0.0041775668 219.86162 0.19942682 + 1695700 -33.790511 -33.803711 0.013199719 694.68944 0.28719879 + 1695800 -33.794477 -33.799043 0.0045662577 240.31807 -0.23974217 + 1695900 -33.796765 -33.796954 0.00018858255 9.9249316 -0.49674961 + 1696000 -33.796394 -33.801118 0.0047238927 248.61426 -0.34530111 + 1696100 -33.791756 -33.803124 0.011368215 598.29904 -0.1280024 + 1696200 -33.789729 -33.793528 0.0037992319 199.95019 -0.30385158 + 1696300 -33.7916 -33.794396 0.0027954223 147.12058 -0.11972622 + 1696400 -33.793589 -33.802717 0.0091275845 480.37663 0.30837978 + 1696500 -33.793681 -33.800582 0.0069012967 363.20909 0.33622196 + 1696600 -33.792824 -33.793109 0.00028451305 14.973668 0.11348406 + 1696700 -33.791304 -33.797171 0.0058673249 308.79208 0.29077214 + 1696800 -33.789465 -33.803678 0.014213445 748.04092 0.53147872 + 1696900 -33.793461 -33.797459 0.0039984096 210.43273 0.086682973 + 1697000 -33.796162 -33.796889 0.00072739856 38.282337 -0.096717407 + 1697100 -33.796343 -33.802309 0.0059664161 314.00716 0.045519682 + 1697200 -33.791991 -33.80204 0.010049362 528.88898 0.042586307 + 1697300 -33.78822 -33.78986 0.0016392101 86.270166 -0.44581876 + 1697400 -33.789246 -33.793605 0.004358794 229.39944 -0.35348907 + 1697500 -33.791658 -33.803287 0.011628403 611.99249 -0.010196485 + 1697600 -33.793771 -33.799417 0.005645573 297.12147 -0.14995091 + 1697700 -33.794297 -33.794566 0.00026923833 14.169773 -0.24998146 + 1697800 -33.794077 -33.800425 0.0063480415 334.09176 0.086340962 + 1697900 -33.793148 -33.803348 0.01019955 536.7932 0.33532337 + 1698000 -33.791712 -33.794884 0.0031716792 166.92265 0.12457412 + 1698100 -33.790735 -33.792631 0.0018956514 99.766443 0.10391478 + 1698200 -33.791284 -33.802434 0.01114998 586.81351 0.48372265 + 1698300 -33.795299 -33.801326 0.0060273811 317.21569 0.31707689 + 1698400 -33.796783 -33.797192 0.00040924515 21.538207 0.033962787 + 1698500 -33.795955 -33.799503 0.0035475413 186.70393 0.05231629 + 1698600 -33.78751 -33.803968 0.016457365 866.13647 0.24456985 + 1698700 -33.789628 -33.795786 0.0061581481 324.09784 -0.33477219 + 1698800 -33.793127 -33.793962 0.0008359048 43.992924 -0.56753634 + 1698900 -33.794271 -33.801029 0.0067578024 355.65711 -0.30084275 + 1699000 -33.793176 -33.802235 0.009059077 476.77114 -0.15966163 + 1699100 -33.787712 -33.790555 0.0028427019 149.60886 -0.30739131 + 1699200 -33.780551 -33.788164 0.0076131938 400.6756 0.078636162 + 1699300 -33.788334 -33.80328 0.014945727 786.58029 0.75779577 + 1699400 -33.792891 -33.799092 0.0062013458 326.3713 0.61718357 + 1699500 -33.794424 -33.794593 0.00016852211 8.8691681 0.35476411 + 1699600 -33.794569 -33.800141 0.0055712237 293.20853 0.41635937 + 1699700 -33.791426 -33.803063 0.011637321 612.4618 0.37616482 + 1699800 -33.786014 -33.790843 0.0048289813 254.14498 -0.41006655 + 1699900 -33.788471 -33.79151 0.003039068 159.94344 -0.83406174 + 1700000 -33.793553 -33.802652 0.0090999755 478.92359 -0.64315578 + 1700100 -33.793903 -33.801113 0.0072097177 379.44101 -0.71228687 + 1700200 -33.792828 -33.793297 0.00046875651 24.670237 -0.80385942 + 1700300 -33.790427 -33.796574 0.0061468387 323.50264 -0.26241719 + 1700400 -33.786672 -33.803491 0.016818368 885.13571 0.54983071 + 1700500 -33.791959 -33.796587 0.0046276213 243.54758 0.59623406 + 1700600 -33.79515 -33.795647 0.00049770328 26.19368 0.65299371 + 1700700 -33.795202 -33.801994 0.0067918685 357.44998 0.84900002 + 1700800 -33.792204 -33.802096 0.0098925523 520.6362 0.71447045 + 1700900 -33.786059 -33.789013 0.0029543347 155.484 -0.14839068 + 1701000 -33.786437 -33.791738 0.0053011619 278.99542 -0.65390662 + 1701100 -33.795103 -33.803476 0.0083727822 440.65206 -0.65470712 + 1701200 -33.794951 -33.799669 0.0047186737 248.33959 -0.85638929 + 1701300 -33.79237 -33.792876 0.00050551871 26.604999 -0.94842488 + 1701400 -33.789064 -33.798355 0.0092910812 488.98132 -0.29334423 + 1701500 -33.790606 -33.803497 0.01289126 678.45554 0.32483443 + 1701600 -33.796052 -33.797859 0.0018075203 95.12818 0.2859036 + 1701700 -33.796216 -33.797367 0.0011513709 60.595624 0.42225809 + 1701800 -33.794532 -33.802769 0.0082367252 433.4915 0.71579498 + 1701900 -33.791709 -33.800661 0.0089514208 471.10529 0.60725893 + 1702000 -33.790786 -33.791348 0.00056195586 29.575236 0.070893964 + 1702100 -33.791285 -33.796994 0.0057089942 300.45927 0.015355682 + 1702200 -33.792197 -33.803848 0.011650722 613.16709 0.027393255 + 1702300 -33.792831 -33.797312 0.0044809619 235.82903 -0.42014918 + 1702400 -33.793005 -33.79362 0.00061435513 32.332963 -0.67904615 + 1702500 -33.793118 -33.801285 0.008167446 429.8454 -0.36406347 + 1702600 -33.793871 -33.802612 0.0087410026 460.03117 -0.21016641 + 1702700 -33.794666 -33.79577 0.0011032768 58.064475 -0.33748184 + 1702800 -33.794252 -33.796912 0.0026605504 140.0224 -0.067305884 + 1702900 -33.791261 -33.803522 0.012260929 645.28176 0.50715011 + 1703000 -33.78751 -33.797151 0.0096417496 507.43668 0.5650741 + 1703100 -33.789965 -33.790196 0.00023076552 12.144983 0.42069413 + 1703200 -33.795036 -33.800396 0.0053603641 282.11118 0.71822643 + 1703300 -33.795274 -33.803411 0.008136235 428.20279 0.70087526 + 1703400 -33.793182 -33.796188 0.0030057456 158.18971 0.20419942 + 1703500 -33.790352 -33.792196 0.0018446906 97.084421 -0.29351965 + 1703600 -33.788064 -33.802228 0.014164151 745.44662 -0.30670831 + 1703700 -33.79434 -33.801494 0.007154833 376.55248 -0.73243718 + 1703800 -33.796396 -33.7968 0.00040386331 21.254966 -1.0084229 + 1703900 -33.795791 -33.798998 0.0032069336 168.77806 -0.75026973 + 1704000 -33.791028 -33.803913 0.012885361 678.14505 -0.057112227 + 1704100 -33.788862 -33.795345 0.0064837518 341.23407 0.24495805 + 1704200 -33.790801 -33.791756 0.00095512823 50.267547 0.60307233 + 1704300 -33.792236 -33.800731 0.0084943097 447.04794 1.2423954 + 1704400 -33.792616 -33.802537 0.0099205396 522.10915 1.3322556 + 1704500 -33.792845 -33.794216 0.0013713753 72.174257 0.81347193 + 1704600 -33.792684 -33.795797 0.0031130897 163.83914 0.4884596 + 1704700 -33.793992 -33.803452 0.0094598843 497.86527 0.28183308 + 1704800 -33.795952 -33.800871 0.0049189578 258.88036 -0.2585922 + 1704900 -33.795797 -33.795953 0.00015563507 8.1909348 -0.75376161 + 1705000 -33.792415 -33.798959 0.006544341 344.42283 -0.79248339 + 1705100 -33.787243 -33.803263 0.01602013 843.12515 -0.61817719 + 1705200 -33.790339 -33.793941 0.0036023102 189.58637 -1.0125574 + 1705300 -33.792418 -33.793892 0.0014735677 77.552556 -0.86423533 + 1705400 -33.792796 -33.802394 0.0095982214 505.14583 -0.20830057 + 1705500 -33.792852 -33.801332 0.0084797673 446.28259 0.11359252 + 1705600 -33.79281 -33.793453 0.00064273911 33.826786 0.17044369 + 1705700 -33.792953 -33.797488 0.0045347838 238.66162 0.61781011 + 1705800 -33.794132 -33.803736 0.009603929 505.44622 0.95515842 + 1705900 -33.794886 -33.798975 0.0040891433 215.20797 0.70225081 + 1706000 -33.79382 -33.794145 0.00032506239 17.107743 0.33705865 + 1706100 -33.789531 -33.800228 0.010697298 562.98924 0.26858594 + 1706200 -33.786758 -33.801846 0.015087968 794.06632 -0.13988148 + 1706300 -33.793946 -33.795289 0.0013429782 70.679747 -0.94403576 + 1706400 -33.7955 -33.797431 0.0019304375 101.5972 -1.0027628 + 1706500 -33.7942 -33.803542 0.0093416757 491.64406 -0.63956613 + 1706600 -33.790935 -33.798865 0.0079297496 417.33565 -0.4396043 + 1706700 -33.788368 -33.789282 0.00091359931 48.081917 -0.28595089 + 1706800 -33.790281 -33.797798 0.0075164325 395.58314 0.53456012 + 1706900 -33.795975 -33.803671 0.00769607 405.0373 0.88476322 + 1707000 -33.795862 -33.798139 0.0022768918 119.83079 0.70278463 + 1707100 -33.792998 -33.794201 0.0012022171 63.271612 0.47825339 + 1707200 -33.788781 -33.801576 0.012795238 673.40197 0.51436414 + 1707300 -33.790253 -33.8012 0.010947803 576.1731 0.018069083 + 1707400 -33.792187 -33.792891 0.00070483408 37.094789 -0.68471035 + 1707500 -33.792762 -33.79713 0.0043680365 229.88587 -0.74876096 + 1707600 -33.793053 -33.803608 0.010554776 555.48845 -0.55368927 + 1707700 -33.793517 -33.798251 0.0047336911 249.12994 -0.65917211 + 1707800 -33.793865 -33.794282 0.00041732848 21.963626 -0.602945 + 1707900 -33.793662 -33.801022 0.0073600588 387.35333 -0.021697943 + 1708000 -33.792479 -33.802891 0.010411654 547.95605 0.43419908 + 1708100 -33.791058 -33.793299 0.0022406109 117.92135 0.39507256 + 1708200 -33.790131 -33.793341 0.0032105271 168.96718 0.66036753 + 1708300 -33.79235 -33.802974 0.010623559 559.10843 1.07818 + 1708400 -33.796068 -33.801025 0.0049570821 260.88681 0.80619633 + 1708500 -33.79627 -33.796453 0.00018327946 9.6458343 0.40302074 + 1708600 -33.792653 -33.798959 0.006306096 331.88421 0.18873864 + 1708700 -33.786201 -33.80341 0.017208719 905.67952 -0.20672779 + 1708800 -33.791049 -33.795111 0.0040622806 213.7942 -1.2009395 + 1708900 -33.793427 -33.794438 0.0010110081 53.208454 -1.5021338 + 1709000 -33.793893 -33.802145 0.0082519675 434.29369 -1.1356145 + 1709100 -33.792502 -33.801265 0.0087627526 461.17585 -0.77368698 + 1709200 -33.785249 -33.787706 0.0024570689 129.31335 -0.4827912 + 1709300 -33.784402 -33.79222 0.0078181766 411.46366 0.72347386 + 1709400 -33.791623 -33.803647 0.012024412 632.83409 1.6464779 + 1709500 -33.793571 -33.797969 0.004398252 231.47608 1.5582441 + 1709600 -33.793466 -33.794012 0.00054559714 28.714291 1.2541418 + 1709700 -33.792218 -33.800561 0.0083424949 439.05806 1.0890808 + 1709800 -33.788442 -33.802421 0.013979131 735.70918 0.45588081 + 1709900 -33.789406 -33.791684 0.0022785386 119.91745 -0.8889451 + 1710000 -33.793913 -33.796524 0.0026109542 137.41219 -1.3796596 + 1710100 -33.795452 -33.803194 0.0077416937 407.43843 -1.3284258 + 1710200 -33.794005 -33.800189 0.006183743 325.44488 -1.2679451 + 1710300 -33.790456 -33.79116 0.00070338631 37.018594 -1.0581379 + 1710400 -33.784533 -33.795897 0.011363938 598.07392 0.14181295 + 1710500 -33.783765 -33.803122 0.019356694 1018.7256 1.5903967 + 1710600 -33.792879 -33.795598 0.0027194339 143.12138 1.6318081 + 1710700 -33.794363 -33.795517 0.0011535584 60.71075 1.6500423 + 1710800 -33.794225 -33.802366 0.0081410434 428.45585 1.62147 + 1710900 -33.791648 -33.801135 0.0094874123 499.31405 0.92935208 + 1711000 -33.788604 -33.790781 0.0021773312 114.591 -0.444284 + 1711100 -33.79038 -33.796308 0.0059278251 311.97615 -1.2929882 + 1711200 -33.795644 -33.803243 0.0075990725 399.93241 -1.6243889 + 1711300 -33.795466 -33.799107 0.003641165 191.63127 -1.8038737 + 1711400 -33.793043 -33.793595 0.00055142598 29.021057 -1.582975 + 1711500 -33.789994 -33.800246 0.010251876 539.54707 -0.44414936 + 1711600 -33.791102 -33.802726 0.011623337 611.72588 0.64113672 + 1711700 -33.792739 -33.794979 0.0022402194 117.90075 1.0870974 + 1711800 -33.793516 -33.795744 0.0022281497 117.26553 1.5661712 + 1711900 -33.793462 -33.802943 0.0094805576 498.95329 1.9631876 + 1712000 -33.79156 -33.799055 0.0074955378 394.48347 1.5527174 + 1712100 -33.788124 -33.789332 0.0012084743 63.600926 0.50880438 + 1712200 -33.788976 -33.797293 0.0083171006 437.72159 -0.11784076 + 1712300 -33.794605 -33.80374 0.0091355049 480.79347 -0.64938899 + 1712400 -33.795446 -33.797929 0.0024837324 130.71662 -1.2239579 + 1712500 -33.794112 -33.795183 0.0010705056 56.339753 -1.3866711 + 1712600 -33.791145 -33.801743 0.010597641 557.74441 -0.89269728 + 1712700 -33.787501 -33.800618 0.013117348 690.35434 -0.3993553 + 1712800 -33.787306 -33.788422 0.0011156028 58.713182 -0.20368036 + 1712900 -33.792107 -33.796776 0.004669032 245.72699 0.5305302 + 1713000 -33.795124 -33.803588 0.008464046 445.45519 1.0022388 + 1713100 -33.79518 -33.799303 0.0041236583 217.02446 0.8817406 + 1713200 -33.79232 -33.792866 0.00054649212 28.761393 0.52291609 + 1713300 -33.787044 -33.799206 0.012162199 640.08567 0.49742013 + 1713400 -33.79017 -33.802701 0.012530464 659.46715 0.07519929 + 1713500 -33.794432 -33.795959 0.0015268572 80.35713 -0.61422327 + 1713600 -33.794195 -33.796228 0.0020323927 106.96302 -0.74919258 + 1713700 -33.79228 -33.803059 0.010779485 567.31467 -0.4707738 + 1713800 -33.789549 -33.798766 0.0092171954 485.09277 -0.48363551 + 1713900 -33.789744 -33.790282 0.00053805272 28.317235 -0.55302099 + 1714000 -33.794523 -33.799797 0.0052737408 277.55227 -0.041514182 + 1714100 -33.796421 -33.803755 0.0073338086 385.9718 0.2492222 + 1714200 -33.794854 -33.797882 0.0030286522 159.39526 0.21451111 + 1714300 -33.791835 -33.792697 0.00086222576 45.378172 0.19904504 + 1714400 -33.789922 -33.801598 0.011675645 614.4788 0.66533977 + 1714500 -33.791271 -33.801245 0.0099731909 524.88014 0.63067029 + 1714600 -33.792976 -33.793863 0.00088642013 46.651501 0.16919896 + 1714700 -33.79441 -33.797797 0.0033865193 178.22949 0.14728673 + 1714800 -33.796635 -33.803934 0.0072989319 384.13628 0.1930075 + 1714900 -33.798994 -33.801484 0.0024904283 131.06902 -0.08937308 + 1715000 -33.798558 -33.798747 0.00018834038 9.9121863 -0.26657605 + 1715100 -33.793944 -33.800165 0.0062205199 327.38041 -0.17425248 + 1715200 -33.791004 -33.803332 0.012327987 648.81094 -0.079396203 + 1715300 -33.791107 -33.793659 0.0025519271 134.30565 -0.43804904 + 1715400 -33.792512 -33.794623 0.0021115966 111.13145 -0.38183878 + 1715500 -33.795817 -33.803028 0.0072115529 379.5376 -0.049588017 + 1715600 -33.79736 -33.802204 0.0048434109 254.90439 -0.0046115574 + 1715700 -33.794359 -33.794918 0.00055906561 29.423125 -0.13022909 + 1715800 -33.788935 -33.795592 0.0066570029 350.35213 0.17425196 + 1715900 -33.789374 -33.803635 0.014261416 750.56558 0.68541998 + 1716000 -33.793974 -33.797907 0.003932844 206.98207 0.39419666 + 1716100 -33.795337 -33.795759 0.00042120685 22.167741 0.24660355 + 1716200 -33.794711 -33.801774 0.0070632993 371.73514 0.40033719 + 1716300 -33.786296 -33.801216 0.014920382 785.24642 0.2948233 + 1716400 -33.785897 -33.788116 0.0022190232 116.78521 -0.57181757 + 1716500 -33.790571 -33.794726 0.0041554194 218.69602 -0.64747304 + 1716600 -33.793107 -33.803464 0.010357164 545.08831 -0.46216066 + 1716700 -33.793995 -33.799502 0.0055063546 289.79453 -0.55923836 + 1716800 -33.79334 -33.793518 0.00017797555 9.3666943 -0.60009102 + 1716900 -33.789129 -33.798551 0.0094219483 495.86874 -0.02447319 + 1717000 -33.785451 -33.80275 0.017298948 910.4282 0.70816738 + 1717100 -33.79263 -33.795177 0.0025470479 134.04886 0.55512065 + 1717200 -33.794295 -33.795783 0.0014878274 78.303027 0.62751126 + 1717300 -33.793757 -33.803037 0.0092800412 488.40029 0.87197302 + 1717400 -33.791678 -33.800137 0.0084594624 445.21396 0.55950423 + 1717500 -33.786819 -33.787941 0.0011212706 59.011472 -0.24715278 + 1717600 -33.783512 -33.793071 0.0095591663 503.0904 -0.49297241 + 1717700 -33.791911 -33.803838 0.011927627 627.74039 -0.62742485 + 1717800 -33.794329 -33.797526 0.0031964854 168.22818 -0.99789236 + 1717900 -33.794014 -33.794917 0.00090363817 47.557671 -0.9639449 + 1718000 -33.79206 -33.801567 0.0095070378 500.34692 -0.35766666 + 1718100 -33.786713 -33.801141 0.014427477 759.30523 0.25191528 + 1718200 -33.787605 -33.788759 0.0011542038 60.744715 0.37230351 + 1718300 -33.793781 -33.797331 0.0035497512 186.82024 0.89408224 + 1718400 -33.794909 -33.803541 0.0086323766 454.31428 1.186617 + 1718500 -33.793359 -33.798907 0.0055481436 291.99385 0.86598846 + 1718600 -33.789965 -33.790456 0.00049048617 25.81385 0.17571261 + 1718700 -33.785763 -33.798186 0.012423712 653.8489 -0.060972219 + 1718800 -33.792106 -33.803181 0.011074676 582.8503 -0.57373033 + 1718900 -33.795624 -33.797243 0.0016192147 85.217825 -1.1133928 + 1719000 -33.79521 -33.796674 0.0014641164 77.055142 -1.0883747 + 1719100 -33.791755 -33.802969 0.011214315 590.19938 -0.49926854 + 1719200 -33.787629 -33.798915 0.011285619 593.95206 -0.061243204 + 1719300 -33.790834 -33.791316 0.00048238409 25.387444 0.18216864 + 1719400 -33.796219 -33.799951 0.0037325541 196.44099 0.69584113 + 1719500 -33.795617 -33.803737 0.0081204343 427.37121 0.94423682 + 1719600 -33.792405 -33.796836 0.0044314139 233.22136 0.67435561 + 1719700 -33.789618 -33.790486 0.0008681072 45.687708 0.18870073 + 1719800 -33.789456 -33.800969 0.011512385 605.88657 0.20208853 + 1719900 -33.795848 -33.802813 0.0069653136 366.57824 -0.1496127 + 1720000 -33.797044 -33.797902 0.00085840945 45.177324 -0.53785533 + 1720100 -33.795756 -33.797919 0.0021629543 113.83435 -0.55816307 + 1720200 -33.791902 -33.803718 0.011816515 621.89265 -0.18396378 + 1720300 -33.789906 -33.797639 0.007733281 406.99568 -0.25134745 + 1720400 -33.791094 -33.791604 0.00051014916 26.848695 -0.29291469 + 1720500 -33.795554 -33.8005 0.0049453263 260.26811 0.14639665 + 1720600 -33.797634 -33.803777 0.0061426314 323.28121 0.29106955 + 1720700 -33.795835 -33.798011 0.0021757355 114.50702 0.16326358 + 1720800 -33.792786 -33.79429 0.0015042176 79.165629 0.081208987 + 1720900 -33.790269 -33.80195 0.011681189 614.77056 0.36612043 + 1721000 -33.791249 -33.801101 0.0098521143 518.50799 0.24507836 + 1721100 -33.795225 -33.79544 0.00021504056 11.317393 -0.16343921 + 1721200 -33.798167 -33.800454 0.0022875544 120.39195 -0.095388646 + 1721300 -33.797282 -33.80378 0.0064973128 341.94778 0.048591419 + 1721400 -33.794298 -33.799092 0.0047942546 252.31734 -0.11253875 + 1721500 -33.791903 -33.792361 0.00045834475 24.122275 -0.33437522 + 1721600 -33.790712 -33.799963 0.0092517433 486.911 0.043378501 + 1721700 -33.792441 -33.80288 0.010439421 549.41739 0.13911252 + 1721800 -33.797806 -33.798857 0.0010506038 55.29234 -0.094756414 + 1721900 -33.798322 -33.799356 0.0010341656 54.427212 -0.0464724 + 1722000 -33.796324 -33.803348 0.0070237483 369.65361 0.15674361 + 1722100 -33.793013 -33.800693 0.0076803141 404.20808 0.1603164 + 1722200 -33.791827 -33.792608 0.00078084781 41.095324 -0.10613002 + 1722300 -33.79177 -33.797775 0.0060051535 316.04587 0.072634685 + 1722400 -33.7942 -33.803524 0.0093239094 490.70903 0.26078733 + 1722500 -33.798189 -33.800314 0.0021249975 111.83673 0.025325598 + 1722600 -33.79789 -33.798213 0.00032214674 16.954295 -0.089224165 + 1722700 -33.79508 -33.801989 0.0069082865 363.57696 0.1037275 + 1722800 -33.792764 -33.802484 0.0097197075 511.53953 0.12895278 + 1722900 -33.792564 -33.794738 0.0021738023 114.40528 -0.23344393 + 1723000 -33.792959 -33.795918 0.0029595503 155.75849 -0.18276745 + 1723100 -33.794489 -33.803182 0.0086932122 457.51601 0.064455112 + 1723200 -33.797143 -33.800879 0.0037365734 196.65252 -0.068843464 + 1723300 -33.796927 -33.797337 0.0004106484 21.612059 -0.15458476 + 1723400 -33.792645 -33.799043 0.0063979159 336.71661 0.054887811 + 1723500 -33.789119 -33.80379 0.01467109 772.12636 0.38142506 + 1723600 -33.792638 -33.796215 0.0035766283 188.23476 0.1010684 + 1723700 -33.794247 -33.795638 0.0013915027 73.233545 0.034941038 + 1723800 -33.794203 -33.801782 0.0075792116 398.88715 0.26717002 + 1723900 -33.789974 -33.800545 0.010570925 556.33837 0.27356423 + 1724000 -33.781609 -33.783358 0.0017496552 92.082795 -0.38184066 + 1724100 -33.786937 -33.794367 0.0074303993 391.05529 -0.18830626 + 1724200 -33.792942 -33.803688 0.010745612 565.53195 0.024104933 + 1724300 -33.795131 -33.799228 0.0040977818 215.6626 -0.25075893 + 1724400 -33.795083 -33.79545 0.00036624512 19.275154 -0.34685492 + 1724500 -33.792134 -33.800755 0.0086209551 453.71318 0.016672767 + 1724600 -33.785597 -33.801644 0.016046534 844.51479 0.29100431 + 1724700 -33.789166 -33.791197 0.0020306001 106.86867 -0.019354905 + 1724800 -33.792085 -33.79506 0.0029749795 156.57052 0.14126329 + 1724900 -33.792577 -33.803277 0.010700864 563.17692 0.44133691 + 1725000 -33.793134 -33.799757 0.0066233317 348.58004 0.28595204 + 1725100 -33.793611 -33.794044 0.00043301388 22.789134 -0.055566727 + 1725200 -33.794592 -33.799984 0.0053919733 283.77474 0.038297577 + 1725300 -33.796031 -33.803611 0.0075795014 398.9024 0.092670385 + 1725400 -33.795375 -33.798061 0.0026865167 141.38898 -0.21750227 + 1725500 -33.791397 -33.792414 0.0010170605 53.526986 -0.41995338 + 1725600 -33.787546 -33.801468 0.01392164 732.68347 0.009922424 + 1725700 -33.790772 -33.800847 0.010074891 530.23254 -0.11363579 + 1725800 -33.793121 -33.794053 0.00093209945 49.055563 -0.38218564 + 1725900 -33.793383 -33.797344 0.0039614958 208.48999 -0.15437008 + 1726000 -33.792712 -33.803958 0.011246239 591.87955 0.18700168 + 1726100 -33.792356 -33.797487 0.0051306766 270.02293 0.074032704 + 1726200 -33.791498 -33.792311 0.00081278917 42.776369 -0.01967722 + 1726300 -33.791309 -33.800028 0.0087187864 458.86195 0.32692338 + 1726400 -33.793258 -33.802995 0.0097369302 512.44595 0.43089116 + 1726500 -33.795515 -33.796661 0.0011457608 60.300371 0.093991843 + 1726600 -33.796056 -33.798035 0.0019786251 104.13328 0.043345317 + 1726700 -33.794363 -33.803311 0.0089480006 470.92529 0.22064956 + 1726800 -33.788164 -33.798585 0.010421603 548.47966 0.00048656978 + 1726900 -33.788566 -33.788911 0.00034505085 18.159719 -0.5654565 + 1727000 -33.792139 -33.798595 0.0064562398 339.78614 -0.3211142 + 1727100 -33.794066 -33.803339 0.0092729045 488.02469 -0.17528497 + 1727200 -33.793639 -33.796959 0.0033196897 174.71231 -0.35049049 + 1727300 -33.792619 -33.793842 0.0012223772 64.332622 -0.27834549 + 1727400 -33.791033 -33.802045 0.011011641 579.53284 0.25172213 + 1727500 -33.791232 -33.801343 0.010110828 532.12388 0.40513456 + 1727600 -33.794405 -33.795149 0.00074391315 39.151486 0.22520985 + 1727700 -33.795897 -33.798761 0.002863886 150.72377 0.33663629 + 1727800 -33.795167 -33.803662 0.0084948472 447.07623 0.48943205 + 1727900 -33.789124 -33.79644 0.0073162393 385.04715 0.19207592 + 1728000 -33.787538 -33.788369 0.00083009072 43.686934 -0.39264966 + 1728100 -33.790193 -33.799788 0.0095951901 504.9863 -0.21212243 + 1728200 -33.792773 -33.802837 0.010063901 529.65411 -0.24863923 + 1728300 -33.793557 -33.795484 0.0019267811 101.40477 -0.60686577 + 1728400 -33.793307 -33.795397 0.0020905158 110.02198 -0.50452946 + 1728500 -33.790772 -33.803212 0.012440035 654.70793 0.033706318 + 1728600 -33.786104 -33.797306 0.011202115 589.55735 0.1421915 + 1728700 -33.789425 -33.790159 0.00073423253 38.642003 0.088064866 + 1728800 -33.793795 -33.799133 0.0053377179 280.91933 0.48271557 + 1728900 -33.79458 -33.803805 0.009225025 485.50484 0.63834607 + 1729000 -33.793487 -33.79663 0.0031428352 165.40461 0.32395916 + 1729100 -33.789183 -33.790944 0.0017604588 92.651376 -0.041654501 + 1729200 -33.781751 -33.799999 0.018248161 960.38442 0.10540777 + 1729300 -33.789878 -33.80115 0.011272298 593.25101 -0.30388593 + 1729400 -33.792369 -33.792827 0.00045815972 24.112537 -0.8370451 + 1729500 -33.79317 -33.797532 0.0043623135 229.58467 -0.6616335 + 1729600 -33.794 -33.803589 0.0095892921 504.67589 -0.2741612 + 1729700 -33.794214 -33.798905 0.0046908502 246.87526 -0.29043323 + 1729800 -33.792952 -33.793373 0.00042171299 22.194379 -0.19211325 + 1729900 -33.789222 -33.799942 0.010719796 564.1733 0.50204349 + 1730000 -33.788273 -33.802096 0.013823231 727.50431 0.89034361 + 1730100 -33.794265 -33.79573 0.0014646028 77.080741 0.67719071 + 1730200 -33.795633 -33.797483 0.0018498108 97.353894 0.67141921 + 1730300 -33.794481 -33.803361 0.0088796999 467.33068 0.68675754 + 1730400 -33.791863 -33.799593 0.0077298428 406.81473 0.25183052 + 1730500 -33.789987 -33.790858 0.00087074098 45.826321 -0.55658558 + 1730600 -33.789404 -33.797384 0.0079807881 420.02176 -0.76803666 + 1730700 -33.793871 -33.803396 0.0095242851 501.25463 -0.82102287 + 1730800 -33.795935 -33.798391 0.0024555617 129.23402 -1.06693 + 1730900 -33.795316 -33.796122 0.00080643247 42.441822 -0.92821974 + 1731000 -33.790824 -33.801944 0.011120626 585.26863 -0.09399229 + 1731100 -33.78769 -33.800616 0.012925812 680.27398 0.63732586 + 1731200 -33.79177 -33.793074 0.0013039499 68.625721 0.85301055 + 1731300 -33.793364 -33.796974 0.0036099092 189.9863 1.2682967 + 1731400 -33.79283 -33.803579 0.010748645 565.69162 1.492002 + 1731500 -33.792049 -33.797526 0.0054767894 288.23854 0.98682355 + 1731600 -33.790956 -33.792023 0.00106678 56.143679 0.26520986 + 1731700 -33.791522 -33.799904 0.0083815539 441.11371 -0.076775958 + 1731800 -33.795484 -33.803394 0.0079096689 416.27882 -0.47350227 + 1731900 -33.796858 -33.798081 0.0012228904 64.35963 -0.92301769 + 1732000 -33.795222 -33.797058 0.0018358945 96.621491 -0.98512381 + 1732100 -33.787979 -33.802297 0.014317975 753.54226 -0.39781461 + 1732200 -33.789318 -33.799412 0.010094393 531.25889 -0.17617152 + 1732300 -33.792662 -33.792856 0.00019365201 10.191733 -0.15598482 + 1732400 -33.794053 -33.79913 0.0050772063 267.20884 0.35467497 + 1732500 -33.794024 -33.803475 0.0094510071 497.39807 0.70501795 + 1732600 -33.789536 -33.795098 0.0055623406 292.74102 0.52514195 + 1732700 -33.783484 -33.785617 0.0021330257 112.25924 0.28150546 + 1732800 -33.788412 -33.801079 0.012667139 666.66024 0.62765802 + 1732900 -33.793322 -33.80178 0.0084578629 445.12978 0.38092382 + 1733000 -33.794182 -33.795017 0.00083572882 43.983662 -0.06996997 + 1733100 -33.793634 -33.79715 0.003516623 185.07673 -0.18444536 + 1733200 -33.789186 -33.803618 0.014432283 759.55816 -0.036730985 + 1733300 -33.785019 -33.79442 0.0094006497 494.74781 -0.4773895 + 1733400 -33.79109 -33.791802 0.00071288474 37.518488 -0.84013627 + 1733500 -33.793817 -33.800795 0.0069781259 367.25254 -0.48761145 + 1733600 -33.793683 -33.802859 0.00917545 482.89575 -0.22495262 + 1733700 -33.792175 -33.794514 0.0023393158 123.1161 -0.30674241 + 1733800 -33.788947 -33.7919 0.002952613 155.39339 0.022825112 + 1733900 -33.784943 -33.80278 0.01783721 938.75647 0.94590489 + 1734000 -33.793131 -33.799987 0.0068560335 360.82693 0.85881793 + 1734100 -33.794937 -33.79536 0.00042303658 22.264038 0.65900846 + 1734200 -33.794488 -33.799383 0.0048951575 257.62778 0.66455224 + 1734300 -33.790987 -33.803727 0.012739822 670.48549 0.53456489 + 1734400 -33.78577 -33.791394 0.0056233023 295.94939 -0.33684447 + 1734500 -33.786397 -33.789081 0.0026843993 141.27754 -1.0634807 + 1734600 -33.794287 -33.801933 0.0076465313 402.43012 -0.97855524 + 1734700 -33.794801 -33.802062 0.0072610444 382.14229 -0.92184983 + 1734800 -33.793067 -33.793965 0.00089781269 47.251081 -0.970142 + 1734900 -33.789456 -33.79521 0.005754291 302.8432 -0.33579207 + 1735000 -33.788136 -33.803268 0.015132472 796.40853 0.7557787 + 1735100 -33.795474 -33.799801 0.0043263209 227.69041 0.85245957 + 1735200 -33.796228 -33.796344 0.00011614581 6.1126505 0.84352764 + 1735300 -33.794509 -33.800906 0.0063968925 336.66275 0.99139737 + 1735400 -33.78994 -33.802539 0.012599282 663.089 0.77225582 + 1735500 -33.789518 -33.792756 0.0032381604 170.42149 -0.13093693 + 1735600 -33.791585 -33.794221 0.0026359579 138.72811 -0.60801845 + 1735700 -33.792247 -33.802991 0.010743978 565.44597 -0.65131798 + 1735800 -33.792814 -33.800083 0.0072685943 382.53963 -0.89492779 + 1735900 -33.793051 -33.79345 0.00039933559 21.016676 -1.1223835 + 1736000 -33.79314 -33.798567 0.0054270063 285.6185 -0.70661115 + 1736100 -33.793782 -33.803652 0.0098693599 519.41561 -0.1222972 + 1736200 -33.794817 -33.798159 0.0033424067 175.90788 0.0055766373 + 1736300 -33.794673 -33.795483 0.00080947036 42.601703 0.24370409 + 1736400 -33.792192 -33.801758 0.0095665071 503.47673 0.87081303 + 1736500 -33.787268 -33.800638 0.013369685 703.63458 1.1306211 + 1736600 -33.788823 -33.790274 0.0014502258 76.324089 0.7332728 + 1736700 -33.794604 -33.797603 0.0029990532 157.83749 0.81141937 + 1736800 -33.795181 -33.803726 0.0085449249 449.71178 0.77287059 + 1736900 -33.793452 -33.798903 0.0054512536 286.89461 0.22494353 + 1737000 -33.790438 -33.791601 0.001163453 61.231494 -0.53127388 + 1737100 -33.787799 -33.798134 0.010334516 543.89634 -0.82624682 + 1737200 -33.792099 -33.803198 0.011098968 584.12879 -1.1076707 + 1737300 -33.795833 -33.797306 0.0014733303 77.54006 -1.4344817 + 1737400 -33.795553 -33.797184 0.0016310801 85.842292 -1.2085095 + 1737500 -33.792144 -33.80264 0.010495955 552.39274 -0.34382602 + 1737600 -33.787265 -33.799555 0.012289517 646.7863 0.5695171 + 1737700 -33.791172 -33.791766 0.00059457313 31.291853 1.0452292 + 1737800 -33.795592 -33.799454 0.0038625277 203.28139 1.6289753 + 1737900 -33.794969 -33.803285 0.0083165502 437.69262 1.7651663 + 1738000 -33.791929 -33.796946 0.0050173225 264.05721 1.1232855 + 1738100 -33.7894 -33.790851 0.0014507179 76.349991 0.14333916 + 1738200 -33.790458 -33.800967 0.010508705 553.06375 -0.41456197 + 1738300 -33.795997 -33.802654 0.0066572107 350.36306 -1.0377823 + 1738400 -33.796208 -33.797245 0.0010363409 54.541698 -1.4234789 + 1738500 -33.794777 -33.797187 0.0024095464 126.81228 -1.3111126 + 1738600 -33.792162 -33.803463 0.011300954 594.75912 -0.62904154 + 1738700 -33.791525 -33.798953 0.0074285138 390.95605 -0.12546772 + 1738800 -33.792327 -33.792946 0.00061911884 32.583672 0.25127446 + 1738900 -33.792734 -33.799297 0.0065630788 345.40898 1.0058146 + 1739000 -33.79256 -33.803078 0.010517842 553.54463 1.4951089 + 1739100 -33.792301 -33.795339 0.0030378849 159.88117 1.1910391 + 1739200 -33.791809 -33.793543 0.0017339259 91.254975 0.90054448 + 1739300 -33.792429 -33.802515 0.01008625 530.83033 0.81940803 + 1739400 -33.795829 -33.801962 0.0061333273 322.79155 0.22264644 + 1739500 -33.796851 -33.797468 0.0006171258 32.47878 -0.3530589 + 1739600 -33.795493 -33.798771 0.0032781279 172.52495 -0.59509583 + 1739700 -33.788412 -33.80375 0.015337928 807.22148 -0.65798927 + 1739800 -33.789313 -33.795362 0.0060491005 318.35876 -1.2369135 + 1739900 -33.791845 -33.792719 0.00087412971 46.004667 -1.4143099 + 1740000 -33.793631 -33.800837 0.0072064002 379.26641 -0.92322614 + 1740100 -33.793811 -33.803 0.0091895526 483.63796 -0.41859561 + 1740200 -33.79363 -33.7953 0.001670024 87.891874 -0.19979272 + 1740300 -33.793135 -33.796125 0.0029898568 157.35349 0.38042983 + 1740400 -33.792551 -33.802938 0.010386997 546.65839 1.1701672 + 1740500 -33.791913 -33.799473 0.0075598519 397.86826 1.2918045 + 1740600 -33.791325 -33.791374 4.8752894e-05 2.5658213 1.0092032 + 1740700 -33.791054 -33.798396 0.00734246 386.42712 1.0760723 + 1740800 -33.793438 -33.803403 0.0099649044 524.44403 0.8036546 + 1740900 -33.795933 -33.798546 0.0026133254 137.53698 0.13101539 + 1741000 -33.796565 -33.797386 0.00082011518 43.16193 -0.29516761 + 1741100 -33.794268 -33.802675 0.0084071883 442.46282 -0.41540926 + 1741200 -33.787946 -33.800289 0.012342617 649.58093 -0.76383402 + 1741300 -33.789094 -33.790298 0.0012036189 63.345388 -1.4651038 + 1741400 -33.792471 -33.796621 0.0041501052 218.41634 -1.314973 + 1741500 -33.794128 -33.803576 0.0094475738 497.21738 -0.82959109 + 1741600 -33.793921 -33.798809 0.004887998 257.25097 -0.58001636 + 1741700 -33.793187 -33.794009 0.00082192902 43.257391 -0.19505852 + 1741800 -33.792363 -33.800434 0.0080716693 424.80476 0.71315578 + 1741900 -33.79239 -33.802743 0.010352659 544.85119 1.3019921 + 1742000 -33.794678 -33.796356 0.0016779475 88.308882 1.2141624 + 1742100 -33.79565 -33.797252 0.0016017329 84.297775 1.1837845 + 1742200 -33.794554 -33.803191 0.00863665 454.53919 1.1053166 + 1742300 -33.789606 -33.79917 0.009563681 503.328 0.38490002 + 1742400 -33.787873 -33.789414 0.0015404247 81.071176 -0.8854821 + 1742500 -33.792339 -33.798042 0.0057036155 300.1762 -1.3530241 + 1742600 -33.795525 -33.803526 0.0080012153 421.09683 -1.4254027 + 1742700 -33.794488 -33.797684 0.0031956512 168.18427 -1.4696833 + 1742800 -33.791816 -33.793357 0.0015409607 81.09939 -1.103171 + 1742900 -33.789164 -33.800803 0.011639063 612.55349 0.099229437 + 1743000 -33.793298 -33.802481 0.0091830956 483.29813 0.93676602 + 1743100 -33.796996 -33.797561 0.00056467558 29.718372 1.0308386 + 1743200 -33.796336 -33.798732 0.0023955169 126.07392 1.1788041 + 1743300 -33.793007 -33.803286 0.010279075 540.97855 1.2642714 + 1743400 -33.790621 -33.798335 0.0077138802 405.97463 0.57160782 + 1743500 -33.791448 -33.791918 0.00046989127 24.729959 -0.31006178 + 1743600 -33.792297 -33.799834 0.0075372068 396.67647 -0.56980093 + 1743700 -33.793114 -33.802966 0.0098520099 518.5025 -0.86717153 + 1743800 -33.793144 -33.795764 0.0026198051 137.878 -1.2811966 + 1743900 -33.791475 -33.793223 0.0017488533 92.040589 -1.2438424 + 1744000 -33.78551 -33.802267 0.016757335 881.92359 -0.39098839 + 1744100 -33.790213 -33.7999 0.0096866883 509.80177 0.019648226 + 1744200 -33.794258 -33.794794 0.00053576729 28.196955 0.097941638 + 1744300 -33.794971 -33.799118 0.0041477743 218.29366 0.50101369 + 1744400 -33.793394 -33.803708 0.010314946 542.86638 0.88505541 + 1744500 -33.786585 -33.793114 0.0065281605 343.57127 0.59217164 + 1744600 -33.784502 -33.786158 0.0016559285 87.15004 0.21590968 + 1744700 -33.789373 -33.801015 0.011642165 612.71675 0.50920629 + 1744800 -33.792071 -33.801867 0.0097961977 515.56515 0.21855438 + 1744900 -33.793743 -33.794778 0.0010352156 54.482474 -0.30106846 + 1745000 -33.794601 -33.797601 0.0029992644 157.84861 -0.351702 + 1745100 -33.794856 -33.803772 0.0089167393 469.28004 -0.22778913 + 1745200 -33.793257 -33.798847 0.0055901775 294.20605 -0.36923176 + 1745300 -33.789291 -33.789961 0.00066995268 35.259012 -0.54981169 + 1745400 -33.787517 -33.797888 0.010370926 545.81258 -0.041333738 + 1745500 -33.793156 -33.803509 0.010353163 544.87774 0.25616348 + 1745600 -33.795598 -33.797223 0.0016251754 85.531533 0.05010161 + 1745700 -33.794782 -33.796528 0.001745343 91.855846 0.084776097 + 1745800 -33.792426 -33.802688 0.010262271 540.09417 0.44134172 + 1745900 -33.788858 -33.799615 0.010756793 566.12043 0.34277382 + 1746000 -33.786949 -33.787187 0.00023786157 12.518442 -0.18787522 + 1746100 -33.790349 -33.797287 0.0069381788 365.15016 0.061012321 + 1746200 -33.794978 -33.803619 0.0086402474 454.72851 0.13206509 + 1746300 -33.79551 -33.798789 0.0032797119 172.60831 -0.12886448 + 1746400 -33.793606 -33.794083 0.00047766873 25.139279 -0.28185422 + 1746500 -33.787267 -33.800863 0.013595872 715.53863 0.076896968 + 1746600 -33.78799 -33.801025 0.013034806 686.0102 0.089904524 + 1746700 -33.791231 -33.792677 0.0014455952 76.080388 -0.27540494 + 1746800 -33.792257 -33.795916 0.0036591393 192.57724 -0.1385355 + 1746900 -33.793179 -33.803753 0.01057349 556.47333 0.2054297 + 1747000 -33.794691 -33.799387 0.0046961723 247.15536 0.063453026 + 1747100 -33.79573 -33.79614 0.00041014128 21.58537 -0.080627479 + 1747200 -33.796356 -33.801192 0.004835536 254.48995 0.13454521 + 1747300 -33.793937 -33.803332 0.0093954424 494.47375 0.27367003 + 1747400 -33.789197 -33.792606 0.0034090121 179.41327 -0.10260625 + 1747500 -33.788612 -33.79133 0.0027185272 143.07366 -0.16429503 + 1747600 -33.79167 -33.802565 0.010895079 573.39827 0.17556872 + 1747700 -33.794092 -33.800944 0.0068522409 360.62733 0.011711278 + 1747800 -33.793842 -33.7944 0.00055834009 29.384941 -0.23105748 + 1747900 -33.792894 -33.798058 0.0051630924 271.72895 -0.067586284 + 1748000 -33.791 -33.803807 0.012807167 674.02978 0.1965494 + 1748100 -33.790722 -33.795537 0.0048149323 253.40559 -0.060941941 + 1748200 -33.792808 -33.793905 0.0010968902 57.728352 -0.16450487 + 1748300 -33.795524 -33.801826 0.0063022758 331.68316 0.10730237 + 1748400 -33.795943 -33.802801 0.006857227 360.88974 0.16810532 + 1748500 -33.79183 -33.793506 0.0016763728 88.226003 -0.12945618 + 1748600 -33.786841 -33.792438 0.0055972416 294.57783 -0.081764649 + 1748700 -33.789446 -33.802922 0.013476202 709.2405 0.30240042 + 1748800 -33.793186 -33.799379 0.0061926029 325.91117 0.017724458 + 1748900 -33.79397 -33.793991 2.1299829e-05 1.120991 -0.20002772 + 1749000 -33.79327 -33.800011 0.0067409139 354.76829 0.045183516 + 1749100 -33.790052 -33.802731 0.012679301 667.30028 0.1895479 + 1749200 -33.782417 -33.788641 0.0062243387 327.58139 -0.19017886 + 1749300 -33.78777 -33.790684 0.0029134851 153.33412 -0.2165538 + 1749400 -33.792479 -33.802736 0.010256798 539.80615 0.13493964 + 1749500 -33.794036 -33.800698 0.0066619611 350.61307 0.066700163 + 1749600 -33.79368 -33.794394 0.00071323039 37.536679 -0.18210651 + 1749700 -33.79144 -33.797107 0.0056674522 298.27296 -0.02352592 + 1749800 -33.785437 -33.80376 0.018323689 964.35943 0.41570401 + 1749900 -33.791186 -33.795732 0.0045462009 239.2625 -0.041034625 + 1750000 -33.794498 -33.795344 0.00084647887 44.549428 -0.12946928 + 1750100 -33.794438 -33.801672 0.0072335246 380.69395 0.13835575 + 1750200 -33.792169 -33.801962 0.0097925662 515.37402 0.15756667 + 1750300 -33.787926 -33.790065 0.0021386067 112.55296 -0.23896759 + 1750400 -33.784098 -33.790643 0.0065447968 344.44682 -0.14263309 + 1750500 -33.791606 -33.803519 0.011913101 626.97589 0.15986381 + 1750600 -33.795018 -33.799691 0.0046729517 245.93328 -0.049751903 + 1750700 -33.794709 -33.795037 0.00032758678 17.2406 -0.21565372 + 1750800 -33.792236 -33.799618 0.0073818134 388.49825 0.024097752 + 1750900 -33.786236 -33.802838 0.016601402 873.71698 0.3342886 + 1751000 -33.789714 -33.792289 0.0025744574 135.4914 -0.11975344 + 1751100 -33.795215 -33.796935 0.0017198726 90.51536 -0.059146907 + 1751200 -33.79521 -33.802913 0.0077026256 405.38232 0.20454952 + 1751300 -33.792416 -33.800736 0.0083204184 437.8962 0.14493646 + 1751400 -33.789142 -33.789498 0.00035553505 18.711493 -0.26291745 + 1751500 -33.788084 -33.795786 0.0077026603 405.38414 -0.016397979 + 1751600 -33.794982 -33.803634 0.008652583 455.37772 0.11327744 + 1751700 -33.796254 -33.799483 0.0032295245 169.967 -0.093079252 + 1751800 -33.794744 -33.795075 0.0003310837 17.42464 -0.20906925 + 1751900 -33.790612 -33.80118 0.010568049 556.18699 0.1224424 + 1752000 -33.789056 -33.801407 0.012351331 650.03955 0.21380763 + 1752100 -33.791758 -33.793433 0.0016744017 88.122268 -0.12634124 + 1752200 -33.793122 -33.796035 0.002913548 153.33743 -0.043441368 + 1752300 -33.79276 -33.803718 0.0109575 576.68343 0.27685815 + 1752400 -33.792651 -33.798763 0.0061115929 321.64768 0.09638171 + 1752500 -33.792328 -33.792996 0.00066829112 35.171566 -0.16907337 + 1752600 -33.792669 -33.799411 0.0067426733 354.86088 0.073081491 + 1752700 -33.794636 -33.803581 0.0089443805 470.73477 0.17532517 + 1752800 -33.796552 -33.798294 0.0017419509 91.677323 -0.10495745 + 1752900 -33.796375 -33.797517 0.0011422938 60.117903 -0.1325433 + 1753000 -33.791776 -33.802403 0.010626268 559.251 0.16827229 + 1753100 -33.788008 -33.799929 0.011921014 627.39236 0.13238336 + 1753200 -33.790943 -33.791632 0.00068851975 36.23618 -0.2253118 + 1753300 -33.793419 -33.797949 0.0045294347 238.38011 -0.026067162 + 1753400 -33.793869 -33.803775 0.0099064305 521.3666 0.19502463 + 1753500 -33.793414 -33.797773 0.0043586191 229.39024 0.0020686164 + 1753600 -33.792492 -33.79331 0.00081781344 43.040792 -0.1684391 + 1753700 -33.791449 -33.800625 0.0091755848 482.90285 0.14668396 + 1753800 -33.790939 -33.80248 0.011541048 607.39506 0.2474874 + 1753900 -33.793548 -33.794739 0.0011916561 62.715797 -0.14171089 + 1754000 -33.795137 -33.797659 0.0025219968 132.73044 -0.072267931 + 1754100 -33.795547 -33.803362 0.0078149303 411.29281 0.15866285 + 1754200 -33.791897 -33.799409 0.0075120103 395.3504 0.037077825 + 1754300 -33.787162 -33.78731 0.00014794726 7.7863325 -0.32916908 + 1754400 -33.788047 -33.797666 0.0096190918 506.24422 0.050462017 + 1754500 -33.792053 -33.803142 0.011088323 583.56856 0.16347814 + 1754600 -33.79315 -33.796354 0.0032047445 168.66285 -0.11175817 + 1754700 -33.793277 -33.794444 0.0011678415 61.462455 -0.17575378 + 1754800 -33.792554 -33.8027 0.010145147 533.93003 0.15279691 + 1754900 -33.791738 -33.800574 0.0088364723 465.05566 0.13824626 + 1755000 -33.791427 -33.792558 0.0011307624 59.511018 -0.1850356 + 1755100 -33.79253 -33.797053 0.0045223607 238.00781 -0.024077791 + 1755200 -33.794805 -33.803946 0.0091412056 481.0935 0.21772362 + 1755300 -33.796557 -33.79965 0.0030922684 162.74333 -0.0068087324 + 1755400 -33.796013 -33.796547 0.00053378958 28.092869 -0.13665696 + 1755500 -33.791101 -33.800088 0.0089867453 472.96439 0.12489586 + 1755600 -33.787708 -33.802367 0.014658651 771.47173 0.22634475 + 1755700 -33.791752 -33.793362 0.0016100554 84.73578 -0.22167301 + 1755800 -33.79418 -33.796713 0.0025330542 133.31238 -0.14102254 + 1755900 -33.794307 -33.80334 0.0090328272 475.38964 0.10869353 + 1756000 -33.793384 -33.799993 0.0066085101 347.79999 0.023249178 + 1756100 -33.792263 -33.792625 0.00036216272 19.060301 -0.21701326 + 1756200 -33.790935 -33.798141 0.0072063413 379.26332 0.041042149 + 1756300 -33.789498 -33.803471 0.01397255 735.36284 0.32787815 + 1756400 -33.792824 -33.795881 0.0030566695 160.86979 -0.030765733 + 1756500 -33.795098 -33.796315 0.0012177823 64.090796 -0.080134966 + 1756600 -33.795804 -33.802596 0.0067916683 357.43945 0.16291871 + 1756700 -33.792635 -33.801541 0.0089062102 468.7259 0.15615702 + 1756800 -33.786961 -33.787993 0.0010327167 54.350957 -0.30380055 + 1756900 -33.787774 -33.794416 0.0066416406 349.54362 -0.10392014 + 1757000 -33.791692 -33.803398 0.011706069 616.07996 0.1451705 + 1757100 -33.793422 -33.798505 0.0050821898 267.47111 -0.10530057 + 1757200 -33.79363 -33.79384 0.0002100821 11.056433 -0.25820393 + 1757300 -33.792715 -33.801024 0.0083091877 437.30513 0.061440474 + 1757400 -33.788438 -33.801718 0.013279799 698.90395 0.2361007 + 1757500 -33.786122 -33.789406 0.0032844331 172.85679 -0.13723694 + 1757600 -33.790955 -33.794041 0.0030857725 162.40145 -0.020356693 + 1757700 -33.794167 -33.803605 0.0094382013 496.72411 0.29462124 + 1757800 -33.794528 -33.800089 0.0055613773 292.69033 0.15418883 + 1757900 -33.792708 -33.793391 0.00068234055 35.910974 -0.13622719 + 1758000 -33.786514 -33.795797 0.0092833837 488.5762 0.045579497 + 1758100 -33.783594 -33.803467 0.019873628 1045.9313 0.31719888 + 1758200 -33.791114 -33.794257 0.0031426475 165.39473 -0.28676004 + 1758300 -33.792329 -33.794182 0.0018533348 97.539359 -0.32389715 + 1758400 -33.793613 -33.802431 0.0088174561 464.05485 0.010683893 + 1758500 -33.79465 -33.801761 0.0071101823 374.20255 -0.014283562 + 1758600 -33.794539 -33.795057 0.00051825156 27.275117 -0.19236748 + 1758700 -33.792034 -33.796925 0.0048914696 257.43368 0.016822552 + 1758800 -33.78691 -33.803547 0.016636865 875.58338 0.47186847 + 1758900 -33.790504 -33.796051 0.0055462802 291.89578 0.2044813 + 1759000 -33.794869 -33.795452 0.00058281698 30.673138 0.081334503 + 1759100 -33.795058 -33.801543 0.0064851597 341.30817 0.27866476 + 1759200 -33.79318 -33.802695 0.0095152405 500.77862 0.30033124 + 1759300 -33.790566 -33.79253 0.0019641202 103.3699 -0.19311186 + 1759400 -33.787154 -33.791701 0.0045464986 239.27817 -0.31767816 + 1759500 -33.786031 -33.802603 0.016572802 872.21178 0.024714104 + 1759600 -33.793672 -33.799936 0.006264329 329.68605 -0.34423047 + 1759700 -33.795267 -33.795322 5.5481023e-05 2.9199167 -0.51642861 + 1759800 -33.794732 -33.800314 0.0055817795 293.76408 -0.20250255 + 1759900 -33.790319 -33.803 0.012681067 667.39322 0.15451045 + 1760000 -33.785349 -33.790874 0.0055248642 290.76867 0.069916418 + 1760100 -33.789185 -33.791238 0.0020527148 108.03255 0.25372786 + 1760200 -33.793577 -33.802753 0.0091756121 482.90428 0.67197993 + 1760300 -33.793651 -33.80107 0.0074186799 390.43851 0.60264989 + 1760400 -33.792384 -33.793394 0.0010096303 53.135943 0.15772558 + 1760500 -33.790725 -33.796014 0.0052886689 278.33793 0.048960345 + 1760600 -33.789909 -33.803956 0.014046905 739.2761 0.11735941 + 1760700 -33.795013 -33.798574 0.0035613307 187.42966 -0.42390509 + 1760800 -33.796547 -33.797087 0.00054003826 28.421732 -0.59707117 + 1760900 -33.79575 -33.801638 0.0058882715 309.89447 -0.34227287 + 1761000 -33.789543 -33.802298 0.0127546 671.26321 -0.057420746 + 1761100 -33.788357 -33.790499 0.002141648 112.71302 -0.20269507 + 1761200 -33.790248 -33.794017 0.0037690619 198.36237 0.17571296 + 1761300 -33.793316 -33.803284 0.0099680076 524.60735 0.61552259 + 1761400 -33.795143 -33.800541 0.0053984808 284.11723 0.52077287 + 1761500 -33.794861 -33.795056 0.00019477975 10.251085 0.25552013 + 1761600 -33.790307 -33.798012 0.0077052869 405.52238 0.27038224 + 1761700 -33.785823 -33.803223 0.017399891 915.74072 0.26850773 + 1761800 -33.791689 -33.794904 0.0032147651 169.19022 -0.46842726 + 1761900 -33.793751 -33.795184 0.0014323051 75.380938 -0.65519217 + 1762000 -33.793733 -33.802464 0.0087307055 459.48924 -0.36115529 + 1762100 -33.792559 -33.801256 0.0086965196 457.69007 -0.29360095 + 1762200 -33.789638 -33.790482 0.00084389218 44.413293 -0.47077229 + 1762300 -33.783582 -33.79234 0.0087576858 460.90919 0.090980971 + 1762400 -33.788643 -33.803358 0.014715043 774.43959 0.74276369 + 1762500 -33.793677 -33.798123 0.0044460217 233.99016 0.53491287 + 1762600 -33.794138 -33.794487 0.00034940761 18.389011 0.40144251 + 1762700 -33.793205 -33.801512 0.0083071599 437.19842 0.56202629 + 1762800 -33.789743 -33.801684 0.011940127 628.39821 0.39583605 + 1762900 -33.785717 -33.788662 0.002944188 154.94999 -0.38693706 + 1763000 -33.789 -33.793118 0.00411794 216.72351 -0.63325575 + 1763100 -33.794238 -33.803677 0.00943921 496.7772 -0.47524604 + 1763200 -33.794614 -33.799789 0.0051751982 272.36606 -0.58643275 + 1763300 -33.792892 -33.793505 0.00061229114 32.224336 -0.667212 + 1763400 -33.788954 -33.797672 0.008718243 458.83335 -0.091682466 + 1763500 -33.783297 -33.803161 0.019864399 1045.4456 0.73461694 + 1763600 -33.793133 -33.795445 0.0023123122 121.69493 0.54652992 + 1763700 -33.794819 -33.796349 0.0015304656 80.547038 0.64971457 + 1763800 -33.794442 -33.802686 0.0082440701 433.87806 0.85002526 + 1763900 -33.791293 -33.800673 0.0093796582 493.64305 0.56677671 + 1764000 -33.787693 -33.788542 0.00084882726 44.673022 -0.23895529 + 1764100 -33.788111 -33.795335 0.0072242272 380.20463 -0.46813691 + 1764200 -33.795337 -33.803708 0.0083708954 440.55276 -0.55236248 + 1764300 -33.795574 -33.799 0.0034260367 180.30926 -0.75992809 + 1764400 -33.793419 -33.793973 0.00055443696 29.179523 -0.79815681 + 1764500 -33.789227 -33.800417 0.011190828 588.96328 -0.15324148 + 1764600 -33.789101 -33.801993 0.012892027 678.49586 0.39203502 + 1764700 -33.796767 -33.79766 0.00089269324 46.981649 0.32308673 + 1764800 -33.797032 -33.798869 0.0018378269 96.723191 0.46523909 + 1764900 -33.794473 -33.803452 0.0089790113 472.55735 0.71064109 + 1765000 -33.7902 -33.798565 0.0083645931 440.22107 0.42888147 + 1765100 -33.789633 -33.789883 0.00025050992 13.184114 -0.1547186 + 1765200 -33.792008 -33.799073 0.0070649422 371.82161 -0.095201515 + 1765300 -33.796748 -33.803612 0.0068636554 361.22806 -0.1825607 + 1765400 -33.796758 -33.799001 0.0022431887 118.05702 -0.41027548 + 1765500 -33.795281 -33.796028 0.00074690973 39.309193 -0.46731617 + 1765600 -33.791772 -33.802376 0.010603847 558.07101 -0.060770335 + 1765700 -33.789637 -33.800427 0.010789972 567.8666 0.1275453 + 1765800 -33.79167 -33.792699 0.0010296024 54.187055 -0.048445534 + 1765900 -33.797085 -33.799592 0.0025068612 131.93387 0.20428273 + 1766000 -33.797033 -33.803975 0.0069415155 365.32577 0.41993121 + 1766100 -33.794202 -33.798747 0.0045453319 239.21677 0.22305682 + 1766200 -33.791375 -33.792166 0.00079158861 41.660602 -0.1044201 + 1766300 -33.790508 -33.79937 0.0088618854 466.39313 0.080665158 + 1766400 -33.791831 -33.803139 0.011307706 595.1145 0.022226315 + 1766500 -33.793996 -33.795555 0.0015588613 82.04148 -0.40236843 + 1766600 -33.796081 -33.797965 0.0018842236 99.165005 -0.36487538 + 1766700 -33.799328 -33.803468 0.0041399409 217.8814 -0.19835923 + 1766800 -33.797592 -33.802182 0.0045900525 241.57037 -0.11503388 + 1766900 -33.794395 -33.794852 0.00045713268 24.058485 -0.14053804 + 1767000 -33.792118 -33.797438 0.0053201346 279.99394 0.22872597 + 1767100 -33.790391 -33.803573 0.013182084 693.76133 0.76648765 + 1767200 -33.79239 -33.796902 0.0045118927 237.45689 0.58956007 + 1767300 -33.79649 -33.797012 0.00052209417 27.47735 0.47135592 + 1767400 -33.797359 -33.802292 0.0049333539 259.63802 0.56518518 + 1767500 -33.795126 -33.802833 0.0077070874 405.61714 0.38877689 + 1767600 -33.793074 -33.794777 0.0017027957 89.616618 -0.27809843 + 1767700 -33.792381 -33.795508 0.0031267266 164.55683 -0.60818858 + 1767800 -33.792046 -33.803066 0.011020114 579.97877 -0.60295681 + 1767900 -33.792995 -33.799704 0.0067093818 353.10878 -0.89403847 + 1768000 -33.79559 -33.795699 0.00010919437 5.7468025 -1.0070963 + 1768100 -33.797246 -33.801081 0.0038348309 201.82373 -0.64156228 + 1768200 -33.796172 -33.803549 0.0073772948 388.26045 -0.19741785 + 1768300 -33.790139 -33.795195 0.0050560418 266.09497 0.19498201 + 1768400 -33.789682 -33.791306 0.0016248839 85.516192 0.75846821 + 1768500 -33.791567 -33.801803 0.010235174 538.66808 1.6127712 + 1768600 -33.794245 -33.801357 0.0071121359 374.30537 1.685501 + 1768700 -33.795021 -33.795998 0.00097700915 51.41912 1.2085857 + 1768800 -33.795917 -33.798765 0.0028480018 149.88779 0.87343259 + 1768900 -33.795606 -33.803937 0.0083311453 438.46075 0.5056914 + 1769000 -33.792635 -33.798461 0.0058262072 306.62809 -0.42351614 + 1769100 -33.789435 -33.791089 0.0016534737 87.020845 -1.5294577 + 1769200 -33.789582 -33.798412 0.0088308059 464.75744 -1.9432512 + 1769300 -33.794927 -33.802623 0.0076956877 405.01718 -2.1308241 + 1769400 -33.79621 -33.797788 0.0015778752 83.042164 -2.0464775 + 1769500 -33.794853 -33.797263 0.0024094327 126.8063 -1.3332626 + 1769600 -33.792765 -33.802876 0.010110988 532.13227 0.047877399 + 1769700 -33.792783 -33.801108 0.0083249204 438.13314 1.2575631 + 1769800 -33.794094 -33.794894 0.00079951305 42.077659 1.9088172 + 1769900 -33.797437 -33.799966 0.002529371 133.11854 2.389794 + 1770000 -33.798168 -33.80295 0.0047816838 251.65575 2.3087646 + 1770100 -33.794769 -33.799383 0.0046137765 242.81894 1.4125272 + 1770200 -33.791937 -33.795302 0.0033652593 177.11059 -0.20722862 + 1770300 -33.792921 -33.801028 0.0081073791 426.68413 -1.5512295 + 1770400 -33.795167 -33.802012 0.0068448783 360.23984 -2.599416 + 1770500 -33.795813 -33.796897 0.0010834702 57.022073 -3.1292777 + 1770600 -33.793398 -33.795775 0.0023772805 125.11415 -2.7609387 + 1770700 -33.788037 -33.802427 0.014390076 757.33688 -1.2168136 + 1770800 -33.791901 -33.800692 0.0087908804 462.65619 0.24278114 + 1770900 -33.795624 -33.796416 0.00079271361 41.71981 1.0781934 + 1771000 -33.795617 -33.799828 0.0042115734 221.65135 1.8384382 + 1771100 -33.793314 -33.802737 0.0094231075 495.92974 2.3427135 + 1771200 -33.790246 -33.795103 0.0048571397 255.62693 1.9618955 + 1771300 -33.790308 -33.791621 0.0013125785 69.079838 1.2342776 + 1771400 -33.791313 -33.801726 0.010413433 548.04969 0.80959726 + 1771500 -33.79423 -33.802099 0.0078694141 414.16024 -0.062283206 + 1771600 -33.795849 -33.797055 0.0012065745 63.50094 -0.93179289 + 1771700 -33.79647 -33.798723 0.0022528517 118.56558 -1.2254376 + 1771800 -33.794939 -33.803646 0.0087063886 458.20947 -1.1439409 + 1771900 -33.79006 -33.797307 0.0072465911 381.38163 -1.1268978 + 1772000 -33.788456 -33.789617 0.0011609928 61.102016 -0.90687261 + 1772100 -33.791374 -33.799023 0.0076489043 402.55501 -0.062488908 + 1772200 -33.795207 -33.803442 0.0082350448 433.40306 0.43628216 + 1772300 -33.795271 -33.797267 0.0019960449 105.05006 0.49256015 + 1772400 -33.794052 -33.795929 0.0018769261 98.780947 0.60609403 + 1772500 -33.791986 -33.802457 0.010471397 551.1003 0.95936603 + 1772600 -33.790155 -33.800174 0.010018628 527.27144 0.78424628 + 1772700 -33.791048 -33.791638 0.00058953077 31.026479 0.12460563 + 1772800 -33.793982 -33.798432 0.0044508323 234.24333 0.061742652 + 1772900 -33.795758 -33.803531 0.0077727884 409.07492 0.013803513 + 1773000 -33.794697 -33.798656 0.003959481 208.38395 -0.36749808 + 1773100 -33.789564 -33.791125 0.0015605785 82.131857 -0.6840629 + 1773200 -33.786938 -33.799751 0.012812988 674.33615 -0.38259585 + 1773300 -33.791267 -33.802043 0.010776056 567.13421 -0.39673181 + 1773400 -33.792643 -33.793941 0.0012981531 68.320639 -0.57237539 + 1773500 -33.792597 -33.795779 0.0031810975 167.41832 -0.30823344 + 1773600 -33.792241 -33.803018 0.010777466 567.20842 0.23369444 + 1773700 -33.793377 -33.799818 0.0064412269 338.99603 0.36354111 + 1773800 -33.79572 -33.796175 0.0004547973 23.935576 0.29621386 + 1773900 -33.796761 -33.801143 0.0043825766 230.6511 0.50272627 + 1774000 -33.794939 -33.803296 0.0083576714 439.85679 0.59886998 + 1774100 -33.789097 -33.793784 0.0046864895 246.64576 0.098609852 + 1774200 -33.788881 -33.790531 0.0016499418 86.834967 -0.32476724 + 1774300 -33.791037 -33.801875 0.010838861 570.43961 -0.14927773 + 1774400 -33.793676 -33.801081 0.0074046885 389.70215 -0.40809981 + 1774500 -33.793953 -33.795149 0.0011959536 62.94197 -0.65367719 + 1774600 -33.793603 -33.797816 0.0042133051 221.74249 -0.42566364 + 1774700 -33.792998 -33.803943 0.010944963 576.02366 -0.03424683 + 1774800 -33.793039 -33.797905 0.0048651183 256.04683 0.006302646 + 1774900 -33.792489 -33.793353 0.00086355767 45.44827 0.062920478 + 1775000 -33.791172 -33.79972 0.0085477705 449.86154 0.52615919 + 1775100 -33.789367 -33.802185 0.012817964 674.59799 0.82630752 + 1775200 -33.791816 -33.793546 0.0017295944 91.027012 0.42738456 + 1775300 -33.794918 -33.797448 0.0025299491 133.14896 0.40344442 + 1775400 -33.79623 -33.803424 0.007193824 378.60454 0.48486819 + 1775500 -33.793995 -33.800581 0.0065859495 346.61265 0.15676853 + 1775600 -33.785884 -33.787144 0.0012592432 66.272846 -0.62306201 + 1775700 -33.78726 -33.796325 0.0090650961 477.08792 -0.71398784 + 1775800 -33.791873 -33.802721 0.010848319 570.93735 -0.7993269 + 1775900 -33.793752 -33.796654 0.0029023082 152.74589 -1.0625555 + 1776000 -33.793746 -33.795303 0.0015564726 81.915763 -0.88245175 + 1776100 -33.792433 -33.80228 0.009846498 518.21241 -0.22658184 + 1776200 -33.790347 -33.801374 0.011026676 580.32414 0.30008872 + 1776300 -33.79244 -33.793734 0.0012933903 68.069977 0.44798058 + 1776400 -33.79486 -33.798133 0.0032738393 172.29924 0.81763892 + 1776500 -33.795629 -33.803 0.0073709927 387.92877 1.050543 + 1776600 -33.791213 -33.79763 0.0064176397 337.75465 0.76294434 + 1776700 -33.786638 -33.78852 0.0018819333 99.044472 0.0070874552 + 1776800 -33.789833 -33.799915 0.010082865 530.65221 -0.13375032 + 1776900 -33.793676 -33.802749 0.009073275 477.51837 -0.44459047 + 1777000 -33.794203 -33.796206 0.0020038568 105.4612 -0.9224823 + 1777100 -33.793203 -33.794968 0.0017647751 92.878539 -0.93467364 + 1777200 -33.786233 -33.802796 0.016562721 871.68122 -0.30778965 + 1777300 -33.783932 -33.796647 0.012714192 669.13656 -0.083225049 + 1777400 -33.790197 -33.791347 0.0011500099 60.523995 -0.046746498 + 1777500 -33.792362 -33.798376 0.0060137648 316.49907 0.4236738 + 1777600 -33.794034 -33.803739 0.0097049404 510.76236 0.70494247 + 1777700 -33.794912 -33.797523 0.0026109442 137.41167 0.46445588 + 1777800 -33.79357 -33.794859 0.0012889393 67.835728 0.24892717 + 1777900 -33.788046 -33.800959 0.012912874 679.59303 0.35573151 + 1778000 -33.78751 -33.800892 0.013381764 704.27028 0.013277154 + 1778100 -33.793633 -33.794239 0.00060625217 31.906511 -0.65415625 + 1778200 -33.794397 -33.798031 0.0036339693 191.25256 -0.60500522 + 1778300 -33.793395 -33.803499 0.010103646 531.74589 -0.3178142 + 1778400 -33.791074 -33.797436 0.006362643 334.86023 -0.39096462 + 1778500 -33.787729 -33.788328 0.00059810925 31.477956 -0.38050267 + 1778600 -33.785701 -33.79848 0.012778598 672.52623 0.42054057 + 1778700 -33.793372 -33.802949 0.0095768916 504.02326 0.6354766 + 1778800 -33.795214 -33.796713 0.0014983054 78.854478 0.43953362 + 1778900 -33.794604 -33.796665 0.0020607394 108.45487 0.39453698 + 1779000 -33.790567 -33.803159 0.012592097 662.71085 0.54202957 + 1779100 -33.784669 -33.796874 0.012204628 642.31866 0.12176607 + 1779200 -33.79023 -33.790583 0.0003536088 18.610116 -0.61079609 + 1779300 -33.794271 -33.799597 0.0053253703 280.26949 -0.48973759 + 1779400 -33.793887 -33.803476 0.0095895204 504.68791 -0.30942369 + 1779500 -33.791974 -33.795928 0.0039540048 208.09574 -0.50051298 + 1779600 -33.789699 -33.791088 0.0013895887 73.132812 -0.41930974 + 1779700 -33.788981 -33.801672 0.012691116 667.92209 0.32261213 + 1779800 -33.795151 -33.801995 0.0068434324 360.16374 0.38082804 + 1779900 -33.796273 -33.797023 0.00075033571 39.489499 0.25381461 + 1780000 -33.795128 -33.79811 0.0029814584 156.9115 0.3422301 + 1780100 -33.790579 -33.80394 0.01336078 703.16592 0.55093926 + 1780200 -33.78923 -33.796024 0.0067938499 357.55426 0.12493336 + 1780300 -33.790426 -33.79145 0.0010237089 53.876886 -0.28987304 + 1780400 -33.791835 -33.799894 0.0080580629 424.08866 -0.15669995 + 1780500 -33.793934 -33.803157 0.0092230005 485.39829 -0.13974206 + 1780600 -33.795386 -33.79669 0.0013040915 68.633173 -0.44190839 + 1780700 -33.795288 -33.797361 0.0020727892 109.08905 -0.37564425 + 1780800 -33.79225 -33.802946 0.010696289 562.93616 0.073295335 + 1780900 -33.787506 -33.798668 0.011162756 587.48589 0.19118267 + 1781000 -33.789979 -33.790247 0.00026751672 14.079167 0.027011178 + 1781100 -33.794211 -33.799374 0.0051639378 271.77344 0.41450794 + 1781200 -33.794846 -33.803407 0.0085605706 450.53519 0.556714 + 1781300 -33.793533 -33.797232 0.0036985575 194.65178 0.25148918 + 1781400 -33.791702 -33.792962 0.0012596984 66.296801 -0.0300556 + 1781500 -33.789319 -33.801538 0.012218792 643.06411 0.10932242 + 1781600 -33.791095 -33.801454 0.01035913 545.19176 -0.14380774 + 1781700 -33.795103 -33.79585 0.00074774311 39.353053 -0.55605015 + 1781800 -33.795979 -33.798621 0.0026416974 139.03018 -0.48794465 + 1781900 -33.794016 -33.803594 0.0095783462 504.09981 -0.15243272 + 1782000 -33.787582 -33.79622 0.0086378885 454.60437 -0.085851372 + 1782100 -33.788224 -33.78922 0.00099631052 52.434934 -0.10010276 + 1782200 -33.790866 -33.799681 0.0088153018 463.94147 0.49153308 + 1782300 -33.792782 -33.802727 0.0099453484 523.41482 0.68370634 + 1782400 -33.793628 -33.795714 0.0020863426 109.80235 0.35995207 + 1782500 -33.793546 -33.795461 0.0019155371 100.81301 0.26086705 + 1782600 -33.792386 -33.803117 0.010731779 564.80393 0.39384507 + 1782700 -33.791351 -33.799759 0.0084082222 442.51724 0.021387089 + 1782800 -33.791948 -33.792909 0.00096109467 50.581555 -0.491326 + 1782900 -33.794122 -33.798798 0.0046753238 246.05812 -0.4596441 + 1783000 -33.79629 -33.803761 0.0074713622 393.21113 -0.35571292 + 1783100 -33.796407 -33.799023 0.0026157216 137.66309 -0.45354336 + 1783200 -33.791583 -33.792896 0.0013132166 69.113421 -0.42239469 + 1783300 -33.787822 -33.800171 0.012348807 649.9067 0.30419568 + 1783400 -33.791414 -33.802279 0.010864874 571.80862 0.64763433 + 1783500 -33.794618 -33.7954 0.00078138918 41.123815 0.44028034 + 1783600 -33.794599 -33.797575 0.0029764497 156.64789 0.53302017 + 1783700 -33.793433 -33.803234 0.0098005375 515.79355 0.69229507 + 1783800 -33.792505 -33.799071 0.0065664361 345.58567 0.26872041 + 1783900 -33.79242 -33.792803 0.0003821836 20.113982 -0.25750128 + 1784000 -33.792399 -33.799872 0.0074725447 393.27336 -0.25232072 + 1784100 -33.792834 -33.803084 0.010250124 539.45486 -0.36227693 + 1784200 -33.793028 -33.795784 0.0027557188 145.03102 -0.71870363 + 1784300 -33.792785 -33.794403 0.0016180269 85.155311 -0.71978502 + 1784400 -33.792062 -33.802597 0.010535032 554.44934 -0.23689882 + 1784500 -33.792286 -33.800615 0.0083293329 438.36536 -0.029352164 + 1784600 -33.794517 -33.795117 0.00060019344 31.587645 -0.053942987 + 1784700 -33.796589 -33.799885 0.0032965585 173.49493 0.25340029 + 1784800 -33.796562 -33.80381 0.0072475955 381.43449 0.52520038 + 1784900 -33.791114 -33.796656 0.0055420272 291.67195 0.36018747 + 1785000 -33.788788 -33.789603 0.0008148709 42.885929 0.059899374 + 1785100 -33.790082 -33.80035 0.010267745 540.38228 0.36258103 + 1785200 -33.793335 -33.802385 0.0090492783 476.25544 0.20725855 + 1785300 -33.794543 -33.796044 0.0015005027 78.970116 -0.19342339 + 1785400 -33.794196 -33.796703 0.002506615 131.92091 -0.23878018 + 1785500 -33.786503 -33.803475 0.016971448 893.1922 0.067814497 + 1785600 -33.785747 -33.796041 0.010293966 541.76223 -0.24476043 + 1785700 -33.791927 -33.792705 0.00077789352 40.939842 -0.5220166 + 1785800 -33.794064 -33.799483 0.0054186507 285.17875 -0.25153048 + 1785900 -33.794055 -33.803445 0.0093900588 494.19042 0.025404937 + 1786000 -33.79202 -33.795281 0.0032612555 171.63697 -0.09532198 + 1786100 -33.786417 -33.790169 0.0037514147 197.43361 -0.00650983 + 1786200 -33.787314 -33.801055 0.013740608 723.15595 0.65798955 + 1786300 -33.794152 -33.801422 0.0072697881 382.60246 0.57880957 + 1786400 -33.794428 -33.794714 0.000286416 15.073818 0.25867311 + 1786500 -33.792829 -33.797757 0.0049275311 259.33157 0.29418338 + 1786600 -33.788832 -33.803176 0.014343933 754.90839 0.34932287 + 1786700 -33.787778 -33.795187 0.0074085661 389.90623 -0.27074558 + 1786800 -33.794252 -33.794941 0.00068917651 36.270745 -0.59476459 + 1786900 -33.795875 -33.801868 0.005992778 315.39456 -0.42171988 + 1787000 -33.794421 -33.802441 0.0080200849 422.08992 -0.31617101 + 1787100 -33.790018 -33.792457 0.0024386178 128.34228 -0.41698723 + 1787200 -33.787939 -33.792124 0.0041851542 220.26093 -0.097880714 + 1787300 -33.789966 -33.803197 0.013231467 696.3603 0.57131856 + 1787400 -33.792128 -33.799178 0.0070500006 371.03524 0.56700336 + 1787500 -33.793289 -33.793674 0.00038510371 20.267665 0.3474079 + 1787600 -33.794139 -33.799829 0.0056901529 299.46767 0.51870677 + 1787700 -33.79516 -33.80342 0.0082596318 434.69705 0.50819938 + 1787800 -33.795603 -33.798141 0.002538127 133.57936 0.051451169 + 1787900 -33.793949 -33.795085 0.0011359321 59.783095 -0.26025259 + 1788000 -33.789039 -33.802004 0.012964832 682.32754 -0.17585676 + 1788100 -33.788848 -33.800077 0.011229557 591.00156 -0.55980751 + 1788200 -33.794575 -33.795388 0.00081347228 42.81232 -0.95581136 + 1788300 -33.795971 -33.798836 0.002865026 150.78376 -0.76703131 + 1788400 -33.79445 -33.803838 0.009388845 494.12654 -0.33658806 + 1788500 -33.791744 -33.797328 0.0055833743 293.84801 -0.09020893 + 1788600 -33.789613 -33.791203 0.001590512 83.707226 0.20060211 + 1788700 -33.791141 -33.799529 0.0083875146 441.42741 0.93359375 + 1788800 -33.796566 -33.803269 0.0067032043 352.78367 1.1348883 + 1788900 -33.796449 -33.797678 0.0012295563 64.71045 0.81220458 + 1789000 -33.793384 -33.795916 0.002531987 133.25622 0.46676273 + 1789100 -33.789595 -33.802429 0.012834109 675.4477 0.23773393 + 1789200 -33.790934 -33.799958 0.0090245159 474.95222 -0.57698766 + 1789300 -33.792703 -33.792982 0.00027903417 14.68532 -1.3038612 + 1789400 -33.793025 -33.798716 0.0056904378 299.48266 -1.2334679 + 1789500 -33.792782 -33.803148 0.010366435 545.57622 -0.97115326 + 1789600 -33.792297 -33.796568 0.0042709239 224.77491 -0.85918582 + 1789700 -33.791185 -33.79251 0.0013247797 69.721973 -0.44012035 + 1789800 -33.790086 -33.801481 0.011394617 599.68853 0.54512397 + 1789900 -33.793163 -33.801839 0.0086765897 456.64117 1.0346205 + 1790000 -33.795366 -33.796238 0.00087154282 45.868521 0.98754701 + 1790100 -33.795651 -33.798359 0.002708479 142.54483 1.0258096 + 1790200 -33.792233 -33.803546 0.011312636 595.37393 1.0483302 + 1790300 -33.78661 -33.795768 0.0091586688 482.01257 0.21118727 + 1790400 -33.789274 -33.790162 0.0008875908 46.713112 -0.81366644 + 1790500 -33.792013 -33.799929 0.007915605 416.59123 -0.92654265 + 1790600 -33.79296 -33.802742 0.0097825289 514.84577 -1.0372227 + 1790700 -33.79308 -33.795489 0.0024093096 126.79982 -1.2772187 + 1790800 -33.79254 -33.794646 0.0021054001 110.80533 -0.96610387 + 1790900 -33.791049 -33.802994 0.011944395 628.62284 -0.11975774 + 1791000 -33.792036 -33.799971 0.0079346353 417.59278 0.3239904 + 1791100 -33.794328 -33.79505 0.00072254447 38.026871 0.53833104 + 1791200 -33.795917 -33.799579 0.0036620679 192.73137 0.89612178 + 1791300 -33.795677 -33.803814 0.0081374321 428.26579 1.075334 + 1791400 -33.790378 -33.795263 0.0048843654 257.0598 0.65445323 + 1791500 -33.787404 -33.789634 0.0022298336 117.35415 -0.047847739 + 1791600 -33.790346 -33.800544 0.010198238 536.72417 -0.18077391 + 1791700 -33.79384 -33.802496 0.0086563452 455.57573 -0.509891 + 1791800 -33.794227 -33.795033 0.00080640571 42.440413 -0.97682767 + 1791900 -33.793251 -33.796852 0.0036005741 189.495 -0.86283039 + 1792000 -33.791766 -33.803106 0.011340442 596.83733 -0.37232009 + 1792100 -33.790087 -33.798131 0.0080439216 423.34442 -0.23437806 + 1792200 -33.789889 -33.790221 0.00033188124 17.466614 -0.089241167 + 1792300 -33.792311 -33.799846 0.0075354771 396.58544 0.56435402 + 1792400 -33.795355 -33.803157 0.0078019027 410.60718 0.78460959 + 1792500 -33.795585 -33.797776 0.0021917288 115.34873 0.58902307 + 1792600 -33.792638 -33.794219 0.0015811063 83.212214 0.35611914 + 1792700 -33.785987 -33.802159 0.01617203 851.1195 0.42232182 + 1792800 -33.789922 -33.799783 0.0098607489 518.96242 -0.14114242 + 1792900 -33.792593 -33.79328 0.00068630122 36.119421 -0.75796578 + 1793000 -33.793249 -33.798091 0.0048417886 254.81902 -0.70201742 + 1793100 -33.792977 -33.803555 0.010577529 556.68593 -0.4340883 + 1793200 -33.791847 -33.796653 0.0048060746 252.93942 -0.55197339 + 1793300 -33.789068 -33.790365 0.0012969813 68.258968 -0.42817829 + 1793400 -33.788681 -33.800586 0.01190509 626.55427 0.37937471 + 1793500 -33.794082 -33.802299 0.0082173678 432.47274 0.56684349 + 1793600 -33.795623 -33.79675 0.0011266093 59.29244 0.43544404 + 1793700 -33.794887 -33.797374 0.0024869676 130.88689 0.46553179 + 1793800 -33.788876 -33.803622 0.014746619 776.10138 0.6550382 + 1793900 -33.784023 -33.794602 0.0105786 556.7423 0.10704926 + 1794000 -33.788116 -33.789469 0.0013530245 71.208472 -0.56128094 + 1794100 -33.79156 -33.798973 0.007413164 390.14821 -0.46622062 + 1794200 -33.794262 -33.803431 0.0091687402 482.54262 -0.38218138 + 1794300 -33.795218 -33.796989 0.0017715846 93.236917 -0.60934683 + 1794400 -33.793687 -33.795843 0.0021556874 113.45191 -0.46460705 + 1794500 -33.786932 -33.801555 0.014623309 769.61173 0.29935319 + 1794600 -33.787888 -33.799822 0.011934379 628.0957 0.57233719 + 1794700 -33.792868 -33.793086 0.00021828393 11.488089 0.47084252 + 1794800 -33.793375 -33.798529 0.0051535035 271.22429 0.74707898 + 1794900 -33.792912 -33.803192 0.010280567 541.05709 0.83108381 + 1795000 -33.791589 -33.796805 0.0052152574 274.47435 0.38060053 + 1795100 -33.789614 -33.790667 0.0010532014 55.429052 -0.15528667 + 1795200 -33.789032 -33.800915 0.011883207 625.40259 -0.17555376 + 1795300 -33.794383 -33.802249 0.0078659826 413.97965 -0.45570617 + 1795400 -33.795879 -33.797009 0.0011298617 59.463614 -0.77592446 + 1795500 -33.795051 -33.797486 0.0024344994 128.12553 -0.67945092 + 1795600 -33.788178 -33.8035 0.015322271 806.39748 -0.010260819 + 1795700 -33.786563 -33.79609 0.0095265727 501.37502 0.19618014 + 1795800 -33.790257 -33.791098 0.00084156203 44.290659 0.28051576 + 1795900 -33.792982 -33.799782 0.006800705 357.91504 0.78560809 + 1796000 -33.794422 -33.80321 0.0087878608 462.49727 0.9011658 + 1796100 -33.794186 -33.796584 0.0023987182 126.2424 0.50123189 + 1796200 -33.790371 -33.792501 0.0021299345 112.09655 0.14135226 + 1796300 -33.785209 -33.801993 0.016783362 883.29338 0.10060904 + 1796400 -33.791605 -33.800217 0.0086124253 453.26426 -0.5423149 + 1796500 -33.794009 -33.794738 0.0007288496 38.358704 -0.9859123 + 1796600 -33.793956 -33.798339 0.0043824302 230.64339 -0.84617533 + 1796700 -33.792187 -33.80376 0.011572666 609.05909 -0.41387364 + 1796800 -33.788457 -33.794258 0.0058009268 305.2976 -0.31958658 + 1796900 -33.783892 -33.786552 0.0026593394 139.95866 -0.010387879 + 1797000 -33.789649 -33.800252 0.010603373 558.04604 0.90474797 + 1797100 -33.793984 -33.802499 0.0085150551 448.13976 1.0686759 + 1797200 -33.79434 -33.795144 0.00080461794 42.346324 0.71351305 + 1797300 -33.792848 -33.796704 0.0038557521 202.92479 0.57318197 + 1797400 -33.787751 -33.802833 0.01508278 793.79325 0.5000526 + 1797500 -33.785413 -33.795891 0.010478197 551.45818 -0.41803299 + 1797600 -33.793413 -33.793569 0.00015591917 8.205887 -1.0819178 + 1797700 -33.794679 -33.800768 0.0060889385 320.4554 -0.95057694 + 1797800 -33.793702 -33.802847 0.0091452827 481.30807 -0.76350724 + 1797900 -33.790479 -33.794195 0.0037157086 195.55443 -0.6851355 + 1798000 -33.787164 -33.789989 0.0028256321 148.7105 -0.21387647 + 1798100 -33.789424 -33.802366 0.012941587 681.10416 0.79457085 + 1798200 -33.795648 -33.801307 0.0056582987 297.79122 0.92761908 + 1798300 -33.795413 -33.795986 0.00057347288 30.181366 0.74301 + 1798400 -33.793049 -33.797896 0.0048469594 255.09115 0.71606229 + 1798500 -33.787769 -33.803637 0.015868141 835.1261 0.68160699 + 1798600 -33.790049 -33.795115 0.0050651322 266.57339 -0.26226068 + 1798700 -33.796416 -33.797029 0.00061330816 32.277861 -0.62897373 + 1798800 -33.796266 -33.802057 0.0057903276 304.73978 -0.52502931 + 1798900 -33.792979 -33.802303 0.0093244016 490.73494 -0.47701831 + 1799000 -33.789599 -33.791811 0.0022125 116.4419 -0.64550185 + 1799100 -33.7894 -33.79341 0.004010804 211.08504 -0.2870805 + 1799200 -33.793942 -33.803491 0.0095498145 502.59822 0.23479224 + 1799300 -33.796854 -33.800971 0.0041171912 216.6841 0.25226804 + 1799400 -33.795824 -33.796255 0.00043137414 22.702836 0.17240631 + 1799500 -33.793461 -33.79924 0.0057792135 304.15485 0.3667605 + 1799600 -33.789758 -33.803534 0.013776331 725.03604 0.61081958 + 1799700 -33.790572 -33.793857 0.0032847298 172.8724 0.099862455 + 1799800 -33.795441 -33.797041 0.001599522 84.181414 -0.017546264 + 1799900 -33.797396 -33.802843 0.0054473891 286.69123 0.11704481 + 1800000 -33.795176 -33.802123 0.0069472678 365.62851 0.017811806 + 1800100 -33.791985 -33.792612 0.00062776483 33.038703 -0.39032809 + 1800200 -33.79034 -33.795981 0.0056411298 296.88763 -0.30058466 + 1800300 -33.791219 -33.803259 0.012040696 633.69107 -0.081841662 + 1800400 -33.793089 -33.798442 0.0053535511 281.75262 -0.28870563 + 1800500 -33.793627 -33.793822 0.00019544972 10.286345 -0.37930762 + 1800600 -33.793106 -33.801043 0.0079374772 417.74235 0.010058756 + 1800700 -33.792435 -33.802439 0.010003701 526.48584 0.25006834 + 1800800 -33.791842 -33.794299 0.002457833 129.35356 0.073681322 + 1800900 -33.791931 -33.794463 0.0025318009 133.24642 0.16103245 + 1801000 -33.793841 -33.803351 0.0095100034 500.503 0.51171934 + 1801100 -33.796382 -33.80114 0.0047582159 250.42066 0.33950995 + 1801200 -33.796243 -33.796686 0.00044326812 23.328806 0.052944169 + 1801300 -33.792169 -33.798025 0.0058552483 308.15649 0.05914043 + 1801400 -33.787299 -33.803518 0.016218352 853.55741 0.11350796 + 1801500 -33.791086 -33.795088 0.0040017825 210.61024 -0.53669431 + 1801600 -33.79338 -33.79458 0.0012008757 63.201017 -0.67363666 + 1801700 -33.793828 -33.802139 0.0083105093 437.37469 -0.35692172 + 1801800 -33.793287 -33.801775 0.0084884043 446.73715 -0.23763717 + 1801900 -33.7927 -33.793869 0.0011691542 61.531542 -0.29969402 + 1802000 -33.792331 -33.796362 0.0040310007 212.14797 0.05295051 + 1802100 -33.792131 -33.803739 0.011608194 610.92891 0.56829107 + 1802200 -33.792649 -33.798067 0.0054186005 285.17611 0.51883166 + 1802300 -33.792709 -33.793432 0.00072244071 38.02141 0.35005971 + 1802400 -33.793145 -33.800148 0.0070026068 368.54095 0.54787278 + 1802500 -33.795624 -33.803483 0.0078587947 413.60136 0.49574496 + 1802600 -33.797309 -33.798543 0.0012336519 64.925999 0.073752226 + 1802700 -33.796284 -33.797912 0.0016273025 85.643481 -0.12331906 + 1802800 -33.790627 -33.802318 0.01169063 615.26744 -0.072719729 + 1802900 -33.789266 -33.799827 0.010561106 555.82158 -0.50399847 + 1803000 -33.791856 -33.791984 0.00012882079 6.7797235 -1.0025432 + 1803100 -33.793539 -33.798826 0.0052864325 278.22023 -0.76070598 + 1803200 -33.794313 -33.803417 0.0091035076 479.10949 -0.45168097 + 1803300 -33.792201 -33.797212 0.0050105977 263.70329 -0.34239871 + 1803400 -33.784336 -33.785719 0.0013830908 72.790834 -0.072728029 + 1803500 -33.786284 -33.800584 0.01430042 752.61833 1.0373298 + 1803600 -33.793304 -33.801655 0.0083508825 439.4995 1.2593203 + 1803700 -33.794605 -33.795757 0.0011526783 60.66443 0.95838532 + 1803800 -33.794343 -33.797327 0.0029831213 156.99901 0.79055231 + 1803900 -33.790296 -33.8038 0.013504206 710.71433 0.69091648 + 1804000 -33.785138 -33.794626 0.0094874617 499.31665 -0.36273586 + 1804100 -33.790159 -33.791296 0.0011375789 59.869761 -1.3136848 + 1804200 -33.793821 -33.800199 0.0063774618 335.64012 -1.2775513 + 1804300 -33.793523 -33.802961 0.0094380363 496.71543 -1.1543953 + 1804400 -33.792106 -33.7947 0.0025940262 136.52129 -1.1004049 + 1804500 -33.789714 -33.792857 0.003142743 165.39976 -0.50035797 + 1804600 -33.788509 -33.802458 0.013948783 734.11202 0.64789461 + 1804700 -33.794597 -33.800966 0.0063695919 335.22594 1.0261024 + 1804800 -33.796051 -33.796446 0.00039420841 20.746837 1.0068132 + 1804900 -33.795095 -33.799233 0.0041376929 217.76308 1.0624426 + 1805000 -33.789329 -33.803536 0.014206937 747.69843 1.0287798 + 1805100 -33.787408 -33.793352 0.0059441474 312.83517 -0.0067752997 + 1805200 -33.789637 -33.791548 0.0019110571 100.57723 -0.79962055 + 1805300 -33.791755 -33.801014 0.0092586009 487.27191 -0.86331657 + 1805400 -33.794144 -33.802308 0.0081643144 429.68058 -1.0435959 + 1805500 -33.795209 -33.79594 0.00073079949 38.461325 -1.2263952 + 1805600 -33.794493 -33.797839 0.003345217 176.05579 -0.80951346 + 1805700 -33.789559 -33.803051 0.013492459 710.09609 0.084003245 + 1805800 -33.787523 -33.796999 0.0094754194 498.68287 0.69080731 + 1805900 -33.7926 -33.792822 0.00022181629 11.673994 1.0502013 + 1806000 -33.794586 -33.800649 0.0060634999 319.11659 1.4804003 + 1806100 -33.794011 -33.802723 0.0087123065 458.52092 1.4597309 + 1806200 -33.792189 -33.795538 0.003349046 176.2573 0.78929875 + 1806300 -33.790368 -33.792741 0.0023732693 124.90305 0.0088175776 + 1806400 -33.787784 -33.802622 0.0148375 780.88437 -0.38568139 + 1806500 -33.792907 -33.800264 0.0073572095 387.20337 -1.1937126 + 1806600 -33.795365 -33.796019 0.00065444694 34.442959 -1.6594255 + 1806700 -33.79547 -33.799056 0.0035863122 188.74441 -1.3978643 + 1806800 -33.791202 -33.803743 0.012541458 660.04573 -0.64322877 + 1806900 -33.786141 -33.793367 0.0072266916 380.33433 -0.011669689 + 1807000 -33.78937 -33.791413 0.002042869 107.51437 0.83586021 + 1807100 -33.791612 -33.800645 0.0090328758 475.3922 1.748052 + 1807200 -33.792725 -33.801888 0.009162798 482.22989 1.9336105 + 1807300 -33.793491 -33.794688 0.0011970104 62.99759 1.4778609 + 1807400 -33.793707 -33.797077 0.0033695514 177.33648 1.061177 + 1807500 -33.794618 -33.803488 0.0088704058 466.84155 0.6118602 + 1807600 -33.795519 -33.800504 0.0049844445 262.32687 -0.17831572 + 1807700 -33.794616 -33.795299 0.00068356755 35.97555 -0.99882403 + 1807800 -33.790796 -33.798484 0.0076877169 404.59768 -1.3705213 + 1807900 -33.786785 -33.802512 0.01572672 827.68324 -1.5397222 + 1808000 -33.79158 -33.794223 0.0026434819 139.1241 -2.0803581 + 1808100 -33.795114 -33.796696 0.0015820949 83.264244 -1.7973553 + 1808200 -33.794774 -33.802452 0.0076783193 404.1031 -0.96538385 + 1808300 -33.792681 -33.801554 0.0088734776 467.00321 -0.1203959 + 1808400 -33.791046 -33.79264 0.0015944018 83.911946 0.65691576 + 1808500 -33.790636 -33.796589 0.0059527605 313.28848 1.8101873 + 1808600 -33.794415 -33.802622 0.0082068389 431.91861 2.4348613 + 1808700 -33.796131 -33.799584 0.0034525818 181.7063 2.2201558 + 1808800 -33.794895 -33.795626 0.00073008599 38.423774 1.5531276 + 1808900 -33.787777 -33.800369 0.012592204 662.71644 0.61062876 + 1809000 -33.789229 -33.801955 0.012726104 669.7635 -0.96613114 + 1809100 -33.792394 -33.79515 0.0027560412 145.04799 -2.4225692 + 1809200 -33.793109 -33.794993 0.0018835278 99.128386 -2.9331663 + 1809300 -33.791983 -33.802303 0.010319558 543.10912 -2.4915597 + 1809400 -33.788241 -33.797814 0.0095739397 503.8679 -1.8395552 + 1809500 -33.786084 -33.789431 0.0033469531 176.14716 -0.76131009 + 1809600 -33.793398 -33.799064 0.005665848 298.18853 0.70760455 + 1809700 -33.79531 -33.803545 0.0082351295 433.40752 1.5021804 + 1809800 -33.794306 -33.797239 0.0029332869 154.37628 1.6370717 + 1809900 -33.790617 -33.792237 0.0016202577 85.272715 1.5738177 + 1810000 -33.786754 -33.800217 0.013462519 708.52036 1.6059385 + 1810100 -33.790871 -33.801478 0.010606295 558.19987 0.93553273 + 1810200 -33.793416 -33.794626 0.0012094013 63.649711 0.03512445 + 1810300 -33.793283 -33.797386 0.0041029259 215.93333 -0.4526278 + 1810400 -33.792816 -33.80342 0.010604105 558.08458 -0.69562021 + 1810500 -33.792496 -33.798056 0.0055601583 292.62617 -1.2031416 + 1810600 -33.791763 -33.792527 0.00076396022 40.206545 -1.5051711 + 1810700 -33.791144 -33.799437 0.0082933642 436.47236 -1.0098801 + 1810800 -33.792907 -33.803086 0.010178645 535.693 -0.50352196 + 1810900 -33.79601 -33.797587 0.0015770252 82.997431 -0.37969007 + 1811000 -33.796806 -33.798521 0.0017146341 90.239662 0.026062887 + 1811100 -33.794819 -33.802937 0.0081180466 427.24555 0.61371744 + 1811200 -33.787917 -33.799357 0.011440098 602.08217 1.0364727 + 1811300 -33.78926 -33.789575 0.000314668 16.560696 1.0042966 + 1811400 -33.792182 -33.798189 0.0060066273 316.12344 1.3213022 + 1811500 -33.794239 -33.803119 0.0088797078 467.3311 1.2721498 + 1811600 -33.793997 -33.798239 0.0042416478 223.23414 0.67566024 + 1811700 -33.793541 -33.794394 0.00085319472 44.902877 -0.046520178 + 1811800 -33.792777 -33.801901 0.0091239198 480.18376 -0.38069379 + 1811900 -33.792762 -33.80154 0.0087780146 461.97908 -0.88438111 + 1812000 -33.792462 -33.79443 0.0019677569 103.56129 -1.50742 + 1812100 -33.792373 -33.795344 0.0029710084 156.36152 -1.4811177 + 1812200 -33.792169 -33.803529 0.011359571 597.84407 -0.89110428 + 1812300 -33.793664 -33.799109 0.0054455431 286.59408 -0.64582874 + 1812400 -33.794615 -33.795652 0.0010363104 54.54009 -0.27115005 + 1812500 -33.795506 -33.800402 0.0048959051 257.66712 0.41069647 + 1812600 -33.79478 -33.803554 0.008774589 461.79879 0.91247601 + 1812700 -33.79068 -33.794039 0.0033595741 176.81139 0.9403051 + 1812800 -33.787441 -33.79045 0.0030086191 158.34094 1.0217215 + 1812900 -33.789735 -33.80145 0.011714256 616.51086 1.3284133 + 1813000 -33.794631 -33.801569 0.0069380153 365.14156 0.99814483 + 1813100 -33.79482 -33.795532 0.00071125894 37.432924 0.38506359 + 1813200 -33.793632 -33.798304 0.0046722559 245.89666 0.00317794 + 1813300 -33.790982 -33.80339 0.012407335 652.987 -0.29553305 + 1813400 -33.788711 -33.79527 0.0065584208 345.16384 -1.1367613 + 1813500 -33.789495 -33.790734 0.0012388643 65.200324 -1.7000952 + 1813600 -33.793782 -33.800803 0.0070215279 369.53675 -1.3947501 + 1813700 -33.795548 -33.802757 0.0072094533 379.4271 -1.1052081 + 1813800 -33.794471 -33.796282 0.0018110557 95.314246 -0.8211742 + 1813900 -33.788583 -33.79357 0.0049877337 262.49997 0.081018196 + 1814000 -33.785349 -33.801913 0.01656443 871.77119 1.7163634 + 1814100 -33.790828 -33.798767 0.007939559 417.85191 2.2481022 + 1814200 -33.792103 -33.792201 9.7894523e-05 5.1521014 2.1966694 + 1814300 -33.792329 -33.798983 0.0066538664 350.18705 2.1533792 + 1814400 -33.793362 -33.802763 0.0094017783 494.80721 1.6183682 + 1814500 -33.795998 -33.799028 0.0030300254 159.46754 0.57081506 + 1814600 -33.797905 -33.79883 0.00092426887 48.643446 -0.19685008 + 1814700 -33.797534 -33.803133 0.0055995768 294.70073 -0.60694545 + 1814800 -33.791857 -33.800803 0.0089460959 470.82505 -1.207509 + 1814900 -33.789972 -33.792185 0.0022130252 116.46954 -2.186583 + 1815000 -33.790854 -33.794687 0.0038329543 201.72497 -2.3343027 + 1815100 -33.793131 -33.803038 0.0099073094 521.41285 -1.8608583 + 1815200 -33.796661 -33.800142 0.0034809343 183.19847 -1.5485843 + 1815300 -33.798076 -33.798994 0.00091830884 48.329775 -0.98904647 + 1815400 -33.799339 -33.80226 0.002920751 153.71652 -0.2345537 + 1815500 -33.799008 -33.803764 0.0047567096 250.34138 0.42162167 + 1815600 -33.795122 -33.798044 0.0029210273 153.73106 1.0396097 + 1815700 -33.792496 -33.794948 0.0024516584 129.02859 1.8226913 + 1815800 -33.790519 -33.8007 0.010181249 535.83006 2.717389 + 1815900 -33.789298 -33.799181 0.0098828941 520.1279 2.8259111 + 1816000 -33.790605 -33.791659 0.0010537175 55.456213 2.0683147 + 1816100 -33.794281 -33.798468 0.0041875074 220.38478 1.5585932 + 1816200 -33.796164 -33.803536 0.0073719694 387.98017 0.95032946 + 1816300 -33.79534 -33.799983 0.0046436224 244.38971 -0.082866283 + 1816400 -33.789543 -33.792858 0.0033146633 174.44777 -1.3644103 + 1816500 -33.785917 -33.797856 0.011938691 628.32267 -2.4497273 + 1816600 -33.790501 -33.800384 0.0098833544 520.15213 -3.2011309 + 1816700 -33.791289 -33.793115 0.00182616 96.10917 -3.4278362 + 1816800 -33.790619 -33.794496 0.0038767292 204.0288 -2.6064025 + 1816900 -33.792195 -33.802309 0.010114651 532.32509 -1.1190072 + 1817000 -33.797482 -33.802371 0.0048891669 257.31249 -0.14757586 + 1817100 -33.797883 -33.798909 0.001025693 53.981307 0.51175002 + 1817200 -33.796343 -33.800498 0.0041558515 218.71875 1.3403305 + 1817300 -33.793935 -33.802521 0.0085859968 451.87335 2.133037 + 1817400 -33.79202 -33.796713 0.004692877 246.98193 2.2536797 + 1817500 -33.791107 -33.791666 0.00055872456 29.405175 1.9651062 + 1817600 -33.790125 -33.800361 0.010236224 538.72336 1.7450044 + 1817700 -33.7917 -33.801413 0.0097131727 511.19561 0.87787718 + 1817800 -33.793021 -33.796007 0.0029866208 157.18319 -0.27913311 + 1817900 -33.793555 -33.797006 0.0034519174 181.67133 -1.0202781 + 1818000 -33.793792 -33.803312 0.0095195647 501.0062 -1.348758 + 1818100 -33.793818 -33.799101 0.0052826006 278.01856 -1.7207271 + 1818200 -33.791 -33.792199 0.0011991673 63.111105 -1.7761929 + 1818300 -33.786197 -33.795848 0.0096504843 507.89638 -0.92172403 + 1818400 -33.789096 -33.803006 0.013909625 732.05115 0.15004632 + 1818500 -33.794457 -33.797013 0.0025560368 134.52194 0.38462863 + 1818600 -33.794356 -33.796353 0.0019967439 105.08685 0.71088402 + 1818700 -33.793132 -33.802226 0.0090944327 478.63188 1.1940334 + 1818800 -33.790497 -33.8007 0.010203345 536.99296 1.1818353 + 1818900 -33.788149 -33.789894 0.0017451957 91.848094 0.55714771 + 1819000 -33.789575 -33.79545 0.0058758586 309.2412 0.34956382 + 1819100 -33.794296 -33.802784 0.0084883005 446.73169 0.18945135 + 1819200 -33.795087 -33.798948 0.0038612452 203.21389 -0.26196849 + 1819300 -33.793368 -33.795048 0.0016797381 88.40312 -0.60430041 + 1819400 -33.785971 -33.799584 0.013613046 716.44249 -0.46130062 + 1819500 -33.78748 -33.802 0.014520025 764.17597 -0.52276386 + 1819600 -33.793342 -33.794903 0.001561371 82.173566 -0.85058407 + 1819700 -33.793179 -33.795695 0.0025162118 132.42598 -0.64395189 + 1819800 -33.791129 -33.801872 0.010743046 565.39692 -0.0077999475 + 1819900 -33.788768 -33.798918 0.010150101 534.19076 0.36715726 + 1820000 -33.79351 -33.79474 0.0012295558 64.710423 0.46364652 + 1820100 -33.796591 -33.800931 0.0043396544 228.39214 0.77491823 + 1820200 -33.795989 -33.803191 0.0072021644 379.04349 0.84599734 + 1820300 -33.792742 -33.796959 0.0042170549 221.93984 0.42495407 + 1820400 -33.7908 -33.791886 0.0010860406 57.157348 -0.12849125 + 1820500 -33.790449 -33.801279 0.010830231 569.98537 -0.21258376 + 1820600 -33.791951 -33.800825 0.0088740261 467.03208 -0.61572887 + 1820700 -33.793551 -33.795304 0.0017533406 92.276753 -1.0362113 + 1820800 -33.796046 -33.798733 0.0026872888 141.42961 -0.91545198 + 1820900 -33.798893 -33.803842 0.0049488989 260.45613 -0.62483208 + 1821000 -33.798162 -33.801284 0.0031219418 164.30501 -0.40794277 + 1821100 -33.795199 -33.79635 0.0011509975 60.575972 -0.054395185 + 1821200 -33.794012 -33.799733 0.0057211004 301.09641 0.73802389 + 1821300 -33.791564 -33.802919 0.01135452 597.57823 1.4932656 + 1821400 -33.789702 -33.792962 0.003259944 171.56795 1.511234 + 1821500 -33.789116 -33.791972 0.0028561399 150.3161 1.5488697 + 1821600 -33.793553 -33.801993 0.0084402445 444.20254 1.6307442 + 1821700 -33.796233 -33.801967 0.0057338171 301.76568 1.1354052 + 1821800 -33.795462 -33.796577 0.0011153372 58.699204 0.34020847 + 1821900 -33.792604 -33.798044 0.0054398878 286.29644 -0.36576162 + 1822000 -33.784486 -33.802788 0.018301819 963.20839 -1.1123136 + 1822100 -33.779612 -33.789726 0.010114327 532.30799 -2.7387115 + 1822200 -33.790013 -33.791048 0.0010345088 54.445274 -3.4539702 + 1822300 -33.791963 -33.799203 0.0072404605 381.05898 -2.9291831 + 1822400 -33.792874 -33.801943 0.0090689412 477.29029 -2.0265026 + 1822500 -33.794608 -33.797374 0.0027652959 145.53506 -1.0937604 + 1822600 -33.796738 -33.799567 0.0028288131 148.87791 0.050371327 + 1822700 -33.798393 -33.803296 0.0049035842 258.07126 1.0055213 + 1822800 -33.796972 -33.801595 0.0046229342 243.30091 1.5330214 + 1822900 -33.792561 -33.793291 0.0007303176 38.435964 1.7906881 + 1823000 -33.790076 -33.796984 0.006907748 363.54862 2.2204373 + 1823100 -33.789695 -33.801847 0.012152128 639.55567 2.2308644 + 1823200 -33.793095 -33.797228 0.0041331073 217.52175 1.398406 + 1823300 -33.796156 -33.797032 0.00087579277 46.092192 0.71274996 + 1823400 -33.796327 -33.802511 0.0061836124 325.438 0.27093502 + 1823500 -33.794191 -33.802125 0.0079332965 417.52232 -0.43384671 + 1823600 -33.79046 -33.794517 0.0040573523 213.53483 -1.4781514 + 1823700 -33.776783 -33.786485 0.0097015089 510.58176 -2.3778102 + 1823800 -33.784071 -33.800378 0.016307458 858.24694 -2.6285853 + 1823900 -33.790076 -33.795642 0.0055654773 292.9061 -2.7986975 + 1824000 -33.791341 -33.792909 0.0015688337 82.566317 -2.3449779 + 1824100 -33.792823 -33.799131 0.0063088251 332.02784 -1.1867088 + 1824200 -33.795873 -33.803248 0.007374904 388.13462 -0.11773076 + 1824300 -33.798421 -33.800784 0.0023630202 124.36365 0.45517026 + 1824400 -33.798928 -33.800508 0.0015794397 83.1245 0.92355592 + 1824500 -33.796001 -33.802551 0.0065506416 344.75443 1.3918737 + 1824600 -33.790992 -33.800976 0.009984435 525.47191 1.5813894 + 1824700 -33.790767 -33.793087 0.0023201628 122.1081 1.1779385 + 1824800 -33.791456 -33.794955 0.0034985617 184.12618 0.88195584 + 1824900 -33.791696 -33.800513 0.0088164407 464.00141 0.57154795 + 1825000 -33.790703 -33.797223 0.006520697 343.17847 -0.11751109 + 1825100 -33.790662 -33.794126 0.0034643616 182.32626 -0.8335409 + 1825200 -33.795084 -33.801102 0.0060174501 316.69303 -1.0031906 + 1825300 -33.797244 -33.80349 0.0062457673 328.70916 -0.99017977 + 1825400 -33.796215 -33.799069 0.0028538059 150.19326 -0.9581662 + 1825500 -33.791659 -33.795462 0.0038031521 200.1565 -0.53089057 + 1825600 -33.788298 -33.800052 0.01175369 618.58624 0.56211985 + 1825700 -33.789902 -33.798557 0.0086543747 455.47202 1.1865109 + 1825800 -33.790845 -33.791445 0.0005998682 31.570529 1.348625 + 1825900 -33.790723 -33.796083 0.0053603129 282.10849 1.6633502 + 1826000 -33.792676 -33.80211 0.0094338963 496.49755 1.6445689 + 1826100 -33.79679 -33.800762 0.0039717914 209.03184 1.0973061 + 1826200 -33.797555 -33.799173 0.0016175709 85.131315 0.5286752 + 1826300 -33.795451 -33.802272 0.0068205256 358.95818 0.018709163 + 1826400 -33.786683 -33.801577 0.01489377 783.84581 -0.82369507 + 1826500 -33.78959 -33.793891 0.004300956 226.35548 -2.194104 + 1826600 -33.790969 -33.792524 0.0015548686 81.831346 -2.6980313 + 1826700 -33.789658 -33.799026 0.0093681748 493.03868 -2.2711749 + 1826800 -33.786745 -33.79741 0.01066583 561.33312 -1.5270374 + 1826900 -33.79269 -33.795789 0.0030992587 163.11122 -0.69613564 + 1827000 -33.79654 -33.800635 0.0040950403 215.51832 0.13278282 + 1827100 -33.796397 -33.80376 0.0073630582 387.51119 0.82571407 + 1827200 -33.793868 -33.799064 0.0051964856 273.4864 1.1692368 + 1827300 -33.789902 -33.793422 0.003519822 185.24509 1.4029967 + 1827400 -33.788555 -33.798143 0.0095879391 504.60468 1.7417269 + 1827500 -33.792733 -33.799606 0.0068729585 361.71767 1.522756 + 1827600 -33.794522 -33.795968 0.0014458983 76.096336 0.98800733 + 1827700 -33.793213 -33.797024 0.0038115564 200.59881 0.48858324 + 1827800 -33.788718 -33.802762 0.014043647 739.1046 -0.010589392 + 1827900 -33.795495 -33.801811 0.0063157886 332.39432 -0.94308102 + 1828000 -33.797966 -33.799322 0.0013560013 71.365138 -1.3949272 + 1828100 -33.796903 -33.800183 0.0032794909 172.59668 -1.3300411 + 1828200 -33.79275 -33.80229 0.0095403137 502.0982 -0.80340479 + 1828300 -33.790989 -33.795666 0.0046762305 246.10584 -0.33958374 + 1828400 -33.790484 -33.792742 0.0022581088 118.84225 0.37925708 + 1828500 -33.791578 -33.799511 0.0079330281 417.5082 1.343297 + 1828600 -33.796268 -33.801964 0.0056963433 299.79347 1.6217277 + 1828700 -33.797057 -33.798639 0.0015812104 83.217692 1.406834 + 1828800 -33.795039 -33.799189 0.0041507838 218.45205 1.049582 + 1828900 -33.791881 -33.802818 0.010936554 575.58108 0.47477829 + 1829000 -33.794316 -33.800602 0.0062860219 330.82773 -0.53581508 + 1829100 -33.798146 -33.798372 0.00022644959 11.91784 -1.1521418 + 1829200 -33.797461 -33.80031 0.0028483364 149.9054 -1.1994351 + 1829300 -33.793292 -33.802413 0.0091203311 479.99489 -0.88412209 + 1829400 -33.791441 -33.798323 0.0068825257 362.22119 -0.6182793 + 1829500 -33.794204 -33.796728 0.0025237262 132.82146 -0.23207941 + 1829600 -33.796599 -33.801951 0.0053514266 281.64081 0.32287095 + 1829700 -33.796128 -33.801674 0.0055463621 291.90009 0.59748635 + 1829800 -33.789769 -33.792644 0.0028749414 151.3056 0.64701912 + 1829900 -33.788154 -33.792356 0.0042016329 221.12819 0.91269464 + 1830000 -33.790399 -33.802052 0.011653195 613.29725 1.253442 + 1830100 -33.794495 -33.799723 0.0052276887 275.12859 0.91704104 + 1830200 -33.795344 -33.79673 0.0013857342 72.929954 0.48367662 + 1830300 -33.79469 -33.800473 0.0057837735 304.39484 0.24162182 + 1830400 -33.788429 -33.803008 0.01457949 767.30556 -0.068016824 + 1830500 -33.788888 -33.794512 0.0056239392 295.98291 -1.0453014 + 1830600 -33.793361 -33.794794 0.0014324154 75.386747 -1.4398005 + 1830700 -33.793899 -33.800552 0.0066535043 350.168 -1.1855001 + 1830800 -33.79197 -33.800144 0.0081733131 430.15418 -0.82488013 + 1830900 -33.790648 -33.794142 0.0034946648 183.92109 -0.4380996 + 1831000 -33.792784 -33.798051 0.0052667657 277.18518 0.33216714 + 1831100 -33.794798 -33.803697 0.0088992241 468.35823 0.9611114 + 1831200 -33.794646 -33.799449 0.0048035414 252.8061 1.0616024 + 1831300 -33.79305 -33.794496 0.0014462582 76.11528 0.95034383 + 1831400 -33.790274 -33.798077 0.0078024902 410.6381 0.96608828 + 1831500 -33.787015 -33.801269 0.014254135 750.18243 0.69888413 + 1831600 -33.790307 -33.792465 0.002157747 113.5603 -0.24168107 + 1831700 -33.794626 -33.796915 0.0022893771 120.48787 -0.52196394 + 1831800 -33.795059 -33.802297 0.0072376584 380.9115 -0.47913253 + 1831900 -33.793396 -33.801554 0.0081573379 429.31342 -0.53119106 + 1832000 -33.791771 -33.794608 0.0028368687 149.30187 -0.68399957 + 1832100 -33.791524 -33.798278 0.0067545821 355.48763 -0.32333758 + 1832200 -33.794848 -33.802199 0.0073509505 386.87397 0.02311792 + 1832300 -33.795566 -33.798688 0.0031221737 164.31722 0.076293128 + 1832400 -33.79294 -33.793606 0.00066590266 35.045863 0.17282866 + 1832500 -33.787616 -33.800003 0.012386218 651.87561 0.7972998 + 1832600 -33.790774 -33.801977 0.011202948 589.60116 0.98065796 + 1832700 -33.793867 -33.796572 0.0027054503 142.38543 0.68487409 + 1832800 -33.794668 -33.797327 0.0026592379 139.95332 0.54208994 + 1832900 -33.793796 -33.802965 0.0091688506 482.54843 0.4853375 + 1833000 -33.787862 -33.797072 0.0092106801 484.74988 -0.031645956 + 1833100 -33.782521 -33.784522 0.0020007887 105.29972 -1.0921615 + 1833200 -33.787358 -33.79616 0.008801834 463.23267 -1.2386539 + 1833300 -33.791247 -33.802386 0.011138769 586.22348 -1.2126197 + 1833400 -33.793471 -33.796771 0.0033000413 173.67823 -1.3455908 + 1833500 -33.794431 -33.796334 0.0019032292 100.16526 -1.0268131 + 1833600 -33.795761 -33.802537 0.0067754061 356.58358 -0.33218124 + 1833700 -33.798127 -33.802633 0.0045061333 237.15377 0.054499988 + 1833800 -33.797914 -33.79894 0.0010266033 54.029215 0.26456997 + 1833900 -33.79423 -33.797497 0.0032675627 171.96891 0.67160681 + 1834000 -33.79068 -33.803215 0.012535415 659.72771 1.3466262 + 1834100 -33.791484 -33.797528 0.006044697 318.12701 1.3113118 + 1834200 -33.793298 -33.794495 0.0011970174 62.99796 1.0623839 + 1834300 -33.796312 -33.800583 0.0042704296 224.7489 0.9782833 + 1834400 -33.798037 -33.803223 0.0051862011 272.94514 0.6987964 + 1834500 -33.795069 -33.797788 0.0027189501 143.09592 0.078480528 + 1834600 -33.78988 -33.794371 0.0044912104 236.3684 -0.83313088 + 1834700 -33.791152 -33.801206 0.01005466 529.16781 -1.3910231 + 1834800 -33.794657 -33.801421 0.0067640454 355.98568 -1.839545 + 1834900 -33.795574 -33.796185 0.00061145568 32.180367 -1.9687143 + 1835000 -33.793256 -33.798118 0.0048628673 255.92837 -1.3560955 + 1835100 -33.785469 -33.802164 0.016694501 878.61667 0.11940493 + 1835200 -33.790353 -33.797662 0.0073082954 384.62907 1.0642201 + 1835300 -33.792935 -33.793611 0.00067607087 35.581007 1.5897364 + 1835400 -33.792865 -33.79989 0.0070244893 369.69261 2.1148885 + 1835500 -33.79145 -33.801266 0.009815304 516.5707 2.0737363 + 1835600 -33.787524 -33.792634 0.0051102117 268.94588 1.1890633 + 1835700 -33.787179 -33.7924 0.0052209666 274.77481 0.17799779 + 1835800 -33.794263 -33.803024 0.0087611167 461.08976 -0.32984187 + 1835900 -33.7957 -33.800961 0.0052610134 276.88244 -0.88710985 + 1836000 -33.794228 -33.795148 0.00092070903 48.456095 -1.334791 + 1836100 -33.789808 -33.796643 0.0068349104 359.71524 -1.1876091 + 1836200 -33.786985 -33.802482 0.015496201 815.55123 -0.62393333 + 1836300 -33.790939 -33.795556 0.0046175123 243.01556 -0.56390788 + 1836400 -33.791917 -33.793369 0.0014520164 76.418327 -0.20824337 + 1836500 -33.792426 -33.801509 0.0090828459 478.02208 0.53455235 + 1836600 -33.794018 -33.801809 0.0077905951 410.01207 0.82991776 + 1836700 -33.795538 -33.797098 0.0015597956 82.090652 0.73885735 + 1836800 -33.796658 -33.799073 0.0024155456 127.12801 0.74752564 + 1836900 -33.796347 -33.803696 0.0073496385 386.80492 0.72358239 + 1837000 -33.791948 -33.7984 0.0064515464 339.53913 0.21592735 + 1837100 -33.788806 -33.790833 0.00202692 106.67499 -0.67738452 + 1837200 -33.790174 -33.797638 0.0074642678 392.83776 -0.99880561 + 1837300 -33.793629 -33.802733 0.009104281 479.15019 -1.1591854 + 1837400 -33.796061 -33.797712 0.001650913 86.88608 -1.3744752 + 1837500 -33.799072 -33.800207 0.0011357066 59.771223 -1.1234198 + 1837600 -33.79967 -33.803037 0.0033667243 177.1877 -0.6885216 + 1837700 -33.796524 -33.802791 0.0062670022 329.82673 -0.065546625 + 1837800 -33.79403 -33.796884 0.0028533174 150.16755 0.6597972 + 1837900 -33.793191 -33.798245 0.0050544086 266.00901 1.6016211 + 1838000 -33.792777 -33.801385 0.0086080722 453.03516 2.3184545 + 1838100 -33.788324 -33.795586 0.0072624824 382.21797 2.3446871 + 1838200 -33.783922 -33.784888 0.0009658895 50.833903 1.6878523 + 1838300 -33.786537 -33.7975 0.01096262 576.9529 1.3736448 + 1838400 -33.791708 -33.801266 0.0095576654 503.0114 0.70676326 + 1838500 -33.792962 -33.796349 0.0033872741 178.26922 -0.21452537 + 1838600 -33.794007 -33.796993 0.002986396 157.17136 -0.77941438 + 1838700 -33.79552 -33.802918 0.007397822 389.34077 -0.92561511 + 1838800 -33.798289 -33.802013 0.0037238047 195.98052 -1.0952527 + 1838900 -33.798718 -33.799463 0.00074502262 39.209876 -1.0481856 + 1839000 -33.79543 -33.799659 0.0042288062 222.5583 -0.52825303 + 1839100 -33.791343 -33.803139 0.011795922 620.80886 0.52016106 + 1839200 -33.792451 -33.797749 0.0052987741 278.86975 1.1109533 + 1839300 -33.794085 -33.795102 0.0010167417 53.510207 1.4693066 + 1839400 -33.795236 -33.800498 0.0052624923 276.96028 1.7476058 + 1839500 -33.795431 -33.801638 0.0062066158 326.64865 1.531609 + 1839600 -33.791728 -33.795492 0.0037634521 198.06713 0.70035628 + 1839700 -33.788723 -33.794284 0.0055607889 292.65936 -0.39921481 + 1839800 -33.792852 -33.802834 0.0099810911 525.29592 -1.152104 + 1839900 -33.795844 -33.800649 0.0048053111 252.89924 -1.756638 + 1840000 -33.795007 -33.796333 0.0013257147 69.771184 -1.964681 + 1840100 -33.793296 -33.798414 0.0051179089 269.35098 -1.4533114 + 1840200 -33.790777 -33.803179 0.012402268 652.72031 -0.43504216 + 1840300 -33.792268 -33.796304 0.0040366379 212.44465 0.25373682 + 1840400 -33.796641 -33.797761 0.0011202788 58.959276 0.86282745 + 1840500 -33.797126 -33.801394 0.0042679858 224.62028 1.2806203 + 1840600 -33.793437 -33.802018 0.0085809949 451.61011 1.40173 + 1840700 -33.791089 -33.794104 0.0030145451 158.65282 0.9014041 + 1840800 -33.792003 -33.797277 0.0052736778 277.54896 0.52949822 + 1840900 -33.794391 -33.802859 0.0084683254 445.68041 0.22734078 + 1841000 -33.794913 -33.800433 0.0055194553 290.48401 -0.3193399 + 1841100 -33.793854 -33.794211 0.00035763308 18.82191 -0.91531031 + 1841200 -33.787247 -33.796862 0.0096153601 506.04783 -1.0260305 + 1841300 -33.782255 -33.800197 0.017941516 944.24596 -1.1008234 + 1841400 -33.790175 -33.793984 0.0038097116 200.50172 -1.6182559 + 1841500 -33.793249 -33.794919 0.0016702693 87.904782 -1.4346326 + 1841600 -33.794368 -33.802256 0.007888624 415.17124 -0.77051858 + 1841700 -33.794643 -33.801543 0.0068994842 363.1137 -0.27594043 + 1841800 -33.793354 -33.79586 0.0025056934 131.87241 0.15181632 + 1841900 -33.790536 -33.796906 0.0063699743 335.24607 0.95881921 + 1842000 -33.79037 -33.802617 0.012247917 644.59695 1.7623412 + 1842100 -33.794883 -33.798661 0.0037785504 198.86174 1.7236639 + 1842200 -33.795818 -33.796395 0.00057680276 30.356615 1.4501383 + 1842300 -33.793757 -33.800442 0.0066845898 351.804 1.1287897 + 1842400 -33.785673 -33.801355 0.015682162 825.33822 0.22933386 + 1842500 -33.789704 -33.794067 0.0043629789 229.61969 -1.4208865 + 1842600 -33.793063 -33.795637 0.0025746658 135.50236 -2.1156794 + 1842700 -33.794211 -33.802381 0.0081699741 429.97845 -2.0167774 + 1842800 -33.793652 -33.79998 0.0063274157 333.00624 -1.786056 + 1842900 -33.788455 -33.792209 0.0037535912 197.54815 -1.1832402 + 1843000 -33.786081 -33.795347 0.0092664483 487.68491 0.37972194 + 1843100 -33.793253 -33.802953 0.0097005435 510.53095 1.4780455 + 1843200 -33.794422 -33.797265 0.0028423129 149.58839 1.6904611 + 1843300 -33.792802 -33.794419 0.0016164607 85.072887 1.678788 + 1843400 -33.789161 -33.799515 0.010353961 544.91972 1.6115609 + 1843500 -33.787466 -33.801734 0.014267249 750.8726 0.94712501 + 1843600 -33.795848 -33.797042 0.0011941511 62.847105 -0.087167281 + 1843700 -33.796411 -33.799199 0.0027885381 146.75827 -0.47716534 + 1843800 -33.794598 -33.802933 0.0083348621 438.65636 -0.64763159 + 1843900 -33.78991 -33.798893 0.0089831894 472.77725 -1.0161829 + 1844000 -33.789315 -33.790213 0.0008979402 47.257792 -1.4739801 + 1844100 -33.792767 -33.798963 0.006196055 326.09285 -1.0897081 + 1844200 -33.796803 -33.802553 0.0057501161 302.62348 -0.76861653 + 1844300 -33.795345 -33.798428 0.0030825145 162.22999 -0.47923136 + 1844400 -33.792395 -33.794682 0.0022877677 120.40317 0.13151102 + 1844500 -33.790189 -33.801854 0.011664797 613.90784 1.2499937 + 1844600 -33.794207 -33.801633 0.0074266463 390.85777 1.7048005 + 1844700 -33.797818 -33.798667 0.00084888419 44.676018 1.6023603 + 1844800 -33.797393 -33.799612 0.0022185571 116.76068 1.3715537 + 1844900 -33.794941 -33.803292 0.0083512159 439.51705 0.89352936 + 1845000 -33.791943 -33.798797 0.0068539992 360.71987 -0.27331889 + 1845100 -33.79139 -33.793034 0.0016444357 86.545186 -1.6626303 + 1845200 -33.792893 -33.799252 0.0063589366 334.66516 -2.2651766 + 1845300 -33.797275 -33.802315 0.0050395553 265.2273 -2.4101205 + 1845400 -33.797059 -33.799209 0.0021500778 113.15668 -2.191974 + 1845500 -33.7943 -33.797019 0.0027191192 143.10482 -1.2678298 + 1845600 -33.792074 -33.802745 0.010670568 561.58247 0.52095237 + 1845700 -33.793616 -33.801179 0.007562682 398.01721 1.8757752 + 1845800 -33.794117 -33.795771 0.0016535627 87.025532 2.619949 + 1845900 -33.793085 -33.796343 0.0032583766 171.48545 3.0953979 + 1846000 -33.783718 -33.802108 0.01838983 967.84033 3.2475079 + 1846100 -33.786576 -33.793862 0.0072854833 383.42849 1.92631 + 1846200 -33.79126 -33.793624 0.0023635921 124.39374 0.75278586 + 1846300 -33.793845 -33.800351 0.0065058626 342.39774 0.061295921 + 1846400 -33.794586 -33.802876 0.0082905414 436.3238 -0.62012974 + 1846500 -33.793901 -33.795867 0.0019658199 103.45935 -1.4333474 + 1846600 -33.788339 -33.793612 0.0052732543 277.52667 -1.8089959 + 1846700 -33.786459 -33.801016 0.014557262 766.13574 -1.5585323 + 1846800 -33.792892 -33.800255 0.0073630553 387.51103 -1.5349173 + 1846900 -33.79408 -33.794657 0.00057712714 30.373687 -1.3268364 + 1847000 -33.793261 -33.799036 0.0057752061 303.94394 -0.47671417 + 1847100 -33.79135 -33.802285 0.010934813 575.48948 0.53267371 + 1847200 -33.787311 -33.794306 0.0069947502 368.12746 1.1815069 + 1847300 -33.786677 -33.788972 0.0022944103 120.75277 1.8271556 + 1847400 -33.792243 -33.800865 0.0086224677 453.79278 2.4614725 + 1847500 -33.794526 -33.801415 0.0068893583 362.58078 2.214059 + 1847600 -33.793919 -33.7962 0.0022807288 120.03272 1.3678055 + 1847700 -33.791935 -33.797068 0.0051330522 270.14796 0.39354037 + 1847800 -33.787755 -33.802973 0.015217503 800.88361 -0.67663796 + 1847900 -33.792376 -33.798395 0.006019062 316.77786 -2.1561083 + 1848000 -33.794959 -33.795363 0.00040483652 21.306185 -2.7801751 + 1848100 -33.794458 -33.799603 0.0051450034 270.77694 -2.4316012 + 1848200 -33.78948 -33.802055 0.012575748 661.85038 -1.3861807 + 1848300 -33.786469 -33.793643 0.0071740883 377.56587 -0.10518449 + 1848400 -33.796462 -33.798121 0.0016594934 87.337656 1.041929 + 1848500 -33.796715 -33.802772 0.0060570211 318.77562 1.7570641 + 1848600 -33.793697 -33.800648 0.0069508024 365.81453 1.9421858 + 1848700 -33.789758 -33.79199 0.0022324517 117.49194 1.5215237 + 1848800 -33.789043 -33.794744 0.0057009381 300.03529 1.1055896 + 1848900 -33.7928 -33.803361 0.010561297 555.83164 0.62844804 + 1849000 -33.796111 -33.799322 0.0032109139 168.98753 -0.12638294 + 1849100 -33.795437 -33.796673 0.0012366054 65.081437 -0.7001886 + 1849200 -33.794065 -33.800428 0.006363769 334.91948 -0.93455749 + 1849300 -33.791499 -33.802844 0.011344478 597.04975 -1.0534054 + 1849400 -33.790951 -33.793574 0.0026224128 138.01525 -1.435032 + 1849500 -33.793189 -33.796437 0.0032482656 170.95332 -1.1840096 + 1849600 -33.79663 -33.802602 0.0059720919 314.30587 -0.65054613 + 1849700 -33.796101 -33.801547 0.0054460296 286.61968 -0.26074521 + 1849800 -33.79208 -33.793219 0.0011392646 59.958479 0.14580379 + 1849900 -33.788991 -33.797121 0.0081300266 427.87605 1.2235169 + 1850000 -33.790843 -33.802242 0.011398634 599.89996 2.0205627 + 1850100 -33.792473 -33.796852 0.0043791275 230.46957 1.9554099 + 1850200 -33.79297 -33.793956 0.00098668757 51.928487 1.6308603 + 1850300 -33.792637 -33.801462 0.0088255967 464.48328 1.3465202 + 1850400 -33.794307 -33.802121 0.0078136548 411.22568 0.58505908 + 1850500 -33.796068 -33.79781 0.0017418311 91.671015 -0.32175724 + 1850600 -33.796216 -33.798781 0.0025653835 135.01384 -0.84985312 + 1850700 -33.793145 -33.803149 0.010004229 526.51365 -1.0525417 + 1850800 -33.788371 -33.796991 0.0086199104 453.6582 -1.5137084 + 1850900 -33.788991 -33.789938 0.00094686322 49.832567 -1.8842076 + 1851000 -33.791434 -33.798417 0.0069829823 367.50813 -1.3391737 + 1851100 -33.792747 -33.802411 0.0096643194 508.62451 -0.73708811 + 1851200 -33.792823 -33.796672 0.003848923 202.56538 -0.35446558 + 1851300 -33.793226 -33.795577 0.0023515167 123.75823 0.28937982 + 1851400 -33.794509 -33.802654 0.0081454857 428.68964 1.0682425 + 1851500 -33.797026 -33.801921 0.0048944879 257.59253 1.2416554 + 1851600 -33.797734 -33.798608 0.00087386569 45.990772 1.080933 + 1851700 -33.79575 -33.798539 0.0027888389 146.7741 0.84050421 + 1851800 -33.789918 -33.803622 0.013703803 721.21893 0.44176096 + 1851900 -33.790887 -33.796824 0.0059365744 312.43662 -0.6702184 + 1852000 -33.7935 -33.795035 0.0015343489 80.751414 -1.4281877 + 1852100 -33.795716 -33.800591 0.0048758162 256.60986 -1.4504953 + 1852200 -33.796202 -33.803141 0.0069395034 365.21987 -1.2361266 + 1852300 -33.79441 -33.796533 0.0021228976 111.72621 -1.0322321 + 1852400 -33.790159 -33.794698 0.0045387631 238.87105 -0.19656024 + 1852500 -33.789577 -33.80151 0.011933328 628.04041 1.1529575 + 1852600 -33.794231 -33.801099 0.0068675016 361.43048 1.6711385 + 1852700 -33.79586 -33.796053 0.00019226998 10.118998 1.646727 + 1852800 -33.794693 -33.799316 0.0046238477 243.34898 1.5914935 + 1852900 -33.791196 -33.802629 0.011432927 601.70473 1.164759 + 1853000 -33.788755 -33.796142 0.0073865399 388.74701 -0.056933801 + 1853100 -33.794745 -33.795712 0.00096716067 50.900803 -1.0757842 + 1853200 -33.796872 -33.801992 0.0051204574 269.48511 -1.2776094 + 1853300 -33.795853 -33.802243 0.0063899982 336.29991 -1.304089 + 1853400 -33.79177 -33.794651 0.0028809665 151.6227 -1.2687576 + 1853500 -33.789331 -33.793692 0.0043613147 229.5321 -0.6322195 + 1853600 -33.791449 -33.802802 0.011352942 597.4952 0.41619549 + 1853700 -33.795932 -33.800766 0.004834026 254.41048 0.71545716 + 1853800 -33.795983 -33.796463 0.00048035011 25.280398 0.78693215 + 1853900 -33.794742 -33.799646 0.0049034355 258.06344 1.0083559 + 1854000 -33.792514 -33.803004 0.010490462 552.10364 1.0378282 + 1854100 -33.790869 -33.795849 0.0049797007 262.07721 0.41688796 + 1854200 -33.791516 -33.79336 0.0018438944 97.042515 -0.14798048 + 1854300 -33.796258 -33.802475 0.0062170712 327.19891 -0.24212931 + 1854400 -33.797081 -33.802196 0.0051156555 269.23239 -0.43392654 + 1854500 -33.794042 -33.795914 0.0018719272 98.517856 -0.70245838 + 1854600 -33.790809 -33.794945 0.0041360875 217.6786 -0.6348565 + 1854700 -33.790519 -33.80362 0.013101017 689.49482 -0.14921399 + 1854800 -33.793052 -33.798297 0.0052448713 276.0329 -0.19234654 + 1854900 -33.794122 -33.795319 0.0011969144 62.992535 -0.14686707 + 1855000 -33.795479 -33.800159 0.0046796291 246.28471 0.20852089 + 1855100 -33.797845 -33.803562 0.0057166324 300.86126 0.37484575 + 1855200 -33.797629 -33.799217 0.0015873318 83.539856 0.23762151 + 1855300 -33.793536 -33.796402 0.002866396 150.85587 0.15869675 + 1855400 -33.790856 -33.801444 0.010588113 557.24296 0.3054295 + 1855500 -33.792011 -33.801266 0.0092548745 487.07579 0.1060659 + 1855600 -33.79419 -33.794571 0.0003809373 20.048391 -0.30106 + 1855700 -33.795739 -33.79913 0.0033903494 178.43107 -0.23191726 + 1855800 -33.798539 -33.802965 0.0044265085 232.96319 -0.12474127 + 1855900 -33.79756 -33.801103 0.0035435661 186.49472 -0.13093174 + 1856000 -33.792953 -33.795466 0.0025126841 132.24032 -0.12500244 + 1856100 -33.792064 -33.80075 0.0086868935 457.18346 0.27539775 + 1856200 -33.793863 -33.801965 0.0081016825 426.38432 0.4430046 + 1856300 -33.794484 -33.796716 0.0022313571 117.43433 0.2807807 + 1856400 -33.792331 -33.794242 0.0019117146 100.61183 0.23017975 + 1856500 -33.785569 -33.801169 0.015599493 820.98741 0.5479892 + 1856600 -33.789824 -33.799505 0.0096804365 509.47274 0.21206219 + 1856700 -33.793451 -33.794966 0.0015151324 79.740068 -0.17988711 + 1856800 -33.794041 -33.798902 0.0048609479 255.82735 -0.14852086 + 1856900 -33.793491 -33.802944 0.009453109 497.5087 -0.067082225 + 1857000 -33.790438 -33.796294 0.0058556337 308.17678 -0.30430512 + 1857100 -33.784828 -33.78743 0.0026017736 136.92903 -0.52804874 + 1857200 -33.787797 -33.799787 0.011989456 630.99439 -0.053368822 + 1857300 -33.793383 -33.801348 0.0079647869 419.17963 -0.0065568796 + 1857400 -33.793606 -33.795846 0.0022401417 117.89666 -0.14818374 + 1857500 -33.793089 -33.796373 0.0032845945 172.86528 0.0074779391 + 1857600 -33.791141 -33.803181 0.012040334 633.67204 0.42456786 + 1857700 -33.790761 -33.797798 0.007036974 370.34966 0.30753301 + 1857800 -33.792859 -33.794491 0.0016311863 85.84788 0.13483485 + 1857900 -33.795402 -33.799746 0.0043443287 228.63814 0.27750417 + 1858000 -33.795717 -33.80323 0.0075134335 395.42531 0.30785295 + 1858100 -33.791536 -33.795593 0.0040563588 213.48255 -0.022586626 + 1858200 -33.786583 -33.79224 0.0056572526 297.73616 -0.28793476 + 1858300 -33.79099 -33.800711 0.0097203282 511.5722 -0.21459922 + 1858400 -33.793431 -33.801219 0.0077875772 409.85324 -0.33842534 + 1858500 -33.793471 -33.794059 0.00058740221 30.914454 -0.59576051 + 1858600 -33.791707 -33.796939 0.005231471 275.32765 -0.37040713 + 1858700 -33.787046 -33.801918 0.014872657 782.73469 0.13845969 + 1858800 -33.784472 -33.795395 0.010923903 574.91529 0.19147379 + 1858900 -33.793007 -33.793962 0.00095538245 50.280926 0.14365777 + 1859000 -33.794509 -33.800877 0.0063674268 335.11199 0.45450667 + 1859100 -33.794007 -33.80211 0.0081030729 426.4575 0.50555649 + 1859200 -33.790708 -33.794515 0.0038064625 200.33073 0.14895695 + 1859300 -33.786728 -33.791398 0.0046701486 245.78576 -0.070495382 + 1859400 -33.790804 -33.802092 0.011287405 594.04604 0.043267912 + 1859500 -33.795684 -33.800868 0.0051845094 272.8561 -0.21250322 + 1859600 -33.794914 -33.795656 0.00074177383 39.038895 -0.4204174 + 1859700 -33.791791 -33.797781 0.0059898716 315.2416 -0.22029424 + 1859800 -33.788208 -33.802845 0.014636971 770.33071 0.17112288 + 1859900 -33.793774 -33.797936 0.0041617935 219.03148 0.0046614509 + 1860000 -33.79691 -33.797642 0.00073157849 38.502323 -0.0021470976 + 1860100 -33.795877 -33.80218 0.0063031687 331.73015 0.23486981 + 1860200 -33.792152 -33.801508 0.0093555838 492.37603 0.33190156 + 1860300 -33.789532 -33.792521 0.00298935 157.32682 -0.017042795 + 1860400 -33.790435 -33.79396 0.0035246225 185.49774 -0.013057174 + 1860500 -33.795086 -33.803107 0.0080201541 422.09356 0.18578837 + 1860600 -33.797653 -33.800979 0.0033256507 175.02603 -0.0020204886 + 1860700 -33.796039 -33.797361 0.0013221906 69.58571 -0.1586966 + 1860800 -33.79297 -33.799128 0.0061583603 324.10901 -0.044906912 + 1860900 -33.790365 -33.803622 0.013257417 697.72605 0.11803123 + 1861000 -33.793404 -33.796278 0.0028735648 151.23315 -0.20644519 + 1861100 -33.797127 -33.798341 0.0012140793 63.895911 -0.18924409 + 1861200 -33.797553 -33.801894 0.0043410492 228.46555 -0.0087525158 + 1861300 -33.795302 -33.80231 0.0070086864 368.86092 0.13764742 + 1861400 -33.793422 -33.795676 0.0022544835 118.65145 0.031425305 + 1861500 -33.792493 -33.797929 0.0054360057 286.09213 0.21963888 + 1861600 -33.793901 -33.802473 0.0085717234 451.12215 0.45734762 + 1861700 -33.797625 -33.800833 0.0032080167 168.83506 0.2916292 + 1861800 -33.798232 -33.798453 0.00022089283 11.625393 0.13794837 + 1861900 -33.795567 -33.800921 0.005354004 281.77646 0.17778013 + 1862000 -33.7921 -33.802988 0.010888334 573.04331 0.1364857 + 1862100 -33.793364 -33.7979 0.0045357921 238.71469 -0.29294575 + 1862200 -33.795057 -33.796792 0.0017346514 91.293158 -0.47153059 + 1862300 -33.795463 -33.801628 0.0061648196 324.44896 -0.32346486 + 1862400 -33.791194 -33.799794 0.0086001032 452.61576 -0.23013358 + 1862500 -33.787221 -33.789698 0.0024772758 130.37682 -0.33977533 + 1862600 -33.789382 -33.795641 0.0062589198 329.40137 0.069720624 + 1862700 -33.793993 -33.803265 0.0092716611 487.95925 0.43262505 + 1862800 -33.794886 -33.79975 0.0048644502 256.01168 0.34268531 + 1862900 -33.79425 -33.795168 0.00091794991 48.310885 0.17178969 + 1863000 -33.791941 -33.800205 0.0082638851 434.9209 0.34014367 + 1863100 -33.782674 -33.800087 0.01741318 916.44013 0.38287901 + 1863200 -33.78436 -33.788952 0.0045921973 241.68325 -0.39893712 + 1863300 -33.789858 -33.792601 0.0027427376 144.34784 -0.50754185 + 1863400 -33.791659 -33.802605 0.010946071 576.08197 -0.22093031 + 1863500 -33.794111 -33.799962 0.0058505199 307.90764 -0.33805483 + 1863600 -33.795284 -33.796871 0.0015870257 83.523746 -0.3943653 + 1863700 -33.796487 -33.80016 0.0036735806 193.33727 -0.14598714 + 1863800 -33.79694 -33.803854 0.0069148134 363.92046 0.11471991 + 1863900 -33.794519 -33.797939 0.0034205247 180.01916 0.1005785 + 1864000 -33.790122 -33.792902 0.0027803792 146.32888 0.14544624 + 1864100 -33.789385 -33.799352 0.0099670058 524.55462 0.58245307 + 1864200 -33.792375 -33.801734 0.0093595891 492.58683 0.6420344 + 1864300 -33.79627 -33.796932 0.00066239229 34.861116 0.31161806 + 1864400 -33.797685 -33.799858 0.002172528 114.33821 0.27126192 + 1864500 -33.799406 -33.803199 0.0037928676 199.61524 0.23245773 + 1864600 -33.799946 -33.802655 0.0027087019 142.55656 0.046921447 + 1864700 -33.797273 -33.798877 0.0016034879 84.390138 -0.21715129 + 1864800 -33.79377 -33.800384 0.006613821 348.0795 -0.32562159 + 1864900 -33.792399 -33.802183 0.0097842201 514.93478 -0.43165119 + 1865000 -33.792301 -33.796346 0.004045215 212.89606 -0.73864043 + 1865100 -33.790573 -33.791762 0.0011885175 62.550615 -0.78783933 + 1865200 -33.784828 -33.798216 0.013387637 704.57938 -0.12140623 + 1865300 -33.787015 -33.799479 0.012463192 655.92665 0.32839346 + 1865400 -33.792532 -33.794758 0.0022267184 117.1902 0.30964007 + 1865500 -33.793523 -33.797951 0.0044278821 233.03549 0.56273545 + 1865600 -33.794279 -33.803164 0.0088847787 467.59798 0.79505021 + 1865700 -33.795345 -33.80039 0.0050450621 265.51712 0.57034322 + 1865800 -33.796046 -33.796951 0.00090511483 47.635386 0.24684462 + 1865900 -33.794774 -33.800478 0.0057038422 300.18813 0.17399907 + 1866000 -33.789806 -33.801663 0.011857389 624.04381 -0.013374498 + 1866100 -33.788346 -33.793387 0.0050411217 265.30974 -0.72589032 + 1866200 -33.791845 -33.79393 0.0020850499 109.73431 -1.0018528 + 1866300 -33.794945 -33.802128 0.0071831798 378.04434 -0.78245158 + 1866400 -33.79473 -33.800755 0.0060247446 317.07693 -0.66535302 + 1866500 -33.793078 -33.795552 0.0024740506 130.20708 -0.52727629 + 1866600 -33.791588 -33.796802 0.0052138592 274.40076 0.021110566 + 1866700 -33.79133 -33.803365 0.012034992 633.39091 0.75808297 + 1866800 -33.79606 -33.799236 0.0031756985 167.13418 0.80710607 + 1866900 -33.796829 -33.797924 0.0010947971 57.618194 0.78495393 + 1867000 -33.795029 -33.800684 0.0056542591 297.57861 0.82112989 + 1867100 -33.78867 -33.802769 0.014099051 742.02045 0.63723042 + 1867200 -33.790914 -33.794261 0.003347331 176.16705 -0.25744851 + 1867300 -33.792625 -33.795994 0.003368842 177.29915 -0.63308386 + 1867400 -33.793549 -33.801244 0.0076953615 405.00001 -0.65513483 + 1867500 -33.791736 -33.799456 0.0077194381 406.26714 -0.7594179 + 1867600 -33.784754 -33.786714 0.001959598 103.1319 -0.92275123 + 1867700 -33.785844 -33.796315 0.010471269 551.09353 -0.24323699 + 1867800 -33.792532 -33.803011 0.010479547 551.5292 0.18774845 + 1867900 -33.794162 -33.798334 0.0041725941 219.5999 0.1907795 + 1868000 -33.794625 -33.79579 0.0011651896 61.322888 0.23083848 + 1868100 -33.793388 -33.80155 0.0081620695 429.56244 0.53572069 + 1868200 -33.787464 -33.799982 0.012517803 658.80079 0.57823494 + 1868300 -33.786185 -33.788676 0.0024912293 131.11118 -0.019387425 + 1868400 -33.791353 -33.795567 0.0042143557 221.79778 -0.039606736 + 1868500 -33.793695 -33.802813 0.0091177993 479.86164 0.0704684 + 1868600 -33.793416 -33.799373 0.0059568732 313.50493 -0.19184035 + 1868700 -33.792757 -33.79418 0.0014224931 74.864541 -0.45579232 + 1868800 -33.792344 -33.800082 0.0077381127 407.24997 -0.24087023 + 1868900 -33.794947 -33.802874 0.0079269512 417.18837 -0.1548027 + 1869000 -33.796797 -33.798926 0.0021294978 112.07357 -0.27496193 + 1869100 -33.796262 -33.797172 0.00090937081 47.859375 -0.20841986 + 1869200 -33.790394 -33.802126 0.011731566 617.42185 0.29107917 + 1869300 -33.789058 -33.799264 0.01020648 537.15795 0.48616513 + 1869400 -33.791763 -33.793825 0.0020613133 108.48508 0.34788327 + 1869500 -33.794167 -33.797944 0.0037764812 198.75283 0.50476025 + 1869600 -33.794402 -33.803897 0.0094950702 499.71707 0.65049791 + 1869700 -33.794125 -33.798074 0.00394928 207.84709 0.26224562 + 1869800 -33.793258 -33.795014 0.0017561468 92.424437 -0.1115748 + 1869900 -33.792686 -33.799867 0.0071806101 377.90911 -0.14356524 + 1870000 -33.791317 -33.802742 0.01142431 601.25125 -0.26382977 + 1870100 -33.791741 -33.793344 0.0016024174 84.333797 -0.76737515 + 1870200 -33.792979 -33.796493 0.0035139917 184.93825 -0.70073143 + 1870300 -33.795413 -33.802585 0.0071724459 377.47943 -0.39733004 + 1870400 -33.795898 -33.801493 0.0055950531 294.46266 -0.2789419 + 1870500 -33.793409 -33.794015 0.00060656442 31.922945 -0.22506019 + 1870600 -33.787556 -33.796974 0.0094175232 495.63584 0.4427947 + 1870700 -33.789329 -33.80229 0.012960897 682.12046 1.0795804 + 1870800 -33.792934 -33.7971 0.0041664873 219.27851 0.98183421 + 1870900 -33.793525 -33.794582 0.0010570907 55.633739 0.84743548 + 1871000 -33.792774 -33.801741 0.0089664182 471.89459 0.91739268 + 1871100 -33.79213 -33.801158 0.0090289417 475.18515 0.53334816 + 1871200 -33.792368 -33.794416 0.0020485671 107.81426 -0.21409984 + 1871300 -33.794523 -33.797932 0.0034088063 179.40243 -0.49048634 + 1871400 -33.796065 -33.803308 0.007242929 381.18889 -0.50985561 + 1871500 -33.795024 -33.799809 0.0047840628 251.78096 -0.67426011 + 1871600 -33.790456 -33.791553 0.0010970363 57.73604 -0.76307518 + 1871700 -33.787732 -33.79826 0.010528306 554.09535 -0.1263175 + 1871800 -33.791056 -33.802288 0.011231739 591.1164 0.30669812 + 1871900 -33.792915 -33.796204 0.0032882549 173.05792 0.26891859 + 1872000 -33.793262 -33.79497 0.0017078077 89.880395 0.37752437 + 1872100 -33.792551 -33.802593 0.01004166 528.48363 0.72566999 + 1872200 -33.791804 -33.799616 0.0078116075 411.11794 0.57504463 + 1872300 -33.789905 -33.792272 0.0023669371 124.56979 0.10342123 + 1872400 -33.790615 -33.796109 0.0054943875 289.16471 0.0040536731 + 1872500 -33.79415 -33.803917 0.0097669618 514.02649 0.0039123849 + 1872600 -33.796369 -33.799133 0.0027643011 145.4827 -0.34747891 + 1872700 -33.79531 -33.796851 0.0015408115 81.091536 -0.4792688 + 1872800 -33.788401 -33.79856 0.010159004 534.6593 -0.19074362 + 1872900 -33.787009 -33.802295 0.015285949 804.48588 0.055244229 + 1873000 -33.792168 -33.793307 0.0011386156 59.924324 -0.23916549 + 1873100 -33.793531 -33.797125 0.0035935671 189.12623 -0.024695815 + 1873200 -33.793979 -33.802402 0.0084228944 443.28942 0.28172051 + 1873300 -33.792039 -33.79988 0.0078414379 412.68788 0.28150868 + 1873400 -33.785549 -33.786545 0.00099644586 52.442057 -0.047723163 + 1873500 -33.785399 -33.797175 0.01177666 619.79513 0.32931714 + 1873600 -33.792769 -33.802452 0.0096824742 509.57998 0.3713287 + 1873700 -33.793897 -33.797292 0.0033946769 178.65882 0.03642285 + 1873800 -33.793753 -33.794971 0.0012181605 64.110702 -0.14221571 + 1873900 -33.791162 -33.802184 0.011022763 580.11819 0.075962841 + 1874000 -33.785366 -33.798492 0.013125479 690.78224 -0.081395402 + 1874100 -33.78865 -33.790824 0.0021733975 114.38397 -0.58667626 + 1874200 -33.794017 -33.798034 0.004016271 211.37276 -0.426602 + 1874300 -33.794358 -33.803388 0.0090308765 475.28697 -0.17640408 + 1874400 -33.793023 -33.798103 0.0050802392 267.36846 -0.22122165 + 1874500 -33.789901 -33.791313 0.0014124418 74.335551 -0.21374604 + 1874600 -33.784843 -33.798483 0.013640205 717.87183 0.44922438 + 1874700 -33.791274 -33.801957 0.010682835 562.2281 0.68490293 + 1874800 -33.795017 -33.797066 0.0020494966 107.86318 0.44451995 + 1874900 -33.794945 -33.796906 0.0019614323 103.22843 0.38403014 + 1875000 -33.791976 -33.8031 0.011124209 585.45721 0.52354258 + 1875100 -33.787337 -33.797042 0.0097042957 510.72843 0.098427503 + 1875200 -33.787923 -33.790364 0.0024413225 128.48463 -0.56332428 + 1875300 -33.795251 -33.799333 0.0040820196 214.83305 -0.51690869 + 1875400 -33.795507 -33.803764 0.0082570014 434.55862 -0.38541812 + 1875500 -33.793455 -33.796651 0.0031966525 168.23697 -0.50793494 + 1875600 -33.789339 -33.792536 0.0031971023 168.26064 -0.35377157 + 1875700 -33.78867 -33.799462 0.010792269 567.98748 0.30656196 + 1875800 -33.795511 -33.80296 0.0074492451 392.04712 0.49695235 + 1875900 -33.796766 -33.797377 0.00061100578 32.156689 0.34434264 + 1876000 -33.794825 -33.798342 0.0035175379 185.12488 0.37988112 + 1876100 -33.790905 -33.802108 0.011202231 589.56342 0.51417522 + 1876200 -33.789436 -33.798636 0.0092002194 484.19934 0.15322245 + 1876300 -33.79321 -33.793512 0.00030274586 15.933245 -0.33639288 + 1876400 -33.797218 -33.801504 0.0042858385 225.55986 -0.22388352 + 1876500 -33.796708 -33.802985 0.0062767643 330.3405 -0.16006527 + 1876600 -33.793629 -33.797357 0.0037277329 196.18726 -0.29397906 + 1876700 -33.790863 -33.792531 0.0016689231 87.833935 -0.27500846 + 1876800 -33.789697 -33.801756 0.012059079 634.65857 0.28263277 + 1876900 -33.794184 -33.801332 0.0071477703 376.18078 0.3128584 + 1877000 -33.797655 -33.798526 0.00087152135 45.867391 0.18164753 + 1877100 -33.797151 -33.799706 0.0025543739 134.43442 0.23600463 + 1877200 -33.794405 -33.803432 0.0090269377 475.07968 0.365393 + 1877300 -33.791198 -33.797773 0.0065750858 346.0409 0.082241411 + 1877400 -33.790737 -33.791928 0.0011904825 62.654033 -0.31405821 + 1877500 -33.792322 -33.800028 0.0077063296 405.57725 -0.1778507 + 1877600 -33.797699 -33.803026 0.0053270051 280.35553 -0.21491192 + 1877700 -33.797855 -33.799656 0.0018015733 94.815197 -0.34229598 + 1877800 -33.79598 -33.797329 0.0013492772 71.011257 -0.29639402 + 1877900 -33.792279 -33.802809 0.010530189 554.19447 0.18111522 + 1878000 -33.791465 -33.799853 0.0083875128 441.42732 0.30548912 + 1878100 -33.792437 -33.794456 0.0020190176 106.25909 0.2217943 + 1878200 -33.795665 -33.798704 0.0030383185 159.90399 0.41558105 + 1878300 -33.79824 -33.803583 0.0053435273 281.22507 0.50232111 + 1878400 -33.796983 -33.799895 0.002912476 153.28102 0.2839808 + 1878500 -33.794301 -33.796573 0.0022713482 119.53903 -0.026832502 + 1878600 -33.792996 -33.800026 0.0070301743 369.9918 -0.14448229 + 1878700 -33.792298 -33.802932 0.010633675 559.64085 -0.28679106 + 1878800 -33.79335 -33.794928 0.0015782183 83.060219 -0.75151078 + 1878900 -33.794637 -33.797317 0.0026803124 141.06245 -0.73115813 + 1879000 -33.796076 -33.80202 0.0059438753 312.82085 -0.43104037 + 1879100 -33.794304 -33.801383 0.0070784249 372.53119 -0.21610624 + 1879200 -33.789982 -33.792444 0.0024617594 129.5602 -0.0963934 + 1879300 -33.789165 -33.797732 0.0085671498 450.88145 0.57089708 + 1879400 -33.795414 -33.802312 0.0068980418 363.03779 0.88066539 + 1879500 -33.795884 -33.79916 0.0032761126 172.41889 0.75725782 + 1879600 -33.794317 -33.795152 0.00083496399 43.94341 0.50402226 + 1879700 -33.790924 -33.801004 0.01007997 530.49983 0.44202145 + 1879800 -33.79094 -33.801727 0.010786611 567.6897 0.012484986 + 1879900 -33.796472 -33.798359 0.0018874924 99.33704 -0.57437943 + 1880000 -33.797885 -33.799513 0.0016285908 85.711284 -0.68422886 + 1880100 -33.79634 -33.802988 0.00664843 349.90094 -0.4938909 + 1880200 -33.792756 -33.799508 0.0067522393 355.36433 -0.34857075 + 1880300 -33.790863 -33.792331 0.0014670795 77.211086 -0.27193072 + 1880400 -33.790974 -33.79826 0.0072867004 383.49254 0.34193206 + 1880500 -33.794794 -33.802969 0.0081752937 430.25842 0.7310644 + 1880600 -33.798408 -33.800568 0.002160131 113.68577 0.59800255 + 1880700 -33.797905 -33.798546 0.00064125128 33.748483 0.46740532 + 1880800 -33.795351 -33.802337 0.0069865315 367.69492 0.44737984 + 1880900 -33.79227 -33.801193 0.0089225036 469.58341 0.06727131 + 1881000 -33.791057 -33.794294 0.0032368299 170.35147 -0.63798359 + 1881100 -33.79226 -33.795466 0.0032055432 168.70488 -0.93731011 + 1881200 -33.796637 -33.803294 0.0066569263 350.34809 -0.86835491 + 1881300 -33.797835 -33.800849 0.0030139712 158.62262 -0.85379734 + 1881400 -33.795614 -33.797332 0.001717373 90.383809 -0.64703667 + 1881500 -33.793227 -33.798987 0.0057600665 303.14716 0.047347482 + 1881600 -33.792059 -33.803684 0.011625633 611.84671 0.90453453 + 1881700 -33.793381 -33.796226 0.0028448865 149.72384 1.0885792 + 1881800 -33.79362 -33.796077 0.002456766 129.2974 1.2852659 + 1881900 -33.795361 -33.801129 0.0057679181 303.56038 1.4294364 + 1882000 -33.796078 -33.802215 0.0061376407 323.01856 1.1259484 + 1882100 -33.794341 -33.795747 0.0014057416 73.982925 0.39699122 + 1882200 -33.789865 -33.797053 0.0071883021 378.31393 -0.30173926 + 1882300 -33.790568 -33.8021 0.011531789 606.90779 -1.0180195 + 1882400 -33.796015 -33.800371 0.0043564017 229.27353 -1.6712008 + 1882500 -33.796548 -33.796846 0.00029766595 15.665893 -1.8007656 + 1882600 -33.79487 -33.800657 0.0057864443 304.5354 -1.2488112 + 1882700 -33.791668 -33.80214 0.010471632 551.11267 -0.2789577 + 1882800 -33.790882 -33.795894 0.0050112123 263.73563 0.53954936 + 1882900 -33.794788 -33.796818 0.0020307378 106.87592 1.3123262 + 1883000 -33.797788 -33.802589 0.0048005962 252.65109 1.7506616 + 1883100 -33.796462 -33.80165 0.0051881995 273.05031 1.6178655 + 1883200 -33.793753 -33.795652 0.0018991061 99.948258 0.88465302 + 1883300 -33.791961 -33.79747 0.0055098168 289.97674 0.094710512 + 1883400 -33.792206 -33.802675 0.010468259 550.93514 -0.67759467 + 1883500 -33.794045 -33.79896 0.0049154655 258.69656 -1.5874327 + 1883600 -33.797543 -33.797991 0.00044763314 23.558533 -1.9400043 + 1883700 -33.798434 -33.801929 0.0034950889 183.94341 -1.6531449 + 1883800 -33.795936 -33.802656 0.0067198126 353.65774 -0.98249731 + 1883900 -33.792855 -33.797951 0.0050962838 268.21287 0.013192589 + 1884000 -33.793278 -33.796129 0.0028505511 150.02196 1.1597993 + 1884100 -33.793707 -33.802046 0.0083390444 438.87647 2.2730316 + 1884200 -33.793254 -33.799155 0.0059014326 310.58713 2.6337457 + 1884300 -33.787005 -33.790115 0.0031105443 163.70517 2.2709485 + 1884400 -33.785514 -33.792657 0.0071435275 375.95748 1.7420215 + 1884500 -33.791183 -33.803665 0.012481629 656.89701 1.1489276 + 1884600 -33.794323 -33.798181 0.003857658 203.0251 0.074865601 + 1884700 -33.794383 -33.796776 0.0023923398 125.90671 -0.7111372 + 1884800 -33.794127 -33.800504 0.0063772134 335.62705 -1.107847 + 1884900 -33.789052 -33.802018 0.01296617 682.39798 -1.4003281 + 1885000 -33.785661 -33.787829 0.0021681093 114.10566 -2.0162931 + 1885100 -33.788716 -33.79406 0.0053440426 281.2522 -1.7370503 + 1885200 -33.793137 -33.80164 0.0085023112 447.46905 -1.1482912 + 1885300 -33.793246 -33.800368 0.0071220655 374.82795 -0.61270675 + 1885400 -33.7934 -33.794581 0.0011815354 62.183154 -0.12125165 + 1885500 -33.793516 -33.800055 0.0065385086 344.11588 0.75309485 + 1885600 -33.796414 -33.8029 0.0064863638 341.37154 1.2889622 + 1885700 -33.797477 -33.799953 0.0024759584 130.30748 1.2435899 + 1885800 -33.795616 -33.796572 0.00095575483 50.300524 0.98479348 + 1885900 -33.790316 -33.801229 0.01091247 574.31355 0.73771569 + 1886000 -33.790543 -33.800782 0.0102384 538.83786 -0.10418819 + 1886100 -33.793121 -33.795057 0.0019357427 101.87641 -1.0398222 + 1886200 -33.795044 -33.798161 0.0031172373 164.05742 -1.2793081 + 1886300 -33.796573 -33.803054 0.0064813751 341.10899 -1.1840965 + 1886400 -33.798869 -33.801737 0.0028676378 150.92122 -1.0892272 + 1886500 -33.798479 -33.799119 0.00063986808 33.675686 -0.797959 + 1886600 -33.794462 -33.800613 0.0061517887 323.76315 0.035671645 + 1886700 -33.791783 -33.802357 0.010574907 556.54792 1.2178703 + 1886800 -33.792014 -33.796318 0.0043042476 226.52871 1.8605736 + 1886900 -33.793124 -33.794397 0.0012735498 67.02579 2.2114918 + 1887000 -33.795243 -33.801817 0.0065742067 345.99464 2.4100034 + 1887100 -33.797244 -33.801606 0.0043611349 229.52264 1.9216113 + 1887200 -33.795797 -33.798418 0.0026211849 137.95062 0.99553902 + 1887300 -33.789805 -33.796538 0.006733282 354.36663 -0.3392043 + 1887400 -33.790169 -33.803022 0.012853226 676.45384 -1.8214261 + 1887500 -33.793555 -33.797613 0.0040586142 213.60124 -3.0770993 + 1887600 -33.792948 -33.794528 0.00157958 83.131887 -3.4327195 + 1887700 -33.791573 -33.797814 0.0062418158 328.5012 -2.7906474 + 1887800 -33.789924 -33.80281 0.012886109 678.1844 -1.4444094 + 1887900 -33.796251 -33.798387 0.0021357833 112.40437 -0.40409952 + 1888000 -33.798181 -33.800209 0.0020272742 106.69364 0.37249385 + 1888100 -33.796855 -33.802395 0.0055395124 291.53959 1.1670131 + 1888200 -33.792516 -33.801255 0.0087393893 459.94626 1.8801131 + 1888300 -33.790946 -33.792116 0.0011701321 61.583007 2.0170558 + 1888400 -33.790467 -33.796619 0.0061519171 323.76991 2.2442313 + 1888500 -33.793296 -33.801571 0.0082743956 435.47406 2.0423545 + 1888600 -33.797206 -33.800388 0.0031824531 167.48967 1.325228 + 1888700 -33.796923 -33.798138 0.0012143583 63.910594 0.59331386 + 1888800 -33.793863 -33.801693 0.0078305673 412.11577 -0.16381462 + 1888900 -33.791645 -33.802131 0.010486878 551.91504 -1.2899675 + 1889000 -33.793303 -33.796757 0.0034534135 181.75007 -2.3774412 + 1889100 -33.794028 -33.796127 0.0020983001 110.43166 -2.7095458 + 1889200 -33.793219 -33.801018 0.0077991816 410.46397 -2.2607955 + 1889300 -33.791466 -33.799379 0.0079132638 416.46802 -1.4344459 + 1889400 -33.790697 -33.793796 0.0030992426 163.11037 -0.40562475 + 1889500 -33.793406 -33.799099 0.0056929379 299.61424 0.91974693 + 1889600 -33.796442 -33.802828 0.0063864496 336.11315 1.7376118 + 1889700 -33.796162 -33.799846 0.0036837269 193.87126 1.8575702 + 1889800 -33.790461 -33.79288 0.0024189796 127.30874 1.55465 + 1889900 -33.787378 -33.799657 0.012278341 646.19811 1.2478204 + 1890000 -33.79192 -33.800536 0.0086160184 453.45336 0.40163783 + 1890100 -33.793762 -33.796419 0.0026573756 139.85531 -0.46019397 + 1890200 -33.79387 -33.796035 0.0021645492 113.91829 -0.9351375 + 1890300 -33.788927 -33.802627 0.013700672 721.05413 -0.98208009 + 1890400 -33.785459 -33.796936 0.01147708 604.0285 -1.3014153 + 1890500 -33.792992 -33.796065 0.0030733938 161.74998 -1.468177 + 1890600 -33.794679 -33.798642 0.0039630381 208.57116 -1.1028237 + 1890700 -33.793518 -33.803001 0.0094825121 499.05615 -0.39971849 + 1890800 -33.790663 -33.794794 0.0041309612 217.4088 0.11491976 + 1890900 -33.785833 -33.791173 0.0053392947 281.00232 0.97060358 + 1891000 -33.789746 -33.798673 0.0089273414 469.83801 2.0466099 + 1891100 -33.794993 -33.802174 0.0071814735 377.95454 2.1993759 + 1891200 -33.794955 -33.796437 0.0014819061 77.991397 1.6834544 + 1891300 -33.792404 -33.797997 0.0055926759 294.33755 1.0588114 + 1891400 -33.789727 -33.801689 0.011961943 629.5464 0.12863881 + 1891500 -33.793578 -33.800096 0.0065175674 343.01376 -1.1658816 + 1891600 -33.796629 -33.796989 0.00036038517 18.96675 -1.8426387 + 1891700 -33.795824 -33.800232 0.0044073216 231.95341 -1.8070554 + 1891800 -33.791461 -33.801878 0.010416962 548.23543 -1.2890808 + 1891900 -33.790536 -33.796812 0.0062759341 330.29681 -0.67726988 + 1892000 -33.792731 -33.795675 0.0029439457 154.93724 0.068109137 + 1892100 -33.79435 -33.801704 0.0073544501 387.05815 0.95242764 + 1892200 -33.794669 -33.80123 0.0065612738 345.31399 1.3853495 + 1892300 -33.790509 -33.792606 0.0020971114 110.3691 1.3069364 + 1892400 -33.784883 -33.792158 0.0072741223 382.83057 1.3559344 + 1892500 -33.788884 -33.801537 0.012653708 665.95337 1.3354873 + 1892600 -33.793392 -33.799535 0.0061425853 323.27878 0.68399531 + 1892700 -33.794392 -33.795454 0.001061901 55.886905 0.074799617 + 1892800 -33.793984 -33.800975 0.0069908365 367.92149 -0.18250634 + 1892900 -33.792595 -33.801772 0.0091771656 482.98604 -0.55920478 + 1893000 -33.787122 -33.793475 0.0063525596 334.32955 -1.1393136 + 1893100 -33.787384 -33.789873 0.0024895457 131.02257 -1.483265 + 1893200 -33.792156 -33.802114 0.0099584002 524.10172 -1.1099814 + 1893300 -33.794428 -33.799929 0.0055012311 289.52488 -0.91052061 + 1893400 -33.793499 -33.796362 0.0028634441 150.70051 -0.61456812 + 1893500 -33.792818 -33.797386 0.0045679382 240.40651 0.078236676 + 1893600 -33.790794 -33.803863 0.013068189 687.76712 1.0280219 + 1893700 -33.793171 -33.797134 0.0039631231 208.57563 1.2038327 + 1893800 -33.794772 -33.796898 0.0021264963 111.9156 1.3050762 + 1893900 -33.795618 -33.800224 0.0046067405 242.44864 1.342777 + 1894000 -33.791923 -33.802513 0.010589969 557.3406 1.0254327 + 1894100 -33.787441 -33.79078 0.0033389318 175.725 -0.13567607 + 1894200 -33.789395 -33.795558 0.0061628441 324.34499 -0.93626957 + 1894300 -33.793122 -33.801478 0.0083561354 439.77595 -1.3058536 + 1894400 -33.793216 -33.80056 0.0073436902 386.49187 -1.5143221 + 1894500 -33.793091 -33.793657 0.00056611753 29.79426 -1.5822289 + 1894600 -33.791102 -33.798696 0.0075937408 399.6518 -0.88675562 + 1894700 -33.788214 -33.801363 0.013148473 691.99243 0.15743064 + 1894800 -33.791287 -33.796817 0.0055302351 291.05134 0.71221118 + 1894900 -33.79531 -33.796508 0.0011979492 63.046996 1.0611961 + 1895000 -33.795596 -33.802006 0.0064101979 337.363 1.4122283 + 1895100 -33.793074 -33.801247 0.0081722817 430.0999 1.2705967 + 1895200 -33.786205 -33.790758 0.0045528926 239.61468 0.44254968 + 1895300 -33.786129 -33.792929 0.0067997669 357.86567 -0.28790202 + 1895400 -33.794855 -33.802343 0.0074877393 394.07304 -0.63586047 + 1895500 -33.794558 -33.799703 0.0051449728 270.77533 -0.96039218 + 1895600 -33.792469 -33.793567 0.0010974933 57.760094 -1.1518107 + 1895700 -33.789047 -33.798998 0.0099515521 523.74131 -0.7047963 + 1895800 -33.791468 -33.801771 0.010303413 542.25945 -0.24441537 + 1895900 -33.795994 -33.799245 0.0032514972 171.1234 -0.13404625 + 1896000 -33.796499 -33.797468 0.00096931183 51.014017 0.053061877 + 1896100 -33.794529 -33.802695 0.0081661199 429.77561 0.54841202 + 1896200 -33.793025 -33.799815 0.0067902347 357.36399 0.72140231 + 1896300 -33.791851 -33.795141 0.0032893235 173.11416 0.5979942 + 1896400 -33.792374 -33.795982 0.0036080706 189.88954 0.62939341 + 1896500 -33.792522 -33.803869 0.011346951 597.17989 0.72021717 + 1896600 -33.796912 -33.799553 0.0026406313 138.97407 0.22221532 + 1896700 -33.798815 -33.800147 0.0013314646 70.073795 0.0087516891 + 1896800 -33.798117 -33.801268 0.0031500896 165.78641 -0.089985369 + 1896900 -33.794079 -33.803479 0.0093990604 494.66416 -0.17934493 + 1897000 -33.792831 -33.794832 0.0020008083 105.30076 -0.65672571 + 1897100 -33.791451 -33.795879 0.0044279352 233.03828 -0.76276184 + 1897200 -33.792277 -33.80069 0.0084131557 442.77688 -0.54348326 + 1897300 -33.79578 -33.80214 0.0063601673 334.72993 -0.44422733 + 1897400 -33.797817 -33.798207 0.00038915882 20.481082 -0.4606642 + 1897500 -33.796488 -33.800487 0.0039988292 210.45481 -0.10951275 + 1897600 -33.791038 -33.80186 0.010822453 569.57604 0.52780916 + 1897700 -33.790318 -33.797737 0.0074187554 390.44248 0.7870534 + 1897800 -33.792544 -33.793678 0.0011338855 59.675383 0.89030777 + 1897900 -33.793985 -33.800724 0.006739333 354.68508 1.1750231 + 1898000 -33.795565 -33.802095 0.0065301389 343.67539 1.0103196 + 1898100 -33.796898 -33.798955 0.0020574854 108.28362 0.55680383 + 1898200 -33.79706 -33.799158 0.0020985574 110.4452 0.18874055 + 1898300 -33.793965 -33.802606 0.0086410252 454.76945 -0.11126624 + 1898400 -33.789604 -33.799516 0.0099119768 521.6585 -0.74841027 + 1898500 -33.790935 -33.792734 0.0017989666 94.678007 -1.5429814 + 1898600 -33.793765 -33.798504 0.004738949 249.40666 -1.5575128 + 1898700 -33.79753 -33.802175 0.0046457171 244.49995 -1.3032081 + 1898800 -33.79832 -33.801135 0.0028150625 148.15423 -1.0233741 + 1898900 -33.797199 -33.79893 0.0017303197 91.065185 -0.47399067 + 1899000 -33.795583 -33.802455 0.0068724321 361.68997 0.51569344 + 1899100 -33.793563 -33.801505 0.0079418647 417.97325 1.3982477 + 1899200 -33.791259 -33.796181 0.0049218416 259.03213 1.9760026 + 1899300 -33.790068 -33.7923 0.0022326759 117.50374 2.3505091 + 1899400 -33.785377 -33.80002 0.014642936 770.64468 2.6885866 + 1899500 -33.784594 -33.793663 0.0090689001 477.28813 1.9582943 + 1899600 -33.791729 -33.795418 0.0036888888 194.14293 1.0648826 + 1899700 -33.794331 -33.798735 0.0044044829 231.80401 0.48826463 + 1899800 -33.794698 -33.803853 0.0091548925 481.81382 -0.01844752 + 1899900 -33.795892 -33.799127 0.0032348602 170.24781 -0.76551237 + 1900000 -33.795548 -33.798573 0.0030242447 159.1633 -1.2146496 + 1900100 -33.793347 -33.799456 0.0061090279 321.51269 -1.2593332 + 1900200 -33.787746 -33.800914 0.013167807 693.00991 -1.020535 + 1900300 -33.788698 -33.790279 0.0015803642 83.173157 -1.0816829 + 1900400 -33.791812 -33.796691 0.0048790613 256.78065 -0.46455734 + 1900500 -33.79524 -33.801423 0.0061821364 325.36033 0.042882229 + 1900600 -33.794411 -33.801114 0.0067032364 352.78535 0.34241198 + 1900700 -33.793833 -33.796266 0.0024325958 128.02535 0.49399847 + 1900800 -33.793388 -33.800306 0.0069180455 364.09056 0.82185614 + 1900900 -33.795507 -33.801948 0.006440905 338.97908 0.85835705 + 1901000 -33.796736 -33.799459 0.0027228591 143.30164 0.60394198 + 1901100 -33.795356 -33.796764 0.0014076358 74.082617 0.25996658 + 1901200 -33.790006 -33.80069 0.010683846 562.2813 0.0055109331 + 1901300 -33.790546 -33.800973 0.01042705 548.76637 -0.55517257 + 1901400 -33.793788 -33.796544 0.0027569547 145.09606 -1.1845766 + 1901500 -33.794628 -33.798043 0.0034149602 179.72631 -1.2203268 + 1901600 -33.793929 -33.801874 0.0079453407 418.15619 -0.85798166 + 1901700 -33.79281 -33.799388 0.0065784841 346.21975 -0.55664023 + 1901800 -33.792612 -33.794463 0.0018510081 97.416904 -0.17040429 + 1901900 -33.792522 -33.799783 0.0072605972 382.11876 0.60050893 + 1902000 -33.793761 -33.801759 0.0079972403 420.88762 1.07237 + 1902100 -33.797746 -33.80034 0.002594865 136.56543 1.0924582 + 1902200 -33.798897 -33.799563 0.00066536048 35.017329 0.96759198 + 1902300 -33.796567 -33.802748 0.0061806799 325.28367 0.78507164 + 1902400 -33.79299 -33.800763 0.0077730001 409.08606 0.16206602 + 1902500 -33.792252 -33.797028 0.0047764282 251.37916 -0.8112102 + 1902600 -33.793898 -33.796629 0.0027304123 143.69917 -1.4389717 + 1902700 -33.795283 -33.802535 0.0072528349 381.71023 -1.4815821 + 1902800 -33.797697 -33.800055 0.0023588452 124.14392 -1.5089427 + 1902900 -33.796939 -33.799198 0.0022583658 118.85578 -1.1538043 + 1903000 -33.792281 -33.798892 0.006610995 347.93077 -0.17043061 + 1903100 -33.790534 -33.803674 0.013139575 691.5241 1.2124483 + 1903200 -33.794551 -33.797534 0.0029827697 156.98051 1.7939547 + 1903300 -33.794537 -33.797352 0.0028150112 148.15153 2.1585774 + 1903400 -33.793605 -33.799198 0.0055929926 294.35421 2.1962026 + 1903500 -33.791286 -33.800946 0.0096600169 508.39807 1.7281415 + 1903600 -33.791706 -33.793867 0.0021612871 113.74661 0.5610491 + 1903700 -33.79239 -33.798536 0.0061453466 323.42411 -0.31790777 + 1903800 -33.795059 -33.802133 0.0070740178 372.29924 -0.95184381 + 1903900 -33.7973 -33.801474 0.0041737681 219.66169 -1.4340567 + 1904000 -33.800004 -33.800389 0.00038568879 20.298457 -1.5601672 + 1904100 -33.799539 -33.802237 0.0026975449 141.96938 -1.1767069 + 1904200 -33.796404 -33.802702 0.006297306 331.4216 -0.33337774 + 1904300 -33.794252 -33.798954 0.0047028457 247.50658 0.66952566 + 1904400 -33.792634 -33.795533 0.0028991621 152.58031 1.7960494 + 1904500 -33.790797 -33.799903 0.0091058146 479.2309 2.9717963 + 1904600 -33.787741 -33.798579 0.010838676 570.42984 3.4593373 + 1904700 -33.786683 -33.790007 0.0033246706 174.97445 3.0207706 + 1904800 -33.791448 -33.796644 0.0051962062 273.4717 2.4459588 + 1904900 -33.794825 -33.802144 0.0073191361 385.1996 1.7113275 + 1905000 -33.79507 -33.800746 0.0056755441 298.69882 0.6024508 + 1905100 -33.79434 -33.79649 0.0021501578 113.16089 -0.74617299 + 1905200 -33.789126 -33.799418 0.010291567 541.636 -1.848762 + 1905300 -33.786452 -33.798811 0.012358323 650.40752 -3.0899345 + 1905400 -33.791812 -33.796007 0.0041948096 220.76909 -3.9781357 + 1905500 -33.793605 -33.7949 0.0012952501 68.167858 -3.723323 + 1905600 -33.792416 -33.801779 0.0093629908 492.76585 -2.3961007 + 1905700 -33.793257 -33.800743 0.0074856171 393.96135 -0.86084771 + 1905800 -33.796316 -33.799769 0.0034529052 181.72332 0.55269829 + 1905900 -33.799872 -33.801057 0.0011852499 62.378642 1.4027274 + 1906000 -33.799296 -33.803391 0.0040942556 215.47702 1.8404887 + 1906100 -33.797525 -33.800168 0.0026427094 139.08344 1.8054685 + 1906200 -33.794198 -33.79753 0.0033325185 175.38748 1.3091085 + 1906300 -33.791977 -33.798051 0.006074092 319.67404 0.48065121 + 1906400 -33.791227 -33.803221 0.011994184 631.24321 -0.44258934 + 1906500 -33.795737 -33.79745 0.0017120235 90.102269 -1.5655601 + 1906600 -33.797344 -33.799301 0.0019568525 102.9874 -1.8507293 + 1906700 -33.796706 -33.801249 0.0045424468 239.06493 -1.5923799 + 1906800 -33.791184 -33.802017 0.010832928 570.12736 -0.85994478 + 1906900 -33.791991 -33.795175 0.0031836676 167.55359 -0.11984601 + 1907000 -33.793984 -33.798891 0.0049064944 258.22442 0.86040857 + 1907100 -33.795756 -33.801719 0.0059621739 313.78389 1.4889081 + 1907200 -33.794185 -33.799405 0.0052203057 274.74003 1.6466233 + 1907300 -33.788932 -33.790693 0.0017607145 92.664833 1.3736922 + 1907400 -33.787721 -33.798085 0.010363847 545.44004 1.1962272 + 1907500 -33.792004 -33.802126 0.010121399 532.68018 0.69111016 + 1907600 -33.794061 -33.797765 0.003704619 194.9708 -0.064172249 + 1907700 -33.794439 -33.79707 0.0026312227 138.47891 -0.58701858 + 1907800 -33.793755 -33.80161 0.007855595 413.43296 -0.72770132 + 1907900 -33.786686 -33.798706 0.012019333 632.5668 -0.88756411 + 1908000 -33.783843 -33.786488 0.002644953 139.20152 -1.3563306 + 1908100 -33.789268 -33.796394 0.0071252583 374.99599 -0.93506307 + 1908200 -33.792552 -33.801526 0.0089739777 472.29244 -0.48830891 + 1908300 -33.793641 -33.799495 0.0058540047 308.09105 -0.26237542 + 1908400 -33.794679 -33.79582 0.0011410067 60.050162 0.015817365 + 1908500 -33.795456 -33.80192 0.0064638048 340.18428 0.54814123 + 1908600 -33.79737 -33.802124 0.0047544902 250.22458 0.72038219 + 1908700 -33.796141 -33.799355 0.0032140163 169.15081 0.67985902 + 1908800 -33.79257 -33.794145 0.0015747047 82.875301 0.47813791 + 1908900 -33.788896 -33.802781 0.01388439 730.72308 0.55126034 + 1909000 -33.791796 -33.798027 0.0062308999 327.92671 0.05157712 + 1909100 -33.793887 -33.797122 0.0032352616 170.26893 -0.3732229 + 1909200 -33.796117 -33.79879 0.0026730003 140.67762 -0.45797543 + 1909300 -33.798947 -33.803896 0.0049491825 260.47106 -0.35430004 + 1909400 -33.799974 -33.80135 0.0013757542 72.404717 -0.40434005 + 1909500 -33.797444 -33.799696 0.0022519905 118.52025 -0.2467249 + 1909600 -33.795008 -33.799887 0.0048791778 256.78678 0.21535802 + 1909700 -33.791934 -33.803054 0.011120908 585.28348 0.74199437 + 1909800 -33.791331 -33.79339 0.0020580805 108.31494 0.7863444 + 1909900 -33.790619 -33.795845 0.0052256957 275.0237 1.0405603 + 1910000 -33.794624 -33.800809 0.0061851218 325.51744 1.1107116 + 1910100 -33.796406 -33.80183 0.0054239074 285.45541 0.88578151 + 1910200 -33.79579 -33.797001 0.0012116146 63.766197 0.36259753 + 1910300 -33.789662 -33.798474 0.0088115248 463.74269 -0.118905 + 1910400 -33.788495 -33.801014 0.012519005 658.86409 -0.77195703 + 1910500 -33.791727 -33.79785 0.0061229537 322.24559 -1.5340379 + 1910600 -33.79301 -33.794469 0.0014587602 76.77325 -1.8374961 + 1910700 -33.792634 -33.799876 0.0072426933 381.17649 -1.3817971 + 1910800 -33.790737 -33.800649 0.0099117268 521.64534 -0.75185104 + 1910900 -33.788804 -33.794138 0.0053338342 280.71493 -0.1256616 + 1911000 -33.792825 -33.797166 0.0043412968 228.47858 0.73459639 + 1911100 -33.796052 -33.802181 0.0061288845 322.55773 1.2658627 + 1911200 -33.795644 -33.801024 0.0053797801 283.13303 1.3263125 + 1911300 -33.792413 -33.794049 0.0016360187 86.102204 0.98638902 + 1911400 -33.787241 -33.796959 0.00971801 511.4502 0.62455081 + 1911500 -33.789593 -33.800444 0.010850741 571.0648 0.059358566 + 1911600 -33.79245 -33.798376 0.0059257287 311.86581 -0.64820913 + 1911700 -33.794473 -33.795508 0.0010347101 54.455867 -1.1067174 + 1911800 -33.794581 -33.801976 0.0073943136 389.15613 -0.96408555 + 1911900 -33.7943 -33.800607 0.0063070324 331.93349 -0.82392065 + 1912000 -33.790065 -33.796228 0.0061630968 324.35829 -0.6075755 + 1912100 -33.789528 -33.793015 0.0034866394 183.49872 -0.073501144 + 1912200 -33.792737 -33.802985 0.010248256 539.35656 0.70419197 + 1912300 -33.795991 -33.799323 0.0033324579 175.38429 0.75820705 + 1912400 -33.794733 -33.797785 0.0030522577 160.6376 0.77481405 + 1912500 -33.793255 -33.797606 0.0043509771 228.98804 0.75143243 + 1912600 -33.791499 -33.80381 0.012311775 647.95775 0.6751767 + 1912700 -33.79337 -33.79651 0.003140718 165.29319 0.062936761 + 1912800 -33.793815 -33.797796 0.0039803992 209.48486 -0.28999242 + 1912900 -33.795207 -33.800074 0.0048663235 256.11027 -0.44741631 + 1913000 -33.793771 -33.802207 0.008436792 444.02084 -0.4712424 + 1913100 -33.789867 -33.791482 0.00161489 84.990223 -0.76395355 + 1913200 -33.78681 -33.795648 0.0088378469 465.128 -0.45028053 + 1913300 -33.792806 -33.801024 0.0082182798 432.52074 -0.06915349 + 1913400 -33.794791 -33.801095 0.0063042766 331.78846 0.014487337 + 1913500 -33.79478 -33.795691 0.00091092477 47.941158 0.017426297 + 1913600 -33.792842 -33.800152 0.0073093188 384.68293 0.40864064 + 1913700 -33.788958 -33.800184 0.011226049 590.81696 0.65234706 + 1913800 -33.783019 -33.791708 0.0086890718 457.2981 0.51161787 + 1913900 -33.788571 -33.791719 0.0031474369 165.6468 0.40945195 + 1914000 -33.79336 -33.80136 0.0079997619 421.02033 0.55054656 + 1914100 -33.79446 -33.801188 0.006727578 354.06643 0.38624452 + 1914200 -33.794057 -33.796528 0.0024711774 130.05586 0.020280194 + 1914300 -33.791936 -33.797555 0.0056181947 295.68057 -0.14805621 + 1914400 -33.788417 -33.801243 0.012826193 675.03107 -0.12955131 + 1914500 -33.790831 -33.798177 0.0073458637 386.60625 -0.50025853 + 1914600 -33.795008 -33.795975 0.00096751562 50.919484 -0.71567769 + 1914700 -33.795167 -33.80079 0.0056235259 295.96115 -0.41639353 + 1914800 -33.793539 -33.801217 0.0076782766 404.10085 -0.10365729 + 1914900 -33.78852 -33.79596 0.0074402041 391.57131 0.11086924 + 1915000 -33.78228 -33.787691 0.0054109662 284.77433 0.51110499 + 1915100 -33.788803 -33.801828 0.013024802 685.48369 1.2414291 + 1915200 -33.79411 -33.799202 0.0050920022 267.98753 1.1187 + 1915300 -33.794036 -33.797066 0.0030305148 159.49329 0.86084908 + 1915400 -33.793248 -33.796625 0.0033776683 177.76367 0.53626503 + 1915500 -33.788026 -33.803585 0.015558729 818.84203 0.2903025 + 1915600 -33.790792 -33.795766 0.0049736574 261.75915 -0.64264902 + 1915700 -33.795607 -33.798706 0.0030988092 163.08756 -1.0578374 + 1915800 -33.79643 -33.800057 0.0036276831 190.92173 -1.036437 + 1915900 -33.793243 -33.803051 0.009808212 516.19745 -0.69480789 + 1916000 -33.790473 -33.792544 0.0020704157 108.96413 -0.5551616 + 1916100 -33.789187 -33.796055 0.0068678018 361.44628 0.18289881 + 1916200 -33.791561 -33.799504 0.0079433078 418.0492 0.88493512 + 1916300 -33.792126 -33.801424 0.0092986022 489.37714 1.1861726 + 1916400 -33.794265 -33.794767 0.00050196965 26.418215 1.0238883 + 1916500 -33.794815 -33.800445 0.00562914 296.25662 1.0418705 + 1916600 -33.797356 -33.802153 0.0047971899 252.47183 0.75796404 + 1916700 -33.797987 -33.80151 0.0035225929 185.39092 0.34157114 + 1916800 -33.796131 -33.797083 0.00095205172 50.105633 -0.22378523 + 1916900 -33.791019 -33.80097 0.0099502272 523.67158 -0.69153017 + 1917000 -33.791023 -33.799977 0.0089538109 471.23108 -1.3249959 + 1917100 -33.79273 -33.796688 0.0039583445 208.32414 -1.8669702 + 1917200 -33.795727 -33.79773 0.0020028409 105.40773 -1.8116568 + 1917300 -33.798155 -33.802672 0.0045164991 237.69932 -1.3333968 + 1917400 -33.799112 -33.802201 0.0030888402 162.5629 -0.89076751 + 1917500 -33.795377 -33.798179 0.0028019716 147.46526 -0.18553187 + 1917600 -33.790875 -33.798222 0.0073471762 386.67533 1.3069366 + 1917700 -33.791748 -33.801044 0.0092959347 489.23675 2.6693216 + 1917800 -33.79432 -33.798495 0.0041744576 219.69798 3.1083627 + 1917900 -33.79501 -33.796179 0.0011695328 61.551466 2.9272431 + 1918000 -33.792096 -33.800401 0.008305079 437.0889 2.3525592 + 1918100 -33.787073 -33.800222 0.013148126 691.97416 0.82274406 + 1918200 -33.793607 -33.798648 0.0050411085 265.30904 -1.1005172 + 1918300 -33.795765 -33.79749 0.0017246411 90.76632 -2.0969138 + 1918400 -33.794256 -33.802048 0.007792212 410.09717 -2.3368438 + 1918500 -33.791356 -33.797531 0.0061748041 324.97443 -2.33681 + 1918600 -33.788217 -33.794226 0.0060093005 316.26412 -1.8300331 + 1918700 -33.791596 -33.796207 0.0046107512 242.65972 -0.78842782 + 1918800 -33.794125 -33.803804 0.009679062 509.4004 0.25120708 + 1918900 -33.794645 -33.797831 0.0031861489 167.68418 0.7812104 + 1919000 -33.792795 -33.796994 0.0041995829 221.0203 1.3724613 + 1919100 -33.79151 -33.797494 0.0059837717 314.92057 1.8717995 + 1919200 -33.788243 -33.802278 0.014034787 738.63833 2.1007838 + 1919300 -33.791751 -33.793068 0.0013174045 69.333825 1.4304875 + 1919400 -33.795034 -33.79927 0.004236009 222.93738 1.0537305 + 1919500 -33.796271 -33.801478 0.0052069775 274.03858 0.59497911 + 1919600 -33.793917 -33.801907 0.0079902466 420.51955 -0.054476081 + 1919700 -33.789297 -33.791646 0.0023497506 123.66528 -1.1823984 + 1919800 -33.781134 -33.795758 0.014623877 769.64162 -1.9583457 + 1919900 -33.791469 -33.79935 0.007881519 414.79731 -2.5472105 + 1920000 -33.792465 -33.797816 0.0053508032 281.608 -2.5403753 + 1920100 -33.792467 -33.794402 0.0019349188 101.83305 -1.9593738 + 1920200 -33.791909 -33.80134 0.0094309546 496.34273 -0.60901493 + 1920300 -33.79588 -33.801966 0.006085744 320.28728 0.40670926 + 1920400 -33.797833 -33.800251 0.0024176904 127.24089 0.9857704 + 1920500 -33.797248 -33.799344 0.0020954885 110.28369 1.3889307 + 1920600 -33.790696 -33.801505 0.010808861 568.86072 1.8432322 + 1920700 -33.790279 -33.798264 0.007985028 420.2449 1.7038223 + 1920800 -33.792149 -33.794518 0.0023694516 124.70212 1.163807 + 1920900 -33.794309 -33.799014 0.0047041542 247.57544 0.77697143 + 1921000 -33.795869 -33.802137 0.0062678246 329.87002 0.33103498 + 1921100 -33.797266 -33.80065 0.0033836729 178.07969 -0.26908342 + 1921200 -33.797668 -33.799132 0.0014641399 77.056378 -0.71485234 + 1921300 -33.794436 -33.801787 0.0073510361 386.87847 -0.82318331 + 1921400 -33.790505 -33.800078 0.009573139 503.82576 -0.95885446 + 1921500 -33.791064 -33.796239 0.0051751967 272.36599 -1.1449979 + 1921600 -33.79411 -33.796051 0.0019414904 102.17891 -0.94682367 + 1921700 -33.797139 -33.802151 0.0050123663 263.79637 -0.50573245 + 1921800 -33.797827 -33.800846 0.0030186328 158.86795 -0.22677971 + 1921900 -33.79415 -33.799081 0.004931325 259.53124 0.2164231 + 1922000 -33.791339 -33.798162 0.0068235459 359.11713 0.88132245 + 1922100 -33.793172 -33.802702 0.0095301698 501.56434 1.4307272 + 1922200 -33.795381 -33.79769 0.0023086248 121.50087 1.3652765 + 1922300 -33.793837 -33.797003 0.0031661638 166.63238 1.1713581 + 1922400 -33.790095 -33.797193 0.0070972961 373.52436 0.78993935 + 1922500 -33.788484 -33.802381 0.013896638 731.36767 0.16534389 + 1922600 -33.794667 -33.796834 0.0021673335 114.06483 -0.78576733 + 1922700 -33.794886 -33.799259 0.0043728464 230.13901 -1.0689503 + 1922800 -33.794396 -33.800423 0.0060276588 317.2303 -1.0934101 + 1922900 -33.791185 -33.800448 0.0092629137 487.49889 -0.96267828 + 1923000 -33.788035 -33.790328 0.00229311 120.68433 -0.83739351 + 1923100 -33.785326 -33.796547 0.011220601 590.53022 0.05172143 + 1923200 -33.793475 -33.800429 0.0069545332 366.01088 0.56232152 + 1923300 -33.794737 -33.799506 0.0047690695 250.99188 0.73344255 + 1923400 -33.794422 -33.796408 0.0019863028 104.53734 0.73541088 + 1923500 -33.791144 -33.801252 0.010107785 531.96371 0.89412095 + 1923600 -33.788539 -33.799785 0.011246489 591.89267 0.68577035 + 1923700 -33.793891 -33.797384 0.0034936215 183.86618 0.12996761 + 1923800 -33.795876 -33.797885 0.0020093147 105.74844 -0.11271351 + 1923900 -33.794374 -33.801527 0.0071533019 376.4719 -0.13565969 + 1924000 -33.790218 -33.799068 0.008849422 465.73719 -0.33676774 + 1924100 -33.790924 -33.795442 0.0045180267 237.77972 -0.62882774 + 1924200 -33.796971 -33.800713 0.0037419634 196.9362 -0.55716896 + 1924300 -33.797713 -33.802367 0.004653656 244.91777 -0.40960414 + 1924400 -33.794759 -33.799383 0.0046240957 243.36203 -0.24931163 + 1924500 -33.791463 -33.794209 0.0027459569 144.51726 0.028889546 + 1924600 -33.789656 -33.800221 0.010565396 556.04739 0.71249827 + 1924700 -33.793695 -33.800221 0.0065257535 343.44459 0.94149943 + 1924800 -33.796194 -33.799048 0.002854211 150.21458 0.86128277 + 1924900 -33.79627 -33.797996 0.0017258481 90.829848 0.69730008 + 1925000 -33.787096 -33.802628 0.015532414 817.45709 0.65355025 + 1925100 -33.788684 -33.797408 0.0087244313 459.15904 -0.22083415 + 1925200 -33.793671 -33.797864 0.0041926503 220.65545 -0.83229695 + 1925300 -33.795574 -33.798107 0.0025330221 133.31069 -0.99002297 + 1925400 -33.793512 -33.80265 0.0091375006 480.89851 -0.75113795 + 1925500 -33.788978 -33.793568 0.004590366 241.58687 -0.62536801 + 1925600 -33.787214 -33.795044 0.0078302221 412.09761 -0.041769472 + 1925700 -33.792297 -33.79819 0.005892213 310.10191 0.52486092 + 1925800 -33.792582 -33.80277 0.010187733 536.17129 0.93184248 + 1925900 -33.79411 -33.795525 0.0014152182 74.481673 0.80782562 + 1926000 -33.793597 -33.799147 0.0055502016 292.10216 0.85560026 + 1926100 -33.794483 -33.800362 0.0058795275 309.43429 0.7173718 + 1926200 -33.79334 -33.801419 0.0080791379 425.19782 0.39691335 + 1926300 -33.792656 -33.793799 0.0011426043 60.134246 -0.26490492 + 1926400 -33.790039 -33.799167 0.0091272297 480.35796 -0.50646219 + 1926500 -33.791558 -33.799631 0.0080730932 424.8797 -0.80129044 + 1926600 -33.794854 -33.799752 0.00489804 257.77947 -1.0431539 + 1926700 -33.796736 -33.797854 0.0011180815 58.84363 -1.0196656 + 1926800 -33.795182 -33.802126 0.0069443563 365.47528 -0.5218284 + 1926900 -33.786653 -33.799214 0.01256046 661.04579 0.25234651 + 1927000 -33.788879 -33.795545 0.006666344 350.84374 0.87297286 + 1927100 -33.792627 -33.795802 0.003175381 167.11747 1.3326882 + 1927200 -33.793025 -33.80055 0.0075253486 396.05238 1.6457906 + 1927300 -33.791727 -33.798337 0.0066098323 347.86958 1.4412154 + 1927400 -33.787102 -33.79291 0.0058088767 305.716 0.81667076 + 1927500 -33.78834 -33.79775 0.009409537 495.21554 0.16957414 + 1927600 -33.79512 -33.801939 0.0068191741 358.88705 -0.33080471 + 1927700 -33.795514 -33.799619 0.004105049 216.04507 -0.74837964 + 1927800 -33.794022 -33.795717 0.0016946943 89.19025 -1.0079238 + 1927900 -33.788554 -33.799838 0.011284312 593.8833 -0.71938406 + 1928000 -33.788933 -33.798416 0.0094832644 499.09575 -0.5171542 + 1928100 -33.793927 -33.798543 0.0046153014 242.8992 -0.4114606 + 1928200 -33.795497 -33.797525 0.002028047 106.7343 -0.17949239 + 1928300 -33.793726 -33.803075 0.0093481825 491.98651 0.32374916 + 1928400 -33.792489 -33.797711 0.0052213946 274.79734 0.48191117 + 1928500 -33.789686 -33.79586 0.0061741187 324.93836 0.64150922 + 1928600 -33.79124 -33.795203 0.0039622784 208.53118 0.75619029 + 1928700 -33.794631 -33.80326 0.0086294821 454.16194 0.86664068 + 1928800 -33.796811 -33.798668 0.0018564898 97.705404 0.51942921 + 1928900 -33.794725 -33.799416 0.0046905813 246.86111 0.25612421 + 1929000 -33.788413 -33.796834 0.0084207441 443.17625 -0.091869536 + 1929100 -33.78652 -33.802502 0.015981935 841.11497 -0.54244015 + 1929200 -33.791699 -33.792924 0.0012250344 64.472466 -1.3094986 + 1929300 -33.79188 -33.797644 0.0057638363 303.34556 -1.2539057 + 1929400 -33.793149 -33.79883 0.005681404 299.00722 -0.95114059 + 1929500 -33.792562 -33.801349 0.0087870985 462.45716 -0.49317698 + 1929600 -33.795535 -33.79701 0.0014754272 77.650418 -0.18868888 + 1929700 -33.797199 -33.802091 0.0048910957 257.414 0.32722337 + 1929800 -33.797817 -33.802006 0.004189931 220.51233 0.60688214 + 1929900 -33.792454 -33.799461 0.0070067727 368.7602 0.79787811 + 1930000 -33.790323 -33.792167 0.0018436751 97.030977 0.75295523 + 1930100 -33.790223 -33.799792 0.0095685645 503.58501 0.96657692 + 1930200 -33.793071 -33.799221 0.0061494812 323.64171 0.73576915 + 1930300 -33.795556 -33.798803 0.0032472329 170.89897 0.37301208 + 1930400 -33.798292 -33.800136 0.0018436091 97.027503 0.13868516 + 1930500 -33.797778 -33.803046 0.0052676952 277.2341 0.034173582 + 1930600 -33.789477 -33.799737 0.010260185 539.98438 -0.20273888 + 1930700 -33.790417 -33.795932 0.0055147187 290.23473 -0.74527575 + 1930800 -33.793773 -33.797965 0.004192504 220.64775 -0.87029629 + 1930900 -33.794108 -33.799771 0.0056635584 298.06803 -0.74492491 + 1931000 -33.789464 -33.796534 0.0070704572 372.11185 -0.4893256 + 1931100 -33.786714 -33.793105 0.0063914512 336.37638 0.030267356 + 1931200 -33.791994 -33.801139 0.0091449032 481.2881 0.69193177 + 1931300 -33.794277 -33.800869 0.0065921378 346.93833 0.94194369 + 1931400 -33.794637 -33.798582 0.0039449993 207.6218 0.9154641 + 1931500 -33.794007 -33.796149 0.0021419083 112.72673 0.7607225 + 1931600 -33.787491 -33.801167 0.013676543 719.78428 0.73955163 + 1931700 -33.78775 -33.795606 0.0078558918 413.44858 0.04628233 + 1931800 -33.792657 -33.797704 0.0050476959 265.65573 -0.4939373 + 1931900 -33.794284 -33.797712 0.0034275112 180.38686 -0.69052916 + 1932000 -33.793241 -33.803308 0.010067287 529.83233 -0.57799391 + 1932100 -33.793802 -33.796886 0.0030839456 162.3053 -0.7177127 + 1932200 -33.792095 -33.797767 0.0056722903 298.52758 -0.48686728 + 1932300 -33.791691 -33.79696 0.0052689378 277.29949 -0.10068489 + 1932400 -33.789487 -33.802435 0.012947245 681.40194 0.4637802 + 1932500 -33.793506 -33.794752 0.0012462128 65.587066 0.46855627 + 1932600 -33.795417 -33.800196 0.0047788436 251.50628 0.69163774 + 1932700 -33.79669 -33.800827 0.00413716 217.73504 0.70812132 + 1932800 -33.791541 -33.801884 0.010343209 544.35385 0.62677144 + 1932900 -33.787066 -33.790211 0.0031449284 165.51478 -0.084227186 + 1933000 -33.790112 -33.7991 0.0089886714 473.06576 -0.31781006 + 1933100 -33.793514 -33.79882 0.0053055559 279.22667 -0.56593871 + 1933200 -33.792495 -33.799127 0.0066321972 349.04663 -0.67355021 + 1933300 -33.791364 -33.793409 0.0020453853 107.64681 -0.72445091 + 1933400 -33.785787 -33.800994 0.015206881 800.32459 -0.097629378 + 1933500 -33.793396 -33.800156 0.0067607333 355.81136 0.075934872 + 1933600 -33.795636 -33.799699 0.0040629626 213.8301 0.17302517 + 1933700 -33.795681 -33.797502 0.0018205174 95.812206 0.26629136 + 1933800 -33.791749 -33.801889 0.010139612 533.63872 0.59552005 + 1933900 -33.788485 -33.796744 0.0082593549 434.68248 0.56443117 + 1934000 -33.790076 -33.795364 0.0052884183 278.32474 0.36633171 + 1934100 -33.792183 -33.797362 0.005179054 272.56899 0.30252894 + 1934200 -33.792969 -33.801806 0.0088372381 465.09596 0.27909431 + 1934300 -33.794439 -33.798639 0.0042003361 221.05994 -0.04673765 + 1934400 -33.795251 -33.797859 0.0026077343 137.24273 -0.24404202 + 1934500 -33.796529 -33.801403 0.0048735847 256.49242 -0.21232144 + 1934600 -33.796412 -33.801915 0.0055030943 289.62294 -0.20493507 + 1934700 -33.792124 -33.797607 0.0054835977 288.59686 -0.23149065 + 1934800 -33.789483 -33.794488 0.0050050556 263.41161 -0.12388361 + 1934900 -33.791535 -33.801201 0.0096655316 508.68831 0.22673744 + 1935000 -33.795804 -33.799448 0.0036440898 191.78519 0.20248173 + 1935100 -33.795961 -33.798886 0.0029242247 153.89934 0.20663314 + 1935200 -33.79549 -33.798836 0.0033464125 176.1187 0.26433609 + 1935300 -33.793031 -33.803292 0.010261722 540.06525 0.43516333 + 1935400 -33.79325 -33.797875 0.0046253121 243.42605 0.19713745 + 1935500 -33.794653 -33.799248 0.0045948575 241.82325 0.069764225 + 1935600 -33.797315 -33.799877 0.0025616554 134.81764 0.0020432918 + 1935700 -33.796609 -33.802546 0.0059370811 312.46328 0.023579941 + 1935800 -33.792291 -33.794352 0.0020612745 108.48304 -0.19305089 + 1935900 -33.789087 -33.798327 0.0092391894 486.2503 -0.10158104 + 1936000 -33.793594 -33.79925 0.0056563466 297.68848 -0.10026506 + 1936100 -33.795535 -33.80273 0.0071951656 378.67515 -0.065857884 + 1936200 -33.796239 -33.796579 0.00033966472 17.876251 -0.21050427 + 1936300 -33.793043 -33.800429 0.00738604 388.7207 0.035942844 + 1936400 -33.789454 -33.797196 0.0077415127 407.42891 0.22383036 + 1936500 -33.776158 -33.79636 0.02020186 1063.2059 0.51863245 + 1936600 -33.782698 -33.784183 0.0014844371 78.124603 0.23348967 + 1936700 -33.79019 -33.801106 0.010915965 574.49752 0.63560344 + 1936800 -33.795133 -33.799896 0.0047635743 250.70266 0.48867105 + 1936900 -33.795343 -33.79995 0.0046075167 242.4895 0.32383377 + 1937000 -33.795002 -33.796494 0.0014915312 78.497956 0.067402963 + 1937100 -33.790201 -33.802717 0.01251588 658.69959 0.11623727 + 1937200 -33.789345 -33.796792 0.0074469655 391.92715 -0.28738939 + 1937300 -33.794279 -33.798508 0.0042290095 222.569 -0.59060231 + 1937400 -33.796669 -33.799152 0.0024838128 130.72085 -0.59040172 + 1937500 -33.794878 -33.802762 0.0078845445 414.95655 -0.31484304 + 1937600 -33.791782 -33.796942 0.0051608942 271.61326 -0.19794408 + 1937700 -33.78977 -33.795082 0.0053116463 279.54721 0.10028105 + 1937800 -33.793869 -33.799481 0.0056122209 295.36618 0.50242489 + 1937900 -33.797704 -33.802364 0.004660445 245.27506 0.59267931 + 1938000 -33.796444 -33.799294 0.0028494089 149.96185 0.47848995 + 1938100 -33.793436 -33.797083 0.0036471342 191.94542 0.29575672 + 1938200 -33.790606 -33.800907 0.010300365 542.09903 0.17673943 + 1938300 -33.792373 -33.799474 0.0071015928 373.7505 -0.20022246 + 1938400 -33.796102 -33.799085 0.0029832039 157.00336 -0.5298445 + 1938500 -33.798823 -33.800583 0.001759511 92.601496 -0.55866737 + 1938600 -33.798228 -33.803095 0.0048670698 256.14954 -0.35507733 + 1938700 -33.796946 -33.799749 0.002803072 147.52318 -0.21483524 + 1938800 -33.792829 -33.798089 0.0052599178 276.82478 0.13931804 + 1938900 -33.791269 -33.796845 0.0055757892 293.44881 0.68151725 + 1939000 -33.791432 -33.803012 0.011579518 609.41972 1.1936038 + 1939100 -33.796811 -33.798178 0.0013666516 71.925657 1.0367158 + 1939200 -33.797155 -33.800714 0.0035588562 187.29943 0.96732015 + 1939300 -33.796616 -33.80015 0.0035338147 185.98151 0.65595987 + 1939400 -33.793382 -33.802702 0.0093202794 490.51799 0.20967422 + 1939500 -33.792879 -33.793988 0.0011083049 58.329098 -0.72165962 + 1939600 -33.7912 -33.799804 0.008604171 452.82984 -1.1791682 + 1939700 -33.795556 -33.799714 0.0041570966 218.78429 -1.507869 + 1939800 -33.797492 -33.802327 0.0048348288 254.45273 -1.4500066 + 1939900 -33.797183 -33.797628 0.00044463344 23.400661 -1.2031533 + 1940000 -33.79211 -33.801871 0.0097613378 513.7305 -0.13455028 + 1940100 -33.792 -33.798746 0.0067463272 355.05318 0.99175561 + 1940200 -33.792311 -33.799829 0.0075188807 395.71199 1.8588686 + 1940300 -33.794128 -33.794813 0.00068505893 36.05404 2.193366 + 1940400 -33.792431 -33.801819 0.0093872259 494.04132 2.429644 + 1940500 -33.786142 -33.79459 0.0084480144 444.61146 1.8190919 + 1940600 -33.784782 -33.795742 0.010959514 576.78942 0.60556005 + 1940700 -33.793394 -33.796267 0.0028735805 151.23398 -0.43942367 + 1940800 -33.794288 -33.802983 0.0086945516 457.58649 -0.83452559 + 1940900 -33.79515 -33.798716 0.0035660641 187.67877 -1.2664163 + 1941000 -33.792531 -33.797424 0.0048932023 257.52487 -1.3627766 + 1941100 -33.786942 -33.794411 0.0074692631 393.10066 -0.98833441 + 1941200 -33.787387 -33.801154 0.013766221 724.50395 -0.21042465 + 1941300 -33.794562 -33.798135 0.0035723112 188.00755 -0.057703306 + 1941400 -33.794481 -33.798004 0.0035231574 185.42063 0.28171722 + 1941500 -33.79348 -33.800235 0.0067547289 355.49536 0.70918037 + 1941600 -33.791159 -33.800131 0.0089723573 472.20716 0.92198292 + 1941700 -33.788316 -33.793977 0.0056613799 297.95338 0.81304673 + 1941800 -33.790392 -33.795691 0.0052988047 278.87137 0.71933502 + 1941900 -33.795406 -33.802232 0.0068268987 359.29359 0.61944165 + 1942000 -33.796016 -33.800113 0.0040967279 215.60713 0.30888509 + 1942100 -33.793479 -33.797697 0.0042179427 221.98656 -0.088236788 + 1942200 -33.789018 -33.795565 0.0065469502 344.56015 -0.47718863 + 1942300 -33.785958 -33.801614 0.015655629 823.94179 -0.67745294 + 1942400 -33.795211 -33.797787 0.002575881 135.56632 -1.2129695 + 1942500 -33.794821 -33.799025 0.0042040116 221.25338 -1.0904546 + 1942600 -33.793953 -33.79886 0.0049077636 258.29122 -0.64365757 + 1942700 -33.789615 -33.802441 0.012825151 674.97628 0.12756849 + 1942800 -33.791584 -33.793604 0.0020194089 106.27969 0.51987464 + 1942900 -33.795279 -33.800568 0.0052886748 278.33823 1.0583377 + 1943000 -33.797172 -33.800588 0.0034153787 179.74833 1.1632884 + 1943100 -33.79474 -33.802083 0.0073433071 386.47171 1.081449 + 1943200 -33.794018 -33.794436 0.00041806638 22.002461 0.47690324 + 1943300 -33.791971 -33.801263 0.0092925596 489.05913 0.1128702 + 1943400 -33.793525 -33.798993 0.0054671644 287.73199 -0.48578711 + 1943500 -33.793503 -33.800947 0.0074438815 391.76484 -0.92439128 + 1943600 -33.797524 -33.797715 0.00019149847 10.078394 -1.2488835 + 1943700 -33.798243 -33.80313 0.0048875177 257.2257 -0.9928405 + 1943800 -33.796865 -33.800339 0.0034744152 182.85537 -0.66607384 + 1943900 -33.792022 -33.799523 0.0075009532 394.76848 0.076725766 + 1944000 -33.792769 -33.794723 0.0019544872 102.86292 0.85407642 + 1944100 -33.792602 -33.802927 0.010325026 543.39689 1.7541803 + 1944200 -33.795583 -33.798696 0.0031132772 163.849 1.8544688 + 1944300 -33.796758 -33.800144 0.0033856106 178.18166 1.7189438 + 1944400 -33.798468 -33.800247 0.0017792164 93.638572 1.3157701 + 1944500 -33.796311 -33.803471 0.0071607837 376.86566 0.78646236 + 1944600 -33.791396 -33.796932 0.0055365273 291.38249 -0.51437521 + 1944700 -33.791009 -33.797203 0.0061943454 326.00287 -1.9159649 + 1944800 -33.793979 -33.798537 0.0045574653 239.85534 -2.687499 + 1944900 -33.794895 -33.801186 0.0062908224 331.08037 -2.7529361 + 1945000 -33.796402 -33.798719 0.0023173266 121.95883 -2.4429746 + 1945100 -33.796256 -33.799871 0.0036149498 190.25158 -1.5403103 + 1945200 -33.793741 -33.801565 0.0078239759 411.76887 -0.095380201 + 1945300 -33.791067 -33.800161 0.0090938771 478.60264 1.6060859 + 1945400 -33.793387 -33.797134 0.0037465629 197.17826 2.9098182 + 1945500 -33.796215 -33.798695 0.0024795716 130.49764 3.473847 + 1945600 -33.795915 -33.801223 0.0053078148 279.34556 3.3187228 + 1945700 -33.790049 -33.797542 0.0074930404 394.35204 2.1557138 + 1945800 -33.789506 -33.797804 0.0082977495 436.70316 -0.017214686 + 1945900 -33.794215 -33.799306 0.0050912446 267.94766 -1.7254768 + 1946000 -33.795346 -33.801973 0.0066275151 348.80021 -2.6446332 + 1946100 -33.794639 -33.796391 0.0017513904 92.174114 -3.1592997 + 1946200 -33.788032 -33.796099 0.0080673866 424.57936 -2.7482973 + 1946300 -33.788877 -33.796626 0.007748877 407.81648 -1.6250808 + 1946400 -33.791969 -33.802708 0.010739073 565.18785 -0.38004666 + 1946500 -33.795295 -33.796542 0.0012472953 65.644039 0.35859491 + 1946600 -33.79482 -33.800982 0.0061622824 324.31543 1.2449428 + 1946700 -33.794245 -33.799154 0.0049088317 258.34743 1.7840591 + 1946800 -33.784315 -33.799222 0.014907029 784.54365 2.2378963 + 1946900 -33.78801 -33.788247 0.00023636016 12.439425 1.8233423 + 1947000 -33.790758 -33.801139 0.010380894 546.33722 1.7720964 + 1947100 -33.794165 -33.799086 0.0049212084 258.99881 1.1157617 + 1947200 -33.793882 -33.800716 0.0068345246 359.69494 0.36858197 + 1947300 -33.795435 -33.796431 0.00099618988 52.428585 -0.49901583 + 1947400 -33.795585 -33.803199 0.0076133287 400.6827 -0.88269686 + 1947500 -33.796639 -33.799803 0.0031643006 166.53432 -1.3008576 + 1947600 -33.792942 -33.798934 0.0059920159 315.35445 -1.3709133 + 1947700 -33.789978 -33.792883 0.0029050806 152.8918 -1.1738043 + 1947800 -33.788865 -33.802974 0.014109244 742.55692 -0.32572582 + 1947900 -33.795051 -33.798204 0.0031534436 165.96293 -0.065033836 + 1948000 -33.795146 -33.799295 0.0041486378 218.33911 0.30286683 + 1948100 -33.794883 -33.798596 0.0037138334 195.45574 0.65127181 + 1948200 -33.792036 -33.802737 0.010701138 563.19133 1.0581312 + 1948300 -33.790425 -33.794445 0.0040199211 211.56486 0.90157605 + 1948400 -33.789991 -33.796306 0.0063155831 332.38351 0.81236732 + 1948500 -33.795636 -33.800467 0.0048302314 254.21077 0.66248697 + 1948600 -33.796382 -33.801999 0.0056162321 295.57729 0.42281447 + 1948700 -33.794656 -33.797388 0.0027325445 143.81138 -0.037340686 + 1948800 -33.789567 -33.79675 0.0071829514 378.03232 -0.41847692 + 1948900 -33.788781 -33.800072 0.011290981 594.23424 -0.75308168 + 1949000 -33.791035 -33.798129 0.007094625 373.38379 -1.1420873 + 1949100 -33.792886 -33.796228 0.0033428409 175.93074 -1.2424341 + 1949200 -33.794189 -33.799014 0.0048249929 253.93507 -0.89794046 + 1949300 -33.795179 -33.802231 0.0070515751 371.11811 -0.40095548 + 1949400 -33.796755 -33.799483 0.0027275802 143.55011 -0.068864741 + 1949500 -33.796971 -33.800344 0.0033725376 177.49365 0.34528028 + 1949600 -33.795443 -33.800406 0.0049624585 261.16976 0.78989069 + 1949700 -33.789472 -33.801288 0.011815835 621.85687 1.2957168 + 1949800 -33.790515 -33.792846 0.0023308013 122.668 1.2282897 + 1949900 -33.79238 -33.798713 0.0063334563 333.32415 1.3066201 + 1950000 -33.796561 -33.800163 0.0036015419 189.54594 1.083217 + 1950100 -33.798595 -33.802409 0.0038143482 200.74574 0.77835036 + 1950200 -33.798433 -33.799604 0.0011706292 61.60917 0.30853588 + 1950300 -33.795804 -33.802552 0.0067479053 355.13624 -0.093084333 + 1950400 -33.793517 -33.799964 0.0064465758 339.27753 -0.72516892 + 1950500 -33.791269 -33.799749 0.0084791312 446.24911 -1.3129401 + 1950600 -33.792629 -33.793289 0.00065924337 34.69539 -1.7964527 + 1950700 -33.791078 -33.800046 0.0089685215 472.00529 -1.4852666 + 1950800 -33.789934 -33.795913 0.0059782992 314.63255 -1.0535686 + 1950900 -33.789062 -33.798865 0.0098029695 515.92154 -0.26320777 + 1951000 -33.795996 -33.798097 0.0021006531 110.5555 0.24201065 + 1951100 -33.796316 -33.803581 0.0072648471 382.34242 0.78507559 + 1951200 -33.795792 -33.799263 0.0034707998 182.6651 0.92115353 + 1951300 -33.791147 -33.798261 0.0071143073 374.41965 1.0081654 + 1951400 -33.788002 -33.79264 0.004638088 244.09844 0.85560064 + 1951500 -33.78923 -33.801073 0.011842449 623.25755 0.75105847 + 1951600 -33.795539 -33.797604 0.0020653518 108.69762 0.2491932 + 1951700 -33.794825 -33.799311 0.0044863632 236.1133 0.039092056 + 1951800 -33.793109 -33.799446 0.0063372782 333.5253 -0.16125954 + 1951900 -33.791882 -33.802586 0.01070404 563.34409 -0.33001913 + 1952000 -33.797003 -33.799318 0.0023146587 121.81842 -0.67383514 + 1952100 -33.797762 -33.800292 0.002530326 133.1688 -0.6545679 + 1952200 -33.795753 -33.800386 0.0046331967 243.84101 -0.41770754 + 1952300 -33.792588 -33.80025 0.0076610922 403.19645 0.0080751592 + 1952400 -33.792571 -33.796787 0.0042154335 221.85451 0.29252963 + 1952500 -33.793849 -33.799112 0.0052632194 276.99854 0.66714319 + 1952600 -33.79616 -33.801961 0.0058008387 305.29297 0.86876145 + 1952700 -33.797201 -33.800337 0.0031358994 165.03959 0.72787878 + 1952800 -33.795032 -33.798477 0.0034451217 181.31368 0.47959837 + 1952900 -33.790496 -33.797723 0.0072276202 380.38321 0.12076405 + 1953000 -33.790052 -33.801564 0.011511692 605.8501 -0.38008464 + 1953100 -33.794395 -33.797208 0.0028125652 148.0228 -1.0001984 + 1953200 -33.795186 -33.799388 0.0042023026 221.16344 -1.0774389 + 1953300 -33.795021 -33.799727 0.0047053727 247.63957 -0.89970486 + 1953400 -33.793282 -33.801967 0.0086852263 457.09571 -0.45833564 + 1953500 -33.793763 -33.795774 0.0020114398 105.86028 -0.14714993 + 1953600 -33.792994 -33.800346 0.0073518908 386.92345 0.50706839 + 1953700 -33.7954 -33.799834 0.00443337 233.32431 0.91651439 + 1953800 -33.796945 -33.80192 0.0049746192 261.80977 1.0679606 + 1953900 -33.797463 -33.797923 0.00045983785 24.200856 0.88613236 + 1954000 -33.79201 -33.801786 0.0097754991 514.4758 0.81599078 + 1954100 -33.790723 -33.79784 0.0071171764 374.57065 0.20382195 + 1954200 -33.792098 -33.800211 0.0081128218 426.97057 -0.40200006 + 1954300 -33.794865 -33.795573 0.00070847351 37.286329 -0.90589392 + 1954400 -33.793522 -33.802353 0.0088303857 464.73533 -0.83208403 + 1954500 -33.793824 -33.79797 0.0041453487 218.166 -0.86344067 + 1954600 -33.792267 -33.799451 0.0071847202 378.12541 -0.58451659 + 1954700 -33.793837 -33.796192 0.0023551948 123.9518 -0.27897258 + 1954800 -33.79448 -33.803268 0.0087879676 462.5029 0.31971564 + 1954900 -33.798378 -33.800158 0.0017795326 93.655213 0.44265237 + 1955000 -33.798255 -33.801177 0.0029217925 153.77133 0.56275613 + 1955100 -33.794824 -33.798363 0.0035393817 186.2745 0.61464393 + 1955200 -33.790612 -33.803003 0.012390267 652.08868 0.73484442 + 1955300 -33.793654 -33.797007 0.0033533042 176.48141 0.2904814 + 1955400 -33.794875 -33.799098 0.0042228062 222.24252 0.098078722 + 1955500 -33.796013 -33.799658 0.0036453515 191.8516 -0.033495973 + 1955600 -33.792065 -33.801102 0.0090369338 475.60576 -0.085794462 + 1955700 -33.787817 -33.792775 0.0049584284 260.95766 -0.4294026 + 1955800 -33.790594 -33.797812 0.0072183055 379.89298 -0.43546857 + 1955900 -33.794811 -33.801138 0.0063267031 332.96874 -0.36577362 + 1956000 -33.794884 -33.800593 0.005708868 300.45263 -0.2768472 + 1956100 -33.793722 -33.796765 0.0030436018 160.18205 -0.19506358 + 1956200 -33.789918 -33.797367 0.0074488837 392.02811 0.1924852 + 1956300 -33.78243 -33.798606 0.016175493 851.30177 0.85491004 + 1956400 -33.789733 -33.795756 0.0060231326 316.9921 0.8214465 + 1956500 -33.791929 -33.796647 0.004717256 248.26498 0.8070036 + 1956600 -33.793673 -33.799469 0.005796091 305.0431 0.76797466 + 1956700 -33.79497 -33.802058 0.0070876232 373.01529 0.53796119 + 1956800 -33.796164 -33.798257 0.0020932452 110.16563 0.073877695 + 1956900 -33.795165 -33.80024 0.0050741931 267.05026 -0.18808025 + 1957000 -33.79237 -33.799087 0.0067165167 353.48428 -0.48180639 + 1957100 -33.78782 -33.80013 0.012310013 647.86499 -0.77416672 + 1957200 -33.792144 -33.793575 0.0014313791 75.332208 -1.2349449 + 1957300 -33.794997 -33.801109 0.0061121842 321.6788 -1.0208958 + 1957400 -33.795609 -33.799878 0.0042683291 224.63835 -0.7330147 + 1957500 -33.793066 -33.800767 0.0077007829 405.28534 -0.22037891 + 1957600 -33.792742 -33.794267 0.0015256973 80.29609 0.23113706 + 1957700 -33.790914 -33.802162 0.011248554 592.00134 1.1162246 + 1957800 -33.795444 -33.798998 0.0035543494 187.06224 1.3184894 + 1957900 -33.796224 -33.800875 0.0046503394 244.74321 1.3152649 + 1958000 -33.79626 -33.797349 0.0010897523 57.352691 0.99838912 + 1958100 -33.789468 -33.803556 0.014087661 741.42104 0.69658604 + 1958200 -33.790459 -33.795683 0.0052247285 274.9728 -0.43804873 + 1958300 -33.791926 -33.799072 0.0071456387 376.06859 -1.1360476 + 1958400 -33.793872 -33.795888 0.002015405 106.06896 -1.5779565 + 1958500 -33.792007 -33.802723 0.010715692 563.9573 -1.3946209 + 1958600 -33.7918 -33.794567 0.0027674478 145.64831 -1.2948457 + 1958700 -33.787752 -33.797666 0.0099143096 521.78127 -0.56398439 + 1958800 -33.792317 -33.797248 0.0049316861 259.55024 0.19205722 + 1958900 -33.795536 -33.803292 0.0077561304 408.19823 0.77787616 + 1959000 -33.796722 -33.798057 0.0013354779 70.285009 0.86207656 + 1959100 -33.79377 -33.799729 0.005959903 313.66438 1.0532472 + 1959200 -33.788957 -33.796568 0.0076103597 400.52644 1.0549736 + 1959300 -33.788178 -33.800279 0.012100787 636.85364 0.8028988 + 1959400 -33.792037 -33.794166 0.0021287419 112.03379 0.17750564 + 1959500 -33.793039 -33.799756 0.0067174854 353.53526 -0.0095321705 + 1959600 -33.795032 -33.800684 0.0056517321 297.44562 -0.24009377 + 1959700 -33.79532 -33.800502 0.0051813588 272.69029 -0.41141636 + 1959800 -33.795969 -33.798217 0.002247515 118.28471 -0.52316729 + 1959900 -33.79448 -33.80073 0.0062493668 328.8986 -0.31052424 + 1960000 -33.790523 -33.799918 0.0093954654 494.47496 0.017925757 + 1960100 -33.789572 -33.795623 0.0060514354 318.48164 0.17959597 + 1960200 -33.794309 -33.798296 0.0039873884 209.8527 0.39860113 + 1960300 -33.796683 -33.80111 0.0044273702 233.00855 0.56298965 + 1960400 -33.795406 -33.801349 0.0059422106 312.73324 0.55116806 + 1960500 -33.793846 -33.796394 0.0025473669 134.06565 0.28745338 + 1960600 -33.791528 -33.799166 0.0076381544 401.98925 0.1809144 + 1960700 -33.792528 -33.799314 0.0067853243 357.10556 -0.063038266 + 1960800 -33.792561 -33.800561 0.0080008419 421.07717 -0.28637297 + 1960900 -33.793867 -33.795355 0.0014875795 78.28998 -0.57149415 + 1961000 -33.793202 -33.801475 0.0082737044 435.43768 -0.39404487 + 1961100 -33.795223 -33.7995 0.0042776172 225.12718 -0.33524009 + 1961200 -33.796293 -33.80134 0.0050465678 265.59636 -0.19079741 + 1961300 -33.797107 -33.797888 0.00078128176 41.118162 -0.099165875 + 1961400 -33.792443 -33.802919 0.010475878 551.33611 0.40219554 + 1961500 -33.790207 -33.795458 0.0052504321 276.32556 0.60266768 + 1961600 -33.790144 -33.799048 0.0089037123 468.59444 0.83205167 + 1961700 -33.794441 -33.795936 0.0014951215 78.686912 0.76711212 + 1961800 -33.793606 -33.803616 0.010010086 526.82189 0.86856781 + 1961900 -33.794406 -33.796881 0.0024748596 130.24966 0.40576914 + 1962000 -33.791944 -33.799675 0.0077305854 406.85382 0.096865924 + 1962100 -33.792704 -33.795659 0.0029553811 155.53907 -0.39036065 + 1962200 -33.791911 -33.803524 0.011612889 611.17601 -0.52917167 + 1962300 -33.795956 -33.797004 0.0010487636 55.195491 -0.9390989 + 1962400 -33.795963 -33.800952 0.0049894353 262.58953 -0.83582058 + 1962500 -33.795838 -33.799021 0.0031831632 167.52704 -0.61803786 + 1962600 -33.788148 -33.80268 0.014532027 764.80761 0.10824594 + 1962700 -33.790348 -33.79252 0.0021720633 114.31376 0.41892767 + 1962800 -33.792376 -33.800034 0.0076572751 402.99556 1.0134717 + 1962900 -33.794457 -33.798808 0.0043509554 228.9869 1.1854383 + 1963000 -33.792859 -33.801046 0.0081875859 430.90534 1.1690385 + 1963100 -33.792395 -33.794048 0.001653223 87.00765 0.70328748 + 1963200 -33.787817 -33.799725 0.011907784 626.69604 0.44811747 + 1963300 -33.788882 -33.797497 0.0086157303 453.4382 -0.24919908 + 1963400 -33.79373 -33.80006 0.0063304519 333.16604 -0.75067709 + 1963500 -33.795792 -33.797671 0.0018786391 98.871099 -0.99500117 + 1963600 -33.794566 -33.801447 0.0068803673 362.1076 -0.78281869 + 1963700 -33.78967 -33.798298 0.0086272396 454.04393 -0.41923276 + 1963800 -33.785261 -33.794176 0.0089154249 469.21086 0.083826207 + 1963900 -33.793796 -33.798054 0.0042572041 224.05286 0.54215814 + 1964000 -33.795295 -33.801185 0.0058905493 310.01435 0.84814323 + 1964100 -33.793947 -33.799926 0.0059796769 314.70506 0.85685817 + 1964200 -33.791655 -33.79534 0.0036841651 193.89432 0.62490362 + 1964300 -33.788799 -33.798015 0.0092155847 485.008 0.4748539 + 1964400 -33.793249 -33.800001 0.0067517992 355.34117 0.10101507 + 1964500 -33.796712 -33.801314 0.0046018172 242.18954 -0.17990559 + 1964600 -33.796618 -33.798138 0.001519924 79.992245 -0.39607871 + 1964700 -33.792722 -33.801456 0.0087342817 459.67746 -0.29301533 + 1964800 -33.790956 -33.797315 0.0063590621 334.67176 -0.29956015 + 1964900 -33.790329 -33.798729 0.0083996542 442.06631 -0.21540074 + 1965000 -33.79254 -33.794495 0.0019552305 102.90204 -0.18772167 + 1965100 -33.792239 -33.80278 0.010540928 554.75961 0.25561737 + 1965200 -33.794891 -33.79807 0.003179595 167.33925 0.24890894 + 1965300 -33.795506 -33.800831 0.0053254512 280.27375 0.35183428 + 1965400 -33.797877 -33.799217 0.0013399863 70.522283 0.33381286 + 1965500 -33.797474 -33.803852 0.0063780306 335.67006 0.42035763 + 1965600 -33.795228 -33.797144 0.0019168041 100.87969 0.17447512 + 1965700 -33.789705 -33.79918 0.0094748555 498.6532 0.070143297 + 1965800 -33.79178 -33.795028 0.0032486769 170.97497 -0.25745285 + 1965900 -33.79321 -33.803569 0.010358907 545.18004 -0.24601681 + 1966000 -33.797196 -33.797787 0.00059087806 31.097385 -0.51371434 + 1966100 -33.797564 -33.801841 0.004277167 225.10348 -0.38936522 + 1966200 -33.800096 -33.801478 0.0013820802 72.737647 -0.30882953 + 1966300 -33.798842 -33.803496 0.0046535321 244.91124 -0.082781528 + 1966400 -33.796061 -33.797251 0.0011897642 62.61623 0.063754592 + 1966500 -33.792592 -33.801141 0.0085495963 449.95763 0.58967355 + 1966600 -33.792635 -33.797858 0.005223563 274.91146 0.906457 + 1966700 -33.792207 -33.801078 0.0088714273 466.8953 1.1090049 + 1966800 -33.796347 -33.797031 0.00068435766 36.017133 0.89593234 + 1966900 -33.796923 -33.801728 0.0048051426 252.89037 0.83779398 + 1967000 -33.795581 -33.799892 0.0043111143 226.8901 0.50042897 + 1967100 -33.788748 -33.799132 0.01038448 546.52593 -0.054449876 + 1967200 -33.791463 -33.79519 0.0037269699 196.1471 -0.9251205 + 1967300 -33.793643 -33.801158 0.0075152896 395.52299 -1.1876201 + 1967400 -33.795201 -33.799863 0.0046623861 245.37722 -1.2848208 + 1967500 -33.79381 -33.798684 0.0048734661 256.48618 -1.0998151 + 1967600 -33.785199 -33.79356 0.0083604743 440.0043 -0.44473049 + 1967700 -33.785711 -33.798725 0.013014044 684.91753 0.70705207 + 1967800 -33.792249 -33.79871 0.00646127 340.05088 1.1486527 + 1967900 -33.793386 -33.796537 0.0031506918 165.8181 1.2892034 + 1968000 -33.793205 -33.798788 0.0055834079 293.84978 1.3511649 + 1968100 -33.792205 -33.799728 0.0075232526 395.94207 1.0991607 + 1968200 -33.789454 -33.798754 0.0093001002 489.45598 0.48722196 + 1968300 -33.793391 -33.796958 0.0035673708 187.74755 -0.27967036 + 1968400 -33.796469 -33.802109 0.0056392766 296.7901 -0.59331116 + 1968500 -33.796768 -33.800517 0.0037490769 197.31057 -0.81850479 + 1968600 -33.79219 -33.798997 0.0068069789 358.24523 -0.82467285 + 1968700 -33.789969 -33.792773 0.0028040013 147.57209 -0.7482924 + 1968800 -33.789627 -33.801794 0.012167014 640.3391 -0.1170876 + 1968900 -33.793302 -33.797161 0.0038586145 203.07544 0.08162502 + 1969000 -33.79444 -33.800078 0.0056387145 296.76051 0.35728079 + 1969100 -33.796435 -33.798316 0.0018817767 99.036231 0.49253522 + 1969200 -33.796766 -33.80359 0.0068231894 359.09837 0.68831167 + 1969300 -33.797635 -33.799318 0.0016837321 88.61332 0.48704714 + 1969400 -33.7932 -33.800498 0.0072979542 384.08482 0.38338264 + 1969500 -33.791113 -33.795465 0.0043520083 229.04232 0.0038717732 + 1969600 -33.790694 -33.803114 0.012420241 653.66623 -0.19549891 + 1969700 -33.79601 -33.796702 0.00069249152 36.445211 -0.68257402 + 1969800 -33.796479 -33.801059 0.004580081 241.04558 -0.64814328 + 1969900 -33.795685 -33.798639 0.0029540195 155.46741 -0.55931286 + 1970000 -33.784521 -33.802569 0.018048276 949.86465 0.13347977 + 1970100 -33.792649 -33.794077 0.0014280611 75.157583 0.11468224 + 1970200 -33.794844 -33.801442 0.0065979954 347.24661 0.48984998 + 1970300 -33.796705 -33.799795 0.0030899444 162.62102 0.5851955 + 1970400 -33.793681 -33.80198 0.0082984924 436.74225 0.64644358 + 1970500 -33.790039 -33.791758 0.001718739 90.455698 0.32714279 + 1970600 -33.788162 -33.800444 0.012281727 646.37633 0.38312925 + 1970700 -33.793936 -33.798455 0.0045188166 237.82129 0.024548565 + 1970800 -33.793389 -33.800179 0.0067902424 357.3644 -0.10175605 + 1970900 -33.793623 -33.795172 0.0015498917 81.569415 -0.31830935 + 1971000 -33.791299 -33.801656 0.010357257 545.09319 -0.1323295 + 1971100 -33.792277 -33.798205 0.0059282183 311.99684 -0.14654079 + 1971200 -33.795059 -33.800145 0.0050851157 267.62511 -0.11536321 + 1971300 -33.797727 -33.799782 0.0020546292 108.1333 -0.081491737 + 1971400 -33.796472 -33.802608 0.006135955 322.92984 0.15400364 + 1971500 -33.790718 -33.79741 0.0066916794 352.17712 0.26579684 + 1971600 -33.789646 -33.795817 0.0061706803 324.7574 0.33276925 + 1971700 -33.792246 -33.797753 0.005506722 289.81387 0.4684108 + 1971800 -33.794142 -33.800824 0.0066827475 351.70704 0.48996261 + 1971900 -33.795498 -33.799534 0.0040356748 212.39396 0.30674758 + 1972000 -33.795906 -33.798678 0.0027719367 145.88456 0.14520063 + 1972100 -33.794361 -33.801083 0.0067220352 353.77471 0.069732797 + 1972200 -33.791615 -33.799443 0.0078271513 411.93599 -0.10975098 + 1972300 -33.790363 -33.797958 0.0075955661 399.74787 -0.35983476 + 1972400 -33.794738 -33.797551 0.0028125283 148.02086 -0.55425284 + 1972500 -33.796398 -33.802217 0.005819549 306.27767 -0.39486551 + 1972600 -33.795978 -33.799235 0.0032566608 171.39515 -0.2892944 + 1972700 -33.793221 -33.799193 0.0059723533 314.31963 -0.022597053 + 1972800 -33.793467 -33.796845 0.0033777949 177.77033 0.29750207 + 1972900 -33.79249 -33.802957 0.010466663 550.85113 0.77489508 + 1973000 -33.794687 -33.797248 0.002561064 134.78651 0.704834 + 1973100 -33.796809 -33.801098 0.0042887965 225.71554 0.74713573 + 1973200 -33.798925 -33.800534 0.0016093534 84.698835 0.59701207 + 1973300 -33.796059 -33.803414 0.0073545253 387.06211 0.45141388 + 1973400 -33.792979 -33.795344 0.0023647425 124.45429 -0.16970393 + 1973500 -33.791444 -33.800361 0.0089167567 469.28095 -0.61323717 + 1973600 -33.794439 -33.797671 0.0032319575 170.09504 -1.0705101 + 1973700 -33.794599 -33.802314 0.0077142795 405.99565 -1.0713879 + 1973800 -33.796423 -33.79672 0.00029677995 15.619264 -1.1454029 + 1973900 -33.794186 -33.801589 0.0074028575 389.60579 -0.63948879 + 1974000 -33.791385 -33.797383 0.0059988669 315.71502 0.023313541 + 1974100 -33.789803 -33.801879 0.012075379 635.51644 0.86039394 + 1974200 -33.796432 -33.797038 0.000605597 31.87203 1.0848472 + 1974300 -33.796094 -33.802042 0.0059479544 313.03554 1.367222 + 1974400 -33.795391 -33.798883 0.0034919613 183.77881 1.1620195 + 1974500 -33.792039 -33.800477 0.0084377263 444.07001 0.7913206 + 1974600 -33.792559 -33.794817 0.0022577155 118.82155 0.010651597 + 1974700 -33.792483 -33.802254 0.0097709537 514.23658 -0.43048443 + 1974800 -33.794559 -33.79872 0.0041611744 218.9989 -0.95268741 + 1974900 -33.793378 -33.799291 0.0059128054 311.18568 -1.1557316 + 1975000 -33.793168 -33.7961 0.0029315972 154.28735 -1.1748804 + 1975100 -33.790934 -33.801713 0.010779306 567.30526 -0.61069861 + 1975200 -33.792464 -33.797789 0.0053243415 280.21535 -0.24321698 + 1975300 -33.79558 -33.799714 0.0041340696 217.5724 0.13287373 + 1975400 -33.79739 -33.800476 0.003086659 162.44811 0.44910907 + 1975500 -33.795681 -33.802016 0.0063353735 333.42506 0.7165398 + 1975600 -33.789648 -33.796256 0.0066079533 347.77069 0.76540906 + 1975700 -33.789718 -33.795253 0.0055348707 291.29531 0.73777897 + 1975800 -33.79235 -33.799461 0.0071101717 374.20199 0.68089794 + 1975900 -33.794514 -33.800279 0.0057650859 303.41133 0.44215838 + 1976000 -33.795632 -33.799602 0.0039702592 208.9512 0.14837912 + 1976100 -33.796694 -33.799496 0.0028017117 147.45159 -0.11405072 + 1976200 -33.796909 -33.802635 0.0057260596 301.35741 -0.19304136 + 1976300 -33.795389 -33.799626 0.0042367696 222.9774 -0.33533879 + 1976400 -33.790081 -33.797646 0.0075647975 398.12855 -0.41038375 + 1976500 -33.790342 -33.794781 0.0044388154 233.6109 -0.40707612 + 1976600 -33.793049 -33.801904 0.008854759 466.01807 -0.13489315 + 1976700 -33.797128 -33.798892 0.0017641052 92.843282 -0.20013793 + 1976800 -33.795934 -33.800748 0.0048135693 253.33386 0.012054944 + 1976900 -33.795026 -33.799129 0.0041031705 215.94621 0.22145489 + 1977000 -33.792085 -33.803258 0.011173023 588.02622 0.54080581 + 1977100 -33.794338 -33.7964 0.0020618126 108.51136 0.45229838 + 1977200 -33.796756 -33.801066 0.0043104089 226.85298 0.51892724 + 1977300 -33.797901 -33.799728 0.0018270094 96.153875 0.40823789 + 1977400 -33.792945 -33.8023 0.0093554126 492.36702 0.38999889 + 1977500 -33.792019 -33.794475 0.0024559796 129.25601 -0.1339361 + 1977600 -33.792558 -33.801902 0.0093431424 491.72125 -0.2744798 + 1977700 -33.796143 -33.79928 0.0031377957 165.13939 -0.51758593 + 1977800 -33.795203 -33.801836 0.0066329858 349.08813 -0.51638017 + 1977900 -33.79095 -33.791269 0.00031882926 16.779699 -0.59018184 + 1978000 -33.785573 -33.800962 0.015388771 809.89731 0.11643116 + 1978100 -33.792418 -33.796834 0.0044157976 232.39949 0.23864593 + 1978200 -33.793933 -33.801439 0.0075055171 395.00867 0.45825207 + 1978300 -33.795749 -33.796907 0.0011586003 60.976098 0.4283651 + 1978400 -33.793799 -33.803072 0.009273159 488.03809 0.61473052 + 1978500 -33.7892 -33.795043 0.0058429445 307.50896 0.41182989 + 1978600 -33.783646 -33.796446 0.012800486 673.67817 0.22937365 + 1978700 -33.791655 -33.79414 0.0024852938 130.7988 -0.20806473 + 1978800 -33.792277 -33.801838 0.0095608441 503.17869 -0.13828439 + 1978900 -33.793779 -33.797598 0.0038182343 200.95027 -0.32154774 + 1979000 -33.793525 -33.799624 0.0060987435 320.97143 -0.29855241 + 1979100 -33.797012 -33.800157 0.0031451799 165.52801 -0.23835039 + 1979200 -33.798631 -33.802988 0.0043572884 229.3202 -0.098746583 + 1979300 -33.797675 -33.800257 0.0025826751 135.92389 -0.058189669 + 1979400 -33.79316 -33.798072 0.0049114365 258.48452 0.16407487 + 1979500 -33.79187 -33.798695 0.006825007 359.19403 0.47167807 + 1979600 -33.791914 -33.799696 0.0077811895 409.51706 0.6419061 + 1979700 -33.794102 -33.79824 0.0041376548 217.76108 0.58167863 + 1979800 -33.796452 -33.799643 0.0031909377 167.9362 0.50270371 + 1979900 -33.797819 -33.802418 0.0045992074 242.05218 0.42239375 + 1980000 -33.796692 -33.800658 0.0039663343 208.74464 0.20213497 + 1980100 -33.789822 -33.797578 0.0077561072 408.197 -0.15698108 + 1980200 -33.790587 -33.795833 0.0052459942 276.09199 -0.60812412 + 1980300 -33.79338 -33.801545 0.008164748 429.7034 -0.72538755 + 1980400 -33.795563 -33.797974 0.0024107207 126.87408 -0.88717458 + 1980500 -33.794058 -33.799822 0.0057637587 303.34148 -0.64841847 + 1980600 -33.788674 -33.79575 0.0070766346 372.43696 -0.13053625 + 1980700 -33.789135 -33.802744 0.013608758 716.2168 0.63169661 + 1980800 -33.795153 -33.796887 0.0017335634 91.235894 0.72388822 + 1980900 -33.794631 -33.800495 0.0058646972 308.65378 0.96278024 + 1981000 -33.794156 -33.797501 0.0033447781 176.03269 0.90496635 + 1981100 -33.786174 -33.801543 0.015368944 808.85383 0.89056796 + 1981200 -33.788748 -33.790628 0.0018799762 98.941472 0.088197456 + 1981300 -33.795004 -33.802187 0.0071825474 378.01106 -0.079462509 + 1981400 -33.796243 -33.799137 0.0028937896 152.29757 -0.31258088 + 1981500 -33.792598 -33.80203 0.0094319752 496.39644 -0.34817017 + 1981600 -33.791432 -33.791817 0.00038413636 20.216754 -0.63701377 + 1981700 -33.788546 -33.801948 0.013402154 705.34339 -0.22108419 + 1981800 -33.79547 -33.798187 0.0027172087 143.00427 -0.29017287 + 1981900 -33.796061 -33.802071 0.0060098884 316.29507 -0.10279742 + 1982000 -33.796245 -33.796993 0.00074788991 39.360779 -0.017675411 + 1982100 -33.792585 -33.803414 0.010829345 569.93879 0.43680219 + 1982200 -33.792712 -33.796464 0.0037516596 197.4465 0.50219851 + 1982300 -33.792832 -33.800431 0.0075989649 399.92675 0.68022 + 1982400 -33.798237 -33.799048 0.00081116043 42.69065 0.53743695 + 1982500 -33.797215 -33.803219 0.0060049288 316.03405 0.56157023 + 1982600 -33.794278 -33.797676 0.003398345 178.85186 0.23926736 + 1982700 -33.790625 -33.799692 0.0090668759 477.18159 -0.12034209 + 1982800 -33.793325 -33.797082 0.0037571587 197.73591 -0.5618622 + 1982900 -33.794861 -33.80226 0.0073989965 389.40259 -0.66088188 + 1983000 -33.798732 -33.800007 0.0012748871 67.096172 -0.82398423 + 1983100 -33.799593 -33.801769 0.0021759851 114.52016 -0.66196726 + 1983200 -33.79847 -33.801491 0.0030209171 158.98817 -0.35007747 + 1983300 -33.796165 -33.802519 0.006354105 334.41088 0.18252344 + 1983400 -33.794815 -33.799443 0.0046278228 243.55818 0.67558891 + 1983500 -33.793571 -33.798822 0.0052509495 276.35279 1.1439196 + 1983600 -33.790288 -33.798084 0.007795805 410.28627 1.5268358 + 1983700 -33.784631 -33.794114 0.0094823048 499.04524 1.6747605 + 1983800 -33.785742 -33.792274 0.0065322093 343.78435 1.3541729 + 1983900 -33.791058 -33.796423 0.0053650984 282.36035 1.0474828 + 1984000 -33.792241 -33.800902 0.00866027 455.78228 0.74925482 + 1984100 -33.794612 -33.799619 0.0050074829 263.53936 0.15386492 + 1984200 -33.796846 -33.801239 0.0043923308 231.16445 -0.25722739 + 1984300 -33.798005 -33.800893 0.0028883204 152.00973 -0.52046818 + 1984400 -33.793892 -33.80188 0.0079878206 420.39187 -0.59095409 + 1984500 -33.790596 -33.793801 0.0032045227 168.65117 -0.79398839 + 1984600 -33.789058 -33.797608 0.0085497777 449.96717 -0.599919 + 1984700 -33.792391 -33.796309 0.0039181243 206.20739 -0.46025854 + 1984800 -33.795053 -33.802089 0.007035726 370.28398 -0.12689971 + 1984900 -33.797178 -33.798688 0.0015099656 79.468145 -0.04719492 + 1985000 -33.795013 -33.802356 0.0073433552 386.47423 0.26751195 + 1985100 -33.788035 -33.796865 0.0088297284 464.70073 0.60132852 + 1985200 -33.791101 -33.801166 0.010064076 529.66332 0.78062903 + 1985300 -33.795064 -33.795292 0.00022840283 12.020637 0.57521793 + 1985400 -33.793084 -33.800265 0.0071805346 377.90513 0.66799288 + 1985500 -33.790078 -33.795742 0.0056643785 298.11119 0.3994353 + 1985600 -33.788857 -33.801665 0.012807929 674.06988 0.14075003 + 1985700 -33.797392 -33.798603 0.0012105605 63.710721 -0.31253773 + 1985800 -33.796135 -33.803209 0.0070735523 372.27475 -0.30707652 + 1985900 -33.794662 -33.797964 0.0033023055 173.79739 -0.42471934 + 1986000 -33.789608 -33.79944 0.0098328552 517.4944 -0.26466093 + 1986100 -33.789808 -33.791125 0.0013164196 69.281988 -0.31377139 + 1986200 -33.790283 -33.801549 0.011266084 592.92395 0.17546725 + 1986300 -33.796417 -33.798799 0.0023821923 125.37265 0.14117266 + 1986400 -33.795428 -33.801171 0.0057429554 302.24662 0.25449555 + 1986500 -33.794676 -33.798523 0.0038466841 202.44755 0.2896622 + 1986600 -33.79181 -33.80284 0.011030723 580.53711 0.45910274 + 1986700 -33.79154 -33.796247 0.0047068788 247.71883 0.2020563 + 1986800 -33.792026 -33.797788 0.0057617416 303.23532 0.11989147 + 1986900 -33.794026 -33.797188 0.0031619569 166.41097 0.010570039 + 1987000 -33.792925 -33.800665 0.0077393279 407.31393 0.037863537 + 1987100 -33.790391 -33.796753 0.0063622068 334.83727 -0.053807936 + 1987200 -33.7916 -33.799319 0.0077193286 406.26138 -0.059317003 + 1987300 -33.797215 -33.801452 0.004237134 222.99658 -0.095832484 + 1987400 -33.797114 -33.801433 0.0043191577 227.31342 -0.043778522 + 1987500 -33.794273 -33.797936 0.0036630158 192.78125 -0.036394217 + 1987600 -33.792065 -33.79705 0.0049848485 262.34813 0.10655338 + 1987700 -33.791212 -33.799947 0.0087351797 459.72472 0.38161123 + 1987800 -33.792563 -33.79831 0.005747003 302.45964 0.35773774 + 1987900 -33.795687 -33.800009 0.0043221753 227.47223 0.33034901 + 1988000 -33.798441 -33.801033 0.0025921697 136.42358 0.295691 + 1988100 -33.797996 -33.802961 0.0049646999 261.28773 0.25541459 + 1988200 -33.7921 -33.796054 0.003953815 208.08575 0.018769925 + 1988300 -33.789461 -33.798261 0.0087999281 463.13237 -0.18554667 + 1988400 -33.792796 -33.796772 0.0039753942 209.22145 -0.45746681 + 1988500 -33.794402 -33.802034 0.0076317168 401.65045 -0.42755201 + 1988600 -33.796001 -33.797464 0.0014625115 76.970676 -0.52508998 + 1988700 -33.793624 -33.801458 0.0078335527 412.27289 -0.23006538 + 1988800 -33.790474 -33.796694 0.0062196412 327.33417 0.086021088 + 1988900 -33.789947 -33.802098 0.012151176 639.50555 0.54245723 + 1989000 -33.795778 -33.79629 0.00051144164 26.916718 0.4766343 + 1989100 -33.794804 -33.801468 0.0066637888 350.70926 0.69813012 + 1989200 -33.794363 -33.79748 0.0031167886 164.0338 0.58738447 + 1989300 -33.790904 -33.801917 0.011012229 579.56381 0.53795839 + 1989400 -33.793493 -33.795143 0.0016503462 86.856247 0.082855878 + 1989500 -33.79291 -33.803054 0.010143693 533.8535 0.031547786 + 1989600 -33.794997 -33.797727 0.0027295475 143.65365 -0.31251969 + 1989700 -33.792952 -33.800929 0.0079763002 419.78556 -0.35502099 + 1989800 -33.790933 -33.791591 0.00065836208 34.649009 -0.56760431 + 1989900 -33.783518 -33.802692 0.019173598 1009.0894 -0.027806815 + 1990000 -33.792373 -33.795425 0.0030520591 160.62715 -0.20051171 + 1990100 -33.792911 -33.801185 0.0082736394 435.43426 0.001857014 + 1990200 -33.795115 -33.796858 0.0017431231 91.739013 0.041297652 + 1990300 -33.793921 -33.803507 0.0095853926 504.47066 0.36532107 + 1990400 -33.794546 -33.796631 0.0020850786 109.73583 0.25317012 + 1990500 -33.790093 -33.799372 0.0092792037 488.35621 0.41718467 + 1990600 -33.788707 -33.792958 0.0042516498 223.76054 0.33922949 + 1990700 -33.790646 -33.802391 0.011744911 618.12421 0.4303003 + 1990800 -33.796193 -33.798011 0.0018181924 95.689846 0.12510647 + 1990900 -33.795118 -33.800898 0.0057806828 304.23218 0.10446603 + 1991000 -33.794016 -33.798647 0.0046304754 243.69779 -0.0071945312 + 1991100 -33.789111 -33.800925 0.01181389 621.75447 0.027024344 + 1991200 -33.784168 -33.789556 0.0053881243 283.57218 -0.32347797 + 1991300 -33.788958 -33.797758 0.0088002636 463.15003 -0.29062368 + 1991400 -33.794175 -33.799297 0.0051221309 269.57318 -0.27596027 + 1991500 -33.794111 -33.800344 0.0062332119 328.04838 -0.17986406 + 1991600 -33.793942 -33.797832 0.0038900645 204.73063 -0.095872735 + 1991700 -33.793036 -33.799905 0.0068694647 361.5338 0.1837122 + 1991800 -33.793633 -33.8007 0.0070670063 371.93024 0.36884927 + 1991900 -33.795397 -33.799395 0.0039972269 210.37049 0.38239493 + 1992000 -33.796353 -33.799639 0.0032862705 172.95349 0.37995431 + 1992100 -33.795378 -33.79986 0.0044827489 235.92308 0.36458541 + 1992200 -33.788625 -33.799943 0.011317782 595.64477 0.36118159 + 1992300 -33.789979 -33.795057 0.0050779938 267.25028 -0.051953628 + 1992400 -33.7933 -33.799988 0.0066874646 351.9553 -0.18177211 + 1992500 -33.79487 -33.799292 0.0044222425 232.73868 -0.26654736 + 1992600 -33.793517 -33.801273 0.0077561173 408.19754 -0.23133162 + 1992700 -33.793364 -33.795171 0.0018065833 95.078868 -0.32599805 + 1992800 -33.787132 -33.799816 0.012683648 667.52906 0.087344292 + 1992900 -33.784937 -33.793014 0.0080763352 425.05032 0.27400864 + 1993000 -33.791665 -33.80147 0.009805166 516.03714 0.45559503 + 1993100 -33.795126 -33.796104 0.00097803906 51.473323 0.33803406 + 1993200 -33.794124 -33.802636 0.0085116011 447.95798 0.49900461 + 1993300 -33.794527 -33.797551 0.0030247029 159.18742 0.31128174 + 1993400 -33.787912 -33.800192 0.012279662 646.26763 0.28997392 + 1993500 -33.787814 -33.789304 0.0014897951 78.406589 -0.2205508 + 1993600 -33.792181 -33.803483 0.011302242 594.82691 -0.12859943 + 1993700 -33.795955 -33.797881 0.0019263658 101.38292 -0.37624023 + 1993800 -33.793797 -33.801489 0.007692014 404.82383 -0.27893767 + 1993900 -33.793448 -33.794614 0.0011655932 61.344128 -0.26724605 + 1994000 -33.78626 -33.803891 0.017631281 927.91861 0.33551036 + 1994100 -33.789463 -33.791418 0.0019547243 102.8754 0.2148355 + 1994200 -33.793947 -33.801527 0.0075802184 398.94013 0.48201498 + 1994300 -33.796415 -33.79783 0.001415293 74.485608 0.41822211 + 1994400 -33.793598 -33.803819 0.010221309 537.93835 0.537737 + 1994500 -33.791406 -33.792835 0.0014284469 75.177885 0.16995808 + 1994600 -33.785545 -33.799752 0.014207668 747.73692 0.15456984 + 1994700 -33.794453 -33.79707 0.0026168978 137.725 -0.26471494 + 1994800 -33.795485 -33.803201 0.0077157779 406.07451 -0.21968257 + 1994900 -33.795863 -33.796722 0.00085891577 45.203971 -0.39804943 + 1995000 -33.791467 -33.801133 0.009666338 508.73074 -0.11439244 + 1995100 -33.78978 -33.79521 0.005429442 285.74669 0.056479214 + 1995200 -33.792023 -33.80171 0.009687554 509.84732 0.31098241 + 1995300 -33.797435 -33.798473 0.00103787 54.62217 0.20982828 + 1995400 -33.795993 -33.801924 0.0059311429 312.15076 0.37479001 + 1995500 -33.793082 -33.798256 0.0051737977 272.29236 0.34697141 + 1995600 -33.789592 -33.79935 0.0097575143 513.52928 0.3156051 + 1995700 -33.792235 -33.795463 0.0032280641 169.89014 0.047375455 + 1995800 -33.795114 -33.801368 0.0062544508 329.16616 0.034665769 + 1995900 -33.798264 -33.801463 0.0031986551 168.34236 -0.06849231 + 1996000 -33.797373 -33.800769 0.0033964 178.7495 -0.10292446 + 1996100 -33.794275 -33.798486 0.0042108648 221.61406 -0.099658743 + 1996200 -33.790965 -33.799423 0.0084579023 445.13186 0.076425276 + 1996300 -33.790492 -33.798892 0.0083995241 442.05946 0.13975876 + 1996400 -33.794182 -33.797919 0.0037367095 196.65969 0.056606375 + 1996500 -33.796495 -33.800879 0.0043839985 230.72593 0.13616268 + 1996600 -33.796263 -33.80063 0.0043669275 229.8275 0.17672905 + 1996700 -33.794075 -33.800611 0.0065362831 343.99875 0.18426705 + 1996800 -33.793468 -33.796176 0.0027086487 142.55377 0.068200006 + 1996900 -33.791544 -33.800866 0.0093219229 490.60449 0.19842423 + 1997000 -33.79424 -33.798638 0.004397211 231.42129 0.062180385 + 1997100 -33.797447 -33.802008 0.0045611701 240.05031 0.022637023 + 1997200 -33.798104 -33.799087 0.00098290263 51.729289 -0.071173841 + 1997300 -33.793365 -33.802666 0.0093009659 489.50154 0.11906975 + 1997400 -33.792083 -33.79585 0.0037665182 198.22849 0.027685285 + 1997500 -33.790885 -33.800526 0.0096413716 507.41679 0.11859754 + 1997600 -33.794298 -33.795753 0.0014553773 76.595211 -0.019050433 + 1997700 -33.794778 -33.803582 0.0088040474 463.34916 0.19419757 + 1997800 -33.799244 -33.800175 0.00093077213 48.985707 0.024631633 + 1997900 -33.799463 -33.80289 0.0034274905 180.38577 0.066235389 + 1998000 -33.798574 -33.799438 0.00086361716 45.451401 0.022955923 + 1998100 -33.794466 -33.803957 0.009490358 499.46908 0.20034972 + 1998200 -33.79422 -33.795402 0.0011823494 62.225996 -0.016956219 + 1998300 -33.790666 -33.80107 0.01040349 547.52638 0.13841367 + 1998400 -33.792608 -33.794806 0.0021983403 115.69669 -0.014115933 + 1998500 -33.79397 -33.80339 0.0094199709 495.76466 0.14146107 + 1998600 -33.797624 -33.798036 0.00041153417 21.658677 -0.05869305 + 1998700 -33.795844 -33.802429 0.0065854923 346.58858 0.079755023 + 1998800 -33.791843 -33.795986 0.0041430473 218.04488 0.089271699 + 1998900 -33.787513 -33.80228 0.014766822 777.16468 0.33386201 + 1999000 -33.792701 -33.793752 0.0010510947 55.318176 0.031662733 + 1999100 -33.792502 -33.801104 0.0086019328 452.71205 0.22277278 + 1999200 -33.794392 -33.797629 0.0032377605 170.40045 0.13958104 + 1999300 -33.792738 -33.801405 0.0086663375 456.10161 0.20995447 + 1999400 -33.792981 -33.795462 0.0024817188 130.61065 0.035508096 + 1999500 -33.792353 -33.801869 0.0095155086 500.79273 0.17574971 + 1999600 -33.796143 -33.79966 0.0035173812 185.11663 0.026886264 + 1999700 -33.796509 -33.801248 0.0047394308 249.43202 0.010310493 + 1999800 -33.795479 -33.797858 0.0023789019 125.19949 -0.053890391 + 1999900 -33.789298 -33.800292 0.010993814 578.59461 0.15997757 + 2000000 -33.790221 -33.797052 0.00683166 359.54417 0.087368715 + 2000100 -33.792799 -33.798926 0.0061267725 322.44657 0.06246895 + 2000200 -33.795107 -33.799087 0.0039794126 209.43294 0.051537313 + 2000300 -33.794725 -33.80121 0.0064853884 341.32021 0.14179937 + 2000400 -33.793861 -33.799251 0.0053892732 283.63264 0.11053063 + 2000500 -33.793172 -33.79758 0.0044080243 231.99039 0.067383889 + 2000600 -33.79271 -33.799374 0.0066636115 350.69993 0.14018744 + 2000622 -33.79372 -33.796595 0.0028745738 151.28625 0.079498102 +Loop time of 5.98659 on 1 procs for 1000000 steps with 14 atoms + +Performance: 14432247.192 fs/day, 0.000 hours/fs, 167039.898 timesteps/s, 2.339 Matom-step/s +98.2% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 4.954 | 4.954 | 4.954 | 0.0 | 82.75 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.059528 | 0.059528 | 0.059528 | 0.0 | 0.99 +Output | 0.24858 | 0.24858 | 0.24858 | 0.0 | 4.15 +Modify | 0.60312 | 0.60312 | 0.60312 | 0.0 | 10.07 +Other | | 0.1214 | | | 2.03 + +Nlocal: 14 ave 14 max 14 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 91 ave 91 max 91 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 91 +Ave neighs/atom = 6.5 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:11 diff --git a/examples/PACKAGES/eff/CH4/log.12Aug24.ch4_ionized.dynamics.g++.4 b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4_ionized.dynamics.g++.4 new file mode 100644 index 0000000000..e892cc2ecb --- /dev/null +++ b/examples/PACKAGES/eff/CH4/log.12Aug24.ch4_ionized.dynamics.g++.4 @@ -0,0 +1,20200 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +variable sname index ch4_ionized + +units electron +newton on +boundary f f f + +atom_style electron + +read_data data.${sname} +read_data data.ch4_ionized +Reading data file ... + orthogonal box = (-5000 -5000 -5000) to (5000 5000 5000) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 14 atoms + read_data CPU = 0.001 seconds + +pair_style eff/cut 5000.0 +pair_coeff * * + +comm_modify vel yes + +# minimize + +min_style cg +min_modify line quadratic +minimize 0 1.0e-6 10000 100000 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- EFF package: doi:10.1002/jcc.21637 + +@Article{Jaramillo-Botero11, + author = {A. Jaramillo-Botero and J. Su and A. Qi and Goddard, III, W. A.}, + title = {Large-Scale, Long-Term Nonadiabatic Electron Molecular Dynamics for Describing Material Properties and Phenomena in Extreme Environments}, + journal = {J.~Comp.\ Chem.}, + year = 2011, + volume = 32, + number = 3, + pages = {497--512} +} + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 5002 + ghost atom cutoff = 5002 + binsize = 2501, bins = 4 4 4 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair eff/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.363 | 5.363 | 5.363 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 0 -33.560773 0 -33.560773 -2.8388238 + 486 0 -33.804012 0 -33.804012 -1.9828677e-05 +Loop time of 0.00792089 on 4 procs for 486 steps with 14 atoms + +97.7% CPU use with 4 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = force tolerance + Energy initial, next-to-last, final = + -33.5607729657428 -33.8040121870296 -33.8040121870296 + Force two-norm initial, final = 1.9929927 9.6909031e-07 + Force max component initial, final = 1.0150646 4.1050737e-07 + Final line search alpha, max atom move = 1 4.1050737e-07 + Iterations, force evaluations = 486 961 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.00066957 | 0.0016816 | 0.0030093 | 2.4 | 21.23 +Neigh | 1.122e-06 | 1.3425e-06 | 1.683e-06 | 0.0 | 0.02 +Comm | 0.0022696 | 0.0039923 | 0.0052638 | 2.0 | 50.40 +Output | 0 | 0 | 0 | 0.0 | 0.00 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.002246 | | | 28.35 + +Nlocal: 3.5 ave 6 max 2 min +Histogram: 1 0 2 0 0 0 0 0 0 1 +Nghost: 10.5 ave 12 max 8 min +Histogram: 1 0 0 0 0 0 0 2 0 1 +Neighs: 22.75 ave 49 max 1 min +Histogram: 1 1 0 0 0 0 1 0 0 1 + +Total # of neighbors = 91 +Ave neighs/atom = 6.5 +Neighbor list builds = 1 +Dangerous builds = 0 + +# dynamics +compute effTemp all temp/eff + +thermo 100 +thermo_style custom step etotal pe ke temp press +thermo_modify temp effTemp + +# equilibrate +timestep 0.001 +fix 1 all nvt/eff temp 300.0 300.0 0.1 + +# the custom dump includes the radii +compute 1 all property/atom spin eradius +dump 1 all custom 100 ${sname}.nvt.lammpstrj id type x y z c_1[1] c_1[2] +dump 1 all custom 100 ch4_ionized.nvt.lammpstrj id type x y z c_1[1] c_1[2] +dump 2 all xyz 100 ${sname}.nvt.xyz +dump 2 all xyz 100 ch4_ionized.nvt.xyz + +run 1000000 +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Per MPI rank memory allocation (min/avg/max) = 3.879 | 3.879 | 3.879 Mbytes + Step TotEng PotEng KinEng Temp Press + 486 -33.804012 -33.804012 0 0 -1.9828677e-05 + 500 -33.804012 -33.804012 4.9216687e-16 2.5902303e-11 -1.9822045e-05 + 600 -33.804012 -33.804012 5.407664e-15 2.8460053e-10 -1.9344763e-05 + 700 -33.804012 -33.804012 3.5168354e-14 1.8508791e-09 -1.795956e-05 + 800 -33.804012 -33.804012 1.633087e-13 8.5947913e-09 -1.4702717e-05 + 900 -33.804012 -33.804012 6.8036822e-13 3.5807172e-08 -7.4255519e-06 + 1000 -33.804012 -33.804012 2.9335492e-12 1.5439008e-07 7.3856316e-06 + 1100 -33.804012 -33.804012 1.34395e-11 7.0730891e-07 3.873764e-05 + 1200 -33.804012 -33.804012 6.3726301e-11 3.3538584e-06 0.0001054369 + 1300 -33.804012 -33.804012 3.1044958e-10 1.6338684e-05 0.00024667796 + 1400 -33.804012 -33.804012 1.5605509e-09 8.2130404e-05 0.00055508026 + 1500 -33.804012 -33.804012 8.1005913e-09 0.00042632689 0.001234583 + 1600 -33.804012 -33.804012 4.3294621e-08 0.0022785573 0.0027449337 + 1700 -33.804012 -33.804012 2.3741868e-07 0.012495134 0.0061628213 + 1800 -33.804011 -33.804012 1.3323071e-06 0.070118132 0.013967491 + 1900 -33.804004 -33.804012 7.6328618e-06 0.40171071 0.031993014 + 2000 -33.803966 -33.804011 4.4513406e-05 2.3427009 0.07431374 + 2100 -33.803744 -33.804006 0.00026207279 13.792657 0.17571318 + 2200 -33.80248 -33.803976 0.001496458 78.757248 0.42566855 + 2300 -33.797142 -33.80383 0.0066877912 351.97249 1.0204871 + 2400 -33.792787 -33.803353 0.010566166 556.08791 1.8877551 + 2500 -33.79845 -33.80275 0.004300138 226.31243 2.3967713 + 2600 -33.799764 -33.802324 0.0025602747 134.74497 2.7026533 + 2700 -33.797589 -33.801975 0.004385766 230.81895 2.9526619 + 2800 -33.792463 -33.801585 0.0091225371 480.11099 3.1933729 + 2900 -33.794471 -33.801233 0.0067611624 355.83394 3.173445 + 3000 -33.797509 -33.801059 0.0035502344 186.84567 3.0106642 + 3100 -33.797117 -33.801017 0.0039003624 205.27259 2.8042649 + 3200 -33.792666 -33.801017 0.0083510271 439.50711 2.4836192 + 3300 -33.792962 -33.800896 0.0079333084 417.52295 1.8700875 + 3400 -33.797458 -33.800667 0.0032085592 168.86361 1.2853908 + 3500 -33.797442 -33.800419 0.0029761841 156.63391 0.88703749 + 3600 -33.795925 -33.800068 0.0041426927 218.02622 0.47654461 + 3700 -33.793036 -33.799508 0.0064720739 340.61947 0.0095225483 + 3800 -33.791733 -33.798695 0.0069616594 366.38592 -0.52270389 + 3900 -33.793286 -33.797856 0.0045695512 240.49141 -0.98589215 + 4000 -33.795058 -33.797299 0.0022410297 117.94339 -1.2283444 + 4100 -33.79404 -33.797063 0.0030231532 159.10586 -1.2087189 + 4200 -33.789385 -33.797075 0.0076897034 404.70223 -0.87019213 + 4300 -33.789954 -33.797289 0.0073345025 386.00832 -0.40722569 + 4400 -33.793205 -33.797559 0.0043537665 229.13485 0.034568955 + 4500 -33.79391 -33.797843 0.0039332717 207.00458 0.52031734 + 4600 -33.78906 -33.798162 0.009102238 479.04267 1.2506757 + 4700 -33.787381 -33.798366 0.010985121 578.13709 2.2618458 + 4800 -33.793643 -33.798271 0.0046276438 243.54876 2.8177553 + 4900 -33.793833 -33.79811 0.0042770773 225.09876 3.2945369 + 5000 -33.791369 -33.797907 0.0065383677 344.10846 3.7741249 + 5100 -33.788469 -33.797628 0.0091588068 482.01983 4.2466074 + 5200 -33.793761 -33.797395 0.0036339636 191.25226 4.3948755 + 5300 -33.79523 -33.797403 0.0021729407 114.35993 4.3855756 + 5400 -33.793252 -33.797674 0.0044223872 232.74629 4.25555 + 5500 -33.790806 -33.798246 0.0074400925 391.56543 3.8893252 + 5600 -33.79232 -33.798891 0.0065712693 345.84004 3.2976736 + 5700 -33.794652 -33.799415 0.0047623605 250.63878 2.6889667 + 5800 -33.79565 -33.799822 0.0041715855 219.54682 2.1269259 + 5900 -33.795325 -33.800141 0.0048165726 253.49192 1.5784103 + 6000 -33.792506 -33.800375 0.0078693489 414.15682 0.97359901 + 6100 -33.793409 -33.800412 0.0070026215 368.54172 0.23576439 + 6200 -33.796766 -33.800294 0.0035279789 185.67438 -0.34495693 + 6300 -33.796905 -33.800172 0.0032667307 171.92512 -0.67261555 + 6400 -33.790888 -33.800034 0.0091466937 481.38233 -0.84031448 + 6500 -33.791433 -33.799816 0.0083832277 441.2018 -1.1064871 + 6600 -33.794605 -33.799662 0.0050571405 266.15279 -1.2559892 + 6700 -33.794972 -33.799639 0.0046672307 245.63219 -1.2059807 + 6800 -33.792997 -33.799746 0.0067490417 355.19604 -0.97009659 + 6900 -33.787332 -33.79996 0.01262788 664.59409 -0.47430453 + 7000 -33.795237 -33.800123 0.0048851834 257.10285 -0.20622977 + 7100 -33.796607 -33.800237 0.0036307576 191.08353 0.073547281 + 7200 -33.794618 -33.800376 0.005758633 303.07172 0.4504009 + 7300 -33.791427 -33.800492 0.0090647867 477.07164 0.93965023 + 7400 -33.796165 -33.800487 0.0043212142 227.42165 1.2229133 + 7500 -33.798288 -33.800459 0.002170624 114.23801 1.3569293 + 7600 -33.796911 -33.800466 0.0035549632 187.09454 1.4730942 + 7700 -33.794294 -33.800488 0.0061931959 325.94237 1.5435264 + 7800 -33.793687 -33.800479 0.0067918668 357.44989 1.4819101 + 7900 -33.79538 -33.800438 0.0050577538 266.18507 1.2930353 + 8000 -33.797849 -33.800412 0.0025635942 134.91967 1.046828 + 8100 -33.798773 -33.800442 0.0016693107 87.854332 0.82301829 + 8200 -33.795979 -33.800551 0.0045719838 240.61943 0.56651569 + 8300 -33.792797 -33.800703 0.0079066872 416.1219 0.070339145 + 8400 -33.794934 -33.800742 0.0058081245 305.67641 -0.56110154 + 8500 -33.796993 -33.800687 0.0036948836 194.45843 -1.0653414 + 8600 -33.79644 -33.800591 0.0041508446 218.45525 -1.4381343 + 8700 -33.789124 -33.800363 0.011238163 591.45448 -1.7789293 + 8800 -33.793201 -33.799916 0.0067153352 353.4221 -2.3573273 + 8900 -33.795618 -33.799527 0.0039088994 205.72189 -2.6793941 + 9000 -33.794732 -33.799189 0.0044576812 234.60379 -2.8006022 + 9100 -33.792194 -33.798841 0.0066473256 349.84282 -2.7764113 + 9200 -33.791655 -33.798483 0.0068282465 359.36452 -2.6634721 + 9300 -33.792864 -33.798195 0.0053309699 280.56419 -2.4759626 + 9400 -33.792855 -33.797995 0.0051403368 270.53134 -2.1690007 + 9500 -33.792095 -33.797854 0.0057589733 303.08963 -1.7440053 + 9600 -33.791066 -33.797724 0.0066572072 350.36288 -1.2109012 + 9700 -33.791597 -33.797564 0.0059664538 314.00914 -0.66031372 + 9800 -33.79364 -33.7974 0.0037593563 197.85157 -0.21197061 + 9900 -33.794052 -33.797281 0.0032286909 169.92312 0.1626707 + 10000 -33.789709 -33.797171 0.0074616712 392.7011 0.65138854 + 10100 -33.788217 -33.796944 0.0087279623 459.34487 1.1593074 + 10200 -33.792061 -33.796694 0.0046323611 243.79704 1.3969777 + 10300 -33.792392 -33.796543 0.0041511665 218.47219 1.5309717 + 10400 -33.7912 -33.796492 0.0052925614 278.54279 1.5658721 + 10500 -33.790338 -33.79654 0.0062020058 326.40604 1.4580398 + 10600 -33.790578 -33.796673 0.0060951339 320.78146 1.2015353 + 10700 -33.792152 -33.796864 0.0047117412 247.97474 0.83501963 + 10800 -33.794951 -33.797073 0.0021216901 111.66266 0.46165798 + 10900 -33.794767 -33.797331 0.0025635832 134.9191 0.16119729 + 11000 -33.790175 -33.797765 0.0075900335 399.45669 -0.23120586 + 11100 -33.790305 -33.798222 0.007916879 416.65828 -0.88523667 + 11200 -33.793355 -33.798472 0.0051174987 269.32939 -1.4842421 + 11300 -33.794118 -33.798609 0.0044905804 236.33524 -1.9068137 + 11400 -33.792263 -33.798705 0.0064412296 338.99617 -2.2178657 + 11500 -33.783529 -33.798737 0.015207896 800.378 -2.4384536 + 11600 -33.793315 -33.798634 0.0053190056 279.93452 -2.9045944 + 11700 -33.794397 -33.7986 0.0042035931 221.23136 -2.9923265 + 11800 -33.792761 -33.798687 0.0059258059 311.86988 -2.879639 + 11900 -33.790071 -33.798906 0.0088351112 464.98402 -2.5744698 + 12000 -33.794396 -33.799166 0.0047701018 251.0462 -2.3030645 + 12100 -33.796718 -33.799396 0.0026787205 140.97867 -2.0380653 + 12200 -33.79526 -33.799704 0.0044441158 233.88985 -1.6189712 + 12300 -33.792808 -33.800093 0.007285441 383.42626 -0.99607506 + 12400 -33.793776 -33.800374 0.0065979442 347.24392 -0.37812764 + 12500 -33.795165 -33.800476 0.0053106689 279.49577 0.15867087 + 12600 -33.79543 -33.800445 0.0050144822 263.90773 0.64329885 + 12700 -33.793364 -33.800292 0.0069280452 364.61684 1.1407226 + 12800 -33.786481 -33.799865 0.013383426 704.35778 1.8314768 + 12900 -33.794713 -33.799308 0.0045946823 241.81403 2.0759884 + 13000 -33.795486 -33.798937 0.0034515656 181.65282 2.2350719 + 13100 -33.793004 -33.79865 0.0056461186 297.15018 2.3347272 + 13200 -33.79004 -33.798387 0.0083470463 439.2976 2.3141104 + 13300 -33.792482 -33.7982 0.0057177843 300.92189 2.0758331 + 13400 -33.794527 -33.798153 0.0036265128 190.86013 1.7966922 + 13500 -33.796257 -33.798232 0.0019748648 103.93537 1.5056671 + 13600 -33.796391 -33.798411 0.0020199588 106.30863 1.2570636 + 13700 -33.792637 -33.798744 0.0061065467 321.3821 0.95713951 + 13800 -33.790261 -33.799085 0.0088243096 464.41554 0.43500672 + 13900 -33.794365 -33.799147 0.0047820534 251.67521 -0.14906772 + 14000 -33.795721 -33.799061 0.003339449 175.75222 -0.50769125 + 14100 -33.793186 -33.798894 0.0057082135 300.41819 -0.72262161 + 14200 -33.78682 -33.798446 0.011625341 611.83131 -0.89913344 + 14300 -33.791425 -33.797801 0.0063759647 335.56133 -1.1844195 + 14400 -33.793191 -33.797324 0.0041328533 217.50838 -1.2420418 + 14500 -33.792249 -33.797091 0.0048418657 254.82307 -1.0800212 + 14600 -33.787355 -33.797109 0.0097538964 513.33887 -0.59974949 + 14700 -33.790766 -33.797328 0.0065625743 345.38243 -0.085775834 + 14800 -33.794537 -33.797628 0.0030911472 162.68432 0.29930724 + 14900 -33.793381 -33.798105 0.004724149 248.62775 0.82637118 + 15000 -33.790875 -33.798721 0.0078459988 412.92792 1.5494666 + 15100 -33.792941 -33.799169 0.0062277124 327.75895 2.2276451 + 15200 -33.796726 -33.799313 0.0025871049 136.15702 2.6303068 + 15300 -33.796419 -33.799342 0.0029237098 153.87224 2.9571078 + 15400 -33.79462 -33.799263 0.0046423938 244.32504 3.3006817 + 15500 -33.793262 -33.798982 0.0057204103 301.06009 3.5966177 + 15600 -33.792137 -33.79847 0.006332808 333.29004 3.8079914 + 15700 -33.791607 -33.797781 0.0061739296 324.92841 3.9017325 + 15800 -33.7911 -33.797042 0.0059421959 312.73247 3.8773972 + 15900 -33.79005 -33.79637 0.0063195677 332.59321 3.7413688 + 16000 -33.789191 -33.795883 0.0066925641 352.22368 3.4794182 + 16100 -33.789945 -33.795727 0.0057821314 304.30842 3.1001479 + 16200 -33.791696 -33.795959 0.0042628641 224.35074 2.6909477 + 16300 -33.792298 -33.796529 0.00423108 222.67797 2.3253637 + 16400 -33.790073 -33.797436 0.0073633705 387.52762 1.9828629 + 16500 -33.789351 -33.798572 0.0092213197 485.30983 1.5366575 + 16600 -33.795336 -33.799321 0.0039847471 209.71369 1.0864093 + 16700 -33.795739 -33.799797 0.0040584416 213.59216 0.87640248 + 16800 -33.793693 -33.800184 0.0064909724 341.61409 0.7523821 + 16900 -33.792107 -33.80035 0.0082424551 433.79306 0.64821536 + 17000 -33.796977 -33.80022 0.0032436766 170.7118 0.48606759 + 17100 -33.798018 -33.800075 0.0020571646 108.26674 0.48082908 + 17200 -33.795501 -33.799957 0.0044559554 234.51296 0.62991319 + 17300 -33.792648 -33.79981 0.0071623881 376.9501 0.90410448 + 17400 -33.793519 -33.799671 0.006152509 323.80106 1.1602179 + 17500 -33.795419 -33.799643 0.0042248131 222.34815 1.376681 + 17600 -33.796675 -33.799776 0.0031010918 163.20769 1.5582772 + 17700 -33.795992 -33.800078 0.0040856454 215.02387 1.7387421 + 17800 -33.79091 -33.800609 0.009699188 510.45962 2.013595 + 17900 -33.79408 -33.801131 0.007051155 371.096 2.0914326 + 18000 -33.797447 -33.80141 0.0039633287 208.58646 2.0595402 + 18100 -33.796865 -33.8016 0.0047347785 249.18717 2.0188812 + 18200 -33.795248 -33.801701 0.0064528806 339.60935 1.9009071 + 18300 -33.795127 -33.801632 0.0065050952 342.35736 1.656202 + 18400 -33.798658 -33.801435 0.00277703 146.15261 1.3127194 + 18500 -33.799706 -33.801292 0.0015857059 83.454288 1.0667964 + 18600 -33.797585 -33.801185 0.0035998065 189.4546 0.79699254 + 18700 -33.794686 -33.801048 0.0063618088 334.81632 0.33689338 + 18800 -33.794158 -33.800878 0.0067194382 353.63804 -0.25910882 + 18900 -33.795859 -33.800732 0.0048731005 256.46693 -0.83900557 + 19000 -33.797521 -33.800682 0.0031611531 166.36867 -1.2707642 + 19100 -33.79705 -33.80075 0.003699415 194.69691 -1.5427314 + 19200 -33.791414 -33.800939 0.0095249948 501.29198 -1.7107177 + 19300 -33.793674 -33.801096 0.0074215965 390.592 -2.0026613 + 19400 -33.796973 -33.801139 0.0041655869 219.23112 -2.1715571 + 19500 -33.796556 -33.801139 0.0045833911 241.21979 -2.1632218 + 19600 -33.795091 -33.801072 0.0059813596 314.79362 -2.0436234 + 19700 -33.794562 -33.800889 0.006326544 332.96037 -1.8594214 + 19800 -33.795358 -33.800607 0.0052492184 276.26168 -1.6506665 + 19900 -33.797681 -33.80033 0.0026485959 139.39324 -1.4708793 + 20000 -33.798119 -33.800168 0.0020493524 107.85559 -1.2851174 + 20100 -33.794981 -33.800077 0.005095792 268.18699 -0.96025409 + 20200 -33.79198 -33.800012 0.0080317534 422.70402 -0.51416894 + 20300 -33.794236 -33.799975 0.0057387599 302.02581 -0.19228385 + 20400 -33.796661 -33.800009 0.0033482807 176.21703 -0.0028982066 + 20500 -33.796476 -33.80014 0.0036641321 192.84 0.13553473 + 20600 -33.789469 -33.800419 0.010950311 576.30508 0.35988969 + 20700 -33.793492 -33.800681 0.007189031 378.35229 0.30018716 + 20800 -33.796594 -33.800812 0.0042175994 221.96849 0.17735128 + 20900 -33.796094 -33.800907 0.0048124656 253.27577 0.045229572 + 21000 -33.793435 -33.800955 0.0075197085 395.75555 -0.15445009 + 21100 -33.790946 -33.800858 0.0099118253 521.65052 -0.4886656 + 21200 -33.796693 -33.800625 0.0039316774 206.92067 -0.97235503 + 21300 -33.797692 -33.800436 0.00274394 144.41112 -1.2623651 + 21400 -33.794887 -33.800245 0.0053579991 281.98671 -1.5158763 + 21500 -33.791768 -33.799947 0.0081792932 430.4689 -1.8836067 + 21600 -33.793814 -33.799602 0.0057879211 304.61312 -2.3197599 + 21700 -33.794903 -33.79932 0.0044173517 232.48128 -2.6182744 + 21800 -33.793737 -33.799101 0.0053637405 282.28888 -2.7852476 + 21900 -33.781519 -33.798827 0.017308588 910.93557 -2.6949851 + 22000 -33.790987 -33.798403 0.0074160856 390.30197 -2.9638904 + 22100 -33.793668 -33.798123 0.0044555142 234.48974 -2.972639 + 22200 -33.793403 -33.797951 0.0045477662 239.34488 -2.8089391 + 22300 -33.790223 -33.797833 0.0076100087 400.50797 -2.4305111 + 22400 -33.789438 -33.797701 0.0082624338 434.84452 -1.920982 + 22500 -33.794625 -33.797598 0.0029725011 156.44008 -1.5755819 + 22600 -33.795016 -33.797613 0.0025975905 136.70887 -1.225425 + 22700 -33.793015 -33.79775 0.0047344508 249.16992 -0.72900125 + 22800 -33.791521 -33.797967 0.0064456632 339.22951 -0.12088982 + 22900 -33.791938 -33.798182 0.00624484 328.66036 0.45152251 + 23000 -33.793849 -33.798368 0.0045190533 237.83374 0.88400588 + 23100 -33.796101 -33.798545 0.0024440078 128.62595 1.1331514 + 23200 -33.796363 -33.798764 0.0024009322 126.35892 1.2675463 + 23300 -33.791498 -33.799155 0.0076566437 402.96233 1.4170607 + 23400 -33.791188 -33.799663 0.0084750399 446.03379 1.3850043 + 23500 -33.795094 -33.800013 0.0049194022 258.90375 1.1906604 + 23600 -33.795828 -33.800281 0.0044538781 234.40363 0.99904493 + 23700 -33.794365 -33.800554 0.0061891556 325.72974 0.76648091 + 23800 -33.78713 -33.800849 0.013719743 722.05784 0.50132523 + 23900 -33.794213 -33.801039 0.0068256642 359.22862 -0.13786285 + 24000 -33.79737 -33.801124 0.0037546964 197.60632 -0.50094508 + 24100 -33.796355 -33.801262 0.0049074437 258.27438 -0.73139477 + 24200 -33.792753 -33.801493 0.0087398251 459.9692 -0.92234172 + 24300 -33.795315 -33.801746 0.0064314094 338.47934 -1.1968332 + 24400 -33.799272 -33.801934 0.0026622111 140.1098 -1.3575485 + 24500 -33.798627 -33.802152 0.0035253258 185.53475 -1.3180496 + 24600 -33.796511 -33.802443 0.0059316416 312.17701 -1.1364904 + 24700 -33.795797 -33.802706 0.0069092023 363.62516 -0.86881125 + 24800 -33.797505 -33.802833 0.0053282672 280.42195 -0.59059493 + 24900 -33.800281 -33.802843 0.0025621185 134.84201 -0.3481805 + 25000 -33.801555 -33.802825 0.0012690524 66.789098 -0.14620217 + 25100 -33.7999 -33.802812 0.0029116883 153.23956 0.15407836 + 25200 -33.796927 -33.802751 0.0058243158 306.52855 0.67111506 + 25300 -33.795802 -33.802572 0.0067702354 356.31145 1.2305633 + 25400 -33.796778 -33.802294 0.0055164746 290.32714 1.7088622 + 25500 -33.798168 -33.802014 0.0038468436 202.45595 2.0506708 + 25600 -33.797476 -33.801777 0.0043010757 226.36178 2.3164932 + 25700 -33.791904 -33.801492 0.0095883778 504.62777 2.6350741 + 25800 -33.794092 -33.801116 0.0070247078 369.7041 2.7214221 + 25900 -33.79725 -33.800841 0.0035918686 189.03684 2.6478339 + 26000 -33.796644 -33.80065 0.0040053977 210.80051 2.5232905 + 26100 -33.795068 -33.800462 0.0053945971 283.91283 2.2701517 + 26200 -33.793851 -33.800218 0.006367107 335.09516 1.8629508 + 26300 -33.793995 -33.79989 0.0058951874 310.25845 1.3354494 + 26400 -33.79587 -33.799536 0.0036659567 192.93603 0.78398324 + 26500 -33.796735 -33.799268 0.0025331144 133.31555 0.35043166 + 26600 -33.793836 -33.799044 0.005207914 274.08787 -0.042434363 + 26700 -33.790433 -33.798757 0.0083238271 438.07559 -0.59082226 + 26800 -33.792872 -33.798492 0.0056192981 295.73865 -1.1791319 + 26900 -33.794791 -33.798384 0.0035931228 189.10285 -1.5359666 + 27000 -33.793934 -33.798462 0.0045277655 238.29226 -1.6646939 + 27100 -33.787007 -33.79876 0.0117527 618.5341 -1.5433002 + 27200 -33.792919 -33.799089 0.006169898 324.71623 -1.5449016 + 27300 -33.79525 -33.799345 0.0040953508 215.53466 -1.3962119 + 27400 -33.794362 -33.79963 0.0052678966 277.2447 -1.0693231 + 27500 -33.791234 -33.79994 0.0087060715 458.19278 -0.52768966 + 27600 -33.792673 -33.80015 0.0074769522 393.50533 0.058490388 + 27700 -33.797267 -33.800206 0.0029386875 154.6605 0.4141739 + 27800 -33.79678 -33.800247 0.0034665282 182.44029 0.78960415 + 27900 -33.792712 -33.800297 0.0075850451 399.19416 1.3368174 + 28000 -33.792768 -33.800291 0.0075232817 395.94361 1.8664113 + 28100 -33.795031 -33.800252 0.0052210305 274.77818 2.2127232 + 28200 -33.795252 -33.800249 0.0049972399 263.00028 2.459997 + 28300 -33.794609 -33.800309 0.0057000785 299.99005 2.6096101 + 28400 -33.794245 -33.800432 0.0061865783 325.5941 2.6294807 + 28500 -33.794926 -33.800591 0.0056649078 298.13905 2.4997616 + 28600 -33.798207 -33.800745 0.0025379438 133.56972 2.2335837 + 28700 -33.7988 -33.800892 0.0020916684 110.08264 1.9847484 + 28800 -33.795627 -33.801102 0.0054755021 288.17079 1.6370116 + 28900 -33.7931 -33.801291 0.0081911743 431.0942 0.99576912 + 29000 -33.79587 -33.801276 0.0054058645 284.50583 0.23415772 + 29100 -33.797605 -33.80114 0.003534521 186.01869 -0.36053566 + 29200 -33.795592 -33.800944 0.0053517085 281.65564 -0.8313173 + 29300 -33.789205 -33.800513 0.011307789 595.11887 -1.4472201 + 29400 -33.79497 -33.799992 0.0050221749 264.31259 -2.1741741 + 29500 -33.796158 -33.799668 0.0035095404 184.70398 -2.5170656 + 29600 -33.794016 -33.799488 0.005471695 287.97043 -2.6317836 + 29700 -33.79014 -33.799404 0.0092647193 487.59391 -2.564759 + 29800 -33.794559 -33.799384 0.0048247362 253.92156 -2.5075849 + 29900 -33.797458 -33.79944 0.0019815461 104.287 -2.3666132 + 30000 -33.795882 -33.799598 0.0037165058 195.59638 -1.9946224 + 30100 -33.791658 -33.7998 0.0081422857 428.52123 -1.2860575 + 30200 -33.792691 -33.799806 0.0071143717 374.42304 -0.50922208 + 30300 -33.796156 -33.799618 0.0034622331 182.21424 0.048932735 + 30400 -33.796145 -33.799377 0.0032323819 170.11737 0.53683647 + 30500 -33.788691 -33.798943 0.010251932 539.55004 1.3113974 + 30600 -33.790743 -33.798168 0.0074248809 390.76486 2.0190635 + 30700 -33.793723 -33.797533 0.0038096431 200.49812 2.4212791 + 30800 -33.793328 -33.797124 0.0037956074 199.75943 2.6747813 + 30900 -33.788282 -33.796861 0.0085793775 451.52498 2.8802143 + 31000 -33.78889 -33.796768 0.0078776304 414.59266 2.8054147 + 31100 -33.791349 -33.796903 0.0055540647 292.30547 2.5317781 + 31200 -33.791789 -33.797237 0.0054484972 286.74955 2.1458075 + 31300 -33.791682 -33.797716 0.0060337898 317.55298 1.6126654 + 31400 -33.792953 -33.798221 0.0052686208 277.28281 0.93926908 + 31500 -33.795476 -33.798602 0.0031262151 164.52991 0.29573879 + 31600 -33.795222 -33.798906 0.0036842364 193.89808 -0.26377276 + 31700 -33.790374 -33.799199 0.0088252699 464.46608 -0.95140411 + 31800 -33.791372 -33.799286 0.0079135488 416.48302 -1.9646744 + 31900 -33.795201 -33.799158 0.0039570201 208.25444 -2.7545932 + 32000 -33.794908 -33.798997 0.004088289 215.163 -3.2804654 + 32100 -33.793148 -33.798828 0.0056796241 298.91355 -3.7192221 + 32200 -33.791211 -33.798666 0.0074548898 392.3442 -4.0904762 + 32300 -33.792998 -33.798569 0.0055706921 293.18056 -4.3786102 + 32400 -33.796416 -33.798619 0.002203625 115.97482 -4.4699195 + 32500 -33.796016 -33.798853 0.0028368281 149.29973 -4.2870348 + 32600 -33.791613 -33.799352 0.0077392311 407.30883 -3.7158598 + 32700 -33.792348 -33.799887 0.007538705 396.75532 -2.9803137 + 32800 -33.795135 -33.800175 0.0050394769 265.22317 -2.3048645 + 32900 -33.796021 -33.800269 0.0042478246 223.55922 -1.6470137 + 33000 -33.793473 -33.800202 0.0067280924 354.0935 -0.8563812 + 33100 -33.787468 -33.799749 0.012280978 646.33692 0.36023593 + 33200 -33.794534 -33.799044 0.0045097983 237.34666 1.130513 + 33300 -33.795011 -33.798468 0.0034565418 181.91471 1.6941971 + 33400 -33.792893 -33.797915 0.0050225402 264.33181 2.2291231 + 33500 -33.790253 -33.79736 0.0071077344 374.07372 2.7405014 + 33600 -33.790743 -33.796976 0.0062332841 328.05218 3.0355715 + 33700 -33.791623 -33.796901 0.0052777535 277.76346 3.0979606 + 33800 -33.791468 -33.797132 0.0056645049 298.11784 2.9650229 + 33900 -33.791309 -33.797609 0.0063005101 331.59023 2.6254524 + 34000 -33.792178 -33.798195 0.0060174094 316.69089 2.1001869 + 34100 -33.794186 -33.798725 0.004538421 238.85305 1.4810188 + 34200 -33.796136 -33.799115 0.0029794592 156.80628 0.88852793 + 34300 -33.796652 -33.799395 0.0027433922 144.38229 0.36028701 + 34400 -33.792492 -33.799638 0.0071455927 376.06617 -0.23296637 + 34500 -33.79052 -33.79968 0.0091599465 482.07981 -1.2000281 + 34600 -33.794931 -33.79943 0.0044987264 236.76396 -2.1021918 + 34700 -33.795419 -33.799133 0.0037137624 195.452 -2.6736096 + 34800 -33.793826 -33.798823 0.0049970528 262.99043 -3.1146725 + 34900 -33.792684 -33.798539 0.0058547312 308.12928 -3.4725557 + 35000 -33.792556 -33.798392 0.0058361474 307.15123 -3.6715657 + 35100 -33.792688 -33.798462 0.0057747102 303.91785 -3.6619194 + 35200 -33.793436 -33.798757 0.0053216932 280.07596 -3.4523501 + 35300 -33.79512 -33.799197 0.0040767199 214.55413 -3.1025707 + 35400 -33.79529 -33.799717 0.0044268338 232.98032 -2.5971972 + 35500 -33.792625 -33.800335 0.0077096721 405.75317 -1.8158958 + 35600 -33.792591 -33.800906 0.0083146 437.58998 -0.84067065 + 35700 -33.797817 -33.801154 0.003336631 175.60391 -0.17194034 + 35800 -33.797894 -33.801243 0.0033483162 176.2189 0.41525472 + 35900 -33.795465 -33.801242 0.0057771925 304.04849 1.1391969 + 36000 -33.794341 -33.801082 0.0067410133 354.77352 1.9338716 + 36100 -33.795165 -33.800794 0.0056288707 296.24244 2.5907629 + 36200 -33.795452 -33.800488 0.0050359363 265.03684 3.0930756 + 36300 -33.794071 -33.800225 0.0061538479 323.87153 3.4815623 + 36400 -33.786224 -33.799963 0.013739797 723.11326 3.9062671 + 36500 -33.794056 -33.799723 0.0056673812 298.26922 3.8636461 + 36600 -33.795757 -33.799674 0.0039167662 206.13591 3.7336981 + 36700 -33.79417 -33.799762 0.0055926411 294.33571 3.465883 + 36800 -33.791052 -33.799897 0.0088447167 465.48955 2.9586776 + 36900 -33.794981 -33.799895 0.0049141044 258.62493 2.1742164 + 37000 -33.797563 -33.799806 0.0022426313 118.02769 1.6060521 + 37100 -33.796241 -33.799661 0.0034205539 180.0207 1.0692606 + 37200 -33.793528 -33.799302 0.0057737759 303.86868 0.30036771 + 37300 -33.792775 -33.798612 0.0058367555 307.18324 -0.64870911 + 37400 -33.792555 -33.797666 0.0051110985 268.99255 -1.5757926 + 37500 -33.789362 -33.796469 0.007107809 374.07765 -2.4307461 + 37600 -33.784275 -33.794593 0.010318022 543.02828 -3.4723442 + 37700 -33.789029 -33.792918 0.0038889871 204.67392 -4.4022941 + 37800 -33.7896 -33.792148 0.0025483676 134.11831 -4.7420807 + 37900 -33.788018 -33.792096 0.004078703 214.6585 -4.6714345 + 38000 -33.785994 -33.792762 0.0067675198 356.16853 -4.1899485 + 38100 -33.786267 -33.793868 0.0076016748 400.06937 -3.396272 + 38200 -33.79035 -33.794818 0.00446795 235.14422 -2.6344883 + 38300 -33.791298 -33.795527 0.0042285362 222.54409 -1.8613159 + 38400 -33.789849 -33.79612 0.0062703583 330.00336 -0.90124554 + 38500 -33.783379 -33.796443 0.013064269 687.56083 0.48269174 + 38600 -33.789875 -33.796107 0.0062327742 328.02535 1.728559 + 38700 -33.792693 -33.7956 0.0029077402 153.03177 2.4623221 + 38800 -33.791377 -33.79505 0.0036736481 193.34082 3.1323235 + 38900 -33.787956 -33.794263 0.0063078451 331.97626 3.9392516 + 39000 -33.787365 -33.793346 0.0059812597 314.78836 4.6435827 + 39100 -33.787545 -33.792653 0.0051088205 268.87267 5.1000431 + 39200 -33.784548 -33.792372 0.0078244225 411.79238 5.3659782 + 39300 -33.78095 -33.792589 0.01163844 612.52069 5.3797244 + 39400 -33.788509 -33.793166 0.004656881 245.0875 4.953414 + 39500 -33.788964 -33.794071 0.0051069566 268.77457 4.476246 + 39600 -33.788263 -33.795361 0.0070980649 373.56482 3.7504528 + 39700 -33.791323 -33.796674 0.0053511572 281.62663 2.7970656 + 39800 -33.794406 -33.797554 0.0031481517 165.68442 2.0081434 + 39900 -33.793595 -33.798298 0.0047036816 247.55057 1.2680903 + 40000 -33.791483 -33.798989 0.0075060797 395.03828 0.31484131 + 40100 -33.79312 -33.799351 0.0062315214 327.95941 -0.79737438 + 40200 -33.797835 -33.799375 0.0015395465 81.02496 -1.6347257 + 40300 -33.797954 -33.799343 0.0013885572 73.078528 -2.03009 + 40400 -33.79584 -33.799301 0.0034606407 182.13043 -2.4125769 + 40500 -33.792421 -33.799193 0.0067718674 356.39734 -2.8774734 + 40600 -33.791675 -33.798983 0.0073078952 384.60801 -3.3757245 + 40700 -33.794426 -33.798792 0.0043652726 229.74041 -3.7448715 + 40800 -33.795977 -33.798759 0.0027823961 146.43502 -3.8519342 + 40900 -33.794091 -33.798922 0.0048317144 254.28882 -3.683008 + 41000 -33.788379 -33.799326 0.010947099 576.13608 -3.1275754 + 41100 -33.793813 -33.799668 0.0058548886 308.13757 -2.6708753 + 41200 -33.795528 -33.799875 0.0043473207 228.79561 -2.1947249 + 41300 -33.794667 -33.800018 0.0053507806 281.60681 -1.5998685 + 41400 -33.792282 -33.80004 0.0077580849 408.30109 -0.83623847 + 41500 -33.790245 -33.799804 0.0095589957 503.08142 0.062237824 + 41600 -33.795407 -33.799381 0.0039742826 209.16295 0.66554238 + 41700 -33.796413 -33.799035 0.0026220044 137.99375 1.0717449 + 41800 -33.79365 -33.798692 0.0050419384 265.35272 1.4900667 + 41900 -33.790838 -33.798253 0.0074154044 390.26612 1.9280628 + 42000 -33.79215 -33.797878 0.0057281656 301.46825 2.153575 + 42100 -33.793288 -33.7977 0.0044112501 232.16016 2.1985046 + 42200 -33.792082 -33.797737 0.0056548637 297.61043 2.1143905 + 42300 -33.786818 -33.797995 0.011176817 588.2259 1.8735243 + 42400 -33.792796 -33.798297 0.0055009198 289.5085 1.2885549 + 42500 -33.79473 -33.798548 0.0038183137 200.95444 0.83171674 + 42600 -33.793454 -33.798829 0.0053752926 282.89685 0.3476709 + 42700 -33.790473 -33.79909 0.0086171701 453.51398 -0.29237389 + 42800 -33.793291 -33.799158 0.0058663528 308.74092 -1.126089 + 42900 -33.796683 -33.799087 0.0024040161 126.52122 -1.6866824 + 43000 -33.795646 -33.798998 0.0033525635 176.44243 -2.0507938 + 43100 -33.791717 -33.798823 0.0071053224 373.94678 -2.44112 + 43200 -33.791783 -33.798506 0.0067232503 353.83867 -2.905598 + 43300 -33.79361 -33.798187 0.0045772695 240.89761 -3.2366179 + 43400 -33.794062 -33.797983 0.0039209161 206.35432 -3.3550723 + 43500 -33.789487 -33.797902 0.0084148002 442.86343 -3.1933979 + 43600 -33.789035 -33.797883 0.0088480751 465.6663 -2.9012356 + 43700 -33.793906 -33.797924 0.0040179285 211.45999 -2.6495548 + 43800 -33.794044 -33.798068 0.0040235567 211.7562 -2.2427621 + 43900 -33.791522 -33.798309 0.0067875978 357.22522 -1.5958331 + 44000 -33.789737 -33.798531 0.0087940528 462.82316 -0.73526296 + 44100 -33.795618 -33.798584 0.0029667376 156.13676 -0.15106728 + 44200 -33.796068 -33.798597 0.0025291571 133.10728 0.29845071 + 44300 -33.792747 -33.798605 0.0058579363 308.29796 0.89434037 + 44400 -33.790329 -33.798498 0.008168553 429.90366 1.6266678 + 44500 -33.793063 -33.798263 0.0051994443 273.64211 2.1402856 + 44600 -33.794659 -33.798063 0.0034045713 179.17955 2.4475864 + 44700 -33.792668 -33.797952 0.0052839496 278.08955 2.6679567 + 44800 -33.786809 -33.797854 0.011044396 581.25674 2.8698174 + 44900 -33.792537 -33.797748 0.0052109386 274.24705 2.7056375 + 45000 -33.794095 -33.797741 0.0036464089 191.90725 2.5093829 + 45100 -33.792367 -33.797839 0.0054721336 287.99351 2.2323863 + 45200 -33.787724 -33.797978 0.010254246 539.67181 1.7719387 + 45300 -33.79346 -33.79798 0.0045204691 237.90825 1.0116673 + 45400 -33.795496 -33.797937 0.0024404503 128.43872 0.56355896 + 45500 -33.79336 -33.797895 0.0045346605 238.65514 0.16247392 + 45600 -33.789729 -33.797728 0.0079988725 420.97353 -0.39318035 + 45700 -33.791248 -33.797347 0.006098576 320.96261 -1.0568603 + 45800 -33.793444 -33.796932 0.0034874184 183.53972 -1.5413149 + 45900 -33.793917 -33.796612 0.0026950101 141.83598 -1.8089546 + 46000 -33.790016 -33.79634 0.0063238513 332.81865 -1.8815414 + 46100 -33.787182 -33.795996 0.008814104 463.87843 -1.8774047 + 46200 -33.791015 -33.795722 0.0047078109 247.76789 -1.8681131 + 46300 -33.79239 -33.795664 0.0032740276 172.30915 -1.7021286 + 46400 -33.78933 -33.795829 0.0064987879 342.02541 -1.289766 + 46500 -33.784156 -33.796209 0.012052086 634.29053 -0.49509822 + 46600 -33.790143 -33.796494 0.0063511978 334.25787 0.049992799 + 46700 -33.791763 -33.796736 0.0049727643 261.71215 0.55850243 + 46800 -33.791858 -33.797003 0.0051451571 270.78503 1.0496811 + 46900 -33.790153 -33.797311 0.0071586611 376.75395 1.5699461 + 47000 -33.788923 -33.797622 0.0086984042 457.78926 2.0885714 + 47100 -33.793849 -33.797827 0.0039783288 209.3759 2.327771 + 47200 -33.794903 -33.798014 0.0031107207 163.71445 2.440985 + 47300 -33.792023 -33.798302 0.0062796975 330.49488 2.5036968 + 47400 -33.78878 -33.798686 0.0099060574 521.34696 2.4260882 + 47500 -33.792652 -33.798932 0.0062805185 330.53809 2.1108228 + 47600 -33.793539 -33.79908 0.0055404553 291.58922 1.7893053 + 47700 -33.793805 -33.799174 0.0053689164 282.56128 1.4072331 + 47800 -33.793467 -33.799215 0.0057480707 302.51583 0.97005363 + 47900 -33.792493 -33.799183 0.0066900747 352.09266 0.47634308 + 48000 -33.792753 -33.799049 0.0062957443 331.3394 -0.078631287 + 48100 -33.794765 -33.798858 0.0040927853 215.39964 -0.58799462 + 48200 -33.795194 -33.798691 0.003497242 184.05673 -0.94899083 + 48300 -33.791031 -33.798518 0.0074870455 394.03653 -1.2020254 + 48400 -33.789129 -33.798202 0.0090735718 477.53399 -1.5379396 + 48500 -33.793376 -33.797874 0.004497796 236.71499 -1.8443692 + 48600 -33.793622 -33.797664 0.0040417531 212.71386 -1.9119319 + 48700 -33.792332 -33.797543 0.0052111185 274.25652 -1.8163086 + 48800 -33.790911 -33.797485 0.0065735007 345.95748 -1.5770952 + 48900 -33.791254 -33.797457 0.0062022168 326.41714 -1.2554393 + 49000 -33.794658 -33.797456 0.0027975965 147.23501 -0.98019715 + 49100 -33.795508 -33.797526 0.0020179094 106.20077 -0.71349315 + 49200 -33.792492 -33.797701 0.0052089045 274.14 -0.27521177 + 49300 -33.790044 -33.79789 0.0078454983 412.90158 0.34470572 + 49400 -33.792265 -33.797906 0.005641194 296.89101 0.82969121 + 49500 -33.793834 -33.797819 0.0039848046 209.71671 1.1774373 + 49600 -33.792607 -33.797702 0.0050951747 268.1545 1.4740179 + 49700 -33.785575 -33.797452 0.011877307 625.09208 1.8759526 + 49800 -33.791441 -33.79705 0.0056090743 295.20058 1.9161343 + 49900 -33.793077 -33.796786 0.0037087622 195.18884 1.8719263 + 50000 -33.791695 -33.79665 0.0049552463 260.79019 1.7383649 + 50100 -33.789143 -33.796603 0.0074597098 392.59787 1.4393702 + 50200 -33.790226 -33.796598 0.0063719854 335.35191 0.92615877 + 50300 -33.794937 -33.796644 0.0017072543 89.851269 0.41596323 + 50400 -33.794909 -33.796812 0.0019031455 100.16085 0.099537082 + 50500 -33.792048 -33.797191 0.0051433574 270.69031 -0.31892476 + 50600 -33.789653 -33.79769 0.0080372585 422.99375 -0.95924214 + 50700 -33.792339 -33.798027 0.0056875098 299.32857 -1.6755545 + 50800 -33.79484 -33.798202 0.003362062 176.94233 -2.1812138 + 50900 -33.794662 -33.798364 0.0037015281 194.80812 -2.4854043 + 51000 -33.787539 -33.798615 0.011076433 582.9428 -2.6514826 + 51100 -33.791987 -33.798817 0.006829682 359.44007 -2.9866144 + 51200 -33.795105 -33.798982 0.0038769458 204.0402 -3.1030724 + 51300 -33.794455 -33.799275 0.0048197423 253.65874 -2.991673 + 51400 -33.790729 -33.799781 0.0090517194 476.38392 -2.6364999 + 51500 -33.792574 -33.800404 0.0078305718 412.11601 -2.2136294 + 51600 -33.797688 -33.800809 0.003120973 164.25403 -1.946945 + 51700 -33.796925 -33.801191 0.0042657395 224.50207 -1.5552108 + 51800 -33.793009 -33.801639 0.0086302198 454.20077 -0.93689799 + 51900 -33.794997 -33.801949 0.0069523828 365.89771 -0.34161425 + 52000 -33.799247 -33.802017 0.0027704101 145.80421 -0.0058587668 + 52100 -33.79879 -33.802005 0.003215 169.20258 0.30446824 + 52200 -33.796721 -33.801916 0.0051948804 273.40192 0.6464627 + 52300 -33.794553 -33.801682 0.0071286121 375.1725 0.98737512 + 52400 -33.795348 -33.801312 0.0059637089 313.86468 1.2001937 + 52500 -33.798457 -33.800982 0.0025251923 132.89862 1.2391042 + 52600 -33.799343 -33.800832 0.0014894469 78.388263 1.2032 + 52700 -33.796602 -33.800819 0.0042175244 221.96455 1.1124743 + 52800 -33.793934 -33.800916 0.0069812864 367.41887 0.82866313 + 52900 -33.794749 -33.801051 0.0063025091 331.69543 0.38558605 + 53000 -33.796947 -33.801179 0.004231865 222.71928 -0.061317868 + 53100 -33.797691 -33.801305 0.0036147474 190.24093 -0.42770142 + 53200 -33.794268 -33.801444 0.0071756894 377.65013 -0.73972931 + 53300 -33.791133 -33.801504 0.010371327 545.83369 -1.1964923 + 53400 -33.796973 -33.801386 0.004412501 232.22599 -1.69758 + 53500 -33.797328 -33.801224 0.0038969164 205.09123 -1.9256842 + 53600 -33.795591 -33.801002 0.0054118295 284.81976 -2.033452 + 53700 -33.793709 -33.800666 0.0069568144 366.13094 -2.0566276 + 53800 -33.794471 -33.800242 0.0057710835 303.72698 -2.0290965 + 53900 -33.798012 -33.799919 0.0019073153 100.3803 -1.9777723 + 54000 -33.798235 -33.799798 0.0015634032 82.280517 -1.8041961 + 54100 -33.795469 -33.799791 0.0043219847 227.4622 -1.384754 + 54200 -33.792916 -33.799821 0.0069053447 363.42213 -0.7104843 + 54300 -33.793287 -33.799774 0.0064877063 341.44219 0.0057174721 + 54400 -33.795661 -33.799645 0.0039836449 209.65568 0.58472382 + 54500 -33.796805 -33.799511 0.002705509 142.38853 1.025363 + 54600 -33.794171 -33.799376 0.0052044655 273.90638 1.4943012 + 54700 -33.78973 -33.799075 0.0093448624 491.81177 2.1304028 + 54800 -33.793358 -33.798639 0.0052812463 277.94728 2.4954655 + 54900 -33.794868 -33.798304 0.0034362371 180.84609 2.6770865 + 55000 -33.792444 -33.798068 0.0056235733 295.96365 2.7798613 + 55100 -33.785329 -33.797778 0.012449519 655.20708 2.8076629 + 55200 -33.790852 -33.797491 0.0066396638 349.43958 2.464257 + 55300 -33.792898 -33.797373 0.0044755512 235.54427 2.1304008 + 55400 -33.792621 -33.797435 0.0048144797 253.38177 1.7627003 + 55500 -33.788924 -33.797672 0.0087477646 460.38705 1.3039751 + 55600 -33.789368 -33.797984 0.0086157699 453.44028 0.58549646 + 55700 -33.794988 -33.798192 0.0032043783 168.64357 -0.020927304 + 55800 -33.794535 -33.798436 0.0039011152 205.31221 -0.37511942 + 55900 -33.791516 -33.798771 0.0072546431 381.8054 -0.70285939 + 56000 -33.791545 -33.799053 0.0075078758 395.1328 -1.0852476 + 56100 -33.796255 -33.799165 0.0029103645 153.16989 -1.4002579 + 56200 -33.797619 -33.79925 0.0016309299 85.834386 -1.462643 + 56300 -33.796585 -33.79942 0.0028350606 149.20671 -1.3389918 + 56400 -33.793648 -33.799689 0.0060407633 317.91998 -1.0000424 + 56500 -33.791744 -33.799952 0.0082075092 431.95389 -0.48841621 + 56600 -33.79523 -33.800075 0.0048447438 254.97454 -0.055907718 + 56700 -33.7973 -33.800144 0.0028432718 149.63886 0.2944765 + 56800 -33.795206 -33.800264 0.0050577278 266.1837 0.71823781 + 56900 -33.788522 -33.80046 0.011938298 628.302 1.4828823 + 57000 -33.795124 -33.800545 0.0054213816 285.32248 1.8825162 + 57100 -33.796584 -33.800624 0.0040395915 212.6001 2.1592748 + 57200 -33.795159 -33.800773 0.0056132752 295.42166 2.3827513 + 57300 -33.790548 -33.801004 0.010455964 550.28808 2.5877905 + 57400 -33.795748 -33.801206 0.0054583457 287.26787 2.4895501 + 57500 -33.798389 -33.801342 0.0029529188 155.40948 2.3397307 + 57600 -33.796696 -33.801534 0.00483797 254.61805 2.1474314 + 57700 -33.793205 -33.801781 0.0085760286 451.34874 1.7863586 + 57800 -33.795807 -33.801934 0.0061269482 322.45582 1.2012547 + 57900 -33.799128 -33.801983 0.0028555626 150.28571 0.70552647 + 58000 -33.800216 -33.802025 0.0018091798 95.215519 0.34729675 + 58100 -33.799969 -33.802099 0.0021299836 112.09914 0.05635344 + 58200 -33.795858 -33.802238 0.0063805078 335.80043 -0.27230676 + 58300 -33.793684 -33.802359 0.0086755398 456.58592 -0.77832162 + 58400 -33.797678 -33.802365 0.0046870619 246.67589 -1.2913254 + 58500 -33.799069 -33.802346 0.0032768579 172.45811 -1.5562652 + 58600 -33.796395 -33.80234 0.0059455038 312.90656 -1.6275657 + 58700 -33.790963 -33.802272 0.011309177 595.19192 -1.562661 + 58800 -33.795753 -33.80209 0.0063372082 333.52161 -1.5918685 + 58900 -33.797041 -33.801898 0.0048576478 255.65367 -1.4573322 + 59000 -33.796573 -33.80171 0.0051372579 270.3693 -1.187162 + 59100 -33.793355 -33.801483 0.0081283417 427.78737 -0.72166153 + 59200 -33.791632 -33.801122 0.0094904787 499.47543 -0.10917192 + 59300 -33.797627 -33.800793 0.0031656669 166.60622 0.24456088 + 59400 -33.797765 -33.800614 0.0028490731 149.94417 0.58091294 + 59500 -33.794922 -33.800489 0.0055675967 293.01765 1.0295492 + 59600 -33.793391 -33.800362 0.006971383 366.89767 1.5202329 + 59700 -33.79454 -33.800236 0.0056962014 299.786 1.8797375 + 59800 -33.795429 -33.800148 0.0047196693 248.39199 2.1088601 + 59900 -33.794216 -33.800112 0.0058960002 310.30123 2.2528617 + 60000 -33.789315 -33.800079 0.01076358 566.47763 2.3505943 + 60100 -33.794714 -33.799987 0.0052734319 277.53601 2.1250522 + 60200 -33.79664 -33.799945 0.0033052323 173.95143 1.8927717 + 60300 -33.795012 -33.799973 0.0049606444 261.07429 1.5995543 + 60400 -33.791273 -33.800014 0.0087414455 460.05448 1.1126268 + 60500 -33.79359 -33.799957 0.0063666247 335.06978 0.39579928 + 60600 -33.795343 -33.799847 0.0045042406 237.05417 -0.21054508 + 60700 -33.7946 -33.799716 0.0051161083 269.25622 -0.75963478 + 60800 -33.792785 -33.799529 0.0067430417 354.88027 -1.3353612 + 60900 -33.792439 -33.799249 0.0068102374 358.41672 -1.9503083 + 61000 -33.794778 -33.798956 0.0041778299 219.87546 -2.475333 + 61100 -33.795892 -33.798765 0.0028731935 151.21361 -2.7730849 + 61200 -33.792958 -33.798667 0.0057084399 300.4301 -2.86211 + 61300 -33.788526 -33.79856 0.010034376 528.10026 -2.8364699 + 61400 -33.792979 -33.79843 0.0054502198 286.8402 -2.8645999 + 61500 -33.794112 -33.798377 0.0042647422 224.44958 -2.7211245 + 61600 -33.793012 -33.798415 0.0054031339 284.36212 -2.4043728 + 61700 -33.791459 -33.798525 0.0070668019 371.91948 -1.9234501 + 61800 -33.793422 -33.798658 0.0052357749 275.55417 -1.4264421 + 61900 -33.796549 -33.798791 0.0022422289 118.00651 -1.088038 + 62000 -33.795579 -33.799009 0.0034297742 180.50595 -0.70200335 + 62100 -33.791052 -33.799389 0.0083371825 438.77848 -0.080757847 + 62200 -33.792475 -33.799759 0.0072839739 383.34905 0.48929173 + 62300 -33.79572 -33.799986 0.0042654415 224.48638 0.8380325 + 62400 -33.795778 -33.800174 0.0043966671 231.39267 1.1009414 + 62500 -33.794541 -33.80038 0.0058396695 307.3366 1.3021757 + 62600 -33.794407 -33.800574 0.0061668934 324.5581 1.3779137 + 62700 -33.79506 -33.800731 0.0056702072 298.41795 1.3210763 + 62800 -33.795957 -33.800854 0.004897089 257.72943 1.1530242 + 62900 -33.796441 -33.80096 0.0045186085 237.81033 0.90369816 + 63000 -33.794879 -33.801059 0.0061793895 325.21576 0.59247089 + 63100 -33.792384 -33.801114 0.0087302157 459.46346 0.14590104 + 63200 -33.796194 -33.801068 0.0048737734 256.50235 -0.44202114 + 63300 -33.798328 -33.801014 0.0026860818 141.36609 -0.84433856 + 63400 -33.796548 -33.800998 0.0044497044 234.18398 -1.1357492 + 63500 -33.791498 -33.800964 0.0094668333 498.23099 -1.4910565 + 63600 -33.79453 -33.800842 0.0063120416 332.19712 -1.9569907 + 63700 -33.796591 -33.800724 0.0041333103 217.53243 -2.2299516 + 63800 -33.796076 -33.800657 0.0045808704 241.08712 -2.309965 + 63900 -33.790087 -33.800609 0.010522505 553.79005 -2.1467667 + 64000 -33.793182 -33.800477 0.0072950489 383.93192 -2.0166717 + 64100 -33.796864 -33.800372 0.0035075572 184.59961 -1.8581374 + 64200 -33.795877 -33.800334 0.0044571619 234.57646 -1.5017219 + 64300 -33.79306 -33.800312 0.0072520685 381.66989 -0.9178666 + 64400 -33.792959 -33.80021 0.0072512776 381.62827 -0.2299547 + 64500 -33.797248 -33.800061 0.0028135315 148.07365 0.26072782 + 64600 -33.798008 -33.799984 0.0019767925 104.03683 0.62832993 + 64700 -33.795702 -33.799953 0.0042503514 223.6922 1.0961586 + 64800 -33.79398 -33.799879 0.0058987605 310.4465 1.6549438 + 64900 -33.793525 -33.7997 0.0061753546 325.0034 2.1575529 + 65000 -33.794018 -33.799425 0.0054078919 284.61253 2.5394653 + 65100 -33.794521 -33.799114 0.0045926303 241.70604 2.7832658 + 65200 -33.793031 -33.798787 0.005756031 302.93478 2.9379634 + 65300 -33.789148 -33.798346 0.0091981247 484.0891 3.0206093 + 65400 -33.792273 -33.797821 0.0055480935 291.99121 2.8428022 + 65500 -33.794948 -33.79751 0.0025618538 134.82808 2.6166612 + 65600 -33.793724 -33.797394 0.0036695652 193.12594 2.3805838 + 65700 -33.790159 -33.797389 0.007230795 380.55029 1.9874512 + 65800 -33.79089 -33.79741 0.0065196548 343.12362 1.4082635 + 65900 -33.792651 -33.79744 0.0047888059 252.03058 0.8669714 + 66000 -33.793209 -33.797508 0.0042988175 226.24293 0.43694349 + 66100 -33.79057 -33.797627 0.0070564697 371.37571 0.10136755 + 66200 -33.787105 -33.797712 0.010607351 558.25541 -0.26323838 + 66300 -33.793684 -33.797671 0.0039872971 209.84789 -0.66968449 + 66400 -33.794295 -33.797691 0.0033953484 178.69416 -0.7519143 + 66500 -33.792361 -33.797828 0.0054675399 287.75175 -0.62865037 + 66600 -33.790692 -33.798059 0.0073675292 387.74649 -0.33244053 + 66700 -33.792319 -33.798299 0.0059800571 314.72507 0.02455545 + 66800 -33.794255 -33.798543 0.0042874673 225.64558 0.41551163 + 66900 -33.797033 -33.798803 0.001770011 93.154103 0.75309572 + 67000 -33.797316 -33.7991 0.0017834551 93.861649 1.0625008 + 67100 -33.793964 -33.799618 0.0056539207 297.5608 1.5843619 + 67200 -33.791859 -33.800278 0.0084190092 443.08495 2.2867912 + 67300 -33.795382 -33.800691 0.0053097134 279.44548 2.7914874 + 67400 -33.797199 -33.800886 0.0036877873 194.08496 3.1222478 + 67500 -33.795496 -33.801006 0.0055106677 290.02153 3.4053315 + 67600 -33.786895 -33.801014 0.014118372 743.03731 3.8130507 + 67700 -33.794802 -33.800787 0.0059842543 314.94597 3.7654142 + 67800 -33.79636 -33.800582 0.0042214919 222.17335 3.6807845 + 67900 -33.795221 -33.800449 0.0052279035 275.1399 3.4989879 + 68000 -33.791046 -33.800363 0.0093170628 490.3487 3.162352 + 68100 -33.793907 -33.800272 0.0063646366 334.96515 2.5193237 + 68200 -33.79775 -33.800265 0.0025147987 132.35161 2.0103022 + 68300 -33.796586 -33.800393 0.0038076553 200.3935 1.5877243 + 68400 -33.793301 -33.800631 0.0073300908 385.77614 1.0141577 + 68500 -33.793767 -33.800805 0.0070375282 370.37883 0.27004158 + 68600 -33.795853 -33.800828 0.0049751654 261.83852 -0.37935369 + 68700 -33.796038 -33.800759 0.0047215689 248.49196 -0.86289438 + 68800 -33.795398 -33.800609 0.0052112613 274.26404 -1.2562768 + 68900 -33.794735 -33.800373 0.0056380584 296.72598 -1.561715 + 69000 -33.793889 -33.800061 0.0061721075 324.83251 -1.7579222 + 69100 -33.793115 -33.799694 0.0065798438 346.29131 -1.8349529 + 69200 -33.793447 -33.799325 0.0058777985 309.34329 -1.803717 + 69300 -33.794619 -33.799047 0.0044277697 233.02957 -1.6735627 + 69400 -33.794214 -33.798901 0.0046874401 246.69579 -1.410253 + 69500 -33.790263 -33.79883 0.0085661784 450.83033 -0.92051135 + 69600 -33.790864 -33.798699 0.0078350481 412.35159 -0.37629659 + 69700 -33.795563 -33.79856 0.002997834 157.77333 -0.059609493 + 69800 -33.795159 -33.798492 0.0033331451 175.42045 0.25967789 + 69900 -33.792938 -33.798418 0.0054803865 288.42785 0.63969669 + 70000 -33.791725 -33.798221 0.006495622 341.85879 0.99951612 + 70100 -33.792257 -33.797863 0.0056062175 295.05023 1.2424384 + 70200 -33.792867 -33.797413 0.0045457166 239.23701 1.3645525 + 70300 -33.791313 -33.796897 0.0055838594 293.87354 1.409516 + 70400 -33.787482 -33.796144 0.0086619252 455.8694 1.3589296 + 70500 -33.789569 -33.79524 0.0056715201 298.48705 1.0636447 + 70600 -33.791838 -33.794621 0.0027830155 146.46762 0.72894121 + 70700 -33.790464 -33.79433 0.0038666988 203.50091 0.39148861 + 70800 -33.785028 -33.794242 0.0092143067 484.94074 -0.18307539 + 70900 -33.788008 -33.79432 0.0063115929 332.1735 -1.0046025 + 71000 -33.790327 -33.79459 0.0042637424 224.39696 -1.6288626 + 71100 -33.790047 -33.795088 0.0050405621 265.28029 -2.0939789 + 71200 -33.78435 -33.795861 0.011511074 605.81755 -2.4654167 + 71300 -33.788601 -33.796648 0.0080468897 423.50063 -3.0508621 + 71400 -33.792829 -33.797029 0.0041996293 221.02275 -3.3663317 + 71500 -33.792358 -33.797327 0.0049685793 261.4919 -3.4394277 + 71600 -33.789849 -33.797559 0.0077094013 405.73892 -3.352831 + 71700 -33.790307 -33.797587 0.0072802347 383.15226 -3.2050221 + 71800 -33.794717 -33.797459 0.0027423216 144.32594 -3.0921412 + 71900 -33.794723 -33.797364 0.0026412686 139.00761 -2.8517502 + 72000 -33.791304 -33.797271 0.0059669209 314.03372 -2.3649991 + 72100 -33.790378 -33.797078 0.0067002319 352.62723 -1.7366925 + 72200 -33.791553 -33.796815 0.0052621171 276.94053 -1.1474792 + 72300 -33.792091 -33.796574 0.0044823236 235.90069 -0.60426447 + 72400 -33.789197 -33.796367 0.007169919 377.34644 0.012602474 + 72500 -33.785735 -33.796066 0.010330838 543.70279 0.77589019 + 72600 -33.79168 -33.795776 0.0040962814 215.58363 1.1638686 + 72700 -33.792226 -33.795696 0.003469962 182.621 1.3997343 + 72800 -33.790321 -33.79581 0.0054886816 288.86442 1.5526716 + 72900 -33.788915 -33.796073 0.0071577495 376.70597 1.5584397 + 73000 -33.790121 -33.796374 0.0062526469 329.07123 1.3715885 + 73100 -33.791072 -33.796671 0.0055991479 294.67816 1.0795822 + 73200 -33.791102 -33.796976 0.0058735522 309.11981 0.70205326 + 73300 -33.791281 -33.797268 0.0059867187 315.07566 0.23273374 + 73400 -33.792126 -33.797521 0.0053948224 283.92469 -0.29126548 + 73500 -33.794363 -33.797732 0.003368942 177.30441 -0.80164711 + 73600 -33.79554 -33.797941 0.0024010545 126.36536 -1.1737651 + 73700 -33.792964 -33.798257 0.0052927819 278.55439 -1.468626 + 73800 -33.789225 -33.798726 0.0095016912 500.06553 -1.8675442 + 73900 -33.793166 -33.799068 0.0059021404 310.62439 -2.3375985 + 74000 -33.794701 -33.799298 0.0045970079 241.93642 -2.5866226 + 74100 -33.794199 -33.799522 0.0053235306 280.17267 -2.6688834 + 74200 -33.793401 -33.799746 0.0063444251 333.90143 -2.6186832 + 74300 -33.793914 -33.799926 0.0060118148 316.39645 -2.4614261 + 74400 -33.797627 -33.800043 0.002416222 127.16361 -2.285922 + 74500 -33.798477 -33.800158 0.0016813334 88.487079 -2.0468233 + 74600 -33.795905 -33.800367 0.0044618105 234.8211 -1.5621746 + 74700 -33.792684 -33.800621 0.0079366509 417.69886 -0.73737393 + 74800 -33.794625 -33.800702 0.0060771749 319.83629 0.064765613 + 74900 -33.79714 -33.800645 0.0035046516 184.44669 0.67530533 + 75000 -33.797146 -33.800563 0.0034170059 179.83397 1.1964476 + 75100 -33.790289 -33.800427 0.010137908 533.54903 1.9743171 + 75200 -33.792774 -33.800135 0.007360565 387.37997 2.6455326 + 75300 -33.796081 -33.799914 0.0038322183 201.68623 2.9902641 + 75400 -33.795522 -33.799842 0.0043203425 227.37577 3.2037396 + 75500 -33.791749 -33.799919 0.0081704046 430.00111 3.3313329 + 75600 -33.791239 -33.8001 0.0088607938 466.33567 3.2238342 + 75700 -33.797518 -33.800264 0.0027462852 144.53454 2.9015644 + 75800 -33.797013 -33.800489 0.003476239 182.95136 2.6226499 + 75900 -33.792798 -33.800832 0.0080337691 422.8101 2.1736137 + 76000 -33.793324 -33.801097 0.0077728166 409.0764 1.4099495 + 76100 -33.797302 -33.801137 0.0038346551 201.81448 0.70440259 + 76200 -33.797459 -33.80108 0.0036207855 190.55871 0.19446642 + 76300 -33.796289 -33.800939 0.0046508801 244.77167 -0.30856744 + 76400 -33.794981 -33.800685 0.0057038272 300.18734 -0.81516671 + 76500 -33.793649 -33.800305 0.0066559087 350.29454 -1.2862863 + 76600 -33.793572 -33.799843 0.0062716153 330.06952 -1.6780171 + 76700 -33.795255 -33.799447 0.0041912598 220.58226 -1.9174329 + 76800 -33.795643 -33.799238 0.0035944806 189.17431 -1.9222693 + 76900 -33.791978 -33.7992 0.007222189 380.09736 -1.61829 + 77000 -33.790121 -33.799257 0.0091364355 480.84245 -1.0604934 + 77100 -33.795075 -33.799321 0.0042460828 223.46755 -0.5952207 + 77200 -33.795569 -33.799437 0.0038681117 203.57527 -0.070274639 + 77300 -33.794239 -33.799611 0.0053711029 282.67635 0.62044093 + 77400 -33.792999 -33.799762 0.0067624261 355.90045 1.4494902 + 77500 -33.794068 -33.799801 0.0057329172 301.71832 2.2430601 + 77600 -33.797351 -33.79977 0.002418738 127.29602 2.7693069 + 77700 -33.797816 -33.799789 0.0019726714 103.81994 3.1031693 + 77800 -33.794058 -33.799907 0.0058498714 307.87352 3.4894141 + 77900 -33.79264 -33.800069 0.0074285051 390.9556 3.8311487 + 78000 -33.794909 -33.800179 0.0052703408 277.37334 3.9497553 + 78100 -33.796409 -33.800287 0.0038785003 204.12201 3.9176691 + 78200 -33.795251 -33.800448 0.0051965837 273.49156 3.7853911 + 78300 -33.788998 -33.800674 0.011675981 614.49645 3.5123934 + 78400 -33.795071 -33.80078 0.0057085601 300.43643 2.8798129 + 78500 -33.796887 -33.800811 0.0039237483 206.50337 2.4158943 + 78600 -33.795699 -33.800842 0.0051422247 270.6307 1.9502991 + 78700 -33.793455 -33.800827 0.0073715218 387.95662 1.3768363 + 78800 -33.794475 -33.800692 0.0062175708 327.22521 0.69307953 + 78900 -33.798399 -33.800542 0.0021436226 112.81694 0.17866347 + 79000 -33.798012 -33.800471 0.0024594523 129.43878 -0.074342489 + 79100 -33.794307 -33.800416 0.0061096247 321.5441 -0.25580542 + 79200 -33.793197 -33.800267 0.0070704819 372.11316 -0.46163103 + 79300 -33.794874 -33.800026 0.0051521698 271.1541 -0.61155647 + 79400 -33.796145 -33.799792 0.0036470873 191.94295 -0.63549615 + 79500 -33.795262 -33.799608 0.0043457734 228.71418 -0.51012165 + 79600 -33.789839 -33.799392 0.0095533697 502.78533 -0.13649113 + 79700 -33.792458 -33.799096 0.0066385987 349.38353 0.1856685 + 79800 -33.795512 -33.798913 0.0034010931 178.9965 0.42973428 + 79900 -33.794803 -33.798882 0.0040786708 214.6568 0.73289607 + 80000 -33.792031 -33.798977 0.006946706 365.59894 1.1413787 + 80100 -33.792289 -33.799129 0.0068395307 359.9584 1.4987677 + 80200 -33.793807 -33.799281 0.0054740954 288.09676 1.7394031 + 80300 -33.794809 -33.799438 0.0046291692 243.62904 1.8753567 + 80400 -33.79417 -33.799613 0.0054426703 286.44289 1.9343754 + 80500 -33.790061 -33.799791 0.0097294862 512.05418 1.9421432 + 80600 -33.793417 -33.799846 0.0064289675 338.35082 1.6815994 + 80700 -33.796751 -33.799826 0.0030750574 161.83753 1.3947033 + 80800 -33.795831 -33.799833 0.0040014157 210.59094 1.1095353 + 80900 -33.793068 -33.799841 0.006773577 356.48732 0.67526482 + 81000 -33.793125 -33.79978 0.0066553938 350.26744 0.052604703 + 81100 -33.79418 -33.799662 0.0054821998 288.52329 -0.58232593 + 81200 -33.79445 -33.799539 0.0050889246 267.82556 -1.1651406 + 81300 -33.79282 -33.799432 0.0066116852 347.9671 -1.7033778 + 81400 -33.787521 -33.799283 0.011761951 619.02101 -2.2843874 + 81500 -33.794206 -33.799095 0.0048888508 257.29586 -2.9830109 + 81600 -33.795559 -33.799038 0.0034790292 183.0982 -3.2880696 + 81700 -33.79355 -33.799114 0.0055649241 292.87699 -3.3922698 + 81800 -33.790257 -33.79929 0.0090327328 475.38467 -3.3557992 + 81900 -33.795338 -33.799435 0.0040969722 215.61999 -3.3629414 + 82000 -33.797377 -33.799553 0.0021756005 114.49991 -3.2508911 + 82100 -33.795529 -33.799756 0.0042262081 222.42156 -2.9242547 + 82200 -33.792195 -33.800017 0.0078212043 411.623 -2.3362218 + 82300 -33.793621 -33.800152 0.0065304678 343.69269 -1.7306956 + 82400 -33.796577 -33.800148 0.0035715734 187.96872 -1.2606832 + 82500 -33.797909 -33.800123 0.0022141243 116.52739 -0.88694419 + 82600 -33.797413 -33.800133 0.0027196159 143.13096 -0.54489777 + 82700 -33.79276 -33.800177 0.0074172215 390.36175 -0.021588546 + 82800 -33.792292 -33.80015 0.007857825 413.55032 0.48044456 + 82900 -33.795964 -33.800064 0.0040999913 215.77889 0.73279385 + 83000 -33.796707 -33.800026 0.0033192198 174.68758 0.86226719 + 83100 -33.791254 -33.800049 0.0087945578 462.84973 0.98784259 + 83200 -33.790035 -33.800007 0.0099723184 524.83422 0.88928017 + 83300 -33.794582 -33.799877 0.0052955868 278.70201 0.59879627 + 83400 -33.795232 -33.799755 0.0045234479 238.06503 0.31797625 + 83500 -33.793628 -33.799629 0.0060012913 315.84261 -0.024406445 + 83600 -33.788595 -33.799404 0.010809025 568.86932 -0.48820306 + 83700 -33.793393 -33.799018 0.0056254286 296.06129 -1.2276611 + 83800 -33.796039 -33.798767 0.0027273276 143.53682 -1.6793895 + 83900 -33.794449 -33.798627 0.0041775348 219.85993 -2.0040094 + 84000 -33.791054 -33.798544 0.0074894561 394.16339 -2.3634045 + 84100 -33.791837 -33.79851 0.0066735571 351.22336 -2.7725151 + 84200 -33.793488 -33.79857 0.0050815562 267.43777 -3.0477524 + 84300 -33.793621 -33.798762 0.0051414286 270.5888 -3.1427391 + 84400 -33.793126 -33.799103 0.0059772864 314.57925 -3.0792584 + 84500 -33.79333 -33.799553 0.0062236089 327.54299 -2.8818591 + 84600 -33.79425 -33.800042 0.005792004 304.828 -2.570978 + 84700 -33.795612 -33.800505 0.0048928907 257.50847 -2.1815914 + 84800 -33.796802 -33.80091 0.0041076357 216.1812 -1.7416832 + 84900 -33.79664 -33.801266 0.0046262939 243.47772 -1.2278547 + 85000 -33.793174 -33.801601 0.0084263109 443.46923 -0.49266657 + 85100 -33.794186 -33.801787 0.0076009787 400.03273 0.29522553 + 85200 -33.798579 -33.801782 0.0032029484 168.56832 0.78385609 + 85300 -33.798347 -33.801741 0.0033935049 178.59714 1.2010438 + 85400 -33.79601 -33.80167 0.0056595546 297.85731 1.6690499 + 85500 -33.795217 -33.801536 0.0063189664 332.56156 2.089913 + 85600 -33.795713 -33.801364 0.0056511205 297.41343 2.3757471 + 85700 -33.796209 -33.801204 0.0049950627 262.8857 2.5257462 + 85800 -33.795725 -33.801084 0.0053589554 282.03704 2.5628766 + 85900 -33.793091 -33.800985 0.0078946103 415.4863 2.5060892 + 86000 -33.794058 -33.800873 0.0068144366 358.63772 2.2484666 + 86100 -33.797385 -33.800797 0.0034119127 179.56592 1.913176 + 86200 -33.797503 -33.800802 0.003299822 173.66669 1.6215578 + 86300 -33.791105 -33.800883 0.0097780324 514.60912 1.2883098 + 86400 -33.792395 -33.800917 0.0085214583 448.47675 0.60870045 + 86500 -33.795866 -33.800879 0.0050134967 263.85586 0.038028396 + 86600 -33.796334 -33.800861 0.0045266487 238.23348 -0.35109807 + 86700 -33.79421 -33.800881 0.0066709927 351.0884 -0.63188778 + 86800 -33.788525 -33.800893 0.012368681 650.95263 -0.8365824 + 86900 -33.796493 -33.800829 0.004336024 228.20108 -1.1881645 + 87000 -33.797634 -33.800825 0.0031917975 167.98145 -1.2104198 + 87100 -33.795239 -33.800903 0.0056637969 298.08058 -0.99969233 + 87200 -33.792436 -33.800982 0.0085462065 449.77923 -0.57367886 + 87300 -33.79575 -33.800937 0.0051872551 273.00061 -0.17940176 + 87400 -33.798641 -33.800845 0.0022039355 115.99116 0.14487552 + 87500 -33.799411 -33.800781 0.0013705863 72.132737 0.45392483 + 87600 -33.798356 -33.800741 0.0023849339 125.51694 0.82918965 + 87700 -33.793869 -33.800615 0.0067456851 355.01939 1.5259024 + 87800 -33.792275 -33.800188 0.0079130403 416.45625 2.353437 + 87900 -33.795274 -33.799572 0.0042972883 226.16245 2.9449648 + 88000 -33.796174 -33.799025 0.0028507296 150.03136 3.3370202 + 88100 -33.792378 -33.798444 0.006066225 319.26001 3.7247263 + 88200 -33.789663 -33.797586 0.0079233102 416.99675 4.0644691 + 88300 -33.791888 -33.796823 0.0049351804 259.73414 4.1239998 + 88400 -33.792478 -33.796362 0.0038844588 204.4356 4.0192164 + 88500 -33.787398 -33.796143 0.008745613 460.27381 3.7857325 + 88600 -33.78603 -33.796027 0.0099974183 526.15521 3.1193605 + 88700 -33.791002 -33.796035 0.0050331511 264.89025 2.368747 + 88800 -33.791292 -33.796218 0.0049259408 259.24787 1.7234207 + 88900 -33.790119 -33.796555 0.0064359441 338.718 1.0111155 + 89000 -33.789291 -33.796958 0.0076661472 403.46249 0.19012645 + 89100 -33.793051 -33.797267 0.0042161436 221.89188 -0.61177617 + 89200 -33.794522 -33.797504 0.0029821075 156.94566 -1.1036024 + 89300 -33.792204 -33.797799 0.0055957648 294.50011 -1.4366591 + 89400 -33.787867 -33.798125 0.01025828 539.88411 -1.7738837 + 89500 -33.792354 -33.798223 0.0058691377 308.88748 -2.1621962 + 89600 -33.793288 -33.798216 0.0049281956 259.36654 -2.2942265 + 89700 -33.7926 -33.798201 0.0056007985 294.76503 -2.2511153 + 89800 -33.791318 -33.79819 0.0068721621 361.67576 -2.0527715 + 89900 -33.791727 -33.798176 0.0064491548 339.41326 -1.7604192 + 90000 -33.794694 -33.798199 0.0035052149 184.47633 -1.4866902 + 90100 -33.795165 -33.798325 0.0031604884 166.33368 -1.1698581 + 90200 -33.79079 -33.7986 0.0078096855 411.01678 -0.6371763 + 90300 -33.789553 -33.798913 0.0093593359 492.5735 0.024232636 + 90400 -33.793754 -33.799043 0.0052883041 278.31873 0.43525138 + 90500 -33.794105 -33.799103 0.0049980078 263.04069 0.78536632 + 90600 -33.79327 -33.799127 0.0058575834 308.27939 1.081827 + 90700 -33.791849 -33.799091 0.0072417774 381.12828 1.308613 + 90800 -33.792042 -33.798964 0.006922401 364.31979 1.3975042 + 90900 -33.795058 -33.798819 0.0037608573 197.93056 1.3061013 + 91000 -33.795564 -33.798761 0.0031971206 168.26161 1.1546118 + 91100 -33.791468 -33.798798 0.0073298613 385.76406 0.92389824 + 91200 -33.79002 -33.798846 0.008826114 464.51051 0.40435169 + 91300 -33.793622 -33.798853 0.0052308329 275.29407 -0.20222137 + 91400 -33.794067 -33.798905 0.0048377698 254.60751 -0.70350145 + 91500 -33.79324 -33.799025 0.0057848441 304.45118 -1.208438 + 91600 -33.792628 -33.79919 0.0065613544 345.31823 -1.7405602 + 91700 -33.794767 -33.799349 0.0045822298 241.15867 -2.262834 + 91800 -33.797136 -33.799491 0.0023549976 123.94142 -2.5891093 + 91900 -33.795912 -33.799692 0.0037799115 198.93337 -2.7266867 + 92000 -33.791197 -33.799973 0.0087758953 461.86754 -2.7550803 + 92100 -33.793187 -33.800102 0.006914631 363.91086 -2.8426311 + 92200 -33.795457 -33.800052 0.0045943193 241.79492 -2.8431455 + 92300 -33.795226 -33.799911 0.0046852743 246.58181 -2.7049698 + 92400 -33.794202 -33.799673 0.0054711454 287.9415 -2.4481277 + 92500 -33.793706 -33.799329 0.0056224309 295.90352 -2.1053187 + 92600 -33.793474 -33.798918 0.0054435332 286.4883 -1.697447 + 92700 -33.792871 -33.798481 0.0056109292 295.2982 -1.2265695 + 92800 -33.789023 -33.798014 0.0089903071 473.15185 -0.60652376 + 92900 -33.786651 -33.79736 0.01070839 563.57302 0.17532388 + 93000 -33.793115 -33.796905 0.0037895955 199.44303 0.55741285 + 93100 -33.793005 -33.796761 0.0037559459 197.67208 0.88150912 + 93200 -33.78967 -33.796862 0.0071926114 378.54072 1.2261311 + 93300 -33.788765 -33.797162 0.008396418 441.89599 1.4742156 + 93400 -33.794321 -33.797483 0.0031619106 166.40854 1.4465023 + 93500 -33.794925 -33.79783 0.0029056341 152.92093 1.3763218 + 93600 -33.79288 -33.79836 0.0054797722 288.39552 1.215053 + 93700 -33.790527 -33.799017 0.0084897126 446.806 0.88099658 + 93800 -33.794283 -33.799502 0.0052193009 274.68715 0.35760816 + 93900 -33.796773 -33.799757 0.0029844457 157.06871 -0.053161934 + 94000 -33.795756 -33.799962 0.004205671 221.34071 -0.40608872 + 94100 -33.793601 -33.80014 0.0065389853 344.14097 -0.854002 + 94200 -33.794083 -33.800196 0.0061124714 321.69392 -1.3792054 + 94300 -33.795134 -33.800152 0.0050173284 264.05752 -1.8398321 + 94400 -33.795245 -33.800082 0.004837294 254.58247 -2.1850006 + 94500 -33.792388 -33.800014 0.007626317 401.36626 -2.4060104 + 94600 -33.790582 -33.799888 0.0093058762 489.75996 -2.5973919 + 94700 -33.796227 -33.799754 0.0035268483 185.61488 -2.7857091 + 94800 -33.79665 -33.799742 0.0030914984 162.7028 -2.718441 + 94900 -33.794381 -33.79983 0.0054490589 286.77911 -2.4272847 + 95000 -33.793022 -33.799915 0.0068928951 362.76692 -1.9600977 + 95100 -33.793971 -33.799876 0.0059046842 310.75826 -1.4441852 + 95200 -33.794775 -33.799712 0.0049364535 259.80115 -0.90406495 + 95300 -33.794038 -33.799438 0.0054002813 284.21199 -0.30252118 + 95400 -33.787257 -33.798888 0.011630722 612.11454 0.62535579 + 95500 -33.792053 -33.797994 0.0059408787 312.66315 1.3909619 + 95600 -33.794404 -33.797346 0.0029417803 154.82327 1.8692502 + 95700 -33.792975 -33.796873 0.0038982098 205.1593 2.3102627 + 95800 -33.789984 -33.79646 0.0064758242 340.81685 2.7905256 + 95900 -33.789847 -33.796189 0.0063422597 333.78747 3.1267214 + 96000 -33.790717 -33.796156 0.0054395084 286.27647 3.2692783 + 96100 -33.791521 -33.796364 0.0048427895 254.87169 3.2361036 + 96200 -33.792654 -33.796758 0.0041046007 216.02147 3.041989 + 96300 -33.792588 -33.797279 0.0046906834 246.86649 2.7372539 + 96400 -33.790219 -33.797917 0.0076982607 405.15259 2.2968324 + 96500 -33.791164 -33.798479 0.0073145692 384.95925 1.6246601 + 96600 -33.79542 -33.798736 0.0033159812 174.51713 0.99736143 + 96700 -33.79545 -33.79886 0.0034104881 179.49095 0.54633316 + 96800 -33.792036 -33.798899 0.0068633572 361.21237 0.059385506 + 96900 -33.790983 -33.798685 0.0077024639 405.3738 -0.60530174 + 97000 -33.792662 -33.798244 0.0055822678 293.78977 -1.2150623 + 97100 -33.793289 -33.797756 0.0044669304 235.09056 -1.6391407 + 97200 -33.791397 -33.797284 0.0058866333 309.80826 -1.8783842 + 97300 -33.786221 -33.796715 0.010493833 552.28108 -1.9499864 + 97400 -33.791392 -33.79617 0.0047779256 251.45796 -2.0616992 + 97500 -33.793439 -33.796038 0.0025994887 136.80877 -1.9503267 + 97600 -33.791773 -33.796268 0.0044949249 236.56389 -1.5585938 + 97700 -33.789004 -33.79681 0.0078056688 410.80539 -0.86125409 + 97800 -33.790788 -33.797391 0.0066030277 347.51146 -0.11307779 + 97900 -33.794298 -33.797803 0.0035041141 184.4184 0.45634612 + 98000 -33.795142 -33.798145 0.0030028194 158.03571 0.93487636 + 98100 -33.790799 -33.798557 0.0077582315 408.3088 1.5629851 + 98200 -33.789086 -33.798952 0.0098660711 519.24252 2.3357609 + 98300 -33.794934 -33.799056 0.0041222398 216.9498 2.7159353 + 98400 -33.795579 -33.799105 0.0035259565 185.56794 2.9608732 + 98500 -33.792558 -33.799186 0.0066283391 348.84358 3.1588387 + 98600 -33.790001 -33.799226 0.0092247745 485.49166 3.2282927 + 98700 -33.795087 -33.799169 0.0040818046 214.82174 3.0148897 + 98800 -33.796638 -33.799175 0.0025368829 133.51389 2.7873463 + 98900 -33.795741 -33.799297 0.0035567936 187.19087 2.4694113 + 99000 -33.792927 -33.79951 0.0065837237 346.4955 1.9773484 + 99100 -33.791387 -33.799675 0.0082880265 436.19144 1.2283245 + 99200 -33.795288 -33.799661 0.0043729489 230.1444 0.42309153 + 99300 -33.796704 -33.799598 0.0028936093 152.28808 -0.12866068 + 99400 -33.793202 -33.799526 0.0063240449 332.82884 -0.57788207 + 99500 -33.788635 -33.799211 0.010576091 556.61026 -1.2685335 + 99600 -33.793439 -33.798687 0.0052480663 276.20105 -1.968136 + 99700 -33.794483 -33.798229 0.0037465984 197.18013 -2.3386548 + 99800 -33.792228 -33.797815 0.0055869068 294.03392 -2.4948014 + 99900 -33.787135 -33.797266 0.01013138 533.20548 -2.4821913 + 100000 -33.791336 -33.796688 0.0053519558 281.66866 -2.5059222 + 100100 -33.793036 -33.79641 0.0033736317 177.55123 -2.3575147 + 100200 -33.791954 -33.796395 0.0044418474 233.77047 -1.9970964 + 100300 -33.789094 -33.796609 0.0075146226 395.48789 -1.3838804 + 100400 -33.789548 -33.796927 0.0073791643 388.35883 -0.67082209 + 100500 -33.793625 -33.797204 0.003579043 188.36184 -0.15522763 + 100600 -33.794252 -33.797512 0.0032604191 171.59295 0.27085244 + 100700 -33.788421 -33.797988 0.0095674027 503.52387 0.86986794 + 100800 -33.78765 -33.798516 0.010865553 571.84434 1.5349232 + 100900 -33.792844 -33.798707 0.0058635193 308.59179 1.8359103 + 101000 -33.794466 -33.798799 0.0043337343 228.08057 1.9924962 + 101100 -33.793857 -33.798893 0.0050361868 265.05002 2.0282747 + 101200 -33.789802 -33.798978 0.0091761476 482.93246 1.954807 + 101300 -33.791639 -33.798911 0.0072716527 382.7006 1.5797915 + 101400 -33.796069 -33.798793 0.0027234037 143.33031 1.159272 + 101500 -33.795304 -33.798751 0.0034465182 181.38718 0.774441 + 101600 -33.792459 -33.79873 0.0062705557 330.01375 0.19996431 + 101700 -33.791779 -33.798615 0.0068360837 359.77699 -0.60930006 + 101800 -33.79302 -33.798403 0.0053834911 283.32833 -1.4366569 + 101900 -33.793501 -33.798182 0.0046805524 246.3333 -2.1535445 + 102000 -33.790097 -33.797975 0.0078789494 414.66208 -2.7772875 + 102100 -33.787489 -33.797651 0.010162322 534.83394 -3.5650928 + 102200 -33.7933 -33.797379 0.0040789872 214.67346 -4.228932 + 102300 -33.793699 -33.797352 0.0036530419 192.25634 -4.4786005 + 102400 -33.79053 -33.797577 0.0070467096 370.86204 -4.4704972 + 102500 -33.788405 -33.798006 0.0096006289 505.27253 -4.2839373 + 102600 -33.795474 -33.798355 0.0028816459 151.65845 -4.1760298 + 102700 -33.7953 -33.798709 0.0034092941 179.42811 -3.8529601 + 102800 -33.792107 -33.799224 0.0071165484 374.53759 -3.230691 + 102900 -33.791564 -33.799726 0.0081619216 429.55465 -2.4157449 + 103000 -33.79622 -33.799958 0.0037382566 196.74111 -1.8049309 + 103100 -33.797133 -33.800058 0.0029253274 153.95737 -1.3028303 + 103200 -33.795745 -33.800129 0.0043836818 230.70926 -0.720921 + 103300 -33.794625 -33.800129 0.0055035692 289.64794 -0.08746553 + 103400 -33.793502 -33.80002 0.0065182025 343.04718 0.5404691 + 103500 -33.793636 -33.799804 0.0061685606 324.64584 1.0708596 + 103600 -33.795428 -33.799573 0.0041456268 218.18064 1.3981517 + 103700 -33.796238 -33.799438 0.0032001941 168.42336 1.5457286 + 103800 -33.793059 -33.799403 0.006343873 333.87238 1.6086573 + 103900 -33.789616 -33.799355 0.0097395679 512.58477 1.4871303 + 104000 -33.79426 -33.799216 0.0049558103 260.81987 1.0960933 + 104100 -33.795043 -33.799086 0.0040433574 212.79829 0.73483016 + 104200 -33.793866 -33.798938 0.0050719935 266.93449 0.28863288 + 104300 -33.792472 -33.798689 0.006216637 327.17606 -0.30090276 + 104400 -33.792176 -33.798285 0.0061086051 321.49044 -1.0008914 + 104500 -33.793381 -33.797785 0.0044037327 231.76452 -1.7018102 + 104600 -33.794163 -33.797351 0.0031876712 167.76429 -2.2589363 + 104700 -33.791537 -33.796973 0.0054369007 286.13923 -2.7159778 + 104800 -33.788126 -33.796533 0.0084069096 442.44815 -3.2341887 + 104900 -33.790699 -33.796165 0.0054654383 287.64114 -3.7309667 + 105000 -33.793177 -33.7961 0.0029228793 153.82853 -3.9418701 + 105100 -33.793422 -33.796387 0.0029650638 156.04866 -3.8614911 + 105200 -33.787972 -33.797171 0.0091994016 484.1563 -3.3492121 + 105300 -33.789822 -33.798245 0.0084227489 443.28176 -2.647985 + 105400 -33.794478 -33.79896 0.0044821261 235.8903 -2.0773031 + 105500 -33.794722 -33.799522 0.0047994043 252.58837 -1.4189774 + 105600 -33.793182 -33.800015 0.0068335538 359.64384 -0.58645402 + 105700 -33.791496 -33.800315 0.0088193081 464.15232 0.41754156 + 105800 -33.795859 -33.800292 0.0044331013 233.31017 1.2072481 + 105900 -33.797369 -33.800153 0.0027841958 146.52974 1.7475406 + 106000 -33.795092 -33.799974 0.0048823365 256.95301 2.3004074 + 106100 -33.791242 -33.799617 0.0083748798 440.76246 2.994646 + 106200 -33.793114 -33.799121 0.006007057 316.14605 3.4683093 + 106300 -33.794171 -33.798703 0.0045319449 238.51222 3.7312946 + 106400 -33.793135 -33.798407 0.0052719327 277.45711 3.8486364 + 106500 -33.784544 -33.798166 0.013621474 716.88605 3.920725 + 106600 -33.789133 -33.797782 0.0086490992 455.19437 3.5156035 + 106700 -33.792973 -33.797559 0.0045864495 241.38074 3.1203472 + 106800 -33.792549 -33.7975 0.0049509812 260.56573 2.7163746 + 106900 -33.790221 -33.797546 0.0073247726 385.49625 2.1896695 + 107000 -33.790253 -33.797591 0.0073373225 386.15674 1.475093 + 107100 -33.794365 -33.797602 0.0032361809 170.31732 0.80977274 + 107200 -33.794923 -33.797684 0.0027612511 145.32218 0.39491849 + 107300 -33.790524 -33.797894 0.0073692477 387.83693 0.04604117 + 107400 -33.78935 -33.798104 0.0087542184 460.72671 -0.47453529 + 107500 -33.792797 -33.798159 0.0053620739 282.20117 -0.91980566 + 107600 -33.794082 -33.798206 0.0041240203 217.04351 -1.1243926 + 107700 -33.792485 -33.798334 0.0058488907 307.8219 -1.1080559 + 107800 -33.78633 -33.798532 0.012201174 642.1369 -0.8119186 + 107900 -33.793807 -33.798608 0.0048010507 252.67502 -0.66077236 + 108000 -33.795049 -33.798692 0.0036425357 191.7034 -0.37544179 + 108100 -33.793112 -33.798866 0.0057546195 302.86049 0.11975172 + 108200 -33.790714 -33.799029 0.008314338 437.57619 0.82755843 + 108300 -33.79438 -33.799018 0.0046376771 244.07681 1.4262456 + 108400 -33.796847 -33.79896 0.0021128104 111.19533 1.8003135 + 108500 -33.79573 -33.798944 0.0032143556 169.16867 2.1782945 + 108600 -33.793632 -33.79892 0.0052879838 278.30187 2.6184757 + 108700 -33.792402 -33.798816 0.0064137243 337.54859 3.0173495 + 108800 -33.79267 -33.798632 0.0059624206 313.79688 3.2848734 + 108900 -33.794374 -33.79847 0.0040965932 215.60004 3.3720559 + 109000 -33.795467 -33.798449 0.0029819758 156.93873 3.316772 + 109100 -33.792961 -33.798635 0.0056746955 298.65416 3.1667735 + 109200 -33.789356 -33.799076 0.0097201394 511.56227 2.7812353 + 109300 -33.794097 -33.799543 0.0054452836 286.58042 2.1547671 + 109400 -33.795698 -33.799984 0.0042857283 225.55406 1.6490132 + 109500 -33.795025 -33.800524 0.0054985532 289.38395 1.1327642 + 109600 -33.794559 -33.801132 0.006572694 345.91503 0.53779635 + 109700 -33.795768 -33.801672 0.0059039804 310.72122 -0.079110396 + 109800 -33.799077 -33.802047 0.0029702691 156.32261 -0.6060527 + 109900 -33.800707 -33.802267 0.0015598006 82.090912 -0.87924547 + 110000 -33.799197 -33.8025 0.0033032399 173.84657 -1.0184506 + 110100 -33.796536 -33.802753 0.0062160885 327.14719 -1.1305717 + 110200 -33.796265 -33.802833 0.0065682981 345.68367 -1.2426865 + 110300 -33.797825 -33.802702 0.0048776089 256.70421 -1.3180978 + 110400 -33.799192 -33.802469 0.003276721 172.4509 -1.3206938 + 110500 -33.798321 -33.802202 0.0038815292 204.28142 -1.2156452 + 110600 -33.792934 -33.801767 0.008832818 464.86333 -0.9131318 + 110700 -33.794295 -33.80113 0.0068351853 359.72971 -0.66723267 + 110800 -33.797128 -33.800618 0.0034899289 183.67184 -0.49610153 + 110900 -33.7965 -33.800273 0.0037733419 198.58762 -0.28535626 + 111000 -33.787675 -33.799874 0.012198152 641.97788 0.17919372 + 111100 -33.792708 -33.799394 0.0066856022 351.85728 0.37613701 + 111200 -33.795196 -33.799091 0.0038957363 205.02913 0.48531672 + 111300 -33.794399 -33.798923 0.0045239906 238.09359 0.56997384 + 111400 -33.789342 -33.798786 0.0094437549 497.0164 0.65822563 + 111500 -33.791364 -33.798543 0.0071790403 377.82649 0.51136414 + 111600 -33.796029 -33.798371 0.0023418249 123.24815 0.28628195 + 111700 -33.795131 -33.798325 0.0031940414 168.09955 0.10680642 + 111800 -33.791829 -33.798346 0.0065168565 342.97635 -0.18259768 + 111900 -33.790762 -33.798333 0.0075714975 398.48116 -0.67048493 + 112000 -33.793686 -33.798271 0.0045849849 241.30367 -1.2187819 + 112100 -33.795987 -33.798279 0.0022921382 120.63319 -1.6244356 + 112200 -33.79679 -33.798422 0.0016315936 85.869317 -1.8848695 + 112300 -33.794186 -33.798776 0.0045897468 241.55428 -2.0564578 + 112400 -33.790223 -33.799416 0.0091933148 483.83596 -2.2820838 + 112500 -33.794114 -33.799926 0.0058123129 305.89684 -2.6083618 + 112600 -33.796343 -33.800214 0.0038717797 203.76831 -2.7766301 + 112700 -33.795493 -33.800419 0.0049262025 259.26164 -2.799905 + 112800 -33.788109 -33.800524 0.012414501 653.36412 -2.6188592 + 112900 -33.79281 -33.800272 0.0074620584 392.72148 -2.6028086 + 113000 -33.796522 -33.799952 0.0034301383 180.52512 -2.564415 + 113100 -33.795056 -33.79962 0.0045640909 240.20403 -2.3623762 + 113200 -33.791225 -33.799158 0.007932859 417.4993 -1.9909192 + 113300 -33.791878 -33.798581 0.0067033139 352.78943 -1.6220398 + 113400 -33.795224 -33.798168 0.0029436788 154.92319 -1.3648841 + 113500 -33.796343 -33.798039 0.0016961647 89.267634 -1.1532258 + 113600 -33.793564 -33.798167 0.0046032194 242.26333 -0.85320629 + 113700 -33.789471 -33.798563 0.0090926409 478.53758 -0.38195116 + 113800 -33.79326 -33.798941 0.0056818195 299.02909 -0.10786638 + 113900 -33.795503 -33.799227 0.0037236137 195.97047 0.052775496 + 114000 -33.794598 -33.799526 0.0049282917 259.3716 0.19070279 + 114100 -33.787406 -33.799885 0.012478926 656.75475 0.40413058 + 114200 -33.79398 -33.800072 0.0060925491 320.64543 0.28566311 + 114300 -33.796403 -33.80011 0.0037077698 195.13662 0.18716572 + 114400 -33.794778 -33.800165 0.0053870145 283.51377 0.10120223 + 114500 -33.791799 -33.800219 0.0084197339 443.12308 -0.049742854 + 114600 -33.794527 -33.800215 0.0056880697 299.35804 -0.35754798 + 114700 -33.797755 -33.800232 0.0024771216 130.3687 -0.60772902 + 114800 -33.797057 -33.800353 0.0032955119 173.43985 -0.74836058 + 114900 -33.793846 -33.800602 0.0067565829 355.59293 -0.8768265 + 115000 -33.794209 -33.800844 0.0066348825 349.18795 -1.0769572 + 115100 -33.795993 -33.800976 0.0049832993 262.2666 -1.2465348 + 115200 -33.796853 -33.801017 0.004164118 219.15382 -1.3270874 + 115300 -33.794913 -33.800978 0.0060653529 319.21411 -1.2847458 + 115400 -33.789929 -33.80072 0.01079014 567.87547 -1.0981565 + 115500 -33.79565 -33.800221 0.0045713256 240.58479 -1.0645779 + 115600 -33.797046 -33.799834 0.0027881017 146.73531 -0.93007244 + 115700 -33.795671 -33.799498 0.0038272926 201.427 -0.6528524 + 115800 -33.793408 -33.79917 0.0057620398 303.25102 -0.21371576 + 115900 -33.792235 -33.798889 0.0066530929 350.14635 0.32684403 + 116000 -33.793076 -33.798737 0.0056609306 297.92973 0.85381142 + 116100 -33.79591 -33.798779 0.0028691906 151.00294 1.2417933 + 116200 -33.796932 -33.799015 0.0020829963 109.62624 1.4985982 + 116300 -33.793863 -33.799535 0.005671686 298.49578 1.8049036 + 116400 -33.790924 -33.800396 0.0094723011 498.51876 2.1536462 + 116500 -33.794938 -33.801077 0.0061393479 323.1084 2.2659335 + 116600 -33.796666 -33.801517 0.0048510954 255.30883 2.299795 + 116700 -33.796555 -33.801831 0.0052762964 277.68677 2.2755236 + 116800 -33.794219 -33.802028 0.0078093993 411.00172 2.1995538 + 116900 -33.79103 -33.802 0.01097008 577.34552 2.0133278 + 117000 -33.797785 -33.801748 0.0039621468 208.52425 1.625187 + 117100 -33.798428 -33.801524 0.0030966348 162.97313 1.3980564 + 117200 -33.795578 -33.8013 0.0057229806 301.19536 1.1829797 + 117300 -33.793236 -33.800995 0.007758891 408.34351 0.85762632 + 117400 -33.794821 -33.800678 0.0058567332 308.23465 0.4808876 + 117500 -33.795462 -33.800441 0.0049790371 262.04228 0.20636409 + 117600 -33.794796 -33.80028 0.0054840548 288.62091 0.028172772 + 117700 -33.792749 -33.800144 0.007394869 389.18536 -0.057601777 + 117800 -33.787443 -33.799881 0.01243805 654.6035 -0.018245461 + 117900 -33.794821 -33.79947 0.0046495865 244.70359 -0.15286107 + 118000 -33.796026 -33.799174 0.0031474037 165.64505 -0.094075826 + 118100 -33.793624 -33.798908 0.0052833933 278.06028 0.13467755 + 118200 -33.790069 -33.79852 0.0084508679 444.76164 0.54243585 + 118300 -33.792229 -33.798062 0.0058330766 306.98962 0.89130846 + 118400 -33.793395 -33.797741 0.004345907 228.72121 1.2212446 + 118500 -33.792853 -33.797606 0.0047536263 250.17911 1.5864151 + 118600 -33.791903 -33.79769 0.0057874146 304.58647 1.9721197 + 118700 -33.791217 -33.798004 0.0067866293 357.17425 2.3409612 + 118800 -33.793187 -33.798476 0.0052897532 278.39499 2.5828702 + 118900 -33.796266 -33.798949 0.0026828955 141.1984 2.6543279 + 119000 -33.796002 -33.799473 0.0034714758 182.70067 2.6713472 + 119100 -33.789907 -33.800239 0.010332611 543.79608 2.6797673 + 119200 -33.792523 -33.800915 0.0083918619 441.65621 2.3893434 + 119300 -33.795479 -33.801162 0.0056824435 299.06193 2.0660928 + 119400 -33.796303 -33.801166 0.0048633095 255.95164 1.7489861 + 119500 -33.795637 -33.800991 0.0053539422 281.7732 1.4084016 + 119600 -33.79154 -33.800577 0.0090365463 475.58537 1.0206706 + 119700 -33.791825 -33.799808 0.0079823682 420.10492 0.42385186 + 119800 -33.796522 -33.799185 0.002662624 140.13152 -0.074628494 + 119900 -33.796076 -33.798847 0.0027712609 145.84899 -0.33745172 + 120000 -33.793436 -33.798677 0.0052416414 275.86291 -0.55582945 + 120100 -33.792058 -33.798688 0.0066301788 348.9404 -0.77395067 + 120200 -33.792775 -33.79886 0.0060844564 320.21951 -0.94381519 + 120300 -33.794946 -33.799121 0.0041753292 219.74385 -1.0313954 + 120400 -33.797053 -33.799408 0.002355566 123.97134 -1.0240908 + 120500 -33.797126 -33.799731 0.0026049847 137.09802 -0.90317688 + 120600 -33.79144 -33.800215 0.0087746209 461.80047 -0.52238314 + 120700 -33.792505 -33.800638 0.0081338141 428.07538 -0.12905483 + 120800 -33.796287 -33.800762 0.0044754403 235.53843 0.1376104 + 120900 -33.796532 -33.800776 0.0042440447 223.36029 0.42374637 + 121000 -33.7941 -33.800736 0.0066352932 349.20956 0.78322731 + 121100 -33.78721 -33.800568 0.013357971 703.01809 1.3063656 + 121200 -33.794698 -33.800229 0.0055312298 291.10369 1.5179697 + 121300 -33.797119 -33.800077 0.0029578034 155.66655 1.6139405 + 121400 -33.795213 -33.800111 0.0048986514 257.81165 1.6922954 + 121500 -33.791236 -33.800303 0.0090672431 477.20092 1.7058876 + 121600 -33.79445 -33.800492 0.0060415749 317.9627 1.4765042 + 121700 -33.797 -33.80062 0.0036200273 190.51881 1.221403 + 121800 -33.796322 -33.800739 0.0044165125 232.43712 0.95842647 + 121900 -33.795144 -33.800794 0.0056504908 297.38029 0.59185752 + 122000 -33.79439 -33.800679 0.006289704 331.02151 0.12101593 + 122100 -33.794833 -33.800347 0.0055137919 290.18595 -0.4148295 + 122200 -33.796102 -33.799883 0.0037805047 198.96459 -0.92673853 + 122300 -33.795594 -33.799385 0.003791071 199.52068 -1.3508507 + 122400 -33.791038 -33.798696 0.0076588938 403.08075 -1.7915213 + 122500 -33.790479 -33.797761 0.0072825444 383.27382 -2.3921336 + 122600 -33.793234 -33.797035 0.0038009505 200.04064 -2.8824004 + 122700 -33.794242 -33.796737 0.0024947911 131.29863 -3.1211343 + 122800 -33.791231 -33.796865 0.0056335954 296.4911 -3.1186762 + 122900 -33.787378 -33.797467 0.010088187 530.93231 -2.9339101 + 123000 -33.792769 -33.798152 0.0053828769 283.29601 -2.8137788 + 123100 -33.794441 -33.798742 0.0043010448 226.36015 -2.5735866 + 123200 -33.793566 -33.79935 0.0057834949 304.38018 -2.1865527 + 123300 -33.791364 -33.799913 0.008549364 449.9454 -1.6420815 + 123400 -33.793712 -33.80021 0.0064981587 341.9923 -1.1230659 + 123500 -33.797092 -33.800214 0.0031216744 164.29094 -0.78165832 + 123600 -33.796556 -33.800106 0.0035496617 186.81553 -0.43836985 + 123700 -33.792085 -33.799813 0.007728179 406.72717 0.060066707 + 123800 -33.792104 -33.79921 0.0071064274 374.00493 0.51267227 + 123900 -33.793941 -33.798547 0.004606203 242.42036 0.79890598 + 124000 -33.793668 -33.797958 0.0042892514 225.73947 1.0048431 + 124100 -33.79228 -33.797425 0.0051448216 270.76737 1.1365358 + 124200 -33.791607 -33.797001 0.0053935874 283.85969 1.142634 + 124300 -33.790883 -33.796743 0.0058597272 308.39222 1.0278266 + 124400 -33.790074 -33.796641 0.0065664543 345.58663 0.79204804 + 124500 -33.790679 -33.796644 0.0059649816 313.93166 0.4295063 + 124600 -33.792883 -33.796713 0.0038300144 201.57024 0.022253798 + 124700 -33.793142 -33.796854 0.0037120694 195.3629 -0.33473376 + 124800 -33.78904 -33.797067 0.0080265268 422.42894 -0.70266622 + 124900 -33.788095 -33.797169 0.009073756 477.54369 -1.2886943 + 125000 -33.793448 -33.797091 0.0036428783 191.72143 -1.8304119 + 125100 -33.793428 -33.797068 0.0036400829 191.57431 -2.1054786 + 125200 -33.791571 -33.797153 0.0055821321 293.78263 -2.2856277 + 125300 -33.789749 -33.797346 0.0075966979 399.80744 -2.398793 + 125400 -33.79224 -33.797606 0.0053652825 282.37003 -2.4828606 + 125500 -33.795767 -33.797909 0.0021427036 112.76858 -2.4740953 + 125600 -33.795278 -33.798377 0.003099334 163.11518 -2.2751352 + 125700 -33.792604 -33.799172 0.0065683919 345.68861 -1.8384954 + 125800 -33.792855 -33.800057 0.0072014489 379.00583 -1.3105959 + 125900 -33.79531 -33.800719 0.0054093355 284.6885 -0.82860515 + 126000 -33.796923 -33.801144 0.0042214354 222.17038 -0.39333042 + 126100 -33.797054 -33.801418 0.0043640529 229.67621 0.038235045 + 126200 -33.793435 -33.801572 0.0081360884 428.19508 0.60103633 + 126300 -33.793232 -33.801473 0.0082414207 433.73862 1.1831984 + 126400 -33.797622 -33.801201 0.0035788485 188.3516 1.4983807 + 126500 -33.797721 -33.800948 0.0032272453 169.84704 1.7400662 + 126600 -33.79384 -33.800654 0.0068134387 358.5852 2.0181026 + 126700 -33.792458 -33.800235 0.0077776732 409.332 2.2141953 + 126800 -33.794325 -33.799851 0.0055258964 290.823 2.243365 + 126900 -33.795105 -33.799603 0.0044977418 236.71214 2.1950626 + 127000 -33.793519 -33.799492 0.0059735575 314.383 2.0993544 + 127100 -33.787778 -33.799454 0.011676264 614.51136 1.9468908 + 127200 -33.794367 -33.799396 0.0050294481 264.69537 1.4995927 + 127300 -33.796008 -33.799407 0.0033992119 178.89749 1.2340163 + 127400 -33.794326 -33.799508 0.0051825068 272.75071 1.0106418 + 127500 -33.791754 -33.799637 0.0078833318 414.89272 0.73993157 + 127600 -33.794015 -33.799675 0.0056600015 297.88083 0.38452936 + 127700 -33.797987 -33.799679 0.0016915936 89.027065 0.1401687 + 127800 -33.797712 -33.799772 0.0020603521 108.4345 0.089818763 + 127900 -33.795638 -33.799992 0.0043547627 229.18728 0.14578089 + 128000 -33.793348 -33.800267 0.0069187397 364.1271 0.29243067 + 128100 -33.793773 -33.800435 0.0066620197 350.61616 0.46101212 + 128200 -33.796828 -33.800451 0.0036232214 190.68691 0.5997468 + 128300 -33.798507 -33.800428 0.0019212391 101.1131 0.74762363 + 128400 -33.797121 -33.800423 0.0033027464 173.8206 0.98267162 + 128500 -33.791961 -33.800324 0.0083633905 440.15778 1.4685197 + 128600 -33.79375 -33.799948 0.0061975816 326.17319 1.8631219 + 128700 -33.796019 -33.799484 0.0034653228 182.37685 2.1337336 + 128800 -33.795205 -33.799024 0.0038194704 201.01532 2.3872001 + 128900 -33.788601 -33.798282 0.0096813058 509.51849 2.7894016 + 129000 -33.790656 -33.797228 0.0065715676 345.85574 2.9905311 + 129100 -33.792433 -33.796367 0.0039337797 207.03131 3.0612588 + 129200 -33.791223 -33.79571 0.0044861749 236.10338 3.0770493 + 129300 -33.784366 -33.795037 0.01067151 561.63206 3.0621555 + 129400 -33.786508 -33.794312 0.0078045059 410.74419 2.7283532 + 129500 -33.788356 -33.793899 0.0055433678 291.74251 2.3722512 + 129600 -33.78864 -33.793797 0.0051568651 271.40121 2.0009149 + 129700 -33.787925 -33.793978 0.0060536155 318.59638 1.5909267 + 129800 -33.78722 -33.794384 0.0071638269 377.02582 1.1170857 + 129900 -33.78992 -33.794864 0.00494421 260.20936 0.60211467 + 130000 -33.792178 -33.795329 0.003151906 165.882 0.23526465 + 130100 -33.79131 -33.795903 0.0045929479 241.72275 0.0046542233 + 130200 -33.784439 -33.796762 0.012322326 648.513 -0.14785665 + 130300 -33.790886 -33.797443 0.0065572277 345.10105 -0.52954916 + 130400 -33.792869 -33.797826 0.0049569331 260.87897 -0.68204784 + 130500 -33.792546 -33.798182 0.0056351731 296.57414 -0.69928067 + 130600 -33.791758 -33.798529 0.0067704989 356.32532 -0.62270739 + 130700 -33.793062 -33.798811 0.0057489597 302.56262 -0.51346309 + 130800 -33.795781 -33.799008 0.0032262991 169.79724 -0.403892 + 130900 -33.795828 -33.79921 0.0033812821 177.95386 -0.22024323 + 131000 -33.790237 -33.79948 0.009242828 486.44179 0.17793565 + 131100 -33.791119 -33.799612 0.0084931545 446.98714 0.55464767 + 131200 -33.794508 -33.799524 0.0050152762 263.94951 0.78185172 + 131300 -33.794506 -33.799365 0.0048589145 255.72034 1.0108809 + 131400 -33.793084 -33.799146 0.006062805 319.08002 1.2353629 + 131500 -33.790214 -33.798828 0.0086142365 453.35958 1.457234 + 131600 -33.79069 -33.798386 0.0076956721 405.01636 1.5598987 + 131700 -33.794991 -33.798077 0.0030861732 162.42254 1.4945999 + 131800 -33.794924 -33.798019 0.0030956102 162.9192 1.4366383 + 131900 -33.790609 -33.798215 0.0076057899 400.28594 1.3516108 + 132000 -33.790616 -33.798613 0.0079969422 420.87193 1.0633518 + 132100 -33.793434 -33.799042 0.0056077317 295.12992 0.71497682 + 132200 -33.794377 -33.799511 0.0051340246 270.19914 0.41613526 + 132300 -33.794203 -33.800045 0.0058420072 307.45963 0.13131275 + 132400 -33.793704 -33.800604 0.0068999221 363.13675 -0.15884944 + 132500 -33.795395 -33.801077 0.0056818242 299.02934 -0.47086578 + 132600 -33.797365 -33.80139 0.0040253885 211.85261 -0.71392157 + 132700 -33.797133 -33.801612 0.0044796085 235.7578 -0.8559431 + 132800 -33.793143 -33.801763 0.0086196298 453.64343 -0.90511561 + 132900 -33.793641 -33.801692 0.0080506562 423.69885 -1.0259911 + 133000 -33.7987 -33.801487 0.0027868029 146.66695 -1.1653567 + 133100 -33.798297 -33.801309 0.0030122086 158.52985 -1.1344302 + 133200 -33.795967 -33.801093 0.0051268125 269.81957 -0.99810428 + 133300 -33.794157 -33.800777 0.0066200082 348.40512 -0.79803502 + 133400 -33.794458 -33.800374 0.0059161126 311.35973 -0.59656172 + 133500 -33.795781 -33.799971 0.004190476 220.54102 -0.41127045 + 133600 -33.797116 -33.799666 0.0025498578 134.19674 -0.25332207 + 133700 -33.795597 -33.799445 0.0038486104 202.54894 -0.042237662 + 133800 -33.790935 -33.799125 0.0081898392 431.02393 0.30869101 + 133900 -33.792051 -33.798606 0.0065550174 344.98472 0.56018927 + 134000 -33.7946 -33.798098 0.0034977997 184.08608 0.6938826 + 134100 -33.794477 -33.797697 0.0032202924 169.48112 0.80310871 + 134200 -33.787676 -33.797172 0.0094959433 499.76303 1.0172537 + 134300 -33.78955 -33.796411 0.0068606206 361.06834 1.0204988 + 134400 -33.792412 -33.795872 0.0034607883 182.1382 0.94141592 + 134500 -33.79166 -33.795636 0.0039760222 209.2545 0.87623872 + 134600 -33.785067 -33.795667 0.010600181 557.8781 0.82126444 + 134700 -33.78779 -33.795918 0.0081287818 427.81054 0.50389147 + 134800 -33.79061 -33.796349 0.0057392085 302.04942 0.21375614 + 134900 -33.791839 -33.796984 0.0051443441 270.74224 -0.023281386 + 135000 -33.792459 -33.797796 0.0053371369 280.88875 -0.23389395 + 135100 -33.793868 -33.79868 0.0048124275 253.27377 -0.43860574 + 135200 -33.795668 -33.799467 0.003799534 199.96608 -0.60737481 + 135300 -33.795672 -33.800174 0.0045022521 236.94951 -0.70527805 + 135400 -33.792208 -33.800889 0.0086812523 456.88656 -0.72519186 + 135500 -33.793325 -33.801418 0.008093499 425.95363 -0.83053387 + 135600 -33.798369 -33.801545 0.0031760143 167.1508 -0.96524152 + 135700 -33.797978 -33.801537 0.0035589666 187.30524 -0.94777873 + 135800 -33.795358 -33.801419 0.0060604841 318.95787 -0.83708731 + 135900 -33.794408 -33.801121 0.006712937 353.29589 -0.70589285 + 136000 -33.795281 -33.800727 0.0054451605 286.57394 -0.57954755 + 136100 -33.795362 -33.800356 0.004994145 262.8374 -0.41457857 + 136200 -33.794599 -33.80006 0.0054604921 287.38083 -0.2031599 + 136300 -33.794062 -33.799864 0.0058018156 305.34438 0.027537202 + 136400 -33.793934 -33.799786 0.0058513519 307.95143 0.25022485 + 136500 -33.794043 -33.799811 0.0057675149 303.53917 0.44681147 + 136600 -33.794806 -33.799905 0.0050995016 268.38222 0.58892063 + 136700 -33.796394 -33.800035 0.0036410243 191.62386 0.65222124 + 136800 -33.796172 -33.800204 0.0040318568 212.19302 0.68979574 + 136900 -33.79194 -33.800415 0.0084753301 446.04907 0.74800272 + 137000 -33.792477 -33.800511 0.0080333285 422.78691 0.64255609 + 137100 -33.797244 -33.800465 0.0032211962 169.52868 0.43523602 + 137200 -33.79707 -33.800444 0.0033739866 177.5699 0.30672453 + 137300 -33.795331 -33.800466 0.0051347215 270.23581 0.14920099 + 137400 -33.793691 -33.8005 0.0068084897 358.32474 -0.076345515 + 137500 -33.794401 -33.80052 0.0061189671 322.03578 -0.36892495 + 137600 -33.797703 -33.800562 0.0028594677 150.49124 -0.6525087 + 137700 -33.798982 -33.800695 0.0017127562 90.140831 -0.79174874 + 137800 -33.796563 -33.801005 0.0044422228 233.79023 -0.81375594 + 137900 -33.793599 -33.801498 0.0078989518 415.71479 -0.80411543 + 138000 -33.795808 -33.801823 0.0060153781 316.58398 -0.85008479 + 138100 -33.797873 -33.801924 0.0040511322 213.20748 -0.84629422 + 138200 -33.797636 -33.801881 0.0042450348 223.4124 -0.7508004 + 138300 -33.790575 -33.801592 0.011016859 579.80746 -0.43030519 + 138400 -33.793549 -33.800807 0.0072585894 382.01308 -0.22432885 + 138500 -33.79647 -33.800035 0.0035652737 187.63718 -0.069780751 + 138600 -33.795587 -33.799307 0.003720352 195.7988 0.17016896 + 138700 -33.7931 -33.798489 0.0053886065 283.59756 0.51502298 + 138800 -33.791682 -33.797637 0.0059549698 313.40475 0.90564104 + 138900 -33.791376 -33.796976 0.0055998063 294.71281 1.2766418 + 139000 -33.790923 -33.796641 0.0057180229 300.93445 1.6193943 + 139100 -33.788766 -33.796671 0.0079052908 416.0484 1.9607936 + 139200 -33.788203 -33.797037 0.0088332135 464.88415 2.2401917 + 139300 -33.793273 -33.797512 0.0042387399 223.0811 2.2749477 + 139400 -33.794076 -33.798062 0.003985663 209.76189 2.2675892 + 139500 -33.791796 -33.798789 0.0069930548 368.03823 2.2129125 + 139600 -33.789003 -33.799635 0.010631773 559.54075 2.0307511 + 139700 -33.796443 -33.800124 0.0036816411 193.76149 1.6239887 + 139800 -33.797006 -33.800384 0.0033784515 177.80489 1.3806622 + 139900 -33.794341 -33.800615 0.0062740728 330.19886 1.1106395 + 140000 -33.792402 -33.800721 0.0083189015 437.81637 0.69405256 + 140100 -33.796289 -33.800624 0.0043358527 228.19206 0.19582958 + 140200 -33.79907 -33.800547 0.0014776627 77.768072 -0.10447248 + 140300 -33.798598 -33.800604 0.0020055366 105.5496 -0.23685223 + 140400 -33.792937 -33.800857 0.0079190851 416.77438 -0.30068736 + 140500 -33.794467 -33.801087 0.0066202807 348.41947 -0.48230652 + 140600 -33.797196 -33.8012 0.0040039126 210.72235 -0.59841684 + 140700 -33.797275 -33.801266 0.0039901348 209.99724 -0.58530242 + 140800 -33.793768 -33.801271 0.0075026489 394.85772 -0.42331003 + 140900 -33.792247 -33.801047 0.0087998851 463.1301 -0.21321547 + 141000 -33.797628 -33.800675 0.0030463812 160.32833 -0.1432698 + 141100 -33.797964 -33.800382 0.0024177496 127.244 0.0052615341 + 141200 -33.796379 -33.800073 0.0036945 194.43824 0.24842228 + 141300 -33.793976 -33.799692 0.0057161163 300.8341 0.59104339 + 141400 -33.792353 -33.799241 0.0068881385 362.51659 0.9791994 + 141500 -33.793198 -33.798831 0.0056331219 296.46618 1.3048615 + 141600 -33.795819 -33.798625 0.0028068983 147.72455 1.4961779 + 141700 -33.796472 -33.79869 0.0022179421 116.72831 1.6085621 + 141800 -33.792605 -33.799072 0.0064666055 340.33168 1.7483662 + 141900 -33.790837 -33.799774 0.0089371632 470.35493 1.7853621 + 142000 -33.794881 -33.80038 0.0054988344 289.39875 1.6329709 + 142100 -33.796196 -33.800847 0.0046508129 244.76814 1.4728975 + 142200 -33.795602 -33.801261 0.0056589883 297.82751 1.2737167 + 142300 -33.793418 -33.801599 0.0081809297 430.55503 1.0070372 + 142400 -33.792266 -33.801749 0.009482291 499.04452 0.59710125 + 142500 -33.797807 -33.801667 0.0038599945 203.14807 0.11539182 + 142600 -33.798404 -33.801548 0.003143432 165.43602 -0.18301262 + 142700 -33.795127 -33.801401 0.0062734505 330.16611 -0.45112736 + 142800 -33.792735 -33.80114 0.0084048316 442.33879 -0.84503264 + 142900 -33.795328 -33.800846 0.0055181509 290.41536 -1.2723761 + 143000 -33.795919 -33.800639 0.0047202656 248.42337 -1.5454367 + 143100 -33.795173 -33.800522 0.0053499164 281.56133 -1.712748 + 143200 -33.794348 -33.80048 0.0061317679 322.70948 -1.7992868 + 143300 -33.794424 -33.800477 0.006052572 318.54147 -1.8143298 + 143400 -33.796799 -33.800481 0.0036821895 193.79035 -1.7918611 + 143500 -33.798509 -33.800512 0.0020023774 105.38334 -1.7102035 + 143600 -33.796764 -33.800596 0.0038319873 201.67407 -1.4822655 + 143700 -33.792707 -33.800663 0.0079561339 418.72423 -1.0342239 + 143800 -33.794163 -33.800532 0.0063686775 335.17781 -0.6255772 + 143900 -33.796383 -33.800282 0.0038987512 205.1878 -0.30521844 + 144000 -33.796133 -33.80002 0.0038864668 204.54128 0.0062118806 + 144100 -33.788967 -33.799615 0.010647751 560.38166 0.54442926 + 144200 -33.792425 -33.799009 0.0065838806 346.50377 0.89460758 + 144300 -33.79516 -33.7986 0.0034399971 181.04398 1.0712956 + 144400 -33.794145 -33.798405 0.0042602091 224.21101 1.2039235 + 144500 -33.789852 -33.798358 0.0085057052 447.64768 1.3093615 + 144600 -33.790768 -33.79838 0.0076122445 400.62564 1.2014357 + 144700 -33.792456 -33.798434 0.0059780084 314.61725 0.98549442 + 144800 -33.793517 -33.798509 0.0049919589 262.72235 0.70646348 + 144900 -33.793594 -33.798582 0.004987815 262.50425 0.37845971 + 145000 -33.791598 -33.798601 0.0070035578 368.591 -0.0060523093 + 145100 -33.789581 -33.798429 0.0088480676 465.66591 -0.53363211 + 145200 -33.79409 -33.798067 0.0039766768 209.28896 -1.1409066 + 145300 -33.79518 -33.79777 0.002589668 136.29192 -1.5165113 + 145400 -33.792329 -33.797493 0.0051643526 271.79527 -1.8145965 + 145500 -33.789662 -33.797097 0.0074344875 391.27045 -2.2155556 + 145600 -33.791163 -33.796708 0.0055445564 291.80506 -2.6168126 + 145700 -33.792096 -33.796498 0.0044016809 231.65654 -2.8538936 + 145800 -33.790465 -33.796533 0.0060671442 319.30839 -2.9006824 + 145900 -33.785077 -33.796845 0.011767504 619.31326 -2.7288801 + 146000 -33.792199 -33.797246 0.0050467973 265.60844 -2.6867399 + 146100 -33.793523 -33.79767 0.0041467791 218.24129 -2.47558 + 146200 -33.792098 -33.798261 0.0061621642 324.30921 -2.0800554 + 146300 -33.791114 -33.798941 0.0078269256 411.92412 -1.5450327 + 146400 -33.795855 -33.799433 0.0035783309 188.32436 -1.1432774 + 146500 -33.797089 -33.799722 0.0026322295 138.53189 -0.81795773 + 146600 -33.794856 -33.80001 0.0051540338 271.2522 -0.37820892 + 146700 -33.792496 -33.800247 0.0077510809 407.93248 0.19215277 + 146800 -33.794113 -33.800273 0.0061599503 324.19269 0.65063995 + 146900 -33.795245 -33.800156 0.0049107932 258.45066 1.0019679 + 147000 -33.794854 -33.799981 0.0051263244 269.79388 1.2895245 + 147100 -33.788565 -33.799727 0.011162417 587.46803 1.6448682 + 147200 -33.790299 -33.799244 0.0089451274 470.77407 1.8068571 + 147300 -33.794997 -33.7989 0.0039028824 205.40522 1.7530568 + 147400 -33.794233 -33.798727 0.0044938857 236.5092 1.6856687 + 147500 -33.79095 -33.798651 0.0077010929 405.30165 1.5241735 + 147600 -33.791069 -33.798578 0.0075093914 395.21257 1.1547871 + 147700 -33.796049 -33.798522 0.0024725147 130.12624 0.73042738 + 147800 -33.795959 -33.798571 0.0026122755 137.48173 0.4543918 + 147900 -33.793589 -33.798717 0.0051275393 269.85782 0.11749308 + 148000 -33.791884 -33.798848 0.0069643062 366.52522 -0.35311016 + 148100 -33.792957 -33.79885 0.0058926978 310.12743 -0.87766832 + 148200 -33.79505 -33.798776 0.0037256545 196.07787 -1.3129515 + 148300 -33.796931 -33.798752 0.0018209461 95.834769 -1.5867717 + 148400 -33.796553 -33.79886 0.0023077572 121.45521 -1.6912235 + 148500 -33.792283 -33.799198 0.0069147832 363.91887 -1.6511727 + 148600 -33.792113 -33.799654 0.0075413646 396.89529 -1.604697 + 148700 -33.795393 -33.800033 0.0046402086 244.21004 -1.547775 + 148800 -33.796749 -33.80036 0.00361173 190.08213 -1.3960759 + 148900 -33.794041 -33.800729 0.006687838 351.97495 -1.0707086 + 149000 -33.789154 -33.801135 0.011980723 630.53479 -0.47880771 + 149100 -33.796242 -33.801228 0.0049857708 262.39667 -0.17286653 + 149200 -33.796924 -33.801162 0.0042385765 223.0725 0.16130393 + 149300 -33.795145 -33.800966 0.0058214349 306.37693 0.56319495 + 149400 -33.791607 -33.800508 0.0089011214 468.45808 1.0692105 + 149500 -33.793836 -33.799739 0.0059037042 310.70669 1.4559066 + 149600 -33.797 -33.799133 0.0021327899 112.24683 1.6293748 + 149700 -33.795967 -33.798662 0.0026951349 141.84255 1.774994 + 149800 -33.792516 -33.79807 0.0055537669 292.2898 1.9207319 + 149900 -33.791007 -33.797382 0.006374664 335.49288 1.9516955 + 150000 -33.790993 -33.796757 0.0057639115 303.34952 1.861813 + 150100 -33.791465 -33.79631 0.0048452595 255.00169 1.6831731 + 150200 -33.790857 -33.796082 0.0052249326 274.98354 1.4546361 + 150300 -33.787933 -33.796047 0.0081138416 427.02425 1.1646605 + 150400 -33.78916 -33.796154 0.0069940577 368.09102 0.71245937 + 150500 -33.793064 -33.796354 0.0032899127 173.14517 0.30522 + 150600 -33.793102 -33.796696 0.0035937371 189.13518 0.05471362 + 150700 -33.787536 -33.797309 0.0097731969 514.35464 -0.12254976 + 150800 -33.788833 -33.798071 0.0092372626 486.14889 -0.49921005 + 150900 -33.793641 -33.79851 0.0048694021 256.27229 -0.79182709 + 151000 -33.793354 -33.798885 0.0055312505 291.10478 -0.88922271 + 151100 -33.792578 -33.799221 0.0066430909 349.61995 -0.90206558 + 151200 -33.793502 -33.799441 0.0059393728 312.58389 -0.87219088 + 151300 -33.795504 -33.799526 0.0040218067 211.6641 -0.80277922 + 151400 -33.795915 -33.799542 0.0036271319 190.89272 -0.65354136 + 151500 -33.791525 -33.799487 0.0079619062 419.02802 -0.31409228 + 151600 -33.79006 -33.799171 0.0091106791 479.48691 0.10659531 + 151700 -33.794653 -33.798723 0.0040698839 214.19436 0.33733834 + 151800 -33.794647 -33.798321 0.0036742853 193.37436 0.58959972 + 151900 -33.793015 -33.797889 0.0048739683 256.5126 0.87915348 + 152000 -33.791113 -33.797388 0.0062748424 330.23936 1.1809178 + 152100 -33.790579 -33.796855 0.0062761758 330.30954 1.4209688 + 152200 -33.791779 -33.796409 0.0046294112 243.64178 1.5457567 + 152300 -33.793605 -33.796188 0.0025836866 135.97712 1.5540711 + 152400 -33.792478 -33.796213 0.0037355672 196.59957 1.5256562 + 152500 -33.787776 -33.796482 0.0087054584 458.16051 1.4346615 + 152600 -33.789804 -33.796841 0.007037162 370.35956 1.1038919 + 152700 -33.793038 -33.797152 0.0041149396 216.5656 0.7632963 + 152800 -33.793003 -33.797502 0.004499218 236.78983 0.48063655 + 152900 -33.791929 -33.797938 0.0060082768 316.21025 0.15941899 + 153000 -33.792109 -33.798374 0.0062655463 329.75011 -0.21600446 + 153100 -33.793125 -33.798741 0.0056164976 295.59126 -0.5819501 + 153200 -33.794318 -33.799036 0.0047184161 248.32603 -0.89081957 + 153300 -33.795168 -33.799286 0.0041177785 216.71501 -1.1186695 + 153400 -33.793969 -33.799531 0.0055618804 292.71681 -1.244271 + 153500 -33.790633 -33.799764 0.0091312907 480.57168 -1.2905763 + 153600 -33.794278 -33.799846 0.0055683716 293.05843 -1.4134276 + 153700 -33.796858 -33.799834 0.0029760053 156.6245 -1.4412527 + 153800 -33.795685 -33.79981 0.004124355 217.06112 -1.324839 + 153900 -33.792906 -33.799704 0.0067978373 357.76412 -1.0796476 + 154000 -33.793142 -33.799423 0.0062814115 330.58508 -0.83059924 + 154100 -33.794 -33.799009 0.0050088479 263.6112 -0.58549955 + 154200 -33.793744 -33.798508 0.0047639732 250.72366 -0.31953354 + 154300 -33.789109 -33.79781 0.0087009605 457.92379 0.078373826 + 154400 -33.787897 -33.796683 0.0087857072 462.38393 0.48539048 + 154500 -33.792826 -33.795756 0.0029298009 154.19281 0.64150345 + 154600 -33.792724 -33.795178 0.0024536273 129.13222 0.7835886 + 154700 -33.791158 -33.79474 0.0035816288 188.49793 0.90772619 + 154800 -33.788733 -33.794453 0.005720401 301.0596 0.99325064 + 154900 -33.786936 -33.794365 0.0074295612 391.01118 0.99049771 + 155000 -33.788938 -33.794495 0.0055573728 292.47958 0.838982 + 155100 -33.792355 -33.794787 0.0024323511 128.01247 0.63074602 + 155200 -33.792601 -33.795238 0.0026373333 138.8005 0.46175976 + 155300 -33.785714 -33.796119 0.010404502 547.57964 0.29195767 + 155400 -33.788264 -33.797254 0.0089905839 473.16641 -0.22159327 + 155500 -33.792893 -33.797984 0.0050908536 267.92708 -0.67830415 + 155600 -33.794081 -33.798508 0.0044270228 232.99026 -0.99702321 + 155700 -33.79312 -33.798971 0.0058515085 307.95967 -1.2632492 + 155800 -33.789239 -33.799396 0.010157928 534.60269 -1.5143883 + 155900 -33.793777 -33.799619 0.005841352 307.42515 -1.9197513 + 156000 -33.796652 -33.799671 0.0030192763 158.90182 -2.140064 + 156100 -33.795369 -33.799714 0.0043447477 228.6602 -2.2024791 + 156200 -33.791915 -33.799731 0.00781646 411.37332 -2.1726387 + 156300 -33.792819 -33.79964 0.0068206888 358.96677 -2.1669228 + 156400 -33.794083 -33.799476 0.0053929904 283.82827 -2.1084939 + 156500 -33.794046 -33.799278 0.0052317513 275.3424 -1.9649831 + 156600 -33.793143 -33.799031 0.005887871 309.8734 -1.7395027 + 156700 -33.790332 -33.798677 0.0083459138 439.238 -1.398291 + 156800 -33.789173 -33.798088 0.0089147462 469.17514 -0.9973742 + 156900 -33.794066 -33.797506 0.0034398782 181.03772 -0.7852139 + 157000 -33.794252 -33.797084 0.0028328776 149.09182 -0.55716835 + 157100 -33.790657 -33.79662 0.0059636653 313.86238 -0.2090185 + 157200 -33.789012 -33.79597 0.0069580147 366.19411 0.17322922 + 157300 -33.7901 -33.795321 0.0052209509 274.77399 0.45080765 + 157400 -33.790262 -33.794798 0.0045362772 238.74022 0.66754378 + 157500 -33.785667 -33.794364 0.0086974387 457.73844 0.93353105 + 157600 -33.78388 -33.793879 0.0099992132 526.24967 1.1285804 + 157700 -33.789518 -33.793641 0.0041230256 216.99116 1.0716721 + 157800 -33.789334 -33.793741 0.0044064279 231.90637 1.0385741 + 157900 -33.78733 -33.794184 0.0068545821 360.75054 0.95092351 + 158000 -33.787388 -33.794913 0.0075245219 396.00888 0.73396841 + 158100 -33.792715 -33.795585 0.0028702353 151.05792 0.42191753 + 158200 -33.792925 -33.796201 0.003275805 172.4027 0.24108615 + 158300 -33.790219 -33.797046 0.0068265687 359.27622 0.053551793 + 158400 -33.789931 -33.797978 0.0080467155 423.49146 -0.24982943 + 158500 -33.793684 -33.798601 0.0049169675 258.77561 -0.58669575 + 158600 -33.794402 -33.798981 0.0045789714 240.98718 -0.79527419 + 158700 -33.793651 -33.799245 0.0055936254 294.38752 -0.94763425 + 158800 -33.792728 -33.799366 0.0066383292 349.36935 -1.0689009 + 158900 -33.793489 -33.799318 0.0058295582 306.80445 -1.1760279 + 159000 -33.795589 -33.799182 0.0035930077 189.09679 -1.2426658 + 159100 -33.795989 -33.799074 0.0030856155 162.39319 -1.2101941 + 159200 -33.791468 -33.799002 0.0075342754 396.5222 -0.99174296 + 159300 -33.790188 -33.798876 0.0086880997 457.24694 -0.72072746 + 159400 -33.793998 -33.798746 0.0047477576 249.87025 -0.55147632 + 159500 -33.79435 -33.798698 0.0043488957 228.8785 -0.32860774 + 159600 -33.793136 -33.798727 0.0055919944 294.30168 -0.043182717 + 159700 -33.792525 -33.798793 0.0062676167 329.85907 0.25603141 + 159800 -33.792923 -33.798852 0.0059292197 312.04954 0.51886412 + 159900 -33.793447 -33.798892 0.005444715 286.55049 0.73610821 + 160000 -33.793626 -33.798911 0.0052847121 278.12969 0.91024312 + 160100 -33.79282 -33.798907 0.0060872696 320.36757 1.0553714 + 160200 -33.791916 -33.798857 0.0069417648 365.33889 1.1558921 + 160300 -33.793384 -33.798758 0.0053744472 282.85236 1.1520902 + 160400 -33.794799 -33.798677 0.0038787476 204.13502 1.09482 + 160500 -33.793679 -33.798659 0.004979501 262.0667 1.0373805 + 160600 -33.788237 -33.798682 0.010444878 549.70459 0.98279574 + 160700 -33.792633 -33.798666 0.0060326055 317.49065 0.69072165 + 160800 -33.795212 -33.79869 0.0034775078 183.01813 0.48918454 + 160900 -33.794204 -33.798819 0.0046147918 242.87238 0.36522713 + 161000 -33.792149 -33.799036 0.0068866691 362.43925 0.24593833 + 161100 -33.792434 -33.799241 0.006807518 358.2736 0.083723291 + 161200 -33.796632 -33.799352 0.0027203017 143.16705 -0.099552247 + 161300 -33.797371 -33.799437 0.0020657029 108.7161 -0.14746059 + 161400 -33.795161 -33.799553 0.0043920558 231.14998 -0.096220339 + 161500 -33.793353 -33.799618 0.0062647074 329.70596 -0.010890759 + 161600 -33.793466 -33.79952 0.0060544348 318.63951 0.068332819 + 161700 -33.794489 -33.799287 0.0047983063 252.53058 0.14725999 + 161800 -33.794862 -33.799007 0.00414592 218.19607 0.24970023 + 161900 -33.79173 -33.798689 0.0069588284 366.23693 0.45112949 + 162000 -33.789211 -33.798238 0.0090274185 475.10498 0.69485645 + 162100 -33.793796 -33.797856 0.0040602805 213.68894 0.77123666 + 162200 -33.794979 -33.797739 0.0027601646 145.265 0.85550268 + 162300 -33.791579 -33.797868 0.0062894129 331.00619 1.0208387 + 162400 -33.787971 -33.798223 0.010251848 539.54563 1.2118061 + 162500 -33.792453 -33.798529 0.0060767649 319.81472 1.1985523 + 162600 -33.794716 -33.798765 0.004048165 213.05131 1.1694944 + 162700 -33.794341 -33.798989 0.0046477817 244.60861 1.1410886 + 162800 -33.790182 -33.799195 0.0090122441 474.30637 1.1198519 + 162900 -33.791277 -33.799205 0.0079279654 417.24175 0.91908495 + 163000 -33.796238 -33.799068 0.0028297471 148.92706 0.66667753 + 163100 -33.79554 -33.798939 0.0033991546 178.89448 0.51623757 + 163200 -33.792626 -33.798768 0.0061423326 323.26548 0.32811803 + 163300 -33.791552 -33.798505 0.0069533335 365.94774 0.027118426 + 163400 -33.792853 -33.798228 0.0053753151 282.89804 -0.31185506 + 163500 -33.793671 -33.798041 0.0043703004 230.00501 -0.59405961 + 163600 -33.792593 -33.797985 0.0053919843 283.77532 -0.80502107 + 163700 -33.789213 -33.798049 0.0088358335 465.02204 -0.98094921 + 163800 -33.792073 -33.798167 0.0060940875 320.72639 -1.2412162 + 163900 -33.794838 -33.798317 0.0034787555 183.0838 -1.39222 + 164000 -33.794177 -33.798546 0.004368618 229.91647 -1.3966128 + 164100 -33.787435 -33.798883 0.011447781 602.4865 -1.2061986 + 164200 -33.792116 -33.799092 0.0069759292 367.13693 -1.1752952 + 164300 -33.795062 -33.799116 0.0040541403 213.36579 -1.1131378 + 164400 -33.793913 -33.799094 0.0051812542 272.68479 -0.92863007 + 164500 -33.791313 -33.798984 0.0076716085 403.74991 -0.64549798 + 164600 -33.792221 -33.798736 0.0065151908 342.88868 -0.39108374 + 164700 -33.79572 -33.798498 0.0027780367 146.2056 -0.24741915 + 164800 -33.79608 -33.798394 0.0023134269 121.7536 -0.1055599 + 164900 -33.79057 -33.798392 0.0078220095 411.66538 0.1817473 + 165000 -33.790669 -33.798392 0.0077229931 406.45424 0.39216244 + 165100 -33.79392 -33.798382 0.0044623289 234.84839 0.45719274 + 165200 -33.794538 -33.798429 0.0038904617 204.75153 0.49250342 + 165300 -33.790673 -33.798551 0.0078777322 414.59802 0.54633899 + 165400 -33.787429 -33.798659 0.011229213 590.98348 0.49274702 + 165500 -33.794194 -33.798639 0.0044449842 233.93556 0.21393739 + 165600 -33.794115 -33.79863 0.0045154907 237.64625 0.044346722 + 165700 -33.79209 -33.798638 0.0065482678 344.62949 -0.15842107 + 165800 -33.7907 -33.798611 0.0079108209 416.33945 -0.45583039 + 165900 -33.79469 -33.798545 0.0038542916 202.84793 -0.84182121 + 166000 -33.79637 -33.798555 0.0021844933 114.96794 -1.0727875 + 166100 -33.794242 -33.7987 0.0044581008 234.62587 -1.2115527 + 166200 -33.79115 -33.799002 0.007852601 413.27538 -1.3808568 + 166300 -33.793102 -33.799305 0.0062025688 326.43566 -1.6110781 + 166400 -33.79511 -33.799571 0.004460969 234.77682 -1.758253 + 166500 -33.795391 -33.799852 0.0044610097 234.77896 -1.7973754 + 166600 -33.791177 -33.800206 0.0090285886 475.16656 -1.6797841 + 166700 -33.79139 -33.800573 0.0091828685 483.28618 -1.5744679 + 166800 -33.796806 -33.800756 0.0039497874 207.87379 -1.5618925 + 166900 -33.796572 -33.800905 0.0043327145 228.0269 -1.4164258 + 167000 -33.794101 -33.801066 0.0069652429 366.57452 -1.1648816 + 167100 -33.793156 -33.801176 0.0080203502 422.10388 -0.88095981 + 167200 -33.798445 -33.801191 0.0027462847 144.53452 -0.76834318 + 167300 -33.798778 -33.801214 0.0024363351 128.22214 -0.63177126 + 167400 -33.795633 -33.801272 0.0056392217 296.78721 -0.40228605 + 167500 -33.793729 -33.801287 0.0075580843 397.77523 -0.15531015 + 167600 -33.79561 -33.801193 0.0055832031 293.839 -0.015693624 + 167700 -33.796907 -33.801047 0.0041397885 217.87338 0.076912282 + 167800 -33.795491 -33.800877 0.0053858464 283.45229 0.18103672 + 167900 -33.789509 -33.800558 0.011049553 581.52811 0.3594749 + 168000 -33.794823 -33.800117 0.0052939718 278.61701 0.28314777 + 168100 -33.796571 -33.799816 0.0032445123 170.75579 0.24038152 + 168200 -33.794849 -33.799612 0.0047628429 250.66418 0.23615179 + 168300 -33.791466 -33.799441 0.007975284 419.73208 0.22599089 + 168400 -33.792565 -33.799308 0.0067433657 354.89732 0.10930112 + 168500 -33.793811 -33.799254 0.0054432803 286.47499 -0.0033356341 + 168600 -33.794214 -33.799286 0.0050722933 266.95027 -0.087885774 + 168700 -33.793225 -33.799388 0.0061630027 324.35333 -0.13456088 + 168800 -33.790197 -33.799514 0.0093177321 490.38393 -0.13590477 + 168900 -33.794056 -33.799557 0.0055015566 289.54202 -0.25508241 + 169000 -33.796505 -33.799558 0.0030530754 160.68063 -0.31144923 + 169100 -33.795195 -33.799579 0.004383106 230.67896 -0.26131643 + 169200 -33.790312 -33.799562 0.0092495523 486.79569 -0.094525954 + 169300 -33.792269 -33.799383 0.0071133143 374.36739 -0.030125461 + 169400 -33.793985 -33.799127 0.0051427972 270.66083 0.045763404 + 169500 -33.794131 -33.798871 0.004740707 249.49918 0.16712499 + 169600 -33.791443 -33.798606 0.0071632027 376.99297 0.3800838 + 169700 -33.787043 -33.79821 0.01116746 587.73348 0.69857127 + 169800 -33.794131 -33.797811 0.0036793619 193.64153 0.76120204 + 169900 -33.79467 -33.79764 0.0029703644 156.32763 0.88135358 + 170000 -33.792172 -33.7976 0.0054284407 285.69399 1.0700716 + 170100 -33.789857 -33.797598 0.0077405296 407.37717 1.2752108 + 170200 -33.791623 -33.797544 0.0059205253 311.59196 1.36869 + 170300 -33.793062 -33.797472 0.0044097125 232.07923 1.411639 + 170400 -33.791897 -33.797419 0.0055217913 290.60695 1.4586845 + 170500 -33.784309 -33.797288 0.012979396 683.09401 1.5827868 + 170600 -33.791897 -33.797023 0.0051253288 269.74148 1.3686834 + 170700 -33.793546 -33.796903 0.0033571617 176.68443 1.2593112 + 170800 -33.791614 -33.796977 0.0053627791 282.23828 1.1854787 + 170900 -33.787724 -33.797286 0.0095621771 503.24885 1.0800471 + 171000 -33.792283 -33.797716 0.0054334957 285.96003 0.79683764 + 171100 -33.794792 -33.79816 0.0033682414 177.26754 0.61831273 + 171200 -33.793875 -33.798783 0.0049080618 258.30692 0.52365855 + 171300 -33.792204 -33.799616 0.0074124372 390.10996 0.44153993 + 171400 -33.794134 -33.800442 0.0063077864 331.97317 0.30234836 + 171500 -33.797821 -33.800991 0.0031704292 166.85686 0.1736905 + 171600 -33.797973 -33.801386 0.0034122623 179.58432 0.15182567 + 171700 -33.790695 -33.801798 0.011103162 584.34953 0.30219297 + 171800 -33.792261 -33.802017 0.0097560289 513.4511 0.30186788 + 171900 -33.796599 -33.80189 0.0052904472 278.43152 0.25320641 + 172000 -33.797702 -33.801648 0.0039460809 207.67872 0.27698525 + 172100 -33.795887 -33.801333 0.0054457069 286.60269 0.37678712 + 172200 -33.791092 -33.80082 0.0097277109 511.96075 0.57372526 + 172300 -33.794926 -33.800193 0.0052670155 277.19833 0.61079469 + 172400 -33.79772 -33.799845 0.0021244749 111.80922 0.62666633 + 172500 -33.796879 -33.799707 0.0028288529 148.88 0.70167065 + 172600 -33.794393 -33.799718 0.0053253518 280.26851 0.81291826 + 172700 -33.79186 -33.799826 0.0079662578 419.25704 0.92325445 + 172800 -33.794257 -33.799921 0.0056642786 298.10593 0.91137484 + 172900 -33.797315 -33.79999 0.0026747959 140.77212 0.85124154 + 173000 -33.797414 -33.800094 0.0026799954 141.04577 0.82063214 + 173100 -33.790209 -33.800284 0.010075009 530.23872 0.87607201 + 173200 -33.793235 -33.800371 0.0071358244 375.55207 0.67617475 + 173300 -33.796671 -33.800358 0.0036865921 194.02206 0.48870283 + 173400 -33.796312 -33.800386 0.0040738277 214.40192 0.37923783 + 173500 -33.79144 -33.800495 0.0090543252 476.52106 0.31665594 + 173600 -33.792582 -33.800631 0.0080490974 423.61682 0.094358729 + 173700 -33.797485 -33.80076 0.0032743647 172.3269 -0.13325992 + 173800 -33.796871 -33.800992 0.0041214528 216.90839 -0.21065319 + 173900 -33.794101 -33.801376 0.0072746934 382.86062 -0.24034974 + 174000 -33.79403 -33.801807 0.0077774136 409.31834 -0.31734968 + 174100 -33.798286 -33.802088 0.0038020907 200.10064 -0.44847038 + 174200 -33.798952 -33.802266 0.0033144632 174.43724 -0.47906375 + 174300 -33.795355 -33.80241 0.0070542856 371.26076 -0.4083854 + 174400 -33.790105 -33.802374 0.01226936 645.72545 -0.29361213 + 174500 -33.798839 -33.802106 0.0032674012 171.96041 -0.45516075 + 174600 -33.798343 -33.801824 0.0034806617 183.18412 -0.43236364 + 174700 -33.794729 -33.801385 0.0066563321 350.31682 -0.33827529 + 174800 -33.792613 -33.800666 0.0080531029 423.82762 -0.26572795 + 174900 -33.795487 -33.799904 0.0044171266 232.46943 -0.29564036 + 175000 -33.79671 -33.799357 0.0026474367 139.33223 -0.2998532 + 175100 -33.793177 -33.798914 0.0057369218 301.92907 -0.20845345 + 175200 -33.789996 -33.798371 0.0083749874 440.76812 -0.1132005 + 175300 -33.792864 -33.79796 0.0050958138 268.18814 -0.1428265 + 175400 -33.794076 -33.797781 0.0037047717 194.97883 -0.15176669 + 175500 -33.791189 -33.797783 0.0065938826 347.03016 -0.090153529 + 175600 -33.785757 -33.797849 0.0120913 636.35432 0.0073539752 + 175700 -33.79242 -33.797808 0.0053875602 283.54249 -0.14613163 + 175800 -33.793112 -33.797754 0.0046416678 244.28684 -0.1948512 + 175900 -33.791871 -33.797679 0.0058076796 305.653 -0.22708582 + 176000 -33.789248 -33.797506 0.0082584472 434.63471 -0.26375441 + 176100 -33.790455 -33.79716 0.006705399 352.89917 -0.40303504 + 176200 -33.794084 -33.796845 0.0027610663 145.31246 -0.56961257 + 176300 -33.793686 -33.796659 0.0029730135 156.46705 -0.64396604 + 176400 -33.789374 -33.796517 0.0071431287 375.93649 -0.67448791 + 176500 -33.789282 -33.796357 0.0070747648 372.33856 -0.81446678 + 176600 -33.791291 -33.796251 0.004959867 261.03338 -0.96863491 + 176700 -33.791907 -33.796272 0.0043647555 229.71319 -1.0588832 + 176800 -33.78819 -33.796454 0.0082640913 434.93175 -1.0383314 + 176900 -33.786306 -33.796764 0.010458575 550.42547 -1.0374848 + 177000 -33.792654 -33.797001 0.0043478386 228.82287 -1.1619998 + 177100 -33.792849 -33.797283 0.0044340477 233.35998 -1.1306093 + 177200 -33.790818 -33.797684 0.0068661081 361.35714 -1.0145093 + 177300 -33.789767 -33.798139 0.0083726761 440.64648 -0.87508735 + 177400 -33.795137 -33.798455 0.0033181152 174.62944 -0.86842784 + 177500 -33.795729 -33.798699 0.0029691928 156.26597 -0.79094362 + 177600 -33.792562 -33.799023 0.0064609603 340.03458 -0.61467541 + 177700 -33.790685 -33.799379 0.0086938799 457.55114 -0.42519695 + 177800 -33.793784 -33.799582 0.0057983492 305.16195 -0.35727698 + 177900 -33.794453 -33.799701 0.0052477691 276.18541 -0.27602195 + 178000 -33.794136 -33.799799 0.0056625175 298.01325 -0.19690907 + 178100 -33.793566 -33.799888 0.0063218007 332.71073 -0.13438854 + 178200 -33.793712 -33.79997 0.0062579863 329.35224 -0.11099556 + 178300 -33.795489 -33.800051 0.0045621069 240.09962 -0.14621827 + 178400 -33.796129 -33.800164 0.0040346676 212.34096 -0.18098555 + 178500 -33.79364 -33.80034 0.0067001078 352.62069 -0.17814893 + 178600 -33.790636 -33.800544 0.0099076094 521.42865 -0.20058363 + 178700 -33.796744 -33.800641 0.0038970361 205.09753 -0.40136433 + 178800 -33.797579 -33.800708 0.0031287826 164.66504 -0.47311998 + 178900 -33.795758 -33.800802 0.0050432389 265.42116 -0.49199194 + 179000 -33.793816 -33.800865 0.0070487161 370.96764 -0.51160335 + 179100 -33.79472 -33.800817 0.0060970132 320.88036 -0.5755052 + 179200 -33.796833 -33.800686 0.0038533818 202.80005 -0.6371536 + 179300 -33.799249 -33.800579 0.0013298819 69.990499 -0.67563484 + 179400 -33.799005 -33.800551 0.0015464805 81.38989 -0.63198108 + 179500 -33.796176 -33.800572 0.0043958872 231.35162 -0.47442269 + 179600 -33.79382 -33.800559 0.0067397293 354.70594 -0.25259613 + 179700 -33.793687 -33.800432 0.0067454572 355.00739 -0.032462291 + 179800 -33.796052 -33.800234 0.0041821272 220.10163 0.1264043 + 179900 -33.797321 -33.80008 0.0027593172 145.2204 0.2684901 + 180000 -33.794846 -33.799992 0.0051456623 270.81162 0.48870323 + 180100 -33.79016 -33.799877 0.0097169629 511.39509 0.84000657 + 180200 -33.794187 -33.799713 0.0055266556 290.86296 0.996598 + 180300 -33.795719 -33.799617 0.0038982273 205.16023 1.1216417 + 180400 -33.794431 -33.799597 0.0051661057 271.88753 1.2678455 + 180500 -33.789866 -33.799599 0.0097335658 512.26889 1.4698746 + 180600 -33.785775 -33.799446 0.013671149 719.50039 1.6592059 + 180700 -33.795268 -33.799183 0.0039151736 206.05209 1.52317 + 180800 -33.795643 -33.798997 0.003354162 176.52656 1.5218414 + 180900 -33.792441 -33.798805 0.0063641366 334.93883 1.5607064 + 181000 -33.790024 -33.798467 0.0084425475 444.32374 1.5509654 + 181100 -33.793516 -33.798051 0.004534767 238.66074 1.4190648 + 181200 -33.795479 -33.797778 0.0022989329 120.99079 1.3358991 + 181300 -33.794501 -33.79767 0.0031687293 166.7674 1.3247452 + 181400 -33.788695 -33.797657 0.0089620354 471.66393 1.4088339 + 181500 -33.790777 -33.797638 0.0068613181 361.10505 1.3506225 + 181600 -33.793969 -33.797661 0.0036918069 194.2965 1.2943429 + 181700 -33.793683 -33.797796 0.0041125493 216.4398 1.3301208 + 181800 -33.787791 -33.798067 0.010276342 540.83472 1.5118836 + 181900 -33.790143 -33.798297 0.0081534962 429.11123 1.5647678 + 182000 -33.794626 -33.798364 0.0037377345 196.71363 1.5477637 + 182100 -33.793539 -33.798425 0.0048853182 257.10994 1.6426277 + 182200 -33.790677 -33.798434 0.0077577832 408.28521 1.7921235 + 182300 -33.791564 -33.798279 0.0067148753 353.3979 1.8732486 + 182400 -33.795265 -33.798059 0.0027944715 147.07054 1.8687392 + 182500 -33.795594 -33.797922 0.0023271257 122.47455 1.9058708 + 182600 -33.789967 -33.7978 0.0078322932 412.2066 2.0652592 + 182700 -33.790216 -33.79755 0.007334274 385.9963 2.1112531 + 182800 -33.793053 -33.797298 0.0042441346 223.36502 2.0807676 + 182900 -33.793378 -33.797159 0.003780766 198.97834 2.0780383 + 183000 -33.788728 -33.797129 0.0084012336 442.14943 2.1511295 + 183100 -33.787465 -33.797111 0.0096460903 507.66513 2.1250716 + 183200 -33.792474 -33.797106 0.004631441 243.74861 1.9680675 + 183300 -33.792258 -33.797214 0.0049558502 260.82198 1.9026564 + 183400 -33.790843 -33.797443 0.0066005371 347.38038 1.8340497 + 183500 -33.790852 -33.797736 0.0068833736 362.26581 1.7093098 + 183600 -33.794558 -33.797996 0.0034376075 180.91822 1.5176955 + 183700 -33.795591 -33.798249 0.0026579413 139.88508 1.4033244 + 183800 -33.792082 -33.798629 0.0065461333 344.51716 1.3562546 + 183900 -33.789225 -33.799151 0.009925992 522.3961 1.2262293 + 184000 -33.793344 -33.799495 0.0061506831 323.70497 0.97274319 + 184100 -33.795031 -33.79973 0.0046995672 247.33403 0.80308261 + 184200 -33.794839 -33.799963 0.0051231708 269.62791 0.68872225 + 184300 -33.790881 -33.800238 0.0093565751 492.4282 0.64419781 + 184400 -33.791471 -33.800486 0.0090156026 474.48312 0.49393884 + 184500 -33.797095 -33.800596 0.0035011841 184.2642 0.30194699 + 184600 -33.796659 -33.800708 0.0040487113 213.08007 0.26667886 + 184700 -33.793515 -33.800829 0.0073143508 384.94776 0.29878079 + 184800 -33.79317 -33.800828 0.0076582002 403.04424 0.28571085 + 184900 -33.79838 -33.800691 0.0023115208 121.65328 0.17535846 + 185000 -33.798729 -33.800574 0.0018449538 97.098274 0.1696991 + 185100 -33.796845 -33.800415 0.0035701226 187.89237 0.21307892 + 185200 -33.79392 -33.800087 0.0061670216 324.56484 0.27684495 + 185300 -33.79269 -33.799505 0.0068147754 358.65555 0.29709295 + 185400 -33.793884 -33.798777 0.0048936251 257.54712 0.25265454 + 185500 -33.795349 -33.798133 0.0027842246 146.53125 0.18725264 + 185600 -33.794357 -33.79763 0.003273154 172.26318 0.15024817 + 185700 -33.789657 -33.797049 0.0073919385 389.03113 0.12799371 + 185800 -33.789459 -33.796445 0.0069857212 367.65228 -0.035674627 + 185900 -33.791898 -33.796076 0.0041779204 219.88023 -0.24790711 + 186000 -33.792833 -33.796004 0.003170801 166.87643 -0.41378791 + 186100 -33.789507 -33.796213 0.0067058507 352.92294 -0.52028446 + 186200 -33.786312 -33.79668 0.010367407 545.6274 -0.71916331 + 186300 -33.792197 -33.797065 0.0048679981 256.1984 -1.055471 + 186400 -33.793071 -33.79739 0.0043190931 227.31002 -1.2304199 + 186500 -33.791769 -33.79775 0.0059813091 314.79096 -1.3542207 + 186600 -33.790181 -33.798092 0.0079107067 416.33344 -1.477034 + 186700 -33.793436 -33.79829 0.0048537535 255.44872 -1.671185 + 186800 -33.795668 -33.798382 0.0027138664 142.82837 -1.7820718 + 186900 -33.794178 -33.798493 0.0043149836 227.09374 -1.783209 + 187000 -33.789706 -33.798617 0.0089105292 468.9532 -1.7015155 + 187100 -33.792028 -33.798613 0.0065854994 346.58896 -1.728513 + 187200 -33.794018 -33.798533 0.0045145966 237.59919 -1.7306524 + 187300 -33.793582 -33.798438 0.0048556001 255.5459 -1.6640348 + 187400 -33.792606 -33.798308 0.0057019377 300.0879 -1.5627448 + 187500 -33.79202 -33.798108 0.0060884191 320.42807 -1.451452 + 187600 -33.79224 -33.79783 0.0055898121 294.18682 -1.350263 + 187700 -33.793578 -33.797516 0.0039380785 207.25756 -1.2807924 + 187800 -33.793461 -33.797226 0.0037654437 198.17194 -1.1975009 + 187900 -33.789689 -33.796868 0.0071790424 377.8266 -1.0345586 + 188000 -33.788132 -33.796301 0.0081691849 429.93691 -0.90594308 + 188100 -33.791962 -33.795741 0.0037782552 198.8462 -0.91454845 + 188200 -33.793257 -33.795419 0.0021618836 113.778 -0.90738251 + 188300 -33.789014 -33.795266 0.00625118 328.99403 -0.80607682 + 188400 -33.786339 -33.795154 0.0088148362 463.91697 -0.74457576 + 188500 -33.790491 -33.795128 0.0046364949 244.01459 -0.8317876 + 188600 -33.791763 -33.795277 0.0035139018 184.93352 -0.8691625 + 188700 -33.789217 -33.795672 0.0064554924 339.74681 -0.83692385 + 188800 -33.784624 -33.796398 0.011773537 619.63077 -0.77594889 + 188900 -33.792527 -33.797019 0.0044916151 236.3897 -0.95675668 + 189000 -33.79291 -33.797547 0.0046369379 244.03791 -0.97694404 + 189100 -33.791423 -33.79819 0.0067666989 356.12533 -0.95265345 + 189200 -33.791691 -33.798861 0.0071696911 377.33445 -0.95562968 + 189300 -33.795662 -33.799347 0.0036847743 193.92638 -1.0240575 + 189400 -33.796735 -33.799689 0.0029543177 155.4831 -1.0273877 + 189500 -33.792642 -33.800068 0.0074259867 390.82306 -0.91221881 + 189600 -33.789341 -33.800478 0.011137369 586.14977 -0.78234669 + 189700 -33.794575 -33.800606 0.006030359 317.37242 -0.82623281 + 189800 -33.796172 -33.800612 0.0044408013 233.71541 -0.80215117 + 189900 -33.79557 -33.800592 0.0050222978 264.31905 -0.72496103 + 190000 -33.791046 -33.800541 0.0094949212 499.70923 -0.54138818 + 190100 -33.792603 -33.800382 0.0077782271 409.36116 -0.44593133 + 190200 -33.797395 -33.80026 0.0028647366 150.76853 -0.44862112 + 190300 -33.796564 -33.800252 0.0036881909 194.1062 -0.34267269 + 190400 -33.793453 -33.800335 0.0068825936 362.22476 -0.15293172 + 190500 -33.793174 -33.80044 0.0072657148 382.38809 0.013124495 + 190600 -33.79538 -33.800515 0.0051356022 270.28216 0.11635235 + 190700 -33.796006 -33.800594 0.0045882552 241.47578 0.22996568 + 190800 -33.792324 -33.800698 0.0083745779 440.74657 0.43132897 + 190900 -33.787517 -33.800742 0.013224088 695.97197 0.72137096 + 191000 -33.796083 -33.80065 0.0045668623 240.34989 0.68335964 + 191100 -33.79682 -33.80061 0.0037898051 199.45406 0.75020734 + 191200 -33.794382 -33.800639 0.0062574342 329.32318 0.8686337 + 191300 -33.791495 -33.800697 0.0092026896 484.32935 0.99803945 + 191400 -33.796444 -33.800719 0.0042755069 225.01611 0.9520988 + 191500 -33.79806 -33.800773 0.0027130663 142.78626 0.94213586 + 191600 -33.796758 -33.800904 0.0041463814 218.22035 0.97721634 + 191700 -33.794965 -33.801072 0.0061061793 321.36277 1.0127387 + 191800 -33.794541 -33.801165 0.0066243201 348.63206 1.0131465 + 191900 -33.796389 -33.801122 0.0047328255 249.08438 0.96655073 + 192000 -33.798974 -33.801017 0.0020429588 107.5191 0.912035 + 192100 -33.799042 -33.800938 0.0018960454 99.78718 0.91884691 + 192200 -33.795108 -33.80083 0.0057218988 301.13843 1.0272467 + 192300 -33.793646 -33.800561 0.006915313 363.94675 1.1147992 + 192400 -33.794887 -33.800168 0.0052811178 277.94052 1.1627144 + 192500 -33.795899 -33.799792 0.0038925704 204.86251 1.2215815 + 192600 -33.793905 -33.799466 0.0055614668 292.69504 1.3579288 + 192700 -33.78865 -33.799048 0.01039817 547.24641 1.6152536 + 192800 -33.79331 -33.798613 0.0053033901 279.11269 1.6791794 + 192900 -33.794837 -33.798394 0.0035569469 187.19894 1.7566615 + 193000 -33.793607 -33.798339 0.0047320171 249.04184 1.8780822 + 193100 -33.792008 -33.798391 0.0063829282 335.92782 2.0022641 + 193200 -33.792035 -33.798468 0.0064328325 338.55423 2.072141 + 193300 -33.794386 -33.798524 0.0041373361 217.74431 2.0574962 + 193400 -33.79697 -33.798592 0.0016213001 85.327579 2.0005604 + 193500 -33.796332 -33.798746 0.0024140371 127.04862 1.9760304 + 193600 -33.792874 -33.799036 0.0061618385 324.29206 1.9482423 + 193700 -33.79252 -33.799282 0.0067620191 355.87903 1.8043878 + 193800 -33.794326 -33.799375 0.0050485889 265.70273 1.6052179 + 193900 -33.795647 -33.799391 0.0037441645 197.05204 1.4290869 + 194000 -33.794283 -33.799413 0.0051307639 270.02753 1.3083321 + 194100 -33.788906 -33.799417 0.010510277 553.14652 1.2128518 + 194200 -33.793647 -33.799312 0.0056657071 298.18111 0.92497529 + 194300 -33.795689 -33.799268 0.0035791701 188.36853 0.77329197 + 194400 -33.794613 -33.799349 0.0047360205 249.25254 0.72543487 + 194500 -33.793065 -33.799525 0.0064602791 339.99873 0.71743547 + 194600 -33.793274 -33.7997 0.0064259609 338.19259 0.70797263 + 194700 -33.794397 -33.799809 0.0054122226 284.84045 0.70858666 + 194800 -33.794983 -33.799858 0.0048747563 256.55407 0.73898672 + 194900 -33.795261 -33.799858 0.004596321 241.90027 0.78721649 + 195000 -33.793989 -33.799811 0.0058219005 306.40143 0.87360678 + 195100 -33.792226 -33.799679 0.0074531327 392.25173 0.97427311 + 195200 -33.79382 -33.799463 0.0056434667 297.01062 0.99491408 + 195300 -33.79586 -33.7993 0.0034396295 181.02463 0.97784398 + 195400 -33.795251 -33.799266 0.004015497 211.33203 0.98594949 + 195500 -33.789012 -33.799367 0.010355347 544.99266 1.0669398 + 195600 -33.792393 -33.799501 0.0071080605 374.09088 0.91931176 + 195700 -33.795061 -33.799656 0.0045946718 241.81348 0.77729964 + 195800 -33.79477 -33.799911 0.005141253 270.57956 0.67038989 + 195900 -33.793662 -33.80027 0.006607974 347.77178 0.54075323 + 196000 -33.79425 -33.800659 0.006408291 337.26264 0.345917 + 196100 -33.798014 -33.800955 0.0029410287 154.78371 0.1133481 + 196200 -33.798244 -33.801219 0.0029746664 156.55404 -0.021229291 + 196300 -33.794184 -33.801568 0.0073844363 388.63629 -0.11441926 + 196400 -33.793376 -33.801888 0.0085124703 448.00372 -0.33578055 + 196500 -33.7968 -33.801994 0.005194353 273.37416 -0.60410813 + 196600 -33.797168 -33.801994 0.0048259358 253.9847 -0.77364101 + 196700 -33.796337 -33.801933 0.0055958696 294.50563 -0.90992994 + 196800 -33.795454 -33.801803 0.0063489524 334.1397 -1.0389559 + 196900 -33.795634 -33.801613 0.0059797061 314.7066 -1.1719637 + 197000 -33.797428 -33.801425 0.0039971457 210.36621 -1.300223 + 197100 -33.797378 -33.801296 0.0039177222 206.18623 -1.354148 + 197200 -33.793695 -33.801186 0.0074908103 394.23466 -1.3160382 + 197300 -33.792573 -33.800994 0.008421124 443.19624 -1.3139102 + 197400 -33.797281 -33.800783 0.0035020815 184.31143 -1.4069669 + 197500 -33.797909 -33.800665 0.0027561004 145.0511 -1.401508 + 197600 -33.796372 -33.800602 0.0042297629 222.60865 -1.330758 + 197700 -33.794965 -33.800543 0.0055784668 293.58973 -1.240062 + 197800 -33.79367 -33.800442 0.0067719947 356.40404 -1.1360092 + 197900 -33.794335 -33.800268 0.0059332676 312.26258 -1.0677061 + 198000 -33.79673 -33.800087 0.0033568516 176.6681 -1.0492706 + 198100 -33.797348 -33.799975 0.0026274427 138.27997 -1.0147739 + 198200 -33.793219 -33.799901 0.0066820062 351.66802 -0.88689215 + 198300 -33.791257 -33.799713 0.0084559146 445.02724 -0.7957518 + 198400 -33.794578 -33.799429 0.0048509115 255.29914 -0.83116253 + 198500 -33.795373 -33.79918 0.0038064402 200.32955 -0.83945425 + 198600 -33.791245 -33.798932 0.0076878602 404.60523 -0.76997084 + 198700 -33.786451 -33.798426 0.011975533 630.26161 -0.72045202 + 198800 -33.792271 -33.797887 0.0056160391 295.56713 -0.88810038 + 198900 -33.793234 -33.797524 0.0042892227 225.73797 -0.95950459 + 199000 -33.791656 -33.797316 0.0056596328 297.86142 -0.98784187 + 199100 -33.787254 -33.79721 0.0099564118 523.99707 -0.98056852 + 199200 -33.791899 -33.797161 0.0052618234 276.92507 -1.154008 + 199300 -33.794476 -33.797254 0.0027777217 146.18902 -1.2471677 + 199400 -33.792863 -33.797561 0.0046985383 247.27988 -1.2397151 + 199500 -33.789976 -33.798082 0.008105891 426.60581 -1.1963932 + 199600 -33.792108 -33.798579 0.0064702614 340.52409 -1.2381751 + 199700 -33.79473 -33.798919 0.0041892569 220.47686 -1.2738823 + 199800 -33.794702 -33.799203 0.004501229 236.89567 -1.2384037 + 199900 -33.794096 -33.799464 0.0053675152 282.48754 -1.1665876 + 200000 -33.793397 -33.799651 0.0062541586 329.15079 -1.0669621 + 200100 -33.793576 -33.799727 0.0061512372 323.73413 -0.96157564 + 200200 -33.79495 -33.799712 0.0047617482 250.60656 -0.86914341 + 200300 -33.795659 -33.799686 0.0040261679 211.89362 -0.76041462 + 200400 -33.793122 -33.7997 0.0065780207 346.19536 -0.56322194 + 200500 -33.789716 -33.799706 0.0099891874 525.72202 -0.28713994 + 200600 -33.795357 -33.799659 0.0043017224 226.39581 -0.21367244 + 200700 -33.796315 -33.799694 0.0033797741 177.8745 -0.11138227 + 200800 -33.794705 -33.799841 0.0051367213 270.34106 0.035022581 + 200900 -33.793126 -33.800034 0.0069074418 363.5325 0.18007002 + 201000 -33.79404 -33.800148 0.0061082557 321.47205 0.2510615 + 201100 -33.796768 -33.800158 0.0033898649 178.40557 0.24479337 + 201200 -33.79889 -33.800154 0.0012643914 66.543793 0.21096273 + 201300 -33.798105 -33.800203 0.0020976162 110.39567 0.20643352 + 201400 -33.795647 -33.800288 0.0046416988 244.28847 0.1955912 + 201500 -33.793737 -33.800296 0.0065594187 345.21636 0.13384557 + 201600 -33.793502 -33.800149 0.0066462655 349.78702 0.013174006 + 201700 -33.795625 -33.799915 0.0042902725 225.79321 -0.14503277 + 201800 -33.797026 -33.799758 0.0027320013 143.78279 -0.25353839 + 201900 -33.7949 -33.799743 0.0048425427 254.8587 -0.26596234 + 202000 -33.79036 -33.799875 0.0095156745 500.80146 -0.21975199 + 202100 -33.794168 -33.800072 0.0059039581 310.72005 -0.30253335 + 202200 -33.796121 -33.800331 0.0042097725 221.55657 -0.30594275 + 202300 -33.795397 -33.800713 0.0053152764 279.73826 -0.20958632 + 202400 -33.793671 -33.8012 0.0075293787 396.26449 -0.036218901 + 202500 -33.795093 -33.801632 0.0065383923 344.10976 0.11647654 + 202600 -33.798413 -33.801855 0.0034424915 181.17526 0.20812769 + 202700 -33.798266 -33.801966 0.003700832 194.77148 0.35865496 + 202800 -33.794411 -33.801956 0.007545444 397.10999 0.62988411 + 202900 -33.793568 -33.801628 0.0080594026 424.15917 0.89357733 + 203000 -33.797751 -33.801106 0.0033554026 176.59184 1.0010962 + 203100 -33.798529 -33.800658 0.0021291609 112.05584 1.1062675 + 203200 -33.792794 -33.800057 0.0072629699 382.24363 1.3543453 + 203300 -33.792114 -33.799086 0.0069721094 366.9359 1.5398624 + 203400 -33.794175 -33.798257 0.0040816894 214.81567 1.6195623 + 203500 -33.793922 -33.797729 0.0038069798 200.35795 1.6933471 + 203600 -33.789351 -33.797413 0.0080620657 424.29933 1.8213437 + 203700 -33.789136 -33.797304 0.0081681139 429.88055 1.8284262 + 203800 -33.792905 -33.797431 0.0045262635 238.21321 1.7183458 + 203900 -33.793015 -33.797758 0.0047431749 249.62906 1.6442345 + 204000 -33.792116 -33.798248 0.006132168 322.73053 1.542496 + 204100 -33.792271 -33.798757 0.0064865342 341.38051 1.3757971 + 204200 -33.794886 -33.799124 0.0042378655 223.03508 1.149118 + 204300 -33.797215 -33.799329 0.0021135096 111.23212 0.96159715 + 204400 -33.796563 -33.799493 0.0029293278 154.16791 0.84206603 + 204500 -33.790712 -33.799661 0.0089490492 470.98048 0.73134523 + 204600 -33.793089 -33.799596 0.0065079198 342.50602 0.41614661 + 204700 -33.795651 -33.799399 0.003748842 197.29821 0.16722469 + 204800 -33.795144 -33.799213 0.004069082 214.15216 0.028678814 + 204900 -33.788452 -33.798977 0.010524769 553.90922 -0.00036678944 + 205000 -33.791082 -33.798618 0.0075354607 396.58457 -0.20590665 + 205100 -33.793443 -33.798368 0.0049250066 259.1987 -0.32552551 + 205200 -33.793262 -33.798283 0.0050205644 264.22783 -0.32879546 + 205300 -33.791261 -33.79834 0.0070798448 372.60592 -0.23283417 + 205400 -33.788465 -33.798457 0.0099921687 525.87893 -0.054264069 + 205500 -33.794041 -33.798501 0.004459612 234.7054 -0.022101924 + 205600 -33.795392 -33.798543 0.0031515447 165.86299 0.068294464 + 205700 -33.793076 -33.79862 0.0055438343 291.76705 0.25294696 + 205800 -33.789275 -33.798612 0.0093371708 491.40697 0.52111555 + 205900 -33.793089 -33.798394 0.0053049161 279.193 0.61992904 + 206000 -33.79499 -33.79817 0.0031804362 167.38352 0.68321626 + 206100 -33.794342 -33.798006 0.0036635833 192.81112 0.75557182 + 206200 -33.792058 -33.797905 0.0058478027 307.76464 0.82465451 + 206300 -33.78957 -33.797867 0.0082964678 436.6357 0.85118244 + 206400 -33.792544 -33.797916 0.0053723875 282.74396 0.72381311 + 206500 -33.795135 -33.798113 0.0029773184 156.69361 0.58232396 + 206600 -33.794235 -33.79852 0.0042849229 225.51167 0.47646763 + 206700 -33.785986 -33.799365 0.01337914 704.13219 0.38981493 + 206800 -33.793241 -33.800153 0.0069120602 363.77556 -0.039341884 + 206900 -33.795737 -33.800643 0.0049063008 258.21423 -0.30968111 + 207000 -33.795962 -33.801012 0.0050498145 265.76723 -0.52147383 + 207100 -33.794614 -33.801268 0.0066542144 350.20537 -0.71406774 + 207200 -33.792698 -33.801325 0.0086268598 454.02394 -0.92427711 + 207300 -33.796566 -33.801123 0.0045571257 239.83746 -1.2174085 + 207400 -33.798199 -33.800858 0.0026584738 139.91311 -1.3787478 + 207500 -33.795964 -33.800531 0.0045662758 240.31902 -1.4266781 + 207600 -33.792005 -33.799933 0.0079279667 417.24182 -1.4387119 + 207700 -33.793473 -33.799197 0.0057234934 301.22235 -1.5212763 + 207800 -33.794383 -33.798559 0.0041768366 219.82318 -1.5422747 + 207900 -33.792053 -33.798021 0.0059679765 314.08928 -1.4487757 + 208000 -33.78553 -33.797372 0.011841499 623.20753 -1.1941501 + 208100 -33.791412 -33.796851 0.0054384529 286.22093 -1.1621992 + 208200 -33.79222 -33.796653 0.0044335505 233.33381 -1.0479998 + 208300 -33.7909 -33.796689 0.0057893155 304.68651 -0.87707496 + 208400 -33.789214 -33.796913 0.0076989426 405.18848 -0.68079805 + 208500 -33.79231 -33.797206 0.0048962499 257.68527 -0.59919727 + 208600 -33.794908 -33.797467 0.0025584368 134.64825 -0.57774738 + 208700 -33.793582 -33.797802 0.0042201107 222.10066 -0.51844182 + 208800 -33.789255 -33.798274 0.0090190096 474.66243 -0.4314373 + 208900 -33.791561 -33.798616 0.0070556304 371.33154 -0.51512862 + 209000 -33.79346 -33.798761 0.0053003127 278.95073 -0.61962812 + 209100 -33.793764 -33.79881 0.0050454583 265.53797 -0.71800382 + 209200 -33.792505 -33.798802 0.0062971761 331.41476 -0.81459321 + 209300 -33.787023 -33.798692 0.011668374 614.0961 -0.88045116 + 209400 -33.792654 -33.798414 0.0057607862 303.18504 -1.1837052 + 209500 -33.795165 -33.798241 0.0030758698 161.88029 -1.3462128 + 209600 -33.793618 -33.798189 0.0045716672 240.60277 -1.4003905 + 209700 -33.790217 -33.79819 0.0079730668 419.61539 -1.4114255 + 209800 -33.791432 -33.798126 0.0066940114 352.29985 -1.4872952 + 209900 -33.79274 -33.797998 0.0052584114 276.7455 -1.5234616 + 210000 -33.792503 -33.797816 0.005313444 279.64182 -1.4897806 + 210100 -33.791726 -33.797542 0.0058158383 306.08238 -1.4058556 + 210200 -33.79057 -33.797127 0.0065564902 345.06223 -1.2752015 + 210300 -33.788924 -33.796513 0.0075888278 399.39324 -1.0942635 + 210400 -33.79033 -33.795753 0.0054232958 285.42322 -0.95162315 + 210500 -33.791839 -33.795117 0.0032774914 172.49145 -0.82531299 + 210600 -33.790171 -33.794628 0.004457098 234.57309 -0.62393749 + 210700 -33.785194 -33.794076 0.0088817403 467.43807 -0.26636942 + 210800 -33.787306 -33.79355 0.006244364 328.63531 -0.027715508 + 210900 -33.789064 -33.793305 0.0042402965 223.16302 0.15431055 + 211000 -33.788253 -33.793368 0.0051149115 269.19323 0.35560429 + 211100 -33.77794 -33.793769 0.015828996 833.06592 0.77145954 + 211200 -33.785849 -33.794258 0.0084081155 442.51162 0.85221177 + 211300 -33.78947 -33.794589 0.005118821 269.39898 0.89192685 + 211400 -33.790158 -33.794995 0.0048366136 254.54666 0.93076611 + 211500 -33.78941 -33.795503 0.0060926941 320.65306 0.9536169 + 211600 -33.788803 -33.796067 0.0072641497 382.30572 0.9311757 + 211700 -33.791896 -33.79654 0.0046441397 244.41693 0.80575565 + 211800 -33.793864 -33.796905 0.0030418453 160.0896 0.69670725 + 211900 -33.792335 -33.797323 0.0049882615 262.52775 0.63965156 + 212000 -33.785197 -33.797921 0.012723714 669.63773 0.62523002 + 212100 -33.791686 -33.798299 0.0066137152 348.07393 0.33109428 + 212200 -33.793353 -33.798475 0.0051220418 269.56849 0.17495583 + 212300 -33.793326 -33.798593 0.0052662595 277.15854 0.071902931 + 212400 -33.792041 -33.798666 0.0066249539 348.66541 0.0074038423 + 212500 -33.790549 -33.798653 0.0081035722 426.48378 -0.040541296 + 212600 -33.793865 -33.798544 0.0046788695 246.24473 -0.15263068 + 212700 -33.795695 -33.798484 0.0027888952 146.77707 -0.19115749 + 212800 -33.793682 -33.798536 0.0048533455 255.42725 -0.10980937 + 212900 -33.788825 -33.798677 0.0098516137 518.48164 0.097054481 + 213000 -33.792329 -33.79876 0.0064315848 338.48857 0.16698892 + 213100 -33.794058 -33.798834 0.0047756593 251.33869 0.26666032 + 213200 -33.793773 -33.798954 0.0051803705 272.63828 0.41748032 + 213300 -33.790514 -33.799113 0.0085996428 452.59153 0.65886536 + 213400 -33.787849 -33.799196 0.011346683 597.16582 0.94620863 + 213500 -33.795279 -33.79913 0.0038509827 202.67379 0.96605098 + 213600 -33.795381 -33.799098 0.0037177147 195.66001 1.0690145 + 213700 -33.792259 -33.799098 0.0068382417 359.89056 1.2267902 + 213800 -33.790616 -33.799032 0.0084161388 442.93388 1.3482948 + 213900 -33.795587 -33.798906 0.0033190191 174.67701 1.2944024 + 214000 -33.796972 -33.798891 0.0019180335 100.94439 1.2624903 + 214100 -33.79576 -33.799021 0.0032605803 171.60143 1.2394512 + 214200 -33.792855 -33.799302 0.0064477374 339.33867 1.1903627 + 214300 -33.791749 -33.799644 0.0078946532 415.48856 1.0433822 + 214400 -33.795478 -33.799899 0.0044214968 232.69943 0.79553367 + 214500 -33.79743 -33.800096 0.0026658381 140.30068 0.62010439 + 214600 -33.794931 -33.800344 0.005413032 284.88305 0.52797338 + 214700 -33.78907 -33.800694 0.011623482 611.73351 0.392052 + 214800 -33.795725 -33.800808 0.0050834733 267.53867 0.042761713 + 214900 -33.797015 -33.80081 0.0037948637 199.72029 -0.12609102 + 215000 -33.795171 -33.800763 0.0055917321 294.28787 -0.21108433 + 215100 -33.790507 -33.800564 0.010057312 529.30733 -0.24989933 + 215200 -33.795759 -33.800164 0.0044049781 231.83007 -0.45844171 + 215300 -33.797876 -33.799906 0.0020297393 106.82337 -0.52939989 + 215400 -33.79626 -33.799723 0.0034632187 182.26611 -0.47684015 + 215500 -33.793025 -33.799516 0.0064915359 341.64374 -0.33262812 + 215600 -33.792325 -33.799236 0.0069107565 363.70695 -0.18871009 + 215700 -33.794253 -33.798936 0.0046828024 246.45171 -0.08718491 + 215800 -33.796289 -33.798723 0.0024344342 128.1221 -0.010422601 + 215900 -33.796688 -33.798637 0.0019488064 102.56394 0.071476979 + 216000 -33.792807 -33.798629 0.0058218294 306.39769 0.25132415 + 216100 -33.79048 -33.798536 0.0080556355 423.96091 0.42601625 + 216200 -33.793284 -33.798288 0.0050036967 263.34009 0.45646785 + 216300 -33.794761 -33.798031 0.0032699511 172.09461 0.45377801 + 216400 -33.792076 -33.797785 0.005708738 300.44579 0.4801938 + 216500 -33.786922 -33.797315 0.010392433 546.94449 0.47072255 + 216600 -33.791713 -33.796759 0.0050458143 265.55671 0.22668494 + 216700 -33.792739 -33.796395 0.003656567 192.44186 0.051243928 + 216800 -33.790732 -33.796198 0.0054662842 287.68566 -0.11179077 + 216900 -33.787069 -33.796124 0.0090555124 476.58354 -0.34021317 + 217000 -33.791952 -33.796154 0.0042021184 221.15374 -0.74760036 + 217100 -33.794418 -33.796335 0.001916775 100.87816 -0.95594482 + 217200 -33.792131 -33.796814 0.0046838715 246.50798 -1.0570028 + 217300 -33.788224 -33.797636 0.0094117279 495.33084 -1.1716994 + 217400 -33.792366 -33.798325 0.0059586595 313.59893 -1.426529 + 217500 -33.794759 -33.798709 0.0039505179 207.91223 -1.5746477 + 217600 -33.79403 -33.798978 0.0049480379 260.41082 -1.6231434 + 217700 -33.792507 -33.799119 0.0066123239 348.00071 -1.6327315 + 217800 -33.792815 -33.799036 0.0062202173 327.36449 -1.6537435 + 217900 -33.793339 -33.798758 0.005418745 285.18371 -1.6524776 + 218000 -33.793173 -33.798358 0.0051848465 272.87385 -1.6108081 + 218100 -33.79187 -33.797874 0.0060031417 315.93999 -1.5175986 + 218200 -33.789261 -33.79729 0.0080289921 422.55869 -1.3629604 + 218300 -33.789871 -33.796662 0.0067915029 357.43074 -1.2451496 + 218400 -33.79341 -33.796292 0.0028821248 151.68366 -1.2065299 + 218500 -33.793349 -33.796257 0.0029080586 153.04853 -1.1159829 + 218600 -33.788005 -33.796524 0.0085188923 448.3417 -0.89182678 + 218700 -33.788657 -33.796909 0.0082525159 434.32255 -0.76629763 + 218800 -33.791841 -33.797166 0.0053253788 280.26994 -0.74045421 + 218900 -33.792627 -33.797352 0.0047250031 248.6727 -0.71305199 + 219000 -33.791551 -33.797489 0.0059386096 312.54373 -0.68638806 + 219100 -33.785512 -33.797501 0.011988918 630.96607 -0.60708486 + 219200 -33.791108 -33.797212 0.0061036865 321.23158 -0.79947415 + 219300 -33.793787 -33.796942 0.0031552311 166.057 -0.93033865 + 219400 -33.792412 -33.79676 0.0043482219 228.84304 -1.002064 + 219500 -33.78901 -33.796623 0.0076133861 400.68572 -1.0852092 + 219600 -33.789811 -33.796546 0.0067353311 354.47447 -1.2737451 + 219700 -33.791338 -33.796625 0.0052875413 278.27858 -1.4460273 + 219800 -33.791406 -33.79693 0.005523322 290.68751 -1.5569183 + 219900 -33.791256 -33.797477 0.0062212502 327.41885 -1.6301641 + 220000 -33.792123 -33.798198 0.0060749232 319.71779 -1.6824128 + 220100 -33.795685 -33.798907 0.0032218743 169.56437 -1.7439445 + 220200 -33.797255 -33.799451 0.0021959315 115.56992 -1.7326594 + 220300 -33.795287 -33.800102 0.0048153469 253.42741 -1.6033499 + 220400 -33.792707 -33.8009 0.008192493 431.1636 -1.3890195 + 220500 -33.794814 -33.801436 0.0066220037 348.51015 -1.2443986 + 220600 -33.796646 -33.801639 0.0049932239 262.78892 -1.1082378 + 220700 -33.796901 -33.80162 0.0047191263 248.36341 -0.9451669 + 220800 -33.792922 -33.801388 0.0084655482 445.53425 -0.67007136 + 220900 -33.789836 -33.800691 0.010855095 571.29396 -0.32564718 + 221000 -33.796148 -33.799947 0.0037993274 199.95521 -0.23959303 + 221100 -33.796006 -33.799405 0.0033988776 178.8799 -0.080832846 + 221200 -33.7933 -33.798928 0.0056279898 296.19608 0.14539003 + 221300 -33.791344 -33.798515 0.0071706403 377.3844 0.38465231 + 221400 -33.792316 -33.798298 0.0059823542 314.84596 0.54122837 + 221500 -33.79301 -33.798324 0.0053140261 279.67246 0.65334874 + 221600 -33.792782 -33.798562 0.0057804361 304.2192 0.73986344 + 221700 -33.792664 -33.798944 0.0062804155 330.53267 0.78148304 + 221800 -33.79337 -33.799367 0.0059964573 315.5882 0.76280581 + 221900 -33.794886 -33.799737 0.0048511201 255.31013 0.6905103 + 222000 -33.796788 -33.800018 0.0032304782 170.01719 0.58722487 + 222100 -33.797617 -33.800233 0.0026153667 137.64442 0.4951457 + 222200 -33.794477 -33.800452 0.0059754612 314.48319 0.45048226 + 222300 -33.791286 -33.80059 0.0093034391 489.6317 0.33603333 + 222400 -33.795405 -33.800477 0.0050711664 266.89096 0.088006407 + 222500 -33.79654 -33.80029 0.0037497276 197.34482 -0.051215285 + 222600 -33.79534 -33.800084 0.0047438603 249.66514 -0.11913301 + 222700 -33.794304 -33.799848 0.0055440969 291.78088 -0.16563138 + 222800 -33.793966 -33.799622 0.0056560678 297.6738 -0.18379494 + 222900 -33.793496 -33.799447 0.0059508011 313.18535 -0.14829622 + 223000 -33.792748 -33.799336 0.0065885014 346.74695 -0.051468249 + 223100 -33.792989 -33.799277 0.0062881299 330.93867 0.078283022 + 223200 -33.794845 -33.799265 0.0044199761 232.6194 0.20100644 + 223300 -33.795375 -33.799312 0.0039372636 207.21467 0.35921401 + 223400 -33.792416 -33.799395 0.0069785258 367.27359 0.62735843 + 223500 -33.78911 -33.79935 0.010240146 538.92976 0.98642651 + 223600 -33.795363 -33.799104 0.003741509 196.91228 1.0998564 + 223700 -33.795787 -33.798886 0.0030998026 163.13985 1.2388664 + 223800 -33.793866 -33.798644 0.004778676 251.49745 1.4141754 + 223900 -33.791605 -33.798289 0.0066847593 351.81292 1.5953691 + 224000 -33.791733 -33.79783 0.0060965371 320.85531 1.6988495 + 224100 -33.793013 -33.797411 0.0043976192 231.44277 1.7283728 + 224200 -33.794329 -33.797181 0.0028516171 150.07807 1.707551 + 224300 -33.792814 -33.797201 0.0043868867 230.87793 1.6962673 + 224400 -33.788376 -33.7975 0.0091239709 480.18645 1.6749241 + 224500 -33.791407 -33.797938 0.0065307021 343.70503 1.4644437 + 224600 -33.794497 -33.798373 0.0038751518 203.94578 1.2738712 + 224700 -33.794073 -33.798913 0.0048396162 254.70468 1.1531917 + 224800 -33.79263 -33.799598 0.0069680758 366.72362 1.0261619 + 224900 -33.793277 -33.800245 0.0069676228 366.69977 0.84713732 + 225000 -33.794593 -33.800709 0.0061165361 321.90784 0.66850444 + 225100 -33.796063 -33.800978 0.0049144931 258.64539 0.51124869 + 225200 -33.796666 -33.801093 0.0044265573 232.96576 0.39717187 + 225300 -33.794696 -33.801079 0.0063831512 335.93956 0.34802642 + 225400 -33.790754 -33.800823 0.010069322 529.93942 0.32962794 + 225500 -33.795896 -33.800344 0.0044482294 234.10634 0.15453598 + 225600 -33.79734 -33.79998 0.0026394271 138.91069 0.09925543 + 225700 -33.795709 -33.799685 0.0039755691 209.23066 0.13761272 + 225800 -33.793882 -33.799412 0.0055304486 291.06258 0.21523627 + 225900 -33.793132 -33.799214 0.0060824434 320.11357 0.30138795 + 226000 -33.793094 -33.799133 0.0060388894 317.82136 0.39200648 + 226100 -33.794227 -33.799185 0.0049587256 260.97331 0.46239288 + 226200 -33.79568 -33.799364 0.0036841007 193.89093 0.51050921 + 226300 -33.794949 -33.799671 0.0047226661 248.5497 0.58507377 + 226400 -33.79044 -33.800131 0.0096911699 510.03763 0.72659241 + 226500 -33.793996 -33.80053 0.0065343118 343.895 0.68394161 + 226600 -33.797401 -33.800725 0.0033242926 174.95455 0.60460521 + 226700 -33.796491 -33.800887 0.0043967661 231.39788 0.57219325 + 226800 -33.794315 -33.801014 0.0066987054 352.54689 0.51107972 + 226900 -33.794271 -33.801007 0.0067366515 354.54396 0.35614156 + 227000 -33.797793 -33.800886 0.0030926006 162.76081 0.12441095 + 227100 -33.799507 -33.800817 0.0013102008 68.954701 -0.023952108 + 227200 -33.798308 -33.800837 0.0025286539 133.0808 -0.12949498 + 227300 -33.795912 -33.800932 0.0050194038 264.16675 -0.28392974 + 227400 -33.793971 -33.80104 0.0070684691 372.00723 -0.50046713 + 227500 -33.794755 -33.801097 0.0063424942 333.79981 -0.77653972 + 227600 -33.797671 -33.801118 0.0034471352 181.41965 -1.0279179 + 227700 -33.798723 -33.80117 0.0024476017 128.8151 -1.1619758 + 227800 -33.795061 -33.801298 0.0062368047 328.23747 -1.1659465 + 227900 -33.791813 -33.801444 0.0096309547 506.86856 -1.1720121 + 228000 -33.796426 -33.801443 0.0050175614 264.06978 -1.2896603 + 228100 -33.797455 -33.80139 0.003935064 207.09891 -1.2914222 + 228200 -33.795613 -33.801303 0.0056898714 299.45286 -1.1914168 + 228300 -33.788762 -33.80107 0.012308337 647.77679 -0.92572794 + 228400 -33.794574 -33.800565 0.0059907816 315.28949 -0.86502022 + 228500 -33.797561 -33.800215 0.0026539255 139.67373 -0.81049276 + 228600 -33.795829 -33.799932 0.0041035433 215.96582 -0.65132061 + 228700 -33.791766 -33.799568 0.0078016629 410.59456 -0.38424643 + 228800 -33.792532 -33.799122 0.0065894357 346.79612 -0.19324974 + 228900 -33.795138 -33.798772 0.0036339129 191.24959 -0.093184747 + 229000 -33.796239 -33.7986 0.0023611164 124.26345 -0.02485308 + 229100 -33.794443 -33.798593 0.0041494016 218.3793 0.059065282 + 229200 -33.789408 -33.798696 0.0092876624 488.80139 0.17783852 + 229300 -33.792528 -33.798758 0.0062302796 327.89406 0.090497773 + 229400 -33.795169 -33.798793 0.0036241353 190.73501 -0.022397471 + 229500 -33.794395 -33.798869 0.0044743563 235.48138 -0.10734228 + 229600 -33.78708 -33.798961 0.011880831 625.27752 -0.1513196 + 229700 -33.791917 -33.798855 0.0069376119 365.12032 -0.52320138 + 229800 -33.795441 -33.798718 0.0032771706 172.47457 -0.76666666 + 229900 -33.793644 -33.798628 0.0049838492 262.29554 -0.90725763 + 230000 -33.790002 -33.79852 0.0085187601 448.33474 -1.0624637 + 230100 -33.792184 -33.798356 0.0061723558 324.84558 -1.3288109 + 230200 -33.795219 -33.798274 0.0030547041 160.76635 -1.5211516 + 230300 -33.794756 -33.798357 0.0036010511 189.52011 -1.5714843 + 230400 -33.786501 -33.79868 0.01217815 640.92519 -1.4218305 + 230500 -33.791942 -33.799029 0.0070875559 373.01174 -1.4918975 + 230600 -33.794814 -33.799307 0.004493151 236.47053 -1.473348 + 230700 -33.794731 -33.799629 0.0048985694 257.80734 -1.3518335 + 230800 -33.791993 -33.800029 0.0080356947 422.91145 -1.1124753 + 230900 -33.790778 -33.800423 0.0096451533 507.61582 -0.82340512 + 231000 -33.797031 -33.800612 0.0035813563 188.48359 -0.7296348 + 231100 -33.797209 -33.800735 0.0035266713 185.60557 -0.56351861 + 231200 -33.794049 -33.80086 0.0068106389 358.43785 -0.29545662 + 231300 -33.792514 -33.800889 0.008375199 440.77926 -0.0090498971 + 231400 -33.796975 -33.800783 0.0038087977 200.45363 0.10600897 + 231500 -33.799264 -33.800713 0.0014491346 76.266659 0.1641271 + 231600 -33.797642 -33.800736 0.0030935316 162.80981 0.25379469 + 231700 -33.792155 -33.800839 0.0086846074 457.06314 0.42917764 + 231800 -33.795127 -33.80088 0.0057533403 302.79317 0.40826924 + 231900 -33.79735 -33.800903 0.003552707 186.9758 0.36367187 + 232000 -33.796552 -33.800971 0.0044188057 232.5578 0.34916801 + 232100 -33.792331 -33.801085 0.0087539937 460.71488 0.36243779 + 232200 -33.794098 -33.801142 0.0070439835 370.71857 0.22527334 + 232300 -33.798106 -33.801141 0.0030345095 159.70353 0.065228128 + 232400 -33.797747 -33.801166 0.0034195327 179.96695 0.0046802681 + 232500 -33.796132 -33.801213 0.0050808778 267.40207 -0.037483904 + 232600 -33.794599 -33.801226 0.0066261262 348.72711 -0.083664603 + 232700 -33.794939 -33.801155 0.0062164099 327.16411 -0.15560717 + 232800 -33.797793 -33.801043 0.003249459 171.01613 -0.24703901 + 232900 -33.799105 -33.800992 0.0018866039 99.290281 -0.27076607 + 233000 -33.796672 -33.801026 0.004353964 229.14524 -0.18080423 + 233100 -33.793254 -33.80111 0.0078560079 413.45469 -0.0063817755 + 233200 -33.795236 -33.801139 0.0059030489 310.6722 0.090313857 + 233300 -33.797231 -33.80114 0.003908046 205.67698 0.18113612 + 233400 -33.796883 -33.801154 0.0042709005 224.77368 0.32199567 + 233500 -33.789968 -33.801146 0.011178443 588.31148 0.65461398 + 233600 -33.793985 -33.800962 0.0069768414 367.18494 0.80689148 + 233700 -33.796798 -33.800736 0.0039378883 207.24755 0.90400144 + 233800 -33.795961 -33.800501 0.0045393946 238.90429 1.0455585 + 233900 -33.793463 -33.800177 0.0067145859 353.38267 1.2185107 + 234000 -33.792592 -33.799699 0.0071071703 374.04403 1.3489474 + 234100 -33.79658 -33.799219 0.0026387514 138.87513 1.3381562 + 234200 -33.797411 -33.798968 0.0015569359 81.94015 1.3361838 + 234300 -33.795128 -33.798811 0.0036835197 193.86035 1.358516 + 234400 -33.792109 -33.798646 0.006537518 344.06374 1.3443395 + 234500 -33.791663 -33.798437 0.0067741467 356.5173 1.2384635 + 234600 -33.793668 -33.798231 0.0045629199 240.1424 1.0757098 + 234700 -33.795261 -33.798123 0.0028627507 150.66402 0.93858987 + 234800 -33.794326 -33.798147 0.0038210884 201.10048 0.86249444 + 234900 -33.788644 -33.798287 0.0096423134 507.46635 0.84500408 + 235000 -33.791644 -33.798375 0.0067307351 354.23258 0.65083934 + 235100 -33.794418 -33.798419 0.0040013867 210.58941 0.51810507 + 235200 -33.793916 -33.798511 0.004595217 241.84217 0.49268281 + 235300 -33.792268 -33.798648 0.0063798179 335.76412 0.52601122 + 235400 -33.792319 -33.798765 0.0064452382 339.20714 0.5644216 + 235500 -33.793088 -33.798833 0.0057446817 302.33747 0.621297 + 235600 -33.79367 -33.798874 0.0052036557 273.86376 0.70821215 + 235700 -33.793501 -33.798905 0.005404212 284.41886 0.83358028 + 235800 -33.79138 -33.798915 0.0075349452 396.55744 1.027109 + 235900 -33.791486 -33.79884 0.0073539914 387.03401 1.2007969 + 236000 -33.795058 -33.798723 0.0036647613 192.87312 1.2681839 + 236100 -33.795558 -33.798673 0.0031145167 163.91423 1.3518333 + 236200 -33.790432 -33.798688 0.0082558941 434.50034 1.5420994 + 236300 -33.789443 -33.798634 0.0091905998 483.69307 1.6546279 + 236400 -33.793142 -33.798505 0.0053625621 282.22686 1.6216996 + 236500 -33.793843 -33.798417 0.004574677 240.76117 1.5995032 + 236600 -33.792381 -33.798391 0.006009799 316.29036 1.5725304 + 236700 -33.786483 -33.798385 0.011902207 626.40254 1.5626849 + 236800 -33.79247 -33.7983 0.0058297713 306.81566 1.2684795 + 236900 -33.795102 -33.798288 0.0031859975 167.67621 1.0825286 + 237000 -33.793493 -33.798423 0.004929903 259.4564 0.95645583 + 237100 -33.790067 -33.798705 0.0086380475 454.61273 0.79563028 + 237200 -33.792964 -33.799001 0.0060363049 317.68534 0.4920587 + 237300 -33.796697 -33.799234 0.0025376695 133.55528 0.25512854 + 237400 -33.796488 -33.799522 0.0030341066 159.68232 0.14455144 + 237500 -33.795014 -33.799936 0.0049221695 259.04939 0.059906433 + 237600 -33.792785 -33.800417 0.0076311414 401.62017 -0.013154004 + 237700 -33.794399 -33.80079 0.0063904706 336.32477 -0.14857987 + 237800 -33.797761 -33.800969 0.0032078857 168.82816 -0.27460006 + 237900 -33.797939 -33.801075 0.0031362697 165.05908 -0.30067069 + 238000 -33.790501 -33.801155 0.01065453 560.73841 -0.15270008 + 238100 -33.793069 -33.801025 0.007955427 418.68703 -0.18412199 + 238200 -33.796487 -33.800778 0.0042914514 225.85526 -0.22513029 + 238300 -33.796375 -33.800535 0.004159703 218.92146 -0.18608535 + 238400 -33.792297 -33.800238 0.00794065 417.90933 -0.048517555 + 238500 -33.790012 -33.799749 0.0097370481 512.45216 0.079153646 + 238600 -33.796885 -33.79935 0.0024654201 129.75286 0.0012546094 + 238700 -33.796465 -33.799172 0.0027070535 142.46981 0.04513862 + 238800 -33.793118 -33.799069 0.0059511408 313.20323 0.148539 + 238900 -33.791045 -33.798945 0.00789964 415.75101 0.22237667 + 239000 -33.793671 -33.798768 0.0050969385 268.24733 0.18150547 + 239100 -33.795842 -33.79863 0.0027878313 146.72108 0.12655761 + 239200 -33.796354 -33.798571 0.0022170909 116.68351 0.08539578 + 239300 -33.792786 -33.798572 0.0057854968 304.48554 0.090845306 + 239400 -33.789668 -33.798493 0.0088251049 464.4574 0.02508701 + 239500 -33.793346 -33.798269 0.0049234185 259.11512 -0.18673665 + 239600 -33.794923 -33.798076 0.0031528365 165.93097 -0.33193312 + 239700 -33.792173 -33.797941 0.005767437 303.53506 -0.39919828 + 239800 -33.786883 -33.79771 0.010827671 569.85065 -0.4902572 + 239900 -33.791574 -33.797406 0.0058320855 306.93746 -0.75708637 + 240000 -33.792924 -33.797212 0.0042879951 225.67335 -0.90133658 + 240100 -33.791692 -33.797139 0.0054468066 286.66057 -0.96286518 + 240200 -33.7858 -33.797112 0.011311805 595.33019 -0.91998004 + 240300 -33.790677 -33.796956 0.0062794387 330.48126 -1.0716843 + 240400 -33.793726 -33.796833 0.0031066019 163.49769 -1.1380586 + 240500 -33.792075 -33.796769 0.0046933334 247.00595 -1.0696575 + 240600 -33.78837 -33.796631 0.0082609231 434.76502 -0.90923383 + 240700 -33.790028 -33.796282 0.0062548607 329.18774 -0.82191405 + 240800 -33.793628 -33.795926 0.0022981875 120.95156 -0.78674893 + 240900 -33.794565 -33.795745 0.0011799661 62.100563 -0.71649406 + 241000 -33.792165 -33.795706 0.0035410933 186.36458 -0.5433336 + 241100 -33.788031 -33.795713 0.0076814624 404.26852 -0.21749941 + 241200 -33.788567 -33.795648 0.0070811534 372.67479 0.05817185 + 241300 -33.791657 -33.79559 0.0039331549 206.99843 0.22150198 + 241400 -33.79205 -33.795672 0.003621889 190.61679 0.3778579 + 241500 -33.787525 -33.795974 0.0084494082 444.68482 0.63159748 + 241600 -33.787102 -33.796449 0.0093462299 491.88374 0.82194133 + 241700 -33.791998 -33.796832 0.0048349015 254.45655 0.82590984 + 241800 -33.791944 -33.797261 0.0053167507 279.81585 0.86389804 + 241900 -33.791212 -33.797779 0.0065674475 345.6389 0.86610552 + 242000 -33.792375 -33.798285 0.0059098854 311.032 0.7828663 + 242100 -33.795535 -33.798655 0.0031203413 164.22078 0.63661888 + 242200 -33.796084 -33.798947 0.0028634103 150.69873 0.53121641 + 242300 -33.790774 -33.799298 0.0085243528 448.62908 0.48307295 + 242400 -33.790232 -33.799574 0.0093413847 491.62874 0.24323201 + 242500 -33.79436 -33.799566 0.0052059383 273.98389 -0.048507457 + 242600 -33.795034 -33.799459 0.0044243411 232.84913 -0.22857498 + 242700 -33.793319 -33.799302 0.0059832688 314.8941 -0.34532546 + 242800 -33.787252 -33.799026 0.011774767 619.69548 -0.38793001 + 242900 -33.793357 -33.798617 0.0052597128 276.814 -0.6429415 + 243000 -33.795721 -33.798446 0.0027259254 143.46302 -0.7175908 + 243100 -33.793813 -33.798499 0.0046865857 246.65082 -0.62628405 + 243200 -33.790401 -33.798768 0.0083667509 440.33464 -0.39771636 + 243300 -33.792662 -33.799107 0.0064450686 339.19821 -0.20969717 + 243400 -33.795152 -33.799407 0.0042546788 223.91995 -0.0305343 + 243500 -33.794962 -33.799715 0.0047529311 250.14253 0.21517804 + 243600 -33.794238 -33.800022 0.005783999 304.40671 0.51427342 + 243700 -33.794188 -33.800239 0.0060512327 318.47098 0.81599533 + 243800 -33.794905 -33.800314 0.0054093296 284.68819 1.0835181 + 243900 -33.795695 -33.800265 0.0045693008 240.47823 1.3033975 + 244000 -33.794954 -33.800127 0.0051732873 272.2655 1.5099484 + 244100 -33.790966 -33.799843 0.0088774538 467.21248 1.7697076 + 244200 -33.792564 -33.799345 0.0067810164 356.87885 1.8856725 + 244300 -33.796279 -33.798942 0.0026622895 140.11392 1.8649541 + 244400 -33.795795 -33.798711 0.0029163833 153.48665 1.8532649 + 244500 -33.792596 -33.798538 0.005942103 312.72758 1.8085465 + 244600 -33.792106 -33.798361 0.0062555225 329.22257 1.6259573 + 244700 -33.792782 -33.798183 0.0054008574 284.24231 1.3779446 + 244800 -33.793238 -33.798013 0.004775134 251.31104 1.1162042 + 244900 -33.791934 -33.797828 0.0058936435 310.1772 0.86495284 + 245000 -33.788228 -33.797502 0.0092740404 488.08447 0.58937158 + 245100 -33.791467 -33.796974 0.0055069111 289.82382 0.17245271 + 245200 -33.794065 -33.796571 0.0025057699 131.87644 -0.090352049 + 245300 -33.792812 -33.796305 0.0034930937 183.8384 -0.20272619 + 245400 -33.789448 -33.796032 0.0065846835 346.54602 -0.25580503 + 245500 -33.78968 -33.795742 0.00606234 319.05555 -0.3262869 + 245600 -33.790574 -33.795538 0.004963714 261.23584 -0.3339788 + 245700 -33.790391 -33.795487 0.005096005 268.1982 -0.24534032 + 245800 -33.787025 -33.795609 0.0085834437 451.73899 -0.0014193049 + 245900 -33.787698 -33.795834 0.0081360161 428.19127 0.25726544 + 246000 -33.792657 -33.796077 0.0034194693 179.96362 0.3884152 + 246100 -33.792479 -33.796471 0.0039922528 210.10871 0.59956132 + 246200 -33.789946 -33.797125 0.0071788689 377.81747 0.9085878 + 246300 -33.790401 -33.797901 0.0074999746 394.71697 1.1873945 + 246400 -33.795864 -33.798475 0.0026103676 137.38132 1.2769538 + 246500 -33.796551 -33.798889 0.0023379427 123.04384 1.3492269 + 246600 -33.794147 -33.799458 0.005311318 279.52993 1.4479218 + 246700 -33.791169 -33.800161 0.0089916423 473.22212 1.5204676 + 246800 -33.795232 -33.800642 0.0054102446 284.73635 1.4040819 + 246900 -33.797446 -33.800874 0.0034276485 180.39408 1.2920117 + 247000 -33.796462 -33.801034 0.0045724691 240.64497 1.2001875 + 247100 -33.79498 -33.80113 0.0061499193 323.66477 1.0540754 + 247200 -33.795166 -33.801109 0.0059437267 312.81303 0.83593738 + 247300 -33.795713 -33.801001 0.0052876894 278.28638 0.60113382 + 247400 -33.795634 -33.800859 0.0052250792 274.99126 0.38169929 + 247500 -33.793131 -33.8007 0.0075681359 398.30424 0.19900399 + 247600 -33.792109 -33.800483 0.0083739857 440.7154 -0.035288668 + 247700 -33.796588 -33.800307 0.0037193547 195.74632 -0.30133008 + 247800 -33.797221 -33.800273 0.0030525862 160.65489 -0.39725296 + 247900 -33.793353 -33.800368 0.0070151238 369.19971 -0.35280103 + 248000 -33.790843 -33.800499 0.009656233 508.19893 -0.28753001 + 248100 -33.794135 -33.800513 0.0063786439 335.70234 -0.29595656 + 248200 -33.795808 -33.800462 0.0046548904 244.98273 -0.24379009 + 248300 -33.795716 -33.80038 0.0046641318 245.46909 -0.12784651 + 248400 -33.791819 -33.800225 0.0084061606 442.40873 0.11366702 + 248500 -33.790412 -33.79984 0.0094281151 496.19329 0.37394074 + 248600 -33.796409 -33.799443 0.0030341359 159.68386 0.42782118 + 248700 -33.796253 -33.799191 0.0029378939 154.61873 0.55203093 + 248800 -33.7939 -33.798986 0.0050862072 267.68255 0.72893343 + 248900 -33.792029 -33.798794 0.0067658254 356.07935 0.90399458 + 249000 -33.792624 -33.798643 0.0060193845 316.79484 0.99771446 + 249100 -33.794233 -33.798582 0.0043482292 228.84342 1.0156082 + 249200 -33.796353 -33.798638 0.0022858533 120.30242 0.96710883 + 249300 -33.796201 -33.798827 0.0026266446 138.23796 0.91237471 + 249400 -33.791548 -33.799218 0.0076704343 403.68811 0.85495622 + 249500 -33.791604 -33.799635 0.0080310772 422.66843 0.60266933 + 249600 -33.795144 -33.799831 0.0046869904 246.67213 0.28755132 + 249700 -33.795658 -33.799903 0.0042442154 223.36927 0.047816307 + 249800 -33.793973 -33.799886 0.005912636 311.17676 -0.18359497 + 249900 -33.787753 -33.799682 0.011929536 627.84087 -0.4095004 + 250000 -33.788103 -33.798984 0.010881098 572.66247 -0.90535089 + 250100 -33.794615 -33.798367 0.0037519561 197.4621 -1.3194611 + 250200 -33.794252 -33.797943 0.0036903748 194.22113 -1.4919079 + 250300 -33.790373 -33.797592 0.0072184218 379.8991 -1.5607882 + 250400 -33.789331 -33.797294 0.0079636615 419.1204 -1.6424765 + 250500 -33.793012 -33.797186 0.0041739024 219.66876 -1.7295959 + 250600 -33.794554 -33.79732 0.0027663653 145.59134 -1.696313 + 250700 -33.793028 -33.797698 0.004670322 245.79488 -1.524537 + 250800 -33.787162 -33.798413 0.011250114 592.08347 -1.1137006 + 250900 -33.793199 -33.799002 0.0058031368 305.41391 -0.90616618 + 251000 -33.79538 -33.799344 0.0039642081 208.63274 -0.71170126 + 251100 -33.794413 -33.799637 0.0052236394 274.91548 -0.46372612 + 251200 -33.790424 -33.799886 0.0094625993 498.00816 -0.11548888 + 251300 -33.792807 -33.799937 0.0071308016 375.28773 0.11839475 + 251400 -33.797184 -33.799875 0.0026908855 141.6189 0.17996652 + 251500 -33.796295 -33.799865 0.0035702476 187.89895 0.27449816 + 251600 -33.792575 -33.799913 0.0073373293 386.1571 0.38929385 + 251700 -33.792862 -33.799963 0.0071009373 373.716 0.37593009 + 251800 -33.794952 -33.800027 0.0050748592 267.08531 0.27747958 + 251900 -33.795309 -33.800164 0.0048557185 255.55213 0.17182198 + 252000 -33.793546 -33.800402 0.0068561823 360.83476 0.058701424 + 252100 -33.78412 -33.800745 0.016625363 874.97804 -0.016565081 + 252200 -33.795455 -33.800912 0.0054572487 287.21013 -0.49013144 + 252300 -33.797006 -33.801001 0.0039944978 210.22685 -0.6891909 + 252400 -33.795682 -33.801093 0.0054109766 284.77487 -0.82166691 + 252500 -33.792275 -33.801133 0.0088587197 466.22652 -0.93568976 + 252600 -33.795347 -33.801004 0.0056569765 297.72163 -1.1645009 + 252700 -33.798441 -33.800842 0.0024006444 126.34377 -1.3085629 + 252800 -33.797548 -33.800708 0.0031598531 166.30025 -1.3173539 + 252900 -33.795385 -33.800527 0.0051420912 270.62367 -1.2535904 + 253000 -33.794257 -33.800257 0.0059993832 315.74219 -1.1569503 + 253100 -33.793865 -33.799908 0.0060423513 318.00356 -1.0236611 + 253200 -33.794003 -33.799531 0.0055281434 290.94126 -0.85836267 + 253300 -33.793797 -33.799191 0.0053941159 283.88751 -0.65034733 + 253400 -33.792298 -33.798908 0.0066095864 347.85664 -0.36949053 + 253500 -33.791454 -33.798683 0.0072288307 380.44691 -0.05189424 + 253600 -33.79396 -33.798572 0.0046119081 242.72061 0.18276465 + 253700 -33.795682 -33.798632 0.0029498163 155.2462 0.35847646 + 253800 -33.79407 -33.798881 0.0048108513 253.19081 0.56891984 + 253900 -33.787837 -33.799369 0.011532058 606.92194 0.92591868 + 254000 -33.79343 -33.799746 0.0063158183 332.39588 1.0116952 + 254100 -33.795116 -33.799969 0.004852583 255.38711 1.0788637 + 254200 -33.79471 -33.800149 0.0054389857 286.24897 1.1307914 + 254300 -33.793296 -33.800277 0.0069808545 367.39614 1.1514761 + 254400 -33.79237 -33.800297 0.0079267173 417.17606 1.108883 + 254500 -33.795903 -33.800214 0.0043108304 226.87516 0.94756243 + 254600 -33.79718 -33.800169 0.0029889621 157.30641 0.82750169 + 254700 -33.794494 -33.800219 0.00572452 301.27638 0.75655309 + 254800 -33.790674 -33.800338 0.0096639099 508.60296 0.63526809 + 254900 -33.794373 -33.800429 0.0060566723 318.75726 0.37586455 + 255000 -33.795489 -33.800545 0.0050562534 266.10611 0.2179811 + 255100 -33.7951 -33.800721 0.0056206441 295.80948 0.12373712 + 255200 -33.794366 -33.800929 0.0065629291 345.40111 0.068747529 + 255300 -33.795244 -33.801097 0.0058533365 308.05588 0.02147998 + 255400 -33.797453 -33.801184 0.0037309494 196.35654 -0.0079704098 + 255500 -33.797279 -33.801225 0.0039461966 207.68481 0.051121497 + 255600 -33.793043 -33.801187 0.0081436437 428.5927 0.25198577 + 255700 -33.792732 -33.800885 0.0081527737 429.07321 0.44057905 + 255800 -33.797441 -33.800472 0.0030315456 159.54754 0.50405627 + 255900 -33.797618 -33.800138 0.0025202112 132.63647 0.63464636 + 256000 -33.796354 -33.799795 0.0034403318 181.0616 0.82770782 + 256100 -33.793679 -33.799391 0.0057128395 300.66165 1.1031272 + 256200 -33.79136 -33.798891 0.0075301461 396.30487 1.4261997 + 256300 -33.792918 -33.798414 0.0054964565 289.2736 1.6540467 + 256400 -33.795771 -33.798174 0.0024022453 126.42803 1.7618687 + 256500 -33.796359 -33.798221 0.0018613632 97.961888 1.8230627 + 256600 -33.791891 -33.798603 0.0067124197 353.26866 1.9289601 + 256700 -33.790674 -33.79929 0.0086158903 453.44662 1.9076829 + 256800 -33.794857 -33.799843 0.004986322 262.42568 1.7288946 + 256900 -33.796158 -33.800261 0.0041028088 215.92717 1.5719427 + 257000 -33.794629 -33.800657 0.006027989 317.24768 1.4108384 + 257100 -33.786852 -33.801028 0.014175904 746.06516 1.2325041 + 257200 -33.795934 -33.801088 0.0051532872 271.21291 0.68785676 + 257300 -33.797251 -33.801008 0.0037565546 197.70412 0.4121206 + 257400 -33.795348 -33.800885 0.0055372666 291.4214 0.18382859 + 257500 -33.792165 -33.80065 0.0084849882 446.55736 -0.086512955 + 257600 -33.794983 -33.800311 0.0053283172 280.42458 -0.4601537 + 257700 -33.798193 -33.800112 0.0019187085 100.97992 -0.69450892 + 257800 -33.797535 -33.800092 0.0025562346 134.53235 -0.7594422 + 257900 -33.795452 -33.800211 0.0047587002 250.44614 -0.74364017 + 258000 -33.793758 -33.800386 0.0066280698 348.8294 -0.6740777 + 258100 -33.79392 -33.800495 0.0065755579 346.06575 -0.58393094 + 258200 -33.796578 -33.800491 0.0039127292 205.92345 -0.51571275 + 258300 -33.797997 -33.800449 0.002451264 129.00784 -0.4222363 + 258400 -33.79581 -33.800405 0.0045951363 241.83792 -0.22781344 + 258500 -33.790792 -33.800221 0.0094297235 496.27794 0.1364716 + 258600 -33.79432 -33.79984 0.0055196049 290.49188 0.32856226 + 258700 -33.795994 -33.799497 0.0035027119 184.3446 0.47762996 + 258800 -33.794026 -33.799223 0.0051970397 273.51556 0.66523666 + 258900 -33.787147 -33.798876 0.011728956 617.28452 0.97677052 + 259000 -33.791823 -33.79854 0.006717382 353.52982 1.0112459 + 259100 -33.793764 -33.798417 0.0046522388 244.84318 1.0094203 + 259200 -33.793521 -33.798523 0.0050017604 263.23819 0.97492022 + 259300 -33.790128 -33.798871 0.0087427508 460.12318 0.91337951 + 259400 -33.790539 -33.79938 0.0088409251 465.29 0.67025832 + 259500 -33.796225 -33.799751 0.0035262483 185.5833 0.3436336 + 259600 -33.795882 -33.800107 0.0042256466 222.39201 0.12856121 + 259700 -33.79283 -33.800524 0.0076939199 404.92414 -0.12757124 + 259800 -33.793206 -33.800833 0.0076266445 401.3835 -0.54352003 + 259900 -33.798514 -33.800902 0.0023881632 125.6869 -0.94330724 + 260000 -33.798113 -33.800907 0.0027932349 147.00546 -1.149609 + 260100 -33.795129 -33.800842 0.0057133979 300.69104 -1.3542756 + 260200 -33.79365 -33.800582 0.0069326195 364.85758 -1.6378489 + 260300 -33.794793 -33.800141 0.0053480901 281.46521 -1.9328379 + 260400 -33.795755 -33.799659 0.0039040033 205.46421 -2.140839 + 260500 -33.794098 -33.79918 0.005082567 267.49097 -2.2239859 + 260600 -33.789403 -33.798526 0.0091231149 480.1414 -2.1994694 + 260700 -33.791951 -33.797802 0.0058512562 307.9464 -2.2451971 + 260800 -33.794383 -33.797374 0.0029911731 157.42277 -2.2174399 + 260900 -33.792976 -33.797235 0.0042586013 224.12639 -2.033841 + 261000 -33.785881 -33.797285 0.011404564 600.21204 -1.5418558 + 261100 -33.790857 -33.797363 0.0065052649 342.36629 -1.2350215 + 261200 -33.793053 -33.797489 0.0044360705 233.46644 -0.95851905 + 261300 -33.792664 -33.797709 0.0050442508 265.47442 -0.65487313 + 261400 -33.78893 -33.798013 0.0090834106 478.0518 -0.25459218 + 261500 -33.788866 -33.798264 0.0093977275 494.59401 0.1162543 + 261600 -33.794907 -33.798343 0.0034360256 180.83497 0.21057737 + 261700 -33.794581 -33.79845 0.0038684332 203.59219 0.32119203 + 261800 -33.791188 -33.798625 0.007437325 391.41978 0.43586909 + 261900 -33.790899 -33.798773 0.0078736528 414.38332 0.42221492 + 262000 -33.795986 -33.798839 0.0028537613 150.19091 0.24943564 + 262100 -33.796931 -33.798956 0.0020247664 106.56165 0.13479153 + 262200 -33.795627 -33.799217 0.0035895339 188.91397 -0.00084160828 + 262300 -33.792519 -33.799634 0.0071150261 374.45748 -0.20447584 + 262400 -33.792349 -33.800061 0.0077119215 405.87155 -0.54710142 + 262500 -33.796444 -33.800319 0.0038759284 203.98666 -0.91738403 + 262600 -33.79754 -33.800492 0.0029523936 155.38184 -1.1333864 + 262700 -33.791755 -33.800688 0.0089330928 470.1407 -1.2066694 + 262800 -33.790429 -33.800772 0.010342204 544.30096 -1.4403874 + 262900 -33.795912 -33.800612 0.0046997058 247.34132 -1.70075 + 263000 -33.796574 -33.800404 0.0038299444 201.56656 -1.7684165 + 263100 -33.79391 -33.800127 0.0062167847 327.18383 -1.6919383 + 263200 -33.789978 -33.79961 0.0096313659 506.8902 -1.492717 + 263300 -33.795168 -33.798976 0.0038077064 200.39619 -1.4193338 + 263400 -33.796848 -33.798628 0.001779341 93.645131 -1.2916538 + 263500 -33.795719 -33.798435 0.0027154343 142.91088 -1.0338263 + 263600 -33.79275 -33.798332 0.0055824825 293.80107 -0.58318246 + 263700 -33.790546 -33.798274 0.0077282516 406.73099 0.0091969686 + 263800 -33.792739 -33.798239 0.0054991186 289.41371 0.50810234 + 263900 -33.795488 -33.798285 0.0027968245 147.19438 0.83264469 + 264000 -33.796194 -33.798461 0.00226682 119.30072 1.0549668 + 264100 -33.792079 -33.79885 0.0067713603 356.37065 1.3302865 + 264200 -33.789814 -33.799443 0.0096287068 506.75025 1.5757269 + 264300 -33.795061 -33.799828 0.0047674013 250.90408 1.5609629 + 264400 -33.796029 -33.800079 0.0040498074 213.13775 1.5230595 + 264500 -33.794264 -33.800297 0.0060330627 317.51471 1.4415319 + 264600 -33.788801 -33.800413 0.011611811 611.11928 1.297939 + 264700 -33.793926 -33.80022 0.0062939226 331.24353 0.84671964 + 264800 -33.797161 -33.799971 0.0028100161 147.88864 0.53557913 + 264900 -33.795746 -33.799728 0.0039821221 209.57553 0.30659844 + 265000 -33.791709 -33.799347 0.0076383984 402.00209 0.013209061 + 265100 -33.792179 -33.798795 0.0066158277 348.18511 -0.4150839 + 265200 -33.794133 -33.798286 0.004152931 218.56505 -0.77390748 + 265300 -33.794499 -33.797928 0.0034292143 180.47649 -0.98909512 + 265400 -33.790286 -33.797655 0.0073689881 387.82327 -1.0472189 + 265500 -33.788334 -33.797304 0.0089704341 472.10594 -1.0957716 + 265600 -33.792836 -33.796986 0.0041500706 218.41452 -1.1706562 + 265700 -33.793428 -33.796828 0.0033992663 178.90035 -1.0732966 + 265800 -33.790003 -33.796758 0.00675485 355.50173 -0.76381151 + 265900 -33.786305 -33.796587 0.010281902 541.12733 -0.24068455 + 266000 -33.790844 -33.796277 0.0054333542 285.95259 0.12136062 + 266100 -33.791117 -33.796006 0.0048894154 257.32557 0.53164839 + 266200 -33.789966 -33.795786 0.005819846 306.2933 1.0071955 + 266300 -33.788209 -33.795612 0.0074026201 389.59329 1.5550793 + 266400 -33.789494 -33.795513 0.0060197859 316.81596 2.0275664 + 266500 -33.792506 -33.795592 0.0030862997 162.4292 2.304273 + 266600 -33.792883 -33.795917 0.0030335658 159.65386 2.4797699 + 266700 -33.786905 -33.79666 0.0097553785 513.41687 2.7079428 + 266800 -33.788679 -33.79768 0.0090009361 473.71124 2.704473 + 266900 -33.792854 -33.798377 0.0055221525 290.62596 2.548271 + 267000 -33.79367 -33.798922 0.0052528074 276.45057 2.365053 + 267100 -33.793665 -33.799368 0.0057025314 300.11914 2.1027655 + 267200 -33.793816 -33.799664 0.0058478986 307.76969 1.7501669 + 267300 -33.794939 -33.799765 0.0048264021 254.00923 1.3327165 + 267400 -33.795335 -33.799705 0.0043697805 229.97765 0.92032278 + 267500 -33.793103 -33.799491 0.0063879254 336.19082 0.49989631 + 267600 -33.789847 -33.798991 0.0091433145 481.20449 -0.041989613 + 267700 -33.79407 -33.798317 0.0042469568 223.51355 -0.68076037 + 267800 -33.795939 -33.797905 0.0019657067 103.45339 -1.0257709 + 267900 -33.794376 -33.797693 0.0033170035 174.57094 -1.2048881 + 268000 -33.792173 -33.797631 0.005458247 287.26267 -1.3348535 + 268100 -33.791142 -33.797739 0.006596398 347.16254 -1.3967463 + 268200 -33.791891 -33.797977 0.006085525 320.27575 -1.384275 + 268300 -33.794213 -33.798271 0.0040575487 213.54517 -1.3110922 + 268400 -33.795419 -33.798588 0.0031690001 166.78165 -1.1557357 + 268500 -33.793411 -33.798973 0.0055618999 292.71783 -0.85268484 + 268600 -33.788222 -33.799438 0.011215533 590.26352 -0.29123117 + 268700 -33.794353 -33.799636 0.0052828812 278.03333 0.038556919 + 268800 -33.7956 -33.79966 0.0040602446 213.68705 0.3376316 + 268900 -33.7944 -33.799614 0.005213895 274.40265 0.67226765 + 269000 -33.792356 -33.799462 0.007106013 373.98312 1.0371603 + 269100 -33.792653 -33.799183 0.0065298401 343.65966 1.3244558 + 269200 -33.796263 -33.79893 0.0026670241 140.3631 1.419471 + 269300 -33.796412 -33.798834 0.0024222506 127.48089 1.4558859 + 269400 -33.792572 -33.798863 0.0062914997 331.11602 1.4627943 + 269500 -33.79107 -33.79894 0.0078691686 414.14732 1.2895383 + 269600 -33.793813 -33.79898 0.0051670865 271.93915 0.96590615 + 269700 -33.79523 -33.799015 0.0037854507 199.22489 0.65181803 + 269800 -33.793434 -33.799063 0.0056287308 296.23508 0.34295195 + 269900 -33.78727 -33.799014 0.011743721 618.06159 -0.11030941 + 270000 -33.793691 -33.798738 0.0050464141 265.58827 -0.79987813 + 270100 -33.794972 -33.798458 0.0034862683 183.47919 -1.2150067 + 270200 -33.793087 -33.798151 0.0050636332 266.4945 -1.5545764 + 270300 -33.78971 -33.797693 0.0079829587 420.136 -1.9358759 + 270400 -33.790869 -33.797124 0.0062548542 329.1874 -2.3751242 + 270500 -33.791605 -33.79664 0.0050355966 265.01896 -2.6740172 + 270600 -33.791068 -33.796291 0.0052234063 274.90321 -2.8319457 + 270700 -33.789339 -33.796094 0.0067549801 355.50858 -2.8534501 + 270800 -33.788073 -33.796047 0.0079741466 419.67222 -2.7602939 + 270900 -33.791919 -33.796133 0.0042144265 221.80151 -2.6719006 + 271000 -33.793446 -33.79635 0.0029046248 152.86781 -2.5002173 + 271100 -33.791069 -33.796753 0.0056839013 299.13865 -2.1526457 + 271200 -33.786523 -33.797339 0.010816419 569.25849 -1.553862 + 271300 -33.791744 -33.797701 0.0059574255 313.53399 -1.1613085 + 271400 -33.7926 -33.79786 0.0052601847 276.83883 -0.79551187 + 271500 -33.792264 -33.797906 0.005642 296.93343 -0.44238485 + 271600 -33.791565 -33.797826 0.006260676 329.49379 -0.11886225 + 271700 -33.791382 -33.797607 0.0062248769 327.60972 0.13619332 + 271800 -33.792459 -33.797301 0.0048427408 254.86913 0.27351837 + 271900 -33.792852 -33.797006 0.0041537238 218.60678 0.32007153 + 272000 -33.789988 -33.796714 0.0067256017 353.96242 0.32940978 + 272100 -33.786994 -33.796312 0.0093177496 490.38485 0.21425613 + 272200 -33.791973 -33.795929 0.00395622 208.21233 -0.11432278 + 272300 -33.793236 -33.795784 0.0025476198 134.07896 -0.35358077 + 272400 -33.791825 -33.795836 0.0040109345 211.0919 -0.61067084 + 272500 -33.790107 -33.796053 0.005945317 312.89673 -0.96627682 + 272600 -33.789391 -33.796349 0.0069578677 366.18637 -1.4054499 + 272700 -33.791666 -33.79662 0.0049538981 260.71924 -1.8670581 + 272800 -33.794345 -33.796841 0.0024953833 131.3298 -2.1921842 + 272900 -33.79432 -33.797096 0.0027758198 146.08892 -2.3519459 + 273000 -33.787618 -33.797529 0.0099112701 521.62131 -2.3645053 + 273100 -33.790323 -33.797905 0.0075814362 399.00422 -2.5325918 + 273200 -33.793787 -33.798057 0.0042704307 224.74896 -2.6186627 + 273300 -33.793805 -33.79816 0.0043548594 229.19237 -2.5483847 + 273400 -33.790022 -33.798253 0.0082313809 433.21023 -2.2906544 + 273500 -33.786562 -33.798212 0.011649222 613.08817 -1.8752058 + 273600 -33.794933 -33.798053 0.0031195111 164.17709 -1.7391112 + 273700 -33.794619 -33.797993 0.0033748268 177.61413 -1.4619499 + 273800 -33.790969 -33.798001 0.0070322422 370.10063 -0.99027013 + 273900 -33.789999 -33.797976 0.0079771387 419.82969 -0.43646561 + 274000 -33.793635 -33.797904 0.0042681078 224.62671 -0.054314504 + 274100 -33.79513 -33.797892 0.0027615728 145.33911 0.22317372 + 274200 -33.793143 -33.79798 0.0048377441 254.60616 0.51114326 + 274300 -33.787509 -33.798135 0.010625782 559.22541 0.93361891 + 274400 -33.792697 -33.798159 0.0054619038 287.45513 1.070793 + 274500 -33.794645 -33.798151 0.0035061654 184.52636 1.1257044 + 274600 -33.793143 -33.798185 0.0050417589 265.34327 1.154087 + 274700 -33.788024 -33.798209 0.010184597 536.00628 1.1496382 + 274800 -33.793124 -33.798096 0.0049723157 261.68854 0.86364555 + 274900 -33.795771 -33.798036 0.0022646955 119.1889 0.66021644 + 275000 -33.794035 -33.798095 0.0040597952 213.6634 0.49221907 + 275100 -33.790392 -33.798253 0.0078614062 413.7388 0.24006384 + 275200 -33.791602 -33.798394 0.0067919626 357.45493 -0.15811304 + 275300 -33.794866 -33.798501 0.0036353074 191.32298 -0.50074795 + 275400 -33.795863 -33.798661 0.0027986157 147.28865 -0.69180448 + 275500 -33.792546 -33.79895 0.0064043979 337.05775 -0.74295007 + 275600 -33.789089 -33.799358 0.010269073 540.45214 -0.76975892 + 275700 -33.794831 -33.799579 0.0047483767 249.90283 -0.90234737 + 275800 -33.795891 -33.799703 0.0038118083 200.61207 -0.8641622 + 275900 -33.793885 -33.799809 0.0059246606 311.8096 -0.67478078 + 276000 -33.789101 -33.799812 0.010711244 563.72324 -0.29714822 + 276100 -33.795019 -33.799581 0.0045618392 240.08553 -0.07598639 + 276200 -33.796949 -33.799378 0.0024289142 127.83159 0.12146981 + 276300 -33.79486 -33.799186 0.0043263786 227.69344 0.44626705 + 276400 -33.791239 -33.798868 0.0076292961 401.52305 0.95292184 + 276500 -33.792205 -33.798413 0.0062074838 326.69433 1.4061668 + 276600 -33.794103 -33.797999 0.0038957754 205.03118 1.7417229 + 276700 -33.794608 -33.797726 0.0031182413 164.11026 2.0031633 + 276800 -33.790906 -33.797571 0.0066658455 350.8175 2.3157792 + 276900 -33.788292 -33.797453 0.0091608679 482.12831 2.6148753 + 277000 -33.792831 -33.7974 0.0045691237 240.4689 2.6601594 + 277100 -33.793959 -33.797489 0.0035304856 185.80631 2.6459607 + 277200 -33.791514 -33.797748 0.0062334829 328.06265 2.5904831 + 277300 -33.783988 -33.798162 0.014174041 745.96713 2.4618057 + 277400 -33.794587 -33.798394 0.0038069897 200.35847 1.9357975 + 277500 -33.795099 -33.798535 0.003435597 180.8124 1.6772246 + 277600 -33.7921 -33.798715 0.0066146127 348.12117 1.3951072 + 277700 -33.790153 -33.79883 0.0086775634 456.69242 0.95274324 + 277800 -33.794489 -33.798784 0.0042949086 226.03721 0.43920052 + 277900 -33.795873 -33.798731 0.0028586079 150.44598 0.12934636 + 278000 -33.792437 -33.798728 0.0062911339 331.09677 -0.057048695 + 278100 -33.788046 -33.798652 0.010605196 558.14202 -0.31313407 + 278200 -33.792887 -33.798451 0.0055633165 292.79239 -0.6506925 + 278300 -33.794476 -33.798303 0.0038273436 201.42968 -0.78799367 + 278400 -33.793035 -33.798243 0.0052073878 274.06018 -0.76523372 + 278500 -33.787628 -33.798198 0.010569929 556.28594 -0.55907199 + 278600 -33.792715 -33.798057 0.0053411374 281.0993 -0.48572119 + 278700 -33.795105 -33.797984 0.0028790789 151.52335 -0.37664382 + 278800 -33.793508 -33.798009 0.0045006795 236.86675 -0.1353072 + 278900 -33.790365 -33.798067 0.0077014848 405.32228 0.23744997 + 279000 -33.791431 -33.798035 0.0066040483 347.56517 0.56760738 + 279100 -33.795284 -33.797956 0.00267244 140.64813 0.74465172 + 279200 -33.796308 -33.797958 0.0016500548 86.840915 0.86337313 + 279300 -33.791682 -33.798087 0.0064052037 337.10016 1.069291 + 279400 -33.789979 -33.798262 0.0082830442 435.92923 1.2272413 + 279500 -33.793761 -33.798327 0.0045665984 240.336 1.2020278 + 279600 -33.794938 -33.798395 0.0034575732 181.96899 1.152225 + 279700 -33.792446 -33.798544 0.0060975459 320.9084 1.0932043 + 279800 -33.788327 -33.798758 0.010430906 548.96928 0.93645997 + 279900 -33.794084 -33.798883 0.0047990626 252.57038 0.55245232 + 280000 -33.795021 -33.799003 0.0039827819 209.61026 0.29625922 + 280100 -33.793572 -33.799193 0.0056204718 295.80042 0.03582592 + 280200 -33.791769 -33.799407 0.0076382401 401.99376 -0.2951772 + 280300 -33.794201 -33.79954 0.0053394951 281.01287 -0.71752191 + 280400 -33.797164 -33.799599 0.0024348998 128.1466 -1.0300797 + 280500 -33.796444 -33.799672 0.0032277963 169.87604 -1.2060737 + 280600 -33.790843 -33.799746 0.0089030332 468.5587 -1.342262 + 280700 -33.792579 -33.79964 0.0070614703 371.63888 -1.6377166 + 280800 -33.795099 -33.799413 0.0043136275 227.02237 -1.8610818 + 280900 -33.795181 -33.799174 0.0039929455 210.14516 -1.9599923 + 281000 -33.790187 -33.798876 0.0086896112 457.32649 -1.90912 + 281100 -33.789464 -33.798383 0.0089189321 469.39544 -1.896526 + 281200 -33.793675 -33.797988 0.0043124604 226.96094 -1.9317665 + 281300 -33.793454 -33.797804 0.0043496649 228.91899 -1.8276488 + 281400 -33.791594 -33.797821 0.0062267498 327.70829 -1.6215293 + 281500 -33.790207 -33.798031 0.0078246984 411.8069 -1.3502854 + 281600 -33.794252 -33.798338 0.0040860467 215.04499 -1.1857646 + 281700 -33.796238 -33.798654 0.0024161057 127.15749 -1.064002 + 281800 -33.794493 -33.79911 0.0046174231 243.01086 -0.87544148 + 281900 -33.791691 -33.799724 0.0080330486 422.77219 -0.631445 + 282000 -33.793449 -33.800179 0.0067294932 354.16723 -0.504304 + 282100 -33.795265 -33.800389 0.0051243279 269.68881 -0.44125256 + 282200 -33.795703 -33.800441 0.004738363 249.37582 -0.40749447 + 282300 -33.792869 -33.800366 0.0074970452 394.5628 -0.36047234 + 282400 -33.788659 -33.800013 0.01135419 597.56089 -0.35157418 + 282500 -33.795479 -33.799538 0.0040584016 213.59006 -0.5854453 + 282600 -33.795819 -33.799214 0.0033947091 178.66051 -0.69778807 + 282700 -33.793347 -33.798962 0.0056154129 295.53417 -0.80033936 + 282800 -33.791243 -33.798735 0.0074922693 394.31145 -0.97294561 + 282900 -33.792487 -33.798564 0.0060771314 319.83401 -1.2154386 + 283000 -33.793074 -33.798488 0.0054139281 284.93021 -1.4130449 + 283100 -33.792846 -33.798494 0.0056475883 297.22753 -1.5665756 + 283200 -33.792573 -33.798542 0.0059687831 314.13173 -1.685834 + 283300 -33.793149 -33.798587 0.0054380059 286.1974 -1.7777901 + 283400 -33.795016 -33.798614 0.0035983794 189.3795 -1.8386225 + 283500 -33.794806 -33.79866 0.0038537985 202.82198 -1.8003133 + 283600 -33.790703 -33.798713 0.0080098624 421.55192 -1.6102114 + 283700 -33.790643 -33.798628 0.0079845843 420.22155 -1.4177185 + 283800 -33.795109 -33.798466 0.0033568881 176.67003 -1.3178825 + 283900 -33.795483 -33.79841 0.0029274134 154.06715 -1.1424169 + 284000 -33.79397 -33.79849 0.0045194737 237.85587 -0.85957379 + 284100 -33.792861 -33.798701 0.0058402629 307.36783 -0.51341108 + 284200 -33.792093 -33.799022 0.0069283915 364.63507 -0.13089801 + 284300 -33.793892 -33.799387 0.0054949506 289.19435 0.18253248 + 284400 -33.796414 -33.799737 0.0033230117 174.88714 0.3843636 + 284500 -33.796762 -33.80011 0.0033479427 176.19924 0.54429343 + 284600 -33.791093 -33.800622 0.0095295373 501.53105 0.80409816 + 284700 -33.792182 -33.801116 0.0089332103 470.14689 0.92026744 + 284800 -33.79657 -33.801279 0.0047088521 247.82268 0.88008941 + 284900 -33.796521 -33.801301 0.0047796165 251.54695 0.85927279 + 285000 -33.794828 -33.801198 0.0063699496 335.24477 0.80517349 + 285100 -33.792185 -33.800892 0.0087067231 458.22707 0.69401256 + 285200 -33.794344 -33.800371 0.0060267592 317.18296 0.43793044 + 285300 -33.797274 -33.799944 0.00267074 140.55866 0.20703027 + 285400 -33.79637 -33.799663 0.0032931267 173.31432 0.066761405 + 285500 -33.791978 -33.799402 0.0074240148 390.71928 -0.068355955 + 285600 -33.792357 -33.799163 0.0068064722 358.21856 -0.31874386 + 285700 -33.794294 -33.799053 0.0047586818 250.44518 -0.5287809 + 285800 -33.794787 -33.799109 0.0043215718 227.44047 -0.63023817 + 285900 -33.790876 -33.799343 0.0084672267 445.62259 -0.57677908 + 286000 -33.790095 -33.799692 0.0095961374 505.03615 -0.51144482 + 286100 -33.795797 -33.799926 0.0041290735 217.30946 -0.52861357 + 286200 -33.795953 -33.800157 0.0042042377 221.26528 -0.3906546 + 286300 -33.793563 -33.800443 0.0068796836 362.07161 -0.11442224 + 286400 -33.791698 -33.800698 0.0089993934 473.63005 0.25623459 + 286500 -33.797535 -33.800792 0.0032572351 171.42538 0.44433668 + 286600 -33.798237 -33.800857 0.0026201094 137.89402 0.64421749 + 286700 -33.79518 -33.800974 0.0057935408 304.90889 0.96207439 + 286800 -33.792871 -33.801073 0.0082014471 431.63485 1.3522818 + 286900 -33.795415 -33.801057 0.0056412908 296.8961 1.6004145 + 287000 -33.796534 -33.800999 0.0044647771 234.97724 1.7798309 + 287100 -33.795693 -33.800937 0.0052444734 276.01196 1.9326156 + 287200 -33.794447 -33.800847 0.0063993184 336.79042 2.0351027 + 287300 -33.794642 -33.800704 0.0060625591 319.06708 2.0352429 + 287400 -33.795167 -33.800528 0.0053604725 282.11689 1.9540663 + 287500 -33.795183 -33.800339 0.0051562375 271.36818 1.8139244 + 287600 -33.793791 -33.800131 0.0063397946 333.65774 1.6260332 + 287700 -33.79171 -33.799851 0.0081409688 428.45193 1.3593229 + 287800 -33.794386 -33.79952 0.0051339141 270.19332 0.9672377 + 287900 -33.79674 -33.799318 0.0025781318 135.68478 0.66562187 + 288000 -33.795431 -33.799262 0.0038310367 201.62405 0.46515882 + 288100 -33.790083 -33.799292 0.0092087991 484.65088 0.24200254 + 288200 -33.792768 -33.799293 0.0065253957 343.42575 -0.13514196 + 288300 -33.794977 -33.799305 0.0043277378 227.76498 -0.38573707 + 288400 -33.794684 -33.799386 0.0047020127 247.46274 -0.49763172 + 288500 -33.787789 -33.79955 0.011760826 618.96179 -0.41754911 + 288600 -33.791642 -33.799643 0.0080013387 421.10332 -0.48604547 + 288700 -33.795416 -33.799674 0.0042576476 224.07619 -0.49572968 + 288800 -33.794639 -33.799782 0.0051428135 270.66169 -0.34778162 + 288900 -33.792238 -33.79997 0.0077318977 406.92288 -0.07998256 + 289000 -33.793477 -33.800162 0.0066850722 351.82939 0.17717899 + 289100 -33.797552 -33.800307 0.0027550894 144.9979 0.31749742 + 289200 -33.797294 -33.800497 0.0032027221 168.55641 0.49814117 + 289300 -33.793635 -33.800793 0.007158054 376.722 0.78583393 + 289400 -33.793484 -33.801057 0.0075724494 398.53126 1.026748 + 289500 -33.795569 -33.801154 0.0055844913 293.90679 1.1571585 + 289600 -33.796611 -33.801136 0.0045251547 238.15486 1.2318788 + 289700 -33.79552 -33.801039 0.0055184728 290.4323 1.2839108 + 289800 -33.788987 -33.800753 0.011766559 619.26353 1.371017 + 289900 -33.794596 -33.800214 0.0056182459 295.68327 1.1525735 + 290000 -33.796667 -33.799801 0.003134123 164.9461 0.9901358 + 290100 -33.795316 -33.799452 0.0041363179 217.69072 0.84036623 + 290200 -33.792713 -33.799092 0.0063785894 335.69947 0.61814503 + 290300 -33.792257 -33.798744 0.0064867622 341.39251 0.28632455 + 290400 -33.79311 -33.798503 0.005392418 283.79815 -0.063654868 + 290500 -33.793355 -33.79841 0.0050549154 266.03569 -0.36688242 + 290600 -33.791274 -33.79846 0.0071859723 378.19131 -0.60844513 + 290700 -33.790325 -33.798589 0.0082646058 434.95883 -0.87901182 + 290800 -33.794298 -33.798704 0.0044064091 231.90538 -1.1558678 + 290900 -33.795296 -33.798838 0.0035417705 186.40022 -1.2708483 + 291000 -33.792665 -33.799025 0.0063602081 334.73208 -1.2511173 + 291100 -33.788116 -33.799187 0.01107021 582.61528 -1.1383113 + 291200 -33.795283 -33.799155 0.003871459 203.75144 -1.2213808 + 291300 -33.795846 -33.799112 0.0032659151 171.8822 -1.15296 + 291400 -33.793643 -33.7991 0.005456974 287.19567 -0.97288305 + 291500 -33.790968 -33.799077 0.0081095622 426.79903 -0.70894324 + 291600 -33.793526 -33.799027 0.0055011042 289.5182 -0.53081699 + 291700 -33.796835 -33.799048 0.0022123373 116.43334 -0.43411147 + 291800 -33.796849 -33.799213 0.0023639641 124.41332 -0.32011107 + 291900 -33.789822 -33.79968 0.0098579236 518.81372 -0.021616784 + 292000 -33.793134 -33.800242 0.0071078555 374.0801 0.085237861 + 292100 -33.796598 -33.80062 0.004021943 211.67128 0.10731351 + 292200 -33.796623 -33.800943 0.004320132 227.36469 0.13990725 + 292300 -33.79283 -33.801277 0.0084477705 444.59863 0.19918983 + 292400 -33.792014 -33.801506 0.0094919092 499.55071 0.14060506 + 292500 -33.798448 -33.80151 0.0030616154 161.13009 -0.072069177 + 292600 -33.797955 -33.801462 0.00350701 184.57081 -0.16580501 + 292700 -33.794685 -33.801345 0.0066600911 350.51465 -0.26981033 + 292800 -33.793585 -33.80108 0.0074950306 394.45678 -0.48375067 + 292900 -33.796073 -33.800749 0.0046757689 246.08155 -0.756438 + 293000 -33.798448 -33.800512 0.0020640284 108.62797 -0.96596592 + 293100 -33.799482 -33.800453 0.000971001 51.102917 -1.0726592 + 293200 -33.798032 -33.80056 0.0025280978 133.05153 -1.1002197 + 293300 -33.795011 -33.800867 0.0058565233 308.2236 -1.0932948 + 293400 -33.793693 -33.801234 0.0075415027 396.90256 -1.099069 + 293500 -33.79626 -33.801492 0.0052320712 275.35924 -1.1511468 + 293600 -33.798368 -33.801623 0.0032544567 171.27915 -1.1640291 + 293700 -33.797531 -33.801697 0.0041655818 219.23085 -1.0871451 + 293800 -33.790395 -33.801681 0.011285887 593.96617 -0.81517151 + 293900 -33.795012 -33.80143 0.0064174786 337.74617 -0.73866912 + 294000 -33.797148 -33.801133 0.0039853496 209.7454 -0.64083562 + 294100 -33.796264 -33.800834 0.0045696725 240.49779 -0.47122076 + 294200 -33.793413 -33.800482 0.0070688088 372.0251 -0.21329821 + 294300 -33.792843 -33.800071 0.0072279929 380.40282 0.040798954 + 294400 -33.797774 -33.799796 0.0020221457 106.42372 0.1292285 + 294500 -33.797996 -33.799773 0.0017769534 93.519474 0.23007132 + 294600 -33.794878 -33.799959 0.0050814441 267.43187 0.40741789 + 294700 -33.79223 -33.800297 0.0080672746 424.57347 0.59827779 + 294800 -33.79479 -33.800557 0.0057668204 303.50261 0.65280849 + 294900 -33.797166 -33.800688 0.0035219152 185.35525 0.65255335 + 295000 -33.7967 -33.800764 0.0040639971 213.88454 0.66566645 + 295100 -33.788507 -33.800735 0.012228545 643.57743 0.78196444 + 295200 -33.793972 -33.800396 0.0064240705 338.0931 0.58870755 + 295300 -33.796318 -33.800012 0.0036937714 194.39989 0.46325381 + 295400 -33.795189 -33.799618 0.004428896 233.08885 0.39765543 + 295500 -33.791381 -33.799098 0.0077169384 406.13558 0.35590049 + 295600 -33.791493 -33.798446 0.0069528387 365.9217 0.2263607 + 295700 -33.792873 -33.797912 0.0050394144 265.21989 0.10983878 + 295800 -33.792518 -33.797561 0.0050435377 265.43689 0.074204044 + 295900 -33.791074 -33.797387 0.0063134157 332.26944 0.11410506 + 296000 -33.789946 -33.79736 0.0074146276 390.22524 0.2102411 + 296100 -33.79288 -33.797424 0.0045443243 239.16374 0.27689368 + 296200 -33.794891 -33.797567 0.0026759448 140.83259 0.37529369 + 296300 -33.793226 -33.797825 0.0045992248 242.0531 0.59390793 + 296400 -33.787296 -33.798176 0.010879328 572.56933 1.0477871 + 296500 -33.791396 -33.798262 0.006865585 361.32962 1.3360964 + 296600 -33.793298 -33.79815 0.0048527146 255.39404 1.5943494 + 296700 -33.793175 -33.79797 0.0047953016 252.37245 1.8656157 + 296800 -33.789914 -33.797724 0.0078097504 411.0202 2.2182928 + 296900 -33.786114 -33.797274 0.011159899 587.33553 2.6484306 + 297000 -33.793599 -33.796863 0.0032644942 171.80742 2.747263 + 297100 -33.793752 -33.796785 0.0030325639 159.60113 2.8603403 + 297200 -33.790858 -33.797013 0.0061542753 323.89402 2.9840494 + 297300 -33.789356 -33.797514 0.0081575233 429.32317 3.0223649 + 297400 -33.792435 -33.79805 0.0056148011 295.50197 2.901922 + 297500 -33.793781 -33.798545 0.0047641755 250.73431 2.7630588 + 297600 -33.79337 -33.799052 0.0056829288 299.08747 2.5970735 + 297700 -33.793234 -33.799499 0.0062653823 329.74148 2.3620598 + 297800 -33.794328 -33.799773 0.0054458203 286.60867 2.0679006 + 297900 -33.796279 -33.79986 0.0035802657 188.42619 1.7680039 + 298000 -33.797193 -33.799841 0.0026479157 139.35744 1.5254592 + 298100 -33.794227 -33.799749 0.0055220227 290.61913 1.333797 + 298200 -33.790624 -33.79939 0.0087653854 461.31441 1.0322701 + 298300 -33.793699 -33.798792 0.0050938892 268.08685 0.62986651 + 298400 -33.794996 -33.798267 0.0032708416 172.14148 0.37694307 + 298500 -33.790539 -33.797797 0.0072583267 381.99926 0.28636216 + 298600 -33.787415 -33.797101 0.0096863967 509.78642 0.14546292 + 298700 -33.79202 -33.796605 0.0045848877 241.29855 -0.042672783 + 298800 -33.792571 -33.796491 0.0039199936 206.30577 -0.048701359 + 298900 -33.789394 -33.796741 0.0073471322 386.67301 0.1131499 + 299000 -33.785635 -33.797336 0.011701033 615.81495 0.40609229 + 299100 -33.794182 -33.797841 0.00365904 192.57201 0.43598381 + 299200 -33.794012 -33.798342 0.0043307376 227.92286 0.60066072 + 299300 -33.791283 -33.799008 0.0077243701 406.52671 0.84949471 + 299400 -33.792237 -33.799651 0.0074130624 390.14286 1.0357631 + 299500 -33.796813 -33.800005 0.0031919944 167.99182 1.0686816 + 299600 -33.796776 -33.800242 0.0034660723 182.4163 1.1240497 + 299700 -33.794778 -33.800458 0.0056796697 298.91595 1.1732956 + 299800 -33.794154 -33.800555 0.0064010274 336.88036 1.1406538 + 299900 -33.794895 -33.800478 0.0055826097 293.80777 1.0269025 + 300000 -33.795381 -33.800283 0.0049019368 257.98456 0.87310449 + 300100 -33.793223 -33.800003 0.0067803745 356.84506 0.71655827 + 300200 -33.789326 -33.799503 0.010176328 535.57106 0.47930652 + 300300 -33.794573 -33.798943 0.0043696911 229.97294 0.069508605 + 300400 -33.795667 -33.798623 0.0029558541 155.56397 -0.17272359 + 300500 -33.793145 -33.798463 0.0053180607 279.88479 -0.354624 + 300600 -33.790471 -33.798365 0.0078944438 415.47753 -0.59693954 + 300700 -33.792011 -33.798274 0.006263203 329.62679 -0.89311965 + 300800 -33.793377 -33.798209 0.0048322158 254.31521 -1.1124842 + 300900 -33.793401 -33.798179 0.0047778112 251.45194 -1.2405501 + 301000 -33.789712 -33.798135 0.00842341 443.31655 -1.2540769 + 301100 -33.78858 -33.797888 0.009307772 489.85974 -1.2929097 + 301200 -33.794069 -33.797549 0.0034798632 183.1421 -1.4107907 + 301300 -33.794015 -33.797308 0.0032924135 173.27679 -1.371022 + 301400 -33.791532 -33.797084 0.0055516931 292.18066 -1.2239893 + 301500 -33.790269 -33.796802 0.0065324368 343.79632 -1.0374271 + 301600 -33.790936 -33.796511 0.0055749578 293.40506 -0.86553658 + 301700 -33.791223 -33.796304 0.0050812188 267.42001 -0.68365559 + 301800 -33.789021 -33.796227 0.0072054013 379.21385 -0.44150166 + 301900 -33.783586 -33.796229 0.012642456 665.36119 -0.077247843 + 302000 -33.791631 -33.796258 0.0046270497 243.5175 -0.047383205 + 302100 -33.792388 -33.796478 0.0040900471 215.25553 0.02783545 + 302200 -33.790314 -33.796956 0.0066423743 349.58223 0.10572078 + 302300 -33.788669 -33.797624 0.0089551852 471.30341 0.11547393 + 302400 -33.794692 -33.798127 0.0034356996 180.8178 -0.074350712 + 302500 -33.795215 -33.798486 0.0032711454 172.15747 -0.18514538 + 302600 -33.792471 -33.798882 0.006411148 337.413 -0.30690471 + 302700 -33.79078 -33.799156 0.0083759602 440.81931 -0.55253118 + 302800 -33.795393 -33.799112 0.0037190626 195.73095 -0.91956143 + 302900 -33.797354 -33.798982 0.0016276146 85.659903 -1.1368174 + 303000 -33.796645 -33.798843 0.0021974964 115.65228 -1.2931286 + 303100 -33.794245 -33.798624 0.0043791266 230.46953 -1.4647569 + 303200 -33.790855 -33.798188 0.0073330752 385.93321 -1.6892601 + 303300 -33.791063 -33.797522 0.0064586228 339.91156 -1.9897833 + 303400 -33.793306 -33.796913 0.0036073269 189.8504 -2.2339582 + 303500 -33.794018 -33.796585 0.0025661339 135.05334 -2.327923 + 303600 -33.789999 -33.796545 0.0065457684 344.49795 -2.2197713 + 303700 -33.787819 -33.796794 0.0089746884 472.32984 -2.008704 + 303800 -33.792129 -33.797209 0.0050801462 267.36356 -1.8555782 + 303900 -33.793383 -33.797749 0.0043655777 229.75646 -1.6171318 + 304000 -33.792336 -33.798481 0.0061450589 323.40897 -1.2576373 + 304100 -33.789848 -33.799366 0.0095181373 500.93107 -0.76344041 + 304200 -33.793948 -33.800113 0.0061655775 324.48885 -0.3749645 + 304300 -33.796986 -33.800513 0.0035269534 185.62041 -0.11367547 + 304400 -33.796399 -33.800793 0.0043944552 231.27626 0.16748731 + 304500 -33.792257 -33.800988 0.0087310612 459.50796 0.5584989 + 304600 -33.793696 -33.800916 0.0072199368 379.97883 0.85414638 + 304700 -33.798299 -33.800707 0.0024084492 126.75453 0.941235 + 304800 -33.79791 -33.800539 0.0026294862 138.38751 1.0325269 + 304900 -33.795835 -33.800374 0.0045386206 238.86356 1.1104705 + 305000 -33.793491 -33.800184 0.0066929789 352.24551 1.1374011 + 305100 -33.793437 -33.799987 0.0065501008 344.72596 1.0612581 + 305200 -33.795867 -33.799865 0.0039982519 210.42443 0.90407818 + 305300 -33.798022 -33.799895 0.0018732932 98.58975 0.75880971 + 305400 -33.79722 -33.800101 0.0028810949 151.62945 0.66851191 + 305500 -33.791898 -33.800561 0.0086636688 455.96116 0.58926454 + 305600 -33.793952 -33.800971 0.0070187725 369.39173 0.33094806 + 305700 -33.796844 -33.801151 0.0043073385 226.69138 0.11504716 + 305800 -33.796975 -33.801213 0.0042380529 223.04495 0.0014737691 + 305900 -33.791361 -33.801153 0.009792482 515.36959 0.01771391 + 306000 -33.790741 -33.800721 0.0099799148 525.23401 -0.062967395 + 306100 -33.795905 -33.800199 0.0042937884 225.97825 -0.19276488 + 306200 -33.795483 -33.79974 0.0042569353 224.03871 -0.14767607 + 306300 -33.792615 -33.799268 0.0066530771 350.14551 0.028276802 + 306400 -33.790732 -33.798744 0.0080122113 421.67554 0.28594371 + 306500 -33.794674 -33.798356 0.0036822212 193.79202 0.46149626 + 306600 -33.796554 -33.798303 0.0017492397 92.060925 0.62120199 + 306700 -33.795031 -33.798554 0.0035226083 185.39174 0.88689158 + 306800 -33.792608 -33.799091 0.0064830405 341.19664 1.2865302 + 306900 -33.792847 -33.799639 0.0067916511 357.43854 1.6667188 + 307000 -33.795246 -33.799983 0.0047370337 249.30586 1.9346099 + 307100 -33.796921 -33.800145 0.0032247522 169.71583 2.1145898 + 307200 -33.796791 -33.800208 0.0034168528 179.82591 2.2550528 + 307300 -33.791555 -33.800136 0.0085807908 451.59936 2.4685885 + 307400 -33.792011 -33.799689 0.0076771094 404.03942 2.533767 + 307500 -33.795663 -33.799121 0.0034583765 182.01127 2.4626295 + 307600 -33.795479 -33.798659 0.0031794375 167.33096 2.4081931 + 307700 -33.790459 -33.798153 0.0076936441 404.90963 2.3585927 + 307800 -33.790544 -33.797553 0.0070092841 368.89237 2.1124615 + 307900 -33.792518 -33.797174 0.0046558321 245.03229 1.8324245 + 308000 -33.792703 -33.797115 0.0044127295 232.23802 1.6073459 + 308100 -33.789252 -33.797377 0.0081249781 427.61035 1.4302299 + 308200 -33.788272 -33.797854 0.009581962 504.29012 1.1545196 + 308300 -33.794558 -33.798216 0.0036577967 192.50658 0.84095729 + 308400 -33.794294 -33.798597 0.0043030297 226.46461 0.74399395 + 308500 -33.791887 -33.799072 0.0071845199 378.11487 0.72713566 + 308600 -33.792128 -33.799468 0.0073408662 386.34324 0.69505673 + 308700 -33.797118 -33.79964 0.0025218203 132.72115 0.60964883 + 308800 -33.797119 -33.799769 0.0026499233 139.4631 0.66130981 + 308900 -33.794455 -33.799948 0.0054923396 289.05693 0.82632145 + 309000 -33.793119 -33.800082 0.0069629362 366.45312 1.0267555 + 309100 -33.79441 -33.800096 0.0056862777 299.26372 1.1872654 + 309200 -33.795703 -33.800066 0.0043628043 229.6105 1.3267446 + 309300 -33.795883 -33.800078 0.0041944169 220.74842 1.4648088 + 309400 -33.792605 -33.800177 0.0075723828 398.52775 1.6698475 + 309500 -33.791924 -33.800329 0.008404313 442.3115 1.8202456 + 309600 -33.796501 -33.80048 0.0039792497 209.42436 1.8000401 + 309700 -33.797171 -33.800708 0.003537189 186.1591 1.7881913 + 309800 -33.793761 -33.801099 0.007338629 386.2255 1.788111 + 309900 -33.7889 -33.801638 0.012737722 670.37493 1.7088516 + 310000 -33.798638 -33.801921 0.0032824209 172.75089 1.3428965 + 310100 -33.798278 -33.802113 0.0038343631 201.79911 1.1769562 + 310200 -33.794615 -33.802308 0.0076936474 404.9098 0.97872567 + 310300 -33.794477 -33.802364 0.0078874121 415.10747 0.60791269 + 310400 -33.79868 -33.802252 0.0035719612 187.98913 0.20931577 + 310500 -33.799119 -33.802121 0.0030014624 157.96429 -0.041324811 + 310600 -33.794242 -33.801937 0.0076947789 404.96935 -0.23690768 + 310700 -33.792763 -33.80153 0.0087669944 461.3991 -0.61546783 + 310800 -33.796167 -33.801078 0.0049114821 258.48692 -0.99811963 + 310900 -33.797085 -33.800744 0.0036593101 192.58623 -1.2192933 + 311000 -33.794428 -33.800503 0.0060746291 319.70231 -1.3090694 + 311100 -33.790263 -33.800259 0.0099957304 526.06638 -1.3401708 + 311200 -33.795125 -33.800064 0.0049387081 259.9198 -1.477855 + 311300 -33.796285 -33.800033 0.0037471166 197.2074 -1.4655287 + 311400 -33.795028 -33.800145 0.0051174785 269.32833 -1.3327936 + 311500 -33.793018 -33.80035 0.0073311634 385.83259 -1.1080715 + 311600 -33.794259 -33.800527 0.0062676092 329.85868 -0.90167757 + 311700 -33.797877 -33.800618 0.0027410654 144.25982 -0.78597106 + 311800 -33.798088 -33.800699 0.002611639 137.44823 -0.64820808 + 311900 -33.79254 -33.800795 0.0082553351 434.47092 -0.35576434 + 312000 -33.792871 -33.800718 0.0078466458 412.96197 -0.13616071 + 312100 -33.796022 -33.80047 0.004447476 234.06669 -0.04882426 + 312200 -33.796506 -33.800199 0.0036934004 194.38037 0.018716925 + 312300 -33.79238 -33.799867 0.0074867636 394.02169 0.12395342 + 312400 -33.790039 -33.799297 0.0092584669 487.26486 0.13349282 + 312500 -33.793643 -33.798752 0.0051086126 268.86172 -0.024614001 + 312600 -33.793816 -33.798384 0.0045676304 240.39032 -0.16192472 + 312700 -33.792362 -33.798173 0.0058106815 305.81098 -0.33259125 + 312800 -33.790288 -33.798101 0.0078134347 411.2141 -0.57354143 + 312900 -33.792435 -33.79813 0.0056946969 299.70682 -0.93861407 + 313000 -33.795452 -33.798248 0.0027961699 147.15993 -1.2362537 + 313100 -33.794494 -33.798495 0.0040015516 210.59809 -1.4280577 + 313200 -33.789506 -33.798882 0.0093757536 493.43755 -1.6170258 + 313300 -33.791956 -33.79913 0.0071732234 377.52035 -1.9845098 + 313400 -33.794406 -33.799147 0.0047413683 249.53399 -2.2567024 + 313500 -33.793994 -33.799045 0.0050510545 265.83249 -2.4185865 + 313600 -33.792635 -33.798802 0.0061672224 324.57542 -2.524549 + 313700 -33.791105 -33.79837 0.0072646814 382.3337 -2.5853162 + 313800 -33.791608 -33.797782 0.0061732661 324.89349 -2.6258397 + 313900 -33.793757 -33.797271 0.0035140395 184.94076 -2.6257136 + 314000 -33.793419 -33.796986 0.0035666894 187.71168 -2.4998656 + 314100 -33.788612 -33.796896 0.0082839993 435.97949 -2.1388535 + 314200 -33.789313 -33.796998 0.0076847123 404.43955 -1.7438738 + 314300 -33.792526 -33.797287 0.0047609693 250.56557 -1.430302 + 314400 -33.792743 -33.797789 0.0050466725 265.60187 -1.0817492 + 314500 -33.792134 -33.798519 0.0063849997 336.03684 -0.69525274 + 314600 -33.792692 -33.799341 0.0066495896 349.96197 -0.34430945 + 314700 -33.79437 -33.800082 0.0057120352 300.61932 -0.082100754 + 314800 -33.796018 -33.800673 0.0046545221 244.96335 0.09058095 + 314900 -33.798789 -33.80109 0.0023008964 121.09413 0.14522326 + 315000 -33.79951 -33.801362 0.0018514182 97.438489 0.15116886 + 315100 -33.796608 -33.801669 0.0050612763 266.37046 0.15746952 + 315200 -33.794098 -33.801961 0.0078627136 413.80761 0.060859496 + 315300 -33.796323 -33.802011 0.0056880888 299.35904 -0.17713055 + 315400 -33.797994 -33.8019 0.0039059468 205.56649 -0.40536003 + 315500 -33.79679 -33.80172 0.0049303492 259.47988 -0.58938909 + 315600 -33.78978 -33.801342 0.0115623 608.51356 -0.77644626 + 315700 -33.795261 -33.800814 0.00555211 292.2026 -1.2119101 + 315800 -33.796974 -33.800482 0.0035075798 184.6008 -1.4421696 + 315900 -33.795559 -33.800335 0.0047764369 251.37961 -1.5435518 + 316000 -33.793069 -33.800363 0.0072947933 383.91846 -1.5687016 + 316100 -33.793804 -33.800532 0.0067274685 354.06067 -1.5719655 + 316200 -33.794959 -33.800779 0.0058195522 306.27784 -1.4933315 + 316300 -33.795714 -33.801055 0.0053408903 281.0863 -1.3257245 + 316400 -33.796161 -33.801305 0.0051446491 270.75829 -1.0787122 + 316500 -33.796416 -33.801477 0.0050607015 266.34021 -0.76837125 + 316600 -33.795689 -33.801525 0.0058361414 307.15091 -0.37883924 + 316700 -33.794513 -33.801386 0.0068726058 361.69911 0.093426748 + 316800 -33.795347 -33.801026 0.0056788355 298.87205 0.54889984 + 316900 -33.797076 -33.80059 0.0035136335 184.9194 0.91426281 + 317000 -33.796528 -33.800187 0.0036592736 192.58431 1.2624642 + 317100 -33.791187 -33.799668 0.008481092 446.35231 1.7885709 + 317200 -33.791907 -33.799016 0.0071083298 374.10506 2.2367237 + 317300 -33.794493 -33.798575 0.0040823763 214.85182 2.4907819 + 317400 -33.79414 -33.798422 0.0042827642 225.39806 2.6674787 + 317500 -33.783737 -33.798531 0.014794124 778.60157 2.9713132 + 317600 -33.790994 -33.798724 0.0077301807 406.83251 2.8401853 + 317700 -33.794088 -33.798927 0.0048382392 254.63222 2.6928594 + 317800 -33.794345 -33.799199 0.0048540468 255.46415 2.5180515 + 317900 -33.792806 -33.799513 0.0067070424 352.98566 2.2781284 + 318000 -33.791368 -33.799747 0.0083792799 440.99403 1.9190624 + 318100 -33.795677 -33.799759 0.0040817252 214.81756 1.4517339 + 318200 -33.796985 -33.799679 0.0026939733 141.78141 1.1435945 + 318300 -33.794377 -33.799547 0.0051699465 272.08967 0.89581651 + 318400 -33.791069 -33.799179 0.0081096177 426.80195 0.54369398 + 318500 -33.792997 -33.798597 0.0056003359 294.74068 0.13002329 + 318600 -33.793875 -33.798036 0.0041612414 219.00242 -0.14064983 + 318700 -33.791389 -33.79754 0.0061507334 323.70761 -0.24916342 + 318800 -33.785246 -33.796916 0.011670208 614.19261 -0.22125094 + 318900 -33.790865 -33.7964 0.0055347167 291.2872 -0.31135052 + 319000 -33.791528 -33.796271 0.0047429721 249.61839 -0.19011814 + 319100 -33.790355 -33.796497 0.0061420219 323.24913 0.092517538 + 319200 -33.789592 -33.797019 0.0074263427 390.84179 0.49034374 + 319300 -33.793563 -33.797605 0.0040414421 212.69749 0.79935149 + 319400 -33.795084 -33.798125 0.0030414637 160.06952 1.0559268 + 319500 -33.792976 -33.798769 0.0057930065 304.88076 1.397978 + 319600 -33.788468 -33.799537 0.011069187 582.56146 1.8763258 + 319700 -33.796554 -33.799955 0.0034007093 178.97629 2.0230809 + 319800 -33.797142 -33.800116 0.0029739125 156.51436 2.1428166 + 319900 -33.794129 -33.800225 0.0060954214 320.79659 2.276202 + 320000 -33.791742 -33.800142 0.0084006203 442.11715 2.3353412 + 320100 -33.795159 -33.799822 0.0046624749 245.38189 2.2037923 + 320200 -33.797203 -33.799518 0.0023156763 121.87198 2.049646 + 320300 -33.796104 -33.799307 0.0032021366 168.52559 1.8966483 + 320400 -33.790721 -33.799041 0.008320233 437.88644 1.62618 + 320500 -33.791988 -33.798702 0.0067140479 353.35435 1.1069764 + 320600 -33.794821 -33.798498 0.0036771299 193.52407 0.64544422 + 320700 -33.794642 -33.798515 0.0038729746 203.8312 0.31162765 + 320800 -33.788134 -33.798784 0.010650011 560.50057 0.02532847 + 320900 -33.79086 -33.79917 0.0083100477 437.3504 -0.51236387 + 321000 -33.794113 -33.799469 0.0053565778 281.91191 -0.88025941 + 321100 -33.794224 -33.799789 0.005564841 292.87262 -1.0877233 + 321200 -33.794135 -33.80011 0.005975635 314.49234 -1.2188019 + 321300 -33.795127 -33.800369 0.0052421048 275.8873 -1.3004738 + 321400 -33.796918 -33.800535 0.0036167992 190.34891 -1.3285554 + 321500 -33.796839 -33.800653 0.0038135497 200.70372 -1.2606751 + 321600 -33.792118 -33.800737 0.0086192561 453.62376 -1.0207052 + 321700 -33.79255 -33.800645 0.0080952489 426.04573 -0.7996007 + 321800 -33.796818 -33.800452 0.0036340134 191.25488 -0.69134398 + 321900 -33.796754 -33.800312 0.0035575862 187.23259 -0.52004979 + 322000 -33.795313 -33.800223 0.004910575 258.43918 -0.29608144 + 322100 -33.793355 -33.80018 0.0068244522 359.16483 -0.035099558 + 322200 -33.793521 -33.800167 0.0066457764 349.76128 0.17582516 + 322300 -33.797206 -33.800198 0.0029919607 157.46422 0.24413777 + 322400 -33.798329 -33.800314 0.0019856213 104.50148 0.26705705 + 322500 -33.795537 -33.800573 0.0050360042 265.04041 0.29954674 + 322600 -33.79288 -33.800917 0.0080371155 422.98622 0.2419794 + 322700 -33.795233 -33.801064 0.0058312472 306.89334 0.025980183 + 322800 -33.796934 -33.801023 0.0040883143 215.16433 -0.20043357 + 322900 -33.796202 -33.800851 0.0046486997 244.65692 -0.41687508 + 323000 -33.788747 -33.80037 0.011622817 611.69847 -0.65188127 + 323100 -33.793045 -33.799437 0.0063925008 336.43161 -1.2098697 + 323200 -33.795194 -33.798616 0.0034222901 180.11207 -1.5942942 + 323300 -33.794115 -33.797834 0.0037190886 195.73232 -1.8924653 + 323400 -33.791709 -33.79695 0.0052406951 275.81311 -2.2089701 + 323500 -33.790223 -33.796022 0.0057995221 305.22368 -2.5635862 + 323600 -33.789573 -33.795248 0.0056749297 298.66649 -2.8841921 + 323700 -33.788704 -33.794743 0.0060394471 317.85072 -3.1122147 + 323800 -33.785008 -33.794514 0.0095060541 500.29515 -3.1965495 + 323900 -33.787031 -33.794483 0.0074520579 392.19516 -3.2977424 + 324000 -33.790913 -33.794621 0.0037085865 195.1796 -3.3229992 + 324100 -33.790544 -33.79494 0.0043957624 231.34506 -3.1674857 + 324200 -33.786621 -33.795428 0.0088062967 463.46754 -2.8037837 + 324300 -33.787647 -33.795845 0.0081981229 431.4599 -2.4017574 + 324400 -33.793074 -33.795973 0.0028986211 152.55184 -2.2004917 + 324500 -33.7923 -33.796051 0.0037509277 197.40798 -1.8986314 + 324600 -33.788719 -33.79607 0.0073506972 386.86063 -1.4293795 + 324700 -33.788702 -33.795869 0.0071672182 377.2043 -0.95429443 + 324800 -33.791428 -33.795544 0.0041163993 216.64242 -0.6216382 + 324900 -33.793235 -33.795314 0.002078863 109.4087 -0.39514416 + 325000 -33.793819 -33.795292 0.0014731726 77.531761 -0.25845413 + 325100 -33.791086 -33.795549 0.0044631243 234.89025 -0.098726792 + 325200 -33.787664 -33.796157 0.0084938148 447.0219 0.049868164 + 325300 -33.79058 -33.796845 0.0062653257 329.7385 0.0044554272 + 325400 -33.793453 -33.797415 0.0039626991 208.55332 -0.10441423 + 325500 -33.793236 -33.797988 0.004752329 250.11084 -0.21217046 + 325600 -33.787158 -33.798687 0.011529222 606.77265 -0.30022512 + 325700 -33.789964 -33.799368 0.0094037108 494.90891 -0.69174709 + 325800 -33.795202 -33.799608 0.0044063637 231.90299 -1.0346432 + 325900 -33.794969 -33.799713 0.0047435954 249.6512 -1.2492463 + 326000 -33.792524 -33.799705 0.0071808701 377.92279 -1.4497894 + 326100 -33.791632 -33.799502 0.0078697475 414.17779 -1.7132639 + 326200 -33.795985 -33.799198 0.0032127678 169.0851 -2.0048948 + 326300 -33.796916 -33.799001 0.0020849442 109.72875 -2.1150686 + 326400 -33.79397 -33.798872 0.004902182 257.99746 -2.0838636 + 326500 -33.79204 -33.798762 0.0067226374 353.80641 -1.9976642 + 326600 -33.792995 -33.798709 0.005713247 300.68309 -1.8914029 + 326700 -33.794165 -33.798752 0.0045873202 241.42657 -1.7282194 + 326800 -33.793942 -33.798911 0.0049690495 261.51664 -1.474376 + 326900 -33.79024 -33.799199 0.0089587051 471.48866 -1.0382513 + 327000 -33.791968 -33.799521 0.0075526115 397.48721 -0.60333125 + 327100 -33.796307 -33.799727 0.0034203243 180.00861 -0.34141773 + 327200 -33.795836 -33.799929 0.0040938138 215.45377 -0.040697037 + 327300 -33.793297 -33.800166 0.0068694552 361.5333 0.34689567 + 327400 -33.793184 -33.80034 0.0071564371 376.6369 0.70830881 + 327500 -33.794865 -33.800392 0.0055269543 290.87867 0.9568369 + 327600 -33.794945 -33.800372 0.0054266152 285.59792 1.1607966 + 327700 -33.794534 -33.800302 0.0057673641 303.53123 1.3111047 + 327800 -33.793996 -33.800191 0.0061946746 326.0202 1.396602 + 327900 -33.794099 -33.800052 0.005953427 313.32355 1.4010127 + 328000 -33.79521 -33.799923 0.0047126492 248.02252 1.3210238 + 328100 -33.795469 -33.79984 0.0043712626 230.05565 1.2049665 + 328200 -33.792722 -33.799792 0.0070698145 372.07803 1.0833644 + 328300 -33.790442 -33.799697 0.0092552635 487.09627 0.8601184 + 328400 -33.795875 -33.799551 0.003675553 193.44108 0.51091221 + 328500 -33.796642 -33.799466 0.0028235561 148.60124 0.33481399 + 328600 -33.794815 -33.799409 0.0045944063 241.79951 0.2118642 + 328700 -33.793148 -33.799305 0.0061562642 323.99869 0.078962428 + 328800 -33.793061 -33.799094 0.0060324087 317.48029 -0.053798186 + 328900 -33.793721 -33.798789 0.0050681866 266.73414 -0.14500465 + 329000 -33.794014 -33.798437 0.0044228162 232.76887 -0.16085426 + 329100 -33.791699 -33.798012 0.0063127462 332.2342 -0.048655979 + 329200 -33.788964 -33.797379 0.0084157389 442.91283 0.17009987 + 329300 -33.791871 -33.796674 0.0048027928 252.7667 0.33800438 + 329400 -33.793816 -33.796213 0.0023971723 126.16104 0.51748842 + 329500 -33.791804 -33.795967 0.0041630855 219.09948 0.82322464 + 329600 -33.786741 -33.795747 0.0090064047 473.99904 1.4220086 + 329700 -33.789804 -33.795553 0.005749327 302.58195 1.8782038 + 329800 -33.791729 -33.795498 0.0037693003 198.37491 2.2132649 + 329900 -33.790606 -33.795606 0.0050004622 263.16986 2.5331628 + 330000 -33.782661 -33.795856 0.01319497 694.43952 3.0182694 + 330100 -33.789768 -33.795983 0.0062151862 327.0997 3.145027 + 330200 -33.791457 -33.796039 0.0045816755 241.1295 3.1968285 + 330300 -33.790543 -33.796121 0.0055781964 293.5755 3.1777053 + 330400 -33.788693 -33.796183 0.0074899774 394.19083 3.0491983 + 330500 -33.790002 -33.796143 0.0061411269 323.20203 2.7448392 + 330600 -33.793364 -33.796067 0.0027038948 142.30357 2.3941642 + 330700 -33.793311 -33.796074 0.0027625672 145.39145 2.1098956 + 330800 -33.788335 -33.796166 0.0078312824 412.15341 1.7451567 + 330900 -33.788796 -33.796193 0.0073971699 389.30646 1.1107131 + 331000 -33.791453 -33.796148 0.0046953225 247.11064 0.54392732 + 331100 -33.791957 -33.796158 0.0042009936 221.09454 0.14396919 + 331200 -33.787379 -33.796272 0.0088932991 468.0464 -0.1243175 + 331300 -33.785676 -33.796401 0.010725031 564.44882 -0.50015174 + 331400 -33.791794 -33.796456 0.004662238 245.36943 -0.83517669 + 331500 -33.791674 -33.796592 0.0049181198 258.83626 -0.89442234 + 331600 -33.789986 -33.796826 0.0068403361 360.00079 -0.80709464 + 331700 -33.789813 -33.797084 0.0072711272 382.67294 -0.64406872 + 331800 -33.793926 -33.797267 0.0033411764 175.84313 -0.52891391 + 331900 -33.794555 -33.797444 0.0028889203 152.0413 -0.34415656 + 332000 -33.790876 -33.797712 0.006836869 359.81831 0.013075978 + 332100 -33.788851 -33.798014 0.0091638107 482.28318 0.48040978 + 332200 -33.792043 -33.798174 0.0061300741 322.62033 0.79071527 + 332300 -33.793386 -33.798284 0.0048984563 257.80138 1.0427113 + 332400 -33.793212 -33.79843 0.005217566 274.59585 1.255903 + 332500 -33.789713 -33.79866 0.0089472041 470.88337 1.4838506 + 332600 -33.789801 -33.798953 0.0091518454 481.65346 1.5859563 + 332700 -33.795617 -33.799178 0.0035610207 187.41334 1.4705946 + 332800 -33.795437 -33.799453 0.0040162184 211.36999 1.375616 + 332900 -33.792496 -33.799861 0.007364634 387.59412 1.2056937 + 333000 -33.792412 -33.800303 0.0078906704 415.27895 0.84387443 + 333100 -33.798181 -33.800554 0.0023728206 124.87943 0.41364697 + 333200 -33.797974 -33.800726 0.0027513459 144.80088 0.15063337 + 333300 -33.794975 -33.800916 0.0059407703 312.65744 -0.17904075 + 333400 -33.793254 -33.801013 0.0077588703 408.34242 -0.67996175 + 333500 -33.795744 -33.800927 0.0051831308 272.78355 -1.2332876 + 333600 -33.797897 -33.800771 0.0028740054 151.25634 -1.6396999 + 333700 -33.79921 -33.800658 0.0014478116 76.197032 -1.8904434 + 333800 -33.798516 -33.800622 0.0021063065 110.85303 -2.0068382 + 333900 -33.794578 -33.80065 0.0060720043 319.56417 -2.0413983 + 334000 -33.793038 -33.800694 0.0076561174 402.93463 -2.0828494 + 334100 -33.795659 -33.800724 0.0050647361 266.55254 -2.1335015 + 334200 -33.797518 -33.800769 0.0032506072 171.07656 -2.1071006 + 334300 -33.796325 -33.800861 0.0045356045 238.70482 -1.9579915 + 334400 -33.789479 -33.801003 0.011524035 606.49967 -1.5575309 + 334500 -33.794923 -33.801042 0.0061196254 322.07043 -1.3570055 + 334600 -33.796845 -33.801014 0.0041687826 219.39931 -1.1574414 + 334700 -33.795942 -33.800956 0.0050148595 263.92758 -0.9042497 + 334800 -33.793246 -33.800828 0.0075828742 399.0799 -0.58337394 + 334900 -33.791516 -33.800557 0.0090408917 475.81407 -0.25607369 + 335000 -33.796335 -33.800219 0.003884092 204.4163 -0.13172455 + 335100 -33.797389 -33.799979 0.0025895106 136.28363 -0.04858819 + 335200 -33.794626 -33.799756 0.0051294276 269.9572 0.052634123 + 335300 -33.791482 -33.79943 0.0079475136 418.27055 0.1062198 + 335400 -33.793314 -33.799057 0.00574282 302.23949 -0.0014765392 + 335500 -33.794737 -33.798745 0.0040077503 210.92433 -0.14468006 + 335600 -33.793179 -33.798484 0.0053049168 279.19304 -0.28212159 + 335700 -33.786573 -33.798094 0.011521588 606.3709 -0.46368731 + 335800 -33.79234 -33.797614 0.0052743618 277.58496 -0.91056172 + 335900 -33.793839 -33.797279 0.0034392409 181.00418 -1.1831342 + 336000 -33.792039 -33.796994 0.0049550798 260.78143 -1.3900083 + 336100 -33.788459 -33.796634 0.008175224 430.25475 -1.618586 + 336200 -33.789696 -33.796198 0.0065017021 342.17878 -1.9331071 + 336300 -33.790525 -33.795803 0.0052780669 277.77995 -2.1517118 + 336400 -33.790212 -33.795463 0.0052519521 276.40555 -2.266827 + 336500 -33.788754 -33.795171 0.0064169943 337.72069 -2.2772385 + 336600 -33.786788 -33.794903 0.0081147433 427.0717 -2.1776588 + 336700 -33.789341 -33.794688 0.0053471105 281.41366 -2.0710967 + 336800 -33.791867 -33.794646 0.002779067 146.25982 -1.9248289 + 336900 -33.790754 -33.7948 0.0040467142 212.97496 -1.6284132 + 337000 -33.78503 -33.795193 0.010162707 534.85419 -1.0073461 + 337100 -33.788256 -33.795584 0.0073273972 385.63438 -0.4591834 + 337200 -33.790579 -33.795851 0.0052719794 277.45957 1.8167424e-07 + 337300 -33.790984 -33.796081 0.0050969322 268.247 0.43742454 + 337400 -33.790073 -33.796296 0.006222349 327.47668 0.87924918 + 337500 -33.787098 -33.796476 0.00937796 493.55367 1.3768794 + 337600 -33.790712 -33.796549 0.0058367865 307.18487 1.6851785 + 337700 -33.793421 -33.796588 0.0031676639 166.71132 1.822278 + 337800 -33.792307 -33.796708 0.0044012547 231.63411 1.9215514 + 337900 -33.787115 -33.796955 0.0098394061 517.83917 2.0087076 + 338000 -33.790109 -33.797211 0.0071016075 373.75127 1.8405566 + 338100 -33.792099 -33.797424 0.0053248271 280.2409 1.6407691 + 338200 -33.792013 -33.797676 0.0056633047 298.05467 1.418237 + 338300 -33.791825 -33.797967 0.0061425526 323.27706 1.1397252 + 338400 -33.792693 -33.79826 0.0055668249 292.97703 0.81102644 + 338500 -33.79457 -33.798517 0.0039466949 207.71103 0.489678 + 338600 -33.795094 -33.798756 0.0036614927 192.70109 0.24399487 + 338700 -33.791495 -33.799043 0.0075479137 397.23997 0.068216273 + 338800 -33.789728 -33.799328 0.0095994177 505.20879 -0.19786298 + 338900 -33.795442 -33.799449 0.0040070861 210.88937 -0.50816871 + 339000 -33.795676 -33.799536 0.0038601258 203.15498 -0.60326662 + 339100 -33.794024 -33.799654 0.0056295733 296.27942 -0.59369413 + 339200 -33.792539 -33.799788 0.0072483287 381.47308 -0.5135856 + 339300 -33.794706 -33.799897 0.005190809 273.18765 -0.44269809 + 339400 -33.798105 -33.799993 0.0018878944 99.358201 -0.38504005 + 339500 -33.797583 -33.800154 0.002571048 135.31196 -0.22280828 + 339600 -33.794465 -33.800449 0.0059844319 314.95531 0.10343811 + 339700 -33.793876 -33.800771 0.0068952204 362.8893 0.46835569 + 339800 -33.795632 -33.800987 0.0053555442 281.85752 0.76862757 + 339900 -33.797331 -33.801101 0.0037707776 198.45266 0.99787497 + 340000 -33.79775 -33.801166 0.0034162042 179.79178 1.1865174 + 340100 -33.79391 -33.801205 0.0072948299 383.92039 1.4400884 + 340200 -33.792082 -33.801136 0.0090540088 476.50441 1.658125 + 340300 -33.79682 -33.800979 0.0041593285 218.90175 1.6617497 + 340400 -33.797395 -33.800866 0.003470447 182.64653 1.6567788 + 340500 -33.795619 -33.800795 0.0051759746 272.40693 1.6194155 + 340600 -33.79459 -33.800761 0.0061705855 324.75241 1.4831077 + 340700 -33.794836 -33.800766 0.005930078 312.09472 1.2582246 + 340800 -33.795566 -33.800817 0.0052515313 276.38341 0.9894322 + 340900 -33.796538 -33.800915 0.0043765351 230.33314 0.70597703 + 341000 -33.796758 -33.801052 0.0042942522 226.00266 0.44070313 + 341100 -33.794156 -33.801235 0.0070788593 372.55405 0.19735327 + 341200 -33.792719 -33.801409 0.0086899699 457.34537 -0.1312652 + 341300 -33.797684 -33.801479 0.0037951402 199.73484 -0.50742957 + 341400 -33.798523 -33.801515 0.002991556 157.44292 -0.6825212 + 341500 -33.796436 -33.801557 0.0051205548 269.49023 -0.76054333 + 341600 -33.795039 -33.801564 0.0065244376 343.37533 -0.8230759 + 341700 -33.795698 -33.801502 0.0058042251 305.47119 -0.86939919 + 341800 -33.79646 -33.801395 0.0049353208 259.74153 -0.85903058 + 341900 -33.795971 -33.801269 0.0052986356 278.86247 -0.76620461 + 342000 -33.79183 -33.801085 0.0092550083 487.08283 -0.52354431 + 342100 -33.793799 -33.800786 0.0069875354 367.74776 -0.33795544 + 342200 -33.797515 -33.800545 0.0030302838 159.48113 -0.23067411 + 342300 -33.796913 -33.800382 0.0034687779 182.55868 -0.051277427 + 342400 -33.793849 -33.800206 0.0063574214 334.58542 0.22715845 + 342500 -33.793533 -33.799963 0.0064305677 338.43504 0.47670877 + 342600 -33.794416 -33.799683 0.0052672457 277.21045 0.65754088 + 342700 -33.794619 -33.799398 0.0047788928 251.50886 0.78897929 + 342800 -33.791771 -33.799076 0.0073049117 384.45099 0.92689552 + 342900 -33.788505 -33.798575 0.010069552 529.95153 1.0167507 + 343000 -33.794226 -33.798085 0.0038589251 203.09179 0.85969296 + 343100 -33.794825 -33.797793 0.0029682008 156.21376 0.74760917 + 343200 -33.792834 -33.797581 0.0047471941 249.84059 0.59007442 + 343300 -33.791136 -33.7974 0.0062633281 329.63337 0.30386397 + 343400 -33.791227 -33.797248 0.0060212068 316.89075 -0.08438893 + 343500 -33.791948 -33.797141 0.0051935461 273.3317 -0.4965434 + 343600 -33.792643 -33.797095 0.0044520195 234.30582 -0.8854 + 343700 -33.791992 -33.797117 0.0051251996 269.73469 -1.2210851 + 343800 -33.789176 -33.797198 0.008021444 422.16145 -1.5387755 + 343900 -33.790504 -33.797276 0.0067714785 356.37687 -1.9178579 + 344000 -33.794106 -33.797356 0.0032504195 171.06668 -2.1890904 + 344100 -33.794166 -33.797519 0.0033533289 176.48271 -2.2587821 + 344200 -33.78698 -33.797855 0.01087532 572.3584 -2.0798388 + 344300 -33.789323 -33.798226 0.0089022637 468.5182 -1.9793545 + 344400 -33.793161 -33.798426 0.0052652564 277.10575 -1.8716163 + 344500 -33.794083 -33.79857 0.0044868474 236.13877 -1.6679878 + 344600 -33.792785 -33.798696 0.0059113658 311.10991 -1.3576213 + 344700 -33.787973 -33.798764 0.010790865 567.91361 -0.8525079 + 344800 -33.793162 -33.798662 0.0055004964 289.48622 -0.50823641 + 344900 -33.795596 -33.79855 0.0029541505 155.47431 -0.28267937 + 345000 -33.794044 -33.798475 0.0044306598 233.18167 -0.0087146592 + 345100 -33.790908 -33.798398 0.0074897769 394.18028 0.33145076 + 345200 -33.791662 -33.7983 0.0066378066 349.34184 0.56351875 + 345300 -33.792955 -33.798235 0.0052797899 277.87063 0.6907544 + 345400 -33.792901 -33.798242 0.0053407767 281.08032 0.75608444 + 345500 -33.792465 -33.798329 0.0058636042 308.59626 0.7423123 + 345600 -33.792416 -33.798484 0.0060689099 319.40132 0.6380565 + 345700 -33.794084 -33.798677 0.0045933124 241.74193 0.43304768 + 345800 -33.796252 -33.798869 0.0026169963 137.73018 0.20494076 + 345900 -33.795261 -33.799108 0.0038470006 202.46421 0.0066106375 + 346000 -33.790457 -33.799459 0.0090018988 473.76191 -0.25847125 + 346100 -33.79273 -33.799737 0.0070069751 368.77085 -0.73422739 + 346200 -33.79548 -33.799863 0.0043829302 230.66971 -1.1137149 + 346300 -33.795248 -33.79995 0.0047013114 247.42582 -1.3719473 + 346400 -33.7943 -33.800032 0.0057327325 301.7086 -1.5851131 + 346500 -33.793865 -33.800116 0.0062510958 328.9896 -1.7573486 + 346600 -33.794651 -33.800214 0.00556297 292.77415 -1.8756435 + 346700 -33.797522 -33.800342 0.0028197051 148.39856 -1.9401637 + 346800 -33.798147 -33.800526 0.0023786425 125.18583 -1.8778726 + 346900 -33.794572 -33.80086 0.0062887234 330.9699 -1.6159199 + 347000 -33.792506 -33.801338 0.0088326847 464.85632 -1.2171581 + 347100 -33.796145 -33.801683 0.0055376998 291.4442 -0.92482612 + 347200 -33.79727 -33.801893 0.0046236243 243.33722 -0.62868171 + 347300 -33.796597 -33.802032 0.0054355043 286.06574 -0.28722348 + 347400 -33.795886 -33.802084 0.0061974473 326.16612 0.073927634 + 347500 -33.796113 -33.802026 0.0059129057 311.19095 0.39729919 + 347600 -33.796368 -33.801879 0.0055108397 290.03058 0.67388959 + 347700 -33.796238 -33.801674 0.0054358931 286.08621 0.90142009 + 347800 -33.794891 -33.801424 0.00653311 343.83175 1.0997898 + 347900 -33.79195 -33.801098 0.0091484184 481.4731 1.2870739 + 348000 -33.795522 -33.800747 0.0052250938 274.99203 1.2765687 + 348100 -33.797777 -33.800543 0.0027661231 145.57859 1.2146012 + 348200 -33.796154 -33.800447 0.0042928959 225.93128 1.1597042 + 348300 -33.791251 -33.800369 0.0091179024 479.86707 1.0488985 + 348400 -33.793527 -33.800235 0.0067085574 353.06539 0.73856682 + 348500 -33.795439 -33.80008 0.0046404041 244.22033 0.4588259 + 348600 -33.795317 -33.799915 0.0045983285 242.00593 0.23396252 + 348700 -33.790011 -33.799666 0.0096546915 508.1178 0.075952895 + 348800 -33.78983 -33.799135 0.0093047829 489.70243 -0.25389473 + 348900 -33.795102 -33.798656 0.0035535836 187.02194 -0.55208685 + 349000 -33.794466 -33.79828 0.0038141641 200.73605 -0.63338251 + 349100 -33.791546 -33.797887 0.0063416905 333.75751 -0.6012546 + 349200 -33.789987 -33.797445 0.0074580153 392.50869 -0.50870206 + 349300 -33.792422 -33.797081 0.0046590693 245.20266 -0.41549524 + 349400 -33.79546 -33.796945 0.0014846465 78.135619 -0.31598946 + 349500 -33.795356 -33.797039 0.0016830798 88.578991 -0.13008901 + 349600 -33.792845 -33.797382 0.004537386 238.79858 0.25337278 + 349700 -33.791177 -33.797869 0.0066920534 352.1968 0.76805157 + 349800 -33.791745 -33.798275 0.0065302607 343.6818 1.2789468 + 349900 -33.794367 -33.798494 0.0041269489 217.19764 1.6567097 + 350000 -33.795527 -33.798603 0.0030763108 161.90349 1.933583 + 350100 -33.792596 -33.798681 0.0060850557 320.25105 2.2444665 + 350200 -33.788341 -33.798645 0.010303898 542.28498 2.6287499 + 350300 -33.793407 -33.798437 0.0050300393 264.72648 2.7233015 + 350400 -33.794324 -33.798258 0.0039338282 207.03387 2.7681135 + 350500 -33.792869 -33.798133 0.0052639543 277.03722 2.7591891 + 350600 -33.791217 -33.798045 0.0068282552 359.36498 2.6453008 + 350700 -33.791689 -33.797984 0.0062953356 331.3179 2.4024712 + 350800 -33.792205 -33.797968 0.0057622043 303.25967 2.103397 + 350900 -33.792463 -33.797996 0.005532126 291.15086 1.7709792 + 351000 -33.79253 -33.798055 0.0055248014 290.76537 1.4198269 + 351100 -33.792473 -33.798128 0.0056551606 297.62606 1.0621524 + 351200 -33.792395 -33.798194 0.0057982314 305.15575 0.71540479 + 351300 -33.79259 -33.798239 0.0056482381 297.26173 0.39568442 + 351400 -33.792979 -33.798268 0.0052894235 278.37764 0.12778142 + 351500 -33.792912 -33.798302 0.0053904807 283.69619 -0.061379027 + 351600 -33.791739 -33.798358 0.0066189307 348.34842 -0.16313674 + 351700 -33.791286 -33.798431 0.0071451368 376.04218 -0.20940621 + 351800 -33.794137 -33.798524 0.0043873181 230.90064 -0.23931834 + 351900 -33.795676 -33.798686 0.0030100933 158.41853 -0.17849704 + 352000 -33.793416 -33.79899 0.0055735401 293.33045 0.03897534 + 352100 -33.78827 -33.799516 0.011245727 591.85259 0.482795 + 352200 -33.79391 -33.799936 0.0060257785 317.13135 0.718056 + 352300 -33.795257 -33.800235 0.0049772847 261.95005 0.96566176 + 352400 -33.794895 -33.800512 0.0056171662 295.62645 1.2296154 + 352500 -33.793859 -33.800763 0.0069044443 363.37475 1.4921237 + 352600 -33.794277 -33.800937 0.0066601536 350.51794 1.6905654 + 352700 -33.797142 -33.801013 0.0038718576 203.77241 1.7527668 + 352800 -33.797647 -33.80106 0.0034131312 179.63005 1.7698843 + 352900 -33.793754 -33.801104 0.0073496323 386.80459 1.7902561 + 353000 -33.791761 -33.801048 0.0092864392 488.73701 1.6624234 + 353100 -33.796153 -33.800877 0.0047240209 248.62101 1.3722302 + 353200 -33.796364 -33.800698 0.0043337413 228.08094 1.1434653 + 353300 -33.795005 -33.800488 0.0054830224 288.56658 0.87523986 + 353400 -33.793124 -33.800205 0.0070816937 372.70322 0.52958115 + 353500 -33.793518 -33.799842 0.0063238273 332.81739 0.095745465 + 353600 -33.796714 -33.799536 0.0028226065 148.55126 -0.30485037 + 353700 -33.796862 -33.799372 0.0025096248 132.07932 -0.54193456 + 353800 -33.792673 -33.799266 0.0065934434 347.00704 -0.71915466 + 353900 -33.791409 -33.799129 0.0077201882 406.30662 -1.0000334 + 354000 -33.793893 -33.79898 0.005087802 267.76648 -1.2680683 + 354100 -33.794878 -33.798881 0.0040032386 210.68688 -1.402109 + 354200 -33.791681 -33.798828 0.0071470177 376.14116 -1.3782879 + 354300 -33.787164 -33.798701 0.011536431 607.15208 -1.2575303 + 354400 -33.793871 -33.798506 0.0046352639 243.94981 -1.3112984 + 354500 -33.794393 -33.798375 0.003982502 209.59553 -1.2091129 + 354600 -33.792263 -33.798275 0.0060121254 316.4128 -0.98766003 + 354700 -33.789335 -33.798126 0.0087904572 462.63392 -0.66168398 + 354800 -33.793934 -33.797902 0.0039686805 208.86811 -0.47855572 + 354900 -33.795853 -33.797786 0.00193329 101.74733 -0.35144675 + 355000 -33.794026 -33.797752 0.0037265843 196.12681 -0.15767775 + 355100 -33.790827 -33.797712 0.0068844946 362.32481 0.11055024 + 355200 -33.791067 -33.797559 0.006492013 341.66885 0.29914095 + 355300 -33.792924 -33.797323 0.0043984459 231.48629 0.38333318 + 355400 -33.794113 -33.797099 0.0029853356 157.11555 0.40430232 + 355500 -33.792752 -33.796908 0.0041558699 218.71973 0.40776362 + 355600 -33.787592 -33.796603 0.0090115026 474.26734 0.38832028 + 355700 -33.789692 -33.796113 0.0064216004 337.9631 0.14731839 + 355800 -33.792352 -33.795693 0.0033410259 175.83521 -0.10104488 + 355900 -33.791428 -33.79539 0.0039619422 208.51348 -0.29819131 + 356000 -33.782919 -33.794982 0.012062802 634.85453 -0.51026607 + 356100 -33.787721 -33.794415 0.0066943659 352.31851 -1.0429615 + 356200 -33.790087 -33.794029 0.0039423188 207.48072 -1.3971666 + 356300 -33.789293 -33.793844 0.0045505756 239.49274 -1.6209631 + 356400 -33.784068 -33.793812 0.0097433633 512.78452 -1.7620721 + 356500 -33.786756 -33.793861 0.0071054742 373.95477 -2.0364288 + 356600 -33.791142 -33.79402 0.0028782339 151.47888 -2.190396 + 356700 -33.789954 -33.794435 0.0044806845 235.81443 -2.1209857 + 356800 -33.786844 -33.795195 0.0083514626 439.53003 -1.8861087 + 356900 -33.789403 -33.796073 0.0066702115 351.04728 -1.6639191 + 357000 -33.793328 -33.796722 0.003393578 178.60099 -1.4939676 + 357100 -33.793002 -33.797341 0.0043395466 228.38647 -1.2228223 + 357200 -33.791748 -33.798053 0.0063044163 331.79581 -0.85460194 + 357300 -33.792068 -33.798723 0.0066552782 350.26136 -0.47638042 + 357400 -33.794586 -33.799208 0.0046218031 243.24137 -0.18205979 + 357500 -33.797585 -33.799497 0.0019120947 100.63184 -0.012475473 + 357600 -33.797937 -33.799711 0.0017740311 93.365672 0.1127287 + 357700 -33.793458 -33.800023 0.0065658065 345.55254 0.33775091 + 357800 -33.792899 -33.800356 0.0074571978 392.46567 0.49494364 + 357900 -33.795733 -33.800523 0.004790591 252.12453 0.51843932 + 358000 -33.796872 -33.8006 0.0037279408 196.1982 0.51001173 + 358100 -33.794606 -33.800654 0.0060481147 318.30688 0.50891096 + 358200 -33.789342 -33.800643 0.01130061 594.741 0.48067946 + 358300 -33.795724 -33.800509 0.0047851653 251.83898 0.19519163 + 358400 -33.796589 -33.800399 0.003810151 200.52485 0.03608243 + 358500 -33.794961 -33.800309 0.0053486525 281.49481 -0.10428781 + 358600 -33.792539 -33.800198 0.0076589267 403.08248 -0.27620116 + 358700 -33.794178 -33.800044 0.0058658416 308.71401 -0.53448437 + 358800 -33.797855 -33.799941 0.0020861576 109.79261 -0.7439406 + 358900 -33.797549 -33.79994 0.0023912295 125.84827 -0.8043408 + 359000 -33.794526 -33.80003 0.0055035809 289.64855 -0.77971634 + 359100 -33.793603 -33.800145 0.0065415334 344.27507 -0.75014311 + 359200 -33.794564 -33.800227 0.0056636181 298.07117 -0.70573085 + 359300 -33.796014 -33.800289 0.0042751109 224.99527 -0.62681495 + 359400 -33.796426 -33.800367 0.0039410585 207.4144 -0.48671154 + 359500 -33.793023 -33.800496 0.0074722617 393.25847 -0.19811145 + 359600 -33.7914 -33.800634 0.0092339215 485.97305 0.17072985 + 359700 -33.796744 -33.800708 0.0039638012 208.61132 0.35844619 + 359800 -33.797173 -33.800804 0.0036312176 191.10774 0.57324581 + 359900 -33.795516 -33.800967 0.0054508324 286.87245 0.84777261 + 360000 -33.794481 -33.801157 0.0066761373 351.35915 1.1305661 + 360100 -33.795279 -33.8013 0.0060202525 316.84052 1.3430949 + 360200 -33.79624 -33.80137 0.0051302854 270.00235 1.4908909 + 360300 -33.796549 -33.801375 0.0048254742 253.9604 1.5902499 + 360400 -33.795509 -33.801303 0.0057931447 304.88804 1.6576549 + 360500 -33.79382 -33.801095 0.0072757487 382.91616 1.6823789 + 360600 -33.79502 -33.800734 0.005714691 300.75909 1.5943906 + 360700 -33.796684 -33.800333 0.0036494592 192.06778 1.4613507 + 360800 -33.79573 -33.799923 0.0041928867 220.66789 1.3472495 + 360900 -33.790043 -33.799294 0.009250854 486.8642 1.2305855 + 361000 -33.791786 -33.798441 0.0066557397 350.28564 0.90896878 + 361100 -33.793829 -33.797742 0.0039127936 205.92683 0.64462659 + 361200 -33.793092 -33.797173 0.0040813418 214.79738 0.47334736 + 361300 -33.791739 -33.79664 0.0049010632 257.93859 0.3311994 + 361400 -33.790506 -33.796149 0.0056430352 296.98791 0.22306292 + 361500 -33.789126 -33.79567 0.0065433706 344.37176 0.16689222 + 361600 -33.788691 -33.795169 0.0064770472 340.88122 0.15628184 + 361700 -33.790347 -33.794699 0.0043516253 229.02216 0.16964117 + 361800 -33.791 -33.794349 0.0033485945 176.23354 0.2567129 + 361900 -33.787897 -33.794046 0.0061488841 323.61029 0.50306988 + 362000 -33.784601 -33.793601 0.0090006792 473.69772 0.88773276 + 362100 -33.788229 -33.793125 0.0048959354 257.66871 1.1411827 + 362200 -33.789569 -33.792868 0.0032987205 173.60872 1.3766534 + 362300 -33.784389 -33.792847 0.0084583837 445.15719 1.7629773 + 362400 -33.781912 -33.793003 0.011091235 583.72182 2.2660492 + 362500 -33.788457 -33.793236 0.0047786496 251.49607 2.4338779 + 362600 -33.789541 -33.793672 0.004130737 217.397 2.5669695 + 362700 -33.787872 -33.794419 0.0065472294 344.57485 2.6713581 + 362800 -33.785934 -33.795507 0.0095729497 503.81581 2.6997474 + 362900 -33.792355 -33.796432 0.0040775564 214.59815 2.4861611 + 363000 -33.793311 -33.797101 0.0037903361 199.48201 2.3327181 + 363100 -33.791413 -33.797826 0.0064132795 337.52518 2.1417457 + 363200 -33.790185 -33.798534 0.0083491054 439.40597 1.8168593 + 363300 -33.79592 -33.798926 0.0030054844 158.17596 1.3765582 + 363400 -33.796568 -33.799107 0.0025390064 133.62564 1.1303319 + 363500 -33.793922 -33.799272 0.0053506622 281.60058 0.88964249 + 363600 -33.791799 -33.79937 0.0075712016 398.46559 0.53587929 + 363700 -33.79351 -33.799333 0.0058231676 306.46811 0.12887432 + 363800 -33.794762 -33.799268 0.0045060623 237.15004 -0.17432311 + 363900 -33.793461 -33.799264 0.0058034785 305.4319 -0.35081304 + 364000 -33.78665 -33.79934 0.012690012 667.864 -0.40911415 + 364100 -33.79409 -33.799432 0.0053424198 281.16679 -0.66535215 + 364200 -33.795635 -33.79959 0.0039553307 208.16553 -0.69157918 + 364300 -33.7941 -33.799872 0.005772016 303.77605 -0.56886085 + 364400 -33.790616 -33.800273 0.009656526 508.21435 -0.30054673 + 364500 -33.795799 -33.800602 0.0048024778 252.75012 -0.1572376 + 364600 -33.797926 -33.800786 0.0028594968 150.49276 -0.02174953 + 364700 -33.796105 -33.800978 0.0048731633 256.47024 0.21613127 + 364800 -33.792797 -33.801173 0.0083760394 440.82348 0.55891929 + 364900 -33.794972 -33.801258 0.0062854079 330.79541 0.78669191 + 365000 -33.796683 -33.801267 0.0045839163 241.24742 0.94244354 + 365100 -33.79635 -33.801276 0.0049260259 259.25235 1.0785021 + 365200 -33.795309 -33.801314 0.0060056738 316.07326 1.1735466 + 365300 -33.794471 -33.801388 0.0069166334 364.01625 1.2021216 + 365400 -33.796302 -33.80149 0.0051883926 273.06048 1.1072188 + 365500 -33.79881 -33.801615 0.0028056111 147.65681 0.95092852 + 365600 -33.798294 -33.80179 0.003496232 184.00357 0.80323607 + 365700 -33.792549 -33.802061 0.0095121647 500.61674 0.60881232 + 365800 -33.794731 -33.80224 0.0075094752 395.21698 0.14605035 + 365900 -33.79736 -33.802232 0.0048719528 256.40653 -0.26411395 + 366000 -33.797313 -33.802105 0.0047920454 252.20108 -0.59919937 + 366100 -33.79567 -33.801837 0.0061664835 324.53653 -0.92677416 + 366200 -33.790171 -33.801314 0.011143645 586.48009 -1.2473238 + 366300 -33.791834 -33.800389 0.0085550224 450.2432 -1.7826092 + 366400 -33.796624 -33.799703 0.0030787609 162.03244 -2.1523503 + 366500 -33.795703 -33.799207 0.0035042471 184.4254 -2.2857909 + 366600 -33.791773 -33.798712 0.006939448 365.21696 -2.3004485 + 366700 -33.791129 -33.798256 0.0071273098 375.10395 -2.2955928 + 366800 -33.792881 -33.797996 0.0051144782 269.17043 -2.248298 + 366900 -33.793481 -33.797934 0.0044538642 234.4029 -2.1034075 + 367000 -33.790948 -33.798024 0.0070761832 372.41321 -1.8058818 + 367100 -33.788361 -33.798184 0.009822295 516.93862 -1.3664802 + 367200 -33.793838 -33.798261 0.0044225185 232.7532 -1.1196278 + 367300 -33.794843 -33.798313 0.0034695418 182.59889 -0.871518 + 367400 -33.79232 -33.798374 0.0060541951 318.62689 -0.53822916 + 367500 -33.788347 -33.798367 0.010020528 527.37147 -0.08753136 + 367600 -33.794516 -33.798238 0.0037222959 195.90112 0.097766635 + 367700 -33.795979 -33.798179 0.0021998358 115.7754 0.20512329 + 367800 -33.794279 -33.798219 0.0039400322 207.36038 0.31837823 + 367900 -33.790617 -33.798364 0.0077469354 407.7143 0.42396395 + 368000 -33.791478 -33.798545 0.007067663 371.9648 0.37386553 + 368100 -33.795023 -33.798707 0.0036847607 193.92567 0.22302873 + 368200 -33.795861 -33.798892 0.003031118 159.52504 0.090893157 + 368300 -33.789702 -33.799173 0.0094715887 498.48127 0.0072981976 + 368400 -33.790273 -33.799448 0.0091746288 482.85253 -0.35184517 + 368500 -33.795181 -33.799495 0.0043141753 227.0512 -0.72259849 + 368600 -33.795286 -33.79945 0.0041635495 219.12389 -0.95392715 + 368700 -33.79228 -33.799295 0.0070144909 369.1664 -1.1485965 + 368800 -33.788822 -33.798877 0.01005542 529.20778 -1.4011397 + 368900 -33.795378 -33.798344 0.0029660358 156.09982 -1.7743079 + 369000 -33.795884 -33.798007 0.0021230715 111.73536 -1.8883011 + 369100 -33.793351 -33.797685 0.004333637 228.07545 -1.8890144 + 369200 -33.790663 -33.797303 0.0066400572 349.46029 -1.8254559 + 369300 -33.79062 -33.796951 0.0063315367 333.22313 -1.7402228 + 369400 -33.792194 -33.796732 0.0045376778 238.81393 -1.6298326 + 369500 -33.793814 -33.796695 0.0028806094 151.6039 -1.48536 + 369600 -33.793323 -33.796838 0.003515973 185.04252 -1.2633363 + 369700 -33.788114 -33.797206 0.0090922133 478.51508 -0.80943664 + 369800 -33.790104 -33.797645 0.0075409017 396.87093 -0.39300953 + 369900 -33.79362 -33.797948 0.0043275585 227.75554 -0.1173926 + 370000 -33.793499 -33.798223 0.0047242508 248.63311 0.17249032 + 370100 -33.792451 -33.79852 0.0060692197 319.41762 0.48104525 + 370200 -33.792412 -33.7988 0.0063879322 336.19118 0.7483276 + 370300 -33.793515 -33.799036 0.0055208208 290.55588 0.93517415 + 370400 -33.79594 -33.799247 0.003307163 174.05304 1.0196028 + 370500 -33.797796 -33.799439 0.0016429806 86.468603 1.0210256 + 370600 -33.796222 -33.799735 0.003513442 184.90932 1.0251617 + 370700 -33.792069 -33.800261 0.0081927736 431.17837 0.99555864 + 370800 -33.793888 -33.800797 0.006908737 363.60066 0.78490501 + 370900 -33.796957 -33.801155 0.0041983159 220.95362 0.55840392 + 371000 -33.797123 -33.801415 0.0042924926 225.91006 0.39304207 + 371100 -33.789962 -33.801652 0.011689212 615.19279 0.31941447 + 371200 -33.79158 -33.801736 0.010155731 534.48707 -0.031810734 + 371300 -33.796689 -33.801612 0.0049224088 259.06199 -0.33689648 + 371400 -33.797053 -33.801435 0.0043824145 230.64257 -0.47996401 + 371500 -33.794854 -33.801206 0.006351582 334.2781 -0.52910439 + 371600 -33.791743 -33.800862 0.0091188651 479.91774 -0.52266395 + 371700 -33.796286 -33.800498 0.004212394 221.69454 -0.60628393 + 371800 -33.798216 -33.800324 0.0021083018 110.95805 -0.58085494 + 371900 -33.796748 -33.80028 0.0035319599 185.8839 -0.40883906 + 372000 -33.794506 -33.80033 0.0058242393 306.52452 -0.093168781 + 372100 -33.793882 -33.800417 0.0065356985 343.96798 0.28185871 + 372200 -33.795035 -33.800486 0.0054511076 286.88693 0.63839642 + 372300 -33.797155 -33.800525 0.0033699882 177.35947 0.92210227 + 372400 -33.798123 -33.800565 0.0024423316 128.53774 1.1438944 + 372500 -33.795157 -33.800636 0.0054787844 288.34353 1.4309192 + 372600 -33.7916 -33.800683 0.0090833605 478.04916 1.799805 + 372700 -33.795212 -33.800625 0.0054129128 284.87677 1.9556484 + 372800 -33.796675 -33.800559 0.0038839871 204.41078 2.0314397 + 372900 -33.795083 -33.800526 0.0054438873 286.50693 2.0789553 + 373000 -33.784149 -33.80048 0.016330669 859.46854 2.1981633 + 373100 -33.79366 -33.800312 0.0066510117 350.03681 1.830214 + 373200 -33.795236 -33.800171 0.0049347468 259.71132 1.6071291 + 373300 -33.794898 -33.800054 0.0051568246 271.39908 1.3638302 + 373400 -33.793075 -33.799914 0.0068386042 359.90964 1.0686199 + 373500 -33.792486 -33.799675 0.0071893521 378.36919 0.67179908 + 373600 -33.795535 -33.799374 0.0038384926 202.01644 0.23815735 + 373700 -33.796741 -33.799124 0.0023827692 125.40302 -0.050811215 + 373800 -33.793571 -33.798859 0.0052883672 278.32205 -0.24737548 + 373900 -33.790096 -33.798346 0.0082497543 434.17721 -0.54586381 + 374000 -33.792575 -33.797718 0.0051420574 270.62189 -0.89566296 + 374100 -33.793647 -33.797187 0.0035401073 186.31269 -1.0911446 + 374200 -33.790237 -33.7967 0.0064632208 340.15355 -1.1062941 + 374300 -33.785848 -33.795993 0.010145026 533.92365 -1.0215566 + 374400 -33.790172 -33.795378 0.0052061503 273.99505 -1.024066 + 374500 -33.790815 -33.79502 0.0042049231 221.30135 -0.88166363 + 374600 -33.789129 -33.794831 0.0057022273 300.10314 -0.59356595 + 374700 -33.785785 -33.794724 0.0089385321 470.42697 -0.14587845 + 374800 -33.786732 -33.794581 0.0078495499 413.11481 0.30228469 + 374900 -33.791247 -33.794467 0.0032206293 169.49885 0.54737359 + 375000 -33.791041 -33.79446 0.0034193502 179.95735 0.78862767 + 375100 -33.786875 -33.794533 0.0076584041 403.05498 1.1229227 + 375200 -33.786501 -33.794572 0.0080708444 424.76134 1.3841393 + 375300 -33.790203 -33.79456 0.0043573545 229.32368 1.4435038 + 375400 -33.790595 -33.794628 0.0040328321 212.24436 1.4541806 + 375500 -33.789726 -33.794834 0.005108078 268.83359 1.386563 + 375600 -33.788736 -33.795187 0.0064507887 339.49926 1.2089616 + 375700 -33.78918 -33.795658 0.0064779847 340.93056 0.90665359 + 375800 -33.792388 -33.796147 0.0037591954 197.8431 0.52721226 + 375900 -33.794042 -33.796605 0.0025630259 134.88977 0.2241945 + 376000 -33.791683 -33.797203 0.0055195069 290.48673 -0.038579617 + 376100 -33.786639 -33.798154 0.011514992 606.02375 -0.46224603 + 376200 -33.792491 -33.798874 0.0063832292 335.94366 -1.0556622 + 376300 -33.794349 -33.799329 0.0049803522 262.11149 -1.4324691 + 376400 -33.794445 -33.79968 0.0052346325 275.49404 -1.7063055 + 376500 -33.792969 -33.799965 0.0069962111 368.20435 -1.9036742 + 376600 -33.791304 -33.800156 0.0088516208 465.85291 -2.0626967 + 376700 -33.795869 -33.800196 0.0043272117 227.73729 -2.2591116 + 376800 -33.797155 -33.800198 0.003043289 160.16559 -2.2877312 + 376900 -33.794527 -33.800219 0.005692834 299.60877 -2.1491211 + 377000 -33.790438 -33.800207 0.0097687851 514.12245 -1.8547963 + 377100 -33.793628 -33.800101 0.0064725342 340.6437 -1.6550114 + 377200 -33.794825 -33.799968 0.0051425593 270.64831 -1.4200526 + 377300 -33.794681 -33.799835 0.0051538848 271.24436 -1.1465108 + 377400 -33.792444 -33.799684 0.0072408774 381.08092 -0.7946567 + 377500 -33.789111 -33.799435 0.010323861 543.33557 -0.35233415 + 377600 -33.795074 -33.799149 0.0040750417 214.46581 -0.16400327 + 377700 -33.796065 -33.798985 0.0029205932 153.70822 -0.015920228 + 377800 -33.793672 -33.798889 0.0052166285 274.54651 0.15265423 + 377900 -33.791236 -33.798807 0.0075712134 398.46621 0.29271947 + 378000 -33.792564 -33.798729 0.0061656016 324.49011 0.29521596 + 378100 -33.793596 -33.798691 0.005094661 268.12747 0.23413631 + 378200 -33.793415 -33.79871 0.0052953321 278.68861 0.13492777 + 378300 -33.789282 -33.798782 0.0095003804 499.99654 0.034266995 + 378400 -33.78944 -33.798841 0.0094015534 494.79537 -0.25673827 + 378500 -33.795056 -33.798857 0.0038012447 200.05612 -0.59076589 + 378600 -33.794876 -33.798922 0.004045204 212.89548 -0.77729784 + 378700 -33.791604 -33.799044 0.0074409682 391.61152 -0.93775269 + 378800 -33.790779 -33.799138 0.0083588639 439.91955 -1.1829391 + 378900 -33.796744 -33.799144 0.0024008586 126.35505 -1.4687465 + 379000 -33.796686 -33.799171 0.0024850707 130.78705 -1.5334852 + 379100 -33.79393 -33.799222 0.0052921985 278.52369 -1.4934763 + 379200 -33.791787 -33.799199 0.0074122183 390.09844 -1.4071424 + 379300 -33.79334 -33.799021 0.0056809406 298.98283 -1.3370015 + 379400 -33.79552 -33.798782 0.0032618839 171.67004 -1.2457181 + 379500 -33.796903 -33.798597 0.0016939335 89.150208 -1.1280845 + 379600 -33.795931 -33.79849 0.0025593355 134.69555 -0.92556147 + 379700 -33.791726 -33.798379 0.0066527229 350.12687 -0.49485394 + 379800 -33.790926 -33.798198 0.007272498 382.74508 -0.016976337 + 379900 -33.793409 -33.798004 0.0045949593 241.82861 0.34891069 + 380000 -33.794723 -33.797897 0.0031737499 167.03163 0.62689819 + 380100 -33.792396 -33.797897 0.0055011064 289.51832 0.92746619 + 380200 -33.787072 -33.797954 0.010881595 572.68864 1.3500841 + 380300 -33.792525 -33.797965 0.0054396069 286.28166 1.4729337 + 380400 -33.793791 -33.798 0.0042084931 221.48924 1.53855 + 380500 -33.792635 -33.798091 0.0054559541 287.142 1.5599193 + 380600 -33.790777 -33.798209 0.0074320004 391.13955 1.4975383 + 380700 -33.79238 -33.79828 0.0059003258 310.52888 1.2828738 + 380800 -33.795604 -33.798315 0.0027112328 142.68976 1.0347447 + 380900 -33.794999 -33.798396 0.0033972182 178.79256 0.84083419 + 381000 -33.790502 -33.79854 0.0080372802 422.99489 0.60039028 + 381100 -33.791162 -33.79863 0.0074676465 393.01557 0.16566321 + 381200 -33.794139 -33.798637 0.0044985764 236.75606 -0.23147958 + 381300 -33.794281 -33.798648 0.0043677415 229.87034 -0.48817125 + 381400 -33.793233 -33.798684 0.0054505701 286.85864 -0.68247482 + 381500 -33.792841 -33.798717 0.0058755257 309.22368 -0.83587116 + 381600 -33.792885 -33.798729 0.0058438511 307.55667 -0.91807272 + 381700 -33.793395 -33.798713 0.005318564 279.91128 -0.92417505 + 381800 -33.794075 -33.798675 0.0045996559 242.07579 -0.85095649 + 381900 -33.793371 -33.798621 0.0052506968 276.33949 -0.66616841 + 382000 -33.79039 -33.798507 0.0081163501 427.15627 -0.32604314 + 382100 -33.791452 -33.798258 0.0068057202 358.17899 0.023309105 + 382200 -33.795171 -33.79802 0.0028493837 149.96052 0.25815995 + 382300 -33.795077 -33.79789 0.0028123709 148.01257 0.51874556 + 382400 -33.78974 -33.7978 0.0080605141 424.21767 0.99591673 + 382500 -33.790312 -33.797673 0.0073610677 387.40643 1.4551989 + 382600 -33.792992 -33.797575 0.0045826423 241.18038 1.7561284 + 382700 -33.793542 -33.797581 0.0040387505 212.55584 1.983222 + 382800 -33.789808 -33.797717 0.0079092125 416.2548 2.2341202 + 382900 -33.787254 -33.797953 0.010699411 563.10047 2.4267024 + 383000 -33.79399 -33.798134 0.0041434981 218.06861 2.3257725 + 383100 -33.793914 -33.798356 0.0044422891 233.79371 2.2523508 + 383200 -33.791923 -33.79868 0.0067566388 355.59588 2.1000425 + 383300 -33.791382 -33.799045 0.0076630107 403.29742 1.8008707 + 383400 -33.796026 -33.799307 0.0032801734 172.6326 1.3936244 + 383500 -33.796975 -33.799505 0.0025294286 133.12157 1.1211722 + 383600 -33.794541 -33.799768 0.0052276954 275.12894 0.84564493 + 383700 -33.792715 -33.800068 0.0073526401 386.96289 0.42731767 + 383800 -33.794227 -33.800254 0.0060274873 317.22128 -0.045401188 + 383900 -33.795681 -33.800336 0.0046553073 245.00467 -0.42905227 + 384000 -33.795732 -33.800371 0.0046384559 244.1178 -0.70722613 + 384100 -33.791296 -33.800368 0.0090724014 477.47239 -0.869585 + 384200 -33.791895 -33.800239 0.0083440376 439.13926 -1.1173827 + 384300 -33.796512 -33.800079 0.0035677189 187.76586 -1.3119034 + 384400 -33.796177 -33.799976 0.0037989259 199.93408 -1.2983262 + 384500 -33.793505 -33.799885 0.0063803736 335.79337 -1.1356864 + 384600 -33.792684 -33.799753 0.0070686425 372.01635 -0.90607889 + 384700 -33.793745 -33.799581 0.0058364573 307.16754 -0.66251917 + 384800 -33.794154 -33.799395 0.005241407 275.85057 -0.38271744 + 384900 -33.79368 -33.7992 0.0055205963 290.54406 -0.061977922 + 385000 -33.790401 -33.798959 0.008557489 450.37301 0.36074543 + 385100 -33.789078 -33.798568 0.0094897617 499.43769 0.81512887 + 385200 -33.794772 -33.798226 0.003453934 181.77747 0.99100626 + 385300 -33.794835 -33.798034 0.0031989832 168.35963 1.1463316 + 385400 -33.791793 -33.797907 0.0061134384 321.74481 1.3061567 + 385500 -33.790503 -33.797782 0.0072787005 383.07152 1.3672014 + 385600 -33.791906 -33.797657 0.0057507529 302.65699 1.2861215 + 385700 -33.792577 -33.797557 0.0049797183 262.07813 1.133564 + 385800 -33.791733 -33.797469 0.005736324 301.89761 0.92366318 + 385900 -33.784975 -33.797304 0.012329525 648.8919 0.6705178 + 386000 -33.790613 -33.79694 0.0063274416 333.00761 0.065016364 + 386100 -33.793219 -33.796643 0.0034240185 180.20304 -0.33670026 + 386200 -33.791847 -33.796396 0.0045490086 239.41026 -0.66516572 + 386300 -33.788131 -33.796089 0.0079573545 418.78847 -1.0597466 + 386400 -33.78896 -33.79569 0.0067292725 354.15561 -1.5824293 + 386500 -33.79219 -33.795377 0.0031875067 167.75563 -2.0097333 + 386600 -33.794415 -33.795287 0.00087213192 45.899525 -2.2118871 + 386700 -33.794003 -33.79541 0.0014067173 74.034276 -2.2325433 + 386800 -33.791936 -33.795778 0.0038421006 202.20633 -2.1243532 + 386900 -33.78887 -33.796333 0.0074625172 392.74563 -1.8749403 + 387000 -33.789687 -33.796813 0.0071261151 375.04108 -1.6148478 + 387100 -33.79338 -33.797054 0.0036745855 193.39016 -1.4341135 + 387200 -33.79407 -33.797185 0.0031153107 163.95603 -1.2251931 + 387300 -33.787139 -33.797304 0.010165408 534.99635 -0.78457069 + 387400 -33.788454 -33.797254 0.008800222 463.14783 -0.37240929 + 387500 -33.792728 -33.797084 0.0043558622 229.24514 -0.15647842 + 387600 -33.792855 -33.796966 0.0041109002 216.35301 0.048803989 + 387700 -33.7894 -33.796907 0.0075071911 395.09677 0.29560052 + 387800 -33.786794 -33.79686 0.010066628 529.79764 0.51209125 + 387900 -33.794003 -33.796846 0.0028428628 149.61734 0.43390732 + 388000 -33.79373 -33.79697 0.0032406937 170.55482 0.40490786 + 388100 -33.79023 -33.79728 0.0070503628 371.05431 0.33600055 + 388200 -33.789446 -33.797675 0.0082283301 433.04967 0.09346362 + 388300 -33.793645 -33.797943 0.0042978153 226.19019 -0.25901498 + 388400 -33.794576 -33.798135 0.0035592678 187.32109 -0.52005482 + 388500 -33.793522 -33.79833 0.0048077022 253.02508 -0.78696504 + 388600 -33.79256 -33.798502 0.0059420774 312.72623 -1.1059367 + 388700 -33.792163 -33.798614 0.0064508096 339.50036 -1.4592302 + 388800 -33.793497 -33.798666 0.0051698962 272.08703 -1.815476 + 388900 -33.79536 -33.798731 0.0033709734 177.41132 -2.0864749 + 389000 -33.795136 -33.798888 0.003752034 197.4662 -2.2261789 + 389100 -33.789904 -33.79925 0.0093455331 491.84707 -2.2223518 + 389200 -33.792023 -33.799769 0.0077458716 407.65831 -2.2992461 + 389300 -33.795742 -33.800218 0.0044764947 235.59392 -2.3233743 + 389400 -33.795604 -33.800708 0.0051039613 268.61693 -2.1870746 + 389500 -33.794777 -33.801279 0.0065024072 342.21589 -1.9373844 + 389600 -33.7957 -33.801819 0.00611873 322.0233 -1.6473709 + 389700 -33.799701 -33.802169 0.0024684227 129.91089 -1.4432071 + 389800 -33.800139 -33.802374 0.0022352395 117.63866 -1.2215386 + 389900 -33.797162 -33.802564 0.005401646 284.28381 -0.84256991 + 390000 -33.795551 -33.802644 0.0070925967 373.27704 -0.35794032 + 390100 -33.796947 -33.802505 0.0055579735 292.51119 0.050431968 + 390200 -33.798054 -33.802233 0.0041790749 219.94098 0.3811434 + 390300 -33.796591 -33.801882 0.0052912086 278.47159 0.71043299 + 390400 -33.790638 -33.801287 0.010648641 560.42849 1.1808813 + 390500 -33.795085 -33.800573 0.0054880513 288.83125 1.3911521 + 390600 -33.796904 -33.800115 0.0032117476 169.03141 1.4914293 + 390700 -33.795534 -33.799815 0.004281474 225.33016 1.5538296 + 390800 -33.793649 -33.799614 0.0059647711 313.92058 1.5310427 + 390900 -33.79329 -33.799506 0.0062164457 327.16599 1.3855231 + 391000 -33.793911 -33.799463 0.005551625 292.17707 1.149982 + 391100 -33.7952 -33.79945 0.0042503384 223.69152 0.86774345 + 391200 -33.796512 -33.799452 0.002939959 154.72742 0.59524103 + 391300 -33.795078 -33.799465 0.0043875262 230.91159 0.36085156 + 391400 -33.790235 -33.799393 0.0091584565 482.0014 0.072457573 + 391500 -33.792826 -33.799088 0.006262268 329.57758 -0.38842581 + 391600 -33.795404 -33.798751 0.0033469278 176.14582 -0.71028964 + 391700 -33.794478 -33.798467 0.0039893011 209.95336 -0.86539703 + 391800 -33.785963 -33.798084 0.012120848 637.90942 -0.84983038 + 391900 -33.790443 -33.797596 0.007152644 376.43727 -1.0257206 + 392000 -33.793569 -33.797345 0.0037754091 198.69641 -1.0496593 + 392100 -33.793276 -33.79738 0.0041044507 216.01358 -0.88890913 + 392200 -33.788911 -33.797707 0.0087953566 462.89177 -0.47011319 + 392300 -33.790328 -33.798163 0.0078348122 412.33918 0.0054247184 + 392400 -33.794998 -33.798473 0.0034745729 182.86367 0.31475774 + 392500 -33.794428 -33.798758 0.0043296841 227.86741 0.69780404 + 392600 -33.792353 -33.79902 0.0066671602 350.88669 1.1884939 + 392700 -33.791969 -33.799104 0.0071355241 375.53627 1.6905008 + 392800 -33.795787 -33.798973 0.0031859279 167.67254 1.997502 + 392900 -33.797009 -33.798835 0.0018265058 96.127373 2.1752388 + 393000 -33.794599 -33.79871 0.0041108801 216.35195 2.3610729 + 393100 -33.792104 -33.798476 0.0063720668 335.35619 2.5259872 + 393200 -33.792302 -33.798147 0.0058451243 307.62368 2.556893 + 393300 -33.792904 -33.79782 0.0049163748 258.74442 2.4890941 + 393400 -33.79212 -33.797558 0.0054379163 286.19269 2.3636311 + 393500 -33.788212 -33.79734 0.0091277837 480.38711 2.1795038 + 393600 -33.790331 -33.797133 0.0068017938 357.97234 1.7785898 + 393700 -33.794172 -33.797086 0.002914416 153.38311 1.4271948 + 393800 -33.793493 -33.797261 0.0037681797 198.31594 1.1914546 + 393900 -33.790887 -33.797668 0.0067815068 356.90465 0.93081949 + 394000 -33.791126 -33.798163 0.0070368762 370.34452 0.59464452 + 394100 -33.792858 -33.798583 0.0057247589 301.28896 0.28789766 + 394200 -33.794016 -33.798922 0.0049051491 258.15362 0.071603324 + 394300 -33.794338 -33.799218 0.0048799446 256.82713 -0.056544335 + 394400 -33.793125 -33.799494 0.0063692122 335.20595 -0.096975111 + 394500 -33.792127 -33.799731 0.0076034802 400.16438 -0.085556044 + 394600 -33.795033 -33.799876 0.0048430547 254.88565 -0.097754785 + 394700 -33.796721 -33.799997 0.0032752277 172.37231 -0.053067397 + 394800 -33.794936 -33.800186 0.0052495116 276.27711 0.10543625 + 394900 -33.788696 -33.800489 0.011792691 620.63883 0.45442524 + 395000 -33.794569 -33.800688 0.0061192558 322.05097 0.56491413 + 395100 -33.795956 -33.800825 0.0048697079 256.28838 0.69948826 + 395200 -33.795417 -33.800984 0.0055671979 292.99666 0.844122 + 395300 -33.794007 -33.801157 0.0071493962 376.26635 0.97932032 + 395400 -33.794409 -33.801299 0.006889405 362.58324 1.0378396 + 395500 -33.797815 -33.801378 0.0035632835 187.53243 0.97470596 + 395600 -33.79827 -33.801455 0.0031846537 167.60548 0.91377526 + 395700 -33.794072 -33.801558 0.0074857747 393.96964 0.86300229 + 395800 -33.792612 -33.801564 0.0089518036 471.12544 0.63861558 + 395900 -33.796099 -33.801408 0.0053090338 279.40971 0.31089096 + 396000 -33.796455 -33.80118 0.0047255293 248.70039 0.046879032 + 396100 -33.795364 -33.800872 0.0055079819 289.88017 -0.22545759 + 396200 -33.792971 -33.800434 0.007462386 392.73872 -0.5273429 + 396300 -33.789283 -33.799774 0.010491195 552.14224 -0.87797762 + 396400 -33.794277 -33.799046 0.0047680453 250.93797 -1.3608845 + 396500 -33.796004 -33.798632 0.0026284446 138.33269 -1.6074491 + 396600 -33.79382 -33.798418 0.004597858 241.98117 -1.7117546 + 396700 -33.790156 -33.798325 0.0081697948 429.96902 -1.7671726 + 396800 -33.791893 -33.798352 0.0064583709 339.8983 -1.8587511 + 396900 -33.793538 -33.798483 0.0049454063 260.27232 -1.8718099 + 397000 -33.793578 -33.798712 0.0051345651 270.22758 -1.7875209 + 397100 -33.790452 -33.799019 0.0085665893 450.85195 -1.5675952 + 397200 -33.789411 -33.799306 0.0098954504 520.78873 -1.2996925 + 397300 -33.795428 -33.7994 0.003972145 209.05045 -1.2148499 + 397400 -33.79572 -33.799439 0.0037193638 195.7468 -1.0524491 + 397500 -33.792556 -33.799447 0.0068918021 362.7094 -0.79167196 + 397600 -33.790379 -33.799319 0.0089397017 470.48853 -0.49654061 + 397700 -33.79617 -33.799084 0.0029138314 153.35235 -0.42045883 + 397800 -33.797088 -33.798968 0.0018800433 98.945001 -0.35080524 + 397900 -33.795524 -33.798946 0.0034216836 180.08015 -0.26030101 + 398000 -33.792308 -33.798999 0.0066908003 352.13085 -0.16047419 + 398100 -33.791686 -33.799079 0.0073930975 389.09212 -0.15107952 + 398200 -33.794756 -33.799151 0.0043949319 231.30135 -0.2520232 + 398300 -33.796836 -33.799253 0.0024179449 127.25428 -0.3568817 + 398400 -33.796907 -33.799423 0.0025155951 132.39352 -0.44250565 + 398500 -33.79155 -33.799719 0.0081681882 429.88446 -0.49042551 + 398600 -33.791614 -33.799989 0.0083746171 440.74863 -0.73394823 + 398700 -33.795884 -33.800043 0.0041589923 218.88405 -1.0190648 + 398800 -33.796137 -33.800003 0.0038662217 203.4758 -1.1848998 + 398900 -33.792977 -33.799872 0.0068947009 362.86196 -1.3007457 + 399000 -33.787983 -33.799481 0.011497998 605.12937 -1.435856 + 399100 -33.795998 -33.79897 0.0029716191 156.39366 -1.7723025 + 399200 -33.79645 -33.798685 0.0022351524 117.63408 -1.851565 + 399300 -33.793457 -33.798461 0.0050035287 263.33125 -1.8125552 + 399400 -33.790514 -33.798255 0.0077404247 407.37165 -1.7167072 + 399500 -33.792214 -33.79814 0.0059258525 311.87233 -1.6566001 + 399600 -33.794741 -33.798178 0.0034365615 180.86316 -1.5798398 + 399700 -33.795618 -33.798381 0.002762415 145.38344 -1.4488002 + 399800 -33.792498 -33.798793 0.0062954617 331.32453 -1.1752084 + 399900 -33.789209 -33.799464 0.010255403 539.73272 -0.75371091 + 400000 -33.794966 -33.799973 0.0050077874 263.55538 -0.548139 + 400100 -33.796065 -33.800312 0.0042470478 223.51834 -0.33597126 + 400200 -33.794845 -33.800613 0.0057682319 303.5769 -0.08432558 + 400300 -33.792984 -33.800847 0.0078625741 413.80026 0.19000721 + 400400 -33.795023 -33.800917 0.0058941167 310.20211 0.36421897 + 400500 -33.797949 -33.800881 0.0029322702 154.32276 0.43079936 + 400600 -33.797229 -33.80084 0.0036105634 190.02073 0.50886176 + 400700 -33.792632 -33.80077 0.0081375205 428.27045 0.63587687 + 400800 -33.793307 -33.800612 0.0073045386 384.43135 0.62431073 + 400900 -33.795974 -33.800452 0.0044788144 235.71601 0.53990133 + 401000 -33.79593 -33.800365 0.0044343643 233.37664 0.48718374 + 401100 -33.794857 -33.800351 0.0054935603 289.12118 0.42811295 + 401200 -33.794427 -33.800393 0.0059661857 313.99503 0.33845388 + 401300 -33.794577 -33.80047 0.0058929341 310.13987 0.23714749 + 401400 -33.795552 -33.800556 0.0050043627 263.37514 0.13162568 + 401500 -33.796823 -33.800633 0.0038100381 200.51891 0.047563604 + 401600 -33.796298 -33.80071 0.004411793 232.18873 0.029875529 + 401700 -33.79178 -33.800759 0.0089791311 472.56366 0.11576963 + 401800 -33.793372 -33.800649 0.0072767517 382.96895 0.1126489 + 401900 -33.797456 -33.800479 0.0030229585 159.09561 0.082115648 + 402000 -33.797098 -33.800349 0.0032509676 171.09552 0.16872715 + 402100 -33.79546 -33.800233 0.0047737178 251.23651 0.34088764 + 402200 -33.793791 -33.800125 0.0063340877 333.35738 0.57995222 + 402300 -33.793477 -33.800026 0.0065484638 344.63981 0.83706053 + 402400 -33.795742 -33.799979 0.0042364804 222.96219 1.0398258 + 402500 -33.797892 -33.800032 0.0021400674 112.62984 1.1766328 + 402600 -33.796773 -33.800217 0.0034446709 181.28996 1.3495111 + 402700 -33.791759 -33.800599 0.0088399462 465.23848 1.6587915 + 402800 -33.794019 -33.800936 0.0069172128 364.04674 1.8166193 + 402900 -33.796561 -33.801099 0.0045375113 238.80517 1.8855076 + 403000 -33.796572 -33.801157 0.0045846292 241.28495 1.9399328 + 403100 -33.791521 -33.801084 0.009562992 503.29174 2.0363572 + 403200 -33.789307 -33.800607 0.011299801 594.69846 2.0028692 + 403300 -33.795763 -33.800014 0.0042509749 223.72502 1.7768565 + 403400 -33.795424 -33.799439 0.0040152009 211.31644 1.6538788 + 403500 -33.792266 -33.798726 0.00645959 339.96246 1.5183379 + 403600 -33.790011 -33.797765 0.0077537266 408.07171 1.2756864 + 403700 -33.792456 -33.796853 0.0043968628 231.40296 0.94069365 + 403800 -33.795032 -33.796382 0.0013500946 71.054276 0.70989175 + 403900 -33.794711 -33.796307 0.0015956433 83.977285 0.61252489 + 404000 -33.791239 -33.796548 0.005309296 279.42351 0.57249519 + 404100 -33.789737 -33.796953 0.0072165656 379.80141 0.50611604 + 404200 -33.791471 -33.797255 0.0057836498 304.38833 0.41625874 + 404300 -33.793641 -33.7974 0.0037595132 197.85983 0.36798248 + 404400 -33.793532 -33.797469 0.0039371492 207.20865 0.41334905 + 404500 -33.787377 -33.797438 0.010060707 529.48605 0.64297607 + 404600 -33.789289 -33.797093 0.0078045855 410.74837 0.7783256 + 404700 -33.792701 -33.79669 0.0039889352 209.9341 0.8616675 + 404800 -33.792212 -33.796382 0.004170385 219.48364 1.0286358 + 404900 -33.790173 -33.796179 0.0060061903 316.10044 1.2703223 + 405000 -33.788978 -33.796112 0.0071342811 375.47085 1.5348681 + 405100 -33.791296 -33.796242 0.0049460134 260.30428 1.7058513 + 405200 -33.794803 -33.796536 0.0017333733 91.22589 1.7529314 + 405300 -33.793998 -33.797076 0.0030777824 161.98094 1.8165904 + 405400 -33.790369 -33.798084 0.0077145959 406.0123 1.8923797 + 405500 -33.791511 -33.799234 0.0077228093 406.44457 1.8171815 + 405600 -33.794671 -33.800062 0.0053909839 283.72267 1.654426 + 405700 -33.795378 -33.800656 0.0052780909 277.78122 1.4969303 + 405800 -33.795227 -33.801095 0.0058677024 308.81194 1.3029098 + 405900 -33.795419 -33.801352 0.0059334717 312.27333 1.049851 + 406000 -33.795922 -33.80142 0.0054981966 289.36518 0.76080356 + 406100 -33.79603 -33.801335 0.0053051037 279.20288 0.46402856 + 406200 -33.793021 -33.801117 0.0080962557 426.09871 0.18203072 + 406300 -33.793248 -33.800727 0.0074789629 393.61115 -0.21802091 + 406400 -33.796621 -33.800376 0.0037551132 197.62826 -0.58131297 + 406500 -33.796792 -33.800203 0.0034113537 179.5365 -0.78526745 + 406600 -33.79262 -33.800174 0.007554596 397.59165 -0.88092633 + 406700 -33.791585 -33.800231 0.0086452024 454.98929 -1.0289284 + 406800 -33.795392 -33.800315 0.0049234238 259.1154 -1.1894581 + 406900 -33.795598 -33.800447 0.0048491868 255.20838 -1.199093 + 407000 -33.794691 -33.800616 0.0059249447 311.82456 -1.1231076 + 407100 -33.794295 -33.800748 0.0064529939 339.61531 -1.0017067 + 407200 -33.796285 -33.800776 0.0044914667 236.38189 -0.89432511 + 407300 -33.79847 -33.800752 0.0022821614 120.10812 -0.80480347 + 407400 -33.797505 -33.80073 0.0032255456 169.75759 -0.64545599 + 407500 -33.792765 -33.800646 0.0078802579 414.73094 -0.31962011 + 407600 -33.79378 -33.800389 0.0066094954 347.85185 -0.070079954 + 407700 -33.795878 -33.800074 0.0041958297 220.82277 0.099956779 + 407800 -33.79566 -33.799802 0.0041419588 217.9876 0.26451392 + 407900 -33.788186 -33.799478 0.011292844 594.33231 0.58140215 + 408000 -33.79191 -33.799036 0.007126405 375.05634 0.66721592 + 408100 -33.794678 -33.798777 0.0040990798 215.73091 0.67484927 + 408200 -33.793912 -33.798698 0.0047853361 251.84797 0.68062862 + 408300 -33.79131 -33.798756 0.0074459205 391.87216 0.65049553 + 408400 -33.791417 -33.798874 0.0074571869 392.4651 0.48625584 + 408500 -33.7962 -33.79896 0.0027601716 145.26537 0.22769095 + 408600 -33.795959 -33.799079 0.0031201832 164.21246 0.068163101 + 408700 -33.791782 -33.799235 0.0074525172 392.21933 -0.11344267 + 408800 -33.79127 -33.799207 0.0079361029 417.67002 -0.47767365 + 408900 -33.79432 -33.798939 0.0046186304 243.0744 -0.86531316 + 409000 -33.794548 -33.798561 0.0040122456 211.16091 -1.1424006 + 409100 -33.793622 -33.798045 0.0044229443 232.77561 -1.3866865 + 409200 -33.792209 -33.797368 0.005159179 271.52299 -1.6098647 + 409300 -33.79014 -33.796485 0.0063453228 333.94868 -1.8075184 + 409400 -33.788285 -33.795401 0.007116322 374.52568 -1.970836 + 409500 -33.785603 -33.794189 0.0085857551 451.86063 -2.0485907 + 409600 -33.786534 -33.792984 0.0064500411 339.45991 -2.1056273 + 409700 -33.789128 -33.792319 0.0031910533 167.94229 -2.0819847 + 409800 -33.788417 -33.792261 0.0038439909 202.30581 -1.8796649 + 409900 -33.782477 -33.792785 0.010308598 542.53232 -1.3583435 + 410000 -33.785933 -33.793591 0.0076579171 403.02934 -0.88973613 + 410100 -33.788611 -33.794308 0.0056968501 299.82014 -0.50570909 + 410200 -33.789246 -33.795049 0.0058031515 305.41469 -0.12522113 + 410300 -33.790188 -33.795783 0.0055943152 294.42382 0.20726179 + 410400 -33.792776 -33.796395 0.0036190758 190.46873 0.41637854 + 410500 -33.794466 -33.796866 0.002399583 126.28792 0.52501488 + 410600 -33.792685 -33.797383 0.0046987243 247.28967 0.63548369 + 410700 -33.786995 -33.79809 0.011094879 583.91359 0.78186202 + 410800 -33.791955 -33.798514 0.0065596195 345.22693 0.66098716 + 410900 -33.793925 -33.798676 0.0047506727 250.02367 0.55085308 + 411000 -33.793738 -33.798747 0.00500889 263.61341 0.43649639 + 411100 -33.790663 -33.798761 0.0080981507 426.19845 0.32181986 + 411200 -33.787316 -33.798603 0.011286527 593.99986 0.11983429 + 411300 -33.794846 -33.798364 0.0035178642 185.14206 -0.24806104 + 411400 -33.795042 -33.798304 0.003261175 171.63273 -0.38815083 + 411500 -33.791974 -33.798421 0.0064476064 339.33177 -0.45670142 + 411600 -33.790462 -33.798672 0.0082098215 432.07559 -0.55046256 + 411700 -33.793422 -33.798917 0.0054949157 289.19251 -0.67287314 + 411800 -33.79416 -33.799163 0.0050028725 263.29672 -0.688122 + 411900 -33.793591 -33.799432 0.0058414183 307.42864 -0.61961551 + 412000 -33.793421 -33.79965 0.0062288755 327.82016 -0.502102 + 412100 -33.794767 -33.799744 0.004977237 261.94754 -0.37850588 + 412200 -33.796834 -33.799736 0.0029017214 152.71501 -0.26514842 + 412300 -33.796834 -33.799695 0.0028616673 150.607 -0.10752743 + 412400 -33.791826 -33.799579 0.0077535628 408.06309 0.23200882 + 412500 -33.791537 -33.799193 0.0076559217 402.92433 0.57000595 + 412600 -33.794468 -33.798697 0.0042287591 222.55582 0.78382762 + 412700 -33.794619 -33.798288 0.0036690001 193.0962 0.99437029 + 412800 -33.786946 -33.797864 0.010917978 574.60346 1.4024939 + 412900 -33.789306 -33.797332 0.0080260331 422.40297 1.661467 + 413000 -33.792759 -33.797108 0.0043484851 228.85689 1.7781023 + 413100 -33.792751 -33.797265 0.0045143513 237.58628 1.8815868 + 413200 -33.788939 -33.797865 0.0089260697 469.77109 2.0009273 + 413300 -33.789385 -33.798846 0.0094613716 497.94355 1.975331 + 413400 -33.795829 -33.799554 0.0037245544 196.01998 1.787597 + 413500 -33.795345 -33.800218 0.004873069 256.46528 1.6815869 + 413600 -33.792916 -33.800946 0.0080300959 422.61678 1.5303927 + 413700 -33.795188 -33.801477 0.0062885109 330.95872 1.2227938 + 413800 -33.798921 -33.801662 0.0027406386 144.23736 0.93623718 + 413900 -33.798288 -33.801712 0.0034240432 180.20434 0.74715587 + 414000 -33.795611 -33.801625 0.0060141403 316.51884 0.52431718 + 414100 -33.795131 -33.801302 0.0061710527 324.777 0.20361791 + 414200 -33.795643 -33.800806 0.0051635748 271.75434 -0.11379134 + 414300 -33.795096 -33.800251 0.0051548937 271.29746 -0.37068692 + 414400 -33.788879 -33.799563 0.010684744 562.32857 -0.52625628 + 414500 -33.791218 -33.798697 0.0074791137 393.61908 -0.84807699 + 414600 -33.794948 -33.798265 0.0033177606 174.61078 -1.0344597 + 414700 -33.794051 -33.798247 0.0041963128 220.8482 -1.0058316 + 414800 -33.791608 -33.798609 0.0070003267 368.42095 -0.81808474 + 414900 -33.791986 -33.799217 0.0072304935 380.53443 -0.57152126 + 415000 -33.795778 -33.799768 0.0039904691 210.01483 -0.36891181 + 415100 -33.798366 -33.80016 0.0017943311 94.434045 -0.1957313 + 415200 -33.798373 -33.800503 0.0021294929 112.07331 0.0096285078 + 415300 -33.791223 -33.800977 0.009753319 513.30848 0.52202557 + 415400 -33.793826 -33.801148 0.007322414 385.37212 0.95991859 + 415500 -33.797588 -33.800944 0.0033551724 176.57973 1.2101543 + 415600 -33.797276 -33.800626 0.0033505509 176.33651 1.4528826 + 415700 -33.793206 -33.800082 0.0068756868 361.86127 1.7862201 + 415800 -33.792313 -33.799188 0.0068753595 361.84404 2.0617152 + 415900 -33.793676 -33.798304 0.0046281858 243.57729 2.2041984 + 416000 -33.792952 -33.797645 0.0046929102 246.98368 2.2906653 + 416100 -33.783692 -33.797049 0.013356823 702.95768 2.4533611 + 416200 -33.789829 -33.79661 0.006780505 356.85193 2.2262071 + 416300 -33.792029 -33.796623 0.0045942281 241.79013 2.0259703 + 416400 -33.791486 -33.797024 0.0055384828 291.48541 1.8082218 + 416500 -33.789854 -33.797724 0.0078701744 414.20026 1.5156946 + 416600 -33.792892 -33.798425 0.0055324018 291.16537 1.077082 + 416700 -33.795659 -33.798882 0.0032233177 169.64033 0.72765716 + 416800 -33.794725 -33.799272 0.0045468093 239.29452 0.45843346 + 416900 -33.789683 -33.79959 0.0099071782 521.40595 0.15639506 + 417000 -33.793471 -33.799513 0.0060422978 318.00075 -0.3839779 + 417100 -33.79705 -33.799277 0.0022267627 117.19253 -0.71172143 + 417200 -33.795791 -33.799046 0.0032544096 171.27667 -0.88236914 + 417300 -33.792455 -33.798715 0.0062600853 329.46271 -1.0269971 + 417400 -33.791324 -33.798253 0.0069293472 364.68536 -1.1975814 + 417500 -33.792845 -33.797851 0.005006029 263.46284 -1.3394983 + 417600 -33.794664 -33.797724 0.0030596618 161.02727 -1.3867182 + 417700 -33.794907 -33.797939 0.0030317714 159.55943 -1.3167798 + 417800 -33.79033 -33.798606 0.0082755027 435.53233 -1.0346768 + 417900 -33.790618 -33.799626 0.0090074479 474.05395 -0.72135926 + 418000 -33.795476 -33.800385 0.004909168 258.36513 -0.55147313 + 418100 -33.795749 -33.801012 0.0052629166 276.98261 -0.32664846 + 418200 -33.795253 -33.801579 0.0063265927 332.96293 -0.084476069 + 418300 -33.796404 -33.801984 0.0055806882 293.70664 0.10199418 + 418400 -33.799636 -33.802169 0.002533106 133.31511 0.17243347 + 418500 -33.799733 -33.802251 0.0025175341 132.49557 0.23759509 + 418600 -33.795503 -33.802278 0.0067746419 356.54336 0.3577615 + 418700 -33.794723 -33.802098 0.0073749679 388.13798 0.37482977 + 418800 -33.796914 -33.801739 0.0048254843 253.96093 0.2903932 + 418900 -33.797448 -33.801349 0.0039011132 205.31211 0.20463412 + 419000 -33.792013 -33.800863 0.0088498911 465.76187 0.18264204 + 419100 -33.790948 -33.800046 0.0090979351 478.81621 -0.018552792 + 419200 -33.795139 -33.799379 0.0042395286 223.12261 -0.28731882 + 419300 -33.794982 -33.798958 0.0039759766 209.2521 -0.43619772 + 419400 -33.792685 -33.798695 0.0060098175 316.29133 -0.54961182 + 419500 -33.791378 -33.798558 0.0071797204 377.86228 -0.68611073 + 419600 -33.792343 -33.798534 0.0061906322 325.80745 -0.82834321 + 419700 -33.79285 -33.798613 0.0057627351 303.28761 -0.91270344 + 419800 -33.793207 -33.798756 0.0055490825 292.04326 -0.94477059 + 419900 -33.793693 -33.798919 0.0052264702 275.06447 -0.93229416 + 420000 -33.794513 -33.79907 0.0045566164 239.81066 -0.88722502 + 420100 -33.794243 -33.799192 0.0049486493 260.443 -0.78319465 + 420200 -33.791755 -33.799253 0.0074977858 394.60178 -0.58623143 + 420300 -33.79165 -33.799141 0.0074902607 394.20574 -0.39104098 + 420400 -33.795744 -33.798915 0.0031711617 166.89541 -0.30293539 + 420500 -33.796378 -33.798774 0.0023961084 126.10505 -0.18417308 + 420600 -33.791939 -33.798696 0.0067568714 355.60812 0.076745074 + 420700 -33.791035 -33.798557 0.0075224215 395.89833 0.34119577 + 420800 -33.793601 -33.798415 0.0048142552 253.36996 0.49229237 + 420900 -33.794447 -33.798391 0.0039447051 207.60631 0.61845566 + 421000 -33.791327 -33.798532 0.0072050501 379.19536 0.79724192 + 421100 -33.78749 -33.798807 0.011316729 595.58935 0.98619158 + 421200 -33.794478 -33.799 0.0045218233 237.97953 0.89970527 + 421300 -33.794608 -33.79923 0.0046213158 243.21573 0.88695239 + 421400 -33.79294 -33.799551 0.0066115832 347.96172 0.85076104 + 421500 -33.792596 -33.799859 0.0072629087 382.24041 0.7291599 + 421600 -33.796731 -33.800028 0.0032961526 173.47357 0.5049534 + 421700 -33.797577 -33.800129 0.0025515683 134.28676 0.36015926 + 421800 -33.794526 -33.80023 0.0057036821 300.1797 0.24632764 + 421900 -33.792177 -33.800195 0.0080182397 421.9928 0.023155873 + 422000 -33.794295 -33.799915 0.0056194323 295.74571 -0.28433577 + 422100 -33.79538 -33.799533 0.0041522891 218.53127 -0.51799538 + 422200 -33.793477 -33.799101 0.0056232689 295.94763 -0.66205846 + 422300 -33.787185 -33.798397 0.011212479 590.10279 -0.74842432 + 422400 -33.792124 -33.797618 0.0054941835 289.15398 -0.99930132 + 422500 -33.79324 -33.797206 0.0039667433 208.76616 -1.0586995 + 422600 -33.791975 -33.797152 0.0051774515 272.48465 -0.96378015 + 422700 -33.789926 -33.79749 0.0075634887 398.05966 -0.72662623 + 422800 -33.792118 -33.798099 0.0059809555 314.77235 -0.48175025 + 422900 -33.796132 -33.798662 0.0025301181 133.15786 -0.31743923 + 423000 -33.795252 -33.799311 0.0040590836 213.62595 -0.05075775 + 423100 -33.792469 -33.800157 0.0076874838 404.58541 0.34852247 + 423200 -33.793885 -33.800863 0.0069780035 367.2461 0.69948891 + 423300 -33.797064 -33.801202 0.0041379453 217.77637 0.91770221 + 423400 -33.797374 -33.801339 0.0039646823 208.65769 1.10827 + 423500 -33.796318 -33.801352 0.0050340446 264.93728 1.2945496 + 423600 -33.795719 -33.801225 0.005506297 289.7915 1.4259924 + 423700 -33.794711 -33.800971 0.006259894 329.45264 1.5077734 + 423800 -33.794355 -33.800633 0.0062772275 330.36489 1.5148133 + 423900 -33.795044 -33.800316 0.0052717625 277.44816 1.4355837 + 424000 -33.795259 -33.800131 0.0048724906 256.43483 1.3109432 + 424100 -33.792939 -33.80012 0.007180763 377.91715 1.1731877 + 424200 -33.791336 -33.800258 0.008922219 469.56843 0.93545446 + 424300 -33.796548 -33.800456 0.0039080636 205.6779 0.58876933 + 424400 -33.797427 -33.80072 0.0032922695 173.26921 0.3959654 + 424500 -33.795213 -33.801118 0.0059046901 310.75858 0.24959527 + 424600 -33.793682 -33.801543 0.0078615901 413.74847 0.055903172 + 424700 -33.795219 -33.801751 0.0065327204 343.81125 -0.17451243 + 424800 -33.796358 -33.801729 0.0053711664 282.6797 -0.35365886 + 424900 -33.796769 -33.801531 0.0047617018 250.60412 -0.47417415 + 425000 -33.794978 -33.80116 0.0061826669 325.38824 -0.51795833 + 425100 -33.789855 -33.800429 0.01057447 556.5249 -0.47723237 + 425200 -33.794738 -33.799465 0.0047271902 248.7878 -0.59613602 + 425300 -33.796584 -33.798857 0.0022729928 119.62558 -0.61082311 + 425400 -33.79532 -33.798471 0.0031516577 165.86894 -0.51104706 + 425500 -33.793343 -33.798261 0.0049180084 258.83039 -0.32262172 + 425600 -33.791402 -33.79828 0.0068777833 361.9716 -0.069251104 + 425700 -33.791798 -33.798512 0.0067135839 353.32993 0.17241896 + 425800 -33.795413 -33.798842 0.0034290401 180.46732 0.30349923 + 425900 -33.796667 -33.799216 0.0025486528 134.13333 0.40155535 + 426000 -33.79286 -33.79976 0.0069003599 363.15979 0.5795382 + 426100 -33.789051 -33.8005 0.011448769 602.5385 0.77355004 + 426200 -33.794928 -33.800824 0.0058960045 310.30146 0.71165563 + 426300 -33.796598 -33.800885 0.0042875903 225.65205 0.6756029 + 426400 -33.795857 -33.800797 0.0049402133 259.99902 0.63753452 + 426500 -33.79095 -33.800478 0.0095282318 501.46234 0.61025811 + 426600 -33.792287 -33.799746 0.007458737 392.54668 0.38725268 + 426700 -33.796972 -33.799141 0.0021688318 114.14368 0.14330278 + 426800 -33.796369 -33.798737 0.0023678707 124.61892 0.015239509 + 426900 -33.793964 -33.798373 0.0044086682 232.02427 -0.13003315 + 427000 -33.791508 -33.79806 0.0065520228 344.82712 -0.33587402 + 427100 -33.791054 -33.79786 0.0068060607 358.1969 -0.59419531 + 427200 -33.793452 -33.797832 0.0043801523 230.52351 -0.8518707 + 427300 -33.795726 -33.797991 0.0022650076 119.20533 -1.0103318 + 427400 -33.795163 -33.798334 0.0031710959 166.89195 -1.0414199 + 427500 -33.788018 -33.799005 0.010987779 578.27699 -0.90083526 + 427600 -33.792152 -33.799598 0.007446019 391.87734 -0.95357973 + 427700 -33.79517 -33.799853 0.0046829251 246.45817 -0.96765121 + 427800 -33.795246 -33.799957 0.0047108299 247.92678 -0.90570565 + 427900 -33.79271 -33.799921 0.0072106343 379.48925 -0.76592332 + 428000 -33.787467 -33.799572 0.012104863 637.06812 -0.52748115 + 428100 -33.795167 -33.79899 0.0038229559 201.19876 -0.56065239 + 428200 -33.796027 -33.798595 0.0025671225 135.10537 -0.50089187 + 428300 -33.793784 -33.798256 0.0044714433 235.32807 -0.36489061 + 428400 -33.791282 -33.797905 0.0066227641 348.55016 -0.19660467 + 428500 -33.791466 -33.797615 0.0061482991 323.5795 -0.082290836 + 428600 -33.79261 -33.797488 0.004877871 256.718 -0.010115713 + 428700 -33.79384 -33.797563 0.003723453 195.96201 0.023360132 + 428800 -33.793499 -33.797838 0.004339388 228.37812 0.055034368 + 428900 -33.789658 -33.798347 0.0086885783 457.27212 0.124555 + 429000 -33.791429 -33.798904 0.007474651 393.38422 0.040925649 + 429100 -33.795588 -33.799248 0.0036594781 192.59507 -0.10447452 + 429200 -33.795157 -33.799539 0.0043822919 230.63611 -0.18089643 + 429300 -33.79333 -33.799814 0.0064839528 341.24465 -0.27712486 + 429400 -33.793295 -33.79996 0.0066650856 350.77751 -0.44569242 + 429500 -33.794759 -33.799932 0.0051734478 272.27394 -0.64745564 + 429600 -33.795228 -33.799799 0.0045707966 240.55695 -0.81992328 + 429700 -33.790847 -33.799565 0.0087176644 458.8029 -0.91205256 + 429800 -33.790762 -33.799101 0.0083390703 438.87783 -1.1302617 + 429900 -33.795187 -33.798693 0.0035062296 184.52974 -1.3607422 + 430000 -33.795364 -33.79851 0.003145241 165.53123 -1.4289575 + 430100 -33.791407 -33.798524 0.0071173796 374.58134 -1.3652484 + 430200 -33.790427 -33.798717 0.0082898786 436.28892 -1.2958393 + 430300 -33.793746 -33.799 0.005254291 276.52865 -1.2609928 + 430400 -33.794431 -33.799374 0.0049427683 260.13349 -1.1384538 + 430500 -33.793919 -33.799862 0.0059436157 312.80719 -0.93725431 + 430600 -33.794015 -33.800381 0.006366517 335.06411 -0.70442177 + 430700 -33.795203 -33.800814 0.0056113761 295.32172 -0.48547224 + 430800 -33.79765 -33.80111 0.0034598315 182.08785 -0.31587319 + 430900 -33.799682 -33.801279 0.0015966721 84.031428 -0.21358031 + 431000 -33.798562 -33.801444 0.0028819998 151.67708 -0.073915132 + 431100 -33.794928 -33.801633 0.0067051817 352.88773 0.16247132 + 431200 -33.795057 -33.801656 0.0065985987 347.27836 0.32507418 + 431300 -33.796923 -33.801504 0.0045812529 241.10725 0.40406805 + 431400 -33.797689 -33.801296 0.0036065995 189.81212 0.45442078 + 431500 -33.794117 -33.801042 0.0069253543 364.47522 0.54975886 + 431600 -33.791078 -33.800597 0.0095184452 500.94728 0.59722214 + 431700 -33.795757 -33.800154 0.0043975192 231.43751 0.46200969 + 431800 -33.796404 -33.799913 0.0035089858 184.67479 0.38403147 + 431900 -33.794675 -33.799823 0.0051479292 270.93092 0.31890324 + 432000 -33.793577 -33.799836 0.0062592437 329.41842 0.20209513 + 432100 -33.793849 -33.799891 0.0060412432 317.94524 0.039488806 + 432200 -33.794832 -33.799934 0.0051015287 268.4889 -0.12946841 + 432300 -33.79619 -33.799941 0.0037510267 197.41319 -0.28369395 + 432400 -33.796636 -33.799926 0.0032899026 173.14464 -0.38982354 + 432500 -33.793247 -33.799854 0.0066063958 347.68872 -0.40947651 + 432600 -33.790543 -33.799517 0.0089741583 472.30194 -0.45431758 + 432700 -33.794717 -33.79897 0.0042529263 223.82772 -0.60109741 + 432800 -33.795831 -33.798502 0.0026710346 140.57417 -0.63252101 + 432900 -33.790808 -33.797989 0.0071805354 377.90517 -0.48847296 + 433000 -33.789088 -33.79709 0.0080017274 421.12378 -0.32507123 + 433100 -33.792321 -33.796301 0.0039792599 209.4249 -0.23753461 + 433200 -33.792543 -33.795834 0.0032905104 173.17663 -0.074917093 + 433300 -33.788483 -33.795591 0.0071082658 374.10169 0.26836383 + 433400 -33.787256 -33.795506 0.0082495344 434.16564 0.68042564 + 433500 -33.790348 -33.795612 0.0052635146 277.01408 0.96237921 + 433600 -33.790969 -33.795934 0.004964128 261.25763 1.2274639 + 433700 -33.790405 -33.796473 0.0060679246 319.34946 1.4843567 + 433800 -33.79058 -33.797127 0.0065470721 344.56656 1.6789694 + 433900 -33.791866 -33.797734 0.0058673733 308.79462 1.7816309 + 434000 -33.793448 -33.798219 0.0047701563 251.04907 1.7946919 + 434100 -33.796288 -33.798553 0.0022649835 119.20406 1.7104495 + 434200 -33.796992 -33.79879 0.0017977483 94.613891 1.6209897 + 434300 -33.794138 -33.799089 0.0049504422 260.53736 1.5073952 + 434400 -33.791757 -33.799351 0.0075936458 399.6468 1.2354402 + 434500 -33.793712 -33.799334 0.0056219808 295.87984 0.8385939 + 434600 -33.795395 -33.799155 0.0037599112 197.88077 0.4842727 + 434700 -33.794299 -33.798938 0.0046392933 244.16187 0.20301984 + 434800 -33.787943 -33.798565 0.010622657 559.06094 -0.10105418 + 434900 -33.79222 -33.798054 0.005834049 307.04079 -0.61377137 + 435000 -33.794241 -33.797777 0.003536909 186.14436 -0.90141 + 435100 -33.792932 -33.797782 0.0048498736 255.24452 -1.0230905 + 435200 -33.790382 -33.798055 0.0076732065 403.83401 -1.0486758 + 435300 -33.791278 -33.798462 0.0071847004 378.12437 -1.0475238 + 435400 -33.79282 -33.798878 0.0060579466 318.82433 -0.97760107 + 435500 -33.794341 -33.799245 0.004903241 258.0532 -0.84893337 + 435600 -33.795037 -33.799552 0.0045155021 237.64685 -0.65701882 + 435700 -33.794045 -33.7998 0.005755641 302.91425 -0.38440968 + 435800 -33.790775 -33.799924 0.0091489649 481.50186 0.022397443 + 435900 -33.79423 -33.799791 0.0055608872 292.66454 0.31635354 + 436000 -33.79682 -33.799595 0.0027755479 146.07461 0.50763369 + 436100 -33.795587 -33.799441 0.0038532737 202.79436 0.73706155 + 436200 -33.791323 -33.799254 0.0079310213 417.40258 1.0821122 + 436300 -33.79261 -33.799027 0.0064164793 337.69358 1.297485 + 436400 -33.794294 -33.798908 0.0046137413 242.81709 1.4163483 + 436500 -33.794224 -33.798981 0.0047572136 250.36791 1.4852134 + 436600 -33.789623 -33.799294 0.0096716484 509.01023 1.560818 + 436700 -33.791308 -33.799781 0.0084730211 445.92754 1.4259755 + 436800 -33.796255 -33.800158 0.0039027391 205.39768 1.1968585 + 436900 -33.79566 -33.800567 0.0049070276 258.25249 1.0228211 + 437000 -33.793477 -33.801032 0.0075553169 397.62959 0.78542757 + 437100 -33.794966 -33.801361 0.0063953649 336.58235 0.39874075 + 437200 -33.798985 -33.801448 0.0024625738 129.60306 0.044242247 + 437300 -33.798481 -33.801444 0.0029631233 155.94654 -0.17819265 + 437400 -33.795095 -33.801305 0.0062100641 326.83013 -0.43472232 + 437500 -33.794424 -33.800877 0.006452642 339.59679 -0.81525432 + 437600 -33.795283 -33.800237 0.0049537648 260.71222 -1.1840435 + 437700 -33.79478 -33.799503 0.0047223294 248.53198 -1.4668596 + 437800 -33.787827 -33.798464 0.010637216 559.82721 -1.6342447 + 437900 -33.790078 -33.797061 0.006983409 367.53058 -1.976579 + 438000 -33.792738 -33.796141 0.0034031515 179.10483 -2.1611038 + 438100 -33.791834 -33.795661 0.0038266144 201.39131 -2.1361822 + 438200 -33.789813 -33.795532 0.0057197112 301.0233 -1.9522772 + 438300 -33.788776 -33.795712 0.0069359172 365.03113 -1.6571327 + 438400 -33.790283 -33.796052 0.0057694817 303.64268 -1.3419946 + 438500 -33.793611 -33.7964 0.0027898993 146.82991 -1.1021937 + 438600 -33.794869 -33.796736 0.0018669491 98.255867 -0.91207066 + 438700 -33.792699 -33.797215 0.0045157254 237.6586 -0.63317417 + 438800 -33.790041 -33.797818 0.0077769416 409.2935 -0.25366829 + 438900 -33.792179 -33.798151 0.0059712775 314.26301 -0.004817748 + 439000 -33.794198 -33.798232 0.0040343925 212.32648 0.1483948 + 439100 -33.793921 -33.798215 0.0042940881 225.99403 0.26755072 + 439200 -33.788516 -33.798098 0.0095820913 504.29692 0.44308803 + 439300 -33.790087 -33.797727 0.007639385 402.05402 0.42371154 + 439400 -33.794035 -33.797414 0.0033789697 177.83216 0.29466788 + 439500 -33.79363 -33.797333 0.0037032108 194.89668 0.19962411 + 439600 -33.791567 -33.797505 0.0059381665 312.52041 0.059978687 + 439700 -33.790012 -33.797932 0.0079203529 416.84111 -0.17538392 + 439800 -33.793668 -33.798448 0.00478008 251.57134 -0.51673549 + 439900 -33.79636 -33.798912 0.0025523926 134.33015 -0.751709 + 440000 -33.795334 -33.799498 0.0041633042 219.11099 -0.88869749 + 440100 -33.793666 -33.800242 0.0065761855 346.09877 -1.0314844 + 440200 -33.794247 -33.800881 0.0066345414 349.17 -1.2151158 + 440300 -33.796416 -33.801252 0.0048357411 254.50074 -1.3890708 + 440400 -33.798148 -33.801405 0.0032575442 171.44165 -1.5011517 + 440500 -33.799097 -33.801445 0.0023486185 123.60569 -1.5519554 + 440600 -33.796912 -33.801423 0.0045112407 237.42257 -1.4976681 + 440700 -33.792631 -33.801211 0.008579658 451.53975 -1.3490043 + 440800 -33.794956 -33.800736 0.0057793671 304.16294 -1.2980755 + 440900 -33.797131 -33.800264 0.0031329302 164.88332 -1.2339769 + 441000 -33.795646 -33.79987 0.0042239887 222.30476 -1.0678589 + 441100 -33.789502 -33.799287 0.0097849843 514.97499 -0.68033324 + 441200 -33.793171 -33.798658 0.0054875846 288.80668 -0.45222171 + 441300 -33.794918 -33.798312 0.0033935923 178.60173 -0.25071623 + 441400 -33.792862 -33.798231 0.0053697216 282.60366 0.024538221 + 441500 -33.786591 -33.79835 0.011758472 618.83789 0.49234283 + 441600 -33.791625 -33.798497 0.0068714505 361.63831 0.70452874 + 441700 -33.793252 -33.798683 0.0054308148 285.81894 0.87332116 + 441800 -33.793714 -33.798935 0.0052208613 274.76927 0.99213583 + 441900 -33.793488 -33.799228 0.0057399254 302.08715 1.0542166 + 442000 -33.793076 -33.799503 0.0064265292 338.2225 1.0532853 + 442100 -33.794233 -33.799685 0.0054519709 286.93236 0.95769096 + 442200 -33.795802 -33.799769 0.0039675245 208.80728 0.80704051 + 442300 -33.795387 -33.799807 0.0044202353 232.63304 0.65708157 + 442400 -33.790401 -33.799769 0.009367914 493.02496 0.5033285 + 442500 -33.792066 -33.799475 0.0074085892 389.90744 0.12945814 + 442600 -33.796206 -33.799159 0.0029529438 155.4108 -0.19159135 + 442700 -33.795735 -33.798972 0.0032368267 170.3513 -0.36628589 + 442800 -33.79376 -33.798877 0.005117468 269.32777 -0.51200407 + 442900 -33.791727 -33.798849 0.0071225049 374.85108 -0.64605223 + 443000 -33.792686 -33.798863 0.0061763921 325.05801 -0.79227543 + 443100 -33.796292 -33.798942 0.0026503346 139.48475 -0.90363405 + 443200 -33.797217 -33.799144 0.0019272519 101.42955 -0.87916694 + 443300 -33.794036 -33.799565 0.0055287368 290.97249 -0.6794947 + 443400 -33.791797 -33.800139 0.0083419747 439.03069 -0.35822309 + 443500 -33.794845 -33.800447 0.0056018355 294.81961 -0.12241312 + 443600 -33.796608 -33.80052 0.0039119875 205.88441 0.097697746 + 443700 -33.795701 -33.800458 0.004757212 250.36783 0.37306252 + 443800 -33.789008 -33.800137 0.011128422 585.67893 0.86558995 + 443900 -33.793017 -33.799387 0.0063701725 335.2565 1.182099 + 444000 -33.79539 -33.798732 0.0033423091 175.90275 1.3873688 + 444100 -33.794454 -33.798182 0.0037276711 196.184 1.6075432 + 444200 -33.791737 -33.797672 0.0059353634 312.37288 1.8554165 + 444300 -33.790046 -33.79725 0.0072039828 379.13919 2.0678578 + 444400 -33.791568 -33.797066 0.0054976269 289.3352 2.1449207 + 444500 -33.794896 -33.797195 0.0022987023 120.97865 2.0959352 + 444600 -33.795572 -33.797592 0.0020196932 106.29465 2.0292119 + 444700 -33.792283 -33.798404 0.0061207479 322.1295 1.9395029 + 444800 -33.790667 -33.799554 0.0088873127 467.73134 1.6760229 + 444900 -33.794218 -33.800357 0.0061391094 323.09585 1.2871368 + 445000 -33.796236 -33.800772 0.0045357987 238.71504 0.95472256 + 445100 -33.796207 -33.800951 0.0047438838 249.66637 0.66645149 + 445200 -33.791277 -33.800879 0.0096026041 505.37649 0.40748462 + 445300 -33.790971 -33.800255 0.0092840816 488.61293 -0.076780623 + 445400 -33.796324 -33.79953 0.0032066472 168.76298 -0.50314086 + 445500 -33.795867 -33.798939 0.0030719385 161.67338 -0.70402218 + 445600 -33.793306 -33.798345 0.0050389566 265.19579 -0.83492453 + 445700 -33.791405 -33.797782 0.0063768136 335.60601 -0.92936953 + 445800 -33.791325 -33.797432 0.0061073939 321.42669 -0.97246588 + 445900 -33.792286 -33.797408 0.0051227323 269.60483 -0.93903002 + 446000 -33.794583 -33.797681 0.0030988391 163.08914 -0.85623919 + 446100 -33.794964 -33.798172 0.003207626 168.8145 -0.69491263 + 446200 -33.791008 -33.798963 0.0079552025 418.67521 -0.35154419 + 446300 -33.790396 -33.799882 0.0094857849 499.2284 0.049535338 + 446400 -33.796109 -33.800342 0.0042339171 222.82728 0.22212462 + 446500 -33.795929 -33.800586 0.0046573231 245.11076 0.44070788 + 446600 -33.794265 -33.80069 0.0064254581 338.16613 0.68078914 + 446700 -33.79332 -33.800569 0.0072486053 381.48763 0.88511496 + 446800 -33.796225 -33.80026 0.0040352071 212.36935 0.95039685 + 446900 -33.797948 -33.800015 0.0020670809 108.78862 0.95169374 + 447000 -33.796042 -33.799882 0.0038392629 202.05698 0.95329622 + 447100 -33.792502 -33.799798 0.0072968679 384.02765 0.89084758 + 447200 -33.793534 -33.799775 0.0062407854 328.44697 0.66745119 + 447300 -33.795534 -33.799872 0.0043383351 228.32271 0.4099738 + 447400 -33.79626 -33.800121 0.0038606104 203.18048 0.1802798 + 447500 -33.793555 -33.800559 0.0070036778 368.59732 -0.022016027 + 447600 -33.790996 -33.801171 0.01017524 535.51381 -0.32671476 + 447700 -33.797119 -33.801578 0.0044590137 234.67392 -0.73570422 + 447800 -33.797748 -33.801837 0.0040883984 215.16876 -0.94421406 + 447900 -33.796008 -33.802044 0.0060356884 317.6529 -1.0894062 + 448000 -33.794246 -33.802102 0.0078565922 413.48544 -1.2309369 + 448100 -33.79797 -33.801937 0.0039665847 208.75781 -1.4389464 + 448200 -33.799694 -33.801736 0.0020424565 107.49266 -1.5193927 + 448300 -33.797822 -33.801504 0.0036821226 193.78683 -1.4689539 + 448400 -33.794431 -33.801072 0.006640591 349.48838 -1.3185683 + 448500 -33.794288 -33.800434 0.0061464571 323.48255 -1.1684336 + 448600 -33.795166 -33.799766 0.0046000414 242.09608 -1.0068156 + 448700 -33.794125 -33.799156 0.0050307305 264.76286 -0.77575063 + 448800 -33.788611 -33.798433 0.0098219334 516.91959 -0.34432838 + 448900 -33.791512 -33.797697 0.0061843537 325.47702 -0.032387471 + 449000 -33.794235 -33.797344 0.003108311 163.58764 0.16829829 + 449100 -33.793152 -33.797337 0.0041852933 220.26825 0.39358439 + 449200 -33.789639 -33.797647 0.0080080454 421.45629 0.67402236 + 449300 -33.790688 -33.798114 0.0074262839 390.8387 0.82459046 + 449400 -33.793316 -33.798561 0.0052444443 276.01043 0.85017018 + 449500 -33.794688 -33.798962 0.0042742996 224.95258 0.80733596 + 449600 -33.794102 -33.799348 0.0052465236 276.11986 0.72259653 + 449700 -33.78997 -33.79971 0.0097398316 512.59865 0.59666288 + 449800 -33.792998 -33.799834 0.0068354756 359.74499 0.22622561 + 449900 -33.79671 -33.799748 0.0030372879 159.84975 -0.094708616 + 450000 -33.795842 -33.79961 0.0037681375 198.31371 -0.33540184 + 450100 -33.792883 -33.79934 0.0064572745 339.8406 -0.64006839 + 450200 -33.792501 -33.798868 0.0063669686 335.08788 -1.0624661 + 450300 -33.793231 -33.798317 0.0050854024 267.64019 -1.4707343 + 450400 -33.792859 -33.797789 0.0049292758 259.42339 -1.7998167 + 450500 -33.78836 -33.79727 0.008910697 468.96204 -2.018732 + 450600 -33.783912 -33.796516 0.012603895 663.33174 -2.2920451 + 450700 -33.791419 -33.796003 0.0045843799 241.27182 -2.6152693 + 450800 -33.791236 -33.795867 0.0046307011 243.70967 -2.615605 + 450900 -33.788796 -33.796021 0.0072257213 380.28327 -2.4216103 + 451000 -33.788484 -33.796363 0.0078795618 414.69431 -2.1107206 + 451100 -33.79328 -33.796686 0.0034054367 179.22509 -1.8769976 + 451200 -33.793707 -33.797026 0.0033194557 174.69999 -1.5732268 + 451300 -33.791346 -33.797495 0.0061494774 323.64151 -1.0935828 + 451400 -33.790509 -33.797956 0.0074476141 391.96129 -0.5132237 + 451500 -33.792055 -33.798211 0.0061553139 323.94868 -0.0022043716 + 451600 -33.793223 -33.798306 0.0050828168 267.50411 0.44280896 + 451700 -33.793324 -33.79833 0.0050052292 263.42075 0.8391922 + 451800 -33.789815 -33.798326 0.0085107995 447.91579 1.2886321 + 451900 -33.788807 -33.798227 0.0094200131 495.76689 1.7160257 + 452000 -33.794535 -33.798142 0.0036077114 189.87063 1.8290091 + 452100 -33.794552 -33.798267 0.0037156618 195.55197 1.8998948 + 452200 -33.791957 -33.798676 0.0067186906 353.5987 1.9128978 + 452300 -33.791472 -33.799324 0.0078513793 413.21109 1.7615908 + 452400 -33.794125 -33.799975 0.0058500271 307.88171 1.4820426 + 452500 -33.794601 -33.800602 0.0060008226 315.81794 1.1988234 + 452600 -33.79519 -33.801201 0.0060111086 316.35928 0.86131686 + 452700 -33.796671 -33.801681 0.0050102257 263.68371 0.50064221 + 452800 -33.798154 -33.802009 0.0038550959 202.89026 0.17305274 + 452900 -33.798295 -33.802224 0.0039282562 206.74062 -0.094756272 + 453000 -33.794196 -33.802347 0.008150087 428.93181 -0.30821402 + 453100 -33.79365 -33.802211 0.0085605374 450.53345 -0.65048806 + 453200 -33.798461 -33.801897 0.003435132 180.78793 -0.97570159 + 453300 -33.79854 -33.801613 0.0030738197 161.77239 -1.0833063 + 453400 -33.796967 -33.801318 0.004350989 228.98867 -1.0822526 + 453500 -33.795289 -33.801002 0.005712815 300.66036 -0.9880871 + 453600 -33.794094 -33.800686 0.0065923354 346.94873 -0.80056866 + 453700 -33.794579 -33.800422 0.0058424527 307.48307 -0.56610719 + 453800 -33.797065 -33.800289 0.0032235908 169.65471 -0.35070088 + 453900 -33.797521 -33.800326 0.0028046094 147.60409 -0.10890075 + 454000 -33.793425 -33.800529 0.0071045487 373.90606 0.30819662 + 454100 -33.791781 -33.800765 0.0089844634 472.8443 0.81976564 + 454200 -33.795654 -33.800823 0.0051694194 272.06193 1.127795 + 454300 -33.796173 -33.800788 0.0046154853 242.90887 1.3849834 + 454400 -33.795231 -33.800671 0.0054402387 286.31491 1.6145306 + 454500 -33.79423 -33.800425 0.0061954862 326.06291 1.7839287 + 454600 -33.79406 -33.800034 0.005973937 314.40297 1.8556375 + 454700 -33.794499 -33.799552 0.0050526564 265.9168 1.8289188 + 454800 -33.794026 -33.799047 0.005021706 264.28791 1.7303797 + 454900 -33.791732 -33.798491 0.0067589601 355.71804 1.5648957 + 455000 -33.790415 -33.797857 0.0074420022 391.66594 1.2719351 + 455100 -33.792842 -33.797337 0.0044955182 236.59511 0.87722757 + 455200 -33.794583 -33.797143 0.0025597926 134.7196 0.5642456 + 455300 -33.792867 -33.79729 0.0044225579 232.75528 0.33960208 + 455400 -33.787209 -33.797831 0.010622363 559.0455 0.066083885 + 455500 -33.791991 -33.798397 0.0064058894 337.13625 -0.37844966 + 455600 -33.794026 -33.798846 0.0048202272 253.68426 -0.62516637 + 455700 -33.793771 -33.799285 0.0055146186 290.22946 -0.74312201 + 455800 -33.792975 -33.799678 0.0067024157 352.74216 -0.77632549 + 455900 -33.794191 -33.799914 0.0057229452 301.1935 -0.7777638 + 456000 -33.796431 -33.799974 0.0035425716 186.44239 -0.74114838 + 456100 -33.796027 -33.799953 0.0039263695 206.64132 -0.58942078 + 456200 -33.791473 -33.799814 0.0083412048 438.99017 -0.23878803 + 456300 -33.791826 -33.799398 0.007571814 398.49781 0.12827505 + 456400 -33.795569 -33.798943 0.0033741651 177.5793 0.37445992 + 456500 -33.795704 -33.798644 0.0029403745 154.74928 0.63848226 + 456600 -33.787196 -33.798337 0.011140646 586.32227 1.2388126 + 456700 -33.79183 -33.797982 0.0061524495 323.79793 1.6418903 + 456800 -33.794524 -33.797868 0.0033442054 176.00255 1.8847653 + 456900 -33.79349 -33.798027 0.004536372 238.74521 2.1015154 + 457000 -33.78871 -33.798493 0.0097835364 514.8988 2.3523919 + 457100 -33.792546 -33.799042 0.0064962322 341.89091 2.3464845 + 457200 -33.795649 -33.799445 0.0037951162 199.73358 2.2423553 + 457300 -33.794736 -33.799876 0.0051399144 270.50911 2.1043036 + 457400 -33.793079 -33.800316 0.0072375232 380.90439 1.842261 + 457500 -33.794566 -33.8006 0.0060341906 317.57407 1.4190191 + 457600 -33.798007 -33.800681 0.0026740949 140.73523 0.9941096 + 457700 -33.798155 -33.800701 0.002545438 133.96413 0.67040603 + 457800 -33.792553 -33.800667 0.0081132417 426.99267 0.28246855 + 457900 -33.793056 -33.800393 0.0073369088 386.13497 -0.42405583 + 458000 -33.795802 -33.80001 0.0042077712 221.45125 -1.0399015 + 458100 -33.79595 -33.799686 0.0037365601 196.65183 -1.4675329 + 458200 -33.790636 -33.799371 0.0087348766 459.70876 -1.8021471 + 458300 -33.790269 -33.798963 0.0086943606 457.57645 -2.2836936 + 458400 -33.793566 -33.798699 0.0051328438 270.13699 -2.6296243 + 458500 -33.793619 -33.798651 0.0050320662 264.83316 -2.7320878 + 458600 -33.792488 -33.798795 0.0063064126 331.90087 -2.6509749 + 458700 -33.791768 -33.799059 0.0072910428 383.72108 -2.4181736 + 458800 -33.79505 -33.799306 0.0042563709 224.009 -2.1715013 + 458900 -33.796469 -33.799508 0.0030390341 159.94166 -1.8753301 + 459000 -33.794289 -33.799727 0.0054389413 286.24663 -1.404596 + 459100 -33.789856 -33.79987 0.01001367 527.01052 -0.62785141 + 459200 -33.794193 -33.799713 0.005520451 290.53641 -0.015067756 + 459300 -33.795398 -33.799442 0.0040445252 212.85975 0.48100845 + 459400 -33.794405 -33.799114 0.0047098435 247.87486 0.98848373 + 459500 -33.792071 -33.798702 0.0066310684 348.98721 1.5447877 + 459600 -33.790821 -33.798209 0.0073881403 388.83123 2.0669108 + 459700 -33.793929 -33.797826 0.003896816 205.08595 2.3574228 + 459800 -33.79568 -33.797768 0.0020887456 109.92882 2.4421644 + 459900 -33.793536 -33.798056 0.0045197494 237.87038 2.4282197 + 460000 -33.789457 -33.798767 0.009310081 489.98126 2.2371485 + 460100 -33.792765 -33.799496 0.0067309861 354.24579 1.7718552 + 460200 -33.794989 -33.800037 0.0050483636 265.69087 1.30653 + 460300 -33.795268 -33.800458 0.0051894565 273.11647 0.83896904 + 460400 -33.794409 -33.800746 0.0063378318 333.55443 0.31541773 + 460500 -33.792029 -33.800813 0.0087841604 462.30253 -0.30107834 + 460600 -33.795169 -33.80056 0.0053903538 283.68951 -1.0262977 + 460700 -33.797304 -33.800205 0.0029007948 152.66624 -1.5279905 + 460800 -33.795879 -33.799815 0.0039357402 207.13449 -1.870533 + 460900 -33.791493 -33.799179 0.0076865558 404.53657 -2.2233251 + 461000 -33.792394 -33.798386 0.0059918335 315.34485 -2.6281234 + 461100 -33.793441 -33.797747 0.0043058292 226.61195 -2.8552279 + 461200 -33.791322 -33.797318 0.0059959393 315.56094 -2.8410212 + 461300 -33.784569 -33.796945 0.012376132 651.34478 -2.5256149 + 461400 -33.791153 -33.7967 0.0055469118 291.92902 -2.3411069 + 461500 -33.79208 -33.796705 0.0046252087 243.42061 -1.9874212 + 461600 -33.790939 -33.796898 0.0059587245 313.60235 -1.4594005 + 461700 -33.789523 -33.797161 0.0076379885 401.98052 -0.76681628 + 461800 -33.792624 -33.79733 0.004705718 247.65774 -0.15245159 + 461900 -33.794766 -33.797422 0.0026560275 139.78436 0.27561426 + 462000 -33.793191 -33.797548 0.0043568967 229.29959 0.7339522 + 462100 -33.788472 -33.797667 0.0091951374 483.93188 1.3925235 + 462200 -33.790904 -33.797595 0.0066902667 352.10277 1.8757624 + 462300 -33.792574 -33.797448 0.004874717 256.55201 2.1863859 + 462400 -33.792347 -33.797351 0.0050045928 263.38725 2.384761 + 462500 -33.78986 -33.797336 0.0074763521 393.47374 2.5010358 + 462600 -33.783635 -33.797358 0.013722898 722.22388 2.5462554 + 462700 -33.792834 -33.797345 0.0045107046 237.39436 2.1801664 + 462800 -33.793746 -33.797474 0.0037285579 196.23068 1.9338128 + 462900 -33.791368 -33.797814 0.0064460044 339.24746 1.6220424 + 463000 -33.789158 -33.798296 0.0091383017 480.94067 1.1147991 + 463100 -33.794958 -33.798636 0.0036787397 193.60879 0.49075192 + 463200 -33.795908 -33.79888 0.0029724204 156.43584 0.13603991 + 463300 -33.794025 -33.799181 0.0051560552 271.35859 -0.17988184 + 463400 -33.792057 -33.799451 0.0073944262 389.16206 -0.54070001 + 463500 -33.793637 -33.799523 0.0058861672 309.78373 -0.92259154 + 463600 -33.796855 -33.799449 0.0025935827 136.49795 -1.192134 + 463700 -33.798338 -33.799413 0.0010749174 56.571942 -1.2658398 + 463800 -33.797277 -33.799472 0.0021948179 115.51131 -1.168809 + 463900 -33.795123 -33.799608 0.004485717 236.07929 -0.88452588 + 464000 -33.792719 -33.799702 0.0069832893 367.52429 -0.43196517 + 464100 -33.792528 -33.799631 0.0071029888 373.82397 0.094786403 + 464200 -33.795454 -33.799441 0.0039867172 209.81737 0.52029175 + 464300 -33.796486 -33.799305 0.0028198794 148.40774 0.88232407 + 464400 -33.792467 -33.799259 0.0067921907 357.46694 1.3737609 + 464500 -33.789815 -33.799218 0.0094031449 494.87913 2.0140989 + 464600 -33.794158 -33.799191 0.0050330006 264.88233 2.3695508 + 464700 -33.795013 -33.799294 0.0042807945 225.29439 2.6022204 + 464800 -33.793424 -33.799575 0.0061505294 323.69688 2.7686109 + 464900 -33.787678 -33.800039 0.012361014 650.54913 2.90122 + 465000 -33.793402 -33.80048 0.0070779479 372.50609 2.6771313 + 465100 -33.797067 -33.800718 0.0036511146 192.1549 2.4391773 + 465200 -33.796223 -33.800953 0.0047300702 248.93937 2.1877246 + 465300 -33.792562 -33.801178 0.0086156488 453.43391 1.8052384 + 465400 -33.794552 -33.801214 0.0066618605 350.60778 1.1780647 + 465500 -33.798649 -33.801107 0.0024580048 129.3626 0.66140182 + 465600 -33.798177 -33.801004 0.0028262237 148.74163 0.30327736 + 465700 -33.796228 -33.800867 0.0046383634 244.11293 -0.10721163 + 465800 -33.794397 -33.800643 0.0062462166 328.73281 -0.59734161 + 465900 -33.793867 -33.800333 0.0064662228 340.31154 -1.1041859 + 466000 -33.795292 -33.800026 0.0047338902 249.14042 -1.5362557 + 466100 -33.797247 -33.799864 0.0026173017 137.74626 -1.7912505 + 466200 -33.796486 -33.799895 0.0034095017 179.43903 -1.8244748 + 466300 -33.791163 -33.800108 0.0089452025 470.77803 -1.6102567 + 466400 -33.792952 -33.800318 0.0073659601 387.66391 -1.3938943 + 466500 -33.795827 -33.800411 0.0045836498 241.2334 -1.1592432 + 466600 -33.795685 -33.800438 0.004752567 250.12336 -0.81385959 + 466700 -33.794574 -33.800367 0.005793647 304.91447 -0.35526479 + 466800 -33.7942 -33.800124 0.0059236626 311.75708 0.16316397 + 466900 -33.794331 -33.799698 0.0053663336 282.42535 0.6784028 + 467000 -33.794069 -33.799123 0.0050537192 265.97273 1.1849281 + 467100 -33.792887 -33.798398 0.0055116784 290.07472 1.7011841 + 467200 -33.787561 -33.797406 0.0098447436 518.12007 2.3319253 + 467300 -33.78482 -33.795764 0.01094403 575.97456 3.0385741 + 467400 -33.79149 -33.794591 0.0031005734 163.18041 3.2650476 + 467500 -33.790838 -33.793936 0.0030987125 163.08248 3.4124197 + 467600 -33.78745 -33.79353 0.0060799146 319.98048 3.4621552 + 467700 -33.785739 -33.793363 0.0076239172 401.23996 3.2896132 + 467800 -33.788054 -33.793445 0.0053902109 283.68199 2.894943 + 467900 -33.790557 -33.793717 0.003159584 166.28609 2.4604664 + 468000 -33.79235 -33.79411 0.0017599226 92.623158 2.0581958 + 468100 -33.79252 -33.794613 0.0020932447 110.1656 1.6950439 + 468200 -33.787184 -33.795459 0.0082745278 435.48102 1.2205984 + 468300 -33.787771 -33.796385 0.0086143633 453.36626 0.34256984 + 468400 -33.792072 -33.796815 0.0047428476 249.61184 -0.42761785 + 468500 -33.792718 -33.797015 0.0042972217 226.15895 -0.96397821 + 468600 -33.790725 -33.79713 0.006404989 337.08886 -1.4250878 + 468700 -33.783589 -33.797094 0.013505492 710.78197 -1.8748655 + 468800 -33.792021 -33.79681 0.0047890829 252.04516 -2.5465944 + 468900 -33.793618 -33.796722 0.003104693 163.39722 -2.7600366 + 469000 -33.791274 -33.79692 0.005646701 297.18084 -2.7220678 + 469100 -33.788278 -33.797433 0.0091547583 481.80676 -2.4855651 + 469200 -33.792679 -33.798009 0.0053304995 280.53943 -2.2772547 + 469300 -33.794699 -33.798515 0.0038159861 200.83195 -2.0014763 + 469400 -33.793842 -33.799099 0.0052571584 276.67956 -1.5780983 + 469500 -33.792978 -33.799705 0.0067269084 354.03119 -1.0420199 + 469600 -33.794368 -33.800147 0.0057792421 304.15636 -0.51550175 + 469700 -33.797502 -33.800358 0.0028561662 150.31748 -0.13860024 + 469800 -33.79848 -33.800456 0.0019768805 104.04146 0.13791266 + 469900 -33.794538 -33.800543 0.0060043496 316.00356 0.52814592 + 470000 -33.792153 -33.800498 0.0083448724 439.18319 1.0181348 + 470100 -33.795528 -33.800269 0.0047412037 249.52532 1.2901272 + 470200 -33.796664 -33.800061 0.0033974995 178.80737 1.4589736 + 470300 -33.793376 -33.799923 0.0065472235 344.57453 1.6211542 + 470400 -33.789279 -33.799784 0.010504574 552.84638 1.7310909 + 470500 -33.793856 -33.799706 0.0058500386 307.88231 1.5832544 + 470600 -33.794774 -33.799795 0.005021569 264.2807 1.4268556 + 470700 -33.794209 -33.800066 0.0058572947 308.2642 1.2186401 + 470800 -33.793381 -33.800485 0.00710437 373.89666 0.92771429 + 470900 -33.795826 -33.800912 0.0050856021 267.6507 0.53325312 + 471000 -33.797862 -33.801234 0.0033715765 177.44306 0.20588356 + 471100 -33.796875 -33.801517 0.0046415205 244.27908 -0.057553602 + 471200 -33.791321 -33.801744 0.010422923 548.54915 -0.33901792 + 471300 -33.795529 -33.801658 0.0061287766 322.55205 -0.85361504 + 471400 -33.798555 -33.801418 0.0028630945 150.68211 -1.1620398 + 471500 -33.797443 -33.801108 0.0036656333 192.91901 -1.3177711 + 471600 -33.794436 -33.80062 0.0061835245 325.43338 -1.4100667 + 471700 -33.793015 -33.799901 0.0068855713 362.38147 -1.4911123 + 471800 -33.794194 -33.79916 0.0049661211 261.36252 -1.5342302 + 471900 -33.795635 -33.798649 0.0030144934 158.6501 -1.4848384 + 472000 -33.794705 -33.798448 0.0037436593 197.02545 -1.2879796 + 472100 -33.789956 -33.798541 0.0085844739 451.79321 -0.80953793 + 472200 -33.791586 -33.798864 0.0072775747 383.01226 -0.30941825 + 472300 -33.795218 -33.799242 0.0040244491 211.80316 0.055050967 + 472400 -33.795264 -33.799693 0.00442926 233.108 0.43133274 + 472500 -33.79307 -33.800249 0.0071788213 377.81496 0.88067129 + 472600 -33.788807 -33.800778 0.011971311 630.03942 1.4187328 + 472700 -33.795311 -33.800998 0.005687073 299.30558 1.679386 + 472800 -33.797848 -33.801001 0.0031530292 165.94111 1.801983 + 472900 -33.796574 -33.800958 0.0043831562 230.6816 1.8863492 + 473000 -33.792225 -33.800805 0.0085800612 451.56097 1.9338654 + 473100 -33.793863 -33.800453 0.0065899383 346.82257 1.7536724 + 473200 -33.797039 -33.800123 0.0030846658 162.34321 1.5018064 + 473300 -33.797323 -33.799939 0.0026154648 137.64958 1.2783374 + 473400 -33.791167 -33.799826 0.0086586115 455.695 1.0063048 + 473500 -33.791623 -33.79964 0.0080166924 421.91137 0.41293707 + 473600 -33.795679 -33.79947 0.0037911841 199.52664 -0.11506714 + 473700 -33.795751 -33.799409 0.0036581088 192.523 -0.45079123 + 473800 -33.791312 -33.799409 0.0080970496 426.1405 -0.70876267 + 473900 -33.790304 -33.799284 0.0089795327 472.5848 -1.0799581 + 474000 -33.794736 -33.79905 0.0043139625 227.04 -1.4003535 + 474100 -33.794499 -33.798839 0.0043400723 228.41414 -1.4742882 + 474200 -33.792485 -33.798606 0.0061213738 322.16244 -1.3888416 + 474300 -33.7905 -33.798269 0.0077696416 408.90931 -1.1585055 + 474400 -33.792923 -33.797863 0.0049406383 260.02139 -0.90417536 + 474500 -33.795443 -33.797624 0.0021805033 114.75794 -0.65456278 + 474600 -33.794592 -33.7976 0.0030070198 158.25677 -0.29110636 + 474700 -33.789059 -33.797729 0.0086702333 456.30665 0.47109479 + 474800 -33.791187 -33.797793 0.0066058151 347.65815 1.1944157 + 474900 -33.793763 -33.797793 0.0040298924 212.08964 1.7245745 + 475000 -33.793607 -33.797835 0.0042279958 222.51565 2.1741562 + 475100 -33.786905 -33.79793 0.01102499 580.2354 2.7638364 + 475200 -33.789692 -33.797888 0.0081961375 431.35541 3.1816017 + 475300 -33.793302 -33.797815 0.0045135319 237.54316 3.3135286 + 475400 -33.792781 -33.797868 0.0050873767 267.7441 3.3381915 + 475500 -33.790829 -33.798059 0.0072301738 380.5176 3.2159217 + 475600 -33.791184 -33.798334 0.0071498233 376.28882 2.864852 + 475700 -33.795537 -33.798591 0.0030532654 160.69063 2.3952146 + 475800 -33.795901 -33.798892 0.0029913627 157.43275 2.0072951 + 475900 -33.791993 -33.799365 0.0073716054 387.96102 1.505317 + 476000 -33.791073 -33.799852 0.0087791139 462.03693 0.67767192 + 476100 -33.793962 -33.800052 0.0060896582 320.49328 -0.13817629 + 476200 -33.795251 -33.800074 0.0048235208 253.8576 -0.78577981 + 476300 -33.794962 -33.800009 0.0050466124 265.59871 -1.3036088 + 476400 -33.790582 -33.799857 0.0092752846 488.14996 -1.7264845 + 476500 -33.790679 -33.799505 0.0088257334 464.49047 -2.2509455 + 476600 -33.796023 -33.799237 0.0032138424 169.14166 -2.596835 + 476700 -33.79544 -33.799215 0.0037749761 198.67363 -2.6059237 + 476800 -33.792532 -33.799435 0.0069027016 363.28303 -2.3747034 + 476900 -33.792251 -33.799828 0.0075765422 398.74666 -1.9941669 + 477000 -33.795143 -33.800226 0.0050832462 267.52672 -1.6122053 + 477100 -33.796032 -33.800604 0.0045722749 240.63475 -1.1831324 + 477200 -33.795472 -33.800997 0.0055248862 290.76983 -0.65800305 + 477300 -33.795072 -33.801342 0.0062691502 329.93978 -0.085635924 + 477400 -33.795862 -33.801553 0.0056910374 299.51422 0.44955557 + 477500 -33.797292 -33.801626 0.0043336601 228.07667 0.87999128 + 477600 -33.797464 -33.801616 0.004151898 218.51069 1.2246033 + 477700 -33.793491 -33.801529 0.0080385647 423.06249 1.617041 + 477800 -33.792492 -33.801251 0.0087585394 460.95412 1.9381903 + 477900 -33.797543 -33.800942 0.0033989605 178.88426 1.971021 + 478000 -33.797749 -33.800774 0.0030246391 159.18406 1.9490254 + 478100 -33.79622 -33.800715 0.0044954091 236.58937 1.8191427 + 478200 -33.794493 -33.800749 0.0062556003 329.22666 1.5269908 + 478300 -33.79408 -33.800834 0.0067540629 355.4603 1.0733624 + 478400 -33.796592 -33.800927 0.0043354744 228.17215 0.53033652 + 478500 -33.799 -33.801035 0.0020349589 107.09807 0.10551022 + 478600 -33.798112 -33.801214 0.0031023952 163.27629 -0.21190335 + 478700 -33.792771 -33.8015 0.0087287651 459.38712 -0.63353595 + 478800 -33.794824 -33.801616 0.0067912161 357.41565 -1.2578726 + 478900 -33.797339 -33.80153 0.0041905193 220.54329 -1.7223466 + 479000 -33.797242 -33.801353 0.0041103431 216.32369 -2.008211 + 479100 -33.79076 -33.801002 0.010242172 539.03638 -2.1318159 + 479200 -33.791859 -33.800245 0.0083857148 441.33269 -2.3812166 + 479300 -33.795157 -33.799537 0.0043793922 230.4835 -2.5209819 + 479400 -33.794652 -33.798957 0.0043054079 226.58978 -2.4452729 + 479500 -33.792007 -33.798426 0.0064192274 337.83821 -2.1694987 + 479600 -33.789947 -33.797905 0.0079576767 418.80543 -1.727106 + 479700 -33.793981 -33.797534 0.0035528626 186.98399 -1.3497122 + 479800 -33.795648 -33.797495 0.0018467664 97.193669 -1.0583517 + 479900 -33.793601 -33.797741 0.0041395802 217.86241 -0.63971396 + 480000 -33.790449 -33.798205 0.0077560677 408.19492 -0.015004083 + 480100 -33.792044 -33.798544 0.0065003784 342.10912 0.51411487 + 480200 -33.794254 -33.798666 0.0044123334 232.21717 0.87375898 + 480300 -33.794453 -33.798666 0.0042126718 221.70916 1.1432697 + 480400 -33.787699 -33.798496 0.010796479 568.20905 1.4945146 + 480500 -33.790169 -33.797864 0.007695556 405.01025 1.6130063 + 480600 -33.793938 -33.797224 0.003286496 172.96535 1.5590124 + 480700 -33.793236 -33.796701 0.0034651335 182.36689 1.4699411 + 480800 -33.790042 -33.796137 0.0060944179 320.74378 1.2666372 + 480900 -33.789356 -33.795542 0.0061860488 325.56623 0.85552323 + 481000 -33.789797 -33.79514 0.0053430105 281.19788 0.35865522 + 481100 -33.789444 -33.795063 0.0056187499 295.7098 -0.14335459 + 481200 -33.786275 -33.795379 0.0091036004 479.11437 -0.65073526 + 481300 -33.788405 -33.796032 0.0076271953 401.41249 -1.2959355 + 481400 -33.792694 -33.796714 0.0040191288 211.52316 -1.7356768 + 481500 -33.79259 -33.797551 0.0049614273 261.1155 -1.9285904 + 481600 -33.790734 -33.798628 0.007894132 415.46112 -1.992303 + 481700 -33.793523 -33.799662 0.0061386756 323.07302 -2.0471044 + 481800 -33.797041 -33.800275 0.0032343263 170.21971 -2.037949 + 481900 -33.796349 -33.800758 0.0044091778 232.0511 -1.8588502 + 482000 -33.79219 -33.801209 0.0090189663 474.66015 -1.4632794 + 482100 -33.794681 -33.80139 0.0067085076 353.06277 -1.0872974 + 482200 -33.799099 -33.801339 0.0022403247 117.90629 -0.87720726 + 482300 -33.798159 -33.801285 0.0031261521 164.5266 -0.5646877 + 482400 -33.794989 -33.801206 0.0062171824 327.20477 -0.074135067 + 482500 -33.793962 -33.801043 0.0070806099 372.64618 0.48089279 + 482600 -33.795815 -33.80086 0.0050450529 265.51664 0.9227182 + 482700 -33.797971 -33.800785 0.0028134375 148.0687 1.211721 + 482800 -33.798959 -33.800873 0.0019135094 100.70629 1.3734129 + 482900 -33.796293 -33.801169 0.0048763578 256.63836 1.5155823 + 483000 -33.79252 -33.801684 0.0091639999 482.29314 1.6087584 + 483100 -33.796249 -33.802034 0.0057847864 304.44815 1.4652543 + 483200 -33.798134 -33.802175 0.004040663 212.65649 1.2884519 + 483300 -33.797229 -33.802192 0.0049624031 261.16685 1.0862178 + 483400 -33.789999 -33.801981 0.011981857 630.59443 0.85480177 + 483500 -33.791917 -33.801141 0.0092241996 485.4614 0.21521446 + 483600 -33.79689 -33.800368 0.0034775357 183.0196 -0.26954798 + 483700 -33.795706 -33.799655 0.0039482814 207.79453 -0.59150949 + 483800 -33.791734 -33.798773 0.0070385068 370.43033 -0.94724243 + 483900 -33.790637 -33.797772 0.0071355705 375.53871 -1.40149 + 484000 -33.792797 -33.797066 0.0042691882 224.68357 -1.7907135 + 484100 -33.794512 -33.796857 0.002344872 123.40852 -1.982532 + 484200 -33.794162 -33.797093 0.002930728 154.2416 -1.9686565 + 484300 -33.788327 -33.797833 0.0095059493 500.28963 -1.6694863 + 484400 -33.790707 -33.798704 0.0079972444 420.88784 -1.3785163 + 484500 -33.794405 -33.799199 0.0047944185 252.32597 -1.1273938 + 484600 -33.794498 -33.799507 0.0050089976 263.61908 -0.7838195 + 484700 -33.793417 -33.799652 0.0062344748 328.11485 -0.34517964 + 484800 -33.791526 -33.799546 0.0080195716 422.0629 0.19294093 + 484900 -33.792264 -33.799112 0.0068473583 360.37036 0.72082699 + 485000 -33.795329 -33.798603 0.0032745117 172.33463 1.0799925 + 485100 -33.795187 -33.798215 0.003027744 159.34747 1.4009182 + 485200 -33.790806 -33.797824 0.0070177839 369.33971 1.854393 + 485300 -33.790289 -33.797383 0.0070944001 373.37195 2.270618 + 485400 -33.792244 -33.797092 0.0048476523 255.12762 2.5118717 + 485500 -33.792774 -33.797042 0.0042683745 224.64074 2.6355968 + 485600 -33.788468 -33.79724 0.0087721996 461.67304 2.7355223 + 485700 -33.787941 -33.79756 0.009619761 506.27944 2.6231786 + 485800 -33.793524 -33.797764 0.0042396889 223.13105 2.3225802 + 485900 -33.793517 -33.797993 0.0044756802 235.55105 2.0662458 + 486000 -33.79127 -33.798266 0.0069962091 368.20424 1.7143205 + 486100 -33.78985 -33.798442 0.0085917261 452.17488 1.1836868 + 486200 -33.795057 -33.798415 0.0033580489 176.73112 0.57513893 + 486300 -33.795758 -33.798382 0.002623395 138.06694 0.19527792 + 486400 -33.792693 -33.798384 0.0056916345 299.54565 -0.17343247 + 486500 -33.790446 -33.798296 0.0078493598 413.1048 -0.70502434 + 486600 -33.79251 -33.798078 0.0055677147 293.02386 -1.2595076 + 486700 -33.793468 -33.797885 0.0044172448 232.47565 -1.638612 + 486800 -33.791283 -33.797785 0.0065025603 342.22395 -1.8456786 + 486900 -33.783205 -33.797671 0.014465956 761.33035 -1.9121962 + 487000 -33.791976 -33.797494 0.0055175127 290.38177 -2.1646658 + 487100 -33.79302 -33.797498 0.0044785915 235.70428 -2.1044716 + 487200 -33.791719 -33.797709 0.0059902073 315.25927 -1.8446222 + 487300 -33.789322 -33.798069 0.0087467424 460.33325 -1.3742217 + 487400 -33.793499 -33.798382 0.0048836845 257.02396 -0.96184028 + 487500 -33.795704 -33.798618 0.0029134944 153.33461 -0.62804806 + 487600 -33.794066 -33.798925 0.004859346 255.74304 -0.18491739 + 487700 -33.790396 -33.799285 0.0088896633 467.85505 0.44825973 + 487800 -33.793019 -33.799455 0.0064354154 338.69017 0.95670258 + 487900 -33.794338 -33.799456 0.0051185336 269.38386 1.334971 + 488000 -33.793949 -33.799389 0.0054402544 286.31574 1.6497607 + 488100 -33.792941 -33.799259 0.0063178755 332.50415 1.8920529 + 488200 -33.79245 -33.799062 0.0066125813 348.01426 2.0207531 + 488300 -33.793957 -33.798853 0.0048962836 257.68704 1.982251 + 488400 -33.795336 -33.79874 0.0034049277 179.19831 1.8358027 + 488500 -33.793698 -33.798776 0.0050772539 267.21134 1.6249563 + 488600 -33.788732 -33.798936 0.010204479 537.05262 1.2435915 + 488700 -33.793246 -33.799066 0.0058200305 306.30301 0.59392523 + 488800 -33.795199 -33.799213 0.004013947 211.25045 0.11063002 + 488900 -33.794298 -33.799474 0.0051763457 272.42645 -0.32587009 + 489000 -33.793053 -33.799828 0.0067744631 356.53395 -0.80065003 + 489100 -33.794148 -33.800167 0.0060191094 316.78036 -1.3051365 + 489200 -33.797966 -33.800401 0.0024349711 128.15036 -1.6962808 + 489300 -33.798256 -33.800616 0.0023598466 124.19662 -1.8496478 + 489400 -33.794959 -33.800923 0.0059642705 313.89424 -1.8713 + 489500 -33.79386 -33.801182 0.007322122 385.35675 -1.8741079 + 489600 -33.795797 -33.801206 0.0054089314 284.66723 -1.8596783 + 489700 -33.796997 -33.801073 0.0040762882 214.53141 -1.7687493 + 489800 -33.795319 -33.800834 0.0055151046 290.25504 -1.5409903 + 489900 -33.789174 -33.800287 0.011113765 584.90755 -1.0529779 + 490000 -33.794344 -33.799499 0.0051545407 271.27888 -0.75005602 + 490100 -33.795728 -33.798921 0.0031927983 168.03413 -0.45715994 + 490200 -33.794447 -33.798477 0.0040303683 212.11469 -0.0842838 + 490300 -33.792501 -33.798125 0.0056238181 295.97653 0.37576842 + 490400 -33.791436 -33.797894 0.0064579454 339.87591 0.85122294 + 490500 -33.791934 -33.797817 0.005883138 309.62431 1.2382214 + 490600 -33.794619 -33.797896 0.003276624 172.4458 1.4460443 + 490700 -33.796014 -33.798123 0.0021091421 111.00227 1.5096807 + 490800 -33.793645 -33.798567 0.0049217358 259.02657 1.5210952 + 490900 -33.789579 -33.799241 0.0096623652 508.52166 1.4089169 + 491000 -33.793205 -33.799662 0.0064570133 339.82685 1.0506477 + 491100 -33.794981 -33.799799 0.0048175864 253.54527 0.69942729 + 491200 -33.794802 -33.79977 0.0049677275 261.44707 0.33720529 + 491300 -33.791658 -33.799552 0.0078944827 415.47958 -0.073842719 + 491400 -33.786093 -33.798853 0.012759727 671.53306 -0.68970973 + 491500 -33.79438 -33.798005 0.0036252257 190.79239 -1.4362787 + 491600 -33.794581 -33.797489 0.0029082484 153.05852 -1.8073463 + 491700 -33.791905 -33.797154 0.0052487699 276.23808 -2.1080373 + 491800 -33.789644 -33.797008 0.0073646675 387.59588 -2.4087021 + 491900 -33.790997 -33.797104 0.0061067534 321.39298 -2.6587 + 492000 -33.79319 -33.797427 0.004237434 223.01237 -2.7513994 + 492100 -33.795774 -33.797882 0.0021078682 110.93522 -2.7042681 + 492200 -33.796269 -33.798395 0.0021258497 111.88157 -2.5217141 + 492300 -33.792171 -33.799171 0.0070004215 368.42594 -2.0515607 + 492400 -33.790806 -33.800022 0.0092160031 485.03002 -1.3547177 + 492500 -33.794667 -33.800333 0.0056661245 298.20308 -0.81534863 + 492600 -33.796003 -33.800291 0.0042881591 225.68199 -0.32903555 + 492700 -33.794904 -33.800022 0.0051172614 269.31691 0.19240711 + 492800 -33.787729 -33.799325 0.011595915 610.28267 0.98176179 + 492900 -33.791869 -33.798067 0.0061985742 326.22543 1.6101941 + 493000 -33.794581 -33.797166 0.002584547 136.0224 1.946408 + 493100 -33.793613 -33.796532 0.0029189264 153.62049 2.2203631 + 493200 -33.790538 -33.796059 0.0055210744 290.56922 2.4756777 + 493300 -33.788241 -33.795813 0.007572282 398.52245 2.6146967 + 493400 -33.789991 -33.795893 0.005901183 310.574 2.5274286 + 493500 -33.793023 -33.796256 0.0032330481 170.15244 2.3048641 + 493600 -33.794308 -33.79682 0.0025117074 132.18892 2.0447973 + 493700 -33.793436 -33.797607 0.00417064 219.49706 1.7345201 + 493800 -33.787552 -33.798789 0.011236695 591.37725 1.2702638 + 493900 -33.793301 -33.799724 0.0064230463 338.0392 0.4700346 + 494000 -33.795914 -33.800128 0.004214796 221.82096 -0.072313153 + 494100 -33.795273 -33.800334 0.0050608439 266.3477 -0.51649802 + 494200 -33.792556 -33.800337 0.0077817317 409.5456 -0.97473749 + 494300 -33.790701 -33.799978 0.0092773223 488.2572 -1.505114 + 494400 -33.796036 -33.799439 0.0034032091 179.10786 -2.0164387 + 494500 -33.796809 -33.799136 0.0023270024 122.46806 -2.2054915 + 494600 -33.79379 -33.799045 0.0052552033 276.57666 -2.1800035 + 494700 -33.791602 -33.799161 0.0075586687 397.80599 -2.0173979 + 494800 -33.793472 -33.799448 0.0059758639 314.50439 -1.8056844 + 494900 -33.795451 -33.799859 0.0044081444 231.99671 -1.5262892 + 495000 -33.79659 -33.800369 0.0037795071 198.91209 -1.1920247 + 495100 -33.797312 -33.80092 0.0036082347 189.89817 -0.8329974 + 495200 -33.795434 -33.80152 0.0060865831 320.33144 -0.36426492 + 495300 -33.792728 -33.802109 0.0093803638 493.68018 0.24651075 + 495400 -33.797819 -33.802363 0.0045434328 239.11682 0.63249254 + 495500 -33.799257 -33.802389 0.0031317223 164.81975 0.89963694 + 495600 -33.797704 -33.80231 0.0046059265 242.4058 1.1692152 + 495700 -33.79595 -33.80205 0.0061009616 321.08817 1.4220037 + 495800 -33.795961 -33.801593 0.005631612 296.38671 1.5683794 + 495900 -33.795958 -33.801019 0.0050608056 266.34569 1.6184194 + 496000 -33.793705 -33.800342 0.0066366464 349.28078 1.6184212 + 496100 -33.78689 -33.799279 0.012389308 652.03825 1.5691702 + 496200 -33.793843 -33.79818 0.004337179 228.26186 1.1849959 + 496300 -33.79472 -33.797591 0.0028710172 151.09908 0.94601012 + 496400 -33.792898 -33.797287 0.0043888735 230.9825 0.68526075 + 496500 -33.790164 -33.797222 0.0070588789 371.5025 0.31965575 + 496600 -33.790562 -33.797352 0.0067901646 357.36031 -0.14484193 + 496700 -33.793187 -33.797603 0.0044160819 232.41445 -0.56364697 + 496800 -33.796005 -33.797921 0.0019160976 100.84251 -0.83174991 + 496900 -33.796503 -33.798306 0.0018033379 94.908068 -0.91968336 + 497000 -33.792899 -33.798949 0.0060503334 318.42365 -0.86160396 + 497100 -33.791427 -33.79973 0.0083025199 436.95422 -0.78414672 + 497200 -33.794778 -33.800128 0.0053500381 281.56773 -0.76532582 + 497300 -33.796433 -33.800235 0.0038023467 200.11412 -0.69659034 + 497400 -33.795274 -33.80019 0.0049166836 258.76067 -0.53459204 + 497500 -33.789064 -33.799873 0.010809093 568.87291 -0.18237737 + 497600 -33.793176 -33.799154 0.0059783495 314.6352 0.0031646082 + 497700 -33.795614 -33.798561 0.0029473425 155.11601 0.14674308 + 497800 -33.794825 -33.798113 0.0032881841 173.0542 0.34845709 + 497900 -33.792159 -33.797752 0.0055928179 294.34502 0.63127154 + 498000 -33.789976 -33.797478 0.007502642 394.85736 0.95650602 + 498100 -33.79165 -33.797366 0.0057159153 300.82352 1.1714975 + 498200 -33.794833 -33.797488 0.0026545995 139.7092 1.25573 + 498300 -33.79592 -33.797837 0.0019176708 100.9253 1.2830206 + 498400 -33.791986 -33.798547 0.0065606679 345.2821 1.3321137 + 498500 -33.789136 -33.799727 0.010591122 557.40131 1.2583555 + 498600 -33.794969 -33.800474 0.0055050627 289.72654 0.98060899 + 498700 -33.796408 -33.800895 0.0044870749 236.15075 0.77281396 + 498800 -33.795704 -33.801162 0.0054586382 287.28326 0.56470471 + 498900 -33.791939 -33.801234 0.0092952199 489.19913 0.32860046 + 499000 -33.79298 -33.800905 0.0079252178 417.09714 -0.098527294 + 499100 -33.797661 -33.80045 0.002789143 146.79011 -0.477742 + 499200 -33.797186 -33.800064 0.0028780355 151.46844 -0.69068464 + 499300 -33.794207 -33.7996 0.0053923962 283.797 -0.90044869 + 499400 -33.793006 -33.799047 0.006041063 317.93576 -1.1690554 + 499500 -33.792927 -33.79857 0.0056427281 296.97175 -1.4149158 + 499600 -33.792475 -33.798298 0.0058231127 306.46523 -1.5791636 + 499700 -33.790133 -33.798284 0.0081507645 428.96747 -1.6259859 + 499800 -33.791456 -33.798505 0.0070493371 371.00032 -1.6650833 + 499900 -33.79515 -33.798858 0.0037082411 195.16142 -1.6710642 + 500000 -33.795213 -33.79935 0.0041369563 217.72432 -1.5358968 + 500100 -33.790671 -33.80005 0.0093793794 493.62837 -1.2060948 + 500200 -33.790602 -33.800753 0.010150263 534.19927 -0.82472119 + 500300 -33.797324 -33.800979 0.0036555384 192.38772 -0.69143112 + 500400 -33.796677 -33.801053 0.0043762398 230.3176 -0.44798322 + 500500 -33.793354 -33.800965 0.0076115174 400.58737 -0.092736656 + 500600 -33.79318 -33.800557 0.0073774251 388.2673 0.24059755 + 500700 -33.797402 -33.800047 0.0026456411 139.23773 0.39270414 + 500800 -33.798177 -33.799729 0.0015520985 81.68556 0.50420556 + 500900 -33.795093 -33.799486 0.004393028 231.20115 0.66780941 + 501000 -33.793205 -33.799235 0.0060302865 317.3686 0.80314459 + 501100 -33.792466 -33.799056 0.0065900895 346.83053 0.87261324 + 501200 -33.793383 -33.799006 0.0056231555 295.94166 0.84918497 + 501300 -33.794735 -33.799125 0.0043899971 231.04163 0.765612 + 501400 -33.79482 -33.799411 0.0045906831 241.60356 0.66200274 + 501500 -33.791889 -33.799874 0.0079844176 420.21278 0.54848392 + 501600 -33.791872 -33.800398 0.0085256349 448.69656 0.30004969 + 501700 -33.79702 -33.800698 0.0036775283 193.54504 -0.011100734 + 501800 -33.796995 -33.800895 0.0038996869 205.23705 -0.1910834 + 501900 -33.79447 -33.801032 0.0065618419 345.34388 -0.35576457 + 502000 -33.793276 -33.800963 0.0076868778 404.55352 -0.59260286 + 502100 -33.798343 -33.80069 0.0023473757 123.54029 -0.899509 + 502200 -33.799092 -33.800501 0.00140919 74.164413 -1.0026326 + 502300 -33.79728 -33.800324 0.0030449067 160.25073 -1.0197782 + 502400 -33.794522 -33.800074 0.005552449 292.22044 -0.98620897 + 502500 -33.792593 -33.799724 0.0071308492 375.29023 -0.91357966 + 502600 -33.793494 -33.799351 0.0058570281 308.25017 -0.84502874 + 502700 -33.795762 -33.799128 0.0033658292 177.14059 -0.76725461 + 502800 -33.796427 -33.799143 0.0027155914 142.91915 -0.63308414 + 502900 -33.792256 -33.799428 0.007171519 377.43065 -0.32811235 + 503000 -33.790539 -33.799915 0.0093762616 493.46428 0.057302884 + 503100 -33.795177 -33.80026 0.0050826903 267.49746 0.25694601 + 503200 -33.795828 -33.800508 0.004680044 246.30654 0.45411363 + 503300 -33.794853 -33.800704 0.0058512179 307.94438 0.65756098 + 503400 -33.794105 -33.800779 0.0066740126 351.24733 0.82401406 + 503500 -33.796355 -33.80068 0.0043253781 227.64079 0.86991215 + 503600 -33.798056 -33.800529 0.0024728179 130.1422 0.85590214 + 503700 -33.796306 -33.800366 0.0040598902 213.6684 0.84496048 + 503800 -33.792122 -33.800054 0.0079323132 417.47057 0.78764002 + 503900 -33.793276 -33.799566 0.0062902987 331.05281 0.5608452 + 504000 -33.795415 -33.799128 0.0037137016 195.4488 0.3125336 + 504100 -33.795371 -33.798852 0.0034810586 183.20501 0.11639975 + 504200 -33.789429 -33.798684 0.0092544571 487.05382 -0.038642803 + 504300 -33.791032 -33.798581 0.0075494891 397.32288 -0.40796108 + 504400 -33.794773 -33.79864 0.0038673071 203.53293 -0.69772458 + 504500 -33.794589 -33.798913 0.0043234577 227.53972 -0.81585802 + 504600 -33.79062 -33.799441 0.0088216657 464.2764 -0.80999617 + 504700 -33.788241 -33.800131 0.011889428 625.72997 -0.7770197 + 504800 -33.796798 -33.800504 0.0037059358 195.04009 -0.90271343 + 504900 -33.796841 -33.800755 0.003914135 205.99743 -0.80700437 + 505000 -33.793633 -33.800983 0.0073502291 386.836 -0.55094404 + 505100 -33.792771 -33.801033 0.0082625993 434.85323 -0.23960039 + 505200 -33.797567 -33.800869 0.0033023687 173.80072 -0.067911849 + 505300 -33.798229 -33.800704 0.0024742411 130.2171 0.13173249 + 505400 -33.796533 -33.800523 0.0039900945 209.99512 0.42166034 + 505500 -33.795072 -33.800291 0.0052184198 274.64078 0.77050999 + 505600 -33.793361 -33.800006 0.0066449184 349.71613 1.1575485 + 505700 -33.793004 -33.799679 0.006674854 351.29161 1.5059607 + 505800 -33.795328 -33.799414 0.0040864159 215.06442 1.7166599 + 505900 -33.796759 -33.799319 0.0025600839 134.73493 1.8172879 + 506000 -33.794544 -33.799395 0.0048507495 255.29062 1.8925507 + 506100 -33.789633 -33.799603 0.0099705792 524.74269 1.9286609 + 506200 -33.793653 -33.799725 0.0060711651 319.52 1.7056162 + 506300 -33.795281 -33.799772 0.0044911501 236.36522 1.4833473 + 506400 -33.794615 -33.799796 0.0051808011 272.66094 1.2438623 + 506500 -33.792778 -33.799756 0.0069783781 367.26582 0.92879691 + 506600 -33.788909 -33.799559 0.010649962 560.49801 0.53170512 + 506700 -33.793127 -33.79916 0.0060327278 317.49708 -0.061338105 + 506800 -33.795975 -33.798871 0.0028959043 152.40886 -0.45221175 + 506900 -33.794798 -33.798746 0.003947669 207.7623 -0.6985394 + 507000 -33.790535 -33.798767 0.0082328261 433.28629 -0.92417441 + 507100 -33.791955 -33.798923 0.0069681434 366.72717 -1.2351478 + 507200 -33.794153 -33.799213 0.0050601792 266.31272 -1.4287114 + 507300 -33.79435 -33.799666 0.0053151203 279.73004 -1.4634369 + 507400 -33.794017 -33.800282 0.0062654575 329.74544 -1.3849879 + 507500 -33.794457 -33.80096 0.0065028408 342.23871 -1.2233137 + 507600 -33.795526 -33.801569 0.0060434474 318.06125 -1.0047125 + 507700 -33.796808 -33.802036 0.0052283847 275.16522 -0.75482696 + 507800 -33.79829 -33.802339 0.0040492678 213.10935 -0.4952947 + 507900 -33.7999 -33.802488 0.0025876524 136.18584 -0.27182215 + 508000 -33.798851 -33.802547 0.0036952477 194.47759 -0.0019603663 + 508100 -33.793979 -33.802458 0.0084790742 446.24611 0.4606922 + 508200 -33.795318 -33.802068 0.0067505393 355.27486 0.83829856 + 508300 -33.797854 -33.801573 0.0037191963 195.73798 1.0726688 + 508400 -33.797171 -33.801072 0.0039008696 205.29929 1.2822803 + 508500 -33.788674 -33.800204 0.011530191 606.82368 1.6585764 + 508600 -33.793334 -33.799108 0.0057740314 303.88212 1.7241325 + 508700 -33.795158 -33.798346 0.0031882707 167.79585 1.7241897 + 508800 -33.793308 -33.797769 0.0044614305 234.80111 1.6917182 + 508900 -33.788865 -33.797133 0.0082682275 435.14944 1.5702573 + 509000 -33.790139 -33.796526 0.006387403 336.16333 1.2385761 + 509100 -33.791308 -33.796112 0.0048034726 252.80248 0.88608877 + 509200 -33.790743 -33.795864 0.0051208305 269.50474 0.54564254 + 509300 -33.784383 -33.795686 0.011303402 594.88797 0.21074265 + 509400 -33.78693 -33.795366 0.0084355246 443.95414 -0.44171626 + 509500 -33.791303 -33.795146 0.0038430027 202.2538 -0.88719281 + 509600 -33.790445 -33.795116 0.0046717855 245.87191 -1.1293888 + 509700 -33.787266 -33.795252 0.0079864961 420.32216 -1.2955981 + 509800 -33.788351 -33.79547 0.0071193516 374.68512 -1.4844118 + 509900 -33.793167 -33.795704 0.0025366652 133.50243 -1.6240965 + 510000 -33.792772 -33.796087 0.0033151601 174.47392 -1.5517166 + 510100 -33.790154 -33.796756 0.0066029797 347.50893 -1.3109739 + 510200 -33.790051 -33.797557 0.0075060099 395.03461 -1.0171061 + 510300 -33.792573 -33.798205 0.0056321236 296.41364 -0.75870569 + 510400 -33.793477 -33.798716 0.0052395833 275.7546 -0.48333236 + 510500 -33.793355 -33.799166 0.0058110698 305.83142 -0.18502535 + 510600 -33.793511 -33.79954 0.0060289875 317.30024 0.10764438 + 510700 -33.794375 -33.799816 0.0054407253 286.34052 0.35079888 + 510800 -33.796426 -33.800001 0.0035754524 188.17287 0.500958 + 510900 -33.797566 -33.800149 0.0025829522 135.93847 0.58755461 + 511000 -33.795 -33.800342 0.0053416625 281.12693 0.69206803 + 511100 -33.791264 -33.800565 0.0093012266 489.51526 0.77551424 + 511200 -33.794983 -33.800646 0.005662816 298.02896 0.66295322 + 511300 -33.79647 -33.80065 0.0041790812 219.94131 0.55025058 + 511400 -33.795685 -33.800641 0.0049561311 260.83676 0.43425587 + 511500 -33.794791 -33.800614 0.0058229666 306.45754 0.26779626 + 511600 -33.794641 -33.800559 0.0059179643 311.45718 0.045103565 + 511700 -33.794902 -33.80049 0.0055883265 294.10864 -0.19604452 + 511800 -33.795373 -33.800439 0.0050655223 266.59392 -0.43065579 + 511900 -33.795538 -33.800431 0.0048927916 257.50326 -0.63704985 + 512000 -33.794116 -33.800478 0.0063621133 334.83235 -0.78953192 + 512100 -33.793017 -33.800554 0.0075367395 396.65188 -0.9303705 + 512200 -33.795909 -33.800616 0.0047066884 247.70881 -1.094639 + 512300 -33.797817 -33.800689 0.0028717962 151.14007 -1.1569722 + 512400 -33.796161 -33.800811 0.0046504966 244.75149 -1.0823583 + 512500 -33.789711 -33.80095 0.011239238 591.5111 -0.81106381 + 512600 -33.794695 -33.800891 0.0061956934 326.07382 -0.71580751 + 512700 -33.796411 -33.800723 0.0043126035 226.96848 -0.56706629 + 512800 -33.795549 -33.80049 0.0049412826 260.0553 -0.33465062 + 512900 -33.791302 -33.800104 0.0088017107 463.22618 0.05093046 + 513000 -33.788718 -33.799373 0.01065487 560.75629 0.5137933 + 513100 -33.795904 -33.798725 0.002820487 148.43971 0.67276205 + 513200 -33.795724 -33.798346 0.0026228155 138.03644 0.87655756 + 513300 -33.792255 -33.798013 0.0057580644 303.04179 1.1727773 + 513400 -33.79031 -33.797656 0.0073452131 386.57201 1.4795139 + 513500 -33.791894 -33.797343 0.005448675 286.7589 1.6566995 + 513600 -33.793671 -33.797154 0.0034831494 183.31505 1.7276601 + 513700 -33.794635 -33.797105 0.0024698897 129.98809 1.7315157 + 513800 -33.792578 -33.797173 0.004595667 241.86585 1.7111012 + 513900 -33.787876 -33.797257 0.0093809155 493.70921 1.6156723 + 514000 -33.791286 -33.797135 0.0058488633 307.82046 1.296145 + 514100 -33.793454 -33.796933 0.0034797405 183.13564 1.0200274 + 514200 -33.792356 -33.796726 0.0043699927 229.98882 0.78627162 + 514300 -33.787441 -33.796396 0.0089552806 471.30843 0.52080821 + 514400 -33.788513 -33.795835 0.0073211906 385.30773 0.05134304 + 514500 -33.793768 -33.795425 0.0016564218 87.176002 -0.34340841 + 514600 -33.794543 -33.795424 0.00088087548 46.359691 -0.44985745 + 514700 -33.792611 -33.795822 0.0032105307 168.96737 -0.43520126 + 514800 -33.787736 -33.796766 0.0090299923 475.24044 -0.28059701 + 514900 -33.790386 -33.797806 0.0074191812 390.46489 -0.20077914 + 515000 -33.794422 -33.798459 0.0040375368 212.49196 -0.14518036 + 515100 -33.794609 -33.798945 0.0043360796 228.204 0.011661368 + 515200 -33.791481 -33.799386 0.0079047877 416.02192 0.29876147 + 515300 -33.789566 -33.799656 0.010090115 531.03376 0.6502124 + 515400 -33.796481 -33.799621 0.003140137 165.26261 0.75876421 + 515500 -33.79645 -33.799532 0.003081683 162.18623 0.93292243 + 515600 -33.793368 -33.799394 0.0060258249 317.13379 1.1997953 + 515700 -33.791738 -33.799133 0.0073948579 389.18478 1.4853645 + 515800 -33.793383 -33.798825 0.0054418727 286.40091 1.6629409 + 515900 -33.794138 -33.798596 0.0044577083 234.60521 1.7921689 + 516000 -33.790222 -33.798468 0.0082464408 434.00282 1.9719361 + 516100 -33.787292 -33.798341 0.011048612 581.4786 2.1041148 + 516200 -33.793912 -33.798255 0.0043422525 228.52888 1.9808436 + 516300 -33.794259 -33.798297 0.0040383728 212.53596 1.9222854 + 516400 -33.791509 -33.798452 0.0069432967 365.41951 1.8457737 + 516500 -33.789063 -33.798619 0.0095563813 502.94382 1.6661931 + 516600 -33.795518 -33.798662 0.0031438997 165.46064 1.3160357 + 516700 -33.795901 -33.798698 0.0027965886 147.18196 1.1304587 + 516800 -33.793239 -33.798767 0.0055280134 290.93442 0.95066402 + 516900 -33.791225 -33.798785 0.0075594166 397.84535 0.66825833 + 517000 -33.792976 -33.798693 0.0057166209 300.86066 0.31612828 + 517100 -33.794217 -33.798586 0.0043687189 229.92178 0.045602616 + 517200 -33.792169 -33.798534 0.0063649234 334.98024 -0.11931596 + 517300 -33.786513 -33.798491 0.01197822 630.40303 -0.24795867 + 517400 -33.793677 -33.798437 0.0047608654 250.5601 -0.54242759 + 517500 -33.794804 -33.798509 0.0037055963 195.02223 -0.61038949 + 517600 -33.792603 -33.798742 0.0061393764 323.1099 -0.5319763 + 517700 -33.789016 -33.799099 0.010083426 530.68171 -0.33384338 + 517800 -33.795705 -33.799338 0.0036326388 191.18254 -0.31178814 + 517900 -33.796579 -33.799479 0.0028997344 152.61043 -0.19624288 + 518000 -33.794085 -33.799628 0.0055431379 291.7304 0.039821217 + 518100 -33.79152 -33.799663 0.008143054 428.56167 0.35235821 + 518200 -33.794112 -33.799459 0.0053462362 281.36764 0.55946467 + 518300 -33.796835 -33.799179 0.0023434956 123.33608 0.68012636 + 518400 -33.798224 -33.798995 0.00077057976 40.554926 0.7408084 + 518500 -33.798017 -33.79893 0.00091236915 48.017175 0.78399973 + 518600 -33.795927 -33.798945 0.0030172088 158.79301 0.83705375 + 518700 -33.792562 -33.799018 0.006455584 339.75163 0.87264229 + 518800 -33.790518 -33.799081 0.0085631367 450.67025 0.83241353 + 518900 -33.794346 -33.799085 0.0047390701 249.41303 0.64564122 + 519000 -33.795836 -33.799115 0.0032784985 172.54445 0.50554043 + 519100 -33.793368 -33.799216 0.0058477195 307.76026 0.4170565 + 519200 -33.787406 -33.799352 0.011945851 628.69946 0.29055749 + 519300 -33.792988 -33.799361 0.0063723095 335.36897 -0.057358363 + 519400 -33.794234 -33.799313 0.005079498 267.32945 -0.26602185 + 519500 -33.794015 -33.799249 0.0052345966 275.49215 -0.42828742 + 519600 -33.792125 -33.799157 0.0070320036 370.08808 -0.54625748 + 519700 -33.790177 -33.79898 0.0088033518 463.31255 -0.66209618 + 519800 -33.794639 -33.798766 0.0041262384 217.16025 -0.86064358 + 519900 -33.795992 -33.798661 0.0026691545 140.47522 -0.92229701 + 520000 -33.793372 -33.798665 0.0052931088 278.57159 -0.85559223 + 520100 -33.790129 -33.798746 0.0086172431 453.51782 -0.71673531 + 520200 -33.792655 -33.798829 0.0061747128 324.96963 -0.65338701 + 520300 -33.794272 -33.798935 0.0046626421 245.3907 -0.56679432 + 520400 -33.794036 -33.799093 0.0050572492 266.15852 -0.42830607 + 520500 -33.788582 -33.799315 0.010733336 564.8859 -0.13993581 + 520600 -33.79142 -33.799492 0.0080722354 424.83455 0.020973986 + 520700 -33.795763 -33.799552 0.0037888309 199.40279 0.067510767 + 520800 -33.795032 -33.799609 0.0045769922 240.88301 0.17687458 + 520900 -33.791943 -33.799651 0.0077081968 405.67552 0.31342804 + 521000 -33.792182 -33.799579 0.0073966105 389.27701 0.36198093 + 521100 -33.797163 -33.799445 0.0022816421 120.08079 0.27025871 + 521200 -33.796893 -33.799353 0.0024601263 129.47426 0.2378788 + 521300 -33.79398 -33.799233 0.0052530885 276.46536 0.20223201 + 521400 -33.792278 -33.798983 0.0067050915 352.88299 0.07196304 + 521500 -33.792918 -33.798601 0.0056827448 299.07779 -0.13996707 + 521600 -33.794037 -33.798175 0.0041379458 217.7764 -0.35345324 + 521700 -33.793905 -33.797773 0.0038679261 203.5655 -0.53248287 + 521800 -33.789643 -33.797301 0.0076571935 402.99126 -0.66590671 + 521900 -33.788597 -33.796659 0.0080618269 424.28676 -0.9017797 + 522000 -33.792414 -33.796154 0.0037402837 196.8478 -1.1608141 + 522100 -33.793081 -33.795929 0.0028481493 149.89556 -1.2601115 + 522200 -33.786122 -33.795918 0.0097957025 515.53908 -1.1456931 + 522300 -33.787399 -33.79604 0.0086417831 454.80934 -1.1349513 + 522400 -33.791699 -33.796212 0.0045137637 237.55536 -1.1326225 + 522500 -33.79213 -33.796487 0.0043568531 229.29729 -1.0069552 + 522600 -33.789593 -33.796903 0.0073097724 384.7068 -0.75177006 + 522700 -33.7862 -33.797424 0.011223996 590.7089 -0.36019986 + 522800 -33.793936 -33.797756 0.0038200371 201.04514 -0.22716625 + 522900 -33.794461 -33.797993 0.0035323156 185.90262 -0.0360442 + 523000 -33.791759 -33.7983 0.006541315 344.26357 0.25522921 + 523100 -33.789972 -33.79865 0.0086775452 456.69146 0.57899368 + 523200 -33.795348 -33.798892 0.0035441709 186.52655 0.69595664 + 523300 -33.796704 -33.799091 0.0023868168 125.61604 0.78109513 + 523400 -33.795267 -33.799408 0.0041410013 217.9372 0.87688416 + 523500 -33.792586 -33.799885 0.0072988044 384.12956 0.96522567 + 523600 -33.793347 -33.800402 0.0070552197 371.30992 0.94586143 + 523700 -33.797374 -33.800781 0.0034061738 179.26389 0.81968872 + 523800 -33.798596 -33.801053 0.002456997 129.30956 0.72983405 + 523900 -33.792818 -33.801382 0.0085638744 450.70907 0.72644629 + 524000 -33.792169 -33.801749 0.0095795208 504.16164 0.50765996 + 524100 -33.797564 -33.801855 0.0042913248 225.8486 0.21823804 + 524200 -33.798079 -33.801864 0.003785132 199.20812 0.065562099 + 524300 -33.79506 -33.801815 0.0067547869 355.49841 -0.029485457 + 524400 -33.792036 -33.80163 0.0095937536 504.91069 -0.15554252 + 524500 -33.798179 -33.801376 0.0031965365 168.23087 -0.41052465 + 524600 -33.798974 -33.801248 0.0022739898 119.67805 -0.4747959 + 524700 -33.797092 -33.801201 0.0041098216 216.29624 -0.43495705 + 524800 -33.79385 -33.801201 0.0073504434 386.84728 -0.31464866 + 524900 -33.794321 -33.801192 0.0068712936 361.63005 -0.2177215 + 525000 -33.797511 -33.801168 0.0036569815 192.46368 -0.15990129 + 525100 -33.799233 -33.801167 0.0019338188 101.77516 -0.089087994 + 525200 -33.799282 -33.801206 0.0019232704 101.22001 0.014129931 + 525300 -33.794934 -33.801279 0.0063450529 333.93447 0.26560056 + 525400 -33.792994 -33.801242 0.0082484943 434.1109 0.53991226 + 525500 -33.796402 -33.80103 0.0046285661 243.59731 0.67382489 + 525600 -33.797675 -33.800781 0.0031066353 163.49944 0.78016125 + 525700 -33.794357 -33.800475 0.0061182088 321.99587 0.94592767 + 525800 -33.790175 -33.799867 0.0096915137 510.05572 1.1439385 + 525900 -33.794005 -33.799182 0.0051771455 272.46855 1.132967 + 526000 -33.794808 -33.798643 0.0038351453 201.84028 1.1220383 + 526100 -33.792315 -33.798167 0.0058519852 307.98476 1.1314753 + 526200 -33.786484 -33.797565 0.011081609 583.21521 1.1311095 + 526300 -33.792731 -33.796999 0.0042674153 224.59026 0.86056407 + 526400 -33.794176 -33.796776 0.002600159 136.84405 0.72467561 + 526500 -33.792022 -33.796748 0.0047256932 248.70902 0.62621791 + 526600 -33.788026 -33.796833 0.0088069869 463.50386 0.49279116 + 526700 -33.790666 -33.796882 0.0062160348 327.14437 0.21622559 + 526800 -33.793543 -33.796915 0.0033718609 177.45803 0.00028732778 + 526900 -33.792864 -33.797013 0.0041495158 218.38531 -0.10215944 + 527000 -33.784762 -33.797195 0.012432818 654.32814 -0.069534624 + 527100 -33.788721 -33.797276 0.0085548121 450.23213 -0.28476459 + 527200 -33.791752 -33.797285 0.0055328745 291.19025 -0.41178786 + 527300 -33.792857 -33.797379 0.0045214812 237.96153 -0.44568506 + 527400 -33.792018 -33.797632 0.0056137136 295.44474 -0.394221 + 527500 -33.789037 -33.798098 0.0090608453 476.86421 -0.23564702 + 527600 -33.792723 -33.798666 0.0059429653 312.77296 -0.16836135 + 527700 -33.795969 -33.799136 0.0031671756 166.68563 -0.11804275 + 527800 -33.794987 -33.799698 0.0047112888 247.95093 0.032044842 + 527900 -33.792154 -33.800453 0.0082988838 436.76285 0.2608065 + 528000 -33.795619 -33.801147 0.0055277176 290.91884 0.36965998 + 528100 -33.799316 -33.801504 0.0021872729 115.11422 0.39365855 + 528200 -33.797896 -33.801824 0.0039282089 206.73813 0.48717515 + 528300 -33.79418 -33.802173 0.0079927496 420.65128 0.62380027 + 528400 -33.795484 -33.80235 0.0068659549 361.34908 0.64237501 + 528500 -33.798799 -33.80233 0.0035309732 185.83197 0.57919484 + 528600 -33.799391 -33.802256 0.0028652696 150.79658 0.54148593 + 528700 -33.793143 -33.802121 0.0089786154 472.53652 0.59327666 + 528800 -33.793623 -33.801785 0.0081621686 429.56765 0.44716752 + 528900 -33.797763 -33.801459 0.0036964445 194.54058 0.24818486 + 529000 -33.797669 -33.801245 0.0035756399 188.18274 0.14390629 + 529100 -33.793152 -33.801064 0.0079119934 416.40115 0.087983068 + 529200 -33.792348 -33.800828 0.0084799321 446.29126 -0.083678125 + 529300 -33.794821 -33.800603 0.0057826303 304.33467 -0.28889214 + 529400 -33.795245 -33.800423 0.0051776954 272.49749 -0.42328774 + 529500 -33.794644 -33.800266 0.0056218891 295.87501 -0.51041656 + 529600 -33.792432 -33.800081 0.0076483522 402.52596 -0.55243678 + 529700 -33.791644 -33.799779 0.0081351385 428.14508 -0.60893973 + 529800 -33.795871 -33.799459 0.0035880858 188.83775 -0.7236912 + 529900 -33.796448 -33.799245 0.0027967832 147.1922 -0.73123429 + 530000 -33.792589 -33.799053 0.0064633412 340.15988 -0.608204 + 530100 -33.790792 -33.798747 0.0079549479 418.66181 -0.47020909 + 530200 -33.793138 -33.79841 0.005271704 277.44508 -0.40640905 + 530300 -33.793921 -33.798154 0.0042327432 222.7655 -0.30720342 + 530400 -33.790981 -33.797977 0.0069954618 368.16491 -0.11105783 + 530500 -33.785541 -33.797746 0.012204463 642.31002 0.20302276 + 530600 -33.792656 -33.797525 0.0048689686 256.24947 0.23617897 + 530700 -33.793009 -33.797469 0.0044598576 234.71833 0.34356392 + 530800 -33.791273 -33.797561 0.0062874303 330.90185 0.47085788 + 530900 -33.789637 -33.797753 0.008115757 427.12505 0.58232446 + 531000 -33.793862 -33.797935 0.0040724011 214.32684 0.53217625 + 531100 -33.795533 -33.798112 0.0025790048 135.73072 0.48305195 + 531200 -33.793461 -33.798387 0.004925513 259.22536 0.46262118 + 531300 -33.790271 -33.798731 0.0084598854 445.23622 0.38298364 + 531400 -33.792272 -33.798908 0.0066361617 349.25527 0.15909814 + 531500 -33.793843 -33.798913 0.0050698813 266.82333 -0.05714878 + 531600 -33.793996 -33.79882 0.0048235181 253.85746 -0.2560625 + 531700 -33.79061 -33.798627 0.0080167289 421.91329 -0.41670983 + 531800 -33.787 -33.798144 0.01114402 586.49985 -0.66580466 + 531900 -33.793893 -33.797623 0.0037296922 196.29038 -1.0451064 + 532000 -33.793955 -33.79732 0.0033642301 177.05643 -1.1884251 + 532100 -33.791431 -33.797153 0.0057218834 301.13762 -1.2490428 + 532200 -33.78959 -33.797112 0.0075216899 395.85983 -1.2928894 + 532300 -33.791262 -33.797195 0.0059333213 312.26541 -1.339696 + 532400 -33.79246 -33.79741 0.0049490603 260.46463 -1.3171521 + 532500 -33.792222 -33.797758 0.0055356291 291.33522 -1.2098792 + 532600 -33.792021 -33.79819 0.0061691512 324.67692 -1.0447595 + 532700 -33.792738 -33.798614 0.0058756847 309.23204 -0.86729854 + 532800 -33.794272 -33.798955 0.0046826355 246.44293 -0.70222415 + 532900 -33.795337 -33.799215 0.003878179 204.1051 -0.5396133 + 533000 -33.794187 -33.799442 0.0052550738 276.56984 -0.3388041 + 533100 -33.78957 -33.799635 0.010064541 529.68781 -0.02096288 + 533200 -33.793962 -33.799647 0.0056854017 299.21762 0.11099829 + 533300 -33.796544 -33.799614 0.0030705902 161.60242 0.17701335 + 533400 -33.79554 -33.799655 0.0041147581 216.55605 0.27359125 + 533500 -33.793721 -33.799788 0.0060670046 319.30104 0.36004112 + 533600 -33.793467 -33.799992 0.006525249 343.41804 0.37380471 + 533700 -33.79468 -33.800233 0.0055530282 292.25092 0.32216791 + 533800 -33.796872 -33.8005 0.0036271651 190.89446 0.21940801 + 533900 -33.798927 -33.800755 0.0018275367 96.181625 0.10995617 + 534000 -33.797828 -33.801077 0.0032490966 170.99706 0.04663806 + 534100 -33.793188 -33.801576 0.0083882172 441.46439 -0.024537726 + 534200 -33.794956 -33.80195 0.0069940397 368.09007 -0.26356326 + 534300 -33.79753 -33.802058 0.0045279449 238.3017 -0.48195844 + 534400 -33.79765 -33.802006 0.0043560395 229.25447 -0.62707018 + 534500 -33.791526 -33.801759 0.010232894 538.54809 -0.6592054 + 534600 -33.790953 -33.800999 0.010046844 528.75645 -0.84929235 + 534700 -33.795818 -33.800214 0.0043963052 231.37362 -1.0654873 + 534800 -33.795539 -33.799519 0.0039791711 209.42022 -1.1081592 + 534900 -33.792403 -33.798775 0.0063721015 335.35802 -1.0306086 + 535000 -33.790167 -33.797923 0.007756937 408.24068 -0.89465777 + 535100 -33.792356 -33.797257 0.0049006005 257.91423 -0.78077953 + 535200 -33.795474 -33.797013 0.0015391892 81.006156 -0.68075882 + 535300 -33.79571 -33.797163 0.0014528934 76.464483 -0.53940535 + 535400 -33.793259 -33.79772 0.0044611364 234.78563 -0.2525815 + 535500 -33.791231 -33.798587 0.0073556104 387.11921 0.13421391 + 535600 -33.793017 -33.799324 0.0063062933 331.89459 0.44271256 + 535700 -33.795845 -33.799749 0.0039031821 205.42099 0.63781432 + 535800 -33.796425 -33.799993 0.0035677722 187.76867 0.7912073 + 535900 -33.790722 -33.800143 0.0094205726 495.79633 1.0446263 + 536000 -33.791079 -33.799979 0.0089000078 468.39947 1.1745626 + 536100 -33.795735 -33.799614 0.0038786103 204.1278 1.1262685 + 536200 -33.795559 -33.799268 0.0037092021 195.212 1.1075153 + 536300 -33.79277 -33.798882 0.0061118935 321.6635 1.0699444 + 536400 -33.791479 -33.798407 0.0069276522 364.59616 0.91694634 + 536500 -33.792379 -33.797984 0.0056053452 295.00432 0.68713429 + 536600 -33.792538 -33.797722 0.0051843465 272.84753 0.45823559 + 536700 -33.79155 -33.797643 0.0060929456 320.66629 0.23288708 + 536800 -33.787949 -33.79772 0.0097710164 514.23988 0.029791281 + 536900 -33.790833 -33.797833 0.0069999628 368.4018 -0.31211695 + 537000 -33.79445 -33.797955 0.0035045492 184.4413 -0.54946639 + 537100 -33.793742 -33.798185 0.0044436924 233.86757 -0.62642811 + 537200 -33.789501 -33.798517 0.0090167497 474.54349 -0.60142089 + 537300 -33.791678 -33.798724 0.0070464172 370.84665 -0.66554352 + 537400 -33.796249 -33.79876 0.0025107803 132.14013 -0.72952231 + 537500 -33.795169 -33.798832 0.0036635528 192.80952 -0.63321971 + 537600 -33.79168 -33.79893 0.0072502686 381.57517 -0.40254769 + 537700 -33.791877 -33.798923 0.0070460771 370.82875 -0.17481304 + 537800 -33.79455 -33.798847 0.0042966872 226.13081 -0.0086011669 + 537900 -33.796368 -33.798852 0.0024837938 130.71985 0.14387286 + 538000 -33.797157 -33.799012 0.0018542871 97.589475 0.27917203 + 538100 -33.794329 -33.799425 0.0050963822 268.21805 0.50110877 + 538200 -33.790993 -33.80014 0.0091475456 481.42717 0.80526631 + 538300 -33.795057 -33.800728 0.005670826 298.45051 0.92013529 + 538400 -33.797076 -33.801098 0.0040223265 211.69146 0.9793936 + 538500 -33.796231 -33.801389 0.0051575028 271.43477 1.0372068 + 538600 -33.792239 -33.801573 0.0093343329 491.25761 1.0955882 + 538700 -33.787779 -33.80138 0.013601465 715.83295 1.0750578 + 538800 -33.796919 -33.800886 0.0039676299 208.81282 0.77177175 + 538900 -33.79708 -33.800391 0.0033114307 174.27765 0.62960106 + 539000 -33.793811 -33.799703 0.0058925238 310.11827 0.47790212 + 539100 -33.791116 -33.79859 0.0074735821 393.32796 0.19873684 + 539200 -33.792354 -33.797327 0.004972727 261.71019 -0.18170578 + 539300 -33.793034 -33.796258 0.003224524 169.70382 -0.49886695 + 539400 -33.789265 -33.795247 0.0059819333 314.82382 -0.742048 + 539500 -33.785651 -33.793979 0.008327518 438.26984 -1.0996453 + 539600 -33.787957 -33.79297 0.0050133543 263.84836 -1.498746 + 539700 -33.789297 -33.792546 0.0032497651 171.03224 -1.7194929 + 539800 -33.78675 -33.792633 0.0058823743 309.58411 -1.7521974 + 539900 -33.781142 -33.793181 0.012039198 633.61225 -1.6324727 + 540000 -33.787904 -33.793723 0.0058192457 306.26171 -1.6866656 + 540100 -33.789115 -33.794228 0.0051131977 269.10303 -1.5835564 + 540200 -33.788951 -33.794791 0.0058407686 307.39444 -1.3893872 + 540300 -33.789202 -33.795355 0.0061530433 323.82918 -1.1571389 + 540400 -33.791699 -33.795815 0.0041160462 216.62384 -0.96752469 + 540500 -33.793057 -33.796188 0.0031308802 164.77543 -0.79061677 + 540600 -33.790877 -33.796635 0.0057579538 303.03597 -0.5353634 + 540700 -33.786659 -33.797233 0.010573946 556.49735 -0.15421876 + 540800 -33.7923 -33.797657 0.005357114 281.94013 -0.01000306 + 540900 -33.793477 -33.797978 0.0045012977 236.89928 0.11646307 + 541000 -33.792601 -33.798367 0.0057656713 303.44214 0.23882436 + 541100 -33.791704 -33.798824 0.0071204679 374.74387 0.31568094 + 541200 -33.794327 -33.799248 0.0049209853 258.98707 0.26139873 + 541300 -33.797062 -33.799561 0.0024998444 131.56458 0.16085256 + 541400 -33.796072 -33.7999 0.0038275073 201.43829 0.083516548 + 541500 -33.790587 -33.800369 0.0097817846 514.8066 -0.017165029 + 541600 -33.793056 -33.800685 0.0076286903 401.49117 -0.34396437 + 541700 -33.795485 -33.800744 0.0052587547 276.76357 -0.64697999 + 541800 -33.796071 -33.800659 0.0045880692 241.46599 -0.89522394 + 541900 -33.79424 -33.800449 0.006209628 326.80718 -1.1015689 + 542000 -33.788032 -33.799949 0.011917414 627.20284 -1.3018817 + 542100 -33.794592 -33.799212 0.0046201106 243.1523 -1.7273895 + 542200 -33.795988 -33.798719 0.0027301335 143.68449 -1.8979828 + 542300 -33.794301 -33.798316 0.0040151258 211.31249 -1.94303 + 542400 -33.791572 -33.797926 0.006354549 334.43424 -1.9002714 + 542500 -33.791086 -33.797603 0.006516166 342.94 -1.8162959 + 542600 -33.792257 -33.797428 0.0051709963 272.14492 -1.6926337 + 542700 -33.794254 -33.797435 0.0031813358 167.43086 -1.5329783 + 542800 -33.795275 -33.79761 0.0023348466 122.8809 -1.34312 + 542900 -33.792535 -33.797987 0.0054523255 286.95103 -1.0022514 + 543000 -33.789028 -33.798544 0.0095166915 500.85498 -0.45992396 + 543100 -33.79325 -33.798887 0.0056376976 296.707 -0.0966462 + 543200 -33.794686 -33.79904 0.0043535363 229.12273 0.19915658 + 543300 -33.793956 -33.799115 0.0051586624 271.4958 0.50052195 + 543400 -33.793058 -33.799098 0.0060397882 317.86867 0.77742154 + 543500 -33.793096 -33.798974 0.0058777115 309.33871 0.98145014 + 543600 -33.793337 -33.798787 0.0054497882 286.81749 1.1077847 + 543700 -33.793213 -33.798587 0.0053742648 282.84276 1.1570664 + 543800 -33.792811 -33.798411 0.0055996642 294.70533 1.1328145 + 543900 -33.792285 -33.798279 0.0059940025 315.459 1.0326116 + 544000 -33.791531 -33.798195 0.0066642081 350.73133 0.856194 + 544100 -33.791601 -33.798144 0.0065437566 344.39207 0.60060854 + 544200 -33.793465 -33.798129 0.0046643828 245.48231 0.29766993 + 544300 -33.794067 -33.798177 0.0041103189 216.32241 0.034006015 + 544400 -33.791677 -33.798288 0.0066116872 347.9672 -0.18888324 + 544500 -33.788223 -33.798356 0.010133188 533.30067 -0.46939341 + 544600 -33.794354 -33.79826 0.0039058645 205.56217 -0.87620172 + 544700 -33.795247 -33.798185 0.0029389403 154.6738 -1.0356221 + 544800 -33.793374 -33.798144 0.0047699267 251.03699 -1.0868055 + 544900 -33.791251 -33.798055 0.0068041323 358.09542 -1.0801947 + 545000 -33.791736 -33.79786 0.0061245262 322.32835 -1.0515338 + 545100 -33.792857 -33.79763 0.0047737626 251.23887 -0.97097372 + 545200 -33.792969 -33.797451 0.0044819811 235.88267 -0.80244029 + 545300 -33.789918 -33.797331 0.007413242 390.15231 -0.46703401 + 545400 -33.789156 -33.797217 0.0080611205 424.24958 -0.060110992 + 545500 -33.793035 -33.797169 0.0041343831 217.58889 0.22682307 + 545600 -33.793869 -33.797296 0.0034260523 180.31008 0.50137798 + 545700 -33.789902 -33.79766 0.0077577949 408.28583 0.89769355 + 545800 -33.786943 -33.798241 0.01129783 594.5947 1.4008583 + 545900 -33.793145 -33.798621 0.0054763552 288.21569 1.5828708 + 546000 -33.793562 -33.798942 0.0053801761 283.15387 1.7509627 + 546100 -33.793335 -33.799257 0.0059219874 311.66891 1.8518467 + 546200 -33.793562 -33.799525 0.0059638093 313.86997 1.8529703 + 546300 -33.795083 -33.79971 0.004626669 243.49746 1.743525 + 546400 -33.796185 -33.799835 0.0036496717 192.07896 1.5806215 + 546500 -33.794391 -33.799951 0.0055603451 292.636 1.3915857 + 546600 -33.789858 -33.800011 0.01015303 534.34493 1.095247 + 546700 -33.794807 -33.799896 0.0050884834 267.80234 0.57843992 + 546800 -33.796752 -33.799797 0.0030448146 160.24587 0.24132005 + 546900 -33.795709 -33.799781 0.0040717319 214.29162 -0.021126643 + 547000 -33.793741 -33.799838 0.0060968999 320.87441 -0.29303431 + 547100 -33.79286 -33.79992 0.0070594968 371.53502 -0.58931285 + 547200 -33.795381 -33.799981 0.004600345 242.11205 -0.87151477 + 547300 -33.798146 -33.800055 0.0019091633 100.47756 -1.0217161 + 547400 -33.797427 -33.800207 0.0027802271 146.32087 -1.0028963 + 547500 -33.793243 -33.800454 0.0072111826 379.51811 -0.80733201 + 547600 -33.793764 -33.800562 0.0067979154 357.76823 -0.62178063 + 547700 -33.795879 -33.800453 0.0045738139 240.71575 -0.45034122 + 547800 -33.796387 -33.800228 0.0038412465 202.16138 -0.23999289 + 547900 -33.792187 -33.799851 0.0076642427 403.36226 0.11987429 + 548000 -33.789587 -33.799045 0.0094577763 497.75433 0.57988686 + 548100 -33.794064 -33.7982 0.0041351031 217.62679 0.8190937 + 548200 -33.794208 -33.797574 0.003366007 177.14995 1.0459458 + 548300 -33.792736 -33.79707 0.0043341175 228.10074 1.2840327 + 548400 -33.790737 -33.796702 0.0059646902 313.91632 1.5133913 + 548500 -33.789807 -33.796528 0.0067205711 353.69766 1.6649089 + 548600 -33.791222 -33.796576 0.0053543476 281.79454 1.6870534 + 548700 -33.794608 -33.796802 0.0021944336 115.49108 1.5802953 + 548800 -33.794639 -33.797197 0.0025576001 134.60421 1.4626661 + 548900 -33.790415 -33.79792 0.0075051906 394.99149 1.2868104 + 549000 -33.790408 -33.798748 0.0083406002 438.95835 0.86186862 + 549100 -33.793618 -33.799234 0.0056154414 295.53567 0.38102653 + 549200 -33.794767 -33.799475 0.0047077482 247.76459 -0.019973819 + 549300 -33.794102 -33.79957 0.0054674377 287.74637 -0.39691205 + 549400 -33.787457 -33.799476 0.012018682 632.53253 -0.75645617 + 549500 -33.791835 -33.799004 0.0071694786 377.32326 -1.414664 + 549600 -33.795268 -33.798603 0.0033346978 175.50217 -1.8055239 + 549700 -33.794113 -33.798357 0.0042437313 223.34379 -1.9907344 + 549800 -33.790634 -33.798226 0.0075925192 399.58751 -2.0724401 + 549900 -33.791095 -33.798206 0.0071105566 374.22225 -2.1458539 + 550000 -33.793653 -33.798322 0.0046690367 245.72724 -2.1435411 + 550100 -33.794361 -33.798589 0.0042281995 222.52637 -2.0088211 + 550200 -33.792682 -33.799004 0.0063227169 332.75895 -1.7235701 + 550300 -33.790854 -33.799499 0.0086456176 455.01114 -1.2927397 + 550400 -33.794835 -33.799814 0.0049785369 262.01596 -0.97396242 + 550500 -33.796487 -33.799975 0.003487321 183.53459 -0.69194076 + 550600 -33.794964 -33.800089 0.0051251924 269.7343 -0.34074102 + 550700 -33.79001 -33.800096 0.010086116 530.82327 0.18140392 + 550800 -33.794482 -33.799862 0.0053809537 283.19479 0.50654316 + 550900 -33.797191 -33.799662 0.002470914 130.042 0.67431644 + 551000 -33.796292 -33.799565 0.0032725792 172.23292 0.82660408 + 551100 -33.793497 -33.799563 0.0060657866 319.23694 0.97036907 + 551200 -33.791817 -33.799632 0.0078145449 411.27253 1.0280076 + 551300 -33.794776 -33.799742 0.0049665797 261.38666 0.91035625 + 551400 -33.797565 -33.799915 0.0023494623 123.6501 0.74961925 + 551500 -33.797833 -33.800189 0.0023560396 123.99626 0.59729717 + 551600 -33.791564 -33.800713 0.0091493194 481.52052 0.42516828 + 551700 -33.792993 -33.801286 0.0082931939 436.4634 -0.063137665 + 551800 -33.797357 -33.801534 0.0041766632 219.81406 -0.51278882 + 551900 -33.797481 -33.801631 0.0041505208 218.43821 -0.82116581 + 552000 -33.794223 -33.801601 0.0073781651 388.30625 -1.0966672 + 552100 -33.790399 -33.801247 0.010848374 570.94026 -1.4648817 + 552200 -33.797824 -33.800704 0.0028799036 151.56676 -1.9372074 + 552300 -33.798023 -33.800315 0.0022922653 120.63988 -2.0852184 + 552400 -33.795275 -33.799874 0.004598522 242.01611 -2.1137157 + 552500 -33.792679 -33.799258 0.0065791714 346.25592 -2.0704453 + 552600 -33.792497 -33.798567 0.0060696282 319.43912 -1.9738971 + 552700 -33.793255 -33.797966 0.0047105025 247.90955 -1.8096994 + 552800 -33.792853 -33.797535 0.004682354 246.42812 -1.5332182 + 552900 -33.788921 -33.797201 0.0082794308 435.73906 -1.0336936 + 553000 -33.789245 -33.796877 0.0076317941 401.65452 -0.4754665 + 553100 -33.793305 -33.796701 0.0033966741 178.76393 -0.09557351 + 553200 -33.793325 -33.796749 0.0034245823 180.23271 0.26107059 + 553300 -33.788884 -33.797014 0.0081305153 427.90177 0.75993944 + 553400 -33.787886 -33.797357 0.0094708379 498.44175 1.2921044 + 553500 -33.793457 -33.797555 0.0040980013 215.67415 1.5011886 + 553600 -33.792916 -33.797794 0.0048782692 256.73896 1.6785739 + 553700 -33.790844 -33.798131 0.0072871048 383.51383 1.8024759 + 553800 -33.791577 -33.798478 0.0069008816 363.18724 1.7640806 + 553900 -33.794671 -33.798756 0.0040843218 214.95421 1.5925173 + 554000 -33.795372 -33.79905 0.0036777889 193.55875 1.4062266 + 554100 -33.791434 -33.799475 0.0080413519 423.20918 1.1904735 + 554200 -33.789601 -33.799991 0.01038981 546.80641 0.74024497 + 554300 -33.795813 -33.800271 0.004458434 234.6434 0.22165204 + 554400 -33.795773 -33.800505 0.0047323155 249.05754 -0.1030274 + 554500 -33.794129 -33.800768 0.0066398681 349.45033 -0.40335368 + 554600 -33.793617 -33.800997 0.0073803968 388.4237 -0.72660001 + 554700 -33.797582 -33.801117 0.0035341489 185.9991 -1.0398589 + 554800 -33.798751 -33.80121 0.0024586318 129.3956 -1.1524493 + 554900 -33.795759 -33.801354 0.0055956901 294.49618 -1.0958491 + 555000 -33.792653 -33.801452 0.0087989614 463.08149 -0.94195137 + 555100 -33.79545 -33.801328 0.0058778891 309.34806 -0.83724783 + 555200 -33.796865 -33.801089 0.0042240319 222.30703 -0.6769974 + 555300 -33.795746 -33.80078 0.0050338863 264.92894 -0.41274742 + 555400 -33.788315 -33.80021 0.011894735 626.0093 0.13583975 + 555500 -33.793115 -33.799325 0.0062092881 326.78929 0.51238586 + 555600 -33.795079 -33.798676 0.0035968276 189.29783 0.80562742 + 555700 -33.793831 -33.798178 0.0043474009 228.79983 1.1492784 + 555800 -33.790797 -33.797761 0.006963338 366.47427 1.5702479 + 555900 -33.790239 -33.797461 0.007222342 380.10542 1.9552764 + 556000 -33.793987 -33.797394 0.0034066779 179.29042 2.1351578 + 556100 -33.795832 -33.797582 0.0017498223 92.091587 2.1770835 + 556200 -33.794436 -33.798081 0.0036455679 191.86299 2.1760148 + 556300 -33.792254 -33.798929 0.0066754026 351.32049 2.0671021 + 556400 -33.792887 -33.799803 0.0069159619 363.98091 1.7957167 + 556500 -33.795765 -33.800422 0.0046566852 245.07719 1.4520599 + 556600 -33.797476 -33.800806 0.0033298726 175.24822 1.1397792 + 556700 -33.797572 -33.801071 0.0034990652 184.15268 0.85338404 + 556800 -33.793136 -33.801272 0.0081365803 428.22096 0.55632645 + 556900 -33.79299 -33.801231 0.0082407061 433.70101 0.039650253 + 557000 -33.797334 -33.800986 0.0036522718 192.21581 -0.43406359 + 557100 -33.797511 -33.800767 0.0032562538 171.37373 -0.6929431 + 557200 -33.793845 -33.800549 0.0067048392 352.86971 -0.85614915 + 557300 -33.792644 -33.800259 0.0076149586 400.76848 -1.0472217 + 557400 -33.794503 -33.800001 0.0054979951 289.35458 -1.1891196 + 557500 -33.795418 -33.799869 0.0044508417 234.24383 -1.1995931 + 557600 -33.794145 -33.799864 0.0057186235 300.96606 -1.0502894 + 557700 -33.789128 -33.799899 0.010770864 566.86095 -0.68102969 + 557800 -33.794302 -33.799802 0.005499274 289.42188 -0.43777623 + 557900 -33.796513 -33.799693 0.00317976 167.34793 -0.21326738 + 558000 -33.794979 -33.799595 0.0046155116 242.91026 0.11505102 + 558100 -33.792117 -33.799392 0.0072754341 382.89961 0.56747244 + 558200 -33.792632 -33.798999 0.0063674213 335.11171 0.98286389 + 558300 -33.793934 -33.798543 0.0046089402 242.56441 1.2946601 + 558400 -33.793664 -33.798115 0.0044509443 234.24923 1.5622708 + 558500 -33.79305 -33.797749 0.0046991121 247.31008 1.7761526 + 558600 -33.791248 -33.797493 0.006245252 328.68204 1.9347583 + 558700 -33.789687 -33.797378 0.0076907208 404.75578 2.0041786 + 558800 -33.792312 -33.797452 0.0051400013 270.51368 1.8898204 + 558900 -33.794946 -33.797731 0.0027850858 146.57658 1.6996365 + 559000 -33.794391 -33.79825 0.0038590943 203.10069 1.5008931 + 559100 -33.786533 -33.799255 0.012722652 669.58185 1.2230986 + 559200 -33.792749 -33.800237 0.0074876176 394.06664 0.55325526 + 559300 -33.79557 -33.800811 0.0052409123 275.82454 0.072968995 + 559400 -33.79614 -33.801211 0.005070796 266.87147 -0.33410015 + 559500 -33.79562 -33.801472 0.0058523471 308.00381 -0.72207698 + 559600 -33.793909 -33.801557 0.0076471031 402.46022 -1.1062309 + 559700 -33.795106 -33.801398 0.0062918809 331.13608 -1.5412617 + 559800 -33.797893 -33.801129 0.003236019 170.3088 -1.8736017 + 559900 -33.797684 -33.800887 0.0032025241 168.54599 -2.0270996 + 560000 -33.792287 -33.800571 0.0082840036 435.97972 -2.0364036 + 560100 -33.792809 -33.800097 0.0072877683 383.54874 -2.098288 + 560200 -33.795186 -33.799697 0.0045110693 237.41356 -2.100732 + 560300 -33.795086 -33.79945 0.0043635859 229.65163 -1.9695421 + 560400 -33.787943 -33.799281 0.0113387 596.74569 -1.5518431 + 560500 -33.789714 -33.798988 0.0092746413 488.1161 -1.1230512 + 560600 -33.79374 -33.798736 0.0049955016 262.90879 -0.84471907 + 560700 -33.793638 -33.798558 0.0049205286 258.96303 -0.50182317 + 560800 -33.791793 -33.798393 0.0066006285 347.38519 -0.099746336 + 560900 -33.789928 -33.798138 0.0082105482 432.11383 0.33723473 + 561000 -33.793539 -33.797802 0.0042623656 224.3245 0.60053981 + 561100 -33.795212 -33.797591 0.0023792321 125.21686 0.73971261 + 561200 -33.793008 -33.797493 0.0044853546 236.06021 0.87650429 + 561300 -33.789304 -33.797395 0.0080917042 425.85917 0.99710544 + 561400 -33.791291 -33.797249 0.0059577746 313.55236 0.92081895 + 561500 -33.792907 -33.79716 0.0042526175 223.81146 0.78735828 + 561600 -33.792169 -33.7972 0.0050312832 264.79195 0.63806271 + 561700 -33.785107 -33.797388 0.012280493 646.3114 0.47097635 + 561800 -33.791281 -33.797559 0.0062776859 330.38901 -0.017951988 + 561900 -33.793524 -33.79775 0.0042258128 222.40076 -0.32080525 + 562000 -33.792551 -33.798095 0.0055434298 291.74577 -0.55041586 + 562100 -33.790766 -33.798584 0.0078176427 411.43556 -0.77112243 + 562200 -33.793846 -33.799053 0.0052075928 274.07097 -1.0539901 + 562300 -33.796745 -33.799372 0.00262736 138.27561 -1.2188172 + 562400 -33.79553 -33.799717 0.0041876086 220.3901 -1.2253176 + 562500 -33.791435 -33.800137 0.0087018791 457.97214 -1.1205488 + 562600 -33.793205 -33.800366 0.0071616922 376.91348 -1.079339 + 562700 -33.794853 -33.800354 0.005500529 289.48793 -0.99849296 + 562800 -33.795157 -33.800198 0.0050414255 265.32572 -0.86025818 + 562900 -33.79405 -33.799928 0.0058783057 309.36999 -0.64749585 + 563000 -33.789006 -33.799463 0.010457308 550.35878 -0.27099761 + 563100 -33.792005 -33.798745 0.0067396038 354.69933 0.002132795 + 563200 -33.795604 -33.798284 0.0026800124 141.04666 0.15605734 + 563300 -33.794583 -33.798079 0.0034961934 184.00154 0.37789355 + 563400 -33.791687 -33.798069 0.0063829512 335.92903 0.68476742 + 563500 -33.791369 -33.798239 0.0068706843 361.59799 0.96103883 + 563600 -33.792972 -33.798532 0.0055592403 292.57786 1.1404085 + 563700 -33.794498 -33.798901 0.0044027614 231.71341 1.2398955 + 563800 -33.796668 -33.799295 0.0026268111 138.24673 1.2547313 + 563900 -33.797164 -33.799688 0.0025239625 132.8339 1.2328437 + 564000 -33.793307 -33.800228 0.0069217936 364.28782 1.2241561 + 564100 -33.791686 -33.800819 0.0091330193 480.66266 1.0785094 + 564200 -33.795839 -33.801072 0.0052328962 275.40266 0.80138921 + 564300 -33.796529 -33.801115 0.0045865719 241.38719 0.60157537 + 564400 -33.795656 -33.801025 0.005369965 282.61647 0.41436819 + 564500 -33.79449 -33.800778 0.006288022 330.93299 0.20330678 + 564600 -33.793734 -33.80037 0.0066367182 349.28456 -0.016737358 + 564700 -33.79295 -33.79983 0.0068797551 362.07538 -0.21815937 + 564800 -33.794086 -33.799265 0.005179572 272.59625 -0.40899774 + 564900 -33.794591 -33.798833 0.0042420443 223.25501 -0.50204078 + 565000 -33.792236 -33.798525 0.0062889954 330.98422 -0.46120346 + 565100 -33.788751 -33.798216 0.0094649152 498.13004 -0.31302372 + 565200 -33.79359 -33.797911 0.0043209467 227.40757 -0.26381375 + 565300 -33.795157 -33.797793 0.002635151 138.68565 -0.14629696 + 565400 -33.793634 -33.797812 0.0041776402 219.86548 0.097787686 + 565500 -33.791615 -33.797857 0.006242297 328.52652 0.45574169 + 565600 -33.791336 -33.797781 0.0064444136 339.16374 0.82569425 + 565700 -33.792822 -33.797567 0.0047449208 249.72095 1.1341846 + 565800 -33.795014 -33.797355 0.0023419473 123.2546 1.3454889 + 565900 -33.795312 -33.79728 0.0019679152 103.56962 1.5026179 + 566000 -33.79168 -33.797356 0.0056761491 298.73067 1.7418481 + 566100 -33.789857 -33.797503 0.0076463698 402.42162 1.9611098 + 566200 -33.792316 -33.797644 0.0053275506 280.38424 2.0225033 + 566300 -33.79431 -33.797857 0.0035473902 186.69598 2.0112029 + 566400 -33.793964 -33.798235 0.0042716162 224.81135 1.9719987 + 566500 -33.787803 -33.798929 0.011126124 585.55796 1.9392313 + 566600 -33.792771 -33.799655 0.0068846332 362.33211 1.6121523 + 566700 -33.795754 -33.800127 0.0043731843 230.15679 1.3512277 + 566800 -33.795223 -33.800577 0.0053541507 281.78417 1.1333852 + 566900 -33.793703 -33.801006 0.0073031367 384.35757 0.88197689 + 567000 -33.795243 -33.801274 0.0060305753 317.3838 0.53691745 + 567100 -33.798495 -33.801342 0.0028465708 149.81248 0.239833 + 567200 -33.798042 -33.801344 0.0033015119 173.75563 0.070603388 + 567300 -33.793372 -33.801242 0.0078704546 414.215 -0.061352639 + 567400 -33.793583 -33.800867 0.0072834663 383.32233 -0.31626498 + 567500 -33.795636 -33.800356 0.0047196892 248.39303 -0.5343195 + 567600 -33.795505 -33.799838 0.0043328181 228.03235 -0.64195027 + 567700 -33.792789 -33.799271 0.0064816521 341.12357 -0.63680714 + 567800 -33.782852 -33.798439 0.01558731 820.34621 -0.42425747 + 567900 -33.791684 -33.797364 0.0056805955 298.96467 -0.52119313 + 568000 -33.793852 -33.796901 0.0030489714 160.46464 -0.4607719 + 568100 -33.791666 -33.796778 0.0051123059 269.0561 -0.24060904 + 568200 -33.787647 -33.796907 0.0092596507 487.32716 0.14507264 + 568300 -33.791288 -33.797118 0.0058302212 306.83934 0.41311097 + 568400 -33.793689 -33.797353 0.0036634993 192.8067 0.60484571 + 568500 -33.792823 -33.797682 0.0048594876 255.7505 0.82669553 + 568600 -33.791599 -33.798065 0.0064660248 340.30112 1.0523823 + 568700 -33.792078 -33.798351 0.0062725015 330.11616 1.1976767 + 568800 -33.793142 -33.798487 0.005345182 281.31216 1.2661196 + 568900 -33.793753 -33.798516 0.0047634166 250.69437 1.2762703 + 569000 -33.792338 -33.798479 0.006141229 323.2074 1.2551071 + 569100 -33.789152 -33.798314 0.0091617329 482.17383 1.1876232 + 569200 -33.792937 -33.798018 0.0050815091 267.43529 0.93194593 + 569300 -33.795009 -33.797853 0.0028446134 149.70947 0.72233958 + 569400 -33.792996 -33.79789 0.0048940902 257.5716 0.56853621 + 569500 -33.787594 -33.798108 0.010514211 553.35353 0.34424386 + 569600 -33.791609 -33.798294 0.0066843602 351.79191 -0.069692359 + 569700 -33.793742 -33.798466 0.0047238786 248.61352 -0.35463289 + 569800 -33.793773 -33.798685 0.0049118862 258.50819 -0.54954006 + 569900 -33.79101 -33.798935 0.0079251786 417.09508 -0.67192096 + 570000 -33.788987 -33.79907 0.010082667 530.64178 -0.81206392 + 570100 -33.795229 -33.798983 0.0037545814 197.60027 -1.0493311 + 570200 -33.795462 -33.79888 0.0034176174 179.86615 -1.0940533 + 570300 -33.792556 -33.798741 0.0061848928 325.50539 -1.0276575 + 570400 -33.790598 -33.798439 0.0078404922 412.63811 -0.93690213 + 570500 -33.792464 -33.798019 0.0055551625 292.36325 -0.88752227 + 570600 -33.792834 -33.79763 0.004796422 252.43141 -0.78334708 + 570700 -33.792046 -33.797313 0.0052671695 277.20643 -0.62639406 + 570800 -33.790159 -33.797085 0.0069261163 364.51532 -0.39888537 + 570900 -33.788601 -33.796951 0.0083503912 439.47364 -0.13534916 + 571000 -33.792368 -33.796944 0.004576392 240.85143 0.003477115 + 571100 -33.79416 -33.797131 0.0029716174 156.39357 0.11169868 + 571200 -33.792144 -33.797576 0.0054327411 285.92032 0.26829891 + 571300 -33.787553 -33.798323 0.010769835 566.8068 0.48467728 + 571400 -33.793416 -33.79891 0.0054943541 289.16296 0.45373378 + 571500 -33.794483 -33.799268 0.0047849447 251.82737 0.44530126 + 571600 -33.793567 -33.799549 0.0059812681 314.7888 0.42364614 + 571700 -33.792982 -33.799682 0.0066993674 352.58173 0.3416184 + 571800 -33.794858 -33.799612 0.0047537599 250.18614 0.16615228 + 571900 -33.796773 -33.799451 0.0026781521 140.94875 -0.010813078 + 572000 -33.795786 -33.799285 0.0034992894 184.16448 -0.14591841 + 572100 -33.79052 -33.79898 0.0084593858 445.20993 -0.31170599 + 572200 -33.792033 -33.798479 0.0064466769 339.28285 -0.66092116 + 572300 -33.794177 -33.798047 0.0038700007 203.67469 -0.9540003 + 572400 -33.793338 -33.797785 0.0044474783 234.06682 -1.1353955 + 572500 -33.785424 -33.797607 0.012182833 641.17164 -1.2063544 + 572600 -33.790989 -33.797483 0.0064942522 341.7867 -1.5057171 + 572700 -33.793117 -33.797559 0.0044416772 233.76151 -1.6136885 + 572800 -33.792483 -33.797861 0.0053784197 283.06143 -1.5648756 + 572900 -33.789904 -33.79837 0.0084663931 445.57872 -1.3786183 + 573000 -33.791295 -33.798921 0.0076269227 401.39814 -1.1739038 + 573100 -33.795893 -33.799261 0.0033687489 177.29425 -1.04583 + 573200 -33.795673 -33.799545 0.0038722696 203.79409 -0.81922326 + 573300 -33.791675 -33.799842 0.0081675492 429.85083 -0.41612749 + 573400 -33.791879 -33.799963 0.0080840957 425.45874 0.0064343128 + 573500 -33.797366 -33.799876 0.0025094449 132.06985 0.19301572 + 573600 -33.797163 -33.799797 0.0026336853 138.60851 0.39790319 + 573700 -33.794726 -33.799711 0.0049849026 262.35098 0.66446201 + 573800 -33.791938 -33.799536 0.0075984851 399.90149 0.96691681 + 573900 -33.793248 -33.799253 0.0060043015 316.00103 1.1545546 + 574000 -33.796102 -33.799019 0.0029175478 153.54794 1.211162 + 574100 -33.797385 -33.798957 0.0015718075 82.722829 1.2062872 + 574200 -33.795764 -33.799079 0.003315014 174.46623 1.1879634 + 574300 -33.790932 -33.79941 0.0084781381 446.19684 1.1061625 + 574400 -33.793157 -33.799681 0.0065248292 343.39594 0.81152823 + 574500 -33.795984 -33.799811 0.0038263733 201.37861 0.53425191 + 574600 -33.795774 -33.799901 0.0041275791 217.23081 0.32360131 + 574700 -33.788672 -33.799951 0.011278662 593.58592 0.17198072 + 574800 -33.791385 -33.799738 0.0083528883 439.60506 -0.26036589 + 574900 -33.794722 -33.799432 0.0047103391 247.90094 -0.57592367 + 575000 -33.794351 -33.799154 0.0048029832 252.77672 -0.74000163 + 575100 -33.79197 -33.798894 0.0069243506 364.42239 -0.8114805 + 575200 -33.79023 -33.798635 0.0084051447 442.35527 -0.83814535 + 575300 -33.794861 -33.798475 0.0036138357 190.19295 -0.90220215 + 575400 -33.796155 -33.798551 0.0023953441 126.06482 -0.8294698 + 575500 -33.79361 -33.79891 0.0053007915 278.97593 -0.56884673 + 575600 -33.7911 -33.799558 0.0084584355 445.15991 -0.1299307 + 575700 -33.793676 -33.800152 0.0064761422 340.83358 0.24020751 + 575800 -33.795615 -33.800591 0.00497694 261.93192 0.57001595 + 575900 -33.796011 -33.800934 0.0049231494 259.10096 0.89821012 + 576000 -33.793976 -33.8012 0.0072242369 380.20514 1.2702897 + 576100 -33.791197 -33.801307 0.010109685 532.06371 1.7058408 + 576200 -33.796981 -33.801166 0.0041846617 220.23501 1.8694627 + 576300 -33.797857 -33.800989 0.0031325944 164.86565 1.9845751 + 576400 -33.795211 -33.800767 0.0055565967 292.43873 2.1010797 + 576500 -33.792451 -33.800366 0.0079150858 416.56391 2.1520516 + 576600 -33.793983 -33.799846 0.0058635839 308.59519 2.0373892 + 576700 -33.794623 -33.799354 0.0047316019 249.01999 1.8805569 + 576800 -33.793445 -33.79891 0.0054648104 287.6081 1.688805 + 576900 -33.786613 -33.798396 0.011782739 620.11504 1.4740007 + 577000 -33.790651 -33.797698 0.0070462358 370.83711 0.93378068 + 577100 -33.794165 -33.797334 0.0031691529 166.78969 0.57585848 + 577200 -33.792593 -33.797212 0.0046182531 243.05454 0.34471999 + 577300 -33.788911 -33.797232 0.0083210943 437.93177 0.10740255 + 577400 -33.790736 -33.797273 0.0065362073 343.99476 -0.23246191 + 577500 -33.794497 -33.79733 0.0028326387 149.07925 -0.47932172 + 577600 -33.79451 -33.797493 0.0029824899 156.96579 -0.54543644 + 577700 -33.786392 -33.797836 0.011443865 602.28043 -0.39300214 + 577800 -33.788761 -33.798116 0.0093553221 492.36226 -0.38727627 + 577900 -33.793906 -33.798164 0.0042578598 224.08737 -0.40870194 + 578000 -33.794698 -33.798219 0.0035210289 185.30861 -0.32212305 + 578100 -33.79201 -33.798354 0.0063441648 333.88773 -0.10444625 + 578200 -33.789294 -33.79853 0.0092364338 486.10527 0.20493289 + 578300 -33.79428 -33.798639 0.0043590942 229.41524 0.34377617 + 578400 -33.795836 -33.798787 0.002950466 155.2804 0.47536571 + 578500 -33.794743 -33.799082 0.0043386761 228.34065 0.64458034 + 578600 -33.793086 -33.799516 0.0064304731 338.43006 0.82175477 + 578700 -33.792989 -33.79998 0.0069905751 367.90773 0.94713355 + 578800 -33.796373 -33.800325 0.003952698 208.02697 0.94049634 + 578900 -33.798257 -33.80056 0.0023033196 121.22166 0.89948745 + 579000 -33.796128 -33.800815 0.0046872779 246.68725 0.88165908 + 579100 -33.790382 -33.801122 0.010740002 565.2367 0.81502303 + 579200 -33.79551 -33.801159 0.0056491646 297.3105 0.50100532 + 579300 -33.797244 -33.801059 0.0038148709 200.77325 0.27761693 + 579400 -33.795893 -33.800904 0.0050112666 263.73849 0.090531601 + 579500 -33.790008 -33.800594 0.010585716 557.11679 -0.10337739 + 579600 -33.794409 -33.800081 0.0056719422 298.50926 -0.53767272 + 579700 -33.797481 -33.799782 0.0023013273 121.1168 -0.79040275 + 579800 -33.796189 -33.799667 0.0034773455 183.00959 -0.89954988 + 579900 -33.792474 -33.799689 0.0072150882 379.72366 -0.95367274 + 580000 -33.792154 -33.799788 0.0076345858 401.80144 -1.0468081 + 580100 -33.795798 -33.799905 0.004106047 216.09759 -1.1455185 + 580200 -33.797076 -33.800063 0.002987199 157.21362 -1.1366996 + 580300 -33.792925 -33.800315 0.0073904244 388.95144 -0.95120266 + 580400 -33.789837 -33.800581 0.010744146 565.45485 -0.66344779 + 580500 -33.796033 -33.800586 0.0045526767 239.60331 -0.58757471 + 580600 -33.796627 -33.800501 0.0038742517 203.89841 -0.43001735 + 580700 -33.79411 -33.800333 0.0062227809 327.49941 -0.17980295 + 580800 -33.79028 -33.799931 0.0096511009 507.92883 0.15867236 + 580900 -33.796045 -33.799373 0.0033275757 175.12734 0.27571032 + 581000 -33.797327 -33.799062 0.0017350487 91.314064 0.36177569 + 581100 -33.795571 -33.798846 0.0032758317 172.4041 0.47851231 + 581200 -33.792618 -33.798645 0.0060265353 317.17118 0.6125094 + 581300 -33.791394 -33.798441 0.0070474785 370.90251 0.67816213 + 581400 -33.793066 -33.798269 0.0052023203 273.79348 0.63359929 + 581500 -33.795428 -33.798202 0.0027737753 145.98132 0.53652293 + 581600 -33.795961 -33.798274 0.0023130207 121.73222 0.44144167 + 581700 -33.791463 -33.798519 0.007055699 371.33515 0.36814165 + 581800 -33.789909 -33.798832 0.0089229115 469.60487 0.11820405 + 581900 -33.794133 -33.798969 0.0048361312 254.52127 -0.22723417 + 582000 -33.794944 -33.799037 0.0040936521 215.44526 -0.46066758 + 582100 -33.793085 -33.799093 0.0060088512 316.24048 -0.6495333 + 582200 -33.784899 -33.799066 0.014167297 745.61221 -0.79133497 + 582300 -33.79265 -33.798781 0.0061312684 322.68319 -1.2721532 + 582400 -33.795309 -33.798594 0.0032846664 172.86906 -1.4744231 + 582500 -33.793626 -33.798555 0.0049288581 259.40141 -1.525326 + 582600 -33.78984 -33.798654 0.0088138535 463.86525 -1.4786427 + 582700 -33.792681 -33.798829 0.0061475004 323.53746 -1.4929141 + 582800 -33.795891 -33.799055 0.0031637443 166.50504 -1.4684208 + 582900 -33.795373 -33.799412 0.0040384696 212.54105 -1.3104808 + 583000 -33.791825 -33.79997 0.0081453946 428.68485 -0.98437573 + 583100 -33.792707 -33.800537 0.0078296848 412.06933 -0.66127973 + 583200 -33.794363 -33.800885 0.0065216418 343.22819 -0.37047714 + 583300 -33.796094 -33.801053 0.0049596841 261.02375 -0.11521735 + 583400 -33.796703 -33.801089 0.0043865256 230.85893 0.11820391 + 583500 -33.795139 -33.801017 0.0058776094 309.33334 0.38580558 + 583600 -33.792519 -33.800758 0.0082390722 433.61502 0.68659388 + 583700 -33.794971 -33.80031 0.0053397688 281.02727 0.84942516 + 583800 -33.797658 -33.799949 0.0022915129 120.60028 0.90457876 + 583900 -33.796769 -33.79973 0.0029602088 155.79315 0.95297587 + 584000 -33.791549 -33.799508 0.0079585694 418.85241 1.0264066 + 584100 -33.792899 -33.799281 0.0063814117 335.84801 0.90973029 + 584200 -33.795062 -33.799162 0.0040990829 215.73108 0.7424083 + 584300 -33.794981 -33.799188 0.0042067105 221.39542 0.59674391 + 584400 -33.789249 -33.799357 0.010107798 531.9644 0.48492259 + 584500 -33.791228 -33.799527 0.0082989215 436.76484 0.12781372 + 584600 -33.795456 -33.799606 0.0041495107 218.38505 -0.17469994 + 584700 -33.794825 -33.799703 0.0048777343 256.71081 -0.34547049 + 584800 -33.79275 -33.7998 0.0070499522 371.03269 -0.4914594 + 584900 -33.79268 -33.799814 0.0071337602 375.44344 -0.66171814 + 585000 -33.796881 -33.79975 0.002869172 151.00196 -0.84833219 + 585100 -33.797399 -33.799739 0.0023402984 123.16782 -0.88339227 + 585200 -33.794011 -33.799801 0.0057891556 304.67809 -0.77397948 + 585300 -33.792451 -33.799855 0.0074041918 389.67601 -0.62875359 + 585400 -33.794375 -33.799838 0.0054630033 287.51299 -0.51455117 + 585500 -33.79563 -33.799812 0.0041822566 220.10843 -0.37206489 + 585600 -33.794356 -33.799819 0.0054629146 287.50832 -0.1580261 + 585700 -33.788329 -33.799808 0.011479978 604.18102 0.24710531 + 585800 -33.794204 -33.799672 0.0054677598 287.76332 0.41961864 + 585900 -33.795921 -33.799567 0.0036461116 191.8916 0.56490519 + 586000 -33.794505 -33.799517 0.0050117505 263.76396 0.74606874 + 586100 -33.79212 -33.799459 0.0073392681 386.25914 0.93631899 + 586200 -33.793181 -33.799329 0.0061477801 323.55218 1.01731 + 586300 -33.797545 -33.799215 0.0016703753 87.910365 0.9635686 + 586400 -33.797383 -33.799218 0.0018355722 96.60453 0.93493973 + 586500 -33.794703 -33.799318 0.0046154989 242.90959 0.87685342 + 586600 -33.792279 -33.799411 0.0071322201 375.36238 0.71572363 + 586700 -33.793158 -33.799362 0.0062038667 326.50397 0.43092032 + 586800 -33.795663 -33.799215 0.003551768 186.92638 0.13649761 + 586900 -33.796905 -33.799098 0.0021932594 115.42929 -0.077739981 + 587000 -33.794865 -33.799052 0.0041865002 220.33177 -0.22321164 + 587100 -33.790348 -33.798995 0.0086476557 455.11841 -0.40471424 + 587200 -33.792867 -33.79885 0.0059832059 314.89079 -0.70767757 + 587300 -33.795204 -33.798753 0.0035490986 186.78589 -0.90374738 + 587400 -33.794326 -33.798779 0.004452956 234.3551 -0.94623459 + 587500 -33.786054 -33.79892 0.01286631 677.14241 -0.77056161 + 587600 -33.792219 -33.798978 0.0067587128 355.70503 -0.81566699 + 587700 -33.794324 -33.799004 0.0046809747 246.35552 -0.73506005 + 587800 -33.793896 -33.799073 0.0051769515 272.45834 -0.54681473 + 587900 -33.791413 -33.799155 0.0077425572 407.48388 -0.23875994 + 588000 -33.790108 -33.799149 0.0090409645 475.8179 0.13996862 + 588100 -33.79553 -33.799052 0.0035211207 185.31344 0.32625556 + 588200 -33.796023 -33.799014 0.002991116 157.41977 0.52366174 + 588300 -33.792772 -33.799049 0.0062773987 330.3739 0.81998816 + 588400 -33.790952 -33.799086 0.0081345113 428.11207 1.1320249 + 588500 -33.793188 -33.799071 0.0058832272 309.629 1.3013276 + 588600 -33.794084 -33.799077 0.0049933264 262.79431 1.4106811 + 588700 -33.79361 -33.799138 0.0055277426 290.92016 1.4667254 + 588800 -33.789934 -33.799244 0.0093101999 489.98752 1.5078804 + 588900 -33.789317 -33.799295 0.0099775591 525.11003 1.389492 + 589000 -33.795494 -33.799258 0.0037639259 198.09206 1.1116174 + 589100 -33.795371 -33.799264 0.0038927883 204.87397 0.92944241 + 589200 -33.791969 -33.799292 0.0073223531 385.36891 0.70484081 + 589300 -33.790863 -33.7992 0.0083372913 438.7842 0.30387484 + 589400 -33.79645 -33.799009 0.0025591025 134.68328 -0.15218842 + 589500 -33.796812 -33.798903 0.0020910419 110.04967 -0.38580863 + 589600 -33.794865 -33.798833 0.0039684259 208.85471 -0.60773849 + 589700 -33.791876 -33.798719 0.0068427212 360.12631 -0.88261692 + 589800 -33.791694 -33.798486 0.0067919166 357.45251 -1.2308686 + 589900 -33.794186 -33.798217 0.0040318536 212.19286 -1.5409947 + 590000 -33.796195 -33.798078 0.0018827434 99.087107 -1.7059021 + 590100 -33.795996 -33.798116 0.00212074 111.61265 -1.7256728 + 590200 -33.791169 -33.79838 0.0072109045 379.50347 -1.5492744 + 590300 -33.791055 -33.798747 0.0076912784 404.78512 -1.3574638 + 590400 -33.79452 -33.799017 0.0044969427 236.67008 -1.2168727 + 590500 -33.795502 -33.799242 0.0037394327 196.80301 -1.0255361 + 590600 -33.791999 -33.799491 0.0074922611 394.31102 -0.69024394 + 590700 -33.787626 -33.799678 0.012052276 634.30053 -0.18080048 + 590800 -33.794505 -33.799609 0.0051033425 268.58436 0.018530051 + 590900 -33.794905 -33.799462 0.0045569386 239.82761 0.24851883 + 591000 -33.793258 -33.799249 0.0059911614 315.30948 0.49166071 + 591100 -33.790318 -33.798906 0.0085879682 451.97711 0.75401329 + 591200 -33.792854 -33.798438 0.0055842658 293.89493 0.8547076 + 591300 -33.795867 -33.798141 0.0022735733 119.65613 0.8415763 + 591400 -33.794828 -33.798027 0.0031991923 168.37064 0.83087219 + 591500 -33.791016 -33.798034 0.0070181094 369.35684 0.76706547 + 591600 -33.791367 -33.798124 0.006756465 355.58673 0.53513341 + 591700 -33.793335 -33.798266 0.0049307931 259.50325 0.25127515 + 591800 -33.794402 -33.798474 0.0040719459 214.30288 -0.015899679 + 591900 -33.793521 -33.798772 0.0052508767 276.34896 -0.25525249 + 592000 -33.789379 -33.799178 0.0097998869 515.75931 -0.51022618 + 592100 -33.793518 -33.799511 0.0059932606 315.41996 -0.94079255 + 592200 -33.796251 -33.799704 0.0034521143 181.6817 -1.209295 + 592300 -33.795288 -33.799894 0.0046060493 242.41227 -1.3483805 + 592400 -33.792267 -33.800099 0.0078317317 412.17705 -1.433721 + 592500 -33.793826 -33.800207 0.0063804658 335.79822 -1.569308 + 592600 -33.798559 -33.800228 0.0016686413 87.819103 -1.6859208 + 592700 -33.797726 -33.800301 0.0025749064 135.51503 -1.6207255 + 592800 -33.794006 -33.80044 0.0064343857 338.63598 -1.3930297 + 592900 -33.792851 -33.800516 0.0076649107 403.39741 -1.1200288 + 593000 -33.79578 -33.800454 0.0046742667 246.00249 -0.91940604 + 593100 -33.797469 -33.800347 0.0028773258 151.43109 -0.73634909 + 593200 -33.795961 -33.800236 0.0042749945 224.98914 -0.49767577 + 593300 -33.789915 -33.799972 0.010057141 529.29833 -0.050937173 + 593400 -33.79374 -33.799493 0.0057526374 302.75618 0.198373 + 593500 -33.795733 -33.79907 0.0033369926 175.62295 0.35656254 + 593600 -33.794182 -33.798678 0.0044956725 236.60323 0.52716379 + 593700 -33.788536 -33.798105 0.0095687089 503.59262 0.76449005 + 593800 -33.790288 -33.797369 0.0070804154 372.63595 0.80244285 + 593900 -33.791922 -33.796733 0.0048105643 253.17571 0.76980307 + 594000 -33.791737 -33.796241 0.0045044513 237.06525 0.70382979 + 594100 -33.787794 -33.795805 0.0080109428 421.60878 0.62713059 + 594200 -33.785609 -33.795267 0.0096572987 508.25502 0.40668285 + 594300 -33.791895 -33.794897 0.003002159 158.00095 0.05206868 + 594400 -33.791752 -33.794819 0.0030669664 161.41171 -0.12314652 + 594500 -33.789189 -33.794963 0.0057739915 303.88002 -0.28275961 + 594600 -33.787506 -33.79528 0.0077738655 409.13161 -0.50413148 + 594700 -33.790167 -33.795617 0.005450934 286.87779 -0.76539208 + 594800 -33.793239 -33.795942 0.0027021534 142.21192 -0.93205156 + 594900 -33.795066 -33.796272 0.0012061187 63.47695 -0.98524215 + 595000 -33.79478 -33.7967 0.0019198256 101.03871 -0.92237146 + 595100 -33.789411 -33.797595 0.0081833575 430.68281 -0.62275849 + 595200 -33.791332 -33.798586 0.0072541203 381.77788 -0.37487031 + 595300 -33.79504 -33.799219 0.0041792225 219.94875 -0.19678816 + 595400 -33.795621 -33.79967 0.0040495042 213.12179 0.014915957 + 595500 -33.792425 -33.800096 0.0076713661 403.73715 0.3357207 + 595600 -33.789446 -33.800452 0.011006122 579.24239 0.74474324 + 595700 -33.797058 -33.800535 0.0034767014 182.97569 0.83826567 + 595800 -33.796929 -33.80055 0.0036204908 190.5432 0.98047341 + 595900 -33.794002 -33.800542 0.0065395714 344.17181 1.1590198 + 596000 -33.792429 -33.800429 0.0079999261 421.02898 1.2793211 + 596100 -33.796241 -33.800222 0.0039807311 209.50233 1.2312106 + 596200 -33.798446 -33.80009 0.0016438252 86.513054 1.1600918 + 596300 -33.797222 -33.800041 0.0028190377 148.36344 1.0962426 + 596400 -33.793465 -33.799988 0.0065227009 343.28393 0.95868484 + 596500 -33.79372 -33.799834 0.0061130824 321.72607 0.6723234 + 596600 -33.794833 -33.799597 0.0047642487 250.73816 0.35998145 + 596700 -33.794678 -33.799326 0.0046480995 244.62533 0.083220094 + 596800 -33.791666 -33.798976 0.0073099774 384.71759 -0.17354342 + 596900 -33.789774 -33.798431 0.0086560646 455.56096 -0.51718959 + 597000 -33.794675 -33.797918 0.0032429326 170.67265 -0.89632629 + 597100 -33.79551 -33.797675 0.0021643492 113.90777 -1.0484708 + 597200 -33.793455 -33.797605 0.0041497903 218.39976 -1.0797929 + 597300 -33.791724 -33.797683 0.0059592986 313.63257 -1.0510372 + 597400 -33.791359 -33.79786 0.0065008995 342.13654 -0.97859307 + 597500 -33.792789 -33.798078 0.0052889868 278.35466 -0.88139775 + 597600 -33.794914 -33.798303 0.003388859 178.35263 -0.76625749 + 597700 -33.795544 -33.798543 0.0029993875 157.85509 -0.61216737 + 597800 -33.791497 -33.798869 0.0073729826 388.0335 -0.29633072 + 597900 -33.789663 -33.799192 0.0095296151 501.53514 0.099772348 + 598000 -33.794544 -33.799275 0.0047311234 248.9948 0.28844228 + 598100 -33.79497 -33.799269 0.0042996836 226.28851 0.48868479 + 598200 -33.793663 -33.799215 0.0055521911 292.20687 0.70148353 + 598300 -33.79239 -33.799083 0.0066931749 352.25582 0.88779609 + 598400 -33.793328 -33.798879 0.0055509041 292.13913 0.98245409 + 598500 -33.796547 -33.798724 0.0021761486 114.52876 0.95264253 + 598600 -33.796328 -33.798702 0.0023746632 124.97641 0.92115024 + 598700 -33.792355 -33.798802 0.0064475949 339.33117 0.87412242 + 598800 -33.791182 -33.798927 0.0077451728 407.62153 0.66142051 + 598900 -33.794058 -33.798985 0.0049274206 259.32575 0.34873483 + 599000 -33.795559 -33.799022 0.0034630424 182.25683 0.093542578 + 599100 -33.793753 -33.799079 0.005325883 280.29647 -0.11038543 + 599200 -33.787766 -33.799091 0.011324332 595.9895 -0.36089421 + 599300 -33.793703 -33.798924 0.0052210113 274.77717 -0.81993518 + 599400 -33.795166 -33.798761 0.0035946694 189.18424 -1.0645697 + 599500 -33.793505 -33.798622 0.0051162972 269.26616 -1.1967898 + 599600 -33.790101 -33.798433 0.0083317244 438.49123 -1.275994 + 599700 -33.792685 -33.798174 0.0054897008 288.91805 -1.4246467 + 599800 -33.796533 -33.798058 0.0015248086 80.249316 -1.5017293 + 599900 -33.795494 -33.798121 0.002626442 138.2273 -1.4005428 + 600000 -33.791878 -33.798364 0.0064857174 341.33752 -1.1231479 + 600100 -33.790935 -33.798662 0.007726492 406.63838 -0.77915278 + 600200 -33.794177 -33.798861 0.0046846767 246.55036 -0.52880516 + 600300 -33.795923 -33.799007 0.0030840062 162.3085 -0.32075694 + 600400 -33.794187 -33.799178 0.0049910275 262.67333 -0.059006078 + 600500 -33.787964 -33.799394 0.011430441 601.57392 0.38729642 + 600600 -33.79404 -33.799452 0.005411592 284.80726 0.53897038 + 600700 -33.79564 -33.79946 0.0038208353 201.08715 0.64873164 + 600800 -33.79418 -33.799509 0.0053292199 280.47209 0.74205277 + 600900 -33.7901 -33.799579 0.0094788863 498.86533 0.82006702 + 601000 -33.793704 -33.799581 0.005877537 309.32953 0.67155264 + 601100 -33.797117 -33.799592 0.0024747383 130.24327 0.49785105 + 601200 -33.795706 -33.799688 0.0039823564 209.58787 0.36189592 + 601300 -33.791589 -33.79986 0.008270825 435.28614 0.13934122 + 601400 -33.793153 -33.799955 0.0068017057 357.9677 -0.27941759 + 601500 -33.795728 -33.799944 0.0042163173 221.90102 -0.6549422 + 601600 -33.795557 -33.799903 0.0043468598 228.77135 -0.93565848 + 601700 -33.784895 -33.799779 0.014884519 783.35897 -1.0837368 + 601800 -33.790281 -33.799296 0.0090155105 474.47827 -1.6540661 + 601900 -33.794496 -33.798832 0.0043358112 228.18988 -1.992186 + 602000 -33.794557 -33.798455 0.0038979239 205.14426 -2.1215241 + 602100 -33.791088 -33.79807 0.0069818876 367.45052 -2.083688 + 602200 -33.788922 -33.797553 0.0086306447 454.22313 -1.9705074 + 602300 -33.793411 -33.797072 0.0036607888 192.66405 -1.9098302 + 602400 -33.794815 -33.796841 0.0020264644 106.65101 -1.7548149 + 602500 -33.792577 -33.796768 0.0041905635 220.54562 -1.4219764 + 602600 -33.790271 -33.796726 0.0064551597 339.7293 -0.86954478 + 602700 -33.790843 -33.79664 0.0057969812 305.08995 -0.31670038 + 602800 -33.791744 -33.796528 0.0047837747 251.7658 0.18316396 + 602900 -33.791345 -33.796427 0.005082138 267.46839 0.66891422 + 603000 -33.788693 -33.796342 0.0076493744 402.57975 1.2142515 + 603100 -33.788423 -33.796223 0.007800315 410.52362 1.708502 + 603200 -33.793017 -33.796168 0.0031511933 165.84449 1.9221595 + 603300 -33.793516 -33.796311 0.0027956046 147.13017 2.0211106 + 603400 -33.789878 -33.796744 0.0068655975 361.33027 2.071312 + 603500 -33.788936 -33.797447 0.0085110116 447.92695 1.9270788 + 603600 -33.792059 -33.798082 0.0060230491 316.9877 1.6113687 + 603700 -33.793997 -33.798602 0.0046045544 242.33359 1.2778886 + 603800 -33.794219 -33.799076 0.0048566157 255.59935 0.93350433 + 603900 -33.791177 -33.799534 0.0083574145 439.84327 0.54756724 + 604000 -33.790669 -33.799862 0.0091936282 483.85245 -0.037664534 + 604100 -33.796259 -33.799909 0.0036502668 192.11028 -0.59463319 + 604200 -33.796288 -33.799868 0.0035806006 188.44382 -0.91820267 + 604300 -33.793345 -33.799759 0.0064138185 337.55355 -1.1907877 + 604400 -33.791827 -33.799491 0.0076640614 403.35271 -1.5146063 + 604500 -33.793389 -33.799117 0.0057285137 301.48656 -1.8104069 + 604600 -33.793616 -33.798759 0.0051435156 270.69864 -1.956623 + 604700 -33.792868 -33.798446 0.0055784046 293.58646 -1.9748775 + 604800 -33.790893 -33.798175 0.0072819223 383.24108 -1.8547395 + 604900 -33.789359 -33.797925 0.0085655254 450.79596 -1.6082935 + 605000 -33.793638 -33.797744 0.0041058422 216.08681 -1.4230557 + 605100 -33.794797 -33.797735 0.0029377371 154.61049 -1.1834246 + 605200 -33.791909 -33.797901 0.0059913822 315.3211 -0.76205782 + 605300 -33.788448 -33.79818 0.0097318083 512.17639 -0.11664193 + 605400 -33.792055 -33.798368 0.0063132886 332.26275 0.36334811 + 605500 -33.793321 -33.798508 0.0051866184 272.9671 0.780291 + 605600 -33.793323 -33.798665 0.0053421494 281.15256 1.1507051 + 605700 -33.791884 -33.798872 0.0069881066 367.77782 1.504461 + 605800 -33.789961 -33.799112 0.0091504553 481.5803 1.8321404 + 605900 -33.794801 -33.799309 0.0045080558 237.25496 1.9040435 + 606000 -33.79628 -33.799526 0.0032460053 170.83436 1.8997788 + 606100 -33.794021 -33.799872 0.005850615 307.91265 1.8492614 + 606200 -33.789337 -33.800376 0.011039185 580.98244 1.6767862 + 606300 -33.796872 -33.80072 0.0038475636 202.49384 1.217958 + 606400 -33.797524 -33.800908 0.0033836968 178.08094 0.94701386 + 606500 -33.794976 -33.801092 0.0061169694 321.93065 0.64156474 + 606600 -33.792648 -33.801152 0.008503935 447.55451 0.19057386 + 606700 -33.796395 -33.800976 0.0045807619 241.08141 -0.36021277 + 606800 -33.798321 -33.800748 0.0024269646 127.72898 -0.71065462 + 606900 -33.795745 -33.800482 0.0047373452 249.32225 -0.91950965 + 607000 -33.791 -33.799889 0.0088897562 467.85994 -1.2014663 + 607100 -33.794256 -33.799157 0.0049013297 257.95261 -1.5525351 + 607200 -33.795344 -33.798577 0.003232992 170.14949 -1.7047126 + 607300 -33.792529 -33.798086 0.0055574614 292.48424 -1.6616381 + 607400 -33.788546 -33.797489 0.0089427446 470.64867 -1.449561 + 607500 -33.791138 -33.796966 0.0058274604 306.69404 -1.2632769 + 607600 -33.792034 -33.796682 0.0046480545 244.62296 -0.991983 + 607700 -33.791168 -33.796592 0.0054239606 285.45821 -0.59997439 + 607800 -33.789911 -33.796644 0.0067327239 354.33725 -0.10511334 + 607900 -33.791227 -33.796772 0.0055448542 291.82073 0.36814206 + 608000 -33.79415 -33.796934 0.0027832378 146.47932 0.67567481 + 608100 -33.793528 -33.797216 0.0036885683 194.12606 0.96449875 + 608200 -33.789121 -33.797718 0.0085963418 452.4178 1.3616558 + 608300 -33.790767 -33.798266 0.0074983148 394.62962 1.629754 + 608400 -33.794748 -33.798665 0.0039168731 206.14153 1.6983763 + 608500 -33.794736 -33.799081 0.0043454139 228.69526 1.7278674 + 608600 -33.793692 -33.799625 0.0059331477 312.25627 1.6782087 + 608700 -33.79368 -33.800245 0.0065645904 345.48854 1.5046978 + 608800 -33.795311 -33.800824 0.0055129597 290.14215 1.2308639 + 608900 -33.798444 -33.801288 0.0028439684 149.67552 0.91674787 + 609000 -33.79992 -33.801622 0.0017020367 89.576673 0.68268457 + 609100 -33.797951 -33.802013 0.004062017 213.78033 0.47241347 + 609200 -33.79478 -33.802531 0.0077508103 407.91823 0.11878665 + 609300 -33.79668 -33.802841 0.0061616407 324.28165 -0.35787237 + 609400 -33.798754 -33.802901 0.0041469122 218.24829 -0.74197093 + 609500 -33.798681 -33.802813 0.0041324206 217.48561 -1.0089303 + 609600 -33.792348 -33.802508 0.010160374 534.73144 -1.1665282 + 609700 -33.793958 -33.801784 0.0078265692 411.90536 -1.4956643 + 609800 -33.797335 -33.801086 0.0037515672 197.44163 -1.7108301 + 609900 -33.796659 -33.800453 0.0037941399 199.6822 -1.7279831 + 610000 -33.794393 -33.79976 0.0053677394 282.49934 -1.5962159 + 610100 -33.792681 -33.798985 0.0063039824 331.77297 -1.3458273 + 610200 -33.792525 -33.798237 0.0057122691 300.63163 -1.0188462 + 610300 -33.792382 -33.797608 0.0052256516 275.02138 -0.62247103 + 610400 -33.790639 -33.797071 0.0064314967 338.48393 -0.13021844 + 610500 -33.781657 -33.796324 0.014666797 771.90046 0.74240345 + 610600 -33.790583 -33.795533 0.0049501829 260.52371 1.1854843 + 610700 -33.791728 -33.795089 0.003361095 176.89143 1.5201388 + 610800 -33.789394 -33.794836 0.0054420476 286.41011 1.8568733 + 610900 -33.785828 -33.79467 0.0088423566 465.36534 2.1995009 + 611000 -33.788963 -33.794591 0.0056288995 296.24396 2.2927424 + 611100 -33.791537 -33.794714 0.003177167 167.21147 2.2449747 + 611200 -33.791932 -33.795083 0.0031510227 165.83552 2.110307 + 611300 -33.78819 -33.795827 0.0076368205 401.91905 1.8863265 + 611400 -33.787681 -33.796921 0.0092404433 486.31629 1.3864924 + 611500 -33.793301 -33.797757 0.0044562271 234.52726 0.8112141 + 611600 -33.794286 -33.79843 0.004144345 218.11318 0.40416642 + 611700 -33.792452 -33.799162 0.006710384 353.16153 0.010032383 + 611800 -33.789274 -33.799945 0.010671867 561.65084 -0.47613618 + 611900 -33.796292 -33.800422 0.0041301295 217.36503 -1.0704671 + 612000 -33.797354 -33.80065 0.003296371 173.48507 -1.3430442 + 612100 -33.794935 -33.80084 0.0059050026 310.77502 -1.4983902 + 612200 -33.792109 -33.80092 0.0088110874 463.71967 -1.6234043 + 612300 -33.796384 -33.800784 0.0043999388 231.56486 -1.8058873 + 612400 -33.798881 -33.800645 0.0017640478 92.840264 -1.8467838 + 612500 -33.798192 -33.800562 0.0023704474 124.75453 -1.7267842 + 612600 -33.795812 -33.800488 0.0046756848 246.07712 -1.4418434 + 612700 -33.792518 -33.800338 0.0078199653 411.5578 -0.96336794 + 612800 -33.793756 -33.800052 0.0062966648 331.38785 -0.48898363 + 612900 -33.79671 -33.799776 0.0030658996 161.35556 -0.14168292 + 613000 -33.797433 -33.799622 0.0021887552 115.19224 0.14872161 + 613100 -33.793086 -33.799551 0.0064645226 340.22206 0.5848048 + 613200 -33.790785 -33.799447 0.0086624528 455.89717 1.1211973 + 613300 -33.794684 -33.799323 0.0046395276 244.1742 1.4203173 + 613400 -33.795827 -33.799288 0.003460901 182.14413 1.6053233 + 613500 -33.792666 -33.799371 0.0067054124 352.89987 1.775965 + 613600 -33.78765 -33.799531 0.011880342 625.25178 1.9130799 + 613700 -33.79353 -33.799609 0.0060787504 319.91921 1.7398609 + 613800 -33.794568 -33.799701 0.0051329577 270.14298 1.5772738 + 613900 -33.794373 -33.799843 0.0054694491 287.85223 1.3580915 + 614000 -33.793173 -33.80003 0.006856724 360.86327 1.0647097 + 614100 -33.793174 -33.800215 0.007041008 370.56197 0.66591467 + 614200 -33.796426 -33.800343 0.0039175479 206.17705 0.23853126 + 614300 -33.797372 -33.800469 0.0030974539 163.01624 -0.063639814 + 614400 -33.793803 -33.800651 0.0068481037 360.40959 -0.29320009 + 614500 -33.790765 -33.800811 0.010045716 528.69707 -0.64100267 + 614600 -33.795188 -33.800786 0.005597785 294.60643 -1.0423434 + 614700 -33.79589 -33.800685 0.0047940921 252.30879 -1.2414824 + 614800 -33.79497 -33.800535 0.0055644704 292.85311 -1.3166517 + 614900 -33.792295 -33.800292 0.0079964866 420.84796 -1.2679788 + 615000 -33.790328 -33.799845 0.0095169567 500.86894 -1.1235378 + 615100 -33.795751 -33.799366 0.0036154284 190.27677 -1.0641351 + 615200 -33.796318 -33.799066 0.0027478799 144.61847 -0.87852078 + 615300 -33.79304 -33.79881 0.0057702753 303.68444 -0.48182513 + 615400 -33.790775 -33.798449 0.0076742872 403.89089 0.090768756 + 615500 -33.792416 -33.798023 0.0056073061 295.10752 0.59154445 + 615600 -33.793143 -33.797637 0.0044948005 236.55734 1.0399692 + 615700 -33.790952 -33.797277 0.0063252859 332.89415 1.5172826 + 615800 -33.78339 -33.796679 0.013289128 699.39496 2.2362241 + 615900 -33.790992 -33.796013 0.0050209315 264.24714 2.5242037 + 616000 -33.791729 -33.79562 0.0038916595 204.81457 2.7099718 + 616100 -33.789712 -33.795407 0.0056945877 299.70107 2.8195602 + 616200 -33.78673 -33.795332 0.0086026832 452.75154 2.807806 + 616300 -33.790793 -33.795371 0.0045778061 240.92585 2.526131 + 616400 -33.793418 -33.795565 0.0021473372 113.01244 2.2622038 + 616500 -33.791897 -33.796036 0.0041395918 217.86303 1.9724559 + 616600 -33.788929 -33.796862 0.0079330113 417.50731 1.4914933 + 616700 -33.790821 -33.797727 0.0069068107 363.49929 0.82882785 + 616800 -33.79339 -33.798385 0.0049952461 262.89535 0.25175143 + 616900 -33.793654 -33.79895 0.0052959967 278.72358 -0.20785568 + 617000 -33.793434 -33.799481 0.0060465185 318.22287 -0.62035132 + 617100 -33.793893 -33.799931 0.0060378826 317.76837 -0.98536033 + 617200 -33.795341 -33.800271 0.0049296834 259.44484 -1.2641477 + 617300 -33.797871 -33.80051 0.0026397953 138.93007 -1.4243659 + 617400 -33.798345 -33.80072 0.0023749587 124.99196 -1.4209941 + 617500 -33.794228 -33.801018 0.0067902529 357.36495 -1.191002 + 617600 -33.792858 -33.801313 0.0084556149 445.01147 -0.84628421 + 617700 -33.796293 -33.8014 0.0051069198 268.77263 -0.57730703 + 617800 -33.797194 -33.801382 0.0041877855 220.39942 -0.27285811 + 617900 -33.795219 -33.801299 0.0060796965 319.969 0.13580684 + 618000 -33.784753 -33.800996 0.016243232 854.86683 0.91174491 + 618100 -33.794718 -33.800448 0.0057298616 301.55751 1.2584495 + 618200 -33.795721 -33.800015 0.0042944965 226.01552 1.5616745 + 618300 -33.794157 -33.79962 0.0054630744 287.51673 1.8448244 + 618400 -33.790922 -33.799173 0.0082511756 434.25201 2.1240817 + 618500 -33.792605 -33.798691 0.006085865 320.29364 2.2177309 + 618600 -33.796073 -33.798405 0.0023322011 122.74167 2.1481631 + 618700 -33.795752 -33.798329 0.0025760961 135.57764 2.0457833 + 618800 -33.790966 -33.798379 0.0074127177 390.12472 1.8342213 + 618900 -33.79149 -33.798401 0.0069110607 363.72296 1.3486993 + 619000 -33.79381 -33.798342 0.0045324091 238.53665 0.83772395 + 619100 -33.79434 -33.798284 0.0039438437 207.56097 0.39294154 + 619200 -33.790742 -33.798224 0.0074810859 393.72288 -0.036425573 + 619300 -33.787769 -33.798002 0.010233014 538.55441 -0.66961878 + 619400 -33.793767 -33.797713 0.0039459307 207.67081 -1.3102994 + 619500 -33.793858 -33.797556 0.0036982958 194.63801 -1.6250882 + 619600 -33.791834 -33.797507 0.0056734035 298.58616 -1.8270449 + 619700 -33.789782 -33.797523 0.0077407612 407.38936 -1.9623407 + 619800 -33.792474 -33.797532 0.005058597 266.22945 -2.0731168 + 619900 -33.795614 -33.797591 0.0019776414 104.0815 -2.0779231 + 620000 -33.794869 -33.79777 0.0029014462 152.70053 -1.8955375 + 620100 -33.792459 -33.798076 0.0056174774 295.64282 -1.4965675 + 620200 -33.791719 -33.798345 0.0066256007 348.69945 -0.9854212 + 620300 -33.792933 -33.798437 0.0055033038 289.63397 -0.47670255 + 620400 -33.794753 -33.798394 0.0036405754 191.60023 -0.03527517 + 620500 -33.7955 -33.798326 0.0028259391 148.72665 0.34225281 + 620600 -33.792197 -33.798259 0.0060615393 319.01341 0.82849916 + 620700 -33.789152 -33.798085 0.0089328728 470.12913 1.4513469 + 620800 -33.792905 -33.797843 0.0049375975 259.86135 1.8246353 + 620900 -33.794243 -33.797725 0.0034821113 183.26041 2.046038 + 621000 -33.790718 -33.797787 0.0070688191 372.02564 2.2402094 + 621100 -33.784975 -33.797993 0.013017166 685.08186 2.3847451 + 621200 -33.792071 -33.798133 0.0060613893 319.00551 2.1618122 + 621300 -33.793797 -33.798308 0.0045109011 237.4047 1.9450875 + 621400 -33.793427 -33.798551 0.0051240974 269.67667 1.6638366 + 621500 -33.790626 -33.798846 0.0082203591 432.63017 1.2823136 + 621600 -33.791299 -33.799056 0.0077565185 408.21865 0.67787389 + 621700 -33.795995 -33.799097 0.0031017581 163.24276 0.11844415 + 621800 -33.795816 -33.799127 0.0033110255 174.25632 -0.25288165 + 621900 -33.792417 -33.799158 0.0067410533 354.77562 -0.65531886 + 622000 -33.791799 -33.799093 0.0072942298 383.88881 -1.1972201 + 622100 -33.793431 -33.798956 0.0055248674 290.76884 -1.6799146 + 622200 -33.793992 -33.798846 0.0048535562 255.43833 -2.0085566 + 622300 -33.792473 -33.798822 0.0063487391 334.12848 -2.1769211 + 622400 -33.785744 -33.798877 0.013133538 691.20637 -2.1480659 + 622500 -33.793731 -33.798905 0.0051740187 272.30399 -2.2903003 + 622600 -33.795142 -33.799017 0.0038749187 203.93351 -2.1826262 + 622700 -33.793391 -33.799266 0.0058745614 309.17293 -1.8655026 + 622800 -33.790797 -33.799579 0.0087819937 462.18849 -1.3426666 + 622900 -33.795548 -33.799768 0.0042206205 222.12749 -0.91755797 + 623000 -33.797417 -33.799851 0.0024343561 128.11799 -0.59636151 + 623100 -33.795646 -33.799942 0.0042957667 226.08237 -0.16474557 + 623200 -33.792912 -33.799976 0.0070646395 371.80567 0.43187436 + 623300 -33.793551 -33.799831 0.0062799636 330.50888 0.97186137 + 623400 -33.794756 -33.799574 0.0048176753 253.54995 1.3897509 + 623500 -33.794292 -33.799291 0.0049990716 263.09668 1.7321338 + 623600 -33.786479 -33.798874 0.012395567 652.36766 2.1991704 + 623700 -33.791986 -33.798289 0.0063032728 331.73562 2.3340763 + 623800 -33.794441 -33.797936 0.0034954221 183.96095 2.3333631 + 623900 -33.793092 -33.797767 0.0046755412 246.06956 2.2571276 + 624000 -33.78934 -33.797694 0.0083537023 439.6479 2.0451407 + 624100 -33.791045 -33.7976 0.0065549618 344.98179 1.5757017 + 624200 -33.795678 -33.797541 0.0018638411 98.092295 1.1223754 + 624300 -33.795483 -33.797613 0.0021295258 112.07504 0.82385132 + 624400 -33.79288 -33.797806 0.0049255073 259.22505 0.43222251 + 624500 -33.789727 -33.797991 0.0082640272 434.92838 -0.1557028 + 624600 -33.792167 -33.797957 0.0057901137 304.72852 -0.85719362 + 624700 -33.794834 -33.797827 0.0029931491 157.52676 -1.3541718 + 624800 -33.794379 -33.797761 0.0033819661 177.98986 -1.6330294 + 624900 -33.787202 -33.797729 0.010527504 554.05315 -1.7912928 + 625000 -33.79125 -33.797615 0.0063644902 334.95744 -2.1015615 + 625100 -33.793933 -33.797608 0.0036744469 193.38286 -2.1915161 + 625200 -33.793076 -33.79782 0.0047439905 249.67199 -2.0470749 + 625300 -33.787401 -33.798324 0.010923198 574.87815 -1.5881248 + 625400 -33.792843 -33.798917 0.0060739903 319.66869 -1.1685138 + 625500 -33.795993 -33.799299 0.0033059337 173.98834 -0.85304798 + 625600 -33.794222 -33.799768 0.0055460376 291.88301 -0.3699829 + 625700 -33.791325 -33.800312 0.008986739 472.96406 0.31389157 + 625800 -33.79557 -33.800645 0.0050743968 267.06098 0.83728316 + 625900 -33.797873 -33.800776 0.0029033731 152.80193 1.1749752 + 626000 -33.796804 -33.800866 0.0040624353 213.80235 1.5121546 + 626100 -33.795244 -33.800901 0.005657211 297.73397 1.8480971 + 626200 -33.794677 -33.800824 0.0061465847 323.48927 2.108479 + 626300 -33.795033 -33.800636 0.0056026139 294.86057 2.2549655 + 626400 -33.795913 -33.800403 0.0044890967 236.25716 2.2753394 + 626500 -33.795762 -33.800185 0.0044226383 232.75951 2.2086996 + 626600 -33.792464 -33.799945 0.0074813736 393.73802 2.0736116 + 626700 -33.791466 -33.799589 0.0081228966 427.5008 1.7393645 + 626800 -33.795764 -33.799247 0.0034824639 183.27897 1.3031086 + 626900 -33.796498 -33.799069 0.0025713038 135.32543 0.99346941 + 627000 -33.791807 -33.798984 0.0071769735 377.71771 0.6889258 + 627100 -33.790102 -33.798806 0.0087039157 458.07932 0.11233769 + 627200 -33.793676 -33.798556 0.0048807302 256.86848 -0.46137466 + 627300 -33.794681 -33.798372 0.0036911208 194.26039 -0.82946987 + 627400 -33.792242 -33.798251 0.0060086559 316.2302 -1.0592521 + 627500 -33.78748 -33.79807 0.010590346 557.36047 -1.2539389 + 627600 -33.793237 -33.797808 0.0045716608 240.60243 -1.5463787 + 627700 -33.794464 -33.797701 0.0032372301 170.37253 -1.583017 + 627800 -33.793007 -33.797762 0.0047548586 250.24397 -1.4321462 + 627900 -33.790233 -33.797956 0.0077226493 406.43614 -1.0854096 + 628000 -33.791532 -33.79817 0.0066372317 349.31158 -0.68884301 + 628100 -33.795584 -33.798343 0.0027585568 145.18038 -0.39663948 + 628200 -33.795943 -33.79857 0.002626565 138.23377 -0.085590814 + 628300 -33.790613 -33.798971 0.0083585205 439.90148 0.47420551 + 628400 -33.790581 -33.799366 0.0087852071 462.35761 1.1149536 + 628500 -33.794626 -33.799479 0.0048533447 255.4272 1.5228015 + 628600 -33.795751 -33.799487 0.0037365684 196.65226 1.8180278 + 628700 -33.793651 -33.799456 0.0058049724 305.51052 2.0929265 + 628800 -33.788879 -33.799276 0.010396398 547.15317 2.3908491 + 628900 -33.794485 -33.798905 0.0044201313 232.62757 2.37242 + 629000 -33.79611 -33.798664 0.0025539234 134.41071 2.2967882 + 629100 -33.794634 -33.798518 0.0038842601 204.42514 2.1521678 + 629200 -33.791537 -33.798384 0.0068469561 360.34919 1.8484933 + 629300 -33.791047 -33.798161 0.0071139938 374.40315 1.3292957 + 629400 -33.793982 -33.797908 0.0039261486 206.6297 0.75109339 + 629500 -33.796198 -33.797788 0.0015892884 83.642828 0.32796196 + 629600 -33.795946 -33.797854 0.0019078999 100.41107 0.038445307 + 629700 -33.790949 -33.798173 0.0072239816 380.19171 -0.31896489 + 629800 -33.79112 -33.798557 0.0074369391 391.39947 -0.88052998 + 629900 -33.794461 -33.79884 0.0043781525 230.41826 -1.347098 + 630000 -33.795391 -33.799125 0.0037342624 196.5309 -1.5929605 + 630100 -33.792239 -33.79954 0.007301486 384.27069 -1.6559368 + 630200 -33.78841 -33.800137 0.011727156 617.18977 -1.6236236 + 630300 -33.795968 -33.800543 0.0045746118 240.75774 -1.7218683 + 630400 -33.796133 -33.800902 0.0047688732 250.98154 -1.5864821 + 630500 -33.794633 -33.801342 0.0067095555 353.11792 -1.3044248 + 630600 -33.794582 -33.801788 0.0072065619 379.27493 -0.95297708 + 630700 -33.798638 -33.802091 0.0034531276 181.73503 -0.7015036 + 630800 -33.799624 -33.802293 0.0026687872 140.45589 -0.46175037 + 630900 -33.796157 -33.802502 0.0063453224 333.94866 -0.087298087 + 631000 -33.793325 -33.802618 0.0092925542 489.05884 0.41536296 + 631100 -33.79665 -33.802468 0.0058173946 306.16429 0.72402227 + 631200 -33.798013 -33.80219 0.0041765966 219.81056 0.9455597 + 631300 -33.796742 -33.80183 0.0050874747 267.74925 1.1428867 + 631400 -33.790069 -33.8012 0.011131155 585.82274 1.4107022 + 631500 -33.794261 -33.800293 0.0060316781 317.44184 1.3898742 + 631600 -33.796613 -33.799665 0.0030514562 160.59542 1.308707 + 631700 -33.795414 -33.799179 0.0037653671 198.16791 1.2006887 + 631800 -33.792128 -33.7987 0.0065721898 345.88849 0.99366992 + 631900 -33.790645 -33.798174 0.0075297794 396.28557 0.61133862 + 632000 -33.793394 -33.797719 0.0043250713 227.62464 0.13261331 + 632100 -33.795743 -33.7975 0.0017572469 92.482339 -0.2211643 + 632200 -33.795486 -33.797504 0.0020179811 106.20455 -0.4474263 + 632300 -33.78992 -33.797698 0.0077779822 409.34827 -0.69231911 + 632400 -33.790595 -33.797837 0.0072416256 381.1203 -1.1351846 + 632500 -33.793827 -33.797831 0.0040047814 210.76807 -1.4980837 + 632600 -33.794248 -33.797837 0.0035898113 188.92857 -1.6803966 + 632700 -33.789568 -33.797907 0.0083389729 438.87271 -1.6894787 + 632800 -33.788612 -33.797913 0.0093014211 489.5255 -1.7090338 + 632900 -33.792747 -33.797876 0.0051293127 269.95115 -1.739782 + 633000 -33.79299 -33.79798 0.0049896876 262.60281 -1.5970163 + 633100 -33.791964 -33.798282 0.0063171778 332.46744 -1.3202021 + 633200 -33.791353 -33.798764 0.0074113695 390.05376 -0.94192766 + 633300 -33.7951 -33.799265 0.0041649799 219.19918 -0.63421612 + 633400 -33.796689 -33.799707 0.0030178767 158.82816 -0.36985319 + 633500 -33.794524 -33.800242 0.005717783 300.92182 -0.010614564 + 633600 -33.789685 -33.80086 0.011174945 588.12741 0.53279836 + 633700 -33.796587 -33.801112 0.0045249505 238.14411 0.77324477 + 633800 -33.797395 -33.801126 0.0037311607 196.36766 0.96447712 + 633900 -33.795466 -33.801014 0.0055478077 291.97617 1.1578863 + 634000 -33.79273 -33.800668 0.0079375494 417.74615 1.318281 + 634100 -33.794499 -33.800088 0.0055887927 294.13318 1.3153159 + 634200 -33.797447 -33.799614 0.002166805 114.03702 1.2123736 + 634300 -33.797413 -33.799386 0.0019732114 103.84836 1.1018453 + 634400 -33.792644 -33.799299 0.0066548439 350.2385 0.92595945 + 634500 -33.792028 -33.799287 0.0072594739 382.05964 0.51184042 + 634600 -33.794561 -33.799345 0.0047836526 251.75937 0.047803654 + 634700 -33.795762 -33.799495 0.0037328447 196.45629 -0.31294019 + 634800 -33.793752 -33.799763 0.0060114587 316.37771 -0.59558442 + 634900 -33.788168 -33.800114 0.011945659 628.68937 -0.9094951 + 635000 -33.795331 -33.800243 0.0049117055 258.49868 -1.3932275 + 635100 -33.796236 -33.800276 0.0040406078 212.65358 -1.5836918 + 635200 -33.794646 -33.800293 0.0056471892 297.20653 -1.6381124 + 635300 -33.79238 -33.800233 0.0078532768 413.31095 -1.5906067 + 635400 -33.794765 -33.800055 0.0052897484 278.39474 -1.5437063 + 635500 -33.797899 -33.799941 0.0020415505 107.44498 -1.4645621 + 635600 -33.796999 -33.799986 0.0029872414 157.21585 -1.2289169 + 635700 -33.793296 -33.800196 0.0069001748 363.15004 -0.73647684 + 635800 -33.793512 -33.800429 0.0069162795 363.99762 -0.18563038 + 635900 -33.795677 -33.800593 0.0049160229 258.7259 0.28059532 + 636000 -33.796846 -33.800724 0.003877261 204.05679 0.6717771 + 636100 -33.7959 -33.800856 0.0049556497 260.81142 1.0532824 + 636200 -33.790964 -33.800952 0.0099873774 525.62677 1.5567695 + 636300 -33.794729 -33.800838 0.006109705 321.54833 1.8396516 + 636400 -33.797388 -33.800659 0.0032708332 172.14103 1.9513257 + 636500 -33.796315 -33.800484 0.0041682289 219.37017 2.0080037 + 636600 -33.793485 -33.800223 0.0067381509 354.62287 1.9774823 + 636700 -33.793529 -33.799827 0.0062975807 331.43605 1.7685879 + 636800 -33.794239 -33.799381 0.0051421145 270.6249 1.4590897 + 636900 -33.793891 -33.798944 0.0050535549 265.96409 1.0996442 + 637000 -33.789505 -33.798459 0.0089540481 471.24357 0.68973229 + 637100 -33.78819 -33.797741 0.0095514616 502.6849 0.010721818 + 637200 -33.794091 -33.797222 0.0031313644 164.80091 -0.60328697 + 637300 -33.79371 -33.797032 0.0033225083 174.86065 -0.92920882 + 637400 -33.79102 -33.797066 0.0060465292 318.22344 -1.1957523 + 637500 -33.789749 -33.797233 0.0074842579 393.88982 -1.4534436 + 637600 -33.791872 -33.797402 0.0055300248 291.04027 -1.6560876 + 637700 -33.79382 -33.797567 0.0037473979 197.22221 -1.7147349 + 637800 -33.796154 -33.797755 0.0016010301 84.260785 -1.6718161 + 637900 -33.7961 -33.798021 0.0019202944 101.06338 -1.5000501 + 638000 -33.79236 -33.79851 0.0061494278 323.6389 -1.0561515 + 638100 -33.791168 -33.799056 0.0078876981 415.12251 -0.44409229 + 638200 -33.7943 -33.799359 0.0050588174 266.24105 0.051074477 + 638300 -33.79591 -33.799522 0.0036120346 190.09816 0.45660021 + 638400 -33.793756 -33.799692 0.0059363863 312.42671 0.90653312 + 638500 -33.787747 -33.799884 0.012136431 638.72954 1.5920731 + 638600 -33.79476 -33.799934 0.0051741625 272.31156 1.8893632 + 638700 -33.79588 -33.800025 0.0041453696 218.1671 2.0866193 + 638800 -33.794332 -33.800249 0.0059165167 311.381 2.2128666 + 638900 -33.791176 -33.800603 0.009427152 496.1426 2.2513995 + 639000 -33.795894 -33.800922 0.0050278867 264.61319 2.0148802 + 639100 -33.79832 -33.80114 0.0028194752 148.38646 1.779168 + 639200 -33.796589 -33.801409 0.0048204908 253.69813 1.5167856 + 639300 -33.792668 -33.801703 0.0090349026 475.49887 1.0718362 + 639400 -33.795617 -33.801781 0.0061638258 324.39665 0.40435215 + 639500 -33.797605 -33.801683 0.0040780523 214.62426 -0.12962217 + 639600 -33.796989 -33.8015 0.0045107681 237.3977 -0.59250133 + 639700 -33.795268 -33.801209 0.0059402599 312.63058 -1.0667745 + 639800 -33.793458 -33.800761 0.0073029785 384.34924 -1.5697595 + 639900 -33.794667 -33.800218 0.0055506852 292.12761 -2.0682501 + 640000 -33.797298 -33.799833 0.002535639 133.44842 -2.3864477 + 640100 -33.796971 -33.799689 0.0027173028 143.00922 -2.4583407 + 640200 -33.791959 -33.799709 0.0077506925 407.91203 -2.2774682 + 640300 -33.792304 -33.799755 0.0074518021 392.1817 -2.0292114 + 640400 -33.795143 -33.79976 0.0046172668 243.00263 -1.7608162 + 640500 -33.795682 -33.799769 0.0040877102 215.13254 -1.4013791 + 640600 -33.790588 -33.799756 0.0091671606 482.45949 -0.77870084 + 640700 -33.788921 -33.799447 0.010526583 554.00469 0.089410602 + 640800 -33.794555 -33.79899 0.004434646 233.39146 0.59440371 + 640900 -33.794481 -33.798578 0.0040964207 215.59097 1.0800744 + 641000 -33.791731 -33.798136 0.0064047024 337.07377 1.6310638 + 641100 -33.78922 -33.797574 0.0083541866 439.67339 2.2251088 + 641200 -33.793541 -33.797077 0.0035356837 186.07988 2.5430292 + 641300 -33.795383 -33.796965 0.0015818368 83.250662 2.6270801 + 641400 -33.793847 -33.797193 0.0033466344 176.13038 2.6046255 + 641500 -33.790984 -33.797767 0.0067830942 356.9882 2.4012949 + 641600 -33.791272 -33.798417 0.00714499 376.03445 1.9496897 + 641700 -33.794347 -33.798865 0.0045176757 237.76124 1.4027135 + 641800 -33.796046 -33.799133 0.0030874207 162.4882 0.91764485 + 641900 -33.795865 -33.79932 0.0034556829 181.86951 0.45639956 + 642000 -33.790777 -33.799428 0.0086516387 455.32803 -0.11236905 + 642100 -33.791487 -33.79921 0.0077232101 406.46566 -0.99881651 + 642200 -33.795337 -33.798817 0.0034801228 183.15576 -1.714363 + 642300 -33.795157 -33.798482 0.0033252097 175.00282 -2.1641257 + 642400 -33.790728 -33.798129 0.0074018831 389.55451 -2.5492677 + 642500 -33.790276 -33.7977 0.007423423 390.68813 -3.0213599 + 642600 -33.792252 -33.797411 0.0051589439 271.51062 -3.3443101 + 642700 -33.792904 -33.797378 0.0044736357 235.44346 -3.4394869 + 642800 -33.790872 -33.797613 0.006741505 354.7994 -3.2909662 + 642900 -33.786911 -33.798091 0.011179236 588.3532 -2.8717352 + 643000 -33.794091 -33.798492 0.0044009743 231.61935 -2.5993951 + 643100 -33.795002 -33.798823 0.0038208228 201.08649 -2.228618 + 643200 -33.793082 -33.799231 0.0061488812 323.61013 -1.6683452 + 643300 -33.791193 -33.799618 0.0084250897 443.40496 -0.92531737 + 643400 -33.796326 -33.799791 0.0034650375 182.36184 -0.37075588 + 643500 -33.797684 -33.799875 0.0021905034 115.28424 -0.0025096558 + 643600 -33.795604 -33.800014 0.0044102293 232.10644 0.43610135 + 643700 -33.792996 -33.800179 0.0071833229 378.05188 0.98774079 + 643800 -33.793988 -33.800255 0.0062672531 329.83994 1.4188391 + 643900 -33.795721 -33.800277 0.0045563247 239.7953 1.6806092 + 644000 -33.796677 -33.800329 0.0036516791 192.18461 1.8067668 + 644100 -33.795813 -33.80045 0.0046366712 244.02387 1.830128 + 644200 -33.791643 -33.800627 0.0089849445 472.86962 1.7672793 + 644300 -33.793989 -33.800705 0.0067160753 353.46105 1.4391619 + 644400 -33.797315 -33.800675 0.0033596358 176.81464 1.0813003 + 644500 -33.796716 -33.800629 0.0039129842 205.93687 0.75773486 + 644600 -33.793402 -33.800498 0.0070958846 373.45008 0.32537511 + 644700 -33.793145 -33.800138 0.0069936588 368.07002 -0.30844045 + 644800 -33.79434 -33.799616 0.0052761795 277.68062 -0.92938553 + 644900 -33.794533 -33.799044 0.0045107542 237.39697 -1.4528972 + 645000 -33.791813 -33.798398 0.006584455 346.53399 -1.899724 + 645100 -33.787648 -33.797491 0.0098435063 518.05496 -2.3804797 + 645200 -33.792845 -33.796638 0.0037932537 199.63556 -2.8906801 + 645300 -33.794336 -33.796324 0.0019879772 104.62546 -3.0267284 + 645400 -33.792918 -33.7964 0.0034822078 183.26549 -2.8912978 + 645500 -33.790304 -33.796811 0.0065071 342.46287 -2.4870898 + 645600 -33.789869 -33.797351 0.0074825833 393.80168 -1.9064606 + 645700 -33.793396 -33.797742 0.0043456394 228.70712 -1.3793089 + 645800 -33.795363 -33.797991 0.0026281202 138.31562 -0.93418439 + 645900 -33.79396 -33.798231 0.004271752 224.8185 -0.41613518 + 646000 -33.787241 -33.798457 0.011215655 590.26989 0.54356127 + 646100 -33.792916 -33.798339 0.0054238797 285.45395 1.2314372 + 646200 -33.794817 -33.798144 0.0033270504 175.09969 1.6931301 + 646300 -33.793177 -33.797988 0.0048108009 253.18816 2.1214197 + 646400 -33.788917 -33.797816 0.0088989703 468.34487 2.6113226 + 646500 -33.790894 -33.797625 0.0067307954 354.23576 2.8758415 + 646600 -33.792167 -33.797562 0.0053941774 283.89075 2.9595993 + 646700 -33.792217 -33.797691 0.0054742486 288.10482 2.8948958 + 646800 -33.791634 -33.798011 0.0063769659 335.61403 2.678877 + 646900 -33.792063 -33.798448 0.0063853941 336.0576 2.2874436 + 647000 -33.794699 -33.798867 0.0041674889 219.33122 1.797734 + 647100 -33.795513 -33.799245 0.0037314813 196.38453 1.3450542 + 647200 -33.792885 -33.79965 0.0067651353 356.04304 0.85406276 + 647300 -33.789099 -33.799984 0.010884569 572.84514 0.1317761 + 647400 -33.796181 -33.799983 0.0038013298 200.06059 -0.67895119 + 647500 -33.796611 -33.799901 0.0032898267 173.14064 -1.1134366 + 647600 -33.794436 -33.799792 0.0053561802 281.89098 -1.4776021 + 647700 -33.792106 -33.799585 0.0074791391 393.62042 -1.8522478 + 647800 -33.793565 -33.799304 0.0057384449 302.00924 -2.2020831 + 647900 -33.796922 -33.799134 0.002211774 116.40369 -2.3920318 + 648000 -33.79793 -33.799205 0.001274275 67.063959 -2.3553664 + 648100 -33.795969 -33.799567 0.0035983755 189.37929 -2.0615687 + 648200 -33.793576 -33.800231 0.0066547166 350.2318 -1.4636177 + 648300 -33.794114 -33.800843 0.0067294701 354.16601 -0.77481567 + 648400 -33.796785 -33.8012 0.0044155998 232.38908 -0.17522366 + 648500 -33.798004 -33.801369 0.0033648435 177.08871 0.34080449 + 648600 -33.795481 -33.801442 0.0059609797 313.72104 0.93117054 + 648700 -33.790469 -33.80129 0.010820953 569.4971 1.8022537 + 648800 -33.79596 -33.80088 0.0049191218 258.88899 2.3295255 + 648900 -33.79688 -33.800525 0.0036448626 191.82587 2.6752423 + 649000 -33.795358 -33.800235 0.0048770536 256.67498 2.9400363 + 649100 -33.793537 -33.799999 0.0064617877 340.07812 3.0891724 + 649200 -33.793681 -33.799856 0.0061746089 324.96416 3.0363184 + 649300 -33.794212 -33.799833 0.0056210914 295.83302 2.8172393 + 649400 -33.794311 -33.799913 0.0056018317 294.8194 2.4586689 + 649500 -33.7942 -33.800034 0.0058341159 307.04432 1.9660673 + 649600 -33.79482 -33.800109 0.005289362 278.3744 1.3620096 + 649700 -33.795604 -33.800086 0.0044818865 235.87769 0.73265745 + 649800 -33.794616 -33.799931 0.005314809 279.71366 0.092875944 + 649900 -33.791838 -33.799506 0.0076673119 403.52379 -0.65236154 + 650000 -33.792155 -33.798679 0.0065244417 343.37555 -1.5347445 + 650100 -33.795077 -33.797798 0.0027214675 143.2284 -2.245446 + 650200 -33.795346 -33.797145 0.0017994438 94.703123 -2.6492066 + 650300 -33.79176 -33.796407 0.0046472936 244.58292 -2.959497 + 650400 -33.789346 -33.795423 0.006077218 319.83856 -3.2926631 + 650500 -33.787914 -33.794417 0.006503201 342.25767 -3.5120198 + 650600 -33.787658 -33.79358 0.0059219816 311.66861 -3.5711676 + 650700 -33.787935 -33.793084 0.0051493902 271.00781 -3.4383607 + 650800 -33.787452 -33.792977 0.0055244799 290.74845 -3.1054065 + 650900 -33.78582 -33.793196 0.0073764314 388.21501 -2.5552333 + 651000 -33.787259 -33.793591 0.0063324171 333.26946 -1.9295418 + 651100 -33.790497 -33.794004 0.0035074927 184.59621 -1.4338233 + 651200 -33.790726 -33.794508 0.0037814565 199.01468 -0.95792287 + 651300 -33.784628 -33.795265 0.010637537 559.84408 -0.23265573 + 651400 -33.786878 -33.796057 0.0091784926 483.05588 0.50165525 + 651500 -33.791467 -33.796446 0.0049797716 262.08094 0.8800986 + 651600 -33.791543 -33.796814 0.0052703829 277.37555 1.1922904 + 651700 -33.790647 -33.797248 0.0066002784 347.36676 1.4122157 + 651800 -33.791066 -33.79773 0.0066643114 350.73676 1.4835018 + 651900 -33.794397 -33.798173 0.0037765487 198.75639 1.3679484 + 652000 -33.795541 -33.798618 0.0030775101 161.96661 1.1918985 + 652100 -33.792171 -33.799242 0.0070708984 372.13508 0.96097831 + 652200 -33.78872 -33.800095 0.011374551 598.63245 0.45839057 + 652300 -33.794901 -33.800591 0.0056895802 299.43753 -0.19716509 + 652400 -33.795673 -33.800863 0.0051904558 273.16906 -0.67498316 + 652500 -33.795356 -33.801009 0.0056528152 297.50262 -1.1373526 + 652600 -33.794424 -33.801004 0.0065794629 346.27126 -1.5997335 + 652700 -33.794204 -33.800797 0.0065935479 347.01254 -2.0607333 + 652800 -33.796052 -33.800451 0.0043982712 231.47709 -2.4624974 + 652900 -33.796678 -33.800113 0.0034350287 180.7825 -2.6941307 + 653000 -33.793186 -33.799755 0.0065684974 345.69416 -2.742108 + 653100 -33.79026 -33.799208 0.0089476256 470.90556 -2.7117039 + 653200 -33.793833 -33.798675 0.0048423977 254.85107 -2.6924572 + 653300 -33.794565 -33.798369 0.0038033052 200.16456 -2.5159738 + 653400 -33.793398 -33.798256 0.0048581612 255.68069 -2.171354 + 653500 -33.792434 -33.7983 0.0058666681 308.75751 -1.6907248 + 653600 -33.792038 -33.798443 0.0064049067 337.08453 -1.1262572 + 653700 -33.793392 -33.798611 0.0052192905 274.6866 -0.59089326 + 653800 -33.795701 -33.798774 0.0030726933 161.71311 -0.18327887 + 653900 -33.79601 -33.798974 0.0029637488 155.97946 0.14988337 + 654000 -33.790961 -33.799275 0.0083139526 437.55591 0.62105428 + 654100 -33.790857 -33.799485 0.0086283909 454.10452 1.0642124 + 654200 -33.794731 -33.79946 0.0047282239 248.84221 1.2618153 + 654300 -33.79495 -33.799376 0.0044254787 232.909 1.38997 + 654400 -33.79354 -33.799259 0.0057191224 300.99231 1.4500785 + 654500 -33.792223 -33.799076 0.0068529322 360.66371 1.3978504 + 654600 -33.793725 -33.798835 0.0051099812 268.93375 1.1922757 + 654700 -33.796382 -33.798701 0.0023192238 122.05868 0.94405032 + 654800 -33.795407 -33.798751 0.0033439466 175.98893 0.72120989 + 654900 -33.790685 -33.798971 0.0082859073 436.07991 0.39605081 + 655000 -33.791803 -33.79917 0.0073670779 387.72274 -0.1586527 + 655100 -33.795121 -33.799258 0.0041371865 217.73644 -0.6411801 + 655200 -33.795136 -33.799338 0.0042019644 221.14564 -0.9586632 + 655300 -33.792871 -33.799415 0.0065439286 344.40113 -1.2156487 + 655400 -33.788976 -33.799358 0.010382493 546.42133 -1.4419506 + 655500 -33.789989 -33.798956 0.0089662818 471.88741 -1.7380838 + 655600 -33.795315 -33.798521 0.0032068763 168.77504 -1.952537 + 655700 -33.795234 -33.798251 0.0030172985 158.79773 -1.9148585 + 655800 -33.791403 -33.798056 0.0066532773 350.15605 -1.625411 + 655900 -33.789999 -33.79785 0.0078516217 413.22385 -1.174609 + 656000 -33.793008 -33.797699 0.0046909555 246.8808 -0.75189789 + 656100 -33.794674 -33.797738 0.0030643075 161.27177 -0.3325679 + 656200 -33.794074 -33.798003 0.0039290726 206.78359 0.14564803 + 656300 -33.788605 -33.798554 0.0099492444 523.61986 0.9384483 + 656400 -33.792129 -33.799091 0.0069623893 366.42434 1.6427933 + 656500 -33.795484 -33.799409 0.0039244605 206.54086 2.0651948 + 656600 -33.79499 -33.799725 0.0047349685 249.19717 2.4184977 + 656700 -33.792143 -33.800088 0.0079450396 418.14035 2.7566118 + 656800 -33.791012 -33.800366 0.0093541371 492.29989 2.9780541 + 656900 -33.797014 -33.800461 0.0034472115 181.42367 2.9045742 + 657000 -33.797467 -33.800564 0.0030975637 163.02201 2.800252 + 657100 -33.794035 -33.800761 0.0067257497 353.97021 2.5973338 + 657200 -33.792336 -33.80095 0.0086138569 453.33961 2.1360518 + 657300 -33.796022 -33.800985 0.0049630272 261.19969 1.545089 + 657400 -33.796738 -33.800978 0.0042396205 223.12745 1.0602145 + 657500 -33.795887 -33.800967 0.0050799484 267.35315 0.56797123 + 657600 -33.794664 -33.800904 0.0062405669 328.43547 0.030541657 + 657700 -33.794228 -33.800734 0.0065062478 342.41802 -0.52817476 + 657800 -33.796153 -33.800474 0.0043203229 227.37474 -1.0315909 + 657900 -33.79764 -33.800258 0.0026179327 137.77946 -1.3379777 + 658000 -33.795712 -33.800105 0.0043925319 231.17503 -1.4497948 + 658100 -33.791058 -33.799834 0.0087764702 461.8978 -1.4339958 + 658200 -33.793293 -33.799362 0.0060695931 319.43727 -1.4488571 + 658300 -33.794979 -33.798918 0.0039396894 207.34234 -1.3515185 + 658400 -33.793552 -33.798546 0.0049946336 262.86311 -1.0846028 + 658500 -33.783901 -33.797977 0.014075884 740.8012 -0.38771316 + 658600 -33.790805 -33.797249 0.0064440824 339.14631 0.05624894 + 658700 -33.792711 -33.796806 0.0040943706 215.48307 0.46003307 + 658800 -33.791658 -33.796643 0.0049853753 262.37586 0.90035102 + 658900 -33.787121 -33.796715 0.0095934766 504.89612 1.4934679 + 659000 -33.790543 -33.796887 0.0063440716 333.88283 1.9245163 + 659100 -33.794284 -33.797125 0.0028411545 149.52743 2.0789785 + 659200 -33.792921 -33.79758 0.0046590168 245.1999 2.1903261 + 659300 -33.789892 -33.798268 0.0083753922 440.78942 2.209942 + 659400 -33.792707 -33.798863 0.0061560603 323.98796 1.9899169 + 659500 -33.796445 -33.799169 0.0027245601 143.39117 1.7101428 + 659600 -33.796042 -33.799408 0.0033659154 177.14512 1.4438258 + 659700 -33.794302 -33.799619 0.005317071 279.83271 1.0582694 + 659800 -33.79238 -33.799663 0.0072833068 383.31394 0.50864805 + 659900 -33.793657 -33.799442 0.0057854404 304.48257 -0.17020451 + 660000 -33.796731 -33.799142 0.0024104242 126.85848 -0.7348296 + 660100 -33.797154 -33.798986 0.0018323693 96.43596 -1.0778894 + 660200 -33.792975 -33.798975 0.0059994896 315.74778 -1.3697795 + 660300 -33.791538 -33.799036 0.0074976577 394.59504 -1.7889663 + 660400 -33.79395 -33.799149 0.0051994217 273.64093 -2.1520488 + 660500 -33.795551 -33.799362 0.0038107366 200.55567 -2.3146885 + 660600 -33.794661 -33.799713 0.0050520026 265.88239 -2.2731586 + 660700 -33.788306 -33.800261 0.011955134 629.18805 -1.9518929 + 660800 -33.794671 -33.800686 0.006015262 316.57787 -1.7661082 + 660900 -33.796787 -33.800896 0.0041087037 216.23741 -1.5197471 + 661000 -33.795691 -33.80108 0.0053891186 283.6245 -1.1384255 + 661100 -33.793369 -33.801204 0.0078348215 412.33967 -0.60802656 + 661200 -33.795011 -33.801185 0.0061739873 324.93144 -0.099204146 + 661300 -33.798685 -33.801119 0.0024331942 128.05684 0.20029093 + 661400 -33.798169 -33.801119 0.0029501103 155.26167 0.48530093 + 661500 -33.794164 -33.801189 0.007024906 369.71454 0.89358262 + 661600 -33.794199 -33.801226 0.0070273535 369.84335 1.2263427 + 661700 -33.796244 -33.801196 0.0049523507 260.6378 1.40146 + 661800 -33.796967 -33.801165 0.0041977748 220.92514 1.4736703 + 661900 -33.793439 -33.801121 0.0076822208 404.30843 1.5114641 + 662000 -33.790583 -33.800895 0.010311472 542.68355 1.3911803 + 662100 -33.796443 -33.800548 0.0041053321 216.05997 1.0453134 + 662200 -33.796674 -33.80024 0.0035665114 187.70231 0.77598905 + 662300 -33.794264 -33.799879 0.0056154898 295.53822 0.43008101 + 662400 -33.792273 -33.799342 0.0070693485 372.05351 -0.10068801 + 662500 -33.792944 -33.79868 0.0057361241 301.8871 -0.72603326 + 662600 -33.793076 -33.798033 0.0049569229 260.87843 -1.3079143 + 662700 -33.792101 -33.79742 0.0053187908 279.92322 -1.8543699 + 662800 -33.788882 -33.796805 0.0079231735 416.98956 -2.3796379 + 662900 -33.783361 -33.796071 0.012710016 668.91682 -2.960286 + 663000 -33.791573 -33.795496 0.0039225794 206.44185 -3.6063365 + 663100 -33.792143 -33.79539 0.0032474094 170.90826 -3.7792956 + 663200 -33.789213 -33.795666 0.0064531602 339.62406 -3.6894518 + 663300 -33.787422 -33.796224 0.0088017014 463.22569 -3.4029522 + 663400 -33.791976 -33.796743 0.004767818 250.92601 -3.1164959 + 663500 -33.793321 -33.797165 0.0038443616 202.32532 -2.7327533 + 663600 -33.792448 -33.797604 0.0051551215 271.30945 -2.1642465 + 663700 -33.791177 -33.797997 0.00682025 358.94367 -1.4076615 + 663800 -33.792014 -33.798175 0.0061602197 324.20687 -0.6026135 + 663900 -33.794857 -33.798148 0.0032906981 173.1865 0.039607318 + 664000 -33.795696 -33.7981 0.0024042921 126.53575 0.54152751 + 664100 -33.791546 -33.798073 0.0065268436 343.50196 1.1851336 + 664200 -33.789313 -33.797947 0.0086343684 454.41911 2.0059744 + 664300 -33.792867 -33.797764 0.0048960491 257.6747 2.5225935 + 664400 -33.79381 -33.79771 0.0038993918 205.22151 2.829516 + 664500 -33.790681 -33.797874 0.0071925954 378.53988 3.0526169 + 664600 -33.784579 -33.798286 0.013707483 721.41263 3.1906895 + 664700 -33.793055 -33.79864 0.0055854984 293.9598 2.8920618 + 664800 -33.793839 -33.799039 0.0051998884 273.66549 2.6161515 + 664900 -33.79366 -33.799531 0.0058712444 308.99836 2.2104892 + 665000 -33.793841 -33.800062 0.0062209798 327.40462 1.6651148 + 665100 -33.795891 -33.800518 0.0046267851 243.50357 1.0438006 + 665200 -33.797586 -33.800854 0.0032672739 171.95371 0.49566576 + 665300 -33.796534 -33.801162 0.0046286152 243.59989 0.011396597 + 665400 -33.790739 -33.801489 0.010750042 565.76514 -0.58703969 + 665500 -33.795361 -33.801589 0.0062273798 327.74144 -1.4100128 + 665600 -33.797496 -33.801555 0.0040582519 213.58218 -1.8975089 + 665700 -33.796638 -33.801512 0.0048735562 256.49092 -2.1868084 + 665800 -33.794757 -33.801454 0.0066969855 352.45637 -2.3530625 + 665900 -33.794462 -33.801347 0.0068854004 362.37248 -2.4129065 + 666000 -33.798293 -33.801222 0.0029287469 154.13733 -2.4115919 + 666100 -33.799022 -33.801194 0.0021718301 114.30148 -2.2441942 + 666200 -33.795882 -33.801243 0.0053607245 282.13015 -1.798361 + 666300 -33.793435 -33.801206 0.0077710368 408.98274 -1.068403 + 666400 -33.795409 -33.800964 0.0055551824 292.36429 -0.38263442 + 666500 -33.796653 -33.800616 0.0039631258 208.57578 0.22809039 + 666600 -33.794466 -33.80019 0.0057242057 301.25984 0.89842047 + 666700 -33.788202 -33.799369 0.011166871 587.70248 1.9411135 + 666800 -33.793573 -33.798408 0.0048357271 254.5 2.6300041 + 666900 -33.794537 -33.79778 0.0032434076 170.69765 3.0804973 + 667000 -33.792622 -33.797379 0.0047567134 250.34158 3.4529125 + 667100 -33.790603 -33.797171 0.0065681576 345.67627 3.7207394 + 667200 -33.790974 -33.797224 0.0062500898 328.93665 3.7575178 + 667300 -33.792024 -33.797504 0.0054800159 288.40835 3.5913521 + 667400 -33.793365 -33.797926 0.0045609933 240.04101 3.2600807 + 667500 -33.795408 -33.798388 0.00298008 156.83895 2.8290248 + 667600 -33.795568 -33.798849 0.0032803277 172.64072 2.3822211 + 667700 -33.790967 -33.799404 0.0084370401 444.0339 1.7900415 + 667800 -33.791038 -33.799803 0.0087648399 461.28571 0.79440671 + 667900 -33.795543 -33.799777 0.0042343995 222.85267 -0.071744173 + 668000 -33.795388 -33.799581 0.0041924044 220.6425 -0.7019698 + 668100 -33.793639 -33.799215 0.005576645 293.49385 -1.3100922 + 668200 -33.791506 -33.798603 0.0070971682 373.51763 -1.9348058 + 668300 -33.791518 -33.797808 0.0062901599 331.04551 -2.5225597 + 668400 -33.793767 -33.797138 0.0033707767 177.40097 -2.9125106 + 668500 -33.793724 -33.796818 0.0030939059 162.82951 -2.9850185 + 668600 -33.789352 -33.796798 0.0074456623 391.85856 -2.7054433 + 668700 -33.78862 -33.796958 0.0083385022 438.84794 -2.1929146 + 668800 -33.792494 -33.797162 0.0046681581 245.681 -1.6949785 + 668900 -33.793041 -33.797442 0.0044014873 231.64635 -1.1152895 + 669000 -33.792024 -33.797799 0.0057747828 303.92167 -0.37205456 + 669100 -33.791805 -33.798127 0.0063212601 332.68228 0.45491418 + 669200 -33.792615 -33.798327 0.0057120324 300.61917 1.2358516 + 669300 -33.793709 -33.798418 0.0047091535 247.83855 1.9028833 + 669400 -33.794761 -33.798484 0.0037233944 195.95893 2.4169192 + 669500 -33.793757 -33.798603 0.0048464137 255.06243 2.8393168 + 669600 -33.789835 -33.798812 0.0089767787 472.43986 3.2771348 + 669700 -33.792575 -33.799025 0.0064496922 339.44155 3.4572204 + 669800 -33.796037 -33.799239 0.003201897 168.51298 3.4077303 + 669900 -33.795531 -33.799603 0.0040727065 214.34291 3.2531231 + 670000 -33.793205 -33.800198 0.00699373 368.07377 2.9019489 + 670100 -33.793795 -33.800831 0.0070356295 370.2789 2.3086915 + 670200 -33.795826 -33.801317 0.005491615 289.0188 1.6367422 + 670300 -33.797263 -33.801642 0.0043789374 230.45957 0.99542165 + 670400 -33.797116 -33.801853 0.0047374802 249.32936 0.38540113 + 670500 -33.792715 -33.80195 0.0092352463 486.04277 -0.28492148 + 670600 -33.793924 -33.801746 0.0078212179 411.62372 -1.2236027 + 670700 -33.798239 -33.801421 0.0031818057 167.4556 -1.9054106 + 670800 -33.797755 -33.801142 0.0033866602 178.2369 -2.29344 + 670900 -33.795356 -33.800834 0.0054779373 288.29895 -2.5949345 + 671000 -33.794347 -33.800486 0.0061387412 323.07647 -2.8347404 + 671100 -33.794534 -33.800168 0.005634058 296.51545 -2.9421451 + 671200 -33.794594 -33.799931 0.0053375586 280.91095 -2.8720695 + 671300 -33.792826 -33.799778 0.0069521948 365.88781 -2.5778379 + 671400 -33.791122 -33.799602 0.0084800775 446.29891 -2.0679655 + 671500 -33.794989 -33.799389 0.0043998587 231.56064 -1.6046892 + 671600 -33.796196 -33.799245 0.0030495029 160.49262 -1.1436955 + 671700 -33.793164 -33.799118 0.0059542467 313.36669 -0.49070424 + 671800 -33.788713 -33.798734 0.010020475 527.36868 0.54756507 + 671900 -33.79223 -33.798061 0.0058315759 306.91064 1.3559109 + 672000 -33.79311 -33.797361 0.0042509069 223.72144 1.9946792 + 672100 -33.791571 -33.796638 0.005067446 266.69516 2.5818267 + 672200 -33.786073 -33.795672 0.009599105 505.19233 3.2656037 + 672300 -33.788102 -33.79446 0.0063581715 334.62489 3.7306672 + 672400 -33.792281 -33.793901 0.0016199587 85.256979 3.7974001 + 672500 -33.791233 -33.793907 0.0026744744 140.7552 3.6995333 + 672600 -33.787628 -33.794442 0.0068140175 358.61566 3.3166168 + 672700 -33.787311 -33.795303 0.0079919199 420.60761 2.5510522 + 672800 -33.791345 -33.796029 0.0046844093 246.53628 1.6870294 + 672900 -33.792676 -33.796621 0.0039451794 207.63127 0.97928982 + 673000 -33.790815 -33.797236 0.0064210056 337.9318 0.26468237 + 673100 -33.780239 -33.797875 0.017636617 928.19943 -0.72410399 + 673200 -33.79202 -33.797966 0.0059456693 312.91527 -1.9996341 + 673300 -33.793561 -33.797863 0.0043025454 226.43912 -2.6548484 + 673400 -33.792606 -33.797775 0.005168912 272.03523 -3.0964887 + 673500 -33.789287 -33.797699 0.0084116604 442.69818 -3.3898369 + 673600 -33.790928 -33.797573 0.0066451481 349.72822 -3.6272118 + 673700 -33.794849 -33.797564 0.0027154492 142.91167 -3.685132 + 673800 -33.794319 -33.79778 0.0034604164 182.11863 -3.4535445 + 673900 -33.791633 -33.79825 0.0066171741 348.25597 -2.9103701 + 674000 -33.791726 -33.798788 0.007062399 371.68776 -2.2074246 + 674100 -33.793623 -33.799177 0.005553778 292.29038 -1.5104856 + 674200 -33.794951 -33.799432 0.0044810606 235.83422 -0.85670281 + 674300 -33.794943 -33.799613 0.004670641 245.81167 -0.20735824 + 674400 -33.791197 -33.799724 0.0085263339 448.73335 0.61179696 + 674500 -33.791919 -33.799654 0.0077348585 407.07871 1.4366448 + 674600 -33.796114 -33.799502 0.0033875675 178.28466 1.9073025 + 674700 -33.796073 -33.799459 0.0033858147 178.19241 2.2293976 + 674800 -33.791648 -33.799563 0.007914538 416.53507 2.5510443 + 674900 -33.791352 -33.799733 0.0083806377 441.06548 2.6950048 + 675000 -33.79403 -33.799898 0.0058680584 308.83068 2.6110762 + 675100 -33.795462 -33.800105 0.0046426811 244.34016 2.4070555 + 675200 -33.795266 -33.80036 0.0050941644 268.10133 2.1050947 + 675300 -33.791931 -33.800655 0.0087242626 459.15016 1.6800735 + 675400 -33.792683 -33.800824 0.0081414096 428.47512 0.9756239 + 675500 -33.797418 -33.800787 0.0033696583 177.34211 0.34227784 + 675600 -33.797083 -33.800709 0.0036267958 190.87503 -0.10819419 + 675700 -33.793838 -33.800529 0.0066915618 352.17093 -0.60533281 + 675800 -33.792898 -33.800103 0.0072053298 379.21008 -1.2466641 + 675900 -33.794119 -33.799521 0.0054018129 284.2926 -1.828475 + 676000 -33.794179 -33.798894 0.0047143866 248.11396 -2.2424536 + 676100 -33.792541 -33.798241 0.0057002422 299.99866 -2.4976459 + 676200 -33.787162 -33.797441 0.01027917 540.98353 -2.5709058 + 676300 -33.788546 -33.796408 0.0078627103 413.80743 -2.6245163 + 676400 -33.793494 -33.79589 0.0023954874 126.07236 -2.5864361 + 676500 -33.792479 -33.795852 0.0033729456 177.51512 -2.2391251 + 676600 -33.788551 -33.796208 0.0076574761 403.00614 -1.4663631 + 676700 -33.789308 -33.796727 0.007418939 390.45214 -0.52680638 + 676800 -33.792287 -33.797117 0.0048307335 254.2372 0.26508286 + 676900 -33.792789 -33.797448 0.0046585083 245.17314 0.99231607 + 677000 -33.791953 -33.797748 0.0057947409 304.97204 1.7404963 + 677100 -33.791862 -33.797924 0.0060619018 319.03249 2.4407112 + 677200 -33.792369 -33.797956 0.0055872019 294.04945 3.0095017 + 677300 -33.792794 -33.797882 0.0050884614 267.80118 3.4133353 + 677400 -33.79195 -33.797757 0.0058070551 305.62013 3.6794323 + 677500 -33.78882 -33.797567 0.0087475472 460.3756 3.8381542 + 677600 -33.791056 -33.797254 0.0061976892 326.17885 3.7143573 + 677700 -33.794226 -33.797071 0.0028448117 149.7199 3.4507531 + 677800 -33.793449 -33.797126 0.0036765655 193.49436 3.1290598 + 677900 -33.787281 -33.797395 0.010114165 532.29948 2.5710412 + 678000 -33.789741 -33.797621 0.0078799061 414.71243 1.6235212 + 678100 -33.792632 -33.797718 0.0050864468 267.69516 0.80194659 + 678200 -33.793378 -33.797819 0.0044409383 233.72262 0.13585005 + 678300 -33.791631 -33.797982 0.0063509614 334.24543 -0.4587085 + 678400 -33.786472 -33.79813 0.011658469 613.57481 -1.1146905 + 678500 -33.793474 -33.798105 0.0046310684 243.729 -1.8837242 + 678600 -33.794842 -33.798147 0.0033056398 173.97288 -2.1871202 + 678700 -33.792916 -33.798371 0.0054549987 287.09171 -2.2554119 + 678800 -33.790476 -33.798773 0.0082974733 436.68862 -2.1411859 + 678900 -33.79384 -33.799175 0.005334803 280.76592 -1.9770826 + 679000 -33.797538 -33.799498 0.0019605801 103.18358 -1.7792076 + 679100 -33.79713 -33.799924 0.0027941286 147.0525 -1.412241 + 679200 -33.794802 -33.800565 0.0057620742 303.25283 -0.77547486 + 679300 -33.792921 -33.801254 0.0083326676 438.54086 0.10338258 + 679400 -33.796737 -33.801651 0.0049142507 258.63263 0.84275559 + 679500 -33.798914 -33.801786 0.0028719086 151.14599 1.3565024 + 679600 -33.797183 -33.801836 0.0046525931 244.86183 1.8699135 + 679700 -33.789207 -33.801679 0.012472294 656.40571 2.7294552 + 679800 -33.794979 -33.801173 0.0061935818 325.96268 3.216055 + 679900 -33.797132 -33.800703 0.003570322 187.90286 3.4769476 + 680000 -33.795978 -33.800322 0.0043440925 228.62571 3.6125161 + 680100 -33.791115 -33.799901 0.008786629 462.43245 3.6391197 + 680200 -33.792543 -33.799439 0.0068958574 362.92283 3.3522907 + 680300 -33.794672 -33.799139 0.0044665606 235.0711 2.9522973 + 680400 -33.794283 -33.799023 0.0047401948 249.47222 2.4776896 + 680500 -33.793129 -33.799043 0.0059140787 311.25269 1.8574775 + 680600 -33.792328 -33.799115 0.0067878241 357.23713 1.0856486 + 680700 -33.794238 -33.799165 0.0049270582 259.30668 0.24930639 + 680800 -33.796739 -33.799218 0.0024791563 130.47579 -0.37397442 + 680900 -33.796001 -33.799354 0.0033530366 176.46732 -0.79946123 + 681000 -33.79073 -33.799583 0.0088523575 465.89168 -1.2473502 + 681100 -33.792487 -33.799639 0.0071526082 376.43539 -1.8305171 + 681200 -33.794898 -33.799535 0.0046369238 244.03716 -2.2084868 + 681300 -33.794791 -33.799415 0.0046240453 243.35938 -2.3582983 + 681400 -33.790952 -33.799271 0.0083191563 437.82977 -2.2828016 + 681500 -33.784801 -33.798854 0.014052895 739.59135 -1.9851462 + 681600 -33.794036 -33.798365 0.0043292231 227.84315 -1.9404723 + 681700 -33.793876 -33.798063 0.0041864752 220.33046 -1.6565133 + 681800 -33.790924 -33.797837 0.0069133414 363.84299 -1.1717783 + 681900 -33.789292 -33.797552 0.0082594493 434.68745 -0.54659118 + 682000 -33.793662 -33.797252 0.0035891748 188.89507 -0.10836828 + 682100 -33.794928 -33.797143 0.0022154465 116.59697 0.20156013 + 682200 -33.792534 -33.797201 0.0046669411 245.61695 0.56952473 + 682300 -33.790385 -33.797324 0.0069385789 365.17122 0.99471622 + 682400 -33.791651 -33.797377 0.0057255694 301.33161 1.2688567 + 682500 -33.792985 -33.797398 0.004412986 232.25152 1.4075148 + 682600 -33.792494 -33.79748 0.0049851843 262.3658 1.4539359 + 682700 -33.787966 -33.797644 0.0096776415 509.32564 1.4484116 + 682800 -33.790698 -33.797759 0.007061184 371.62382 1.1687628 + 682900 -33.794767 -33.797889 0.0031219641 164.30619 0.85412214 + 683000 -33.793945 -33.798216 0.0042707878 224.76775 0.57879 + 683100 -33.79161 -33.798805 0.0071950933 378.67134 0.19708434 + 683200 -33.792454 -33.799503 0.0070491454 370.99023 -0.3360336 + 683300 -33.79613 -33.80006 0.0039304443 206.85578 -0.83954546 + 683400 -33.798926 -33.800461 0.0015357108 80.823088 -1.1564864 + 683500 -33.799243 -33.800813 0.0015706156 82.660097 -1.3080536 + 683600 -33.794422 -33.801356 0.0069348051 364.97261 -1.35915 + 683700 -33.794286 -33.801928 0.0076418262 402.1825 -1.5309703 + 683800 -33.797682 -33.802105 0.0044227415 232.76494 -1.7082273 + 683900 -33.79857 -33.802058 0.0034878599 183.56295 -1.762289 + 684000 -33.796175 -33.801851 0.0056761029 298.72823 -1.689036 + 684100 -33.792652 -33.801313 0.0086606146 455.80042 -1.5165036 + 684200 -33.795508 -33.800536 0.0050288433 264.66354 -1.4153499 + 684300 -33.798092 -33.799978 0.0018864485 99.282101 -1.307552 + 684400 -33.798621 -33.799761 0.001140058 60.000235 -1.1538307 + 684500 -33.795952 -33.799849 0.0038968908 205.08988 -0.83290364 + 684600 -33.792085 -33.80023 0.0081452853 428.6791 -0.27430149 + 684700 -33.7938 -33.80064 0.006840143 359.99063 0.22242121 + 684800 -33.797057 -33.800911 0.0038540514 202.83529 0.5309544 + 684900 -33.797122 -33.80112 0.0039977536 210.39821 0.77842976 + 685000 -33.791696 -33.801292 0.0095959711 505.0274 1.1043069 + 685100 -33.791695 -33.801169 0.0094738392 498.59971 1.3089211 + 685200 -33.797007 -33.800828 0.0038211355 201.10295 1.2663474 + 685300 -33.796271 -33.800457 0.0041859544 220.30305 1.2401592 + 685400 -33.793172 -33.799949 0.0067768883 356.66159 1.1443613 + 685500 -33.791644 -33.799216 0.0075720908 398.51239 0.88657147 + 685600 -33.79465 -33.798522 0.0038721764 203.78919 0.50967966 + 685700 -33.796682 -33.798209 0.001527052 80.367386 0.22707391 + 685800 -33.795438 -33.798267 0.0028288842 148.88165 0.022766464 + 685900 -33.790911 -33.798739 0.0078276286 411.96111 -0.26678907 + 686000 -33.792579 -33.799323 0.0067438545 354.92305 -0.70036814 + 686100 -33.795562 -33.799785 0.0042223006 222.21591 -1.028116 + 686200 -33.79606 -33.800175 0.0041146219 216.54888 -1.1874189 + 686300 -33.792214 -33.800555 0.0083407907 438.96838 -1.187425 + 686400 -33.789859 -33.800749 0.010890815 573.17388 -1.1486486 + 686500 -33.796727 -33.800594 0.003867287 203.53187 -1.2197284 + 686600 -33.79654 -33.800381 0.0038404605 202.12001 -1.0721723 + 686700 -33.793845 -33.800085 0.0062403209 328.42252 -0.73628327 + 686800 -33.791927 -33.799605 0.0076779702 404.08472 -0.24447463 + 686900 -33.794624 -33.79908 0.004455807 234.50515 0.20174039 + 687000 -33.797479 -33.798844 0.00136497 71.837156 0.50553152 + 687100 -33.796944 -33.798935 0.0019908716 104.77779 0.81918671 + 687200 -33.79427 -33.799365 0.0050948692 268.13842 1.3111515 + 687300 -33.792776 -33.79995 0.0071735193 377.53592 1.866168 + 687400 -33.794447 -33.800402 0.0059555818 313.43696 2.2944933 + 687500 -33.797044 -33.80064 0.0035961161 189.26038 2.5321843 + 687600 -33.797482 -33.800773 0.0032910218 173.20354 2.6640623 + 687700 -33.791786 -33.800844 0.0090585199 476.74182 2.8117296 + 687800 -33.791991 -33.800608 0.0086165893 453.48341 2.7329776 + 687900 -33.796197 -33.800194 0.003997006 210.35886 2.5028771 + 688000 -33.796061 -33.799838 0.0037776623 198.815 2.286405 + 688100 -33.793715 -33.799506 0.0057917731 304.81585 1.9877943 + 688200 -33.792603 -33.799196 0.0065930539 346.98655 1.5293013 + 688300 -33.793252 -33.799025 0.0057729925 303.82745 1.0113869 + 688400 -33.793621 -33.799067 0.0054457299 286.60391 0.53900328 + 688500 -33.793485 -33.799338 0.0058530862 308.0427 0.12767532 + 688600 -33.793611 -33.799782 0.0061711855 324.78399 -0.22084998 + 688700 -33.795193 -33.800261 0.0050680306 266.72593 -0.48411175 + 688800 -33.796362 -33.80069 0.0043275688 227.75609 -0.61430478 + 688900 -33.795841 -33.80106 0.0052186588 274.65336 -0.60470672 + 689000 -33.792658 -33.801318 0.0086600132 455.76877 -0.43729639 + 689100 -33.79435 -33.801266 0.0069156202 363.96292 -0.2772714 + 689200 -33.798224 -33.801023 0.0027996077 147.34085 -0.16292785 + 689300 -33.7977 -33.800781 0.0030811505 162.1582 0.065813538 + 689400 -33.794511 -33.800442 0.0059313932 312.16393 0.47629903 + 689500 -33.793905 -33.799958 0.0060525976 318.54281 0.9402863 + 689600 -33.794256 -33.799471 0.0052144587 274.43231 1.3753012 + 689700 -33.793538 -33.799076 0.0055383481 291.47832 1.7973844 + 689800 -33.788947 -33.798745 0.0097975871 515.63827 2.3175207 + 689900 -33.791199 -33.79844 0.0072407614 381.07481 2.6815407 + 690000 -33.795293 -33.798362 0.0030688379 161.5102 2.776875 + 690100 -33.794496 -33.798551 0.0040546466 213.39243 2.8042388 + 690200 -33.791868 -33.798984 0.0071166235 374.54155 2.7018753 + 690300 -33.79232 -33.799443 0.0071234816 374.90248 2.3751342 + 690400 -33.793944 -33.79974 0.0057957807 305.02677 1.9376402 + 690500 -33.794371 -33.799884 0.0055129651 290.14244 1.4431531 + 690600 -33.79433 -33.799866 0.0055359349 291.35132 0.87625299 + 690700 -33.793749 -33.799677 0.0059283767 312.00518 0.24499939 + 690800 -33.790894 -33.799258 0.0083639482 440.18713 -0.46819846 + 690900 -33.79178 -33.798548 0.0067677649 356.18143 -1.3434076 + 691000 -33.794814 -33.797941 0.0031274913 164.59708 -2.033188 + 691100 -33.794461 -33.79762 0.0031590081 166.25578 -2.4627203 + 691200 -33.788898 -33.7975 0.0086016014 452.69461 -2.8120512 + 691300 -33.790052 -33.797527 0.0074745236 393.37751 -3.2533063 + 691400 -33.792808 -33.797698 0.0048900638 257.3597 -3.4950194 + 691500 -33.793256 -33.79805 0.0047939982 252.30385 -3.4842135 + 691600 -33.791292 -33.798566 0.0072742257 382.83601 -3.2399898 + 691700 -33.787644 -33.799144 0.011500507 605.26143 -2.7291384 + 691800 -33.794917 -33.799428 0.0045110556 237.41283 -2.405699 + 691900 -33.795854 -33.799555 0.0037012737 194.79473 -2.0179838 + 692000 -33.79359 -33.799648 0.0060579051 318.82214 -1.4607948 + 692100 -33.790175 -33.799603 0.0094278763 496.18072 -0.67329009 + 692200 -33.795705 -33.79935 0.0036444215 191.80265 -0.11758082 + 692300 -33.797223 -33.799212 0.0019895732 104.70946 0.21447377 + 692400 -33.795531 -33.799204 0.0036728382 193.2982 0.56751833 + 692500 -33.792727 -33.799294 0.0065665146 345.58981 0.97054442 + 692600 -33.792565 -33.799421 0.0068561295 360.83198 1.2647127 + 692700 -33.794903 -33.799539 0.0046360201 243.98961 1.36125 + 692800 -33.797299 -33.799687 0.002388591 125.70941 1.3029389 + 692900 -33.798051 -33.799903 0.0018522644 97.483022 1.1618815 + 693000 -33.794435 -33.800269 0.005833714 307.02317 0.92664821 + 693100 -33.791676 -33.800731 0.0090557027 476.59355 0.36028018 + 693200 -33.795787 -33.800897 0.005110252 268.94801 -0.35105041 + 693300 -33.797116 -33.800869 0.0037530681 197.52063 -0.90499323 + 693400 -33.795143 -33.800735 0.0055910757 294.25333 -1.4253043 + 693500 -33.787076 -33.800288 0.013211954 695.33335 -2.1033849 + 693600 -33.793989 -33.799527 0.0055380748 291.46394 -3.0571029 + 693700 -33.794842 -33.798941 0.0040986135 215.70637 -3.5766445 + 693800 -33.793081 -33.798465 0.0053833442 283.3206 -3.9302415 + 693900 -33.789927 -33.798073 0.0081459723 428.71526 -4.17855 + 694000 -33.791668 -33.797849 0.0061809471 325.29773 -4.3588539 + 694100 -33.795263 -33.797898 0.0026343372 138.64282 -4.3681282 + 694200 -33.795262 -33.798226 0.0029640055 155.99297 -4.1275082 + 694300 -33.787422 -33.798965 0.01154235 607.4636 -3.3639531 + 694400 -33.791229 -33.799694 0.0084643695 445.47222 -2.5056815 + 694500 -33.79532 -33.799983 0.0046623051 245.37296 -1.8260165 + 694600 -33.79596 -33.800069 0.0041091056 216.25856 -1.1566785 + 694700 -33.793466 -33.799999 0.0065329974 343.82583 -0.33577193 + 694800 -33.789036 -33.799572 0.010536075 554.50423 0.8055493 + 694900 -33.795374 -33.798863 0.003489288 183.63812 1.6001936 + 695000 -33.796331 -33.798432 0.0021006944 110.55767 2.0664827 + 695100 -33.79449 -33.798148 0.0036573585 192.48352 2.5090328 + 695200 -33.791537 -33.797965 0.0064284175 338.32188 2.9610847 + 695300 -33.79083 -33.797925 0.007094917 373.39915 3.2560236 + 695400 -33.793247 -33.798034 0.0047866108 251.91506 3.2974598 + 695500 -33.795828 -33.798286 0.0024582487 129.37544 3.1561358 + 695600 -33.796477 -33.798674 0.0021971349 115.63325 2.9202091 + 695700 -33.791926 -33.799323 0.0073962895 389.26012 2.5594984 + 695800 -33.790299 -33.800186 0.0098871611 520.35247 1.7378139 + 695900 -33.795856 -33.800606 0.0047495258 249.96331 0.87995374 + 696000 -33.796632 -33.800787 0.0041548371 218.66537 0.25615616 + 696100 -33.794784 -33.800865 0.0060807334 320.02358 -0.35427756 + 696200 -33.789864 -33.800759 0.010894527 573.36922 -1.0647367 + 696300 -33.794932 -33.800382 0.005449696 286.81264 -1.9524378 + 696400 -33.797724 -33.800169 0.0024442181 128.63702 -2.3710281 + 696500 -33.796039 -33.80019 0.0041503749 218.43053 -2.4934986 + 696600 -33.792277 -33.800448 0.0081711274 430.03915 -2.4062826 + 696700 -33.794018 -33.800786 0.0067681075 356.19946 -2.2427652 + 696800 -33.796383 -33.801072 0.0046895976 246.80934 -1.9698637 + 696900 -33.796413 -33.801336 0.0049228316 259.08424 -1.5377661 + 697000 -33.795482 -33.801538 0.0060566616 318.7567 -0.93649871 + 697100 -33.795481 -33.801561 0.0060804681 320.00961 -0.24285197 + 697200 -33.79597 -33.801363 0.0053933248 283.84587 0.46149327 + 697300 -33.796033 -33.800971 0.0049383109 259.8989 1.151719 + 697400 -33.793962 -33.800371 0.0064086569 337.28189 1.9075847 + 697500 -33.789961 -33.799378 0.0094172541 495.62168 2.8321945 + 697600 -33.793536 -33.798194 0.004657897 245.14096 3.5159675 + 697700 -33.795777 -33.797512 0.0017355096 91.338321 3.8486813 + 697800 -33.794313 -33.797224 0.0029113078 153.21953 4.0383592 + 697900 -33.791434 -33.797215 0.0057807884 304.23774 4.1022441 + 698000 -33.790622 -33.797488 0.0068662084 361.36242 3.9221855 + 698100 -33.792221 -33.797906 0.0056854699 299.22121 3.5156043 + 698200 -33.794352 -33.798326 0.0039735976 209.1269 3.0206605 + 698300 -33.794809 -33.798739 0.0039301908 206.84244 2.5001157 + 698400 -33.791032 -33.79916 0.0081286204 427.80204 1.8738597 + 698500 -33.789618 -33.799374 0.0097564712 513.47438 0.86769428 + 698600 -33.795435 -33.799216 0.0037812482 199.00372 -0.049989786 + 698700 -33.795391 -33.798964 0.0035723451 188.00933 -0.65020762 + 698800 -33.793154 -33.798601 0.0054464176 286.6401 -1.23289 + 698900 -33.791388 -33.798047 0.0066591189 350.46349 -1.8717948 + 699000 -33.791793 -33.797405 0.0056123613 295.37357 -2.4393802 + 699100 -33.79189 -33.796884 0.0049938821 262.82356 -2.7960418 + 699200 -33.791312 -33.796564 0.0052519625 276.4061 -2.9338149 + 699300 -33.790583 -33.796493 0.0059095001 311.01172 -2.8447141 + 699400 -33.79033 -33.796676 0.0063463549 334.003 -2.5413132 + 699500 -33.792422 -33.797009 0.0045869026 241.40459 -2.1298624 + 699600 -33.794944 -33.797391 0.0024466415 128.76456 -1.7332082 + 699700 -33.793989 -33.797893 0.0039040779 205.46814 -1.210377 + 699800 -33.788439 -33.798622 0.010182931 535.91856 -0.28609567 + 699900 -33.791683 -33.799161 0.0074778446 393.55229 0.59704668 + 700000 -33.793891 -33.799353 0.0054620709 287.46392 1.2701198 + 700100 -33.794319 -33.79941 0.0050901581 267.89048 1.8413905 + 700200 -33.793519 -33.799414 0.0058943036 310.21194 2.344235 + 700300 -33.790351 -33.799372 0.0090205124 474.74152 2.8242622 + 700400 -33.79223 -33.799265 0.0070344291 370.21573 3.0909769 + 700500 -33.796293 -33.799247 0.0029545837 155.4971 3.0829533 + 700600 -33.795808 -33.799434 0.0036258719 190.8264 2.9629187 + 700700 -33.791644 -33.799886 0.0082427399 433.80805 2.6513621 + 700800 -33.79251 -33.800391 0.0078807103 414.75475 2.0032769 + 700900 -33.794825 -33.800701 0.005875807 309.23848 1.2926371 + 701000 -33.795953 -33.800862 0.0049087458 258.34291 0.60738905 + 701100 -33.795786 -33.800888 0.005102296 268.52929 -0.075089381 + 701200 -33.792101 -33.800728 0.0086274714 454.05613 -0.81783753 + 701300 -33.791576 -33.800183 0.0086067862 452.96748 -1.8179087 + 701400 -33.796419 -33.799558 0.003139194 165.21298 -2.624113 + 701500 -33.796259 -33.799102 0.0028431343 149.63162 -3.0732918 + 701600 -33.793566 -33.798671 0.005104527 268.6467 -3.4278636 + 701700 -33.792246 -33.798249 0.0060032923 315.94792 -3.7475583 + 701800 -33.792102 -33.797972 0.0058699467 308.93006 -3.9232421 + 701900 -33.792329 -33.797894 0.005565173 292.89009 -3.9080791 + 702000 -33.792803 -33.798022 0.005219309 274.68758 -3.7125275 + 702100 -33.793046 -33.798327 0.0052809956 277.93409 -3.3448389 + 702200 -33.792646 -33.798728 0.0060821287 320.09701 -2.8053206 + 702300 -33.792867 -33.799122 0.0062549104 329.19035 -2.1529374 + 702400 -33.794897 -33.799391 0.0044941121 236.52111 -1.5274954 + 702500 -33.796177 -33.799532 0.0033550351 176.57251 -0.9749542 + 702600 -33.794319 -33.799611 0.0052923088 278.52949 -0.35707958 + 702700 -33.78896 -33.799501 0.010540672 554.74615 0.57058724 + 702800 -33.793674 -33.799071 0.0053970045 284.03953 1.2376496 + 702900 -33.795095 -33.798665 0.0035700494 187.88852 1.6681416 + 703000 -33.79399 -33.798298 0.0043081371 226.73341 2.0171408 + 703100 -33.791989 -33.797952 0.0059633868 313.84773 2.2766826 + 703200 -33.790906 -33.797648 0.0067424221 354.84766 2.3715729 + 703300 -33.792283 -33.79743 0.0051472579 270.89559 2.2522135 + 703400 -33.795387 -33.797405 0.0020182422 106.21828 1.9867349 + 703500 -33.795151 -33.797597 0.002446038 128.7328 1.6936676 + 703600 -33.790864 -33.798054 0.0071904941 378.42929 1.1948666 + 703700 -33.790773 -33.798537 0.0077640518 408.61512 0.33033265 + 703800 -33.793735 -33.798742 0.0050069997 263.51393 -0.52251421 + 703900 -33.7946 -33.798787 0.0041876447 220.39201 -1.2068751 + 704000 -33.791494 -33.79874 0.0072465496 381.37944 -1.8280799 + 704100 -33.785574 -33.798347 0.012772611 672.21113 -2.7007964 + 704200 -33.792929 -33.79777 0.004840662 254.75973 -3.5694743 + 704300 -33.793385 -33.797386 0.0040013107 210.58542 -3.9819768 + 704400 -33.79104 -33.797194 0.0061539943 323.87923 -4.1624375 + 704500 -33.788232 -33.797207 0.0089750656 472.3497 -4.1586977 + 704600 -33.79351 -33.797384 0.003874196 203.89548 -4.1217414 + 704700 -33.795189 -33.797736 0.0025472219 134.05802 -3.8958884 + 704800 -33.793244 -33.798425 0.0051809412 272.66832 -3.3741686 + 704900 -33.791016 -33.799391 0.008375607 440.80073 -2.5339748 + 705000 -33.794333 -33.800171 0.0058380609 307.25194 -1.7296777 + 705100 -33.796783 -33.80061 0.0038273179 201.42833 -1.0869072 + 705200 -33.796418 -33.800898 0.0044792729 235.74014 -0.43110696 + 705300 -33.795526 -33.80106 0.0055341637 291.2581 0.28067234 + 705400 -33.794494 -33.801027 0.0065335217 343.85342 1.0121709 + 705500 -33.794767 -33.800787 0.0060197265 316.81284 1.6664801 + 705600 -33.796363 -33.800468 0.0041045706 216.01989 2.128698 + 705700 -33.796653 -33.800224 0.0035710889 187.94322 2.4180895 + 705800 -33.792487 -33.800072 0.0075855305 399.21971 2.6728153 + 705900 -33.791069 -33.799937 0.0088680268 466.71634 2.7500649 + 706000 -33.79553 -33.79987 0.0043395905 228.38878 2.5597967 + 706100 -33.795791 -33.79997 0.0041795399 219.96546 2.331086 + 706200 -33.794492 -33.800217 0.0057256721 301.33702 1.9682396 + 706300 -33.793847 -33.8005 0.006653305 350.15751 1.4356051 + 706400 -33.795339 -33.80069 0.0053506365 281.59922 0.80580937 + 706500 -33.798507 -33.800751 0.0022439417 118.09665 0.24772448 + 706600 -33.799094 -33.800793 0.0016987005 89.401092 -0.10659863 + 706700 -33.795873 -33.800854 0.0049811613 262.15408 -0.45444396 + 706800 -33.794042 -33.800757 0.006715083 353.40883 -0.99846698 + 706900 -33.794989 -33.800411 0.0054219408 285.35191 -1.5437263 + 707000 -33.795732 -33.799948 0.0042162708 221.89857 -1.9430283 + 707100 -33.793415 -33.799423 0.0060079954 316.19544 -2.1693638 + 707200 -33.78893 -33.798664 0.0097338181 512.28216 -2.2803405 + 707300 -33.793074 -33.797905 0.0048314622 254.27555 -2.404309 + 707400 -33.794956 -33.797612 0.0026558474 139.77488 -2.31248 + 707500 -33.790419 -33.797791 0.0073719465 387.97897 -1.8659571 + 707600 -33.787185 -33.798353 0.011167946 587.75906 -0.97625958 + 707700 -33.79382 -33.798739 0.0049195553 258.91181 -0.40589192 + 707800 -33.794964 -33.799057 0.0040938954 215.45806 0.13886914 + 707900 -33.793498 -33.799363 0.005865114 308.67572 0.7531659 + 708000 -33.790262 -33.799539 0.009276977 488.23903 1.5137806 + 708100 -33.794527 -33.799349 0.004821069 253.72856 2.0674572 + 708200 -33.796725 -33.799089 0.002363746 124.40185 2.3586851 + 708300 -33.795267 -33.798841 0.0035748541 188.14138 2.5989982 + 708400 -33.792722 -33.798464 0.0057423055 302.21242 2.8003207 + 708500 -33.792149 -33.79797 0.0058218385 306.39817 2.8435564 + 708600 -33.791969 -33.797471 0.0055019481 289.56262 2.7446113 + 708700 -33.790307 -33.797039 0.0067323339 354.31673 2.5317185 + 708800 -33.786535 -33.796676 0.010140988 533.71116 2.1603609 + 708900 -33.791669 -33.796456 0.0047868506 251.92768 1.5556926 + 709000 -33.793571 -33.796605 0.0030344789 159.70192 1.1393356 + 709100 -33.791745 -33.79721 0.0054648361 287.60945 0.77345092 + 709200 -33.789147 -33.798264 0.0091168307 479.81067 0.31772273 + 709300 -33.792959 -33.799279 0.0063198502 332.60808 -0.21260083 + 709400 -33.793998 -33.800072 0.006074227 319.68115 -0.54865522 + 709500 -33.794822 -33.800721 0.0058987216 310.44446 -0.78626775 + 709600 -33.796241 -33.801167 0.0049257272 259.23663 -0.93816441 + 709700 -33.797009 -33.801421 0.0044121784 232.20901 -0.97789054 + 709800 -33.795691 -33.801518 0.0058267568 306.65702 -0.8811074 + 709900 -33.791613 -33.801375 0.0097624521 513.78915 -0.62061415 + 710000 -33.795665 -33.800889 0.0052234769 274.90693 -0.44899806 + 710100 -33.798067 -33.800477 0.0024101291 126.84294 -0.27868705 + 710200 -33.796812 -33.800187 0.0033753726 177.64285 0.0065227586 + 710300 -33.794624 -33.799914 0.0052897231 278.39341 0.44346985 + 710400 -33.793583 -33.799676 0.006093559 320.69857 0.92901753 + 710500 -33.793301 -33.799492 0.0061904571 325.79824 1.396918 + 710600 -33.794269 -33.799364 0.0050945989 268.1242 1.7756092 + 710700 -33.795664 -33.79936 0.0036955383 194.49288 2.0162445 + 710800 -33.794981 -33.799482 0.0045011102 236.88941 2.1746977 + 710900 -33.79024 -33.799693 0.0094533564 497.52172 2.3235773 + 711000 -33.792923 -33.799802 0.0068787285 362.02134 2.2104068 + 711100 -33.796578 -33.799795 0.0032168011 169.29737 1.9980087 + 711200 -33.795881 -33.799849 0.0039678728 208.82561 1.7759711 + 711300 -33.79393 -33.799954 0.0060237983 317.02713 1.4187055 + 711400 -33.793148 -33.799987 0.0068388877 359.92456 0.89393279 + 711500 -33.79503 -33.799934 0.0049041854 258.1029 0.29043515 + 711600 -33.798146 -33.799896 0.0017492622 92.062107 -0.19453546 + 711700 -33.79812 -33.799989 0.001868324 98.328228 -0.4867966 + 711800 -33.794742 -33.80028 0.0055380017 291.46009 -0.7975285 + 711900 -33.793523 -33.800594 0.0070705943 372.11907 -1.2401259 + 712000 -33.795254 -33.800735 0.0054808607 288.45281 -1.6627629 + 712100 -33.796991 -33.800755 0.0037640066 198.09631 -1.9480691 + 712200 -33.796725 -33.800727 0.0040028658 210.66726 -2.0782575 + 712300 -33.790826 -33.800623 0.0097971588 515.61573 -2.014735 + 712400 -33.792916 -33.800247 0.0073301282 385.77811 -2.0329904 + 712500 -33.796281 -33.799851 0.0035697546 187.873 -2.0101274 + 712600 -33.795684 -33.799566 0.003882226 204.31809 -1.8262859 + 712700 -33.793858 -33.79932 0.0054619946 287.4599 -1.5072877 + 712800 -33.792969 -33.7991 0.0061307472 322.65575 -1.1066649 + 712900 -33.793146 -33.798944 0.005797757 305.13078 -0.68417455 + 713000 -33.793648 -33.798861 0.005213452 274.37933 -0.28486335 + 713100 -33.794296 -33.798893 0.0045968444 241.92782 0.066732948 + 713200 -33.793581 -33.799038 0.0054569681 287.19537 0.39548577 + 713300 -33.791574 -33.799244 0.0076703559 403.68399 0.71723191 + 713400 -33.793243 -33.799413 0.0061699632 324.71966 0.89629421 + 713500 -33.796325 -33.799515 0.0031892482 167.84729 0.91397586 + 713600 -33.796322 -33.799656 0.0033343127 175.4819 0.87896686 + 713700 -33.789223 -33.799902 0.010679591 562.05733 0.84137661 + 713800 -33.79201 -33.799986 0.00797647 419.7945 0.45904616 + 713900 -33.795247 -33.799908 0.0046617411 245.34328 0.083074117 + 714000 -33.795269 -33.799862 0.0045933847 241.74574 -0.23904505 + 714100 -33.792459 -33.799848 0.0073891602 388.88491 -0.58540213 + 714200 -33.787847 -33.799784 0.01193679 628.22259 -1.0433389 + 714300 -33.795857 -33.799641 0.0037833044 199.11194 -1.649516 + 714400 -33.796449 -33.799639 0.0031900677 167.89042 -1.9058086 + 714500 -33.79347 -33.799822 0.0063526768 334.33571 -2.0363715 + 714600 -33.791385 -33.80004 0.0086557328 455.54349 -2.1481063 + 714700 -33.795444 -33.800107 0.0046626855 245.39298 -2.2870754 + 714800 -33.797137 -33.80014 0.0030026667 158.02767 -2.2695809 + 714900 -33.79201 -33.800182 0.0081720033 430.08525 -1.997972 + 715000 -33.789309 -33.799971 0.010662315 561.14811 -1.5359315 + 715100 -33.795636 -33.799561 0.0039255689 206.59919 -1.3089948 + 715200 -33.796014 -33.799226 0.0032123891 169.06517 -1.0004304 + 715300 -33.792629 -33.798913 0.0062847147 330.75893 -0.50759635 + 715400 -33.790325 -33.798465 0.0081406855 428.43702 0.14940825 + 715500 -33.793012 -33.798007 0.0049942628 262.8436 0.65503055 + 715600 -33.794383 -33.797793 0.0034096746 179.44813 1.0347139 + 715700 -33.792514 -33.797834 0.0053201035 279.9923 1.3990823 + 715800 -33.787464 -33.79811 0.010646309 560.30573 1.8557956 + 715900 -33.792931 -33.798398 0.0054671633 287.73193 1.9931433 + 716000 -33.794855 -33.798653 0.0037982079 199.89629 2.0143271 + 716100 -33.793538 -33.799019 0.0054802474 288.42053 1.9595153 + 716200 -33.788976 -33.799431 0.010455453 550.26117 1.8026148 + 716300 -33.793725 -33.799563 0.005838581 307.27931 1.3280451 + 716400 -33.796717 -33.799529 0.0028125615 148.0226 0.96500393 + 716500 -33.795176 -33.799481 0.0043050203 226.56938 0.63614413 + 716600 -33.791293 -33.799321 0.0080277075 422.49108 0.15125552 + 716700 -33.792492 -33.798966 0.0064741932 340.73101 -0.51926128 + 716800 -33.794481 -33.798582 0.0041002515 215.79258 -1.0756321 + 716900 -33.793443 -33.798346 0.004902041 257.99005 -1.4718364 + 717000 -33.785157 -33.798145 0.012988066 683.55031 -1.8344522 + 717100 -33.792596 -33.797923 0.0053271738 280.36441 -2.3827932 + 717200 -33.794269 -33.79798 0.0037117352 195.34531 -2.5511758 + 717300 -33.792556 -33.798347 0.0057908144 304.7654 -2.4597824 + 717400 -33.788798 -33.798986 0.010187859 536.17791 -2.1042143 + 717500 -33.795329 -33.799543 0.0042134892 221.75218 -1.8395158 + 717600 -33.796711 -33.799901 0.003189996 167.88665 -1.5087503 + 717700 -33.794563 -33.800322 0.0057586269 303.0714 -0.95236899 + 717800 -33.792207 -33.800697 0.0084895672 446.79835 -0.15936972 + 717900 -33.796346 -33.800761 0.0044149398 232.35434 0.50106437 + 718000 -33.798811 -33.800721 0.0019095049 100.49554 0.91780822 + 718100 -33.798014 -33.800722 0.0027075298 142.49488 1.3339697 + 718200 -33.795987 -33.800755 0.0047678 250.92506 1.8394842 + 718300 -33.793396 -33.80078 0.0073840603 388.61651 2.4114283 + 718400 -33.79426 -33.800728 0.0064680289 340.40659 2.855414 + 718500 -33.797704 -33.800702 0.0029976723 157.76482 3.0448643 + 718600 -33.798812 -33.800822 0.0020097885 105.77338 3.0745305 + 718700 -33.794658 -33.801161 0.006503219 342.25861 3.0338538 + 718800 -33.792234 -33.801719 0.0094844077 499.15592 2.7088443 + 718900 -33.797152 -33.802031 0.0048788088 256.76735 2.1890127 + 719000 -33.798277 -33.802173 0.0038964021 205.06417 1.7595636 + 719100 -33.796272 -33.802239 0.005967205 314.04867 1.2976993 + 719200 -33.789888 -33.802063 0.012175586 640.79022 0.6530465 + 719300 -33.797527 -33.801537 0.0040096599 211.02483 -0.26469179 + 719400 -33.798652 -33.80116 0.0025079877 131.99315 -0.71207513 + 719500 -33.796301 -33.8008 0.0044991517 236.78634 -1.0728689 + 719600 -33.792969 -33.800326 0.0073573793 387.21231 -1.4745169 + 719700 -33.793527 -33.799789 0.0062622281 329.57548 -1.884547 + 719800 -33.795615 -33.799367 0.0037512621 197.42558 -2.1390864 + 719900 -33.797062 -33.799194 0.0021322682 112.21937 -2.1879715 + 720000 -33.796245 -33.799252 0.0030068238 158.24645 -2.0294059 + 720100 -33.791012 -33.799482 0.0084705751 445.79881 -1.5167411 + 720200 -33.792377 -33.799593 0.0072156446 379.75294 -0.93011125 + 720300 -33.795545 -33.799497 0.0039519751 207.98893 -0.45589224 + 720400 -33.795459 -33.799352 0.0038931198 204.89142 0.043809944 + 720500 -33.788569 -33.799077 0.010507855 553.01906 0.84664899 + 720600 -33.788821 -33.798295 0.0094744544 498.63208 1.7703223 + 720700 -33.792497 -33.797477 0.0049804038 262.11421 2.3597565 + 720800 -33.792912 -33.796864 0.0039522024 208.00088 2.8091723 + 720900 -33.789941 -33.796429 0.0064877682 341.44546 3.2230847 + 721000 -33.786972 -33.796146 0.0091742511 482.83265 3.5747469 + 721100 -33.791727 -33.796111 0.0043838931 230.72039 3.5805724 + 721200 -33.793598 -33.796414 0.0028159367 148.20024 3.4417376 + 721300 -33.792492 -33.79712 0.0046281743 243.57668 3.1638514 + 721400 -33.790837 -33.798147 0.0073103735 384.73844 2.6572698 + 721500 -33.792657 -33.799137 0.0064802903 341.0519 1.925369 + 721600 -33.796065 -33.799759 0.0036945036 194.43843 1.2394854 + 721700 -33.796345 -33.800159 0.0038138089 200.71736 0.66679397 + 721800 -33.789276 -33.800462 0.011186395 588.72997 0.044078324 + 721900 -33.790661 -33.800298 0.0096369664 507.18495 -1.1122042 + 722000 -33.795041 -33.799778 0.0047366371 249.28499 -1.9803279 + 722100 -33.795155 -33.799254 0.0040988817 215.72049 -2.557627 + 722200 -33.79218 -33.798726 0.0065459796 344.50907 -3.0107509 + 722300 -33.789552 -33.798167 0.0086144626 453.37148 -3.448225 + 722400 -33.793804 -33.797855 0.0040516401 213.23421 -3.7943442 + 722500 -33.796094 -33.798002 0.001908367 100.43566 -3.815719 + 722600 -33.794918 -33.798644 0.0037266375 196.12961 -3.5233593 + 722700 -33.792611 -33.79976 0.0071490558 376.24843 -2.9079232 + 722800 -33.793682 -33.800905 0.0072223528 380.10598 -2.1598974 + 722900 -33.79757 -33.801622 0.0040523242 213.27021 -1.5535958 + 723000 -33.798154 -33.802026 0.0038714633 203.75166 -0.97888059 + 723100 -33.796375 -33.802255 0.0058802861 309.47421 -0.28233302 + 723200 -33.795516 -33.802193 0.0066764295 351.37453 0.49535941 + 723300 -33.796302 -33.801788 0.0054858344 288.71457 1.1805649 + 723400 -33.7966 -33.801189 0.0045884188 241.48439 1.7522835 + 723500 -33.794697 -33.800434 0.0057364733 301.90547 2.2918582 + 723600 -33.790921 -33.799372 0.0084508446 444.76041 2.8632013 + 723700 -33.792489 -33.798221 0.0057325005 301.69639 3.2111287 + 723800 -33.795835 -33.797595 0.0017593028 92.590538 3.2681596 + 723900 -33.795691 -33.797571 0.0018798351 98.934043 3.1756289 + 724000 -33.791356 -33.798152 0.0067960042 357.66764 2.8569284 + 724100 -33.791391 -33.799087 0.0076960419 405.03582 2.1667046 + 724200 -33.794879 -33.799858 0.0049785838 262.01842 1.4053329 + 724300 -33.796287 -33.800409 0.0041214646 216.909 0.76518949 + 724400 -33.795263 -33.800836 0.0055736161 293.33445 0.14654075 + 724500 -33.788857 -33.801079 0.012222232 643.24516 -0.59618772 + 724600 -33.795148 -33.800797 0.0056494366 297.32481 -1.6408889 + 724700 -33.797319 -33.800379 0.0030596253 161.02535 -2.2142603 + 724800 -33.795837 -33.799908 0.0040710298 214.25466 -2.6103483 + 724900 -33.792853 -33.799232 0.0063783034 335.68442 -2.9703963 + 725000 -33.792458 -33.798427 0.0059684861 314.1161 -3.2827057 + 725100 -33.792753 -33.79776 0.0050067394 263.50023 -3.4198709 + 725200 -33.790894 -33.79736 0.0064657322 340.28572 -3.2948124 + 725300 -33.782502 -33.797156 0.014653629 771.20744 -2.7163946 + 725400 -33.791625 -33.797095 0.0054702686 287.89536 -2.3623602 + 725500 -33.792698 -33.797332 0.0046343977 243.90422 -1.8549917 + 725600 -33.791611 -33.797867 0.0062556974 329.23177 -1.165919 + 725700 -33.790923 -33.798508 0.0075852344 399.20412 -0.33391224 + 725800 -33.795008 -33.798962 0.0039544162 208.1174 0.32207416 + 725900 -33.7963 -33.799248 0.0029479961 155.1504 0.79904839 + 726000 -33.793761 -33.799511 0.0057506329 302.65068 1.336807 + 726100 -33.789397 -33.799602 0.010204897 537.07463 2.0556406 + 726200 -33.793054 -33.799275 0.0062209194 327.40144 2.5029847 + 726300 -33.793951 -33.798768 0.0048172331 253.52668 2.8059425 + 726400 -33.793206 -33.798222 0.0050160633 263.99094 2.9991001 + 726500 -33.789912 -33.797594 0.0076817407 404.28316 3.1074116 + 726600 -33.788585 -33.796834 0.008249197 434.14788 3.0273425 + 726700 -33.793579 -33.79637 0.0027905549 146.86442 2.7288042 + 726800 -33.794068 -33.796452 0.0023837966 125.45709 2.4765993 + 726900 -33.790906 -33.797123 0.0062178446 327.23962 2.1314462 + 727000 -33.78983 -33.798275 0.0084441997 444.4107 1.5400481 + 727100 -33.792947 -33.799288 0.0063408257 333.712 0.88656713 + 727200 -33.794858 -33.800056 0.0051978463 273.55801 0.37024903 + 727300 -33.795354 -33.800642 0.0052878973 278.29732 -0.050576162 + 727400 -33.795525 -33.801037 0.0055121272 290.09834 -0.41745478 + 727500 -33.796328 -33.801211 0.0048829069 256.98303 -0.72064775 + 727600 -33.796319 -33.80117 0.0048512915 255.31914 -0.92263224 + 727700 -33.794454 -33.800928 0.0064740093 340.72133 -1.0160465 + 727800 -33.792646 -33.800406 0.0077601435 408.40943 -1.0319285 + 727900 -33.795051 -33.799717 0.0046666872 245.60359 -1.0392434 + 728000 -33.797071 -33.799278 0.0022069714 116.15093 -0.9564454 + 728100 -33.795597 -33.799154 0.003557116 187.20784 -0.6941852 + 728200 -33.790943 -33.799292 0.0083491017 439.40577 -0.10074797 + 728300 -33.793086 -33.799581 0.0064948386 341.81756 0.46803519 + 728400 -33.795719 -33.799904 0.0041848383 220.24431 0.91536594 + 728500 -33.795879 -33.800309 0.0044290719 233.0981 1.3268271 + 728600 -33.790034 -33.800844 0.010809857 568.91312 1.89107 + 728700 -33.792459 -33.801227 0.0087674978 461.42559 2.3507745 + 728800 -33.797107 -33.801268 0.0041610208 218.99082 2.5125713 + 728900 -33.796628 -33.801216 0.0045870302 241.41131 2.6237025 + 729000 -33.79369 -33.801023 0.0073323723 385.89621 2.6540272 + 729100 -33.79237 -33.800569 0.0081985159 431.48058 2.5053134 + 729200 -33.797332 -33.800033 0.0027009516 142.14867 2.1634665 + 729300 -33.797879 -33.799743 0.0018644098 98.122223 1.8936286 + 729400 -33.795461 -33.799583 0.0041218506 216.92932 1.5126104 + 729500 -33.793328 -33.799427 0.0060992755 320.99943 0.87186029 + 729600 -33.792814 -33.799234 0.0064207515 337.91842 0.081705827 + 729700 -33.793863 -33.799014 0.0051509443 271.08961 -0.69725015 + 729800 -33.795198 -33.798831 0.0036326586 191.18358 -1.3263649 + 729900 -33.794447 -33.798778 0.0043301168 227.89019 -1.7751387 + 730000 -33.78945 -33.798763 0.0093127132 490.11979 -2.1320516 + 730100 -33.791699 -33.798575 0.006876435 361.90064 -2.5553148 + 730200 -33.795038 -33.79842 0.0033829074 178.0394 -2.7528695 + 730300 -33.79445 -33.798412 0.0039613952 208.4847 -2.6677501 + 730400 -33.792928 -33.798543 0.0056150374 295.51441 -2.3608493 + 730500 -33.792182 -33.79874 0.0065582231 345.15343 -1.8820461 + 730600 -33.793289 -33.798881 0.0055923552 294.32066 -1.3309634 + 730700 -33.796116 -33.799011 0.0028949634 152.35934 -0.85203354 + 730800 -33.797189 -33.79919 0.0020006792 105.29396 -0.46064082 + 730900 -33.794003 -33.799513 0.0055096542 289.96819 0.078968453 + 731000 -33.790912 -33.799939 0.0090265468 475.05911 0.87313646 + 731100 -33.794646 -33.800068 0.0054216084 285.33441 1.4183445 + 731200 -33.796132 -33.800052 0.003920689 206.34236 1.7839346 + 731300 -33.794469 -33.800014 0.0055449041 291.82336 2.083126 + 731400 -33.786431 -33.799793 0.013362239 703.24274 2.4598167 + 731500 -33.793566 -33.799327 0.0057603392 303.16151 2.4019173 + 731600 -33.794634 -33.798973 0.0043393225 228.37467 2.2940157 + 731700 -33.793187 -33.798736 0.0055490296 292.04048 2.0720134 + 731800 -33.790406 -33.798601 0.0081942252 431.25477 1.659278 + 731900 -33.792619 -33.798506 0.0058869647 309.8257 1.0087178 + 732000 -33.796067 -33.798564 0.002497675 131.45041 0.4675089 + 732100 -33.79526 -33.798859 0.0035994789 189.43736 0.043352518 + 732200 -33.791729 -33.799411 0.0076824086 404.31831 -0.49287866 + 732300 -33.792522 -33.79995 0.0074271908 390.88643 -1.1846256 + 732400 -33.794772 -33.800243 0.0054707028 287.91821 -1.7809163 + 732500 -33.795854 -33.800353 0.0044992872 236.79347 -2.2026907 + 732600 -33.794871 -33.800354 0.005483438 288.58845 -2.4715919 + 732700 -33.788561 -33.800107 0.011545714 607.64063 -2.6011585 + 732800 -33.793868 -33.799478 0.0056095146 295.22375 -2.8654706 + 732900 -33.796066 -33.798993 0.0029265665 154.02259 -2.8938965 + 733000 -33.794782 -33.798657 0.0038744859 203.91074 -2.6911037 + 733100 -33.792417 -33.798421 0.0060041008 315.99047 -2.2415598 + 733200 -33.791894 -33.79828 0.0063854 336.05791 -1.6393241 + 733300 -33.792674 -33.798242 0.0055678101 293.02888 -0.99094214 + 733400 -33.793935 -33.798344 0.0044088123 232.03186 -0.36340765 + 733500 -33.795562 -33.798563 0.0030001239 157.89385 0.1465016 + 733600 -33.794655 -33.798924 0.0042684788 224.64623 0.63062443 + 733700 -33.789879 -33.799453 0.0095740551 503.87398 1.2813832 + 733800 -33.793143 -33.799783 0.0066392083 349.41561 1.7435355 + 733900 -33.796278 -33.799872 0.0035944852 189.17455 1.9483984 + 734000 -33.795563 -33.799925 0.0043618065 229.55799 2.0656822 + 734100 -33.793853 -33.799912 0.0060589064 318.87484 2.0615313 + 734200 -33.793145 -33.79976 0.0066146398 348.12259 1.8892971 + 734300 -33.794889 -33.799474 0.0045854408 241.32766 1.5503134 + 734400 -33.797376 -33.799271 0.0018952213 99.743808 1.1871517 + 734500 -33.796767 -33.799275 0.0025076874 131.97735 0.85571493 + 734600 -33.792675 -33.79948 0.0068049679 358.13939 0.33192015 + 734700 -33.792471 -33.799744 0.0072725717 382.74896 -0.45737949 + 734800 -33.795242 -33.799962 0.0047202622 248.42319 -1.1842709 + 734900 -33.796652 -33.800203 0.003550956 186.88365 -1.6862697 + 735000 -33.795168 -33.800563 0.0053954186 283.95607 -2.0099658 + 735100 -33.789661 -33.801069 0.011407363 600.35935 -2.2475409 + 735200 -33.795963 -33.80135 0.0053867213 283.49834 -2.5863602 + 735300 -33.797592 -33.801479 0.0038871179 204.57555 -2.6298389 + 735400 -33.796241 -33.801589 0.0053478305 281.45155 -2.4411386 + 735500 -33.793435 -33.801609 0.0081741896 430.20031 -2.018038 + 735600 -33.795395 -33.801414 0.006019052 316.77734 -1.527356 + 735700 -33.798917 -33.801189 0.0022722259 119.58522 -1.1538599 + 735800 -33.798058 -33.801059 0.0030016052 157.9718 -0.67377162 + 735900 -33.794017 -33.800908 0.0068913356 362.68485 0.16008288 + 736000 -33.793669 -33.800576 0.0069073084 363.52548 1.1175958 + 736100 -33.795577 -33.800169 0.0045924319 241.69559 1.904431 + 736200 -33.796323 -33.799834 0.0035109234 184.77676 2.5190571 + 736300 -33.792894 -33.799573 0.0066788103 351.49983 3.1421298 + 736400 -33.789559 -33.79922 0.0096609679 508.44813 3.8339466 + 736500 -33.794393 -33.798872 0.0044789731 235.72436 4.1281534 + 736600 -33.795251 -33.79876 0.0035087118 184.66037 4.2057152 + 736700 -33.792996 -33.798859 0.0058629699 308.56288 4.1139566 + 736800 -33.790298 -33.799057 0.0087593908 460.99892 3.7553938 + 736900 -33.796454 -33.799179 0.0027256153 143.4467 3.1069845 + 737000 -33.797288 -33.799318 0.0020299687 106.83544 2.6842368 + 737100 -33.794312 -33.799618 0.0053063225 279.26702 2.1059443 + 737200 -33.791158 -33.79995 0.0087921606 462.72357 1.1279542 + 737300 -33.794702 -33.8 0.0052975278 278.80416 0.018349556 + 737400 -33.796734 -33.799931 0.0031974612 168.27953 -0.75695502 + 737500 -33.794748 -33.799894 0.0051457131 270.81429 -1.3422131 + 737600 -33.787635 -33.799738 0.012103259 636.98375 -2.0698155 + 737700 -33.793458 -33.799388 0.0059299536 312.08817 -2.8708391 + 737800 -33.795132 -33.799155 0.0040235975 211.75835 -3.2227696 + 737900 -33.793833 -33.799119 0.0052854127 278.16655 -3.2526561 + 738000 -33.788576 -33.799238 0.01066262 561.16417 -2.926885 + 738100 -33.793845 -33.799299 0.0054536386 287.02014 -2.5781843 + 738200 -33.796432 -33.799395 0.0029628191 155.93053 -2.2008717 + 738300 -33.79457 -33.799647 0.0050765128 267.17234 -1.5491712 + 738400 -33.791363 -33.799939 0.0085760158 451.34806 -0.52680251 + 738500 -33.79444 -33.800014 0.0055737154 293.33967 0.45044162 + 738600 -33.797662 -33.799952 0.0022894432 120.49135 1.0912721 + 738700 -33.797147 -33.799931 0.0027839411 146.51633 1.644865 + 738800 -33.794006 -33.79992 0.0059140197 311.24958 2.3813963 + 738900 -33.793852 -33.799783 0.005930764 312.13082 3.0636405 + 739000 -33.79423 -33.799564 0.0053336688 280.70623 3.5785868 + 739100 -33.793983 -33.799356 0.0053728631 282.76899 3.915579 + 739200 -33.792454 -33.799191 0.0067369427 354.55929 4.0860425 + 739300 -33.791621 -33.799086 0.0074647797 392.8647 4.0352794 + 739400 -33.794779 -33.799074 0.0042950525 226.04478 3.7147009 + 739500 -33.796436 -33.799233 0.0027970333 147.20537 3.3197801 + 739600 -33.794101 -33.799638 0.005537526 291.43505 2.8170029 + 739700 -33.788663 -33.800291 0.011627456 611.94262 1.8825794 + 739800 -33.794303 -33.800658 0.0063541077 334.41102 0.71881087 + 739900 -33.795769 -33.800802 0.0050323847 264.84992 -0.15670683 + 740000 -33.795599 -33.800834 0.0052354111 275.53502 -0.94169988 + 740100 -33.793689 -33.800754 0.0070647192 371.80987 -1.6968199 + 740200 -33.790928 -33.800429 0.0095005666 500.00635 -2.4972646 + 740300 -33.795684 -33.799911 0.0042268041 222.45293 -3.2512945 + 740400 -33.797038 -33.799593 0.0025543681 134.43412 -3.5650304 + 740500 -33.794496 -33.79944 0.0049441287 260.20508 -3.5780883 + 740600 -33.791532 -33.799327 0.007794633 410.22458 -3.3500843 + 740700 -33.793232 -33.799212 0.005980554 314.75122 -3.0123434 + 740800 -33.794619 -33.799151 0.0045317732 238.50318 -2.5503761 + 740900 -33.794166 -33.799202 0.0050368124 265.08294 -1.928429 + 741000 -33.788278 -33.799317 0.01103905 580.97534 -0.90036708 + 741100 -33.79241 -33.799226 0.0068154987 358.69362 0.12490083 + 741200 -33.795598 -33.799114 0.0035156203 185.02396 0.78934707 + 741300 -33.79457 -33.799101 0.0045310755 238.46646 1.4296268 + 741400 -33.791644 -33.799136 0.0074918262 394.28813 2.1504789 + 741500 -33.792323 -33.799141 0.0068176512 358.8069 2.7473102 + 741600 -33.797246 -33.799148 0.0019025729 100.13072 2.9542398 + 741700 -33.797217 -33.799345 0.002127945 111.99185 2.9743524 + 741800 -33.794427 -33.799838 0.0054104019 284.74462 2.8209842 + 741900 -33.792429 -33.800472 0.0080425733 423.27346 2.3711983 + 742000 -33.795319 -33.800905 0.0055856209 293.96624 1.6941819 + 742100 -33.797563 -33.801091 0.0035279949 185.67523 1.0678713 + 742200 -33.797009 -33.80116 0.0041515071 218.49011 0.47157664 + 742300 -33.789759 -33.801042 0.011283105 593.81974 -0.36332098 + 742400 -33.794546 -33.800478 0.0059323574 312.21468 -1.5652451 + 742500 -33.796916 -33.79993 0.003013534 158.59961 -2.3391053 + 742600 -33.795486 -33.799478 0.0039916707 210.07807 -2.9134871 + 742700 -33.791802 -33.798954 0.0071514207 376.37289 -3.528103 + 742800 -33.79223 -33.798471 0.0062410744 328.46218 -4.1369417 + 742900 -33.793197 -33.798238 0.0050404492 265.27434 -4.4945387 + 743000 -33.792985 -33.798301 0.0053164168 279.79828 -4.5625423 + 743100 -33.789575 -33.79869 0.0091153115 479.73071 -4.2961133 + 743200 -33.791597 -33.799211 0.0076140729 400.72186 -3.8702312 + 743300 -33.795837 -33.799603 0.0037665855 198.23203 -3.4613607 + 743400 -33.795565 -33.800034 0.004468833 235.1907 -2.8782589 + 743500 -33.792346 -33.800519 0.0081732458 430.15064 -1.9807446 + 743600 -33.791902 -33.800842 0.0089400237 470.50547 -0.86031256 + 743700 -33.79795 -33.800867 0.002917766 153.55942 -0.16713636 + 743800 -33.797761 -33.800841 0.0030796855 162.0811 0.42712139 + 743900 -33.794093 -33.800791 0.0066976196 352.48975 1.211804 + 744000 -33.793089 -33.80056 0.0074712238 393.20385 2.0631756 + 744100 -33.79524 -33.8002 0.0049600916 261.04519 2.6627481 + 744200 -33.795732 -33.799922 0.0041903212 220.53287 3.0510413 + 744300 -33.788399 -33.799682 0.01128257 593.79161 3.4453812 + 744400 -33.790457 -33.799268 0.0088102124 463.67362 3.5361861 + 744500 -33.794884 -33.799013 0.0041282548 217.26637 3.3637453 + 744600 -33.794515 -33.798962 0.0044471158 234.04774 3.0939879 + 744700 -33.791021 -33.79908 0.0080583291 424.10268 2.6187987 + 744800 -33.790793 -33.799181 0.0083877159 441.43801 1.7853829 + 744900 -33.796426 -33.799159 0.0027328166 143.8257 1.0024981 + 745000 -33.795917 -33.799217 0.0033003744 173.69576 0.44258976 + 745100 -33.792545 -33.799301 0.0067561619 355.57077 -0.26385712 + 745200 -33.791828 -33.799177 0.0073489922 386.77091 -1.1990886 + 745300 -33.793891 -33.798851 0.0049595525 261.01682 -2.0483893 + 745400 -33.794215 -33.798451 0.0042358312 222.92802 -2.6630648 + 745500 -33.79136 -33.798001 0.0066406832 349.49323 -3.1105371 + 745600 -33.780476 -33.797033 0.016557356 871.39888 -3.5197897 + 745700 -33.790245 -33.795892 0.0056479058 297.24424 -4.0869447 + 745800 -33.791985 -33.795348 0.003362733 176.97764 -4.1491427 + 745900 -33.7901 -33.795375 0.0052746633 277.60082 -3.8380596 + 746000 -33.786192 -33.795969 0.0097771667 514.56356 -3.0727236 + 746100 -33.791032 -33.79681 0.0057783108 304.10734 -2.3034366 + 746200 -33.793103 -33.797607 0.0045039111 237.03682 -1.6103835 + 746300 -33.79242 -33.798559 0.0061384684 323.06211 -0.78825884 + 746400 -33.792775 -33.799525 0.0067502495 355.25961 0.086546372 + 746500 -33.796057 -33.800199 0.0041419211 217.98561 0.77201633 + 746600 -33.798342 -33.800591 0.0022482727 118.32459 1.1974373 + 746700 -33.797122 -33.800923 0.0038008813 200.037 1.5588223 + 746800 -33.789753 -33.801262 0.011509739 605.7473 2.1582753 + 746900 -33.795527 -33.801196 0.0056689031 298.34931 2.3998926 + 747000 -33.797477 -33.800959 0.0034822358 183.26696 2.4962828 + 747100 -33.796007 -33.800697 0.004689447 246.80141 2.5111505 + 747200 -33.791229 -33.800304 0.0090747255 477.59471 2.4186608 + 747300 -33.793205 -33.799756 0.0065510814 344.77757 2.0419215 + 747400 -33.79455 -33.799359 0.0048084968 253.0669 1.6321182 + 747500 -33.794015 -33.799196 0.0051811493 272.67927 1.1906588 + 747600 -33.792547 -33.79927 0.0067231306 353.83237 0.67000017 + 747700 -33.792424 -33.799571 0.0071475688 376.17017 0.061762098 + 747800 -33.796465 -33.79995 0.0034850015 183.41252 -0.4942868 + 747900 -33.797206 -33.800385 0.0031794314 167.33064 -0.79505113 + 748000 -33.793808 -33.801013 0.0072048969 379.1873 -0.96108261 + 748100 -33.791553 -33.801655 0.01010274 531.69821 -1.1433574 + 748200 -33.798287 -33.801852 0.0035656287 187.65586 -1.3800173 + 748300 -33.798144 -33.801858 0.0037139877 195.46386 -1.3576337 + 748400 -33.795567 -33.801694 0.0061270018 322.45864 -1.1721286 + 748500 -33.793349 -33.801196 0.0078464879 412.95366 -0.8559386 + 748600 -33.795831 -33.800432 0.0046013006 242.16235 -0.56836547 + 748700 -33.798174 -33.799848 0.0016737244 88.086623 -0.32502365 + 748800 -33.797709 -33.799558 0.0018484466 97.282096 -0.026939702 + 748900 -33.793826 -33.799373 0.005547503 291.96013 0.57541189 + 749000 -33.791954 -33.799217 0.007263475 382.27021 1.3116128 + 749100 -33.793295 -33.799088 0.0057922247 304.83962 1.9429088 + 749200 -33.795271 -33.799027 0.0037554285 197.64485 2.3592834 + 749300 -33.795078 -33.799114 0.0040355242 212.38604 2.6351156 + 749400 -33.789163 -33.799321 0.010158101 534.61177 2.9211077 + 749500 -33.791724 -33.799343 0.0076195081 401.00792 2.9074864 + 749600 -33.795258 -33.799233 0.0039744871 209.17371 2.7179151 + 749700 -33.794654 -33.799117 0.0044632489 234.89681 2.4530034 + 749800 -33.792597 -33.798929 0.0063319393 333.24432 2.0010934 + 749900 -33.791462 -33.798566 0.0071040312 373.87883 1.3085092 + 750000 -33.794147 -33.798051 0.0039042805 205.4788 0.49112408 + 750100 -33.795931 -33.797758 0.0018268171 96.143757 -0.11303968 + 750200 -33.794194 -33.797729 0.0035349657 186.04209 -0.65828306 + 750300 -33.790454 -33.79789 0.0074353167 391.31408 -1.4574036 + 750400 -33.791407 -33.79811 0.0067025805 352.75083 -2.3859225 + 750500 -33.794087 -33.798343 0.004256388 224.0099 -3.0820706 + 750600 -33.795128 -33.798685 0.0035572456 187.21466 -3.4661501 + 750700 -33.793198 -33.799236 0.006038198 317.78497 -3.5906999 + 750800 -33.789152 -33.799975 0.010822674 569.58767 -3.5053708 + 750900 -33.795468 -33.800445 0.0049770584 261.93814 -3.4714453 + 751000 -33.796784 -33.800717 0.0039334288 207.01285 -3.2319118 + 751100 -33.795259 -33.80095 0.00569169 299.54857 -2.7608879 + 751200 -33.792275 -33.801079 0.0088042691 463.36083 -2.0151574 + 751300 -33.795282 -33.800928 0.0056463791 297.1639 -1.265079 + 751400 -33.79832 -33.800715 0.0023952509 126.05992 -0.75181445 + 751500 -33.797148 -33.800574 0.0034259967 180.30715 -0.19346543 + 751600 -33.793113 -33.800371 0.0072579946 381.98178 0.65430729 + 751700 -33.793357 -33.799995 0.0066381478 349.3598 1.5014773 + 751800 -33.795149 -33.799605 0.0044563798 234.5353 2.119313 + 751900 -33.795349 -33.799318 0.0039689365 208.88159 2.5522636 + 752000 -33.78985 -33.799111 0.0092617475 487.43751 2.9918742 + 752100 -33.790701 -33.798835 0.0081338032 428.0748 3.1954596 + 752200 -33.794884 -33.798651 0.0037671805 198.26335 3.0990045 + 752300 -33.794572 -33.798705 0.0041335619 217.54568 2.8847908 + 752400 -33.79171 -33.798952 0.007242028 381.14147 2.4508387 + 752500 -33.791552 -33.79923 0.007678248 404.09934 1.6884944 + 752600 -33.797269 -33.799405 0.0021361436 112.42333 0.95053016 + 752700 -33.796721 -33.799634 0.0029129061 153.30365 0.42908693 + 752800 -33.792643 -33.800017 0.0073737282 388.07274 -0.29893297 + 752900 -33.792458 -33.800289 0.0078304146 412.10774 -1.3436366 + 753000 -33.796052 -33.80027 0.0042181405 221.99697 -2.25422 + 753100 -33.796705 -33.800191 0.0034865268 183.4928 -2.8489897 + 753200 -33.788941 -33.800049 0.011107927 584.60031 -3.2705343 + 753300 -33.790516 -33.799501 0.0089851901 472.88254 -4.0004146 + 753400 -33.794948 -33.798975 0.0040270724 211.94123 -4.4226176 + 753500 -33.794866 -33.798664 0.0037984601 199.90957 -4.4781958 + 753600 -33.790859 -33.798534 0.007674378 403.89567 -4.1822162 + 753700 -33.790094 -33.798482 0.0083879069 441.44806 -3.6342559 + 753800 -33.794086 -33.798467 0.0043810505 230.57078 -3.1042057 + 753900 -33.794298 -33.798625 0.0043262868 227.68862 -2.4556637 + 754000 -33.79305 -33.798921 0.0058709162 308.98108 -1.6042189 + 754100 -33.792041 -33.799203 0.007162013 376.93036 -0.58757501 + 754200 -33.794299 -33.799348 0.0050483398 265.68962 0.33434352 + 754300 -33.79666 -33.799386 0.0027257257 143.45251 0.97460799 + 754400 -33.796099 -33.799465 0.0033655779 177.12736 1.4935338 + 754500 -33.789351 -33.799577 0.010226259 538.19889 2.2552013 + 754600 -33.792564 -33.799414 0.0068503708 360.52891 2.7899057 + 754700 -33.795133 -33.799175 0.0040419666 212.7251 3.0384954 + 754800 -33.794508 -33.799011 0.0045030595 236.992 3.136267 + 754900 -33.789705 -33.798858 0.0091525498 481.69053 3.1088213 + 755000 -33.788395 -33.798529 0.010133908 533.33852 2.7578382 + 755100 -33.795553 -33.798262 0.0027087863 142.56101 2.2504737 + 755200 -33.794812 -33.798287 0.00347435 182.85194 1.850513 + 755300 -33.79053 -33.798593 0.0080632507 424.36169 1.2478755 + 755400 -33.791302 -33.798933 0.0076313115 401.62912 0.33519605 + 755500 -33.79512 -33.799153 0.0040334024 212.27437 -0.44441721 + 755600 -33.795307 -33.799403 0.0040953746 215.53591 -0.96938109 + 755700 -33.794053 -33.799694 0.0056407924 296.86987 -1.4237511 + 755800 -33.793768 -33.799923 0.0061550652 323.93559 -1.8216022 + 755900 -33.794389 -33.799995 0.0056063091 295.05505 -2.096618 + 756000 -33.795319 -33.799921 0.0046013028 242.16246 -2.2137824 + 756100 -33.795338 -33.799801 0.0044629346 234.88027 -2.1468288 + 756200 -33.792079 -33.799608 0.0075291198 396.25086 -1.8223942 + 756300 -33.790918 -33.799187 0.0082693052 435.20616 -1.3173133 + 756400 -33.795293 -33.798763 0.0034696683 182.60555 -0.90069367 + 756500 -33.796031 -33.798587 0.0025563532 134.53859 -0.46566552 + 756600 -33.790931 -33.798653 0.0077220665 406.40547 0.2797021 + 756700 -33.790094 -33.798785 0.0086904422 457.37022 1.2833989 + 756800 -33.793975 -33.798814 0.0048389501 254.66963 1.9884477 + 756900 -33.795005 -33.798937 0.0039323027 206.95359 2.5058641 + 757000 -33.792788 -33.799197 0.0064091028 337.30536 2.9822575 + 757100 -33.787826 -33.799518 0.011691269 615.30107 3.4977021 + 757200 -33.795627 -33.79966 0.0040331565 212.26143 3.5688477 + 757300 -33.796258 -33.799777 0.0035184797 185.17445 3.5374748 + 757400 -33.793876 -33.799997 0.0061204006 322.11123 3.3555467 + 757500 -33.791849 -33.800187 0.0083381948 438.83176 2.9122022 + 757600 -33.796098 -33.80016 0.0040620829 213.7838 2.2525306 + 757700 -33.798162 -33.800139 0.0019765534 104.02424 1.7597473 + 757800 -33.797082 -33.800215 0.0031331768 164.8963 1.2567196 + 757900 -33.795147 -33.800347 0.0052002409 273.68404 0.56059701 + 758000 -33.793382 -33.800426 0.0070439678 370.71774 -0.30921317 + 758100 -33.794319 -33.800324 0.0060042092 315.99618 -1.2393054 + 758200 -33.797261 -33.800176 0.0029151826 153.42346 -1.9578287 + 758300 -33.798114 -33.800164 0.0020501111 107.89552 -2.3338903 + 758400 -33.794115 -33.800331 0.0062159015 327.13735 -2.4789481 + 758500 -33.79193 -33.800568 0.0086382429 454.62302 -2.5804582 + 758600 -33.795646 -33.800622 0.0049759758 261.88117 -2.6257384 + 758700 -33.796852 -33.800635 0.0037828231 199.0866 -2.4627601 + 758800 -33.794307 -33.800686 0.0063796499 335.75528 -2.0362191 + 758900 -33.787427 -33.800577 0.013149841 692.06439 -1.1389596 + 759000 -33.794826 -33.800196 0.0053701647 282.62698 -0.52382564 + 759100 -33.795393 -33.799851 0.0044581373 234.62779 0.093309711 + 759200 -33.793778 -33.799518 0.005740298 302.10676 0.80692228 + 759300 -33.79087 -33.799121 0.0082509964 434.24258 1.6742338 + 759400 -33.792886 -33.798646 0.0057606039 303.17545 2.4161916 + 759500 -33.796202 -33.798403 0.0022005622 115.81362 2.7897498 + 759600 -33.795447 -33.798485 0.0030376917 159.87101 3.0108439 + 759700 -33.791375 -33.798894 0.00751903 395.71984 3.1642591 + 759800 -33.792243 -33.799407 0.0071637461 377.02157 3.0456493 + 759900 -33.794854 -33.799816 0.0049622447 261.15851 2.740775 + 760000 -33.795892 -33.800146 0.004254078 223.88833 2.3477408 + 760100 -33.794125 -33.800456 0.0063308315 333.18602 1.8502507 + 760200 -33.789015 -33.800636 0.011620177 611.55954 1.0628353 + 760300 -33.795812 -33.800435 0.0046230067 243.30472 0.046821802 + 760400 -33.796891 -33.800187 0.0032960564 173.46851 -0.61495445 + 760500 -33.794939 -33.799917 0.004977912 261.98307 -1.2653574 + 760600 -33.792397 -33.799511 0.0071136771 374.38648 -2.067932 + 760700 -33.792985 -33.799004 0.0060191975 316.78499 -2.8986946 + 760800 -33.793439 -33.798543 0.0051038949 268.61344 -3.5414199 + 760900 -33.792874 -33.798213 0.0053393218 281.00374 -3.9807097 + 761000 -33.791657 -33.798014 0.0063562208 334.52223 -4.2277755 + 761100 -33.789521 -33.79788 0.0083588576 439.91922 -4.2581812 + 761200 -33.790756 -33.797734 0.0069780182 367.24688 -4.1409952 + 761300 -33.79402 -33.797641 0.0036205392 190.54575 -3.9258464 + 761400 -33.793913 -33.797704 0.0037901036 199.46977 -3.5154371 + 761500 -33.789516 -33.7979 0.0083836896 441.22611 -2.7325547 + 761600 -33.789603 -33.797949 0.0083461776 439.25188 -1.7250272 + 761700 -33.794588 -33.797834 0.0032456501 170.81567 -1.038197 + 761800 -33.794422 -33.79779 0.0033678942 177.24927 -0.40223389 + 761900 -33.792363 -33.797803 0.0054404183 286.32436 0.3542314 + 762000 -33.790006 -33.797776 0.0077700443 408.9305 1.2374657 + 762100 -33.792056 -33.797624 0.0055674297 293.00886 1.9536169 + 762200 -33.795383 -33.797547 0.0021641443 113.89698 2.3098361 + 762300 -33.795464 -33.797719 0.0022550409 118.68079 2.4560321 + 762400 -33.789252 -33.798287 0.0090350764 475.50801 2.5439228 + 762500 -33.791278 -33.798988 0.0077100543 405.77328 2.2732754 + 762600 -33.795023 -33.799449 0.0044261125 232.94236 1.880306 + 762700 -33.795555 -33.799834 0.004279623 225.23274 1.4725857 + 762800 -33.792892 -33.800239 0.0073464397 386.63657 0.96115916 + 762900 -33.788928 -33.80054 0.01161194 611.12605 0.17147768 + 763000 -33.796766 -33.800518 0.0037523139 197.48094 -0.72930613 + 763100 -33.79708 -33.800467 0.0033869145 178.25029 -1.2465417 + 763200 -33.794277 -33.800439 0.006161153 324.25599 -1.7464157 + 763300 -33.792229 -33.800336 0.0081072269 426.67612 -2.3552804 + 763400 -33.79531 -33.800155 0.0048456931 255.02451 -2.9286517 + 763500 -33.798371 -33.800085 0.0017141411 90.213717 -3.2237484 + 763600 -33.799161 -33.80021 0.0010496735 55.243382 -3.2467443 + 763700 -33.795884 -33.800618 0.0047342777 249.16081 -2.9761324 + 763800 -33.793371 -33.801304 0.0079334047 417.52802 -2.3925541 + 763900 -33.796251 -33.801711 0.0054599461 287.3521 -1.8433473 + 764000 -33.798195 -33.801845 0.0036500234 192.09748 -1.3461867 + 764100 -33.797318 -33.801845 0.0045267366 238.23811 -0.77888903 + 764200 -33.792339 -33.80164 0.0093008164 489.49367 0.076314389 + 764300 -33.794387 -33.801072 0.0066851038 351.83105 0.90539333 + 764400 -33.798145 -33.800555 0.0024106519 126.87046 1.3915773 + 764500 -33.797884 -33.800248 0.0023646594 124.44991 1.7588007 + 764600 -33.79665 -33.800072 0.0034213905 180.06473 2.0951208 + 764700 -33.793513 -33.800024 0.0065106868 342.65164 2.4088621 + 764800 -33.791579 -33.800023 0.0084435647 444.37728 2.6073978 + 764900 -33.795399 -33.800005 0.0046060379 242.41167 2.5368564 + 765000 -33.796894 -33.800069 0.0031749268 167.09357 2.3743235 + 765100 -33.793961 -33.800254 0.0062934666 331.21953 2.1353736 + 765200 -33.787651 -33.800445 0.012794299 673.35253 1.6042731 + 765300 -33.794147 -33.800337 0.0061897514 325.76109 0.81525827 + 765400 -33.795681 -33.800133 0.0044521809 234.31431 0.22956226 + 765500 -33.794975 -33.799918 0.004942837 260.1371 -0.30665487 + 765600 -33.790755 -33.799623 0.0088678937 466.70934 -0.88607064 + 765700 -33.791197 -33.799104 0.0079063879 416.10614 -1.6582765 + 765800 -33.796336 -33.798741 0.0024046933 126.55686 -2.2075909 + 765900 -33.795885 -33.798691 0.0028061417 147.68474 -2.4025501 + 766000 -33.793191 -33.798915 0.0057244544 301.27293 -2.4149207 + 766100 -33.792097 -33.799304 0.0072066 379.27693 -2.2907252 + 766200 -33.794006 -33.799635 0.0056294463 296.27274 -2.0688507 + 766300 -33.79625 -33.799869 0.0036188443 190.45655 -1.7546951 + 766400 -33.798195 -33.800057 0.0018615389 97.971131 -1.4074298 + 766500 -33.79821 -33.800266 0.0020558332 108.19667 -0.99554482 + 766600 -33.793812 -33.800572 0.0067599779 355.77161 -0.19651168 + 766700 -33.793007 -33.800682 0.0076749095 403.92364 0.85714658 + 766800 -33.795929 -33.800449 0.0045208582 237.92873 1.7072403 + 766900 -33.796794 -33.800133 0.0033391582 175.73692 2.3775518 + 767000 -33.791855 -33.799747 0.0078917655 415.33658 3.1661129 + 767100 -33.789817 -33.798999 0.0091819668 483.23872 4.1125661 + 767200 -33.79393 -33.798336 0.0044058073 231.87371 4.6223584 + 767300 -33.794093 -33.798029 0.0039360402 207.15029 4.8962038 + 767400 -33.791044 -33.79807 0.0070258187 369.76257 5.0084649 + 767500 -33.7879 -33.798434 0.010533845 554.38687 4.8608091 + 767600 -33.795635 -33.798836 0.0032005091 168.43994 4.3631776 + 767700 -33.795855 -33.799329 0.0034740264 182.83491 3.9453245 + 767800 -33.792397 -33.800097 0.0077000939 405.24907 3.3110064 + 767900 -33.792403 -33.800869 0.0084661785 445.56742 2.2848253 + 768000 -33.797454 -33.801214 0.0037595364 197.86105 1.3348444 + 768100 -33.797557 -33.801346 0.0037892833 199.4266 0.63905305 + 768200 -33.795972 -33.801338 0.0053662053 282.4186 -0.10303098 + 768300 -33.794757 -33.801094 0.0063363456 333.47621 -0.93297627 + 768400 -33.794943 -33.800597 0.0056534214 297.53452 -1.7374833 + 768500 -33.795337 -33.800009 0.0046717258 245.86876 -2.3802829 + 768600 -33.793715 -33.799446 0.0057317094 301.65475 -2.8207756 + 768700 -33.790728 -33.798873 0.0081449546 428.66169 -3.1156538 + 768800 -33.792455 -33.798437 0.0059814632 314.79907 -3.2924965 + 768900 -33.794967 -33.798365 0.003397689 178.81734 -3.2438645 + 769000 -33.79463 -33.798678 0.0040482885 213.05781 -2.9275408 + 769100 -33.78711 -33.799442 0.012331891 649.0164 -2.0988895 + 769200 -33.792711 -33.800208 0.0074977783 394.60139 -1.2689769 + 769300 -33.795579 -33.800607 0.0050284944 264.64518 -0.61277445 + 769400 -33.79556 -33.800895 0.005334646 280.75766 0.07990118 + 769500 -33.794704 -33.801054 0.0063497626 334.18234 0.81688067 + 769600 -33.79421 -33.801023 0.0068131077 358.56778 1.5542473 + 769700 -33.796142 -33.800811 0.0046691863 245.73511 2.1259422 + 769800 -33.797343 -33.800579 0.0032357819 170.29631 2.4964854 + 769900 -33.794958 -33.80038 0.0054223976 285.37595 2.8049926 + 770000 -33.79074 -33.800056 0.0093157313 490.27863 3.0804622 + 770100 -33.794097 -33.799624 0.0055270233 290.88231 3.0454536 + 770200 -33.795408 -33.799323 0.0039148417 206.03463 2.8858978 + 770300 -33.794505 -33.799156 0.0046509739 244.77661 2.5939163 + 770400 -33.793501 -33.799079 0.0055773276 293.52978 2.1063635 + 770500 -33.792827 -33.799032 0.0062045812 326.54157 1.4462195 + 770600 -33.793098 -33.798952 0.0058539182 308.08649 0.66678205 + 770700 -33.794885 -33.798853 0.0039679307 208.82865 -0.10653625 + 770800 -33.795641 -33.798819 0.0031775933 167.2339 -0.72508517 + 770900 -33.792532 -33.798859 0.0063266647 332.96672 -1.2906298 + 771000 -33.789376 -33.798788 0.0094121582 495.35349 -2.0334822 + 771100 -33.793796 -33.79851 0.0047140306 248.09523 -2.7511721 + 771200 -33.794734 -33.798304 0.0035691074 187.83894 -3.1108845 + 771300 -33.793616 -33.798224 0.0046088473 242.55952 -3.2585734 + 771400 -33.792107 -33.798243 0.0061359664 322.93044 -3.2318859 + 771500 -33.791539 -33.798318 0.0067795101 356.79957 -3.047111 + 771600 -33.794011 -33.798429 0.0044174704 232.48753 -2.7867854 + 771700 -33.796368 -33.798622 0.0022538707 118.6192 -2.5057464 + 771800 -33.795294 -33.799003 0.0037087349 195.18741 -2.0843028 + 771900 -33.789422 -33.799673 0.010251661 539.53576 -1.2472285 + 772000 -33.792948 -33.800163 0.0072149291 379.71528 -0.49783715 + 772100 -33.795556 -33.800354 0.0047979041 252.50941 0.068693051 + 772200 -33.79576 -33.800423 0.0046627851 245.39822 0.56348925 + 772300 -33.792757 -33.800397 0.007640398 402.10733 1.0891164 + 772400 -33.787875 -33.800072 0.01219765 641.95144 1.712397 + 772500 -33.795913 -33.799564 0.0036517836 192.19011 1.8759453 + 772600 -33.796059 -33.799249 0.0031899298 167.88316 1.9579471 + 772700 -33.793238 -33.799018 0.005780584 304.22698 1.9357948 + 772800 -33.791041 -33.798775 0.0077343553 407.05222 1.7041586 + 772900 -33.792997 -33.798537 0.0055403093 291.58153 1.2619485 + 773000 -33.794986 -33.79843 0.0034442392 181.26724 0.79328929 + 773100 -33.796947 -33.798521 0.0015746381 82.871797 0.37436099 + 773200 -33.796591 -33.798838 0.0022472141 118.26887 0.033155637 + 773300 -33.792038 -33.799537 0.0074985295 394.64092 -0.42902888 + 773400 -33.79232 -33.800338 0.0080172401 421.9402 -1.1623543 + 773500 -33.795998 -33.800812 0.0048132792 253.31859 -1.8083777 + 773600 -33.796767 -33.801098 0.0043313911 227.95725 -2.2278557 + 773700 -33.795045 -33.801302 0.0062571263 329.30697 -2.5262105 + 773800 -33.78476 -33.801318 0.016557409 871.40165 -2.669589 + 773900 -33.795281 -33.800901 0.0056204083 295.79708 -3.1362986 + 774000 -33.796838 -33.800544 0.0037059989 195.04341 -3.2023522 + 774100 -33.795047 -33.800284 0.0052362154 275.57735 -3.0215811 + 774200 -33.79152 -33.800027 0.0085068757 447.70928 -2.5612487 + 774300 -33.793869 -33.799756 0.0058876503 309.86179 -2.0459964 + 774400 -33.797295 -33.799654 0.0023589488 124.14937 -1.6141984 + 774500 -33.797215 -33.799784 0.0025696921 135.2406 -1.1456966 + 774600 -33.789256 -33.800185 0.010928884 575.1774 -0.14842173 + 774700 -33.793614 -33.800382 0.0067676326 356.17447 0.78915763 + 774800 -33.79663 -33.800327 0.0036978302 194.61351 1.4056353 + 774900 -33.796047 -33.800244 0.0041969064 220.87944 1.9300876 + 775000 -33.791343 -33.800057 0.0087146227 458.64282 2.5519597 + 775100 -33.791967 -33.799575 0.0076084312 400.42495 3.0498563 + 775200 -33.796783 -33.799162 0.0023791195 125.21094 3.1885226 + 775300 -33.796726 -33.799042 0.0023163355 121.90667 3.196974 + 775400 -33.794751 -33.799189 0.0044373673 233.53468 3.0458212 + 775500 -33.791375 -33.799567 0.0081913022 431.10093 2.6635021 + 775600 -33.793357 -33.799933 0.0065760876 346.09363 2.0064491 + 775700 -33.796793 -33.8002 0.0034063191 179.27154 1.4001137 + 775800 -33.796764 -33.800495 0.0037306337 196.33992 0.91628898 + 775900 -33.786704 -33.800914 0.014209914 747.85511 0.39368338 + 776000 -33.792831 -33.80104 0.0082094013 432.05347 -0.64046123 + 776100 -33.796422 -33.800862 0.004439588 233.65156 -1.2798824 + 776200 -33.796482 -33.800647 0.0041650597 219.20338 -1.6648371 + 776300 -33.793111 -33.800357 0.0072458203 381.34106 -1.8982882 + 776400 -33.790739 -33.799774 0.0090346537 475.48576 -2.0817674 + 776500 -33.796336 -33.79916 0.002823481 148.59729 -2.2493951 + 776600 -33.796967 -33.798914 0.0019469464 102.46605 -2.1452921 + 776700 -33.795288 -33.798936 0.0036482285 192.00301 -1.7746395 + 776800 -33.792598 -33.799169 0.0065709586 345.82369 -1.086531 + 776900 -33.7922 -33.799408 0.0072082908 379.36591 -0.22552563 + 777000 -33.795283 -33.799528 0.0042444792 223.38315 0.51903621 + 777100 -33.79747 -33.799638 0.0021673787 114.06721 1.0544556 + 777200 -33.797333 -33.799839 0.002505754 131.8756 1.5044748 + 777300 -33.791303 -33.800207 0.0089035497 468.58588 2.2255036 + 777400 -33.792856 -33.800391 0.0075344177 396.52968 2.8873177 + 777500 -33.79649 -33.800301 0.0038109485 200.56682 3.2330642 + 777600 -33.796349 -33.800196 0.0038469549 202.4618 3.4435435 + 777700 -33.791381 -33.800041 0.0086592743 455.72988 3.6136201 + 777800 -33.790664 -33.799578 0.0089143065 469.152 3.5451054 + 777900 -33.794645 -33.799076 0.0044306677 233.18209 3.265422 + 778000 -33.794162 -33.798697 0.0045348651 238.6659 2.9521227 + 778100 -33.791742 -33.798403 0.0066609906 350.56199 2.4938524 + 778200 -33.790313 -33.798129 0.0078166019 411.38078 1.810415 + 778300 -33.793633 -33.797909 0.0042759984 225.04198 1.0502173 + 778400 -33.795458 -33.797958 0.0024998358 131.56413 0.52731336 + 778500 -33.793068 -33.798327 0.0052585298 276.75173 0.14280783 + 778600 -33.787443 -33.799026 0.011582811 609.59299 -0.37781501 + 778700 -33.793479 -33.799447 0.0059681222 314.09695 -0.99429134 + 778800 -33.795181 -33.799659 0.0044774842 235.646 -1.2951058 + 778900 -33.794539 -33.799849 0.0053105283 279.48837 -1.4012191 + 779000 -33.790733 -33.800001 0.0092685979 487.79804 -1.3134006 + 779100 -33.791412 -33.799889 0.008477665 446.17195 -1.1830228 + 779200 -33.796648 -33.799716 0.0030672505 161.42666 -1.0976916 + 779300 -33.796096 -33.799714 0.0036182284 190.42413 -0.82968417 + 779400 -33.79242 -33.799873 0.0074529648 392.24289 -0.32456219 + 779500 -33.792464 -33.800057 0.0075931064 399.61842 0.24894704 + 779600 -33.794659 -33.800141 0.0054819278 288.50897 0.71068061 + 779700 -33.794882 -33.800203 0.0053203884 280.0073 1.1353352 + 779800 -33.794468 -33.80024 0.0057719756 303.77393 1.5192931 + 779900 -33.79404 -33.800183 0.0061422399 323.26061 1.8291021 + 780000 -33.794057 -33.800003 0.0059459191 312.92842 2.0294006 + 780100 -33.794712 -33.799717 0.0050053509 263.42716 2.0910712 + 780200 -33.794404 -33.799363 0.004959675 261.02327 2.0382478 + 780300 -33.791744 -33.798901 0.0071576459 376.70052 1.8816357 + 780400 -33.790093 -33.798184 0.0080917494 425.86155 1.5213938 + 780500 -33.793924 -33.79744 0.0035155049 185.01789 0.99881514 + 780600 -33.795269 -33.7971 0.0018309949 96.363629 0.60249511 + 780700 -33.7923 -33.79711 0.0048096075 253.12535 0.18105586 + 780800 -33.789608 -33.797387 0.0077795451 409.43052 -0.56273985 + 780900 -33.792004 -33.797754 0.005750189 302.62732 -1.3715538 + 781000 -33.794078 -33.798165 0.0040865799 215.07305 -1.9651275 + 781100 -33.794038 -33.798723 0.0046849274 246.56355 -2.358546 + 781200 -33.789312 -33.799515 0.010203231 536.98697 -2.5953141 + 781300 -33.792386 -33.80023 0.0078430841 412.77452 -2.9267519 + 781400 -33.796683 -33.800567 0.0038836871 204.39499 -3.0788709 + 781500 -33.796066 -33.800814 0.0047484753 249.90802 -2.9762166 + 781600 -33.793317 -33.800958 0.0076413538 402.15764 -2.6607841 + 781700 -33.793377 -33.800838 0.0074619139 392.71387 -2.230729 + 781800 -33.798081 -33.800531 0.0024508412 128.98559 -1.9236527 + 781900 -33.798004 -33.80032 0.0023156513 121.87066 -1.5519599 + 782000 -33.794783 -33.800109 0.0053255979 280.28147 -0.90878942 + 782100 -33.793165 -33.799718 0.0065523253 344.84303 -0.067085442 + 782200 -33.793667 -33.799232 0.0055646801 292.86415 0.73501601 + 782300 -33.794245 -33.798778 0.0045324894 238.54087 1.4208919 + 782400 -33.792414 -33.798412 0.0059984318 315.69212 2.061746 + 782500 -33.788303 -33.798077 0.0097733386 514.36209 2.7762192 + 782600 -33.792698 -33.797765 0.0050665061 266.6457 3.1473808 + 782700 -33.794658 -33.797751 0.0030938092 162.82442 3.2456804 + 782800 -33.793117 -33.798082 0.0049647284 261.28923 3.1798208 + 782900 -33.790948 -33.798683 0.0077356181 407.11868 2.8628618 + 783000 -33.79237 -33.799296 0.0069258684 364.50228 2.2804748 + 783100 -33.794447 -33.799754 0.0053066556 279.28455 1.6125385 + 783200 -33.79562 -33.800076 0.0044564263 234.53774 0.9405287 + 783300 -33.79507 -33.800338 0.0052678903 277.24437 0.24766632 + 783400 -33.790568 -33.800482 0.0099137199 521.75024 -0.57997908 + 783500 -33.793839 -33.800292 0.0064531057 339.6212 -1.6670076 + 783600 -33.797033 -33.800038 0.0030044536 158.12171 -2.3770894 + 783700 -33.796051 -33.799859 0.0038085979 200.44311 -2.8320419 + 783800 -33.793245 -33.799692 0.0064471958 339.31017 -3.2342878 + 783900 -33.793086 -33.79948 0.0063936112 336.49005 -3.5893859 + 784000 -33.79392 -33.799237 0.0053167657 279.81663 -3.7696187 + 784100 -33.794073 -33.799049 0.004975753 261.86944 -3.7385219 + 784200 -33.791176 -33.7989 0.0077239336 406.50373 -3.4355827 + 784300 -33.788982 -33.798565 0.0095829282 504.34096 -2.8765535 + 784400 -33.794426 -33.798195 0.0037693943 198.37986 -2.4422573 + 784500 -33.794898 -33.798017 0.0031187243 164.13568 -1.9378642 + 784600 -33.792127 -33.79798 0.0058532673 308.05224 -1.1679017 + 784700 -33.790611 -33.797995 0.0073840252 388.61466 -0.14421353 + 784800 -33.792089 -33.797936 0.0058467058 307.70691 0.79395083 + 784900 -33.793041 -33.797935 0.0048938217 257.55747 1.5951067 + 785000 -33.792492 -33.798086 0.005594066 294.4107 2.3076463 + 785100 -33.787988 -33.798359 0.010371472 545.84131 3.0884698 + 785200 -33.791995 -33.798663 0.0066688556 350.97592 3.6080886 + 785300 -33.795258 -33.79894 0.003682113 193.78632 3.776882 + 785400 -33.794316 -33.799385 0.0050698121 266.81969 3.7902046 + 785500 -33.791339 -33.800056 0.008716866 458.76088 3.6071553 + 785600 -33.795055 -33.800618 0.0055628781 292.76931 3.0944891 + 785700 -33.798122 -33.800921 0.0027990623 147.31215 2.6345992 + 785800 -33.796652 -33.801226 0.004574054 240.72838 2.1499624 + 785900 -33.792729 -33.801472 0.0087420665 460.08716 1.4029656 + 786000 -33.795193 -33.80142 0.0062267793 327.70984 0.40151065 + 786100 -33.79832 -33.801186 0.0028664712 150.85982 -0.36607468 + 786200 -33.798532 -33.800983 0.0024506121 128.97353 -0.88666249 + 786300 -33.793248 -33.800753 0.0075046704 394.96411 -1.4021054 + 786400 -33.791932 -33.800246 0.0083133638 437.52492 -2.1470401 + 786500 -33.795805 -33.799714 0.00390917 205.73613 -2.7323327 + 786600 -33.796352 -33.799442 0.0030901035 162.62939 -2.9432053 + 786700 -33.792401 -33.799368 0.0069676392 366.70063 -2.8277171 + 786800 -33.790717 -33.799366 0.0086488748 455.18257 -2.4775972 + 786900 -33.793833 -33.799348 0.0055147709 290.23747 -2.067297 + 787000 -33.794453 -33.799386 0.0049328202 259.60993 -1.5020163 + 787100 -33.793756 -33.799506 0.0057497247 302.60288 -0.75136126 + 787200 -33.793077 -33.79961 0.0065325912 343.80445 0.14912907 + 787300 -33.794602 -33.799614 0.0050120301 263.77868 1.0299768 + 787400 -33.796357 -33.799607 0.0032494963 171.01809 1.7133922 + 787500 -33.79508 -33.799651 0.0045709412 240.56456 2.3658275 + 787600 -33.790653 -33.799683 0.0090291846 475.19793 3.1953569 + 787700 -33.793181 -33.79955 0.0063688461 335.18669 3.83249 + 787800 -33.796397 -33.799404 0.0030070189 158.25672 4.1109112 + 787900 -33.795807 -33.799419 0.0036113641 190.06287 4.2187011 + 788000 -33.793743 -33.799578 0.0058351991 307.10132 4.143287 + 788100 -33.793606 -33.799726 0.0061198485 322.08217 3.809954 + 788200 -33.794334 -33.799813 0.0054789756 288.3536 3.2926863 + 788300 -33.795021 -33.799818 0.0047967022 252.44616 2.6616913 + 788400 -33.794277 -33.799741 0.0054637887 287.55433 1.9416191 + 788500 -33.790804 -33.799526 0.0087215028 459.00492 1.0411072 + 788600 -33.792348 -33.798999 0.0066509794 350.03511 -0.11638585 + 788700 -33.795996 -33.798558 0.0025621287 134.84255 -0.97246748 + 788800 -33.795492 -33.798415 0.0029228004 153.82438 -1.5057385 + 788900 -33.791008 -33.79849 0.0074813784 393.73827 -2.0316103 + 789000 -33.791658 -33.798686 0.0070275769 369.8551 -2.6174474 + 789100 -33.794063 -33.798914 0.004850393 255.27186 -2.9704743 + 789200 -33.794983 -33.799221 0.0042382631 223.05601 -3.0375593 + 789300 -33.793299 -33.799677 0.0063783623 335.68752 -2.8177729 + 789400 -33.788921 -33.800167 0.011246395 591.88772 -2.2472913 + 789500 -33.795716 -33.800353 0.004636845 244.03302 -1.8002316 + 789600 -33.796877 -33.800406 0.0035293676 185.74747 -1.3080078 + 789700 -33.794976 -33.800419 0.0054433782 286.48014 -0.60700007 + 789800 -33.792307 -33.80029 0.0079831158 420.14427 0.3674068 + 789900 -33.794939 -33.799929 0.0049898349 262.61056 1.2681155 + 790000 -33.798335 -33.799684 0.0013483862 70.964363 1.7510538 + 790100 -33.797644 -33.799682 0.0020372317 107.21769 2.1324066 + 790200 -33.794935 -33.799899 0.0049634778 261.22341 2.5933011 + 790300 -33.792778 -33.800243 0.0074655283 392.90409 3.0240009 + 790400 -33.794466 -33.800561 0.0060944085 320.74328 3.2308648 + 790500 -33.797473 -33.800788 0.003314412 174.43455 3.2029079 + 790600 -33.798286 -33.801033 0.0027462386 144.53209 3.0424693 + 790700 -33.7937 -33.80139 0.0076902434 404.73065 2.7559243 + 790800 -33.792111 -33.801688 0.0095768919 504.02328 2.0368391 + 790900 -33.797296 -33.801659 0.0043625361 229.59639 1.2365555 + 791000 -33.797709 -33.801515 0.0038062663 200.3204 0.60698959 + 791100 -33.795246 -33.801254 0.0060076717 316.17841 -0.096579947 + 791200 -33.792148 -33.800731 0.0085830227 451.71683 -1.0400318 + 791300 -33.796783 -33.800045 0.00326258 171.70667 -2.0550388 + 791400 -33.798368 -33.799751 0.0013833026 72.801983 -2.5198582 + 791500 -33.796485 -33.799743 0.0032580536 171.46845 -2.7921956 + 791600 -33.792821 -33.799968 0.0071475045 376.16679 -3.0093013 + 791700 -33.79295 -33.800269 0.0073191065 385.19804 -3.1840129 + 791800 -33.796307 -33.800499 0.0041916263 220.60156 -3.246778 + 791900 -33.79735 -33.800699 0.0033491844 176.26459 -3.1165587 + 792000 -33.792917 -33.800963 0.008045975 423.45249 -2.6926673 + 792100 -33.790332 -33.801117 0.010784904 567.59986 -1.9712093 + 792200 -33.79633 -33.80097 0.0046397383 244.18529 -1.5086301 + 792300 -33.796732 -33.800782 0.0040503544 213.16654 -1.0076101 + 792400 -33.794355 -33.80053 0.0061754811 325.01006 -0.36286203 + 792500 -33.790955 -33.800104 0.0091490538 481.50654 0.48367628 + 792600 -33.795928 -33.799589 0.0036608149 192.66542 1.0917089 + 792700 -33.797642 -33.799376 0.0017334647 91.230699 1.4016282 + 792800 -33.795752 -33.799431 0.0036789735 193.6211 1.674548 + 792900 -33.792588 -33.79971 0.0071214965 374.79801 1.9263732 + 793000 -33.79316 -33.800027 0.0068661837 361.36113 1.9834999 + 793100 -33.795957 -33.800276 0.0043189629 227.30316 1.8496947 + 793200 -33.797425 -33.800466 0.0030408038 160.03479 1.6296413 + 793300 -33.797326 -33.800666 0.0033401791 175.79065 1.338162 + 793400 -33.792647 -33.800871 0.0082243567 432.84056 0.91063059 + 793500 -33.792631 -33.800802 0.0081703606 429.99879 0.13018395 + 793600 -33.796857 -33.800494 0.0036368767 191.40557 -0.60172768 + 793700 -33.796916 -33.800157 0.0032416406 170.60465 -1.1340795 + 793800 -33.794052 -33.79971 0.0056582475 297.78852 -1.7012956 + 793900 -33.793088 -33.799085 0.0059966442 315.59804 -2.4119467 + 794000 -33.793361 -33.798431 0.0050701018 266.83494 -3.0509669 + 794100 -33.792373 -33.797897 0.0055244453 290.74663 -3.5281167 + 794200 -33.788531 -33.797494 0.0089633976 471.73562 -3.8455569 + 794300 -33.78974 -33.797191 0.0074507711 392.12744 -4.1067812 + 794400 -33.794423 -33.797236 0.002812739 148.03195 -4.1693717 + 794500 -33.793742 -33.797683 0.0039413928 207.43199 -3.8854598 + 794600 -33.790585 -33.798565 0.0079799165 419.97589 -3.2226757 + 794700 -33.792066 -33.799527 0.0074606064 392.64506 -2.4112806 + 794800 -33.794397 -33.800156 0.0057587752 303.0792 -1.662876 + 794900 -33.794709 -33.800563 0.0058532662 308.05218 -0.86959623 + 795000 -33.795223 -33.800751 0.0055283942 290.95446 -0.078807615 + 795100 -33.795882 -33.800713 0.0048306582 254.23323 0.64635645 + 795200 -33.795558 -33.800513 0.004955185 260.78696 1.3188151 + 795300 -33.792333 -33.800109 0.0077762897 409.25919 2.0656131 + 795400 -33.791716 -33.799376 0.0076592012 403.09693 2.7720226 + 795500 -33.795579 -33.79869 0.003110575 163.70679 3.1380957 + 795600 -33.796244 -33.798334 0.0020900422 109.99706 3.2863736 + 795700 -33.791397 -33.798185 0.0067885304 357.2743 3.3425684 + 795800 -33.790472 -33.798133 0.0076613775 403.21146 3.0986581 + 795900 -33.79339 -33.798128 0.0047377844 249.34537 2.6545879 + 796000 -33.794423 -33.798257 0.003834272 201.79431 2.1891195 + 796100 -33.791958 -33.79855 0.0065922231 346.94282 1.6578295 + 796200 -33.786748 -33.798905 0.012156859 639.80465 0.82743809 + 796300 -33.794497 -33.799046 0.0045492756 239.42432 -0.15082016 + 796400 -33.794939 -33.799145 0.0042056646 221.34038 -0.72613403 + 796500 -33.793032 -33.79931 0.0062775175 330.38015 -1.2427621 + 796600 -33.791381 -33.799486 0.0081046209 426.53897 -1.7733875 + 796700 -33.795668 -33.799556 0.0038878954 204.61647 -2.2628726 + 796800 -33.797401 -33.79967 0.0022695833 119.44614 -2.4296658 + 796900 -33.795485 -33.799952 0.0044673353 235.11187 -2.3388099 + 797000 -33.792867 -33.800358 0.0074910451 394.24702 -2.0233397 + 797100 -33.794352 -33.80065 0.0062981071 331.46376 -1.63786 + 797200 -33.796096 -33.800773 0.0046766581 246.12834 -1.1970765 + 797300 -33.796317 -33.800817 0.0045005224 236.85848 -0.67638104 + 797400 -33.791364 -33.800804 0.009439998 496.81868 0.13004948 + 797500 -33.792044 -33.800503 0.008459434 445.21247 1.0805386 + 797600 -33.796638 -33.800161 0.0035229595 185.41022 1.6665898 + 797700 -33.796207 -33.79996 0.003753439 197.54015 2.1836306 + 797800 -33.793565 -33.799838 0.0062730107 330.14296 2.7549968 + 797900 -33.792792 -33.799761 0.0069685347 366.74776 3.2556665 + 798000 -33.793847 -33.799711 0.0058638651 308.60999 3.5531226 + 798100 -33.794327 -33.799721 0.0053941454 283.88906 3.6697062 + 798200 -33.794174 -33.799816 0.0056419567 296.93115 3.6085823 + 798300 -33.793295 -33.799933 0.0066381415 349.35946 3.3739482 + 798400 -33.792684 -33.800004 0.0073200015 385.24515 2.9371029 + 798500 -33.795265 -33.799982 0.0047171388 248.25881 2.3428492 + 798600 -33.796441 -33.799939 0.0034976674 184.07912 1.7840275 + 798700 -33.794155 -33.799932 0.005776756 304.02551 1.1876318 + 798800 -33.789588 -33.799817 0.010229331 538.36058 0.30273375 + 798900 -33.794434 -33.799494 0.0050598777 266.29685 -0.71951174 + 799000 -33.795665 -33.799277 0.0036121457 190.10401 -1.3584175 + 799100 -33.794449 -33.799193 0.0047430994 249.62509 -1.8479615 + 799200 -33.792168 -33.799202 0.0070339238 370.18914 -2.2581021 + 799300 -33.792319 -33.799228 0.0069084928 363.58781 -2.5986075 + 799400 -33.796343 -33.799236 0.0028930525 152.25877 -2.7951787 + 799500 -33.796972 -33.799349 0.0023771585 125.10773 -2.7234939 + 799600 -33.793786 -33.799606 0.0058202507 306.3146 -2.3538375 + 799700 -33.792096 -33.79981 0.007714955 406.0312 -1.7322867 + 799800 -33.794215 -33.799748 0.0055330896 291.20157 -1.1232114 + 799900 -33.795504 -33.799524 0.0040202187 211.58052 -0.53869769 + 800000 -33.794033 -33.7992 0.005167515 271.96171 0.1333817 + 800100 -33.787712 -33.798567 0.01085529 571.30424 1.1899512 + 800200 -33.792012 -33.797636 0.0056242078 295.99704 2.0497602 + 800300 -33.793639 -33.796979 0.0033398664 175.77419 2.6309032 + 800400 -33.792675 -33.796619 0.0039447613 207.60927 3.1217457 + 800500 -33.790563 -33.796556 0.0059928595 315.39885 3.5454787 + 800600 -33.78948 -33.796856 0.0073755395 388.16807 3.8072384 + 800700 -33.792364 -33.797436 0.005071552 266.91126 3.7683439 + 800800 -33.795769 -33.798052 0.0022827795 120.14065 3.5396848 + 800900 -33.795148 -33.798844 0.0036952833 194.47946 3.2196143 + 801000 -33.793168 -33.79995 0.0067819826 356.9297 2.6444691 + 801100 -33.793884 -33.800994 0.0071097144 374.17793 1.8121561 + 801200 -33.796627 -33.801651 0.0050233415 264.37398 0.95576383 + 801300 -33.797872 -33.80196 0.0040882036 215.15851 0.2065976 + 801400 -33.796391 -33.802045 0.0056535177 297.53959 -0.50827084 + 801500 -33.791354 -33.801773 0.010419049 548.34524 -1.4464944 + 801600 -33.796147 -33.801072 0.00492566 259.23309 -2.5296694 + 801700 -33.797858 -33.800473 0.0026147937 137.61426 -3.1626358 + 801800 -33.7958 -33.799972 0.0041712685 219.53014 -3.5764187 + 801900 -33.7927 -33.799423 0.0067235825 353.85615 -3.9610289 + 802000 -33.793077 -33.799045 0.0059685889 314.12151 -4.2302178 + 802100 -33.793911 -33.798977 0.0050662167 266.63046 -4.2569749 + 802200 -33.794175 -33.799227 0.0050514558 265.85361 -4.0292841 + 802300 -33.79344 -33.799738 0.0062981136 331.4641 -3.5456864 + 802400 -33.793517 -33.800343 0.0068262108 359.25738 -2.8687659 + 802500 -33.796331 -33.800813 0.0044818634 235.87647 -2.2073671 + 802600 -33.797666 -33.801119 0.0034535065 181.75497 -1.5923971 + 802700 -33.795664 -33.801333 0.0056695779 298.38483 -0.85590537 + 802800 -33.789454 -33.801326 0.011871886 624.80679 0.32855175 + 802900 -33.795741 -33.800903 0.0051616511 271.65309 1.1767967 + 803000 -33.796703 -33.800417 0.003714281 195.4793 1.7871041 + 803100 -33.795212 -33.799884 0.0046726121 245.91541 2.3570212 + 803200 -33.792488 -33.799217 0.0067295646 354.17098 2.9252345 + 803300 -33.792089 -33.798471 0.0063821316 335.88589 3.3352123 + 803400 -33.793278 -33.797898 0.0046198685 243.13956 3.4995723 + 803500 -33.795007 -33.797647 0.0026400567 138.94383 3.4243545 + 803600 -33.794202 -33.797758 0.0035562965 187.16471 3.1848361 + 803700 -33.789321 -33.79822 0.0088991149 468.35248 2.6752406 + 803800 -33.791235 -33.798682 0.0074465916 391.90747 1.74744 + 803900 -33.794874 -33.798918 0.0040430748 212.78342 0.9252329 + 804000 -33.794555 -33.799068 0.0045135622 237.54475 0.2202184 + 804100 -33.792912 -33.79911 0.0061979627 326.19325 -0.58477619 + 804200 -33.792599 -33.798939 0.0063402255 333.68042 -1.4888901 + 804300 -33.793094 -33.79854 0.0054462524 286.63141 -2.3332659 + 804400 -33.793007 -33.79801 0.0050025419 263.27932 -3.0528839 + 804500 -33.791819 -33.797415 0.0055958102 294.5025 -3.6421976 + 804600 -33.788051 -33.796687 0.008636634 454.53834 -4.1125949 + 804700 -33.786316 -33.795749 0.0094328643 496.44324 -4.5371268 + 804800 -33.792351 -33.795151 0.0027996768 147.34449 -4.8020402 + 804900 -33.792494 -33.795178 0.0026838687 141.24962 -4.6386331 + 805000 -33.789111 -33.795842 0.0067312803 354.26128 -4.0091528 + 805100 -33.788726 -33.796903 0.0081777982 430.39023 -3.0215351 + 805200 -33.791852 -33.797784 0.0059318784 312.18947 -2.063565 + 805300 -33.793228 -33.798454 0.0052261045 275.04522 -1.1391662 + 805400 -33.793328 -33.798961 0.0056332311 296.47193 -0.18378492 + 805500 -33.793383 -33.799293 0.0059104096 311.05958 0.77677249 + 805600 -33.795369 -33.799428 0.0040591726 213.63063 1.5771461 + 805700 -33.796111 -33.799468 0.003357244 176.68876 2.1640972 + 805800 -33.793428 -33.799522 0.006093119 320.67542 2.7396327 + 805900 -33.790419 -33.799501 0.0090818071 477.96741 3.3324459 + 806000 -33.794689 -33.799363 0.0046746642 246.02341 3.5796018 + 806100 -33.796457 -33.799349 0.0028920567 152.20636 3.6021645 + 806200 -33.794489 -33.799532 0.005042463 265.38033 3.4782216 + 806300 -33.788713 -33.799904 0.011190879 588.96596 3.0993687 + 806400 -33.792176 -33.800175 0.0079984662 420.95214 2.350354 + 806500 -33.795508 -33.800286 0.0047779481 251.45915 1.6329399 + 806600 -33.796557 -33.800391 0.0038341534 201.78807 1.0108164 + 806700 -33.794677 -33.800545 0.0058677217 308.81296 0.37908585 + 806800 -33.791208 -33.800645 0.0094370893 496.66559 -0.43276377 + 806900 -33.79592 -33.800576 0.00465649 245.06691 -1.342583 + 807000 -33.797913 -33.800523 0.0026103366 137.37969 -1.8319169 + 807100 -33.796588 -33.800575 0.0039864722 209.80448 -2.1152509 + 807200 -33.794579 -33.800708 0.0061295329 322.59185 -2.3042739 + 807300 -33.794184 -33.800801 0.006617024 348.24807 -2.390457 + 807400 -33.795812 -33.80081 0.0049985525 263.06936 -2.3621469 + 807500 -33.798457 -33.800819 0.0023621572 124.31823 -2.2368224 + 807600 -33.799145 -33.800897 0.0017529839 92.257979 -1.9970178 + 807700 -33.795646 -33.801108 0.0054617522 287.44715 -1.4596777 + 807800 -33.793411 -33.801323 0.0079114882 416.37457 -0.58684791 + 807900 -33.796057 -33.801278 0.00522063 274.7571 0.19005384 + 808000 -33.797582 -33.801126 0.0035441243 186.5241 0.82321543 + 808100 -33.79552 -33.800931 0.0054109516 284.77356 1.4843383 + 808200 -33.78949 -33.800481 0.010991263 578.46039 2.4764198 + 808300 -33.794455 -33.799882 0.0054269731 285.61675 3.116532 + 808400 -33.795547 -33.799455 0.0039083604 205.69352 3.5085321 + 808500 -33.794071 -33.799222 0.0051514582 271.11665 3.7632412 + 808600 -33.791885 -33.799156 0.0072714591 382.69041 3.8461926 + 808700 -33.792781 -33.799176 0.0063950436 336.56544 3.6594832 + 808800 -33.795049 -33.799287 0.0042378812 223.03591 3.2853152 + 808900 -33.798278 -33.799448 0.0011701035 61.581501 2.8815613 + 809000 -33.797612 -33.799739 0.0021264123 111.91118 2.4936907 + 809100 -33.793608 -33.800274 0.0066662406 350.8383 1.7861804 + 809200 -33.792604 -33.80066 0.0080555886 423.95844 0.64878983 + 809300 -33.796305 -33.800609 0.0043039212 226.51153 -0.45922825 + 809400 -33.797407 -33.800382 0.0029750578 156.57464 -1.2501976 + 809500 -33.792767 -33.799989 0.0072221503 380.09533 -1.9694019 + 809600 -33.790559 -33.79907 0.0085107757 447.91454 -3.0795478 + 809700 -33.793954 -33.798101 0.0041473235 218.26993 -3.9886723 + 809800 -33.794103 -33.797479 0.0033760036 177.67606 -4.4664438 + 809900 -33.78901 -33.797186 0.0081760411 430.29775 -4.6284815 + 810000 -33.788679 -33.797184 0.0085047252 447.5961 -4.6544085 + 810100 -33.79167 -33.797487 0.0058166586 306.12555 -4.4729119 + 810200 -33.792736 -33.798104 0.0053685141 282.54011 -4.034447 + 810300 -33.793242 -33.798905 0.0056638139 298.08148 -3.3963134 + 810400 -33.795868 -33.79968 0.0038117911 200.61116 -2.7196615 + 810500 -33.797555 -33.800256 0.002700137 142.1058 -2.1375237 + 810600 -33.795729 -33.800793 0.0050640172 266.51471 -1.4092368 + 810700 -33.790447 -33.801261 0.010814438 569.1542 -0.23874123 + 810800 -33.795566 -33.801206 0.0056401446 296.83578 0.71416496 + 810900 -33.796777 -33.800841 0.0040640187 213.88568 1.4174042 + 811000 -33.795575 -33.800297 0.0047220728 248.51848 2.0953503 + 811100 -33.792622 -33.799448 0.0068268171 359.28929 2.8258192 + 811200 -33.791357 -33.798265 0.0069076367 363.54276 3.4920289 + 811300 -33.792772 -33.797152 0.0043802406 230.52815 3.907219 + 811400 -33.793614 -33.796475 0.0028613662 150.59115 4.0613594 + 811500 -33.790471 -33.796283 0.0058118884 305.8745 4.040878 + 811600 -33.787386 -33.796588 0.0092014206 484.26256 3.7059453 + 811700 -33.791644 -33.797149 0.0055054824 289.74863 3.0602102 + 811800 -33.793418 -33.797873 0.0044556419 234.49646 2.4566304 + 811900 -33.792777 -33.798795 0.0060180003 316.72199 1.784525 + 812000 -33.792771 -33.799767 0.0069960838 368.19765 0.96459365 + 812100 -33.793937 -33.800544 0.0066066728 347.7033 0.10743251 + 812200 -33.795223 -33.800994 0.0057704503 303.69365 -0.69769672 + 812300 -33.796247 -33.80115 0.0049032992 258.05626 -1.4045584 + 812400 -33.796447 -33.801083 0.0046354196 243.958 -1.9994681 + 812500 -33.793573 -33.800754 0.0071808648 377.92251 -2.5130571 + 812600 -33.791622 -33.799993 0.0083714781 440.58342 -3.0847124 + 812700 -33.79531 -33.799093 0.0037836641 199.13087 -3.5739706 + 812800 -33.796288 -33.798505 0.0022168718 116.67198 -3.7441669 + 812900 -33.792163 -33.798162 0.0059991353 315.72914 -3.5885475 + 813000 -33.790428 -33.797956 0.0075275983 396.17079 -3.203874 + 813100 -33.792788 -33.797984 0.005195644 273.44211 -2.7531347 + 813200 -33.794276 -33.798327 0.0040516074 213.23248 -2.2327976 + 813300 -33.793555 -33.798929 0.0053740388 282.83087 -1.5881743 + 813400 -33.788865 -33.799804 0.010938882 575.70362 -0.63486959 + 813500 -33.794642 -33.800534 0.0058915173 310.0653 0.14539417 + 813600 -33.797051 -33.800882 0.0038309647 201.62025 0.64792182 + 813700 -33.795903 -33.80117 0.0052669966 277.19733 1.1242956 + 813800 -33.79307 -33.801339 0.0082687881 435.17894 1.6236933 + 813900 -33.795071 -33.801188 0.0061167653 321.9199 1.9437059 + 814000 -33.79871 -33.800967 0.0022572363 118.79633 2.0068204 + 814100 -33.797922 -33.800799 0.0028764102 151.3829 1.9921302 + 814200 -33.794294 -33.800571 0.0062769665 330.35115 1.8421118 + 814300 -33.793636 -33.800199 0.0065634921 345.43074 1.444587 + 814400 -33.79475 -33.799708 0.0049573635 260.90162 0.92638738 + 814500 -33.795006 -33.799286 0.004280043 225.25484 0.39329745 + 814600 -33.790754 -33.798903 0.008149546 428.90334 -0.18379888 + 814700 -33.7896 -33.798328 0.0087279674 459.34514 -1.0491567 + 814800 -33.794238 -33.797946 0.003708243 195.16152 -1.7995271 + 814900 -33.794336 -33.797899 0.0035633345 187.53512 -2.2104632 + 815000 -33.792028 -33.798159 0.0061313692 322.68849 -2.4856644 + 815100 -33.791534 -33.798652 0.007117813 374.60415 -2.689024 + 815200 -33.793066 -33.79909 0.0060243748 317.05747 -2.7662622 + 815300 -33.794646 -33.799459 0.004812827 253.29479 -2.6885099 + 815400 -33.795486 -33.799789 0.004302989 226.46247 -2.4621747 + 815500 -33.795091 -33.80005 0.0049590812 260.99202 -2.0793393 + 815600 -33.792195 -33.800246 0.0080507324 423.70287 -1.4510625 + 815700 -33.793309 -33.800187 0.0068774953 361.95644 -0.74569367 + 815800 -33.796838 -33.799953 0.0031147208 163.92498 -0.21233342 + 815900 -33.796823 -33.799797 0.002974253 156.53228 0.29510662 + 816000 -33.790802 -33.799603 0.0088011267 463.19545 1.1352952 + 816100 -33.79196 -33.799166 0.0072064329 379.26813 2.0100122 + 816200 -33.794567 -33.798754 0.004186324 220.3225 2.6106517 + 816300 -33.7944 -33.798494 0.0040939095 215.4588 3.061936 + 816400 -33.788239 -33.798361 0.010121787 532.70064 3.5695956 + 816500 -33.789755 -33.798194 0.0084392875 444.15217 3.8570976 + 816600 -33.793234 -33.798087 0.0048531065 255.41466 3.8539905 + 816700 -33.792837 -33.798211 0.0053731003 282.78148 3.7164602 + 816800 -33.791718 -33.798515 0.0067965755 357.69771 3.3800524 + 816900 -33.792806 -33.798882 0.006075205 319.73262 2.8230439 + 817000 -33.796098 -33.799236 0.0031379192 165.14589 2.2253053 + 817100 -33.796389 -33.799615 0.0032260296 169.78306 1.7164311 + 817200 -33.790825 -33.800168 0.0093431035 491.7192 1.1076054 + 817300 -33.791288 -33.800665 0.0093770188 493.50414 0.054162049 + 817400 -33.795198 -33.800733 0.0055346651 291.28449 -0.8248028 + 817500 -33.795836 -33.800662 0.0048266456 254.02205 -1.4611179 + 817600 -33.79482 -33.80052 0.0056998704 299.9791 -1.9669684 + 817700 -33.791176 -33.800243 0.0090672814 477.20293 -2.3726341 + 817800 -33.792656 -33.799787 0.0071303305 375.26293 -2.7782183 + 817900 -33.796892 -33.799492 0.0026003732 136.85532 -2.967721 + 818000 -33.796236 -33.799533 0.0032967824 173.50672 -2.8255183 + 818100 -33.792598 -33.799922 0.0073238796 385.44925 -2.3297863 + 818200 -33.792991 -33.800413 0.0074225969 390.64465 -1.6701581 + 818300 -33.795258 -33.800795 0.0055366553 291.38923 -1.0211622 + 818400 -33.796257 -33.801083 0.0048261954 253.99836 -0.37833798 + 818500 -33.795769 -33.801278 0.0055094561 289.95776 0.29844224 + 818600 -33.791443 -33.801334 0.0098909135 520.54995 1.166638 + 818700 -33.794533 -33.801046 0.0065130711 342.77712 1.9141204 + 818800 -33.797643 -33.800678 0.0030354845 159.75484 2.3308381 + 818900 -33.796687 -33.800381 0.0036940198 194.41297 2.6473958 + 819000 -33.792483 -33.799976 0.0074925979 394.32875 2.9609244 + 819100 -33.792874 -33.799403 0.006528646 343.59682 3.0580432 + 819200 -33.794107 -33.798874 0.0047673884 250.9034 2.9634319 + 819300 -33.793576 -33.798449 0.0048736091 256.4937 2.7315052 + 819400 -33.786654 -33.798033 0.011379246 598.87955 2.3571356 + 819500 -33.789815 -33.797405 0.0075901117 399.46081 1.5007177 + 819600 -33.793304 -33.797016 0.0037127525 195.39885 0.82089859 + 819700 -33.792267 -33.796964 0.0046967241 247.1844 0.22620168 + 819800 -33.789411 -33.797171 0.0077604113 408.42352 -0.47647784 + 819900 -33.790622 -33.797516 0.0068938249 362.81586 -1.303949 + 820000 -33.795199 -33.797878 0.0026792192 141.00492 -1.8865436 + 820100 -33.794889 -33.798374 0.0034851359 183.41959 -2.1258558 + 820200 -33.792625 -33.799146 0.0065210077 343.19482 -2.2180165 + 820300 -33.792617 -33.799907 0.007290414 383.68799 -2.233063 + 820400 -33.79496 -33.800345 0.0053851926 283.41788 -2.1768434 + 820500 -33.795829 -33.800536 0.0047066369 247.7061 -1.9912763 + 820600 -33.795367 -33.800534 0.0051669916 271.93416 -1.6694484 + 820700 -33.794935 -33.800325 0.0053901298 283.67773 -1.2421306 + 820800 -33.794168 -33.799926 0.0057577378 303.02461 -0.71299207 + 820900 -33.792731 -33.799317 0.0065859174 346.61096 -0.076665863 + 821000 -33.79083 -33.798508 0.0076774976 404.05985 0.66421531 + 821100 -33.791692 -33.797642 0.0059499687 313.14155 1.3633499 + 821200 -33.793776 -33.797079 0.0033033841 173.85416 1.8611239 + 821300 -33.793036 -33.796985 0.0039493163 207.84899 2.2566127 + 821400 -33.787345 -33.797364 0.010019241 527.30373 2.7413988 + 821500 -33.790645 -33.797965 0.0073204958 385.27117 2.9451904 + 821600 -33.793414 -33.798566 0.0051527778 271.1861 2.9331855 + 821700 -33.793437 -33.799247 0.0058099441 305.77218 2.791217 + 821800 -33.793681 -33.799944 0.0062631702 329.62506 2.4701796 + 821900 -33.796414 -33.800503 0.0040881377 215.15504 1.9912756 + 822000 -33.798696 -33.800834 0.0021382066 112.53191 1.5550286 + 822100 -33.797454 -33.801138 0.003683958 193.88343 1.1170572 + 822200 -33.792781 -33.801443 0.0086619687 455.87169 0.4049467 + 822300 -33.794792 -33.801398 0.0066059101 347.66315 -0.57257879 + 822400 -33.796832 -33.801111 0.0042786094 225.1794 -1.385742 + 822500 -33.796455 -33.800761 0.0043063751 226.64068 -2.0328903 + 822600 -33.789766 -33.80025 0.01048398 551.76253 -2.67041 + 822700 -33.791868 -33.799501 0.0076336417 401.75175 -3.5579269 + 822800 -33.794497 -33.799008 0.0045110246 237.4112 -4.0898832 + 822900 -33.793938 -33.798897 0.0049586886 260.97136 -4.2874297 + 823000 -33.791975 -33.799178 0.0072033211 379.10437 -4.2065896 + 823100 -33.792718 -33.799721 0.0070023192 368.52581 -3.9186706 + 823200 -33.797324 -33.800239 0.0029145198 153.38858 -3.6126127 + 823300 -33.797038 -33.800778 0.0037392833 196.79514 -3.1159002 + 823400 -33.793247 -33.801443 0.008196132 431.35512 -2.2386378 + 823500 -33.794242 -33.801887 0.0076447653 402.33718 -1.1798062 + 823600 -33.799506 -33.801904 0.0023974558 126.17596 -0.52258493 + 823700 -33.79895 -33.801798 0.0028477255 149.87325 0.095503489 + 823800 -33.796051 -33.801514 0.0054627303 287.49862 0.93362499 + 823900 -33.793722 -33.800835 0.0071124099 374.31979 1.9691162 + 824000 -33.794514 -33.799846 0.0053316908 280.60213 2.8900515 + 824100 -33.795388 -33.798894 0.0035062608 184.53138 3.5776195 + 824200 -33.792589 -33.798019 0.0054292855 285.73845 4.1958178 + 824300 -33.788634 -33.796988 0.0083546616 439.69839 4.8449128 + 824400 -33.790677 -33.796187 0.0055098696 289.97952 5.1566903 + 824500 -33.792622 -33.795983 0.0033611546 176.89457 5.1515737 + 824600 -33.792076 -33.796393 0.0043175911 227.23097 4.91508 + 824700 -33.785711 -33.797499 0.011787799 620.38134 4.3820355 + 824800 -33.791884 -33.798732 0.0068480508 360.4068 3.3402329 + 824900 -33.794621 -33.799549 0.0049274211 259.32578 2.5279975 + 825000 -33.794587 -33.800265 0.0056777677 298.81585 1.7209438 + 825100 -33.794696 -33.800828 0.0061328239 322.76505 0.8253799 + 825200 -33.797009 -33.801125 0.0041163158 216.63803 -0.058552086 + 825300 -33.798511 -33.801207 0.0026958844 141.88199 -0.71171751 + 825400 -33.796535 -33.801197 0.0046617769 245.34516 -1.2424712 + 825500 -33.791812 -33.800922 0.009110134 479.45822 -1.9317598 + 825600 -33.79456 -33.800261 0.0057015958 300.0699 -2.6961885 + 825700 -33.795878 -33.799594 0.0037153248 195.53423 -3.1558195 + 825800 -33.79412 -33.798993 0.0048729396 256.45846 -3.3580863 + 825900 -33.788206 -33.798247 0.010040954 528.44644 -3.3119639 + 826000 -33.790687 -33.797518 0.006830773 359.49749 -3.2162666 + 826100 -33.792663 -33.797176 0.004512974 237.5138 -2.9241053 + 826200 -33.792461 -33.797326 0.0048651218 256.04702 -2.4012581 + 826300 -33.789201 -33.797944 0.0087433505 460.15474 -1.5343182 + 826400 -33.791211 -33.798734 0.0075226264 395.90912 -0.54021177 + 826500 -33.795759 -33.7993 0.003540875 186.35309 0.1065193 + 826600 -33.795101 -33.799867 0.0047656817 250.81358 0.74127381 + 826700 -33.792638 -33.800486 0.0078483035 413.04921 1.4815055 + 826800 -33.794898 -33.800911 0.0060134235 316.48112 2.0978051 + 826900 -33.798695 -33.801057 0.0023621509 124.3179 2.3643965 + 827000 -33.797714 -33.801199 0.0034845923 183.39099 2.5412904 + 827100 -33.794129 -33.801351 0.0072217669 380.07515 2.658061 + 827200 -33.794408 -33.801299 0.0068910279 362.66865 2.557047 + 827300 -33.796163 -33.801066 0.0049035621 258.0701 2.3076712 + 827400 -33.796225 -33.800772 0.0045474348 239.32744 1.9831552 + 827500 -33.789567 -33.80035 0.010782449 567.4707 1.5940589 + 827600 -33.78922 -33.799381 0.010161258 534.77793 0.70437673 + 827700 -33.794241 -33.798542 0.0043015417 226.38631 -0.06590276 + 827800 -33.794089 -33.798041 0.0039518175 207.98063 -0.61378742 + 827900 -33.790469 -33.797823 0.0073546777 387.07012 -1.1401193 + 828000 -33.789373 -33.797827 0.0084539224 444.92239 -1.7758884 + 828100 -33.794369 -33.798008 0.003638564 191.49438 -2.286749 + 828200 -33.795221 -33.798435 0.003214064 169.15332 -2.4251739 + 828300 -33.793698 -33.799174 0.0054767026 288.23397 -2.3293766 + 828400 -33.792327 -33.800055 0.0077281703 406.72671 -2.0495561 + 828500 -33.795438 -33.800699 0.0052614367 276.90472 -1.742615 + 828600 -33.797839 -33.801015 0.0031763207 167.16692 -1.4271363 + 828700 -33.796808 -33.801218 0.0044094108 232.06336 -0.98233253 + 828800 -33.787803 -33.801228 0.013424594 706.52439 -0.043335291 + 828900 -33.794052 -33.800699 0.0066467088 349.81036 0.67495285 + 829000 -33.7962 -33.800073 0.0038736018 203.86421 1.2307353 + 829100 -33.795233 -33.799445 0.004211696 221.6578 1.7787172 + 829200 -33.791021 -33.798625 0.0076035375 400.1674 2.4898614 + 829300 -33.791108 -33.797635 0.0065271506 343.51811 3.1354501 + 829400 -33.792177 -33.796855 0.0046788862 246.24561 3.566865 + 829500 -33.791634 -33.796435 0.0048005584 252.64911 3.8425099 + 829600 -33.790305 -33.796405 0.0061003419 321.05555 3.9483116 + 829700 -33.790075 -33.796742 0.006666717 350.86337 3.8232363 + 829800 -33.790869 -33.79736 0.0064916705 341.65083 3.4858325 + 829900 -33.791887 -33.798112 0.0062247959 327.60546 2.9870941 + 830000 -33.793218 -33.798864 0.0056459449 297.14104 2.3790362 + 830100 -33.795091 -33.79952 0.0044289267 233.09046 1.7248052 + 830200 -33.798008 -33.799972 0.0019638936 103.35797 1.1550839 + 830300 -33.797844 -33.800348 0.0025031091 131.7364 0.72505229 + 830400 -33.793909 -33.800816 0.0069076522 363.54357 0.16873458 + 830500 -33.793655 -33.801084 0.0074287982 390.97103 -0.66083037 + 830600 -33.795993 -33.800975 0.0049819107 262.19352 -1.4290411 + 830700 -33.796734 -33.800685 0.0039509682 207.93593 -1.9991061 + 830800 -33.792588 -33.800244 0.0076553207 402.8927 -2.4306248 + 830900 -33.789491 -33.799346 0.0098552223 518.67156 -2.998749 + 831000 -33.794071 -33.798485 0.0044142514 232.31811 -3.4752945 + 831100 -33.79423 -33.798023 0.0037934335 199.64502 -3.5983348 + 831200 -33.792228 -33.797969 0.0057405947 302.12238 -3.4435796 + 831300 -33.791001 -33.798311 0.0073097953 384.70801 -3.0429418 + 831400 -33.792288 -33.798895 0.0066068553 347.7129 -2.5148548 + 831500 -33.793396 -33.799575 0.0061787525 325.18223 -1.8950997 + 831600 -33.794357 -33.800227 0.0058694965 308.90636 -1.2267797 + 831700 -33.795556 -33.800765 0.0052091981 274.15545 -0.57180351 + 831800 -33.798205 -33.801124 0.0029188387 153.61588 -0.047844115 + 831900 -33.799456 -33.801339 0.0018830095 99.101109 0.30242829 + 832000 -33.797149 -33.801566 0.0044168201 232.4533 0.70408724 + 832100 -33.793739 -33.801703 0.0079642722 419.15254 1.2483102 + 832200 -33.795696 -33.801496 0.005800625 305.28172 1.6154907 + 832300 -33.797247 -33.801116 0.0038696762 203.65761 1.8269475 + 832400 -33.795578 -33.800658 0.0050797036 267.34027 1.973136 + 832500 -33.789121 -33.799815 0.010693964 562.81381 2.1090111 + 832600 -33.793496 -33.798787 0.0052906548 278.44244 1.9162655 + 832700 -33.794748 -33.798109 0.003360458 176.85791 1.7013178 + 832800 -33.792867 -33.797783 0.0049154099 258.69364 1.4221845 + 832900 -33.790467 -33.797765 0.0072974779 384.05975 0.96197022 + 833000 -33.791472 -33.798022 0.006549156 344.67624 0.368937 + 833100 -33.793143 -33.7985 0.0053569343 281.93067 -0.18084398 + 833200 -33.794418 -33.799088 0.0046699905 245.77743 -0.62865539 + 833300 -33.795679 -33.79972 0.0040410355 212.6761 -0.97842884 + 833400 -33.796632 -33.800307 0.0036747315 193.39784 -1.2163742 + 833500 -33.795296 -33.800848 0.0055519265 292.19294 -1.3332403 + 833600 -33.791581 -33.801285 0.0097044628 510.73722 -1.3624072 + 833700 -33.796261 -33.801291 0.0050298542 264.71674 -1.4957929 + 833800 -33.798448 -33.801095 0.0026472823 139.3241 -1.5018438 + 833900 -33.797239 -33.800841 0.0036023207 189.58693 -1.3522832 + 834000 -33.795284 -33.800416 0.0051316819 270.07584 -1.0610284 + 834100 -33.794224 -33.799796 0.0055714168 293.21869 -0.67131609 + 834200 -33.793209 -33.799038 0.0058289258 306.77116 -0.18649446 + 834300 -33.790513 -33.798144 0.0076312401 401.62536 0.44264782 + 834400 -33.785812 -33.796938 0.011126537 585.57971 1.3180668 + 834500 -33.792033 -33.795867 0.0038344455 201.80345 1.8877692 + 834600 -33.792864 -33.795519 0.0026547657 139.71795 2.2827797 + 834700 -33.790255 -33.795776 0.0055210757 290.56929 2.6966544 + 834800 -33.788401 -33.796547 0.008145323 428.68109 3.0707447 + 834900 -33.790742 -33.797445 0.00670349 352.7987 3.2100407 + 835000 -33.792623 -33.798302 0.0056793702 298.90019 3.1789847 + 835100 -33.793367 -33.799099 0.0057313751 301.63716 3.0176274 + 835200 -33.794015 -33.799805 0.005790167 304.73132 2.7226494 + 835300 -33.796758 -33.800317 0.0035589978 187.30688 2.2976897 + 835400 -33.798841 -33.800599 0.0017587973 92.563933 1.9401693 + 835500 -33.797324 -33.8009 0.0035760699 188.20537 1.5733011 + 835600 -33.793651 -33.801216 0.0075649461 398.13637 0.96200159 + 835700 -33.794747 -33.801216 0.0064688594 340.4503 0.13552615 + 835800 -33.796963 -33.800979 0.0040155492 211.33477 -0.57788693 + 835900 -33.797061 -33.800703 0.0036411993 191.63307 -1.1107896 + 836000 -33.790786 -33.800325 0.0095398452 502.07354 -1.5919259 + 836100 -33.792367 -33.799706 0.0073394786 386.27021 -2.2707791 + 836200 -33.795665 -33.799247 0.0035824136 188.53923 -2.6802594 + 836300 -33.795009 -33.799114 0.0041040572 215.99287 -2.7731662 + 836400 -33.7896 -33.799228 0.0096272593 506.67407 -2.5665609 + 836500 -33.791993 -33.799323 0.007329962 385.76936 -2.3023526 + 836600 -33.796694 -33.799407 0.0027133382 142.80057 -2.1052654 + 836700 -33.794847 -33.799634 0.0047872123 251.94671 -1.6551273 + 836800 -33.790829 -33.799923 0.0090934139 478.57826 -0.88126896 + 836900 -33.794076 -33.799981 0.0059050324 310.77659 -0.16477654 + 837000 -33.796777 -33.799877 0.0031000582 163.1533 0.35019856 + 837100 -33.795861 -33.799799 0.003938211 207.26453 0.87630969 + 837200 -33.791866 -33.799659 0.007792544 410.11464 1.6005878 + 837300 -33.792739 -33.799312 0.0065733422 345.94914 2.2542914 + 837400 -33.794351 -33.798963 0.0046122489 242.73855 2.7185831 + 837500 -33.794156 -33.798729 0.0045725977 240.65174 3.0465911 + 837600 -33.790186 -33.798625 0.0084394504 444.16075 3.333056 + 837700 -33.790197 -33.79858 0.008382126 441.14382 3.4154173 + 837800 -33.795556 -33.79861 0.0030544127 160.75101 3.2309666 + 837900 -33.795093 -33.798915 0.0038225185 201.17574 3.0142853 + 838000 -33.792647 -33.79952 0.0068722683 361.68135 2.6238799 + 838100 -33.792759 -33.800167 0.0074076558 389.85832 1.9885022 + 838200 -33.796987 -33.80059 0.0036026588 189.60472 1.309592 + 838300 -33.798517 -33.800842 0.0023252923 122.37806 0.8421453 + 838400 -33.79691 -33.801092 0.0041819439 220.09198 0.40072552 + 838500 -33.795572 -33.801276 0.0057037912 300.18544 -0.18219422 + 838600 -33.795234 -33.801199 0.0059646543 313.91444 -0.80382416 + 838700 -33.795394 -33.800851 0.0054571677 287.20587 -1.3868148 + 838800 -33.795106 -33.800314 0.0052086833 274.12836 -1.8725762 + 838900 -33.792741 -33.799573 0.0068322822 359.57692 -2.2487607 + 839000 -33.790021 -33.798543 0.0085218112 448.49532 -2.5631544 + 839100 -33.793134 -33.797537 0.0044034906 231.75178 -2.8252365 + 839200 -33.795193 -33.797121 0.0019282986 101.48464 -2.8431764 + 839300 -33.79316 -33.797328 0.0041677416 219.34452 -2.5602713 + 839400 -33.788528 -33.798173 0.0096443606 507.5741 -1.8480893 + 839500 -33.792553 -33.799028 0.006474648 340.75495 -1.2143893 + 839600 -33.795015 -33.799689 0.0046737944 245.97763 -0.67497973 + 839700 -33.795145 -33.800262 0.0051175851 269.33394 -0.13571653 + 839800 -33.793708 -33.800777 0.0070690684 372.03877 0.44801994 + 839900 -33.792693 -33.801097 0.0084043259 442.31217 1.0505013 + 840000 -33.796953 -33.801085 0.0041323415 217.48145 1.3952257 + 840100 -33.797959 -33.800993 0.0030335146 159.65117 1.602893 + 840200 -33.79494 -33.800856 0.0059158026 311.34341 1.7903025 + 840300 -33.791745 -33.800465 0.008719901 458.92061 1.8950367 + 840400 -33.794358 -33.799896 0.0055382528 291.4733 1.7659118 + 840500 -33.795059 -33.799349 0.0042897706 225.7668 1.5711814 + 840600 -33.793669 -33.798871 0.0052027092 273.81395 1.2941368 + 840700 -33.789715 -33.798402 0.0086871019 457.19442 0.8771548 + 840800 -33.785898 -33.797763 0.011865339 624.46223 0.23034519 + 840900 -33.793217 -33.797272 0.0040542161 213.36978 -0.55100789 + 841000 -33.794235 -33.79727 0.0030343986 159.69769 -0.96564086 + 841100 -33.79117 -33.797768 0.0065983854 347.26714 -1.267762 + 841200 -33.788973 -33.798753 0.0097798449 514.70451 -1.6154733 + 841300 -33.794673 -33.79958 0.0049074508 258.27476 -1.9665957 + 841400 -33.795219 -33.800272 0.0050521755 265.89149 -2.0455245 + 841500 -33.794522 -33.800978 0.0064559621 339.77153 -1.9786284 + 841600 -33.795543 -33.801506 0.0059629508 313.82478 -1.8382878 + 841700 -33.798849 -33.801765 0.0029164035 153.48771 -1.6920002 + 841800 -33.799749 -33.801877 0.0021281353 112.00186 -1.4837828 + 841900 -33.795671 -33.801928 0.0062564307 329.27037 -1.0383699 + 842000 -33.793592 -33.801691 0.0080986054 426.22238 -0.36235401 + 842100 -33.796578 -33.801131 0.0045537879 239.6618 0.16641709 + 842200 -33.797301 -33.800537 0.0032362113 170.31892 0.63370412 + 842300 -33.793364 -33.799831 0.0064666029 340.33154 1.2547708 + 842400 -33.791153 -33.798706 0.0075536578 397.54227 2.0373563 + 842500 -33.793025 -33.797659 0.0046342518 243.89654 2.6173874 + 842600 -33.792824 -33.796984 0.0041603781 218.95699 3.0626568 + 842700 -33.7859 -33.796569 0.010668729 561.48568 3.5937014 + 842800 -33.787875 -33.796376 0.0085013141 447.41658 3.8869792 + 842900 -33.79091 -33.796535 0.0056249693 296.03712 3.9019219 + 843000 -33.791484 -33.797054 0.0055704891 293.16987 3.7527786 + 843100 -33.792009 -33.797863 0.0058536182 308.0707 3.4158137 + 843200 -33.794579 -33.798697 0.0041184105 216.74827 2.9174727 + 843300 -33.796396 -33.799388 0.0029919673 157.46457 2.430303 + 843400 -33.795091 -33.800089 0.004997746 263.02691 1.910032 + 843500 -33.787339 -33.80086 0.013520677 711.58119 1.1307315 + 843600 -33.79535 -33.801099 0.0057495339 302.59284 -0.037200575 + 843700 -33.796678 -33.800939 0.0042611325 224.2596 -0.76827718 + 843800 -33.795401 -33.800556 0.0051552838 271.31799 -1.4369772 + 843900 -33.792341 -33.799846 0.0075051643 394.9901 -2.1713077 + 844000 -33.79195 -33.798745 0.0067945887 357.59314 -2.9907466 + 844100 -33.7949 -33.797749 0.0028496394 149.97398 -3.6317642 + 844200 -33.795688 -33.797339 0.0016513699 86.910126 -3.8873597 + 844300 -33.792661 -33.797499 0.004837673 254.60241 -3.8175604 + 844400 -33.790086 -33.79829 0.0082040821 431.77352 -3.4547685 + 844500 -33.79309 -33.79929 0.0061999827 326.29956 -2.9949115 + 844600 -33.795854 -33.800141 0.0042870434 225.62327 -2.5030464 + 844700 -33.79591 -33.800949 0.0050388069 265.18791 -1.8895111 + 844800 -33.793407 -33.801704 0.0082961739 436.62023 -1.0638501 + 844900 -33.792679 -33.802172 0.0094928571 499.6006 -0.053530676 + 845000 -33.79835 -33.802142 0.0037924333 199.59238 0.58793331 + 845100 -33.798639 -33.801918 0.0032784499 172.54189 1.1158811 + 845200 -33.795275 -33.80148 0.0062057565 326.60343 1.749413 + 845300 -33.793016 -33.800599 0.0075830425 399.08876 2.4710961 + 845400 -33.794555 -33.799512 0.0049571971 260.89286 2.9785154 + 845500 -33.794586 -33.798528 0.0039416395 207.44497 3.3221961 + 845600 -33.793452 -33.797647 0.0041948768 220.77262 3.5374684 + 845700 -33.792294 -33.796954 0.0046607964 245.29356 3.5814759 + 845800 -33.790529 -33.796596 0.0060676008 319.33242 3.4332376 + 845900 -33.789215 -33.796611 0.0073959355 389.24149 3.0549261 + 846000 -33.792233 -33.796992 0.0047592162 250.4733 2.463975 + 846100 -33.794973 -33.797569 0.0025967261 136.66338 1.9720651 + 846200 -33.793618 -33.79846 0.0048423555 254.84885 1.5225108 + 846300 -33.789461 -33.799841 0.010379692 546.27394 0.90380563 + 846400 -33.796484 -33.801003 0.0045186435 237.81218 0.07463417 + 846500 -33.797831 -33.801622 0.0037911183 199.52317 -0.3579739 + 846600 -33.795805 -33.802192 0.006386824 336.13285 -0.71076849 + 846700 -33.794499 -33.80257 0.0080710803 424.77376 -1.0993199 + 846800 -33.798489 -33.802579 0.0040905895 215.28408 -1.486165 + 846900 -33.800022 -33.802435 0.0024131085 126.99975 -1.6525558 + 847000 -33.797091 -33.802195 0.005104895 268.66607 -1.6215799 + 847100 -33.793516 -33.80159 0.0080731326 424.88177 -1.4686968 + 847200 -33.795918 -33.800775 0.0048565467 255.59572 -1.3456976 + 847300 -33.796637 -33.800049 0.0034120353 179.57238 -1.1250419 + 847400 -33.793203 -33.799349 0.006145253 323.41918 -0.68374574 + 847500 -33.79027 -33.798428 0.0081580743 429.35217 0.0031915011 + 847600 -33.792419 -33.797618 0.005199209 273.62973 0.60107028 + 847700 -33.792842 -33.797176 0.0043347669 228.13492 1.1481262 + 847800 -33.789501 -33.797036 0.0075353794 396.5803 1.7804545 + 847900 -33.781819 -33.797019 0.015200216 799.97383 2.7232351 + 848000 -33.791232 -33.797003 0.0057713147 303.73914 3.0646351 + 848100 -33.792193 -33.797146 0.0049526807 260.65517 3.2851658 + 848200 -33.791815 -33.797517 0.0057024256 300.11357 3.3400778 + 848300 -33.791202 -33.798026 0.0068230628 359.09171 3.2059993 + 848400 -33.79328 -33.798488 0.0052081353 274.09951 2.8530237 + 848500 -33.795665 -33.798858 0.0031932426 168.05751 2.4285191 + 848600 -33.795322 -33.799193 0.0038702299 203.68675 1.9746026 + 848700 -33.788507 -33.799548 0.011041064 581.08134 1.320469 + 848800 -33.792183 -33.799574 0.0073909351 388.97832 0.20885547 + 848900 -33.794916 -33.799298 0.0043813253 230.58524 -0.63184569 + 849000 -33.794426 -33.798979 0.0045537639 239.66053 -1.3315839 + 849100 -33.791937 -33.798601 0.0066639743 350.71902 -2.0399492 + 849200 -33.789793 -33.798102 0.0083094996 437.32155 -2.8099873 + 849300 -33.793748 -33.797722 0.0039733104 209.11178 -3.5049974 + 849400 -33.795386 -33.797741 0.0023550994 123.94678 -3.7622991 + 849500 -33.792874 -33.798235 0.0053606792 282.12777 -3.6769105 + 849600 -33.789321 -33.799243 0.0099224713 522.21082 -3.2866403 + 849700 -33.793767 -33.800102 0.0063354656 333.4299 -2.9043754 + 849800 -33.795184 -33.800691 0.0055071945 289.83873 -2.4168708 + 849900 -33.795353 -33.801113 0.0057597902 303.13262 -1.8118353 + 850000 -33.795781 -33.801302 0.0055208832 290.55916 -1.1412132 + 850100 -33.797185 -33.801264 0.0040785956 214.65285 -0.49711719 + 850200 -33.797797 -33.801078 0.0032809618 172.67409 0.081677342 + 850300 -33.794783 -33.800727 0.0059436284 312.80786 0.79880213 + 850400 -33.791671 -33.800003 0.0083318029 438.49536 1.7392668 + 850500 -33.794298 -33.799084 0.0047859734 251.88151 2.4621736 + 850600 -33.795978 -33.798418 0.0024408288 128.45864 2.9165493 + 850700 -33.794524 -33.798083 0.0035587072 187.29158 3.2419163 + 850800 -33.789508 -33.797968 0.00845956 445.2191 3.5748763 + 850900 -33.791236 -33.79816 0.0069243961 364.42479 3.6137491 + 851000 -33.794542 -33.798601 0.0040593725 213.64115 3.4276944 + 851100 -33.794774 -33.799257 0.0044833796 235.95627 3.1322637 + 851200 -33.790659 -33.800245 0.009586612 504.53484 2.6819849 + 851300 -33.791099 -33.801401 0.010301819 542.17553 1.8053641 + 851400 -33.797619 -33.801965 0.0043463321 228.74358 1.0119833 + 851500 -33.797621 -33.802286 0.0046648457 245.50667 0.40923693 + 851600 -33.795477 -33.802406 0.0069287336 364.65307 -0.2615446 + 851700 -33.794126 -33.802185 0.0080594681 424.16262 -1.0869761 + 851800 -33.798272 -33.801678 0.0034061158 179.26084 -1.8814845 + 851900 -33.799384 -33.80123 0.0018454306 97.123367 -2.319772 + 852000 -33.797044 -33.800762 0.0037187393 195.71393 -2.6174015 + 852100 -33.794817 -33.800086 0.0052691296 277.30959 -2.9328952 + 852200 -33.793243 -33.799337 0.0060947075 320.75902 -3.1540047 + 852300 -33.791851 -33.798652 0.0068009742 357.92921 -3.2151059 + 852400 -33.791947 -33.798091 0.0061445623 323.38283 -3.1134975 + 852500 -33.793637 -33.797845 0.0042075397 221.43906 -2.8722843 + 852600 -33.794162 -33.797911 0.0037485042 197.28044 -2.4811697 + 852700 -33.790964 -33.798192 0.0072289426 380.4528 -1.8108609 + 852800 -33.788725 -33.798542 0.0098167359 516.64606 -0.84007634 + 852900 -33.794755 -33.798601 0.0038464758 202.43659 -0.18327478 + 853000 -33.79495 -33.798558 0.0036088216 189.92906 0.38238941 + 853100 -33.793004 -33.798449 0.0054448175 286.55589 1.0328923 + 853200 -33.791133 -33.798092 0.0069588624 366.23872 1.748827 + 853300 -33.791938 -33.797509 0.0055710365 293.19868 2.3423404 + 853400 -33.794809 -33.796992 0.0021827337 114.87533 2.6711493 + 853500 -33.795361 -33.796772 0.0014110701 74.263359 2.7977135 + 853600 -33.792784 -33.796847 0.0040635246 213.85968 2.8222976 + 853700 -33.79001 -33.797219 0.0072085847 379.38138 2.6527747 + 853800 -33.790869 -33.797705 0.0068361419 359.78005 2.2446239 + 853900 -33.794083 -33.798217 0.0041331898 217.52609 1.7595446 + 854000 -33.795186 -33.798716 0.0035292209 185.73975 1.3317208 + 854100 -33.792082 -33.799345 0.0072624334 382.21539 0.89840326 + 854200 -33.788394 -33.800159 0.011764926 619.17757 0.19536683 + 854300 -33.795653 -33.80054 0.0048867602 257.18583 -0.56113914 + 854400 -33.796235 -33.80071 0.0044752162 235.52664 -1.0022966 + 854500 -33.794632 -33.800781 0.0061492737 323.63079 -1.3578738 + 854600 -33.791801 -33.800638 0.0088367124 465.06829 -1.681094 + 854700 -33.794941 -33.800262 0.0053205428 280.01542 -2.0393219 + 854800 -33.797601 -33.799941 0.0023407334 123.19071 -2.1907612 + 854900 -33.79631 -33.799722 0.0034115373 179.54616 -2.1093616 + 855000 -33.792582 -33.799516 0.0069343732 364.94988 -1.7814355 + 855100 -33.792853 -33.799271 0.0064181961 337.78394 -1.3692419 + 855200 -33.794312 -33.799076 0.0047645354 250.75325 -0.92553761 + 855300 -33.794747 -33.799013 0.0042663134 224.53227 -0.44133258 + 855400 -33.791467 -33.799035 0.0075674355 398.26738 0.2141589 + 855500 -33.789626 -33.799067 0.0094406798 496.85456 1.0362546 + 855600 -33.795033 -33.799056 0.0040235739 211.75711 1.5269639 + 855700 -33.795455 -33.799113 0.0036576516 192.49894 1.8894866 + 855800 -33.793324 -33.799319 0.0059951814 315.52105 2.2312417 + 855900 -33.792168 -33.799591 0.007423313 390.68234 2.4802226 + 856000 -33.793504 -33.799831 0.0063275396 333.01277 2.5384003 + 856100 -33.794353 -33.800065 0.005712147 300.6252 2.4582054 + 856200 -33.794954 -33.800265 0.0053104797 279.48581 2.2489052 + 856300 -33.795186 -33.800466 0.0052807684 277.92213 1.9260793 + 856400 -33.794594 -33.80065 0.0060559034 318.7168 1.5003095 + 856500 -33.793897 -33.800753 0.0068560654 360.8286 0.95356435 + 856600 -33.795494 -33.800772 0.0052781123 277.78234 0.32377733 + 856700 -33.797195 -33.80073 0.0035349199 186.03968 -0.22457801 + 856800 -33.796337 -33.800701 0.0043632449 229.63369 -0.67046215 + 856900 -33.790464 -33.800641 0.010177867 535.65204 -1.1561001 + 857000 -33.79376 -33.800391 0.0066308553 348.976 -1.8384409 + 857100 -33.79622 -33.800154 0.0039340849 207.04738 -2.2438063 + 857200 -33.795471 -33.799982 0.0045103827 237.37742 -2.4265747 + 857300 -33.793786 -33.799813 0.006026985 317.19484 -2.459165 + 857400 -33.792961 -33.799606 0.0066451559 349.72863 -2.3576727 + 857500 -33.794766 -33.799341 0.0045751715 240.7872 -2.1784249 + 857600 -33.797325 -33.799163 0.0018377106 96.717068 -1.974432 + 857700 -33.796538 -33.799111 0.0025725596 135.39152 -1.6287693 + 857800 -33.792562 -33.799074 0.0065118962 342.71529 -0.93411305 + 857900 -33.792015 -33.798855 0.0068399659 359.98131 -0.09906061 + 858000 -33.793804 -33.79847 0.0046657961 245.55669 0.62716645 + 858100 -33.794633 -33.798076 0.0034430736 181.20589 1.223511 + 858200 -33.791135 -33.797668 0.0065324831 343.79876 1.8879669 + 858300 -33.787836 -33.79702 0.0091834912 483.31895 2.7068644 + 858400 -33.791913 -33.796398 0.0044843444 236.00705 3.1739809 + 858500 -33.792877 -33.796124 0.0032473282 170.90399 3.403375 + 858600 -33.788161 -33.796192 0.0080310199 422.66541 3.5398543 + 858700 -33.785308 -33.796519 0.011210335 589.98996 3.4094507 + 858800 -33.790852 -33.796867 0.0060151941 316.5743 2.9741892 + 858900 -33.79279 -33.797257 0.0044671875 235.10409 2.5226011 + 859000 -33.79263 -33.797744 0.0051146713 269.18059 1.9950629 + 859100 -33.790198 -33.798337 0.0081396793 428.38406 1.3112465 + 859200 -33.791205 -33.798786 0.007581361 399.00027 0.37029783 + 859300 -33.795695 -33.79896 0.0032654321 171.85678 -0.41903479 + 859400 -33.795538 -33.799054 0.0035162378 185.05646 -0.96996841 + 859500 -33.79173 -33.799082 0.007351948 386.92646 -1.557913 + 859600 -33.791062 -33.798902 0.0078404782 412.63737 -2.3205689 + 859700 -33.792942 -33.798516 0.0055740496 293.35726 -2.9640682 + 859800 -33.793259 -33.798114 0.0048552676 255.5284 -3.3832987 + 859900 -33.791901 -33.797778 0.0058772128 309.31247 -3.5966635 + 860000 -33.787325 -33.797435 0.010110329 532.09759 -3.5833392 + 860100 -33.790258 -33.797091 0.0068329543 359.61229 -3.5297428 + 860200 -33.79406 -33.797013 0.0029532771 155.42834 -3.3749859 + 860300 -33.79283 -33.79725 0.0044205986 232.65216 -2.9532076 + 860400 -33.789128 -33.797806 0.0086778774 456.70895 -2.1769345 + 860500 -33.791733 -33.798342 0.0066096261 347.85872 -1.3669383 + 860600 -33.795402 -33.798662 0.0032607019 171.60783 -0.79312146 + 860700 -33.794993 -33.798943 0.0039498957 207.87949 -0.22903824 + 860800 -33.793034 -33.799204 0.006169866 324.71455 0.43061081 + 860900 -33.791612 -33.799316 0.0077038636 405.44747 1.1393763 + 861000 -33.794548 -33.799202 0.0046542888 244.95107 1.6378682 + 861100 -33.796626 -33.799061 0.0024352269 128.16382 1.9025713 + 861200 -33.795085 -33.799007 0.0039220308 206.41298 2.0784809 + 861300 -33.789699 -33.79896 0.0092605382 487.37387 2.2339744 + 861400 -33.792978 -33.798848 0.0058701948 308.94312 2.0852345 + 861500 -33.795059 -33.798801 0.003742236 196.95054 1.8595689 + 861600 -33.793921 -33.798912 0.0049908432 262.66363 1.5826019 + 861700 -33.785896 -33.799194 0.013298002 699.86197 1.1695569 + 861800 -33.792978 -33.799391 0.0064128156 337.50076 0.35503487 + 861900 -33.794559 -33.799523 0.0049638432 261.24264 -0.17596122 + 862000 -33.793995 -33.799703 0.0057086654 300.44197 -0.65170514 + 862100 -33.793087 -33.799878 0.0067916572 357.43886 -1.1225696 + 862200 -33.794476 -33.799988 0.0055125856 290.12246 -1.5809687 + 862300 -33.796925 -33.800034 0.0031095134 163.65092 -1.9033132 + 862400 -33.79678 -33.800097 0.0033166538 174.55253 -2.0342377 + 862500 -33.790967 -33.800175 0.0092081215 484.61522 -1.9694116 + 862600 -33.792273 -33.800068 0.0077942796 410.20598 -1.9592001 + 862700 -33.795275 -33.799838 0.0045625196 240.12134 -1.9027839 + 862800 -33.795202 -33.799646 0.0044435745 233.86136 -1.6980688 + 862900 -33.793469 -33.799498 0.0060286968 317.28493 -1.3369784 + 863000 -33.792017 -33.799388 0.0073713065 387.94529 -0.8420054 + 863100 -33.794801 -33.799352 0.0045508212 239.50566 -0.39000563 + 863200 -33.796927 -33.799458 0.0025313427 133.22231 -0.057634321 + 863300 -33.795294 -33.799778 0.0044835572 235.96561 0.33522522 + 863400 -33.790888 -33.800338 0.0094494863 497.31804 0.91424918 + 863500 -33.794525 -33.800767 0.0062419904 328.51039 1.3120017 + 863600 -33.797032 -33.800968 0.0039353059 207.11164 1.5329995 + 863700 -33.796361 -33.801069 0.0047080129 247.77852 1.698823 + 863800 -33.795156 -33.801034 0.0058776689 309.33647 1.7840225 + 863900 -33.794795 -33.800797 0.0060020819 315.88422 1.7444342 + 864000 -33.795058 -33.800343 0.005285136 278.15199 1.5851899 + 864100 -33.794428 -33.799739 0.0053114374 279.53621 1.3471294 + 864200 -33.791238 -33.79889 0.0076514236 402.6876 1.0139485 + 864300 -33.791025 -33.797732 0.0067076189 353.016 0.4878635 + 864400 -33.793115 -33.796737 0.0036216921 190.60643 -0.045632793 + 864500 -33.792775 -33.796083 0.0033083805 174.11712 -0.469617 + 864600 -33.787178 -33.795544 0.0083656702 440.27776 -0.92873835 + 864700 -33.787722 -33.795138 0.007415279 390.25952 -1.5946922 + 864800 -33.790454 -33.794976 0.0045216942 237.97273 -2.0908376 + 864900 -33.790569 -33.79515 0.004580501 241.06768 -2.3324677 + 865000 -33.785276 -33.795618 0.010342573 544.32041 -2.3222264 + 865100 -33.785117 -33.796069 0.010952583 576.42466 -2.2786208 + 865200 -33.791601 -33.796252 0.0046501786 244.73475 -2.2587165 + 865300 -33.791783 -33.796376 0.0045932793 241.74019 -1.9977085 + 865400 -33.789715 -33.796521 0.0068058549 358.18607 -1.5175322 + 865500 -33.788236 -33.796651 0.0084149012 442.86874 -0.83851599 + 865600 -33.792952 -33.796611 0.0036590471 192.57238 -0.30502986 + 865700 -33.794227 -33.796717 0.0024896902 131.03017 0.12686288 + 865800 -33.791703 -33.797065 0.005361496 282.17075 0.69310413 + 865900 -33.789404 -33.797601 0.008196739 431.38706 1.4283083 + 866000 -33.791812 -33.798152 0.0063398334 333.65978 1.9872994 + 866100 -33.793817 -33.798586 0.0047691389 250.99553 2.3493112 + 866200 -33.794285 -33.799015 0.0047299393 248.93248 2.5666818 + 866300 -33.792216 -33.799528 0.0073122264 384.83595 2.693684 + 866400 -33.790537 -33.799992 0.0094551005 497.6135 2.6607022 + 866500 -33.796078 -33.800243 0.0041651051 219.20577 2.3701242 + 866600 -33.796835 -33.800379 0.0035445188 186.54486 2.1001599 + 866700 -33.794239 -33.800471 0.0062317683 327.97241 1.7327967 + 866800 -33.790788 -33.800433 0.0096451404 507.61514 1.1150813 + 866900 -33.79739 -33.800189 0.0027993663 147.32815 0.32965428 + 867000 -33.798067 -33.800043 0.001976115 104.00117 -0.082340107 + 867100 -33.79556 -33.799984 0.0044241135 232.83715 -0.51263357 + 867200 -33.792447 -33.799897 0.0074498866 392.08089 -1.1163736 + 867300 -33.793447 -33.799761 0.006313606 332.27945 -1.7907586 + 867400 -33.796046 -33.799677 0.0036308598 191.08891 -2.2839292 + 867500 -33.797285 -33.799704 0.0024185163 127.28436 -2.5202314 + 867600 -33.795553 -33.799919 0.00436645 229.80237 -2.5195243 + 867700 -33.790356 -33.800336 0.0099797074 525.2231 -2.2633559 + 867800 -33.794592 -33.800609 0.0060174624 316.69368 -2.0586434 + 867900 -33.796847 -33.800758 0.0039103749 205.79955 -1.7845233 + 868000 -33.795989 -33.800849 0.0048594864 255.75043 -1.3564823 + 868100 -33.793464 -33.800853 0.0073883061 388.83996 -0.72854896 + 868200 -33.792721 -33.800703 0.0079821027 420.09094 0.0038900427 + 868300 -33.796753 -33.80039 0.0036363521 191.37797 0.53389152 + 868400 -33.797367 -33.800163 0.0027966762 147.18657 0.95082477 + 868500 -33.79417 -33.799978 0.0058076051 305.64907 1.4572806 + 868600 -33.791286 -33.799622 0.0083364531 438.74009 2.0489835 + 868700 -33.794109 -33.799276 0.0051671123 271.94051 2.4043986 + 868800 -33.795929 -33.799033 0.0031043075 163.37693 2.5580072 + 868900 -33.794607 -33.798912 0.0043044121 226.53737 2.5990214 + 869000 -33.788292 -33.798881 0.010588982 557.2887 2.5362397 + 869100 -33.792838 -33.798677 0.0058393488 307.31972 2.1053399 + 869200 -33.795061 -33.798528 0.0034667627 182.45263 1.7046691 + 869300 -33.793751 -33.79847 0.0047188315 248.34789 1.2708149 + 869400 -33.788773 -33.798292 0.0095190825 500.98082 0.63207118 + 869500 -33.792129 -33.798003 0.005874027 309.1448 -0.32449666 + 869600 -33.79599 -33.797821 0.0018308583 96.356439 -0.91013867 + 869700 -33.794673 -33.797807 0.0031334843 164.91248 -1.3077618 + 869800 -33.790691 -33.798044 0.0073527328 386.96777 -1.7800046 + 869900 -33.790655 -33.798278 0.0076234958 401.21778 -2.3642387 + 870000 -33.794362 -33.798486 0.0041241557 217.05064 -2.8082503 + 870100 -33.795355 -33.798767 0.003412044 179.57283 -2.9714636 + 870200 -33.789803 -33.799145 0.009342412 491.68281 -2.8364471 + 870300 -33.789144 -33.799648 0.010504619 552.84874 -2.5982573 + 870400 -33.794863 -33.799846 0.0049830313 262.25249 -2.4356029 + 870500 -33.795456 -33.799925 0.0044695682 235.22939 -2.1090746 + 870600 -33.793686 -33.800008 0.0063218962 332.71576 -1.6030297 + 870700 -33.790081 -33.799953 0.0098714382 519.52499 -0.85568822 + 870800 -33.794997 -33.799684 0.0046869048 246.66762 -0.25321901 + 870900 -33.797001 -33.799511 0.0025103604 132.11803 0.15121418 + 871000 -33.795191 -33.799388 0.0041974006 220.90545 0.60560634 + 871100 -33.792103 -33.799241 0.0071379435 375.6636 1.188821 + 871200 -33.79274 -33.799076 0.0063358198 333.44854 1.6583694 + 871300 -33.793986 -33.798859 0.0048731445 256.46925 1.9554845 + 871400 -33.793918 -33.79873 0.0048119767 253.25004 2.1242472 + 871500 -33.788776 -33.79865 0.0098737178 519.64496 2.2521645 + 871600 -33.7906 -33.798413 0.0078128745 411.18462 2.0902613 + 871700 -33.794746 -33.798303 0.0035570548 187.20462 1.8086692 + 871800 -33.794239 -33.798308 0.0040687924 214.13691 1.5193263 + 871900 -33.790873 -33.798396 0.0075225079 395.90288 1.0867949 + 872000 -33.7909 -33.798595 0.0076945536 404.9575 0.40577859 + 872100 -33.796636 -33.798689 0.0020531068 108.05318 -0.2375025 + 872200 -33.796688 -33.798898 0.0022105882 116.34129 -0.56783483 + 872300 -33.793728 -33.799387 0.005658987 297.82744 -0.90379814 + 872400 -33.791317 -33.799978 0.0086603622 455.78714 -1.3605988 + 872500 -33.795221 -33.800505 0.0052847665 278.13255 -1.8467058 + 872600 -33.797223 -33.800808 0.0035854518 188.69913 -2.1040024 + 872700 -33.796035 -33.801035 0.0050002097 263.15658 -2.1781839 + 872800 -33.78527 -33.801284 0.016013924 842.79852 -1.9628531 + 872900 -33.79399 -33.801076 0.0070861155 372.93594 -2.0381421 + 873000 -33.796438 -33.800785 0.0043472027 228.7894 -1.9427128 + 873100 -33.795544 -33.800505 0.0049612633 261.10686 -1.6841559 + 873200 -33.792538 -33.799996 0.0074586134 392.54017 -1.2403896 + 873300 -33.792378 -33.799479 0.0071009466 373.71649 -0.71498974 + 873400 -33.795497 -33.799005 0.0035080223 184.62409 -0.30649243 + 873500 -33.796285 -33.798716 0.002430441 127.91194 0.042145055 + 873600 -33.79144 -33.798649 0.0072082553 379.36405 0.57567236 + 873700 -33.789752 -33.798442 0.0086897193 457.33218 1.228467 + 873800 -33.793648 -33.79825 0.0046018362 242.19054 1.610522 + 873900 -33.794341 -33.798201 0.0038604259 203.17077 1.8730556 + 874000 -33.791044 -33.798073 0.007028769 369.91784 2.1074984 + 874100 -33.785406 -33.797914 0.012507476 658.25728 2.3175028 + 874200 -33.793035 -33.797723 0.0046881611 246.73374 2.150049 + 874300 -33.793103 -33.7975 0.0043970204 231.41126 2.0086113 + 874400 -33.790996 -33.797566 0.0065702452 345.78614 1.7694197 + 874500 -33.7896 -33.79766 0.0080594766 424.16307 1.3568566 + 874600 -33.793497 -33.797792 0.0042951217 226.04842 0.82052576 + 874700 -33.795386 -33.798168 0.0027825181 146.44144 0.43986868 + 874800 -33.79317 -33.798638 0.0054670545 287.7262 0.13536627 + 874900 -33.786561 -33.799478 0.012917324 679.82723 -0.27305158 + 875000 -33.792845 -33.800311 0.0074662688 392.94307 -0.87190184 + 875100 -33.795714 -33.800624 0.0049098031 258.39856 -1.2296164 + 875200 -33.796529 -33.800936 0.0044062789 231.89853 -1.4039557 + 875300 -33.795046 -33.80116 0.0061144422 321.79764 -1.4362777 + 875400 -33.790897 -33.80105 0.010152659 534.32538 -1.3241157 + 875500 -33.795958 -33.800919 0.0049610785 261.09714 -1.2861514 + 875600 -33.798048 -33.800638 0.0025902772 136.32398 -1.1665172 + 875700 -33.796514 -33.800339 0.0038251924 201.31646 -0.87836971 + 875800 -33.793922 -33.800106 0.0061839038 325.45334 -0.3731637 + 875900 -33.793547 -33.799612 0.0060646321 319.17618 0.19304266 + 876000 -33.793979 -33.799225 0.0052457402 276.07863 0.74802783 + 876100 -33.793573 -33.798964 0.0053913699 283.74299 1.3011173 + 876200 -33.789728 -33.798496 0.008768423 461.47428 1.9588996 + 876300 -33.791061 -33.798278 0.0072175482 379.85312 2.5217202 + 876400 -33.79475 -33.798094 0.0033440493 175.99433 2.7842205 + 876500 -33.794423 -33.79805 0.0036272196 190.89733 2.9304851 + 876600 -33.789013 -33.798382 0.0093689655 493.0803 3.0284211 + 876700 -33.78988 -33.798526 0.0086455338 455.00673 2.8290762 + 876800 -33.792611 -33.798641 0.0060306948 317.39009 2.5028988 + 876900 -33.793849 -33.798825 0.0049760465 261.88489 2.1142822 + 877000 -33.793884 -33.798777 0.0048932989 257.52996 1.6545604 + 877100 -33.791434 -33.798895 0.0074617259 392.70398 1.1230661 + 877200 -33.789843 -33.798913 0.0090696414 477.32714 0.37883933 + 877300 -33.795206 -33.798725 0.0035187582 185.18911 -0.38424464 + 877400 -33.795859 -33.79881 0.0029509911 155.30803 -0.81290938 + 877500 -33.79315 -33.798906 0.0057553181 302.89726 -1.1755185 + 877600 -33.791432 -33.799031 0.0075996497 399.96278 -1.6030037 + 877700 -33.793116 -33.799287 0.0061707466 324.76089 -1.9640103 + 877800 -33.794411 -33.799255 0.0048440491 254.93799 -2.1638151 + 877900 -33.79432 -33.799307 0.0049874841 262.48684 -2.1888966 + 878000 -33.790008 -33.799357 0.0093492402 492.04217 -1.9689248 + 878100 -33.790605 -33.798948 0.008343169 439.09354 -1.6841777 + 878200 -33.795341 -33.798777 0.0034362351 180.84599 -1.4700448 + 878300 -33.794956 -33.798575 0.0036190248 190.46605 -1.114716 + 878400 -33.791945 -33.798294 0.0063485124 334.11655 -0.53094593 + 878500 -33.791109 -33.798245 0.0071360995 375.56655 0.18372384 + 878600 -33.792282 -33.797972 0.0056903275 299.47686 0.82102207 + 878700 -33.792725 -33.797851 0.0051265284 269.80462 1.395618 + 878800 -33.79205 -33.797969 0.0059193052 311.52775 1.9197142 + 878900 -33.787911 -33.797933 0.010022615 527.48129 2.4661447 + 879000 -33.790749 -33.798194 0.0074454817 391.84906 2.8218113 + 879100 -33.794786 -33.798428 0.0036422464 191.68818 2.8853343 + 879200 -33.794267 -33.798668 0.0044014128 231.64243 2.8372567 + 879300 -33.790456 -33.799303 0.0088470592 465.61284 2.6526769 + 879400 -33.792704 -33.799883 0.0071787214 377.80971 2.1345924 + 879500 -33.797524 -33.80025 0.0027265193 143.49428 1.6438573 + 879600 -33.796436 -33.800657 0.0042211857 222.15724 1.2199626 + 879700 -33.79283 -33.800989 0.0081595787 429.43135 0.59679254 + 879800 -33.794422 -33.801288 0.0068661495 361.35933 -0.26440668 + 879900 -33.798278 -33.801379 0.0031008841 163.19676 -0.95577592 + 880000 -33.798774 -33.801339 0.0025647041 134.97809 -1.3879691 + 880100 -33.790789 -33.801337 0.010548006 555.13214 -1.7597757 + 880200 -33.793944 -33.801112 0.0071674325 377.21558 -2.4293774 + 880300 -33.797486 -33.800817 0.0033308149 175.29782 -2.8157767 + 880400 -33.7969 -33.800725 0.003824764 201.29392 -2.9184737 + 880500 -33.792315 -33.80047 0.0081550222 429.19154 -2.7857714 + 880600 -33.792661 -33.800214 0.0075534946 397.53368 -2.566032 + 880700 -33.795173 -33.800039 0.0048660051 256.09351 -2.2945436 + 880800 -33.795027 -33.799721 0.0046943523 247.05957 -1.8846718 + 880900 -33.793926 -33.799587 0.0056609687 297.93173 -1.3126174 + 881000 -33.792776 -33.799368 0.0065925402 346.95951 -0.61344165 + 881100 -33.79288 -33.798965 0.0060851814 320.25767 0.11450905 + 881200 -33.794873 -33.798806 0.0039333147 207.00684 0.7216057 + 881300 -33.795038 -33.798573 0.0035353407 186.06183 1.2179255 + 881400 -33.791132 -33.798388 0.0072557078 381.86143 1.8040108 + 881500 -33.789685 -33.798366 0.008680911 456.8686 2.4015256 + 881600 -33.793989 -33.798123 0.0041342248 217.58057 2.6683796 + 881700 -33.794724 -33.798193 0.0034689753 182.56908 2.7761334 + 881800 -33.793518 -33.798412 0.00489417 257.5758 2.749536 + 881900 -33.792578 -33.798623 0.0060448154 318.13324 2.5388207 + 882000 -33.792526 -33.799078 0.0065519279 344.82212 2.1552195 + 882100 -33.794588 -33.799339 0.0047508921 250.03521 1.6416237 + 882200 -33.796549 -33.799546 0.002996704 157.71386 1.1548007 + 882300 -33.796187 -33.799837 0.0036499447 192.09333 0.7157465 + 882400 -33.790005 -33.800014 0.010009777 526.80562 0.15813547 + 882500 -33.792783 -33.80015 0.0073672845 387.73361 -0.72098163 + 882600 -33.795827 -33.800098 0.004271277 224.7935 -1.3490754 + 882700 -33.795397 -33.799888 0.0044911181 236.36354 -1.7730679 + 882800 -33.79357 -33.79974 0.0061702826 324.73647 -2.1003896 + 882900 -33.792633 -33.799456 0.0068231377 359.09565 -2.3543018 + 883000 -33.795227 -33.799077 0.0038499986 202.62199 -2.522931 + 883100 -33.797213 -33.799014 0.0018016399 94.818703 -2.5002924 + 883200 -33.795665 -33.798998 0.0033331341 175.41987 -2.2263826 + 883300 -33.791593 -33.799065 0.0074719978 393.24458 -1.5729559 + 883400 -33.792248 -33.799192 0.0069440766 365.46056 -0.80009459 + 883500 -33.795057 -33.798977 0.0039205635 206.33576 -0.15137341 + 883600 -33.795765 -33.798888 0.0031230178 164.36164 0.43360085 + 883700 -33.790683 -33.798758 0.0080746491 424.96158 1.2422098 + 883800 -33.789407 -33.798167 0.0087604035 461.05222 2.2498833 + 883900 -33.793818 -33.79785 0.0040315248 212.17555 2.8724967 + 884000 -33.794046 -33.797555 0.0035093067 184.69168 3.2885649 + 884100 -33.790517 -33.797325 0.0068079603 358.29688 3.6614445 + 884200 -33.788633 -33.797496 0.0088628449 466.44362 3.9021929 + 884300 -33.79098 -33.797469 0.006488435 341.48055 3.8391823 + 884400 -33.792604 -33.797721 0.0051170772 269.30721 3.6103034 + 884500 -33.793248 -33.79813 0.0048824583 256.95943 3.2370252 + 884600 -33.79248 -33.798452 0.0059717888 314.28992 2.7109664 + 884700 -33.790612 -33.799008 0.0083958789 441.86762 2.0001027 + 884800 -33.794037 -33.79933 0.0052930368 278.56781 1.1147567 + 884900 -33.796408 -33.799469 0.0030611213 161.10408 0.44479256 + 885000 -33.795131 -33.799711 0.0045807108 241.07872 -0.10757805 + 885100 -33.788852 -33.799775 0.010923084 574.87216 -0.80644902 + 885200 -33.792597 -33.799782 0.0071843025 378.10343 -1.7258089 + 885300 -33.794398 -33.799699 0.0053006219 278.967 -2.3215951 + 885400 -33.794551 -33.799528 0.0049769369 261.93175 -2.6882121 + 885500 -33.792942 -33.799564 0.0066225664 348.53976 -2.839809 + 885600 -33.790335 -33.799599 0.009264095 487.56105 -2.7846752 + 885700 -33.7949 -33.799599 0.0046982674 247.26562 -2.6886016 + 885800 -33.796789 -33.799769 0.0029804194 156.85681 -2.438055 + 885900 -33.794897 -33.799965 0.0050680466 266.72677 -1.930351 + 886000 -33.790812 -33.800205 0.0093935184 494.3725 -1.0272431 + 886100 -33.793749 -33.80037 0.0066204326 348.42746 -0.1583993 + 886200 -33.794805 -33.800195 0.0053899448 283.66798 0.61959799 + 886300 -33.794731 -33.799988 0.0052567039 276.65564 1.3836961 + 886400 -33.793598 -33.79968 0.0060821031 320.09566 2.1437288 + 886500 -33.791197 -33.799111 0.0079133944 416.47489 2.9272383 + 886600 -33.791952 -33.798587 0.0066351753 349.20336 3.5868911 + 886700 -33.795192 -33.798177 0.0029847575 157.08513 3.8956522 + 886800 -33.795147 -33.798031 0.0028836992 151.76652 3.9949895 + 886900 -33.789719 -33.798244 0.0085244169 448.63246 3.9728899 + 887000 -33.790565 -33.798487 0.0079219647 416.92593 3.5678938 + 887100 -33.793792 -33.798737 0.0049454993 260.27722 3.0233915 + 887200 -33.794403 -33.799047 0.0046442058 244.42041 2.4700791 + 887300 -33.792521 -33.799201 0.0066799072 351.55756 1.8042582 + 887400 -33.785281 -33.799299 0.014018546 737.78359 0.86064027 + 887500 -33.794293 -33.799159 0.0048652832 256.05551 -0.33089211 + 887600 -33.795332 -33.798845 0.0035133847 184.9063 -0.99988503 + 887700 -33.793079 -33.798734 0.0056550278 297.61907 -1.5739313 + 887800 -33.789879 -33.798389 0.0085096071 447.85303 -2.2049246 + 887900 -33.792911 -33.798047 0.0051358758 270.29656 -2.823132 + 888000 -33.796185 -33.798067 0.0018814599 99.019557 -3.101185 + 888100 -33.795704 -33.798124 0.002419755 127.34955 -3.060461 + 888200 -33.793801 -33.798562 0.004761204 250.57792 -2.7443802 + 888300 -33.791452 -33.799137 0.0076851904 404.46472 -2.158989 + 888400 -33.793191 -33.799411 0.0062198826 327.34687 -1.504581 + 888500 -33.796588 -33.799695 0.0031072486 163.53172 -0.96404094 + 888600 -33.796844 -33.799733 0.0028891836 152.05516 -0.45017976 + 888700 -33.789288 -33.799601 0.010312687 542.7475 0.47536962 + 888800 -33.791969 -33.79947 0.0075009714 394.76944 1.4612249 + 888900 -33.795312 -33.798957 0.0036451003 191.83838 2.0889899 + 889000 -33.794854 -33.798697 0.0038430411 202.25582 2.5943581 + 889100 -33.79005 -33.798411 0.0083606735 440.01479 3.1827727 + 889200 -33.79022 -33.797897 0.0076777248 404.07181 3.6243513 + 889300 -33.792273 -33.79786 0.0055868591 294.03141 3.7887459 + 889400 -33.792641 -33.797807 0.0051656007 271.86096 3.7558564 + 889500 -33.791848 -33.79793 0.0060814983 320.06383 3.5329481 + 889600 -33.79015 -33.798405 0.0082541664 434.40942 3.0869553 + 889700 -33.792945 -33.798601 0.0056559423 297.6672 2.3882879 + 889800 -33.795478 -33.798872 0.0033941421 178.63067 1.766052 + 889900 -33.794715 -33.799132 0.0044162521 232.42341 1.1616012 + 890000 -33.788928 -33.799119 0.010191235 536.35559 0.34572393 + 890100 -33.792221 -33.79913 0.0069089972 363.61436 -0.83282126 + 890200 -33.795794 -33.798912 0.0031172913 164.06026 -1.6114794 + 890300 -33.794802 -33.798626 0.0038242678 201.2678 -2.165494 + 890400 -33.791563 -33.798521 0.006958027 366.19476 -2.6871106 + 890500 -33.790644 -33.798237 0.007592752 399.59977 -3.2386786 + 890600 -33.794181 -33.798111 0.0039300859 206.83691 -3.6462675 + 890700 -33.796267 -33.798336 0.0020693501 108.90805 -3.7275038 + 890800 -33.795022 -33.79864 0.0036180022 190.41223 -3.5153453 + 890900 -33.788419 -33.799446 0.011027251 580.35441 -2.7846956 + 891000 -33.794131 -33.800317 0.0061858744 325.55705 -2.1430758 + 891100 -33.796578 -33.800623 0.0040444779 212.85727 -1.5749349 + 891200 -33.795951 -33.80097 0.0050192948 264.16101 -0.91738761 + 891300 -33.791809 -33.801099 0.0092900488 488.92698 -0.013318893 + 891400 -33.792196 -33.800759 0.008563226 450.67495 0.99936179 + 891500 -33.797776 -33.800593 0.0028173843 148.27642 1.535971 + 891600 -33.797231 -33.800225 0.0029942489 157.58465 1.9565943 + 891700 -33.793916 -33.799851 0.0059345212 312.32856 2.4411813 + 891800 -33.792633 -33.799605 0.0069715057 366.90413 2.8499409 + 891900 -33.793777 -33.799084 0.005306712 279.28752 3.0250555 + 892000 -33.794787 -33.799063 0.0042755864 225.0203 3.0339534 + 892100 -33.794952 -33.799085 0.0041324169 217.48541 2.8726584 + 892200 -33.792042 -33.799081 0.0070391465 370.464 2.5471318 + 892300 -33.790745 -33.799526 0.0087813554 462.1549 1.9594415 + 892400 -33.795458 -33.799538 0.0040798412 214.7184 1.2461841 + 892500 -33.796232 -33.799599 0.0033678466 177.24676 0.70305332 + 892600 -33.793845 -33.79974 0.00589489 310.24281 0.12961532 + 892700 -33.791193 -33.799409 0.0082166786 432.43647 -0.6684209 + 892800 -33.792906 -33.799191 0.0062846089 330.75336 -1.5191902 + 892900 -33.793582 -33.798762 0.0051801746 272.62797 -2.1976588 + 893000 -33.793214 -33.798136 0.0049213539 259.00646 -2.7258043 + 893100 -33.79072 -33.797787 0.0070670383 371.93192 -3.1032032 + 893200 -33.788909 -33.79717 0.0082610146 434.76983 -3.3873812 + 893300 -33.792953 -33.796844 0.0038905709 204.75728 -3.553495 + 893400 -33.794598 -33.797042 0.0024442453 128.63845 -3.4406228 + 893500 -33.792163 -33.79732 0.0051568697 271.40145 -2.9973471 + 893600 -33.788312 -33.798067 0.0097553638 513.41609 -2.0663827 + 893700 -33.791959 -33.798834 0.0068742047 361.78326 -1.1826103 + 893800 -33.794393 -33.799023 0.0046298052 243.66252 -0.42784066 + 893900 -33.79469 -33.799253 0.0045632783 240.16126 0.31659026 + 894000 -33.791539 -33.799287 0.0077482392 407.78292 1.196359 + 894100 -33.787738 -33.798685 0.010947514 576.15791 2.3232617 + 894200 -33.794751 -33.798452 0.0037012581 194.79391 2.968634 + 894300 -33.794953 -33.798029 0.0030764421 161.9104 3.3786348 + 894400 -33.792568 -33.797697 0.0051296537 269.9691 3.7064881 + 894500 -33.790391 -33.797763 0.0073717078 387.96641 3.9159312 + 894600 -33.791501 -33.79755 0.0060483677 318.3202 3.8524261 + 894700 -33.793102 -33.797834 0.0047324784 249.06612 3.6013792 + 894800 -33.795203 -33.798194 0.0029912337 157.42596 3.2106924 + 894900 -33.796405 -33.798469 0.0020642866 108.64156 2.8003429 + 895000 -33.793951 -33.799069 0.0051175283 269.33095 2.2900761 + 895100 -33.790197 -33.799658 0.0094604557 497.89535 1.3971257 + 895200 -33.794282 -33.800019 0.0057373466 301.95144 0.33102606 + 895300 -33.795942 -33.800251 0.0043092737 226.79323 -0.44499295 + 895400 -33.795281 -33.800089 0.0048081932 253.05092 -1.1191322 + 895500 -33.794231 -33.799995 0.0057638809 303.34791 -1.762396 + 895600 -33.79391 -33.799879 0.0059683096 314.10681 -2.3341768 + 895700 -33.794057 -33.79953 0.0054736446 288.07303 -2.7686253 + 895800 -33.793928 -33.799605 0.0056770273 298.77688 -2.9901391 + 895900 -33.792321 -33.799658 0.0073366389 386.12076 -2.9809804 + 896000 -33.790563 -33.799739 0.009176191 482.93475 -2.7519033 + 896100 -33.795592 -33.800268 0.0046763706 246.11321 -2.5068119 + 896200 -33.79689 -33.800475 0.0035856213 188.70805 -2.1403211 + 896300 -33.794911 -33.800875 0.0059639939 313.87968 -1.5449389 + 896400 -33.791019 -33.801405 0.010385859 546.5985 -0.6082285 + 896500 -33.797353 -33.801452 0.0040984568 215.69813 0.099371721 + 896600 -33.798588 -33.80154 0.0029514099 155.33007 0.6092302 + 896700 -33.796693 -33.801456 0.0047633717 250.69201 1.1927686 + 896800 -33.794015 -33.801035 0.0070194143 369.42551 1.8953863 + 896900 -33.794521 -33.800737 0.0062161771 327.15186 2.5069566 + 897000 -33.796108 -33.800131 0.0040235584 211.75629 2.8993884 + 897100 -33.797493 -33.799754 0.0022613621 119.01347 3.0870404 + 897200 -33.796353 -33.799647 0.0032947209 173.39822 3.1331151 + 897300 -33.79179 -33.799316 0.0075260858 396.09118 3.0210539 + 897400 -33.791905 -33.799351 0.0074464461 391.89982 2.6132424 + 897500 -33.795301 -33.799422 0.0041207522 216.87151 2.0826038 + 897600 -33.796051 -33.799355 0.0033042047 173.89735 1.5912769 + 897700 -33.78987 -33.799578 0.0097084755 510.94841 1.0513747 + 897800 -33.789836 -33.79954 0.0097043138 510.72938 -0.0042921106 + 897900 -33.794773 -33.799411 0.0046383171 244.11049 -0.88435446 + 898000 -33.794966 -33.799484 0.0045183472 237.79658 -1.4673485 + 898100 -33.792681 -33.799124 0.006442593 339.06792 -1.9802605 + 898200 -33.78858 -33.798864 0.010284491 541.2636 -2.4837726 + 898300 -33.794531 -33.798774 0.0042434097 223.32687 -3.0034145 + 898400 -33.796116 -33.798542 0.0024260024 127.67834 -3.1371738 + 898500 -33.793747 -33.798789 0.0050415067 265.33 -2.9738104 + 898600 -33.79066 -33.798966 0.0083057422 437.1238 -2.5390937 + 898700 -33.792932 -33.799125 0.0061927216 325.91741 -2.0533363 + 898800 -33.794503 -33.799553 0.0050499115 265.77234 -1.5289181 + 898900 -33.794311 -33.799476 0.0051643805 271.79674 -0.93542439 + 899000 -33.793817 -33.799565 0.005747874 302.50548 -0.25185189 + 899100 -33.793706 -33.799686 0.0059797277 314.70774 0.44515558 + 899200 -33.793943 -33.799281 0.0053378102 280.92419 1.0751586 + 899300 -33.793647 -33.799226 0.0055791255 293.6244 1.6564779 + 899400 -33.791895 -33.798891 0.0069954012 368.16172 2.1959079 + 899500 -33.791713 -33.798192 0.0064795837 341.01471 2.6041413 + 899600 -33.793603 -33.798091 0.0044874104 236.1684 2.8099078 + 899700 -33.794106 -33.797651 0.0035456446 186.60411 2.82657 + 899800 -33.789906 -33.797254 0.0073481215 386.72508 2.7306572 + 899900 -33.787715 -33.79729 0.0095751393 503.93104 2.3550476 + 900000 -33.792259 -33.796684 0.0044251491 232.89165 1.7635175 + 900100 -33.792508 -33.796667 0.0041590895 218.88917 1.2618962 + 900200 -33.791152 -33.796657 0.0055049491 289.72056 0.66902412 + 900300 -33.789801 -33.796287 0.0064856754 341.33531 -0.083352701 + 900400 -33.79055 -33.796702 0.0061526074 323.80624 -0.87443806 + 900500 -33.79424 -33.796719 0.002478741 130.45393 -1.5138505 + 900600 -33.794553 -33.796959 0.0024058861 126.61964 -1.8363617 + 900700 -33.790645 -33.797806 0.0071615383 376.90537 -2.0170085 + 900800 -33.789944 -33.798374 0.008429405 443.63207 -2.2433051 + 900900 -33.793459 -33.799289 0.0058296419 306.80886 -2.392625 + 901000 -33.794841 -33.799979 0.0051378193 270.39885 -2.37002 + 901100 -33.794876 -33.800236 0.0053598701 282.08518 -2.2104843 + 901200 -33.793373 -33.800867 0.0074937869 394.39132 -1.8739939 + 901300 -33.792654 -33.801153 0.008498796 447.28405 -1.4230413 + 901400 -33.797162 -33.801249 0.0040867113 215.07997 -1.0850999 + 901500 -33.798122 -33.801502 0.0033798465 177.87831 -0.73066782 + 901600 -33.795195 -33.801427 0.0062313968 327.95285 -0.24293707 + 901700 -33.791712 -33.801343 0.0096311717 506.87998 0.45177358 + 901800 -33.795624 -33.801391 0.0057671892 303.52202 0.94033266 + 901900 -33.79625 -33.800963 0.0047134118 248.06266 1.3202391 + 902000 -33.79529 -33.800807 0.0055163616 290.32119 1.6583172 + 902100 -33.793362 -33.800513 0.0071514545 376.37467 1.9467983 + 902200 -33.792284 -33.799769 0.0074849539 393.92645 2.1157351 + 902300 -33.795461 -33.799589 0.0041283988 217.27395 2.0830591 + 902400 -33.796526 -33.799202 0.0026756995 140.81968 1.9603381 + 902500 -33.793517 -33.79881 0.0052928694 278.55899 1.7674458 + 902600 -33.789965 -33.798751 0.0087854514 462.37047 1.3298589 + 902700 -33.792504 -33.798136 0.0056317608 296.39455 0.68281206 + 902800 -33.793671 -33.797983 0.0043120807 226.94096 0.14117951 + 902900 -33.792249 -33.797917 0.0056681467 298.30951 -0.37123545 + 903000 -33.782101 -33.797151 0.01505009 792.07282 -0.98883814 + 903100 -33.790934 -33.797533 0.0065993113 347.31587 -1.9171993 + 903200 -33.792663 -33.797302 0.004639129 244.15322 -2.3981607 + 903300 -33.791989 -33.797427 0.0054378791 286.19073 -2.6708827 + 903400 -33.79007 -33.798095 0.0080247073 422.33319 -2.757673 + 903500 -33.792339 -33.798332 0.0059929501 315.40362 -2.7872502 + 903600 -33.795952 -33.79905 0.0030988205 163.08816 -2.6947408 + 903700 -33.795545 -33.799584 0.0040390002 212.56898 -2.4001799 + 903800 -33.790752 -33.799947 0.0091956313 483.95787 -1.7761166 + 903900 -33.79321 -33.800804 0.0075940658 399.66891 -1.0330127 + 904000 -33.79826 -33.800923 0.002663289 140.16652 -0.64089287 + 904100 -33.796818 -33.800882 0.0040644708 213.90947 -0.12921787 + 904200 -33.792646 -33.800963 0.008317377 437.73613 0.65442146 + 904300 -33.793791 -33.800424 0.0066332246 349.10069 1.3850151 + 904400 -33.796938 -33.800084 0.0031459236 165.56716 1.8696674 + 904500 -33.797259 -33.799856 0.0025967268 136.66342 2.1987294 + 904600 -33.791218 -33.799178 0.0079597398 418.91401 2.5981084 + 904700 -33.791202 -33.79902 0.0078181815 411.46392 2.8861621 + 904800 -33.794639 -33.79864 0.0040008017 210.55862 2.8998795 + 904900 -33.794899 -33.798458 0.0035595862 187.33785 2.7982318 + 905000 -33.789577 -33.798747 0.0091700252 482.61025 2.6174451 + 905100 -33.789054 -33.798574 0.0095205566 501.0584 2.0403736 + 905200 -33.79346 -33.798839 0.0053790201 283.09303 1.4165121 + 905300 -33.793687 -33.799069 0.0053820826 283.25421 0.88260667 + 905400 -33.793112 -33.798885 0.0057728796 303.82151 0.29380464 + 905500 -33.792248 -33.799169 0.0069208965 364.24061 -0.3210327 + 905600 -33.793481 -33.799156 0.0056746069 298.6495 -0.95123676 + 905700 -33.795674 -33.799064 0.0033898229 178.40336 -1.4360177 + 905800 -33.795375 -33.79935 0.003974922 209.1966 -1.7063276 + 905900 -33.790064 -33.799291 0.0092266001 485.58773 -1.8379655 + 906000 -33.791702 -33.799463 0.007760888 408.44861 -2.0197436 + 906100 -33.795069 -33.79972 0.0046509057 244.77302 -2.0748811 + 906200 -33.794811 -33.799561 0.0047503625 250.00734 -1.9373611 + 906300 -33.79346 -33.799759 0.0062992899 331.52601 -1.6083902 + 906400 -33.792907 -33.799862 0.006955224 366.04724 -1.1559624 + 906500 -33.795902 -33.799668 0.0037660374 198.20319 -0.75650983 + 906600 -33.797364 -33.799853 0.0024895121 131.0208 -0.39813703 + 906700 -33.795138 -33.799794 0.0046567966 245.08305 0.069439079 + 906800 -33.791101 -33.799516 0.0084148222 442.86459 0.77715018 + 906900 -33.793359 -33.799577 0.0062178855 327.24177 1.3739777 + 907000 -33.794909 -33.79905 0.0041405694 217.91447 1.7888925 + 907100 -33.793789 -33.798704 0.0049149528 258.66958 2.1340192 + 907200 -33.783853 -33.798292 0.014438733 759.89766 2.6672725 + 907300 -33.790125 -33.797147 0.0070219668 369.55985 2.7890896 + 907400 -33.792417 -33.796766 0.0043490736 228.88787 2.7838115 + 907500 -33.791756 -33.79649 0.0047341395 249.15354 2.6776067 + 907600 -33.7878 -33.795898 0.0080983852 426.21079 2.414065 + 907700 -33.788061 -33.796308 0.0082475094 434.05906 1.8620844 + 907800 -33.793625 -33.796359 0.0027346749 143.9235 1.2898901 + 907900 -33.793114 -33.79658 0.0034650744 182.36377 0.88250449 + 908000 -33.790044 -33.797579 0.0075353132 396.57681 0.36867352 + 908100 -33.790475 -33.798111 0.0076351733 401.83236 -0.35013693 + 908200 -33.794852 -33.798969 0.0041169334 216.67053 -0.96000171 + 908300 -33.795748 -33.799593 0.0038452378 202.37144 -1.323989 + 908400 -33.794858 -33.799856 0.0049982133 263.05151 -1.5996964 + 908500 -33.793759 -33.800498 0.0067385385 354.64327 -1.7912603 + 908600 -33.794577 -33.800783 0.0062050489 326.56619 -1.9447244 + 908700 -33.797188 -33.800798 0.0036097374 189.97726 -2.0258802 + 908800 -33.79818 -33.801013 0.0028330606 149.10145 -1.9589504 + 908900 -33.794766 -33.800881 0.0061147304 321.81281 -1.6865337 + 909000 -33.791467 -33.800659 0.0091917634 483.75431 -1.1943761 + 909100 -33.795447 -33.800572 0.0051252908 269.73948 -0.8166741 + 909200 -33.79647 -33.80013 0.0036593933 192.5906 -0.45103569 + 909300 -33.794274 -33.799942 0.005667823 298.29247 0.02700464 + 909400 -33.786338 -33.799623 0.013284609 699.15711 0.80456519 + 909500 -33.79445 -33.798928 0.004477534 235.64862 1.2791521 + 909600 -33.79608 -33.798921 0.0028408953 149.51378 1.5379491 + 909700 -33.793582 -33.798829 0.005246906 276.13998 1.7724295 + 909800 -33.789733 -33.798568 0.0088349505 464.97556 1.9692925 + 909900 -33.793169 -33.798994 0.0058255764 306.59489 1.9239718 + 910000 -33.795572 -33.798895 0.0033232122 174.89769 1.7652226 + 910100 -33.794516 -33.798971 0.004454914 234.45815 1.5664178 + 910200 -33.787613 -33.799324 0.011710355 616.30555 1.2618439 + 910300 -33.792069 -33.798869 0.0067999717 357.87644 0.48002387 + 910400 -33.796342 -33.799125 0.0027838106 146.50947 0.0096820052 + 910500 -33.794914 -33.799108 0.0041935497 220.70278 -0.36568841 + 910600 -33.790608 -33.798618 0.0080098281 421.55011 -0.87456083 + 910700 -33.791914 -33.799169 0.0072549629 381.82223 -1.5011216 + 910800 -33.795407 -33.798924 0.0035169499 185.09394 -2.0063108 + 910900 -33.795468 -33.798963 0.0034942419 183.89883 -2.2566392 + 911000 -33.787133 -33.799546 0.012412783 653.27369 -2.2540922 + 911100 -33.790737 -33.799241 0.0085048613 447.60326 -2.4637185 + 911200 -33.794709 -33.799622 0.0049128394 258.55836 -2.5118393 + 911300 -33.795183 -33.799859 0.0046755367 246.06932 -2.3708555 + 911400 -33.793289 -33.799372 0.0060822335 320.10252 -2.0786481 + 911500 -33.788407 -33.799481 0.011073915 582.81028 -1.5065255 + 911600 -33.794309 -33.79892 0.0046110356 242.67469 -1.1094955 + 911700 -33.79608 -33.798415 0.0023353517 122.90748 -0.78461434 + 911800 -33.794329 -33.798368 0.0040394546 212.59289 -0.33099051 + 911900 -33.791722 -33.797246 0.0055240596 290.72633 0.26566042 + 912000 -33.790787 -33.796591 0.0058047047 305.49643 0.94153725 + 912100 -33.790416 -33.796323 0.005907611 310.9123 1.5737387 + 912200 -33.78827 -33.794679 0.0064087782 337.28828 2.1340149 + 912300 -33.783303 -33.794295 0.010992027 578.50057 2.8745403 + 912400 -33.788873 -33.793824 0.0049510821 260.57104 3.2057153 + 912500 -33.790347 -33.793214 0.0028664561 150.85903 3.2849589 + 912600 -33.788376 -33.794246 0.0058702448 308.94575 3.2914019 + 912700 -33.786754 -33.794436 0.0076825769 404.32717 3.0223651 + 912800 -33.78859 -33.795288 0.0066983182 352.52651 2.5270832 + 912900 -33.79028 -33.796907 0.0066271729 348.7822 2.0078362 + 913000 -33.792 -33.797065 0.005064637 266.54733 1.4043707 + 913100 -33.793273 -33.797996 0.0047229849 248.56648 0.82458095 + 913200 -33.79539 -33.798725 0.0033347434 175.50457 0.28849659 + 913300 -33.796338 -33.79882 0.0024817963 130.61473 -0.13701388 + 913400 -33.793148 -33.799468 0.006320029 332.61749 -0.50532291 + 913500 -33.790216 -33.799742 0.0095256639 501.32719 -1.0473486 + 913600 -33.794684 -33.799845 0.0051608705 271.61201 -1.6260759 + 913700 -33.795665 -33.800377 0.0047122061 247.9992 -1.9229688 + 913800 -33.794928 -33.800122 0.0051948339 273.39948 -2.0908267 + 913900 -33.793928 -33.800253 0.0063257822 332.92028 -2.1237963 + 914000 -33.79438 -33.800763 0.0063832814 335.9464 -2.0373256 + 914100 -33.797972 -33.800602 0.0026301526 138.42258 -1.9432976 + 914200 -33.798536 -33.801031 0.0024953726 131.32923 -1.72286 + 914300 -33.795089 -33.80139 0.006300978 331.61485 -1.2592917 + 914400 -33.793007 -33.801263 0.0082558536 434.49821 -0.59623598 + 914500 -33.796103 -33.80189 0.0057875946 304.59594 -0.030994802 + 914600 -33.797206 -33.801642 0.00443607 233.46641 0.43680364 + 914700 -33.79638 -33.80127 0.0048898068 257.34617 0.90840914 + 914800 -33.795029 -33.801271 0.00624234 328.52879 1.4028849 + 914900 -33.794948 -33.800339 0.0053912364 283.73596 1.7928028 + 915000 -33.794812 -33.799886 0.0050739852 267.03932 2.097335 + 915100 -33.793474 -33.799526 0.0060526721 318.54674 2.3170513 + 915200 -33.790193 -33.798117 0.0079238545 417.0254 2.4351563 + 915300 -33.78992 -33.797927 0.0080065594 421.37808 2.4040096 + 915400 -33.794391 -33.797408 0.0030178667 158.82763 2.160926 + 915500 -33.794515 -33.796973 0.0024577044 129.34679 1.9248851 + 915600 -33.790544 -33.797526 0.0069820046 367.45668 1.5860811 + 915700 -33.789631 -33.797221 0.0075893843 399.42253 0.92610829 + 915800 -33.792183 -33.797491 0.0053072817 279.3175 0.24451821 + 915900 -33.793401 -33.798145 0.0047436615 249.65467 -0.30164719 + 916000 -33.792794 -33.797718 0.0049239325 259.14218 -0.79598966 + 916100 -33.786362 -33.797806 0.011443725 602.27302 -1.2389511 + 916200 -33.791321 -33.797919 0.0065973009 347.21006 -1.8932397 + 916300 -33.794295 -33.797317 0.0030226164 159.0776 -2.250054 + 916400 -33.793081 -33.797611 0.0045297681 238.39766 -2.3286905 + 916500 -33.790233 -33.797098 0.0068650381 361.30083 -2.2774632 + 916600 -33.790267 -33.796645 0.0063779017 335.66328 -2.1303258 + 916700 -33.791258 -33.797308 0.0060502262 318.41801 -1.8371719 + 916800 -33.791598 -33.796691 0.0050930863 268.04459 -1.4796621 + 916900 -33.791175 -33.797025 0.0058501584 307.88862 -0.96927539 + 917000 -33.790644 -33.797758 0.0071135948 374.38215 -0.3618436 + 917100 -33.791811 -33.797372 0.005561527 292.69821 0.1998316 + 917200 -33.793889 -33.798337 0.0044476816 234.07751 0.69048314 + 917300 -33.794231 -33.798659 0.0044281474 233.04945 1.0742362 + 917400 -33.791478 -33.798458 0.0069791666 367.30731 1.4751341 + 917500 -33.789277 -33.799499 0.010222695 538.01131 1.9118921 + 917600 -33.795615 -33.7993 0.0036848164 193.9286 1.9669949 + 917700 -33.796092 -33.799274 0.0031816953 167.44979 1.9825452 + 917800 -33.793828 -33.799781 0.0059525336 313.27653 1.9294598 + 917900 -33.792125 -33.799068 0.0069426391 365.38491 1.648651 + 918000 -33.793432 -33.799337 0.0059056108 310.80703 1.2550905 + 918100 -33.794099 -33.799431 0.0053320048 280.61866 0.8213406 + 918200 -33.793838 -33.7986 0.0047614721 250.59203 0.31074203 + 918300 -33.792858 -33.798956 0.006098069 320.93593 -0.19368908 + 918400 -33.791849 -33.798577 0.0067280014 354.08871 -0.7762603 + 918500 -33.791165 -33.797833 0.0066682693 350.94507 -1.3906858 + 918600 -33.793279 -33.798571 0.0052920972 278.51836 -1.8892077 + 918700 -33.794717 -33.798128 0.0034117803 179.55895 -2.2406585 + 918800 -33.793008 -33.798244 0.0052368847 275.61257 -2.3753707 + 918900 -33.787619 -33.799102 0.011482735 604.3261 -2.3145376 + 919000 -33.793459 -33.79869 0.0052316885 275.3391 -2.4137892 + 919100 -33.795284 -33.799351 0.0040676438 214.07647 -2.2890595 + 919200 -33.794062 -33.799595 0.0055332946 291.21236 -1.9943648 + 919300 -33.79217 -33.799065 0.0068953096 362.894 -1.558083 + 919400 -33.793467 -33.799886 0.0064186865 337.80975 -1.0259232 + 919500 -33.797135 -33.799616 0.0024808391 130.56435 -0.68643306 + 919600 -33.797052 -33.799475 0.0024229688 127.51869 -0.34126562 + 919700 -33.793073 -33.799984 0.0069109802 363.71872 0.24392219 + 919800 -33.792504 -33.799312 0.0068082044 358.30972 0.83594406 + 919900 -33.794503 -33.799574 0.0050709444 266.87928 1.3264581 + 920000 -33.795575 -33.799874 0.0042986763 226.2355 1.6705298 + 920100 -33.793991 -33.799257 0.0052658051 277.13463 1.9064432 + 920200 -33.788357 -33.799665 0.011308189 595.13991 2.223546 + 920300 -33.794025 -33.799697 0.0056711202 298.466 2.1744219 + 920400 -33.795856 -33.799409 0.003552112 186.94449 2.0373039 + 920500 -33.794515 -33.80002 0.005505432 289.74598 1.8793502 + 920600 -33.792679 -33.799656 0.0069773353 367.21093 1.5188702 + 920700 -33.793975 -33.799648 0.0056726588 298.54697 0.97730789 + 920800 -33.798025 -33.800176 0.0021514815 113.23055 0.54124392 + 920900 -33.797701 -33.799775 0.0020740637 109.15612 0.20984931 + 921000 -33.794483 -33.79998 0.0054963406 289.2675 -0.21669409 + 921100 -33.792805 -33.800138 0.007333262 385.94304 -0.80793741 + 921200 -33.794233 -33.799409 0.0051759313 272.40465 -1.4634294 + 921300 -33.796166 -33.800022 0.0038558076 202.92772 -1.9228017 + 921400 -33.797164 -33.799736 0.0025714877 135.3351 -2.2091851 + 921500 -33.794508 -33.799332 0.0048244923 253.90872 -2.3057447 + 921600 -33.790383 -33.800259 0.0098765114 519.79198 -2.2379758 + 921700 -33.794131 -33.799636 0.0055053862 289.74356 -2.2646979 + 921800 -33.796207 -33.80016 0.0039530004 208.04288 -2.1118831 + 921900 -33.795305 -33.800584 0.0052789756 277.82778 -1.7974545 + 922000 -33.787889 -33.799657 0.011767845 619.33117 -1.2132906 + 922100 -33.789956 -33.800495 0.01053899 554.65765 -0.42929681 + 922200 -33.795369 -33.800143 0.004773547 251.22752 -0.026172766 + 922300 -33.795395 -33.79947 0.0040751854 214.47337 0.38091361 + 922400 -33.792647 -33.799457 0.006809574 358.38181 0.90313094 + 922500 -33.790272 -33.798307 0.0080348255 422.8657 1.4449368 + 922600 -33.793258 -33.79766 0.0044025983 231.70482 1.7916452 + 922700 -33.795413 -33.797702 0.002288719 120.45324 1.9622126 + 922800 -33.794193 -33.797054 0.0028607955 150.56112 2.0226925 + 922900 -33.789228 -33.797006 0.0077779887 409.34861 2.018905 + 923000 -33.790532 -33.79738 0.0068485992 360.43566 1.7860538 + 923100 -33.793218 -33.796981 0.0037632752 198.05782 1.443566 + 923200 -33.793407 -33.797602 0.004194696 220.76311 1.1297142 + 923300 -33.788666 -33.797704 0.0090381246 475.66844 0.75977526 + 923400 -33.788256 -33.797362 0.0091064985 479.26689 0.064904627 + 923500 -33.793474 -33.798245 0.0047716224 251.12623 -0.52391848 + 923600 -33.793388 -33.797863 0.0044747669 235.50299 -0.92881138 + 923700 -33.791513 -33.79782 0.0063062264 331.89107 -1.2621211 + 923800 -33.79005 -33.798397 0.0083470308 439.29679 -1.5690167 + 923900 -33.793929 -33.79785 0.0039208931 206.35311 -1.8978 + 924000 -33.795796 -33.7984 0.0026033834 137.01375 -1.9597983 + 924100 -33.793846 -33.798699 0.0048521238 255.36295 -1.8323275 + 924200 -33.789842 -33.79829 0.0084488757 444.65679 -1.5085217 + 924300 -33.792386 -33.799498 0.007112062 374.30148 -1.1383806 + 924400 -33.79431 -33.799424 0.0051138397 269.13682 -0.81068409 + 924500 -33.794591 -33.799392 0.0048009134 252.66779 -0.43087877 + 924600 -33.792656 -33.800016 0.0073604752 387.37525 0.072433267 + 924700 -33.787459 -33.799146 0.011686703 615.06076 0.72934706 + 924800 -33.794935 -33.799685 0.004749317 249.95232 1.1119941 + 924900 -33.796169 -33.799771 0.0036022095 189.58107 1.3716204 + 925000 -33.794155 -33.799255 0.0051002059 268.41929 1.6160005 + 925100 -33.790736 -33.799636 0.0089001977 468.40947 1.8750784 + 925200 -33.793759 -33.799511 0.0057519453 302.71975 1.8883703 + 925300 -33.797735 -33.799509 0.0017737234 93.349479 1.7949486 + 925400 -33.798003 -33.799865 0.0018613105 97.959111 1.6848717 + 925500 -33.796888 -33.799834 0.0029456229 155.02551 1.4528024 + 925600 -33.79341 -33.799948 0.0065377502 344.07596 1.0987999 + 925700 -33.791662 -33.800612 0.00895005 471.03315 0.51370155 + 925800 -33.795961 -33.800245 0.0042841183 225.46932 -0.1756564 + 925900 -33.797229 -33.800476 0.0032472504 170.89989 -0.59975483 + 926000 -33.794284 -33.800485 0.0062005371 326.32874 -0.95545807 + 926100 -33.788921 -33.799424 0.01050297 552.76196 -1.4823139 + 926200 -33.793405 -33.800016 0.0066108962 347.92557 -2.008371 + 926300 -33.795237 -33.799592 0.0043550735 229.20363 -2.3281414 + 926400 -33.794649 -33.799286 0.0046366658 244.02358 -2.4458208 + 926500 -33.789635 -33.7999 0.010265955 540.28805 -2.3016022 + 926600 -33.791762 -33.799252 0.0074898547 394.18437 -2.2098288 + 926700 -33.796723 -33.799951 0.0032280186 169.88774 -2.0752414 + 926800 -33.79579 -33.800302 0.0045118977 237.45715 -1.7550577 + 926900 -33.792835 -33.799884 0.0070496798 371.01836 -1.2357665 + 927000 -33.793242 -33.800766 0.0075244521 396.0052 -0.57478189 + 927100 -33.798034 -33.800701 0.0026676826 140.39776 -0.17888249 + 927200 -33.798449 -33.800602 0.0021531071 113.31611 0.15363849 + 927300 -33.796818 -33.801049 0.0042308962 222.6683 0.59604646 + 927400 -33.794582 -33.800514 0.0059323505 312.21431 1.0763828 + 927500 -33.793624 -33.800573 0.0069494571 365.74373 1.5875452 + 927600 -33.795803 -33.800803 0.0049994114 263.11456 1.9379946 + 927700 -33.798536 -33.800368 0.0018316236 96.396714 2.0438732 + 927800 -33.798304 -33.800629 0.0023250846 122.36713 2.0852575 + 927900 -33.793567 -33.800578 0.0070112061 368.99352 2.0413268 + 928000 -33.79343 -33.800303 0.0068730517 361.72258 1.7187412 + 928100 -33.795939 -33.800857 0.0049179261 258.82606 1.3419768 + 928200 -33.79696 -33.800468 0.0035081572 184.63118 0.94662532 + 928300 -33.793836 -33.800156 0.0063205804 332.64651 0.54200356 + 928400 -33.788846 -33.800038 0.011191823 589.01569 -0.074922281 + 928500 -33.794154 -33.798997 0.0048425989 254.86166 -0.86755384 + 928600 -33.794753 -33.798713 0.0039607624 208.45139 -1.3552971 + 928700 -33.793218 -33.798154 0.0049360518 259.78 -1.7424722 + 928800 -33.790831 -33.796873 0.0060423284 318.00235 -2.133399 + 928900 -33.790284 -33.796848 0.0065639835 345.4566 -2.4315634 + 929000 -33.790684 -33.796006 0.0053223516 280.11062 -2.6137149 + 929100 -33.7905 -33.795452 0.0049511558 260.57491 -2.6126974 + 929200 -33.789597 -33.79596 0.0063637063 334.91619 -2.3881032 + 929300 -33.788997 -33.795328 0.006331501 333.22125 -2.044443 + 929400 -33.790322 -33.795804 0.0054823618 288.53181 -1.571089 + 929500 -33.792636 -33.79645 0.0038139043 200.72238 -1.1217907 + 929600 -33.792686 -33.796292 0.0036056187 189.7605 -0.6742633 + 929700 -33.787822 -33.797046 0.0092234725 485.42313 0.070457709 + 929800 -33.788846 -33.797493 0.0086476177 455.11641 0.86161238 + 929900 -33.79438 -33.797793 0.0034130507 179.62581 1.2665905 + 930000 -33.793909 -33.798525 0.0046160119 242.93659 1.6416271 + 930100 -33.791821 -33.798596 0.0067751674 356.57101 1.9776901 + 930200 -33.791719 -33.799167 0.0074477317 391.96748 2.1842898 + 930300 -33.796583 -33.800101 0.0035175796 185.12708 2.1694539 + 930400 -33.797496 -33.800266 0.0027706938 145.81914 2.0775387 + 930500 -33.795571 -33.800979 0.0054077082 284.60286 1.8878178 + 930600 -33.794459 -33.801607 0.0071483295 376.21021 1.5177336 + 930700 -33.795915 -33.801861 0.0059462182 312.94416 1.0101184 + 930800 -33.797444 -33.802462 0.0050172072 264.05114 0.50621146 + 930900 -33.798216 -33.802363 0.0041463288 218.21759 0.023596989 + 931000 -33.797164 -33.802217 0.0050528948 265.92934 -0.42870982 + 931100 -33.793604 -33.80214 0.0085359256 449.23815 -0.93975 + 931200 -33.794991 -33.801217 0.0062257762 327.65705 -1.5814215 + 931300 -33.797872 -33.800965 0.0030936867 162.81797 -2.0271431 + 931400 -33.797548 -33.80064 0.0030917765 162.71744 -2.2423177 + 931500 -33.791528 -33.799531 0.0080035336 421.21884 -2.2887607 + 931600 -33.792454 -33.79973 0.0072758247 382.92016 -2.3190379 + 931700 -33.795001 -33.799195 0.0041934034 220.69508 -2.273501 + 931800 -33.795029 -33.798989 0.0039602353 208.42365 -2.0295328 + 931900 -33.788486 -33.799273 0.010786999 567.71011 -1.4308903 + 932000 -33.789727 -33.798378 0.0086513929 455.31509 -0.73836561 + 932100 -33.793998 -33.798601 0.0046035854 242.28259 -0.2120561 + 932200 -33.793651 -33.798563 0.0049120831 258.51855 0.32792189 + 932300 -33.791573 -33.797557 0.0059839539 314.93015 0.94540179 + 932400 -33.788574 -33.797614 0.0090393569 475.73329 1.7179029 + 932500 -33.791882 -33.796958 0.005076938 267.19472 2.2567644 + 932600 -33.794598 -33.796692 0.0020946315 110.23859 2.5318 + 932700 -33.793129 -33.797109 0.003980499 209.49011 2.7220503 + 932800 -33.789269 -33.79662 0.0073506174 386.85644 2.7973821 + 932900 -33.790527 -33.797371 0.0068436795 360.17675 2.6931178 + 933000 -33.792869 -33.798294 0.005424751 285.4998 2.4312227 + 933100 -33.793912 -33.798135 0.004223201 222.2633 2.0699985 + 933200 -33.792399 -33.798898 0.0064984819 342.00931 1.7004416 + 933300 -33.788438 -33.79908 0.01064186 560.07158 1.1004662 + 933400 -33.794097 -33.798881 0.0047834808 251.75033 0.30234703 + 933500 -33.795745 -33.799296 0.0035516396 186.91963 -0.17537119 + 933600 -33.794078 -33.798783 0.0047051268 247.62663 -0.63075623 + 933700 -33.789716 -33.797986 0.0082693077 435.20629 -1.172272 + 933800 -33.79112 -33.798254 0.0071334692 375.42812 -1.7524482 + 933900 -33.792321 -33.797155 0.0048343726 254.42872 -2.2226553 + 934000 -33.791947 -33.797169 0.0052217896 274.81813 -2.4624042 + 934100 -33.789987 -33.797345 0.0073587988 387.28702 -2.5214158 + 934200 -33.786588 -33.796329 0.0097406249 512.6404 -2.4480172 + 934300 -33.792669 -33.797767 0.0050981546 268.31133 -2.3332017 + 934400 -33.794404 -33.797895 0.003490317 183.69227 -2.1366203 + 934500 -33.792635 -33.798068 0.0054324635 285.90571 -1.713357 + 934600 -33.78892 -33.799242 0.010322183 543.24731 -0.98317451 + 934700 -33.795158 -33.799268 0.0041105959 216.337 -0.48231026 + 934800 -33.796874 -33.799787 0.0029130045 153.30883 -0.075411388 + 934900 -33.794909 -33.800211 0.0053012438 278.99973 0.42521744 + 935000 -33.792056 -33.799605 0.007548302 397.2604 1.0146696 + 935100 -33.79409 -33.800336 0.0062463992 328.74242 1.5782384 + 935200 -33.797514 -33.800202 0.0026880786 141.47118 1.8597607 + 935300 -33.799245 -33.800199 0.000953216 50.166908 1.9531904 + 935400 -33.799256 -33.800582 0.0013259664 69.784427 1.9737984 + 935500 -33.795566 -33.800447 0.0048804867 256.85566 1.8771519 + 935600 -33.792696 -33.80114 0.0084439947 444.39991 1.5713048 + 935700 -33.795756 -33.801818 0.0060620789 319.04181 1.1005326 + 935800 -33.798364 -33.80172 0.0033557467 176.60995 0.67045873 + 935900 -33.797649 -33.802101 0.0044517933 234.29391 0.32916012 + 936000 -33.791424 -33.801813 0.010388994 546.76351 -0.062622035 + 936100 -33.793877 -33.801238 0.0073608708 387.39607 -0.75221535 + 936200 -33.796504 -33.801276 0.0047719883 251.14549 -1.2194362 + 936300 -33.795957 -33.80047 0.0045134656 237.53967 -1.5449871 + 936400 -33.793403 -33.7998 0.0063968199 336.65892 -1.7729351 + 936500 -33.791053 -33.799594 0.0085407068 449.48978 -1.9106823 + 936600 -33.794376 -33.79851 0.0041348501 217.61347 -2.0753686 + 936700 -33.796584 -33.798796 0.0022118315 116.40672 -2.0384354 + 936800 -33.795006 -33.798849 0.0038430835 202.25806 -1.7911987 + 936900 -33.791225 -33.798335 0.0071103184 374.20972 -1.2866763 + 937000 -33.792307 -33.799366 0.0070598395 371.55306 -0.68207265 + 937100 -33.794542 -33.799192 0.0046494015 244.69385 -0.18701487 + 937200 -33.795161 -33.799092 0.0039309213 206.88088 0.27028209 + 937300 -33.79108 -33.799486 0.0084054979 442.37386 0.88787768 + 937400 -33.788525 -33.798134 0.0096092674 505.72717 1.6011663 + 937500 -33.794449 -33.7984 0.0039511224 207.94405 1.9833184 + 937600 -33.794739 -33.798318 0.0035794428 188.38288 2.2476173 + 937700 -33.7927 -33.797239 0.004538735 238.86958 2.4319859 + 937800 -33.790901 -33.797712 0.0068108 358.44633 2.5291209 + 937900 -33.791211 -33.797439 0.0062281455 327.78174 2.4284598 + 938000 -33.792073 -33.797034 0.0049606183 261.07292 2.1968602 + 938100 -33.792472 -33.798053 0.0055804917 293.6963 1.8808526 + 938200 -33.793146 -33.797753 0.00460654 242.43809 1.4387183 + 938300 -33.792806 -33.798049 0.0052427237 275.91987 0.98319368 + 938400 -33.791534 -33.798915 0.0073812979 388.47112 0.4440902 + 938500 -33.792542 -33.798291 0.005748425 302.53448 -0.22573018 + 938600 -33.795319 -33.798961 0.0036421439 191.68279 -0.74359645 + 938700 -33.795937 -33.799055 0.0031184998 164.12386 -1.1172323 + 938800 -33.79124 -33.79818 0.0069399749 365.24469 -1.4160389 + 938900 -33.789476 -33.798875 0.0093991354 494.66811 -1.7854325 + 939000 -33.793358 -33.798144 0.0047856886 251.86652 -2.1721934 + 939100 -33.793993 -33.797844 0.0038512277 202.68668 -2.2999472 + 939200 -33.791607 -33.798208 0.0066011368 347.41194 -2.1987959 + 939300 -33.784899 -33.796834 0.011934939 628.12521 -1.8829381 + 939400 -33.791454 -33.797518 0.006064202 319.15354 -1.5888969 + 939500 -33.794394 -33.797765 0.0033710185 177.4137 -1.3362764 + 939600 -33.792985 -33.797322 0.0043368334 228.24367 -0.91994235 + 939700 -33.788712 -33.797934 0.0092216842 485.32901 -0.18749117 + 939800 -33.791507 -33.798095 0.0065883209 346.73745 0.44094582 + 939900 -33.79496 -33.798102 0.0031414055 165.32937 0.87635664 + 940000 -33.794416 -33.798623 0.0042071269 221.41734 1.2831621 + 940100 -33.793068 -33.798435 0.0053663761 282.42759 1.6413529 + 940200 -33.792321 -33.798547 0.0062262487 327.68192 1.9885784 + 940300 -33.792991 -33.799147 0.0061557577 323.97204 2.1986776 + 940400 -33.795627 -33.798906 0.0032780189 172.51921 2.1906906 + 940500 -33.797075 -33.799412 0.0023367272 122.97987 2.1410894 + 940600 -33.794822 -33.799814 0.0049914436 262.69523 1.9985247 + 940700 -33.790615 -33.79968 0.0090651494 477.09073 1.6236163 + 940800 -33.794442 -33.800867 0.0064251758 338.15127 1.1038933 + 940900 -33.796428 -33.801019 0.004591753 241.65986 0.61720836 + 941000 -33.796087 -33.801028 0.004940189 259.99774 0.17949268 + 941100 -33.793742 -33.801598 0.0078561723 413.46334 -0.2351641 + 941200 -33.787721 -33.80088 0.013158969 692.54479 -0.7869225 + 941300 -33.796285 -33.801108 0.0048226944 253.81411 -1.4685091 + 941400 -33.797562 -33.80098 0.0034181241 179.89282 -1.758425 + 941500 -33.795351 -33.800327 0.0049759231 261.87839 -1.9157304 + 941600 -33.79149 -33.80015 0.0086604083 455.78957 -1.9359076 + 941700 -33.793545 -33.799546 0.0060011726 315.83636 -1.9892891 + 941800 -33.795694 -33.798988 0.0032938096 173.35026 -1.9397443 + 941900 -33.79605 -33.798998 0.0029485303 155.17852 -1.7300653 + 942000 -33.79286 -33.798345 0.0054846734 288.65347 -1.3368433 + 942100 -33.789038 -33.797811 0.0087738713 461.76102 -0.62722705 + 942200 -33.792131 -33.797612 0.0054808731 288.45346 0.01315495 + 942300 -33.794093 -33.796861 0.0027684306 145.70003 0.4582999 + 942400 -33.792094 -33.796678 0.0045837564 241.23901 1.0062737 + 942500 -33.786921 -33.795932 0.0090106785 474.22397 1.8354033 + 942600 -33.789437 -33.795192 0.0057546164 302.86033 2.4410586 + 942700 -33.79091 -33.795425 0.0045154475 237.64397 2.9124123 + 942800 -33.789943 -33.79489 0.0049466183 260.33611 3.2114288 + 942900 -33.781961 -33.794585 0.012624207 664.40073 3.4963869 + 943000 -33.788723 -33.795712 0.0069892043 367.83559 3.4593332 + 943100 -33.7911 -33.795581 0.0044806334 235.81174 3.2616761 + 943200 -33.790473 -33.796654 0.0061812963 325.31611 2.9569175 + 943300 -33.790377 -33.797273 0.006896131 362.93722 2.4920601 + 943400 -33.793507 -33.797783 0.0042755357 225.01763 1.8679265 + 943500 -33.795617 -33.798791 0.0031740992 167.05001 1.3611876 + 943600 -33.794536 -33.799015 0.004479025 235.72709 0.88963009 + 943700 -33.787173 -33.799225 0.01205249 634.31177 0.20353952 + 943800 -33.792902 -33.800247 0.0073449857 386.56005 -0.73292034 + 943900 -33.795201 -33.799835 0.0046337295 243.86905 -1.3738616 + 944000 -33.795033 -33.800119 0.0050857378 267.65785 -1.8156603 + 944100 -33.792726 -33.800165 0.0074388058 391.49772 -2.1192658 + 944200 -33.789692 -33.799288 0.0095958169 505.01929 -2.3830711 + 944300 -33.795822 -33.800045 0.0042223002 222.2159 -2.5971561 + 944400 -33.796867 -33.799836 0.0029687773 156.2441 -2.5412463 + 944500 -33.794291 -33.799739 0.0054483972 286.74428 -2.2353599 + 944600 -33.791473 -33.800326 0.0088535342 465.95361 -1.6445119 + 944700 -33.793832 -33.799891 0.0060584582 318.85125 -1.0770864 + 944800 -33.794667 -33.799982 0.0053148991 279.7184 -0.50046331 + 944900 -33.794364 -33.799866 0.0055019481 289.56262 0.11806442 + 945000 -33.793223 -33.79892 0.0056973846 299.84827 0.78150165 + 945100 -33.789067 -33.798565 0.0094983778 499.89115 1.5918867 + 945200 -33.789437 -33.797276 0.0078389191 412.55532 2.371741 + 945300 -33.794041 -33.796504 0.0024636141 129.65781 2.7834947 + 945400 -33.793727 -33.796497 0.0027693993 145.75102 3.0291399 + 945500 -33.790802 -33.795718 0.0049159074 258.71982 3.1946889 + 945600 -33.789612 -33.796063 0.0064516231 339.54317 3.2072384 + 945700 -33.790361 -33.797075 0.0067142163 353.36322 2.9973798 + 945800 -33.793022 -33.797244 0.0042220787 222.20424 2.6257153 + 945900 -33.795119 -33.798524 0.0034056039 179.23389 2.2502323 + 946000 -33.795844 -33.799248 0.0034032592 179.1105 1.8292195 + 946100 -33.793337 -33.799701 0.0063639891 334.93107 1.3570583 + 946200 -33.7903 -33.801168 0.010868184 571.98285 0.64039227 + 946300 -33.796791 -33.801498 0.0047067875 247.71403 -0.19275961 + 946400 -33.797759 -33.801722 0.003962372 208.5361 -0.69135706 + 946500 -33.796218 -33.802082 0.0058633374 308.58222 -1.1268118 + 946600 -33.793892 -33.801469 0.0075770502 398.7734 -1.5946422 + 946700 -33.794696 -33.801378 0.0066819276 351.66389 -2.0421087 + 946800 -33.798135 -33.801167 0.0030314601 159.54304 -2.3554501 + 946900 -33.797998 -33.800596 0.0025982285 136.74245 -2.4066195 + 947000 -33.793839 -33.800622 0.006783374 357.00292 -2.1797572 + 947100 -33.792546 -33.800133 0.0075874347 399.31992 -1.8383215 + 947200 -33.794964 -33.799699 0.0047350395 249.2009 -1.4418957 + 947300 -33.796224 -33.800026 0.0038017983 200.08525 -1.0029819 + 947400 -33.795332 -33.799499 0.0041666431 219.28671 -0.51606743 + 947500 -33.789728 -33.798985 0.0092566816 487.17089 0.35697146 + 947600 -33.791969 -33.799052 0.0070829116 372.76732 1.189462 + 947700 -33.795208 -33.798134 0.0029260722 153.99657 1.679695 + 947800 -33.794403 -33.797999 0.0035960973 189.2594 2.1532634 + 947900 -33.7904 -33.79748 0.0070805268 372.64181 2.6698852 + 948000 -33.790396 -33.796304 0.0059081144 310.93879 3.0472872 + 948100 -33.791317 -33.796608 0.0052904717 278.4328 3.3071526 + 948200 -33.79117 -33.796012 0.0048419915 254.82969 3.3199478 + 948300 -33.787188 -33.795472 0.0082841293 435.98634 3.2080283 + 948400 -33.786977 -33.796651 0.0096739614 509.13196 2.8690272 + 948500 -33.793103 -33.796529 0.0034253351 180.27233 2.3122619 + 948600 -33.792884 -33.797122 0.004237893 223.03653 1.8923756 + 948700 -33.790425 -33.79819 0.0077646944 408.64894 1.3489717 + 948800 -33.791414 -33.798288 0.0068745339 361.80059 0.53235723 + 948900 -33.796724 -33.799556 0.0028322948 149.06115 -0.072404159 + 949000 -33.796364 -33.799846 0.0034812823 183.21678 -0.46594907 + 949100 -33.793518 -33.799942 0.0064248443 338.13383 -0.88763794 + 949200 -33.792855 -33.800773 0.0079186847 416.75331 -1.347039 + 949300 -33.796186 -33.800538 0.0043517755 229.03006 -1.8160081 + 949400 -33.799081 -33.800729 0.0016484278 86.755283 -2.0485183 + 949500 -33.799973 -33.800929 0.00095629935 50.329182 -2.0680028 + 949600 -33.798937 -33.80081 0.0018736357 98.607777 -1.9479085 + 949700 -33.797069 -33.801286 0.0042169137 221.93241 -1.5849122 + 949800 -33.793823 -33.80158 0.0077571885 408.25391 -0.98519287 + 949900 -33.794314 -33.801479 0.0071652073 377.09847 -0.34483476 + 950000 -33.797992 -33.801939 0.0039478256 207.77054 0.16886411 + 950100 -33.798509 -33.801645 0.0031360868 165.04945 0.58189392 + 950200 -33.792822 -33.801198 0.008375883 440.81525 1.1556427 + 950300 -33.791646 -33.801066 0.009420162 495.77472 1.8606525 + 950400 -33.795323 -33.800066 0.0047434997 249.64616 2.2298259 + 950500 -33.795678 -33.799881 0.0042030768 221.20418 2.4846092 + 950600 -33.792845 -33.79933 0.0064847564 341.28695 2.6896062 + 950700 -33.787626 -33.797875 0.010248805 539.38547 2.7774745 + 950800 -33.794251 -33.798154 0.0039033682 205.43079 2.5593626 + 950900 -33.795353 -33.797678 0.0023246917 122.34645 2.3514262 + 951000 -33.793136 -33.797508 0.0043717821 230.08299 2.0273038 + 951100 -33.789484 -33.797961 0.0084773517 446.15546 1.4698529 + 951200 -33.791305 -33.797548 0.0062436233 328.59633 0.64814535 + 951300 -33.794586 -33.798111 0.0035244878 185.49065 -0.01572457 + 951400 -33.795161 -33.798339 0.0031781667 167.26408 -0.48188409 + 951500 -33.788526 -33.798003 0.00947648 498.73869 -0.91616982 + 951600 -33.790284 -33.799141 0.0088568877 466.1301 -1.59964 + 951700 -33.794979 -33.799127 0.0041473446 218.27105 -2.0762547 + 951800 -33.795089 -33.799386 0.0042964895 226.12041 -2.2601317 + 951900 -33.792084 -33.800056 0.0079723634 419.57838 -2.2298638 + 952000 -33.790214 -33.799922 0.009707827 510.91428 -2.0784798 + 952100 -33.797327 -33.800741 0.0034137256 179.66133 -2.0048749 + 952200 -33.797426 -33.800938 0.0035115151 184.80791 -1.7590876 + 952300 -33.794139 -33.800862 0.0067229981 353.82539 -1.2565635 + 952400 -33.792736 -33.801338 0.0086018957 452.7101 -0.58275648 + 952500 -33.797303 -33.801084 0.0037816743 199.02614 -0.11155299 + 952600 -33.798877 -33.800999 0.0021219593 111.67683 0.26081392 + 952700 -33.79399 -33.800959 0.0069688019 366.76183 0.76355496 + 952800 -33.791389 -33.799845 0.0084556547 445.01356 1.4720067 + 952900 -33.795715 -33.799676 0.00396066 208.446 1.9180343 + 953000 -33.796272 -33.799433 0.0031610669 166.36413 2.1815967 + 953100 -33.793148 -33.7984 0.0052526638 276.44301 2.4082551 + 953200 -33.790086 -33.798453 0.0083664546 440.31904 2.610632 + 953300 -33.792239 -33.797898 0.0056598529 297.87301 2.5141619 + 953400 -33.794099 -33.797491 0.003392012 178.51857 2.3258419 + 953500 -33.794288 -33.798019 0.0037313714 196.37875 2.0850526 + 953600 -33.790571 -33.797631 0.0070600001 371.56151 1.6755746 + 953700 -33.789007 -33.797893 0.0088863128 467.67872 1.0067672 + 953800 -33.793837 -33.798536 0.0046997406 247.34316 0.29512575 + 953900 -33.794766 -33.798154 0.0033884965 178.33355 -0.23479924 + 954000 -33.792425 -33.798536 0.0061118163 321.65944 -0.67570663 + 954100 -33.787942 -33.798575 0.01063279 559.59426 -1.2398241 + 954200 -33.792911 -33.797993 0.0050823774 267.48099 -1.9655745 + 954300 -33.795734 -33.798607 0.0028728054 151.19319 -2.2572589 + 954400 -33.794461 -33.798366 0.0039043256 205.48118 -2.3627336 + 954500 -33.790128 -33.798095 0.0079674678 419.32073 -2.2499816 + 954600 -33.791672 -33.799251 0.0075790363 398.87792 -2.0471866 + 954700 -33.795199 -33.798948 0.0037483839 197.2741 -1.8992552 + 954800 -33.795257 -33.799441 0.0041841304 220.20705 -1.5461683 + 954900 -33.793479 -33.800049 0.0065697659 345.76092 -1.0314754 + 955000 -33.793434 -33.799735 0.0063012964 331.63161 -0.49985014 + 955100 -33.794699 -33.800527 0.0058282111 306.73355 0.090165427 + 955200 -33.795981 -33.800535 0.0045538248 239.66374 0.54062646 + 955300 -33.795718 -33.800222 0.0045039969 237.04134 0.93144548 + 955400 -33.791379 -33.800628 0.009248856 486.75904 1.4836844 + 955500 -33.791794 -33.799772 0.0079785535 419.90415 1.8688717 + 955600 -33.796956 -33.799821 0.0028650037 150.78259 1.9822304 + 955700 -33.796655 -33.799938 0.0032831243 172.7879 2.0590626 + 955800 -33.794547 -33.799261 0.0047133257 248.05813 1.9705552 + 955900 -33.792873 -33.79952 0.006646718 349.81084 1.7513689 + 956000 -33.793211 -33.799592 0.0063810244 335.82762 1.3824686 + 956100 -33.795109 -33.799138 0.0040295137 212.06971 0.88830015 + 956200 -33.797588 -33.799758 0.0021700676 114.20872 0.49913464 + 956300 -33.797508 -33.799733 0.0022249993 117.09973 0.18013296 + 956400 -33.792962 -33.799579 0.0066171917 348.2569 -0.23686502 + 956500 -33.792459 -33.800559 0.0081005625 426.32538 -0.83064671 + 956600 -33.795539 -33.800223 0.0046842871 246.52985 -1.4437673 + 956700 -33.796687 -33.800562 0.0038747223 203.92318 -1.8220394 + 956800 -33.793895 -33.800849 0.0069538276 365.97374 -2.0164819 + 956900 -33.788517 -33.79967 0.011153092 586.97727 -2.2590738 + 957000 -33.795368 -33.800546 0.0051784935 272.53949 -2.5037546 + 957100 -33.796134 -33.800193 0.0040594503 213.64525 -2.4995714 + 957200 -33.794403 -33.799619 0.0052158835 274.5073 -2.3345279 + 957300 -33.791361 -33.800221 0.008859109 466.247 -1.8881732 + 957400 -33.794328 -33.799306 0.0049773461 261.95329 -1.4831199 + 957500 -33.797635 -33.799696 0.0020604088 108.43748 -1.1833207 + 957600 -33.796405 -33.799926 0.0035214034 185.32832 -0.75507632 + 957700 -33.792764 -33.799045 0.0062814518 330.5872 -0.08820684 + 957800 -33.792558 -33.799747 0.0071884075 378.31947 0.67165078 + 957900 -33.794465 -33.799352 0.0048871479 257.20624 1.2617475 + 958000 -33.795479 -33.798701 0.0032214843 169.54384 1.6985101 + 958100 -33.793541 -33.79903 0.0054891006 288.88647 2.1027665 + 958200 -33.788703 -33.797565 0.0088617528 466.38615 2.5321848 + 958300 -33.791437 -33.797229 0.0057921147 304.83383 2.7469578 + 958400 -33.793867 -33.797593 0.0037256586 196.07809 2.7659739 + 958500 -33.79302 -33.796603 0.0035830876 188.5747 2.6464448 + 958600 -33.785445 -33.796757 0.011312268 595.3546 2.4050436 + 958700 -33.789451 -33.797568 0.0081169517 427.18793 1.7891376 + 958800 -33.79298 -33.797 0.0040201226 211.57547 1.2028336 + 958900 -33.793132 -33.798294 0.0051617606 271.65886 0.75182943 + 959000 -33.791089 -33.798419 0.0073298858 385.76535 0.23646568 + 959100 -33.787829 -33.797897 0.010068448 529.89345 -0.43698843 + 959200 -33.794954 -33.79974 0.004786667 251.91802 -1.0684927 + 959300 -33.795969 -33.79921 0.0032411887 170.58087 -1.4114852 + 959400 -33.79358 -33.799393 0.0058124155 305.90225 -1.594614 + 959500 -33.790689 -33.800086 0.009397027 494.55715 -1.7020355 + 959600 -33.795534 -33.799164 0.003630629 191.07677 -1.8938836 + 959700 -33.797585 -33.799997 0.0024122263 126.95332 -1.8576039 + 959800 -33.796161 -33.79992 0.0037592759 197.84734 -1.6650358 + 959900 -33.793055 -33.799099 0.0060449576 318.14072 -1.25668 + 960000 -33.792625 -33.80053 0.0079045998 416.01203 -0.69408276 + 960100 -33.795466 -33.79983 0.004364177 229.68274 -0.29952955 + 960200 -33.798067 -33.800153 0.0020863967 109.8052 0.049195648 + 960300 -33.799106 -33.800755 0.0016490683 86.788995 0.2805717 + 960400 -33.797588 -33.800307 0.0027193418 143.11653 0.48934052 + 960500 -33.793505 -33.800906 0.0074007366 389.49417 0.9102262 + 960600 -33.794195 -33.801391 0.0071959529 378.71658 1.1928022 + 960700 -33.797235 -33.800974 0.003738578 196.75802 1.2909159 + 960800 -33.797807 -33.801608 0.0038015352 200.07141 1.3819882 + 960900 -33.793552 -33.801236 0.007683978 404.40091 1.419173 + 961000 -33.791254 -33.800333 0.0090791664 477.82843 1.2958445 + 961100 -33.795509 -33.800972 0.005462745 287.4994 1.070293 + 961200 -33.796019 -33.799997 0.0039787611 209.39865 0.81233503 + 961300 -33.794369 -33.799611 0.0052423103 275.89812 0.5584595 + 961400 -33.791953 -33.799814 0.0078609773 413.71622 0.24338857 + 961500 -33.792599 -33.798244 0.0056451373 297.09854 -0.25351197 + 961600 -33.796291 -33.798968 0.002676766 140.87581 -0.58837237 + 961700 -33.795988 -33.798836 0.0028479778 149.88653 -0.79437652 + 961800 -33.791724 -33.797858 0.0061332483 322.78739 -0.95942584 + 961900 -33.790377 -33.79909 0.0087126987 458.54156 -1.0942566 + 962000 -33.793612 -33.798346 0.0047334608 249.11782 -1.3341832 + 962100 -33.794816 -33.798332 0.0035159446 185.04103 -1.3801117 + 962200 -33.790393 -33.798928 0.0085352974 449.20509 -1.19802 + 962300 -33.786432 -33.796647 0.010214558 537.58307 -1.0228375 + 962400 -33.793216 -33.797922 0.0047061942 247.6828 -0.8743673 + 962500 -33.793764 -33.797999 0.004234859 222.87685 -0.66569557 + 962600 -33.791572 -33.796693 0.0051208335 269.5049 -0.38895794 + 962700 -33.788059 -33.798231 0.010172165 535.35197 0.17753238 + 962800 -33.793843 -33.797921 0.0040778904 214.61574 0.43622662 + 962900 -33.795981 -33.798351 0.0023693086 124.6946 0.61039226 + 963000 -33.793895 -33.799642 0.005746778 302.4478 0.87890328 + 963100 -33.79104 -33.798945 0.0079050418 416.0353 1.0651502 + 963200 -33.794545 -33.80045 0.0059045023 310.74869 1.1611016 + 963300 -33.797399 -33.801157 0.003758545 197.80887 1.1533689 + 963400 -33.796872 -33.800505 0.0036338068 191.24401 1.0727124 + 963500 -33.7953 -33.801315 0.0060152354 316.57647 0.98815064 + 963600 -33.794333 -33.800992 0.0066594356 350.48016 0.76536891 + 963700 -33.795075 -33.800107 0.0050325419 264.85819 0.42429281 + 963800 -33.797585 -33.800847 0.0032621476 171.68392 0.13676543 + 963900 -33.798075 -33.800102 0.0020271945 106.68944 -0.13023597 + 964000 -33.794272 -33.799346 0.0050745176 267.06733 -0.38387313 + 964100 -33.791715 -33.800006 0.0082915942 436.37921 -0.73044659 + 964200 -33.793397 -33.798267 0.0048700017 256.30385 -1.2420064 + 964300 -33.794942 -33.799045 0.0041031552 215.9454 -1.515747 + 964400 -33.795189 -33.7991 0.0039115314 205.86041 -1.6796421 + 964500 -33.791091 -33.797443 0.0063517967 334.28939 -1.7690404 + 964600 -33.788963 -33.799168 0.010205401 537.10114 -1.6609587 + 964700 -33.793771 -33.798389 0.0046179643 243.03934 -1.7087916 + 964800 -33.794637 -33.798086 0.0034491973 181.52818 -1.6053902 + 964900 -33.793078 -33.799245 0.0061673488 324.58207 -1.2706092 + 965000 -33.792105 -33.797868 0.0057628528 303.2938 -0.93934849 + 965100 -33.792635 -33.798498 0.0058630164 308.56532 -0.51006364 + 965200 -33.793072 -33.799362 0.006289965 331.03525 -0.04648046 + 965300 -33.793651 -33.798116 0.0044647623 234.97646 0.30961251 + 965400 -33.793077 -33.799364 0.0062867646 330.86681 0.75272964 + 965500 -33.79201 -33.799437 0.0074273027 390.89232 1.1547898 + 965600 -33.793515 -33.798694 0.0051792203 272.57774 1.4059809 + 965700 -33.795786 -33.800375 0.0045882786 241.47701 1.6036718 + 965800 -33.796382 -33.799927 0.0035450612 186.57341 1.6316712 + 965900 -33.791779 -33.799494 0.0077150058 406.03388 1.6472045 + 966000 -33.789702 -33.801081 0.01137903 598.86822 1.5685136 + 966100 -33.796011 -33.800146 0.0041341747 217.57793 1.1876827 + 966200 -33.796078 -33.800567 0.004488267 236.21349 0.95572921 + 966300 -33.794238 -33.800775 0.0065367457 344.0231 0.68194635 + 966400 -33.79206 -33.799049 0.0069888721 367.81811 0.20352657 + 966500 -33.794013 -33.799996 0.0059832057 314.89078 -0.27182697 + 966600 -33.796852 -33.799476 0.0026235711 138.07621 -0.66474837 + 966700 -33.796148 -33.798618 0.0024699891 129.99332 -0.93731432 + 966800 -33.791989 -33.799324 0.0073352414 386.04721 -1.12331 + 966900 -33.791412 -33.797864 0.0064513181 339.52712 -1.460256 + 967000 -33.793019 -33.797647 0.0046287627 243.60765 -1.7154092 + 967100 -33.793968 -33.798386 0.0044184397 232.53854 -1.7820895 + 967200 -33.792667 -33.796871 0.0042043551 221.27146 -1.7795659 + 967300 -33.787273 -33.796826 0.0095532665 502.7799 -1.514283 + 967400 -33.790202 -33.797207 0.0070051671 368.6757 -1.2756597 + 967500 -33.793512 -33.796136 0.0026238562 138.09121 -1.1239211 + 967600 -33.792626 -33.797087 0.004461331 234.79587 -0.79130543 + 967700 -33.790539 -33.796755 0.0062160394 327.14461 -0.36023393 + 967800 -33.790683 -33.796277 0.0055939475 294.40447 0.062180854 + 967900 -33.791553 -33.798136 0.0065826106 346.43693 0.51969577 + 968000 -33.793231 -33.797516 0.0042849491 225.51305 0.79064587 + 968100 -33.794346 -33.798146 0.0037993392 199.95583 1.0028716 + 968200 -33.79375 -33.799332 0.0055815533 293.75217 1.1834059 + 968300 -33.790366 -33.798365 0.0079982219 420.93928 1.2691389 + 968400 -33.792641 -33.799985 0.0073442641 386.52207 1.2514297 + 968500 -33.796582 -33.800512 0.003929926 206.8285 1.1038582 + 968600 -33.796363 -33.799963 0.0036009072 189.51253 0.92743497 + 968700 -33.793867 -33.800978 0.0071113947 374.26636 0.74208277 + 968800 -33.793496 -33.800602 0.0071055714 373.95988 0.37193107 + 968900 -33.794889 -33.800284 0.0053952266 283.94596 -0.058977034 + 969000 -33.795046 -33.801142 0.0060958465 320.81897 -0.40248655 + 969100 -33.795058 -33.800079 0.0050208968 264.24532 -0.78650838 + 969200 -33.793612 -33.799963 0.0063512839 334.26241 -1.1179483 + 969300 -33.791129 -33.800319 0.009189518 483.63614 -1.3893535 + 969400 -33.793672 -33.798765 0.0050926497 268.02161 -1.7487465 + 969500 -33.796391 -33.799567 0.0031758598 167.14267 -1.9005767 + 969600 -33.795637 -33.799424 0.0037867736 199.29452 -1.8814488 + 969700 -33.789421 -33.797638 0.008217044 432.4557 -1.6480511 + 969800 -33.791034 -33.79928 0.0082463548 433.9983 -1.3457169 + 969900 -33.79357 -33.798136 0.0045664757 240.32954 -1.1353779 + 970000 -33.793665 -33.797717 0.0040512745 213.21496 -0.7879978 + 970100 -33.789518 -33.798355 0.0088372881 465.09859 -0.25463842 + 970200 -33.785314 -33.795144 0.0098303827 517.36428 0.38518729 + 970300 -33.793265 -33.796787 0.0035221655 185.36843 0.85662195 + 970400 -33.793393 -33.796816 0.0034226382 180.13039 1.1543936 + 970500 -33.790753 -33.795429 0.0046750714 246.04484 1.465416 + 970600 -33.787748 -33.797207 0.0094584669 497.79068 1.919546 + 970700 -33.791256 -33.797253 0.0059976547 315.65122 2.0370845 + 970800 -33.794362 -33.797727 0.0033642914 177.05965 2.0505718 + 970900 -33.793924 -33.799269 0.0053451998 281.3131 2.0310261 + 971000 -33.793148 -33.799039 0.005891785 310.07939 1.8183654 + 971100 -33.793775 -33.799893 0.0061180983 321.99006 1.5280224 + 971200 -33.795478 -33.800991 0.0055132621 290.15806 1.1597768 + 971300 -33.797212 -33.800516 0.0033041378 173.89383 0.7508476 + 971400 -33.797371 -33.801114 0.0037420555 196.94104 0.41768531 + 971500 -33.793203 -33.801065 0.0078628525 413.81491 0.01239059 + 971600 -33.791957 -33.799775 0.0078179202 411.45017 -0.63157396 + 971700 -33.796115 -33.800555 0.0044404988 233.69949 -1.1776305 + 971800 -33.796862 -33.799891 0.0030287693 159.40143 -1.557324 + 971900 -33.792875 -33.798969 0.0060933657 320.6884 -1.7595473 + 972000 -33.789237 -33.799614 0.010377565 546.16198 -1.9627547 + 972100 -33.793155 -33.798488 0.0053322357 280.63081 -2.2835217 + 972200 -33.795054 -33.799045 0.003991696 210.0794 -2.2772397 + 972300 -33.794333 -33.799312 0.0049790611 262.04355 -2.1363809 + 972400 -33.789899 -33.798258 0.008359228 439.93871 -1.8106732 + 972500 -33.791329 -33.799413 0.0080839297 425.45001 -1.2734102 + 972600 -33.796104 -33.799236 0.0031322973 164.85001 -1.0065275 + 972700 -33.795461 -33.798663 0.0032025112 168.54531 -0.64689539 + 972800 -33.792521 -33.799082 0.0065609385 345.29634 -0.0050326788 + 972900 -33.791258 -33.797857 0.006599179 347.3089 0.63077497 + 973000 -33.792378 -33.797426 0.0050480889 265.67642 1.2538986 + 973100 -33.792965 -33.797644 0.004678988 246.25097 1.8166681 + 973200 -33.790091 -33.795936 0.0058444715 307.58932 2.2779438 + 973300 -33.786834 -33.796005 0.0091714266 482.684 2.9200332 + 973400 -33.790685 -33.796175 0.0054898368 288.92521 3.2397928 + 973500 -33.792795 -33.795756 0.0029611817 155.84435 3.2744599 + 973600 -33.790914 -33.796939 0.0060248137 317.08057 3.2909777 + 973700 -33.782794 -33.796983 0.014189072 746.75819 3.063031 + 973800 -33.792625 -33.798492 0.0058665422 308.75088 2.3880929 + 973900 -33.794072 -33.799652 0.005579865 293.66332 1.9647407 + 974000 -33.79437 -33.799804 0.0054337945 285.97576 1.3985386 + 974100 -33.794528 -33.800212 0.0056843844 299.16408 0.78905559 + 974200 -33.795145 -33.800707 0.0055617972 292.71243 0.1841195 + 974300 -33.795901 -33.800355 0.0044539529 234.40757 -0.47721998 + 974400 -33.794998 -33.800406 0.0054079862 284.61749 -1.0280501 + 974500 -33.791447 -33.800056 0.0086084771 453.05647 -1.58712 + 974600 -33.792452 -33.799128 0.006676089 351.35661 -2.3248563 + 974700 -33.796517 -33.799479 0.0029620114 155.88802 -2.7452674 + 974800 -33.796546 -33.799238 0.0026913457 141.64312 -2.8732823 + 974900 -33.79201 -33.798874 0.0068641635 361.2548 -2.7962669 + 975000 -33.791706 -33.799793 0.0080871597 425.62 -2.5172765 + 975100 -33.794685 -33.799691 0.0050055476 263.43751 -2.2610942 + 975200 -33.796105 -33.800246 0.0041408189 217.92761 -1.9250488 + 975300 -33.795235 -33.800538 0.0053034596 279.11635 -1.4324015 + 975400 -33.789215 -33.799729 0.010513659 553.32451 -0.68339875 + 975500 -33.793384 -33.800212 0.0068276792 359.33467 0.059322792 + 975600 -33.796675 -33.799846 0.0031705155 166.8614 0.51638923 + 975700 -33.79562 -33.799204 0.0035840524 188.62548 0.94203228 + 975800 -33.792679 -33.798895 0.0062158422 327.13423 1.502814 + 975900 -33.791492 -33.79787 0.006377359 335.63472 2.0336704 + 976000 -33.792063 -33.797421 0.0053576221 281.96687 2.3886306 + 976100 -33.792164 -33.797459 0.0052945326 278.64653 2.6552447 + 976200 -33.788783 -33.796678 0.0078954324 415.52957 2.7934876 + 976300 -33.788629 -33.797251 0.0086216784 453.75124 2.7039941 + 976400 -33.793448 -33.797946 0.0044979585 236.72354 2.4682663 + 976500 -33.794224 -33.798193 0.003968488 208.85798 2.1696704 + 976600 -33.791914 -33.798984 0.0070702308 372.09994 1.7549612 + 976700 -33.787452 -33.799272 0.011820043 622.07831 1.1586237 + 976800 -33.795507 -33.800037 0.0045308931 238.45686 0.31368845 + 976900 -33.796802 -33.800332 0.0035295161 185.75529 -0.20006256 + 977000 -33.794744 -33.80021 0.0054656235 287.65089 -0.64015383 + 977100 -33.791215 -33.799746 0.0085305992 448.95783 -1.2510769 + 977200 -33.794185 -33.799641 0.0054557798 287.13282 -1.9405849 + 977300 -33.797746 -33.799525 0.0017790249 93.628491 -2.3113605 + 977400 -33.797487 -33.799315 0.001827887 96.20006 -2.4512464 + 977500 -33.795964 -33.79944 0.0034755839 182.91688 -2.409302 + 977600 -33.792827 -33.79933 0.0065031483 342.25489 -2.161538 + 977700 -33.791623 -33.799675 0.008052153 423.77763 -1.7952589 + 977800 -33.795627 -33.800305 0.0046778839 246.19285 -1.4278761 + 977900 -33.797398 -33.800415 0.0030171206 158.78836 -1.0913658 + 978000 -33.794819 -33.800508 0.0056889902 299.40648 -0.63290592 + 978100 -33.787245 -33.799856 0.012610588 663.684 0.30299328 + 978200 -33.794131 -33.800003 0.0058718565 309.03057 0.89037645 + 978300 -33.795929 -33.799717 0.0037886626 199.39393 1.3068218 + 978400 -33.794631 -33.798979 0.0043486258 228.8643 1.7232262 + 978500 -33.789836 -33.798214 0.0083771328 440.88103 2.2011339 + 978600 -33.790551 -33.797499 0.0069478687 365.66013 2.5407083 + 978700 -33.792268 -33.796864 0.0045952711 241.84502 2.7164195 + 978800 -33.791878 -33.796761 0.0048824902 256.9611 2.7292919 + 978900 -33.790742 -33.796466 0.0057243949 301.2698 2.6153303 + 979000 -33.78983 -33.79646 0.0066298527 348.92323 2.3491707 + 979100 -33.79182 -33.797138 0.0053185301 279.90949 1.8815191 + 979200 -33.795093 -33.797694 0.002601429 136.91089 1.4808143 + 979300 -33.794497 -33.798005 0.0035080964 184.62798 1.123018 + 979400 -33.789829 -33.798501 0.0086725639 456.4293 0.60997338 + 979500 -33.791013 -33.799036 0.008023274 422.25775 -0.10844543 + 979600 -33.793726 -33.799446 0.0057200512 301.04119 -0.75476678 + 979700 -33.794506 -33.799792 0.0052865347 278.2256 -1.252544 + 979800 -33.794338 -33.799701 0.0053629467 282.2471 -1.6025206 + 979900 -33.791731 -33.799696 0.0079653219 419.20779 -1.8746594 + 980000 -33.790303 -33.799716 0.0094131216 495.40419 -2.094924 + 980100 -33.796006 -33.799895 0.0038889726 204.67316 -2.2388104 + 980200 -33.796654 -33.80012 0.0034653345 182.37746 -2.1782256 + 980300 -33.79387 -33.800304 0.0064346106 338.64782 -1.8573405 + 980400 -33.791278 -33.800331 0.0090528231 476.442 -1.2846871 + 980500 -33.797671 -33.80102 0.0033487412 176.24126 -0.89894634 + 980600 -33.798714 -33.801216 0.0025014424 131.64868 -0.55791201 + 980700 -33.796268 -33.801127 0.0048582437 255.68503 -0.049922483 + 980800 -33.792598 -33.8009 0.0083019437 436.92389 0.66635686 + 980900 -33.794696 -33.80074 0.0060441136 318.09631 1.333557 + 981000 -33.7975 -33.800406 0.002906295 152.95571 1.7439909 + 981100 -33.797186 -33.800108 0.0029218943 153.77669 2.0410885 + 981200 -33.790807 -33.799079 0.0082720311 435.34962 2.4968632 + 981300 -33.791841 -33.798737 0.0068958623 362.92308 2.764354 + 981400 -33.794625 -33.798468 0.0038430499 202.25629 2.8190966 + 981500 -33.794581 -33.798231 0.0036500847 192.1007 2.7894567 + 981600 -33.788388 -33.798217 0.0098284376 517.2619 2.6241653 + 981700 -33.789685 -33.798511 0.0088259757 464.50323 2.1292007 + 981800 -33.793587 -33.798996 0.0054083578 284.63705 1.6222626 + 981900 -33.794144 -33.799712 0.0055677356 293.02496 1.1228784 + 982000 -33.794134 -33.799766 0.0056325473 296.43594 0.61281049 + 982100 -33.794169 -33.80014 0.0059709225 314.24433 0.081032124 + 982200 -33.795384 -33.800543 0.0051593213 271.53048 -0.47673344 + 982300 -33.796303 -33.800317 0.0040139144 211.24873 -0.9082241 + 982400 -33.794711 -33.800396 0.0056849343 299.19302 -1.2447646 + 982500 -33.790513 -33.79995 0.0094367242 496.64637 -1.5980375 + 982600 -33.793766 -33.799309 0.0055427871 291.71194 -1.9835909 + 982700 -33.796972 -33.799612 0.0026402761 138.95538 -2.1620436 + 982800 -33.796266 -33.799153 0.0028868758 151.9337 -2.1480164 + 982900 -33.794303 -33.79886 0.0045573089 239.8471 -1.9065401 + 983000 -33.792268 -33.799238 0.0069700101 366.82542 -1.5108327 + 983100 -33.792228 -33.798637 0.0064091772 337.30928 -1.0470245 + 983200 -33.795253 -33.799055 0.0038020652 200.0993 -0.58343827 + 983300 -33.797027 -33.799293 0.0022662633 119.27141 -0.27295663 + 983400 -33.795378 -33.79882 0.003441567 181.1266 0.095711956 + 983500 -33.790498 -33.798769 0.0082706053 435.27458 0.76829633 + 983600 -33.792407 -33.798638 0.0062304177 327.90132 1.2673596 + 983700 -33.794588 -33.7982 0.0036118116 190.08642 1.6253677 + 983800 -33.793971 -33.798275 0.0043040505 226.51834 1.8947552 + 983900 -33.787421 -33.797337 0.0099160893 521.87494 2.1636492 + 984000 -33.789759 -33.797215 0.0074564912 392.42848 2.2840742 + 984100 -33.792565 -33.797618 0.0050535628 265.9645 2.2066002 + 984200 -33.792586 -33.797404 0.0048179099 253.5623 2.0197893 + 984300 -33.791201 -33.79782 0.0066187826 348.34062 1.8035089 + 984400 -33.790353 -33.79862 0.0082675014 435.11123 1.3729237 + 984500 -33.794565 -33.799081 0.0045154748 237.64541 0.82879215 + 984600 -33.796358 -33.79997 0.0036114017 190.06485 0.48782786 + 984700 -33.795061 -33.800483 0.0054220978 285.36017 0.11547021 + 984800 -33.790661 -33.800495 0.0098335891 517.53302 -0.31188099 + 984900 -33.796122 -33.801591 0.0054687692 287.81645 -0.85173 + 985000 -33.798709 -33.801705 0.0029957431 157.66329 -1.1943564 + 985100 -33.797199 -33.801628 0.0044282541 233.05506 -1.3462021 + 985200 -33.794064 -33.801702 0.0076382012 401.99172 -1.4205328 + 985300 -33.794744 -33.801265 0.0065211833 343.20406 -1.5668944 + 985400 -33.797906 -33.801298 0.0033923331 178.53547 -1.595274 + 985500 -33.800149 -33.801399 0.0012493023 65.749667 -1.5573359 + 985600 -33.799727 -33.801223 0.0014967108 78.770557 -1.4211505 + 985700 -33.79781 -33.80147 0.0036602738 192.63695 -1.0431379 + 985800 -33.795136 -33.801492 0.0063557948 334.49981 -0.52556076 + 985900 -33.793568 -33.801324 0.0077561462 408.19906 0.12226668 + 986000 -33.796808 -33.801601 0.0047933409 252.26926 0.66962117 + 986100 -33.798674 -33.80125 0.0025758071 135.56243 0.9730585 + 986200 -33.79638 -33.800881 0.0045003397 236.84887 1.3250219 + 986300 -33.791197 -33.800109 0.00891189 469.02482 1.8516196 + 986400 -33.794083 -33.799219 0.0051368253 270.34654 2.051753 + 986500 -33.795488 -33.799027 0.0035388329 186.24562 2.2118027 + 986600 -33.793232 -33.798205 0.0049721099 261.67771 2.2739211 + 986700 -33.788091 -33.796967 0.0088764819 467.16132 2.1385029 + 986800 -33.790902 -33.797398 0.0064961582 341.88701 1.9093719 + 986900 -33.792639 -33.796924 0.0042850762 225.51974 1.5640862 + 987000 -33.791892 -33.797048 0.0051551602 271.31148 1.1640624 + 987100 -33.784439 -33.797591 0.013152649 692.21218 0.84323464 + 987200 -33.789069 -33.797196 0.0081269596 427.71464 -0.010076688 + 987300 -33.793598 -33.798301 0.0047039616 247.5653 -0.54777654 + 987400 -33.793459 -33.798708 0.0052489427 276.24717 -0.83872659 + 987500 -33.791682 -33.797936 0.0062542576 329.156 -1.1786813 + 987600 -33.790387 -33.798853 0.0084660569 445.56102 -1.4327551 + 987700 -33.79453 -33.798584 0.0040538333 213.34963 -1.668647 + 987800 -33.796148 -33.798406 0.0022572279 118.79589 -1.7660724 + 987900 -33.793546 -33.798909 0.005363661 282.2847 -1.6042465 + 988000 -33.790051 -33.797468 0.0074170795 390.35428 -1.3059101 + 988100 -33.792104 -33.797848 0.0057440522 302.30434 -1.0103635 + 988200 -33.793466 -33.798441 0.0049750195 261.83084 -0.62354192 + 988300 -33.793066 -33.797119 0.0040535081 213.33252 -0.26308667 + 988400 -33.786058 -33.79718 0.011121715 585.32597 0.41508815 + 988500 -33.789123 -33.7971 0.0079761449 419.77739 1.093351 + 988600 -33.793291 -33.796316 0.0030246198 159.18304 1.4047527 + 988700 -33.792375 -33.797257 0.004881822 256.92594 1.7615875 + 988800 -33.790152 -33.796174 0.006021681 316.9157 2.11601 + 988900 -33.788742 -33.795443 0.0067015736 352.69784 2.3113208 + 989000 -33.792004 -33.79703 0.0050255909 264.49236 2.4154167 + 989100 -33.794907 -33.796508 0.001600923 84.25515 2.3586979 + 989200 -33.793618 -33.79675 0.003131657 164.81631 2.1896031 + 989300 -33.790509 -33.797795 0.0072856411 383.43679 1.929197 + 989400 -33.790781 -33.797241 0.0064601226 339.99049 1.4126605 + 989500 -33.793535 -33.799037 0.005501939 289.56214 0.84782769 + 989600 -33.795546 -33.799521 0.0039755485 209.22957 0.4147048 + 989700 -33.796814 -33.799601 0.0027876933 146.71381 0.045873083 + 989800 -33.796407 -33.800744 0.0043373873 228.27283 -0.2551775 + 989900 -33.792445 -33.800681 0.0082356459 433.4347 -0.50157451 + 990000 -33.79361 -33.801221 0.0076112608 400.57387 -0.87356352 + 990100 -33.797916 -33.802345 0.0044289354 233.09092 -1.1606995 + 990200 -33.798097 -33.801915 0.0038185838 200.96866 -1.2387646 + 990300 -33.796468 -33.802282 0.0058142531 305.99896 -1.200262 + 990400 -33.795792 -33.802575 0.0067825552 356.95983 -1.0961813 + 990500 -33.796469 -33.801778 0.0053095181 279.4352 -0.93162851 + 990600 -33.796647 -33.802282 0.0056350618 296.56828 -0.69333609 + 990700 -33.796319 -33.801769 0.0054501144 286.83466 -0.40451401 + 990800 -33.794799 -33.800819 0.0060197295 316.813 -0.019906994 + 990900 -33.787069 -33.800933 0.013863886 729.64393 0.62451682 + 991000 -33.793916 -33.799442 0.0055258083 290.81836 0.98470268 + 991100 -33.796064 -33.79904 0.0029758138 156.61443 1.2507652 + 991200 -33.794299 -33.799262 0.0049626664 261.18071 1.5079519 + 991300 -33.790525 -33.797195 0.0066699918 351.03572 1.7944699 + 991400 -33.790907 -33.79765 0.006742726 354.86366 1.9936527 + 991500 -33.79187 -33.797656 0.0057855209 304.4868 2.0178377 + 991600 -33.791962 -33.796166 0.004203141 221.20756 1.9805251 + 991700 -33.790512 -33.797157 0.0066454002 349.74149 1.8709839 + 991800 -33.786406 -33.79637 0.0099634941 524.36981 1.6102204 + 991900 -33.785756 -33.794389 0.0086335195 454.37443 1.1445923 + 992000 -33.791601 -33.796601 0.0049995798 263.12343 0.69221522 + 992100 -33.792103 -33.79542 0.0033163559 174.53685 0.31533765 + 992200 -33.788793 -33.79491 0.0061162816 321.89445 0.040128606 + 992300 -33.785914 -33.796838 0.01092449 574.94617 -0.37785947 + 992400 -33.792266 -33.795523 0.0032569529 171.41052 -0.94046156 + 992500 -33.7933 -33.796834 0.003534298 186.00695 -1.0585736 + 992600 -33.791315 -33.797592 0.0062775854 330.38372 -1.1535785 + 992700 -33.789157 -33.79598 0.0068233314 359.10585 -1.2090533 + 992800 -33.792527 -33.798584 0.0060567226 318.75991 -1.1247812 + 992900 -33.79553 -33.798419 0.0028892295 152.05757 -1.148659 + 993000 -33.794808 -33.797796 0.0029873774 157.22301 -0.98240473 + 993100 -33.792831 -33.799171 0.0063404259 333.69096 -0.62846297 + 993200 -33.792095 -33.797872 0.0057776878 304.07456 -0.34554677 + 993300 -33.79247 -33.797956 0.0054868569 288.76838 0.081521636 + 993400 -33.793906 -33.799005 0.0050989284 268.35206 0.43155875 + 993500 -33.795549 -33.797879 0.0023304109 122.64745 0.62084597 + 993600 -33.794004 -33.798456 0.0044520916 234.30961 0.93356658 + 993700 -33.789161 -33.798817 0.0096554675 508.15864 1.2655624 + 993800 -33.791669 -33.797736 0.0060669623 319.29881 1.4135521 + 993900 -33.794408 -33.799705 0.0052973041 278.79239 1.5700584 + 994000 -33.794496 -33.799351 0.0048549049 255.50932 1.509327 + 994100 -33.79378 -33.799022 0.0052419192 275.87753 1.4337423 + 994200 -33.793511 -33.800625 0.0071139976 374.40335 1.318536 + 994300 -33.794344 -33.799627 0.0052827403 278.02591 0.94747962 + 994400 -33.794916 -33.800079 0.0051630136 271.7248 0.67074329 + 994500 -33.794911 -33.800872 0.0059605515 313.69851 0.34176897 + 994600 -33.793402 -33.799327 0.0059255052 311.85405 -0.14393859 + 994700 -33.792998 -33.800349 0.0073512346 386.88892 -0.5183956 + 994800 -33.795258 -33.800292 0.005034075 264.93888 -0.99217131 + 994900 -33.79644 -33.799501 0.0030603025 161.06099 -1.3668354 + 995000 -33.793746 -33.800571 0.0068252236 359.20543 -1.466502 + 995100 -33.78899 -33.799374 0.010383562 546.47762 -1.7045545 + 995200 -33.795371 -33.799933 0.0045619492 240.09132 -1.9821944 + 995300 -33.796556 -33.801043 0.0044869459 236.14396 -1.9426477 + 995400 -33.795267 -33.799981 0.0047145808 248.12418 -1.8955677 + 995500 -33.792654 -33.800301 0.007647093 402.45969 -1.5978562 + 995600 -33.794294 -33.800937 0.0066424693 349.58724 -1.247736 + 995700 -33.798331 -33.800195 0.0018634332 98.070826 -1.0957736 + 995800 -33.797913 -33.800654 0.0027407366 144.24252 -0.78284118 + 995900 -33.795254 -33.800241 0.0049869993 262.46132 -0.31787605 + 996000 -33.793874 -33.79898 0.0051056261 268.70455 0.2005506 + 996100 -33.792956 -33.799918 0.0069616995 366.38803 0.8925227 + 996200 -33.793025 -33.798365 0.0053402025 281.0501 1.3981414 + 996300 -33.792421 -33.797693 0.0052720187 277.46164 1.8744775 + 996400 -33.790555 -33.798515 0.0079596381 418.90865 2.4273639 + 996500 -33.790194 -33.796232 0.0060380725 317.77837 2.6620886 + 996600 -33.792751 -33.797335 0.0045840945 241.2568 2.8251919 + 996700 -33.794172 -33.797867 0.0036950676 194.46811 2.8421516 + 996800 -33.792795 -33.796845 0.0040496509 213.12951 2.6017477 + 996900 -33.786335 -33.798347 0.012011553 632.15734 2.3181492 + 997000 -33.791499 -33.798487 0.0069882658 367.7862 1.6675378 + 997100 -33.79408 -33.798125 0.0040457013 212.92165 1.0471421 + 997200 -33.793543 -33.799451 0.0059071976 310.89054 0.60817289 + 997300 -33.792151 -33.79833 0.0061793166 325.21192 0.017980892 + 997400 -33.787605 -33.797509 0.0099041665 521.24745 -0.70140423 + 997500 -33.791516 -33.798718 0.0072023281 379.0521 -1.4026677 + 997600 -33.795209 -33.797521 0.0023115161 121.65303 -1.9051833 + 997700 -33.793886 -33.797945 0.0040583482 213.58725 -2.1067956 + 997800 -33.790016 -33.798177 0.0081608123 429.49627 -2.0870268 + 997900 -33.790787 -33.797137 0.0063498263 334.1857 -2.1385175 + 998000 -33.792835 -33.799104 0.0062696665 329.96695 -1.964581 + 998100 -33.79378 -33.798796 0.0050166848 264.02365 -1.684822 + 998200 -33.793565 -33.798633 0.0050682632 266.73817 -1.3269278 + 998300 -33.791194 -33.80002 0.0088263342 464.5221 -0.70779155 + 998400 -33.791354 -33.798546 0.0071921134 378.51452 -0.071887108 + 998500 -33.795495 -33.799293 0.0037981127 199.89128 0.40854419 + 998600 -33.795965 -33.799668 0.0037025388 194.86131 0.85978245 + 998700 -33.792623 -33.797947 0.0053244692 280.22206 1.351317 + 998800 -33.789805 -33.798761 0.0089556798 471.32944 2.0446974 + 998900 -33.792155 -33.798291 0.0061361263 322.93885 2.5429443 + 999000 -33.793414 -33.79729 0.0038754973 203.96397 2.8110015 + 999100 -33.792054 -33.798501 0.0064468487 339.2919 3.0422782 + 999200 -33.784334 -33.797268 0.012934331 680.7223 3.2576974 + 999300 -33.790579 -33.797794 0.0072149386 379.71578 3.0376044 + 999400 -33.793701 -33.799185 0.0054841817 288.62759 2.8216253 + 999500 -33.793918 -33.798494 0.0045756332 240.81149 2.54288 + 999600 -33.792328 -33.799011 0.0066822314 351.67988 2.1069937 + 999700 -33.791838 -33.799873 0.008034754 422.86193 1.5497872 + 999800 -33.795632 -33.799151 0.0035193584 185.22069 0.92913223 + 999900 -33.796839 -33.799924 0.0030851809 162.37032 0.46058322 + 1000000 -33.794152 -33.799836 0.0056840524 299.14661 0.054937448 + 1000100 -33.790058 -33.798363 0.0083047507 437.07162 -0.56556796 + 1000200 -33.793128 -33.799661 0.0065334476 343.84952 -1.2437276 + 1000300 -33.794669 -33.798833 0.004164271 219.16187 -1.6821043 + 1000400 -33.793593 -33.798369 0.0047758557 251.34902 -1.9134243 + 1000486 -33.786963 -33.799247 0.012283799 646.48538 -1.9534421 +Loop time of 5.71522 on 4 procs for 1000000 steps with 14 atoms + +Performance: 15117529.470 fs/day, 0.000 hours/fs, 174971.406 timesteps/s, 2.450 Matom-step/s +96.5% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.10592 | 1.2856 | 2.7417 | 91.4 | 22.49 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 1.5526 | 3.078 | 4.3566 | 61.3 | 53.86 +Output | 0.23935 | 0.25402 | 0.28213 | 3.3 | 4.44 +Modify | 0.59025 | 0.70581 | 0.79451 | 9.6 | 12.35 +Other | | 0.3918 | | | 6.86 + +Nlocal: 3.5 ave 6 max 2 min +Histogram: 1 0 2 0 0 0 0 0 0 1 +Nghost: 10.5 ave 12 max 8 min +Histogram: 1 0 0 0 0 0 0 2 0 1 +Neighs: 22.75 ave 50 max 1 min +Histogram: 1 1 0 0 0 0 1 0 0 1 + +Total # of neighbors = 91 +Ave neighs/atom = 6.5 +Neighbor list builds = 0 +Dangerous builds = 0 + +fix 2 all nve/eff + +run 1000000 +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +WARNING: One or more atoms are time integrated more than once (src/modify.cpp:296) +Per MPI rank memory allocation (min/avg/max) = 6.38 | 6.38 | 6.38 Mbytes + Step TotEng PotEng KinEng Temp Press + 1000486 -33.786963 -33.799247 0.012283799 646.48538 -1.9534421 + 1000500 -33.785243 -33.799175 0.013931445 733.19951 -1.9711635 + 1000600 -33.791176 -33.79817 0.006993769 368.07583 -2.0528374 + 1000700 -33.793949 -33.798364 0.0044144912 232.33074 -1.6908684 + 1000800 -33.793498 -33.799473 0.0059755656 314.48869 -0.87004294 + 1000900 -33.792385 -33.799393 0.0070077989 368.8142 0.29540256 + 1001000 -33.792566 -33.797984 0.0054174886 285.11759 1.3203189 + 1001100 -33.794046 -33.797873 0.0038269821 201.41065 2.0493517 + 1001200 -33.794059 -33.798639 0.0045797249 241.02684 2.4242619 + 1001300 -33.78955 -33.798368 0.0088177154 464.0685 2.2180375 + 1001400 -33.790202 -33.797845 0.0076428165 402.23462 1.4107874 + 1001500 -33.79522 -33.799372 0.0041520624 218.51934 0.61906546 + 1001600 -33.795145 -33.800309 0.0051638227 271.76738 -0.19617782 + 1001700 -33.793562 -33.799515 0.0059524525 313.27227 -1.0598311 + 1001800 -33.79227 -33.798326 0.0060561202 318.7282 -1.8672121 + 1001900 -33.793501 -33.798967 0.0054662774 287.6853 -2.4503268 + 1002000 -33.795848 -33.79936 0.0035116504 184.81503 -2.4759191 + 1002100 -33.79503 -33.798547 0.0035165852 185.07474 -2.0561785 + 1002200 -33.790041 -33.797888 0.0078473619 412.99966 -1.0148359 + 1002300 -33.791462 -33.799378 0.0079155885 416.59036 0.47673309 + 1002400 -33.794293 -33.799261 0.0049677644 261.44901 1.4103021 + 1002500 -33.793929 -33.797699 0.0037701459 198.41942 1.873257 + 1002600 -33.792559 -33.797606 0.0050466948 265.60305 2.1148756 + 1002700 -33.791593 -33.799426 0.0078334165 412.26572 1.8530443 + 1002800 -33.793903 -33.799565 0.0056626755 298.02156 1.0624355 + 1002900 -33.797601 -33.79925 0.0016493886 86.80585 0.36624204 + 1003000 -33.797215 -33.799793 0.002577871 135.67105 -0.27239385 + 1003100 -33.794374 -33.800902 0.0065282822 343.57767 -1.0315125 + 1003200 -33.793492 -33.800382 0.0068900301 362.61614 -1.8163491 + 1003300 -33.794738 -33.799507 0.0047690159 250.98905 -2.4360083 + 1003400 -33.796224 -33.800582 0.0043577513 229.34457 -2.4378255 + 1003500 -33.797842 -33.801645 0.00380315 200.15639 -1.9852279 + 1003600 -33.797745 -33.801283 0.0035382934 186.21723 -1.3559373 + 1003700 -33.793471 -33.800352 0.0068815594 362.17034 -0.1147215 + 1003800 -33.792537 -33.800806 0.0082691638 435.19872 1.5240971 + 1003900 -33.796268 -33.800372 0.0041040298 215.99143 2.4120229 + 1004000 -33.796685 -33.798804 0.0021187169 111.50618 2.727714 + 1004100 -33.789899 -33.797031 0.0071321369 375.358 2.5068704 + 1004200 -33.790167 -33.799281 0.0091142825 479.67656 1.5244521 + 1004300 -33.794582 -33.799462 0.0048806131 256.86232 0.52548694 + 1004400 -33.795053 -33.797803 0.0027505535 144.75918 -0.39673621 + 1004500 -33.791768 -33.797146 0.0053780979 283.04449 -1.2690935 + 1004600 -33.788094 -33.798757 0.010663165 561.19287 -1.917339 + 1004700 -33.790986 -33.797785 0.006798618 357.8052 -2.4392187 + 1004800 -33.791978 -33.795984 0.0040056998 210.8164 -2.3534434 + 1004900 -33.792029 -33.797534 0.0055052486 289.73632 -1.4504532 + 1005000 -33.792575 -33.799618 0.0070431496 370.67468 -0.31425856 + 1005100 -33.795163 -33.798543 0.0033804599 177.91059 0.65727308 + 1005200 -33.795769 -33.797484 0.0017147916 90.247952 1.4461621 + 1005300 -33.792624 -33.798295 0.0056709311 298.45605 2.1227448 + 1005400 -33.789309 -33.799515 0.010205785 537.12136 2.746615 + 1005500 -33.792125 -33.797569 0.0054437792 286.50124 2.7511366 + 1005600 -33.794388 -33.797893 0.0035050275 184.46647 2.2511664 + 1005700 -33.794919 -33.800639 0.0057204344 301.06136 1.6356217 + 1005800 -33.793711 -33.801414 0.00770276 405.38939 0.73761163 + 1005900 -33.792718 -33.799125 0.0064065097 337.16889 -0.61631737 + 1006000 -33.79524 -33.799238 0.0039987593 210.45114 -1.5528834 + 1006100 -33.796423 -33.800759 0.0043359527 228.19732 -1.8896023 + 1006200 -33.793807 -33.79991 0.0061030875 321.20005 -1.8758022 + 1006300 -33.789147 -33.796702 0.0075553861 397.63323 -1.1853091 + 1006400 -33.792401 -33.798491 0.0060902825 320.52614 -0.24977407 + 1006500 -33.794127 -33.800487 0.0063592363 334.68093 0.51763721 + 1006600 -33.793632 -33.798611 0.0049788594 262.03293 1.2035991 + 1006700 -33.791971 -33.795809 0.003838156 201.99873 1.5635305 + 1006800 -33.788714 -33.797249 0.0085350003 449.18945 1.7972444 + 1006900 -33.783316 -33.798819 0.015502458 815.88055 1.8694324 + 1007000 -33.791678 -33.79593 0.0042518163 223.7693 0.98819441 + 1007100 -33.793072 -33.795282 0.0022108517 116.35515 0.34390502 + 1007200 -33.791558 -33.798049 0.0064917434 341.65466 -0.17937899 + 1007300 -33.787341 -33.798805 0.011464532 603.36812 -1.1682924 + 1007400 -33.79088 -33.795353 0.0044728293 235.40102 -2.3143236 + 1007500 -33.794666 -33.796515 0.0018488462 97.303128 -2.6180308 + 1007600 -33.793746 -33.799053 0.0053073245 279.31975 -2.4688024 + 1007700 -33.790147 -33.798951 0.008804216 463.35804 -1.7866682 + 1007800 -33.790786 -33.796263 0.0054772448 288.26251 -0.91177952 + 1007900 -33.793445 -33.798505 0.005060056 266.30623 -0.13431575 + 1008000 -33.793943 -33.801233 0.0072898291 383.6572 0.6436684 + 1008100 -33.793682 -33.799521 0.0058389658 307.29956 0.97331865 + 1008200 -33.792968 -33.796922 0.0039534805 208.06815 0.84133183 + 1008300 -33.791694 -33.799063 0.0073695492 387.8528 0.74958557 + 1008400 -33.792837 -33.801209 0.0083713352 440.5759 0.26728747 + 1008500 -33.795602 -33.798993 0.0033903315 178.43012 -0.51656498 + 1008600 -33.795951 -33.798041 0.0020900965 109.99991 -0.96280908 + 1008700 -33.791982 -33.799989 0.0080068796 421.39493 -1.2827009 + 1008800 -33.78821 -33.800138 0.011928147 627.76774 -1.7412533 + 1008900 -33.792104 -33.795908 0.0038038934 200.19551 -2.0410329 + 1009000 -33.79277 -33.795702 0.0029315207 154.28332 -1.9232137 + 1009100 -33.791729 -33.799126 0.0073965098 389.27171 -1.269049 + 1009200 -33.790353 -33.798475 0.0081228325 427.49743 -0.3078998 + 1009300 -33.791172 -33.79488 0.0037081264 195.15539 0.40594919 + 1009400 -33.796123 -33.798437 0.0023134935 121.7571 1.0740612 + 1009500 -33.796401 -33.800713 0.0043121887 226.94664 1.4423373 + 1009600 -33.792933 -33.799084 0.0061509859 323.7209 1.3163862 + 1009700 -33.790938 -33.796141 0.0052028645 273.82212 0.94714418 + 1009800 -33.793068 -33.799367 0.0062997283 331.54908 0.62952083 + 1009900 -33.794858 -33.801475 0.0066175289 348.27465 0.15585031 + 1010000 -33.794547 -33.798896 0.0043486697 228.86661 -0.22603815 + 1010100 -33.792236 -33.796908 0.0046723324 245.90069 -0.48234923 + 1010200 -33.779416 -33.799024 0.019608307 1031.9677 -0.38702899 + 1010300 -33.792083 -33.800582 0.0084996759 447.33036 -0.42750706 + 1010400 -33.794491 -33.797042 0.0025510071 134.25723 -0.39749593 + 1010500 -33.793955 -33.796824 0.0028692278 151.0049 -0.074326365 + 1010600 -33.790051 -33.800343 0.010292371 541.67829 0.80941127 + 1010700 -33.789024 -33.799063 0.010038896 528.33816 1.4425788 + 1010800 -33.794911 -33.79663 0.0017187357 90.455528 1.564886 + 1010900 -33.795541 -33.798145 0.0026043068 137.06235 1.7049061 + 1011000 -33.793655 -33.800627 0.00697211 366.93593 1.503996 + 1011100 -33.790965 -33.797593 0.0066283451 348.84389 0.73972715 + 1011200 -33.790602 -33.794022 0.0034198669 179.98455 -0.15092066 + 1011300 -33.792453 -33.798415 0.0059624121 313.79643 -0.82090445 + 1011400 -33.796837 -33.800937 0.0041001902 215.78935 -1.1730043 + 1011500 -33.797249 -33.799216 0.0019669616 103.51943 -1.1804827 + 1011600 -33.795268 -33.797956 0.0026879963 141.46685 -0.95911038 + 1011700 -33.792818 -33.801001 0.0081830701 430.66768 -0.1834561 + 1011800 -33.793203 -33.801541 0.0083385887 438.85249 0.60107719 + 1011900 -33.795453 -33.798306 0.0028533355 150.1685 0.85446895 + 1012000 -33.798045 -33.799518 0.001472111 77.475886 1.0680009 + 1012100 -33.798654 -33.801828 0.003173912 167.04016 1.068545 + 1012200 -33.794459 -33.801389 0.0069307092 364.75704 0.59410622 + 1012300 -33.792859 -33.798526 0.0056663237 298.21356 -0.31488358 + 1012400 -33.795344 -33.800131 0.0047874323 251.95829 -1.0734791 + 1012500 -33.79672 -33.802099 0.0053784946 283.06537 -1.5920345 + 1012600 -33.794133 -33.799587 0.0054535323 287.01454 -1.7956678 + 1012700 -33.788142 -33.794588 0.0064461653 339.25593 -1.8295268 + 1012800 -33.791752 -33.799175 0.0074230847 390.67033 -1.4922583 + 1012900 -33.79466 -33.801757 0.007097228 373.52078 -0.93949256 + 1013000 -33.794758 -33.798687 0.003928894 206.77418 -0.60592132 + 1013100 -33.7927 -33.795949 0.0032491566 171.00021 -0.13415354 + 1013200 -33.783622 -33.797882 0.01425981 750.48109 1.0243086 + 1013300 -33.787565 -33.798096 0.010530592 554.21565 1.6097082 + 1013400 -33.790149 -33.792545 0.0023950998 126.05197 1.5503862 + 1013500 -33.789438 -33.792609 0.003170688 166.87048 1.4471163 + 1013600 -33.787651 -33.798563 0.01091216 574.29723 1.0291149 + 1013700 -33.790575 -33.798055 0.0074809029 393.71325 0.14291107 + 1013800 -33.794471 -33.795929 0.0014579155 76.728794 -0.57573275 + 1013900 -33.794421 -33.797678 0.0032566773 171.39602 -0.98788269 + 1014000 -33.791797 -33.800491 0.0086940416 457.55965 -1.1001488 + 1014100 -33.790595 -33.79746 0.0068652178 361.31029 -1.2835958 + 1014200 -33.791691 -33.795147 0.0034559176 181.88186 -1.3873359 + 1014300 -33.793278 -33.799568 0.0062893726 331.00407 -0.88051655 + 1014400 -33.795079 -33.801871 0.0067920201 357.45796 -0.3968751 + 1014500 -33.797138 -33.799762 0.0026247801 138.13984 -0.19028288 + 1014600 -33.798393 -33.799865 0.0014721125 77.475966 0.15563814 + 1014700 -33.796978 -33.802083 0.005104809 268.66155 0.50137509 + 1014800 -33.791605 -33.801958 0.010353112 544.87504 0.74531829 + 1014900 -33.79299 -33.7978 0.0048102035 253.15672 0.74708478 + 1015000 -33.795366 -33.798759 0.0033930367 178.57249 0.65215541 + 1015100 -33.795659 -33.801818 0.0061597341 324.18131 0.53980702 + 1015200 -33.788182 -33.799434 0.011252184 592.19242 0.34085007 + 1015300 -33.787944 -33.794277 0.0063327506 333.28701 -0.48085327 + 1015400 -33.793637 -33.798387 0.0047494182 249.95764 -0.78420074 + 1015500 -33.794449 -33.801141 0.0066924996 352.22028 -0.7010716 + 1015600 -33.792385 -33.797653 0.005267464 277.22193 -0.73449508 + 1015700 -33.787468 -33.79195 0.0044814816 235.85638 -0.47328863 + 1015800 -33.788428 -33.797365 0.0089378181 470.38939 0.39445733 + 1015900 -33.794971 -33.800343 0.0053719192 282.71932 0.66249338 + 1016000 -33.794197 -33.796922 0.0027251274 143.42103 0.75998675 + 1016100 -33.790989 -33.795159 0.0041697693 219.45124 0.89939936 + 1016200 -33.789492 -33.800623 0.01113093 585.81092 1.0315646 + 1016300 -33.795039 -33.800984 0.0059447424 312.86649 0.8262755 + 1016400 -33.796448 -33.797948 0.001500326 78.960819 0.48311959 + 1016500 -33.795375 -33.798391 0.0030163723 158.74898 0.17955443 + 1016600 -33.792837 -33.801859 0.0090211231 474.77366 0.04385608 + 1016700 -33.791229 -33.799239 0.0080102926 421.57456 -0.41306318 + 1016800 -33.793438 -33.795792 0.0023538667 123.8819 -0.90071748 + 1016900 -33.797402 -33.800108 0.0027059642 142.41248 -0.77463895 + 1017000 -33.797026 -33.802207 0.0051813395 272.68927 -0.51784103 + 1017100 -33.793986 -33.79927 0.0052837733 278.08028 -0.21580447 + 1017200 -33.792919 -33.796826 0.003907298 205.63761 0.34888478 + 1017300 -33.793777 -33.800736 0.0069594956 366.27205 0.96770698 + 1017400 -33.79462 -33.801625 0.0070051754 368.67613 1.2529685 + 1017500 -33.793056 -33.796604 0.0035489392 186.77751 1.204996 + 1017600 -33.786868 -33.793155 0.0062872641 330.8931 0.88356291 + 1017700 -33.789537 -33.800577 0.011039706 581.0099 0.61425333 + 1017800 -33.794266 -33.800407 0.0061404625 323.16707 0.15046087 + 1017900 -33.794422 -33.796525 0.002102623 110.65917 -0.47441144 + 1018000 -33.792931 -33.797671 0.004740346 249.48018 -0.76215664 + 1018100 -33.787233 -33.801554 0.014321214 753.7127 -0.74844716 + 1018200 -33.784557 -33.79547 0.010913054 574.34429 -1.3032499 + 1018300 -33.792339 -33.793668 0.0013285654 69.921213 -1.496687 + 1018400 -33.792858 -33.797789 0.0049307295 259.49989 -1.0998784 + 1018500 -33.790952 -33.801068 0.010115613 532.37567 -0.62475352 + 1018600 -33.789961 -33.796646 0.0066846522 351.80728 -0.16370254 + 1018700 -33.795261 -33.797563 0.0023019352 121.14879 0.2225608 + 1018800 -33.797046 -33.801515 0.0044686476 235.18093 0.46616886 + 1018900 -33.795216 -33.801604 0.0063886599 336.22947 0.58293149 + 1019000 -33.791955 -33.795691 0.0037351652 196.57841 0.23349286 + 1019100 -33.79153 -33.79582 0.0042904653 225.80336 -0.1501388 + 1019200 -33.792324 -33.801456 0.0091320023 480.60914 -0.21983853 + 1019300 -33.793703 -33.800158 0.0064554586 339.74503 -0.63392744 + 1019400 -33.795694 -33.797242 0.0015480364 81.471776 -0.97827124 + 1019500 -33.798001 -33.800386 0.0023846192 125.50038 -0.83746671 + 1019600 -33.797519 -33.802618 0.0050988163 268.34615 -0.63237644 + 1019700 -33.792798 -33.798938 0.0061397434 323.12922 -0.34040212 + 1019800 -33.791756 -33.794705 0.0029490452 155.20562 0.11832349 + 1019900 -33.792559 -33.799077 0.0065182217 343.04819 0.69215908 + 1020000 -33.793555 -33.801203 0.0076485329 402.53547 1.0603797 + 1020100 -33.7938 -33.796895 0.0030950498 162.88971 1.0090147 + 1020200 -33.792142 -33.795566 0.0034237494 180.18888 0.78795146 + 1020300 -33.790325 -33.801383 0.01105808 581.97688 0.7513325 + 1020400 -33.794774 -33.801759 0.0069851251 367.6209 0.32768553 + 1020500 -33.79694 -33.79831 0.0013704867 72.127492 -0.18686419 + 1020600 -33.796002 -33.798569 0.0025671126 135.10485 -0.31408057 + 1020700 -33.790793 -33.802161 0.011368084 598.29212 -0.19418853 + 1020800 -33.790638 -33.799173 0.0085354294 449.21203 -0.44278251 + 1020900 -33.793311 -33.795478 0.0021667867 114.03605 -0.47152025 + 1021000 -33.795219 -33.799893 0.0046739155 245.98401 -0.1370106 + 1021100 -33.79569 -33.802862 0.0071716654 377.43835 0.20527573 + 1021200 -33.792151 -33.797771 0.0056200213 295.77671 0.50802974 + 1021300 -33.787212 -33.792001 0.0047893177 252.05752 0.85832651 + 1021400 -33.791078 -33.799713 0.0086347415 454.43874 1.4497713 + 1021500 -33.793973 -33.800938 0.0069647823 366.55028 1.6162936 + 1021600 -33.793372 -33.795517 0.0021453639 112.90859 1.2185076 + 1021700 -33.791788 -33.79512 0.0033322157 175.37154 0.8406317 + 1021800 -33.790265 -33.801397 0.011131995 585.86699 0.62709495 + 1021900 -33.794482 -33.800289 0.0058068892 305.6114 -0.12053263 + 1022000 -33.797078 -33.797729 0.00065082215 34.252189 -0.53506922 + 1022100 -33.796182 -33.799078 0.00289661 152.446 -0.52927769 + 1022200 -33.791823 -33.802145 0.010321693 543.22148 -0.33344966 + 1022300 -33.790618 -33.797354 0.0067355786 354.4875 -0.27784125 + 1022400 -33.792089 -33.794104 0.0020144199 106.01712 -0.14733283 + 1022500 -33.793976 -33.799906 0.0059306047 312.12244 0.24272262 + 1022600 -33.79728 -33.802409 0.0051286778 269.91774 0.46673709 + 1022700 -33.79911 -33.800478 0.0013675502 71.972948 0.38697392 + 1022800 -33.797823 -33.799487 0.0016644318 87.597559 0.28693699 + 1022900 -33.794659 -33.802252 0.0075938044 399.65515 0.31634815 + 1023000 -33.79377 -33.801848 0.0080779946 425.13765 0.048143863 + 1023100 -33.793915 -33.796792 0.0028772603 151.42765 -0.4441617 + 1023200 -33.793591 -33.797374 0.0037829816 199.09495 -0.58176975 + 1023300 -33.790606 -33.801616 0.011009906 579.44151 -0.49850655 + 1023400 -33.787991 -33.797987 0.0099952803 526.04269 -0.64005038 + 1023500 -33.793531 -33.79582 0.002289737 120.50682 -0.72799533 + 1023600 -33.795897 -33.800332 0.0044347581 233.39736 -0.49545532 + 1023700 -33.795181 -33.802824 0.0076428042 402.23397 -0.20059258 + 1023800 -33.792679 -33.797972 0.0052930827 278.57022 -0.062939939 + 1023900 -33.787851 -33.792071 0.0042204754 222.11986 0.060976494 + 1024000 -33.780867 -33.796584 0.015716919 827.16745 0.7455437 + 1024100 -33.790025 -33.7987 0.0086749414 456.55443 0.8591346 + 1024200 -33.79164 -33.793721 0.0020814684 109.54583 0.55326967 + 1024300 -33.790896 -33.794721 0.0038254143 201.32814 0.42811301 + 1024400 -33.790233 -33.800886 0.010653691 560.69426 0.37245737 + 1024500 -33.795092 -33.800559 0.0054669241 287.71934 -0.10896978 + 1024600 -33.796968 -33.798358 0.0013897949 73.143665 -0.42270862 + 1024700 -33.79584 -33.79936 0.0035203237 185.2715 -0.50059481 + 1024800 -33.79187 -33.801396 0.0095255244 501.31985 -0.46745575 + 1024900 -33.791212 -33.797018 0.0058066559 305.59912 -0.59949325 + 1025000 -33.79169 -33.794095 0.0024048152 126.56328 -0.63473276 + 1025100 -33.792541 -33.799269 0.0067278521 354.08086 -0.27884957 + 1025200 -33.795244 -33.801822 0.0065777896 346.1832 0.019923324 + 1025300 -33.797742 -33.799969 0.0022263215 117.16932 0.034444063 + 1025400 -33.797706 -33.799958 0.0022518484 118.51278 0.14726986 + 1025500 -33.791412 -33.80189 0.010477702 551.43212 0.49222164 + 1025600 -33.790541 -33.800772 0.010231285 538.4634 0.51463205 + 1025700 -33.794177 -33.796754 0.0025766236 135.6054 0.31251567 + 1025800 -33.794508 -33.797445 0.0029366781 154.55475 0.30148346 + 1025900 -33.791546 -33.80038 0.0088339964 464.92535 0.32625566 + 1026000 -33.784443 -33.796462 0.012019414 632.57105 0.1493847 + 1026100 -33.793528 -33.796478 0.0029506022 155.28756 -0.23566581 + 1026200 -33.796044 -33.800661 0.0046170045 242.98883 -0.19725991 + 1026300 -33.79487 -33.80201 0.0071403033 375.78779 -0.068612834 + 1026400 -33.791574 -33.796831 0.005257257 276.68474 -0.12216991 + 1026500 -33.789653 -33.794027 0.004374423 230.22198 -0.027939635 + 1026600 -33.791202 -33.799145 0.0079438557 418.07804 0.38091482 + 1026700 -33.794784 -33.79974 0.0049561093 260.83561 0.42850391 + 1026800 -33.795735 -33.797602 0.0018666869 98.242065 0.38707248 + 1026900 -33.792723 -33.798042 0.0053195483 279.96308 0.48392095 + 1027000 -33.786506 -33.80136 0.01485422 781.76437 0.62603241 + 1027100 -33.793739 -33.799869 0.0061305096 322.64325 0.33890744 + 1027200 -33.795219 -33.797386 0.0021677624 114.0874 0.12181629 + 1027300 -33.794089 -33.798747 0.0046577506 245.13326 0.068337311 + 1027400 -33.789524 -33.799651 0.010127307 532.99116 0.11653183 + 1027500 -33.788084 -33.794843 0.0067583707 355.68702 -0.16085197 + 1027600 -33.790313 -33.795168 0.0048547002 255.49854 -0.28795031 + 1027700 -33.792483 -33.800289 0.007805398 410.79114 -0.08609153 + 1027800 -33.794701 -33.800816 0.0061151709 321.83599 -0.08152756 + 1027900 -33.795625 -33.79835 0.0027257075 143.45156 -0.14516353 + 1028000 -33.794441 -33.798419 0.0039775943 209.33724 0.0096499752 + 1028100 -33.788446 -33.799449 0.011003196 579.08837 0.27780617 + 1028200 -33.788041 -33.796053 0.0080128864 421.71107 0.27687396 + 1028300 -33.792375 -33.795334 0.0029591668 155.73831 0.26862238 + 1028400 -33.794129 -33.798895 0.0047664533 250.85419 0.31766172 + 1028500 -33.793437 -33.80028 0.006842437 360.11135 0.29378574 + 1028600 -33.792744 -33.797911 0.0051673003 271.95041 0.094397513 + 1028700 -33.793061 -33.797952 0.0048911386 257.41626 -0.1542388 + 1028800 -33.794855 -33.800758 0.005903155 310.67778 -0.23246966 + 1028900 -33.798299 -33.801258 0.0029591944 155.73976 -0.35126068 + 1029000 -33.798585 -33.800158 0.0015722073 82.743868 -0.45934713 + 1029100 -33.795368 -33.799452 0.0040836076 214.91663 -0.34698557 + 1029200 -33.792812 -33.800848 0.0080365701 422.95752 -0.096067373 + 1029300 -33.793061 -33.799376 0.006315335 332.37045 -0.064830861 + 1029400 -33.795163 -33.798919 0.0037553107 197.63865 0.047304185 + 1029500 -33.797112 -33.801051 0.0039386662 207.28849 0.15159926 + 1029600 -33.797489 -33.801386 0.0038973308 205.11305 0.12435795 + 1029700 -33.793263 -33.797732 0.0044688048 235.18921 0.072115835 + 1029800 -33.789512 -33.796427 0.0069142538 363.89101 -0.049078495 + 1029900 -33.791443 -33.799811 0.0083680734 440.40424 -0.12758457 + 1030000 -33.795273 -33.799892 0.0046189913 243.09339 -0.21216795 + 1030100 -33.795955 -33.79874 0.0027844975 146.54562 -0.33063413 + 1030200 -33.793689 -33.799106 0.0054166179 285.07177 -0.23815892 + 1030300 -33.783831 -33.796689 0.012858109 676.71082 0.11731849 + 1030400 -33.787609 -33.794261 0.0066522146 350.10012 0.053352719 + 1030500 -33.792122 -33.796141 0.0040190325 211.51809 0.19984423 + 1030600 -33.793751 -33.799291 0.0055397274 291.55091 0.41810174 + 1030700 -33.793278 -33.798974 0.0056961488 299.78323 0.35430926 + 1030800 -33.788958 -33.794669 0.0057117139 300.60241 0.2771005 + 1030900 -33.784847 -33.79476 0.0099130554 521.71526 0.32463643 + 1031000 -33.792366 -33.799882 0.0075169194 395.60876 0.17812765 + 1031100 -33.794129 -33.798261 0.0041325051 217.49006 0.082705681 + 1031200 -33.793078 -33.796532 0.0034536891 181.76458 0.0082548645 + 1031300 -33.790069 -33.79863 0.0085610271 450.55922 0.053873765 + 1031400 -33.788038 -33.79896 0.010922086 574.81962 0.20607408 + 1031500 -33.794842 -33.798361 0.0035187678 185.18961 0.037155733 + 1031600 -33.796684 -33.799793 0.0031094394 163.64702 0.037632213 + 1031700 -33.79539 -33.801613 0.0062226603 327.49306 0.24474627 + 1031800 -33.790727 -33.798368 0.007641362 402.15807 0.22245475 + 1031900 -33.789077 -33.793671 0.0045945333 241.80619 0.073232 + 1032000 -33.791007 -33.798026 0.0070194669 369.42828 0.32669294 + 1032100 -33.79211 -33.80084 0.0087301748 459.46131 0.33249761 + 1032200 -33.793068 -33.797534 0.0044657923 235.03067 0.12417795 + 1032300 -33.7939 -33.796877 0.0029771145 156.68288 0.097978815 + 1032400 -33.795172 -33.801006 0.0058344619 307.06252 0.087124489 + 1032500 -33.79638 -33.801387 0.0050078281 263.55753 0.026539903 + 1032600 -33.794988 -33.797353 0.002364989 124.46726 -0.097413465 + 1032700 -33.7902 -33.795354 0.0051540576 271.25345 -0.22620992 + 1032800 -33.788204 -33.800311 0.012107036 637.18251 0.0028839286 + 1032900 -33.791645 -33.797968 0.0063228324 332.76503 -0.1280987 + 1033000 -33.794051 -33.795935 0.0018835217 99.128065 -0.3574465 + 1033100 -33.79411 -33.799456 0.0053467659 281.39552 -0.13330642 + 1033200 -33.793242 -33.801767 0.0085254778 448.68829 0.04304631 + 1033300 -33.792271 -33.796875 0.0046037851 242.2931 -0.19338154 + 1033400 -33.791689 -33.794938 0.0032494392 171.01509 -0.13133056 + 1033500 -33.792886 -33.800794 0.007907344 416.15646 0.085705092 + 1033600 -33.795945 -33.801548 0.0056026442 294.86217 -0.032037931 + 1033700 -33.79659 -33.798169 0.0015784829 83.074145 -0.11217078 + 1033800 -33.793696 -33.797471 0.0037747612 198.66232 -0.15206871 + 1033900 -33.787683 -33.80164 0.013956769 734.5323 -0.0075376556 + 1034000 -33.791078 -33.798734 0.0076561034 402.93389 -0.1281916 + 1034100 -33.793738 -33.795481 0.0017428484 91.724558 -0.43411035 + 1034200 -33.794049 -33.799201 0.0051514039 271.11379 -0.30581896 + 1034300 -33.792949 -33.801945 0.0089957544 473.43853 -0.019002879 + 1034400 -33.791433 -33.796034 0.0046011059 242.1521 -0.2603176 + 1034500 -33.788293 -33.791446 0.0031523176 165.90367 -0.25724376 + 1034600 -33.782472 -33.798485 0.016012933 842.74636 0.4066851 + 1034700 -33.791184 -33.800772 0.0095883524 504.62643 0.24844958 + 1034800 -33.7943 -33.795982 0.001681487 88.495162 0.084322556 + 1034900 -33.794576 -33.797551 0.002975065 156.57502 0.1475511 + 1035000 -33.792309 -33.802242 0.0099327906 522.75391 0.19273522 + 1035100 -33.786133 -33.796446 0.01031273 542.74978 0.05826103 + 1035200 -33.787487 -33.78963 0.0021430587 112.78727 -0.40776624 + 1035300 -33.794299 -33.799587 0.0052884861 278.32831 -0.31553614 + 1035400 -33.794539 -33.802785 0.0082461201 433.98594 -0.080927226 + 1035500 -33.792716 -33.796845 0.0041289423 217.30255 -0.24504187 + 1035600 -33.789949 -33.792353 0.0024038447 126.5122 -0.28161504 + 1035700 -33.788684 -33.80022 0.011536207 607.14026 0.38177286 + 1035800 -33.794953 -33.80215 0.0071972967 378.78731 0.39370408 + 1035900 -33.796464 -33.797786 0.0013214365 69.546025 0.2170957 + 1036000 -33.795195 -33.797773 0.0025781348 135.68493 0.31458627 + 1036100 -33.791014 -33.802576 0.01156237 608.5172 0.44765743 + 1036200 -33.789717 -33.798477 0.008759964 461.02909 0.15929881 + 1036300 -33.791133 -33.792487 0.0013539802 71.258772 -0.16851015 + 1036400 -33.79219 -33.798369 0.0061784504 325.16633 -0.15438271 + 1036500 -33.793544 -33.80285 0.0093058572 489.75897 -0.047528999 + 1036600 -33.79489 -33.798062 0.0031721609 166.948 -0.20070786 + 1036700 -33.795781 -33.796764 0.00098281095 51.724464 -0.3063263 + 1036800 -33.795392 -33.801585 0.0061929939 325.93175 0.010775349 + 1036900 -33.790988 -33.801565 0.01057663 556.63859 0.29659042 + 1037000 -33.788177 -33.791398 0.003221609 169.55041 0.0058846001 + 1037100 -33.790432 -33.794233 0.0038007295 200.029 0.28258541 + 1037200 -33.795029 -33.802586 0.0075568983 397.71282 0.57765413 + 1037300 -33.795267 -33.800628 0.0053604329 282.1148 0.34597752 + 1037400 -33.793691 -33.794865 0.0011742328 61.798825 0.092728176 + 1037500 -33.791096 -33.797594 0.0064980804 341.98817 0.038900327 + 1037600 -33.789654 -33.803029 0.013375205 703.92512 -0.078227279 + 1037700 -33.795711 -33.799263 0.0035520905 186.94336 -0.4069618 + 1037800 -33.797183 -33.797947 0.00076426075 40.222361 -0.57721589 + 1037900 -33.795833 -33.801392 0.0055593337 292.58277 -0.40716507 + 1038000 -33.791483 -33.802087 0.010604196 558.08939 0.020437667 + 1038100 -33.790811 -33.794092 0.003281226 172.688 -0.12373918 + 1038200 -33.791764 -33.794801 0.0030363472 159.80025 0.10733149 + 1038300 -33.793119 -33.80228 0.0091604743 482.10759 0.64339557 + 1038400 -33.794567 -33.800966 0.0063992611 336.7874 0.47139483 + 1038500 -33.797029 -33.797702 0.00067283313 35.410608 0.25483657 + 1038600 -33.798236 -33.800489 0.0022524438 118.54411 0.27210857 + 1038700 -33.796214 -33.803269 0.007055588 371.32931 0.12380172 + 1038800 -33.791798 -33.798077 0.0062781301 330.41239 -0.2754301 + 1038900 -33.790944 -33.792278 0.0013336074 70.186568 -0.82904459 + 1039000 -33.791684 -33.799156 0.0074717166 393.22978 -0.94783026 + 1039100 -33.79489 -33.802748 0.0078586249 413.59242 -0.81954034 + 1039200 -33.798035 -33.79968 0.0016449135 86.570331 -0.89401989 + 1039300 -33.798109 -33.799126 0.0010164631 53.495544 -0.73370107 + 1039400 -33.792032 -33.801303 0.0092711962 487.93478 0.10077283 + 1039500 -33.790046 -33.801104 0.011058121 581.97903 0.92515884 + 1039600 -33.792996 -33.795016 0.0020196351 106.29159 1.1832343 + 1039700 -33.794935 -33.797685 0.0027497457 144.71666 1.5776682 + 1039800 -33.795121 -33.802577 0.0074561973 392.41301 1.5832649 + 1039900 -33.790482 -33.79864 0.0081584113 429.36991 0.97747106 + 1040000 -33.786278 -33.789634 0.0033559346 176.61984 -0.17953398 + 1040100 -33.790621 -33.798204 0.0075827283 399.07222 -0.99401503 + 1040200 -33.793294 -33.802495 0.0092005718 484.21789 -1.4022264 + 1040300 -33.793369 -33.797023 0.0036544162 192.32866 -1.6841855 + 1040400 -33.792053 -33.793912 0.0018588963 97.832053 -1.6841272 + 1040500 -33.787934 -33.799802 0.011868396 624.62311 -0.74988115 + 1040600 -33.785552 -33.799979 0.014427167 759.28895 0.4008968 + 1040700 -33.793497 -33.795574 0.0020771559 109.31886 0.66609044 + 1040800 -33.794801 -33.797586 0.0027850705 146.57577 1.1366728 + 1040900 -33.793762 -33.802157 0.008394524 441.79631 1.4877939 + 1041000 -33.789503 -33.797888 0.0083848953 441.28956 1.0826777 + 1041100 -33.785466 -33.78823 0.0027638145 145.45709 0.38861978 + 1041200 -33.790331 -33.797653 0.0073216095 385.32978 0.043920923 + 1041300 -33.795249 -33.802715 0.0074657943 392.9181 -0.29226517 + 1041400 -33.794714 -33.798321 0.0036066226 189.81333 -0.5476108 + 1041500 -33.791868 -33.794044 0.0021755341 114.49642 -0.80169293 + 1041600 -33.78788 -33.799278 0.011398176 599.87581 -0.57607406 + 1041700 -33.79098 -33.800922 0.0099414725 523.21083 -0.24264246 + 1041800 -33.796205 -33.797963 0.0017580265 92.523369 -0.39660527 + 1041900 -33.795911 -33.798452 0.0025414695 133.75527 -0.1918011 + 1042000 -33.792963 -33.802056 0.0090931565 478.56472 0.39748857 + 1042100 -33.789134 -33.798203 0.0090690116 477.29399 0.51854911 + 1042200 -33.790058 -33.792466 0.0024071516 126.68624 0.55074541 + 1042300 -33.796541 -33.800342 0.0038004076 200.01206 0.86322225 + 1042400 -33.796872 -33.802656 0.0057839325 304.40321 0.74230313 + 1042500 -33.793857 -33.798123 0.0042655363 224.49137 0.35991702 + 1042600 -33.790535 -33.793762 0.0032273726 169.85374 -0.21150607 + 1042700 -33.790078 -33.799621 0.0095435738 502.26978 -0.67016849 + 1042800 -33.793826 -33.801098 0.0072716941 382.70277 -0.98036973 + 1042900 -33.797851 -33.799368 0.0015167177 79.823497 -1.1897755 + 1043000 -33.797797 -33.799828 0.0020311728 106.89881 -1.0680133 + 1043100 -33.795917 -33.802109 0.0061919672 325.87771 -0.45098842 + 1043200 -33.792333 -33.799504 0.0071716127 377.43558 0.22016139 + 1043300 -33.790494 -33.794186 0.0036918154 194.29695 0.80797073 + 1043400 -33.791742 -33.797785 0.0060427804 318.02614 1.6830849 + 1043500 -33.796622 -33.801768 0.0051455942 270.80803 1.898061 + 1043600 -33.797108 -33.79987 0.0027625372 145.38987 1.5444513 + 1043700 -33.795034 -33.79791 0.002875898 151.35594 0.9586259 + 1043800 -33.792699 -33.8005 0.0078004392 410.53016 0.024265893 + 1043900 -33.792734 -33.800718 0.0079841163 420.19692 -1.1236899 + 1044000 -33.793512 -33.797027 0.0035142453 184.95159 -2.0133291 + 1044100 -33.793362 -33.797187 0.0038247676 201.2941 -2.462917 + 1044200 -33.788576 -33.798831 0.010254994 539.7112 -2.2041939 + 1044300 -33.784923 -33.795122 0.010198599 536.74317 -1.4206679 + 1044400 -33.791228 -33.795411 0.0041830506 220.15022 -0.76184104 + 1044500 -33.794135 -33.799608 0.005472185 287.99621 0.082732523 + 1044600 -33.794425 -33.800929 0.0065032367 342.25955 0.80165122 + 1044700 -33.792918 -33.797563 0.0046448747 244.45561 1.0561493 + 1044800 -33.786681 -33.793198 0.0065169305 342.98024 1.4015887 + 1044900 -33.784381 -33.796634 0.012253642 644.89822 1.7827578 + 1045000 -33.79168 -33.798305 0.0066252597 348.68151 1.3858075 + 1045100 -33.792767 -33.79643 0.0036629966 192.78024 0.99279457 + 1045200 -33.792636 -33.798375 0.005738401 302.00693 0.50395966 + 1045300 -33.792735 -33.800372 0.0076371076 401.93416 -0.18587372 + 1045400 -33.794446 -33.798898 0.0044520001 234.3048 -0.73362589 + 1045500 -33.796569 -33.799353 0.0027837839 146.50806 -1.0973756 + 1045600 -33.796986 -33.801202 0.0042161581 221.89264 -1.1307922 + 1045700 -33.792758 -33.79949 0.0067315024 354.27297 -0.76810907 + 1045800 -33.788866 -33.794524 0.0056573939 297.74359 -0.35510024 + 1045900 -33.790391 -33.796727 0.0063363254 333.47515 0.34983227 + 1046000 -33.793622 -33.800388 0.0067658685 356.08162 1.0210975 + 1046100 -33.794939 -33.799172 0.0042332389 222.79159 1.0657795 + 1046200 -33.793633 -33.797305 0.0036712882 193.21662 0.98818227 + 1046300 -33.784304 -33.796751 0.012447503 655.10098 0.94183276 + 1046400 -33.78881 -33.798959 0.010148917 534.12843 0.23888824 + 1046500 -33.793813 -33.797209 0.0033968384 178.77258 -0.27393848 + 1046600 -33.794594 -33.798176 0.0035822636 188.53134 -0.45101381 + 1046700 -33.793092 -33.800613 0.0075209395 395.82034 -0.5860395 + 1046800 -33.78668 -33.796058 0.0093778407 493.54739 -0.61295461 + 1046900 -33.785713 -33.791049 0.005336176 280.83819 -0.66430485 + 1047000 -33.793242 -33.799327 0.0060857714 320.28872 -0.43746124 + 1047100 -33.79406 -33.801171 0.007110784 374.23422 -0.10348324 + 1047200 -33.792954 -33.796949 0.0039951618 210.2618 -0.012765678 + 1047300 -33.79058 -33.794643 0.0040636222 213.86481 0.14438741 + 1047400 -33.788075 -33.799349 0.011273837 593.33199 0.75953455 + 1047500 -33.792215 -33.799666 0.0074508821 392.13328 0.78884557 + 1047600 -33.795871 -33.797737 0.0018665757 98.236217 0.56325632 + 1047700 -33.795712 -33.79936 0.003647485 191.96388 0.55050398 + 1047800 -33.792439 -33.801813 0.0093740541 493.34811 0.35966643 + 1047900 -33.786868 -33.795484 0.00861591 453.44766 -0.33002416 + 1048000 -33.789065 -33.792167 0.0031025389 163.28386 -0.93229839 + 1048100 -33.795919 -33.800485 0.0045658431 240.29625 -1.0032947 + 1048200 -33.79547 -33.802071 0.0066011866 347.41456 -0.8695076 + 1048300 -33.791929 -33.79609 0.004161467 219.0143 -0.65181032 + 1048400 -33.788931 -33.79321 0.0042788421 225.19164 -0.22880169 + 1048500 -33.791034 -33.800986 0.0099522433 523.77769 0.65748914 + 1048600 -33.796154 -33.801564 0.0054104493 284.74712 0.94725952 + 1048700 -33.796106 -33.79748 0.0013741763 72.321672 0.77577941 + 1048800 -33.794471 -33.798063 0.003592239 189.05633 0.74624819 + 1048900 -33.791245 -33.80211 0.010865573 571.8454 0.67983296 + 1049000 -33.789964 -33.797211 0.0072472949 381.41866 -0.12579813 + 1049100 -33.793227 -33.794743 0.0015160648 79.789139 -0.67130782 + 1049200 -33.797349 -33.80115 0.0038012224 200.05495 -0.69378868 + 1049300 -33.796373 -33.802848 0.0064749983 340.77338 -0.68592677 + 1049400 -33.792622 -33.796585 0.00396272 208.55442 -0.58926892 + 1049500 -33.790665 -33.793425 0.0027596729 145.23912 -0.33381791 + 1049600 -33.791067 -33.800995 0.0099286257 522.53472 0.30979881 + 1049700 -33.79286 -33.801029 0.0081694377 429.95022 0.72861499 + 1049800 -33.793679 -33.795203 0.0015237992 80.196193 0.5904716 + 1049900 -33.793432 -33.797051 0.0036189817 190.46378 0.665357 + 1050000 -33.792402 -33.802773 0.010371126 545.82312 0.88969523 + 1050100 -33.791845 -33.798726 0.006881252 362.15415 0.35911093 + 1050200 -33.792599 -33.793888 0.0012895206 67.866318 -0.18046232 + 1050300 -33.794075 -33.799704 0.0056283292 296.21395 -0.20123027 + 1050400 -33.795403 -33.80303 0.0076275067 401.42887 -0.38884873 + 1050500 -33.79487 -33.797838 0.0029688914 156.25011 -0.62472619 + 1050600 -33.790487 -33.792263 0.0017754515 93.440428 -0.65300377 + 1050700 -33.786778 -33.800415 0.01363666 717.68523 -0.18318568 + 1050800 -33.79156 -33.801499 0.0099383909 523.04865 0.083416444 + 1050900 -33.794094 -33.795407 0.0013128816 69.095788 -0.019130094 + 1051000 -33.793884 -33.797109 0.0032256619 169.76371 0.12554596 + 1051100 -33.792427 -33.803007 0.010579885 556.8099 0.58330223 + 1051200 -33.789711 -33.797547 0.0078359382 412.39844 0.4515899 + 1051300 -33.785414 -33.786397 0.00098368919 51.770685 -0.019564124 + 1051400 -33.786657 -33.796824 0.010166574 535.05773 0.36551334 + 1051500 -33.793737 -33.803306 0.0095694264 503.63038 0.31354543 + 1051600 -33.794788 -33.797463 0.0026748628 140.77564 -0.092240614 + 1051700 -33.793869 -33.795135 0.0012654442 66.599198 -0.20019874 + 1051800 -33.789504 -33.801582 0.012077928 635.6506 -0.019895006 + 1051900 -33.784038 -33.79954 0.015502276 815.87094 -0.13556296 + 1052000 -33.792213 -33.79307 0.0008570075 45.10354 -0.51670823 + 1052100 -33.794514 -33.797967 0.0034528709 181.72151 -0.4121452 + 1052200 -33.79394 -33.803548 0.0096083803 505.68049 -0.081628882 + 1052300 -33.791649 -33.798097 0.0064482322 339.36471 0.0028542288 + 1052400 -33.788733 -33.789536 0.00080302408 42.262441 -0.15816066 + 1052500 -33.788103 -33.797872 0.0097695795 514.16426 0.4394591 + 1052600 -33.794637 -33.803251 0.0086145849 453.37792 0.68026216 + 1052700 -33.795894 -33.797985 0.0020917122 110.08495 0.32946274 + 1052800 -33.79453 -33.795797 0.0012669335 66.677581 0.20225611 + 1052900 -33.789804 -33.801843 0.012038875 633.59523 0.34873451 + 1053000 -33.786907 -33.800071 0.013163959 692.80743 -0.13743619 + 1053100 -33.795981 -33.796606 0.0006245813 32.871157 -0.60142271 + 1053200 -33.796915 -33.799478 0.002563029 134.88993 -0.56776227 + 1053300 -33.794618 -33.803523 0.0089052496 468.67534 -0.37233354 + 1053400 -33.790166 -33.797442 0.0072762929 382.9448 -0.16368897 + 1053500 -33.789061 -33.789916 0.00085584767 45.042499 -0.17388396 + 1053600 -33.791792 -33.799184 0.007391742 389.02079 0.37429169 + 1053700 -33.796051 -33.803389 0.007337891 386.18666 0.70492258 + 1053800 -33.795931 -33.798227 0.00229523 120.79591 0.41973686 + 1053900 -33.794517 -33.795711 0.0011936547 62.820983 0.22603214 + 1054000 -33.791822 -33.801804 0.0099819108 525.33906 0.40866699 + 1054100 -33.789736 -33.800958 0.011221255 590.56467 -0.025127814 + 1054200 -33.792456 -33.793524 0.0010685727 56.238027 -0.61852881 + 1054300 -33.796539 -33.798962 0.0024228631 127.51312 -0.55209589 + 1054400 -33.796606 -33.803559 0.0069537207 365.96812 -0.43799208 + 1054500 -33.792842 -33.799264 0.0064213328 337.94902 -0.33009691 + 1054600 -33.790002 -33.790739 0.00073674149 38.774047 -0.26684528 + 1054700 -33.790313 -33.798054 0.00774106 407.40508 0.26371305 + 1054800 -33.792123 -33.803291 0.011167681 587.74507 0.77523907 + 1054900 -33.793559 -33.796723 0.003163814 166.50871 0.59941017 + 1055000 -33.793633 -33.794751 0.0011176453 58.820675 0.42230375 + 1055100 -33.791853 -33.801596 0.0097428493 512.75747 0.65376843 + 1055200 -33.787688 -33.800766 0.013077772 688.27148 0.38367373 + 1055300 -33.790041 -33.79154 0.0014989716 78.889539 -0.47629003 + 1055400 -33.793829 -33.797134 0.0033056847 173.97524 -0.48364292 + 1055500 -33.795241 -33.803415 0.0081735355 430.16588 -0.37942208 + 1055600 -33.793916 -33.799631 0.0057155064 300.802 -0.52451617 + 1055700 -33.78704 -33.787846 0.00080673341 42.45766 -0.57977507 + 1055800 -33.78441 -33.795657 0.011247792 591.96128 0.065487976 + 1055900 -33.789522 -33.803038 0.013516076 711.33903 0.50964863 + 1056000 -33.793096 -33.796253 0.0031569252 166.14616 0.43236835 + 1056100 -33.794262 -33.795647 0.0013852009 72.901886 0.35199589 + 1056200 -33.794417 -33.802136 0.0077193521 406.26262 0.53907068 + 1056300 -33.791625 -33.801191 0.0095661348 503.45714 0.48948247 + 1056400 -33.787002 -33.789119 0.0021171006 111.42112 -0.30898333 + 1056500 -33.787924 -33.793537 0.0056131418 295.41465 -0.45321282 + 1056600 -33.793475 -33.803146 0.0096708521 508.96832 -0.30106538 + 1056700 -33.794593 -33.799623 0.0050297904 264.71338 -0.61481118 + 1056800 -33.793676 -33.794433 0.00075733992 39.858125 -0.65234487 + 1056900 -33.791507 -33.798857 0.0073494839 386.79678 -0.17939723 + 1057000 -33.784222 -33.802016 0.017794923 936.53093 0.29627935 + 1057100 -33.783642 -33.789193 0.0055507346 292.13021 0.39288001 + 1057200 -33.791674 -33.793936 0.0022621576 119.05534 0.61200589 + 1057300 -33.793398 -33.801881 0.0084827498 446.43955 0.84028995 + 1057400 -33.793814 -33.801255 0.0074414265 391.63564 0.79390394 + 1057500 -33.792992 -33.794564 0.0015724866 82.758567 0.20912566 + 1057600 -33.790292 -33.795537 0.0052447331 276.02562 -0.14010995 + 1057700 -33.786768 -33.802254 0.015485915 815.00992 -0.14512507 + 1057800 -33.792626 -33.798184 0.0055586414 292.54634 -0.91348329 + 1057900 -33.795324 -33.796207 0.0008830594 46.474628 -1.123203 + 1058000 -33.79494 -33.800418 0.005477816 288.29257 -0.74152737 + 1058100 -33.791973 -33.802301 0.010328898 543.6007 -0.37236824 + 1058200 -33.786655 -33.79216 0.005505242 289.73598 -0.054156361 + 1058300 -33.781224 -33.786559 0.0053350429 280.77855 0.69187319 + 1058400 -33.789514 -33.801033 0.011518842 606.22636 1.5141177 + 1058500 -33.793981 -33.800536 0.0065553442 345.00192 1.5670412 + 1058600 -33.794568 -33.795935 0.0013675458 71.972716 1.160561 + 1058700 -33.793459 -33.798188 0.0047284854 248.85597 0.70475193 + 1058800 -33.789136 -33.802248 0.013111967 690.07113 0.26184453 + 1058900 -33.787534 -33.79525 0.0077154538 406.05745 -0.97885445 + 1059000 -33.793693 -33.795374 0.0016810481 88.472063 -1.8030966 + 1059100 -33.795468 -33.800648 0.0051802986 272.63449 -1.6758425 + 1059200 -33.793969 -33.801641 0.0076713411 403.73584 -1.3766751 + 1059300 -33.790311 -33.794617 0.004305848 226.61294 -0.92600352 + 1059400 -33.787957 -33.79338 0.0054229238 285.40365 0.22983918 + 1059500 -33.793859 -33.801851 0.0079916629 420.59409 1.2555428 + 1059600 -33.796607 -33.801031 0.0044239896 232.83063 1.4842222 + 1059700 -33.795299 -33.796809 0.0015099898 79.469419 1.3884222 + 1059800 -33.79112 -33.797337 0.0062163746 327.16225 1.0427085 + 1059900 -33.788953 -33.801382 0.012429227 654.13914 0.49433276 + 1060000 -33.791959 -33.797129 0.0051700059 272.0928 -0.44471238 + 1060100 -33.793436 -33.795925 0.002488553 130.97032 -1.1387026 + 1060200 -33.793223 -33.800271 0.0070479636 370.92804 -1.2316751 + 1060300 -33.792337 -33.800378 0.0080406601 423.17277 -1.1926467 + 1060400 -33.791086 -33.794617 0.0035312735 185.84778 -1.2248377 + 1060500 -33.789231 -33.794994 0.0057627017 303.28585 -0.60296729 + 1060600 -33.790482 -33.800919 0.010437353 549.3086 0.27354833 + 1060700 -33.795033 -33.799763 0.0047298237 248.9264 0.52010984 + 1060800 -33.796074 -33.797925 0.0018516854 97.45255 0.72364437 + 1060900 -33.794415 -33.799882 0.0054673425 287.74136 0.90169091 + 1061000 -33.786704 -33.799304 0.012600308 663.14297 0.82441298 + 1061100 -33.787766 -33.793437 0.0056708531 298.45194 0.33226971 + 1061200 -33.791357 -33.795722 0.0043650783 229.73018 -0.03582333 + 1061300 -33.793508 -33.800965 0.0074573569 392.47404 -0.18757351 + 1061400 -33.794077 -33.799846 0.0057688613 303.61003 -0.35299615 + 1061500 -33.792794 -33.79578 0.0029854805 157.12318 -0.64099228 + 1061600 -33.785586 -33.794854 0.009267164 487.72258 -0.55833602 + 1061700 -33.785942 -33.799193 0.013250944 697.38534 -0.18461147 + 1061800 -33.792516 -33.797012 0.0044964528 236.6443 -0.34830476 + 1061900 -33.793735 -33.79687 0.0031352343 165.00459 -0.20683854 + 1062000 -33.793558 -33.800676 0.0071183051 374.63005 0.18026909 + 1062100 -33.79169 -33.799521 0.0078309828 412.13764 0.25992843 + 1062200 -33.786361 -33.791065 0.004704095 247.57233 0.23715811 + 1062300 -33.785872 -33.794269 0.0083969127 441.92203 0.53761097 + 1062400 -33.79305 -33.801397 0.0083465373 439.27082 0.58198749 + 1062500 -33.794343 -33.798522 0.0041791106 219.94287 0.40580718 + 1062600 -33.793583 -33.796211 0.0026279529 138.30682 0.1547902 + 1062700 -33.790689 -33.799605 0.0089158137 469.23132 0.019034204 + 1062800 -33.784174 -33.798184 0.014010208 737.34478 -0.16305532 + 1062900 -33.788156 -33.791972 0.0038155733 200.81022 -0.84598962 + 1063000 -33.793769 -33.797565 0.0037961585 199.78843 -0.87604263 + 1063100 -33.794261 -33.801933 0.007672135 403.77762 -0.55294011 + 1063200 -33.792835 -33.798802 0.0059676057 314.06977 -0.44495601 + 1063300 -33.789192 -33.792055 0.0028630738 150.68102 -0.25849656 + 1063400 -33.785528 -33.796401 0.010872242 572.19639 0.62616721 + 1063500 -33.792437 -33.801873 0.009435795 496.59748 1.0304322 + 1063600 -33.795304 -33.797982 0.0026773892 140.9086 0.90558773 + 1063700 -33.794628 -33.796786 0.0021574844 113.54648 0.79508608 + 1063800 -33.791138 -33.801207 0.010068606 529.90174 0.63471236 + 1063900 -33.786359 -33.798564 0.012205758 642.37815 0.032424134 + 1064000 -33.791126 -33.793042 0.0019163893 100.85786 -0.85464209 + 1064100 -33.795589 -33.799136 0.0035471422 186.68293 -1.0139799 + 1064200 -33.795303 -33.802912 0.0076090956 400.45991 -0.83689497 + 1064300 -33.791899 -33.797583 0.0056838682 299.13691 -0.72483237 + 1064400 -33.788433 -33.790392 0.0019590394 103.1025 -0.51864184 + 1064500 -33.789364 -33.798975 0.0096110641 505.82173 0.44244109 + 1064600 -33.795969 -33.802868 0.006898149 363.04343 0.8121332 + 1064700 -33.796213 -33.798116 0.0019033327 100.1707 0.674485 + 1064800 -33.794219 -33.796195 0.0019759883 103.9945 0.62612658 + 1064900 -33.790104 -33.801917 0.011813441 621.73086 0.67755781 + 1065000 -33.789222 -33.799442 0.010219151 537.82481 0.1159158 + 1065100 -33.79409 -33.79492 0.00082953443 43.657657 -0.46367657 + 1065200 -33.796776 -33.799875 0.0030996156 163.13 -0.52302655 + 1065300 -33.795678 -33.803437 0.0077593991 408.37025 -0.4371575 + 1065400 -33.792688 -33.797889 0.0052010706 273.7277 -0.45867529 + 1065500 -33.790555 -33.791654 0.0010988323 57.830566 -0.51855153 + 1065600 -33.790455 -33.79962 0.0091643148 482.30971 0.062592262 + 1065700 -33.792656 -33.802608 0.009951962 523.76288 0.45009639 + 1065800 -33.793755 -33.795855 0.0021004655 110.54563 0.24383766 + 1065900 -33.793417 -33.795511 0.0020935387 110.18107 0.3294294 + 1066000 -33.792196 -33.802606 0.010410286 547.88409 0.66846788 + 1066100 -33.791247 -33.800088 0.0088417716 465.33455 0.38145694 + 1066200 -33.791928 -33.792671 0.00074360899 39.135478 -0.06721863 + 1066300 -33.794283 -33.798614 0.0043310295 227.93822 -0.045639989 + 1066400 -33.796767 -33.803734 0.0069667667 366.65472 -0.076819298 + 1066500 -33.796275 -33.799757 0.0034816751 183.23746 -0.24593336 + 1066600 -33.790045 -33.790659 0.00061425368 32.327623 -0.51124419 + 1066700 -33.787961 -33.799006 0.011045443 581.31179 -0.18659119 + 1066800 -33.791765 -33.802841 0.011076362 582.93906 0.036737302 + 1066900 -33.794701 -33.796404 0.0017034478 89.650936 -0.24335783 + 1067000 -33.794847 -33.796537 0.00168998 88.94214 -0.17191856 + 1067100 -33.793307 -33.802962 0.0096550004 508.13406 0.28907079 + 1067200 -33.787171 -33.798961 0.011790344 620.5153 0.31151602 + 1067300 -33.779028 -33.780058 0.0010291089 54.161081 -0.13024989 + 1067400 -33.78684 -33.794993 0.0081535563 429.1144 0.43815666 + 1067500 -33.792668 -33.80374 0.011071255 582.67027 0.58723538 + 1067600 -33.795003 -33.798478 0.0034749432 182.88316 0.26205034 + 1067700 -33.795016 -33.795462 0.00044620783 23.48352 0.027762357 + 1067800 -33.792553 -33.801144 0.0085912665 452.15069 0.072510732 + 1067900 -33.785982 -33.801923 0.015941497 838.98675 0.0095006547 + 1068000 -33.789048 -33.790954 0.0019061552 100.31925 -0.72201667 + 1068100 -33.793833 -33.796135 0.0023016998 121.13641 -0.74291312 + 1068200 -33.793982 -33.803254 0.0092714503 487.94816 -0.36856594 + 1068300 -33.792534 -33.800029 0.0074948132 394.44533 -0.28007107 + 1068400 -33.790467 -33.79092 0.00045311915 23.847256 -0.34656534 + 1068500 -33.788966 -33.796448 0.0074817145 393.75596 0.30376976 + 1068600 -33.793271 -33.803856 0.010584306 557.04257 0.76399691 + 1068700 -33.79639 -33.799202 0.0028112466 147.9534 0.55611988 + 1068800 -33.795748 -33.79608 0.00033234067 17.490793 0.42117119 + 1068900 -33.792089 -33.801123 0.0090336079 475.43073 0.47939037 + 1069000 -33.788057 -33.802216 0.014158968 745.17385 0.17716224 + 1069100 -33.790246 -33.79209 0.001844237 97.060551 -0.60514261 + 1069200 -33.792105 -33.794939 0.0028339859 149.15015 -0.81539391 + 1069300 -33.794028 -33.803371 0.0093426767 491.69674 -0.61092585 + 1069400 -33.795172 -33.800892 0.0057197831 301.02708 -0.59448943 + 1069500 -33.794584 -33.794788 0.00020415182 10.744328 -0.64997976 + 1069600 -33.79096 -33.79729 0.0063299379 333.13898 -0.096689284 + 1069700 -33.787254 -33.80382 0.016566294 871.86929 0.83491712 + 1069800 -33.792395 -33.796463 0.0040683192 214.11201 0.76670806 + 1069900 -33.795028 -33.795469 0.00044114907 23.217282 0.82677394 + 1070000 -33.794761 -33.801708 0.0069464524 365.58559 1.0227657 + 1070100 -33.793007 -33.802645 0.0096375679 507.2166 0.72777351 + 1070200 -33.79147 -33.793416 0.0019460285 102.41774 -0.042602375 + 1070300 -33.790431 -33.793702 0.0032707326 172.13574 -0.55228932 + 1070400 -33.793 -33.803235 0.010235085 538.66338 -0.71080641 + 1070500 -33.796129 -33.801224 0.0050949168 268.14093 -0.94719625 + 1070600 -33.795922 -33.796077 0.00015486632 8.150476 -1.0885718 + 1070700 -33.792768 -33.798104 0.005335935 280.8255 -0.66370682 + 1070800 -33.787821 -33.803879 0.016057836 845.10956 0.36719768 + 1070900 -33.790657 -33.795713 0.0050558208 266.08334 0.57179596 + 1071000 -33.792283 -33.792885 0.00060131173 31.6465 0.81836817 + 1071100 -33.792643 -33.80107 0.0084268267 443.49637 1.3585121 + 1071200 -33.792639 -33.802492 0.0098538691 518.60034 1.2598884 + 1071300 -33.792638 -33.794237 0.001599671 84.189258 0.60947653 + 1071400 -33.793048 -33.795705 0.0026570071 139.83591 0.23170784 + 1071500 -33.794242 -33.803472 0.009230103 485.77209 -0.016834507 + 1071600 -33.795095 -33.800987 0.0058921731 310.09982 -0.4976919 + 1071700 -33.793891 -33.794107 0.00021504168 11.317452 -0.98749346 + 1071800 -33.789517 -33.796372 0.0068546904 360.75624 -1.0046417 + 1071900 -33.786318 -33.803685 0.017367151 914.01766 -0.57473177 + 1072000 -33.79311 -33.796915 0.0038045605 200.23062 -0.7867687 + 1072100 -33.794704 -33.795258 0.00055359611 29.135269 -0.68002689 + 1072200 -33.793954 -33.801649 0.0076949523 404.97847 -0.025561046 + 1072300 -33.79164 -33.802402 0.010761909 566.38967 0.47659723 + 1072400 -33.789356 -33.791414 0.0020580495 108.31331 0.46803652 + 1072500 -33.78864 -33.792398 0.0037581037 197.78565 0.90986134 + 1072600 -33.793508 -33.803198 0.0096899012 509.97086 1.3088494 + 1072700 -33.795935 -33.800989 0.005053876 265.98099 0.99685512 + 1072800 -33.794977 -33.795326 0.00034837579 18.334707 0.49529201 + 1072900 -33.790613 -33.797601 0.0069883337 367.78977 0.056245075 + 1073000 -33.78547 -33.803566 0.018095961 952.37428 -0.52424183 + 1073100 -33.78987 -33.794717 0.0048467118 255.07812 -1.5913691 + 1073200 -33.791322 -33.792258 0.00093570911 49.245536 -2.0411174 + 1073300 -33.792828 -33.801112 0.0082843848 435.99978 -1.6035052 + 1073400 -33.794485 -33.802408 0.0079232177 416.99188 -1.1120178 + 1073500 -33.795545 -33.796967 0.0014213359 74.803639 -0.78765442 + 1073600 -33.795914 -33.798237 0.0023227123 122.24228 -0.047945976 + 1073700 -33.794202 -33.803346 0.009143884 481.23446 0.91928032 + 1073800 -33.789408 -33.798597 0.00918938 483.62887 1.5139699 + 1073900 -33.788198 -33.78888 0.00068217724 35.90238 1.8176113 + 1074000 -33.791248 -33.79737 0.0061218499 322.1875 2.2853439 + 1074100 -33.795679 -33.803055 0.0073760969 388.1974 2.1147595 + 1074200 -33.795149 -33.798686 0.0035367684 186.13696 1.360982 + 1074300 -33.793366 -33.795383 0.0020175016 106.17931 0.2322137 + 1074400 -33.791361 -33.801139 0.0097788308 514.65114 -0.81649655 + 1074500 -33.792372 -33.801834 0.0094620822 497.98094 -1.8846527 + 1074600 -33.795762 -33.796888 0.0011255625 59.237352 -2.7006418 + 1074700 -33.796188 -33.797884 0.0016957308 89.244797 -2.5897578 + 1074800 -33.792862 -33.802616 0.0097542747 513.35878 -1.5854132 + 1074900 -33.788288 -33.79952 0.011231299 591.09327 -0.15687157 + 1075000 -33.791705 -33.793854 0.0021492826 113.11483 1.1033933 + 1075100 -33.7932 -33.798202 0.0050026957 263.28741 2.3088269 + 1075200 -33.792918 -33.802155 0.0092361051 486.08797 2.9225745 + 1075300 -33.790848 -33.795765 0.0049166087 258.75673 2.6251251 + 1075400 -33.785693 -33.788442 0.0027489582 144.67522 1.7007779 + 1075500 -33.784663 -33.798943 0.014279506 751.51766 0.68254953 + 1075600 -33.794195 -33.802306 0.0081108474 426.86666 -0.36114621 + 1075700 -33.795142 -33.796845 0.0017033044 89.643393 -1.1997087 + 1075800 -33.794097 -33.796815 0.0027173747 143.01301 -1.6057727 + 1075900 -33.789764 -33.80202 0.012255526 644.9974 -1.4324928 + 1076000 -33.786833 -33.796882 0.010049179 528.87932 -1.3443927 + 1076100 -33.792402 -33.793605 0.0012027769 63.301078 -1.2030899 + 1076200 -33.795667 -33.800113 0.0044455998 233.96795 -0.57445005 + 1076300 -33.794741 -33.803012 0.0082709846 435.29454 0.0730682 + 1076400 -33.791661 -33.796431 0.004769402 251.00937 0.43895304 + 1076500 -33.788594 -33.79128 0.002686677 141.39741 0.99908829 + 1076600 -33.789075 -33.799688 0.010613316 558.56937 1.8183372 + 1076700 -33.795566 -33.801638 0.0060716864 319.54744 1.7748081 + 1076800 -33.795924 -33.797538 0.0016141713 84.952397 1.3529293 + 1076900 -33.79367 -33.797597 0.0039270494 206.67711 0.74043291 + 1077000 -33.788607 -33.801956 0.013348711 702.53077 -0.11888525 + 1077100 -33.790721 -33.797973 0.0072519836 381.66543 -1.4348143 + 1077200 -33.796604 -33.797617 0.0010129328 53.30975 -2.1358807 + 1077300 -33.796238 -33.80014 0.0039019343 205.35532 -2.0108808 + 1077400 -33.79267 -33.80189 0.0092198383 485.23187 -1.2970663 + 1077500 -33.789788 -33.795757 0.005968999 314.14309 -0.46753196 + 1077600 -33.791567 -33.795068 0.0035009216 184.25038 0.65925274 + 1077700 -33.795898 -33.801508 0.0056105644 295.279 1.5939863 + 1077800 -33.797191 -33.801658 0.0044667086 235.07889 1.7573934 + 1077900 -33.796081 -33.797917 0.0018365211 96.654465 1.50253 + 1078000 -33.793461 -33.797761 0.0043007976 226.34714 1.0139228 + 1078100 -33.789869 -33.801417 0.01154734 607.72622 0.18799117 + 1078200 -33.791334 -33.798081 0.0067466263 355.06892 -1.0009731 + 1078300 -33.796144 -33.797788 0.00164358 86.500151 -1.7299866 + 1078400 -33.796933 -33.800727 0.0037937666 199.66255 -1.7711758 + 1078500 -33.795177 -33.801634 0.0064570272 339.82758 -1.3703754 + 1078600 -33.792997 -33.797258 0.0042609632 224.25069 -0.80643349 + 1078700 -33.79196 -33.796302 0.0043417747 228.50373 0.12630677 + 1078800 -33.79254 -33.800768 0.0082271721 432.98873 1.2831406 + 1078900 -33.796771 -33.800995 0.0042240954 222.31037 1.7428495 + 1079000 -33.798521 -33.79979 0.001269508 66.813075 1.7016408 + 1079100 -33.797004 -33.800287 0.00328336 172.80031 1.4381356 + 1079200 -33.793301 -33.801611 0.0083099304 437.34422 0.67503074 + 1079300 -33.792337 -33.798225 0.0058877028 309.86455 -0.61985047 + 1079400 -33.792998 -33.796351 0.0033531604 176.47384 -1.7103453 + 1079500 -33.794289 -33.799953 0.005664198 298.10169 -2.236319 + 1079600 -33.796439 -33.801025 0.0045863037 241.37307 -2.3026891 + 1079700 -33.796719 -33.799009 0.0022897657 120.50833 -1.9696272 + 1079800 -33.793181 -33.798198 0.0050164591 264.01177 -1.0297575 + 1079900 -33.78894 -33.800738 0.011797926 620.91434 0.79875417 + 1080000 -33.792574 -33.79881 0.0062351737 328.15163 2.1440566 + 1080100 -33.794203 -33.796452 0.0022492511 118.37608 2.7389525 + 1080200 -33.79348 -33.798574 0.0050941873 268.10253 2.9885144 + 1080300 -33.791614 -33.800096 0.0084819695 446.39849 2.5759311 + 1080400 -33.790588 -33.796179 0.0055904785 294.2219 1.2760793 + 1080500 -33.794275 -33.798069 0.0037939696 199.67323 0.035643823 + 1080600 -33.797869 -33.80233 0.0044616333 234.81178 -0.66015166 + 1080700 -33.796833 -33.80126 0.0044268177 232.97946 -1.2511984 + 1080800 -33.793833 -33.796224 0.0023910359 125.83809 -1.7650435 + 1080900 -33.791846 -33.797131 0.0052847739 278.13294 -1.860815 + 1081000 -33.790891 -33.800873 0.0099811853 525.30088 -1.5085019 + 1081100 -33.792006 -33.797387 0.0053810699 283.20091 -1.090819 + 1081200 -33.796173 -33.798147 0.0019743471 103.90813 -0.57369839 + 1081300 -33.798041 -33.80197 0.0039298588 206.82496 -0.012190723 + 1081400 -33.79645 -33.802104 0.0056537957 297.55422 0.51126638 + 1081500 -33.793874 -33.796823 0.0029497242 155.24135 0.81728268 + 1081600 -33.792602 -33.79623 0.0036275488 190.91466 1.2152075 + 1081700 -33.791503 -33.801111 0.0096079304 505.65681 1.6141525 + 1081800 -33.791277 -33.798548 0.0072707896 382.65517 1.3075695 + 1081900 -33.793501 -33.795324 0.0018233242 95.959928 0.75417045 + 1082000 -33.796213 -33.800319 0.0041060436 216.09741 0.46939161 + 1082100 -33.796564 -33.802876 0.0063113144 332.15885 0.079890478 + 1082200 -33.792388 -33.797187 0.004799113 252.57303 -0.55586645 + 1082300 -33.788276 -33.791567 0.003291546 173.23113 -1.3574873 + 1082400 -33.789512 -33.799681 0.010169384 535.2056 -1.594171 + 1082500 -33.792274 -33.800658 0.0083840782 441.24655 -1.6564192 + 1082600 -33.793367 -33.795384 0.0020179838 106.20469 -1.6226526 + 1082700 -33.79329 -33.797123 0.0038322171 201.68617 -1.0137935 + 1082800 -33.792394 -33.802577 0.0101829 535.91695 0.037185325 + 1082900 -33.792272 -33.799072 0.0068001755 357.88717 0.71367134 + 1083000 -33.793207 -33.794591 0.0013838237 72.829405 1.1629798 + 1083100 -33.794 -33.799416 0.0054155129 285.01361 1.7133272 + 1083200 -33.793717 -33.802437 0.0087195803 458.90373 1.7870416 + 1083300 -33.790823 -33.795193 0.004369292 229.95194 1.1479242 + 1083400 -33.786958 -33.79036 0.0034018894 179.0384 0.25090701 + 1083500 -33.78985 -33.801061 0.011211535 590.0531 -0.36306802 + 1083600 -33.795368 -33.801798 0.0064295712 338.3826 -0.94839362 + 1083700 -33.795006 -33.796131 0.0011249875 59.207087 -1.3435121 + 1083800 -33.792816 -33.796704 0.0038879156 204.61753 -1.254121 + 1083900 -33.788374 -33.802868 0.014493691 762.79002 -0.54999286 + 1084000 -33.789392 -33.796908 0.0075158941 395.5548 -0.19125108 + 1084100 -33.795712 -33.796252 0.00054025966 28.433384 0.049419064 + 1084200 -33.796371 -33.800867 0.0044953465 236.58607 0.50470894 + 1084300 -33.793715 -33.803081 0.0093653852 492.89187 0.83430951 + 1084400 -33.789525 -33.793803 0.0042788565 225.1924 0.59777117 + 1084500 -33.78928 -33.791565 0.0022855269 120.28524 0.49931169 + 1084600 -33.791317 -33.801846 0.010528247 554.09227 0.6837471 + 1084700 -33.792597 -33.801267 0.0086698513 456.28654 0.34699194 + 1084800 -33.792913 -33.793881 0.0009673169 50.909025 -0.20442714 + 1084900 -33.792776 -33.79684 0.0040640678 213.88826 -0.37823858 + 1085000 -33.792847 -33.803478 0.010631211 559.51117 -0.33971914 + 1085100 -33.79454 -33.799385 0.0048452722 255.00236 -0.57964302 + 1085200 -33.795326 -33.795705 0.00037913931 19.953763 -0.72995631 + 1085300 -33.794665 -33.8005 0.0058356526 307.12519 -0.37009112 + 1085400 -33.789743 -33.803026 0.013282532 699.04783 0.16777026 + 1085500 -33.787097 -33.791372 0.0042746679 224.97196 0.135171 + 1085600 -33.790904 -33.792929 0.0020246615 106.55613 0.47796369 + 1085700 -33.794925 -33.80249 0.0075647115 398.12402 0.90341323 + 1085800 -33.794301 -33.801626 0.0073243639 385.47474 0.77588745 + 1085900 -33.792192 -33.79332 0.0011282485 59.378713 0.27549007 + 1086000 -33.789669 -33.795191 0.0055219717 290.61645 0.014027447 + 1086100 -33.790382 -33.803653 0.013271246 698.45385 -0.14362009 + 1086200 -33.79618 -33.800084 0.0039042412 205.47673 -0.62222549 + 1086300 -33.796451 -33.79655 9.8899493e-05 5.2049921 -0.83526652 + 1086400 -33.794224 -33.800252 0.0060282455 317.26118 -0.56875001 + 1086500 -33.789336 -33.803236 0.013900398 731.56556 -0.029741526 + 1086600 -33.790398 -33.793941 0.0035428244 186.45569 -0.061589875 + 1086700 -33.791877 -33.793625 0.0017475258 91.970722 0.21280208 + 1086800 -33.793262 -33.802458 0.0091961853 483.98703 0.76955261 + 1086900 -33.794383 -33.801715 0.007332349 385.89499 0.7535492 + 1087000 -33.795216 -33.7957 0.00048345732 25.443928 0.41674134 + 1087100 -33.795196 -33.798287 0.0030903002 162.63974 0.35156811 + 1087200 -33.792513 -33.803873 0.011359181 597.82357 0.31380331 + 1087300 -33.788807 -33.796795 0.0079873439 420.36678 -0.29962127 + 1087400 -33.789443 -33.789879 0.00043558192 22.924288 -0.96619201 + 1087500 -33.794576 -33.800383 0.005807078 305.62134 -0.8537266 + 1087600 -33.79589 -33.803411 0.0075213854 395.8438 -0.70505979 + 1087700 -33.794323 -33.796906 0.0025835448 135.96966 -0.68667574 + 1087800 -33.792042 -33.79371 0.0016683993 87.806365 -0.35347429 + 1087900 -33.790475 -33.802181 0.011706738 616.11518 0.57738092 + 1088000 -33.793591 -33.801729 0.0081378356 428.28703 0.95308286 + 1088100 -33.798068 -33.798436 0.00036783145 19.358641 0.85124951 + 1088200 -33.797549 -33.799473 0.0019233635 101.2249 0.82915939 + 1088300 -33.793699 -33.803736 0.010037325 528.25546 0.74587448 + 1088400 -33.790818 -33.798615 0.0077973057 410.36524 -0.028677992 + 1088500 -33.791453 -33.792069 0.00061618452 32.429242 -0.90920192 + 1088600 -33.793647 -33.799415 0.0057686315 303.59793 -1.0793076 + 1088700 -33.797733 -33.803456 0.0057229319 301.1928 -1.1129789 + 1088800 -33.798468 -33.800212 0.0017440928 91.790048 -1.0781203 + 1088900 -33.797169 -33.798042 0.00087324529 45.958121 -0.73796423 + 1089000 -33.795366 -33.802433 0.0070663666 371.89657 0.11795705 + 1089100 -33.792228 -33.802394 0.010166272 535.04182 1.0303099 + 1089200 -33.790588 -33.792913 0.002324866 122.35563 1.4657435 + 1089300 -33.790535 -33.793766 0.0032314555 170.06862 2.0197323 + 1089400 -33.793461 -33.801985 0.0085238649 448.60341 2.3672631 + 1089500 -33.795664 -33.800333 0.0046686041 245.70447 1.8684741 + 1089600 -33.79494 -33.796286 0.0013454566 70.810181 1.0332363 + 1089700 -33.789642 -33.798603 0.0089612763 471.62398 0.10048193 + 1089800 -33.788561 -33.803323 0.014761196 776.86855 -1.2671301 + 1089900 -33.794961 -33.798101 0.0031400114 165.256 -2.426213 + 1090000 -33.794725 -33.79509 0.00036535464 19.228289 -2.7144977 + 1090100 -33.792177 -33.800039 0.0078617888 413.75893 -2.0994966 + 1090200 -33.788876 -33.801988 0.013112005 690.07311 -0.89562913 + 1090300 -33.792767 -33.795751 0.0029836428 157.02646 0.00076147391 + 1090400 -33.796459 -33.798584 0.0021250705 111.84056 0.83289101 + 1090500 -33.796036 -33.803037 0.0070005395 368.43215 1.5444721 + 1090600 -33.793256 -33.800215 0.0069595698 366.27595 1.7210531 + 1090700 -33.789998 -33.79085 0.00085208309 44.844373 1.3280228 + 1090800 -33.78864 -33.795481 0.006840829 360.02673 1.1454339 + 1090900 -33.792695 -33.803088 0.010392825 546.96508 0.72626768 + 1091000 -33.796711 -33.799712 0.0030001995 157.89782 0.051243787 + 1091100 -33.795938 -33.796943 0.0010045228 52.86714 -0.42788879 + 1091200 -33.793325 -33.801196 0.0078716555 414.27821 -0.64673145 + 1091300 -33.790431 -33.802373 0.011942728 628.53511 -0.89351713 + 1091400 -33.791958 -33.794489 0.0025316828 133.24021 -1.3747671 + 1091500 -33.796166 -33.797598 0.0014325944 75.396167 -1.2787036 + 1091600 -33.796553 -33.802295 0.0057415969 302.17512 -0.80308014 + 1091700 -33.792845 -33.800759 0.0079132324 416.46636 -0.23720837 + 1091800 -33.790221 -33.793612 0.0033908933 178.45969 0.34001038 + 1091900 -33.791943 -33.797725 0.0057820492 304.30409 1.2413861 + 1092000 -33.793224 -33.802486 0.0092620341 487.45259 1.8132278 + 1092100 -33.793059 -33.7976 0.004541083 238.99315 1.6422492 + 1092200 -33.791097 -33.792238 0.0011410289 60.051333 1.1766891 + 1092300 -33.783219 -33.797254 0.014034877 738.64308 0.72981921 + 1092400 -33.786375 -33.801728 0.015353875 808.06076 -0.33431609 + 1092500 -33.792937 -33.795589 0.0026513442 139.53788 -1.3044969 + 1092600 -33.793841 -33.796444 0.0026024351 136.96384 -1.560853 + 1092700 -33.79382 -33.802214 0.0083936395 441.74976 -1.2656975 + 1092800 -33.792276 -33.799958 0.0076820248 404.29812 -0.928689 + 1092900 -33.789438 -33.791795 0.0023575633 124.07645 -0.54469948 + 1093000 -33.788497 -33.795964 0.0074671557 392.98974 0.50923762 + 1093100 -33.794024 -33.802519 0.0084958112 447.12697 1.2724168 + 1093200 -33.795805 -33.799079 0.0032736193 172.28766 1.2769663 + 1093300 -33.794544 -33.796072 0.0015277577 80.404526 1.1107618 + 1093400 -33.790749 -33.800154 0.0094050062 494.97709 0.96236943 + 1093500 -33.786123 -33.800741 0.014618107 769.33796 0.33143157 + 1093600 -33.79049 -33.793799 0.0033092022 174.16036 -0.77469578 + 1093700 -33.794538 -33.797112 0.0025736206 135.44736 -1.1284482 + 1093800 -33.795193 -33.801831 0.0066374111 349.32102 -1.0620358 + 1093900 -33.792591 -33.799566 0.0069749583 367.08583 -0.90487658 + 1094000 -33.788405 -33.792366 0.0039608857 208.45788 -0.64154449 + 1094100 -33.790546 -33.797773 0.0072265865 380.3288 0.14216445 + 1094200 -33.79636 -33.802448 0.0060877629 320.39353 0.60622583 + 1094300 -33.795728 -33.798865 0.0031366478 165.07897 0.66800407 + 1094400 -33.792946 -33.795222 0.0022751003 119.7365 0.65116149 + 1094500 -33.789624 -33.799646 0.010021932 527.44535 0.83810938 + 1094600 -33.790877 -33.800573 0.0096956583 510.27385 0.60202599 + 1094700 -33.795592 -33.797669 0.0020775464 109.33941 0.13182977 + 1094800 -33.797903 -33.800015 0.0021124742 111.17763 -0.0080728489 + 1094900 -33.796992 -33.802383 0.0053903929 283.69157 -0.086860513 + 1095000 -33.793794 -33.799657 0.005863083 308.56883 -0.31585349 + 1095100 -33.790475 -33.794084 0.0036097084 189.97573 -0.6377435 + 1095200 -33.790271 -33.797974 0.0077037364 405.44078 -0.59084763 + 1095300 -33.794814 -33.801533 0.0067193973 353.63589 -0.50196 + 1095400 -33.797041 -33.799387 0.0023461061 123.47347 -0.50496849 + 1095500 -33.796072 -33.798292 0.0022206406 116.87033 -0.32920902 + 1095600 -33.794219 -33.801148 0.0069289496 364.66444 0.14495875 + 1095700 -33.792514 -33.800437 0.0079233678 416.99978 0.50507242 + 1095800 -33.792335 -33.79611 0.0037744342 198.64511 0.60503234 + 1095900 -33.794585 -33.798695 0.0041096214 216.28571 0.80310911 + 1096000 -33.797396 -33.801933 0.0045371033 238.7837 0.81884793 + 1096100 -33.796557 -33.799929 0.0033725323 177.49337 0.54051316 + 1096200 -33.791806 -33.795319 0.0035126257 184.86636 0.029863837 + 1096300 -33.790376 -33.799107 0.0087313537 459.52336 -0.42977025 + 1096400 -33.792774 -33.800903 0.0081290865 427.82657 -0.90435507 + 1096500 -33.795204 -33.798103 0.0028987633 152.55933 -1.2510026 + 1096600 -33.796091 -33.798808 0.0027167482 142.98003 -1.1945831 + 1096700 -33.795522 -33.801488 0.0059654921 313.95853 -0.7849751 + 1096800 -33.790995 -33.798414 0.0074187466 390.44201 -0.20353524 + 1096900 -33.788318 -33.792764 0.0044461069 233.99464 0.48090616 + 1097000 -33.791267 -33.798131 0.0068645616 361.27575 1.3767626 + 1097100 -33.795245 -33.801574 0.0063282815 333.05181 1.7194519 + 1097200 -33.795207 -33.798494 0.0032870413 172.99405 1.4745612 + 1097300 -33.793887 -33.797033 0.0031464248 165.59353 1.0075479 + 1097400 -33.792459 -33.80071 0.0082512085 434.25375 0.44543595 + 1097500 -33.792204 -33.799926 0.0077214699 406.37407 -0.46044033 + 1097600 -33.793033 -33.795737 0.002704823 142.35242 -1.3424719 + 1097700 -33.796642 -33.799716 0.0030738921 161.7762 -1.6133243 + 1097800 -33.79791 -33.802415 0.0045053042 237.11014 -1.486453 + 1097900 -33.795225 -33.799684 0.0044596117 234.70539 -1.0988219 + 1098000 -33.79147 -33.795395 0.0039247566 206.55644 -0.27828249 + 1098100 -33.791443 -33.799571 0.0081279409 427.76628 0.98418865 + 1098200 -33.793463 -33.800997 0.0075335194 396.48241 1.8324824 + 1098300 -33.794794 -33.797073 0.0022796103 119.97386 1.9934971 + 1098400 -33.796173 -33.798289 0.0021160861 111.36772 1.9252793 + 1098500 -33.796107 -33.801994 0.005886572 309.80503 1.6177096 + 1098600 -33.792311 -33.800305 0.0079936143 420.69679 0.69396525 + 1098700 -33.789848 -33.794503 0.0046551802 244.99798 -0.84838184 + 1098800 -33.793471 -33.798598 0.0051274131 269.85118 -1.8837383 + 1098900 -33.796636 -33.801894 0.005258051 276.72654 -2.255142 + 1099000 -33.795839 -33.798937 0.0030982725 163.05932 -2.2269075 + 1099100 -33.794038 -33.796244 0.0022065223 116.1273 -1.6378153 + 1099200 -33.791828 -33.800578 0.0087508178 460.54774 -0.28805202 + 1099300 -33.792742 -33.802054 0.0093124444 490.10564 1.0584946 + 1099400 -33.797516 -33.799168 0.0016517253 86.928831 1.6709975 + 1099500 -33.798283 -33.799623 0.0013400315 70.524662 1.8958856 + 1099600 -33.796534 -33.802328 0.0057934908 304.90625 1.8387668 + 1099700 -33.794209 -33.80071 0.0065009904 342.14133 1.1258398 + 1099800 -33.792655 -33.795092 0.0024370361 128.25904 -0.13859033 + 1099900 -33.791997 -33.797969 0.005972062 314.30429 -1.1568554 + 1100000 -33.793792 -33.802432 0.0086396489 454.69702 -1.881773 + 1100100 -33.796843 -33.799552 0.0027094183 142.59427 -2.3508422 + 1100200 -33.796834 -33.797719 0.00088477822 46.565089 -2.186033 + 1100300 -33.79219 -33.800595 0.0084051341 442.35471 -1.1541013 + 1100400 -33.789172 -33.802296 0.013123594 690.68303 0.50665929 + 1100500 -33.792944 -33.796011 0.0030672018 161.4241 1.5373377 + 1100600 -33.794189 -33.796285 0.0020960983 110.31579 2.2883297 + 1100700 -33.793293 -33.801523 0.0082298454 433.12942 2.7482603 + 1100800 -33.785703 -33.797437 0.011734109 617.55571 2.3939188 + 1100900 -33.78313 -33.786212 0.003081247 162.16328 0.83778086 + 1101000 -33.788769 -33.796667 0.0078976247 415.64494 -0.044673546 + 1101100 -33.793135 -33.803327 0.010191391 536.3638 -0.70198224 + 1101200 -33.795258 -33.798602 0.0033439806 175.99072 -1.4279808 + 1101300 -33.794886 -33.79551 0.00062393837 32.83732 -1.6941602 + 1101400 -33.790534 -33.800221 0.0096861129 509.77148 -1.2206494 + 1101500 -33.786051 -33.801523 0.015471585 814.2557 -0.48990018 + 1101600 -33.790721 -33.793004 0.0022833017 120.16813 -0.21152675 + 1101700 -33.792489 -33.795571 0.003081903 162.1978 0.40421631 + 1101800 -33.79312 -33.803082 0.009961675 524.27407 1.0595015 + 1101900 -33.793376 -33.799916 0.0065401555 344.20255 1.1206988 + 1102000 -33.792394 -33.792787 0.00039306804 20.68682 0.80105383 + 1102100 -33.789411 -33.796993 0.0075825519 399.06294 0.72653684 + 1102200 -33.788455 -33.803529 0.015073995 793.33093 0.53114148 + 1102300 -33.79425 -33.797489 0.0032395868 170.49656 -0.29149925 + 1102400 -33.79568 -33.796359 0.00067909635 35.740235 -0.63619351 + 1102500 -33.794866 -33.802015 0.0071487662 376.23319 -0.52641471 + 1102600 -33.792176 -33.802134 0.009957961 524.0786 -0.51020418 + 1102700 -33.790676 -33.792297 0.0016211765 85.321074 -0.75264263 + 1102800 -33.79089 -33.794436 0.0035454987 186.59643 -0.42572049 + 1102900 -33.791583 -33.803395 0.01181257 621.68504 0.18546441 + 1103000 -33.793463 -33.799756 0.0062926655 331.17737 0.27460955 + 1103100 -33.7946 -33.794735 0.00013481173 7.0950212 0.23565713 + 1103200 -33.79497 -33.799876 0.0049064357 258.22133 0.50187685 + 1103300 -33.793353 -33.803747 0.010393761 547.01438 0.68309933 + 1103400 -33.788802 -33.793912 0.0051103178 268.95147 0.24307698 + 1103500 -33.787565 -33.78909 0.0015242735 80.221155 -0.18992107 + 1103600 -33.792259 -33.801538 0.0092785773 488.32325 0.0035425807 + 1103700 -33.795158 -33.802389 0.0072315637 380.59075 -0.15154673 + 1103800 -33.794371 -33.795365 0.00099416733 52.32214 -0.47895516 + 1103900 -33.792489 -33.795771 0.0032819864 172.72802 -0.39306257 + 1104000 -33.789218 -33.803685 0.014466923 761.38128 0.065210302 + 1104100 -33.789408 -33.797931 0.0085234657 448.58239 -0.018741996 + 1104200 -33.794114 -33.794205 9.0255277e-05 4.7500547 -0.12077035 + 1104300 -33.795794 -33.800294 0.0044991419 236.78582 0.16003867 + 1104400 -33.794674 -33.803612 0.0089386053 470.43083 0.37035921 + 1104500 -33.789276 -33.7941 0.0048235423 253.85873 0.13682628 + 1104600 -33.787404 -33.789316 0.0019114051 100.59555 -0.051140763 + 1104700 -33.789966 -33.801534 0.011568586 608.84437 0.34133533 + 1104800 -33.792289 -33.80176 0.0094718038 498.49258 0.23507154 + 1104900 -33.793441 -33.794184 0.00074249763 39.076988 -0.18894239 + 1105000 -33.793741 -33.796833 0.0030924145 162.75102 -0.14929969 + 1105100 -33.793818 -33.803642 0.0098239652 517.02653 0.066390897 + 1105200 -33.793727 -33.799617 0.0058901827 309.99506 -0.13132855 + 1105300 -33.792617 -33.793055 0.00043770797 23.03618 -0.35073295 + 1105400 -33.790825 -33.79867 0.0078440582 412.82579 -0.055114161 + 1105500 -33.790513 -33.803392 0.012878344 677.77575 0.19767221 + 1105600 -33.794577 -33.796968 0.002391799 125.87825 -0.066265677 + 1105700 -33.796325 -33.797088 0.00076313728 40.163234 -0.06772118 + 1105800 -33.79575 -33.802542 0.0067916837 357.44026 0.18554776 + 1105900 -33.787801 -33.800947 0.013146127 691.86893 0.3150586 + 1106000 -33.788231 -33.790332 0.0021017151 110.61139 -0.13905405 + 1106100 -33.791881 -33.795935 0.0040533601 213.32473 -0.0030445875 + 1106200 -33.793825 -33.803128 0.0093028176 489.59899 0.2177572 + 1106300 -33.793657 -33.79904 0.005382544 283.27849 0.0048536334 + 1106400 -33.790088 -33.790836 0.00074821456 39.377865 -0.28697913 + 1106500 -33.782329 -33.796077 0.013747891 723.53925 0.019495786 + 1106600 -33.789553 -33.803222 0.013669493 719.41324 0.09202104 + 1106700 -33.793004 -33.795759 0.0027547735 144.98127 -0.26612273 + 1106800 -33.793664 -33.79506 0.0013963895 73.490736 -0.28572541 + 1106900 -33.793281 -33.802128 0.0088464733 465.582 0.049747508 + 1107000 -33.790396 -33.800551 0.010155819 534.49169 0.13663278 + 1107100 -33.786849 -33.788815 0.0019666138 103.50113 -0.17170112 + 1107200 -33.789613 -33.795493 0.0058803391 309.477 0.11526166 + 1107300 -33.794772 -33.803494 0.0087219388 459.02786 0.36074638 + 1107400 -33.794864 -33.799223 0.0043593697 229.42974 0.15624976 + 1107500 -33.793003 -33.793542 0.00053874038 28.353426 -0.095635596 + 1107600 -33.789016 -33.798807 0.0097915455 515.32031 0.089643416 + 1107700 -33.783503 -33.801901 0.018397382 968.2378 0.16664953 + 1107800 -33.791072 -33.793796 0.0027243564 143.38045 -0.42872121 + 1107900 -33.794536 -33.796502 0.001966117 103.47498 -0.42204493 + 1108000 -33.795188 -33.802741 0.0075529574 397.50541 -0.15700388 + 1108100 -33.793146 -33.800576 0.0074305594 391.06371 -0.090595927 + 1108200 -33.788493 -33.789983 0.0014901632 78.425958 -0.23792417 + 1108300 -33.786956 -33.794713 0.0077570492 408.24658 0.20030926 + 1108400 -33.79385 -33.803302 0.0094525635 497.47999 0.55097232 + 1108500 -33.795513 -33.799157 0.0036440898 191.78519 0.36829118 + 1108600 -33.794143 -33.795099 0.00095683021 50.357121 0.16442419 + 1108700 -33.790788 -33.799935 0.0091474375 481.42148 0.2834348 + 1108800 -33.788061 -33.801329 0.013267537 698.25864 0.15227598 + 1108900 -33.793354 -33.795314 0.0019602976 103.16871 -0.41178169 + 1109000 -33.796373 -33.798423 0.0020496851 107.8731 -0.42510722 + 1109100 -33.795621 -33.802833 0.0072125551 379.59034 -0.23191499 + 1109200 -33.791977 -33.799517 0.0075401048 396.82899 -0.19544466 + 1109300 -33.789426 -33.791179 0.0017526356 92.239651 -0.27408847 + 1109400 -33.789963 -33.797108 0.0071453623 376.05404 0.15588871 + 1109500 -33.791268 -33.802277 0.011008759 579.38119 0.50273054 + 1109600 -33.792591 -33.79673 0.0041394545 217.8558 0.35697795 + 1109700 -33.79353 -33.795478 0.0019476773 102.50452 0.27881636 + 1109800 -33.794991 -33.801536 0.0065445012 344.43126 0.42069427 + 1109900 -33.797438 -33.802369 0.0049305852 259.4923 0.29633337 + 1110000 -33.797782 -33.799143 0.0013612042 71.638962 0.016949742 + 1110100 -33.794319 -33.797634 0.0033146493 174.44703 -0.14527106 + 1110200 -33.789871 -33.801537 0.011666004 613.97138 -0.15297678 + 1110300 -33.790658 -33.797692 0.0070338197 370.18365 -0.55649872 + 1110400 -33.793286 -33.795032 0.0017455968 91.869203 -0.78916275 + 1110500 -33.796008 -33.800507 0.0044990109 236.77893 -0.57213197 + 1110600 -33.798275 -33.802833 0.0045575368 239.85909 -0.39223532 + 1110700 -33.800298 -33.801623 0.0013241259 69.687564 -0.29769533 + 1110800 -33.800207 -33.801248 0.0010411338 54.793944 -0.12658626 + 1110900 -33.796746 -33.802067 0.0053215036 280.06599 0.26798183 + 1111000 -33.79388 -33.800903 0.0070228638 369.60706 0.7002936 + 1111100 -33.791163 -33.794296 0.0031333739 164.90667 0.86490574 + 1111200 -33.789133 -33.794942 0.0058085597 305.69932 1.1723614 + 1111300 -33.789844 -33.800432 0.010588237 557.24947 1.3974162 + 1111400 -33.795142 -33.799164 0.0040219537 211.67184 1.0199993 + 1111500 -33.796197 -33.798134 0.0019367862 101.93133 0.63800647 + 1111600 -33.794807 -33.800875 0.0060678913 319.34771 0.31021151 + 1111700 -33.790094 -33.800955 0.010861356 571.6235 -0.25413534 + 1111800 -33.780909 -33.789768 0.0088587019 466.22558 -1.3685885 + 1111900 -33.78634 -33.79212 0.0057794395 304.16675 -2.1288941 + 1112000 -33.791643 -33.799111 0.0074679678 393.03248 -2.0879607 + 1112100 -33.791859 -33.797961 0.0061024728 321.1677 -1.7956008 + 1112200 -33.791511 -33.795456 0.0039447243 207.60732 -1.1675921 + 1112300 -33.794259 -33.800238 0.0059784918 314.64269 -0.19282855 + 1112400 -33.797847 -33.802987 0.0051403154 270.53022 0.47079361 + 1112500 -33.797534 -33.800389 0.0028553135 150.2726 0.80632754 + 1112600 -33.79422 -33.796905 0.0026855348 141.3373 1.0775366 + 1112700 -33.791922 -33.79968 0.0077578634 408.28943 1.4542382 + 1112800 -33.791094 -33.798983 0.0078886348 415.17182 1.3873553 + 1112900 -33.790134 -33.793092 0.0029585124 155.70387 0.82498551 + 1113000 -33.790162 -33.796019 0.0058576803 308.28449 0.39468018 + 1113100 -33.794696 -33.802336 0.0076403633 402.10551 0.033715151 + 1113200 -33.796956 -33.800752 0.0037959221 199.77599 -0.41424672 + 1113300 -33.796021 -33.797994 0.0019732594 103.85088 -0.71997375 + 1113400 -33.791819 -33.799615 0.0077964904 410.32233 -0.69935706 + 1113500 -33.78712 -33.800146 0.013025502 685.52058 -0.59233768 + 1113600 -33.789082 -33.79293 0.0038479138 202.51227 -0.76282409 + 1113700 -33.790539 -33.793755 0.0032156196 169.23519 -0.52012697 + 1113800 -33.792337 -33.800713 0.0083752184 440.78027 -0.0060985655 + 1113900 -33.79458 -33.800528 0.0059477958 313.02719 0.18763391 + 1114000 -33.796641 -33.798495 0.0018538143 97.564595 0.22362817 + 1114100 -33.798544 -33.801396 0.0028521704 150.10718 0.36588686 + 1114200 -33.799196 -33.803432 0.0042356135 222.91656 0.41812498 + 1114300 -33.795317 -33.799607 0.0042897555 225.76601 0.2244556 + 1114400 -33.792169 -33.79455 0.0023806914 125.29366 -0.16341203 + 1114500 -33.790768 -33.798874 0.0081062957 426.62711 -0.2417101 + 1114600 -33.790266 -33.800227 0.0099610537 524.24137 -0.4277176 + 1114700 -33.791294 -33.793916 0.0026219479 137.99078 -0.80137608 + 1114800 -33.793816 -33.796695 0.0028788296 151.51023 -0.69783895 + 1114900 -33.796065 -33.802605 0.0065403513 344.21286 -0.37178202 + 1115000 -33.796234 -33.80165 0.0054161007 285.04455 -0.17761081 + 1115100 -33.791802 -33.795282 0.0034803864 183.16963 -0.012786131 + 1115200 -33.787445 -33.796491 0.0090464547 476.10684 0.59505002 + 1115300 -33.791947 -33.801368 0.0094208234 495.80953 1.0602073 + 1115400 -33.793587 -33.796881 0.0032939985 173.3602 0.93791779 + 1115500 -33.79262 -33.793937 0.0013177129 69.350052 0.72137535 + 1115600 -33.791162 -33.800033 0.0088711683 466.88168 0.69435387 + 1115700 -33.79232 -33.802363 0.010043456 528.57814 0.32613906 + 1115800 -33.796065 -33.798497 0.0024311868 127.95119 -0.27577738 + 1115900 -33.798697 -33.80018 0.0014835953 78.080295 -0.46557575 + 1116000 -33.800912 -33.803257 0.0023443799 123.38262 -0.45718166 + 1116100 -33.800764 -33.802833 0.002069109 108.89536 -0.4172135 + 1116200 -33.799541 -33.80046 0.00091877805 48.354469 -0.30624911 + 1116300 -33.797305 -33.800819 0.0035148327 184.98251 0.049211265 + 1116400 -33.792715 -33.803202 0.010487072 551.92525 0.70160132 + 1116500 -33.790894 -33.797427 0.0065323068 343.78948 1.0036387 + 1116600 -33.791185 -33.792096 0.00091080594 47.934904 1.0909836 + 1116700 -33.790904 -33.797445 0.0065408442 344.2388 1.3706343 + 1116800 -33.787978 -33.800507 0.012528479 659.3627 1.3143741 + 1116900 -33.788386 -33.793475 0.0050887303 267.81533 0.50128502 + 1117000 -33.794435 -33.797254 0.0028192252 148.37331 0.062250078 + 1117100 -33.795924 -33.802932 0.0070080289 368.82631 -0.089725662 + 1117200 -33.794841 -33.801548 0.0067077171 353.02117 -0.41996204 + 1117300 -33.791031 -33.793317 0.0022857161 120.2952 -0.87874209 + 1117400 -33.78573 -33.79361 0.0078796837 414.70073 -0.90180115 + 1117500 -33.790533 -33.801451 0.010917528 574.57975 -0.66710573 + 1117600 -33.794894 -33.798439 0.0035444819 186.54292 -0.7296116 + 1117700 -33.793685 -33.795285 0.0016005926 84.237761 -0.57289891 + 1117800 -33.790628 -33.800037 0.0094084374 495.15767 0.10497987 + 1117900 -33.792658 -33.802978 0.010320007 543.13274 0.63044454 + 1118000 -33.79707 -33.798977 0.0019073691 100.38313 0.60642571 + 1118100 -33.7969 -33.797994 0.0010943779 57.596134 0.61673599 + 1118200 -33.79478 -33.801972 0.0071918991 378.50323 0.68775899 + 1118300 -33.792965 -33.801476 0.0085114849 447.95186 0.39475098 + 1118400 -33.792825 -33.795376 0.0025503056 134.22031 -0.22330348 + 1118500 -33.793937 -33.798016 0.0040793163 214.69078 -0.48786429 + 1118600 -33.797054 -33.802782 0.0057284504 301.48323 -0.54446496 + 1118700 -33.798327 -33.800886 0.0025590213 134.67901 -0.64418199 + 1118800 -33.795443 -33.796369 0.000925654 48.716344 -0.61420634 + 1118900 -33.79165 -33.799485 0.0078358253 412.3925 -0.011596765 + 1119000 -33.792578 -33.80343 0.010851496 571.10458 0.58832474 + 1119100 -33.795546 -33.798545 0.0029993635 157.85383 0.62995759 + 1119200 -33.796396 -33.79742 0.0010239465 53.889393 0.68823457 + 1119300 -33.794163 -33.801658 0.0074955291 394.48301 0.84316769 + 1119400 -33.787498 -33.80056 0.013062412 687.46307 0.6171689 + 1119500 -33.789774 -33.79187 0.0020963442 110.32873 -0.22105644 + 1119600 -33.792737 -33.796149 0.0034119526 179.56802 -0.46894898 + 1119700 -33.79366 -33.802425 0.0087651594 461.30252 -0.46525571 + 1119800 -33.793117 -33.799166 0.0060486658 318.33588 -0.68748318 + 1119900 -33.792703 -33.794192 0.0014890999 78.369998 -0.85102059 + 1120000 -33.792728 -33.799474 0.0067461522 355.04397 -0.47071384 + 1120100 -33.793308 -33.803154 0.0098462599 518.19987 -0.057573418 + 1120200 -33.794353 -33.797668 0.0033148643 174.45835 0.012151716 + 1120300 -33.795822 -33.797042 0.0012200649 64.210929 0.22760179 + 1120400 -33.796777 -33.802053 0.0052762116 277.68231 0.57318934 + 1120500 -33.794319 -33.801745 0.0074269249 390.87243 0.67975532 + 1120600 -33.789857 -33.793019 0.0031612806 166.37538 0.39038867 + 1120700 -33.789955 -33.794987 0.0050320386 264.8317 0.32801585 + 1120800 -33.792595 -33.802155 0.0095595686 503.11157 0.37632525 + 1120900 -33.793853 -33.798957 0.0051037521 268.60592 0.036823353 + 1121000 -33.793274 -33.79454 0.0012657733 66.61652 -0.30461186 + 1121100 -33.792797 -33.799577 0.0067800333 356.82711 -0.24608911 + 1121200 -33.793135 -33.803085 0.0099499236 523.6556 -0.2004654 + 1121300 -33.795042 -33.798351 0.0033089131 174.14514 -0.43066549 + 1121400 -33.796296 -33.797689 0.0013924759 73.284765 -0.41665704 + 1121500 -33.796092 -33.801778 0.0056867825 299.29029 -0.12938261 + 1121600 -33.790867 -33.800283 0.0094162243 495.56748 0.13437021 + 1121700 -33.788413 -33.790888 0.0024748723 130.25032 0.11780565 + 1121800 -33.790244 -33.79547 0.0052262825 275.05459 0.50819406 + 1121900 -33.794128 -33.802909 0.0087812593 462.14984 0.8168152 + 1122000 -33.795074 -33.799897 0.0048228544 253.82253 0.61671191 + 1122100 -33.794393 -33.795884 0.0014904369 78.440363 0.28845676 + 1122200 -33.793181 -33.799796 0.0066153287 348.15885 0.18103167 + 1122300 -33.791273 -33.801745 0.010472448 551.15558 -0.059227203 + 1122400 -33.786877 -33.791639 0.0047621826 250.62942 -0.72957066 + 1122500 -33.782672 -33.787495 0.0048231463 253.83789 -1.1686268 + 1122600 -33.78911 -33.800741 0.011630999 612.12909 -0.94260039 + 1122700 -33.793164 -33.800033 0.0068692664 361.52336 -0.95686832 + 1122800 -33.793936 -33.795812 0.0018757074 98.716807 -0.87440197 + 1122900 -33.794082 -33.799208 0.0051265613 269.80635 -0.34161227 + 1123000 -33.794105 -33.802716 0.0086114694 453.21395 0.25799014 + 1123100 -33.793668 -33.79798 0.0043117224 226.9221 0.49290478 + 1123200 -33.791755 -33.793845 0.0020900264 109.99623 0.71240433 + 1123300 -33.788368 -33.799005 0.01063696 559.81371 1.2150776 + 1123400 -33.788172 -33.799516 0.011344498 597.05082 1.240735 + 1123500 -33.794299 -33.796259 0.0019603815 103.17313 0.80823086 + 1123600 -33.795651 -33.798797 0.0031453495 165.53694 0.59700641 + 1123700 -33.794489 -33.802591 0.0081018335 426.39227 0.34353222 + 1123800 -33.791183 -33.798458 0.0072743144 382.84068 -0.29574135 + 1123900 -33.785143 -33.789316 0.0041738015 219.66345 -1.2162032 + 1124000 -33.782838 -33.795134 0.012296711 647.16491 -1.6160679 + 1124100 -33.791921 -33.800314 0.0083926773 441.69912 -1.7956859 + 1124200 -33.793211 -33.796004 0.0027926014 146.97212 -1.7745332 + 1124300 -33.792805 -33.796494 0.0036890485 194.15133 -1.1841026 + 1124400 -33.792429 -33.801937 0.0095077457 500.38418 -0.14385713 + 1124500 -33.795553 -33.801225 0.0056720131 298.51299 0.54546043 + 1124600 -33.797708 -33.798965 0.0012570101 66.155318 0.89286316 + 1124700 -33.797137 -33.800364 0.0032266735 169.81695 1.1888472 + 1124800 -33.791404 -33.801688 0.010284611 541.26992 1.3704637 + 1124900 -33.790082 -33.795668 0.0055855674 293.96343 0.90069872 + 1125000 -33.791444 -33.793974 0.002529197 133.10938 0.37633536 + 1125100 -33.794189 -33.800959 0.0067692806 356.2612 0.15693381 + 1125200 -33.796517 -33.802027 0.0055097163 289.97145 -0.19208399 + 1125300 -33.797545 -33.798992 0.0014465437 76.130303 -0.56559486 + 1125400 -33.797071 -33.799498 0.0024270787 127.73499 -0.65400567 + 1125500 -33.792593 -33.802331 0.0097375387 512.47798 -0.45606678 + 1125600 -33.789505 -33.797933 0.0084287118 443.59559 -0.43022567 + 1125700 -33.791297 -33.793245 0.0019481682 102.53035 -0.41472869 + 1125800 -33.794782 -33.799693 0.0049112512 258.47477 -0.0039188924 + 1125900 -33.796424 -33.802425 0.0060010153 315.82808 0.24447904 + 1126000 -33.792905 -33.797101 0.0041961697 220.84067 0.2471465 + 1126100 -33.786132 -33.791601 0.0054699045 287.8762 0.3657782 + 1126200 -33.790764 -33.800805 0.01004121 528.45995 0.75134704 + 1126300 -33.794812 -33.800829 0.0060166081 316.64872 0.64512357 + 1126400 -33.794955 -33.796284 0.0013286714 69.926789 0.34220915 + 1126500 -33.792114 -33.796933 0.0048186947 253.6036 0.18796994 + 1126600 -33.786005 -33.802231 0.016225913 853.95533 0.12173333 + 1126700 -33.791991 -33.798114 0.0061228199 322.23855 -0.52280137 + 1126800 -33.794339 -33.795646 0.0013068281 68.777196 -0.82770536 + 1126900 -33.793703 -33.800089 0.0063861333 336.0965 -0.64840445 + 1127000 -33.791179 -33.801594 0.010414961 548.13013 -0.38984 + 1127100 -33.788582 -33.792296 0.0037140485 195.46706 -0.43332082 + 1127200 -33.78907 -33.792797 0.003727339 196.16653 -0.068772327 + 1127300 -33.794916 -33.80249 0.0075740243 398.61414 0.43877809 + 1127400 -33.795911 -33.801277 0.0053658648 282.40068 0.46384433 + 1127500 -33.794152 -33.79552 0.0013677399 71.982929 0.28276992 + 1127600 -33.790385 -33.797211 0.0068265896 359.27732 0.34631885 + 1127700 -33.786598 -33.802777 0.016178866 851.4793 0.44124657 + 1127800 -33.792842 -33.797055 0.0042130267 221.72784 -0.10956626 + 1127900 -33.79525 -33.795904 0.00065489302 34.466436 -0.31775194 + 1128000 -33.794946 -33.801056 0.0061103067 321.57999 -0.16842321 + 1128100 -33.790746 -33.801886 0.011140735 586.32697 -0.033606876 + 1128200 -33.788239 -33.792329 0.0040900325 215.25476 -0.30368116 + 1128300 -33.793156 -33.796474 0.0033177981 174.61276 -0.16142774 + 1128400 -33.796256 -33.802987 0.0067304853 354.21944 0.11210433 + 1128500 -33.794795 -33.800534 0.0057387655 302.02611 0.094491093 + 1128600 -33.791655 -33.792641 0.0009858509 51.884454 -0.10388948 + 1128700 -33.789382 -33.796818 0.0074355703 391.32743 0.1651374 + 1128800 -33.79199 -33.803307 0.011317129 595.6104 0.36298864 + 1128900 -33.797193 -33.799648 0.0024555531 129.23357 0.085061146 + 1129000 -33.79681 -33.797299 0.00048911185 25.74152 -0.04087415 + 1129100 -33.794325 -33.801521 0.0071958347 378.71036 0.082777837 + 1129200 -33.790745 -33.802465 0.011720528 616.84092 0.085854717 + 1129300 -33.791441 -33.79402 0.0025787593 135.7178 -0.36397543 + 1129400 -33.794384 -33.796837 0.0024523461 129.06479 -0.37220018 + 1129500 -33.798212 -33.803139 0.0049278854 259.35021 -0.17238527 + 1129600 -33.797448 -33.801564 0.0041166282 216.65447 -0.14131947 + 1129700 -33.794975 -33.795781 0.00080589677 42.413628 -0.18954054 + 1129800 -33.792103 -33.798177 0.0060744764 319.69427 0.18845036 + 1129900 -33.791106 -33.803696 0.01258986 662.5931 0.63941893 + 1130000 -33.794341 -33.798072 0.0037311184 196.36543 0.45792057 + 1130100 -33.797829 -33.798092 0.0002629877 13.840808 0.39958421 + 1130200 -33.797893 -33.801927 0.0040337846 212.29448 0.45709085 + 1130300 -33.795699 -33.802965 0.0072663864 382.42344 0.33295367 + 1130400 -33.793769 -33.79672 0.0029514745 155.33347 -0.16334219 + 1130500 -33.792722 -33.796116 0.0033943514 178.64169 -0.49672285 + 1130600 -33.793051 -33.802685 0.009634474 507.05377 -0.48651112 + 1130700 -33.796413 -33.80118 0.0047675205 250.91035 -0.68431636 + 1130800 -33.797546 -33.797719 0.00017340118 9.1259492 -0.78487045 + 1130900 -33.795817 -33.799127 0.0033104037 174.2236 -0.46673423 + 1131000 -33.790292 -33.80365 0.013357634 703.00036 0.32033751 + 1131100 -33.791919 -33.798234 0.0063154565 332.37684 0.58702239 + 1131200 -33.794496 -33.79565 0.0011546345 60.767386 0.77565915 + 1131300 -33.795496 -33.801116 0.0056202357 295.78799 1.0848409 + 1131400 -33.79244 -33.802204 0.0097638956 513.86512 1.0549975 + 1131500 -33.785874 -33.789627 0.0037531864 197.52685 0.2467448 + 1131600 -33.787774 -33.791057 0.0032828693 172.77448 -0.35554988 + 1131700 -33.792313 -33.802204 0.0098905034 520.52837 -0.44245309 + 1131800 -33.794151 -33.800735 0.0065840435 346.51234 -0.72037937 + 1131900 -33.793959 -33.79507 0.0011116437 58.504814 -0.96417312 + 1132000 -33.792044 -33.798097 0.0060530144 318.56475 -0.64852939 + 1132100 -33.786065 -33.803313 0.01724834 907.76475 0.085355519 + 1132200 -33.791355 -33.796459 0.0051042843 268.63393 0.13715938 + 1132300 -33.794333 -33.794992 0.00065970839 34.719864 0.27828798 + 1132400 -33.794147 -33.80059 0.0064437479 339.12871 0.65217556 + 1132500 -33.791122 -33.801624 0.010501665 552.69326 0.76155062 + 1132600 -33.785435 -33.790412 0.0049762325 261.89468 0.29461767 + 1132700 -33.784975 -33.79157 0.0065954074 347.11041 0.092441271 + 1132800 -33.79405 -33.802739 0.0086890216 457.29546 0.12069158 + 1132900 -33.795214 -33.80034 0.0051260624 269.78009 -0.14551418 + 1133000 -33.793569 -33.794237 0.00066794394 35.153294 -0.47145503 + 1133100 -33.789411 -33.796841 0.0074296316 391.01488 -0.39453433 + 1133200 -33.78792 -33.802761 0.01484091 781.06387 -0.1536221 + 1133300 -33.794832 -33.79815 0.0033178913 174.61766 -0.43231195 + 1133400 -33.795941 -33.797176 0.0012355097 65.023774 -0.41292729 + 1133500 -33.794601 -33.801834 0.0072322526 380.627 -0.030481681 + 1133600 -33.791068 -33.801077 0.010008795 526.75393 0.25451397 + 1133700 -33.788791 -33.791173 0.0023819566 125.36025 0.15499331 + 1133800 -33.789983 -33.794652 0.0046689071 245.72042 0.48873818 + 1133900 -33.795771 -33.802716 0.0069450646 365.51255 0.7313606 + 1134000 -33.795884 -33.800163 0.0042788988 225.19463 0.52428946 + 1134100 -33.793283 -33.795079 0.0017961429 94.5294 0.16328588 + 1134200 -33.789503 -33.798782 0.0092788749 488.33891 0.0061245834 + 1134300 -33.79204 -33.802311 0.010271838 540.59765 -0.30938636 + 1134400 -33.79732 -33.799104 0.0017834997 93.863996 -0.69647351 + 1134500 -33.796676 -33.797988 0.001311872 69.042651 -0.72913349 + 1134600 -33.79302 -33.801571 0.0085508768 450.02502 -0.35261271 + 1134700 -33.789887 -33.799894 0.01000763 526.69261 0.0076676484 + 1134800 -33.791384 -33.793732 0.0023480831 123.57752 0.098805336 + 1134900 -33.794415 -33.798752 0.0043370637 228.25579 0.49702513 + 1135000 -33.797029 -33.803038 0.0060093771 316.26816 0.72534743 + 1135100 -33.800148 -33.801872 0.0017243661 90.751851 0.56626842 + 1135200 -33.800526 -33.801014 0.00048779268 25.672094 0.40701646 + 1135300 -33.798562 -33.802041 0.0034792884 183.11185 0.23683359 + 1135400 -33.795446 -33.80256 0.007113677 374.38648 -0.14518986 + 1135500 -33.792562 -33.796468 0.0039058519 205.5615 -0.86100937 + 1135600 -33.790625 -33.79459 0.0039646332 208.65511 -1.3778392 + 1135700 -33.790587 -33.800615 0.010028203 527.77535 -1.3974489 + 1135800 -33.794715 -33.799926 0.0052107148 274.23527 -1.4198891 + 1135900 -33.796438 -33.797662 0.0012231875 64.375266 -1.2445752 + 1136000 -33.795352 -33.799777 0.0044251096 232.88957 -0.61655444 + 1136100 -33.787693 -33.802038 0.014345116 754.97064 0.57155938 + 1136200 -33.789132 -33.796535 0.0074036448 389.64722 1.4779501 + 1136300 -33.792021 -33.794769 0.0027478572 144.61728 2.0235944 + 1136400 -33.79266 -33.799473 0.0068136994 358.59892 2.3760571 + 1136500 -33.791586 -33.799535 0.0079493338 418.36635 2.0700116 + 1136600 -33.787762 -33.792028 0.0042655735 224.49333 1.0111956 + 1136700 -33.786184 -33.79406 0.007876059 414.50996 -0.16514801 + 1136800 -33.794199 -33.802383 0.0081846192 430.74921 -0.94491163 + 1136900 -33.795495 -33.799911 0.0044159531 232.40767 -1.4888834 + 1137000 -33.79418 -33.79609 0.001909927 100.51775 -1.7162546 + 1137100 -33.790039 -33.798748 0.0087080897 458.29899 -1.2748157 + 1137200 -33.786683 -33.800598 0.013914698 732.31814 -0.45677317 + 1137300 -33.794631 -33.797091 0.002459857 129.46008 -0.0867668 + 1137400 -33.795867 -33.797773 0.0019064089 100.3326 0.30863032 + 1137500 -33.794018 -33.801688 0.0076696429 403.64646 0.82188991 + 1137600 -33.789683 -33.799564 0.0098805059 520.00221 1.0685328 + 1137700 -33.790624 -33.793901 0.003277065 172.46901 0.89317457 + 1137800 -33.796432 -33.800051 0.0036189507 190.46215 0.90475057 + 1137900 -33.796838 -33.802728 0.005890523 310.01297 0.74692351 + 1138000 -33.794358 -33.79841 0.0040518939 213.24756 0.15630929 + 1138100 -33.791322 -33.793488 0.0021657722 113.98266 -0.65847928 + 1138200 -33.790069 -33.799715 0.0096460567 507.66336 -1.1015397 + 1138300 -33.792324 -33.801437 0.0091128013 479.59861 -1.5355959 + 1138400 -33.797142 -33.79842 0.0012786307 67.293195 -1.7937842 + 1138500 -33.798533 -33.8001 0.0015672522 82.483086 -1.5032992 + 1138600 -33.796934 -33.803111 0.0061768189 325.08047 -0.77022869 + 1138700 -33.79342 -33.800655 0.0072354313 380.79429 0.22545357 + 1138800 -33.791878 -33.794324 0.002445687 128.71432 1.2464732 + 1138900 -33.792119 -33.797774 0.005654747 297.60429 2.3856194 + 1139000 -33.794235 -33.80169 0.0074541517 392.30535 2.9584162 + 1139100 -33.796437 -33.798809 0.0023716361 124.81709 2.6098148 + 1139200 -33.795703 -33.797483 0.0017803503 93.698248 1.8704846 + 1139300 -33.790594 -33.80161 0.011016296 579.77783 0.76236557 + 1139400 -33.791062 -33.802257 0.011194466 589.15476 -1.1091855 + 1139500 -33.796605 -33.798069 0.0014637529 77.036011 -2.4974996 + 1139600 -33.796384 -33.797871 0.0014874736 78.284407 -2.8593142 + 1139700 -33.793738 -33.801872 0.0081344975 428.11135 -2.4402214 + 1139800 -33.790029 -33.799067 0.0090372227 475.62097 -1.5194084 + 1139900 -33.791065 -33.793474 0.0024094163 126.80543 -0.35969644 + 1140000 -33.794801 -33.799872 0.00507037 266.84905 0.95064802 + 1140100 -33.796047 -33.803348 0.0073010123 384.24577 1.7728417 + 1140200 -33.795057 -33.798209 0.003152196 165.89727 1.9387518 + 1140300 -33.793012 -33.793889 0.00087653124 46.131057 1.7574173 + 1140400 -33.789864 -33.800506 0.010642045 560.08132 1.604529 + 1140500 -33.789827 -33.801603 0.011775766 619.74804 0.7654487 + 1140600 -33.796702 -33.797678 0.00097533035 51.330767 -0.28747493 + 1140700 -33.797246 -33.79911 0.0018640677 98.10422 -0.65167615 + 1140800 -33.794881 -33.803457 0.0085768693 451.39298 -0.77167801 + 1140900 -33.791026 -33.799257 0.0082313823 433.21031 -1.0785338 + 1141000 -33.790772 -33.79173 0.00095726561 50.380035 -1.3677876 + 1141100 -33.792032 -33.798337 0.0063043379 331.79168 -0.93567738 + 1141200 -33.793079 -33.803063 0.0099831792 525.40581 -0.38235873 + 1141300 -33.79317 -33.796587 0.0034172729 179.84803 -0.1508115 + 1141400 -33.79256 -33.793894 0.0013340062 70.207556 0.24711614 + 1141500 -33.791886 -33.801672 0.0097860911 515.03325 1.0310907 + 1141600 -33.793423 -33.802188 0.0087646919 461.27791 1.2762253 + 1141700 -33.796451 -33.797283 0.00083259915 43.818951 0.99526726 + 1141800 -33.797515 -33.799441 0.0019263409 101.3816 0.86434777 + 1141900 -33.795186 -33.803639 0.0084529258 444.86995 0.66214275 + 1142000 -33.789183 -33.79821 0.0090270424 475.08519 -0.27927263 + 1142100 -33.790239 -33.790913 0.00067375453 35.4591 -1.4866154 + 1142200 -33.792785 -33.798829 0.0060442621 318.10412 -1.7638625 + 1142300 -33.794571 -33.803089 0.0085179758 448.29347 -1.7106765 + 1142400 -33.794263 -33.797369 0.0031052119 163.42453 -1.6033266 + 1142500 -33.789849 -33.792275 0.0024263556 127.69693 -0.96912957 + 1142600 -33.787548 -33.801368 0.01381969 727.31794 0.63069423 + 1142700 -33.79372 -33.80183 0.008109714 426.80701 1.4404671 + 1142800 -33.795194 -33.795832 0.00063843395 33.600209 1.5516614 + 1142900 -33.79423 -33.797117 0.0028871742 151.9494 1.6556234 + 1143000 -33.789726 -33.803341 0.013615144 716.55291 1.622816 + 1143100 -33.782917 -33.794729 0.011811801 621.64454 0.51343983 + 1143200 -33.78835 -33.789683 0.001333509 70.181388 -0.84116221 + 1143300 -33.794142 -33.80028 0.0061385361 323.06568 -1.081886 + 1143400 -33.795297 -33.80305 0.0077532985 408.04919 -1.2020181 + 1143500 -33.793595 -33.796131 0.0025365789 133.49788 -1.3278606 + 1143600 -33.789752 -33.79218 0.0024285365 127.81171 -0.98808859 + 1143700 -33.78803 -33.802039 0.014009089 737.28584 0.12930277 + 1143800 -33.795039 -33.801744 0.006705558 352.90753 0.58051724 + 1143900 -33.796221 -33.796721 0.00050064774 26.348644 0.6223297 + 1144000 -33.794927 -33.798486 0.0035586656 187.2894 0.83576083 + 1144100 -33.791039 -33.803452 0.012413381 653.30514 1.0850376 + 1144200 -33.789166 -33.7959 0.006734856 354.44946 0.53355376 + 1144300 -33.791964 -33.792899 0.00093489596 49.20274 -0.0001852119 + 1144400 -33.796924 -33.801669 0.0047455934 249.75635 0.007953297 + 1144500 -33.796163 -33.803018 0.0068548424 360.76424 -0.13239526 + 1144600 -33.793028 -33.79557 0.0025427929 133.82492 -0.54352329 + 1144700 -33.790568 -33.793599 0.0030314295 159.54143 -0.71330005 + 1144800 -33.790525 -33.802347 0.011821471 622.15349 -0.42749726 + 1144900 -33.792825 -33.800212 0.0073866738 388.75406 -0.46863304 + 1145000 -33.793377 -33.794149 0.00077212328 40.63616 -0.54386203 + 1145100 -33.792939 -33.798122 0.0051824552 272.74799 -0.13882612 + 1145200 -33.791896 -33.802983 0.011086886 583.4929 0.37749136 + 1145300 -33.791596 -33.796424 0.0048275183 254.06798 0.38411145 + 1145400 -33.792758 -33.794303 0.0015446016 81.291004 0.42945987 + 1145500 -33.795557 -33.80179 0.0062332814 328.05204 0.70443337 + 1145600 -33.79679 -33.802585 0.0057945591 304.96247 0.61032387 + 1145700 -33.794067 -33.796043 0.001976019 103.99612 0.17678934 + 1145800 -33.788537 -33.793336 0.004798998 252.56699 -0.23656281 + 1145900 -33.788986 -33.80215 0.013163873 692.80291 -0.39378339 + 1146000 -33.793026 -33.798955 0.0059290351 312.03983 -0.89550668 + 1146100 -33.79438 -33.795366 0.00098592817 51.88852 -1.0975576 + 1146200 -33.794036 -33.799841 0.0058045025 305.48579 -0.76437176 + 1146300 -33.79157 -33.802393 0.010822193 569.56234 -0.2646516 + 1146400 -33.780646 -33.788085 0.0074393464 391.52617 0.098783126 + 1146500 -33.785902 -33.790758 0.0048554753 255.53934 0.86019939 + 1146600 -33.791968 -33.801308 0.0093397547 491.54296 1.507479 + 1146700 -33.794 -33.800036 0.0060360682 317.67289 1.4279331 + 1146800 -33.794012 -33.795528 0.0015164773 79.810845 0.95556328 + 1146900 -33.792137 -33.798298 0.0061611464 324.25564 0.5885953 + 1147000 -33.787289 -33.802073 0.014783499 778.04238 0.043855238 + 1147100 -33.791068 -33.79615 0.0050826099 267.49323 -1.1131677 + 1147200 -33.795125 -33.796631 0.0015068475 79.304041 -1.5333771 + 1147300 -33.795073 -33.801151 0.0060782642 319.89362 -1.3653207 + 1147400 -33.792384 -33.800839 0.0084551882 444.98901 -1.0265666 + 1147500 -33.789308 -33.792752 0.0034440033 181.25482 -0.58654207 + 1147600 -33.790099 -33.795612 0.0055133963 290.16513 0.33600921 + 1147700 -33.796895 -33.802946 0.0060518928 318.50572 0.93115456 + 1147800 -33.796775 -33.800561 0.0037864168 199.27574 1.0399868 + 1147900 -33.793554 -33.794885 0.0013305253 70.024359 0.82988759 + 1148000 -33.789937 -33.798275 0.0083380643 438.82489 0.72906502 + 1148100 -33.789954 -33.80168 0.011726409 617.15043 0.42297545 + 1148200 -33.793814 -33.796592 0.0027778265 146.19453 -0.34031439 + 1148300 -33.796824 -33.798545 0.0017205695 90.552038 -0.58384323 + 1148400 -33.79757 -33.802752 0.0051825233 272.75158 -0.51168966 + 1148500 -33.79054 -33.799308 0.0087682207 461.46363 -0.5026522 + 1148600 -33.787669 -33.79038 0.002710112 142.63078 -0.58116611 + 1148700 -33.790917 -33.797309 0.0063923025 336.42118 -0.10199393 + 1148800 -33.794697 -33.802643 0.0079460962 418.19596 0.18690085 + 1148900 -33.795382 -33.798618 0.0032368064 170.35024 0.17785452 + 1149000 -33.793188 -33.794847 0.001659424 87.334003 0.17416768 + 1149100 -33.786633 -33.799616 0.01298305 683.28633 0.522586 + 1149200 -33.78877 -33.800845 0.012075419 635.51855 0.55707895 + 1149300 -33.792196 -33.794247 0.0020507684 107.93011 0.13469942 + 1149400 -33.792779 -33.796533 0.003754274 197.58409 0.075666522 + 1149500 -33.792885 -33.802598 0.0097127517 511.17346 0.20441907 + 1149600 -33.792767 -33.798639 0.0058719277 309.03432 -0.11495906 + 1149700 -33.791974 -33.79314 0.001165823 61.356222 -0.44553985 + 1149800 -33.791092 -33.799093 0.0080008187 421.07595 -0.23185306 + 1149900 -33.79276 -33.802878 0.010117865 532.49422 -0.14683405 + 1150000 -33.795844 -33.797977 0.0021323955 112.22607 -0.35368903 + 1150100 -33.796755 -33.798027 0.0012720202 66.94529 -0.26276892 + 1150200 -33.794818 -33.802624 0.0078052107 410.78128 0.071016686 + 1150300 -33.788028 -33.799737 0.011708497 616.20778 0.32570881 + 1150400 -33.78922 -33.790484 0.0012635401 66.498986 0.18074992 + 1150500 -33.792545 -33.797276 0.0047313979 249.00925 0.47009042 + 1150600 -33.794296 -33.80341 0.0091141019 479.66705 0.68359313 + 1150700 -33.793999 -33.79851 0.0045106979 237.39401 0.38946136 + 1150800 -33.793196 -33.793962 0.00076616689 40.32268 -0.00291953 + 1150900 -33.792509 -33.800552 0.0080423983 423.26425 0.033226381 + 1151000 -33.792402 -33.802739 0.010337725 544.06522 -0.11641207 + 1151100 -33.7929 -33.794963 0.0020629559 108.57153 -0.63744335 + 1151200 -33.793722 -33.795834 0.0021117783 111.14101 -0.66491062 + 1151300 -33.796422 -33.803079 0.0066576416 350.38574 -0.38636669 + 1151400 -33.796552 -33.801619 0.0050675135 266.69871 -0.32528101 + 1151500 -33.793066 -33.793969 0.00090263272 47.504755 -0.27795975 + 1151600 -33.78949 -33.796413 0.0069235695 364.38129 0.29424418 + 1151700 -33.790486 -33.80363 0.01314369 691.7407 0.91768999 + 1151800 -33.793079 -33.797253 0.004174764 219.71411 0.83493206 + 1151900 -33.793289 -33.793758 0.00046845685 24.654466 0.67337847 + 1152000 -33.792623 -33.800881 0.0082587212 434.64913 0.78493629 + 1152100 -33.791892 -33.802388 0.010496546 552.42387 0.56687374 + 1152200 -33.79242 -33.794283 0.0018631794 98.057472 -0.20022609 + 1152300 -33.795951 -33.798127 0.0021760567 114.52392 -0.43500517 + 1152400 -33.797911 -33.803641 0.0057295391 301.54053 -0.3769379 + 1152500 -33.795813 -33.801132 0.0053183701 279.90108 -0.49540863 + 1152600 -33.792175 -33.792481 0.00030614427 16.1121 -0.65782922 + 1152700 -33.791118 -33.797319 0.006201439 326.37621 -0.2131638 + 1152800 -33.79146 -33.803699 0.012239267 644.14169 0.24527365 + 1152900 -33.794044 -33.79748 0.0034368285 180.87722 0.19312947 + 1153000 -33.797107 -33.797598 0.00049168327 25.876852 0.24411677 + 1153100 -33.79834 -33.80267 0.0043300553 227.88695 0.40981771 + 1153200 -33.795148 -33.802884 0.0077366023 407.17048 0.43602002 + 1153300 -33.791506 -33.793871 0.0023650932 124.47275 -0.060668729 + 1153400 -33.791563 -33.794632 0.0030685703 161.49612 -0.30544362 + 1153500 -33.792837 -33.802885 0.010048538 528.8456 -0.16235019 + 1153600 -33.794425 -33.800249 0.0058246608 306.5467 -0.41543553 + 1153700 -33.794473 -33.79471 0.00023780158 12.515285 -0.63712801 + 1153800 -33.792202 -33.798293 0.0060906728 320.54668 -0.30274319 + 1153900 -33.786955 -33.80376 0.016804178 884.38887 0.23441377 + 1154000 -33.791903 -33.796276 0.0043728576 230.1396 0.098164827 + 1154100 -33.795261 -33.795975 0.00071345488 37.548494 0.1782905 + 1154200 -33.794956 -33.801807 0.0068513632 360.58113 0.44953766 + 1154300 -33.792458 -33.801894 0.0094359841 496.60743 0.49075829 + 1154400 -33.789733 -33.791604 0.0018701342 98.423495 0.042840367 + 1154500 -33.788739 -33.793404 0.0046646904 245.4985 -0.074673107 + 1154600 -33.795218 -33.803534 0.0083160796 437.66785 0.065579513 + 1154700 -33.796821 -33.801004 0.0041825361 220.12315 -0.13508251 + 1154800 -33.795061 -33.795417 0.00035572574 18.721528 -0.38777148 + 1154900 -33.790822 -33.798193 0.0073714628 387.95351 -0.17532807 + 1155000 -33.789163 -33.803131 0.013968744 735.16253 0.10065775 + 1155100 -33.791794 -33.795274 0.0034802693 183.16347 -0.22749463 + 1155200 -33.7928 -33.794226 0.0014258835 75.042975 -0.18443194 + 1155300 -33.792682 -33.801931 0.0092487301 486.75241 0.20335213 + 1155400 -33.792494 -33.801296 0.0088024437 463.26476 0.23014192 + 1155500 -33.792595 -33.793852 0.0012564657 66.126668 0.0060517918 + 1155600 -33.793836 -33.797707 0.003870902 203.72212 0.12592761 + 1155700 -33.796384 -33.803526 0.0071425634 375.90674 0.26764488 + 1155800 -33.796463 -33.800282 0.0038195352 201.01873 0.11161179 + 1155900 -33.79267 -33.793443 0.00077238491 40.649929 -0.18697561 + 1156000 -33.788673 -33.798274 0.0096007937 505.28121 -0.049417798 + 1156100 -33.79011 -33.802316 0.012206177 642.40019 -0.00032389445 + 1156200 -33.792968 -33.795539 0.0025707767 135.29768 -0.41654177 + 1156300 -33.793778 -33.795979 0.0022007453 115.82326 -0.39385218 + 1156400 -33.793424 -33.802374 0.0089493853 470.99817 -0.038970361 + 1156500 -33.79305 -33.800497 0.0074472685 391.9431 -0.022957975 + 1156600 -33.792773 -33.794107 0.0013337175 70.192361 -0.11324717 + 1156700 -33.792389 -33.797815 0.0054259595 285.56341 0.18232539 + 1156800 -33.792561 -33.802762 0.010200978 536.86836 0.43555782 + 1156900 -33.794536 -33.798256 0.0037200918 195.78511 0.27016827 + 1157000 -33.795412 -33.796592 0.0011801009 62.107658 0.14782774 + 1157100 -33.79461 -33.801381 0.006771321 356.36859 0.24460036 + 1157200 -33.789383 -33.800969 0.011586411 609.78246 0.21314402 + 1157300 -33.787202 -33.790716 0.0035145521 184.96774 -0.3767549 + 1157400 -33.791801 -33.795934 0.0041335747 217.54635 -0.43772974 + 1157500 -33.794987 -33.802522 0.0075352087 396.57131 -0.25266845 + 1157600 -33.794088 -33.799425 0.005337576 280.91187 -0.31965296 + 1157700 -33.791743 -33.793466 0.0017232009 90.690529 -0.37134713 + 1157800 -33.788943 -33.797999 0.0090557926 476.59829 0.11533277 + 1157900 -33.791595 -33.802189 0.010594259 557.56638 0.43056926 + 1158000 -33.796447 -33.798673 0.0022260816 117.15669 0.29199928 + 1158100 -33.796353 -33.798027 0.0016737207 88.086429 0.29091522 + 1158200 -33.793224 -33.801758 0.0085335613 449.11372 0.40710031 + 1158300 -33.789268 -33.799095 0.0098264123 517.15532 0.1979622 + 1158400 -33.790181 -33.792324 0.0021427197 112.76943 -0.30365861 + 1158500 -33.791682 -33.797511 0.0058295721 306.80518 -0.33207571 + 1158600 -33.793262 -33.80257 0.0093074108 489.84073 -0.2490195 + 1158700 -33.79437 -33.798233 0.0038636769 203.34187 -0.43737474 + 1158800 -33.795438 -33.796868 0.0014301241 75.266158 -0.45957838 + 1158900 -33.796312 -33.801732 0.0054201809 285.25929 -0.14474379 + 1159000 -33.794408 -33.801777 0.0073693804 387.84392 0.076504622 + 1159100 -33.790046 -33.792998 0.0029520529 155.36391 0.044104463 + 1159200 -33.788518 -33.793873 0.0053551794 281.83832 0.40248034 + 1159300 -33.792068 -33.802255 0.010186917 536.12834 0.81335327 + 1159400 -33.796171 -33.80033 0.0041588819 218.87824 0.62391224 + 1159500 -33.79581 -33.796807 0.00099700135 52.471292 0.37786076 + 1159600 -33.793921 -33.799969 0.0060484238 318.32315 0.27024763 + 1159700 -33.790266 -33.802024 0.011757981 618.81204 0.015605355 + 1159800 -33.78937 -33.793549 0.0041787512 219.92395 -0.70150342 + 1159900 -33.793642 -33.796069 0.0024273743 127.75055 -0.98232407 + 1160000 -33.796627 -33.802526 0.0058991905 310.46913 -0.81033372 + 1160100 -33.795371 -33.801232 0.0058609116 308.45455 -0.63780752 + 1160200 -33.791848 -33.793583 0.0017352136 91.322742 -0.4863905 + 1160300 -33.790011 -33.796389 0.0063778754 335.66189 0.26131229 + 1160400 -33.790999 -33.802756 0.011756844 618.7522 1.0528775 + 1160500 -33.792666 -33.797307 0.0046402594 244.21271 1.084373 + 1160600 -33.793316 -33.794472 0.0011559625 60.837276 1.0307936 + 1160700 -33.793755 -33.80091 0.007154576 376.53895 1.1050369 + 1160800 -33.795615 -33.802553 0.0069379876 365.1401 0.75290209 + 1160900 -33.796222 -33.797827 0.0016043758 84.436866 0.14911612 + 1161000 -33.794437 -33.797209 0.0027721219 145.89431 -0.3303688 + 1161100 -33.789094 -33.802551 0.013457113 708.23585 -0.65596614 + 1161200 -33.789001 -33.79785 0.0088487501 465.70182 -1.3832841 + 1161300 -33.793394 -33.79393 0.00053572711 28.19484 -1.8595183 + 1161400 -33.796014 -33.799999 0.0039852956 209.74255 -1.5338292 + 1161500 -33.795036 -33.803207 0.008170948 430.02971 -0.89762422 + 1161600 -33.792589 -33.797231 0.0046411966 244.26204 -0.30605773 + 1161700 -33.79073 -33.793404 0.0026738327 140.72143 0.60208999 + 1161800 -33.792065 -33.801104 0.0090386988 475.69866 1.7951815 + 1161900 -33.79658 -33.802001 0.0054210586 285.30548 2.0667241 + 1162000 -33.796613 -33.797472 0.00085897886 45.207291 1.760987 + 1162100 -33.79387 -33.797234 0.0033647706 177.08487 1.218888 + 1162200 -33.79086 -33.80342 0.012560081 661.02588 0.37960064 + 1162300 -33.792685 -33.799608 0.0069223955 364.3195 -0.95649489 + 1162400 -33.794349 -33.794992 0.00064263125 33.821109 -1.963959 + 1162500 -33.794821 -33.7996 0.0047788511 251.50667 -2.1411483 + 1162600 -33.791509 -33.802614 0.011105353 584.46483 -1.8115477 + 1162700 -33.786124 -33.791768 0.0056440504 297.04134 -1.3882339 + 1162800 -33.788998 -33.791592 0.0025936884 136.5035 -0.42248719 + 1162900 -33.793071 -33.802315 0.0092430954 486.45587 0.73274336 + 1163000 -33.793957 -33.801775 0.0078183489 411.47273 1.2472922 + 1163100 -33.793357 -33.794147 0.00079022798 41.588994 1.2432304 + 1163200 -33.790983 -33.795458 0.0044743007 235.47845 1.3773665 + 1163300 -33.782716 -33.803467 0.020751211 1092.1177 1.5263768 + 1163400 -33.789244 -33.796039 0.0067954567 357.63882 0.45003943 + 1163500 -33.792988 -33.793371 0.0003830329 20.15868 -0.18679619 + 1163600 -33.793503 -33.80071 0.0072064723 379.27021 -0.3008099 + 1163700 -33.793294 -33.803102 0.0098081915 516.19637 -0.51690286 + 1163800 -33.792355 -33.79472 0.0023646587 124.44988 -0.9780512 + 1163900 -33.790285 -33.792884 0.0025985216 136.75787 -1.0195762 + 1164000 -33.788754 -33.802653 0.013899066 731.49544 -0.42974574 + 1164100 -33.793685 -33.800669 0.0069845426 367.59024 -0.30825849 + 1164200 -33.795874 -33.796068 0.00019421155 10.22118 -0.3030644 + 1164300 -33.795445 -33.799367 0.0039217194 206.39659 0.08961 + 1164400 -33.790887 -33.803853 0.012966535 682.41715 0.66726187 + 1164500 -33.782679 -33.791635 0.0089558836 471.34017 0.66002494 + 1164600 -33.787181 -33.788692 0.0015106806 79.505771 0.69641854 + 1164700 -33.789993 -33.800172 0.01017977 535.75224 1.1265229 + 1164800 -33.793064 -33.801819 0.008754929 460.76411 0.91086081 + 1164900 -33.794578 -33.795801 0.0012226775 64.348427 0.36755908 + 1165000 -33.794652 -33.797511 0.0028587669 150.45435 0.077398726 + 1165100 -33.792887 -33.8036 0.010713816 563.85856 -0.078410822 + 1165200 -33.789181 -33.798696 0.0095150712 500.76971 -0.59003765 + 1165300 -33.789926 -33.790983 0.0010560405 55.578471 -1.2469528 + 1165400 -33.793962 -33.798858 0.0048956011 257.65112 -1.1132346 + 1165500 -33.795306 -33.802614 0.0073079663 384.61175 -0.80203573 + 1165600 -33.793465 -33.797257 0.0037922189 199.5811 -0.61853428 + 1165700 -33.789657 -33.793039 0.0033813103 177.95535 -0.094199718 + 1165800 -33.781219 -33.800316 0.019097223 1005.0698 1.2858014 + 1165900 -33.790429 -33.800715 0.010286738 541.38187 1.7973013 + 1166000 -33.793755 -33.794581 0.00082643915 43.494755 1.6430039 + 1166100 -33.793518 -33.796428 0.0029097546 153.13779 1.5070146 + 1166200 -33.790196 -33.802533 0.012337122 649.2917 1.1674799 + 1166300 -33.789121 -33.798407 0.0092862305 488.72603 0.061273912 + 1166400 -33.795914 -33.797193 0.0012797481 67.352001 -0.87963981 + 1166500 -33.7969 -33.801112 0.0042121485 221.68162 -1.1152417 + 1166600 -33.794806 -33.802749 0.0079428105 418.02303 -1.115967 + 1166700 -33.791338 -33.794934 0.0035959936 189.25393 -1.1963015 + 1166800 -33.790209 -33.792288 0.0020797413 109.45493 -0.86600762 + 1166900 -33.790608 -33.801229 0.010621145 558.98141 0.071513178 + 1167000 -33.792558 -33.800996 0.008437926 444.08052 0.55144813 + 1167100 -33.79379 -33.79537 0.0015800721 83.157785 0.65827104 + 1167200 -33.793876 -33.798106 0.004229555 222.59771 0.96374087 + 1167300 -33.79337 -33.803003 0.0096329981 506.9761 1.1350232 + 1167400 -33.792734 -33.798067 0.005332627 280.6514 0.70091614 + 1167500 -33.79157 -33.792907 0.0013372285 70.377142 0.11973349 + 1167600 -33.78948 -33.798908 0.009427197 496.14497 -0.1500281 + 1167700 -33.789337 -33.801458 0.012120864 637.91026 -0.59717963 + 1167800 -33.794163 -33.796341 0.0021777022 114.61053 -1.1908271 + 1167900 -33.795837 -33.798062 0.0022240719 117.05092 -1.1955267 + 1168000 -33.795107 -33.802706 0.0075993642 399.94776 -0.78998103 + 1168100 -33.788246 -33.798583 0.010337551 544.05607 -0.29972608 + 1168200 -33.785441 -33.788609 0.0031678545 166.72135 0.21315953 + 1168300 -33.789125 -33.796382 0.0072577261 381.96765 1.1617082 + 1168400 -33.791467 -33.801394 0.0099264363 522.41949 1.6757736 + 1168500 -33.792878 -33.796596 0.0037178075 195.66489 1.4460228 + 1168600 -33.793704 -33.795986 0.0022822898 120.11488 1.1280635 + 1168700 -33.79619 -33.802065 0.0058749867 309.19531 0.86705895 + 1168800 -33.798235 -33.802711 0.0044758228 235.55856 0.37628013 + 1168900 -33.796912 -33.798838 0.0019256536 101.34543 -0.2379312 + 1169000 -33.791436 -33.796606 0.0051701661 272.10123 -0.927897 + 1169100 -33.790351 -33.801279 0.010927966 575.12908 -1.4879173 + 1169200 -33.791791 -33.797292 0.0055008499 289.50482 -2.0423389 + 1169300 -33.792855 -33.794207 0.0013515031 71.128402 -2.1386019 + 1169400 -33.79491 -33.799999 0.0050894513 267.85328 -1.5573791 + 1169500 -33.797119 -33.802712 0.005592197 294.31234 -0.90368768 + 1169600 -33.796846 -33.799936 0.0030903176 162.64066 -0.31944947 + 1169700 -33.791712 -33.796816 0.0051038696 268.61211 0.61774441 + 1169800 -33.788778 -33.800477 0.01169876 615.69531 2.0956898 + 1169900 -33.792377 -33.798756 0.0063796345 335.75447 2.7254216 + 1170000 -33.79277 -33.79401 0.0012397413 65.246478 2.6647629 + 1170100 -33.791629 -33.796488 0.0048598767 255.77098 2.343866 + 1170200 -33.790862 -33.801701 0.010838943 570.44388 1.5708615 + 1170300 -33.793879 -33.799455 0.0055753091 293.42354 0.26416313 + 1170400 -33.797016 -33.799082 0.0020658331 108.72295 -0.69119811 + 1170500 -33.797462 -33.80192 0.004458215 234.63188 -1.173062 + 1170600 -33.79099 -33.800989 0.0099989155 526.234 -1.4697411 + 1170700 -33.787848 -33.791988 0.0041403866 217.90485 -2.025003 + 1170800 -33.790488 -33.793842 0.0033537275 176.50369 -1.9320148 + 1170900 -33.792845 -33.800711 0.0078664509 414.00429 -1.3088089 + 1171000 -33.793879 -33.79973 0.005850834 307.92418 -0.75921838 + 1171100 -33.794266 -33.79677 0.0025041375 131.79052 -0.18670118 + 1171200 -33.795506 -33.800532 0.0050260276 264.51535 0.60800767 + 1171300 -33.79704 -33.803208 0.0061674672 324.5883 1.128637 + 1171400 -33.796239 -33.799534 0.0032958287 173.45653 1.1792331 + 1171500 -33.791643 -33.794244 0.002601457 136.91236 1.0248176 + 1171600 -33.789056 -33.799344 0.010287702 541.4326 0.94215312 + 1171700 -33.79058 -33.799776 0.0091957778 483.96558 0.41402623 + 1171800 -33.792627 -33.794316 0.0016893885 88.911009 -0.30786547 + 1171900 -33.795928 -33.798409 0.0024811651 130.5815 -0.54015211 + 1172000 -33.797776 -33.802673 0.0048966683 257.70728 -0.52347671 + 1172100 -33.795917 -33.801358 0.0054415861 286.38582 -0.50174913 + 1172200 -33.793518 -33.797574 0.0040561397 213.47101 -0.44819537 + 1172300 -33.793776 -33.80019 0.0064144987 337.58935 -0.092206661 + 1172400 -33.794277 -33.80176 0.0074825486 393.79986 0.24772849 + 1172500 -33.793462 -33.796403 0.0029405997 154.76114 0.29766862 + 1172600 -33.791297 -33.79262 0.0013236618 69.663137 0.4191277 + 1172700 -33.788049 -33.799251 0.011202652 589.58558 0.92075161 + 1172800 -33.789591 -33.80052 0.010929028 575.18499 0.94418355 + 1172900 -33.792525 -33.795386 0.0028610564 150.57485 0.55878241 + 1173000 -33.793429 -33.798034 0.0046058178 242.40008 0.4142828 + 1173100 -33.794574 -33.803172 0.0085983697 452.52453 0.28851089 + 1173200 -33.79536 -33.800046 0.0046856329 246.60068 -0.13940072 + 1173300 -33.793835 -33.794877 0.0010420883 54.844179 -0.57513544 + 1173400 -33.788468 -33.797533 0.0090646594 477.06494 -0.62530139 + 1173500 -33.787588 -33.801616 0.014028603 738.31287 -0.61659975 + 1173600 -33.792551 -33.795219 0.0026684828 140.43987 -0.96700821 + 1173700 -33.793809 -33.795587 0.0017785048 93.60112 -0.82076307 + 1173800 -33.7932 -33.802069 0.0088684222 466.73715 -0.24992963 + 1173900 -33.793024 -33.801691 0.0086665258 456.11152 0.12453583 + 1174000 -33.79469 -33.796595 0.0019047817 100.24696 0.24568521 + 1174100 -33.797607 -33.800109 0.0025021331 131.68503 0.54029401 + 1174200 -33.79872 -33.803284 0.0045638882 240.19336 0.69016531 + 1174300 -33.794717 -33.799308 0.004591134 241.62729 0.50615611 + 1174400 -33.792302 -33.793236 0.00093372445 49.141085 0.016683247 + 1174500 -33.791373 -33.79938 0.0080066417 421.38241 -0.10218729 + 1174600 -33.792747 -33.803135 0.010388124 546.71772 -0.32950915 + 1174700 -33.795564 -33.797686 0.0021217995 111.66842 -0.7717256 + 1174800 -33.796798 -33.797897 0.0010996472 57.873451 -0.79814096 + 1174900 -33.796582 -33.80281 0.0062280341 327.77588 -0.46893127 + 1175000 -33.791114 -33.80107 0.0099557729 523.96345 -0.084590521 + 1175100 -33.789092 -33.791181 0.0020894024 109.96339 0.091390219 + 1175200 -33.791562 -33.796319 0.00475714 250.36404 0.69057185 + 1175300 -33.794511 -33.802907 0.0083958245 441.86475 1.1096008 + 1175400 -33.794625 -33.79893 0.004305647 226.60236 0.91977409 + 1175500 -33.790446 -33.792055 0.0016082383 84.640148 0.48724514 + 1175600 -33.78145 -33.797936 0.016486245 867.65636 0.30709132 + 1175700 -33.791287 -33.802359 0.011072875 582.75552 -0.2734722 + 1175800 -33.794242 -33.795798 0.0015558009 81.880414 -0.84363792 + 1175900 -33.7942 -33.7959 0.0017005624 89.499082 -0.89994322 + 1176000 -33.79107 -33.802496 0.011426089 601.34485 -0.48352113 + 1176100 -33.786662 -33.79914 0.012478593 656.73721 -0.18386449 + 1176200 -33.793788 -33.794911 0.0011230265 59.103881 -0.12758193 + 1176300 -33.796093 -33.799864 0.0037702162 198.42312 0.22989192 + 1176400 -33.794754 -33.803325 0.0085712225 451.0958 0.5707848 + 1176500 -33.790855 -33.795736 0.0048810398 256.88477 0.45786042 + 1176600 -33.788807 -33.789938 0.0011308129 59.513675 0.27438587 + 1176700 -33.789881 -33.800521 0.010639553 559.9502 0.6077545 + 1176800 -33.792123 -33.802182 0.010058505 529.37014 0.4553607 + 1176900 -33.793006 -33.794721 0.0017144395 90.229423 -0.076038509 + 1177000 -33.793463 -33.796659 0.0031966779 168.23831 -0.20187996 + 1177100 -33.794014 -33.803256 0.0092420389 486.40026 -0.12935579 + 1177200 -33.795014 -33.800114 0.0050997232 268.39388 -0.37146121 + 1177300 -33.794568 -33.794938 0.00037014961 19.480644 -0.56317881 + 1177400 -33.79159 -33.798693 0.007102647 373.80598 -0.27838425 + 1177500 -33.787474 -33.803083 0.015609613 821.52002 0.1708401 + 1177600 -33.792487 -33.795716 0.0032284224 169.90899 -0.0058837622 + 1177700 -33.795813 -33.796958 0.0011457139 60.2979 0.071529196 + 1177800 -33.795316 -33.802358 0.007041539 370.58992 0.35921332 + 1177900 -33.792581 -33.801142 0.0085616144 450.59013 0.37959555 + 1178000 -33.789973 -33.791491 0.0015180038 79.891187 -0.029106761 + 1178100 -33.789666 -33.795293 0.005627141 296.15141 0.027852263 + 1178200 -33.796218 -33.803531 0.0073131719 384.88571 0.12226306 + 1178300 -33.797056 -33.800386 0.0033305231 175.28246 -0.092053951 + 1178400 -33.794708 -33.795381 0.00067256457 35.396473 -0.28761275 + 1178500 -33.790673 -33.799576 0.0089037044 468.59402 -0.085428595 + 1178600 -33.789991 -33.80216 0.012169106 640.44919 0.001711818 + 1178700 -33.792272 -33.794646 0.0023734873 124.91452 -0.31268512 + 1178800 -33.793466 -33.795906 0.0024399654 128.4132 -0.24153414 + 1178900 -33.793478 -33.802616 0.0091381446 480.9324 0.094272998 + 1179000 -33.793093 -33.800107 0.0070145441 369.1692 0.10338661 + 1179100 -33.792546 -33.793785 0.0012394847 65.232975 -0.059518887 + 1179200 -33.792105 -33.798251 0.0061462222 323.47019 0.19075583 + 1179300 -33.792988 -33.802953 0.0099642148 524.40774 0.39609148 + 1179400 -33.795562 -33.798406 0.0028439845 149.67637 0.13486571 + 1179500 -33.79652 -33.797543 0.0010223388 53.804778 0.031728793 + 1179600 -33.79519 -33.801974 0.0067843041 357.05187 0.16417711 + 1179700 -33.788606 -33.800696 0.012089095 636.23828 0.11094059 + 1179800 -33.789106 -33.791722 0.0026164758 137.70279 -0.40535839 + 1179900 -33.792223 -33.796526 0.0043026251 226.44332 -0.36077375 + 1180000 -33.793592 -33.802654 0.0090625249 476.9526 -0.15756469 + 1180100 -33.79328 -33.798492 0.005212031 274.30454 -0.24664039 + 1180200 -33.792425 -33.793704 0.0012782808 67.274776 -0.29149819 + 1180300 -33.791644 -33.799674 0.008030123 422.61821 0.11829097 + 1180400 -33.794306 -33.802764 0.0084572569 445.09789 0.34314092 + 1180500 -33.797859 -33.79941 0.0015505924 81.606293 0.19807629 + 1180600 -33.79752 -33.798985 0.0014643877 77.069419 0.18675653 + 1180700 -33.793685 -33.802348 0.0086630929 455.93085 0.34663485 + 1180800 -33.790671 -33.799408 0.0087363292 459.78521 0.14446644 + 1180900 -33.790968 -33.792219 0.001250821 65.829595 -0.31370834 + 1181000 -33.792485 -33.798063 0.0055777274 293.55082 -0.23506876 + 1181100 -33.796631 -33.80332 0.0066884656 352.00798 -0.1748755 + 1181200 -33.798638 -33.800788 0.0021499171 113.14822 -0.30266685 + 1181300 -33.797675 -33.798501 0.00082522273 43.430736 -0.29232388 + 1181400 -33.795916 -33.80188 0.0059643328 313.89751 0.013747588 + 1181500 -33.792746 -33.801799 0.0090533844 476.47154 0.27637642 + 1181600 -33.790391 -33.792776 0.0023848042 125.51012 0.19295763 + 1181700 -33.789904 -33.794161 0.0042570511 224.0448 0.42211456 + 1181800 -33.794422 -33.802765 0.0083426261 439.06497 0.72525908 + 1181900 -33.797123 -33.800969 0.0038460858 202.41606 0.53034772 + 1182000 -33.795738 -33.796617 0.00087861383 46.240662 0.20287796 + 1182100 -33.792174 -33.799187 0.0070132562 369.10142 0.072849953 + 1182200 -33.790492 -33.8028 0.012307824 647.74979 -0.15814177 + 1182300 -33.791984 -33.795548 0.0035638341 187.56141 -0.80053318 + 1182400 -33.792511 -33.794275 0.0017633425 92.803145 -1.001456 + 1182500 -33.792355 -33.8015 0.0091456301 481.32636 -0.68928713 + 1182600 -33.791802 -33.800573 0.0087705722 461.58739 -0.51966253 + 1182700 -33.791603 -33.793186 0.0015832211 83.323516 -0.46477464 + 1182800 -33.792766 -33.797667 0.0049013104 257.95159 0.04793045 + 1182900 -33.795065 -33.803547 0.0084820068 446.40045 0.52296211 + 1183000 -33.796062 -33.799703 0.003641472 191.64742 0.52213628 + 1183100 -33.794144 -33.794711 0.00056658213 29.818712 0.40455295 + 1183200 -33.788028 -33.798858 0.010829627 569.95361 0.62899869 + 1183300 -33.788304 -33.801991 0.013687159 720.34296 0.5459799 + 1183400 -33.792323 -33.794263 0.0019399955 102.10023 -0.082330125 + 1183500 -33.793342 -33.795909 0.0025667314 135.08478 -0.22020063 + 1183600 -33.793119 -33.803108 0.0099888863 525.70617 -0.088364789 + 1183700 -33.792757 -33.799994 0.00723723 380.88896 -0.32088719 + 1183800 -33.792102 -33.792685 0.00058366976 30.718019 -0.61635332 + 1183900 -33.791048 -33.797841 0.0067931065 357.51514 -0.34461826 + 1184000 -33.791538 -33.803424 0.011885726 625.53515 -0.016155975 + 1184100 -33.79411 -33.797209 0.0030984293 163.06757 -0.15814159 + 1184200 -33.795351 -33.796144 0.00079223567 41.694656 -0.10387232 + 1184300 -33.795485 -33.802322 0.0068373191 359.84201 0.24865166 + 1184400 -33.791476 -33.801725 0.010248734 539.38172 0.40540338 + 1184500 -33.787396 -33.789566 0.00216994 114.20201 0.05882143 + 1184600 -33.789529 -33.794356 0.0048269894 254.04015 0.22397105 + 1184700 -33.793685 -33.803401 0.0097156684 511.32696 0.45826414 + 1184800 -33.794097 -33.799194 0.0050967146 268.23554 0.18312806 + 1184900 -33.793063 -33.793358 0.00029590718 15.573331 -0.14847256 + 1185000 -33.791267 -33.799347 0.0080806292 425.27631 -0.023799872 + 1185100 -33.789461 -33.80331 0.013849022 728.86165 0.01306358 + 1185200 -33.793224 -33.795703 0.0024790623 130.47084 -0.44607533 + 1185300 -33.795707 -33.796932 0.001224362 64.437078 -0.46171544 + 1185400 -33.795908 -33.802909 0.007000557 368.43307 -0.1689829 + 1185500 -33.791405 -33.800687 0.0092822967 488.51899 -0.013020202 + 1185600 -33.787409 -33.788485 0.0010758985 56.623577 -0.16815569 + 1185700 -33.789138 -33.795351 0.0062128478 326.97664 0.31447357 + 1185800 -33.791935 -33.80373 0.011795824 620.80369 0.73716152 + 1185900 -33.793697 -33.798044 0.0043468318 228.76988 0.48615391 + 1186000 -33.793805 -33.794198 0.0003928276 20.674166 0.24719214 + 1186100 -33.792341 -33.80084 0.008499093 447.29968 0.37328862 + 1186200 -33.787717 -33.802351 0.014633632 770.15501 0.24459378 + 1186300 -33.789897 -33.791996 0.0020988787 110.46211 -0.51447371 + 1186400 -33.79387 -33.796264 0.0023937857 125.98281 -0.59751886 + 1186500 -33.795065 -33.803234 0.0081691232 429.93367 -0.37964834 + 1186600 -33.793704 -33.8002 0.0064957819 341.86721 -0.39029849 + 1186700 -33.789709 -33.790379 0.0006703487 35.279854 -0.48674976 + 1186800 -33.780088 -33.793245 0.013156373 692.40815 0.22328703 + 1186900 -33.788677 -33.803535 0.014857905 781.95828 0.83232566 + 1187000 -33.792733 -33.796191 0.0034581641 182.00009 0.5951733 + 1187100 -33.793482 -33.794396 0.00091401406 48.103744 0.48538665 + 1187200 -33.793481 -33.80188 0.0083987399 442.01819 0.6435117 + 1187300 -33.792504 -33.801722 0.0092173826 485.10262 0.40645653 + 1187400 -33.791153 -33.792808 0.0016549004 87.095933 -0.26530301 + 1187500 -33.79074 -33.795517 0.0047764093 251.37816 -0.48115235 + 1187600 -33.794028 -33.803475 0.0094472013 497.19778 -0.44902462 + 1187700 -33.79664 -33.800365 0.0037253946 196.0642 -0.67851924 + 1187800 -33.795896 -33.796175 0.00027971036 14.720907 -0.72099874 + 1187900 -33.789442 -33.798301 0.0088591129 466.24721 -0.19140407 + 1188000 -33.7879 -33.802861 0.014961805 787.42645 0.49967963 + 1188100 -33.792401 -33.795214 0.002812943 148.04268 0.50435742 + 1188200 -33.794347 -33.796115 0.0017679013 93.043069 0.66236755 + 1188300 -33.794574 -33.802669 0.0080955333 426.0607 0.900922 + 1188400 -33.790927 -33.800097 0.0091702754 482.62341 0.70916928 + 1188500 -33.783784 -33.785401 0.0016171073 85.106915 -0.20656152 + 1188600 -33.787117 -33.794981 0.0078644089 413.89682 -0.45084832 + 1188700 -33.792143 -33.803181 0.011038121 580.92646 -0.51738517 + 1188800 -33.793847 -33.797717 0.0038703796 203.69462 -0.89846052 + 1188900 -33.793867 -33.794993 0.0011257754 59.248553 -0.93041438 + 1189000 -33.792344 -33.801167 0.0088235228 464.37413 -0.39540449 + 1189100 -33.78713 -33.800818 0.013687611 720.36675 0.10440845 + 1189200 -33.788441 -33.79065 0.0022091155 116.26378 0.21802597 + 1189300 -33.793417 -33.79691 0.0034927796 183.82188 0.68425971 + 1189400 -33.794681 -33.802985 0.0083034298 437.0021 0.97161393 + 1189500 -33.793584 -33.799132 0.0055472773 291.94826 0.76501325 + 1189600 -33.791203 -33.792488 0.0012850921 67.633248 0.27024328 + 1189700 -33.785012 -33.797324 0.012311648 647.95107 0.089496894 + 1189800 -33.783681 -33.801435 0.017753932 934.3736 -0.3351525 + 1189900 -33.792294 -33.794797 0.0025031643 131.73931 -1.1394511 + 1190000 -33.793572 -33.795856 0.0022837638 120.19245 -1.1728813 + 1190100 -33.793598 -33.80235 0.0087520341 460.61175 -0.72059812 + 1190200 -33.792193 -33.799873 0.0076793068 404.15507 -0.43964563 + 1190300 -33.789383 -33.791445 0.0020619378 108.51794 -0.15975985 + 1190400 -33.788765 -33.796815 0.008050205 423.67511 0.70595151 + 1190500 -33.794293 -33.802977 0.0086840342 457.03297 1.1836294 + 1190600 -33.795843 -33.798544 0.0027014028 142.17242 1.0542713 + 1190700 -33.794547 -33.795793 0.0012457263 65.561462 0.80168342 + 1190800 -33.790428 -33.801057 0.010628299 559.35791 0.62310962 + 1190900 -33.787234 -33.800333 0.013098159 689.34444 -0.03067136 + 1191000 -33.796211 -33.797397 0.0011852443 62.378352 -0.87979868 + 1191100 -33.79723 -33.799442 0.0022125797 116.4461 -0.99817053 + 1191200 -33.795119 -33.80311 0.007990525 420.5342 -0.76444892 + 1191300 -33.790474 -33.79781 0.0073360163 386.08799 -0.58354398 + 1191400 -33.789206 -33.790615 0.0014092376 74.166919 -0.3422943 + 1191500 -33.791669 -33.799211 0.0075426988 396.96551 0.45159057 + 1191600 -33.795948 -33.803035 0.0070864918 372.95574 0.78981095 + 1191700 -33.79607 -33.798095 0.0020249109 106.56926 0.66861332 + 1191800 -33.794885 -33.796638 0.0017524294 92.228795 0.56639417 + 1191900 -33.792452 -33.802349 0.0098979081 520.91808 0.59909383 + 1192000 -33.79021 -33.799967 0.0097567621 513.48969 0.14823826 + 1192100 -33.791109 -33.792207 0.0010976415 57.767891 -0.58974199 + 1192200 -33.795538 -33.799243 0.0037047394 194.97713 -0.65660792 + 1192300 -33.796612 -33.803359 0.0067471603 355.09703 -0.57183182 + 1192400 -33.793841 -33.798227 0.0043857042 230.8157 -0.61232656 + 1192500 -33.789762 -33.791305 0.0015425352 81.182252 -0.50595579 + 1192600 -33.789737 -33.800266 0.010529208 554.14281 0.2561492 + 1192700 -33.792261 -33.802221 0.0099602735 524.20031 0.63003594 + 1192800 -33.793795 -33.795318 0.0015229787 80.153013 0.5107825 + 1192900 -33.793911 -33.796486 0.0025747152 135.50496 0.60420122 + 1193000 -33.791227 -33.803008 0.011781732 620.06205 0.82359971 + 1193100 -33.786226 -33.796627 0.010400466 547.36727 0.36967099 + 1193200 -33.78948 -33.790282 0.0008017151 42.193551 -0.32168001 + 1193300 -33.793798 -33.799795 0.0059970221 315.61793 -0.27830106 + 1193400 -33.794652 -33.803486 0.0088338211 464.91612 -0.2921687 + 1193500 -33.793502 -33.796454 0.0029524302 155.38377 -0.58074308 + 1193600 -33.7896 -33.791221 0.0016206734 85.294597 -0.63517179 + 1193700 -33.781238 -33.800774 0.01953655 1028.1912 0.13261266 + 1193800 -33.789131 -33.800224 0.011092658 583.79668 0.19848492 + 1193900 -33.79176 -33.792289 0.00052863265 27.821465 -0.010817777 + 1194000 -33.793072 -33.797678 0.0046060217 242.41081 0.26885151 + 1194100 -33.794383 -33.803828 0.0094448618 497.07465 0.52340397 + 1194200 -33.794941 -33.798907 0.0039652895 208.68965 0.26711328 + 1194300 -33.793422 -33.793929 0.00050732388 26.700004 -0.0094157223 + 1194400 -33.78848 -33.799804 0.011324728 596.01036 0.15549265 + 1194500 -33.787754 -33.802145 0.014390771 757.37345 0.019215522 + 1194600 -33.794034 -33.795227 0.0011938316 62.830294 -0.5280993 + 1194700 -33.794929 -33.796936 0.0020076098 105.65871 -0.50044009 + 1194800 -33.793697 -33.803355 0.0096576288 508.27239 -0.17017801 + 1194900 -33.791253 -33.799509 0.008255752 434.49287 -0.11786228 + 1195000 -33.789159 -33.789899 0.00074078464 38.986835 -0.23379317 + 1195100 -33.789764 -33.797475 0.0077108438 405.81483 0.26737381 + 1195200 -33.794936 -33.803612 0.0086760512 456.61283 0.53710285 + 1195300 -33.795946 -33.798417 0.002471483 130.07194 0.33072369 + 1195400 -33.7941 -33.79476 0.00066078776 34.77667 0.15448997 + 1195500 -33.787952 -33.80118 0.013227422 696.14742 0.37817123 + 1195600 -33.788655 -33.801431 0.012775419 672.35888 0.11958215 + 1195700 -33.791628 -33.792729 0.0011013757 57.96442 -0.48709912 + 1195800 -33.793046 -33.796645 0.0035986304 189.39271 -0.4563973 + 1195900 -33.793858 -33.803611 0.0097529153 513.28723 -0.21976431 + 1196000 -33.793886 -33.799067 0.0051808918 272.66571 -0.33450768 + 1196100 -33.791741 -33.792046 0.00030449928 16.025526 -0.41540521 + 1196200 -33.788372 -33.798555 0.010182906 535.91726 0.13557058 + 1196300 -33.790576 -33.803321 0.012745334 670.77558 0.51626718 + 1196400 -33.795317 -33.797125 0.0018086029 95.185157 0.29115247 + 1196500 -33.795606 -33.796891 0.0012846932 67.612257 0.2823272 + 1196600 -33.794066 -33.802885 0.0088182327 464.09572 0.48775671 + 1196700 -33.792162 -33.800654 0.0084913596 446.89268 0.27960964 + 1196800 -33.79199 -33.792576 0.00058639116 30.861244 -0.26018202 + 1196900 -33.79212 -33.797339 0.0052193068 274.68746 -0.26681761 + 1197000 -33.792606 -33.803734 0.011127494 585.63008 -0.16720185 + 1197100 -33.794347 -33.79823 0.0038830472 204.36131 -0.48326269 + 1197200 -33.797113 -33.797529 0.00041655085 21.9227 -0.53094386 + 1197300 -33.798086 -33.802323 0.0042371027 222.99493 -0.26559717 + 1197400 -33.794777 -33.802842 0.0080652832 424.46866 -0.0015586536 + 1197500 -33.791209 -33.793729 0.0025203038 132.64134 0.042213328 + 1197600 -33.791052 -33.794152 0.0031006032 163.18198 0.38326547 + 1197700 -33.792463 -33.802774 0.010311181 542.66828 0.89714686 + 1197800 -33.795392 -33.800748 0.0053557304 281.86731 0.79963353 + 1197900 -33.797738 -33.79802 0.00028245944 14.865588 0.52684163 + 1198000 -33.798963 -33.801467 0.0025036996 131.76748 0.45174 + 1198100 -33.797303 -33.803664 0.0063607315 334.75963 0.30822715 + 1198200 -33.792065 -33.79745 0.0053844193 283.37719 -0.34252644 + 1198300 -33.790912 -33.792835 0.0019224988 101.1794 -1.0924029 + 1198400 -33.791893 -33.800334 0.0084411039 444.24777 -1.2071339 + 1198500 -33.794535 -33.801587 0.0070518104 371.13049 -1.3010331 + 1198600 -33.796386 -33.797561 0.0011749342 61.835738 -1.3096088 + 1198700 -33.797204 -33.799334 0.0021295888 112.07836 -0.87686814 + 1198800 -33.796004 -33.803354 0.007349205 386.78211 -0.16264813 + 1198900 -33.790605 -33.799771 0.0091655954 482.37711 0.62326312 + 1199000 -33.790531 -33.79327 0.0027387544 144.1382 1.2923648 + 1199100 -33.793693 -33.798424 0.0047309431 248.98531 1.956622 + 1199200 -33.795958 -33.801545 0.0055870146 294.03959 2.073289 + 1199300 -33.797333 -33.79937 0.0020372105 107.21657 1.624857 + 1199400 -33.797367 -33.799278 0.0019111047 100.57974 1.0245468 + 1199500 -33.793983 -33.802511 0.0085286102 448.85315 0.29504721 + 1199600 -33.791517 -33.802065 0.010547974 555.13044 -0.92003597 + 1199700 -33.7955 -33.797594 0.0020942845 110.22033 -2.1110725 + 1199800 -33.797105 -33.798531 0.0014260017 75.049195 -2.3901354 + 1199900 -33.794434 -33.801204 0.0067702038 356.30979 -1.9756228 + 1200000 -33.789054 -33.79847 0.0094161604 495.56412 -0.92729695 + 1200100 -33.79272 -33.796053 0.0033333884 175.43326 0.18875175 + 1200200 -33.796299 -33.801044 0.0047450477 249.72763 1.1631195 + 1200300 -33.796586 -33.802747 0.0061616233 324.28074 1.6955618 + 1200400 -33.792803 -33.79645 0.0036477603 191.97837 1.6949371 + 1200500 -33.789434 -33.79207 0.0026363692 138.74976 1.3907081 + 1200600 -33.789515 -33.800027 0.010512277 553.25176 1.1706656 + 1200700 -33.791982 -33.800061 0.0080788334 425.1818 0.44941875 + 1200800 -33.794721 -33.796318 0.0015972882 84.063852 -0.35786657 + 1200900 -33.79712 -33.800111 0.0029906697 157.39628 -0.64563771 + 1201000 -33.79977 -33.803479 0.0037081304 195.1556 -0.72052642 + 1201100 -33.80003 -33.80219 0.0021604629 113.70324 -0.75188167 + 1201200 -33.795085 -33.797364 0.0022781591 119.89748 -0.58522842 + 1201300 -33.792276 -33.80007 0.0077936629 410.17353 0.093513384 + 1201400 -33.791344 -33.801085 0.0097413799 512.68014 0.73777618 + 1201500 -33.791397 -33.794054 0.002656324 139.79996 0.92627841 + 1201600 -33.790399 -33.793078 0.0026795033 141.01987 1.1497636 + 1201700 -33.787641 -33.800692 0.013050211 686.82099 1.5069097 + 1201800 -33.791256 -33.799752 0.008496758 447.1768 1.137093 + 1201900 -33.795698 -33.797245 0.0015472987 81.432951 0.58985152 + 1202000 -33.796061 -33.800324 0.0042626451 224.33921 0.30888701 + 1202100 -33.794006 -33.803073 0.0090665432 477.16408 -0.028256842 + 1202200 -33.787749 -33.794795 0.0070463625 370.84377 -0.85856928 + 1202300 -33.784835 -33.787984 0.0031493816 165.74914 -1.7381316 + 1202400 -33.792173 -33.799514 0.0073408945 386.34473 -1.7381899 + 1202500 -33.79381 -33.800563 0.0067533578 355.4232 -1.5820247 + 1202600 -33.792285 -33.795312 0.0030269042 159.30327 -1.2206942 + 1202700 -33.790991 -33.797022 0.0060314798 317.4314 -0.26931055 + 1202800 -33.795118 -33.803268 0.008150536 428.95544 0.70755214 + 1202900 -33.797729 -33.801261 0.0035325663 185.91581 1.0317517 + 1203000 -33.796644 -33.797322 0.00067816897 35.691428 1.0983731 + 1203100 -33.794264 -33.799485 0.0052211907 274.78661 1.2111288 + 1203200 -33.792559 -33.802548 0.0099881841 525.66922 1.0821285 + 1203300 -33.791525 -33.795546 0.004021278 211.63628 0.30304347 + 1203400 -33.791359 -33.793759 0.0024000378 126.31185 -0.37430572 + 1203500 -33.794113 -33.801757 0.00764345 402.26796 -0.5925092 + 1203600 -33.797023 -33.802072 0.0050486564 265.70628 -0.85054098 + 1203700 -33.796229 -33.797486 0.0012568117 66.144876 -0.99574032 + 1203800 -33.790314 -33.796369 0.0060547004 318.65348 -0.64358776 + 1203900 -33.788849 -33.803096 0.01424653 749.78215 0.1702359 + 1204000 -33.792671 -33.798256 0.0055850393 293.93564 0.38554809 + 1204100 -33.793789 -33.794167 0.00037891293 19.941849 0.51807936 + 1204200 -33.792968 -33.799263 0.0062948428 331.29196 0.89980546 + 1204300 -33.785001 -33.801654 0.016652886 876.42656 1.1701843 + 1204400 -33.786941 -33.791812 0.0048710154 256.3572 0.54080632 + 1204500 -33.792087 -33.795154 0.003066867 161.40648 0.30966919 + 1204600 -33.793708 -33.802877 0.0091695658 482.58607 0.30690773 + 1204700 -33.794383 -33.800854 0.0064707629 340.55048 -0.071079782 + 1204800 -33.793041 -33.793526 0.00048531289 25.541585 -0.59510087 + 1204900 -33.787848 -33.794943 0.0070952873 373.41864 -0.67076129 + 1205000 -33.785591 -33.803231 0.017640198 928.38788 -0.48667405 + 1205100 -33.792352 -33.796656 0.004304479 226.54089 -0.90368033 + 1205200 -33.793324 -33.794315 0.00099089324 52.149828 -0.8684965 + 1205300 -33.793237 -33.801682 0.0084448381 444.4443 -0.30217279 + 1205400 -33.793226 -33.802498 0.0092722774 487.99169 0.083027781 + 1205500 -33.793539 -33.794949 0.0014107086 74.244335 0.12807567 + 1205600 -33.79352 -33.796292 0.0027716345 145.86865 0.45499096 + 1205700 -33.792399 -33.803227 0.010828495 569.89404 0.91061043 + 1205800 -33.790083 -33.797964 0.0078812677 414.78409 0.76078861 + 1205900 -33.788855 -33.789354 0.00049898872 26.261331 0.28099278 + 1206000 -33.79191 -33.799093 0.007183086 378.03941 0.35390886 + 1206100 -33.795976 -33.803759 0.0077828487 409.60439 0.23412356 + 1206200 -33.795719 -33.798092 0.0023732902 124.90415 -0.20322167 + 1206300 -33.7936 -33.7948 0.0011995809 63.132871 -0.50476966 + 1206400 -33.790216 -33.801884 0.011667925 614.07251 -0.35405842 + 1206500 -33.790365 -33.800792 0.010426607 548.74301 -0.52645629 + 1206600 -33.791514 -33.792088 0.00057397129 30.207597 -0.8634826 + 1206700 -33.792727 -33.796996 0.0042687582 224.66094 -0.54970396 + 1206800 -33.7945 -33.80377 0.0092694956 487.84528 -0.10409443 + 1206900 -33.796209 -33.800031 0.0038217561 201.13561 -0.044442967 + 1207000 -33.796894 -33.797236 0.00034194286 17.996148 0.035348511 + 1207100 -33.795606 -33.80135 0.0057446627 302.33647 0.39672439 + 1207200 -33.789991 -33.802755 0.012763893 671.75231 0.7460089 + 1207300 -33.789028 -33.79187 0.0028416377 149.55286 0.42225947 + 1207400 -33.791148 -33.793537 0.0023882899 125.69357 0.42200303 + 1207500 -33.794602 -33.802752 0.008149703 428.9116 0.61359022 + 1207600 -33.795914 -33.8014 0.0054855021 288.69708 0.34931918 + 1207700 -33.794807 -33.795668 0.00086099347 45.313318 -0.084902248 + 1207800 -33.794169 -33.799026 0.0048573016 255.63545 -0.19473331 + 1207900 -33.792838 -33.803583 0.010744179 565.45656 -0.2288193 + 1208000 -33.791692 -33.796536 0.0048440712 254.93914 -0.62857857 + 1208100 -33.79084 -33.791672 0.00083233747 43.805178 -0.8293791 + 1208200 -33.790583 -33.800181 0.0095987646 505.17442 -0.39031896 + 1208300 -33.793586 -33.802082 0.0084963117 447.15331 -0.17089716 + 1208400 -33.796445 -33.797692 0.0012469715 65.626995 -0.20886639 + 1208500 -33.79683 -33.799106 0.0022759887 119.78326 0.019928 + 1208600 -33.792223 -33.803444 0.011220554 590.52776 0.49969618 + 1208700 -33.787468 -33.797662 0.010193827 536.49203 0.63783095 + 1208800 -33.791188 -33.79212 0.00093198639 49.049612 0.49373808 + 1208900 -33.793138 -33.79846 0.0053214796 280.06473 0.70894875 + 1209000 -33.79281 -33.802096 0.0092861623 488.72244 0.71057879 + 1209100 -33.791303 -33.79566 0.0043567433 229.29151 0.20450176 + 1209200 -33.787753 -33.792298 0.0045448032 239.18894 -0.23519614 + 1209300 -33.789516 -33.801588 0.012071809 635.32855 -0.29983499 + 1209400 -33.795235 -33.801461 0.0062264571 327.69288 -0.60638774 + 1209500 -33.79571 -33.796409 0.00069903973 36.789838 -0.82184363 + 1209600 -33.793383 -33.797196 0.0038127856 200.6635 -0.58785787 + 1209700 -33.787946 -33.802717 0.014770985 777.38379 0.11307976 + 1209800 -33.790143 -33.797034 0.006891061 362.6704 0.27905597 + 1209900 -33.792464 -33.794028 0.0015642035 82.322634 0.41713965 + 1210000 -33.793417 -33.80067 0.0072532654 381.73289 0.80874079 + 1210100 -33.793499 -33.802113 0.0086132772 453.3091 0.84428866 + 1210200 -33.79133 -33.793842 0.0025114624 132.17602 0.37202695 + 1210300 -33.785058 -33.789962 0.0049045763 258.12348 -0.05755907 + 1210400 -33.786705 -33.802022 0.015316596 806.09878 -0.13869797 + 1210500 -33.793052 -33.799497 0.0064444217 339.16417 -0.66868347 + 1210600 -33.793874 -33.794778 0.00090442378 47.599017 -0.97573891 + 1210700 -33.793594 -33.799563 0.0059692805 314.15791 -0.72056233 + 1210800 -33.791646 -33.802774 0.01112768 585.63986 -0.33383334 + 1210900 -33.787287 -33.79234 0.0050524266 265.90471 -0.26638245 + 1211000 -33.786861 -33.78995 0.0030895159 162.59847 0.14331965 + 1211100 -33.792768 -33.801837 0.0090698217 477.33662 0.80467819 + 1211200 -33.794641 -33.801101 0.0064601553 339.99221 0.83225752 + 1211300 -33.79383 -33.795057 0.0012267405 64.562256 0.53018097 + 1211400 -33.791568 -33.797284 0.0057156719 300.81071 0.42102045 + 1211500 -33.784215 -33.802827 0.018612264 979.54687 0.35884462 + 1211600 -33.787336 -33.793836 0.0064996842 342.07258 -0.60634134 + 1211700 -33.792886 -33.793941 0.0010553579 55.542543 -0.99672996 + 1211800 -33.793587 -33.800741 0.0071538597 376.50126 -0.78695253 + 1211900 -33.792527 -33.80174 0.0092136365 484.90547 -0.5941422 + 1212000 -33.790339 -33.793359 0.0030192215 158.89893 -0.57042793 + 1212100 -33.789312 -33.794657 0.0053448263 281.29344 -0.043129559 + 1212200 -33.794108 -33.803014 0.0089059787 468.71372 0.55832013 + 1212300 -33.796242 -33.800406 0.0041642263 219.15952 0.59650599 + 1212400 -33.794923 -33.795302 0.00037882133 19.937029 0.48396603 + 1212500 -33.789974 -33.798087 0.0081128236 426.97067 0.61871866 + 1212600 -33.788506 -33.802966 0.014459709 761.00158 0.61760818 + 1212700 -33.791926 -33.795425 0.0034986916 184.13302 -0.01247604 + 1212800 -33.794026 -33.795738 0.0017123251 90.118144 -0.26710301 + 1212900 -33.794928 -33.802503 0.0075754269 398.68796 -0.16693325 + 1213000 -33.793157 -33.800967 0.0078099084 411.02851 -0.27441047 + 1213100 -33.786844 -33.788125 0.0012807022 67.402214 -0.67711889 + 1213200 -33.786602 -33.79403 0.0074282731 390.94339 -0.37554011 + 1213300 -33.792173 -33.80365 0.011476691 604.00802 -3.4423116e-06 + 1213400 -33.794114 -33.798317 0.0042037168 221.23787 -0.13354526 + 1213500 -33.793835 -33.794417 0.00058264548 30.664112 -0.1384359 + 1213600 -33.792244 -33.800912 0.0086680153 456.18991 0.30118838 + 1213700 -33.784872 -33.801223 0.016351255 860.55198 0.61007666 + 1213800 -33.784607 -33.786822 0.0022143855 116.54113 0.17720039 + 1213900 -33.791341 -33.794888 0.0035478353 186.71941 0.37462521 + 1214000 -33.793079 -33.803473 0.010393911 547.02224 0.60881956 + 1214100 -33.793641 -33.799614 0.0059731728 314.36276 0.29871417 + 1214200 -33.793213 -33.793544 0.00033115105 17.428184 -0.13392316 + 1214300 -33.791563 -33.798909 0.0073465844 386.64418 -0.10710176 + 1214400 -33.788624 -33.803332 0.014707643 774.05015 -0.097307167 + 1214500 -33.791232 -33.794222 0.0029899502 157.35841 -0.66945859 + 1214600 -33.794755 -33.795977 0.0012212714 64.274424 -0.69926739 + 1214700 -33.795739 -33.802793 0.0070534222 371.21532 -0.3603089 + 1214800 -33.793819 -33.801652 0.0078326301 412.22434 -0.17320907 + 1214900 -33.787493 -33.789121 0.0016274051 85.648878 -0.20359252 + 1215000 -33.781567 -33.790947 0.0093801088 493.66676 0.50935513 + 1215100 -33.788126 -33.803381 0.015255365 802.87626 1.2284932 + 1215200 -33.79162 -33.796478 0.004857691 255.65594 0.98698323 + 1215300 -33.793576 -33.79401 0.0004343266 22.858222 0.73588045 + 1215400 -33.794638 -33.80136 0.0067220217 353.77401 0.74384455 + 1215500 -33.794446 -33.80299 0.008544685 449.69915 0.44086792 + 1215600 -33.792041 -33.794761 0.0027203158 143.16779 -0.31372389 + 1215700 -33.788226 -33.792591 0.0043645372 229.7017 -0.88635442 + 1215800 -33.789259 -33.802325 0.013066601 687.68357 -0.99257354 + 1215900 -33.794928 -33.800017 0.0050890886 267.83419 -1.3347909 + 1216000 -33.794927 -33.795247 0.00032068467 16.877348 -1.3555905 + 1216100 -33.79315 -33.799024 0.0058738248 309.13416 -0.7229026 + 1216200 -33.790847 -33.803799 0.012952301 681.66805 0.20117927 + 1216300 -33.795483 -33.798734 0.0032511615 171.10573 0.58427372 + 1216400 -33.798059 -33.798596 0.00053606575 28.212662 0.82838967 + 1216500 -33.797202 -33.802269 0.0050672753 266.68618 1.060774 + 1216600 -33.792894 -33.80186 0.0089661023 471.87797 0.97827965 + 1216700 -33.791042 -33.792812 0.0017693682 93.120271 0.23015412 + 1216800 -33.79114 -33.795189 0.0040484692 213.06732 -0.20804866 + 1216900 -33.79389 -33.803544 0.0096539292 508.07768 -0.36623193 + 1217000 -33.797885 -33.801415 0.0035296658 185.76316 -0.74613717 + 1217100 -33.798195 -33.798363 0.00016794668 8.8388842 -0.88310899 + 1217200 -33.793451 -33.798928 0.0054768332 288.24085 -0.55598922 + 1217300 -33.789729 -33.803398 0.01366868 719.37042 0.17966074 + 1217400 -33.791684 -33.795466 0.0037824273 199.06577 0.34841699 + 1217500 -33.793956 -33.795191 0.0012351729 65.006049 0.62127284 + 1217600 -33.7953 -33.802226 0.0069264611 364.53347 0.9900982 + 1217700 -33.794485 -33.801925 0.0074403578 391.5794 0.9265131 + 1217800 -33.789111 -33.791073 0.001961385 103.22594 0.30250315 + 1217900 -33.786407 -33.793101 0.0066943525 352.3178 -0.11424974 + 1218000 -33.790765 -33.803118 0.012353276 650.14189 -0.28083396 + 1218100 -33.793041 -33.798194 0.00515292 271.19358 -0.79845329 + 1218200 -33.792984 -33.793632 0.00064889984 34.15102 -1.0610199 + 1218300 -33.792261 -33.800076 0.0078147253 411.28202 -0.68023258 + 1218400 -33.791513 -33.802562 0.011048802 581.48861 -0.29935383 + 1218500 -33.793229 -33.795617 0.0023877317 125.66419 -0.24662186 + 1218600 -33.795227 -33.797286 0.0020588238 108.35406 0.099851244 + 1218700 -33.796108 -33.802981 0.0068733603 361.73882 0.52654175 + 1218800 -33.793359 -33.800276 0.006916755 364.02264 0.61777893 + 1218900 -33.787989 -33.789217 0.0012285042 64.655078 0.36381508 + 1219000 -33.788228 -33.796195 0.0079672027 419.30677 0.57798624 + 1219100 -33.792075 -33.803119 0.011043671 581.21854 0.6381763 + 1219200 -33.793769 -33.797351 0.0035820755 188.52144 0.18362982 + 1219300 -33.793565 -33.794924 0.0013591542 71.531075 -0.14272903 + 1219400 -33.792628 -33.80152 0.0088914466 467.9489 -0.088174444 + 1219500 -33.791485 -33.801111 0.0096263719 506.62737 -0.27474903 + 1219600 -33.789984 -33.791865 0.0018808881 98.989465 -0.74083842 + 1219700 -33.789923 -33.795105 0.005182172 272.73309 -0.61217573 + 1219800 -33.793098 -33.803135 0.010037747 528.27766 -0.27033734 + 1219900 -33.795644 -33.799666 0.0040216735 211.65709 -0.31693198 + 1220000 -33.79557 -33.796293 0.0007237181 38.088638 -0.24830029 + 1220100 -33.791534 -33.799791 0.0082567382 434.54477 0.23244915 + 1220200 -33.786086 -33.801714 0.015627798 822.47704 0.7801426 + 1220300 -33.790572 -33.793257 0.0026849927 141.30877 0.62292887 + 1220400 -33.792717 -33.795563 0.002846011 149.78302 0.70987019 + 1220500 -33.793114 -33.802591 0.0094768254 498.75687 0.86287228 + 1220600 -33.792844 -33.799736 0.0068922733 362.7342 0.50233345 + 1220700 -33.791607 -33.792634 0.0010266216 54.03018 -0.13866807 + 1220800 -33.788256 -33.796885 0.0086289519 454.13404 -0.35013363 + 1220900 -33.789178 -33.802763 0.013585684 715.00245 -0.54693618 + 1221000 -33.794426 -33.79732 0.0028933965 152.27688 -1.0704873 + 1221100 -33.795379 -33.796605 0.0012260418 64.525487 -1.0566588 + 1221200 -33.794172 -33.802167 0.0079958798 420.81602 -0.55542738 + 1221300 -33.786645 -33.799646 0.013000763 684.21854 -0.01385225 + 1221400 -33.783983 -33.786295 0.0023124599 121.7027 0.35573235 + 1221500 -33.788338 -33.794734 0.0063953718 336.58271 1.2051781 + 1221600 -33.791447 -33.802948 0.011501484 605.31282 1.6932837 + 1221700 -33.794091 -33.798291 0.0041996095 221.0217 1.3840793 + 1221800 -33.79489 -33.795729 0.00083838934 44.123683 0.90586628 + 1221900 -33.794614 -33.801382 0.006768661 356.22859 0.58852085 + 1222000 -33.791052 -33.802284 0.011232087 591.13473 -0.011506913 + 1222100 -33.788059 -33.791367 0.0033070921 174.04931 -1.3162669 + 1222200 -33.790239 -33.793734 0.0034942463 183.89907 -1.9711076 + 1222300 -33.794637 -33.802568 0.0079305119 417.37577 -1.8800725 + 1222400 -33.79493 -33.800299 0.0053684468 282.53657 -1.730868 + 1222500 -33.793643 -33.794795 0.0011518498 60.620829 -1.2482476 + 1222600 -33.79253 -33.799081 0.0065506089 344.7527 -0.061270194 + 1222700 -33.792689 -33.803507 0.010817796 569.33098 1.1205464 + 1222800 -33.793472 -33.796952 0.0034805481 183.17814 1.6409399 + 1222900 -33.793233 -33.794231 0.00099813361 52.530881 1.9532453 + 1223000 -33.792104 -33.801088 0.0089842224 472.83161 2.221612 + 1223100 -33.79031 -33.801029 0.010719215 564.14272 1.7874997 + 1223200 -33.790978 -33.792646 0.0016681406 87.792754 0.59095345 + 1223300 -33.795241 -33.798565 0.003323161 174.895 -0.06069737 + 1223400 -33.796953 -33.803768 0.006814739 358.65363 -0.40899083 + 1223500 -33.795048 -33.799862 0.0048138668 253.34952 -0.94986358 + 1223600 -33.790978 -33.791245 0.00026627584 14.01386 -1.5467025 + 1223700 -33.789986 -33.798506 0.0085193053 448.36344 -1.369539 + 1223800 -33.791263 -33.802982 0.011719544 616.78917 -1.0766137 + 1223900 -33.79374 -33.796088 0.002348413 123.59488 -1.0301559 + 1224000 -33.795494 -33.796941 0.0014473863 76.174649 -0.56165032 + 1224100 -33.797889 -33.803222 0.0053337183 280.70884 0.055765699 + 1224200 -33.799615 -33.802999 0.0033833494 178.06266 0.30838402 + 1224300 -33.797811 -33.798374 0.00056347523 29.655199 0.38620903 + 1224400 -33.793984 -33.797571 0.0035871674 188.78942 0.67518089 + 1224500 -33.790912 -33.803665 0.012753785 671.22031 1.1495006 + 1224600 -33.790001 -33.796526 0.0065249478 343.40218 0.88426734 + 1224700 -33.791646 -33.791946 0.00030012857 15.795499 0.4758813 + 1224800 -33.795097 -33.801068 0.0059703673 314.21511 0.51054107 + 1224900 -33.79652 -33.803401 0.0068808837 362.13477 0.30883136 + 1225000 -33.794192 -33.796598 0.0024060733 126.62949 -0.24075136 + 1225100 -33.785628 -33.789673 0.0040452667 212.89878 -0.81372561 + 1225200 -33.78795 -33.802301 0.014350931 755.27668 -0.82001238 + 1225300 -33.793012 -33.800003 0.0069907079 367.91472 -1.1633395 + 1225400 -33.794259 -33.794508 0.00024895462 13.10226 -1.2806778 + 1225500 -33.793872 -33.798648 0.0047766765 251.39222 -0.76164905 + 1225600 -33.789068 -33.803777 0.014709383 774.14172 0.12142996 + 1225700 -33.786305 -33.793741 0.0074355379 391.32573 0.64627887 + 1225800 -33.792689 -33.793963 0.0012748936 67.096514 1.1207756 + 1225900 -33.794407 -33.801315 0.0069086654 363.5969 1.5592633 + 1226000 -33.793203 -33.801747 0.008543491 449.63631 1.4644838 + 1226100 -33.790239 -33.792195 0.0019558021 102.93212 0.65824269 + 1226200 -33.786819 -33.792743 0.0059243502 311.79327 -0.059282045 + 1226300 -33.791211 -33.803321 0.012109863 637.33129 -0.52248249 + 1226400 -33.795952 -33.800492 0.0045404899 238.96193 -1.1045497 + 1226500 -33.795606 -33.795794 0.00018820637 9.9051332 -1.3519643 + 1226600 -33.792555 -33.799169 0.0066139858 348.08817 -0.94701167 + 1226700 -33.787951 -33.802998 0.015047424 791.93251 -0.1859733 + 1226800 -33.790382 -33.794081 0.003699018 194.67602 0.068082918 + 1226900 -33.792037 -33.7939 0.0018627933 98.037149 0.52891606 + 1227000 -33.79247 -33.802297 0.0098276105 517.21838 1.1576077 + 1227100 -33.793082 -33.801034 0.0079527106 418.54407 1.2028521 + 1227200 -33.793585 -33.794323 0.00073889444 38.887355 0.78071466 + 1227300 -33.794265 -33.798319 0.0040538041 213.34809 0.60358086 + 1227400 -33.794927 -33.803601 0.0086741242 456.51142 0.4044828 + 1227500 -33.793973 -33.79855 0.0045767844 240.87208 -0.24147479 + 1227600 -33.790536 -33.791555 0.0010183669 53.595739 -0.9503053 + 1227700 -33.786979 -33.799032 0.01205256 634.31546 -1.065418 + 1227800 -33.792357 -33.80226 0.0099034722 521.21091 -1.3150708 + 1227900 -33.795722 -33.797111 0.0013889778 73.100662 -1.5013118 + 1228000 -33.795034 -33.797314 0.0022808178 120.03741 -1.1011612 + 1228100 -33.792039 -33.803062 0.01102294 580.12752 -0.14681827 + 1228200 -33.788932 -33.798417 0.0094850098 499.18761 0.67261464 + 1228300 -33.790836 -33.791939 0.0011028608 58.042583 1.2413895 + 1228400 -33.795577 -33.799835 0.0042582501 224.10791 1.7969219 + 1228500 -33.795925 -33.803045 0.0071202642 374.73316 1.8366487 + 1228600 -33.792665 -33.796646 0.0039814965 209.54261 1.1411385 + 1228700 -33.788946 -33.792054 0.0031082901 163.58654 0.007192368 + 1228800 -33.790056 -33.801248 0.011191759 589.0123 -0.77121471 + 1228900 -33.792227 -33.800966 0.008739097 459.93088 -1.6200298 + 1229000 -33.792841 -33.793943 0.001102603 58.029015 -2.2759839 + 1229100 -33.792498 -33.796677 0.0041789454 219.93417 -2.0688461 + 1229200 -33.790978 -33.802811 0.011833378 622.78014 -1.2795898 + 1229300 -33.7904 -33.797271 0.0068707836 361.60321 -0.60247259 + 1229400 -33.79324 -33.794582 0.0013422407 70.640933 0.16030934 + 1229500 -33.79586 -33.801312 0.0054519267 286.93004 0.97919993 + 1229600 -33.795931 -33.802722 0.0067905226 357.37915 1.3652786 + 1229700 -33.790154 -33.793259 0.0031047869 163.40216 1.2056175 + 1229800 -33.787143 -33.7911 0.0039571071 208.25902 0.97875036 + 1229900 -33.789809 -33.802254 0.012444842 654.96093 0.96437643 + 1230000 -33.793763 -33.800244 0.0064804973 341.06279 0.35646414 + 1230100 -33.794633 -33.795386 0.00075272173 39.615073 -0.27632814 + 1230200 -33.793957 -33.799273 0.0053160937 279.78127 -0.48028971 + 1230300 -33.786352 -33.802426 0.016073497 845.93382 -0.55336259 + 1230400 -33.784105 -33.790197 0.0060914143 320.5857 -1.3408388 + 1230500 -33.790044 -33.792224 0.0021795071 114.70551 -1.4613465 + 1230600 -33.792554 -33.801784 0.0092301224 485.77311 -0.96661819 + 1230700 -33.793781 -33.801269 0.0074879009 394.08155 -0.64170349 + 1230800 -33.794009 -33.795216 0.0012070619 63.526591 -0.39358167 + 1230900 -33.793336 -33.797692 0.0043552737 229.21417 0.25589354 + 1231000 -33.790711 -33.803283 0.012571693 661.63697 1.0749027 + 1231100 -33.789728 -33.795986 0.0062578703 329.34613 1.2464287 + 1231200 -33.791898 -33.792879 0.00098070971 51.613877 1.2345749 + 1231300 -33.79524 -33.801141 0.0059007954 310.5536 1.3696506 + 1231400 -33.79599 -33.802831 0.0068403703 360.00259 1.0726637 + 1231500 -33.792229 -33.795068 0.0028387923 149.40311 0.22948292 + 1231600 -33.785111 -33.791005 0.005893744 310.18249 -0.92219991 + 1231700 -33.789219 -33.802229 0.013010381 684.72476 -1.6036681 + 1231800 -33.79341 -33.799446 0.0060356624 317.65153 -2.2298191 + 1231900 -33.794029 -33.79445 0.00042124673 22.16984 -2.3354685 + 1232000 -33.792891 -33.79894 0.006049358 318.37231 -1.5762846 + 1232100 -33.786079 -33.803086 0.017007002 895.06335 -0.15701093 + 1232200 -33.788313 -33.793896 0.0055829641 293.82642 0.96491948 + 1232300 -33.793727 -33.795116 0.0013887257 73.087394 1.7767792 + 1232400 -33.794156 -33.801667 0.007511378 395.31712 2.3314683 + 1232500 -33.792218 -33.800922 0.0087040405 458.08589 2.1794982 + 1232600 -33.788491 -33.790511 0.0020198485 106.30283 1.1258271 + 1232700 -33.786284 -33.793608 0.0073233066 385.41909 0.11778215 + 1232800 -33.794113 -33.803641 0.0095278355 501.44148 -0.56805288 + 1232900 -33.795933 -33.799773 0.0038402782 202.11041 -1.2298892 + 1233000 -33.794616 -33.794824 0.00020775521 10.933972 -1.5906282 + 1233100 -33.790315 -33.799404 0.0090888271 478.33686 -1.2215779 + 1233200 -33.78804 -33.802606 0.014566118 766.60179 -0.63850983 + 1233300 -33.791387 -33.793917 0.0025294406 133.1222 -0.49549387 + 1233400 -33.792408 -33.794741 0.0023325885 122.76205 0.045741821 + 1233500 -33.792739 -33.803096 0.010357108 545.08537 0.81049531 + 1233600 -33.793442 -33.800419 0.0069764996 367.16695 0.99482696 + 1233700 -33.793769 -33.794051 0.00028230248 14.857328 0.81587251 + 1233800 -33.79372 -33.798636 0.0049153277 258.68931 0.87176646 + 1233900 -33.792497 -33.803871 0.011374132 598.61041 0.80052762 + 1234000 -33.791012 -33.795756 0.0047439104 249.66777 0.027068444 + 1234100 -33.79047 -33.791646 0.0011763118 61.908241 -0.66511568 + 1234200 -33.792982 -33.80143 0.0084478557 444.60311 -0.71087231 + 1234300 -33.796326 -33.80277 0.0064435666 339.11916 -0.87400788 + 1234400 -33.796144 -33.797015 0.00087129963 45.855722 -1.0136255 + 1234500 -33.791055 -33.794454 0.0033986804 178.86952 -0.65923871 + 1234600 -33.786775 -33.80337 0.016595404 873.40132 0.45505386 + 1234700 -33.791846 -33.79892 0.0070742732 372.31269 0.77895697 + 1234800 -33.79426 -33.794358 9.769213e-05 5.1414497 0.85199633 + 1234900 -33.794605 -33.800008 0.0054031149 284.36112 1.1157589 + 1235000 -33.791714 -33.803272 0.011557381 608.25463 1.1365642 + 1235100 -33.783921 -33.789567 0.005646234 297.15626 0.22192103 + 1235200 -33.787176 -33.790019 0.0028428301 149.61561 -0.54113249 + 1235300 -33.791717 -33.802328 0.010611287 558.46258 -0.57457327 + 1235400 -33.793534 -33.8012 0.0076661357 403.46189 -0.87741488 + 1235500 -33.793769 -33.794213 0.00044415443 23.375452 -1.1552927 + 1235600 -33.792613 -33.797298 0.0046852553 246.58081 -0.7808966 + 1235700 -33.787502 -33.803668 0.01616602 850.8032 0.018272805 + 1235800 -33.788437 -33.795145 0.0067076337 353.01678 0.26809197 + 1235900 -33.793736 -33.794321 0.00058505441 30.790892 0.5371293 + 1236000 -33.794882 -33.801485 0.0066031736 347.51914 0.94678352 + 1236100 -33.79367 -33.802544 0.0088736932 467.01456 0.99276278 + 1236200 -33.790825 -33.793089 0.0022635096 119.12649 0.45423413 + 1236300 -33.785548 -33.790161 0.004612969 242.77644 -0.0096659376 + 1236400 -33.781789 -33.802653 0.020864867 1098.0993 -0.069561595 + 1236500 -33.792491 -33.798936 0.0064442921 339.15735 -0.82101476 + 1236600 -33.7941 -33.794456 0.00035606809 18.739546 -1.1327972 + 1236700 -33.794293 -33.799856 0.0055631837 292.78539 -0.80312554 + 1236800 -33.792415 -33.803287 0.010872006 572.18399 -0.34371371 + 1236900 -33.788357 -33.792933 0.004575588 240.80911 -0.17458407 + 1237000 -33.786986 -33.79011 0.0031239566 164.41105 0.36717078 + 1237100 -33.793298 -33.802207 0.0089096587 468.90739 1.099483 + 1237200 -33.795276 -33.801485 0.0062092614 326.78789 1.1193 + 1237300 -33.79408 -33.794814 0.00073454219 38.6583 0.73836125 + 1237400 -33.790909 -33.79655 0.0056407338 296.86679 0.47639675 + 1237500 -33.785976 -33.80322 0.017244123 907.54281 0.21807967 + 1237600 -33.792297 -33.79721 0.0049130152 258.56761 -0.7753957 + 1237700 -33.795596 -33.796268 0.00067196737 35.365043 -1.1449933 + 1237800 -33.795661 -33.801585 0.0059242759 311.78935 -0.93776494 + 1237900 -33.79217 -33.802055 0.0098846261 520.21905 -0.61589188 + 1238000 -33.788321 -33.791138 0.0028169421 148.25315 -0.46419367 + 1238100 -33.789239 -33.793654 0.0044154066 232.37891 0.24252337 + 1238200 -33.79362 -33.803056 0.0094362066 496.61914 0.93752758 + 1238300 -33.794595 -33.800045 0.0054498938 286.82305 0.96064774 + 1238400 -33.793533 -33.794102 0.00056926015 29.959654 0.72199693 + 1238500 -33.791172 -33.798617 0.0074452568 391.83722 0.70674786 + 1238600 -33.788879 -33.802651 0.01377197 724.80648 0.4760916 + 1238700 -33.792946 -33.795926 0.0029803612 156.85375 -0.33220316 + 1238800 -33.796227 -33.797496 0.0012682192 66.745246 -0.60593107 + 1238900 -33.796058 -33.80273 0.006671467 351.11336 -0.50992226 + 1239000 -33.79315 -33.800964 0.0078136239 411.22406 -0.49958287 + 1239100 -33.790747 -33.792149 0.001401663 73.768271 -0.65219061 + 1239200 -33.79088 -33.79629 0.0054092758 284.68536 -0.22796646 + 1239300 -33.791936 -33.803317 0.011381261 598.98563 0.3106176 + 1239400 -33.79406 -33.798215 0.0041551426 218.68145 0.27813468 + 1239500 -33.795493 -33.796294 0.0008008025 42.145521 0.29414377 + 1239600 -33.79748 -33.801986 0.0045056864 237.13026 0.49931818 + 1239700 -33.798242 -33.803214 0.0049724448 261.69534 0.45230037 + 1239800 -33.794539 -33.796585 0.0020466237 107.71198 0.093501692 + 1239900 -33.791192 -33.794487 0.003295263 173.42675 -0.2546597 + 1240000 -33.790502 -33.802478 0.011976379 630.30614 -0.28728553 + 1240100 -33.793196 -33.799849 0.0066529606 350.13938 -0.67654104 + 1240200 -33.796034 -33.796427 0.00039322458 20.695059 -0.91250374 + 1240300 -33.797744 -33.800905 0.0031609364 166.35727 -0.66745621 + 1240400 -33.798701 -33.803622 0.0049211347 258.99493 -0.36325943 + 1240500 -33.796961 -33.799832 0.002870424 151.06785 -0.16863143 + 1240600 -33.792811 -33.79474 0.001928708 101.50618 0.22863552 + 1240700 -33.790294 -33.800799 0.010504939 552.86555 1.1514415 + 1240800 -33.791679 -33.801164 0.0094852304 499.19922 1.5743432 + 1240900 -33.794912 -33.795776 0.00086381887 45.462017 1.38395 + 1241000 -33.796786 -33.798891 0.0021049904 110.78377 1.2753852 + 1241100 -33.797068 -33.803153 0.0060856002 320.27971 1.0252608 + 1241200 -33.791747 -33.799634 0.0078867891 415.07468 0.25986121 + 1241300 -33.789361 -33.792854 0.0034924842 183.80633 -1.0775658 + 1241400 -33.793156 -33.799367 0.0062100681 326.83034 -1.7390783 + 1241500 -33.795186 -33.802004 0.0068177128 358.81014 -1.958981 + 1241600 -33.793622 -33.796417 0.0027957359 147.13709 -1.96315 + 1241700 -33.788666 -33.791632 0.0029660952 156.10295 -1.3093201 + 1241800 -33.787257 -33.801574 0.014317253 753.50423 0.33940261 + 1241900 -33.791835 -33.801181 0.0093466406 491.90536 1.2884316 + 1242000 -33.794889 -33.795945 0.0010560521 55.579081 1.5894235 + 1242100 -33.795567 -33.798564 0.0029971283 157.73619 1.8181979 + 1242200 -33.793094 -33.803145 0.010051092 528.98002 1.7744359 + 1242300 -33.787353 -33.795627 0.0082739465 435.45043 0.76564927 + 1242400 -33.789032 -33.790926 0.0018941825 99.689136 -0.58103228 + 1242500 -33.79209 -33.800017 0.0079263132 417.1548 -1.1045779 + 1242600 -33.79271 -33.802275 0.0095645037 503.3713 -1.5158527 + 1242700 -33.792575 -33.794669 0.0020940568 110.20834 -1.9329246 + 1242800 -33.791662 -33.794674 0.0030115416 158.49475 -1.6696018 + 1242900 -33.791099 -33.802795 0.011696148 615.55782 -0.75733596 + 1243000 -33.794604 -33.801017 0.0064128546 337.50282 -0.21531416 + 1243100 -33.796579 -33.797013 0.00043483018 22.884724 0.1266873 + 1243200 -33.796296 -33.800012 0.0037166008 195.60139 0.67359685 + 1243300 -33.790008 -33.803349 0.013340291 702.08761 1.3308054 + 1243400 -33.788434 -33.794132 0.0056971044 299.83352 1.3073443 + 1243500 -33.791032 -33.79221 0.0011781195 62.003377 1.2038053 + 1243600 -33.793341 -33.801394 0.0080525883 423.80054 1.2793642 + 1243700 -33.794077 -33.802259 0.0081823186 430.62813 0.85046559 + 1243800 -33.793465 -33.795075 0.0016098887 84.727009 -0.016181571 + 1243900 -33.788331 -33.793625 0.0052947447 278.65769 -0.71814787 + 1244000 -33.783582 -33.802646 0.019063295 1003.2842 -1.2535079 + 1244100 -33.791904 -33.79804 0.0061364608 322.95646 -2.1196719 + 1244200 -33.793538 -33.793679 0.00014148515 7.4462374 -2.289642 + 1244300 -33.793301 -33.799603 0.0063021171 331.6748 -1.5830716 + 1244400 -33.791416 -33.803154 0.011737806 617.75025 -0.55072163 + 1244500 -33.790525 -33.795391 0.0048665803 256.12378 0.27532276 + 1244600 -33.793879 -33.795894 0.0020149795 106.04658 1.1771914 + 1244700 -33.796247 -33.802465 0.0062175137 327.2222 1.8332167 + 1244800 -33.795148 -33.801233 0.006085415 320.26996 1.8435828 + 1244900 -33.789386 -33.7908 0.0014135674 74.394793 1.1220184 + 1245000 -33.788695 -33.795048 0.0063533736 334.37238 0.42561095 + 1245100 -33.791805 -33.803795 0.011990761 631.06305 -0.1575459 + 1245200 -33.794799 -33.799 0.0042013701 221.11436 -1.0030034 + 1245300 -33.795065 -33.795578 0.00051307386 27.00262 -1.4519968 + 1245400 -33.792371 -33.80049 0.0081194339 427.31857 -1.2265938 + 1245500 -33.783858 -33.801825 0.017967202 945.59784 -0.6732676 + 1245600 -33.789461 -33.791673 0.002212056 116.41854 -0.66593158 + 1245700 -33.792435 -33.795181 0.0027459314 144.51592 -0.12967797 + 1245800 -33.793386 -33.803013 0.0096268889 506.65458 0.54775122 + 1245900 -33.793494 -33.800171 0.006677299 351.42029 0.72288333 + 1246000 -33.792417 -33.793235 0.00081765128 43.032258 0.62791025 + 1246100 -33.789616 -33.797539 0.00792205 416.93043 0.85887043 + 1246200 -33.789675 -33.803194 0.013519335 711.51053 0.91616815 + 1246300 -33.794408 -33.797169 0.002761011 145.30954 0.32561387 + 1246400 -33.795615 -33.796538 0.00092328154 48.591484 0.021597914 + 1246500 -33.794493 -33.802115 0.0076215401 401.11486 -0.0032977495 + 1246600 -33.785054 -33.800049 0.014995437 789.19649 -0.24824326 + 1246700 -33.78668 -33.78922 0.0025403841 133.69815 -1.1101519 + 1246800 -33.790954 -33.79596 0.0050056169 263.44115 -1.0832202 + 1246900 -33.793251 -33.802768 0.0095177736 500.91194 -0.78852218 + 1247000 -33.793821 -33.798484 0.0046628084 245.39945 -0.70409375 + 1247100 -33.792379 -33.793388 0.0010089602 53.100677 -0.45155008 + 1247200 -33.786961 -33.799129 0.012168625 640.42388 0.49498908 + 1247300 -33.789496 -33.802386 0.012889494 678.36257 1.2280652 + 1247400 -33.794712 -33.79661 0.0018977286 99.875764 1.148798 + 1247500 -33.79481 -33.796706 0.0018962376 99.797296 1.1092855 + 1247600 -33.792655 -33.80261 0.0099548278 523.91371 1.0766118 + 1247700 -33.787882 -33.798083 0.01020126 536.88322 0.35954929 + 1247800 -33.78497 -33.787059 0.002089247 109.9552 -0.90601945 + 1247900 -33.792216 -33.798491 0.0062752169 330.25907 -1.2376583 + 1248000 -33.795282 -33.803244 0.0079621586 419.0413 -1.2918431 + 1248100 -33.794837 -33.797825 0.0029878388 157.24729 -1.3655752 + 1248200 -33.791686 -33.793499 0.0018126048 95.395774 -0.99645322 + 1248300 -33.787323 -33.800801 0.013478503 709.36161 0.23164115 + 1248400 -33.792487 -33.801446 0.0089586996 471.48837 0.98393274 + 1248500 -33.79618 -33.796928 0.00074836169 39.385608 1.0875368 + 1248600 -33.795399 -33.798463 0.0030632215 161.21461 1.2132936 + 1248700 -33.791806 -33.803232 0.011426306 601.35631 1.2378432 + 1248800 -33.789173 -33.796676 0.007502982 394.87525 0.47594079 + 1248900 -33.791598 -33.792809 0.00121085 63.725956 -0.38624543 + 1249000 -33.796885 -33.801461 0.0045751986 240.78862 -0.53772746 + 1249100 -33.79638 -33.802958 0.0065774405 346.16483 -0.64354893 + 1249200 -33.793452 -33.795915 0.0024634145 129.64731 -0.9118122 + 1249300 -33.790793 -33.793861 0.0030682092 161.47711 -0.81361407 + 1249400 -33.790491 -33.802379 0.011888616 625.68724 -0.17889626 + 1249500 -33.793189 -33.800412 0.0072230063 380.14038 6.2421513e-05 + 1249600 -33.795385 -33.795786 0.00040141376 21.126048 0.046871101 + 1249700 -33.799544 -33.801563 0.0020189289 106.25443 0.32255669 + 1249800 -33.798978 -33.803575 0.0045969174 241.93166 0.44678261 + 1249900 -33.795513 -33.799521 0.0040080765 210.94149 0.30358179 + 1250000 -33.792976 -33.794822 0.0018459229 97.149276 0.028054949 + 1250100 -33.791421 -33.800619 0.0091980359 484.08443 0.080080657 + 1250200 -33.792036 -33.801356 0.0093192267 490.46259 -0.10352863 + 1250300 -33.794729 -33.79595 0.0012210194 64.261164 -0.49947786 + 1250400 -33.79631 -33.798178 0.0018686742 98.346658 -0.470489 + 1250500 -33.795642 -33.803058 0.0074159618 390.29546 -0.20451816 + 1250600 -33.789089 -33.799386 0.010297056 541.92487 -0.039133992 + 1250700 -33.789539 -33.792919 0.0033803502 177.90482 -0.027974807 + 1250800 -33.793408 -33.798768 0.0053600144 282.09278 0.34034368 + 1250900 -33.793516 -33.801828 0.0083111781 437.40989 0.58581382 + 1251000 -33.791718 -33.795162 0.0034443275 181.27189 0.40764245 + 1251100 -33.789062 -33.791644 0.0025819408 135.88524 0.27189252 + 1251200 -33.790067 -33.801309 0.011242034 591.6582 0.50131178 + 1251300 -33.797079 -33.802719 0.0056403486 296.84652 0.27704752 + 1251400 -33.796863 -33.798065 0.0012024919 63.286076 -0.033686543 + 1251500 -33.79421 -33.797859 0.0036494292 192.0662 -0.1619495 + 1251600 -33.789994 -33.80282 0.01282593 675.01724 -0.099595578 + 1251700 -33.790034 -33.796465 0.0064304606 338.4294 -0.53072729 + 1251800 -33.791132 -33.791613 0.00048135789 25.333437 -0.82873449 + 1251900 -33.793116 -33.799551 0.0064351042 338.67379 -0.50434504 + 1252000 -33.798356 -33.803174 0.0048181176 253.57323 -0.36757043 + 1252100 -33.797489 -33.799654 0.0021641259 113.89602 -0.32100539 + 1252200 -33.793977 -33.797517 0.0035398027 186.29666 -0.041814814 + 1252300 -33.791494 -33.802284 0.010789974 567.86671 0.58800954 + 1252400 -33.792944 -33.800137 0.0071924112 378.53019 0.79232854 + 1252500 -33.795224 -33.795412 0.00018829903 9.9100101 0.69789754 + 1252600 -33.796806 -33.799118 0.002311982 121.67755 0.76516499 + 1252700 -33.795641 -33.8027 0.0070596962 371.54552 0.73136489 + 1252800 -33.7895 -33.79921 0.0097101798 511.0381 0.28084217 + 1252900 -33.792586 -33.796464 0.0038778704 204.08886 -0.4181846 + 1253000 -33.794959 -33.800649 0.0056894514 299.43075 -0.63239372 + 1253100 -33.794232 -33.800993 0.0067610933 355.83031 -0.77856395 + 1253200 -33.791148 -33.793386 0.00223788 117.77763 -1.038706 + 1253300 -33.788648 -33.791549 0.0029010908 152.68182 -0.87573208 + 1253400 -33.789211 -33.802138 0.012927327 680.3537 -0.14567355 + 1253500 -33.793281 -33.801234 0.0079536699 418.59455 0.075868448 + 1253600 -33.79478 -33.796452 0.0016714121 87.96493 0.12232498 + 1253700 -33.794876 -33.7993 0.0044237616 232.81863 0.43489394 + 1253800 -33.793256 -33.803041 0.0097849165 514.97143 0.73336572 + 1253900 -33.78471 -33.791929 0.0072193255 379.94666 0.4724128 + 1254000 -33.783618 -33.784832 0.0012138441 63.88353 0.09589006 + 1254100 -33.787813 -33.799177 0.011363668 598.05973 0.40692903 + 1254200 -33.791935 -33.80165 0.0097145764 511.26949 0.22168476 + 1254300 -33.794067 -33.795937 0.0018702528 98.429736 -0.19755344 + 1254400 -33.795018 -33.798244 0.003226712 169.81897 -0.23909044 + 1254500 -33.796273 -33.803635 0.0073617794 387.44388 -0.13046615 + 1254600 -33.798185 -33.801627 0.0034423152 181.16598 -0.25210946 + 1254700 -33.797344 -33.797595 0.00025086436 13.202767 -0.35455782 + 1254800 -33.793474 -33.79891 0.0054361931 286.10199 -0.11900067 + 1254900 -33.790261 -33.803255 0.012994203 683.87331 0.31023082 + 1255000 -33.791043 -33.794945 0.0039017463 205.34543 0.13746572 + 1255100 -33.79361 -33.795116 0.0015057324 79.245355 0.18085953 + 1255200 -33.796997 -33.802608 0.0056110116 295.30254 0.43184231 + 1255300 -33.797117 -33.802637 0.0055193545 290.47871 0.3646846 + 1255400 -33.795632 -33.796587 0.00095537843 50.280715 0.01926417 + 1255500 -33.794468 -33.797836 0.0033685113 177.28175 -0.090256975 + 1255600 -33.791843 -33.803313 0.011470399 603.67689 -0.032419314 + 1255700 -33.789558 -33.797205 0.0076470233 402.45602 -0.42999672 + 1255800 -33.79031 -33.790775 0.00046493438 24.469082 -0.79779073 + 1255900 -33.794621 -33.800421 0.0057995513 305.22521 -0.50353479 + 1256000 -33.796231 -33.803031 0.0067995669 357.85514 -0.31019346 + 1256100 -33.794496 -33.797235 0.0027383834 144.11867 -0.28298358 + 1256200 -33.791014 -33.793942 0.0029274726 154.07027 -0.00024869543 + 1256300 -33.788753 -33.802238 0.013484199 709.66134 0.79023476 + 1256400 -33.796018 -33.801587 0.0055682519 293.05213 0.85857913 + 1256500 -33.797081 -33.797553 0.000472022 24.842097 0.67473884 + 1256600 -33.795334 -33.798716 0.0033815657 177.96879 0.59767876 + 1256700 -33.790284 -33.803415 0.013131408 691.09428 0.50328761 + 1256800 -33.790203 -33.796694 0.0064905188 341.59022 -0.29723971 + 1256900 -33.793523 -33.794715 0.0011922394 62.746498 -0.8332708 + 1257000 -33.795911 -33.801439 0.0055281999 290.94423 -0.76519071 + 1257100 -33.795579 -33.802625 0.0070461443 370.83229 -0.67480332 + 1257200 -33.794389 -33.796296 0.001906662 100.34592 -0.66483348 + 1257300 -33.792375 -33.795403 0.0030270589 159.31141 -0.25426016 + 1257400 -33.789731 -33.802704 0.012973003 682.7576 0.60932348 + 1257500 -33.79209 -33.799409 0.0073185941 385.17108 0.9088809 + 1257600 -33.796304 -33.796765 0.00046012433 24.215933 0.89342067 + 1257700 -33.796649 -33.800338 0.0036886515 194.13044 0.96764505 + 1257800 -33.793864 -33.803303 0.0094394381 496.78921 0.855764 + 1257900 -33.791163 -33.796038 0.0048748091 256.55685 0.063176115 + 1258000 -33.791552 -33.793799 0.0022470035 118.25779 -0.66411476 + 1258100 -33.792522 -33.801232 0.0087096608 458.38168 -0.85355494 + 1258200 -33.793575 -33.801347 0.0077718451 409.02528 -1.1117846 + 1258300 -33.793931 -33.794962 0.0010308901 54.254828 -1.3352035 + 1258400 -33.792887 -33.796999 0.0041114765 216.38334 -0.94772984 + 1258500 -33.79014 -33.803101 0.012960783 682.11447 -0.12525715 + 1258600 -33.791388 -33.798258 0.0068700515 361.56468 0.2971325 + 1258700 -33.795317 -33.795993 0.00067550064 35.550996 0.57528228 + 1258800 -33.796494 -33.801194 0.0046993443 247.3223 0.93299477 + 1258900 -33.794273 -33.802542 0.0082683737 435.15713 1.0187816 + 1259000 -33.78792 -33.791905 0.0039850253 209.72833 0.44546483 + 1259100 -33.788725 -33.792117 0.0033917185 178.50312 -0.063934221 + 1259200 -33.792098 -33.802667 0.010568881 556.23078 -0.1419289 + 1259300 -33.795185 -33.801061 0.0058766304 309.28182 -0.5407326 + 1259400 -33.795465 -33.796083 0.00061818638 32.534598 -0.86760355 + 1259500 -33.79283 -33.798069 0.0052394533 275.74775 -0.68611579 + 1259600 -33.785336 -33.803001 0.017664689 929.67684 -0.10490802 + 1259700 -33.789491 -33.794449 0.0049577791 260.92349 -0.20936807 + 1259800 -33.792284 -33.793639 0.0013543294 71.277147 -0.023481371 + 1259900 -33.793119 -33.801685 0.0085661077 450.82661 0.46662471 + 1260000 -33.793262 -33.801844 0.0085813302 451.62776 0.5715584 + 1260100 -33.792704 -33.794089 0.0013854954 72.917389 0.29693595 + 1260200 -33.790679 -33.795241 0.0045616044 240.07317 0.28762195 + 1260300 -33.788938 -33.80327 0.014331413 754.24946 0.45106933 + 1260400 -33.793002 -33.798317 0.0053155521 279.75277 -0.022153856 + 1260500 -33.795436 -33.795884 0.00044715747 23.533499 -0.3285786 + 1260600 -33.795657 -33.801028 0.0053711619 282.67946 -0.21132274 + 1260700 -33.78997 -33.802652 0.012681902 667.4372 -0.058824074 + 1260800 -33.785352 -33.789699 0.0043473378 228.79651 -0.4625029 + 1260900 -33.789323 -33.792641 0.0033181893 174.63334 -0.35719264 + 1261000 -33.792634 -33.80244 0.00980572 516.0663 0.063043795 + 1261100 -33.793884 -33.800577 0.0066930247 352.24792 0.05772929 + 1261200 -33.793473 -33.793902 0.00042935769 22.596712 -0.083050914 + 1261300 -33.789802 -33.79705 0.0072475314 381.43112 0.22448515 + 1261400 -33.785 -33.803315 0.018315546 963.93087 0.68657762 + 1261500 -33.792601 -33.796752 0.0041506037 218.44257 0.30827403 + 1261600 -33.794329 -33.795054 0.00072529084 38.17141 0.17062384 + 1261700 -33.793792 -33.801787 0.0079950857 420.77423 0.35037488 + 1261800 -33.791113 -33.801388 0.010275502 540.79052 0.24558131 + 1261900 -33.785783 -33.788223 0.0024398598 128.40765 -0.39550941 + 1262000 -33.784333 -33.79109 0.0067571476 355.62265 -0.48395459 + 1262100 -33.793333 -33.803686 0.01035275 544.85602 -0.28219988 + 1262200 -33.794822 -33.799429 0.0046068597 242.45491 -0.4558719 + 1262300 -33.793883 -33.794154 0.00027132338 14.279508 -0.52060446 + 1262400 -33.790607 -33.799322 0.008714833 458.65389 -0.012112404 + 1262500 -33.78615 -33.802723 0.016572859 872.21479 0.55853908 + 1262600 -33.792999 -33.794937 0.0019373564 101.96134 0.38520819 + 1262700 -33.795622 -33.797142 0.0015194853 79.969154 0.49379409 + 1262800 -33.794983 -33.803211 0.0082285036 433.05881 0.69731531 + 1262900 -33.791358 -33.80004 0.0086817134 456.91083 0.45738815 + 1263000 -33.787945 -33.788654 0.00070913128 37.320947 -0.28123172 + 1263100 -33.789156 -33.796055 0.0068986026 363.0673 -0.38467152 + 1263200 -33.796465 -33.803855 0.0073894405 388.89966 -0.40723565 + 1263300 -33.795919 -33.798949 0.0030301171 159.47236 -0.60847844 + 1263400 -33.792896 -33.793616 0.00072090666 37.940675 -0.64523967 + 1263500 -33.789361 -33.800598 0.011236864 591.38615 -0.03982415 + 1263600 -33.79051 -33.802234 0.011723681 617.00686 0.32350952 + 1263700 -33.795319 -33.79606 0.00074172997 39.036587 0.20161431 + 1263800 -33.797163 -33.799045 0.0018816574 99.02995 0.35599786 + 1263900 -33.796239 -33.803557 0.0073180668 385.14333 0.54968705 + 1264000 -33.793187 -33.799779 0.0065917592 346.91841 0.33983752 + 1264100 -33.790351 -33.790815 0.00046455864 24.449307 -0.18903875 + 1264200 -33.789618 -33.798029 0.008410649 442.64496 -0.16071973 + 1264300 -33.794768 -33.803459 0.0086910176 457.40051 -0.25064296 + 1264400 -33.797115 -33.7991 0.0019847645 104.45639 -0.53399085 + 1264500 -33.796088 -33.796888 0.00080004597 42.105706 -0.54533306 + 1264600 -33.793265 -33.802396 0.0091305165 480.53094 -0.11433004 + 1264700 -33.791158 -33.80133 0.010171767 535.33105 0.1410225 + 1264800 -33.79183 -33.793118 0.0012886316 67.81953 0.06969835 + 1264900 -33.792785 -33.796769 0.0039841453 209.68201 0.38517034 + 1265000 -33.792994 -33.803338 0.010343933 544.39198 0.72952652 + 1265100 -33.792739 -33.798005 0.0052654796 277.1175 0.50600783 + 1265200 -33.792046 -33.792813 0.00076654337 40.342494 0.17740013 + 1265300 -33.791739 -33.800139 0.0084005975 442.11595 0.26801159 + 1265400 -33.794301 -33.803168 0.0088663559 466.6284 0.11688724 + 1265500 -33.797158 -33.798549 0.0013906431 73.188308 -0.28460472 + 1265600 -33.797386 -33.798627 0.0012409793 65.311634 -0.3663856 + 1265700 -33.792562 -33.802804 0.010241829 539.0183 -0.12763774 + 1265800 -33.788869 -33.79902 0.010150943 534.23507 -0.17616193 + 1265900 -33.790951 -33.791702 0.0007509526 39.521966 -0.42766569 + 1266000 -33.793915 -33.798784 0.0048685008 256.22485 -0.11288635 + 1266100 -33.795401 -33.803705 0.0083038286 437.02309 0.14642423 + 1266200 -33.794023 -33.797815 0.0037917819 199.5581 0.043434858 + 1266300 -33.785341 -33.787321 0.0019791007 104.1583 -0.069125541 + 1266400 -33.785961 -33.799753 0.013791756 725.8478 0.53577959 + 1266500 -33.792255 -33.801662 0.0094068241 495.07276 0.52435401 + 1266600 -33.794057 -33.795012 0.00095447284 50.233054 0.17572613 + 1266700 -33.793992 -33.797573 0.0035811434 188.47238 0.17573542 + 1266800 -33.791917 -33.803284 0.011367041 598.23721 0.30930904 + 1266900 -33.785565 -33.795229 0.0096640023 508.60782 -0.11364436 + 1267000 -33.787364 -33.788523 0.0011592672 61.011201 -0.64172955 + 1267100 -33.792863 -33.800176 0.0073129837 384.87581 -0.39559113 + 1267200 -33.793888 -33.802498 0.0086095543 453.11316 -0.31650929 + 1267300 -33.79304 -33.795484 0.0024437544 128.61262 -0.46234526 + 1267400 -33.790855 -33.79391 0.0030547816 160.77043 -0.26568574 + 1267500 -33.785409 -33.802382 0.016972456 893.24523 0.47156071 + 1267600 -33.790469 -33.79905 0.008581161 451.61885 0.53659866 + 1267700 -33.794487 -33.795038 0.00055032171 28.962941 0.39949948 + 1267800 -33.794701 -33.79939 0.0046896769 246.81351 0.54449544 + 1267900 -33.792304 -33.803108 0.010804083 568.60924 0.61603132 + 1268000 -33.786595 -33.79267 0.0060753312 319.73926 0.034509726 + 1268100 -33.785258 -33.788457 0.003198379 168.32783 -0.50395647 + 1268200 -33.794305 -33.802176 0.0078707502 414.23056 -0.37227917 + 1268300 -33.795216 -33.801741 0.0065252398 343.41755 -0.46885486 + 1268400 -33.793368 -33.794431 0.001063045 55.947109 -0.67399395 + 1268500 -33.789805 -33.795078 0.0052732587 277.5269 -0.37060329 + 1268600 -33.787903 -33.803319 0.015416801 811.37247 0.29648074 + 1268700 -33.795451 -33.799457 0.0040065649 210.86194 0.21929799 + 1268800 -33.796508 -33.797051 0.00054290152 28.572423 0.20993938 + 1268900 -33.795085 -33.801149 0.006063645 319.12423 0.42892106 + 1269000 -33.790887 -33.802487 0.01160022 610.50926 0.51373593 + 1269100 -33.789388 -33.79188 0.0024926566 131.1863 -0.00545274 + 1269200 -33.790904 -33.794152 0.0032485227 170.96685 -0.13636154 + 1269300 -33.796796 -33.803252 0.0064564929 339.79946 -0.0094894795 + 1269400 -33.796936 -33.801581 0.0046441223 244.41601 -0.12880845 + 1269500 -33.794443 -33.794909 0.00046682389 24.568525 -0.37492981 + 1269600 -33.790998 -33.797767 0.0067689917 356.246 -0.17414789 + 1269700 -33.789788 -33.803215 0.013427389 706.67151 0.13310309 + 1269800 -33.793347 -33.79685 0.00350341 184.38134 -0.14453161 + 1269900 -33.797394 -33.797952 0.00055777623 29.355266 -0.12304404 + 1270000 -33.797389 -33.802584 0.0051958904 273.45508 0.10260588 + 1270100 -33.795025 -33.80239 0.0073651114 387.61924 0.17104766 + 1270200 -33.792116 -33.794186 0.0020707619 108.98235 -0.050532341 + 1270300 -33.790856 -33.795047 0.0041904602 220.54018 0.032724743 + 1270400 -33.791987 -33.80317 0.011182586 588.52951 0.31783925 + 1270500 -33.79757 -33.80098 0.0034098818 179.45904 0.11294845 + 1270600 -33.79779 -33.798054 0.00026402899 13.89561 -0.040262966 + 1270700 -33.795709 -33.800575 0.0048651651 256.0493 0.05753752 + 1270800 -33.792304 -33.803606 0.011301457 594.7856 0.20791168 + 1270900 -33.792325 -33.796383 0.0040581566 213.57716 -0.14942735 + 1271000 -33.793114 -33.794698 0.0015843341 83.382092 -0.26830693 + 1271100 -33.793673 -33.801605 0.0079319747 417.45275 0.0023194248 + 1271200 -33.794812 -33.801341 0.0065291051 343.62098 -0.027475782 + 1271300 -33.794552 -33.795635 0.0010827535 56.984352 -0.21064275 + 1271400 -33.792359 -33.797136 0.0047767474 251.39596 -0.038405028 + 1271500 -33.789799 -33.803852 0.014053129 739.60362 0.34218831 + 1271600 -33.794285 -33.7992 0.0049147613 258.6595 0.14008473 + 1271700 -33.796734 -33.797033 0.00029848543 15.709022 0.025478982 + 1271800 -33.796213 -33.800801 0.0045876466 241.44375 0.17599623 + 1271900 -33.793485 -33.802933 0.009448188 497.24971 0.28934226 + 1272000 -33.792678 -33.795584 0.0029056523 152.92189 -0.050861942 + 1272100 -33.79259 -33.795342 0.0027519126 144.83071 -0.14220223 + 1272200 -33.793823 -33.802783 0.0089602256 471.56868 0.082087174 + 1272300 -33.796832 -33.801963 0.0051308858 270.03394 -0.055483979 + 1272400 -33.798256 -33.798387 0.00013088649 6.8884393 -0.23521268 + 1272500 -33.797291 -33.800042 0.0027506546 144.7645 -0.12582884 + 1272600 -33.79109 -33.803628 0.012538709 659.90108 0.20488602 + 1272700 -33.79064 -33.797165 0.0065252312 343.4171 0.026316938 + 1272800 -33.793181 -33.793941 0.00076037835 40.018034 -0.074287605 + 1272900 -33.795422 -33.801367 0.0059444256 312.84982 0.20092848 + 1273000 -33.795901 -33.802772 0.0068707773 361.60288 0.24682096 + 1273100 -33.790677 -33.793306 0.0026289338 138.35844 -0.043755893 + 1273200 -33.787094 -33.791014 0.0039204298 206.32872 -0.1403907 + 1273300 -33.790199 -33.803084 0.012885063 678.12938 0.1909193 + 1273400 -33.794668 -33.800688 0.0060202039 316.83796 -0.039388567 + 1273500 -33.7949 -33.795196 0.00029593443 15.574765 -0.29869027 + 1273600 -33.793583 -33.798879 0.0052960732 278.72761 -0.12123532 + 1273700 -33.787328 -33.803256 0.015927806 838.26622 0.21295749 + 1273800 -33.779741 -33.787052 0.0073117754 384.81222 -0.2239324 + 1273900 -33.786804 -33.789 0.0021961496 115.58139 -0.22741408 + 1274000 -33.790556 -33.801914 0.011358697 597.79808 0.2533741 + 1274100 -33.794268 -33.801761 0.0074936233 394.38271 0.16899425 + 1274200 -33.795519 -33.796135 0.00061613559 32.426667 -0.071985773 + 1274300 -33.79497 -33.798311 0.003340905 175.82885 0.011802692 + 1274400 -33.78929 -33.803674 0.01438337 756.98394 0.28973251 + 1274500 -33.786779 -33.794405 0.0076261856 401.35935 -0.054059571 + 1274600 -33.790426 -33.791362 0.00093617575 49.270095 -0.31693629 + 1274700 -33.792365 -33.800543 0.0081786112 430.43301 -0.020169761 + 1274800 -33.792891 -33.80275 0.0098595736 518.90057 0.07880501 + 1274900 -33.793264 -33.794863 0.0015988899 84.148151 -0.23084812 + 1275000 -33.79305 -33.795847 0.0027963135 147.16748 -0.15452713 + 1275100 -33.792947 -33.803052 0.010104594 531.79576 0.20556238 + 1275200 -33.793161 -33.799946 0.00678471 357.07324 0.097589468 + 1275300 -33.793135 -33.793444 0.00030878436 16.251045 -0.11921222 + 1275400 -33.792551 -33.798968 0.006417617 337.75346 0.1393847 + 1275500 -33.791898 -33.803245 0.011346751 597.1694 0.30370735 + 1275600 -33.792565 -33.79605 0.0034845504 183.38878 -0.010092955 + 1275700 -33.793907 -33.795147 0.0012403505 65.278541 -0.099343896 + 1275800 -33.795508 -33.802576 0.0070682194 371.99408 0.11186222 + 1275900 -33.796241 -33.802187 0.0059464397 312.95582 0.069547049 + 1276000 -33.79349 -33.794653 0.0011623928 61.175695 -0.19724974 + 1276100 -33.788614 -33.794169 0.0055554858 292.38026 -0.1431777 + 1276200 -33.788568 -33.803375 0.014806718 779.26437 0.22902584 + 1276300 -33.793278 -33.798159 0.0048812335 256.89497 -0.080475314 + 1276400 -33.794196 -33.794782 0.00058514185 30.795494 -0.22539896 + 1276500 -33.793626 -33.800796 0.0071697313 377.33656 0.067362654 + 1276600 -33.792296 -33.802559 0.01026377 540.17308 0.19203522 + 1276700 -33.790979 -33.793393 0.0024142189 127.05819 -0.11222722 + 1276800 -33.789122 -33.792677 0.0035557361 187.13522 -0.057805488 + 1276900 -33.790044 -33.80286 0.012815364 674.46116 0.33039186 + 1277000 -33.794787 -33.800396 0.0056088267 295.18755 0.13042744 + 1277100 -33.79585 -33.796246 0.00039674681 20.880431 -0.071612716 + 1277200 -33.794773 -33.799768 0.0049948319 262.87355 0.052901145 + 1277300 -33.786598 -33.803093 0.01649547 868.14187 0.30193575 + 1277400 -33.787552 -33.792223 0.0046703297 245.79529 -0.21452342 + 1277500 -33.79103 -33.793057 0.0020267064 106.66375 -0.31648094 + 1277600 -33.793114 -33.802079 0.0089644097 471.78889 -0.004794597 + 1277700 -33.793846 -33.801555 0.0077091343 405.72486 -0.021113192 + 1277800 -33.793229 -33.793966 0.00073680273 38.777271 -0.26961275 + 1277900 -33.788845 -33.79498 0.0061351507 322.88751 -0.061624005 + 1278000 -33.785306 -33.803125 0.017818885 937.79201 0.44808705 + 1278100 -33.792504 -33.79756 0.0050555314 266.06811 0.12536339 + 1278200 -33.794298 -33.794792 0.00049481709 26.041782 0.0032095557 + 1278300 -33.793959 -33.801342 0.0073837449 388.59991 0.24671359 + 1278400 -33.791748 -33.802181 0.010433633 549.11279 0.26795754 + 1278500 -33.785497 -33.788661 0.0031634893 166.49162 -0.23379887 + 1278600 -33.783107 -33.788766 0.0056586562 297.81003 -0.31322484 + 1278700 -33.791635 -33.803401 0.011765429 619.20403 -0.0065552905 + 1278800 -33.793777 -33.799494 0.0057168628 300.87339 -0.20791821 + 1278900 -33.79377 -33.794109 0.00033814322 17.796176 -0.40199336 + 1279000 -33.792704 -33.799442 0.0067382596 354.62859 -0.094375938 + 1279100 -33.789174 -33.803153 0.013978453 735.67353 0.25430047 + 1279200 -33.787785 -33.791639 0.003854079 202.83674 -0.049805648 + 1279300 -33.791936 -33.793988 0.0020519256 107.99101 0.058558052 + 1279400 -33.795236 -33.802925 0.0076892451 404.67811 0.38257426 + 1279500 -33.794891 -33.801508 0.0066170136 348.24752 0.29245815 + 1279600 -33.792383 -33.793055 0.00067245461 35.390686 -0.064888395 + 1279700 -33.787524 -33.794465 0.0069409466 365.29583 -0.041271433 + 1279800 -33.780245 -33.803734 0.02348854 1236.1809 0.25075594 + 1279900 -33.791734 -33.796408 0.0046744757 246.01349 -0.40570257 + 1280000 -33.794289 -33.79494 0.00065014107 34.216345 -0.55047767 + 1280100 -33.794947 -33.801727 0.0067801707 356.83434 -0.25283896 + 1280200 -33.793407 -33.802622 0.0092144964 484.95073 -0.037000075 + 1280300 -33.789688 -33.791518 0.001830347 96.329531 -0.20229154 + 1280400 -33.78709 -33.79197 0.0048798087 256.81998 0.11963978 + 1280500 -33.792268 -33.803219 0.010950826 576.33223 0.68309313 + 1280600 -33.795915 -33.800711 0.0047959743 252.40785 0.51846271 + 1280700 -33.795 -33.795028 2.7843583e-05 1.4653829 0.2444988 + 1280800 -33.791995 -33.799051 0.0070565705 371.38101 0.30575382 + 1280900 -33.788254 -33.803243 0.014989745 788.89692 0.22538236 + 1281000 -33.792286 -33.795251 0.0029645011 156.01905 -0.4609639 + 1281100 -33.796649 -33.797414 0.00076437005 40.228114 -0.57679185 + 1281200 -33.796157 -33.802898 0.0067415588 354.80223 -0.36502804 + 1281300 -33.792373 -33.801331 0.0089577294 471.43731 -0.21174836 + 1281400 -33.789667 -33.790781 0.001113706 58.613355 -0.32487403 + 1281500 -33.790072 -33.795206 0.0051342862 270.21291 0.11222268 + 1281600 -33.792097 -33.803846 0.011748713 618.32431 0.64634305 + 1281700 -33.793117 -33.798128 0.005010409 263.69335 0.50482099 + 1281800 -33.792921 -33.793307 0.00038593651 20.311494 0.30041743 + 1281900 -33.792387 -33.800444 0.0080570316 424.03439 0.51157939 + 1282000 -33.792165 -33.802898 0.010732481 564.8409 0.41555594 + 1282100 -33.793814 -33.795512 0.0016979861 89.363495 -0.14304809 + 1282200 -33.795197 -33.797053 0.0018567229 97.717669 -0.27395015 + 1282300 -33.795651 -33.803401 0.0077493006 407.83878 -0.15928738 + 1282400 -33.792687 -33.800115 0.0074277745 390.91715 -0.28982848 + 1282500 -33.787699 -33.788307 0.0006074392 31.968983 -0.62407376 + 1282600 -33.787958 -33.796064 0.0081051529 426.56697 -0.25518304 + 1282700 -33.79203 -33.803749 0.011719931 616.80952 0.074963361 + 1282800 -33.793438 -33.796782 0.0033433562 175.95785 -0.091192822 + 1282900 -33.793175 -33.794311 0.0011364046 59.80796 -0.086846192 + 1283000 -33.792378 -33.80175 0.0093711362 493.19454 0.33695991 + 1283100 -33.790768 -33.801464 0.010696313 562.93741 0.43774978 + 1283200 -33.79037 -33.791344 0.00097350281 51.234585 0.03796733 + 1283300 -33.79198 -33.7964 0.0044203779 232.64055 0.17297209 + 1283400 -33.795131 -33.803591 0.0084592723 445.20396 0.33215445 + 1283500 -33.796156 -33.800185 0.0040291614 212.05117 0.064407994 + 1283600 -33.7937 -33.793947 0.00024690527 12.994404 -0.22194288 + 1283700 -33.786896 -33.798382 0.011485674 604.4808 -0.06623603 + 1283800 -33.789062 -33.802496 0.013434823 707.06275 -0.12442903 + 1283900 -33.793371 -33.795499 0.0021281638 112.00336 -0.5268633 + 1284000 -33.794218 -33.796152 0.0019344148 101.80652 -0.48723351 + 1284100 -33.793506 -33.803086 0.0095797881 504.1757 -0.10635992 + 1284200 -33.792063 -33.799817 0.0077536475 408.06755 0.0010229214 + 1284300 -33.787093 -33.788256 0.001162859 61.200231 -0.14489413 + 1284400 -33.781301 -33.792921 0.011619699 611.53441 0.46975625 + 1284500 -33.789741 -33.803269 0.013528237 711.97905 0.91378072 + 1284600 -33.793551 -33.796689 0.0031386777 165.18581 0.55870445 + 1284700 -33.794268 -33.795506 0.0012384407 65.178031 0.3826705 + 1284800 -33.793882 -33.8022 0.0083173629 437.73539 0.45527614 + 1284900 -33.790394 -33.800859 0.010464379 550.73096 0.13717878 + 1285000 -33.786275 -33.788166 0.001891089 99.526329 -0.69171282 + 1285100 -33.788809 -33.79476 0.0059505661 313.17299 -0.83613 + 1285200 -33.794197 -33.803438 0.0092412791 486.36028 -0.73961462 + 1285300 -33.794413 -33.798723 0.0043095991 226.81036 -0.8186311 + 1285400 -33.792922 -33.793784 0.00086195344 45.363841 -0.70974166 + 1285500 -33.789744 -33.799765 0.010021251 527.40951 0.033872839 + 1285600 -33.784686 -33.801686 0.017000718 894.73262 0.84503557 + 1285700 -33.79122 -33.793018 0.0017980325 94.628849 0.85008502 + 1285800 -33.794415 -33.796923 0.0025079649 131.99195 1.0643683 + 1285900 -33.794664 -33.802997 0.0083331851 438.5681 1.2069041 + 1286000 -33.792122 -33.799473 0.0073511067 386.88219 0.74991889 + 1286100 -33.786954 -33.788165 0.001210994 63.733533 -0.24737615 + 1286200 -33.786274 -33.796585 0.010311746 542.69797 -0.706007 + 1286300 -33.794723 -33.803127 0.008404361 442.31402 -1.0582751 + 1286400 -33.794988 -33.797553 0.002565596 135.02503 -1.3482751 + 1286500 -33.793148 -33.794467 0.0013192775 69.432399 -1.2013964 + 1286600 -33.788913 -33.80196 0.013046655 686.63384 -0.30454359 + 1286700 -33.789465 -33.800261 0.010796363 568.20294 0.3671755 + 1286800 -33.796025 -33.796725 0.00070083813 36.884486 0.57136305 + 1286900 -33.796476 -33.79933 0.0028534852 150.17638 0.85036405 + 1287000 -33.794042 -33.80366 0.0096179113 506.18209 1.0861602 + 1287100 -33.790348 -33.796455 0.0061067539 321.39301 0.67336678 + 1287200 -33.789747 -33.790766 0.0010186739 53.611897 0.038380674 + 1287300 -33.791198 -33.800232 0.0090343625 475.47044 -0.032163768 + 1287400 -33.79228 -33.802633 0.010352762 544.85663 -0.31385541 + 1287500 -33.792931 -33.794658 0.0017271773 90.899798 -0.88693308 + 1287600 -33.793078 -33.795711 0.0026321914 138.52988 -0.90755915 + 1287700 -33.793618 -33.803204 0.0095857451 504.48922 -0.53146053 + 1287800 -33.795537 -33.800868 0.0053319606 280.61633 -0.45978522 + 1287900 -33.796057 -33.796387 0.00033074572 17.406852 -0.36035227 + 1288000 -33.794367 -33.79947 0.0051031791 268.57577 0.1288733 + 1288100 -33.788198 -33.803486 0.015288667 804.62888 0.86228237 + 1288200 -33.788912 -33.793379 0.0044666237 235.07442 0.89935938 + 1288300 -33.792067 -33.793515 0.0014477137 76.19188 0.99586464 + 1288400 -33.793216 -33.80193 0.008714054 458.61289 1.2278953 + 1288500 -33.792913 -33.80173 0.0088174706 464.05561 0.92584106 + 1288600 -33.792504 -33.793432 0.00092806587 48.843279 0.10887458 + 1288700 -33.791948 -33.796607 0.0046581638 245.15501 -0.30900293 + 1288800 -33.793232 -33.803534 0.010302102 542.19044 -0.52100883 + 1288900 -33.795855 -33.799912 0.0040570635 213.51963 -0.98605919 + 1289000 -33.79633 -33.796417 8.6761611e-05 4.5661862 -1.132925 + 1289100 -33.793765 -33.800769 0.0070045807 368.64483 -0.68727133 + 1289200 -33.78749 -33.802556 0.015065112 792.86338 0.053343739 + 1289300 -33.789925 -33.792983 0.0030572942 160.90267 0.28207217 + 1289400 -33.792563 -33.794645 0.0020827591 109.61376 0.73318379 + 1289500 -33.793202 -33.80306 0.0098577359 518.80385 1.2429405 + 1289600 -33.793067 -33.800223 0.0071562928 376.62931 1.1228878 + 1289700 -33.79233 -33.79294 0.00061000891 32.104225 0.58299368 + 1289800 -33.790845 -33.797259 0.0064133522 337.52901 0.34910259 + 1289900 -33.78883 -33.803822 0.014991745 789.00215 0.092740507 + 1290000 -33.792824 -33.796509 0.0036852057 193.94909 -0.77503114 + 1290100 -33.795122 -33.795896 0.00077402173 40.736073 -1.0748579 + 1290200 -33.79556 -33.80213 0.0065701512 345.7812 -0.82863859 + 1290300 -33.791434 -33.801809 0.010375441 546.0502 -0.55361957 + 1290400 -33.7859 -33.788102 0.0022019279 115.8855 -0.42978636 + 1290500 -33.788409 -33.793594 0.0051848772 272.87546 0.35689499 + 1290600 -33.791982 -33.803511 0.011528377 606.72821 1.062188 + 1290700 -33.793631 -33.798964 0.0053338001 280.71314 1.0195348 + 1290800 -33.793591 -33.793907 0.00031535518 16.596862 0.75823076 + 1290900 -33.792046 -33.7997 0.0076537776 402.81149 0.75275057 + 1291000 -33.786227 -33.802834 0.01660731 874.02792 0.50305703 + 1291100 -33.789417 -33.792296 0.002879692 151.55562 -0.59816581 + 1291200 -33.793759 -33.795799 0.0020405707 107.39342 -0.91645316 + 1291300 -33.794612 -33.802831 0.00821817 432.51495 -0.75943513 + 1291400 -33.793254 -33.800745 0.0074915084 394.27141 -0.74869894 + 1291500 -33.789735 -33.790381 0.00064616107 34.006881 -0.79116886 + 1291600 -33.781836 -33.792957 0.011121496 585.31443 0.057911845 + 1291700 -33.788621 -33.803335 0.014713232 774.34428 0.92907515 + 1291800 -33.793562 -33.797432 0.0038698975 203.66925 0.83162193 + 1291900 -33.793955 -33.794596 0.00064113785 33.742513 0.74947972 + 1292000 -33.793076 -33.801779 0.0087030232 458.03235 0.88567192 + 1292100 -33.790911 -33.801449 0.010537425 554.57526 0.57654501 + 1292200 -33.789353 -33.791441 0.0020882966 109.90519 -0.28499032 + 1292300 -33.791308 -33.795391 0.0040832572 214.89818 -0.6295765 + 1292400 -33.795561 -33.803614 0.0080531947 423.83246 -0.62803815 + 1292500 -33.796023 -33.800166 0.004143473 218.06729 -0.79436662 + 1292600 -33.793517 -33.794092 0.00057447521 30.234118 -0.83298612 + 1292700 -33.788061 -33.797822 0.0097607372 513.69889 -0.16066998 + 1292800 -33.78836 -33.802949 0.014588953 767.80357 0.56165339 + 1292900 -33.791968 -33.794585 0.0026176465 137.7644 0.54999005 + 1293000 -33.794005 -33.795912 0.0019073032 100.37966 0.74285258 + 1293100 -33.795033 -33.802805 0.0077718776 409.02699 0.98257079 + 1293200 -33.793825 -33.800909 0.0070835359 372.80017 0.73292665 + 1293300 -33.787974 -33.789271 0.0012973485 68.278294 -0.033083548 + 1293400 -33.786432 -33.794821 0.008388645 441.4869 -0.41814975 + 1293500 -33.791873 -33.803463 0.011590087 609.97594 -0.64373866 + 1293600 -33.793876 -33.797512 0.0036356936 191.34331 -1.0859994 + 1293700 -33.793488 -33.794516 0.0010281088 54.10845 -1.1475265 + 1293800 -33.792125 -33.801215 0.0090899389 478.39538 -0.57670259 + 1293900 -33.788153 -33.801223 0.013069993 687.86208 -0.016452724 + 1294000 -33.786374 -33.78838 0.0020050712 105.52511 0.15599487 + 1294100 -33.7914 -33.79594 0.0045400708 238.93988 0.83221288 + 1294200 -33.794613 -33.803241 0.0086285427 454.11251 1.2282793 + 1294300 -33.794403 -33.799475 0.0050722934 266.95028 0.99782228 + 1294400 -33.792041 -33.792537 0.0004959641 26.102148 0.47465527 + 1294500 -33.784826 -33.797777 0.012951105 681.6051 0.21197064 + 1294600 -33.787586 -33.802212 0.014626436 769.77629 -0.44827899 + 1294700 -33.793901 -33.796052 0.0021512788 113.21989 -1.1961953 + 1294800 -33.794116 -33.795984 0.0018682366 98.323623 -1.2656775 + 1294900 -33.79266 -33.803001 0.0103404 544.20604 -0.78372426 + 1295000 -33.790164 -33.799025 0.0088607228 466.33194 -0.45151035 + 1295100 -33.789259 -33.790489 0.0012304241 64.756124 -0.17663217 + 1295200 -33.792976 -33.798527 0.0055516824 292.18009 0.5856559 + 1295300 -33.796168 -33.803679 0.0075109586 395.29505 0.96111446 + 1295400 -33.795495 -33.798352 0.002856528 150.33652 0.80535444 + 1295500 -33.792435 -33.79361 0.0011754135 61.860964 0.52510388 + 1295600 -33.788971 -33.800803 0.011831198 622.66541 0.50887732 + 1295700 -33.790306 -33.801501 0.011195001 589.18293 0.035651552 + 1295800 -33.792802 -33.793859 0.0010567274 55.614623 -0.69287425 + 1295900 -33.794371 -33.797666 0.0032955794 173.4434 -0.78398326 + 1296000 -33.795267 -33.803558 0.0082919063 436.39563 -0.60445898 + 1296100 -33.7943 -33.799374 0.0050741664 267.04885 -0.62167475 + 1296200 -33.789909 -33.790635 0.00072606604 38.212208 -0.55715933 + 1296300 -33.787267 -33.798028 0.010761019 566.34285 0.29718322 + 1296400 -33.79209 -33.803175 0.011084866 583.38663 0.82035398 + 1296500 -33.794994 -33.796774 0.0017803493 93.698196 0.68009272 + 1296600 -33.794538 -33.796337 0.0017992543 94.693149 0.66698538 + 1296700 -33.792843 -33.802755 0.0099124511 521.68346 0.79071288 + 1296800 -33.790282 -33.799907 0.0096251285 506.56193 0.37665951 + 1296900 -33.787569 -33.788178 0.00060897687 32.04991 -0.48587171 + 1297000 -33.787505 -33.795857 0.0083514281 439.52821 -0.65251832 + 1297100 -33.793541 -33.803445 0.0099032947 521.20157 -0.71277516 + 1297200 -33.795353 -33.798567 0.0032142327 169.1622 -0.94891797 + 1297300 -33.794685 -33.79523 0.00054479817 28.672241 -0.87309377 + 1297400 -33.789661 -33.80144 0.011779003 619.91841 -0.11290569 + 1297500 -33.785327 -33.800493 0.015166327 798.19024 0.65750614 + 1297600 -33.790406 -33.792077 0.0016713657 87.962484 0.75616421 + 1297700 -33.791952 -33.795588 0.0036366104 191.39156 1.1229208 + 1297800 -33.79271 -33.803606 0.010896165 573.45544 1.4099018 + 1297900 -33.793994 -33.798983 0.0049890474 262.56912 0.95399048 + 1298000 -33.794646 -33.795287 0.00064014173 33.690088 0.37722462 + 1298100 -33.795407 -33.800828 0.0054202074 285.26068 0.12289483 + 1298200 -33.794748 -33.803502 0.0087536551 460.69706 -0.21809691 + 1298300 -33.791167 -33.794225 0.003057644 160.92108 -0.95680049 + 1298400 -33.787826 -33.790626 0.0028000391 147.36356 -1.445949 + 1298500 -33.789393 -33.801848 0.012454903 655.49043 -1.222172 + 1298600 -33.795392 -33.801443 0.006051776 318.49957 -1.2678196 + 1298700 -33.795415 -33.795987 0.00057170424 30.088284 -1.1387435 + 1298800 -33.793814 -33.798505 0.0046908978 246.87777 -0.41287767 + 1298900 -33.790387 -33.803719 0.013332127 701.65796 0.68996705 + 1299000 -33.78941 -33.795451 0.0060403853 317.90009 1.258085 + 1299100 -33.793409 -33.794248 0.00083932676 44.173019 1.6501315 + 1299200 -33.795938 -33.801432 0.0054940133 289.14502 1.9249456 + 1299300 -33.79501 -33.802594 0.0075842587 399.15277 1.6378796 + 1299400 -33.790268 -33.793231 0.0029625734 155.9176 0.5336104 + 1299500 -33.787763 -33.793348 0.0055855747 293.96381 -0.71949799 + 1299600 -33.791074 -33.802608 0.011534812 607.06684 -1.4880031 + 1299700 -33.792365 -33.799136 0.0067707947 356.34089 -2.2365121 + 1299800 -33.792502 -33.792607 0.0001050171 5.5269562 -2.5624153 + 1299900 -33.791742 -33.79864 0.0068985277 363.06336 -1.8969447 + 1300000 -33.791797 -33.803067 0.011270021 593.13115 -0.89913724 + 1300100 -33.79521 -33.798433 0.0032238486 169.66828 -0.2457438 + 1300200 -33.797122 -33.79804 0.00091780434 48.303224 0.39012684 + 1300300 -33.796578 -33.802808 0.0062301874 327.88921 1.0852069 + 1300400 -33.790208 -33.800498 0.010289411 541.5225 1.5941556 + 1300500 -33.788978 -33.790689 0.0017117056 90.085541 1.5342935 + 1300600 -33.790875 -33.795207 0.0043322756 228.0038 1.6456714 + 1300700 -33.793736 -33.803416 0.0096800038 509.44997 1.5716999 + 1300800 -33.795523 -33.799653 0.0041297352 217.34428 0.85475181 + 1300900 -33.795533 -33.796517 0.00098390813 51.782207 0.080627721 + 1301000 -33.79373 -33.800572 0.0068425667 360.11818 -0.44207334 + 1301100 -33.789682 -33.802598 0.012915994 679.75723 -1.1061969 + 1301200 -33.789739 -33.792611 0.0028722696 151.16499 -2.1537278 + 1301300 -33.792332 -33.79467 0.002338231 123.05901 -2.3401534 + 1301400 -33.795251 -33.802339 0.0070884907 373.06094 -1.864275 + 1301500 -33.795423 -33.801263 0.0058397096 307.33871 -1.3211788 + 1301600 -33.788745 -33.79203 0.0032844144 172.8558 -0.50483592 + 1301700 -33.785269 -33.795146 0.0098773384 519.83551 1.4810327 + 1301800 -33.791865 -33.802419 0.010553502 555.4214 2.8567831 + 1301900 -33.793674 -33.797055 0.0033800853 177.89087 3.000237 + 1302000 -33.792749 -33.793924 0.0011747956 61.828442 2.6365858 + 1302100 -33.788445 -33.800091 0.011646492 612.9445 2.0087488 + 1302200 -33.785784 -33.801672 0.015887076 836.12265 0.39239315 + 1302300 -33.794728 -33.796453 0.0017253785 90.805132 -1.2649358 + 1302400 -33.795437 -33.798044 0.0026069127 137.19949 -1.8556112 + 1302500 -33.79378 -33.802549 0.0087695387 461.533 -1.9086913 + 1302600 -33.788967 -33.797659 0.0086922125 457.46339 -1.8375955 + 1302700 -33.788036 -33.788979 0.00094249057 49.602438 -1.5264085 + 1302800 -33.791841 -33.799265 0.0074240148 390.71927 -0.44051678 + 1302900 -33.795287 -33.803159 0.0078713227 414.26069 0.2581033 + 1303000 -33.794456 -33.797595 0.0031388697 165.19591 0.57336236 + 1303100 -33.792535 -33.79417 0.0016354861 86.074175 0.94310623 + 1303200 -33.789266 -33.80184 0.012573562 661.73534 1.6338628 + 1303300 -33.79 -33.799629 0.0096290956 506.77072 1.584001 + 1303400 -33.795165 -33.796063 0.0008986437 47.294816 1.1092539 + 1303500 -33.796338 -33.799335 0.0029965701 157.70681 0.86365122 + 1303600 -33.794586 -33.80366 0.0090746449 477.59047 0.49575208 + 1303700 -33.791283 -33.797312 0.0060284741 317.27322 -0.46653296 + 1303800 -33.78974 -33.79191 0.0021702888 114.22036 -1.5085324 + 1303900 -33.793739 -33.800354 0.0066142313 348.10109 -1.7858191 + 1304000 -33.796701 -33.80256 0.0058589882 308.35332 -1.77261 + 1304100 -33.795463 -33.797262 0.0017993168 94.696436 -1.5646167 + 1304200 -33.791486 -33.795352 0.0038660925 203.469 -0.66736065 + 1304300 -33.78968 -33.802627 0.012947043 681.3913 0.9512323 + 1304400 -33.793783 -33.800368 0.0065842804 346.5248 1.7859007 + 1304500 -33.795676 -33.796143 0.00046643312 24.547959 2.0047655 + 1304600 -33.79514 -33.799236 0.004096024 215.57009 2.0933009 + 1304700 -33.793789 -33.803095 0.0093057946 489.75567 1.7627931 + 1304800 -33.792106 -33.796917 0.004811169 253.20753 0.61448132 + 1304900 -33.791407 -33.793963 0.0025563396 134.53787 -0.65436147 + 1305000 -33.79349 -33.801398 0.0079079153 416.18653 -1.3713439 + 1305100 -33.79652 -33.802312 0.0057919018 304.82263 -1.864262 + 1305200 -33.796712 -33.797523 0.00081101558 42.683027 -2.035502 + 1305300 -33.791444 -33.795561 0.0041165752 216.65168 -1.4728221 + 1305400 -33.788014 -33.802781 0.014767066 777.17752 0.060982596 + 1305500 -33.792825 -33.799612 0.0067872014 357.20436 0.94430015 + 1305600 -33.795034 -33.795329 0.00029510897 15.531322 1.3711117 + 1305700 -33.794684 -33.800136 0.0054523235 286.95092 1.8172982 + 1305800 -33.791017 -33.802449 0.011431645 601.63728 1.8893363 + 1305900 -33.781033 -33.788341 0.0073077826 384.60208 0.8505716 + 1306000 -33.785792 -33.789178 0.0033855487 178.17841 -0.19714239 + 1306100 -33.790569 -33.802285 0.011715972 616.60118 -0.49064356 + 1306200 -33.794213 -33.800735 0.0065211305 343.20128 -1.0396913 + 1306300 -33.7949 -33.795681 0.00078101892 41.104329 -1.366239 + 1306400 -33.793939 -33.798226 0.0042868106 225.61102 -1.0757832 + 1306500 -33.787378 -33.803796 0.016418108 864.07036 -0.27348741 + 1306600 -33.787975 -33.79462 0.0066449428 349.71741 0.12394056 + 1306700 -33.793485 -33.794548 0.0010634241 55.967062 0.53187063 + 1306800 -33.794154 -33.800963 0.0068089303 358.34793 1.0254696 + 1306900 -33.792593 -33.80209 0.0094978833 499.86512 1.1715544 + 1307000 -33.790178 -33.792472 0.0022941127 120.7371 0.67620095 + 1307100 -33.788437 -33.793426 0.0049889231 262.56257 0.35826571 + 1307200 -33.793546 -33.803303 0.0097574118 513.52388 0.2527996 + 1307300 -33.796424 -33.800902 0.004478219 235.68467 -0.182304 + 1307400 -33.795454 -33.795748 0.00029350369 15.446838 -0.5765603 + 1307500 -33.79168 -33.798391 0.0067115906 353.22503 -0.53993442 + 1307600 -33.788535 -33.803294 0.014758139 776.7077 -0.38661482 + 1307700 -33.790894 -33.794602 0.0037079749 195.14741 -0.73808368 + 1307800 -33.792581 -33.794365 0.0017840524 93.893088 -0.625091 + 1307900 -33.794046 -33.802302 0.0082555594 434.48273 -0.13094613 + 1308000 -33.795034 -33.802075 0.007041099 370.56676 0.077389702 + 1308100 -33.795894 -33.796354 0.00045972608 24.194974 0.056688503 + 1308200 -33.795088 -33.798533 0.0034451084 181.31298 0.30865971 + 1308300 -33.79103 -33.803366 0.012335376 649.19983 0.72086495 + 1308400 -33.788273 -33.796177 0.0079036676 415.96298 0.52930956 + 1308500 -33.791226 -33.791653 0.0004272107 22.483718 0.22308181 + 1308600 -33.795565 -33.801478 0.0059124732 311.16819 0.40870449 + 1308700 -33.795569 -33.802938 0.0073684503 387.79497 0.31920369 + 1308800 -33.79355 -33.795991 0.0024415444 128.4963 -0.15235717 + 1308900 -33.791212 -33.793477 0.0022649268 119.20108 -0.4443043 + 1309000 -33.789148 -33.80301 0.013862366 729.56395 -0.27512243 + 1309100 -33.795351 -33.801078 0.0057268192 301.39739 -0.59958997 + 1309200 -33.79715 -33.797631 0.00048057477 25.292222 -0.73277336 + 1309300 -33.796161 -33.799688 0.003526266 185.58424 -0.45767582 + 1309400 -33.791309 -33.803819 0.012510435 658.41302 0.15571693 + 1309500 -33.790131 -33.795175 0.0050437885 265.45009 0.34268746 + 1309600 -33.791277 -33.792743 0.0014662661 77.168276 0.59632311 + 1309700 -33.79259 -33.801138 0.0085478216 449.86423 1.1058724 + 1309800 -33.792993 -33.802152 0.009158918 482.02568 1.1187469 + 1309900 -33.793005 -33.794248 0.0012430364 65.419899 0.57618111 + 1310000 -33.792599 -33.796315 0.0037166983 195.60652 0.29451703 + 1310100 -33.792325 -33.803321 0.010996189 578.71964 0.13936952 + 1310200 -33.793971 -33.799495 0.0055235623 290.70016 -0.46994923 + 1310300 -33.797262 -33.797564 0.00030243421 15.916843 -0.82574674 + 1310400 -33.797694 -33.801413 0.0037192763 195.74219 -0.70201207 + 1310500 -33.794198 -33.803287 0.0090888487 478.338 -0.41144224 + 1310600 -33.790845 -33.794574 0.0037290148 196.25472 -0.291171 + 1310700 -33.790653 -33.792987 0.0023331835 122.79337 0.11562236 + 1310800 -33.792356 -33.801952 0.0095959102 505.02419 0.80663845 + 1310900 -33.795843 -33.801989 0.0061457173 323.44362 0.92237521 + 1311000 -33.799178 -33.799477 0.00029893698 15.732787 0.72669237 + 1311100 -33.79917 -33.801125 0.0019551874 102.89977 0.616841 + 1311200 -33.797493 -33.803591 0.0060973769 320.89951 0.41340055 + 1311300 -33.794727 -33.79975 0.005022753 264.34301 -0.22551863 + 1311400 -33.792281 -33.79306 0.00077870654 40.982631 -1.0811538 + 1311500 -33.790298 -33.799442 0.0091439379 481.2373 -1.3677755 + 1311600 -33.791317 -33.80179 0.010472656 551.16654 -1.5907037 + 1311700 -33.796372 -33.798149 0.0017772829 93.536816 -1.7757005 + 1311800 -33.797132 -33.798455 0.0013236928 69.664773 -1.4098779 + 1311900 -33.794835 -33.80318 0.0083446451 439.17123 -0.50313589 + 1312000 -33.790649 -33.800147 0.0094980416 499.87346 0.59610127 + 1312100 -33.791082 -33.793386 0.0023038642 121.25032 1.4995762 + 1312200 -33.792042 -33.796897 0.0048556591 255.54901 2.3891065 + 1312300 -33.791796 -33.802226 0.01042928 548.88371 2.8463403 + 1312400 -33.791221 -33.795735 0.0045144552 237.59175 2.2844803 + 1312500 -33.790244 -33.792836 0.0025917239 136.40012 1.3356735 + 1312600 -33.793085 -33.801279 0.0081934567 431.21432 0.58145644 + 1312700 -33.796695 -33.802982 0.0062870655 330.88265 -0.23884252 + 1312800 -33.796672 -33.79803 0.0013587812 71.511441 -1.0334034 + 1312900 -33.79318 -33.796298 0.0031181746 164.10675 -1.5182835 + 1313000 -33.788397 -33.802017 0.013620262 716.82225 -1.6121964 + 1313100 -33.790235 -33.797739 0.0075045862 394.95968 -1.8954578 + 1313200 -33.792533 -33.793385 0.0008518231 44.83069 -1.805525 + 1313300 -33.794345 -33.799842 0.0054969462 289.29937 -1.0586702 + 1313400 -33.796802 -33.803528 0.0067266458 354.01737 -0.33988812 + 1313500 -33.799737 -33.801156 0.0014192728 74.69506 -0.0011443899 + 1313600 -33.799427 -33.800276 0.00084893876 44.67889 0.32187902 + 1313700 -33.796386 -33.802349 0.0059631683 313.83623 0.86729952 + 1313800 -33.793899 -33.801841 0.0079421952 417.99065 1.2709286 + 1313900 -33.791795 -33.793029 0.0012336296 64.924827 1.1449516 + 1314000 -33.789368 -33.79462 0.0052526507 276.44232 1.1750511 + 1314100 -33.789286 -33.802301 0.01301523 684.97992 1.1498881 + 1314200 -33.795381 -33.800017 0.0046359301 243.98487 0.4800229 + 1314300 -33.7965 -33.797006 0.0005057123 26.615187 -0.012552333 + 1314400 -33.795063 -33.801252 0.0061886749 325.70444 -0.20643755 + 1314500 -33.790915 -33.802413 0.011497397 605.09775 -0.49595588 + 1314600 -33.787329 -33.792428 0.0050993531 268.3744 -1.2119997 + 1314700 -33.788328 -33.79103 0.0027017235 142.1893 -1.4748303 + 1314800 -33.793146 -33.801815 0.0086689187 456.23746 -1.0850189 + 1314900 -33.795004 -33.800552 0.0055480096 291.9868 -0.86613395 + 1315000 -33.79409 -33.795907 0.0018170018 95.627185 -0.57070196 + 1315100 -33.79106 -33.797787 0.0067272674 354.05008 0.24853508 + 1315200 -33.788895 -33.803474 0.014578126 767.23377 1.3059905 + 1315300 -33.795349 -33.798604 0.0032545109 171.28201 1.4447349 + 1315400 -33.796156 -33.796767 0.00061157384 32.186586 1.4008169 + 1315500 -33.794427 -33.800693 0.0062660629 329.7773 1.3073293 + 1315600 -33.790745 -33.80215 0.01140493 600.23132 0.7405785 + 1315700 -33.791603 -33.794821 0.0032184609 169.38472 -0.44059542 + 1315800 -33.793068 -33.7967 0.003631667 191.1314 -1.1185036 + 1315900 -33.794174 -33.802744 0.0085694599 451.00303 -1.3141827 + 1316000 -33.793708 -33.799646 0.0059375894 312.49003 -1.5025491 + 1316100 -33.787667 -33.788738 0.0010708759 56.359245 -1.5190565 + 1316200 -33.78479 -33.795106 0.01031649 542.94766 -0.46283638 + 1316300 -33.790938 -33.803201 0.012262481 645.36346 0.45425786 + 1316400 -33.793714 -33.796914 0.0032004557 168.43713 0.60844603 + 1316500 -33.793935 -33.795632 0.0016969885 89.310991 0.83289882 + 1316600 -33.793332 -33.801968 0.0086358862 454.49899 1.1856343 + 1316700 -33.789644 -33.800921 0.011276771 593.48638 1.0460424 + 1316800 -33.786792 -33.788449 0.0016568723 87.199711 0.21405885 + 1316900 -33.789961 -33.795544 0.0055831562 293.83653 -0.07589362 + 1317000 -33.794234 -33.80282 0.0085864678 451.89814 -0.21494841 + 1317100 -33.794257 -33.799134 0.0048764338 256.64236 -0.5705728 + 1317200 -33.793056 -33.794007 0.00095049023 50.023453 -0.84399945 + 1317300 -33.790426 -33.800374 0.009947619 523.53431 -0.52761775 + 1317400 -33.78628 -33.801708 0.015427668 811.94439 -0.17062928 + 1317500 -33.791513 -33.794305 0.0027920533 146.94327 -0.32501355 + 1317600 -33.794357 -33.795928 0.0015701354 82.634828 -0.10426152 + 1317700 -33.794231 -33.802495 0.0082638527 434.9192 0.33979006 + 1317800 -33.790893 -33.799509 0.0086153459 453.41797 0.45425661 + 1317900 -33.784757 -33.788986 0.0042283886 222.53632 0.28123089 + 1318000 -33.79065 -33.797396 0.0067459502 355.03334 0.561853 + 1318100 -33.794742 -33.803113 0.0083713508 440.57672 0.63320103 + 1318200 -33.794018 -33.797372 0.0033536234 176.49821 0.2509948 + 1318300 -33.790996 -33.792455 0.0014588111 76.775929 -0.15303493 + 1318400 -33.78766 -33.800082 0.012421656 653.74067 -0.15843508 + 1318500 -33.79368 -33.802586 0.0089061143 468.72085 -0.49611614 + 1318600 -33.796703 -33.797823 0.0011202554 58.95804 -0.81068626 + 1318700 -33.795742 -33.798222 0.0024801177 130.52638 -0.69209669 + 1318800 -33.791944 -33.80316 0.011216297 590.30371 -0.14896242 + 1318900 -33.789354 -33.797641 0.0082875165 436.1646 0.1363424 + 1319000 -33.79081 -33.791653 0.00084333211 44.383816 0.28698099 + 1319100 -33.796132 -33.800442 0.0043104754 226.85647 0.74830235 + 1319200 -33.796847 -33.803332 0.0064849041 341.29472 0.86225565 + 1319300 -33.794437 -33.797626 0.0031890858 167.83874 0.51426849 + 1319400 -33.791315 -33.794441 0.0031263183 164.53534 0.099128914 + 1319500 -33.79088 -33.801431 0.010550988 555.2891 -0.049164154 + 1319600 -33.79554 -33.801741 0.0062004949 326.32652 -0.4958666 + 1319700 -33.797932 -33.798293 0.00036101365 18.999827 -0.78023192 + 1319800 -33.796875 -33.799614 0.0027394073 144.17256 -0.6573483 + 1319900 -33.793858 -33.803272 0.009413115 495.40385 -0.23007685 + 1320000 -33.792257 -33.799532 0.0072751677 382.88559 0.025875977 + 1320100 -33.793436 -33.794849 0.0014130544 74.36779 0.20268257 + 1320200 -33.795351 -33.800377 0.0050259452 264.51101 0.63830927 + 1320300 -33.798569 -33.802415 0.0038450563 202.36188 0.74142946 + 1320400 -33.797641 -33.799593 0.0019518925 102.72636 0.56781133 + 1320500 -33.794326 -33.797358 0.0030313088 159.53508 0.30212308 + 1320600 -33.793024 -33.80291 0.0098858777 520.28493 0.16056475 + 1320700 -33.794542 -33.801408 0.006865674 361.3343 -0.29199033 + 1320800 -33.795356 -33.796555 0.0011988735 63.095646 -0.7458571 + 1320900 -33.793859 -33.796945 0.003085779 162.4018 -0.80102292 + 1321000 -33.787316 -33.801965 0.014648993 770.96343 -0.44364125 + 1321100 -33.788292 -33.79538 0.0070878969 373.02969 -0.53043245 + 1321200 -33.792819 -33.794635 0.001816125 95.581041 -0.43637576 + 1321300 -33.794613 -33.801327 0.0067135416 353.32771 0.014822042 + 1321400 -33.794474 -33.802908 0.0084345361 443.90211 0.30138248 + 1321500 -33.793343 -33.795853 0.0025093492 132.06481 0.23516687 + 1321600 -33.788649 -33.792201 0.0035527216 186.97657 0.35231919 + 1321700 -33.782067 -33.80073 0.018663085 982.22149 0.97300712 + 1321800 -33.788908 -33.797221 0.0083132878 437.52092 0.67754229 + 1321900 -33.791191 -33.792384 0.0011933854 62.80681 0.32117231 + 1322000 -33.792492 -33.798765 0.0062737899 330.18397 0.36649409 + 1322100 -33.794493 -33.803462 0.0089693315 472.04792 0.27068659 + 1322200 -33.797325 -33.799728 0.0024038536 126.51267 -0.12939346 + 1322300 -33.79943 -33.800311 0.00088135119 46.384727 -0.27899869 + 1322400 -33.799652 -33.802925 0.0032737561 172.29486 -0.24095571 + 1322500 -33.795329 -33.802285 0.0069559287 366.08432 -0.19240024 + 1322600 -33.792802 -33.7941 0.0012981867 68.322409 -0.42153263 + 1322700 -33.790148 -33.794964 0.0048150626 253.41245 -0.25137578 + 1322800 -33.789503 -33.802421 0.012918048 679.86537 0.21496642 + 1322900 -33.794123 -33.799804 0.005681157 298.99422 0.11244484 + 1323000 -33.796342 -33.796664 0.00032174216 16.933003 0.0076327518 + 1323100 -33.795734 -33.801055 0.0053203651 280.00607 0.21404866 + 1323200 -33.793689 -33.802751 0.0090621011 476.9303 0.32158595 + 1323300 -33.792868 -33.796313 0.0034452233 181.31903 0.021878258 + 1323400 -33.79261 -33.794326 0.0017160046 90.311793 -0.1089161 + 1323500 -33.792039 -33.802395 0.010355323 544.99139 0.13519865 + 1323600 -33.793296 -33.800615 0.0073186426 385.17363 -0.013452715 + 1323700 -33.795531 -33.796467 0.0009362987 49.276565 -0.26183058 + 1323800 -33.796746 -33.799702 0.0029564714 155.59645 -0.14916356 + 1323900 -33.79519 -33.803689 0.0084991837 447.30446 0.075140746 + 1324000 -33.789136 -33.795827 0.0066905003 352.11506 -0.013273127 + 1324100 -33.788884 -33.790765 0.0018815726 99.025485 -0.10199064 + 1324200 -33.791711 -33.800155 0.0084437568 444.38739 0.30372605 + 1324300 -33.793588 -33.802249 0.0086609522 455.81819 0.38027453 + 1324400 -33.79358 -33.7954 0.0018207656 95.825269 0.095496504 + 1324500 -33.792964 -33.795936 0.0029723072 156.42988 0.084966352 + 1324600 -33.792304 -33.803033 0.010729013 564.65841 0.30220521 + 1324700 -33.792811 -33.799741 0.0069304589 364.74387 0.066779562 + 1324800 -33.793796 -33.794729 0.00093297974 49.101892 -0.23120164 + 1324900 -33.797597 -33.800848 0.0032511661 171.10597 -0.10797543 + 1325000 -33.798192 -33.803602 0.0054102525 284.73677 -0.012981098 + 1325100 -33.795029 -33.798123 0.0030941246 162.84102 -0.11663776 + 1325200 -33.79225 -33.794205 0.0019543722 102.85686 -0.13718787 + 1325300 -33.79144 -33.800983 0.0095431209 502.24594 0.26251904 + 1325400 -33.792656 -33.802074 0.0094184808 495.68624 0.34949645 + 1325500 -33.796084 -33.796673 0.00058907798 31.002649 0.096359021 + 1325600 -33.798059 -33.800064 0.0020053685 105.54076 0.16309669 + 1325700 -33.797277 -33.803307 0.0060300597 317.35667 0.26246813 + 1325800 -33.791231 -33.799315 0.0080842385 425.46626 0.090503655 + 1325900 -33.791321 -33.792442 0.0011203118 58.961008 -0.34733596 + 1326000 -33.792951 -33.799666 0.0067154523 353.42826 -0.22335141 + 1326100 -33.794896 -33.802515 0.0076197262 401.01939 -0.19234207 + 1326200 -33.794529 -33.797422 0.0028934933 152.28197 -0.36750841 + 1326300 -33.790337 -33.792196 0.001859024 97.838775 -0.35641483 + 1326400 -33.785979 -33.801845 0.015866604 835.04523 0.3000724 + 1326500 -33.792346 -33.801012 0.0086659764 456.08261 0.32744038 + 1326600 -33.793908 -33.795166 0.001258471 66.232208 0.14285838 + 1326700 -33.793707 -33.797395 0.0036876617 194.07835 0.2510072 + 1326800 -33.791525 -33.803342 0.011817007 621.91854 0.47636557 + 1326900 -33.786422 -33.794146 0.0077237183 406.4924 0.088657938 + 1327000 -33.784085 -33.786428 0.0023428473 123.30196 -0.41214265 + 1327100 -33.792437 -33.800666 0.0082284186 433.05433 -0.17098367 + 1327200 -33.794563 -33.802828 0.0082650031 434.97974 -0.18721895 + 1327300 -33.794226 -33.795953 0.0017268836 90.884342 -0.46117542 + 1327400 -33.791993 -33.794837 0.0028443581 149.69603 -0.37632939 + 1327500 -33.786256 -33.802609 0.016353107 860.64943 0.21558156 + 1327600 -33.789059 -33.797923 0.0088635993 466.48333 0.14791807 + 1327700 -33.794816 -33.795454 0.00063766394 33.559685 0.028972819 + 1327800 -33.795181 -33.799792 0.004611067 242.67634 0.23542708 + 1327900 -33.792988 -33.803624 0.010635626 559.74351 0.39853096 + 1328000 -33.789113 -33.793841 0.004727559 248.80721 0.03810426 + 1328100 -33.786494 -33.789531 0.0030374395 159.85773 -0.22889233 + 1328200 -33.792276 -33.801152 0.0088760788 467.14011 -0.0067360938 + 1328300 -33.795513 -33.802239 0.0067263584 354.00224 -0.084195098 + 1328400 -33.794875 -33.795643 0.0007681048 40.42467 -0.3442238 + 1328500 -33.791443 -33.796583 0.0051393314 270.47843 -0.21914005 + 1328600 -33.787083 -33.802652 0.015568323 819.34698 0.22458375 + 1328700 -33.794427 -33.799701 0.0052738673 277.55893 0.016684029 + 1328800 -33.796652 -33.796769 0.00011775096 6.1971277 -0.085831235 + 1328900 -33.795339 -33.801104 0.0057652671 303.42087 0.15377829 + 1329000 -33.790927 -33.80216 0.011233831 591.22651 0.34691031 + 1329100 -33.789262 -33.793524 0.0042618363 224.29664 0.046844075 + 1329200 -33.791857 -33.794282 0.0024254949 127.65163 0.034252587 + 1329300 -33.795645 -33.803073 0.0074280878 390.93363 0.26730637 + 1329400 -33.79638 -33.801399 0.0050191851 264.15523 0.14622364 + 1329500 -33.79488 -33.795777 0.00089617251 47.16476 -0.11188504 + 1329600 -33.791969 -33.797133 0.00516454 271.80513 -0.069813872 + 1329700 -33.788625 -33.803427 0.014801747 779.00273 0.14709672 + 1329800 -33.792145 -33.796711 0.004566022 240.30567 -0.24475313 + 1329900 -33.796256 -33.797089 0.00083294088 43.836935 -0.32890653 + 1330000 -33.796294 -33.801926 0.0056312592 296.36815 -0.089568081 + 1330100 -33.794086 -33.802367 0.0082805073 435.79571 0.074394948 + 1330200 -33.791571 -33.793758 0.0021876417 115.13363 -0.073784001 + 1330300 -33.790675 -33.794306 0.0036312457 191.10922 0.12817149 + 1330400 -33.791275 -33.803099 0.011824053 622.28934 0.57494754 + 1330500 -33.792407 -33.798996 0.0065890781 346.7773 0.4264692 + 1330600 -33.792743 -33.793753 0.0010097309 53.141239 0.16501985 + 1330700 -33.793216 -33.799163 0.0059476924 313.02174 0.2763659 + 1330800 -33.794359 -33.803462 0.0091021901 479.04015 0.27265624 + 1330900 -33.796544 -33.798509 0.0019651297 103.42302 -0.091918738 + 1331000 -33.796836 -33.798188 0.0013516685 71.137106 -0.22012883 + 1331100 -33.794153 -33.802043 0.0078900052 415.24394 -0.07964704 + 1331200 -33.788624 -33.800714 0.012090256 636.29942 -0.088515923 + 1331300 -33.790118 -33.791018 0.0009004167 47.388128 -0.51343591 + 1331400 -33.792314 -33.797432 0.0051177245 269.34128 -0.28402487 + 1331500 -33.793766 -33.802921 0.0091547745 481.80762 0.0042272619 + 1331600 -33.793479 -33.798753 0.0052748352 277.60987 -0.061074218 + 1331700 -33.793063 -33.793612 0.00054962329 28.926183 -0.11166511 + 1331800 -33.79203 -33.800774 0.0087433868 460.15665 0.30488986 + 1331900 -33.792318 -33.802019 0.0097009215 510.55085 0.4370786 + 1332000 -33.794853 -33.796972 0.0021191129 111.52702 0.18769654 + 1332100 -33.796298 -33.797927 0.0016286045 85.712001 0.15940766 + 1332200 -33.795382 -33.803317 0.0079357662 417.6523 0.28531748 + 1332300 -33.789953 -33.798483 0.0085301055 448.93185 0.059095474 + 1332400 -33.78809 -33.789844 0.0017540151 92.31225 -0.4978653 + 1332500 -33.790452 -33.797314 0.0068622235 361.1527 -0.42358986 + 1332600 -33.792443 -33.803327 0.010883802 572.80477 -0.29601624 + 1332700 -33.793287 -33.796725 0.0034380086 180.93933 -0.53701833 + 1332800 -33.793046 -33.794665 0.0016183361 85.171587 -0.48716555 + 1332900 -33.792346 -33.801573 0.0092263133 485.57264 0.011296998 + 1333000 -33.791211 -33.801164 0.0099526711 523.8002 0.24828988 + 1333100 -33.791664 -33.793186 0.001522443 80.124819 0.13834587 + 1333200 -33.793245 -33.79715 0.00390537 205.53614 0.39615637 + 1333300 -33.795313 -33.803523 0.0082105368 432.11323 0.61712759 + 1333400 -33.796189 -33.800019 0.0038298772 201.56302 0.38756815 + 1333500 -33.793858 -33.794792 0.00093370468 49.140044 0.056274755 + 1333600 -33.788422 -33.798203 0.0097810397 514.7674 -0.0013475244 + 1333700 -33.788762 -33.802788 0.014026493 738.20181 -0.19960174 + 1333800 -33.793547 -33.795456 0.0019089935 100.46862 -0.78693541 + 1333900 -33.794275 -33.796638 0.002362799 124.35201 -0.79707283 + 1334000 -33.793699 -33.802457 0.0087585534 460.95485 -0.42191838 + 1334100 -33.792252 -33.800586 0.0083346079 438.64298 -0.22068438 + 1334200 -33.791182 -33.791647 0.00046589996 24.519899 -0.18951267 + 1334300 -33.789074 -33.796988 0.0079138034 416.49641 0.43722785 + 1334400 -33.791048 -33.802832 0.011784351 620.19986 0.9504072 + 1334500 -33.79492 -33.798581 0.0036613372 192.69291 0.77977322 + 1334600 -33.795946 -33.796422 0.00047579499 25.040666 0.61012168 + 1334700 -33.79435 -33.802242 0.0078917459 415.33555 0.63601119 + 1334800 -33.78673 -33.800256 0.013525621 711.84139 0.25661086 + 1334900 -33.787761 -33.790735 0.0029744993 156.54525 -0.79857646 + 1335000 -33.79142 -33.795039 0.0036184255 190.43451 -1.0890961 + 1335100 -33.792877 -33.803455 0.010577329 556.67542 -0.92769932 + 1335200 -33.793595 -33.798908 0.0053132174 279.6299 -0.98998887 + 1335300 -33.792891 -33.793946 0.0010549174 55.519362 -0.84797736 + 1335400 -33.790295 -33.798564 0.0082697687 435.23055 -0.073707746 + 1335500 -33.787778 -33.802985 0.015207174 800.34002 0.83495125 + 1335600 -33.793038 -33.795503 0.002465022 129.73191 0.93921602 + 1335700 -33.795149 -33.796751 0.001601791 84.30083 1.1061836 + 1335800 -33.794932 -33.802621 0.0076888765 404.65871 1.2559424 + 1335900 -33.791311 -33.800447 0.0091364084 480.84102 0.87492834 + 1336000 -33.782739 -33.785113 0.0023741929 124.95166 -0.33276009 + 1336100 -33.785636 -33.79407 0.0084338614 443.8666 -0.96486184 + 1336200 -33.790155 -33.803308 0.013153391 692.25122 -1.2300108 + 1336300 -33.793548 -33.797339 0.0037908911 199.51122 -1.6820407 + 1336400 -33.794669 -33.795685 0.0010157074 53.455774 -1.5774777 + 1336500 -33.794803 -33.801448 0.0066446761 349.70338 -0.87934449 + 1336600 -33.791556 -33.802493 0.01093711 575.61032 -0.062984551 + 1336700 -33.787528 -33.790483 0.0029548586 155.51157 0.60879071 + 1336800 -33.789411 -33.794198 0.0047869321 251.93196 1.6649358 + 1336900 -33.794442 -33.802377 0.0079344801 417.58461 2.2627122 + 1337000 -33.794483 -33.800114 0.0056314989 296.38076 2.0389442 + 1337100 -33.793225 -33.793844 0.00061894458 32.574501 1.2403648 + 1337200 -33.791235 -33.799391 0.0081555574 429.21971 0.50295251 + 1337300 -33.792832 -33.802981 0.010149685 534.16884 -0.46674602 + 1337400 -33.797197 -33.79959 0.0023929514 125.9389 -1.3761636 + 1337500 -33.797416 -33.797891 0.00047481174 24.988918 -1.6704559 + 1337600 -33.794159 -33.802302 0.0081433794 428.57879 -1.3257693 + 1337700 -33.790673 -33.800711 0.01003857 528.32098 -0.79441017 + 1337800 -33.791212 -33.79357 0.0023583249 124.11654 -0.35368885 + 1337900 -33.793226 -33.796859 0.0036329687 191.1999 0.4379906 + 1338000 -33.79533 -33.803623 0.0082933373 436.47095 1.1018225 + 1338100 -33.799059 -33.801455 0.0023953505 126.06516 1.1118891 + 1338200 -33.799758 -33.800138 0.00038022601 20.010956 0.94628145 + 1338300 -33.798128 -33.801598 0.0034697939 182.61216 0.69558732 + 1338400 -33.795163 -33.803495 0.0083322837 438.52066 0.15403975 + 1338500 -33.793203 -33.796644 0.0034409736 181.09537 -0.92333941 + 1338600 -33.791268 -33.793686 0.0024178298 127.24823 -1.8276301 + 1338700 -33.789593 -33.800954 0.01136062 597.89928 -2.0549915 + 1338800 -33.791532 -33.800114 0.008582056 451.66595 -2.2480804 + 1338900 -33.795198 -33.796183 0.00098518184 51.849241 -2.1679714 + 1339000 -33.796115 -33.799339 0.0032241812 169.68578 -1.4352772 + 1339100 -33.794224 -33.803626 0.0094016403 494.79994 -0.31055143 + 1339200 -33.786578 -33.795997 0.0094192352 495.72595 1.02399 + 1339300 -33.78835 -33.791268 0.0029180994 153.57697 2.4674798 + 1339400 -33.791857 -33.798559 0.0067019384 352.71704 3.5071214 + 1339500 -33.791787 -33.801083 0.0092955189 489.21487 3.6156162 + 1339600 -33.79116 -33.793931 0.00277048 145.80789 2.6448157 + 1339700 -33.791407 -33.796113 0.0047056959 247.65658 1.417184 + 1339800 -33.796742 -33.802991 0.0062483745 328.84637 0.39967851 + 1339900 -33.797671 -33.802249 0.0045782315 240.94824 -0.51007006 + 1340000 -33.795778 -33.796649 0.00087151191 45.866895 -1.4901229 + 1340100 -33.792519 -33.798308 0.0057887476 304.65662 -2.1413415 + 1340200 -33.791511 -33.801636 0.010124463 532.84145 -2.422815 + 1340300 -33.791043 -33.796336 0.0052933308 278.58328 -2.5820844 + 1340400 -33.791602 -33.792935 0.0013329741 70.153235 -2.113972 + 1340500 -33.795018 -33.8019 0.0068822142 362.2048 -1.0219859 + 1340600 -33.797659 -33.802775 0.0051159771 269.24931 -0.31286906 + 1340700 -33.796303 -33.79852 0.0022169282 116.67495 0.31673036 + 1340800 -33.792471 -33.795907 0.0034355089 180.80777 1.2623291 + 1340900 -33.79048 -33.802327 0.011847269 623.5112 2.4959035 + 1341000 -33.791657 -33.797905 0.0062484805 328.85196 2.8145041 + 1341100 -33.792147 -33.793382 0.0012348315 64.988078 2.5065854 + 1341200 -33.793129 -33.798917 0.0057872677 304.57874 2.0928774 + 1341300 -33.796124 -33.80327 0.0071457655 376.07526 1.3515212 + 1341400 -33.797978 -33.800248 0.0022698748 119.46149 0.35198102 + 1341500 -33.796929 -33.798688 0.0017587613 92.562036 -0.54367253 + 1341600 -33.790125 -33.801144 0.011019142 579.9276 -1.4785903 + 1341700 -33.789958 -33.799939 0.0099805826 525.26916 -2.7449383 + 1341800 -33.792045 -33.793475 0.0014296618 75.241823 -3.5664958 + 1341900 -33.793123 -33.79641 0.0032871546 173.00002 -3.2515924 + 1342000 -33.795482 -33.802571 0.0070896461 373.12175 -2.323743 + 1342100 -33.798019 -33.801352 0.0033332355 175.42521 -1.4825793 + 1342200 -33.797414 -33.799447 0.0020331916 107.00506 -0.45007301 + 1342300 -33.79203 -33.800226 0.0081962598 431.36184 1.2682948 + 1342400 -33.789878 -33.801825 0.01194699 628.7594 3.3664319 + 1342500 -33.792055 -33.794657 0.0026022273 136.9529 4.2795813 + 1342600 -33.791497 -33.793444 0.0019470517 102.47159 4.4833739 + 1342700 -33.789256 -33.799182 0.0099261529 522.40457 4.0427089 + 1342800 -33.789333 -33.800584 0.011251238 592.1426 2.4085354 + 1342900 -33.797006 -33.798546 0.0015399037 81.043757 0.71802483 + 1343000 -33.797436 -33.800895 0.0034594333 182.06689 -0.29765273 + 1343100 -33.795251 -33.803007 0.0077563687 408.21077 -1.291484 + 1343200 -33.790834 -33.798193 0.0073595951 387.32892 -2.6185199 + 1343300 -33.789862 -33.790895 0.0010334501 54.389559 -3.7882741 + 1343400 -33.789839 -33.797672 0.0078323489 412.20954 -3.7640631 + 1343500 -33.793788 -33.800798 0.0070091711 368.88642 -3.2108871 + 1343600 -33.79586 -33.798633 0.0027725455 145.9166 -2.4495566 + 1343700 -33.795591 -33.798676 0.0030848759 162.35427 -1.1803936 + 1343800 -33.793042 -33.803108 0.010065539 529.74034 0.70061518 + 1343900 -33.790641 -33.800476 0.0098349129 517.6027 2.5562005 + 1344000 -33.793417 -33.795316 0.0018985709 99.920092 3.6606408 + 1344100 -33.79503 -33.797376 0.0023460769 123.47193 4.0976205 + 1344200 -33.792915 -33.801176 0.0082607201 434.75433 3.7431231 + 1344300 -33.786969 -33.796931 0.0099622983 524.30687 1.8774996 + 1344400 -33.79168 -33.795848 0.0041676679 219.34065 -0.46756411 + 1344500 -33.794645 -33.80099 0.0063453827 333.95183 -1.870661 + 1344600 -33.795007 -33.801846 0.006839519 359.95779 -2.8085658 + 1344700 -33.79217 -33.795122 0.0029521792 155.37056 -3.3903741 + 1344800 -33.787112 -33.791201 0.0040885637 215.17746 -3.1677727 + 1344900 -33.787922 -33.801232 0.013309818 700.48383 -1.8789747 + 1345000 -33.791797 -33.799607 0.0078099758 411.03206 -0.83969375 + 1345100 -33.793662 -33.795507 0.0018448926 97.09505 0.026085374 + 1345200 -33.794458 -33.798815 0.0043574065 229.32642 1.0505456 + 1345300 -33.794132 -33.803107 0.0089747137 472.33118 1.8805796 + 1345400 -33.792125 -33.797189 0.0050642721 266.52813 1.9788882 + 1345500 -33.789723 -33.793131 0.0034085207 179.3874 1.7633045 + 1345600 -33.791384 -33.799762 0.0083779685 440.92501 1.5529288 + 1345700 -33.795173 -33.802072 0.0068990536 363.09104 0.92424127 + 1345800 -33.795909 -33.797155 0.0012454413 65.546464 0.10984146 + 1345900 -33.792301 -33.796718 0.0044175893 232.49378 -0.57216562 + 1346000 -33.78538 -33.801568 0.016187729 851.94574 -1.3387584 + 1346100 -33.791607 -33.799646 0.0080391829 423.09503 -2.2711755 + 1346200 -33.79395 -33.794544 0.0005943293 31.279021 -2.6003369 + 1346300 -33.793684 -33.799192 0.0055081375 289.88836 -2.0261645 + 1346400 -33.790793 -33.802017 0.011224519 590.73644 -0.91998064 + 1346500 -33.784274 -33.793581 0.0093074925 489.84503 0.41079974 + 1346600 -33.790837 -33.793233 0.0023963728 126.11897 1.782224 + 1346700 -33.793992 -33.80119 0.0071988073 378.86681 2.6626122 + 1346800 -33.793453 -33.800657 0.0072038601 379.13273 2.6845116 + 1346900 -33.790739 -33.793848 0.0031090261 163.62527 1.9060028 + 1347000 -33.788483 -33.795062 0.006579523 346.27442 0.88985562 + 1347100 -33.794101 -33.803115 0.0090140484 474.40133 -0.07040315 + 1347200 -33.796693 -33.800428 0.0037349189 196.56545 -0.89453199 + 1347300 -33.795374 -33.796168 0.00079446293 41.811875 -1.4773254 + 1347400 -33.791426 -33.798994 0.0075678843 398.291 -1.5524367 + 1347500 -33.789848 -33.80238 0.012531939 659.54475 -1.3508301 + 1347600 -33.791827 -33.795681 0.0038532645 202.79387 -1.323323 + 1347700 -33.792962 -33.795029 0.0020670614 108.7876 -0.84278557 + 1347800 -33.793317 -33.802132 0.0088145129 463.89995 0.062136046 + 1347900 -33.793437 -33.800748 0.0073110391 384.77347 0.62650733 + 1348000 -33.792569 -33.794541 0.0019713824 103.7521 0.89228573 + 1348100 -33.791645 -33.796616 0.0049711188 261.62555 1.3484482 + 1348200 -33.791642 -33.803243 0.011601109 610.556 1.6534435 + 1348300 -33.794338 -33.798288 0.0039499519 207.88244 1.1868527 + 1348400 -33.795802 -33.796986 0.0011845858 62.343694 0.71170241 + 1348500 -33.796488 -33.801275 0.0047872215 251.9472 0.38723852 + 1348600 -33.793476 -33.802922 0.0094460528 497.13733 -0.078004499 + 1348700 -33.78894 -33.793007 0.0040666928 214.02642 -1.1248201 + 1348800 -33.790039 -33.79452 0.0044805847 235.80918 -1.7891648 + 1348900 -33.79408 -33.801431 0.0073507465 386.86323 -1.7939258 + 1349000 -33.794623 -33.800444 0.0058200754 306.30538 -1.6393295 + 1349100 -33.7939 -33.79495 0.0010502056 55.271384 -1.2687873 + 1349200 -33.792761 -33.799259 0.0064981094 341.9897 -0.20989757 + 1349300 -33.793205 -33.803016 0.0098113417 516.36216 0.89151008 + 1349400 -33.796274 -33.799776 0.0035019906 184.30664 1.3435904 + 1349500 -33.798423 -33.798867 0.00044467851 23.403034 1.5068399 + 1349600 -33.797765 -33.802175 0.0044095651 232.07148 1.5176157 + 1349700 -33.792293 -33.801755 0.0094618304 497.96769 0.97289143 + 1349800 -33.791353 -33.794956 0.0036024479 189.59362 -0.31516821 + 1349900 -33.792892 -33.796165 0.0032725537 172.23158 -1.240683 + 1350000 -33.795058 -33.802677 0.0076184537 400.95242 -1.5955281 + 1350100 -33.796171 -33.800736 0.0045646382 240.23284 -1.7975697 + 1350200 -33.794093 -33.795321 0.0012279439 64.625595 -1.6857506 + 1350300 -33.788339 -33.797039 0.0086998164 457.86358 -0.65750451 + 1350400 -33.789635 -33.802598 0.012962308 682.19469 0.69357174 + 1350500 -33.794253 -33.797779 0.0035255539 185.54676 1.1621773 + 1350600 -33.794635 -33.795712 0.001077159 56.689917 1.4469518 + 1350700 -33.793334 -33.801489 0.0081558534 429.23529 1.7539867 + 1350800 -33.792014 -33.801096 0.0090816689 477.96013 1.455411 + 1350900 -33.79212 -33.794919 0.0027993173 147.32557 0.59009559 + 1351000 -33.795967 -33.798722 0.0027548742 144.98657 0.053561904 + 1351100 -33.798274 -33.803491 0.0052173013 274.58192 -0.20125014 + 1351200 -33.796372 -33.800256 0.0038842359 204.42387 -0.59652119 + 1351300 -33.792866 -33.794589 0.0017232514 90.693187 -1.0530365 + 1351400 -33.791501 -33.798481 0.0069800577 367.35421 -1.051161 + 1351500 -33.791755 -33.803189 0.01143432 601.77805 -0.85128006 + 1351600 -33.79515 -33.797179 0.0020295317 106.81244 -0.91323756 + 1351700 -33.797944 -33.799273 0.0013293978 69.965023 -0.63144142 + 1351800 -33.798044 -33.80253 0.0044859827 236.09327 -0.1682984 + 1351900 -33.795455 -33.802244 0.0067891974 357.3094 0.31712112 + 1352000 -33.794337 -33.795801 0.0014638598 77.041634 0.59346531 + 1352100 -33.792878 -33.797942 0.0050636114 266.49335 1.1187635 + 1352200 -33.791307 -33.802213 0.010906234 573.98536 1.555056 + 1352300 -33.789965 -33.796929 0.0069644289 366.53168 1.2901719 + 1352400 -33.790497 -33.791224 0.00072742942 38.283961 0.76232972 + 1352500 -33.792806 -33.800112 0.0073052554 384.46907 0.6075061 + 1352600 -33.79563 -33.80246 0.0068294821 359.42955 0.22582805 + 1352700 -33.795927 -33.798411 0.0024843542 130.74934 -0.30239756 + 1352800 -33.792827 -33.796211 0.0033839927 178.09652 -0.66235592 + 1352900 -33.786772 -33.802011 0.015238491 801.98819 -0.66831969 + 1353000 -33.791924 -33.799432 0.0075078116 395.12943 -1.0346865 + 1353100 -33.793961 -33.794696 0.00073526652 38.696421 -1.1984008 + 1353200 -33.793338 -33.797911 0.0045731136 240.67889 -0.75941458 + 1353300 -33.791658 -33.802529 0.010871118 572.13725 -0.042277605 + 1353400 -33.792067 -33.797772 0.0057049458 300.24621 0.3141242 + 1353500 -33.79559 -33.797198 0.0016081332 84.634615 0.66186748 + 1353600 -33.799047 -33.802646 0.0035989375 189.40887 0.9257535 + 1353700 -33.797677 -33.802751 0.0050743172 267.05679 0.87490161 + 1353800 -33.794283 -33.796769 0.0024857241 130.82144 0.39431888 + 1353900 -33.792085 -33.794976 0.0028904618 152.12243 -0.1842442 + 1354000 -33.790436 -33.802568 0.01213222 638.50791 -0.49167313 + 1354100 -33.792511 -33.798949 0.0064374509 338.7973 -1.1182363 + 1354200 -33.796587 -33.79744 0.00085318069 44.902139 -1.4345731 + 1354300 -33.797375 -33.800445 0.0030701879 161.58125 -1.1757065 + 1354400 -33.794811 -33.803684 0.0088727139 466.96302 -0.56404858 + 1354500 -33.79243 -33.797422 0.0049914855 262.69743 -0.016420983 + 1354600 -33.792562 -33.795435 0.0028733012 151.21928 0.69778035 + 1354700 -33.793272 -33.800445 0.0071722581 377.46955 1.5033447 + 1354800 -33.792688 -33.801308 0.0086196138 453.64258 1.8109162 + 1354900 -33.788944 -33.790651 0.0017073761 89.857679 1.4281115 + 1355000 -33.783645 -33.79143 0.0077844523 409.68878 1.0542044 + 1355100 -33.789783 -33.802206 0.012423174 653.82057 0.67948668 + 1355200 -33.793311 -33.799779 0.0064671137 340.35842 -0.033456919 + 1355300 -33.794133 -33.794919 0.0007865318 41.394467 -0.68139245 + 1355400 -33.793921 -33.800394 0.0064729197 340.66399 -0.79256454 + 1355500 -33.792585 -33.802479 0.0098946642 520.74735 -0.8075345 + 1355600 -33.78885 -33.793674 0.004824383 253.90297 -1.0354388 + 1355700 -33.787482 -33.790255 0.0027730158 145.94135 -0.8582525 + 1355800 -33.791888 -33.801607 0.0097191657 511.51102 -0.14792612 + 1355900 -33.795099 -33.801173 0.0060745613 319.69874 0.048378254 + 1356000 -33.794481 -33.795816 0.0013346625 70.242099 0.1034431 + 1356100 -33.792764 -33.797967 0.0052028723 273.82253 0.46646554 + 1356200 -33.790208 -33.803315 0.013106891 689.80397 0.89325071 + 1356300 -33.789155 -33.79644 0.0072852125 383.41424 0.68426508 + 1356400 -33.792613 -33.793575 0.00096234784 50.647508 0.4181233 + 1356500 -33.79477 -33.800599 0.0058289791 306.77397 0.48220616 + 1356600 -33.794486 -33.80188 0.0073942555 389.15307 0.3185784 + 1356700 -33.789281 -33.793738 0.0044572094 234.57896 -0.22255691 + 1356800 -33.786181 -33.791846 0.0056648754 298.13734 -0.65071722 + 1356900 -33.792089 -33.803067 0.010978799 577.80442 -0.61662883 + 1357000 -33.793904 -33.799918 0.0060136897 316.49512 -0.80873125 + 1357100 -33.793276 -33.794447 0.001171088 61.633316 -0.89165057 + 1357200 -33.791541 -33.796998 0.0054571565 287.20528 -0.42197924 + 1357300 -33.786698 -33.803145 0.01644655 865.56727 0.40664268 + 1357400 -33.789739 -33.794045 0.0043062811 226.63574 0.53345392 + 1357500 -33.794849 -33.796664 0.0018146881 95.505418 0.75966035 + 1357600 -33.795576 -33.80181 0.0062344021 328.11102 0.98534357 + 1357700 -33.793386 -33.802396 0.0090092917 474.15099 0.85857359 + 1357800 -33.789259 -33.791363 0.0021039892 110.73107 0.12370362 + 1357900 -33.785592 -33.792935 0.0073429091 386.45076 -0.36102095 + 1358000 -33.792216 -33.801939 0.0097227162 511.69788 -0.61108469 + 1358100 -33.795068 -33.799809 0.0047403985 249.48294 -0.91674679 + 1358200 -33.79437 -33.794975 0.00060489398 31.835031 -1.0177775 + 1358300 -33.790854 -33.799777 0.0089228587 469.60209 -0.47368312 + 1358400 -33.788505 -33.802402 0.013897734 731.42535 0.20149755 + 1358500 -33.795788 -33.798562 0.0027734186 145.96255 0.30135959 + 1358600 -33.796857 -33.797882 0.0010252735 53.959228 0.46143421 + 1358700 -33.79496 -33.802281 0.0073210467 385.30016 0.75479502 + 1358800 -33.790835 -33.80002 0.0091850507 483.40103 0.72268419 + 1358900 -33.790222 -33.792224 0.0020019202 105.35928 0.24298395 + 1359000 -33.791571 -33.796919 0.005347366 281.4271 0.14714068 + 1359100 -33.793073 -33.803282 0.010209199 537.30104 0.12129051 + 1359200 -33.793717 -33.798601 0.0048839245 257.03659 -0.28591371 + 1359300 -33.793461 -33.794448 0.00098659148 51.923429 -0.59385651 + 1359400 -33.792642 -33.800475 0.0078326171 412.22365 -0.39537305 + 1359500 -33.792057 -33.801837 0.0097801229 514.71914 -0.27239435 + 1359600 -33.79185 -33.794781 0.0029306825 154.23921 -0.42794683 + 1359700 -33.793597 -33.79602 0.002422781 127.5088 -0.21602729 + 1359800 -33.795315 -33.803181 0.0078665194 414.0079 0.19272323 + 1359900 -33.795512 -33.800706 0.0051940291 273.35712 0.22942522 + 1360000 -33.792524 -33.794435 0.0019104967 100.54774 0.14772825 + 1360100 -33.788496 -33.795844 0.007348291 386.734 0.39178542 + 1360200 -33.789403 -33.803306 0.013903216 731.71385 0.64601968 + 1360300 -33.795808 -33.798238 0.0024299064 127.88381 0.27624991 + 1360400 -33.795567 -33.797098 0.0015308435 80.566927 0.11836585 + 1360500 -33.793727 -33.801041 0.007314151 384.93724 0.16225409 + 1360600 -33.789762 -33.801892 0.012130956 638.44141 0.051619159 + 1360700 -33.790526 -33.792375 0.0018494234 97.333506 -0.54582735 + 1360800 -33.795867 -33.799146 0.0032795363 172.59907 -0.51553824 + 1360900 -33.797014 -33.802877 0.0058636701 308.59973 -0.34297739 + 1361000 -33.794399 -33.800048 0.005648119 297.25546 -0.29368918 + 1361100 -33.791616 -33.792164 0.00054782733 28.831664 -0.26504328 + 1361200 -33.790503 -33.799232 0.0087297301 459.43791 0.3548501 + 1361300 -33.792025 -33.802317 0.010291224 541.61792 0.70184733 + 1361400 -33.793264 -33.796803 0.0035387666 186.24213 0.57147499 + 1361500 -33.793745 -33.795411 0.0016655037 87.653973 0.50371798 + 1361600 -33.793063 -33.802465 0.0094019338 494.81539 0.62769626 + 1361700 -33.789794 -33.799518 0.0097235977 511.74428 0.34181226 + 1361800 -33.78399 -33.786845 0.0028551704 150.26507 -0.47978119 + 1361900 -33.788388 -33.79511 0.0067222947 353.78838 -0.66265687 + 1362000 -33.793667 -33.803054 0.0093868515 494.02162 -0.60960417 + 1362100 -33.795163 -33.798982 0.0038195139 201.01761 -0.77561599 + 1362200 -33.794436 -33.795598 0.0011618683 61.148092 -0.70658603 + 1362300 -33.789979 -33.800387 0.010408175 547.77295 -0.0308744 + 1362400 -33.785804 -33.80079 0.014985705 788.68427 0.65810611 + 1362500 -33.793517 -33.795701 0.0021842663 114.95599 0.71248542 + 1362600 -33.795071 -33.797111 0.0020399737 107.362 0.88062516 + 1362700 -33.79358 -33.802932 0.0093515298 492.16267 1.0430277 + 1362800 -33.790551 -33.798254 0.0077029748 405.40069 0.64147692 + 1362900 -33.788583 -33.791372 0.0027890879 146.78721 -0.10246831 + 1363000 -33.793362 -33.798907 0.0055450423 291.83063 -0.35701758 + 1363100 -33.796494 -33.803665 0.0071706062 377.38261 -0.45474878 + 1363200 -33.795539 -33.797942 0.0024033941 126.48849 -0.71642495 + 1363300 -33.791956 -33.794177 0.0022206702 116.87189 -0.73849589 + 1363400 -33.789711 -33.800172 0.010461163 550.56168 -0.18225363 + 1363500 -33.790733 -33.801794 0.011061519 582.15786 0.14168918 + 1363600 -33.792849 -33.793685 0.00083636234 44.017004 0.062692215 + 1363700 -33.793513 -33.797976 0.0044633523 234.90225 0.40386432 + 1363800 -33.794379 -33.802899 0.0085199842 448.39917 0.68719136 + 1363900 -33.795745 -33.800378 0.0046330682 243.83425 0.51242648 + 1364000 -33.79632 -33.796496 0.00017621547 9.2740629 0.24892309 + 1364100 -33.794225 -33.800854 0.0066296951 348.91494 0.24062886 + 1364200 -33.789349 -33.801951 0.012602113 663.23796 0.06222757 + 1364300 -33.789163 -33.793383 0.0042199961 222.09463 -0.6540921 + 1364400 -33.793486 -33.795425 0.001939262 102.06163 -0.88346211 + 1364500 -33.796162 -33.802996 0.0068337998 359.65679 -0.65854863 + 1364600 -33.795232 -33.80128 0.0060483881 318.32127 -0.53161514 + 1364700 -33.792794 -33.794094 0.0012996501 68.399427 -0.44592147 + 1364800 -33.790056 -33.796209 0.0061530715 323.83066 0.19167729 + 1364900 -33.790048 -33.803122 0.013074549 688.10184 0.97865875 + 1365000 -33.796448 -33.799771 0.0033235195 174.91387 0.93248846 + 1365100 -33.796958 -33.797429 0.00047093907 24.785103 0.82008312 + 1365200 -33.794801 -33.801481 0.0066803684 351.58183 0.79892342 + 1365300 -33.790619 -33.801948 0.011329163 596.24374 0.40387327 + 1365400 -33.790615 -33.793862 0.0032472123 170.89789 -0.55505966 + 1365500 -33.791912 -33.794599 0.0026870588 141.41751 -1.041797 + 1365600 -33.792477 -33.803073 0.010595683 557.64135 -1.0074931 + 1365700 -33.793219 -33.799402 0.0061826512 325.38742 -1.1456041 + 1365800 -33.792848 -33.794222 0.0013738686 72.305478 -1.1201523 + 1365900 -33.79291 -33.798278 0.0053675701 282.49043 -0.51081794 + 1366000 -33.792968 -33.803885 0.010917247 574.56496 0.23582503 + 1366100 -33.794177 -33.797157 0.0029797518 156.82168 0.43943115 + 1366200 -33.79417 -33.795973 0.0018023493 94.856034 0.7248206 + 1366300 -33.793439 -33.801157 0.0077180451 406.19383 1.1505432 + 1366400 -33.788971 -33.801434 0.012463421 655.93874 1.1893974 + 1366500 -33.787319 -33.7884 0.001080937 56.888748 0.46100581 + 1366600 -33.79122 -33.796572 0.0053518932 281.66536 0.30562066 + 1366700 -33.79527 -33.803094 0.0078236354 411.75095 0.18825855 + 1366800 -33.79462 -33.800023 0.0054027434 284.34157 -0.2030047 + 1366900 -33.792769 -33.793042 0.00027296292 14.365795 -0.67513306 + 1367000 -33.788483 -33.799103 0.0106207 558.95798 -0.58644803 + 1367100 -33.783045 -33.800852 0.017807041 937.1687 -0.47781326 + 1367200 -33.790942 -33.7943 0.003358018 176.72949 -0.89577998 + 1367300 -33.794309 -33.796121 0.0018119173 95.359592 -0.7462756 + 1367400 -33.794771 -33.802965 0.0081937592 431.23024 -0.24090296 + 1367500 -33.793365 -33.800487 0.0071215361 374.80009 0.037659281 + 1367600 -33.789168 -33.791045 0.0018768089 98.774781 0.17028722 + 1367700 -33.786125 -33.794684 0.0085586206 450.43257 0.88254301 + 1367800 -33.79284 -33.803038 0.010198216 536.72301 1.3357385 + 1367900 -33.795358 -33.798811 0.0034524263 181.69812 1.0646282 + 1368000 -33.794436 -33.795359 0.000922474 48.548984 0.68611636 + 1368100 -33.791026 -33.80101 0.0099835212 525.42382 0.46296437 + 1368200 -33.787615 -33.800829 0.013214101 695.44636 -0.21111284 + 1368300 -33.793046 -33.795214 0.002168161 114.10838 -1.195971 + 1368400 -33.796133 -33.79813 0.001996394 105.06843 -1.3516026 + 1368500 -33.795455 -33.803365 0.0079102616 416.31001 -1.0602601 + 1368600 -33.791637 -33.798437 0.0067996412 357.85905 -0.74554946 + 1368700 -33.788498 -33.791035 0.0025374543 133.54395 -0.25096311 + 1368800 -33.790344 -33.797543 0.0071990668 378.88046 0.76180182 + 1368900 -33.791962 -33.803349 0.011386563 599.26467 1.4639705 + 1369000 -33.792976 -33.795582 0.0026060662 137.15494 1.3625433 + 1369100 -33.792772 -33.795325 0.0025533784 134.38203 1.2489748 + 1369200 -33.793137 -33.801426 0.0082885779 436.22046 1.1508661 + 1369300 -33.79435 -33.802095 0.0077453654 407.63167 0.5909152 + 1369400 -33.796032 -33.79666 0.00062810537 33.056626 -0.17785988 + 1369500 -33.795901 -33.799569 0.0036685986 193.07507 -0.52922494 + 1369600 -33.79236 -33.802613 0.010252792 539.59531 -0.7353613 + 1369700 -33.78751 -33.796073 0.0085622647 450.62435 -1.277972 + 1369800 -33.789452 -33.790141 0.00068941623 36.283361 -1.6857872 + 1369900 -33.792251 -33.800419 0.0081678408 429.86618 -1.2234171 + 1370000 -33.793295 -33.802193 0.0088981319 468.30075 -0.77239475 + 1370100 -33.793098 -33.796028 0.0029303724 154.22288 -0.46352868 + 1370200 -33.792924 -33.795618 0.0026940012 141.78288 0.16738548 + 1370300 -33.792913 -33.802764 0.0098512923 518.46472 1.0330754 + 1370400 -33.794735 -33.800537 0.0058017573 305.34131 1.2548974 + 1370500 -33.795431 -33.796182 0.0007509119 39.519824 1.1259697 + 1370600 -33.794344 -33.799154 0.0048098238 253.13673 1.0749265 + 1370700 -33.788828 -33.802891 0.014063119 740.12939 0.79795785 + 1370800 -33.788019 -33.794197 0.0061786921 325.17905 -0.36251207 + 1370900 -33.793284 -33.794759 0.0014745623 77.604899 -1.0615979 + 1371000 -33.794883 -33.801933 0.007050514 371.06226 -1.0735447 + 1371100 -33.793775 -33.801524 0.0077487216 407.80831 -1.0546183 + 1371200 -33.791105 -33.793514 0.0024090867 126.78808 -1.0359446 + 1371300 -33.788897 -33.793718 0.0048214997 253.75123 -0.43306358 + 1371400 -33.791279 -33.803441 0.012162061 640.07842 0.50673762 + 1371500 -33.796431 -33.800178 0.003747055 197.20416 0.62834072 + 1371600 -33.796035 -33.796969 0.00093368744 49.139137 0.64086216 + 1371700 -33.793433 -33.79942 0.005987332 315.10794 0.81643386 + 1371800 -33.78861 -33.803092 0.014482181 762.18429 0.85708601 + 1371900 -33.790406 -33.793196 0.0027897178 146.82036 0.10263267 + 1372000 -33.791547 -33.794797 0.0032502651 171.05855 -0.20579438 + 1372100 -33.793196 -33.801945 0.0087490148 460.45285 -0.209744 + 1372200 -33.794304 -33.801549 0.0072445894 381.27628 -0.44415511 + 1372300 -33.79594 -33.796146 0.00020680235 10.883823 -0.70957383 + 1372400 -33.797058 -33.800472 0.0034136682 179.65831 -0.50724109 + 1372500 -33.796236 -33.803228 0.0069922664 367.99675 -0.19975835 + 1372600 -33.791136 -33.797456 0.0063203301 332.63334 0.0047135865 + 1372700 -33.789697 -33.790483 0.00078668135 41.402338 0.21681199 + 1372800 -33.790764 -33.80067 0.0099064025 521.36513 0.93520058 + 1372900 -33.793845 -33.802035 0.0081898233 431.02309 1.0917672 + 1373000 -33.794516 -33.796519 0.0020028922 105.41043 0.76584667 + 1373100 -33.79406 -33.796451 0.0023906816 125.81944 0.54044569 + 1373200 -33.793191 -33.803315 0.010124071 532.82081 0.43933655 + 1373300 -33.792415 -33.799331 0.0069161931 363.99308 -0.17305051 + 1373400 -33.791788 -33.792948 0.0011594742 61.022093 -0.8514287 + 1373500 -33.792176 -33.798479 0.0063036942 331.7578 -0.93148486 + 1373600 -33.794752 -33.803277 0.0085242561 448.62399 -0.88578148 + 1373700 -33.796887 -33.799211 0.0023247499 122.34952 -0.95076852 + 1373800 -33.796614 -33.797589 0.00097477721 51.301655 -0.71208541 + 1373900 -33.790906 -33.801619 0.010713241 563.82834 0.13012512 + 1374000 -33.788466 -33.800576 0.012110037 637.34045 1.0155331 + 1374100 -33.792068 -33.793876 0.0018083013 95.169287 1.2770795 + 1374200 -33.794109 -33.797124 0.0030145387 158.65248 1.5803467 + 1374300 -33.79389 -33.803348 0.0094586431 497.79995 1.6902424 + 1374400 -33.793362 -33.798605 0.0052425553 275.91101 1.0437621 + 1374500 -33.792765 -33.794536 0.0017713084 93.22238 0.16640966 + 1374600 -33.792885 -33.799607 0.0067217001 353.75708 -0.38751174 + 1374700 -33.793371 -33.803342 0.009970576 524.74252 -0.92350816 + 1374800 -33.796629 -33.797985 0.0013559479 71.362329 -1.5279779 + 1374900 -33.797718 -33.799136 0.0014188379 74.672176 -1.4953685 + 1375000 -33.79634 -33.802454 0.0061140868 321.77894 -0.99513826 + 1375100 -33.790817 -33.801347 0.010529979 554.1834 -0.12544145 + 1375200 -33.791202 -33.792451 0.0012487709 65.721697 0.59528502 + 1375300 -33.792565 -33.797931 0.0053662433 282.4206 1.5667437 + 1375400 -33.794413 -33.80251 0.0080968238 426.12862 2.1125067 + 1375500 -33.795643 -33.799601 0.0039575679 208.28327 1.8983356 + 1375600 -33.796711 -33.797141 0.00042924189 22.590618 1.3752626 + 1375700 -33.79547 -33.80187 0.0063995712 336.80372 0.8785102 + 1375800 -33.790896 -33.802129 0.01123283 591.17382 -0.12155545 + 1375900 -33.789777 -33.794217 0.0044403754 233.69299 -1.7817613 + 1376000 -33.793515 -33.795591 0.0020760277 109.25949 -2.6603116 + 1376100 -33.79642 -33.802212 0.0057912927 304.79057 -2.5988017 + 1376200 -33.795617 -33.800809 0.0051920933 273.25524 -2.1742208 + 1376300 -33.793793 -33.796196 0.0024026578 126.44974 -1.2649498 + 1376400 -33.792683 -33.798898 0.0062153436 327.10799 0.32139173 + 1376500 -33.794151 -33.803157 0.0090065851 474.00854 1.8267658 + 1376600 -33.79821 -33.800382 0.0021715883 114.28876 2.3511169 + 1376700 -33.798369 -33.798756 0.00038719471 20.377712 2.3244051 + 1376800 -33.795557 -33.801393 0.0058364172 307.16543 1.9400396 + 1376900 -33.793058 -33.802595 0.00953714 501.93117 0.83285997 + 1377000 -33.793375 -33.797052 0.0036771309 193.52412 -0.84804594 + 1377100 -33.794664 -33.797099 0.0024357344 128.19053 -2.018036 + 1377200 -33.795588 -33.802345 0.0067571048 355.6204 -2.4462324 + 1377300 -33.794429 -33.79977 0.0053406572 281.07402 -2.5749069 + 1377400 -33.78924 -33.791838 0.0025981679 136.73926 -2.1652335 + 1377500 -33.788384 -33.796111 0.0077272196 406.67667 -0.70359352 + 1377600 -33.79319 -33.803829 0.010638754 559.90812 0.63032739 + 1377700 -33.795117 -33.798236 0.0031195409 164.17865 1.1717329 + 1377800 -33.794229 -33.795857 0.0016271938 85.63776 1.5779465 + 1377900 -33.792427 -33.800245 0.0078177535 411.44139 1.9822713 + 1378000 -33.787922 -33.801381 0.013458791 708.32419 1.8966431 + 1378100 -33.782505 -33.785107 0.0026019247 136.93698 0.68974404 + 1378200 -33.786839 -33.794061 0.0072217037 380.07183 -0.013262228 + 1378300 -33.793521 -33.802632 0.009110583 479.48186 -0.35354307 + 1378400 -33.79477 -33.800142 0.005372437 282.74657 -0.8515426 + 1378500 -33.794395 -33.794642 0.00024687061 12.99258 -1.1822393 + 1378600 -33.790747 -33.79957 0.0088227269 464.33225 -0.84306499 + 1378700 -33.785766 -33.801306 0.015539761 817.84374 -0.32849524 + 1378800 -33.79221 -33.795669 0.0034588756 182.03754 -0.26894705 + 1378900 -33.795212 -33.796706 0.0014937635 78.61544 -0.0022848491 + 1379000 -33.794405 -33.802796 0.0083911368 441.61804 0.46716404 + 1379100 -33.791581 -33.799896 0.0083145987 437.58992 0.6321807 + 1379200 -33.788401 -33.790433 0.0020320708 106.94607 0.42085839 + 1379300 -33.788661 -33.795558 0.0068976356 363.01641 0.61359916 + 1379400 -33.795273 -33.803349 0.0080762826 425.04755 0.68816078 + 1379500 -33.796056 -33.799388 0.0033315398 175.33597 0.33009331 + 1379600 -33.794183 -33.795164 0.0009818578 51.6743 -0.060598912 + 1379700 -33.789318 -33.800241 0.010923638 574.90131 -0.12794275 + 1379800 -33.788884 -33.801078 0.01219398 641.7583 -0.50163714 + 1379900 -33.79214 -33.794626 0.0024858078 130.82585 -1.0597489 + 1380000 -33.792825 -33.795713 0.0028873358 151.95791 -1.0128756 + 1380100 -33.79247 -33.803217 0.010746925 565.60106 -0.54459345 + 1380200 -33.793088 -33.798959 0.0058712434 308.9983 -0.36207015 + 1380300 -33.793474 -33.795029 0.0015553605 81.857238 -0.14113812 + 1380400 -33.794708 -33.799553 0.0048456238 255.02086 0.37415143 + 1380500 -33.795654 -33.803663 0.0080088327 421.49772 0.75179591 + 1380600 -33.795232 -33.797559 0.0023272853 122.48295 0.63475626 + 1380700 -33.790902 -33.793757 0.002854881 150.24984 0.5062477 + 1380800 -33.78749 -33.79988 0.012389681 652.05787 0.65465694 + 1380900 -33.791063 -33.801495 0.010431792 549.01592 0.31572005 + 1381000 -33.794355 -33.79487 0.00051428924 27.066584 -0.24231594 + 1381100 -33.793946 -33.798499 0.0045532368 239.63279 -0.27785659 + 1381200 -33.792849 -33.802679 0.0098305449 517.37281 -0.20140829 + 1381300 -33.790729 -33.797837 0.0071087461 374.12697 -0.43705892 + 1381400 -33.789482 -33.790142 0.00066024051 34.747869 -0.6415765 + 1381500 -33.790727 -33.800171 0.0094444727 497.05418 -0.18127768 + 1381600 -33.795439 -33.80249 0.0070515398 371.11625 -0.047969885 + 1381700 -33.795936 -33.798013 0.0020763651 109.27725 -0.099779166 + 1381800 -33.793984 -33.796015 0.0020315757 106.92002 0.01867169 + 1381900 -33.786009 -33.802481 0.01647226 866.92037 0.63572924 + 1382000 -33.788779 -33.798362 0.0095830198 504.34578 0.61394395 + 1382100 -33.791772 -33.793015 0.001242584 65.396086 0.36213949 + 1382200 -33.793491 -33.798637 0.00514555 270.80571 0.49327457 + 1382300 -33.79408 -33.803206 0.0091251537 480.2487 0.52125787 + 1382400 -33.793456 -33.797361 0.003905327 205.53387 0.078339861 + 1382500 -33.790461 -33.792493 0.0020313821 106.90983 -0.3212946 + 1382600 -33.788181 -33.800749 0.012567203 661.4007 -0.24144796 + 1382700 -33.793213 -33.801568 0.0083550002 439.71621 -0.5140166 + 1382800 -33.79563 -33.79694 0.0013102591 68.957768 -0.77051696 + 1382900 -33.795254 -33.797825 0.002570602 135.28849 -0.59686917 + 1383000 -33.792762 -33.803442 0.010679659 562.06092 -0.081832591 + 1383100 -33.791965 -33.798255 0.0062893944 331.00522 0.10944866 + 1383200 -33.792135 -33.793976 0.001840905 96.885186 0.26254013 + 1383300 -33.793019 -33.799219 0.0061995508 326.27683 0.70024139 + 1383400 -33.793898 -33.803332 0.0094336963 496.48702 0.92073193 + 1383500 -33.795641 -33.797323 0.0016825931 88.553376 0.58723853 + 1383600 -33.796266 -33.798144 0.0018781846 98.847181 0.40092955 + 1383700 -33.795378 -33.8022 0.0068221206 359.04212 0.32276944 + 1383800 -33.78969 -33.801078 0.011388278 599.35489 -0.057745456 + 1383900 -33.789193 -33.790369 0.0011752904 61.854486 -0.96344084 + 1384000 -33.792003 -33.797698 0.0056947111 299.70756 -1.071971 + 1384100 -33.794785 -33.802474 0.0076894488 404.68883 -0.96851316 + 1384200 -33.794105 -33.799097 0.0049916746 262.70738 -0.91375426 + 1384300 -33.792998 -33.793679 0.00068067071 35.823092 -0.67522466 + 1384400 -33.790835 -33.800854 0.010018092 527.24324 0.20843369 + 1384500 -33.792301 -33.801973 0.0096726379 509.0623 0.83486129 + 1384600 -33.79649 -33.798473 0.0019823394 104.32876 0.90595201 + 1384700 -33.797258 -33.798471 0.0012130662 63.84259 0.94454666 + 1384800 -33.794599 -33.803125 0.0085265907 448.74686 0.99616565 + 1384900 -33.790546 -33.799044 0.0084978653 447.23507 0.44237411 + 1385000 -33.790976 -33.792929 0.0019531714 102.79367 -0.45397463 + 1385100 -33.792951 -33.798216 0.0052647584 277.07954 -0.76726059 + 1385200 -33.79495 -33.803408 0.0084579978 445.13688 -0.86649468 + 1385300 -33.79628 -33.799158 0.002878125 151.47315 -1.0739761 + 1385400 -33.796211 -33.797156 0.00094524718 49.747516 -0.95322698 + 1385500 -33.793004 -33.80125 0.0082457584 433.96691 -0.2875118 + 1385600 -33.788595 -33.801233 0.012637636 665.10752 0.53305428 + 1385700 -33.790693 -33.793278 0.0025847937 136.03539 0.88320202 + 1385800 -33.794718 -33.797302 0.0025847218 136.0316 1.3076175 + 1385900 -33.79553 -33.803213 0.0076831918 404.35953 1.5216131 + 1386000 -33.794452 -33.799745 0.0052933292 278.58319 1.1154074 + 1386100 -33.792461 -33.794285 0.0018243921 96.016129 0.33095443 + 1386200 -33.791089 -33.798027 0.0069386159 365.17317 -0.25611924 + 1386300 -33.792073 -33.80345 0.011376784 598.75 -0.82253427 + 1386400 -33.796474 -33.798364 0.0018900068 99.469373 -1.4683046 + 1386500 -33.796664 -33.798183 0.0015193063 79.959735 -1.484062 + 1386600 -33.794156 -33.801504 0.0073479459 386.71584 -0.94267706 + 1386700 -33.788872 -33.801549 0.012677165 667.18791 -0.07165995 + 1386800 -33.790879 -33.792193 0.0013133728 69.12164 0.46547295 + 1386900 -33.792236 -33.797397 0.0051607734 271.6069 1.2787403 + 1387000 -33.793378 -33.802183 0.0088050418 463.4015 1.7898033 + 1387100 -33.792906 -33.798964 0.0060577295 318.8129 1.6259537 + 1387200 -33.790485 -33.791087 0.00060233708 31.700463 0.99725148 + 1387300 -33.784895 -33.79884 0.013945072 733.91672 0.56546406 + 1387400 -33.791432 -33.801788 0.010355776 545.01525 -0.28612351 + 1387500 -33.794546 -33.79737 0.0028242586 148.63821 -1.038304 + 1387600 -33.794816 -33.796341 0.0015253014 80.275251 -1.2803155 + 1387700 -33.792275 -33.802874 0.010599219 557.82743 -0.9466334 + 1387800 -33.785034 -33.796637 0.011603263 610.66939 -0.67132772 + 1387900 -33.786065 -33.789005 0.002940515 154.75668 -0.404507 + 1388000 -33.793535 -33.798411 0.0048751118 256.57278 0.25861425 + 1388100 -33.793842 -33.803354 0.0095128 500.65018 0.71812035 + 1388200 -33.793154 -33.797065 0.003910584 205.81055 0.65804962 + 1388300 -33.791298 -33.793289 0.0019912079 104.7955 0.56803626 + 1388400 -33.789188 -33.800216 0.011027622 580.37392 0.76734052 + 1388500 -33.792181 -33.801631 0.009449326 497.3096 0.50589368 + 1388600 -33.796223 -33.797626 0.0014036608 73.873418 0.022124275 + 1388700 -33.796417 -33.798792 0.002375598 125.02561 -0.1320733 + 1388800 -33.793463 -33.803202 0.0097390932 512.55979 -0.10405749 + 1388900 -33.788396 -33.796583 0.0081871378 430.88176 -0.47033325 + 1389000 -33.788609 -33.790902 0.0022920511 120.62861 -0.88789292 + 1389100 -33.790818 -33.797976 0.0071573878 376.68694 -0.65278901 + 1389200 -33.793659 -33.803374 0.0097149398 511.28862 -0.41051128 + 1389300 -33.795541 -33.797528 0.0019871409 104.58145 -0.46421013 + 1389400 -33.795161 -33.797555 0.002393463 125.96582 -0.21339557 + 1389500 -33.791308 -33.801002 0.0096940515 510.18929 0.3759365 + 1389600 -33.786389 -33.800191 0.013801853 726.37919 0.87349404 + 1389700 -33.791119 -33.791578 0.00045928597 24.171811 0.77398665 + 1389800 -33.793664 -33.798866 0.0052022291 273.78868 1.0268689 + 1389900 -33.794102 -33.802444 0.0083415988 439.01091 1.0267984 + 1390000 -33.792835 -33.798774 0.0059391947 312.57452 0.52482021 + 1390100 -33.791702 -33.792348 0.00064597432 33.997052 -0.18045692 + 1390200 -33.787003 -33.800261 0.013257753 697.74373 -0.39212729 + 1390300 -33.788257 -33.800131 0.011874014 624.91876 -0.96009757 + 1390400 -33.79356 -33.796376 0.0028151231 148.15742 -1.4890884 + 1390500 -33.794989 -33.796888 0.0018990274 99.94412 -1.3728289 + 1390600 -33.793827 -33.803331 0.0095042262 500.19895 -0.74238302 + 1390700 -33.789336 -33.797811 0.0084752129 446.04289 -0.17618198 + 1390800 -33.783079 -33.787395 0.0043163125 227.16368 0.59007047 + 1390900 -33.789874 -33.796976 0.0071015053 373.74589 1.7254307 + 1391000 -33.793014 -33.802734 0.0097198221 511.54557 2.143923 + 1391100 -33.793306 -33.796538 0.0032316433 170.0785 1.7433917 + 1391200 -33.792339 -33.794894 0.0025552894 134.4826 1.1415111 + 1391300 -33.791384 -33.801336 0.0099511689 523.72114 0.58692976 + 1391400 -33.79377 -33.80177 0.0080006389 421.06649 -0.32405011 + 1391500 -33.796729 -33.797913 0.0011848613 62.358191 -1.1101801 + 1391600 -33.797007 -33.799342 0.0023353453 122.90714 -1.3017584 + 1391700 -33.792143 -33.80294 0.010797211 568.24757 -1.0342705 + 1391800 -33.788773 -33.796408 0.0076353991 401.84424 -0.85420476 + 1391900 -33.790829 -33.792998 0.0021691315 114.15946 -0.52737531 + 1392000 -33.793922 -33.799726 0.0058034414 305.42994 0.15109685 + 1392100 -33.794951 -33.803418 0.0084674526 445.63448 0.6147406 + 1392200 -33.79434 -33.796477 0.0021376413 112.50215 0.6202716 + 1392300 -33.786386 -33.790846 0.0044600609 234.72903 0.6861537 + 1392400 -33.783255 -33.798542 0.015287126 804.54778 1.1430803 + 1392500 -33.790859 -33.801251 0.010392435 546.94458 0.90659556 + 1392600 -33.79426 -33.794559 0.00029955967 15.765558 0.36182525 + 1392700 -33.794671 -33.799593 0.0049215181 259.01511 0.25066307 + 1392800 -33.794289 -33.802501 0.0082117478 432.17696 0.080962542 + 1392900 -33.788548 -33.796899 0.0083511743 439.51486 -0.44096823 + 1393000 -33.786057 -33.786641 0.00058396217 30.733408 -1.1658662 + 1393100 -33.789922 -33.800656 0.0107332 564.87872 -0.98039349 + 1393200 -33.793695 -33.801427 0.0077316157 406.90804 -0.97270233 + 1393300 -33.79335 -33.796477 0.003127967 164.62211 -0.91831967 + 1393400 -33.792975 -33.795338 0.0023632285 124.37461 -0.49468365 + 1393500 -33.791084 -33.80337 0.012286564 646.63092 0.38625618 + 1393600 -33.791456 -33.798457 0.0070009658 368.45459 0.77839376 + 1393700 -33.793527 -33.795216 0.0016888968 88.885132 0.91995378 + 1393800 -33.795819 -33.799641 0.0038224352 201.17136 1.1357098 + 1393900 -33.795892 -33.803492 0.0076006286 400.01431 1.1220543 + 1394000 -33.790944 -33.795588 0.0046447036 244.44661 0.48543532 + 1394100 -33.787174 -33.79088 0.0037055339 195.01895 -0.43957319 + 1394200 -33.790341 -33.80044 0.010098195 531.45898 -0.85716946 + 1394300 -33.793506 -33.801631 0.0081251444 427.6191 -1.2830841 + 1394400 -33.793879 -33.795467 0.0015878177 83.565427 -1.5651926 + 1394500 -33.793144 -33.796854 0.0037095015 195.22776 -1.2244243 + 1394600 -33.791674 -33.802951 0.011277714 593.53602 -0.42802463 + 1394700 -33.791762 -33.798349 0.0065867817 346.65645 0.11428134 + 1394800 -33.79377 -33.795386 0.0016154177 85.017991 0.5555292 + 1394900 -33.795481 -33.80019 0.0047093497 247.84888 1.0760912 + 1395000 -33.795108 -33.803179 0.0080704889 424.74263 1.3202848 + 1395100 -33.791809 -33.794877 0.0030682062 161.47695 0.9294413 + 1395200 -33.787342 -33.792003 0.004661317 245.32096 0.41995716 + 1395300 -33.789641 -33.800391 0.010750151 565.77086 0.15407829 + 1395400 -33.793961 -33.801964 0.0080033666 421.21004 -0.35297297 + 1395500 -33.794411 -33.794871 0.00045984682 24.201328 -0.87929387 + 1395600 -33.792919 -33.798477 0.0055575196 292.4873 -0.82933374 + 1395700 -33.790927 -33.801737 0.010810011 568.92122 -0.57164999 + 1395800 -33.788663 -33.797145 0.0084816543 446.3819 -0.49686443 + 1395900 -33.792025 -33.792464 0.00043885985 23.096802 -0.37263319 + 1396000 -33.795465 -33.801948 0.0064830301 341.19609 0.1462088 + 1396100 -33.796087 -33.802189 0.0061022996 321.15858 0.36869665 + 1396200 -33.792851 -33.796563 0.0037123707 195.37876 0.35554554 + 1396300 -33.787851 -33.790508 0.0026565779 139.81332 0.38038777 + 1396400 -33.787359 -33.802845 0.015485493 814.98769 0.88706971 + 1396500 -33.791699 -33.798576 0.0068765493 361.90666 0.58711311 + 1396600 -33.793724 -33.795605 0.0018809892 98.994783 0.22273033 + 1396700 -33.795199 -33.79922 0.0040207429 211.60811 0.17001194 + 1396800 -33.794829 -33.803633 0.0088034894 463.31979 0.13124997 + 1396900 -33.790935 -33.795377 0.0044415443 233.75452 -0.33671313 + 1397000 -33.787133 -33.790639 0.0035066024 184.54936 -0.70619508 + 1397100 -33.789895 -33.799977 0.010082051 530.60934 -0.5399285 + 1397200 -33.794391 -33.802051 0.0076598953 403.13346 -0.58092689 + 1397300 -33.794752 -33.796249 0.0014975458 78.814501 -0.6533577 + 1397400 -33.793683 -33.797422 0.003738444 196.75097 -0.32106499 + 1397500 -33.791404 -33.802726 0.011322588 595.89769 0.30076368 + 1397600 -33.787685 -33.796461 0.0087765466 461.90182 0.57713275 + 1397700 -33.785167 -33.78784 0.0026730428 140.67986 0.67654583 + 1397800 -33.790951 -33.798479 0.0075274984 396.16553 1.1630821 + 1397900 -33.794302 -33.802895 0.0085934433 452.26526 1.2038894 + 1398000 -33.794674 -33.796951 0.0022761569 119.79211 0.68386269 + 1398100 -33.792654 -33.796011 0.0033573632 176.69503 0.220993 + 1398200 -33.786396 -33.800344 0.013947679 734.05392 -0.12502807 + 1398300 -33.787541 -33.799895 0.012354021 650.18112 -1.0361814 + 1398400 -33.793679 -33.794164 0.00048504478 25.527474 -1.7136958 + 1398500 -33.793655 -33.798811 0.0051554222 271.32527 -1.5036887 + 1398600 -33.792768 -33.802074 0.0093060108 489.76705 -0.98133787 + 1398700 -33.79024 -33.797602 0.0073618215 387.4461 -0.44735067 + 1398800 -33.790085 -33.791459 0.0013734661 72.284297 0.19166708 + 1398900 -33.793686 -33.801618 0.0079322146 417.46538 1.119303 + 1399000 -33.796481 -33.801959 0.0054782601 288.31594 1.3723979 + 1399100 -33.795071 -33.797645 0.0025737354 135.4534 1.1705076 + 1399200 -33.790459 -33.793121 0.0026625971 140.13011 0.74508451 + 1399300 -33.787388 -33.803174 0.015785509 830.77728 0.46139682 + 1399400 -33.791725 -33.798366 0.006640296 349.47285 -0.49924081 + 1399500 -33.793781 -33.795667 0.0018858479 99.250493 -1.1225985 + 1399600 -33.795046 -33.799215 0.0041689614 219.40872 -1.1451399 + 1399700 -33.793769 -33.803454 0.0096849518 509.71038 -0.90373097 + 1399800 -33.787859 -33.792726 0.0048674968 256.17202 -0.78423637 + 1399900 -33.786441 -33.790788 0.0043467318 228.76462 -0.16547246 + 1400000 -33.792132 -33.800908 0.0087753536 461.83903 0.67713004 + 1400100 -33.794079 -33.801915 0.0078356289 412.38216 0.96310044 + 1400200 -33.793986 -33.795128 0.0011414791 60.075025 0.81379636 + 1400300 -33.792455 -33.797138 0.0046830776 246.46619 0.80961434 + 1400400 -33.7863 -33.802097 0.015797567 831.41185 0.83865616 + 1400500 -33.783894 -33.793955 0.010061226 529.51332 -0.015198106 + 1400600 -33.792193 -33.793691 0.0014974896 78.811543 -0.68004097 + 1400700 -33.793778 -33.800197 0.006419198 337.83667 -0.6429334 + 1400800 -33.793689 -33.802717 0.0090274206 475.1051 -0.59165939 + 1400900 -33.792697 -33.795261 0.0025641137 134.94702 -0.74757446 + 1401000 -33.789411 -33.793689 0.0042771087 225.10041 -0.44832001 + 1401100 -33.787059 -33.800767 0.013707782 721.42835 0.34249964 + 1401200 -33.793398 -33.801136 0.0077381607 407.25249 0.54063436 + 1401300 -33.795656 -33.795983 0.00032653273 17.185127 0.4705952 + 1401400 -33.794727 -33.799737 0.0050106492 263.706 0.63314236 + 1401500 -33.791632 -33.802191 0.010559867 555.7564 0.69926434 + 1401600 -33.784996 -33.794304 0.0093075288 489.84694 0.21775226 + 1401700 -33.784775 -33.78626 0.0014847932 78.143342 -0.48188118 + 1401800 -33.793408 -33.801853 0.0084447932 444.44193 -0.33714094 + 1401900 -33.795376 -33.801649 0.0062727113 330.1272 -0.41876065 + 1402000 -33.794097 -33.796776 0.0026787355 140.97946 -0.59511435 + 1402100 -33.791344 -33.794176 0.0028318015 149.03519 -0.44527382 + 1402200 -33.787097 -33.803586 0.016489046 867.80376 0.3038101 + 1402300 -33.794 -33.798996 0.0049962348 262.94738 0.25703506 + 1402400 -33.796115 -33.797496 0.0013804154 72.65003 0.26060468 + 1402500 -33.795543 -33.799678 0.0041349965 217.62118 0.43503029 + 1402600 -33.791495 -33.803524 0.012028796 633.06479 0.58498026 + 1402700 -33.789371 -33.79305 0.0036790049 193.62274 0.11865721 + 1402800 -33.79057 -33.794068 0.0034985078 184.12335 -0.083167369 + 1402900 -33.797286 -33.802381 0.0050946749 268.1282 -0.025244277 + 1403000 -33.796698 -33.802465 0.0057670981 303.51723 -0.069340566 + 1403100 -33.793723 -33.794742 0.0010195272 53.656807 -0.34806948 + 1403200 -33.790477 -33.796224 0.0057469498 302.45684 -0.26671564 + 1403300 -33.789998 -33.802395 0.012396523 652.41795 0.066928275 + 1403400 -33.794087 -33.79918 0.0050926905 268.02376 -0.12202531 + 1403500 -33.797546 -33.798183 0.0006371711 33.533746 -0.1841168 + 1403600 -33.797197 -33.801584 0.0043865882 230.86223 0.041478436 + 1403700 -33.794756 -33.802853 0.0080963349 426.10289 0.20609013 + 1403800 -33.791823 -33.794977 0.0031540224 165.99339 0.054011652 + 1403900 -33.790077 -33.793573 0.0034961573 183.99964 0.12529711 + 1404000 -33.791616 -33.801458 0.0098426322 518.00895 0.42127756 + 1404100 -33.797304 -33.802352 0.0050481896 265.68171 0.30284872 + 1404200 -33.797361 -33.797846 0.00048514917 25.532968 0.083916766 + 1404300 -33.7948 -33.799334 0.0045346148 238.65273 0.054454035 + 1404400 -33.791549 -33.802219 0.010669736 561.5387 0.10900527 + 1404500 -33.790909 -33.797832 0.0069228152 364.34159 -0.24945586 + 1404600 -33.792328 -33.792792 0.00046384996 24.41201 -0.58797958 + 1404700 -33.792668 -33.801281 0.008613115 453.30056 -0.2896204 + 1404800 -33.793239 -33.80137 0.0081311687 427.93616 -0.20364326 + 1404900 -33.792697 -33.796324 0.003627036 190.88767 -0.31093589 + 1405000 -33.792909 -33.794962 0.00205236 108.01388 -0.13199402 + 1405100 -33.792729 -33.803435 0.010705801 563.43674 0.35343489 + 1405200 -33.796069 -33.8004 0.0043311795 227.94612 0.29895034 + 1405300 -33.796985 -33.79843 0.0014450161 76.049906 0.24378767 + 1405400 -33.796172 -33.799435 0.0032624385 171.69923 0.29123958 + 1405500 -33.789637 -33.803745 0.014108343 742.50952 0.4522424 + 1405600 -33.789894 -33.794058 0.0041637309 219.13345 -0.059729264 + 1405700 -33.791595 -33.79469 0.0030946466 162.86849 -0.30434926 + 1405800 -33.794007 -33.800792 0.0067849216 357.08437 -0.18813778 + 1405900 -33.794176 -33.802499 0.0083229922 438.03166 -0.15835175 + 1406000 -33.793778 -33.794959 0.0011805065 62.129004 -0.42118077 + 1406100 -33.792893 -33.79729 0.0043968655 231.40311 -0.22577769 + 1406200 -33.792659 -33.802228 0.009568365 503.57452 0.15460867 + 1406300 -33.792514 -33.799396 0.0068815356 362.16908 0.1401585 + 1406400 -33.79323 -33.794112 0.00088220239 46.429525 0.064605582 + 1406500 -33.794173 -33.800169 0.0059961405 315.57153 0.34903413 + 1406600 -33.796112 -33.802983 0.0068714292 361.63719 0.39860894 + 1406700 -33.796516 -33.798951 0.00243568 128.18766 0.19339625 + 1406800 -33.793675 -33.795712 0.0020366498 107.18706 0.017540972 + 1406900 -33.788543 -33.800753 0.012209805 642.59116 0.10735444 + 1407000 -33.789851 -33.800439 0.01058751 557.21123 -0.12406227 + 1407100 -33.793315 -33.794497 0.0011818616 62.200323 -0.56296166 + 1407200 -33.793957 -33.798539 0.0045814808 241.11925 -0.45374293 + 1407300 -33.793582 -33.802529 0.0089471155 470.87871 -0.16550772 + 1407400 -33.792461 -33.798572 0.00611135 321.6349 -0.18036148 + 1407500 -33.79174 -33.792517 0.00077768021 40.928616 -0.17593313 + 1407600 -33.789818 -33.8003 0.01048227 551.67251 0.40132299 + 1407700 -33.792037 -33.801209 0.0091723622 482.73324 0.5669834 + 1407800 -33.795024 -33.797889 0.0028640465 150.73221 0.4018824 + 1407900 -33.796306 -33.797682 0.0013759518 72.415114 0.35930526 + 1408000 -33.794422 -33.803457 0.009035266 475.51799 0.45370708 + 1408100 -33.78782 -33.796738 0.0089183166 469.36305 0.10966267 + 1408200 -33.787724 -33.791503 0.0037789093 198.88063 -0.5112537 + 1408300 -33.792013 -33.79693 0.0049171554 258.7855 -0.6101491 + 1408400 -33.793352 -33.803766 0.010414281 548.09432 -0.46011548 + 1408500 -33.793977 -33.796888 0.0029109031 153.19824 -0.6422779 + 1408600 -33.792761 -33.795716 0.0029555217 155.54647 -0.51347658 + 1408700 -33.790469 -33.799542 0.0090724708 477.47604 0.059337926 + 1408800 -33.783627 -33.801022 0.017395063 915.48667 0.67834626 + 1408900 -33.790562 -33.791646 0.0010847188 57.087785 0.55551827 + 1409000 -33.793442 -33.797903 0.0044604086 234.74732 0.8522073 + 1409100 -33.794403 -33.802393 0.0079903719 420.52614 0.95454974 + 1409200 -33.79319 -33.799663 0.0064727603 340.6556 0.60070343 + 1409300 -33.789182 -33.79032 0.0011378007 59.881434 -0.06345681 + 1409400 -33.784344 -33.797318 0.012973534 682.78554 -0.34796644 + 1409500 -33.791773 -33.802109 0.010336095 543.97948 -0.78751864 + 1409600 -33.793987 -33.797032 0.0030447124 160.2405 -1.1687317 + 1409700 -33.793789 -33.795844 0.0020547702 108.14072 -1.1185483 + 1409800 -33.792192 -33.802121 0.0099284707 522.52656 -0.50622531 + 1409900 -33.788971 -33.79948 0.010509169 553.08822 0.020506386 + 1410000 -33.788688 -33.790726 0.0020384542 107.28203 0.30239636 + 1410100 -33.79346 -33.798476 0.0050167559 264.02739 0.94216887 + 1410200 -33.795747 -33.802901 0.007153478 376.48117 1.2104079 + 1410300 -33.79462 -33.799118 0.0044979063 236.7208 0.94164481 + 1410400 -33.791016 -33.792164 0.0011478731 60.411535 0.40752231 + 1410500 -33.78462 -33.799369 0.014748805 776.21647 0.11732995 + 1410600 -33.792592 -33.801329 0.0087369757 459.81924 -0.63676338 + 1410700 -33.795379 -33.797958 0.0025797012 135.76737 -1.0832882 + 1410800 -33.794695 -33.796509 0.0018139314 95.465589 -1.1125015 + 1410900 -33.790748 -33.803343 0.012595029 662.86516 -0.56088248 + 1411000 -33.789472 -33.796957 0.0074843115 393.89264 -0.24257602 + 1411100 -33.79196 -33.79486 0.002900427 152.64688 0.063572426 + 1411200 -33.795963 -33.799438 0.0034755828 182.91682 0.50346734 + 1411300 -33.795736 -33.803849 0.0081126733 426.96276 0.8256082 + 1411400 -33.794643 -33.797102 0.0024591436 129.42253 0.61327705 + 1411500 -33.792884 -33.796056 0.0031720932 166.94444 0.4481618 + 1411600 -33.792571 -33.800015 0.007443608 391.75045 0.41353132 + 1411700 -33.79202 -33.802507 0.01048694 551.91829 0.13574968 + 1411800 -33.794267 -33.794955 0.00068839008 36.229356 -0.46027979 + 1411900 -33.797392 -33.800298 0.0029057834 152.92879 -0.49361827 + 1412000 -33.798028 -33.80282 0.004792006 252.199 -0.41671256 + 1412100 -33.794261 -33.800594 0.0063332867 333.31523 -0.32869779 + 1412200 -33.792159 -33.792744 0.00058515058 30.795953 -0.31182908 + 1412300 -33.791385 -33.799347 0.0079626308 419.06615 0.23551695 + 1412400 -33.79295 -33.802162 0.0092119253 484.81541 0.60932739 + 1412500 -33.795675 -33.798825 0.0031504017 165.80283 0.52834195 + 1412600 -33.798315 -33.799195 0.00087999589 46.313399 0.47804988 + 1412700 -33.79837 -33.8029 0.0045299189 238.40559 0.51875718 + 1412800 -33.792613 -33.801021 0.0084083798 442.52553 0.29411056 + 1412900 -33.790737 -33.793389 0.0026520759 139.57639 -0.46729553 + 1413000 -33.79144 -33.796252 0.0048122677 253.26536 -0.78333063 + 1413100 -33.794115 -33.802504 0.0083895133 441.5326 -0.81681983 + 1413200 -33.796129 -33.800591 0.0044615352 234.80662 -0.93737227 + 1413300 -33.796203 -33.796903 0.0007002015 36.85098 -0.85450502 + 1413400 -33.791482 -33.799714 0.0082326963 433.27946 -0.21319616 + 1413500 -33.787686 -33.800901 0.013214737 695.4798 0.69666031 + 1413600 -33.791781 -33.796593 0.0048111917 253.20873 1.0527499 + 1413700 -33.79468 -33.795856 0.0011761874 61.901695 1.226152 + 1413800 -33.794178 -33.802601 0.0084233995 443.316 1.4368761 + 1413900 -33.793388 -33.799989 0.0066009858 347.40399 1.0702838 + 1414000 -33.791738 -33.795362 0.0036239869 190.7272 0.28534788 + 1414100 -33.791833 -33.795821 0.0039878967 209.87945 -0.33727616 + 1414200 -33.794617 -33.803776 0.0091588849 482.02394 -0.64281779 + 1414300 -33.796939 -33.799594 0.0026551482 139.73808 -1.0839626 + 1414400 -33.795497 -33.797622 0.0021240951 111.78923 -1.1359072 + 1414500 -33.791514 -33.798067 0.0065531077 344.88421 -0.68825758 + 1414600 -33.788498 -33.80323 0.014732758 775.3719 0.071754304 + 1414700 -33.792071 -33.794066 0.0019947526 104.98205 0.27087073 + 1414800 -33.792781 -33.796915 0.0041338438 217.56051 0.72069224 + 1414900 -33.79343 -33.801091 0.0076613744 403.2113 1.1023866 + 1415000 -33.792618 -33.801131 0.0085133066 448.04773 1.1138653 + 1415100 -33.792307 -33.79289 0.00058361823 30.715307 0.60554307 + 1415200 -33.789953 -33.797952 0.0079988354 420.97157 0.41329924 + 1415300 -33.790861 -33.801601 0.010739684 565.21997 0.10634797 + 1415400 -33.79435 -33.799147 0.0047975062 252.48847 -0.50659722 + 1415500 -33.796211 -33.796985 0.00077360676 40.714234 -0.80715294 + 1415600 -33.795461 -33.801923 0.0064627637 340.12949 -0.62096586 + 1415700 -33.78836 -33.800034 0.011674257 614.40574 -0.38088665 + 1415800 -33.787329 -33.791795 0.0044662364 235.05404 -0.33447181 + 1415900 -33.79142 -33.795352 0.0039326733 206.97309 0.079337737 + 1416000 -33.793651 -33.802528 0.0088767835 467.1772 0.51198204 + 1416100 -33.794086 -33.800049 0.0059628397 313.81893 0.54854478 + 1416200 -33.793392 -33.794753 0.0013607093 71.612918 0.38924661 + 1416300 -33.789506 -33.798045 0.0085393093 449.41623 0.48904564 + 1416400 -33.782002 -33.800088 0.018085227 951.80937 0.54612859 + 1416500 -33.790225 -33.795839 0.0056141662 295.46856 -0.1377928 + 1416600 -33.793157 -33.794708 0.001550974 81.626378 -0.40180499 + 1416700 -33.793766 -33.802365 0.0085987814 452.54619 -0.19634812 + 1416800 -33.794331 -33.800652 0.006320298 332.63164 -0.26668362 + 1416900 -33.792361 -33.795656 0.0032953842 173.43313 -0.39220163 + 1417000 -33.788993 -33.793371 0.0043776829 230.39355 -0.17943724 + 1417100 -33.7871 -33.803527 0.016427036 864.54028 0.41835548 + 1417200 -33.794401 -33.798164 0.003763306 198.05944 0.23377287 + 1417300 -33.794935 -33.797321 0.0023858122 125.56317 0.22955984 + 1417400 -33.794505 -33.799519 0.0050142831 263.89725 0.34102871 + 1417500 -33.790782 -33.803182 0.012400548 652.62978 0.45459535 + 1417600 -33.786174 -33.789077 0.0029027018 152.76661 -0.073698721 + 1417700 -33.782256 -33.790917 0.0086609218 455.81659 -0.23000942 + 1417800 -33.792446 -33.800666 0.0082204918 432.63715 -0.14613105 + 1417900 -33.794301 -33.801638 0.0073367226 386.12516 -0.21232133 + 1418000 -33.794924 -33.795217 0.00029364075 15.454051 -0.44180677 + 1418100 -33.792797 -33.799589 0.0067916406 357.43799 -0.14743893 + 1418200 -33.788096 -33.800463 0.012367007 650.86454 0.24715427 + 1418300 -33.786857 -33.79555 0.0086931584 457.51317 0.2122279 + 1418400 -33.794655 -33.795562 0.00090653109 47.709923 0.22799003 + 1418500 -33.795355 -33.802055 0.0066998288 352.60601 0.48554105 + 1418600 -33.793996 -33.801231 0.0072351716 380.78063 0.4188234 + 1418700 -33.790173 -33.794218 0.0040447288 212.87047 0.10086681 + 1418800 -33.78741 -33.792351 0.0049413491 260.0588 -0.10987887 + 1418900 -33.791672 -33.802301 0.010629273 559.40915 -0.066680685 + 1419000 -33.796286 -33.800856 0.0045699361 240.51166 -0.26962856 + 1419100 -33.795696 -33.796866 0.0011698903 61.570282 -0.43251026 + 1419200 -33.79227 -33.798707 0.0064369269 338.76972 -0.21809801 + 1419300 -33.788377 -33.801651 0.013273916 698.59434 0.2107142 + 1419400 -33.790997 -33.796277 0.0052797899 277.87063 0.075603499 + 1419500 -33.795727 -33.796983 0.0012563404 66.120073 0.12239606 + 1419600 -33.796014 -33.802436 0.0064219808 337.98312 0.38617651 + 1419700 -33.794187 -33.801055 0.0068686628 361.4916 0.3422995 + 1419800 -33.790279 -33.79417 0.0038912721 204.79418 0.056169601 + 1419900 -33.789211 -33.793217 0.0040069078 210.87998 -0.031237817 + 1420000 -33.792411 -33.803538 0.011127597 585.63553 0.094019476 + 1420100 -33.796667 -33.800015 0.0033486597 176.23698 -0.16041171 + 1420200 -33.7957 -33.797723 0.0020226609 106.45084 -0.26893139 + 1420300 -33.79415 -33.798849 0.0046989321 247.30061 -0.16296697 + 1420400 -33.79059 -33.803572 0.012981982 683.23015 0.15116757 + 1420500 -33.79132 -33.79376 0.0024400177 128.41596 -0.10862797 + 1420600 -33.792571 -33.796474 0.0039031046 205.41691 -0.017346859 + 1420700 -33.798883 -33.80237 0.0034869973 183.51756 0.16647435 + 1420800 -33.797907 -33.802934 0.0050264524 264.53771 0.19587567 + 1420900 -33.794898 -33.795379 0.00048173255 25.353155 -0.047282586 + 1421000 -33.791229 -33.798003 0.0067739212 356.50543 0.066690291 + 1421100 -33.79039 -33.800839 0.010448323 549.8859 0.17437021 + 1421200 -33.792869 -33.799634 0.0067652938 356.05138 -0.06783032 + 1421300 -33.79707 -33.79735 0.00028057481 14.766402 -0.22791818 + 1421400 -33.796943 -33.802016 0.0050735586 267.01686 -0.063313683 + 1421500 -33.795487 -33.80203 0.0065435258 344.37993 0.018992374 + 1421600 -33.793514 -33.797552 0.00403815 212.52423 -0.043940902 + 1421700 -33.792426 -33.794566 0.0021405426 112.65485 -0.04981871 + 1421800 -33.791198 -33.802083 0.010884774 572.85596 0.32141919 + 1421900 -33.794311 -33.800642 0.0063313136 333.21139 0.28516789 + 1422000 -33.797053 -33.798424 0.001370627 72.134876 0.094561014 + 1422100 -33.797072 -33.800016 0.0029439352 154.93669 0.13152258 + 1422200 -33.793264 -33.802816 0.0095520129 502.71392 0.27196024 + 1422300 -33.78999 -33.796975 0.0069849247 367.61036 -0.055634667 + 1422400 -33.79108 -33.792961 0.0018809503 98.992738 -0.33783201 + 1422500 -33.792688 -33.800436 0.0077479761 407.76907 -0.14519553 + 1422600 -33.794261 -33.801756 0.0074946079 394.43453 -0.14885538 + 1422700 -33.795275 -33.798115 0.0028395096 149.44086 -0.25918301 + 1422800 -33.797036 -33.798537 0.0015007085 78.980951 -0.18949409 + 1422900 -33.79665 -33.803259 0.006608716 347.81083 0.072157794 + 1423000 -33.79323 -33.799601 0.0063716848 335.33609 0.19080708 + 1423100 -33.789415 -33.793587 0.0041725099 219.59548 0.15727739 + 1423200 -33.790596 -33.795444 0.0048478495 255.138 0.36608247 + 1423300 -33.793758 -33.803418 0.0096595308 508.37249 0.6324941 + 1423400 -33.79753 -33.799531 0.0020014007 105.33193 0.34788853 + 1423500 -33.799204 -33.800586 0.0013826589 72.768104 0.22828136 + 1423600 -33.801143 -33.802694 0.0015504004 81.596191 0.19634306 + 1423700 -33.799617 -33.803748 0.0041302197 217.36978 0.11041054 + 1423800 -33.797259 -33.799239 0.0019798666 104.19861 -0.21157313 + 1423900 -33.794384 -33.798679 0.0042949879 226.04138 -0.43828264 + 1424000 -33.791951 -33.799687 0.0077352384 407.0987 -0.55356037 + 1424100 -33.788984 -33.799496 0.010511466 553.20906 -0.64254814 + 1424200 -33.787938 -33.78853 0.00059180072 31.145944 -0.92804571 + 1424300 -33.786883 -33.795933 0.0090496673 476.27592 -0.48313134 + 1424400 -33.79327 -33.801216 0.0079455546 418.16745 -0.10207832 + 1424500 -33.79542 -33.800595 0.0051754923 272.38154 0.032595066 + 1424600 -33.795948 -33.797589 0.0016413105 86.380706 0.10345862 + 1424700 -33.793859 -33.801775 0.0079159076 416.60716 0.47767786 + 1424800 -33.787037 -33.79951 0.012472167 656.39905 0.74508758 + 1424900 -33.788078 -33.793242 0.0051635739 271.75429 0.49515836 + 1425000 -33.792638 -33.794757 0.0021182175 111.4799 0.44931503 + 1425100 -33.792996 -33.800664 0.0076673548 403.52605 0.53888785 + 1425200 -33.792378 -33.799764 0.0073863766 388.73841 0.27688423 + 1425300 -33.793266 -33.797307 0.0040405527 212.65068 -0.095886188 + 1425400 -33.796825 -33.800936 0.0041112429 216.37104 -0.22964201 + 1425500 -33.799026 -33.803095 0.0040695023 214.17428 -0.28866185 + 1425600 -33.796379 -33.800147 0.0037677675 198.29424 -0.34372951 + 1425700 -33.792695 -33.794058 0.0013620999 71.686102 -0.388311 + 1425800 -33.789704 -33.798987 0.0092825356 488.53157 0.038273669 + 1425900 -33.789466 -33.799577 0.010111386 532.15324 0.34277136 + 1426000 -33.792714 -33.797237 0.0045236571 238.07604 0.29766504 + 1426100 -33.79569 -33.797571 0.0018809178 98.991026 0.33524974 + 1426200 -33.795834 -33.803221 0.0073869534 388.76877 0.50991914 + 1426300 -33.793252 -33.79964 0.0063880518 336.19747 0.32827152 + 1426400 -33.784864 -33.792188 0.007324191 385.46564 -0.090184337 + 1426500 -33.788919 -33.793778 0.0048596262 255.75779 -0.36025258 + 1426600 -33.791601 -33.802078 0.010476397 551.36341 -0.32423309 + 1426700 -33.793028 -33.796268 0.003240147 170.52605 -0.56962982 + 1426800 -33.792217 -33.79673 0.0045133952 237.53596 -0.52788888 + 1426900 -33.794646 -33.800059 0.0054134425 284.90465 -0.27352988 + 1427000 -33.797893 -33.803644 0.005751004 302.67021 -0.065532039 + 1427100 -33.798024 -33.799352 0.0013280737 69.895333 -0.061139152 + 1427200 -33.794156 -33.79856 0.0044044363 231.80155 0.16761526 + 1427300 -33.791679 -33.799566 0.0078871434 415.09332 0.59626669 + 1427400 -33.790767 -33.799967 0.0092006304 484.22097 0.76894245 + 1427500 -33.791926 -33.792645 0.0007191357 37.847471 0.55292389 + 1427600 -33.793466 -33.799268 0.0058022694 305.36826 0.69109026 + 1427700 -33.797404 -33.802332 0.0049287605 259.39627 0.5867111 + 1427800 -33.796942 -33.801154 0.0042119741 221.67244 0.31086042 + 1427900 -33.793193 -33.796252 0.003058334 160.95739 -0.097247279 + 1428000 -33.788275 -33.799927 0.011651085 613.18622 -0.35755651 + 1428100 -33.790825 -33.799454 0.0086298913 454.18348 -0.79312467 + 1428200 -33.791586 -33.794693 0.0031070483 163.52118 -1.1484447 + 1428300 -33.791354 -33.794583 0.0032297813 169.98051 -1.0687492 + 1428400 -33.790043 -33.800894 0.010850243 571.03861 -0.51289722 + 1428500 -33.793767 -33.800817 0.0070500507 371.03788 -0.17523614 + 1428600 -33.797118 -33.799102 0.0019839512 104.41358 0.0045169807 + 1428700 -33.797167 -33.801104 0.003937529 207.22864 0.33445009 + 1428800 -33.793995 -33.802033 0.0080377927 423.02186 0.69255881 + 1428900 -33.789377 -33.79643 0.0070532319 371.2053 0.77869055 + 1429000 -33.790216 -33.791769 0.001553206 81.743847 0.69880705 + 1429100 -33.790697 -33.799449 0.0087518368 460.60137 0.90609725 + 1429200 -33.792892 -33.799932 0.0070399297 370.50522 0.70385872 + 1429300 -33.796617 -33.799542 0.0029252072 153.95105 0.32642442 + 1429400 -33.79836 -33.800157 0.0017969555 94.572164 0.11009173 + 1429500 -33.79684 -33.80364 0.0068002331 357.8902 0.028186414 + 1429600 -33.79519 -33.800399 0.0052091565 274.15326 -0.29756683 + 1429700 -33.794098 -33.797663 0.0035644092 187.59168 -0.63465284 + 1429800 -33.793406 -33.796731 0.00332449 174.96494 -0.72259955 + 1429900 -33.78869 -33.801639 0.012949119 681.50058 -0.43968552 + 1430000 -33.786253 -33.790959 0.0047058202 247.66312 -0.56712709 + 1430100 -33.790585 -33.795543 0.0049582802 260.94986 -0.27477236 + 1430200 -33.795569 -33.800401 0.0048318509 254.296 0.031863645 + 1430300 -33.794775 -33.803262 0.0084867642 446.65083 0.2701085 + 1430400 -33.793811 -33.796333 0.0025223487 132.74896 0.20357453 + 1430500 -33.791291 -33.797606 0.0063154801 332.37808 0.37110504 + 1430600 -33.790502 -33.79936 0.0088574315 466.15872 0.53542319 + 1430700 -33.790933 -33.799107 0.0081746404 430.22403 0.4473301 + 1430800 -33.793582 -33.794141 0.00055885714 29.412153 0.12796207 + 1430900 -33.794571 -33.799954 0.0053834023 283.32366 0.17394552 + 1431000 -33.795984 -33.8022 0.0062163389 327.16037 0.13677124 + 1431100 -33.796701 -33.800983 0.0042827018 225.39477 -0.058802735 + 1431200 -33.796746 -33.79881 0.0020641007 108.63178 -0.22487441 + 1431300 -33.793735 -33.801549 0.0078134926 411.21714 -0.11260622 + 1431400 -33.78946 -33.799466 0.01000654 526.63528 -0.10935206 + 1431500 -33.789223 -33.792827 0.0036039716 189.67381 -0.36854774 + 1431600 -33.791997 -33.794979 0.0029820033 156.94017 -0.27302585 + 1431700 -33.795352 -33.800841 0.0054895845 288.91193 -0.048134574 + 1431800 -33.79496 -33.800771 0.0058114709 305.85253 0.032615278 + 1431900 -33.793062 -33.797894 0.0048321288 254.31063 0.0595688 + 1432000 -33.792631 -33.800452 0.0078205974 411.59106 0.26336182 + 1432100 -33.796932 -33.801925 0.0049926853 262.76058 0.30357744 + 1432200 -33.797225 -33.799883 0.0026583344 139.90577 0.2120172 + 1432300 -33.794687 -33.79549 0.00080342697 42.283645 0.074774704 + 1432400 -33.791067 -33.800508 0.0094412751 496.88589 0.22870977 + 1432500 -33.791557 -33.800441 0.0088837092 467.54169 0.1143713 + 1432600 -33.794944 -33.799149 0.0042043314 221.27021 -0.14799224 + 1432700 -33.79732 -33.798899 0.0015789352 83.097951 -0.22537513 + 1432800 -33.796111 -33.803129 0.0070181081 369.35677 -0.068044795 + 1432900 -33.788879 -33.796689 0.0078098106 411.02336 -0.050392942 + 1433000 -33.788732 -33.794335 0.0056031359 294.88804 -0.12589679 + 1433100 -33.79309 -33.796463 0.0033733473 177.53626 -0.015811217 + 1433200 -33.79437 -33.802811 0.0084412329 444.25456 0.22198481 + 1433300 -33.794725 -33.797818 0.0030925797 162.75971 0.092230847 + 1433400 -33.790202 -33.796531 0.0063287329 333.07557 0.10255912 + 1433500 -33.787 -33.79716 0.010160222 534.72344 0.27477036 + 1433600 -33.793341 -33.802314 0.0089728812 472.23474 0.25939106 + 1433700 -33.795163 -33.796418 0.0012546544 66.031341 -0.011592547 + 1433800 -33.793384 -33.797763 0.0043790569 230.46586 0.01809917 + 1433900 -33.790362 -33.799798 0.0094360817 496.61256 0.16626289 + 1434000 -33.78921 -33.800397 0.011187448 588.78541 0.10937792 + 1434100 -33.796432 -33.797521 0.0010889117 57.30845 -0.15970451 + 1434200 -33.796888 -33.800671 0.0037830202 199.09698 -0.06423397 + 1434300 -33.794563 -33.801738 0.0071745835 377.59193 0.053621335 + 1434400 -33.79028 -33.79781 0.0075298005 396.28669 0.025305636 + 1434500 -33.790819 -33.793839 0.003019912 158.93528 -0.083146896 + 1434600 -33.792556 -33.800084 0.0075280812 396.1962 0.13668958 + 1434700 -33.793277 -33.801088 0.007811142 411.09344 0.20533442 + 1434800 -33.792917 -33.796113 0.0031965455 168.23134 0.027353437 + 1434900 -33.792054 -33.796254 0.0041999007 221.03703 0.036978268 + 1435000 -33.791768 -33.801056 0.0092874156 488.7884 0.24733271 + 1435100 -33.794582 -33.801037 0.0064548417 339.71256 0.13924118 + 1435200 -33.796715 -33.797996 0.0012808485 67.409912 -0.053157612 + 1435300 -33.796357 -33.800753 0.0043958072 231.34741 0.035788905 + 1435400 -33.791933 -33.801301 0.0093678612 493.02218 0.15223947 + 1435500 -33.788244 -33.79713 0.0088863296 467.6796 -0.013249975 + 1435600 -33.791277 -33.79273 0.0014529178 76.465767 -0.215696 + 1435700 -33.792113 -33.800466 0.0083530072 439.61132 0.025422093 + 1435800 -33.792719 -33.799514 0.0067942666 357.57619 0.022609878 + 1435900 -33.791992 -33.797258 0.0052658572 277.13737 -0.053434624 + 1436000 -33.793719 -33.79655 0.0028306299 148.97352 -0.050250938 + 1436100 -33.798641 -33.803679 0.005037926 265.14155 0.10206942 + 1436200 -33.798715 -33.801407 0.0026925222 141.70504 0.05683695 + 1436300 -33.795164 -33.798529 0.003364325 177.06142 -0.012605811 + 1436400 -33.793059 -33.796983 0.0039245795 206.54712 0.019468914 + 1436500 -33.790673 -33.802842 0.012168676 640.42654 0.2692811 + 1436600 -33.79146 -33.794567 0.0031068728 163.51195 -0.035968321 + 1436700 -33.792824 -33.796744 0.0039196494 206.28765 -0.036613188 + 1436800 -33.79667 -33.800657 0.0039872007 209.84281 0.071283109 + 1436900 -33.796446 -33.803123 0.0066766847 351.38796 0.13035165 + 1437000 -33.793134 -33.796285 0.0031507261 165.8199 -0.026178729 + 1437100 -33.787446 -33.796447 0.0090009331 473.71108 0.065719008 + 1437200 -33.79103 -33.799421 0.0083911759 441.6201 0.14279902 + 1437300 -33.791762 -33.798852 0.0070905888 373.17136 0.080919324 + 1437400 -33.791685 -33.792845 0.0011600954 61.054784 -0.14070023 + 1437500 -33.790146 -33.798324 0.0081777392 430.38712 0.073550634 + 1437600 -33.793355 -33.801701 0.0083452159 439.20127 0.17587847 + 1437700 -33.797299 -33.800888 0.0035885991 188.86477 0.0095989213 + 1437800 -33.797331 -33.799272 0.0019407433 102.13959 -0.048098425 + 1437900 -33.79479 -33.801588 0.0067976909 357.75641 0.10986035 + 1438000 -33.791124 -33.800226 0.009101651 479.01177 0.12142733 + 1438100 -33.791136 -33.794178 0.0030418932 160.09213 -0.092702909 + 1438200 -33.791147 -33.795428 0.0042809874 225.30455 -0.016008175 + 1438300 -33.791592 -33.800459 0.0088662169 466.62109 0.16831189 + 1438400 -33.795027 -33.800763 0.0057356375 301.86149 0.12005594 + 1438500 -33.797759 -33.799166 0.001407351 74.067628 0.017836384 + 1438600 -33.797239 -33.801785 0.0045458807 239.24565 0.095146417 + 1438700 -33.793353 -33.8017 0.008347021 439.29627 0.20007334 + 1438800 -33.789149 -33.797246 0.0080970376 426.13987 0.056276899 + 1438900 -33.790987 -33.792598 0.0016109443 84.782561 -0.19175801 + 1439000 -33.791247 -33.79968 0.0084327891 443.81017 0.040699077 + 1439100 -33.791946 -33.798326 0.0063806034 335.80546 0.012299107 + 1439200 -33.791884 -33.797315 0.0054316506 285.86293 -0.098595775 + 1439300 -33.795631 -33.79852 0.0028893584 152.06436 -0.073737304 + 1439400 -33.797516 -33.803793 0.0062770532 330.35571 0.08077751 + 1439500 -33.797153 -33.800678 0.0035248782 185.5112 0.0017838553 + 1439600 -33.790586 -33.796289 0.0057028973 300.1384 -0.014105989 + 1439700 -33.789931 -33.795099 0.0051678173 271.97761 0.06580488 + 1439800 -33.790426 -33.801218 0.01079204 567.97546 0.27420566 + 1439900 -33.792243 -33.794642 0.0023997607 126.29727 0.061588418 + 1440000 -33.793015 -33.797274 0.0042590728 224.1512 0.10388582 + 1440100 -33.796948 -33.801114 0.0041666994 219.28967 0.18959733 + 1440200 -33.797505 -33.803292 0.0057867986 304.55405 0.21414892 + 1440300 -33.795306 -33.798571 0.0032652216 171.8457 0.0379908 + 1440400 -33.788289 -33.797668 0.0093783165 493.57243 0.041000271 + 1440500 -33.79074 -33.798699 0.0079587804 418.86351 -0.016541032 + 1440600 -33.791407 -33.797404 0.0059975771 315.64713 -0.16157756 + 1440700 -33.790694 -33.792067 0.0013729708 72.258227 -0.32259463 + 1440800 -33.788757 -33.797727 0.0089703137 472.09961 -0.065336363 + 1440900 -33.794065 -33.80189 0.0078255283 411.85057 0.043025224 + 1441000 -33.797511 -33.801193 0.0036826017 193.81204 -0.010838247 + 1441100 -33.79671 -33.799553 0.0028432226 149.63627 -0.014843616 + 1441200 -33.793966 -33.801386 0.0074196776 390.49101 0.16262189 + 1441300 -33.790446 -33.799731 0.0092851998 488.67178 0.26440163 + 1441400 -33.78885 -33.79226 0.0034102313 179.47743 0.046045966 + 1441500 -33.784346 -33.790809 0.0064623064 340.10542 0.12493638 + 1441600 -33.782812 -33.797055 0.014243423 749.61864 0.4995437 + 1441700 -33.790996 -33.798782 0.0077855774 409.74799 0.30628668 + 1441800 -33.793659 -33.796089 0.0024302544 127.90212 0.11614437 + 1441900 -33.794864 -33.801144 0.006280037 330.51275 0.22231837 + 1442000 -33.796493 -33.80232 0.0058269799 306.66875 0.16223713 + 1442100 -33.796929 -33.800759 0.0038302046 201.58025 -0.010348458 + 1442200 -33.79564 -33.796843 0.0012028874 63.306889 -0.17613341 + 1442300 -33.79008 -33.800936 0.010856146 571.34929 -0.043189299 + 1442400 -33.789335 -33.797596 0.0082615768 434.79942 -0.19007718 + 1442500 -33.791496 -33.796301 0.0048049451 252.87998 -0.38021937 + 1442600 -33.795705 -33.797474 0.0017690909 93.105675 -0.37764609 + 1442700 -33.795785 -33.803066 0.0072804892 383.16565 -0.12026772 + 1442800 -33.795227 -33.79972 0.004493718 236.50037 -0.086882229 + 1442900 -33.793533 -33.798423 0.0048903601 257.37529 -0.003920774 + 1443000 -33.793452 -33.798018 0.0045659901 240.30398 0.1918283 + 1443100 -33.792015 -33.802624 0.010608725 558.32774 0.48591608 + 1443200 -33.79182 -33.794907 0.0030868311 162.45717 0.31181248 + 1443300 -33.78998 -33.795221 0.0052413861 275.84947 0.33420418 + 1443400 -33.791051 -33.797993 0.0069418673 365.34428 0.41820164 + 1443500 -33.794211 -33.802139 0.0079278312 417.23468 0.37141357 + 1443600 -33.796798 -33.798198 0.0013995563 73.6574 0.095961343 + 1443700 -33.79588 -33.800126 0.0042464377 223.48623 0.048086086 + 1443800 -33.788175 -33.800165 0.011990171 631.03199 0.11545425 + 1443900 -33.788198 -33.7993 0.011102392 584.30899 -0.14042587 + 1444000 -33.792887 -33.794579 0.0016916843 89.031838 -0.50231141 + 1444100 -33.79322 -33.798475 0.0052553909 276.58653 -0.35399847 + 1444200 -33.791906 -33.800231 0.0083248464 438.12924 -0.12924709 + 1444300 -33.786516 -33.795688 0.0091721419 482.72165 -0.034706915 + 1444400 -33.787165 -33.79316 0.0059944058 315.48023 0.13134298 + 1444500 -33.794332 -33.800548 0.0062157949 327.13174 0.40777052 + 1444600 -33.794968 -33.8013 0.0063317704 333.23543 0.4490137 + 1444700 -33.793307 -33.796203 0.0028950371 152.36322 0.26950648 + 1444800 -33.788779 -33.79566 0.0068815858 362.17172 0.20141183 + 1444900 -33.789279 -33.799874 0.010594839 557.59693 0.17795225 + 1445000 -33.795872 -33.801077 0.0052049009 273.92929 -0.066255392 + 1445100 -33.796145 -33.797275 0.0011297832 59.459484 -0.26747718 + 1445200 -33.793225 -33.800069 0.0068439427 360.1906 -0.14399968 + 1445300 -33.790163 -33.800525 0.01036195 545.34019 0.032308393 + 1445400 -33.792926 -33.799213 0.0062876113 330.91137 -0.067585254 + 1445500 -33.797327 -33.797902 0.00057482432 30.252491 -0.13623181 + 1445600 -33.796302 -33.801834 0.0055316814 291.12746 0.09772055 + 1445700 -33.793319 -33.800006 0.0066873965 351.95171 0.2121316 + 1445800 -33.790779 -33.797509 0.0067297524 354.18086 0.20379904 + 1445900 -33.792875 -33.795846 0.0029708371 156.35251 0.21886105 + 1446000 -33.793707 -33.802999 0.0092911684 488.9859 0.41995722 + 1446100 -33.79446 -33.798841 0.0043808055 230.55788 0.21992758 + 1446200 -33.79309 -33.797043 0.003953176 208.05213 0.038533456 + 1446300 -33.79261 -33.796514 0.003903852 205.45625 -0.076128743 + 1446400 -33.789848 -33.802776 0.01292751 680.36333 0.017249456 + 1446500 -33.789018 -33.793647 0.0046285063 243.59416 -0.37886627 + 1446600 -33.791029 -33.79599 0.0049614272 261.11549 -0.488403 + 1446700 -33.795225 -33.799931 0.0047056403 247.65365 -0.36709281 + 1446800 -33.795457 -33.802647 0.0071906135 378.43558 -0.19753036 + 1446900 -33.793631 -33.796442 0.0028112762 147.95496 -0.22720476 + 1447000 -33.786084 -33.795692 0.0096083359 505.67815 0.15695454 + 1447100 -33.789997 -33.799693 0.0096956854 510.27528 0.58917017 + 1447200 -33.793297 -33.799527 0.0062297059 327.86387 0.6099455 + 1447300 -33.793103 -33.794441 0.0013380303 70.41934 0.46954722 + 1447400 -33.790966 -33.798117 0.0071507863 376.3395 0.56444274 + 1447500 -33.789263 -33.800896 0.011633148 612.24219 0.5174333 + 1447600 -33.795113 -33.799572 0.0044593956 234.69401 0.10664209 + 1447700 -33.79729 -33.799334 0.0020433784 107.54118 -0.10170463 + 1447800 -33.796321 -33.801702 0.0053811748 283.20643 -0.11690398 + 1447900 -33.791979 -33.800999 0.0090194201 474.68404 -0.15094272 + 1448000 -33.790498 -33.793806 0.0033076307 174.07765 -0.47572378 + 1448100 -33.790639 -33.796044 0.0054050375 284.4623 -0.42940001 + 1448200 -33.791772 -33.799932 0.0081598748 429.44693 -0.20512968 + 1448300 -33.792813 -33.800069 0.0072567619 381.91691 -0.15815352 + 1448400 -33.795784 -33.797036 0.0012519323 65.888081 -0.18721547 + 1448500 -33.798584 -33.802039 0.0034550577 181.8366 0.011936821 + 1448600 -33.798186 -33.802272 0.0040863154 215.05913 0.11495395 + 1448700 -33.795005 -33.800524 0.0055190177 290.46098 0.1700362 + 1448800 -33.794251 -33.795946 0.0016948411 89.197975 0.11719793 + 1448900 -33.792513 -33.801746 0.0092334784 485.94973 0.37242921 + 1449000 -33.792318 -33.798699 0.0063810375 335.82831 0.33814278 + 1449100 -33.789227 -33.795876 0.0066486692 349.91353 0.19495038 + 1449200 -33.788576 -33.791793 0.003216751 169.29473 0.048390272 + 1449300 -33.791085 -33.802374 0.011288917 594.12563 0.27734645 + 1449400 -33.7953 -33.798532 0.0032322529 170.11059 0.025675683 + 1449500 -33.794634 -33.79832 0.0036862808 194.00567 -0.055974948 + 1449600 -33.792726 -33.797441 0.0047147241 248.13172 0.0047615758 + 1449700 -33.78213 -33.803323 0.021192676 1115.3516 0.38879285 + 1449800 -33.791211 -33.795167 0.0039560161 208.2016 -0.061025949 + 1449900 -33.792548 -33.797547 0.0049993634 263.11203 -0.024299834 + 1450000 -33.794049 -33.799165 0.0051161033 269.25596 0.051325548 + 1450100 -33.793109 -33.801526 0.008417374 442.99888 0.10720578 + 1450200 -33.791284 -33.793065 0.0017807168 93.717536 -0.14262226 + 1450300 -33.786657 -33.795584 0.0089273561 469.83879 -0.046402894 + 1450400 -33.790177 -33.799416 0.0092393098 486.25663 0.049999397 + 1450500 -33.795009 -33.800732 0.0057221572 301.15203 -0.053572016 + 1450600 -33.79535 -33.796943 0.0015928532 83.830444 -0.18669357 + 1450700 -33.79338 -33.800511 0.0071308629 375.29095 0.017314506 + 1450800 -33.789894 -33.800952 0.01105827 581.98688 0.21348716 + 1450900 -33.789474 -33.79638 0.006905509 363.43078 0.095091643 + 1451000 -33.794712 -33.796939 0.002227297 117.22065 0.068547502 + 1451100 -33.795786 -33.80077 0.0049836442 262.28475 0.22120822 + 1451200 -33.793371 -33.800279 0.0069079477 363.55912 0.24065073 + 1451300 -33.788968 -33.793347 0.0043784494 230.43388 0.041644246 + 1451400 -33.789403 -33.796788 0.0073843266 388.63052 0.081965306 + 1451500 -33.792423 -33.801267 0.0088442419 465.46456 0.14636713 + 1451600 -33.794432 -33.800635 0.0062023831 326.42589 0.01146512 + 1451700 -33.795331 -33.796567 0.0012362265 65.061499 -0.17593204 + 1451800 -33.793244 -33.800366 0.0071220619 374.82777 -0.023216871 + 1451900 -33.787291 -33.798438 0.011146276 586.61854 0.10660268 + 1452000 -33.78791 -33.796318 0.008408269 442.5197 -0.073658518 + 1452100 -33.793206 -33.794453 0.0012466458 65.609858 -0.20246973 + 1452200 -33.793407 -33.802074 0.0086673457 456.15467 0.06215931 + 1452300 -33.793608 -33.799142 0.0055338736 291.24283 0.0033898089 + 1452400 -33.791231 -33.797152 0.0059214007 311.63804 -0.063403488 + 1452500 -33.789278 -33.793229 0.0039510261 207.93898 -0.070058328 + 1452600 -33.789295 -33.803648 0.014353118 755.39179 0.27984198 + 1452700 -33.795582 -33.798699 0.0031175418 164.07344 0.037083866 + 1452800 -33.795519 -33.798904 0.0033850204 178.15061 0.0069335134 + 1452900 -33.794647 -33.798122 0.0034747859 182.87488 0.063882561 + 1453000 -33.786884 -33.803101 0.016216821 853.4768 0.39365298 + 1453100 -33.788312 -33.790962 0.0026501761 139.4764 -0.020446023 + 1453200 -33.789612 -33.79631 0.0066978157 352.50006 0.06505362 + 1453300 -33.793332 -33.799298 0.0059660734 313.98912 0.1733963 + 1453400 -33.794482 -33.802598 0.0081156867 427.12135 0.19189967 + 1453500 -33.795958 -33.796747 0.00078906634 41.527858 -0.047461665 + 1453600 -33.795229 -33.800427 0.0051980406 273.56824 0.055138007 + 1453700 -33.793148 -33.800638 0.0074903168 394.20869 0.12823113 + 1453800 -33.788858 -33.798857 0.0099991421 526.24593 0.06876305 + 1453900 -33.790276 -33.791576 0.0013001591 68.426215 -0.22333507 + 1454000 -33.793955 -33.800442 0.0064869039 341.39997 -0.033587374 + 1454100 -33.796006 -33.801452 0.0054465152 286.64524 -0.0096850986 + 1454200 -33.794609 -33.798755 0.0041455704 218.17767 -0.083303292 + 1454300 -33.793113 -33.796086 0.0029725868 156.44459 -0.10796297 + 1454400 -33.79226 -33.801515 0.0092552542 487.09577 0.16538055 + 1454500 -33.793088 -33.800636 0.0075479854 397.24374 0.17526392 + 1454600 -33.793353 -33.796181 0.0028280329 148.83685 0.024984583 + 1454700 -33.793126 -33.797785 0.0046589064 245.19409 0.13211332 + 1454800 -33.792403 -33.801268 0.0088651307 466.56392 0.31775861 + 1454900 -33.788896 -33.797391 0.0084944289 447.05422 0.22290813 + 1455000 -33.788832 -33.791617 0.0027857528 146.61168 0.0024234705 + 1455100 -33.793025 -33.800284 0.0072585273 382.00982 0.18710024 + 1455200 -33.795631 -33.80139 0.0057596764 303.12663 0.15773648 + 1455300 -33.794698 -33.798984 0.0042857889 225.55725 0.021147932 + 1455400 -33.79183 -33.794288 0.0024585429 129.39092 -0.09747486 + 1455500 -33.782562 -33.801385 0.01882331 990.65401 0.28394754 + 1455600 -33.789539 -33.797376 0.0078366706 412.43699 -0.013121745 + 1455700 -33.79169 -33.796698 0.0050080997 263.57182 -0.16986789 + 1455800 -33.794141 -33.796677 0.0025361348 133.47451 -0.16685078 + 1455900 -33.794214 -33.803063 0.0088486198 465.69497 0.046702463 + 1456000 -33.794084 -33.797266 0.0031814938 167.43918 -0.083901052 + 1456100 -33.788182 -33.795455 0.0072729723 382.77005 -0.044936645 + 1456200 -33.788023 -33.795278 0.0072547067 381.80874 0.10890698 + 1456300 -33.793567 -33.803614 0.010046994 528.76435 0.27275139 + 1456400 -33.795653 -33.797005 0.0013515525 71.131004 0.030580094 + 1456500 -33.793874 -33.798914 0.005039701 265.23497 0.082009648 + 1456600 -33.791828 -33.798576 0.0067481076 355.14688 0.18098033 + 1456700 -33.784519 -33.800648 0.016129343 848.87293 0.28138227 + 1456800 -33.786798 -33.787563 0.0007644291 40.231222 -0.24275742 + 1456900 -33.792997 -33.799594 0.0065974789 347.21943 -0.025960596 + 1457000 -33.795083 -33.800692 0.0056088025 295.18627 0.022657803 + 1457100 -33.793584 -33.800316 0.0067317841 354.28779 0.0049683878 + 1457200 -33.791268 -33.792771 0.0015028816 79.095319 -0.14040647 + 1457300 -33.786962 -33.80028 0.013317423 700.88408 0.24841822 + 1457400 -33.793953 -33.800689 0.0067354948 354.48308 0.20395965 + 1457500 -33.795942 -33.799607 0.0036646312 192.86627 0.083476145 + 1457600 -33.79548 -33.797227 0.0017463685 91.909816 0.0079152989 + 1457700 -33.791805 -33.801884 0.01007829 530.41143 0.20187101 + 1457800 -33.788796 -33.797406 0.0086096443 453.1179 0.047086893 + 1457900 -33.790304 -33.794483 0.0041788259 219.92788 -0.22939267 + 1458000 -33.796321 -33.799695 0.0033734433 177.54131 -0.19429923 + 1458100 -33.797043 -33.802768 0.0057252607 301.31536 -0.089170431 + 1458200 -33.794529 -33.799431 0.0049020601 257.99105 -0.11952562 + 1458300 -33.791298 -33.794602 0.0033043284 173.90386 -0.12546089 + 1458400 -33.789722 -33.799367 0.0096450539 507.61058 0.22298693 + 1458500 -33.793848 -33.800906 0.0070581847 371.46597 0.31049737 + 1458600 -33.796505 -33.799484 0.0029789645 156.78025 0.21766869 + 1458700 -33.796276 -33.797917 0.0016416072 86.396322 0.18043443 + 1458800 -33.794133 -33.8023 0.0081668383 429.81341 0.3373215 + 1458900 -33.793388 -33.799155 0.0057678904 303.55892 0.19120424 + 1459000 -33.792039 -33.797126 0.0050861207 267.67799 -0.016835622 + 1459100 -33.793328 -33.797009 0.0036812704 193.74198 -0.097575853 + 1459200 -33.796658 -33.803541 0.0068820343 362.19532 -0.020673631 + 1459300 -33.798068 -33.799974 0.0019056959 100.29507 -0.17231342 + 1459400 -33.794863 -33.798783 0.0039197266 206.29172 -0.15980444 + 1459500 -33.791646 -33.797007 0.00536069 282.12833 -0.010934059 + 1459600 -33.790589 -33.803172 0.012582822 662.22269 0.2634047 + 1459700 -33.793801 -33.795168 0.0013667121 71.92884 0.022203527 + 1459800 -33.794834 -33.799531 0.0046973717 247.21848 0.14222421 + 1459900 -33.79774 -33.80109 0.003350384 176.32772 0.18714225 + 1460000 -33.799272 -33.80317 0.0038981785 205.15766 0.17412269 + 1460100 -33.798895 -33.799356 0.00046135388 24.280643 0.019287428 + 1460200 -33.793616 -33.800618 0.0070018295 368.50004 0.062248526 + 1460300 -33.79263 -33.800013 0.0073829539 388.55828 0.012882458 + 1460400 -33.792278 -33.800239 0.0079613305 418.99772 -0.12149163 + 1460500 -33.794754 -33.795326 0.00057182705 30.094747 -0.34415684 + 1460600 -33.795642 -33.801363 0.0057208746 301.08453 -0.14479385 + 1460700 -33.796764 -33.800976 0.0042124028 221.695 -0.075532274 + 1460800 -33.793304 -33.798829 0.0055246367 290.7567 0.0082615161 + 1460900 -33.789228 -33.793536 0.0043077302 226.712 0.14459372 + 1461000 -33.790806 -33.801849 0.011043464 581.20766 0.57309228 + 1461100 -33.795095 -33.800171 0.0050761193 267.15163 0.51596488 + 1461200 -33.794692 -33.797703 0.003010811 158.4563 0.37808593 + 1461300 -33.793603 -33.797605 0.0040024811 210.64701 0.30043316 + 1461400 -33.791401 -33.801723 0.010321306 543.20113 0.2980533 + 1461500 -33.790152 -33.797113 0.0069612131 366.36244 -0.10450427 + 1461600 -33.7927 -33.795786 0.0030856688 162.396 -0.4505571 + 1461700 -33.795903 -33.800786 0.0048832649 257.00187 -0.4250404 + 1461800 -33.796234 -33.801767 0.0055330622 291.20013 -0.38988409 + 1461900 -33.792238 -33.797389 0.0051512369 271.105 -0.3827585 + 1462000 -33.788706 -33.793223 0.0045170739 237.72957 -0.18014314 + 1462100 -33.790208 -33.801603 0.011394624 599.68888 0.36153036 + 1462200 -33.792993 -33.799193 0.0062002984 326.31618 0.4406681 + 1462300 -33.793263 -33.797208 0.0039454244 207.64416 0.43885303 + 1462400 -33.793723 -33.796942 0.003219869 169.45883 0.4676462 + 1462500 -33.791001 -33.80259 0.011588342 609.8841 0.62096711 + 1462600 -33.788231 -33.793755 0.0055237767 290.71144 0.22543482 + 1462700 -33.789122 -33.79553 0.0064080175 337.24825 -0.0767463 + 1462800 -33.794825 -33.798966 0.0041410038 217.93734 -0.18136711 + 1462900 -33.795053 -33.803302 0.0082490765 434.14154 -0.14194366 + 1463000 -33.794655 -33.796289 0.0016334854 85.968878 -0.38600712 + 1463100 -33.789746 -33.797674 0.0079276335 417.22428 -0.23717878 + 1463200 -33.782772 -33.794866 0.012094303 636.51237 0.098410832 + 1463300 -33.790221 -33.80177 0.011549732 607.85211 0.2069954 + 1463400 -33.794244 -33.794508 0.0002635569 13.870765 -0.021478704 + 1463500 -33.793203 -33.799739 0.0065358881 343.97796 0.18380034 + 1463600 -33.792522 -33.799309 0.0067863183 357.15788 0.25476726 + 1463700 -33.78939 -33.799637 0.010246518 539.2651 0.22158079 + 1463800 -33.792335 -33.793516 0.0011807775 62.143267 -0.081645164 + 1463900 -33.795801 -33.80221 0.006409396 337.32079 0.067986327 + 1464000 -33.796991 -33.801389 0.0043977112 231.44762 0.021102675 + 1464100 -33.794275 -33.799369 0.0050944335 268.11549 -0.062054394 + 1464200 -33.791259 -33.793568 0.0023090171 121.52151 -0.16607054 + 1464300 -33.789891 -33.801772 0.011881298 625.3021 0.15556876 + 1464400 -33.79233 -33.798455 0.0061244986 322.3269 0.055381034 + 1464500 -33.793287 -33.796929 0.0036421077 191.68088 -0.025956359 + 1464600 -33.795045 -33.798249 0.0032038457 168.61554 0.053713373 + 1464700 -33.796045 -33.802758 0.0067124482 353.27016 0.21722165 + 1464800 -33.797161 -33.800417 0.0032565292 171.38823 0.12571187 + 1464900 -33.795523 -33.798327 0.0028042347 147.58437 0.063824049 + 1465000 -33.790442 -33.799144 0.0087013703 457.94536 0.20587223 + 1465100 -33.789964 -33.800788 0.010824318 569.67418 0.24193924 + 1465200 -33.794639 -33.798005 0.0033659944 177.14928 -0.030151632 + 1465300 -33.796328 -33.798062 0.0017332461 91.219194 -0.085909987 + 1465400 -33.795333 -33.801619 0.0062861349 330.83367 0.04532064 + 1465500 -33.793737 -33.799883 0.0061457894 323.44742 0.0079050747 + 1465600 -33.790827 -33.796448 0.0056213453 295.84639 -0.10644511 + 1465700 -33.791623 -33.796374 0.0047511611 250.04937 -0.085872585 + 1465800 -33.796142 -33.803099 0.0069567025 366.12505 0.04803548 + 1465900 -33.797503 -33.79995 0.00244655 128.75974 -0.047491664 + 1466000 -33.795171 -33.798702 0.0035315122 185.86034 -0.035816398 + 1466100 -33.793512 -33.798318 0.004805624 252.9157 0.090187194 + 1466200 -33.79214 -33.803217 0.011077318 582.98935 0.32643307 + 1466300 -33.793698 -33.795881 0.0021833407 114.90727 0.10715775 + 1466400 -33.79367 -33.798486 0.004816055 253.46468 0.16436857 + 1466500 -33.795887 -33.79988 0.0039935317 210.17601 0.22149486 + 1466600 -33.796163 -33.802428 0.0062655946 329.75266 0.23439983 + 1466700 -33.794886 -33.795973 0.0010868031 57.197478 -0.0021926135 + 1466800 -33.789228 -33.799288 0.010060494 529.47485 0.11435745 + 1466900 -33.791464 -33.799559 0.0080952098 426.04367 0.061037294 + 1467000 -33.795287 -33.801507 0.0062195601 327.3299 -0.084419283 + 1467100 -33.796207 -33.796444 0.00023757555 12.503389 -0.26515597 + 1467200 -33.794025 -33.80111 0.0070852314 372.88941 -0.083406908 + 1467300 -33.791504 -33.798801 0.0072977552 384.07435 -0.024302269 + 1467400 -33.78874 -33.797357 0.0086166559 453.48691 -0.022821964 + 1467500 -33.793886 -33.795456 0.0015697592 82.615028 -0.11174924 + 1467600 -33.796792 -33.802765 0.0059728929 314.34802 0.092588235 + 1467700 -33.79623 -33.800787 0.0045565686 239.80814 0.097248856 + 1467800 -33.792615 -33.797485 0.0048697338 256.28975 0.02268547 + 1467900 -33.790671 -33.795297 0.0046255154 243.43675 0.030419662 + 1468000 -33.791183 -33.802064 0.010881309 572.67359 0.27416804 + 1468100 -33.793181 -33.798374 0.0051923148 273.2669 0.087586427 + 1468200 -33.792854 -33.795969 0.0031149211 163.93552 -0.027295089 + 1468300 -33.79254 -33.79846 0.0059193392 311.52954 0.1009241 + 1468400 -33.79189 -33.801274 0.0093842377 493.88406 0.18720759 + 1468500 -33.792603 -33.797182 0.0045792939 241.00415 -0.00039245599 + 1468600 -33.794613 -33.797437 0.0028240871 148.62918 -0.034042461 + 1468700 -33.796513 -33.80217 0.0056569714 297.72136 0.082179353 + 1468800 -33.796657 -33.801521 0.0048641247 255.99454 0.066112408 + 1468900 -33.791032 -33.796202 0.0051702541 272.10586 -0.026175066 + 1469000 -33.788625 -33.794156 0.0055309857 291.09084 -0.030711201 + 1469100 -33.791088 -33.802083 0.010994584 578.63516 0.19598436 + 1469200 -33.794 -33.797901 0.003900952 205.30363 -0.0019486787 + 1469300 -33.793355 -33.797154 0.0037985657 199.91513 -0.076756315 + 1469400 -33.793261 -33.797741 0.0044798443 235.77021 -0.002767189 + 1469500 -33.791959 -33.802939 0.010979575 577.84523 0.16314684 + 1469600 -33.793389 -33.796123 0.0027337921 143.87704 -0.092604444 + 1469700 -33.793357 -33.798818 0.0054608051 287.3973 -0.032868317 + 1469800 -33.795229 -33.799913 0.0046844724 246.53961 0.035260859 + 1469900 -33.798473 -33.803168 0.0046956059 247.12555 0.051977274 + 1470000 -33.798986 -33.799387 0.00040120037 21.114818 -0.051570393 + 1470100 -33.795413 -33.800751 0.0053383652 280.9534 0.069543107 + 1470200 -33.792683 -33.799572 0.0068891954 362.57221 0.20394423 + 1470300 -33.790775 -33.800628 0.0098535245 518.58221 0.26355206 + 1470400 -33.793543 -33.793878 0.00033477742 17.619037 0.022311466 + 1470500 -33.796048 -33.801464 0.0054160404 285.04138 0.21149208 + 1470600 -33.797844 -33.801295 0.0034515546 181.65224 0.18990656 + 1470700 -33.794272 -33.800259 0.0059868772 315.08401 0.13804394 + 1470800 -33.789489 -33.793339 0.0038498727 202.61537 -0.028551068 + 1470900 -33.791151 -33.802107 0.010956244 576.61733 0.12915107 + 1471000 -33.795268 -33.799781 0.0045121823 237.47213 -0.064097242 + 1471100 -33.795143 -33.798432 0.0032890948 173.10213 -0.16536705 + 1471200 -33.792669 -33.795644 0.002974879 156.56523 -0.18527731 + 1471300 -33.786161 -33.801772 0.01561066 821.57511 0.18776916 + 1471400 -33.790692 -33.797228 0.0065363137 344.00036 0.0098010747 + 1471500 -33.792872 -33.796886 0.0040139949 211.25297 -0.072610055 + 1471600 -33.794371 -33.799368 0.0049968289 262.97865 0.058869266 + 1471700 -33.794164 -33.802098 0.0079334659 417.53124 0.19662831 + 1471800 -33.791129 -33.795963 0.0048337794 254.3975 0.033707608 + 1471900 -33.785955 -33.791815 0.0058604859 308.43215 0.026161729 + 1472000 -33.789476 -33.799823 0.010346257 544.51427 0.27798904 + 1472100 -33.793863 -33.80048 0.0066165972 348.22561 0.1657934 + 1472200 -33.794148 -33.797318 0.0031699711 166.83275 0.025198971 + 1472300 -33.793612 -33.797516 0.0039039846 205.46323 0.031536828 + 1472400 -33.789771 -33.801866 0.012094589 636.52745 0.2037452 + 1472500 -33.785501 -33.793874 0.0083727583 440.6508 0.028450352 + 1472600 -33.790286 -33.795391 0.005105089 268.67628 -0.14899985 + 1472700 -33.794647 -33.7989 0.004252887 223.82565 -0.10441423 + 1472800 -33.79427 -33.802882 0.0086129956 453.29428 0.05665282 + 1472900 -33.79351 -33.796042 0.0025321223 133.26334 -0.13451058 + 1473000 -33.788148 -33.796145 0.007996384 420.84255 -0.040110022 + 1473100 -33.786087 -33.79599 0.0099022546 521.14683 0.20371763 + 1473200 -33.792869 -33.802136 0.0092672461 487.7269 0.20446606 + 1473300 -33.79536 -33.795866 0.00050556217 26.607286 -0.035527528 + 1473400 -33.793696 -33.799947 0.0062509492 328.98188 0.12080981 + 1473500 -33.791459 -33.799215 0.0077554323 408.16149 0.18034344 + 1473600 -33.786226 -33.799642 0.013415363 706.03858 0.18024298 + 1473700 -33.793184 -33.79386 0.00067612169 35.583681 -0.14692949 + 1473800 -33.795452 -33.801837 0.0063849328 336.03332 0.016832248 + 1473900 -33.79562 -33.800391 0.0047707244 251.07897 0.011636243 + 1474000 -33.791024 -33.798343 0.0073193344 385.21004 0.0057413735 + 1474100 -33.788756 -33.790659 0.001902582 100.1312 -0.13997735 + 1474200 -33.790231 -33.802413 0.012181828 641.11875 0.25257906 + 1474300 -33.79612 -33.800171 0.0040511402 213.20789 0.11886873 + 1474400 -33.795004 -33.798807 0.0038031405 200.15589 0.041351524 + 1474500 -33.79345 -33.79638 0.0029293914 154.17126 0.049065653 + 1474600 -33.789343 -33.803124 0.013781268 725.29583 0.35148114 + 1474700 -33.791335 -33.796404 0.0050697939 266.81873 0.061446773 + 1474800 -33.795123 -33.798285 0.0031617137 166.39817 -0.015871165 + 1474900 -33.79667 -33.800253 0.0035838924 188.61706 0.034393485 + 1475000 -33.794993 -33.8027 0.0077070288 405.61405 0.10920904 + 1475100 -33.793336 -33.796586 0.0032496743 171.02746 -0.080871653 + 1475200 -33.792232 -33.796502 0.0042699023 224.72115 -0.10495885 + 1475300 -33.792438 -33.80065 0.0082126798 432.22601 0.059140673 + 1475400 -33.792939 -33.800714 0.0077751808 409.20083 0.062643237 + 1475500 -33.793609 -33.796314 0.0027050753 142.3657 -0.11526687 + 1475600 -33.794005 -33.798175 0.0041705058 219.49 -0.013018794 + 1475700 -33.797161 -33.802831 0.0056698252 298.39784 0.13236533 + 1475800 -33.797683 -33.800681 0.0029981206 157.78841 0.060539482 + 1475900 -33.794472 -33.797541 0.0030687679 161.50652 0.025885418 + 1476000 -33.791256 -33.798004 0.0067485504 355.17019 0.18857811 + 1476100 -33.790496 -33.802426 0.011929736 627.85135 0.34170613 + 1476200 -33.794025 -33.796445 0.0024203982 127.3834 0.063420628 + 1476300 -33.796593 -33.799659 0.0030658512 161.35301 0.07313955 + 1476400 -33.799513 -33.802025 0.0025126091 132.23637 0.087803511 + 1476500 -33.800448 -33.803315 0.0028664795 150.86026 0.076829076 + 1476600 -33.797008 -33.798306 0.0012979887 68.311988 -0.04949424 + 1476700 -33.792661 -33.799898 0.007237189 380.8868 -0.011134926 + 1476800 -33.791925 -33.799681 0.007755761 408.17878 0.015716532 + 1476900 -33.792582 -33.800612 0.0080308167 422.65472 -0.076418394 + 1477000 -33.794753 -33.794815 6.1949934e-05 3.2603698 -0.30053811 + 1477100 -33.793746 -33.800377 0.0066308541 348.97594 -0.048178339 + 1477200 -33.790272 -33.798729 0.0084567621 445.07185 0.12557571 + 1477300 -33.786527 -33.798035 0.011508863 605.70119 0.23025071 + 1477400 -33.794762 -33.796248 0.0014857954 78.196085 0.15107806 + 1477500 -33.795282 -33.802756 0.0074734916 393.3232 0.36630913 + 1477600 -33.794709 -33.799791 0.0050821122 267.46703 0.28474275 + 1477700 -33.79069 -33.796439 0.0057497674 302.60513 0.12644108 + 1477800 -33.788111 -33.791494 0.0033823485 178.00999 -0.085179941 + 1477900 -33.789284 -33.802069 0.01278535 672.88156 0.086452628 + 1478000 -33.796191 -33.799564 0.0033727424 177.50442 -0.19347416 + 1478100 -33.795594 -33.798676 0.0030817485 162.18967 -0.26949275 + 1478200 -33.793381 -33.798827 0.005445561 286.59502 -0.13826095 + 1478300 -33.789137 -33.802532 0.013394955 704.96452 0.16447312 + 1478400 -33.793004 -33.796905 0.0039012695 205.32033 -0.024901141 + 1478500 -33.796438 -33.798558 0.0021197329 111.55965 0.011872728 + 1478600 -33.79611 -33.800847 0.0047379912 249.35625 0.16352421 + 1478700 -33.792879 -33.800872 0.0079931355 420.67159 0.24528537 + 1478800 -33.790879 -33.795403 0.0045242668 238.10813 0.083227827 + 1478900 -33.792003 -33.797158 0.0051544739 271.27536 0.099258448 + 1479000 -33.793498 -33.802338 0.0088404255 465.26371 0.20935828 + 1479100 -33.794412 -33.799417 0.0050056436 263.44256 0.047059105 + 1479200 -33.793421 -33.796403 0.0029822255 156.95187 -0.1251642 + 1479300 -33.788006 -33.794949 0.0069436142 365.43622 -0.069135763 + 1479400 -33.784666 -33.80151 0.016843286 886.44712 0.18202474 + 1479500 -33.791679 -33.795211 0.0035323637 185.90515 -0.20831136 + 1479600 -33.793244 -33.797666 0.004422361 232.74491 -0.17677689 + 1479700 -33.794519 -33.800214 0.0056957011 299.75967 -0.010382853 + 1479800 -33.794184 -33.802608 0.0084240842 443.35204 0.10080157 + 1479900 -33.794737 -33.796017 0.0012801422 67.37274 -0.056831506 + 1480000 -33.792685 -33.799148 0.0064635965 340.17332 0.13305378 + 1480100 -33.791155 -33.799111 0.007955945 418.71429 0.28496393 + 1480200 -33.788741 -33.799423 0.010681167 562.14031 0.30968206 + 1480300 -33.792749 -33.793033 0.00028413558 14.953802 0.037628459 + 1480400 -33.795364 -33.801609 0.0062448005 328.65828 0.21836106 + 1480500 -33.796195 -33.801076 0.0048814867 256.90829 0.18946504 + 1480600 -33.793133 -33.799738 0.0066043338 347.5802 0.077919272 + 1480700 -33.787678 -33.79061 0.0029318036 154.29821 -0.1901142 + 1480800 -33.780105 -33.801005 0.020899978 1099.9472 0.17184132 + 1480900 -33.791772 -33.797164 0.0053921365 283.78334 -0.23457661 + 1481000 -33.791962 -33.796555 0.0045923562 241.69161 -0.3117772 + 1481100 -33.792976 -33.795732 0.0027558056 145.03559 -0.21202777 + 1481200 -33.792266 -33.803057 0.010791025 567.92201 0.13859152 + 1481300 -33.795191 -33.799043 0.0038517013 202.7116 0.091027918 + 1481400 -33.797139 -33.800272 0.0031332371 164.89948 0.15370976 + 1481500 -33.798382 -33.801198 0.0028153815 148.17102 0.21896589 + 1481600 -33.79449 -33.802904 0.0084139743 442.81996 0.35325092 + 1481700 -33.790553 -33.794234 0.0036812541 193.74112 0.11527578 + 1481800 -33.790046 -33.795244 0.005198212 273.57726 0.025335421 + 1481900 -33.792691 -33.79929 0.0065991196 347.30578 0.088121427 + 1482000 -33.795296 -33.801088 0.0057927185 304.86561 0.031405373 + 1482100 -33.797622 -33.799166 0.0015438518 81.251546 -0.13000847 + 1482200 -33.79884 -33.801414 0.0025743214 135.48424 -0.072450712 + 1482300 -33.799772 -33.803261 0.0034895963 183.65434 -0.0012547501 + 1482400 -33.797227 -33.801511 0.0042837895 225.45202 0.0022043667 + 1482500 -33.79317 -33.797757 0.0045867392 241.39599 0.006143426 + 1482600 -33.792652 -33.798689 0.0060371171 317.72809 0.13889347 + 1482700 -33.792341 -33.800363 0.0080224571 422.21476 0.24257326 + 1482800 -33.790345 -33.793648 0.0033029859 173.8332 0.10684026 + 1482900 -33.783925 -33.791329 0.0074037299 389.6517 0.1643206 + 1483000 -33.787444 -33.7974 0.0099564018 523.99655 0.36543359 + 1483100 -33.792828 -33.801839 0.0090106482 474.22238 0.35404344 + 1483200 -33.794623 -33.796798 0.002175033 114.47005 0.085871276 + 1483300 -33.794919 -33.80054 0.0056207722 295.81623 0.10344809 + 1483400 -33.795939 -33.80131 0.005370585 282.6491 0.077656355 + 1483500 -33.793603 -33.800661 0.007058102 371.46161 -0.03478523 + 1483600 -33.790166 -33.790991 0.00082484841 43.411036 -0.35971513 + 1483700 -33.787059 -33.799091 0.012032254 633.24678 -0.10773666 + 1483800 -33.792376 -33.7987 0.0063237809 332.81495 -0.1974317 + 1483900 -33.794878 -33.799717 0.0048395342 254.70037 -0.25104866 + 1484000 -33.795206 -33.796631 0.0014247883 74.98534 -0.25450598 + 1484100 -33.793162 -33.803061 0.0098985231 520.95044 0.089374791 + 1484200 -33.793517 -33.799547 0.0060301544 317.36165 0.13285913 + 1484300 -33.794939 -33.799326 0.0043870578 230.88694 0.13757901 + 1484400 -33.797784 -33.799131 0.0013473782 70.911313 0.13870873 + 1484500 -33.796788 -33.803008 0.0062193909 327.321 0.28689788 + 1484600 -33.792515 -33.796992 0.0044762115 235.57902 0.15124101 + 1484700 -33.790321 -33.796446 0.0061256072 322.38524 0.0017128563 + 1484800 -33.793058 -33.798176 0.0051177585 269.34307 -0.020922401 + 1484900 -33.79533 -33.803145 0.0078157953 411.33834 0.0084050213 + 1485000 -33.796998 -33.798882 0.0018837708 99.141175 -0.19707493 + 1485100 -33.795345 -33.798634 0.0032883714 173.06405 -0.16587832 + 1485200 -33.789872 -33.798544 0.0086712851 456.362 0.072382755 + 1485300 -33.788168 -33.800252 0.012083449 635.94113 0.24495352 + 1485400 -33.793524 -33.795865 0.0023401619 123.16063 0.069430002 + 1485500 -33.795246 -33.799161 0.0039147643 206.03055 0.168593 + 1485600 -33.794984 -33.802052 0.0070676234 371.96271 0.29168227 + 1485700 -33.793421 -33.79951 0.0060881906 320.41604 0.20183611 + 1485800 -33.79039 -33.794423 0.0040336103 212.28531 -0.029076743 + 1485900 -33.781347 -33.793602 0.012255772 645.01034 0.04740174 + 1486000 -33.787409 -33.800721 0.013312454 700.62257 0.040005514 + 1486100 -33.792105 -33.79556 0.0034545716 181.81102 -0.30935788 + 1486200 -33.793118 -33.796924 0.00380554 200.28217 -0.27730578 + 1486300 -33.794184 -33.800312 0.0061275665 322.48836 -0.049765137 + 1486400 -33.795131 -33.802411 0.0072802258 383.15179 0.078268169 + 1486500 -33.797382 -33.798855 0.0014722739 77.484461 0.020514708 + 1486600 -33.797785 -33.801387 0.0036016824 189.55333 0.17091232 + 1486700 -33.795843 -33.801317 0.0054743457 288.10993 0.29839193 + 1486800 -33.790134 -33.799748 0.0096140376 505.97823 0.37661567 + 1486900 -33.790897 -33.791488 0.00059139054 31.124356 0.12383924 + 1487000 -33.791331 -33.799893 0.0085618463 450.60233 0.33352731 + 1487100 -33.795464 -33.800193 0.0047296944 248.9196 0.25702166 + 1487200 -33.79785 -33.801277 0.00342614 180.31469 0.13555605 + 1487300 -33.79788 -33.799027 0.0011465802 60.343491 0.0091676963 + 1487400 -33.795633 -33.803349 0.0077159819 406.08524 0.11587546 + 1487500 -33.795127 -33.800451 0.0053238243 280.18812 -0.024607206 + 1487600 -33.793242 -33.798833 0.0055909296 294.24564 -0.16493078 + 1487700 -33.791786 -33.794377 0.0025915771 136.39239 -0.25725019 + 1487800 -33.784038 -33.801266 0.017227514 906.66868 0.13533074 + 1487900 -33.786316 -33.791523 0.005206653 274.0215 -0.11024351 + 1488000 -33.791277 -33.795976 0.0046991106 247.31 -0.068329938 + 1488100 -33.792835 -33.797217 0.0043816881 230.60433 0.060273432 + 1488200 -33.792639 -33.802931 0.010291438 541.62921 0.28538331 + 1488300 -33.796022 -33.799157 0.0031350703 164.99595 0.12356128 + 1488400 -33.797881 -33.800984 0.0031029245 163.30415 0.10618095 + 1488500 -33.798779 -33.80192 0.0031409106 165.30332 0.1072949 + 1488600 -33.794351 -33.801943 0.0075925215 399.58763 0.11549515 + 1488700 -33.790934 -33.794083 0.0031488172 165.71944 -0.22577168 + 1488800 -33.789943 -33.795994 0.0060513474 318.47702 -0.27307068 + 1488900 -33.791882 -33.799541 0.0076584469 403.05723 -0.21091547 + 1489000 -33.794669 -33.799649 0.0049798171 262.08333 -0.28143687 + 1489100 -33.79678 -33.798686 0.0019058023 100.30068 -0.28707869 + 1489200 -33.797179 -33.801198 0.0040190031 211.51655 -0.093046397 + 1489300 -33.794698 -33.802577 0.0078796762 414.70033 0.15507897 + 1489400 -33.790864 -33.798114 0.0072500293 381.56257 0.27693824 + 1489500 -33.792601 -33.797269 0.0046675002 245.64637 0.35648113 + 1489600 -33.795675 -33.799565 0.0038900459 204.72965 0.45640088 + 1489700 -33.795374 -33.800672 0.005297505 278.80297 0.4659793 + 1489800 -33.789098 -33.793154 0.0040563686 213.48306 0.18372465 + 1489900 -33.788273 -33.797554 0.009281129 488.45754 0.030504223 + 1490000 -33.794295 -33.800644 0.006348609 334.12163 -0.1386922 + 1490100 -33.795689 -33.801927 0.0062381709 328.30937 -0.30075773 + 1490200 -33.795685 -33.796718 0.0010325779 54.343656 -0.50841274 + 1490300 -33.789969 -33.799525 0.0095561674 502.93257 -0.26452628 + 1490400 -33.78702 -33.796691 0.0096702172 508.93491 -0.068411356 + 1490500 -33.789039 -33.798273 0.0092342772 485.99177 0.054418688 + 1490600 -33.792307 -33.79329 0.00098248194 51.707148 0.046245193 + 1490700 -33.792732 -33.80171 0.0089784837 472.52959 0.41923132 + 1490800 -33.79503 -33.799771 0.0047412746 249.52905 0.43182916 + 1490900 -33.797297 -33.800995 0.0036972584 194.58341 0.37533883 + 1491000 -33.799413 -33.800317 0.00090382707 47.567613 0.2699182 + 1491100 -33.797481 -33.803498 0.0060167737 316.65743 0.30308659 + 1491200 -33.7941 -33.798915 0.0048153537 253.42777 0.040696722 + 1491300 -33.792473 -33.798392 0.0059189756 311.51041 -0.26521888 + 1491400 -33.793482 -33.796986 0.0035042499 184.42555 -0.46063972 + 1491500 -33.793329 -33.802288 0.0089597667 471.54453 -0.38658963 + 1491600 -33.794864 -33.797544 0.0026796594 141.02808 -0.54590724 + 1491700 -33.793952 -33.798097 0.004145395 218.16844 -0.4205391 + 1491800 -33.791688 -33.798107 0.00641862 337.80624 -0.10936685 + 1491900 -33.788161 -33.801302 0.013141102 691.60449 0.35014782 + 1492000 -33.793831 -33.796648 0.0028160441 148.20589 0.34531725 + 1492100 -33.795984 -33.799207 0.003222806 169.6134 0.47049636 + 1492200 -33.795393 -33.801009 0.0056160377 295.56705 0.56966052 + 1492300 -33.792687 -33.800544 0.0078566629 413.48916 0.50173154 + 1492400 -33.791309 -33.795983 0.00467468 246.02424 0.14228799 + 1492500 -33.795299 -33.799644 0.0043454198 228.69557 -0.012891038 + 1492600 -33.798039 -33.802374 0.0043353916 228.1678 -0.073531072 + 1492700 -33.796515 -33.799731 0.0032158781 169.2488 -0.20742549 + 1492800 -33.792494 -33.796258 0.0037637778 198.08427 -0.27802515 + 1492900 -33.79117 -33.798194 0.0070230969 369.61932 -0.11847419 + 1493000 -33.7919 -33.802045 0.010145119 533.92856 0.046539117 + 1493100 -33.795957 -33.798155 0.0021977706 115.6667 -0.074530427 + 1493200 -33.798075 -33.800847 0.0027721195 145.89418 0.0055347456 + 1493300 -33.797926 -33.80163 0.0037036162 194.91802 0.10413976 + 1493400 -33.795872 -33.802384 0.0065118577 342.71326 0.19101292 + 1493500 -33.794825 -33.796112 0.0012871915 67.743743 0.0089440108 + 1493600 -33.790968 -33.799226 0.0082573892 434.57903 0.14014504 + 1493700 -33.790017 -33.798018 0.0080013604 421.10446 0.16927399 + 1493800 -33.791457 -33.799711 0.008253908 434.39582 0.038387485 + 1493900 -33.796146 -33.796463 0.00031764428 16.717335 -0.17326531 + 1494000 -33.795729 -33.801993 0.0062640018 329.66883 0.0051633175 + 1494100 -33.794244 -33.800205 0.005960539 313.69785 0.019134511 + 1494200 -33.788784 -33.798939 0.0101545 534.42227 0.056514164 + 1494300 -33.784952 -33.789918 0.004965218 261.31499 -0.044028245 + 1494400 -33.790928 -33.801402 0.010473662 551.21951 0.21604477 + 1494500 -33.794654 -33.798004 0.0033492803 176.26963 0.11094863 + 1494600 -33.792999 -33.79744 0.0044407075 233.71047 0.094341522 + 1494700 -33.78985 -33.794502 0.0046516026 244.80969 0.12462347 + 1494800 -33.788256 -33.803362 0.015106295 795.03082 0.45806523 + 1494900 -33.796689 -33.799851 0.0031618035 166.4029 0.14483495 + 1495000 -33.796301 -33.799755 0.0034539723 181.77948 0.069324927 + 1495100 -33.794707 -33.79907 0.0043631227 229.62726 0.073108524 + 1495200 -33.789878 -33.80192 0.012041459 633.73126 0.14097039 + 1495300 -33.789422 -33.792662 0.0032398783 170.51191 -0.26554796 + 1495400 -33.791036 -33.795836 0.0048006222 252.65246 -0.27661858 + 1495500 -33.796855 -33.800892 0.0040362216 212.42274 -0.21165664 + 1495600 -33.795845 -33.801677 0.005832149 306.9408 -0.11998065 + 1495700 -33.79284 -33.797032 0.0041924003 220.64229 -0.11392514 + 1495800 -33.791196 -33.798668 0.0074722108 393.25579 0.099635864 + 1495900 -33.795895 -33.802015 0.0061205923 322.12132 0.27081576 + 1496000 -33.797974 -33.800715 0.0027408621 144.24913 0.21682627 + 1496100 -33.796722 -33.798511 0.0017884621 94.125167 0.15080025 + 1496200 -33.794811 -33.799655 0.0048447141 254.97298 0.23383127 + 1496300 -33.792162 -33.802096 0.0099338656 522.81049 0.28553319 + 1496400 -33.792712 -33.797164 0.0044512539 234.26552 -0.015944442 + 1496500 -33.795768 -33.79937 0.0036021152 189.57611 -0.092588227 + 1496600 -33.798807 -33.80171 0.0029025368 152.75792 -0.096443944 + 1496700 -33.797661 -33.802444 0.0047824083 251.69388 -0.063537918 + 1496800 -33.796356 -33.79744 0.0010839657 57.048149 -0.14291398 + 1496900 -33.793458 -33.799776 0.0063182597 332.52437 0.027634318 + 1497000 -33.792164 -33.799819 0.0076549147 402.87134 0.21839601 + 1497100 -33.791963 -33.801041 0.0090783216 477.78397 0.29735207 + 1497200 -33.797172 -33.797569 0.00039689053 20.887995 0.095336594 + 1497300 -33.797503 -33.802049 0.0045465491 239.28083 0.21426247 + 1497400 -33.796058 -33.800445 0.0043874787 230.90909 0.17852896 + 1497500 -33.792382 -33.79958 0.0071979924 378.82392 0.017702233 + 1497600 -33.792801 -33.793793 0.00099214669 52.215796 -0.26789419 + 1497700 -33.792165 -33.802814 0.010648896 560.44191 -0.0848248 + 1497800 -33.795879 -33.800046 0.0041673446 219.32363 -0.27035796 + 1497900 -33.798211 -33.801176 0.0029648547 156.03766 -0.29066655 + 1498000 -33.799054 -33.799923 0.00086904801 45.737221 -0.24855799 + 1498100 -33.794086 -33.803598 0.0095117454 500.59468 0.12752784 + 1498200 -33.792179 -33.796672 0.004492782 236.45111 0.30226907 + 1498300 -33.791045 -33.796761 0.0057156854 300.81142 0.51065524 + 1498400 -33.793632 -33.797405 0.0037737642 198.60984 0.68738342 + 1498500 -33.795123 -33.803288 0.0081647834 429.70527 0.85229166 + 1498600 -33.797037 -33.798974 0.0019375843 101.97333 0.53078934 + 1498700 -33.79599 -33.79949 0.0034999081 184.19704 0.31127218 + 1498800 -33.791201 -33.798762 0.0075606993 397.91286 0.085199836 + 1498900 -33.788244 -33.800974 0.012729606 669.94779 -0.35704505 + 1499000 -33.793134 -33.795507 0.0023724697 124.86096 -1.0187418 + 1499100 -33.79496 -33.798745 0.0037855284 199.22899 -1.0368834 + 1499200 -33.794748 -33.801354 0.0066054605 347.63949 -0.80572029 + 1499300 -33.793421 -33.799842 0.0064200717 337.88265 -0.48894095 + 1499400 -33.792169 -33.795671 0.0035023767 184.32696 -0.11635073 + 1499500 -33.792076 -33.798376 0.0062995565 331.54004 0.51472344 + 1499600 -33.795928 -33.802626 0.0066976145 352.48948 0.95954852 + 1499700 -33.797467 -33.799885 0.0024173816 127.22464 0.9291394 + 1499800 -33.795486 -33.798555 0.0030693302 161.53611 0.79092066 + 1499900 -33.791228 -33.798715 0.0074864727 394.00638 0.59023682 + 1500000 -33.790094 -33.801738 0.011643899 612.80802 0.12055836 + 1500100 -33.792968 -33.795063 0.0020953101 110.2743 -0.65887871 + 1500200 -33.793857 -33.79909 0.0052328893 275.4023 -0.82509899 + 1500300 -33.794876 -33.80043 0.0055546358 292.33553 -0.8317368 + 1500400 -33.791507 -33.800685 0.0091783082 483.04618 -0.67325391 + 1500500 -33.788726 -33.789956 0.0012297025 64.718145 -0.53199677 + 1500600 -33.78907 -33.799891 0.01082099 569.49904 0.2438696 + 1500700 -33.794981 -33.800355 0.0053742703 282.84305 0.53635152 + 1500800 -33.79518 -33.800817 0.0056373929 296.69096 0.67739635 + 1500900 -33.794997 -33.795438 0.00044109585 23.214481 0.54758255 + 1501000 -33.787755 -33.802258 0.014503485 763.3055 0.77979967 + 1501100 -33.785173 -33.794073 0.0088998579 468.39158 0.36863608 + 1501200 -33.788283 -33.797004 0.0087210233 458.97968 -0.12314014 + 1501300 -33.792446 -33.794173 0.0017267316 90.876342 -0.45490414 + 1501400 -33.793576 -33.803538 0.0099618637 524.284 -0.29816088 + 1501500 -33.795888 -33.798736 0.0028482808 149.90248 -0.51159889 + 1501600 -33.794699 -33.799361 0.0046621856 245.36667 -0.41117469 + 1501700 -33.791776 -33.795921 0.0041448629 218.14044 -0.1684601 + 1501800 -33.786542 -33.80336 0.016818347 885.13459 0.45516918 + 1501900 -33.793033 -33.795447 0.0024140221 127.04783 0.41412408 + 1502000 -33.794427 -33.798866 0.004439317 233.63729 0.56345428 + 1502100 -33.794785 -33.799348 0.0045634997 240.17292 0.60950634 + 1502200 -33.792405 -33.80217 0.0097648268 513.91412 0.63226562 + 1502300 -33.790718 -33.793268 0.0025496558 134.18611 0.11815788 + 1502400 -33.786427 -33.796198 0.0097714037 514.26026 -0.082734183 + 1502500 -33.791234 -33.799631 0.0083977284 441.96496 -0.26971929 + 1502600 -33.794823 -33.80083 0.0060068296 316.13408 -0.50933348 + 1502700 -33.795608 -33.797156 0.0015483495 81.488251 -0.64023007 + 1502800 -33.79361 -33.799936 0.0063258329 332.92294 -0.33225618 + 1502900 -33.786682 -33.799463 0.012781069 672.65624 0.1199381 + 1503000 -33.787884 -33.795407 0.0075224552 395.90011 0.33858836 + 1503100 -33.794516 -33.797522 0.0030055827 158.18113 0.49642859 + 1503200 -33.794634 -33.800555 0.0059207406 311.6033 0.66385588 + 1503300 -33.792715 -33.800955 0.0082392913 433.62655 0.67186004 + 1503400 -33.790946 -33.794506 0.0035599188 187.35535 0.30119598 + 1503500 -33.789914 -33.797097 0.0071832732 378.04926 0.079897324 + 1503600 -33.794792 -33.800778 0.005985569 315.01516 -0.079365199 + 1503700 -33.796727 -33.801868 0.0051404209 270.53577 -0.24276821 + 1503800 -33.796244 -33.797228 0.00098392696 51.783198 -0.44519918 + 1503900 -33.79195 -33.800302 0.0083512388 439.51825 -0.20326659 + 1504000 -33.791 -33.798627 0.0076269145 401.39771 -0.050309858 + 1504100 -33.791072 -33.799401 0.0083286733 438.33065 0.037068246 + 1504200 -33.793732 -33.794676 0.00094376106 49.669303 0.048015113 + 1504300 -33.79446 -33.8026 0.00814043 428.42357 0.36783383 + 1504400 -33.796817 -33.800226 0.0034087646 179.40024 0.31937985 + 1504500 -33.797501 -33.801237 0.0037356817 196.60559 0.29615919 + 1504600 -33.797836 -33.798766 0.00093045347 48.968936 0.16522339 + 1504700 -33.792427 -33.803701 0.011273446 593.3114 0.28296653 + 1504800 -33.791159 -33.7957 0.004541203 238.99946 -0.077284002 + 1504900 -33.791069 -33.798089 0.0070203324 369.47383 -0.31052858 + 1505000 -33.795253 -33.797412 0.0021590724 113.63006 -0.43754041 + 1505100 -33.797397 -33.803522 0.0061251304 322.36015 -0.28746149 + 1505200 -33.80006 -33.800886 0.00082564778 43.453106 -0.36060293 + 1505300 -33.801059 -33.802604 0.0015452733 81.326353 -0.23698546 + 1505400 -33.800646 -33.802249 0.0016029873 84.363792 -0.076354223 + 1505500 -33.797075 -33.80356 0.0064856905 341.33611 0.26115252 + 1505600 -33.79521 -33.798073 0.0028631543 150.68526 0.45522832 + 1505700 -33.791841 -33.798613 0.0067720741 356.40822 0.81738782 + 1505800 -33.790524 -33.797317 0.0067931262 357.51618 1.0506574 + 1505900 -33.789216 -33.798639 0.0094231271 495.93077 1.1369974 + 1506000 -33.791015 -33.7928 0.0017847959 93.932214 0.76382651 + 1506100 -33.792729 -33.79862 0.0058910755 310.04205 0.62417526 + 1506200 -33.795597 -33.800995 0.0053973768 284.05913 0.40765114 + 1506300 -33.796306 -33.801261 0.004954553 260.7537 0.090809199 + 1506400 -33.796772 -33.799823 0.0030512463 160.58437 -0.23460019 + 1506500 -33.795527 -33.801526 0.0059990622 315.72529 -0.3360494 + 1506600 -33.791984 -33.800716 0.0087318307 459.54846 -0.43784881 + 1506700 -33.790241 -33.79564 0.0053988886 284.13869 -0.64509552 + 1506800 -33.79037 -33.794825 0.0044550141 234.46342 -0.57814193 + 1506900 -33.792237 -33.797892 0.0056554547 297.64153 -0.32120428 + 1507000 -33.794041 -33.799831 0.0057892506 304.68309 -0.10350492 + 1507100 -33.79502 -33.79788 0.0028599214 150.51511 0.026438635 + 1507200 -33.795248 -33.800952 0.0057041971 300.2068 0.26521588 + 1507300 -33.796761 -33.801881 0.0051196438 269.44229 0.39539781 + 1507400 -33.797153 -33.802192 0.0050388081 265.18798 0.40126038 + 1507500 -33.795969 -33.79816 0.0021908482 115.30239 0.22511111 + 1507600 -33.790244 -33.800096 0.0098520603 518.50515 0.24622155 + 1507700 -33.790223 -33.796831 0.0066079949 347.77288 -0.011656606 + 1507800 -33.791042 -33.797473 0.006431111 338.46364 -0.2602711 + 1507900 -33.795115 -33.796057 0.0009422703 49.590845 -0.40328289 + 1508000 -33.796085 -33.801149 0.005064227 266.52575 -0.23227314 + 1508100 -33.794898 -33.800024 0.0051256247 269.75706 -0.11536126 + 1508200 -33.792252 -33.800938 0.0086851786 457.09321 0.13754196 + 1508300 -33.797528 -33.800088 0.0025590925 134.68275 0.20125953 + 1508400 -33.799298 -33.802936 0.0036381456 191.47236 0.30886592 + 1508500 -33.797956 -33.800232 0.0022759093 119.77908 0.29088426 + 1508600 -33.79436 -33.799767 0.0054069551 284.56322 0.2498285 + 1508700 -33.792908 -33.797482 0.0045744575 240.74962 0.11788957 + 1508800 -33.791761 -33.802004 0.010242605 539.05915 0.12148571 + 1508900 -33.795035 -33.797465 0.002430756 127.92852 -0.24713785 + 1509000 -33.796543 -33.799209 0.0026667303 140.34764 -0.34274456 + 1509100 -33.79656 -33.799337 0.0027764328 146.12118 -0.333451 + 1509200 -33.790214 -33.801507 0.011293421 594.36265 -0.14620098 + 1509300 -33.791739 -33.79722 0.0054807939 288.44929 -0.23294727 + 1509400 -33.794977 -33.800105 0.0051282153 269.89339 -0.093396131 + 1509500 -33.796552 -33.80131 0.0047579557 250.40696 0.046849951 + 1509600 -33.795019 -33.801199 0.0061804883 325.27359 0.20231618 + 1509700 -33.786883 -33.793583 0.0067003894 352.63552 0.31162043 + 1509800 -33.786883 -33.795423 0.0085392511 449.41317 0.54900266 + 1509900 -33.790329 -33.797652 0.0073223383 385.36813 0.69134728 + 1510000 -33.790877 -33.795586 0.004709288 247.84563 0.57671278 + 1510100 -33.789705 -33.793892 0.004187277 220.37265 0.39764786 + 1510200 -33.786863 -33.797387 0.01052409 553.87347 0.41486744 + 1510300 -33.793017 -33.801907 0.0088899493 467.8701 0.19968571 + 1510400 -33.796698 -33.800074 0.0033758107 177.66591 -0.09909094 + 1510500 -33.796705 -33.800778 0.0040730568 214.36135 -0.16167956 + 1510600 -33.795001 -33.801006 0.006005014 316.03853 -0.14843799 + 1510700 -33.788422 -33.800098 0.011675662 614.47966 -0.10460706 + 1510800 -33.789173 -33.792019 0.0028456627 149.76469 -0.33222528 + 1510900 -33.793587 -33.797961 0.0043741817 230.20928 -0.21903642 + 1511000 -33.795167 -33.798513 0.0033466221 176.12974 -0.14888321 + 1511100 -33.792383 -33.79981 0.0074273792 390.89634 0.013236942 + 1511200 -33.791287 -33.795816 0.0045286604 238.33936 0.017988426 + 1511300 -33.795029 -33.802499 0.0074696823 393.12272 0.22376756 + 1511400 -33.798555 -33.801833 0.0032775506 172.49457 0.2037799 + 1511500 -33.797035 -33.801719 0.0046839677 246.51304 0.17987439 + 1511600 -33.795264 -33.797028 0.0017644402 92.860916 0.053677077 + 1511700 -33.79143 -33.801698 0.010267786 540.3844 0.21675683 + 1511800 -33.791567 -33.796446 0.0048789346 256.77398 0.0087682468 + 1511900 -33.790643 -33.797197 0.0065541358 344.93832 -0.059639045 + 1512000 -33.794204 -33.795754 0.0015500243 81.576399 -0.13579638 + 1512100 -33.795673 -33.801635 0.0059613586 313.74099 0.010865044 + 1512200 -33.795327 -33.798586 0.0032591147 171.5243 -0.00048431146 + 1512300 -33.790332 -33.799113 0.0087815953 462.16753 0.15741859 + 1512400 -33.79232 -33.798453 0.0061333472 322.79259 0.23202238 + 1512500 -33.797258 -33.803206 0.0059488583 313.08311 0.32032831 + 1512600 -33.797411 -33.799562 0.0021511472 113.21296 0.19801589 + 1512700 -33.794609 -33.799337 0.0047285059 248.85705 0.13376095 + 1512800 -33.791707 -33.797895 0.0061881849 325.67865 0.068053973 + 1512900 -33.790079 -33.799989 0.0099098212 521.54505 -0.049142452 + 1513000 -33.792136 -33.794592 0.0024562989 129.27282 -0.44957954 + 1513100 -33.795507 -33.798439 0.0029315818 154.28654 -0.46842864 + 1513200 -33.796315 -33.800322 0.0040077321 210.92337 -0.39606023 + 1513300 -33.793299 -33.800457 0.007157185 376.67626 -0.2481406 + 1513400 -33.791047 -33.798163 0.0071163964 374.5296 -0.06304888 + 1513500 -33.795156 -33.800778 0.0056211338 295.83526 0.15283021 + 1513600 -33.796353 -33.802368 0.0060154531 316.58793 0.33853755 + 1513700 -33.795376 -33.799243 0.0038675742 203.54698 0.38424011 + 1513800 -33.791813 -33.796233 0.0044201954 232.63094 0.39869584 + 1513900 -33.789136 -33.795571 0.006435305 338.68436 0.486645 + 1514000 -33.787209 -33.798275 0.011065677 582.37673 0.55820329 + 1514100 -33.790715 -33.793264 0.0025489839 134.15075 0.17971495 + 1514200 -33.794784 -33.79856 0.0037761498 198.7354 0.14921254 + 1514300 -33.794907 -33.799918 0.0050109993 263.72443 0.15000654 + 1514400 -33.792123 -33.801851 0.0097279676 511.97426 0.12197969 + 1514500 -33.79363 -33.797699 0.0040683649 214.11442 -0.11533858 + 1514600 -33.798069 -33.802319 0.004249797 223.66303 -0.10702118 + 1514700 -33.798736 -33.801634 0.0028978025 152.50876 -0.13056526 + 1514800 -33.795272 -33.801211 0.0059382171 312.52307 -0.069989128 + 1514900 -33.793982 -33.795018 0.0010366841 54.559757 -0.15697079 + 1515000 -33.791423 -33.800536 0.009112845 479.60091 0.099168531 + 1515100 -33.791058 -33.796512 0.005454523 287.06668 0.11517808 + 1515200 -33.787845 -33.797337 0.0094922467 499.56848 0.14710908 + 1515300 -33.789766 -33.791479 0.0017130186 90.154639 -0.041680493 + 1515400 -33.792923 -33.802064 0.0091413498 481.10109 0.19308904 + 1515500 -33.796001 -33.799346 0.0033451914 176.05444 0.036211468 + 1515600 -33.794802 -33.800317 0.0055149211 290.24538 -0.0095668026 + 1515700 -33.791647 -33.796498 0.0048518742 255.34981 -0.040484759 + 1515800 -33.786062 -33.803104 0.017041201 896.86319 0.22522131 + 1515900 -33.794793 -33.798 0.0032069607 168.77948 -0.10808919 + 1516000 -33.794619 -33.79851 0.0038906841 204.76323 -0.079245281 + 1516100 -33.793535 -33.796807 0.0032718688 172.19554 0.0011446592 + 1516200 -33.788735 -33.801054 0.012319195 648.34824 0.32902875 + 1516300 -33.78926 -33.793071 0.0038102206 200.52851 0.22812561 + 1516400 -33.790731 -33.797657 0.0069264672 364.53379 0.35905848 + 1516500 -33.793102 -33.799721 0.0066189342 348.3486 0.45173082 + 1516600 -33.794252 -33.802047 0.0077946851 410.22733 0.43854852 + 1516700 -33.796262 -33.798349 0.0020871587 109.8453 0.1520538 + 1516800 -33.796591 -33.800506 0.0039147326 206.02889 0.093037174 + 1516900 -33.795387 -33.801255 0.0058680292 308.82914 0.039985697 + 1517000 -33.79066 -33.798104 0.0074443214 391.78799 -0.1929977 + 1517100 -33.788699 -33.792956 0.0042562633 224.00334 -0.53851468 + 1517200 -33.791043 -33.797768 0.0067250817 353.93505 -0.51887551 + 1517300 -33.795205 -33.80167 0.0064650939 340.25213 -0.49514466 + 1517400 -33.795499 -33.798581 0.0030824212 162.22508 -0.48755082 + 1517500 -33.794002 -33.798461 0.0044589177 234.66886 -0.26532873 + 1517600 -33.792999 -33.799876 0.0068767455 361.91698 0.12413995 + 1517700 -33.791886 -33.801744 0.0098581166 518.82388 0.52401798 + 1517800 -33.795549 -33.797347 0.0017975716 94.604588 0.51402917 + 1517900 -33.797069 -33.800871 0.0038015295 200.07111 0.63459311 + 1518000 -33.796683 -33.800761 0.0040787633 214.66167 0.62576297 + 1518100 -33.790434 -33.800197 0.0097624054 513.78669 0.44575824 + 1518200 -33.790856 -33.792232 0.0013758431 72.409393 -0.19029415 + 1518300 -33.79162 -33.800816 0.0091958276 483.96821 -0.27048141 + 1518400 -33.794977 -33.799715 0.0047384285 249.37927 -0.52183017 + 1518500 -33.795635 -33.801002 0.0053672879 282.47557 -0.58353076 + 1518600 -33.79825 -33.798792 0.00054189273 28.519331 -0.57982333 + 1518700 -33.798427 -33.803385 0.0049575993 260.91403 -0.28918221 + 1518800 -33.796333 -33.80012 0.003787129 199.31322 -0.031404317 + 1518900 -33.791509 -33.799326 0.0078171515 411.40971 0.43798657 + 1519000 -33.792535 -33.794773 0.0022386478 117.81804 0.75206825 + 1519100 -33.792737 -33.80277 0.010033845 528.07232 1.2392058 + 1519200 -33.796489 -33.798538 0.0020493917 107.85766 1.0655015 + 1519300 -33.79785 -33.80067 0.0028199386 148.41086 0.87160747 + 1519400 -33.797875 -33.799971 0.0020956907 110.29433 0.56759944 + 1519500 -33.790892 -33.803541 0.012649694 665.74212 0.17851278 + 1519600 -33.792403 -33.797223 0.004819382 253.63978 -0.90758185 + 1519700 -33.794376 -33.799305 0.0049293268 259.42607 -1.4342129 + 1519800 -33.795866 -33.799178 0.0033117708 174.29554 -1.574079 + 1519900 -33.792195 -33.801239 0.0090435367 475.95327 -1.2379015 + 1520000 -33.787237 -33.791679 0.0044420589 233.7816 -0.60728813 + 1520100 -33.789132 -33.797108 0.007975893 419.76413 0.43829525 + 1520200 -33.793601 -33.799815 0.0062142308 327.04942 1.1272328 + 1520300 -33.794213 -33.800648 0.0064356806 338.70413 1.4764195 + 1520400 -33.794065 -33.796546 0.0024813904 130.59336 1.3622109 + 1520500 -33.789615 -33.798315 0.008700211 457.88434 1.214042 + 1520600 -33.78594 -33.799145 0.013204172 694.92382 0.72110899 + 1520700 -33.79258 -33.798394 0.0058144381 306.00869 -0.14524118 + 1520800 -33.794148 -33.797252 0.003103799 163.35017 -0.62326461 + 1520900 -33.793832 -33.799668 0.0058364261 307.1659 -0.75876156 + 1521000 -33.791065 -33.800438 0.0093728581 493.28516 -0.82324148 + 1521100 -33.78722 -33.793093 0.0058725155 309.06525 -0.90572765 + 1521200 -33.789056 -33.796412 0.0073560504 387.14237 -0.60907295 + 1521300 -33.794852 -33.799948 0.0050965021 268.22436 -0.3505415 + 1521400 -33.794729 -33.80128 0.0065513372 344.79103 -0.039709956 + 1521500 -33.793692 -33.795744 0.0020519577 107.9927 0.12439138 + 1521600 -33.788181 -33.799291 0.011109731 584.69523 0.66263393 + 1521700 -33.788399 -33.797578 0.0091796656 483.11761 1.050454 + 1521800 -33.794815 -33.801023 0.0062072738 326.68328 1.0310617 + 1521900 -33.796316 -33.796901 0.0005851812 30.797565 0.76267939 + 1522000 -33.793489 -33.801647 0.0081578668 429.34125 0.68749042 + 1522100 -33.790182 -33.797007 0.0068245875 359.17195 0.1115421 + 1522200 -33.7889 -33.798806 0.009906372 521.36352 -0.57607993 + 1522300 -33.796033 -33.79703 0.00099711004 52.477012 -1.0881545 + 1522400 -33.796047 -33.803126 0.0070789079 372.55661 -0.98143579 + 1522500 -33.79497 -33.798683 0.0037132324 195.42411 -0.87057196 + 1522600 -33.790354 -33.798856 0.0085015703 447.43006 -0.34697769 + 1522700 -33.791352 -33.794606 0.0032537294 171.24087 0.17144124 + 1522800 -33.794866 -33.803204 0.008338135 438.82861 0.81006153 + 1522900 -33.797393 -33.799045 0.00165166 86.925391 0.84377774 + 1523000 -33.795333 -33.799746 0.0044125916 232.23076 0.82397054 + 1523100 -33.793984 -33.797586 0.0036021538 189.57814 0.64199212 + 1523200 -33.791692 -33.803275 0.011583222 609.61462 0.46401101 + 1523300 -33.793739 -33.79649 0.00275121 144.79373 -0.25335255 + 1523400 -33.794286 -33.799641 0.0053555136 281.8559 -0.52796451 + 1523500 -33.798682 -33.801282 0.0026003869 136.85604 -0.68545435 + 1523600 -33.7993 -33.802894 0.0035943556 189.16773 -0.64687071 + 1523700 -33.797379 -33.798923 0.0015441855 81.269108 -0.4964901 + 1523800 -33.794524 -33.799947 0.0054227451 285.39424 0.035988239 + 1523900 -33.792927 -33.800412 0.007485067 393.9324 0.68151589 + 1524000 -33.792123 -33.799783 0.0076595472 403.11514 1.1883822 + 1524100 -33.793991 -33.796366 0.0023748102 124.98414 1.2964468 + 1524200 -33.79614 -33.800257 0.0041171261 216.68067 1.3539104 + 1524300 -33.79694 -33.801812 0.0048715727 256.38653 1.1673583 + 1524400 -33.793706 -33.798809 0.0051029241 268.56234 0.56810659 + 1524500 -33.78864 -33.795822 0.0071826444 378.01617 -0.41132958 + 1524600 -33.79158 -33.799114 0.0075332803 396.46983 -1.201062 + 1524700 -33.793529 -33.800888 0.0073596534 387.332 -1.6944824 + 1524800 -33.793788 -33.796011 0.002223119 117.00077 -1.9055591 + 1524900 -33.791595 -33.797902 0.0063070338 331.93356 -1.4445938 + 1525000 -33.788069 -33.798085 0.010015532 527.10851 -0.54224116 + 1525100 -33.785201 -33.799911 0.014709838 774.16564 0.77508507 + 1525200 -33.793734 -33.795378 0.0016443697 86.541712 1.2824567 + 1525300 -33.794471 -33.800686 0.0062152401 327.10254 1.7071617 + 1525400 -33.794647 -33.799586 0.0049390263 259.93655 1.7013044 + 1525500 -33.789568 -33.799193 0.0096249027 506.55004 1.3041255 + 1525600 -33.787766 -33.790355 0.0025898418 136.30107 0.20398673 + 1525700 -33.792761 -33.802195 0.0094338006 496.49251 -0.33617277 + 1525800 -33.796229 -33.799767 0.0035381364 186.20897 -0.85838578 + 1525900 -33.794073 -33.799841 0.0057680302 303.56629 -1.0863833 + 1526000 -33.792149 -33.793914 0.0017644095 92.8593 -1.1249248 + 1526100 -33.787681 -33.803322 0.015641837 823.21594 -0.49208747 + 1526200 -33.795612 -33.798582 0.0029706613 156.34326 -0.39721392 + 1526300 -33.796649 -33.800731 0.0040819631 214.83008 -0.10081579 + 1526400 -33.796231 -33.798151 0.0019199612 101.04584 0.15426388 + 1526500 -33.791065 -33.803626 0.012561141 661.08162 0.76212387 + 1526600 -33.790951 -33.793932 0.0029811725 156.89645 0.85450189 + 1526700 -33.791104 -33.798281 0.0071771621 377.72764 1.0204306 + 1526800 -33.794342 -33.798071 0.0037290527 196.25672 0.9630182 + 1526900 -33.793426 -33.802899 0.0094731111 498.56139 0.86380887 + 1527000 -33.794002 -33.795727 0.0017250261 90.786584 0.20087568 + 1527100 -33.79245 -33.79954 0.0070904437 373.16373 -0.14277721 + 1527200 -33.793619 -33.799255 0.0056365895 296.64868 -0.53523218 + 1527300 -33.794464 -33.801668 0.0072045985 379.17159 -0.82509889 + 1527400 -33.796833 -33.797839 0.0010059453 52.942003 -1.0142909 + 1527500 -33.796362 -33.801129 0.0047662219 250.84201 -0.75445269 + 1527600 -33.792184 -33.799869 0.0076855842 404.48544 -0.29582329 + 1527700 -33.788357 -33.798 0.0096434451 507.52592 0.40728621 + 1527800 -33.792268 -33.795411 0.0031425858 165.39149 0.84473634 + 1527900 -33.794134 -33.800434 0.0062991186 331.51699 1.2580814 + 1528000 -33.794174 -33.800606 0.0064323574 338.52923 1.344371 + 1528100 -33.793121 -33.797398 0.0042767742 225.08281 0.98602998 + 1528200 -33.791563 -33.796798 0.0052346222 275.4935 0.51732455 + 1528300 -33.791094 -33.799987 0.0088934217 468.05285 0.090346196 + 1528400 -33.794711 -33.801205 0.0064941329 341.78042 -0.5201187 + 1528500 -33.796782 -33.798529 0.0017468125 91.933183 -0.91791147 + 1528600 -33.79594 -33.800559 0.0046199362 243.14312 -0.86228561 + 1528700 -33.791884 -33.799413 0.0075290932 396.24946 -0.61131058 + 1528800 -33.788327 -33.798653 0.010326891 543.49508 -0.1638237 + 1528900 -33.791623 -33.793578 0.0019553584 102.90877 0.12789489 + 1529000 -33.793001 -33.80147 0.008468585 445.69407 0.66109749 + 1529100 -33.794673 -33.799667 0.0049940296 262.83133 0.83579817 + 1529200 -33.793444 -33.79973 0.0062854001 330.795 0.85277112 + 1529300 -33.791544 -33.793237 0.0016931866 89.110902 0.57367524 + 1529400 -33.784113 -33.802227 0.018113367 953.29034 0.68174951 + 1529500 -33.791821 -33.796455 0.004633877 243.87681 -8.6974131e-05 + 1529600 -33.793768 -33.799555 0.005786961 304.56259 -0.28687361 + 1529700 -33.795206 -33.79701 0.0018036785 94.925991 -0.44531326 + 1529800 -33.792543 -33.80373 0.011186895 588.75631 -0.2468528 + 1529900 -33.788931 -33.792967 0.0040360069 212.41144 -0.41548838 + 1530000 -33.784924 -33.796615 0.011690532 615.26225 -0.087278344 + 1530100 -33.793986 -33.797054 0.0030681458 161.47378 -0.010725096 + 1530200 -33.794012 -33.803316 0.0093040819 489.66553 0.26229197 + 1530300 -33.794433 -33.79553 0.0010961759 57.690762 0.1747842 + 1530400 -33.790468 -33.799257 0.0087889738 462.55585 0.36709431 + 1530500 -33.788194 -33.79522 0.0070254997 369.74578 0.43616555 + 1530600 -33.79032 -33.802471 0.012150884 639.4902 0.53834758 + 1530700 -33.796234 -33.796819 0.00058453831 30.76373 0.14899191 + 1530800 -33.795363 -33.801195 0.0058316529 306.91469 0.18540647 + 1530900 -33.793562 -33.798915 0.0053529072 281.71873 0.11043289 + 1531000 -33.787346 -33.799582 0.012235186 643.92693 -0.043011602 + 1531100 -33.789895 -33.791649 0.00175456 92.340928 -0.48823144 + 1531200 -33.795947 -33.801853 0.0059056231 310.80768 -0.36162694 + 1531300 -33.79636 -33.800849 0.0044886407 236.23316 -0.34560228 + 1531400 -33.793244 -33.799234 0.0059894481 315.21931 -0.20295451 + 1531500 -33.790196 -33.793672 0.0034759916 182.93834 -0.02256624 + 1531600 -33.789464 -33.800395 0.010930921 575.28464 0.4870911 + 1531700 -33.795876 -33.8008 0.0049241778 259.15508 0.57236784 + 1531800 -33.79661 -33.79946 0.0028501858 150.00274 0.50269345 + 1531900 -33.795303 -33.799036 0.0037328264 196.45532 0.42107999 + 1532000 -33.792774 -33.801141 0.0083671281 440.35449 0.38444536 + 1532100 -33.790573 -33.798493 0.0079202963 416.83813 5.7691675e-05 + 1532200 -33.792549 -33.795665 0.0031152186 163.95118 -0.45412179 + 1532300 -33.797416 -33.801431 0.0040154859 211.33144 -0.46898834 + 1532400 -33.797305 -33.801609 0.0043030406 226.46519 -0.4380941 + 1532500 -33.792916 -33.79926 0.0063436029 333.85816 -0.3170347 + 1532600 -33.791361 -33.79411 0.0027488371 144.66885 -0.12676945 + 1532700 -33.791155 -33.801562 0.010406621 547.6912 0.41286779 + 1532800 -33.794043 -33.79907 0.005027335 264.58416 0.53835115 + 1532900 -33.794507 -33.799563 0.0050554397 266.06328 0.59883537 + 1533000 -33.796533 -33.798115 0.0015817541 83.246309 0.51562535 + 1533100 -33.797663 -33.803457 0.0057931547 304.88856 0.54604211 + 1533200 -33.797151 -33.799695 0.0025440713 133.8922 0.27781874 + 1533300 -33.79187 -33.798998 0.0071286586 375.17495 -0.041140336 + 1533400 -33.791241 -33.795058 0.0038171479 200.89309 -0.49255773 + 1533500 -33.791703 -33.80331 0.011606718 610.85123 -0.59420487 + 1533600 -33.796739 -33.797895 0.00115558 60.817145 -0.95915793 + 1533700 -33.797401 -33.801051 0.0036493927 192.06429 -0.79856366 + 1533800 -33.796619 -33.799631 0.0030124223 158.5411 -0.49596552 + 1533900 -33.78596 -33.803493 0.0175324 922.71456 0.49283532 + 1534000 -33.792606 -33.794658 0.0020514351 107.9652 0.83338432 + 1534100 -33.794657 -33.800219 0.0055627405 292.76207 1.2751302 + 1534200 -33.796066 -33.799095 0.003029263 159.42741 1.316505 + 1534300 -33.791991 -33.801688 0.0096965325 510.31986 1.2075297 + 1534400 -33.78911 -33.791467 0.0023576929 124.08327 0.38213917 + 1534500 -33.790263 -33.800552 0.010289226 541.51279 -0.10654975 + 1534600 -33.794478 -33.799583 0.0051051038 268.67706 -0.64014022 + 1534700 -33.793575 -33.800752 0.0071766818 377.70236 -0.92838208 + 1534800 -33.79351 -33.79459 0.0010804833 56.86487 -1.162323 + 1534900 -33.789787 -33.800619 0.010831657 570.06046 -0.73622428 + 1535000 -33.786969 -33.796249 0.0092805754 488.42841 -0.30091729 + 1535100 -33.791553 -33.798659 0.00710598 373.98139 0.10303947 + 1535200 -33.795875 -33.798079 0.0022033363 115.95962 0.31152664 + 1535300 -33.795283 -33.802289 0.0070067953 368.76139 0.64038897 + 1535400 -33.792855 -33.798995 0.0061393265 323.10728 0.69808923 + 1535500 -33.787824 -33.794537 0.0067128753 353.29264 0.58233053 + 1535600 -33.787834 -33.794751 0.0069163813 364.00298 0.44593532 + 1535700 -33.795001 -33.801314 0.0063138509 332.29234 0.33282366 + 1535800 -33.795659 -33.800074 0.0044154556 232.38149 0.10415706 + 1535900 -33.794165 -33.797332 0.0031670157 166.67721 -0.15518139 + 1536000 -33.789872 -33.799518 0.0096463871 507.68075 -0.1845695 + 1536100 -33.790414 -33.799066 0.0086515399 455.32283 -0.35288052 + 1536200 -33.796161 -33.800284 0.004122705 216.97429 -0.54689462 + 1536300 -33.797014 -33.798461 0.0014472633 76.168177 -0.52854923 + 1536400 -33.794075 -33.801974 0.0078988645 415.71019 -0.15928698 + 1536500 -33.791614 -33.797846 0.0062322891 327.99982 0.1295689 + 1536600 -33.790814 -33.798626 0.0078114667 411.11052 0.48193118 + 1536700 -33.793184 -33.795997 0.0028125412 148.02153 0.65061459 + 1536800 -33.792781 -33.802837 0.010055401 529.20679 0.94760664 + 1536900 -33.794122 -33.7969 0.0027776145 146.18337 0.71692973 + 1537000 -33.792042 -33.798887 0.00684534 360.26414 0.5375314 + 1537100 -33.791014 -33.795001 0.0039873765 209.85207 0.1740757 + 1537200 -33.789187 -33.803579 0.01439219 757.4481 0.018524278 + 1537300 -33.795464 -33.796914 0.0014496937 76.296085 -0.59422248 + 1537400 -33.795752 -33.801036 0.0052838327 278.0834 -0.62108482 + 1537500 -33.795873 -33.798738 0.0028653869 150.80276 -0.57503223 + 1537600 -33.789179 -33.802716 0.013537204 712.45096 -0.15747007 + 1537700 -33.786788 -33.78774 0.00095190635 50.097982 -0.091165635 + 1537800 -33.787265 -33.799475 0.012209592 642.57995 0.61937172 + 1537900 -33.792615 -33.797301 0.004686016 246.62084 0.79487818 + 1538000 -33.794253 -33.80239 0.00813643 428.21305 0.91304601 + 1538100 -33.79654 -33.796784 0.00024414353 12.849056 0.62140118 + 1538200 -33.794573 -33.80228 0.0077075458 405.64126 0.57114582 + 1538300 -33.790034 -33.796494 0.0064598484 339.97606 0.16148506 + 1538400 -33.78652 -33.799133 0.012613745 663.85013 -0.39162829 + 1538500 -33.793046 -33.794088 0.0010415439 54.815527 -1.0457494 + 1538600 -33.793043 -33.802055 0.0090111517 474.24888 -0.93070661 + 1538700 -33.793912 -33.798492 0.0045800096 241.04182 -0.89794767 + 1538800 -33.792397 -33.799239 0.0068419977 360.08824 -0.57092505 + 1538900 -33.793265 -33.796177 0.0029119505 153.25336 -0.1676656 + 1539000 -33.794161 -33.802506 0.0083446786 439.17299 0.45395107 + 1539100 -33.796957 -33.800139 0.0031816018 167.44486 0.64276431 + 1539200 -33.796445 -33.799872 0.0034271643 180.3686 0.75580511 + 1539300 -33.792122 -33.797247 0.0051247707 269.71211 0.78808428 + 1539400 -33.788205 -33.800616 0.012411049 653.18243 0.80227624 + 1539500 -33.791825 -33.797236 0.0054109051 284.77111 0.29970845 + 1539600 -33.79368 -33.797606 0.003926172 206.63093 -0.033706941 + 1539700 -33.794163 -33.800249 0.0060858782 320.29434 -0.15484855 + 1539800 -33.79372 -33.800561 0.0068410854 360.04022 -0.3032426 + 1539900 -33.79278 -33.797792 0.0050120861 263.78162 -0.50098988 + 1540000 -33.792338 -33.796432 0.0040945074 215.49027 -0.49408173 + 1540100 -33.792061 -33.801449 0.0093873702 494.04892 -0.2017945 + 1540200 -33.794459 -33.799183 0.0047237871 248.6087 -0.1428268 + 1540300 -33.795484 -33.799565 0.0040810015 214.77947 -0.0023731666 + 1540400 -33.795985 -33.798753 0.0027683422 145.69538 0.15805209 + 1540500 -33.79124 -33.802425 0.01118456 588.63343 0.52639383 + 1540600 -33.788334 -33.793154 0.0048196406 253.65339 0.50148308 + 1540700 -33.790201 -33.798033 0.007832224 412.20296 0.59271391 + 1540800 -33.795434 -33.798583 0.0031486891 165.7127 0.51823059 + 1540900 -33.794272 -33.80315 0.0088783355 467.25888 0.52686976 + 1541000 -33.794054 -33.795433 0.001379514 72.602591 0.080134692 + 1541100 -33.789871 -33.799398 0.0095268812 501.39126 -0.067286167 + 1541200 -33.790008 -33.795454 0.0054459419 286.61506 -0.38871857 + 1541300 -33.792736 -33.802897 0.010161282 534.77919 -0.51608923 + 1541400 -33.796879 -33.797116 0.00023748666 12.498711 -0.77135934 + 1541500 -33.795464 -33.802048 0.0065839281 346.50626 -0.48454529 + 1541600 -33.793385 -33.797807 0.0044218291 232.71692 -0.20398694 + 1541700 -33.786204 -33.800837 0.014633304 770.13776 0.47305172 + 1541800 -33.790618 -33.790895 0.00027789589 14.625413 0.63600335 + 1541900 -33.790559 -33.801945 0.011386783 599.27623 1.2127852 + 1542000 -33.794148 -33.797973 0.0038255478 201.33517 1.1346619 + 1542100 -33.794359 -33.801155 0.00679614 357.67479 0.98405032 + 1542200 -33.796526 -33.797259 0.00073319943 38.587632 0.54055949 + 1542300 -33.796034 -33.803417 0.0073833996 388.58174 0.33424988 + 1542400 -33.795394 -33.798835 0.003440737 181.08292 -0.19361391 + 1542500 -33.78998 -33.798667 0.008687817 457.23206 -0.68896829 + 1542600 -33.789792 -33.792914 0.0031217943 164.29725 -1.2970722 + 1542700 -33.792214 -33.80234 0.010126329 532.93966 -1.3122278 + 1542800 -33.796672 -33.799147 0.0024758741 130.30305 -1.3803944 + 1542900 -33.795355 -33.799887 0.0045318476 238.5071 -0.96709364 + 1543000 -33.793825 -33.798469 0.0046439944 244.40928 -0.25229236 + 1543100 -33.791063 -33.802128 0.011065508 582.36781 0.79885953 + 1543200 -33.792596 -33.796662 0.0040658226 213.98062 1.4296342 + 1543300 -33.795429 -33.799072 0.0036432032 191.73853 1.8117729 + 1543400 -33.796691 -33.800571 0.0038791576 204.1566 1.8169864 + 1543500 -33.794203 -33.801047 0.0068441382 360.20089 1.4332181 + 1543600 -33.789059 -33.795586 0.0065268578 343.5027 0.33843761 + 1543700 -33.790656 -33.797268 0.0066123145 348.00021 -0.81892647 + 1543800 -33.793075 -33.800879 0.0078041667 410.72633 -1.5473815 + 1543900 -33.793852 -33.798788 0.0049356774 259.7603 -2.0116035 + 1544000 -33.79281 -33.797169 0.0043591233 229.41677 -1.9919677 + 1544100 -33.789813 -33.796166 0.0063528184 334.34317 -1.3636397 + 1544200 -33.785286 -33.801048 0.015762714 829.57759 0.0082212827 + 1544300 -33.793449 -33.797388 0.0039388357 207.29741 0.67008055 + 1544400 -33.794505 -33.799424 0.0049188264 258.87344 1.1947327 + 1544500 -33.794912 -33.798977 0.0040646304 213.91787 1.4653229 + 1544600 -33.791005 -33.801746 0.010740879 565.28287 1.570114 + 1544700 -33.7877 -33.79061 0.0029093667 153.11737 0.90975351 + 1544800 -33.787889 -33.798399 0.010509857 553.12442 0.41119459 + 1544900 -33.795512 -33.799298 0.0037862373 199.26629 -0.11719653 + 1545000 -33.794826 -33.802475 0.0076489414 402.55697 -0.37833841 + 1545100 -33.794527 -33.795153 0.00062592703 32.941981 -0.80117983 + 1545200 -33.788954 -33.800933 0.011979032 630.44575 -0.66081858 + 1545300 -33.788809 -33.794914 0.0061049334 321.2972 -0.69416922 + 1545400 -33.793556 -33.801904 0.0083474301 439.3178 -0.51446895 + 1545500 -33.796819 -33.796977 0.00015792281 8.3113368 -0.48772708 + 1545600 -33.794667 -33.802966 0.0082986961 436.75297 0.0010684877 + 1545700 -33.792365 -33.796769 0.0044037276 231.76426 0.33588525 + 1545800 -33.787024 -33.799658 0.012634153 664.9242 0.90859648 + 1545900 -33.794249 -33.795087 0.00083812153 44.109589 0.98626115 + 1546000 -33.796075 -33.803282 0.0072072712 379.31225 1.1831532 + 1546100 -33.796038 -33.798584 0.0025461017 133.99906 0.85881359 + 1546200 -33.791097 -33.799684 0.0085874068 451.94756 0.43409009 + 1546300 -33.790504 -33.793523 0.00301896 158.88517 -0.393056 + 1546400 -33.792535 -33.803213 0.010678827 562.01711 -0.78519398 + 1546500 -33.797722 -33.799431 0.0017094475 89.966695 -1.2037197 + 1546600 -33.796159 -33.800603 0.0044444557 233.90774 -1.0959448 + 1546700 -33.793944 -33.797567 0.003622658 190.65726 -0.70855688 + 1546800 -33.789909 -33.802514 0.01260425 663.35044 0.18177706 + 1546900 -33.792446 -33.795662 0.0032157484 169.24197 0.67194516 + 1547000 -33.796198 -33.800359 0.0041602014 218.94769 1.1307803 + 1547100 -33.797721 -33.800896 0.0031751099 167.1032 1.2232184 + 1547200 -33.795649 -33.80193 0.0062814543 330.58734 1.0992486 + 1547300 -33.792698 -33.796274 0.0035758157 188.19199 0.49749006 + 1547400 -33.790998 -33.798051 0.0070528207 371.18366 -0.1389882 + 1547500 -33.792975 -33.800323 0.0073476584 386.70071 -0.73133907 + 1547600 -33.797298 -33.801085 0.003787743 199.34553 -1.1508424 + 1547700 -33.798643 -33.800581 0.0019378452 101.98707 -1.1986871 + 1547800 -33.797342 -33.800705 0.0033626791 176.9748 -0.85851916 + 1547900 -33.793359 -33.801794 0.0084344872 443.89954 -0.0781234 + 1548000 -33.792233 -33.797181 0.0049483731 260.42846 0.67202835 + 1548100 -33.792414 -33.798217 0.0058027691 305.39456 1.4484918 + 1548200 -33.795943 -33.799548 0.0036054146 189.74975 1.8421954 + 1548300 -33.798063 -33.802534 0.0044709785 235.30361 1.8032665 + 1548400 -33.797399 -33.799024 0.0016245681 85.49957 1.2885766 + 1548500 -33.79403 -33.800827 0.006796883 357.71389 0.52167763 + 1548600 -33.794064 -33.799282 0.0052183356 274.63635 -0.60130447 + 1548700 -33.793261 -33.801932 0.008670992 456.34657 -1.5311356 + 1548800 -33.794459 -33.795238 0.00077924531 41.010986 -2.3415549 + 1548900 -33.791141 -33.800259 0.0091178451 479.86405 -2.2938818 + 1549000 -33.78877 -33.794903 0.0061333198 322.79115 -1.8784772 + 1549100 -33.788977 -33.80102 0.012043668 633.8475 -0.91758669 + 1549200 -33.795477 -33.796199 0.00072216377 38.006835 -0.37848694 + 1549300 -33.794952 -33.802998 0.008045418 423.42317 0.48106503 + 1549400 -33.795204 -33.798626 0.0034220892 180.1015 0.98349419 + 1549500 -33.789719 -33.800039 0.010320241 543.1451 1.5465465 + 1549600 -33.785372 -33.78668 0.0013080643 68.842258 1.6992119 + 1549700 -33.787193 -33.802345 0.015152039 797.4383 2.1365048 + 1549800 -33.794031 -33.796869 0.002837945 149.35852 1.6082551 + 1549900 -33.792857 -33.800211 0.0073537338 387.02045 1.1221221 + 1550000 -33.794458 -33.796644 0.0021863285 115.06452 0.29995254 + 1550100 -33.793919 -33.803736 0.0098171017 516.66531 -0.25594131 + 1550200 -33.796421 -33.79841 0.0019890422 104.68152 -1.0115747 + 1550300 -33.795906 -33.800822 0.0049159833 258.72382 -1.2923229 + 1550400 -33.794685 -33.797597 0.0029117848 153.24464 -1.3356807 + 1550500 -33.788353 -33.802423 0.014069392 740.45957 -0.76485488 + 1550600 -33.790563 -33.793398 0.0028349951 149.20327 -0.49755438 + 1550700 -33.792759 -33.79947 0.0067102664 353.15533 0.14687639 + 1550800 -33.794952 -33.799244 0.0042924241 225.90645 0.56363727 + 1550900 -33.793634 -33.801854 0.0082201233 432.61776 0.9086385 + 1551000 -33.793258 -33.795829 0.0025713598 135.32837 0.87973668 + 1551100 -33.791112 -33.798966 0.0078536734 413.33183 0.95942014 + 1551200 -33.790686 -33.798687 0.008001195 421.09576 0.75628338 + 1551300 -33.793095 -33.799894 0.0067991788 357.83472 0.37938172 + 1551400 -33.796295 -33.798501 0.0022053645 116.06637 -0.026654402 + 1551500 -33.796251 -33.800857 0.0046062555 242.42312 -0.19167713 + 1551600 -33.791212 -33.800088 0.0088755854 467.11414 -0.28194744 + 1551700 -33.787044 -33.795131 0.0080871973 425.62198 -0.58882035 + 1551800 -33.790773 -33.796616 0.0058436015 307.54353 -0.74721287 + 1551900 -33.793307 -33.79929 0.0059831871 314.8898 -0.59652047 + 1552000 -33.793784 -33.801047 0.0072633011 382.26106 -0.3693985 + 1552100 -33.793978 -33.796764 0.0027856181 146.6046 -0.22105636 + 1552200 -33.790659 -33.798701 0.0080418381 423.23476 0.27700787 + 1552300 -33.787867 -33.796936 0.0090689025 477.28825 0.79976532 + 1552400 -33.791753 -33.800913 0.0091595076 482.05672 1.0881348 + 1552500 -33.795526 -33.796861 0.0013348833 70.253717 0.96363976 + 1552600 -33.794697 -33.801395 0.0066979103 352.50505 0.94892306 + 1552700 -33.793711 -33.798669 0.0049574285 260.90504 0.58991864 + 1552800 -33.784497 -33.798573 0.014075256 740.76819 0.1008296 + 1552900 -33.78658 -33.789235 0.0026545352 139.70582 -0.97920562 + 1553000 -33.793436 -33.802297 0.0088613996 466.36756 -1.1364833 + 1553100 -33.795022 -33.798304 0.0032819465 172.72591 -1.2459103 + 1553200 -33.792424 -33.800218 0.007793965 410.18943 -0.95111566 + 1553300 -33.79203 -33.793858 0.0018277124 96.190872 -0.54572372 + 1553400 -33.790259 -33.803533 0.013273269 698.56031 0.46733651 + 1553500 -33.796391 -33.798521 0.0021303225 112.11697 0.71936308 + 1553600 -33.796594 -33.801421 0.0048268512 254.03287 0.96843368 + 1553700 -33.79637 -33.797716 0.0013464233 70.861059 0.94198951 + 1553800 -33.791363 -33.803772 0.012408546 653.05072 0.98357581 + 1553900 -33.792635 -33.794691 0.002055834 108.19671 0.31550082 + 1554000 -33.791929 -33.800124 0.0081952979 431.31122 -0.027391606 + 1554100 -33.795238 -33.797843 0.0026048201 137.08936 -0.46935623 + 1554200 -33.795658 -33.803477 0.0078191734 411.51612 -0.54714801 + 1554300 -33.797826 -33.798482 0.00065668015 34.56049 -0.7598392 + 1554400 -33.796556 -33.801667 0.005110528 268.96253 -0.56282292 + 1554500 -33.793204 -33.797823 0.0046182565 243.05472 -0.21856356 + 1554600 -33.78883 -33.801681 0.012851229 676.3487 0.45400214 + 1554700 -33.792747 -33.794163 0.001416701 74.55971 0.6263034 + 1554800 -33.794688 -33.800977 0.0062889693 330.98285 1.003359 + 1554900 -33.796313 -33.800182 0.0038684309 203.59207 0.9850616 + 1555000 -33.794775 -33.801136 0.0063612598 334.78743 0.80442896 + 1555100 -33.79387 -33.796266 0.0023960412 126.10151 0.31294065 + 1555200 -33.791509 -33.800635 0.0091259525 480.29074 -0.032624476 + 1555300 -33.791923 -33.799024 0.0071005843 373.69742 -0.57661614 + 1555400 -33.794852 -33.799484 0.0046317702 243.76593 -0.97512606 + 1555500 -33.797121 -33.79937 0.0022493208 118.37975 -1.0643632 + 1555600 -33.796097 -33.801533 0.0054355231 286.06673 -0.76580073 + 1555700 -33.789487 -33.798939 0.0094523334 497.46787 -0.16393235 + 1555800 -33.7895 -33.795495 0.0059949081 315.50667 0.44953449 + 1555900 -33.792463 -33.798446 0.0059823694 314.84677 1.0747099 + 1556000 -33.794293 -33.800103 0.0058103123 305.79155 1.3875277 + 1556100 -33.794192 -33.800071 0.0058789172 309.40217 1.3309085 + 1556200 -33.792415 -33.795431 0.0030157155 158.71442 0.95098176 + 1556300 -33.785317 -33.798667 0.013350128 702.60531 0.52093787 + 1556400 -33.791413 -33.798486 0.0070727554 372.23281 -0.33173484 + 1556500 -33.794496 -33.80057 0.0060740962 319.67427 -0.77763316 + 1556600 -33.795308 -33.796766 0.0014580911 76.738033 -1.0659383 + 1556700 -33.792225 -33.801913 0.0096885851 509.90159 -0.82094167 + 1556800 -33.788492 -33.794772 0.0062796463 330.49218 -0.54937118 + 1556900 -33.784329 -33.79742 0.013091333 688.98519 0.077604198 + 1557000 -33.794666 -33.796281 0.0016146689 84.978583 0.31148738 + 1557100 -33.794587 -33.803413 0.0088264659 464.52903 0.75687648 + 1557200 -33.795093 -33.79745 0.0023565795 124.02468 0.67272686 + 1557300 -33.790524 -33.799571 0.0090463198 476.09974 0.71495472 + 1557400 -33.789541 -33.792329 0.0027886009 146.76158 0.44513447 + 1557500 -33.790589 -33.803874 0.013284701 699.16199 0.38294609 + 1557600 -33.796745 -33.797838 0.0010924153 57.492842 -0.10161723 + 1557700 -33.795334 -33.801367 0.0060338471 317.55599 -0.14669306 + 1557800 -33.794364 -33.796999 0.0026351585 138.68604 -0.32145123 + 1557900 -33.787576 -33.803391 0.015815363 832.34846 -0.10716353 + 1558000 -33.790192 -33.790973 0.00078078306 41.091916 -0.47387175 + 1558100 -33.795743 -33.801682 0.005939057 312.56727 -0.30213002 + 1558200 -33.797061 -33.799488 0.0024270943 127.73581 -0.19932313 + 1558300 -33.793109 -33.80278 0.0096717352 509.0148 0.12805756 + 1558400 -33.791065 -33.792211 0.0011465808 60.343527 0.13843592 + 1558500 -33.789527 -33.800704 0.011177255 588.24895 0.68187938 + 1558600 -33.796398 -33.799553 0.0031548185 166.03528 0.67245097 + 1558700 -33.796644 -33.802141 0.0054965011 289.27595 0.64998972 + 1558800 -33.796083 -33.797095 0.0010114333 53.230831 0.39058778 + 1558900 -33.79245 -33.801808 0.0093577497 492.49002 0.28201484 + 1559000 -33.791297 -33.797586 0.0062892627 330.99828 -0.18389658 + 1559100 -33.792368 -33.799623 0.0072548357 381.81553 -0.5344244 + 1559200 -33.798031 -33.799458 0.0014272101 75.112792 -0.78524249 + 1559300 -33.797266 -33.802398 0.0051323144 270.10913 -0.61025607 + 1559400 -33.794353 -33.799448 0.005094715 268.13031 -0.33865971 + 1559500 -33.791681 -33.797825 0.0061435593 323.33004 0.064523413 + 1559600 -33.792105 -33.797305 0.0051997784 273.6597 0.5727845 + 1559700 -33.793171 -33.80092 0.0077492379 407.83548 1.0330725 + 1559800 -33.794956 -33.799809 0.0048533013 255.42492 1.0560401 + 1559900 -33.797993 -33.800172 0.0021783143 114.64274 0.93257161 + 1560000 -33.799263 -33.802081 0.0028174327 148.27897 0.76804827 + 1560100 -33.797557 -33.801628 0.0040707224 214.23849 0.40012414 + 1560200 -33.793412 -33.799962 0.0065503811 344.74072 -0.24520834 + 1560300 -33.792906 -33.796302 0.0033962527 178.74175 -1.1090672 + 1560400 -33.792319 -33.801021 0.0087017999 457.96797 -1.5337682 + 1560500 -33.794831 -33.798703 0.0038712723 203.74161 -1.7775269 + 1560600 -33.797027 -33.801008 0.0039815908 209.54757 -1.6268439 + 1560700 -33.797853 -33.799392 0.0015388864 80.990221 -1.199223 + 1560800 -33.792296 -33.802976 0.010679331 562.04365 -0.092017929 + 1560900 -33.790352 -33.796218 0.0058663963 308.74321 1.176301 + 1561000 -33.791977 -33.799747 0.0077695133 408.90255 2.317683 + 1561100 -33.794434 -33.796164 0.0017298615 91.041066 2.7379023 + 1561200 -33.79238 -33.802102 0.0097227208 511.69812 2.8201593 + 1561300 -33.791166 -33.794011 0.0028446475 149.71126 1.9646449 + 1561400 -33.779174 -33.798021 0.01884708 991.905 0.71681203 + 1561500 -33.791573 -33.795716 0.0041432082 218.05335 -1.1832994 + 1561600 -33.793448 -33.803088 0.0096400502 507.34724 -1.8045664 + 1561700 -33.795523 -33.796066 0.00054252751 28.552739 -2.3027226 + 1561800 -33.792742 -33.800805 0.0080622031 424.30656 -1.9475568 + 1561900 -33.790536 -33.795194 0.0046582471 245.15939 -1.1560356 + 1562000 -33.787994 -33.802806 0.014812558 779.57172 0.24423072 + 1562100 -33.796484 -33.79704 0.000556396 29.282625 0.79182974 + 1562200 -33.795804 -33.802109 0.006305813 331.86931 1.4013365 + 1562300 -33.79501 -33.798274 0.0032641649 171.79009 1.5207018 + 1562400 -33.789659 -33.801256 0.01159644 610.31027 1.5288405 + 1562500 -33.790548 -33.791822 0.001274121 67.055854 0.85551332 + 1562600 -33.794096 -33.801956 0.0078606885 413.70102 0.47069063 + 1562700 -33.79767 -33.800461 0.0027910691 146.89148 0.02750935 + 1562800 -33.795224 -33.801294 0.0060705447 319.48735 -0.28616711 + 1562900 -33.792289 -33.794877 0.0025877413 136.19052 -0.83906654 + 1563000 -33.789498 -33.801167 0.011668707 614.11364 -0.94913888 + 1563100 -33.793999 -33.798548 0.0045491082 239.41551 -1.1882474 + 1563200 -33.796855 -33.800569 0.0037138407 195.45612 -1.140794 + 1563300 -33.796929 -33.799443 0.0025138403 132.30117 -0.80824502 + 1563400 -33.794811 -33.801965 0.0071533034 376.47198 -0.095314593 + 1563500 -33.792447 -33.798874 0.006426688 338.23086 0.605484 + 1563600 -33.791846 -33.797251 0.0054053584 284.47919 1.325733 + 1563700 -33.795967 -33.79997 0.0040029417 210.67125 1.7540987 + 1563800 -33.797903 -33.801574 0.0036710045 193.20169 1.7151917 + 1563900 -33.796053 -33.800322 0.004268653 224.6554 1.3325842 + 1564000 -33.79289 -33.797323 0.0044329376 233.30155 0.42885448 + 1564100 -33.791806 -33.800879 0.0090727525 477.49087 -0.62273789 + 1564200 -33.793871 -33.799352 0.0054800765 288.41154 -1.574457 + 1564300 -33.794173 -33.799409 0.0052361343 275.57308 -2.1056828 + 1564400 -33.793972 -33.796258 0.0022866254 120.34305 -2.1873197 + 1564500 -33.784355 -33.80059 0.016234895 854.42803 -1.2004372 + 1564600 -33.788852 -33.795036 0.0061837592 325.44573 -0.39101286 + 1564700 -33.793332 -33.800267 0.0069349217 364.97875 0.39119581 + 1564800 -33.795547 -33.797746 0.0021990886 115.73607 0.89086536 + 1564900 -33.794111 -33.803176 0.0090649022 477.07772 1.3674788 + 1565000 -33.792729 -33.795272 0.0025425941 133.81446 1.3033256 + 1565100 -33.784391 -33.797751 0.013360468 703.1495 1.3143615 + 1565200 -33.789963 -33.793657 0.0036932565 194.37279 0.71417259 + 1565300 -33.793038 -33.803284 0.010246134 539.24487 0.4983091 + 1565400 -33.794824 -33.795895 0.001070188 56.323037 -0.10480532 + 1565500 -33.792713 -33.801186 0.0084724593 445.89798 -0.35543329 + 1565600 -33.793645 -33.796931 0.003286257 172.95278 -0.68257106 + 1565700 -33.791689 -33.803138 0.011448612 602.53022 -0.651387 + 1565800 -33.795026 -33.79537 0.0003442413 18.117112 -0.90635944 + 1565900 -33.79529 -33.80207 0.0067801551 356.83352 -0.53293329 + 1566000 -33.79694 -33.799224 0.0022841677 120.21371 -0.30865643 + 1566100 -33.792296 -33.802348 0.010052142 529.03529 0.21166158 + 1566200 -33.789481 -33.790886 0.0014051016 73.949246 0.62802636 + 1566300 -33.789652 -33.801843 0.012190741 641.5878 1.3950796 + 1566400 -33.79481 -33.797963 0.0031532427 165.95235 1.3926204 + 1566500 -33.793515 -33.801172 0.0076568781 402.97466 1.3607095 + 1566600 -33.794015 -33.795152 0.0011372668 59.853339 0.79254214 + 1566700 -33.791364 -33.802542 0.011177634 588.26892 0.43215193 + 1566800 -33.792391 -33.796932 0.0045412075 238.9997 -0.35585353 + 1566900 -33.793744 -33.800531 0.0067864822 357.1665 -0.92321945 + 1567000 -33.796919 -33.798615 0.0016954159 89.228228 -1.2223765 + 1567100 -33.796028 -33.802721 0.0066924037 352.21524 -1.0072433 + 1567200 -33.791653 -33.796649 0.0049962072 262.94593 -0.74730894 + 1567300 -33.787906 -33.796987 0.0090808684 477.918 0.049648971 + 1567400 -33.791697 -33.79671 0.0050133854 263.85 0.75669159 + 1567500 -33.792965 -33.801435 0.008470364 445.7877 1.2545791 + 1567600 -33.794204 -33.798181 0.0039763911 209.27392 1.3291927 + 1567700 -33.793614 -33.798574 0.0049604614 261.06466 1.2348702 + 1567800 -33.792801 -33.79932 0.0065196211 343.12185 0.90437075 + 1567900 -33.790205 -33.799483 0.0092781327 488.29985 0.41975636 + 1568000 -33.790666 -33.796672 0.0060062294 316.1025 -0.43112628 + 1568100 -33.794006 -33.798191 0.0041848015 220.24237 -0.9842507 + 1568200 -33.795845 -33.801481 0.0056358143 296.60788 -1.0536634 + 1568300 -33.795551 -33.799802 0.0042512434 223.73915 -1.0274535 + 1568400 -33.787955 -33.796639 0.0086839934 457.03083 -0.6305938 + 1568500 -33.787246 -33.794237 0.006991289 367.9453 0.15251727 + 1568600 -33.791305 -33.801641 0.010335697 543.95854 0.85700338 + 1568700 -33.793876 -33.797179 0.0033029912 173.83348 1.0184251 + 1568800 -33.793629 -33.799488 0.0058592611 308.36768 1.2013448 + 1568900 -33.794311 -33.797947 0.0036352979 191.32249 1.0448045 + 1569000 -33.79116 -33.802394 0.011234013 591.23609 0.86725274 + 1569100 -33.791611 -33.794544 0.0029325713 154.33861 0.15401473 + 1569200 -33.79323 -33.800806 0.0075761481 398.72592 -0.29671748 + 1569300 -33.796882 -33.799332 0.0024497149 128.92631 -0.65787876 + 1569400 -33.795801 -33.802778 0.0069773856 367.21358 -0.6603948 + 1569500 -33.791966 -33.792782 0.00081591272 42.940759 -0.80743552 + 1569600 -33.786492 -33.800718 0.014226337 748.71942 -0.20474988 + 1569700 -33.792665 -33.796469 0.0038039857 200.20037 -0.0079771948 + 1569800 -33.794024 -33.802763 0.0087388315 459.91691 0.2963572 + 1569900 -33.796025 -33.796127 0.00010206842 5.3717701 0.30823071 + 1570000 -33.792901 -33.802708 0.0098063594 516.09995 0.6597205 + 1570100 -33.787125 -33.791811 0.0046856538 246.60178 0.58401432 + 1570200 -33.785109 -33.800802 0.015693639 825.94224 0.74876242 + 1570300 -33.792903 -33.793278 0.0003744294 19.705885 0.29990225 + 1570400 -33.792829 -33.803349 0.010519744 553.64476 0.37103011 + 1570500 -33.795527 -33.797799 0.002271871 119.56654 0.074390567 + 1570600 -33.794138 -33.801624 0.0074861138 393.98749 -0.033210753 + 1570700 -33.794115 -33.795191 0.0010753888 56.596753 -0.32090109 + 1570800 -33.788332 -33.803318 0.014986 788.69981 -0.055594459 + 1570900 -33.79082 -33.793817 0.0029967736 157.71752 -0.40864554 + 1571000 -33.793745 -33.800961 0.0072158667 379.76463 -0.31264592 + 1571100 -33.79648 -33.798242 0.0017620785 92.736622 -0.267804 + 1571200 -33.794454 -33.803252 0.0087981408 463.0383 0.023726897 + 1571300 -33.793491 -33.796119 0.0026272195 138.26822 0.085726209 + 1571400 -33.789969 -33.799136 0.0091677318 482.48955 0.46948675 + 1571500 -33.785567 -33.792515 0.0069483333 365.68458 0.65251541 + 1571600 -33.786329 -33.800818 0.014489284 762.55808 1.0040543 + 1571700 -33.79446 -33.796866 0.0024057466 126.6123 0.71232693 + 1571800 -33.794805 -33.800387 0.0055818152 293.76595 0.60300845 + 1571900 -33.795213 -33.79984 0.0046272129 243.52609 0.40643796 + 1572000 -33.792284 -33.800574 0.0082907251 436.33347 0.13928112 + 1572100 -33.787054 -33.792865 0.0058110935 305.83267 -0.4934149 + 1572200 -33.788546 -33.797355 0.0088092505 463.623 -0.77977596 + 1572300 -33.79485 -33.800536 0.0056861793 299.25854 -0.94852667 + 1572400 -33.794734 -33.799673 0.0049389462 259.93233 -0.90749786 + 1572500 -33.793185 -33.797904 0.0047187954 248.34599 -0.57595681 + 1572600 -33.79116 -33.798334 0.0071743029 377.57716 0.0083370959 + 1572700 -33.78905 -33.799882 0.010832604 570.11026 0.72123643 + 1572800 -33.793953 -33.797822 0.0038686222 203.60214 1.033663 + 1572900 -33.796172 -33.800416 0.0042445745 223.38817 1.1406845 + 1573000 -33.796115 -33.799998 0.0038829901 204.35831 1.0394542 + 1573100 -33.790597 -33.800751 0.010154551 534.42494 0.81269669 + 1573200 -33.788 -33.792177 0.0041774623 219.85611 -0.12652488 + 1573300 -33.790146 -33.799877 0.0097314149 512.15569 -0.67202109 + 1573400 -33.792914 -33.797687 0.0047733645 251.21792 -1.0971767 + 1573500 -33.792897 -33.801382 0.008484729 446.54372 -1.2040479 + 1573600 -33.794982 -33.796178 0.0011967233 62.982479 -1.2012493 + 1573700 -33.794457 -33.802287 0.0078301545 412.09404 -0.64885396 + 1573800 -33.795644 -33.798764 0.003120414 164.2246 -0.25432998 + 1573900 -33.792132 -33.801543 0.0094113062 495.30865 0.47738191 + 1574000 -33.790965 -33.792295 0.001329517 69.971294 0.97710619 + 1574100 -33.788833 -33.802548 0.013715181 721.81773 1.8109315 + 1574200 -33.795634 -33.797674 0.0020394226 107.33299 1.7768649 + 1574300 -33.795477 -33.80182 0.0063425948 333.80511 1.6279024 + 1574400 -33.795741 -33.796824 0.0010833415 57.015296 0.96934488 + 1574500 -33.791931 -33.803857 0.011925933 627.65121 0.40860711 + 1574600 -33.793038 -33.795555 0.0025173221 132.48441 -0.81860887 + 1574700 -33.794987 -33.801759 0.0067725437 356.43294 -1.4858754 + 1574800 -33.798141 -33.798871 0.00073017534 38.428477 -1.7662885 + 1574900 -33.795718 -33.803527 0.0078084633 410.95246 -1.4328194 + 1575000 -33.792925 -33.79499 0.0020647376 108.6653 -0.88760021 + 1575100 -33.789794 -33.801024 0.011229922 591.02079 0.40070389 + 1575200 -33.794282 -33.796818 0.0025356717 133.45014 1.177865 + 1575300 -33.794868 -33.803062 0.0081936017 431.22195 1.8424825 + 1575400 -33.796187 -33.79702 0.00083317528 43.849272 1.7982056 + 1575500 -33.789207 -33.800303 0.01109585 583.96466 1.6463885 + 1575600 -33.788369 -33.793894 0.0055252414 290.78853 0.76823302 + 1575700 -33.79195 -33.802286 0.010336593 544.00565 0.04830118 + 1575800 -33.79625 -33.797565 0.0013150373 69.209241 -0.71530563 + 1575900 -33.795347 -33.80164 0.0062921404 331.14974 -0.88128317 + 1576000 -33.793081 -33.797902 0.0048211277 253.73165 -0.99640071 + 1576100 -33.786089 -33.798973 0.012884045 678.07578 -0.7751467 + 1576200 -33.789811 -33.793397 0.0035859304 188.72432 -0.62469429 + 1576300 -33.791322 -33.800234 0.0089121296 469.03743 -0.11209506 + 1576400 -33.793856 -33.799263 0.00540709 284.57032 0.17434218 + 1576500 -33.794471 -33.800021 0.0055500206 292.09263 0.48164105 + 1576600 -33.795881 -33.798942 0.0030609031 161.0926 0.58548805 + 1576700 -33.796241 -33.801324 0.0050822959 267.4767 0.68323315 + 1576800 -33.795107 -33.800513 0.005406499 284.53922 0.63824857 + 1576900 -33.791726 -33.797103 0.0053775055 283.01332 0.33374667 + 1577000 -33.788846 -33.796945 0.0080984631 426.21489 -0.0018928112 + 1577100 -33.792526 -33.799066 0.0065397645 344.18197 -0.2936454 + 1577200 -33.796339 -33.801372 0.0050328696 264.87544 -0.51321151 + 1577300 -33.796231 -33.798539 0.0023079695 121.46637 -0.58307867 + 1577400 -33.793111 -33.80061 0.0074990775 394.66976 -0.29371646 + 1577500 -33.791507 -33.797612 0.0061055159 321.32785 -0.061805567 + 1577600 -33.790075 -33.800021 0.0099458572 523.44159 0.35539865 + 1577700 -33.795969 -33.797658 0.0016882263 88.849844 0.43159325 + 1577800 -33.796603 -33.802492 0.0058896648 309.96781 0.59439675 + 1577900 -33.796073 -33.79893 0.0028566896 150.34503 0.52084235 + 1578000 -33.78976 -33.800341 0.010580942 556.86556 0.4855869 + 1578100 -33.791028 -33.793259 0.0022310399 117.41764 -0.0033620746 + 1578200 -33.791315 -33.802934 0.011619578 611.52805 0.0045397951 + 1578300 -33.794167 -33.796611 0.0024441678 128.63437 -0.36635576 + 1578400 -33.793011 -33.801167 0.0081560261 429.24438 -0.37945599 + 1578500 -33.794692 -33.795935 0.0012432213 65.429628 -0.45367272 + 1578600 -33.793204 -33.803687 0.010482689 551.69459 -0.11926504 + 1578700 -33.795333 -33.796771 0.0014377755 75.66884 -0.15577883 + 1578800 -33.793707 -33.801859 0.0081520749 429.03643 0.19269628 + 1578900 -33.794727 -33.796344 0.0016167078 85.085889 0.26378513 + 1579000 -33.790363 -33.803674 0.013310481 700.51876 0.671365 + 1579100 -33.790668 -33.79151 0.00084104889 44.263653 0.49078017 + 1579200 -33.790327 -33.801223 0.010896135 573.45386 0.67049825 + 1579300 -33.796519 -33.7981 0.0015814158 83.228501 0.43341935 + 1579400 -33.795529 -33.803514 0.0079843355 420.20846 0.43229076 + 1579500 -33.795269 -33.796054 0.00078546093 41.338108 0.014145594 + 1579600 -33.78884 -33.801783 0.012942802 681.16815 -0.020881675 + 1579700 -33.782607 -33.789028 0.0064209743 337.93015 -0.49438202 + 1579800 -33.787761 -33.801372 0.01361053 716.31003 -0.71120689 + 1579900 -33.794354 -33.795053 0.00069932507 36.804855 -0.98381034 + 1580000 -33.793638 -33.801685 0.0080472072 423.51734 -0.63267314 + 1580100 -33.794817 -33.798358 0.003541058 186.36272 -0.38480026 + 1580200 -33.793279 -33.801913 0.0086342536 454.41306 0.16115018 + 1580300 -33.794918 -33.797331 0.0024130268 126.99545 0.43739828 + 1580400 -33.795303 -33.802054 0.0067509812 355.29812 0.8270886 + 1580500 -33.796787 -33.799574 0.0027867438 146.66384 0.88378188 + 1580600 -33.794109 -33.800215 0.0061063087 321.36958 0.83538498 + 1580700 -33.789565 -33.794392 0.0048266711 254.0234 0.4695805 + 1580800 -33.789262 -33.800307 0.011045158 581.2968 0.21348512 + 1580900 -33.794135 -33.799108 0.0049731433 261.7321 -0.31295453 + 1581000 -33.794413 -33.799587 0.0051737945 272.29219 -0.55830292 + 1581100 -33.794281 -33.798831 0.004549732 239.44833 -0.6222989 + 1581200 -33.793132 -33.800267 0.0071347925 375.49777 -0.51605146 + 1581300 -33.788557 -33.796931 0.008373508 440.69026 -0.29921805 + 1581400 -33.78506 -33.793166 0.0081064698 426.63628 0.098893117 + 1581500 -33.791985 -33.799337 0.0073512946 386.89208 0.45794285 + 1581600 -33.79454 -33.799847 0.0053066401 279.28374 0.60981044 + 1581700 -33.794475 -33.800119 0.0056442512 297.05191 0.65026608 + 1581800 -33.794229 -33.797668 0.0034382378 180.95139 0.49817635 + 1581900 -33.789545 -33.800431 0.010885709 572.90515 0.49083442 + 1582000 -33.787923 -33.794971 0.0070476499 370.91153 0.092446267 + 1582100 -33.792723 -33.800031 0.0073076474 384.59497 -0.25940281 + 1582200 -33.795866 -33.797998 0.0021319757 112.20398 -0.47475792 + 1582300 -33.794399 -33.802428 0.0080295543 422.58828 -0.34916754 + 1582400 -33.793556 -33.79679 0.0032333077 170.1661 -0.37495093 + 1582500 -33.785998 -33.799295 0.01329682 699.79977 0.035222281 + 1582600 -33.786671 -33.791297 0.0046256444 243.44354 0.20084337 + 1582700 -33.793328 -33.802788 0.0094603421 497.88937 0.52902055 + 1582800 -33.795819 -33.797099 0.0012798858 67.359249 0.44072326 + 1582900 -33.793421 -33.801406 0.0079851001 420.2487 0.54572792 + 1583000 -33.792233 -33.795195 0.0029616399 155.86847 0.36206123 + 1583100 -33.786836 -33.803235 0.016399072 863.06852 0.46081842 + 1583200 -33.79515 -33.796092 0.00094206612 49.580099 -0.11358611 + 1583300 -33.795708 -33.802379 0.006670785 351.07747 -0.094373717 + 1583400 -33.796115 -33.797676 0.0015603865 82.121749 -0.24106115 + 1583500 -33.790282 -33.802985 0.012702247 668.50792 -0.052060514 + 1583600 -33.790594 -33.791335 0.00074093526 38.994762 -0.26935796 + 1583700 -33.792604 -33.802653 0.010048623 528.85009 0.021729544 + 1583800 -33.79811 -33.799379 0.0012693777 66.806217 -0.08504184 + 1583900 -33.795574 -33.803085 0.0075107454 395.28383 0.1368811 + 1584000 -33.793799 -33.794161 0.00036139312 19.019798 0.075638166 + 1584100 -33.788809 -33.80277 0.013961637 734.78849 0.49232144 + 1584200 -33.792915 -33.795362 0.0024475036 128.80993 0.39507281 + 1584300 -33.795551 -33.802605 0.0070544562 371.26974 0.4526087 + 1584400 -33.797527 -33.798144 0.00061734841 32.490496 0.2550662 + 1584500 -33.795051 -33.803248 0.0081967849 431.38948 0.33395534 + 1584600 -33.793998 -33.796785 0.0027872478 146.69037 0.012791272 + 1584700 -33.790697 -33.800863 0.010166376 535.0473 -0.079762275 + 1584800 -33.793273 -33.795357 0.0020839643 109.67718 -0.38872691 + 1584900 -33.796567 -33.802808 0.0062406789 328.44136 -0.37401264 + 1585000 -33.797886 -33.799851 0.0019647579 103.40345 -0.40807125 + 1585100 -33.794799 -33.800962 0.0061629837 324.35233 -0.16328636 + 1585200 -33.791713 -33.796514 0.004801095 252.67735 0.092347465 + 1585300 -33.79102 -33.801121 0.010100777 531.59489 0.57136663 + 1585400 -33.793798 -33.797674 0.0038759487 203.98772 0.65163053 + 1585500 -33.793724 -33.799388 0.005664844 298.13569 0.73179011 + 1585600 -33.793866 -33.798831 0.0049650024 261.30365 0.70763621 + 1585700 -33.79316 -33.800421 0.0072607088 382.12463 0.58442393 + 1585800 -33.793392 -33.798427 0.0050353023 265.00347 0.21892869 + 1585900 -33.793906 -33.79904 0.0051340479 270.20036 -0.044087532 + 1586000 -33.797735 -33.801818 0.0040824896 214.85779 -0.25706479 + 1586100 -33.799004 -33.801556 0.0025526777 134.34515 -0.38254628 + 1586200 -33.79661 -33.800721 0.0041113898 216.37878 -0.33572899 + 1586300 -33.794355 -33.798165 0.0038102663 200.53092 -0.21127837 + 1586400 -33.792288 -33.801493 0.0092050647 484.45434 0.11773945 + 1586500 -33.793365 -33.797252 0.0038868175 204.55974 0.23497781 + 1586600 -33.79452 -33.800724 0.0062039603 326.5089 0.42918288 + 1586700 -33.797849 -33.799819 0.001970256 103.69281 0.41883808 + 1586800 -33.797847 -33.803046 0.0051987341 273.60474 0.48153313 + 1586900 -33.795211 -33.797043 0.0018321051 96.422059 0.2590936 + 1587000 -33.789729 -33.800838 0.011108979 584.65565 0.1604828 + 1587100 -33.793037 -33.796137 0.0030997896 163.13916 -0.23542448 + 1587200 -33.794504 -33.803073 0.0085692504 450.992 -0.31213135 + 1587300 -33.796888 -33.797458 0.00057037724 30.018445 -0.53524217 + 1587400 -33.793856 -33.802221 0.0083650722 440.24629 -0.29284601 + 1587500 -33.789756 -33.793071 0.0033152991 174.48123 -0.15866553 + 1587600 -33.787992 -33.803005 0.015013038 790.12279 0.40769519 + 1587700 -33.794877 -33.795264 0.00038667165 20.350184 0.31161728 + 1587800 -33.79419 -33.802983 0.0087929955 462.76751 0.59234671 + 1587900 -33.795402 -33.79714 0.001738052 91.472127 0.48445705 + 1588000 -33.790673 -33.802532 0.011858931 624.12494 0.57850135 + 1588100 -33.785807 -33.786014 0.0002069009 10.88901 0.054599268 + 1588200 -33.784829 -33.802856 0.01802696 948.74284 0.17329771 + 1588300 -33.79329 -33.795346 0.0020563776 108.22532 -0.33120859 + 1588400 -33.792834 -33.802454 0.0096205849 506.3228 -0.28958988 + 1588500 -33.795954 -33.796359 0.00040542619 21.337219 -0.43975382 + 1588600 -33.794818 -33.803663 0.0088450252 465.50579 -0.14895041 + 1588700 -33.795273 -33.796991 0.001718619 90.449383 -0.13685971 + 1588800 -33.789033 -33.801113 0.012079922 635.75553 0.31860366 + 1588900 -33.789604 -33.791474 0.0018708668 98.462048 0.40798353 + 1589000 -33.792182 -33.80314 0.010957864 576.70259 0.81693713 + 1589100 -33.796337 -33.797908 0.0015706435 82.661569 0.64253697 + 1589200 -33.794393 -33.801587 0.0071941156 378.61989 0.60614242 + 1589300 -33.793595 -33.796386 0.0027906875 146.8714 0.29414912 + 1589400 -33.7887 -33.802306 0.013605769 716.05949 0.1837568 + 1589500 -33.787393 -33.791353 0.0039597905 208.40024 -0.52164336 + 1589600 -33.791037 -33.799904 0.0088662756 466.62418 -0.70160448 + 1589700 -33.795749 -33.798768 0.0030190069 158.88764 -0.82579532 + 1589800 -33.794969 -33.802013 0.0070436354 370.70025 -0.618728 + 1589900 -33.793278 -33.796839 0.0035603523 187.37816 -0.37521073 + 1590000 -33.787466 -33.798279 0.010812761 569.06598 0.32560043 + 1590100 -33.789704 -33.796877 0.0071737067 377.54579 0.90702211 + 1590200 -33.794805 -33.800687 0.0058821258 309.57103 1.1817846 + 1590300 -33.795304 -33.798637 0.0033329203 175.40862 1.1178534 + 1590400 -33.793676 -33.799586 0.0059102209 311.04965 0.93342584 + 1590500 -33.789988 -33.798812 0.0088237135 464.38417 0.54885245 + 1590600 -33.789651 -33.797271 0.0076196723 401.01656 -0.15168675 + 1590700 -33.795904 -33.800111 0.0042071865 221.42047 -0.68429028 + 1590800 -33.796985 -33.800432 0.0034470579 181.41558 -0.81810896 + 1590900 -33.79463 -33.801248 0.0066181272 348.30613 -0.72249275 + 1591000 -33.79182 -33.796086 0.0042655909 224.49424 -0.54117025 + 1591100 -33.789494 -33.798939 0.0094443832 497.04947 0.05197364 + 1591200 -33.792077 -33.797185 0.0051086365 268.86298 0.42316249 + 1591300 -33.792581 -33.80153 0.0089497329 471.01646 0.82877798 + 1591400 -33.794768 -33.796889 0.0021210215 111.62747 0.84361332 + 1591500 -33.794955 -33.801768 0.0068127269 358.54774 0.90694208 + 1591600 -33.797128 -33.79949 0.0023623369 124.32768 0.66234385 + 1591700 -33.79698 -33.802808 0.0058281633 306.73104 0.47178063 + 1591800 -33.796381 -33.797361 0.00098016802 51.585369 -0.015240874 + 1591900 -33.789668 -33.802163 0.012494721 657.58603 -0.28125705 + 1592000 -33.79142 -33.794596 0.0031758232 167.14074 -0.98997981 + 1592100 -33.792439 -33.802132 0.0096933061 510.15005 -1.177424 + 1592200 -33.796132 -33.796606 0.00047379434 24.935374 -1.320468 + 1592300 -33.794743 -33.803326 0.0085836784 451.75134 -0.83964585 + 1592400 -33.795728 -33.797475 0.0017470519 91.945782 -0.47066352 + 1592500 -33.792966 -33.802586 0.009619545 506.26807 0.34513436 + 1592600 -33.793931 -33.794812 0.000881416 46.388138 0.83357292 + 1592700 -33.79125 -33.803516 0.012265469 645.52068 1.6130193 + 1592800 -33.794427 -33.795464 0.0010374887 54.602107 1.6257242 + 1592900 -33.794771 -33.802297 0.0075260643 396.09005 1.6302543 + 1593000 -33.797717 -33.798415 0.00069858833 36.766081 1.1483559 + 1593100 -33.796178 -33.803859 0.0076813447 404.26232 0.77314918 + 1593200 -33.792828 -33.795188 0.0023600646 124.2081 -0.21484372 + 1593300 -33.788166 -33.801418 0.013252577 697.47133 -1.1793954 + 1593400 -33.793781 -33.795466 0.0016846893 88.663696 -2.2088969 + 1593500 -33.794049 -33.802366 0.0083171189 437.72255 -2.2894839 + 1593600 -33.795117 -33.796395 0.0012779307 67.256352 -2.1084959 + 1593700 -33.792933 -33.801743 0.0088099499 463.6598 -1.1420284 + 1593800 -33.794217 -33.797852 0.0036350984 191.31199 -0.1439169 + 1593900 -33.794513 -33.802703 0.0081898037 431.02206 1.0227858 + 1594000 -33.798687 -33.799735 0.0010486013 55.186953 1.498125 + 1594100 -33.798751 -33.802332 0.0035811113 188.47069 1.7126019 + 1594200 -33.795442 -33.7989 0.0034575586 181.96822 1.5183135 + 1594300 -33.791899 -33.800888 0.008989119 473.08931 0.86223217 + 1594400 -33.793043 -33.796991 0.0039479077 207.77486 -0.25033086 + 1594500 -33.794321 -33.800789 0.0064679793 340.40398 -0.96102007 + 1594600 -33.796829 -33.800444 0.003615204 190.26496 -1.4408673 + 1594700 -33.796668 -33.800761 0.0040932446 215.42381 -1.512369 + 1594800 -33.791776 -33.797436 0.0056592965 297.84373 -1.1548224 + 1594900 -33.788804 -33.797981 0.0091769868 482.97663 -0.27809405 + 1595000 -33.792672 -33.799986 0.0073143541 384.94793 0.54104781 + 1595100 -33.795198 -33.799089 0.0038912424 204.79262 0.99654241 + 1595200 -33.794912 -33.800026 0.005114092 269.1501 1.2805234 + 1595300 -33.79436 -33.799106 0.0047461713 249.78676 1.3212834 + 1595400 -33.792302 -33.80045 0.0081477213 428.8073 1.1503167 + 1595500 -33.792914 -33.796622 0.003708005 195.14899 0.55169719 + 1595600 -33.794101 -33.801153 0.0070512248 371.09967 0.10592766 + 1595700 -33.799348 -33.801125 0.0017771857 93.531698 -0.31217631 + 1595800 -33.798156 -33.802692 0.0045357688 238.71347 -0.43007741 + 1595900 -33.796211 -33.7974 0.0011888913 62.570288 -0.59996817 + 1596000 -33.791101 -33.802173 0.011072551 582.73847 -0.36892384 + 1596100 -33.792113 -33.795209 0.0030958807 162.93344 -0.39309171 + 1596200 -33.792977 -33.802236 0.009258568 487.27017 -0.071046693 + 1596300 -33.797753 -33.79838 0.00062771025 33.035831 -0.064261637 + 1596400 -33.796759 -33.803511 0.0067511952 355.30938 0.22329844 + 1596500 -33.796727 -33.797983 0.0012556359 66.082998 0.2572264 + 1596600 -33.793385 -33.802586 0.0092013614 484.25944 0.52464023 + 1596700 -33.794063 -33.794842 0.00077866675 40.980536 0.40899486 + 1596800 -33.790864 -33.803722 0.012858728 676.74337 0.65136469 + 1596900 -33.794721 -33.79559 0.00086901647 45.735562 0.2938395 + 1597000 -33.795994 -33.802839 0.0068452111 360.25736 0.27496675 + 1597100 -33.79782 -33.798397 0.00057699375 30.366667 0.025375392 + 1597200 -33.79313 -33.803922 0.010792769 568.01379 0.098810093 + 1597300 -33.791009 -33.792508 0.0014988554 78.883423 -0.30792565 + 1597400 -33.789609 -33.802069 0.012459691 655.74242 -0.2487214 + 1597500 -33.7941 -33.795419 0.0013188409 69.40942 -0.48938843 + 1597600 -33.792825 -33.803153 0.01032819 543.56343 -0.22891755 + 1597700 -33.794666 -33.795412 0.00074618112 39.270847 -0.28867861 + 1597800 -33.792134 -33.802282 0.010148341 534.09812 0.14237572 + 1597900 -33.792959 -33.795745 0.0027860602 146.62786 0.27079897 + 1598000 -33.792019 -33.802789 0.010769931 566.81184 0.62954212 + 1598100 -33.796142 -33.797143 0.0010016046 52.713559 0.51642519 + 1598200 -33.79583 -33.802397 0.0065664687 345.58739 0.61590769 + 1598300 -33.795572 -33.798162 0.0025901118 136.31527 0.40777521 + 1598400 -33.788656 -33.800907 0.012250677 644.7422 0.33014727 + 1598500 -33.790083 -33.793274 0.0031910191 167.94049 -0.2727522 + 1598600 -33.791921 -33.801378 0.0094562257 497.67272 -0.40505741 + 1598700 -33.79471 -33.798397 0.0036867969 194.03283 -0.60551942 + 1598800 -33.793759 -33.800762 0.0070024783 368.53419 -0.51693584 + 1598900 -33.79369 -33.797109 0.0034187635 179.92647 -0.42352805 + 1599000 -33.790488 -33.800239 0.0097504232 513.15608 0.051393111 + 1599100 -33.787824 -33.795533 0.007708972 405.71632 0.43840257 + 1599200 -33.791535 -33.798869 0.0073335896 385.96028 0.74014661 + 1599300 -33.795504 -33.79936 0.0038552768 202.89978 0.80343741 + 1599400 -33.795279 -33.800887 0.0056077698 295.13192 0.79303557 + 1599500 -33.793104 -33.799184 0.0060805668 320.01481 0.57853244 + 1599600 -33.787915 -33.795422 0.0075073159 395.10334 0.1872234 + 1599700 -33.785914 -33.796433 0.010519241 553.61826 -0.34109992 + 1599800 -33.793284 -33.799042 0.005758434 303.06124 -0.7784753 + 1599900 -33.794083 -33.800208 0.006124744 322.33981 -0.85222424 + 1600000 -33.794512 -33.79796 0.0034482165 181.47656 -0.8062523 + 1600100 -33.792968 -33.800987 0.0080197759 422.07365 -0.39356017 + 1600200 -33.793033 -33.797737 0.0047042898 247.58257 -0.017895641 + 1600300 -33.792136 -33.800508 0.0083718217 440.60151 0.4879754 + 1600400 -33.795108 -33.797561 0.0024530464 129.10164 0.709124 + 1600500 -33.796438 -33.802612 0.006174396 324.95295 0.93341689 + 1600600 -33.797372 -33.79926 0.0018878336 99.354998 0.78075015 + 1600700 -33.79059 -33.800905 0.010315017 542.87014 0.68164635 + 1600800 -33.7899 -33.793043 0.0031425867 165.39153 0.012339646 + 1600900 -33.791373 -33.802919 0.011546127 607.66236 -0.30117399 + 1601000 -33.795382 -33.796862 0.0014801475 77.898842 -0.79442917 + 1601100 -33.793914 -33.802066 0.0081513805 428.99989 -0.750002 + 1601200 -33.794839 -33.796215 0.0013760693 72.4213 -0.76691544 + 1601300 -33.791987 -33.803501 0.011513904 605.96648 -0.26111094 + 1601400 -33.794104 -33.795122 0.0010185421 53.60496 -0.1142227 + 1601500 -33.792269 -33.802591 0.010322195 543.24793 0.47556374 + 1601600 -33.794714 -33.796014 0.0012998954 68.412337 0.63455905 + 1601700 -33.79322 -33.803542 0.01032245 543.26132 0.99215935 + 1601800 -33.796132 -33.796272 0.00013981987 7.3585952 0.78297776 + 1601900 -33.795599 -33.803162 0.0075638605 398.07923 0.80028155 + 1602000 -33.796841 -33.797971 0.0011308073 59.513379 0.41011194 + 1602100 -33.791071 -33.803439 0.012367615 650.89652 0.23002462 + 1602200 -33.790365 -33.791126 0.0007606613 40.032926 -0.61034297 + 1602300 -33.790683 -33.802738 0.012054303 634.4072 -0.8304554 + 1602400 -33.79659 -33.797685 0.0010948616 57.621591 -1.1672029 + 1602500 -33.794665 -33.802796 0.0081316404 427.96098 -0.90169956 + 1602600 -33.794536 -33.795488 0.00095186032 50.095559 -0.68211824 + 1602700 -33.790274 -33.803082 0.012808537 674.10189 0.21202638 + 1602800 -33.793002 -33.795607 0.0026047567 137.08602 0.68401154 + 1602900 -33.795839 -33.802462 0.00662299 348.56205 1.1345944 + 1603000 -33.797812 -33.798688 0.00087596444 46.101227 1.1159611 + 1603100 -33.794821 -33.80281 0.0079893134 420.47044 1.1075856 + 1603200 -33.792474 -33.795882 0.0034083931 179.38069 0.54117478 + 1603300 -33.790971 -33.800904 0.0099325878 522.74323 0.048521309 + 1603400 -33.794116 -33.796949 0.0028323267 149.06283 -0.64916425 + 1603500 -33.794391 -33.802087 0.0076953228 404.99797 -0.86856915 + 1603600 -33.7967 -33.799094 0.0023940866 125.99864 -1.0547291 + 1603700 -33.797524 -33.801594 0.0040693657 214.16709 -0.90992139 + 1603800 -33.79807 -33.800682 0.0026124789 137.49244 -0.63250423 + 1603900 -33.794682 -33.801373 0.0066911908 352.1514 0.0047997128 + 1604000 -33.79135 -33.797619 0.0062690207 329.93297 0.78980583 + 1604100 -33.791893 -33.798442 0.0065485066 344.64206 1.5329249 + 1604200 -33.794532 -33.799577 0.0050449943 265.51355 1.8872834 + 1604300 -33.796295 -33.800327 0.0040323437 212.21865 1.8042861 + 1604400 -33.79941 -33.80178 0.0023699574 124.72874 1.4667575 + 1604500 -33.799206 -33.801463 0.0022566339 118.76463 0.96350769 + 1604600 -33.795789 -33.802116 0.0063265785 332.96218 0.14125251 + 1604700 -33.794889 -33.799511 0.0046214631 243.22348 -1.077513 + 1604800 -33.793594 -33.800307 0.0067129165 353.29481 -2.0835982 + 1604900 -33.793459 -33.796353 0.0028938808 152.30236 -2.8131247 + 1605000 -33.785527 -33.799163 0.013635527 717.62562 -2.6845182 + 1605100 -33.785782 -33.790549 0.0047677414 250.92198 -2.3324335 + 1605200 -33.790205 -33.800492 0.010287337 541.41337 -1.3914677 + 1605300 -33.793655 -33.796906 0.0032514181 171.11923 -0.60658543 + 1605400 -33.794391 -33.803161 0.0087692807 461.51942 0.39177472 + 1605500 -33.796918 -33.798374 0.0014561893 76.637942 0.89599946 + 1605600 -33.795727 -33.802523 0.0067957365 357.65355 1.430764 + 1605700 -33.793851 -33.795566 0.0017151102 90.264721 1.5178157 + 1605800 -33.787076 -33.802379 0.015303584 805.414 1.685137 + 1605900 -33.791709 -33.792546 0.00083647481 44.022923 0.99264804 + 1606000 -33.793282 -33.802625 0.0093421448 491.66875 0.71107402 + 1606100 -33.795738 -33.797267 0.001529455 80.493852 0.10308263 + 1606200 -33.7934 -33.803385 0.0099845996 525.48057 -0.2033281 + 1606300 -33.794758 -33.795559 0.00080037744 42.123151 -0.83201175 + 1606400 -33.792243 -33.803198 0.010955146 576.55956 -0.86563234 + 1606500 -33.7944 -33.795681 0.001281003 67.418048 -1.0990105 + 1606600 -33.792612 -33.802622 0.010010359 526.83625 -0.76180405 + 1606700 -33.794669 -33.794989 0.0003201 16.846577 -0.58478257 + 1606800 -33.792311 -33.803375 0.011063888 582.28255 0.12231667 + 1606900 -33.794707 -33.796383 0.0016760676 88.209941 0.39736564 + 1607000 -33.794609 -33.802972 0.0083634245 440.15957 0.89020835 + 1607100 -33.79779 -33.798403 0.00061267078 32.244317 0.86479147 + 1607200 -33.796473 -33.803472 0.0069993654 368.37036 0.93943843 + 1607300 -33.793249 -33.795268 0.0020185914 106.23666 0.57658045 + 1607400 -33.788291 -33.801276 0.012984655 683.37079 0.214856 + 1607500 -33.792787 -33.794677 0.0018901702 99.477974 -0.56823007 + 1607600 -33.79367 -33.802696 0.0090262 475.04086 -0.7098375 + 1607700 -33.795816 -33.797727 0.0019108461 100.56612 -0.96071174 + 1607800 -33.794068 -33.801698 0.007629711 401.54488 -0.7292264 + 1607900 -33.794416 -33.797519 0.0031021447 163.26311 -0.47522091 + 1608000 -33.792624 -33.801914 0.0092897469 488.91109 0.090236128 + 1608100 -33.79347 -33.796697 0.0032264513 169.80526 0.42557116 + 1608200 -33.793363 -33.800413 0.0070502711 371.04948 0.89276676 + 1608300 -33.79564 -33.799016 0.0033763172 177.69257 0.99369644 + 1608400 -33.795361 -33.801407 0.006046331 318.21301 1.0145174 + 1608500 -33.793943 -33.798306 0.0043633683 229.64018 0.74673388 + 1608600 -33.789669 -33.798779 0.0091102413 479.46387 0.37553415 + 1608700 -33.790324 -33.797829 0.0075042412 394.94152 -0.24043385 + 1608800 -33.795136 -33.80003 0.0048947202 257.60476 -0.6674235 + 1608900 -33.795823 -33.7997 0.0038774039 204.06431 -0.80940973 + 1609000 -33.794593 -33.799334 0.0047409166 249.51021 -0.70099436 + 1609100 -33.791066 -33.799948 0.0088827967 467.49367 -0.30503749 + 1609200 -33.791191 -33.797371 0.0061802785 325.26254 0.067803981 + 1609300 -33.796689 -33.801345 0.0046560787 245.04527 0.36778042 + 1609400 -33.797876 -33.800237 0.0023605616 124.23425 0.50419721 + 1609500 -33.794655 -33.801554 0.0068993611 363.10722 0.67264787 + 1609600 -33.792402 -33.795732 0.003330252 175.26819 0.55423919 + 1609700 -33.790593 -33.800733 0.010139938 533.65587 0.55477887 + 1609800 -33.79366 -33.79712 0.0034600019 182.09681 0.22818692 + 1609900 -33.794061 -33.802444 0.0083827382 441.17603 0.1229733 + 1610000 -33.795488 -33.797002 0.0015139824 79.679545 -0.19949593 + 1610100 -33.793445 -33.802176 0.0087310679 459.50832 -0.17827505 + 1610200 -33.794391 -33.796476 0.0020842317 109.69126 -0.37179774 + 1610300 -33.791438 -33.802522 0.011084056 583.344 -0.17168837 + 1610400 -33.793366 -33.794489 0.001123367 59.121803 -0.28521323 + 1610500 -33.794334 -33.803268 0.0089342848 470.20344 0.021077169 + 1610600 -33.79774 -33.798746 0.0010063285 52.962172 -0.010266972 + 1610700 -33.795848 -33.803286 0.0074371853 391.41243 0.22409483 + 1610800 -33.793058 -33.793287 0.00022904508 12.054438 0.18530942 + 1610900 -33.78756 -33.803469 0.015909246 837.2894 0.65449708 + 1611000 -33.793002 -33.794052 0.0010497471 55.247251 0.40952429 + 1611100 -33.793066 -33.803171 0.010105067 531.82065 0.53795055 + 1611200 -33.795846 -33.796114 0.00026741825 14.073984 0.23842847 + 1611300 -33.793384 -33.803947 0.010562394 555.88939 0.31500046 + 1611400 -33.794919 -33.795627 0.00070843679 37.284396 -0.082092641 + 1611500 -33.792425 -33.802997 0.010571978 556.39375 -0.061125435 + 1611600 -33.794514 -33.795043 0.00052952799 27.868586 -0.37831139 + 1611700 -33.792334 -33.803752 0.011418801 600.96131 -0.19418361 + 1611800 -33.795742 -33.796322 0.0005797124 30.509747 -0.38081859 + 1611900 -33.795998 -33.803093 0.0070950208 373.40462 -0.14872219 + 1612000 -33.797985 -33.798824 0.00083840497 44.124506 -0.13757557 + 1612100 -33.793932 -33.803504 0.0095713005 503.72901 0.23056214 + 1612200 -33.790932 -33.792744 0.0018126457 95.397924 0.33431018 + 1612300 -33.789369 -33.801658 0.012289171 646.76809 0.7821592 + 1612400 -33.79447 -33.796434 0.0019641363 103.37074 0.6811035 + 1612500 -33.793824 -33.802569 0.0087446982 460.22567 0.77749415 + 1612600 -33.795017 -33.796795 0.0017774606 93.546165 0.45145497 + 1612700 -33.793185 -33.801888 0.0087029389 458.02791 0.33122238 + 1612800 -33.794125 -33.797469 0.0033443794 176.01171 -0.075112448 + 1612900 -33.793063 -33.80156 0.0084964239 447.15921 -0.25365042 + 1613000 -33.796657 -33.798701 0.0020441235 107.5804 -0.55695363 + 1613100 -33.797379 -33.802043 0.0046644458 245.48562 -0.50691337 + 1613200 -33.796669 -33.799987 0.0033174323 174.5935 -0.40944761 + 1613300 -33.79224 -33.799914 0.0076731886 403.83307 -0.029457594 + 1613400 -33.791069 -33.796837 0.0057677921 303.55375 0.36240631 + 1613500 -33.792242 -33.799638 0.0073961033 389.25032 0.7733398 + 1613600 -33.794428 -33.799616 0.0051883065 273.05594 0.91021987 + 1613700 -33.794468 -33.799347 0.0048788565 256.76987 0.8944355 + 1613800 -33.793861 -33.799346 0.0054849062 288.66572 0.74285716 + 1613900 -33.79364 -33.799263 0.005622954 295.93105 0.44120497 + 1614000 -33.793195 -33.800279 0.0070838459 372.81649 0.083444697 + 1614100 -33.794624 -33.798494 0.0038698595 203.66726 -0.33481185 + 1614200 -33.797784 -33.801999 0.0042149604 221.82961 -0.5161996 + 1614300 -33.798563 -33.800768 0.0022046657 116.02959 -0.57308035 + 1614400 -33.794116 -33.801362 0.0072460097 381.35103 -0.34430113 + 1614500 -33.792738 -33.79568 0.002941913 154.83026 -0.13176812 + 1614600 -33.791522 -33.801617 0.010095028 531.29229 0.41728716 + 1614700 -33.794571 -33.797428 0.0028564486 150.33234 0.56971742 + 1614800 -33.796119 -33.802564 0.0064451232 339.20108 0.76611748 + 1614900 -33.798983 -33.799834 0.00085104089 44.789523 0.63967989 + 1615000 -33.799737 -33.803564 0.0038271937 201.42179 0.58299548 + 1615100 -33.79989 -33.800615 0.00072555731 38.185434 0.30063429 + 1615200 -33.794158 -33.802877 0.0087181802 458.83005 0.027888159 + 1615300 -33.79359 -33.794656 0.0010656446 56.083924 -0.74947647 + 1615400 -33.789955 -33.803336 0.013381159 704.23847 -1.0439682 + 1615500 -33.794061 -33.794896 0.00083461952 43.925281 -1.5722947 + 1615600 -33.795515 -33.802949 0.0074339729 391.24336 -1.3826484 + 1615700 -33.798001 -33.798468 0.0004669163 24.573388 -1.1862375 + 1615800 -33.793238 -33.803887 0.010648998 560.44725 -0.34830522 + 1615900 -33.789378 -33.791734 0.0023561086 123.99989 0.69729456 + 1616000 -33.7902 -33.802546 0.012346535 649.78713 2.0422974 + 1616100 -33.795478 -33.796012 0.00053397104 28.102419 2.3212265 + 1616200 -33.793866 -33.802995 0.0091287054 480.43562 2.4682694 + 1616300 -33.793685 -33.794719 0.0010334329 54.388649 1.7495739 + 1616400 -33.782801 -33.802511 0.019710057 1037.3227 0.89344479 + 1616500 -33.791389 -33.793786 0.0023965349 126.12749 -1.0168179 + 1616600 -33.79271 -33.802941 0.010230945 538.44549 -1.6873117 + 1616700 -33.795112 -33.795719 0.00060762364 31.97869 -2.2242248 + 1616800 -33.792574 -33.802171 0.0095975481 505.11039 -1.8869862 + 1616900 -33.791932 -33.794727 0.0027942078 147.05667 -1.3794839 + 1617000 -33.788475 -33.802329 0.013853943 729.12065 -0.097974874 + 1617100 -33.795967 -33.797438 0.0014703985 77.385759 0.58606154 + 1617200 -33.796302 -33.80266 0.0063584292 334.63846 1.2013114 + 1617300 -33.796195 -33.798399 0.0022040455 115.99695 1.3745387 + 1617400 -33.79174 -33.801311 0.0095706245 503.69343 1.5226286 + 1617500 -33.790735 -33.794179 0.0034442653 181.26861 1.0619386 + 1617600 -33.790379 -33.801007 0.010628499 559.3684 0.700786 + 1617700 -33.794087 -33.797861 0.0037746649 198.65725 0.022203958 + 1617800 -33.794766 -33.80122 0.0064543072 339.68443 -0.37584722 + 1617900 -33.7965 -33.799287 0.0027869287 146.67357 -0.72305081 + 1618000 -33.795903 -33.801469 0.0055658587 292.92618 -0.74877093 + 1618100 -33.792554 -33.798147 0.005593291 294.36991 -0.66596582 + 1618200 -33.78924 -33.797753 0.0085127688 448.01943 -0.30733397 + 1618300 -33.791908 -33.797999 0.0060907184 320.54908 0.068627926 + 1618400 -33.79542 -33.800497 0.005077329 267.2153 0.33838411 + 1618500 -33.795889 -33.800605 0.0047162836 248.2138 0.51004449 + 1618600 -33.795096 -33.799147 0.0040514264 213.22296 0.5868641 + 1618700 -33.792401 -33.799827 0.0074263359 390.84144 0.6475077 + 1618800 -33.791428 -33.797406 0.0059774446 314.58758 0.50992951 + 1618900 -33.789183 -33.799078 0.009895017 520.76592 0.3546316 + 1619000 -33.793125 -33.797118 0.0039931647 210.1567 -0.018675788 + 1619100 -33.795713 -33.801857 0.0061440557 323.35617 -0.10695736 + 1619200 -33.796762 -33.799348 0.0025860604 136.10205 -0.25523869 + 1619300 -33.792581 -33.801165 0.0085841601 451.77669 -0.16148494 + 1619400 -33.789105 -33.792944 0.0038391901 202.05315 -0.18510085 + 1619500 -33.788938 -33.801661 0.012723047 669.6026 0.13064125 + 1619600 -33.79321 -33.795921 0.0027117343 142.71616 0.038740952 + 1619700 -33.792952 -33.801848 0.0088957022 468.17287 0.27030559 + 1619800 -33.795092 -33.796734 0.0016415401 86.392791 0.20582956 + 1619900 -33.794289 -33.803113 0.0088247774 464.44016 0.40209937 + 1620000 -33.79705 -33.798166 0.0011154529 58.705292 0.23333697 + 1620100 -33.796357 -33.803123 0.0067662115 356.09967 0.29908083 + 1620200 -33.796139 -33.797068 0.00092869607 48.876446 0.10265333 + 1620300 -33.788862 -33.803323 0.014461436 761.09248 0.24603671 + 1620400 -33.791416 -33.792197 0.00078151155 41.130256 -0.21406034 + 1620500 -33.791774 -33.802874 0.011099965 584.18125 -0.1067613 + 1620600 -33.795199 -33.795939 0.00074025432 38.958925 -0.33800756 + 1620700 -33.792832 -33.803686 0.010854085 571.2408 -0.07771503 + 1620800 -33.794653 -33.795077 0.00042419573 22.325043 -0.17896034 + 1620900 -33.792359 -33.803508 0.011148801 586.75148 0.18742534 + 1621000 -33.796137 -33.796825 0.00068847307 36.233724 0.12149134 + 1621100 -33.796333 -33.803661 0.0073277578 385.65336 0.34808744 + 1621200 -33.79778 -33.797842 6.1539857e-05 3.2387878 0.22298176 + 1621300 -33.791723 -33.803491 0.011768496 619.36547 0.46392012 + 1621400 -33.791162 -33.792616 0.0014536361 76.503572 0.1998889 + 1621500 -33.790424 -33.803233 0.012808934 674.12277 0.30635069 + 1621600 -33.795427 -33.795884 0.00045705323 24.054304 -0.042888718 + 1621700 -33.793976 -33.803349 0.0093731089 493.29836 0.080182069 + 1621800 -33.795249 -33.796475 0.0012256717 64.506006 -0.15102177 + 1621900 -33.792687 -33.802677 0.0099901321 525.77174 0.006336299 + 1622000 -33.794139 -33.795443 0.0013038993 68.623057 -0.15204542 + 1622100 -33.792341 -33.802876 0.010535225 554.45948 0.075569741 + 1622200 -33.797195 -33.798536 0.001341405 70.596947 -0.045058718 + 1622300 -33.798352 -33.802927 0.0045746241 240.75839 0.060232496 + 1622400 -33.798047 -33.799591 0.0015443623 81.278409 0.033577083 + 1622500 -33.793901 -33.802149 0.0082477312 434.07074 0.25092651 + 1622600 -33.792842 -33.79643 0.003587053 188.7834 0.20143739 + 1622700 -33.791719 -33.800477 0.0087578636 460.91855 0.31862906 + 1622800 -33.795122 -33.798392 0.0032701267 172.10385 0.2222384 + 1622900 -33.797686 -33.802206 0.0045203231 237.90057 0.20577694 + 1623000 -33.798687 -33.801017 0.0023292356 122.58559 0.10665407 + 1623100 -33.797268 -33.801262 0.0039939785 210.19953 0.080735698 + 1623200 -33.795361 -33.800002 0.0046416038 244.28347 0.0015470573 + 1623300 -33.793477 -33.799566 0.0060888476 320.45062 -0.06148882 + 1623400 -33.791207 -33.798272 0.0070648097 371.81464 -0.11523386 + 1623500 -33.791807 -33.797705 0.0058977735 310.39456 -0.17829659 + 1623600 -33.796865 -33.801591 0.0047263567 248.74394 -0.1692916 + 1623700 -33.797732 -33.800538 0.0028062515 147.69051 -0.13629573 + 1623800 -33.794607 -33.800853 0.0062463172 328.7381 0.032275285 + 1623900 -33.792083 -33.796382 0.0042984193 226.22197 0.19426401 + 1624000 -33.790739 -33.800975 0.010236333 538.72905 0.53119652 + 1624100 -33.79328 -33.796746 0.003465633 182.39317 0.48628376 + 1624200 -33.793827 -33.801487 0.0076593348 403.10396 0.59806394 + 1624300 -33.795788 -33.798092 0.0023041016 121.26281 0.42834567 + 1624400 -33.797147 -33.803044 0.0058977257 310.39205 0.36702921 + 1624500 -33.799203 -33.800147 0.00094376841 49.66969 0.13405155 + 1624600 -33.796499 -33.802849 0.0063505997 334.2264 0.088399883 + 1624700 -33.794311 -33.796015 0.001703765 89.667632 -0.22738297 + 1624800 -33.790784 -33.802965 0.012181114 641.08118 -0.2356981 + 1624900 -33.793796 -33.794731 0.00093472297 49.193636 -0.61771201 + 1625000 -33.794677 -33.80315 0.0084721298 445.88063 -0.45647726 + 1625100 -33.798875 -33.799465 0.00059019088 31.06122 -0.49892193 + 1625200 -33.798007 -33.803687 0.0056797113 298.91814 -0.22273 + 1625300 -33.794251 -33.794796 0.00054486082 28.675539 -0.0039338928 + 1625400 -33.789738 -33.803523 0.013784675 725.47515 0.827484 + 1625500 -33.794295 -33.795174 0.00087977227 46.30163 0.98498353 + 1625600 -33.794511 -33.803372 0.0088610788 466.35067 1.2840073 + 1625700 -33.796988 -33.797042 5.3926744e-05 2.8381164 1.0158237 + 1625800 -33.793102 -33.803586 0.010483995 551.76332 0.921661 + 1625900 -33.789691 -33.791519 0.0018282915 96.221349 0.091852354 + 1626000 -33.788146 -33.803121 0.014975016 788.12174 -0.43918459 + 1626100 -33.794743 -33.79524 0.00049716553 26.165378 -1.2155466 + 1626200 -33.793179 -33.803307 0.010128001 533.02763 -1.162439 + 1626300 -33.79478 -33.795793 0.001012787 53.302076 -1.2053376 + 1626400 -33.791477 -33.802692 0.01121497 590.23387 -0.59962079 + 1626500 -33.791088 -33.79292 0.0018312392 96.376485 -0.13660002 + 1626600 -33.789186 -33.802805 0.013619493 716.78179 0.86518187 + 1626700 -33.7961 -33.797334 0.001234139 64.951637 1.0534489 + 1626800 -33.795658 -33.802589 0.006930257 364.73324 1.2995129 + 1626900 -33.795606 -33.797418 0.0018125454 95.392648 1.0788461 + 1627000 -33.788674 -33.802119 0.013444914 707.59385 0.88331579 + 1627100 -33.787969 -33.792065 0.0040956503 215.55042 -0.1264292 + 1627200 -33.789204 -33.800681 0.011476485 603.99716 -0.66619056 + 1627300 -33.793936 -33.796755 0.0028189015 148.35627 -1.2197313 + 1627400 -33.794344 -33.801647 0.0073035193 384.37771 -1.1787945 + 1627500 -33.796011 -33.798649 0.002637152 138.79096 -1.0783927 + 1627600 -33.794636 -33.801295 0.0066589367 350.4539 -0.57138 + 1627700 -33.790869 -33.797153 0.0062838998 330.71604 0.13183901 + 1627800 -33.788816 -33.799252 0.010436246 549.2503 1.0791707 + 1627900 -33.794842 -33.798652 0.0038100058 200.51721 1.5046584 + 1628000 -33.795831 -33.800381 0.0045498122 239.45256 1.6573181 + 1628100 -33.794958 -33.799719 0.0047611465 250.57489 1.4472132 + 1628200 -33.793375 -33.799442 0.0060664001 319.26922 0.92545858 + 1628300 -33.792396 -33.799226 0.0068307271 359.49507 0.14392446 + 1628400 -33.794756 -33.799493 0.0047376124 249.33631 -0.64943747 + 1628500 -33.799028 -33.802333 0.0033048402 173.93079 -0.99093392 + 1628600 -33.798492 -33.800547 0.0020546897 108.13648 -1.049275 + 1628700 -33.793978 -33.80091 0.0069318513 364.81715 -0.72948664 + 1628800 -33.792933 -33.79688 0.0039464775 207.69959 -0.26626186 + 1628900 -33.791399 -33.801449 0.010049866 528.91549 0.51917201 + 1629000 -33.794975 -33.797472 0.0024969123 131.41027 0.84908799 + 1629100 -33.79771 -33.802685 0.0049746987 261.81396 1.0990592 + 1629200 -33.798371 -33.799719 0.0013479967 70.943863 0.98910944 + 1629300 -33.795556 -33.8029 0.00734419 386.51817 0.82340734 + 1629400 -33.795418 -33.796846 0.0014277994 75.143811 0.2088922 + 1629500 -33.791691 -33.802667 0.010975416 577.62633 -0.21091261 + 1629600 -33.793031 -33.794831 0.0018002183 94.743883 -1.0059204 + 1629700 -33.792907 -33.802859 0.0099524559 523.78888 -1.2033558 + 1629800 -33.797186 -33.7976 0.00041371594 21.773501 -1.4279802 + 1629900 -33.796046 -33.803404 0.0073582556 387.25843 -1.0262676 + 1630000 -33.794898 -33.796261 0.0013629984 71.73339 -0.55893925 + 1630100 -33.78732 -33.803305 0.015985222 841.288 0.75529921 + 1630200 -33.792547 -33.793471 0.00092359119 48.60778 1.4217812 + 1630300 -33.791927 -33.803054 0.011126657 585.58605 2.1945081 + 1630400 -33.794479 -33.794935 0.00045630015 24.01467 2.0676832 + 1630500 -33.791811 -33.802823 0.011012068 579.55532 1.9478195 + 1630600 -33.793825 -33.7947 0.00087527275 46.064824 1.0707968 + 1630700 -33.793634 -33.803887 0.010252755 539.59334 0.43023342 + 1630800 -33.797729 -33.798414 0.00068493395 36.047463 -0.44136617 + 1630900 -33.7965 -33.803443 0.0069428359 365.39526 -0.77300019 + 1631000 -33.794364 -33.795311 0.00094779146 49.881419 -1.2300214 + 1631100 -33.787985 -33.803016 0.015030592 791.04663 -1.1254133 + 1631200 -33.79236 -33.793318 0.00095891495 50.466838 -1.3327162 + 1631300 -33.792406 -33.802416 0.010009925 526.81342 -0.85637436 + 1631400 -33.795569 -33.796941 0.0013721749 72.216341 -0.56365277 + 1631500 -33.793846 -33.803074 0.0092288419 485.70572 0.14827201 + 1631600 -33.795053 -33.796916 0.0018630903 98.052778 0.53164499 + 1631700 -33.793247 -33.802284 0.0090368946 475.6037 1.1474443 + 1631800 -33.794373 -33.796841 0.0024676304 129.86919 1.2799378 + 1631900 -33.792431 -33.801829 0.0093987524 494.64796 1.405844 + 1632000 -33.79297 -33.795646 0.0026763212 140.8524 1.0133551 + 1632100 -33.791595 -33.801036 0.0094406703 496.85406 0.68800361 + 1632200 -33.79509 -33.798146 0.0030558228 160.82523 0.039035641 + 1632300 -33.796126 -33.80188 0.0057542706 302.84213 -0.28592173 + 1632400 -33.797543 -33.799974 0.002431234 127.95368 -0.60237835 + 1632500 -33.79512 -33.801353 0.0062336626 328.0721 -0.63288334 + 1632600 -33.789688 -33.796989 0.0073003377 384.21026 -0.55511907 + 1632700 -33.790351 -33.798715 0.0083641177 440.19605 -0.38688001 + 1632800 -33.794754 -33.798995 0.004240485 223.17295 -0.25225853 + 1632900 -33.795217 -33.799939 0.0047223237 248.53169 0.019440264 + 1633000 -33.794313 -33.799862 0.0055490322 292.04062 0.28068536 + 1633100 -33.793749 -33.798956 0.0052066454 274.0211 0.50774291 + 1633200 -33.793255 -33.800147 0.0068924409 362.74302 0.71501898 + 1633300 -33.794551 -33.799262 0.0047109995 247.9357 0.68612887 + 1633400 -33.798428 -33.802312 0.0038837401 204.39778 0.59074191 + 1633500 -33.79936 -33.800884 0.001524372 80.226341 0.39664159 + 1633600 -33.796298 -33.801897 0.00559912 294.67669 0.20555756 + 1633700 -33.795005 -33.797956 0.0029508984 155.30315 -0.23417768 + 1633800 -33.79225 -33.801728 0.0094779567 498.81641 -0.52767019 + 1633900 -33.793509 -33.796019 0.0025095326 132.07446 -1.0002565 + 1634000 -33.794237 -33.802481 0.008243805 433.8641 -0.93360329 + 1634100 -33.798151 -33.799392 0.0012416708 65.348027 -0.95558868 + 1634200 -33.797313 -33.803058 0.0057449455 302.35136 -0.59074544 + 1634300 -33.795133 -33.796283 0.0011504524 60.547285 -0.13148671 + 1634400 -33.789707 -33.803084 0.013377458 704.04366 0.99408842 + 1634500 -33.79357 -33.795026 0.0014561822 76.637571 1.4736831 + 1634600 -33.793915 -33.802861 0.0089462602 470.83369 1.9697512 + 1634700 -33.796691 -33.797129 0.00043872335 23.089618 1.7106432 + 1634800 -33.794974 -33.803544 0.0085707178 451.06923 1.4754399 + 1634900 -33.794235 -33.795482 0.0012474549 65.65244 0.59071797 + 1635000 -33.788212 -33.803243 0.015030912 791.06349 -0.29713445 + 1635100 -33.793526 -33.794346 0.00081987036 43.149046 -1.6333447 + 1635200 -33.795051 -33.803231 0.0081805835 430.53681 -1.919315 + 1635300 -33.796709 -33.796999 0.00028955773 15.239165 -2.0403402 + 1635400 -33.793497 -33.803209 0.0097118999 511.12863 -1.3141437 + 1635500 -33.794531 -33.795991 0.0014598618 76.831226 -0.54804269 + 1635600 -33.792635 -33.80378 0.011144638 586.53235 0.6894319 + 1635700 -33.795395 -33.796249 0.00085440513 44.96658 1.3790293 + 1635800 -33.794122 -33.802716 0.0085945267 452.32227 2.0907796 + 1635900 -33.796685 -33.79737 0.00068494603 36.048099 2.037793 + 1636000 -33.794407 -33.802988 0.0085808326 451.60157 1.9095593 + 1636100 -33.79291 -33.795037 0.0021268398 111.93368 0.99029264 + 1636200 -33.789302 -33.802594 0.013292569 699.57607 0.028705944 + 1636300 -33.795873 -33.797606 0.0017332446 91.219118 -1.1827275 + 1636400 -33.796485 -33.80261 0.0061246693 322.33588 -1.5474754 + 1636500 -33.796579 -33.798006 0.0014274142 75.123537 -1.7092794 + 1636600 -33.793773 -33.801938 0.0081645739 429.69424 -1.2107248 + 1636700 -33.793558 -33.797174 0.003616385 190.32711 -0.61155808 + 1636800 -33.792508 -33.801495 0.0089872257 472.98967 0.34874572 + 1636900 -33.794849 -33.797947 0.0030977035 163.02937 0.99563947 + 1637000 -33.795761 -33.801464 0.0057029751 300.14249 1.4930047 + 1637100 -33.799585 -33.801332 0.0017472387 91.955616 1.4723491 + 1637200 -33.798651 -33.802006 0.0033548585 176.56321 1.2607596 + 1637300 -33.79506 -33.799701 0.0046416101 244.2838 0.58362031 + 1637400 -33.793215 -33.800136 0.0069210861 364.25059 -0.42225389 + 1637500 -33.793225 -33.799383 0.006157599 324.06894 -1.4516196 + 1637600 -33.794362 -33.79887 0.0045081101 237.25782 -2.1562185 + 1637700 -33.797072 -33.800836 0.0037635095 198.07015 -2.2661488 + 1637800 -33.79809 -33.800678 0.0025884259 136.22654 -1.9261031 + 1637900 -33.794566 -33.801359 0.0067932489 357.52263 -1.037641 + 1638000 -33.790604 -33.797137 0.0065326549 343.8078 0.5852143 + 1638100 -33.792288 -33.80103 0.0087425277 460.11143 2.2681312 + 1638200 -33.794918 -33.797621 0.0027025999 142.23542 3.0323186 + 1638300 -33.793503 -33.800449 0.0069459267 365.55793 3.3588394 + 1638400 -33.791903 -33.794914 0.0030106347 158.44702 2.7907534 + 1638500 -33.78028 -33.80065 0.020369227 1072.0143 1.5923939 + 1638600 -33.790893 -33.795244 0.0043510975 228.99438 -0.42528644 + 1638700 -33.792802 -33.802109 0.0093068988 489.81378 -1.4275172 + 1638800 -33.795943 -33.797136 0.0011929984 62.786441 -2.1674033 + 1638900 -33.794591 -33.802509 0.0079176231 416.69744 -2.056563 + 1639000 -33.79396 -33.795518 0.0015577901 81.985101 -1.7338936 + 1639100 -33.787003 -33.802622 0.015618793 822.00315 -0.40227721 + 1639200 -33.793297 -33.795042 0.0017452243 91.849596 0.55424493 + 1639300 -33.795765 -33.803544 0.0077786574 409.3838 1.321095 + 1639400 -33.79675 -33.797109 0.00035906826 18.897442 1.4875071 + 1639500 -33.791773 -33.802983 0.011209996 589.97209 1.7671365 + 1639600 -33.791577 -33.792289 0.00071200127 37.471992 1.2216566 + 1639700 -33.790232 -33.803899 0.013667415 719.30386 0.90911375 + 1639800 -33.798081 -33.79832 0.00023882685 12.569244 0.15034216 + 1639900 -33.7964 -33.80372 0.0073198485 385.2371 -0.092216831 + 1640000 -33.795708 -33.796195 0.00048783073 25.674096 -0.61051128 + 1640100 -33.789922 -33.803687 0.013765171 724.44866 -0.70910004 + 1640200 -33.792276 -33.792499 0.00022297644 11.735051 -1.2599913 + 1640300 -33.79296 -33.803181 0.010220995 537.92186 -1.0257025 + 1640400 -33.798601 -33.799091 0.00049056129 25.817803 -1.0204982 + 1640500 -33.796639 -33.803623 0.0069838728 367.55499 -0.51980338 + 1640600 -33.795313 -33.796542 0.0012288916 64.67547 -0.00377794 + 1640700 -33.790716 -33.802869 0.012152652 639.58324 1.0640674 + 1640800 -33.792909 -33.794783 0.0018739436 98.623982 1.6089253 + 1640900 -33.794622 -33.802286 0.0076634939 403.32285 2.091559 + 1641000 -33.798539 -33.799414 0.00087483004 46.041524 1.8340944 + 1641100 -33.796508 -33.802786 0.0062776753 330.38845 1.4479605 + 1641200 -33.794288 -33.797878 0.0035902915 188.95384 0.43600162 + 1641300 -33.791981 -33.801721 0.0097398524 512.59974 -0.74113912 + 1641400 -33.794204 -33.797279 0.0030750555 161.83743 -1.9550221 + 1641500 -33.793696 -33.800751 0.0070545774 371.27612 -2.4274492 + 1641600 -33.793726 -33.797291 0.0035647738 187.61086 -2.5386257 + 1641700 -33.792022 -33.799846 0.0078240253 411.77147 -1.8952908 + 1641800 -33.79299 -33.798224 0.0052334494 275.43177 -0.946052 + 1641900 -33.794073 -33.800898 0.0068244153 359.16289 0.16119837 + 1642000 -33.796491 -33.800476 0.003985431 209.74968 0.98736523 + 1642100 -33.796564 -33.800586 0.0040215952 211.65297 1.5585686 + 1642200 -33.793152 -33.799021 0.005868868 308.87329 1.88349 + 1642300 -33.789633 -33.797001 0.0073681591 387.77964 1.941756 + 1642400 -33.790312 -33.798465 0.0081535884 429.11608 1.5741278 + 1642500 -33.792884 -33.798072 0.0051879865 273.0391 0.91983753 + 1642600 -33.793705 -33.80068 0.0069745352 367.06356 0.34387843 + 1642700 -33.79458 -33.798854 0.0042738246 224.92758 -0.35182048 + 1642800 -33.793963 -33.800943 0.0069802607 367.36489 -0.83689448 + 1642900 -33.794577 -33.797688 0.0031115452 163.75785 -1.2105173 + 1643000 -33.792213 -33.801141 0.008928087 469.87726 -1.1555103 + 1643100 -33.792502 -33.79602 0.0035180524 185.15196 -1.0469168 + 1643200 -33.791977 -33.801461 0.0094848336 499.17833 -0.45682742 + 1643300 -33.796053 -33.798117 0.0020639395 108.62329 -0.15820899 + 1643400 -33.796887 -33.803079 0.006191494 325.85281 0.30071374 + 1643500 -33.797195 -33.798464 0.0012685753 66.763986 0.5123571 + 1643600 -33.78776 -33.801836 0.014076518 740.83458 1.0900663 + 1643700 -33.790731 -33.792701 0.0019700811 103.68361 1.1052296 + 1643800 -33.792582 -33.803096 0.010513313 553.30626 1.3165514 + 1643900 -33.796106 -33.796923 0.00081742534 43.020366 0.90244353 + 1644000 -33.794258 -33.803165 0.008907052 468.7702 0.71752066 + 1644100 -33.793757 -33.794845 0.0010883166 57.277132 0.059181055 + 1644200 -33.782529 -33.8033 0.020770532 1093.1346 -0.38890162 + 1644300 -33.791338 -33.792121 0.00078337408 41.228279 -1.5328228 + 1644400 -33.792085 -33.802991 0.010906112 573.97892 -1.5462064 + 1644500 -33.795187 -33.795742 0.00055488045 29.202863 -1.6154303 + 1644600 -33.793266 -33.803614 0.010347857 544.59851 -0.93285219 + 1644700 -33.795409 -33.795937 0.0005280239 27.789427 -0.44721523 + 1644800 -33.793735 -33.803754 0.010018728 527.27672 0.47965518 + 1644900 -33.796038 -33.796702 0.00066390586 34.940773 0.94146979 + 1645000 -33.793257 -33.803471 0.010213762 537.54116 1.5704012 + 1645100 -33.792807 -33.79304 0.00023324408 12.275428 1.5418195 + 1645200 -33.786438 -33.803219 0.016780682 883.1523 1.7926159 + 1645300 -33.793147 -33.793885 0.00073799669 38.840108 1.0594714 + 1645400 -33.795023 -33.803444 0.0084211782 443.1991 0.78306616 + 1645500 -33.79663 -33.797287 0.00065697832 34.576183 0.1735861 + 1645600 -33.792981 -33.803488 0.010506385 552.94165 -0.17469063 + 1645700 -33.790916 -33.79301 0.002093901 110.20014 -0.97346935 + 1645800 -33.784239 -33.801726 0.017486899 920.31989 -1.2213002 + 1645900 -33.79349 -33.794629 0.0011393991 59.96556 -1.8365924 + 1646000 -33.794381 -33.802535 0.0081537081 429.12238 -1.538567 + 1646100 -33.795952 -33.797758 0.0018055467 95.02431 -1.1893648 + 1646200 -33.793075 -33.802272 0.0091964755 484.0023 -0.27888947 + 1646300 -33.790406 -33.794843 0.004436729 233.50109 0.70069617 + 1646400 -33.788539 -33.800976 0.012437078 654.55232 2.0070296 + 1646500 -33.795959 -33.798029 0.002069961 108.9402 2.3156388 + 1646600 -33.795576 -33.801284 0.0057076686 300.38951 2.345904 + 1646700 -33.794333 -33.798022 0.0036889863 194.14806 1.7660244 + 1646800 -33.790151 -33.800745 0.010594525 557.5804 0.7970738 + 1646900 -33.790443 -33.796616 0.0061728822 324.87328 -0.76228699 + 1647000 -33.795429 -33.800733 0.0053037148 279.12978 -1.7279881 + 1647100 -33.796889 -33.800064 0.0031759251 167.14611 -2.0638231 + 1647200 -33.795074 -33.800174 0.00509987 268.40161 -1.8432525 + 1647300 -33.7904 -33.798025 0.0076253456 401.31514 -1.0476627 + 1647400 -33.790893 -33.798256 0.0073631286 387.51489 0.063962853 + 1647500 -33.793791 -33.800254 0.006462609 340.12134 0.99988599 + 1647600 -33.794503 -33.798944 0.0044416059 233.75776 1.5842405 + 1647700 -33.793481 -33.799834 0.0063529994 334.35269 1.9309244 + 1647800 -33.79296 -33.797433 0.0044728342 235.40128 1.842523 + 1647900 -33.788065 -33.799425 0.011360085 597.87115 1.5094329 + 1648000 -33.788923 -33.795031 0.0061077604 321.44598 0.5561394 + 1648100 -33.794561 -33.801523 0.0069613164 366.36787 -0.13496071 + 1648200 -33.79649 -33.79897 0.0024807961 130.56208 -0.66452678 + 1648300 -33.794364 -33.801966 0.0076024673 400.11107 -0.83821757 + 1648400 -33.792297 -33.79493 0.002632037 138.52176 -1.0549012 + 1648500 -33.785235 -33.800562 0.015327001 806.64639 -0.68852839 + 1648600 -33.792531 -33.795449 0.0029179469 153.56894 -0.67208053 + 1648700 -33.794372 -33.802847 0.0084744319 446.00179 -0.27613373 + 1648800 -33.79552 -33.796792 0.0012721891 66.954176 -0.076643938 + 1648900 -33.791958 -33.802746 0.010787464 567.73462 0.52681557 + 1649000 -33.792692 -33.794274 0.0015824382 83.282311 0.72678366 + 1649100 -33.790838 -33.802996 0.01215806 639.86785 1.1962665 + 1649200 -33.796349 -33.796953 0.00060429456 31.803484 0.98661033 + 1649300 -33.796481 -33.803547 0.0070657108 371.86206 0.96504304 + 1649400 -33.796959 -33.797603 0.00064390432 33.88811 0.50928513 + 1649500 -33.787985 -33.80336 0.015374431 809.14261 0.20697625 + 1649600 -33.790314 -33.791125 0.00081066946 42.66481 -0.95220529 + 1649700 -33.790736 -33.803419 0.012683362 667.51401 -1.2629057 + 1649800 -33.795609 -33.795921 0.00031193676 16.416954 -1.6693609 + 1649900 -33.794432 -33.803371 0.008938425 470.42133 -1.2924354 + 1650000 -33.795558 -33.796058 0.00049987255 26.307846 -0.95345449 + 1650100 -33.7878 -33.803947 0.016146431 849.77226 0.26073674 + 1650200 -33.790505 -33.791922 0.0014166471 74.556875 1.1173241 + 1650300 -33.793106 -33.803071 0.0099647694 524.43693 1.9845891 + 1650400 -33.796086 -33.796344 0.00025867866 13.614027 1.9572533 + 1650500 -33.793114 -33.803296 0.010182083 535.87394 1.9243126 + 1650600 -33.792941 -33.794299 0.0013581512 71.478284 1.0764929 + 1650700 -33.786935 -33.803038 0.016103103 847.49196 0.32069953 + 1650800 -33.792425 -33.793977 0.0015522221 81.692063 -1.0967512 + 1650900 -33.794539 -33.802981 0.008441159 444.25067 -1.5289252 + 1651000 -33.796712 -33.797553 0.00084032258 44.225428 -1.7957147 + 1651100 -33.793337 -33.802519 0.0091823074 483.25665 -1.3180634 + 1651200 -33.789517 -33.793122 0.0036043495 189.6937 -0.60581506 + 1651300 -33.788379 -33.801958 0.013578581 714.62859 0.71703906 + 1651400 -33.796215 -33.797945 0.0017297179 91.033511 1.1601296 + 1651500 -33.7949 -33.802058 0.0071572781 376.68116 1.5774646 + 1651600 -33.793932 -33.796862 0.0029299194 154.19904 1.5070677 + 1651700 -33.790054 -33.800962 0.010908507 574.10499 1.36062 + 1651800 -33.791616 -33.795544 0.003927616 206.70693 0.60579974 + 1651900 -33.795071 -33.801649 0.0065786482 346.22839 0.1016161 + 1652000 -33.79722 -33.8 0.0027804083 146.33041 -0.33222457 + 1652100 -33.795623 -33.801299 0.0056760173 298.72373 -0.56590186 + 1652200 -33.793043 -33.797856 0.004813343 253.32195 -0.78931383 + 1652300 -33.791411 -33.799225 0.0078134479 411.21479 -0.7673222 + 1652400 -33.792437 -33.79849 0.0060529385 318.56075 -0.6766527 + 1652500 -33.792966 -33.799194 0.0062279426 327.77107 -0.39859938 + 1652600 -33.794421 -33.799738 0.0053175086 279.85574 -0.067123576 + 1652700 -33.795743 -33.800064 0.0043209992 227.41033 0.22828595 + 1652800 -33.798214 -33.801937 0.0037236077 195.97015 0.43640517 + 1652900 -33.799247 -33.801258 0.0020107927 105.82623 0.48928203 + 1653000 -33.795848 -33.801461 0.0056134957 295.43327 0.54077321 + 1653100 -33.79332 -33.79732 0.0039998312 210.50755 0.37097362 + 1653200 -33.791351 -33.801003 0.0096519177 507.97182 0.23764846 + 1653300 -33.793907 -33.79688 0.0029732156 156.47768 -0.16129626 + 1653400 -33.795964 -33.802357 0.0063934019 336.47904 -0.232581 + 1653500 -33.79827 -33.799751 0.0014810463 77.946143 -0.38244779 + 1653600 -33.797733 -33.80302 0.0052868154 278.24038 -0.27292755 + 1653700 -33.796329 -33.7976 0.0012708904 66.885827 -0.20902216 + 1653800 -33.789823 -33.802613 0.012789406 673.09501 0.29891942 + 1653900 -33.792071 -33.79416 0.0020884537 109.91345 0.3806592 + 1654000 -33.793786 -33.802933 0.0091465243 481.37341 0.72259935 + 1654100 -33.797242 -33.797769 0.00052741103 27.757172 0.57901241 + 1654200 -33.795085 -33.803351 0.0082652925 434.99497 0.65975347 + 1654300 -33.794673 -33.795624 0.0009501204 50.003989 0.31023664 + 1654400 -33.790959 -33.803448 0.012489409 657.30646 0.21390936 + 1654500 -33.794182 -33.794954 0.00077200466 40.629917 -0.33663178 + 1654600 -33.793619 -33.803724 0.010104868 531.8102 -0.34426147 + 1654700 -33.796565 -33.796782 0.00021719066 11.430551 -0.62347353 + 1654800 -33.794017 -33.803413 0.0093958501 494.49521 -0.36463417 + 1654900 -33.792648 -33.79309 0.00044245845 23.286194 -0.31741167 + 1655000 -33.785837 -33.803903 0.018065639 950.77844 0.43556404 + 1655100 -33.794252 -33.794619 0.00036643911 19.285363 0.41923846 + 1655200 -33.794604 -33.803611 0.0090077351 474.06907 0.74205721 + 1655300 -33.795968 -33.796396 0.00042782081 22.515828 0.58670381 + 1655400 -33.791753 -33.803666 0.01191316 626.97898 0.72706312 + 1655500 -33.791371 -33.792095 0.00072423318 38.115747 0.24082272 + 1655600 -33.788096 -33.802996 0.014900246 784.18666 0.2046307 + 1655700 -33.796372 -33.79704 0.00066787096 35.149453 -0.31172023 + 1655800 -33.795812 -33.803406 0.0075939305 399.66179 -0.27215258 + 1655900 -33.795958 -33.796962 0.0010041963 52.849958 -0.4123443 + 1656000 -33.789902 -33.802713 0.012811138 674.23878 -0.048493437 + 1656100 -33.789704 -33.792429 0.002724298 143.37737 -0.041258889 + 1656200 -33.79338 -33.802392 0.0090122305 474.30565 0.27923918 + 1656300 -33.79713 -33.798502 0.0013718962 72.201676 0.21731085 + 1656400 -33.79464 -33.802318 0.0076785018 404.1127 0.39704948 + 1656500 -33.792116 -33.795712 0.0035952985 189.21735 0.34266626 + 1656600 -33.789173 -33.800794 0.011620287 611.56536 0.4529277 + 1656700 -33.795027 -33.797773 0.0027463041 144.53554 0.17335311 + 1656800 -33.79655 -33.802082 0.0055317085 291.12888 0.16427232 + 1656900 -33.796503 -33.799514 0.0030115988 158.49776 0.026644947 + 1657000 -33.794318 -33.800777 0.0064580744 339.8827 0.001645381 + 1657100 -33.792368 -33.797542 0.0051739936 272.30267 -0.098278038 + 1657200 -33.791522 -33.79948 0.0079586635 418.85736 -0.099119392 + 1657300 -33.796891 -33.800463 0.0035716816 187.97442 -0.19260982 + 1657400 -33.798664 -33.801638 0.002973424 156.48865 -0.17013005 + 1657500 -33.796939 -33.801048 0.0041082667 216.21441 -0.067859576 + 1657600 -33.79409 -33.799146 0.005055798 266.08214 0.12489267 + 1657700 -33.791268 -33.799439 0.0081709708 430.0309 0.38799714 + 1657800 -33.792487 -33.797406 0.0049184395 258.85308 0.46909505 + 1657900 -33.795941 -33.801449 0.0055078625 289.87389 0.55408939 + 1658000 -33.798604 -33.800643 0.0020384627 107.28247 0.4402491 + 1658100 -33.79739 -33.802282 0.004891194 257.41918 0.37916999 + 1658200 -33.796668 -33.798941 0.0022732647 119.63989 0.12665119 + 1658300 -33.792713 -33.802002 0.0092891428 488.8793 -0.018059477 + 1658400 -33.792853 -33.795929 0.0030755273 161.86226 -0.44414538 + 1658500 -33.792333 -33.801859 0.009525437 501.31525 -0.5156679 + 1658600 -33.797662 -33.798762 0.0010998194 57.882513 -0.73267978 + 1658700 -33.797143 -33.802983 0.0058398971 307.34858 -0.50381451 + 1658800 -33.796138 -33.79751 0.0013714057 72.175858 -0.30450851 + 1658900 -33.790861 -33.803022 0.01216068 640.00572 0.40638948 + 1659000 -33.793577 -33.795342 0.0017652321 92.902593 0.70451313 + 1659100 -33.792908 -33.803167 0.010259628 539.95507 1.1930441 + 1659200 -33.795365 -33.795859 0.00049418681 26.008611 1.079739 + 1659300 -33.792023 -33.802787 0.010763238 566.45959 1.1613375 + 1659400 -33.789181 -33.790293 0.0011115801 58.501468 0.54318771 + 1659500 -33.786743 -33.803702 0.016959622 892.56977 0.2311507 + 1659600 -33.795127 -33.795643 0.00051527905 27.118677 -0.54218463 + 1659700 -33.794307 -33.803662 0.0093544889 492.31841 -0.59132049 + 1659800 -33.79594 -33.79634 0.00039947371 21.023945 -0.81242004 + 1659900 -33.790376 -33.803699 0.013322725 701.16312 -0.39959346 + 1660000 -33.787743 -33.788343 0.00059967491 31.560356 -0.29640602 + 1660100 -33.788198 -33.803282 0.015084693 793.89394 0.47393471 + 1660200 -33.795065 -33.795453 0.00038828333 20.435005 0.44840803 + 1660300 -33.793032 -33.803459 0.010426876 548.7572 0.78775424 + 1660400 -33.794785 -33.795343 0.00055793447 29.363594 0.61997456 + 1660500 -33.791938 -33.803536 0.011598089 610.39708 0.73957994 + 1660600 -33.794658 -33.795747 0.0010895784 57.343541 0.30298171 + 1660700 -33.794723 -33.803323 0.008599597 452.58912 0.22886884 + 1660800 -33.797778 -33.79836 0.0005823646 30.64933 -0.14113029 + 1660900 -33.795786 -33.803234 0.0074473974 391.94988 -0.155735 + 1661000 -33.791788 -33.79399 0.0022013765 115.85648 -0.37719622 + 1661100 -33.788087 -33.801928 0.013841332 728.45693 -0.24666058 + 1661200 -33.793797 -33.795667 0.0018697986 98.405834 -0.48282974 + 1661300 -33.793946 -33.802492 0.0085458092 449.75832 -0.23485118 + 1661400 -33.795419 -33.79761 0.0021907271 115.29602 -0.20503632 + 1661500 -33.79357 -33.801872 0.0083022444 436.93972 0.14742551 + 1661600 -33.79401 -33.797033 0.003022801 159.08732 0.28789769 + 1661700 -33.792531 -33.801389 0.0088582159 466.2 0.59659854 + 1661800 -33.795405 -33.79835 0.0029456889 155.02898 0.58202917 + 1661900 -33.796563 -33.801686 0.0051232747 269.63338 0.60630513 + 1662000 -33.797014 -33.800001 0.0029871278 157.20987 0.43874517 + 1662100 -33.794034 -33.800733 0.0066991135 352.56837 0.29502184 + 1662200 -33.790338 -33.797112 0.0067743676 356.52892 -0.085214757 + 1662300 -33.791062 -33.798733 0.0076714536 403.74176 -0.44080394 + 1662400 -33.794385 -33.799483 0.005097546 268.2793 -0.66983263 + 1662500 -33.794611 -33.799608 0.0049973168 263.00433 -0.68039065 + 1662600 -33.793673 -33.799648 0.0059752833 314.47383 -0.50287309 + 1662700 -33.793103 -33.798377 0.0052736507 277.54753 -0.19658306 + 1662800 -33.79219 -33.800122 0.0079321585 417.46243 0.24513779 + 1662900 -33.794968 -33.798992 0.0040235033 211.75339 0.48801526 + 1663000 -33.797236 -33.801939 0.0047027052 247.49918 0.66487037 + 1663100 -33.797601 -33.799825 0.0022232825 117.00938 0.62759268 + 1663200 -33.790836 -33.800834 0.0099978154 526.17611 0.66592458 + 1663300 -33.790618 -33.79459 0.0039719017 209.03764 0.23870626 + 1663400 -33.79173 -33.801481 0.0097505821 513.16444 0.023002688 + 1663500 -33.795299 -33.797561 0.0022614197 119.0165 -0.34660095 + 1663600 -33.795002 -33.802671 0.0076685802 403.59054 -0.33369697 + 1663700 -33.795559 -33.797144 0.0015849106 83.412432 -0.46546395 + 1663800 -33.785023 -33.801589 0.016565884 871.84769 -0.003844172 + 1663900 -33.789178 -33.791844 0.0026666456 140.34318 -0.033682538 + 1664000 -33.792589 -33.802933 0.010343403 544.36409 0.31182347 + 1664100 -33.795691 -33.796536 0.00084565637 44.506141 0.24848013 + 1664200 -33.79367 -33.803144 0.0094739431 498.60517 0.49749499 + 1664300 -33.793986 -33.795017 0.0010309942 54.260306 0.33546918 + 1664400 -33.784862 -33.803154 0.018291981 962.69066 0.63923169 + 1664500 -33.790776 -33.791842 0.0010656944 56.086544 0.139381 + 1664600 -33.793464 -33.803494 0.010029227 527.82927 0.21124025 + 1664700 -33.795907 -33.796267 0.00036014942 18.954343 -0.062421816 + 1664800 -33.792593 -33.80355 0.010957514 576.68417 0.071773319 + 1664900 -33.792387 -33.792705 0.00031831402 16.752583 -0.2050091 + 1665000 -33.78463 -33.803811 0.019181256 1009.4924 0.18269077 + 1665100 -33.793501 -33.794005 0.00050352796 26.500227 -0.20102662 + 1665200 -33.794522 -33.803735 0.0092127312 484.85782 0.013543336 + 1665300 -33.796436 -33.796501 6.5510898e-05 3.4477801 -0.098733134 + 1665400 -33.79201 -33.803821 0.011811226 621.61428 0.24199636 + 1665500 -33.789888 -33.79056 0.00067176968 35.354639 0.15145246 + 1665600 -33.786146 -33.803361 0.017215676 906.04566 0.62931957 + 1665700 -33.796346 -33.79663 0.00028376549 14.934325 0.31000582 + 1665800 -33.795009 -33.80372 0.0087112018 458.46278 0.46111663 + 1665900 -33.795392 -33.796076 0.00068387094 35.991518 0.20143129 + 1666000 -33.789707 -33.803126 0.013418966 706.22823 0.28515357 + 1666100 -33.79025 -33.791612 0.0013619017 71.675672 -0.17347326 + 1666200 -33.792887 -33.803054 0.010167296 535.09572 -0.159904 + 1666300 -33.797361 -33.79826 0.00089892724 47.309739 -0.39528895 + 1666400 -33.795118 -33.802931 0.0078130222 411.19239 -0.19707957 + 1666500 -33.792985 -33.795319 0.0023337221 122.82171 -0.15392988 + 1666600 -33.788333 -33.801852 0.013518482 711.46567 0.31660204 + 1666700 -33.794768 -33.796581 0.0018124366 95.386921 0.30886193 + 1666800 -33.79679 -33.802525 0.0057350067 301.82829 0.46215611 + 1666900 -33.796658 -33.798974 0.0023157035 121.87341 0.39023889 + 1667000 -33.792896 -33.801404 0.0085075646 447.74554 0.44155913 + 1667100 -33.791016 -33.79561 0.004593952 241.7756 0.16263576 + 1667200 -33.791152 -33.800238 0.0090860343 478.18988 0.047417609 + 1667300 -33.797309 -33.800129 0.0028203338 148.43165 -0.2067885 + 1667400 -33.797501 -33.801737 0.0042358914 222.93118 -0.22477235 + 1667500 -33.795974 -33.799856 0.0038822431 204.31899 -0.20255929 + 1667600 -33.793217 -33.799571 0.006353939 334.40214 -0.036042719 + 1667700 -33.790723 -33.798175 0.0074513132 392.15597 0.14935737 + 1667800 -33.792124 -33.798421 0.006297406 331.42686 0.30074211 + 1667900 -33.797462 -33.801374 0.0039116959 205.86907 0.33372455 + 1668000 -33.797706 -33.80063 0.0029238927 153.88186 0.32146871 + 1668100 -33.79486 -33.801078 0.0062182276 327.25977 0.34885759 + 1668200 -33.793187 -33.797462 0.0042752752 225.00392 0.19368652 + 1668300 -33.791291 -33.800479 0.0091884732 483.58115 0.12650427 + 1668400 -33.793389 -33.79718 0.0037910367 199.51888 -0.11865134 + 1668500 -33.793332 -33.801489 0.0081569086 429.29082 -0.12161634 + 1668600 -33.794424 -33.79704 0.0026160921 137.68259 -0.26451227 + 1668700 -33.792732 -33.801805 0.0090729375 477.50061 -0.080007808 + 1668800 -33.79418 -33.7967 0.0025196501 132.60694 -0.12442251 + 1668900 -33.794277 -33.80266 0.0083827365 441.17595 0.11576654 + 1669000 -33.797461 -33.79868 0.0012183432 64.120316 0.076475508 + 1669100 -33.796958 -33.803253 0.0062945208 331.27502 0.24789541 + 1669200 -33.795911 -33.796846 0.00093558916 49.239223 0.19457707 + 1669300 -33.78855 -33.802731 0.014180254 746.29413 0.51570481 + 1669400 -33.792143 -33.793191 0.0010473625 55.121755 0.22603153 + 1669500 -33.792962 -33.803493 0.010530377 554.20435 0.38379273 + 1669600 -33.796293 -33.796879 0.00058678022 30.88172 0.12201495 + 1669700 -33.794087 -33.803606 0.0095193063 500.9926 0.20952586 + 1669800 -33.795518 -33.795825 0.00030707104 16.160875 -0.063341437 + 1669900 -33.792417 -33.803838 0.011420702 601.06135 0.090085865 + 1670000 -33.794189 -33.794428 0.0002398242 12.621734 -0.21248465 + 1670100 -33.791226 -33.803677 0.012450454 655.25628 0.031068297 + 1670200 -33.795369 -33.795484 0.00011561608 6.0847711 -0.19288547 + 1670300 -33.795303 -33.803969 0.0086665433 456.11244 0.026410548 + 1670400 -33.797529 -33.797661 0.00013282328 6.9903709 -0.069009319 + 1670500 -33.79288 -33.8038 0.010919981 574.70885 0.24671369 + 1670600 -33.790388 -33.791001 0.00061231667 32.22568 0.16995778 + 1670700 -33.788428 -33.803635 0.015206519 800.30553 0.59865245 + 1670800 -33.794523 -33.794803 0.00028074653 14.77544 0.32200419 + 1670900 -33.792879 -33.803398 0.010518842 553.59728 0.49981272 + 1671000 -33.794985 -33.795693 0.00070797402 37.260041 0.22299827 + 1671100 -33.792483 -33.803454 0.010970838 577.38539 0.29672911 + 1671200 -33.7946 -33.795551 0.00095062669 50.030635 -0.060217695 + 1671300 -33.793636 -33.803123 0.0094868839 499.28624 -0.0021590248 + 1671400 -33.796466 -33.797567 0.0011007289 57.930381 -0.25027827 + 1671500 -33.794831 -33.802952 0.0081217581 427.44088 -0.11842724 + 1671600 -33.793271 -33.795285 0.0020133214 105.95931 -0.19198604 + 1671700 -33.787129 -33.801596 0.014467343 761.40337 0.1910243 + 1671800 -33.792202 -33.794789 0.0025870077 136.15191 0.10740199 + 1671900 -33.794828 -33.802351 0.0075233823 395.9489 0.2864158 + 1672000 -33.795977 -33.798196 0.002218798 116.77336 0.2182478 + 1672100 -33.793571 -33.801744 0.0081732919 430.15306 0.35422737 + 1672200 -33.791422 -33.795799 0.0043773289 230.37491 0.23711282 + 1672300 -33.788242 -33.799708 0.011466624 603.47821 0.29984458 + 1672400 -33.794509 -33.797975 0.0034661622 182.42102 0.0479347 + 1672500 -33.79612 -33.801574 0.0054538684 287.03223 0.029547123 + 1672600 -33.796206 -33.799788 0.0035811349 188.47193 -0.040051017 + 1672700 -33.793377 -33.799982 0.0066050552 347.61816 0.021240603 + 1672800 -33.788414 -33.79632 0.007906287 416.10083 0.05820782 + 1672900 -33.789835 -33.798137 0.0083018702 436.92002 0.099997673 + 1673000 -33.794364 -33.799718 0.0053538087 281.76618 0.073520625 + 1673100 -33.794421 -33.799312 0.0048913324 257.42646 0.089943501 + 1673200 -33.793406 -33.799913 0.0065070406 342.45974 0.16266739 + 1673300 -33.793174 -33.798349 0.0051748211 272.34622 0.17416178 + 1673400 -33.792784 -33.800243 0.0074593078 392.57672 0.22746628 + 1673500 -33.795077 -33.798718 0.0036408575 191.61508 0.14570923 + 1673600 -33.797113 -33.802117 0.0050041832 263.3657 0.16153444 + 1673700 -33.798018 -33.800084 0.0020656334 108.71245 0.072222508 + 1673800 -33.792158 -33.801164 0.0090056229 473.9579 0.18104578 + 1673900 -33.790662 -33.794288 0.0036258859 190.82714 0.018610769 + 1674000 -33.791147 -33.801824 0.010676383 561.88852 0.10922034 + 1674100 -33.795414 -33.797492 0.0020773319 109.32812 -0.093635937 + 1674200 -33.795059 -33.802638 0.0075790054 398.8763 0.030314687 + 1674300 -33.795836 -33.797228 0.0013919413 73.256627 -0.065873014 + 1674400 -33.793242 -33.802951 0.0097086195 510.95599 0.16501484 + 1674500 -33.794631 -33.795883 0.0012518989 65.88632 0.062131991 + 1674600 -33.79217 -33.803018 0.010848499 570.9468 0.31066775 + 1674700 -33.794696 -33.795644 0.00094889531 49.939514 0.14801431 + 1674800 -33.79564 -33.803654 0.0080140983 421.77484 0.30213309 + 1674900 -33.798338 -33.798641 0.00030316901 15.955515 0.11655587 + 1675000 -33.795174 -33.803633 0.0084583687 445.1564 0.24127057 + 1675100 -33.792459 -33.792911 0.0004515495 23.764647 0.0038263742 + 1675200 -33.788892 -33.803856 0.014963568 787.51922 0.18093812 + 1675300 -33.794243 -33.794406 0.00016340685 8.5999566 -0.19799766 + 1675400 -33.793746 -33.803804 0.010058252 529.35682 -0.020366731 + 1675500 -33.796147 -33.796297 0.00014986078 7.8870391 -0.20656867 + 1675600 -33.79289 -33.803892 0.011001886 579.01947 0.091353644 + 1675700 -33.788565 -33.788955 0.00039009685 20.530449 -0.0090436204 + 1675800 -33.780902 -33.803608 0.022705232 1194.9561 0.65113163 + 1675900 -33.793289 -33.793605 0.00031583474 16.6221 0.31583139 + 1676000 -33.793658 -33.80373 0.010071559 530.05718 0.52225742 + 1676100 -33.796705 -33.796913 0.00020826878 10.961 0.27721327 + 1676200 -33.794141 -33.803674 0.0095328871 501.70734 0.37676193 + 1676300 -33.792025 -33.793143 0.0011179362 58.835987 0.02717599 + 1676400 -33.785497 -33.802959 0.017462054 919.01233 0.13002864 + 1676500 -33.794096 -33.794797 0.00070105487 36.895893 -0.40185772 + 1676600 -33.79417 -33.803262 0.0090921241 478.51038 -0.29305679 + 1676700 -33.795475 -33.796668 0.0011928388 62.778044 -0.39489668 + 1676800 -33.792211 -33.802717 0.010505642 552.90258 -0.050820061 + 1676900 -33.791625 -33.793831 0.0022068447 116.14427 0.00034634901 + 1677000 -33.788845 -33.802014 0.013168946 693.0699 0.50914005 + 1677100 -33.795998 -33.797656 0.0016582632 87.272913 0.43602718 + 1677200 -33.79615 -33.802574 0.006424603 338.12113 0.56340367 + 1677300 -33.796107 -33.79833 0.0022238779 117.04071 0.43215192 + 1677400 -33.79126 -33.801426 0.010166616 535.05991 0.42978129 + 1677500 -33.788718 -33.793684 0.0049660212 261.35727 0.0075916664 + 1677600 -33.789315 -33.800131 0.010816543 569.265 -0.15226772 + 1677700 -33.793341 -33.797226 0.0038850923 204.46894 -0.46943684 + 1677800 -33.794307 -33.80111 0.0068031583 358.04415 -0.45058327 + 1677900 -33.796298 -33.799575 0.0032774549 172.48953 -0.43465323 + 1678000 -33.795755 -33.801033 0.0052778789 277.77006 -0.2242252 + 1678100 -33.791421 -33.797879 0.0064588483 339.92343 0.091881595 + 1678200 -33.788171 -33.797576 0.0094045891 494.95513 0.58899013 + 1678300 -33.792549 -33.798626 0.006077511 319.85398 0.84105978 + 1678400 -33.794986 -33.799754 0.0047683881 250.95601 0.91726128 + 1678500 -33.794811 -33.800325 0.0055147003 290.23376 0.86543208 + 1678600 -33.79419 -33.798949 0.0047592402 250.47457 0.59719062 + 1678700 -33.791242 -33.799555 0.0083132524 437.51906 0.27995714 + 1678800 -33.788989 -33.795528 0.0065385644 344.11881 -0.24134038 + 1678900 -33.78993 -33.799778 0.0098473234 518.25585 -0.66383178 + 1679000 -33.794947 -33.798343 0.0033954913 178.70168 -0.99268065 + 1679100 -33.795316 -33.801597 0.0062810258 330.56479 -0.8689051 + 1679200 -33.795377 -33.798128 0.0027517751 144.82347 -0.67169555 + 1679300 -33.788176 -33.800824 0.012648198 665.66338 0.068366278 + 1679400 -33.786584 -33.791643 0.0050591113 266.25652 0.73562068 + 1679500 -33.792644 -33.80198 0.0093358754 491.3388 1.3889778 + 1679600 -33.795312 -33.797178 0.0018658258 98.196746 1.4027027 + 1679700 -33.793295 -33.802366 0.0090709943 477.39834 1.4134355 + 1679800 -33.793832 -33.795642 0.0018103137 95.275195 0.84793535 + 1679900 -33.79024 -33.802577 0.012337111 649.29114 0.43566413 + 1680000 -33.794018 -33.795741 0.001723865 90.725477 -0.44621985 + 1680100 -33.796129 -33.803384 0.0072550056 381.82447 -0.73142166 + 1680200 -33.797905 -33.798345 0.00044027896 23.171489 -0.99707205 + 1680300 -33.792702 -33.803295 0.01059307 557.50381 -0.69997741 + 1680400 -33.790662 -33.791617 0.00095467808 50.243856 -0.49598298 + 1680500 -33.789415 -33.80361 0.014194956 747.06787 0.30581932 + 1680600 -33.795057 -33.795389 0.00033123405 17.432552 0.42236026 + 1680700 -33.794648 -33.803804 0.0091562836 481.88704 0.84987973 + 1680800 -33.796568 -33.796735 0.00016677936 8.777449 0.74672687 + 1680900 -33.789391 -33.803709 0.014317836 753.53496 0.94086325 + 1681000 -33.788792 -33.789079 0.00028769761 15.141269 0.35892778 + 1681100 -33.789968 -33.803943 0.013975366 735.51106 0.2818643 + 1681200 -33.795487 -33.795641 0.00015416891 8.1137722 -0.26201325 + 1681300 -33.793548 -33.803763 0.010215609 537.63837 -0.21146693 + 1681400 -33.795117 -33.795288 0.00017141428 9.0213805 -0.49642316 + 1681500 -33.789266 -33.80384 0.014574582 767.04726 -0.17839648 + 1681600 -33.788053 -33.788715 0.0006618909 34.834728 -0.29207261 + 1681700 -33.78954 -33.803412 0.013871766 730.05867 0.15995384 + 1681800 -33.7958 -33.796244 0.00044350209 23.341119 0.026118154 + 1681900 -33.793953 -33.803585 0.009632351 506.94204 0.34738917 + 1682000 -33.794815 -33.795599 0.00078404342 41.263506 0.24826195 + 1682100 -33.788983 -33.803006 0.014022399 737.98635 0.5693625 + 1682200 -33.787913 -33.789756 0.0018434103 97.017042 0.33901539 + 1682300 -33.790692 -33.802785 0.012092822 636.43443 0.47223783 + 1682400 -33.796042 -33.797177 0.0011347167 59.71913 0.17014898 + 1682500 -33.79432 -33.802832 0.0085124279 448.00149 0.22826783 + 1682600 -33.794013 -33.796129 0.0021166237 111.39602 -0.028204922 + 1682700 -33.788382 -33.801751 0.013368463 703.5703 0.07512512 + 1682800 -33.788502 -33.791872 0.0033707849 177.4014 -0.25523193 + 1682900 -33.793002 -33.801899 0.0088976795 468.27694 -0.21407161 + 1683000 -33.796258 -33.798532 0.002274007 119.67896 -0.30118898 + 1683100 -33.794687 -33.801892 0.0072046988 379.17687 -0.095469677 + 1683200 -33.7923 -33.796427 0.0041272894 217.21556 0.01823588 + 1683300 -33.787242 -33.799477 0.01223467 643.89978 0.46745749 + 1683400 -33.792054 -33.796524 0.0044696393 235.23313 0.5431842 + 1683500 -33.795337 -33.80119 0.0058534919 308.06406 0.63176463 + 1683600 -33.795996 -33.79957 0.0035738294 188.08745 0.55199982 + 1683700 -33.794076 -33.800357 0.0062811969 330.57379 0.4486067 + 1683800 -33.789524 -33.797061 0.0075363394 396.63082 0.18404503 + 1683900 -33.788479 -33.797354 0.0088748744 467.07672 -0.13273464 + 1684000 -33.795942 -33.800481 0.0045387402 238.86985 -0.45715881 + 1684100 -33.796674 -33.800439 0.0037648637 198.14142 -0.50772056 + 1684200 -33.794463 -33.800457 0.0059943843 315.4791 -0.3640879 + 1684300 -33.791848 -33.79718 0.0053320401 280.62051 -0.14405332 + 1684400 -33.7892 -33.799274 0.010074383 530.20578 0.3231016 + 1684500 -33.794939 -33.798764 0.0038247408 201.2927 0.47161129 + 1684600 -33.796832 -33.802089 0.0052567983 276.66061 0.58428395 + 1684700 -33.796429 -33.798778 0.002348553 123.60225 0.51546199 + 1684800 -33.79121 -33.801229 0.010019391 527.31161 0.54997401 + 1684900 -33.791242 -33.794806 0.0035641349 187.57724 0.15326578 + 1685000 -33.79273 -33.802086 0.0093564584 492.42206 0.018473998 + 1685100 -33.798051 -33.799341 0.0012899132 67.88698 -0.28882667 + 1685200 -33.796628 -33.803059 0.0064319499 338.50779 -0.22811413 + 1685300 -33.795916 -33.797101 0.0011853033 62.381455 -0.29363248 + 1685400 -33.790327 -33.802686 0.012358301 650.40637 0.063982791 + 1685500 -33.792235 -33.793606 0.001370715 72.139505 0.017731252 + 1685600 -33.793992 -33.803493 0.009501132 500.0361 0.35333816 + 1685700 -33.798649 -33.799061 0.00041158868 21.661545 0.22831991 + 1685800 -33.796451 -33.803649 0.0071978776 378.81788 0.37842374 + 1685900 -33.795779 -33.796064 0.00028489949 14.994006 0.20563992 + 1686000 -33.790422 -33.80379 0.013367651 703.52756 0.36642756 + 1686100 -33.793055 -33.793345 0.0002900254 15.263778 -0.043976403 + 1686200 -33.792949 -33.803829 0.010879568 572.58197 0.060294658 + 1686300 -33.799307 -33.799367 6.0634223e-05 3.1911251 -0.22300366 + 1686400 -33.798006 -33.80397 0.005963691 313.86374 -0.089761321 + 1686500 -33.797215 -33.797317 0.00010163065 5.3487305 -0.15153568 + 1686600 -33.791924 -33.803861 0.011936724 628.21916 0.21612089 + 1686700 -33.793059 -33.793434 0.0003744766 19.708369 0.14547729 + 1686800 -33.791365 -33.80373 0.012364453 650.73012 0.51386461 + 1686900 -33.798001 -33.798139 0.00013808677 7.2673835 0.3095394 + 1687000 -33.79773 -33.803698 0.0059684235 314.1128 0.41022112 + 1687100 -33.797594 -33.798218 0.00062432468 32.857651 0.20847599 + 1687200 -33.793755 -33.8034 0.0096450971 507.61286 0.23949133 + 1687300 -33.793857 -33.795185 0.0013279899 69.890923 -0.14174969 + 1687400 -33.791507 -33.802795 0.011287775 594.06551 -0.13667198 + 1687500 -33.794851 -33.796249 0.0013988401 73.619707 -0.44166578 + 1687600 -33.797557 -33.802981 0.005423853 285.45255 -0.37210695 + 1687700 -33.799061 -33.800175 0.0011134914 58.602062 -0.37671774 + 1687800 -33.796213 -33.802672 0.0064594412 339.95463 -0.063225176 + 1687900 -33.794016 -33.797364 0.0033481236 176.20876 0.20686258 + 1688000 -33.792152 -33.801266 0.0091139128 479.6571 0.67538068 + 1688100 -33.79397 -33.79736 0.0033905701 178.44268 0.81247622 + 1688200 -33.795008 -33.801147 0.006139381 323.11015 0.94399949 + 1688300 -33.798788 -33.800839 0.0020509678 107.94061 0.77128515 + 1688400 -33.798084 -33.801897 0.0038138147 200.71767 0.5997152 + 1688500 -33.794527 -33.79964 0.0051129341 269.08916 0.21478218 + 1688600 -33.793276 -33.800013 0.0067372498 354.57545 -0.32841665 + 1688700 -33.793803 -33.799554 0.0057506793 302.65312 -0.83116241 + 1688800 -33.794432 -33.799042 0.0046105087 242.64696 -1.1291208 + 1688900 -33.794305 -33.799821 0.0055155671 290.27937 -1.1132847 + 1689000 -33.793509 -33.798169 0.0046596501 245.23323 -0.84641719 + 1689100 -33.789548 -33.799496 0.0099481682 523.56322 -0.19363604 + 1689200 -33.791814 -33.797227 0.0054124207 284.85088 0.36459622 + 1689300 -33.796126 -33.801936 0.005810151 305.78306 0.7944595 + 1689400 -33.797087 -33.799421 0.0023347313 122.87482 0.89968622 + 1689500 -33.794291 -33.801613 0.0073224226 385.37257 1.0047476 + 1689600 -33.793558 -33.796331 0.0027724175 145.90986 0.72425426 + 1689700 -33.791505 -33.801748 0.010243954 539.13014 0.50479545 + 1689800 -33.793677 -33.796218 0.0025410528 133.73334 -0.069072085 + 1689900 -33.793443 -33.802462 0.0090183208 474.62618 -0.28804691 + 1690000 -33.796266 -33.797734 0.0014677411 77.245904 -0.66488563 + 1690100 -33.797898 -33.803372 0.0054738299 288.08279 -0.62319118 + 1690200 -33.799716 -33.800245 0.0005294146 27.862618 -0.62340294 + 1690300 -33.795521 -33.80333 0.0078087163 410.96578 -0.22261819 + 1690400 -33.793896 -33.79512 0.0012236756 64.400957 0.18521319 + 1690500 -33.791219 -33.803456 0.012236275 643.98425 0.99131524 + 1690600 -33.794962 -33.795434 0.00047196588 24.839143 1.120734 + 1690700 -33.795156 -33.803321 0.008164551 429.69304 1.3915761 + 1690800 -33.798174 -33.798396 0.00022242572 11.706067 1.0811559 + 1690900 -33.797474 -33.803737 0.0062627233 329.60154 0.87702252 + 1691000 -33.796652 -33.797506 0.00085357913 44.923108 0.2633173 + 1691100 -33.789845 -33.803841 0.01399567 736.57965 -0.32216102 + 1691200 -33.793099 -33.794299 0.0011999061 63.149985 -1.4610698 + 1691300 -33.793751 -33.802828 0.0090767161 477.69947 -1.7358712 + 1691400 -33.797113 -33.797249 0.00013602356 7.1587986 -1.9075754 + 1691500 -33.797448 -33.802959 0.0055110293 290.04055 -1.4323878 + 1691600 -33.799276 -33.800147 0.00087085621 45.832386 -0.96882018 + 1691700 -33.795965 -33.803631 0.0076662421 403.46748 -0.019411338 + 1691800 -33.793102 -33.797272 0.0041694621 219.43507 1.1632959 + 1691900 -33.792487 -33.802078 0.0095909811 504.76478 2.4399725 + 1692000 -33.795375 -33.796765 0.0013903289 73.171769 2.8410275 + 1692100 -33.793553 -33.800725 0.0071719217 377.45184 2.9335129 + 1692200 -33.788893 -33.792825 0.0039316862 206.92114 2.0983648 + 1692300 -33.787287 -33.800991 0.013703399 721.19768 0.84067392 + 1692400 -33.795213 -33.798189 0.0029761387 156.63152 -0.5304688 + 1692500 -33.795447 -33.802084 0.0066373938 349.32012 -1.1766632 + 1692600 -33.795698 -33.798827 0.0031292881 164.69164 -1.6686258 + 1692700 -33.791774 -33.800816 0.0090421364 475.87957 -1.6107196 + 1692800 -33.786683 -33.794287 0.0076042591 400.20537 -1.2937784 + 1692900 -33.790377 -33.79878 0.0084027635 442.22995 -0.69850611 + 1693000 -33.793936 -33.797905 0.0039684609 208.85656 -0.22100335 + 1693100 -33.79315 -33.799424 0.0062745854 330.22583 0.40607916 + 1693200 -33.792429 -33.798642 0.0062126061 326.96392 0.95507857 + 1693300 -33.793394 -33.799764 0.0063695875 335.22571 1.3442087 + 1693400 -33.797445 -33.801406 0.0039614075 208.48535 1.3493431 + 1693500 -33.798213 -33.80125 0.0030363632 159.80109 1.1287634 + 1693600 -33.794584 -33.800823 0.0062387575 328.34024 0.72467701 + 1693700 -33.790665 -33.796925 0.0062603066 329.47435 -0.23912077 + 1693800 -33.791484 -33.79969 0.0082064927 431.90039 -1.1974425 + 1693900 -33.793892 -33.796998 0.0031058104 163.45603 -1.8711968 + 1694000 -33.793996 -33.800557 0.006561792 345.34126 -1.9169751 + 1694100 -33.794734 -33.797869 0.0031343638 164.95877 -1.6670643 + 1694200 -33.792719 -33.8022 0.0094814339 498.99941 -0.83624761 + 1694300 -33.794857 -33.798329 0.0034720401 182.73037 -0.091069818 + 1694400 -33.796507 -33.802876 0.0063693476 335.21308 0.70301801 + 1694500 -33.798167 -33.799197 0.0010301688 54.216866 1.0653205 + 1694600 -33.793283 -33.802158 0.0088748139 467.07354 1.4916484 + 1694700 -33.791751 -33.792983 0.0012316936 64.822933 1.4437579 + 1694800 -33.78959 -33.802479 0.012888573 678.31408 1.5061077 + 1694900 -33.79474 -33.795957 0.0012177271 64.087889 0.8713994 + 1695000 -33.795422 -33.803598 0.0081765836 430.3263 0.59392996 + 1695100 -33.797048 -33.797873 0.00082441925 43.38845 -0.017037034 + 1695200 -33.79373 -33.80368 0.0099504709 523.68441 -0.33008841 + 1695300 -33.794584 -33.795333 0.00074941291 39.440933 -0.95973938 + 1695400 -33.792234 -33.803288 0.011053855 581.75453 -1.0301585 + 1695500 -33.794364 -33.794441 7.7407386e-05 4.0738817 -1.2772847 + 1695600 -33.791424 -33.803287 0.011862586 624.3173 -0.76045316 + 1695700 -33.794065 -33.794634 0.00056906631 29.949452 -0.53147857 + 1695800 -33.793888 -33.803802 0.0099147071 521.80219 0.17200818 + 1695900 -33.798149 -33.798516 0.00036726909 19.329044 0.3704459 + 1696000 -33.797212 -33.803861 0.0066489361 349.92758 0.726921 + 1696100 -33.794536 -33.795574 0.0010379927 54.628631 0.7445277 + 1696200 -33.788336 -33.80312 0.014783936 778.06535 1.0645399 + 1696300 -33.793047 -33.793746 0.00069888459 36.781673 0.63892018 + 1696400 -33.793491 -33.802746 0.0092554212 487.10456 0.61063151 + 1696500 -33.796366 -33.797217 0.00085115769 44.79567 0.21302111 + 1696600 -33.793625 -33.802997 0.0093713728 493.20699 0.11935876 + 1696700 -33.788627 -33.792661 0.0040339219 212.30171 -0.32383962 + 1696800 -33.788754 -33.802199 0.013445198 707.6088 -0.4591339 + 1696900 -33.795689 -33.797343 0.0016536184 87.02846 -0.82001232 + 1697000 -33.79479 -33.801994 0.007203821 379.13067 -0.61252899 + 1697100 -33.79412 -33.796565 0.0024453902 128.69871 -0.44065625 + 1697200 -33.787544 -33.800871 0.01332729 701.4034 0.27456337 + 1697300 -33.788469 -33.793431 0.0049626598 261.18036 0.7870288 + 1697400 -33.794617 -33.801694 0.0070765484 372.43243 1.1480567 + 1697500 -33.795918 -33.798878 0.0029602336 155.79445 1.1106685 + 1697600 -33.79399 -33.801129 0.0071393512 375.73769 1.0157719 + 1697700 -33.791468 -33.796802 0.0053336791 280.70677 0.5376442 + 1697800 -33.789726 -33.799107 0.009381636 493.74713 0.023571852 + 1697900 -33.79532 -33.799249 0.0039287703 206.76768 -0.58426975 + 1698000 -33.796759 -33.800997 0.0042382019 223.05279 -0.78738347 + 1698100 -33.795822 -33.800226 0.0044037232 231.76403 -0.77769099 + 1698200 -33.793716 -33.799461 0.0057450668 302.35774 -0.54195999 + 1698300 -33.791526 -33.799412 0.0078859101 415.02842 -0.11110444 + 1698400 -33.793207 -33.798497 0.0052900933 278.41289 0.27808037 + 1698500 -33.798552 -33.801935 0.0033836354 178.07771 0.4736834 + 1698600 -33.79859 -33.800624 0.0020340193 107.04862 0.52211604 + 1698700 -33.794234 -33.801303 0.0070693165 372.05182 0.60729111 + 1698800 -33.792469 -33.796845 0.0043755107 230.27923 0.39891395 + 1698900 -33.791519 -33.801369 0.0098493168 518.36076 0.26302043 + 1699000 -33.795675 -33.79817 0.0024941463 131.2647 -0.10752378 + 1699100 -33.797171 -33.802564 0.0053928265 283.81965 -0.17560768 + 1699200 -33.797484 -33.798758 0.0012736432 67.030707 -0.31252016 + 1699300 -33.787606 -33.802005 0.014398828 757.79748 -0.013297861 + 1699400 -33.7911 -33.793681 0.0025809851 135.83494 -0.19369532 + 1699500 -33.793851 -33.803143 0.0092915395 489.00544 0.04501921 + 1699600 -33.797026 -33.797779 0.00075231165 39.593491 -0.035555695 + 1699700 -33.794836 -33.803253 0.0084165868 442.95745 0.2039469 + 1699800 -33.792989 -33.79386 0.00087172739 45.878235 0.16571216 + 1699900 -33.786315 -33.803331 0.017015804 895.5266 0.61799178 + 1700000 -33.792647 -33.793384 0.00073631295 38.751494 0.32135412 + 1700100 -33.791868 -33.803473 0.011604884 610.75468 0.53789646 + 1700200 -33.794958 -33.79529 0.00033184506 17.46471 0.23173595 + 1700300 -33.79325 -33.803653 0.010403298 547.51632 0.31902105 + 1700400 -33.796193 -33.796461 0.00026813078 14.111484 -0.0038398061 + 1700500 -33.795839 -33.803915 0.0080763287 425.04998 0.050203475 + 1700600 -33.797779 -33.798077 0.00029757954 15.661346 -0.1777564 + 1700700 -33.793131 -33.803853 0.010722065 564.29274 0.01503994 + 1700800 -33.791317 -33.791943 0.00062582136 32.93642 -0.18622731 + 1700900 -33.788948 -33.803335 0.014386553 757.15147 0.1421758 + 1701000 -33.794618 -33.794874 0.00025654318 13.501639 -0.076713283 + 1701100 -33.79298 -33.803235 0.010255239 539.72409 0.19878859 + 1701200 -33.794781 -33.795634 0.00085317339 44.901755 0.08890824 + 1701300 -33.792432 -33.803527 0.011095153 583.92802 0.37020704 + 1701400 -33.795618 -33.796726 0.0011085097 58.339875 0.18864611 + 1701500 -33.796694 -33.803317 0.0066228161 348.5529 0.29825172 + 1701600 -33.798822 -33.799509 0.00068789673 36.203392 0.14519835 + 1701700 -33.795241 -33.80302 0.0077782004 409.35975 0.22089331 + 1701800 -33.792386 -33.794671 0.0022853907 120.27808 -0.0020757344 + 1701900 -33.790663 -33.801971 0.011308382 595.15008 0.051260188 + 1702000 -33.795206 -33.797337 0.0021308852 112.14659 -0.22707748 + 1702100 -33.795869 -33.802479 0.0066101618 347.88692 -0.13509181 + 1702200 -33.797712 -33.799574 0.0018617385 97.981636 -0.1972844 + 1702300 -33.796368 -33.802141 0.0057733461 303.84606 -0.033859162 + 1702400 -33.792601 -33.796905 0.0043036747 226.49856 0.1130482 + 1702500 -33.789253 -33.799683 0.01043058 548.9521 0.43752078 + 1702600 -33.792822 -33.797345 0.0045229516 238.03891 0.47577615 + 1702700 -33.795307 -33.801024 0.0057169132 300.87604 0.56121874 + 1702800 -33.796263 -33.80002 0.0037572269 197.7395 0.46154907 + 1702900 -33.795187 -33.800491 0.0053036412 279.12591 0.35725272 + 1703000 -33.7937 -33.799263 0.0055633333 292.79327 0.16195198 + 1703100 -33.792981 -33.798958 0.0059766239 314.54438 -0.089315459 + 1703200 -33.792935 -33.799531 0.0065964393 347.16472 -0.28191947 + 1703300 -33.796708 -33.800237 0.0035284607 185.69974 -0.44380595 + 1703400 -33.798431 -33.802094 0.0036624579 192.75189 -0.42721175 + 1703500 -33.79753 -33.800134 0.0026040715 137.04996 -0.30652761 + 1703600 -33.792423 -33.800959 0.0085367647 449.28231 0.12354461 + 1703700 -33.792464 -33.796462 0.0039981797 210.42063 0.39295285 + 1703800 -33.792472 -33.801309 0.0088375898 465.11447 0.81130931 + 1703900 -33.795707 -33.798087 0.0023795968 125.23606 0.82124856 + 1704000 -33.798613 -33.802956 0.0043425992 228.54712 0.80791668 + 1704100 -33.799287 -33.800314 0.0010265996 54.029022 0.57911977 + 1704200 -33.796608 -33.803089 0.006480813 341.07941 0.36448398 + 1704300 -33.795938 -33.797656 0.0017180704 90.420511 -0.22053842 + 1704400 -33.791743 -33.802795 0.011052235 581.66928 -0.56414983 + 1704500 -33.793007 -33.79432 0.0013135342 69.130135 -1.2206626 + 1704600 -33.792341 -33.802624 0.010283248 541.19817 -1.2385583 + 1704700 -33.797075 -33.797619 0.00054442459 28.652581 -1.3247054 + 1704800 -33.796178 -33.803317 0.0071385641 375.69626 -0.85474597 + 1704900 -33.795393 -33.796817 0.0014236204 74.923873 -0.3735485 + 1705000 -33.787677 -33.803739 0.016061714 845.3137 0.91551019 + 1705100 -33.793223 -33.794576 0.0013523053 71.170622 1.5294911 + 1705200 -33.794768 -33.802664 0.007895667 415.54191 2.0447796 + 1705300 -33.795971 -33.79607 9.9866355e-05 5.2558772 1.8367588 + 1705400 -33.791445 -33.803168 0.011722482 616.94379 1.5865452 + 1705500 -33.791806 -33.793763 0.0019568422 102.98686 0.49019164 + 1705600 -33.793088 -33.803804 0.010716133 563.98052 -0.27315993 + 1705700 -33.798073 -33.798533 0.0004598212 24.19998 -1.0333215 + 1705800 -33.796045 -33.803463 0.0074182341 390.41505 -1.1311723 + 1705900 -33.795598 -33.79611 0.00051215521 26.954272 -1.2700117 + 1706000 -33.791699 -33.803052 0.011353591 597.52938 -0.76450646 + 1706100 -33.793529 -33.794743 0.0012138752 63.88517 -0.41736584 + 1706200 -33.792016 -33.803147 0.011130454 585.78584 0.38308136 + 1706300 -33.795031 -33.79637 0.0013394252 70.492756 0.67939173 + 1706400 -33.793386 -33.802834 0.0094483668 497.25912 1.2005272 + 1706500 -33.794801 -33.796401 0.0015999629 84.20462 1.1545634 + 1706600 -33.792586 -33.802381 0.0097946452 515.48344 1.2041855 + 1706700 -33.793547 -33.795765 0.0022178087 116.72129 0.73370498 + 1706800 -33.791986 -33.801946 0.0099602744 524.20036 0.39706203 + 1706900 -33.795723 -33.79792 0.0021973273 115.64338 -0.2270155 + 1707000 -33.796071 -33.802297 0.006226074 327.67272 -0.44300458 + 1707100 -33.796801 -33.799194 0.0023935861 125.9723 -0.69899668 + 1707200 -33.792452 -33.801092 0.0086396474 454.69694 -0.58186895 + 1707300 -33.789358 -33.795243 0.00588525 309.73546 -0.4572061 + 1707400 -33.790822 -33.799778 0.0089565719 471.37639 -0.16008583 + 1707500 -33.794295 -33.798332 0.0040373514 212.4822 0.0049816369 + 1707600 -33.793937 -33.800242 0.0063051455 331.83418 0.31104113 + 1707700 -33.793793 -33.798921 0.0051281949 269.89232 0.47870534 + 1707800 -33.793278 -33.7997 0.0064220617 337.98738 0.64615935 + 1707900 -33.79493 -33.800017 0.0050873242 267.74134 0.64655294 + 1708000 -33.796765 -33.800604 0.0038387228 202.02856 0.51675995 + 1708100 -33.796791 -33.801203 0.0044118827 232.19345 0.37857599 + 1708200 -33.794649 -33.798824 0.0041754636 219.75093 0.12710406 + 1708300 -33.789376 -33.799284 0.0099080445 521.45154 -0.1677 + 1708400 -33.791356 -33.796563 0.0052068888 274.03392 -0.60978306 + 1708500 -33.793016 -33.800846 0.0078298304 412.07699 -0.72825095 + 1708600 -33.794479 -33.797708 0.0032284795 169.912 -0.80202086 + 1708700 -33.793351 -33.801487 0.0081360891 428.19511 -0.47530818 + 1708800 -33.79429 -33.797252 0.002961561 155.86431 -0.24355455 + 1708900 -33.793279 -33.802064 0.0087847287 462.33243 0.2739649 + 1709000 -33.796288 -33.798175 0.0018864708 99.283274 0.47096186 + 1709100 -33.796201 -33.802857 0.0066554321 350.26946 0.74253049 + 1709200 -33.796403 -33.797722 0.001319186 69.427581 0.68109516 + 1709300 -33.78961 -33.802346 0.012736138 670.29158 0.83304228 + 1709400 -33.790791 -33.792728 0.0019365897 101.92099 0.33837997 + 1709500 -33.792013 -33.803004 0.010990734 578.43251 0.23720337 + 1709600 -33.795756 -33.796582 0.00082595839 43.469453 -0.18256148 + 1709700 -33.793465 -33.803285 0.0098203058 516.83393 -0.16926116 + 1709800 -33.794579 -33.795361 0.00078122794 41.11533 -0.43014908 + 1709900 -33.790851 -33.803592 0.012740479 670.52003 -0.17863657 + 1710000 -33.793895 -33.794531 0.0006362857 33.487149 -0.3531037 + 1710100 -33.795092 -33.803674 0.0085819687 451.66136 -0.044231824 + 1710200 -33.798103 -33.798214 0.00011049543 5.8152757 -0.080935025 + 1710300 -33.794745 -33.8038 0.0090550777 476.56066 0.24730228 + 1710400 -33.791128 -33.79174 0.00061218219 32.218603 0.3240504 + 1710500 -33.788574 -33.803855 0.015280744 804.21191 0.82928303 + 1710600 -33.794842 -33.795091 0.00024897136 13.103141 0.59500789 + 1710700 -33.794123 -33.803706 0.0095830487 504.34731 0.75187687 + 1710800 -33.795988 -33.79613 0.00014194483 7.4704298 0.38526435 + 1710900 -33.789556 -33.803685 0.014128421 743.56621 0.40434618 + 1711000 -33.786492 -33.787637 0.0011445803 60.238242 -0.30302157 + 1711100 -33.788543 -33.803493 0.014949582 786.78317 -0.46031244 + 1711200 -33.794868 -33.795351 0.00048319327 25.430031 -0.89667194 + 1711300 -33.793806 -33.803379 0.0095726696 503.80106 -0.63613383 + 1711400 -33.795879 -33.796639 0.00076039194 40.01875 -0.61931927 + 1711500 -33.792534 -33.803208 0.010674351 561.78158 -0.045402168 + 1711600 -33.790378 -33.792365 0.0019866805 104.55722 0.31919035 + 1711700 -33.787918 -33.802373 0.014455207 760.76468 1.1031788 + 1711800 -33.795833 -33.797084 0.0012512698 65.853215 1.1192237 + 1711900 -33.795042 -33.802741 0.0076986446 405.1728 1.2434325 + 1712000 -33.795293 -33.79718 0.0018866671 99.293605 0.85396823 + 1712100 -33.791714 -33.802121 0.010407328 547.72837 0.57583449 + 1712200 -33.787729 -33.792463 0.0047340305 249.1478 -0.24656946 + 1712300 -33.783342 -33.799722 0.016380142 862.07228 -0.89488157 + 1712400 -33.793911 -33.796658 0.0027474752 144.59717 -1.607631 + 1712500 -33.794092 -33.801385 0.007292904 383.81903 -1.5119783 + 1712600 -33.795146 -33.798367 0.0032205798 169.49624 -1.2663918 + 1712700 -33.793472 -33.801075 0.0076029645 400.13724 -0.52878095 + 1712800 -33.791119 -33.79702 0.0059008878 310.55846 0.31259632 + 1712900 -33.789775 -33.799296 0.0095215304 501.10965 1.3469696 + 1713000 -33.795252 -33.799111 0.0038591919 203.10583 1.8375632 + 1713100 -33.796243 -33.800632 0.0043886289 230.96963 1.923799 + 1713200 -33.795184 -33.799805 0.0046213884 243.21955 1.6206683 + 1713300 -33.791876 -33.798986 0.0071098047 374.18268 0.93893512 + 1713400 -33.782938 -33.796146 0.013208255 695.13868 -0.30979691 + 1713500 -33.789731 -33.797064 0.007333412 385.95093 -1.7834527 + 1713600 -33.794895 -33.800112 0.0052163777 274.53331 -2.2623722 + 1713700 -33.795552 -33.798921 0.0033698124 177.35022 -2.2073255 + 1713800 -33.79288 -33.800568 0.0076882827 404.62746 -1.4750599 + 1713900 -33.791239 -33.796941 0.005702599 300.1227 -0.35790281 + 1714000 -33.792807 -33.801538 0.0087308779 459.49832 0.98136215 + 1714100 -33.797328 -33.79942 0.0020918927 110.09445 1.5856938 + 1714200 -33.79632 -33.80203 0.0057101734 300.52133 1.9215038 + 1714300 -33.79549 -33.797413 0.0019236028 101.2375 1.7162101 + 1714400 -33.791671 -33.802045 0.010374367 545.99366 1.3743384 + 1714500 -33.793473 -33.796073 0.0025996783 136.81875 0.38473844 + 1714600 -33.79305 -33.802775 0.0097243093 511.78173 -0.31195129 + 1714700 -33.79569 -33.797089 0.0013984696 73.600207 -1.0905022 + 1714800 -33.795677 -33.803082 0.007405525 389.74617 -1.3161798 + 1714900 -33.798674 -33.79917 0.00049515232 26.059425 -1.4607388 + 1715000 -33.797044 -33.803447 0.0064022591 336.94519 -1.0205775 + 1715100 -33.794985 -33.79616 0.0011746374 61.820117 -0.44600831 + 1715200 -33.790172 -33.803672 0.013499328 710.4576 0.89974297 + 1715300 -33.794029 -33.794793 0.00076337815 40.175911 1.6261181 + 1715400 -33.79384 -33.803152 0.0093122087 490.09324 2.2787202 + 1715500 -33.797457 -33.797603 0.00014562546 7.6641383 2.1139708 + 1715600 -33.798711 -33.803445 0.0047345486 249.17507 1.886353 + 1715700 -33.799016 -33.799732 0.00071674314 37.721552 1.1499802 + 1715800 -33.793784 -33.803977 0.010192802 536.43808 0.1591645 + 1715900 -33.794493 -33.796637 0.0021438115 112.82689 -1.5562548 + 1716000 -33.793198 -33.802521 0.009322828 490.65212 -2.6458314 + 1716100 -33.79458 -33.794939 0.00035834323 18.859285 -3.4093826 + 1716200 -33.787043 -33.801739 0.014695784 773.42602 -2.9833892 + 1716300 -33.787828 -33.790087 0.0022587624 118.87665 -2.2724497 + 1716400 -33.790506 -33.803025 0.012519464 658.88822 -0.83844125 + 1716500 -33.795372 -33.79703 0.0016581002 87.264336 -0.011062763 + 1716600 -33.794697 -33.803189 0.0084918804 446.92009 1.0126408 + 1716700 -33.796125 -33.797502 0.0013770381 72.472286 1.5368798 + 1716800 -33.791559 -33.802165 0.010605513 558.15868 2.1050904 + 1716900 -33.788503 -33.79134 0.0028374276 149.33129 2.0445241 + 1717000 -33.78853 -33.801279 0.012748544 670.94452 1.9796995 + 1717100 -33.794578 -33.796814 0.0022357645 117.66629 1.2366304 + 1717200 -33.793645 -33.802148 0.0085033493 447.52369 0.71760401 + 1717300 -33.79493 -33.797848 0.0029186932 153.60822 -0.12737956 + 1717400 -33.793853 -33.801783 0.0079306635 417.38375 -0.73503932 + 1717500 -33.795052 -33.798125 0.0030738089 161.77182 -1.3167132 + 1717600 -33.794097 -33.800972 0.0068753193 361.84192 -1.4232161 + 1717700 -33.793172 -33.797538 0.0043656668 229.76115 -1.3558038 + 1717800 -33.790543 -33.799548 0.0090049861 473.92439 -0.76001955 + 1717900 -33.791891 -33.797548 0.0056572599 297.73654 -0.11182708 + 1718000 -33.795494 -33.800762 0.0052677289 277.23587 0.42562506 + 1718100 -33.796971 -33.800698 0.0037277056 196.18582 0.74543086 + 1718200 -33.795821 -33.800325 0.0045044673 237.0661 0.94370815 + 1718300 -33.791956 -33.799036 0.0070797466 372.60075 1.0178779 + 1718400 -33.791221 -33.797567 0.0063456018 333.96336 0.87085706 + 1718500 -33.791988 -33.799641 0.0076528728 402.76387 0.57508221 + 1718600 -33.793822 -33.798337 0.004515007 237.62079 0.14974848 + 1718700 -33.795233 -33.801191 0.0059580118 313.56485 -0.1050628 + 1718800 -33.796623 -33.799451 0.0028281912 148.84518 -0.39639344 + 1718900 -33.796 -33.801999 0.0059984366 315.69237 -0.42932923 + 1719000 -33.79478 -33.797696 0.0029166146 153.49882 -0.45549175 + 1719100 -33.788768 -33.800922 0.01215351 639.62839 -0.134118 + 1719200 -33.791448 -33.794947 0.0034988347 184.14055 -0.057752984 + 1719300 -33.795044 -33.802378 0.0073334528 385.95308 0.22849546 + 1719400 -33.7968 -33.798196 0.0013964122 73.491928 0.21738719 + 1719500 -33.794136 -33.80263 0.0084938161 447.02196 0.47168349 + 1719600 -33.794104 -33.795938 0.0018345255 96.549443 0.39473587 + 1719700 -33.79015 -33.802811 0.012661961 666.38773 0.56888434 + 1719800 -33.794084 -33.795551 0.0014670186 77.207883 0.26672244 + 1719900 -33.796239 -33.803346 0.0071078151 374.07797 0.27865489 + 1720000 -33.797849 -33.798273 0.00042385074 22.306886 0.026143118 + 1720100 -33.792671 -33.803359 0.010687991 562.49941 0.13691845 + 1720200 -33.791665 -33.792551 0.00088601985 46.630434 -0.21945848 + 1720300 -33.789941 -33.803723 0.013782209 725.34535 -0.090255813 + 1720400 -33.794571 -33.794994 0.00042320782 22.27305 -0.37566476 + 1720500 -33.793271 -33.803672 0.010401703 547.43234 -0.13501426 + 1720600 -33.795518 -33.795624 0.00010604408 5.5810053 -0.24163643 + 1720700 -33.791098 -33.803783 0.012684637 667.58115 0.2134564 + 1720800 -33.789356 -33.789915 0.00055848946 29.392802 0.20567543 + 1720900 -33.788399 -33.803805 0.015406213 810.81523 0.7301544 + 1721000 -33.795828 -33.795949 0.00012072247 6.353516 0.51670868 + 1721100 -33.794508 -33.803779 0.0092709532 487.922 0.65982482 + 1721200 -33.795547 -33.795841 0.00029426641 15.486979 0.34467331 + 1721300 -33.787981 -33.803679 0.015697939 826.16851 0.43079254 + 1721400 -33.787344 -33.788397 0.0010524991 55.392088 -0.28372019 + 1721500 -33.79041 -33.803424 0.013014244 684.92806 -0.33606622 + 1721600 -33.794883 -33.795397 0.00051418555 27.061127 -0.6760406 + 1721700 -33.7931 -33.803242 0.010142024 533.76567 -0.44577631 + 1721800 -33.795127 -33.79604 0.00091308633 48.054919 -0.4448436 + 1721900 -33.792842 -33.803172 0.01032998 543.65766 0.028874584 + 1722000 -33.794402 -33.795884 0.001482224 78.008125 0.14166524 + 1722100 -33.792833 -33.802798 0.0099651644 524.45772 0.6043379 + 1722200 -33.795912 -33.797352 0.0014394587 75.75743 0.59656893 + 1722300 -33.795595 -33.802698 0.0071033304 373.84194 0.72908518 + 1722400 -33.796752 -33.798432 0.0016801887 88.426832 0.53655145 + 1722500 -33.792718 -33.801978 0.0092603137 487.36205 0.46386982 + 1722600 -33.789741 -33.794092 0.0043513254 229.00638 -0.053742403 + 1722700 -33.790159 -33.800862 0.010702842 563.28103 -0.31186357 + 1722800 -33.795446 -33.79829 0.0028438858 149.67117 -0.69276042 + 1722900 -33.794666 -33.801396 0.0067306799 354.22968 -0.6368514 + 1723000 -33.794259 -33.798183 0.0039239819 206.51567 -0.53554268 + 1723100 -33.79211 -33.800171 0.00806085 424.23534 -0.16823458 + 1723200 -33.789911 -33.796382 0.0064709201 340.55875 0.22029598 + 1723300 -33.790091 -33.79885 0.0087590301 460.97994 0.70276892 + 1723400 -33.795712 -33.79987 0.0041574644 218.80364 0.80533508 + 1723500 -33.796401 -33.800723 0.0043218881 227.45712 0.83781394 + 1723600 -33.794821 -33.800047 0.0052261438 275.04729 0.72233256 + 1723700 -33.790245 -33.797393 0.0071477925 376.18194 0.39355919 + 1723800 -33.787561 -33.79783 0.010269641 540.48203 -0.10103487 + 1723900 -33.790935 -33.797062 0.0061272848 322.47353 -0.63335998 + 1724000 -33.793067 -33.800131 0.0070637821 371.76055 -0.85059257 + 1724100 -33.794974 -33.798663 0.0036883934 194.11686 -0.88887331 + 1724200 -33.795415 -33.80153 0.0061155474 321.85581 -0.64287782 + 1724300 -33.796452 -33.799194 0.0027413165 144.27304 -0.39420629 + 1724400 -33.794495 -33.801925 0.0074297049 391.01874 0.14471964 + 1724500 -33.793061 -33.796401 0.0033397605 175.76862 0.56915271 + 1724600 -33.788774 -33.801006 0.012232322 643.77621 1.2776555 + 1724700 -33.792993 -33.79564 0.0026467971 139.29857 1.4238042 + 1724800 -33.795915 -33.802438 0.0065229234 343.29564 1.470284 + 1724900 -33.796855 -33.798283 0.00142753 75.129631 1.0818164 + 1725000 -33.793499 -33.802824 0.0093253659 490.78569 0.71231596 + 1725100 -33.793833 -33.79602 0.0021865746 115.07747 -0.21571381 + 1725200 -33.792293 -33.80302 0.010727426 564.57485 -0.78750029 + 1725300 -33.79844 -33.798986 0.00054536725 28.702192 -1.3839876 + 1725400 -33.797937 -33.803266 0.005329519 280.48783 -1.2884614 + 1725500 -33.796871 -33.797449 0.00057860544 30.451488 -1.0280011 + 1725600 -33.791359 -33.803763 0.012404325 652.82855 0.032265499 + 1725700 -33.793657 -33.794897 0.0012400549 65.262984 0.74058817 + 1725800 -33.793617 -33.803515 0.0098975609 520.8998 1.6368115 + 1725900 -33.798079 -33.798159 7.9821612e-05 4.2009403 1.7261162 + 1726000 -33.798911 -33.803428 0.0045166901 237.70937 1.692034 + 1726100 -33.799106 -33.799607 0.00050085641 26.359626 1.1920398 + 1726200 -33.791261 -33.803891 0.012630767 664.74601 0.35801954 + 1726300 -33.793918 -33.795874 0.0019563823 102.96265 -1.3053805 + 1726400 -33.794431 -33.802843 0.0084118241 442.7068 -2.1055871 + 1726500 -33.796737 -33.797025 0.00028740551 15.125895 -2.5978443 + 1726600 -33.792459 -33.802531 0.010072111 530.08622 -2.1669237 + 1726700 -33.789524 -33.792417 0.0028921775 152.21272 -1.2593704 + 1726800 -33.789854 -33.803066 0.01321167 695.31842 0.27280339 + 1726900 -33.795162 -33.796827 0.0016646502 87.609057 1.0121264 + 1727000 -33.794158 -33.802642 0.008484046 446.50777 1.8280839 + 1727100 -33.79491 -33.796411 0.0015014842 79.021774 1.9661534 + 1727200 -33.788787 -33.8017 0.012912964 679.59775 2.0641565 + 1727300 -33.786776 -33.790495 0.0037182183 195.68651 1.2750318 + 1727400 -33.789655 -33.801747 0.012091928 636.38739 0.63655058 + 1727500 -33.794269 -33.796836 0.002566793 135.08802 -0.20498713 + 1727600 -33.794024 -33.802009 0.0079846829 420.22674 -0.56648521 + 1727700 -33.795933 -33.798358 0.002424741 127.61195 -1.0054266 + 1727800 -33.794801 -33.801693 0.0068923436 362.73789 -0.98231309 + 1727900 -33.792319 -33.796761 0.0044419271 233.77466 -0.83543242 + 1728000 -33.788332 -33.799459 0.011127239 585.61668 -0.28102361 + 1728100 -33.792871 -33.797418 0.0045477657 239.34485 0.14410209 + 1728200 -33.795474 -33.801015 0.005540112 291.57115 0.51704338 + 1728300 -33.795785 -33.799702 0.0039167092 206.13291 0.66014337 + 1728400 -33.794291 -33.800112 0.0058208448 306.34587 0.80361549 + 1728500 -33.791428 -33.798341 0.0069127036 363.80943 0.77217708 + 1728600 -33.788473 -33.797234 0.0087608049 461.07335 0.56059586 + 1728700 -33.789396 -33.797783 0.0083862573 441.36124 0.24184589 + 1728800 -33.79415 -33.798956 0.0048062313 252.94766 -0.11149832 + 1728900 -33.795523 -33.800726 0.0052033037 273.84523 -0.26549477 + 1729000 -33.795368 -33.79919 0.0038218996 201.14317 -0.32349962 + 1729100 -33.789814 -33.799824 0.010009916 526.81296 -0.18695454 + 1729200 -33.787196 -33.794325 0.0071288884 375.18704 -0.1345314 + 1729300 -33.793606 -33.801249 0.0076431429 402.25179 0.05874956 + 1729400 -33.795884 -33.798357 0.0024731114 130.15765 0.042009302 + 1729500 -33.79371 -33.80147 0.0077600283 408.40337 0.26091613 + 1729600 -33.792762 -33.795894 0.0031321248 164.84094 0.32782889 + 1729700 -33.788682 -33.801553 0.012871186 677.39904 0.5873439 + 1729800 -33.794878 -33.79729 0.00241264 126.97509 0.39293708 + 1729900 -33.796539 -33.80292 0.0063811363 335.83351 0.45071551 + 1730000 -33.796988 -33.798048 0.0010596128 55.766478 0.2011151 + 1730100 -33.791485 -33.802664 0.011178588 588.31912 0.24170492 + 1730200 -33.791843 -33.793364 0.0015208339 80.040129 -0.17443907 + 1730300 -33.79047 -33.803066 0.012595501 662.89 -0.1996194 + 1730400 -33.794149 -33.795135 0.00098608187 51.896609 -0.50842403 + 1730500 -33.793423 -33.803482 0.010058994 529.3959 -0.2920241 + 1730600 -33.796354 -33.796808 0.00045376253 23.881117 -0.40783133 + 1730700 -33.796668 -33.803756 0.0070878396 373.02668 -0.072067917 + 1730800 -33.799151 -33.799323 0.00017205923 9.0553237 -0.046778984 + 1730900 -33.795984 -33.803885 0.0079016155 415.85497 0.26852797 + 1731000 -33.793745 -33.794216 0.00047126414 24.802211 0.40290295 + 1731100 -33.790159 -33.803822 0.01366392 719.11991 0.88707096 + 1731200 -33.794519 -33.794688 0.00016893282 8.8907836 0.67869311 + 1731300 -33.794753 -33.803587 0.008833865 464.91843 0.84318885 + 1731400 -33.79911 -33.799183 7.2534623e-05 3.8174325 0.49575447 + 1731500 -33.799404 -33.803749 0.0043449746 228.67214 0.39712827 + 1731600 -33.798015 -33.798979 0.0009644555 50.758433 0.10636514 + 1731700 -33.792096 -33.803574 0.011478343 604.09497 -0.18276344 + 1731800 -33.793742 -33.795581 0.0018387167 96.770022 -0.88343808 + 1731900 -33.793164 -33.80231 0.0091458089 481.33576 -0.99812333 + 1732000 -33.795735 -33.79661 0.00087545812 46.07458 -1.2027274 + 1732100 -33.793349 -33.802085 0.0087358773 459.76143 -0.78087003 + 1732200 -33.790139 -33.793917 0.0037774321 198.80288 -0.29521999 + 1732300 -33.788123 -33.801989 0.013866579 729.78568 0.66552609 + 1732400 -33.796286 -33.798393 0.0021069017 110.88436 0.92273063 + 1732500 -33.79547 -33.802217 0.0067471166 355.09473 1.2134703 + 1732600 -33.794683 -33.797322 0.0026383838 138.85578 1.0661203 + 1732700 -33.790466 -33.800695 0.01022929 538.35839 0.94182831 + 1732800 -33.789357 -33.794275 0.0049186156 258.86235 0.27892461 + 1732900 -33.793723 -33.801058 0.0073345788 386.01234 -0.20486851 + 1733000 -33.797106 -33.799861 0.0027547707 144.98112 -0.51797468 + 1733100 -33.795807 -33.801422 0.0056150619 295.5157 -0.57547499 + 1733200 -33.792004 -33.798043 0.0060391667 317.83596 -0.54765463 + 1733300 -33.789671 -33.798666 0.0089951966 473.40917 -0.27671704 + 1733400 -33.795161 -33.799557 0.0043958686 231.35064 -0.14685922 + 1733500 -33.797249 -33.800679 0.0034300473 180.52033 0.0048455313 + 1733600 -33.795786 -33.800477 0.0046910331 246.88489 0.22680457 + 1733700 -33.793358 -33.798806 0.0054480116 286.72399 0.42523708 + 1733800 -33.790925 -33.799893 0.0089676901 471.96153 0.66962059 + 1733900 -33.793942 -33.798481 0.0045387947 238.87272 0.65374533 + 1734000 -33.798036 -33.802041 0.0040049246 210.77561 0.5630925 + 1734100 -33.798159 -33.800068 0.0019087101 100.45371 0.38715827 + 1734200 -33.794567 -33.801728 0.0071614346 376.89991 0.24348937 + 1734300 -33.793106 -33.796722 0.0036159183 190.30256 -0.2459511 + 1734400 -33.791272 -33.801762 0.01048993 552.07564 -0.47561243 + 1734500 -33.795227 -33.797407 0.0021800686 114.73507 -0.85962809 + 1734600 -33.797998 -33.802821 0.0048229337 253.8267 -0.82085795 + 1734700 -33.798535 -33.799436 0.00090129204 47.434196 -0.68599475 + 1734800 -33.795168 -33.803116 0.0079478738 418.28951 -0.13952074 + 1734900 -33.794489 -33.796589 0.0020992288 110.48054 0.30972377 + 1735000 -33.791583 -33.803124 0.011541912 607.44056 1.1528196 + 1735100 -33.795107 -33.796046 0.00093962076 49.451402 1.3256813 + 1735200 -33.797447 -33.802889 0.0054422459 286.42055 1.4665583 + 1735300 -33.798443 -33.798816 0.00037348966 19.656428 1.1734457 + 1735400 -33.793714 -33.803556 0.0098417009 517.95994 0.7936257 + 1735500 -33.79399 -33.796203 0.0022129263 116.46434 -0.26081306 + 1735600 -33.793057 -33.803625 0.010568 556.18441 -0.88216274 + 1735700 -33.796054 -33.796597 0.00054350621 28.604247 -1.630757 + 1735800 -33.793672 -33.802695 0.00902299 474.87191 -1.596291 + 1735900 -33.790533 -33.790965 0.00043200756 22.736173 -1.4391265 + 1736000 -33.785565 -33.803184 0.017618338 927.23742 -0.37165814 + 1736100 -33.794219 -33.795094 0.00087530471 46.066506 0.047963083 + 1736200 -33.794009 -33.803677 0.0096677124 508.80308 0.76590593 + 1736300 -33.796057 -33.79691 0.00085270299 44.876998 0.8988221 + 1736400 -33.793083 -33.803407 0.010323757 543.33012 1.2804008 + 1736500 -33.789865 -33.791635 0.0017699032 93.148426 1.066703 + 1736600 -33.784013 -33.80209 0.018076848 951.36838 1.0308274 + 1736700 -33.793468 -33.794399 0.00093058876 48.976056 0.32129056 + 1736800 -33.792705 -33.802416 0.009711085 511.08574 0.1785659 + 1736900 -33.794622 -33.796369 0.0017473872 91.963432 -0.30263911 + 1737000 -33.793208 -33.802728 0.0095200099 501.02963 -0.32542863 + 1737100 -33.796793 -33.798586 0.0017930881 94.368629 -0.59318072 + 1737200 -33.797729 -33.80295 0.0052212597 274.79024 -0.50285448 + 1737300 -33.798248 -33.799871 0.0016229975 85.416909 -0.4026137 + 1737400 -33.793188 -33.801543 0.00835514 439.72357 0.046802253 + 1737500 -33.791898 -33.795992 0.0040945043 215.49011 0.45577399 + 1737600 -33.791649 -33.80046 0.0088105933 463.69367 1.0244882 + 1737700 -33.795454 -33.798591 0.003137091 165.1023 1.0757333 + 1737800 -33.796621 -33.801508 0.004887247 257.21145 1.0781342 + 1737900 -33.799129 -33.801363 0.0022334968 117.54694 0.84263982 + 1738000 -33.800141 -33.802543 0.0024022098 126.42616 0.54164558 + 1738100 -33.798846 -33.801844 0.0029972669 157.74349 0.19813288 + 1738200 -33.795566 -33.800366 0.0047995116 252.59402 -0.37952958 + 1738300 -33.793127 -33.799956 0.0068291956 359.41447 -1.14022 + 1738400 -33.792593 -33.797514 0.0049210488 258.99041 -1.7425518 + 1738500 -33.791037 -33.798944 0.0079074903 416.16416 -1.9069841 + 1738600 -33.792056 -33.796425 0.0043689559 229.93425 -1.8325442 + 1738700 -33.79444 -33.80114 0.0067001238 352.62154 -1.236226 + 1738800 -33.796956 -33.799594 0.002637685 138.81901 -0.70712838 + 1738900 -33.796405 -33.802566 0.0061604271 324.21778 0.0075651937 + 1739000 -33.793938 -33.79768 0.0037414307 196.90816 0.78423331 + 1739100 -33.787396 -33.801194 0.013797644 726.15772 2.0364962 + 1739200 -33.792731 -33.795242 0.0025111058 132.15726 2.4450474 + 1739300 -33.793156 -33.800894 0.0077375877 407.22234 2.6588933 + 1739400 -33.794073 -33.795783 0.0017102637 90.009655 2.076157 + 1739500 -33.791485 -33.802199 0.010713963 563.86633 1.3446935 + 1739600 -33.794024 -33.796806 0.002781515 146.38865 0.10332544 + 1739700 -33.794657 -33.803373 0.0087157474 458.70201 -0.76420837 + 1739800 -33.796845 -33.798123 0.0012780445 67.262341 -1.5525874 + 1739900 -33.794755 -33.803006 0.00825079 434.23172 -1.6755801 + 1740000 -33.794827 -33.795551 0.0007248264 38.146967 -1.772835 + 1740100 -33.789291 -33.802806 0.013514442 711.253 -0.96858658 + 1740200 -33.791392 -33.792407 0.0010147603 53.405932 -0.29861271 + 1740300 -33.793202 -33.803089 0.0098872832 520.3589 0.66059379 + 1740400 -33.797225 -33.797643 0.00041894379 22.048638 0.9378226 + 1740500 -33.794891 -33.803516 0.0086248863 453.92007 1.3412156 + 1740600 -33.79517 -33.796595 0.001424394 74.964587 1.1491987 + 1740700 -33.792548 -33.803701 0.011152857 586.96494 1.1094845 + 1740800 -33.794992 -33.796117 0.0011257239 59.245844 0.46259674 + 1740900 -33.793016 -33.802924 0.0099084699 521.47393 0.085769093 + 1741000 -33.794424 -33.794953 0.00052846456 27.812618 -0.59271703 + 1741100 -33.790699 -33.802428 0.011728895 617.2813 -0.79084646 + 1741200 -33.789347 -33.791299 0.001951712 102.71686 -1.288028 + 1741300 -33.785675 -33.802654 0.016978599 893.56852 -0.97557104 + 1741400 -33.795515 -33.796811 0.001296652 68.241639 -1.1509644 + 1741500 -33.795112 -33.803148 0.0080359474 422.92474 -0.69191787 + 1741600 -33.795992 -33.797529 0.0015374681 80.915577 -0.31031395 + 1741700 -33.791332 -33.802437 0.011104667 584.42873 0.50577646 + 1741800 -33.788166 -33.791609 0.0034429207 181.19785 1.2030662 + 1741900 -33.789252 -33.800839 0.011587193 609.82363 2.0782031 + 1742000 -33.795872 -33.797637 0.0017646989 92.874528 1.9492217 + 1742100 -33.79425 -33.801881 0.0076312231 401.62447 1.7789331 + 1742200 -33.793352 -33.797301 0.0039491661 207.84109 1.0262459 + 1742300 -33.791451 -33.801486 0.01003489 528.12729 0.11264121 + 1742400 -33.79638 -33.799251 0.0028714555 151.12214 -0.87861454 + 1742500 -33.797515 -33.801777 0.0042617762 224.29348 -1.2632023 + 1742600 -33.796612 -33.799571 0.0029593814 155.7496 -1.4193131 + 1742700 -33.792738 -33.799753 0.0070147312 369.17905 -1.0496289 + 1742800 -33.792228 -33.798401 0.0061731223 324.88592 -0.49163389 + 1742900 -33.793363 -33.799825 0.0064617866 340.07807 0.12930364 + 1743000 -33.795999 -33.800569 0.0045696003 240.49399 0.64723725 + 1743100 -33.796944 -33.800574 0.0036300763 191.04768 0.92385825 + 1743200 -33.795642 -33.800747 0.0051051782 268.68097 1.0451554 + 1743300 -33.792012 -33.797176 0.0051639771 271.77551 0.99682667 + 1743400 -33.788958 -33.799059 0.010100997 531.60644 0.72642748 + 1743500 -33.792832 -33.797494 0.0046616918 245.34068 0.19698034 + 1743600 -33.795276 -33.801624 0.0063481534 334.09765 -0.042029413 + 1743700 -33.795936 -33.79874 0.0028036702 147.55466 -0.37416327 + 1743800 -33.793701 -33.801697 0.0079959991 420.8223 -0.41195404 + 1743900 -33.793841 -33.796721 0.0028802671 151.58589 -0.5231121 + 1744000 -33.790512 -33.80148 0.010968245 577.24896 -0.30786607 + 1744100 -33.791098 -33.794064 0.002965398 156.06625 -0.23850707 + 1744200 -33.791991 -33.802188 0.010196983 536.65813 0.19164542 + 1744300 -33.796169 -33.797705 0.001536293 80.853731 0.17516847 + 1744400 -33.79574 -33.803053 0.007313528 384.90446 0.44643403 + 1744500 -33.79591 -33.797056 0.001146658 60.347585 0.39725709 + 1744600 -33.786533 -33.80265 0.016117017 848.22424 0.68500846 + 1744700 -33.790284 -33.792085 0.001800265 94.746342 0.36002601 + 1744800 -33.791475 -33.803069 0.011594565 610.2116 0.44139145 + 1744900 -33.794801 -33.795416 0.00061411356 32.320249 0.066384382 + 1745000 -33.792982 -33.803335 0.010352742 544.85556 0.18055697 + 1745100 -33.79506 -33.795614 0.0005539137 29.151984 -0.14010843 + 1745200 -33.793032 -33.803759 0.010727068 564.55602 -0.015308671 + 1745300 -33.795805 -33.796263 0.00045842949 24.126735 -0.21046373 + 1745400 -33.794205 -33.803916 0.0097103714 511.04818 -0.014189949 + 1745500 -33.795869 -33.796057 0.00018778215 9.882807 -0.14227182 + 1745600 -33.790713 -33.803715 0.013001584 684.26175 0.26976471 + 1745700 -33.790264 -33.79034 7.6119361e-05 4.0060941 0.12523074 + 1745800 -33.788949 -33.803676 0.01472657 775.04627 0.57451127 + 1745900 -33.796633 -33.796725 9.2236313e-05 4.8543149 0.33751676 + 1746000 -33.794845 -33.803815 0.00896988 472.07678 0.46103099 + 1746100 -33.795237 -33.795827 0.00059002927 31.052714 0.2093381 + 1746200 -33.789303 -33.803765 0.014461566 761.09931 0.3481928 + 1746300 -33.788327 -33.789674 0.0013470597 70.894549 -0.19099719 + 1746400 -33.789518 -33.802905 0.01338614 704.50062 -0.11390947 + 1746500 -33.796165 -33.796608 0.00044292253 23.310618 -0.43839013 + 1746600 -33.794522 -33.803045 0.0085229965 448.5577 -0.25686965 + 1746700 -33.794125 -33.795686 0.0015612811 82.168832 -0.226442 + 1746800 -33.78735 -33.802813 0.015462986 813.80317 0.30332372 + 1746900 -33.791584 -33.793949 0.0023650327 124.46956 0.29053848 + 1747000 -33.795165 -33.802701 0.0075361046 396.61846 0.5594726 + 1747100 -33.796586 -33.797995 0.0014089181 74.150105 0.44392552 + 1747200 -33.793293 -33.802079 0.0087862495 462.41247 0.5014939 + 1747300 -33.790638 -33.794234 0.0035958656 189.2472 0.23926909 + 1747400 -33.78926 -33.801093 0.011832793 622.74934 0.12743913 + 1747500 -33.797376 -33.799524 0.0021476602 113.02944 -0.25065192 + 1747600 -33.796718 -33.802178 0.0054599261 287.35104 -0.21522729 + 1747700 -33.794779 -33.798473 0.0036943216 194.42885 -0.27078299 + 1747800 -33.791149 -33.800004 0.0088544299 466.00075 -0.072453928 + 1747900 -33.791167 -33.796689 0.0055221584 290.62627 0.04026319 + 1748000 -33.7943 -33.800298 0.0059979857 315.66864 0.14642617 + 1748100 -33.797562 -33.800745 0.0031835961 167.54982 0.17425854 + 1748200 -33.796533 -33.800757 0.0042243902 222.32589 0.2579853 + 1748300 -33.793085 -33.799604 0.006519085 343.09363 0.29374472 + 1748400 -33.791722 -33.798271 0.006549232 344.68024 0.28891339 + 1748500 -33.793256 -33.800046 0.0067891318 357.30595 0.23989702 + 1748600 -33.798131 -33.800654 0.0025227159 132.76829 0.062970541 + 1748700 -33.798008 -33.801979 0.0039711234 208.99668 0.073641486 + 1748800 -33.796589 -33.799254 0.0026651591 140.26495 -0.0031030417 + 1748900 -33.792025 -33.801255 0.0092301765 485.77595 0.060887581 + 1749000 -33.792643 -33.796544 0.0039009782 205.305 -0.052769575 + 1749100 -33.79373 -33.802035 0.0083050072 437.08512 0.0047884135 + 1749200 -33.798062 -33.799538 0.0014756284 77.661004 -0.12796461 + 1749300 -33.798409 -33.802958 0.0045489043 239.40478 -0.001429762 + 1749400 -33.798313 -33.79929 0.00097671345 51.403558 -0.022772561 + 1749500 -33.794529 -33.803053 0.0085243038 448.6265 0.23469404 + 1749600 -33.793856 -33.795682 0.0018265359 96.128956 0.24341543 + 1749700 -33.790735 -33.803069 0.012334024 649.12867 0.51989641 + 1749800 -33.795473 -33.796424 0.0009511019 50.055645 0.33075407 + 1749900 -33.797559 -33.80331 0.0057518247 302.7134 0.40719598 + 1750000 -33.798146 -33.798434 0.00028785327 15.149461 0.19149364 + 1750100 -33.793795 -33.803619 0.0098240211 517.02947 0.26051563 + 1750200 -33.794327 -33.795407 0.0010793883 56.807243 -0.10725943 + 1750300 -33.79214 -33.803856 0.011715421 616.57214 -0.097952683 + 1750400 -33.795413 -33.795851 0.00043856849 23.081468 -0.40644395 + 1750500 -33.795666 -33.80344 0.0077744076 409.16014 -0.26660041 + 1750600 -33.799387 -33.799447 5.9797001e-05 3.1470628 -0.37878026 + 1750700 -33.797502 -33.803612 0.0061100362 321.56576 -0.091295218 + 1750800 -33.795027 -33.796463 0.0014366773 75.611046 0.072141201 + 1750900 -33.791759 -33.803697 0.011937808 628.27617 0.59969967 + 1751000 -33.794973 -33.79617 0.0011961958 62.954716 0.66602811 + 1751100 -33.794469 -33.802843 0.0083740398 440.71825 0.88574897 + 1751200 -33.797348 -33.797808 0.00045986474 24.202271 0.65082501 + 1751300 -33.796508 -33.802805 0.006297028 331.40697 0.6318617 + 1751400 -33.794974 -33.797141 0.0021669424 114.04425 0.23286023 + 1751500 -33.789313 -33.802698 0.013384817 704.43096 -0.02623322 + 1751600 -33.793816 -33.796576 0.0027605374 145.28462 -0.67181879 + 1751700 -33.795275 -33.802104 0.0068291488 359.41201 -0.83094927 + 1751800 -33.796234 -33.79797 0.0017362865 91.379212 -0.91451522 + 1751900 -33.793976 -33.801496 0.0075202378 395.78341 -0.52773709 + 1752000 -33.792623 -33.796698 0.0040747744 214.45174 -0.18068815 + 1752100 -33.791103 -33.801048 0.009945329 523.41379 0.4962848 + 1752200 -33.797385 -33.799931 0.002545182 133.95066 0.74217175 + 1752300 -33.797855 -33.801965 0.004110235 216.318 0.86098962 + 1752400 -33.796232 -33.799721 0.0034884716 183.59515 0.78959055 + 1752500 -33.793339 -33.800132 0.0067934691 357.53422 0.60516512 + 1752600 -33.792752 -33.798671 0.0059188374 311.50313 0.11550155 + 1752700 -33.793187 -33.799377 0.0061905957 325.80553 -0.29914407 + 1752800 -33.794469 -33.799671 0.0052015998 273.75556 -0.62622341 + 1752900 -33.796219 -33.799969 0.003749363 197.32563 -0.81235657 + 1753000 -33.798691 -33.801889 0.0031982448 168.32077 -0.74963076 + 1753100 -33.798345 -33.800891 0.0025457785 133.98205 -0.540997 + 1753200 -33.793026 -33.801308 0.0082821748 435.88347 0.02611223 + 1753300 -33.793075 -33.797924 0.0048487073 255.18314 0.61164239 + 1753400 -33.793658 -33.801254 0.0075960048 399.77096 1.1599152 + 1753500 -33.79546 -33.797694 0.0022339963 117.57323 1.2662501 + 1753600 -33.793919 -33.801142 0.0072223143 380.10396 1.3604479 + 1753700 -33.79196 -33.794925 0.0029653873 156.06569 0.94917312 + 1753800 -33.787553 -33.801644 0.014090597 741.57555 0.52168226 + 1753900 -33.794381 -33.796982 0.0026016027 136.92003 -0.29390245 + 1754000 -33.795268 -33.803047 0.0077789232 409.39779 -0.55020912 + 1754100 -33.79628 -33.797551 0.0012712865 66.906676 -0.86628127 + 1754200 -33.792071 -33.802701 0.010629511 559.42169 -0.65554286 + 1754300 -33.789841 -33.791188 0.0013464878 70.864454 -0.64680571 + 1754400 -33.780929 -33.802177 0.021247947 1118.2605 0.25823385 + 1754500 -33.793899 -33.794649 0.00075037576 39.491607 0.25645141 + 1754600 -33.793679 -33.803123 0.0094431332 496.98368 0.63462177 + 1754700 -33.795749 -33.796524 0.00077494474 40.784651 0.56486487 + 1754800 -33.792974 -33.803756 0.010781906 567.4421 0.78231353 + 1754900 -33.794273 -33.795432 0.0011590457 60.999543 0.44041657 + 1755000 -33.792223 -33.803678 0.011455055 602.86934 0.44076001 + 1755100 -33.796303 -33.79653 0.00022688991 11.941014 -0.010173349 + 1755200 -33.795926 -33.803319 0.0073931068 389.09262 -0.055373015 + 1755300 -33.796769 -33.796976 0.00020694225 10.891186 -0.30345073 + 1755400 -33.78889 -33.803688 0.014798274 778.81998 -0.063653212 + 1755500 -33.791336 -33.792837 0.0015004476 78.967217 -0.38590599 + 1755600 -33.792426 -33.803677 0.01125054 592.10587 -0.11073223 + 1755700 -33.795865 -33.796345 0.00048017012 25.270925 -0.22754675 + 1755800 -33.793452 -33.803222 0.0097695072 514.16045 0.097434583 + 1755900 -33.794005 -33.794692 0.00068612831 36.110321 0.13393744 + 1756000 -33.786917 -33.80299 0.016072822 845.8983 0.65732345 + 1756100 -33.785207 -33.787417 0.002209667 116.2928 0.59490611 + 1756200 -33.790054 -33.802981 0.012926296 680.29945 0.93357974 + 1756300 -33.79519 -33.796275 0.0010847888 57.091468 0.61911076 + 1756400 -33.794264 -33.803012 0.008748505 460.42601 0.59830604 + 1756500 -33.795836 -33.797189 0.0013536126 71.239423 0.22687979 + 1756600 -33.7924 -33.802603 0.010203485 537.00031 0.083838236 + 1756700 -33.789515 -33.792767 0.0032520501 171.1525 -0.44758604 + 1756800 -33.788133 -33.801245 0.013111118 690.02643 -0.55747441 + 1756900 -33.79597 -33.797894 0.0019246078 101.29039 -0.92617387 + 1757000 -33.795126 -33.802112 0.0069860532 367.66975 -0.70921703 + 1757100 -33.794621 -33.797724 0.0031029194 163.30388 -0.47275741 + 1757200 -33.791073 -33.800987 0.0099140937 521.76991 0.11664483 + 1757300 -33.788086 -33.794304 0.0062179604 327.24571 0.67820232 + 1757400 -33.789707 -33.799649 0.0099421939 523.2488 1.2926447 + 1757500 -33.795811 -33.79899 0.0031790196 167.30896 1.2791658 + 1757600 -33.795556 -33.800911 0.0053558253 281.87231 1.225292 + 1757700 -33.793599 -33.798704 0.0051044316 268.64168 0.85442045 + 1757800 -33.788858 -33.798517 0.0096582138 508.30318 0.22177356 + 1757900 -33.789729 -33.797482 0.0077530331 408.03522 -0.67706153 + 1758000 -33.79556 -33.800038 0.0044786063 235.70505 -1.2126539 + 1758100 -33.795681 -33.800442 0.0047610518 250.56991 -1.2950157 + 1758200 -33.794288 -33.798749 0.0044609209 234.77429 -1.0415098 + 1758300 -33.789504 -33.799146 0.0096418208 507.44043 -0.35315379 + 1758400 -33.790691 -33.79661 0.0059189405 311.50856 0.33760229 + 1758500 -33.796572 -33.80191 0.0053381489 280.94201 0.83665651 + 1758600 -33.797323 -33.79967 0.0023478518 123.56534 0.96950009 + 1758700 -33.793902 -33.801521 0.0076188877 400.97527 1.0844058 + 1758800 -33.79231 -33.795724 0.003413555 179.65235 0.8133894 + 1758900 -33.790153 -33.801323 0.011169733 587.85307 0.5465193 + 1759000 -33.794163 -33.796721 0.0025585254 134.65291 -0.057611168 + 1759100 -33.797932 -33.803096 0.005163498 271.7503 -0.25581679 + 1759200 -33.79955 -33.800345 0.0007955521 41.869197 -0.45322014 + 1759300 -33.796679 -33.803219 0.0065404741 344.21932 -0.32787087 + 1759400 -33.794833 -33.796216 0.0013824592 72.757594 -0.28810902 + 1759500 -33.7896 -33.803016 0.013416238 706.08465 0.18921088 + 1759600 -33.79309 -33.794266 0.0011752258 61.851085 0.22335519 + 1759700 -33.794941 -33.803213 0.0082716204 435.328 0.55343159 + 1759800 -33.797757 -33.798055 0.00029808039 15.687705 0.43332169 + 1759900 -33.794619 -33.803501 0.0088828555 467.49676 0.59162902 + 1760000 -33.789138 -33.790965 0.0018269204 96.149191 0.30583308 + 1760100 -33.785249 -33.803789 0.018540018 975.74461 0.32424199 + 1760200 -33.79403 -33.794555 0.00052522392 27.642066 -0.24991535 + 1760300 -33.794478 -33.803239 0.0087615595 461.11306 -0.20292745 + 1760400 -33.79652 -33.796606 8.5892414e-05 4.5204412 -0.39850669 + 1760500 -33.791703 -33.803519 0.011816407 621.88695 -0.0491907 + 1760600 -33.789825 -33.791484 0.0016585462 87.287805 -0.083528737 + 1760700 -33.790715 -33.803775 0.013059714 687.3211 0.37237527 + 1760800 -33.79718 -33.797535 0.00035508767 18.687948 0.23882247 + 1760900 -33.794785 -33.803494 0.0087096681 458.38206 0.44425387 + 1761000 -33.794036 -33.794619 0.00058337292 30.702396 0.29556034 + 1761100 -33.788407 -33.80315 0.014743109 775.91666 0.53792046 + 1761200 -33.792649 -33.793524 0.0008749626 46.048501 0.10912367 + 1761300 -33.796031 -33.803362 0.0073307296 385.80976 0.16089081 + 1761400 -33.797493 -33.798411 0.00091802802 48.314996 -0.033315617 + 1761500 -33.793907 -33.803134 0.0092273718 485.62835 0.045221189 + 1761600 -33.792191 -33.794645 0.0024536036 129.13097 -0.13264226 + 1761700 -33.790042 -33.802043 0.012001057 631.60491 0.018601792 + 1761800 -33.79774 -33.79892 0.0011800244 62.103633 -0.22676081 + 1761900 -33.797597 -33.802613 0.005015524 263.96255 -0.083482113 + 1762000 -33.79616 -33.798578 0.0024176406 127.23827 -0.057853044 + 1762100 -33.792074 -33.801472 0.00939735 494.57415 0.22724842 + 1762200 -33.792322 -33.796864 0.0045421383 239.04869 0.32255863 + 1762300 -33.793453 -33.801019 0.0075662328 398.20408 0.46186286 + 1762400 -33.798294 -33.80044 0.0021458545 112.93441 0.36702637 + 1762500 -33.798966 -33.802043 0.0030762709 161.9014 0.35573959 + 1762600 -33.79816 -33.80103 0.002869226 151.00481 0.22695643 + 1762700 -33.796414 -33.801076 0.0046617478 245.34363 0.095470426 + 1762800 -33.792468 -33.799541 0.0070729259 372.24178 -0.080373301 + 1762900 -33.791499 -33.798372 0.0068728784 361.71346 -0.37005995 + 1763000 -33.794321 -33.79995 0.0056286004 296.22822 -0.53323427 + 1763100 -33.797149 -33.799788 0.0026397843 138.92949 -0.5801086 + 1763200 -33.796716 -33.801275 0.0045594415 239.95934 -0.42229962 + 1763300 -33.794573 -33.798702 0.0041292694 217.31977 -0.13052389 + 1763400 -33.791371 -33.80146 0.010089525 531.00269 0.43898674 + 1763500 -33.793935 -33.797913 0.0039778797 209.35226 0.66603567 + 1763600 -33.795172 -33.801746 0.0065740136 345.98447 0.92693011 + 1763700 -33.796374 -33.798035 0.0016608842 87.410855 0.84498592 + 1763800 -33.791503 -33.801279 0.0097759829 514.50126 0.83242614 + 1763900 -33.789502 -33.793094 0.0035920505 189.04641 0.32255651 + 1764000 -33.790299 -33.80237 0.012071007 635.28631 0.020287412 + 1764100 -33.794463 -33.79641 0.0019469033 102.46378 -0.52258947 + 1764200 -33.793357 -33.802776 0.0094190448 495.71593 -0.52835107 + 1764300 -33.79509 -33.796256 0.0011668303 61.409237 -0.71994332 + 1764400 -33.791958 -33.802901 0.010943192 575.93045 -0.38882722 + 1764500 -33.791893 -33.793307 0.0014145749 74.447816 -0.27701891 + 1764600 -33.789026 -33.803162 0.01413657 743.99507 0.37240902 + 1764700 -33.795626 -33.796259 0.00063295898 33.312067 0.3883291 + 1764800 -33.795455 -33.803402 0.0079471437 418.25109 0.68388995 + 1764900 -33.79631 -33.796765 0.00045453225 23.921627 0.54223851 + 1765000 -33.790005 -33.803652 0.013646708 718.21406 0.71658313 + 1765100 -33.7847 -33.787198 0.0024982467 131.4805 0.2211407 + 1765200 -33.788284 -33.803268 0.014983719 788.57978 0.098119137 + 1765300 -33.7953 -33.795439 0.00013899329 7.3150928 -0.36862773 + 1765400 -33.793504 -33.803045 0.0095415961 502.16569 -0.24132213 + 1765500 -33.794458 -33.795139 0.00068094396 35.837473 -0.38428718 + 1765600 -33.790243 -33.803608 0.013365291 703.40335 0.0070449657 + 1765700 -33.794059 -33.795333 0.0012736301 67.030017 -0.068924391 + 1765800 -33.795981 -33.803577 0.0075967576 399.81058 0.20179383 + 1765900 -33.798119 -33.798652 0.00053256211 28.028269 0.15049799 + 1766000 -33.794752 -33.803274 0.0085222521 448.51852 0.37121985 + 1766100 -33.793226 -33.794631 0.0014041392 73.898593 0.26289665 + 1766200 -33.791086 -33.802618 0.011532236 606.9313 0.45952734 + 1766300 -33.794459 -33.795903 0.0014440999 76.001687 0.18702336 + 1766400 -33.794246 -33.802606 0.0083598986 439.974 0.251221 + 1766500 -33.797182 -33.798584 0.001402375 73.805744 0.028583418 + 1766600 -33.797073 -33.802837 0.0057638598 303.3468 0.043725922 + 1766700 -33.797439 -33.799469 0.0020300154 106.8379 -0.079688737 + 1766800 -33.792856 -33.80187 0.0090148052 474.44116 0.035278618 + 1766900 -33.791068 -33.795716 0.0046480441 244.62242 -0.081246601 + 1767000 -33.791568 -33.800262 0.0086943069 457.57362 0.016523079 + 1767100 -33.795955 -33.798588 0.0026321157 138.5259 -0.070841706 + 1767200 -33.797159 -33.801302 0.0041431923 218.05251 4.8534949e-05 + 1767300 -33.800317 -33.80194 0.0016227364 85.403168 -0.0083050737 + 1767400 -33.799879 -33.802521 0.0026415012 139.01985 0.056587787 + 1767500 -33.797217 -33.801833 0.004616261 242.9497 0.13912963 + 1767600 -33.795588 -33.800906 0.0053179798 279.88054 0.1969374 + 1767700 -33.794024 -33.800217 0.0061930364 325.93398 0.2441689 + 1767800 -33.792876 -33.797211 0.00433471 228.13192 0.20331573 + 1767900 -33.784763 -33.795825 0.01106218 582.19266 0.34205259 + 1768000 -33.785054 -33.791099 0.0060448972 318.13755 0.25121065 + 1768100 -33.788013 -33.797921 0.0099084957 521.47529 0.3204736 + 1768200 -33.791493 -33.796307 0.0048137464 253.34318 0.20045945 + 1768300 -33.793831 -33.801722 0.0078910472 415.29877 0.25542238 + 1768400 -33.796351 -33.799641 0.0032898588 173.14233 0.12571416 + 1768500 -33.796189 -33.802843 0.0066539619 350.19208 0.14403829 + 1768600 -33.795788 -33.798428 0.002640114 138.94684 0.01406403 + 1768700 -33.787537 -33.800977 0.013440115 707.34127 0.15408036 + 1768800 -33.790216 -33.792592 0.0023762486 125.05985 -0.17912232 + 1768900 -33.791922 -33.800396 0.0084736755 445.96198 -0.070572387 + 1769000 -33.794634 -33.796049 0.0014147015 74.454478 -0.17521322 + 1769100 -33.793605 -33.802379 0.0087744693 461.79249 0.041061002 + 1769200 -33.797114 -33.799162 0.0020485386 107.81276 -0.0075788021 + 1769300 -33.797854 -33.803768 0.0059136782 311.23161 0.14002255 + 1769400 -33.798184 -33.799757 0.001572975 82.784273 0.09084493 + 1769500 -33.792331 -33.803166 0.010835662 570.27124 0.32243146 + 1769600 -33.792319 -33.794354 0.0020346469 107.08165 0.16246529 + 1769700 -33.790897 -33.801014 0.010116287 532.41118 0.31711913 + 1769800 -33.792865 -33.793104 0.00023948485 12.603874 0.10530252 + 1769900 -33.785204 -33.801416 0.016211807 853.21297 0.42027394 + 1770000 -33.786045 -33.789785 0.0037396942 196.81677 0.13059565 + 1770100 -33.791885 -33.803384 0.011498762 605.16958 0.23440222 + 1770200 -33.796429 -33.797671 0.001241725 65.350878 -0.01806886 + 1770300 -33.795552 -33.803428 0.0078766828 414.54279 0.080725657 + 1770400 -33.79577 -33.797114 0.0013442005 70.744071 -0.094227733 + 1770500 -33.788953 -33.802711 0.013757873 724.06456 0.14011076 + 1770600 -33.790119 -33.79221 0.0020914134 110.06922 -0.10965346 + 1770700 -33.792488 -33.801474 0.0089862326 472.93741 0.031689611 + 1770800 -33.795851 -33.796958 0.0011069719 58.258944 -0.085656382 + 1770900 -33.793461 -33.802128 0.0086671736 456.14562 0.13988013 + 1771000 -33.793191 -33.79705 0.0038584279 203.06562 0.11874548 + 1771100 -33.793507 -33.802639 0.00913241 480.63059 0.2997309 + 1771200 -33.798609 -33.800291 0.0016818069 88.511997 0.16308956 + 1771300 -33.798031 -33.80249 0.0044587158 234.65823 0.197745 + 1771400 -33.796299 -33.798696 0.0023968114 126.14204 0.11094109 + 1771500 -33.794281 -33.800986 0.0067049874 352.87751 0.11152095 + 1771600 -33.793094 -33.797343 0.0042496712 223.65641 -0.043318712 + 1771700 -33.791053 -33.799969 0.008916577 469.27149 -0.023251305 + 1771800 -33.793998 -33.798647 0.0046491959 244.68303 -0.16601781 + 1771900 -33.797015 -33.801412 0.0043975142 231.43725 -0.18471553 + 1772000 -33.797412 -33.800895 0.0034833064 183.32331 -0.1473014 + 1772100 -33.795607 -33.800346 0.0047389424 249.40631 -0.017521828 + 1772200 -33.792992 -33.799511 0.0065189163 343.08475 0.17319097 + 1772300 -33.793113 -33.798382 0.0052691599 277.31118 0.31998074 + 1772400 -33.79308 -33.799779 0.0066988262 352.55325 0.46701309 + 1772500 -33.794112 -33.798298 0.0041854784 220.27799 0.46100579 + 1772600 -33.796079 -33.801491 0.0054115198 284.80346 0.4703325 + 1772700 -33.798162 -33.800454 0.0022925782 120.65635 0.32944876 + 1772800 -33.797037 -33.802415 0.0053774162 283.00862 0.27416525 + 1772900 -33.793145 -33.797157 0.0040114193 211.11742 0.053853148 + 1773000 -33.789992 -33.801237 0.011245361 591.83334 -0.086705411 + 1773100 -33.793462 -33.795926 0.0024644845 129.70362 -0.46759845 + 1773200 -33.793582 -33.801347 0.0077648201 408.65556 -0.41916676 + 1773300 -33.79493 -33.79664 0.001710208 90.006721 -0.46464973 + 1773400 -33.791057 -33.802349 0.011291885 594.28185 -0.067307519 + 1773500 -33.792158 -33.795476 0.0033180902 174.62813 0.049770055 + 1773600 -33.794458 -33.803336 0.0088774534 467.21245 0.41738534 + 1773700 -33.79768 -33.798442 0.000761973 40.101959 0.38717846 + 1773800 -33.795186 -33.80299 0.0078038546 410.70991 0.5741662 + 1773900 -33.792138 -33.792576 0.00043811913 23.057819 0.41073974 + 1774000 -33.788081 -33.803213 0.015132478 796.40881 0.58048665 + 1774100 -33.793655 -33.794376 0.00072100286 37.945737 0.10767608 + 1774200 -33.794156 -33.803878 0.0097218921 511.65451 0.1603828 + 1774300 -33.796887 -33.797275 0.00038750597 20.394093 -0.14042681 + 1774400 -33.793482 -33.803873 0.010391494 546.89504 -0.017083478 + 1774500 -33.788988 -33.789571 0.00058291888 30.678501 -0.24577848 + 1774600 -33.786353 -33.80335 0.016996468 894.50896 0.062198923 + 1774700 -33.794238 -33.794259 2.1510904e-05 1.1320997 -0.26387594 + 1774800 -33.793151 -33.803386 0.010235784 538.70017 0.029962623 + 1774900 -33.795323 -33.79593 0.00060668281 31.929175 -0.067783939 + 1775000 -33.792736 -33.803844 0.011108851 584.64894 0.25352654 + 1775100 -33.795021 -33.796005 0.00098390973 51.782291 0.14647066 + 1775200 -33.794009 -33.803506 0.0094969536 499.81619 0.3736052 + 1775300 -33.796426 -33.796931 0.00050530396 26.593697 0.19501827 + 1775400 -33.793426 -33.803042 0.0096162122 506.09267 0.35458677 + 1775500 -33.790909 -33.792373 0.0014631751 77.005599 0.10712935 + 1775600 -33.786655 -33.802589 0.01593432 838.60904 0.26882649 + 1775700 -33.795595 -33.796792 0.0011960901 62.949153 -0.14108972 + 1775800 -33.794995 -33.80311 0.0081140976 427.03772 -0.044854861 + 1775900 -33.795486 -33.797173 0.0016873549 88.803984 -0.18941261 + 1776000 -33.791838 -33.802265 0.010426136 548.71825 0.034632528 + 1776100 -33.790387 -33.793471 0.0030842111 162.31928 -0.034075227 + 1776200 -33.788508 -33.800976 0.012468568 656.20963 0.25103893 + 1776300 -33.796127 -33.798173 0.0020459807 107.67814 0.10128298 + 1776400 -33.795957 -33.802193 0.0062360652 328.19855 0.22405363 + 1776500 -33.795323 -33.798504 0.0031812157 167.42455 0.16657012 + 1776600 -33.790462 -33.800624 0.010162459 534.84115 0.29446475 + 1776700 -33.787903 -33.794433 0.0065298007 343.65758 0.17381107 + 1776800 -33.793905 -33.800587 0.0066815785 351.64552 0.10740759 + 1776900 -33.796186 -33.799421 0.0032357357 170.29389 0.016263341 + 1777000 -33.794644 -33.800434 0.005790428 304.74506 0.060481299 + 1777100 -33.791025 -33.798008 0.0069834323 367.53181 0.098215694 + 1777200 -33.790276 -33.798619 0.0083431176 439.09084 0.14113238 + 1777300 -33.796463 -33.800798 0.0043346118 228.12676 0.0657862 + 1777400 -33.797344 -33.800601 0.0032566043 171.39218 0.057951661 + 1777500 -33.795253 -33.800621 0.0053678367 282.50446 0.1090435 + 1777600 -33.793348 -33.797944 0.0045960976 241.88852 0.12362819 + 1777700 -33.791227 -33.800113 0.0088860239 467.66351 0.23437445 + 1777800 -33.792952 -33.797451 0.0044997134 236.8159 0.13245709 + 1777900 -33.793139 -33.801203 0.008064347 424.41939 0.21062843 + 1778000 -33.794538 -33.797693 0.0031554125 166.06654 0.10171233 + 1778100 -33.793572 -33.80158 0.0080072993 421.41702 0.1743536 + 1778200 -33.794703 -33.797186 0.0024824199 130.64755 0.061888226 + 1778300 -33.793053 -33.802015 0.0089614023 471.63061 0.18621593 + 1778400 -33.794304 -33.796599 0.0022950055 120.78409 0.029668584 + 1778500 -33.792957 -33.802561 0.0096038418 505.44163 0.19257797 + 1778600 -33.795576 -33.797181 0.0016053293 84.487051 0.023882713 + 1778700 -33.795879 -33.803171 0.0072919352 383.76805 0.13271988 + 1778800 -33.797816 -33.798539 0.00072252201 38.025689 0.016675351 + 1778900 -33.793924 -33.80318 0.0092555302 487.1103 0.19333746 + 1779000 -33.79173 -33.792744 0.0010145695 53.39589 0.026979783 + 1779100 -33.78888 -33.803417 0.014536851 765.06151 0.32755832 + 1779200 -33.794761 -33.795374 0.00061228468 32.223997 0.02516402 + 1779300 -33.794024 -33.803693 0.0096691598 508.87926 0.20126701 + 1779400 -33.795737 -33.79594 0.00020293431 10.680252 0.013943772 + 1779500 -33.792343 -33.80379 0.011447473 602.47029 0.22659805 + 1779600 -33.793655 -33.79382 0.00016530282 8.6997402 -0.014850326 + 1779700 -33.788695 -33.803917 0.015221927 801.11643 0.30209217 + 1779800 -33.79314 -33.793305 0.00016492303 8.6797517 -0.028378412 + 1779900 -33.794322 -33.803954 0.009631924 506.91957 0.16223932 + 1780000 -33.797466 -33.797483 1.6996162e-05 0.89449285 -0.025332588 + 1780100 -33.794218 -33.803932 0.009714048 511.24168 0.17070619 + 1780200 -33.790267 -33.790601 0.00033474687 17.617429 0.0044794089 + 1780300 -33.786498 -33.803747 0.017249273 907.81386 0.37178724 + 1780400 -33.79368 -33.793932 0.00025157062 13.239937 0.019685381 + 1780500 -33.792972 -33.803718 0.01074623 565.56452 0.23517186 + 1780600 -33.795834 -33.796215 0.00038122782 20.06368 0.01531099 + 1780700 -33.793402 -33.803567 0.010165205 534.98566 0.20129976 + 1780800 -33.792215 -33.793294 0.0010783334 56.751725 0.008137512 + 1780900 -33.786257 -33.802926 0.01666891 877.26985 0.3117401 + 1781000 -33.793745 -33.794691 0.00094598462 49.786327 -0.035877282 + 1781100 -33.794432 -33.803161 0.008729527 459.42722 0.11870639 + 1781200 -33.79615 -33.797341 0.0011912005 62.691817 -0.033021921 + 1781300 -33.793216 -33.802783 0.0095661134 503.45602 0.15652885 + 1781400 -33.789365 -33.792562 0.0031963422 168.22064 0.058075064 + 1781500 -33.781222 -33.800595 0.019372703 1019.5681 0.43735942 + 1781600 -33.792463 -33.79499 0.002527018 132.99471 0.10396332 + 1781700 -33.792436 -33.801915 0.0094795301 498.89921 0.25247217 + 1781800 -33.795361 -33.797694 0.0023330183 122.78467 0.085925706 + 1781900 -33.79491 -33.802 0.0070900144 373.14113 0.17168377 + 1782000 -33.795579 -33.79847 0.0028910375 152.15272 0.066532805 + 1782100 -33.792487 -33.801019 0.0085314827 449.00433 0.1460873 + 1782200 -33.788929 -33.794862 0.0059326801 312.23166 0.072826932 + 1782300 -33.789783 -33.799456 0.0096726156 509.06113 0.12155379 + 1782400 -33.795985 -33.799476 0.0034906569 183.71016 -0.028059056 + 1782500 -33.795601 -33.800889 0.0052874337 278.27292 0.040035367 + 1782600 -33.793996 -33.799106 0.0051098544 268.92708 0.072617717 + 1782700 -33.791421 -33.798799 0.0073779815 388.29659 0.1588548 + 1782800 -33.787078 -33.796597 0.0095182322 500.93607 0.28723489 + 1782900 -33.789949 -33.797474 0.0075244656 396.00592 0.27784983 + 1783000 -33.795408 -33.800503 0.0050945143 268.11974 0.21828836 + 1783100 -33.79609 -33.799757 0.0036676214 193.02364 0.18990075 + 1783200 -33.793694 -33.80053 0.0068364125 359.79429 0.20849746 + 1783300 -33.790285 -33.796105 0.0058199036 306.29634 0.10130273 + 1783400 -33.787723 -33.799373 0.011650216 613.1405 0.14884222 + 1783500 -33.795545 -33.798673 0.0031278249 164.61464 -0.1077418 + 1783600 -33.795429 -33.801793 0.0063638461 334.92354 -0.046421269 + 1783700 -33.795065 -33.797608 0.00254318 133.84529 -0.071173478 + 1783800 -33.789801 -33.801202 0.0114017 600.06132 0.18883408 + 1783900 -33.790761 -33.79434 0.0035788918 188.35388 0.13716448 + 1784000 -33.79526 -33.802814 0.0075545945 397.59157 0.30017577 + 1784100 -33.797688 -33.798894 0.0012057852 63.459401 0.17964004 + 1784200 -33.794804 -33.80289 0.0080863864 425.5793 0.3040243 + 1784300 -33.793778 -33.795049 0.0012715563 66.920872 0.1306146 + 1784400 -33.789419 -33.802805 0.013386167 704.50201 0.27065139 + 1784500 -33.793102 -33.794288 0.0011862199 62.429694 -0.081677463 + 1784600 -33.791796 -33.803329 0.011533263 606.98536 0.076807678 + 1784700 -33.794842 -33.795551 0.00070907072 37.317759 -0.19197358 + 1784800 -33.793875 -33.80365 0.0097755885 514.4805 0.0055562913 + 1784900 -33.797025 -33.797327 0.00030192453 15.890019 -0.13813984 + 1785000 -33.797029 -33.803878 0.0068484467 360.42764 0.042454423 + 1785100 -33.798422 -33.798502 8.0457593e-05 4.2344113 -0.023138925 + 1785200 -33.79235 -33.803909 0.011558932 608.33631 0.31643756 + 1785300 -33.792214 -33.792381 0.00016770408 8.8261163 0.1866178 + 1785400 -33.790397 -33.803943 0.013545841 712.90553 0.55413885 + 1785500 -33.795778 -33.795794 1.6480596e-05 0.86735906 0.28878603 + 1785600 -33.795171 -33.803891 0.0087204019 458.94697 0.40988261 + 1785700 -33.796978 -33.797093 0.00011527686 6.0669185 0.15139334 + 1785800 -33.791712 -33.803892 0.012180254 641.03589 0.26303661 + 1785900 -33.791252 -33.79183 0.00057790624 30.41469 -0.17842963 + 1786000 -33.789862 -33.803566 0.013703309 721.19295 -0.07080805 + 1786100 -33.796301 -33.796622 0.00032082158 16.884553 -0.42168704 + 1786200 -33.795323 -33.803538 0.0082151193 432.3544 -0.2335927 + 1786300 -33.795673 -33.796474 0.00080086922 42.149033 -0.25959359 + 1786400 -33.786275 -33.802961 0.016685792 878.15835 0.31429062 + 1786500 -33.788785 -33.790681 0.001895186 99.741948 0.3719656 + 1786600 -33.790076 -33.80266 0.012584767 662.32508 0.82522931 + 1786700 -33.795221 -33.796429 0.0012079168 63.571583 0.64329736 + 1786800 -33.794474 -33.802759 0.0082851511 436.04011 0.72424073 + 1786900 -33.795694 -33.797395 0.0017012646 89.536039 0.41374088 + 1787000 -33.791221 -33.80219 0.010968473 577.26095 0.30884957 + 1787100 -33.78892 -33.792886 0.00396629 208.7423 -0.24990934 + 1787200 -33.790628 -33.801326 0.010697175 562.98279 -0.47928857 + 1787300 -33.795797 -33.798142 0.0023448534 123.40754 -0.78050311 + 1787400 -33.794662 -33.801675 0.0070133183 369.10468 -0.60497494 + 1787500 -33.793915 -33.797573 0.0036576492 192.49882 -0.43727436 + 1787600 -33.790341 -33.8003 0.0099590069 524.13365 0.096263349 + 1787700 -33.7857 -33.793362 0.0076616402 403.22529 0.64757433 + 1787800 -33.789763 -33.799378 0.0096153737 506.04854 1.1400106 + 1787900 -33.795113 -33.798976 0.0038639339 203.3554 1.1568536 + 1788000 -33.794979 -33.800542 0.0055622465 292.73607 1.0937631 + 1788100 -33.793776 -33.799023 0.0052465918 276.12345 0.75951182 + 1788200 -33.79048 -33.79847 0.0079903308 420.52398 0.28508427 + 1788300 -33.787782 -33.79697 0.0091887924 483.59795 -0.420333 + 1788400 -33.793708 -33.79916 0.0054519194 286.92965 -1.0274286 + 1788500 -33.795661 -33.800617 0.0049560586 260.83294 -1.1461129 + 1788600 -33.79527 -33.799196 0.0039263612 206.64089 -1.0184052 + 1788700 -33.790962 -33.799804 0.0088414936 465.31992 -0.48351136 + 1788800 -33.788567 -33.795142 0.006575192 346.04649 0.23615252 + 1788900 -33.792442 -33.800883 0.0084411675 444.25111 1.0083683 + 1789000 -33.796424 -33.799063 0.0026388574 138.88071 1.1797318 + 1789100 -33.795475 -33.80185 0.0063749818 335.5096 1.291859 + 1789200 -33.794357 -33.79711 0.0027524385 144.85838 0.97169741 + 1789300 -33.788125 -33.801033 0.012908362 679.35558 0.60168255 + 1789400 -33.791459 -33.794887 0.0034277052 180.39707 -0.27238703 + 1789500 -33.796394 -33.802834 0.0064396393 338.91247 -0.62098242 + 1789600 -33.797261 -33.798455 0.0011935867 62.817404 -0.86979652 + 1789700 -33.792741 -33.802624 0.0098829514 520.13092 -0.63538598 + 1789800 -33.792018 -33.793672 0.0016545368 87.076797 -0.56102709 + 1789900 -33.789931 -33.802959 0.013028035 685.65385 0.088752978 + 1790000 -33.797002 -33.797843 0.00084162566 44.294008 0.17230568 + 1790100 -33.796677 -33.8036 0.0069232612 364.36506 0.46584239 + 1790200 -33.796798 -33.797164 0.00036634229 19.280268 0.45185902 + 1790300 -33.791249 -33.803582 0.012333032 649.07647 0.75393276 + 1790400 -33.792466 -33.792895 0.00042878693 22.566674 0.43103812 + 1790500 -33.7915 -33.803813 0.012313469 648.0469 0.53643715 + 1790600 -33.798699 -33.79881 0.00011043122 5.8118966 0.13888291 + 1790700 -33.797581 -33.803942 0.0063603265 334.73831 0.13772837 + 1790800 -33.796963 -33.797044 8.1700759e-05 4.2998381 -0.13378029 + 1790900 -33.791254 -33.803973 0.012718613 669.36925 -0.035846944 + 1791000 -33.792808 -33.793002 0.00019392684 10.206197 -0.45788983 + 1791100 -33.791777 -33.80381 0.012033013 633.28676 -0.26890866 + 1791200 -33.798308 -33.798361 5.3432492e-05 2.8121044 -0.46889948 + 1791300 -33.79751 -33.803799 0.0062892638 330.99834 -0.23324418 + 1791400 -33.797391 -33.79786 0.0004692026 24.693715 -0.13947133 + 1791500 -33.793146 -33.803629 0.01048341 551.73252 0.38570263 + 1791600 -33.793354 -33.794499 0.0011449141 60.25581 0.53003242 + 1791700 -33.791162 -33.803029 0.011866916 624.54519 1.0173895 + 1791800 -33.797345 -33.797887 0.00054236642 28.544261 0.86829668 + 1791900 -33.798034 -33.80321 0.0051760343 272.41007 0.85358885 + 1792000 -33.797537 -33.798884 0.0013466607 70.873552 0.52242681 + 1792100 -33.79336 -33.802686 0.0093261558 490.82726 0.22300092 + 1792200 -33.793367 -33.796392 0.0030251343 159.21012 -0.53639482 + 1792300 -33.792461 -33.801702 0.0092416017 486.37725 -0.89588659 + 1792400 -33.79498 -33.797345 0.0023645445 124.44387 -1.2609567 + 1792500 -33.796087 -33.801618 0.0055311456 291.09926 -1.161041 + 1792600 -33.798924 -33.800727 0.0018030108 94.890852 -0.98242767 + 1792700 -33.797461 -33.802159 0.0046975064 247.22557 -0.45844158 + 1792800 -33.793202 -33.799114 0.0059122146 311.15458 0.36920011 + 1792900 -33.792424 -33.800098 0.0076731858 403.83293 1.3587043 + 1793000 -33.794081 -33.798813 0.0047318512 249.03311 1.9566152 + 1793100 -33.794193 -33.799002 0.0048084205 253.06288 2.1645591 + 1793200 -33.79011 -33.797337 0.0072262836 380.31286 1.987666 + 1793300 -33.785582 -33.795608 0.010026397 527.68032 1.2475604 + 1793400 -33.792015 -33.799707 0.007692037 404.82505 0.196519 + 1793500 -33.794905 -33.79953 0.0046247613 243.39706 -0.52928776 + 1793600 -33.795249 -33.801112 0.0058632479 308.57751 -0.93074559 + 1793700 -33.795146 -33.798678 0.0035319093 185.88124 -1.1952276 + 1793800 -33.788516 -33.799348 0.010832496 570.10462 -0.99914783 + 1793900 -33.787164 -33.792949 0.0057847193 304.44461 -0.72171114 + 1794000 -33.791498 -33.80083 0.0093321386 491.14213 -0.19197344 + 1794100 -33.794233 -33.797255 0.0030220591 159.04827 0.067575281 + 1794200 -33.793434 -33.801935 0.0085010126 447.40071 0.54550443 + 1794300 -33.795037 -33.797575 0.0025380392 133.57474 0.68066648 + 1794400 -33.794676 -33.8026 0.0079234479 417.004 0.89351463 + 1794500 -33.796917 -33.79837 0.0014531186 76.476333 0.71038402 + 1794600 -33.795687 -33.802873 0.0071864393 378.21589 0.6347519 + 1794700 -33.794677 -33.795906 0.0012293023 64.697086 0.16475929 + 1794800 -33.787791 -33.802585 0.014793711 778.57982 -0.092757226 + 1794900 -33.792001 -33.793523 0.0015221059 80.107075 -0.88339543 + 1795000 -33.793666 -33.803288 0.0096218015 506.38683 -0.96595061 + 1795100 -33.795952 -33.796562 0.00060993562 32.100368 -1.1142229 + 1795200 -33.793022 -33.803534 0.010511454 553.20846 -0.63856681 + 1795300 -33.794023 -33.794668 0.00064580259 33.988014 -0.36417546 + 1795400 -33.789876 -33.803648 0.013772677 724.8437 0.52320416 + 1795500 -33.793875 -33.794255 0.00037974742 19.985768 0.8067353 + 1795600 -33.795028 -33.803664 0.0086364904 454.53079 1.2501975 + 1795700 -33.797657 -33.797764 0.00010680438 5.621019 1.0870883 + 1795800 -33.79353 -33.803851 0.010320686 543.16849 1.0663057 + 1795900 -33.789885 -33.791041 0.0011559107 60.83455 0.2821141 + 1796000 -33.788388 -33.80373 0.015342765 807.47604 -0.19870204 + 1796100 -33.794473 -33.794685 0.00021125076 11.117939 -1.0202077 + 1796200 -33.793165 -33.803315 0.010149273 534.14719 -1.0421907 + 1796300 -33.795162 -33.79552 0.0003581468 18.848947 -1.1996397 + 1796400 -33.790764 -33.803555 0.012790811 673.16895 -0.61567615 + 1796500 -33.789251 -33.791162 0.0019113098 100.59053 -0.19807865 + 1796600 -33.790142 -33.803256 0.013114708 690.2154 0.7018717 + 1796700 -33.796336 -33.796951 0.0006154638 32.391311 0.8302801 + 1796800 -33.794671 -33.803044 0.0083728482 440.65553 1.1465373 + 1796900 -33.794193 -33.795468 0.001274786 67.09085 0.95312872 + 1797000 -33.786214 -33.802521 0.016307233 858.23513 0.99280308 + 1797100 -33.78875 -33.791261 0.0025103381 132.11685 0.18220339 + 1797200 -33.794276 -33.802742 0.0084658708 445.55123 -0.079027065 + 1797300 -33.796279 -33.797878 0.0015993288 84.17125 -0.40400675 + 1797400 -33.793762 -33.802236 0.0084736725 445.96183 -0.38704516 + 1797500 -33.791722 -33.795018 0.0032961055 173.47109 -0.51748496 + 1797600 -33.78861 -33.800835 0.012225313 643.40733 -0.18232182 + 1797700 -33.795678 -33.7982 0.0025223706 132.75012 -0.22367102 + 1797800 -33.796535 -33.802157 0.0056227808 295.92194 -0.017205121 + 1797900 -33.796137 -33.799179 0.0030423484 160.11608 0.12139011 + 1798000 -33.793122 -33.800696 0.0075747086 398.65016 0.40493988 + 1798100 -33.790674 -33.796477 0.0058026716 305.38943 0.5645932 + 1798200 -33.791328 -33.799268 0.0079404444 417.89851 0.75134653 + 1798300 -33.798034 -33.80092 0.0028860658 151.89107 0.60146703 + 1798400 -33.797498 -33.801317 0.0038184822 200.96331 0.50362994 + 1798500 -33.793609 -33.799556 0.0059470154 312.98612 0.29774652 + 1798600 -33.791306 -33.798084 0.0067777316 356.70597 -0.13265963 + 1798700 -33.791934 -33.799336 0.0074025487 389.58954 -0.50629572 + 1798800 -33.795293 -33.799252 0.0039592336 208.37093 -0.7799107 + 1798900 -33.797753 -33.801853 0.0041003954 215.80015 -0.78807074 + 1799000 -33.797698 -33.800127 0.0024286124 127.81571 -0.61880583 + 1799100 -33.794978 -33.80177 0.0067923168 357.47357 -0.15860507 + 1799200 -33.793544 -33.797288 0.0037441382 197.05066 0.30274347 + 1799300 -33.790441 -33.801158 0.010716854 564.01845 1.0672911 + 1799400 -33.794046 -33.796742 0.0026966262 141.92103 1.2920037 + 1799500 -33.797018 -33.802388 0.0053700825 282.62265 1.3902122 + 1799600 -33.797535 -33.798863 0.0013278941 69.885882 1.1094638 + 1799700 -33.793191 -33.802671 0.0094803732 498.94358 0.74378938 + 1799800 -33.79347 -33.796138 0.0026684056 140.43581 -0.18739877 + 1799900 -33.79243 -33.802909 0.010479278 551.51504 -0.76009056 + 1800000 -33.794965 -33.79609 0.001124184 59.164801 -1.4667892 + 1800100 -33.792915 -33.802542 0.0096278193 506.70354 -1.4574217 + 1800200 -33.792679 -33.793349 0.00066971697 35.246607 -1.4419642 + 1800300 -33.783587 -33.803035 0.019448106 1023.5365 -0.42234334 + 1800400 -33.792444 -33.793688 0.001243844 65.462398 0.0012646449 + 1800500 -33.793595 -33.803793 0.010198715 536.7493 0.69459968 + 1800600 -33.79615 -33.796514 0.00036403794 19.158992 0.80152485 + 1800700 -33.793153 -33.803679 0.01052557 553.95134 1.1908694 + 1800800 -33.792034 -33.792167 0.00013340147 7.0208006 0.93452185 + 1800900 -33.783827 -33.803648 0.019820428 1043.1314 1.0301119 + 1801000 -33.793356 -33.793513 0.00015653517 8.2383063 0.27010482 + 1801100 -33.793458 -33.80382 0.010362207 545.35371 0.17171541 + 1801200 -33.795642 -33.795917 0.00027514426 14.480597 -0.30361111 + 1801300 -33.792521 -33.8039 0.011379369 598.88606 -0.23613737 + 1801400 -33.793491 -33.794008 0.00051705205 27.211988 -0.59119879 + 1801500 -33.789461 -33.80361 0.014148532 744.6246 -0.31432434 + 1801600 -33.794444 -33.794708 0.00026439506 13.914876 -0.44841968 + 1801700 -33.795172 -33.80341 0.0082377887 433.54747 -0.15729585 + 1801800 -33.797392 -33.797926 0.00053421667 28.115347 -0.13094936 + 1801900 -33.792676 -33.803492 0.010815626 569.21672 0.34466865 + 1802000 -33.788788 -33.791472 0.0026841413 141.26396 0.50513401 + 1802100 -33.789315 -33.80256 0.013245764 697.11272 0.99347918 + 1802200 -33.79477 -33.795937 0.0011671339 61.425215 0.84127481 + 1802300 -33.793595 -33.802366 0.008771137 461.61712 0.87444012 + 1802400 -33.794513 -33.796344 0.0018302081 96.322222 0.50364199 + 1802500 -33.789369 -33.802089 0.01272001 669.44278 0.38215167 + 1802600 -33.788429 -33.792813 0.0043843502 230.74444 -0.3470744 + 1802700 -33.792385 -33.801843 0.0094578565 497.75855 -0.60922299 + 1802800 -33.795913 -33.798048 0.0021345146 112.3376 -0.85148679 + 1802900 -33.794411 -33.801599 0.0071875968 378.27681 -0.68687187 + 1803000 -33.79205 -33.796238 0.0041878709 220.40391 -0.44228858 + 1803100 -33.785761 -33.799376 0.013614971 716.54376 0.31878468 + 1803200 -33.792477 -33.796858 0.0043807028 230.55248 0.68742947 + 1803300 -33.795085 -33.801257 0.0061725029 324.85332 0.9718576 + 1803400 -33.795715 -33.799289 0.0035741905 188.10646 0.9471268 + 1803500 -33.793792 -33.8003 0.006507754 342.49729 0.8327816 + 1803600 -33.789854 -33.796877 0.0070222556 369.57505 0.47515189 + 1803700 -33.788875 -33.797896 0.0090210931 474.77208 -0.014545762 + 1803800 -33.795938 -33.800357 0.0044193764 232.58784 -0.49094964 + 1803900 -33.796663 -33.800533 0.0038702868 203.68974 -0.62267506 + 1804000 -33.794666 -33.80041 0.0057440097 302.30211 -0.57254516 + 1804100 -33.792089 -33.797682 0.0055932826 294.36947 -0.38221704 + 1804200 -33.788892 -33.798967 0.010075485 530.26376 0.080974544 + 1804300 -33.795002 -33.798834 0.0038313271 201.63933 0.25497911 + 1804400 -33.796875 -33.801873 0.0049983595 263.0592 0.43562545 + 1804500 -33.796441 -33.799018 0.0025767874 135.61402 0.45594197 + 1804600 -33.790967 -33.801072 0.010104594 531.79575 0.59962697 + 1804700 -33.791205 -33.795247 0.0040419976 212.72673 0.3866669 + 1804800 -33.793102 -33.801965 0.0088632787 466.46645 0.32369849 + 1804900 -33.797309 -33.798892 0.0015825773 83.289632 0.038178577 + 1805000 -33.79668 -33.802782 0.0061017909 321.13181 0.043539939 + 1805100 -33.796636 -33.797935 0.0012988027 68.354829 -0.15067382 + 1805200 -33.7913 -33.802739 0.011439292 602.03973 -0.0093167033 + 1805300 -33.791764 -33.793823 0.0020586812 108.34656 -0.21863727 + 1805400 -33.792527 -33.803121 0.01059368 557.53591 -0.047681777 + 1805500 -33.797499 -33.798062 0.0005627617 29.617646 -0.20070273 + 1805600 -33.795915 -33.803359 0.0074439702 391.76951 0.033776286 + 1805700 -33.796197 -33.796716 0.00051865726 27.296469 -0.0093664772 + 1805800 -33.792422 -33.803727 0.011304971 594.97053 0.36374321 + 1805900 -33.794193 -33.794944 0.00075065411 39.506256 0.28397006 + 1806000 -33.792634 -33.80378 0.011146131 586.61095 0.53868101 + 1806100 -33.798647 -33.798733 8.5570891e-05 4.5035196 0.31898741 + 1806200 -33.798206 -33.80371 0.005504549 289.6995 0.37801143 + 1806300 -33.7974 -33.797634 0.00023375999 12.30258 0.1246059 + 1806400 -33.792353 -33.803945 0.011591871 610.06983 0.17385384 + 1806500 -33.794002 -33.794786 0.00078336679 41.227895 -0.28492276 + 1806600 -33.792471 -33.803641 0.011170185 587.87686 -0.27211373 + 1806700 -33.797021 -33.797198 0.00017689385 9.3097656 -0.52092899 + 1806800 -33.798107 -33.803396 0.0052886169 278.33519 -0.38241071 + 1806900 -33.798797 -33.79936 0.00056253993 29.605975 -0.35880987 + 1807000 -33.793501 -33.803412 0.0099107281 521.59278 0.15700917 + 1807100 -33.793942 -33.796196 0.0022540672 118.62955 0.38469083 + 1807200 -33.793084 -33.802722 0.0096385497 507.26827 0.84536113 + 1807300 -33.795976 -33.797215 0.0012391674 65.216273 0.86225872 + 1807400 -33.794646 -33.802131 0.0074845429 393.90482 0.94271898 + 1807500 -33.792433 -33.795179 0.0027466811 144.55538 0.63593718 + 1807600 -33.786739 -33.8012 0.014461269 761.08371 0.49599264 + 1807700 -33.793528 -33.796602 0.0030737195 161.76711 -0.23922549 + 1807800 -33.794627 -33.802113 0.007486097 393.98661 -0.41138123 + 1807900 -33.795458 -33.798207 0.002748566 144.65458 -0.6022806 + 1808000 -33.793264 -33.801092 0.0078282765 411.99521 -0.51703231 + 1808100 -33.790026 -33.795272 0.0052460428 276.09455 -0.39240157 + 1808200 -33.785141 -33.798305 0.013164088 692.8142 0.15769231 + 1808300 -33.793442 -33.797826 0.004383711 230.7108 0.27669615 + 1808400 -33.795134 -33.800982 0.0058482448 307.78791 0.47965591 + 1808500 -33.795616 -33.79972 0.0041038999 215.98459 0.51745381 + 1808600 -33.794034 -33.800126 0.0060921346 320.62361 0.51242233 + 1808700 -33.789265 -33.797295 0.0080305931 422.64295 0.43295583 + 1808800 -33.78776 -33.796656 0.0088957977 468.1779 0.22083174 + 1808900 -33.794901 -33.800088 0.0051873593 273.00609 -0.072091678 + 1809000 -33.79607 -33.799839 0.0037682138 198.31773 -0.17903734 + 1809100 -33.794417 -33.800631 0.0062141293 327.04408 -0.17070325 + 1809200 -33.792402 -33.797686 0.0052840759 278.0962 -0.16043193 + 1809300 -33.787715 -33.799347 0.01163177 612.1697 0.084441253 + 1809400 -33.792938 -33.797275 0.0043372695 228.26662 0.02682094 + 1809500 -33.795999 -33.80167 0.0056711241 298.4662 0.13325345 + 1809600 -33.796408 -33.798617 0.0022096859 116.2938 0.12437815 + 1809700 -33.791296 -33.801367 0.010071162 530.03625 0.32425025 + 1809800 -33.790032 -33.794304 0.0042719726 224.83011 0.26124775 + 1809900 -33.793926 -33.802583 0.0086565758 455.58787 0.34485253 + 1810000 -33.797788 -33.799046 0.001257954 66.204996 0.14194214 + 1810100 -33.795179 -33.802702 0.0075221448 395.88377 0.23379011 + 1810200 -33.793869 -33.79523 0.0013609725 71.62677 0.023502206 + 1810300 -33.788844 -33.802655 0.013811097 726.86569 0.14245007 + 1810400 -33.793218 -33.794701 0.0014828907 78.043213 -0.17086816 + 1810500 -33.796189 -33.8036 0.0074107892 390.02322 -0.095481615 + 1810600 -33.797816 -33.798253 0.0004376292 23.032034 -0.22331914 + 1810700 -33.794286 -33.803606 0.009320302 490.51918 0.062675792 + 1810800 -33.793828 -33.794187 0.00035892003 18.889641 -0.0067618546 + 1810900 -33.789079 -33.803663 0.014584304 767.55893 0.44160829 + 1811000 -33.794405 -33.794693 0.00028874159 15.196212 0.30402574 + 1811100 -33.796996 -33.803891 0.0068955479 362.90654 0.4327091 + 1811200 -33.797927 -33.798039 0.00011186811 5.8875187 0.25853206 + 1811300 -33.792765 -33.803967 0.011202112 589.55716 0.3976625 + 1811400 -33.792874 -33.793261 0.00038661306 20.3471 -0.053568301 + 1811500 -33.79059 -33.803766 0.013175974 693.43978 0.030610781 + 1811600 -33.794585 -33.794704 0.00011845533 6.2341981 -0.34707923 + 1811700 -33.792428 -33.803594 0.011166588 587.68759 -0.19464924 + 1811800 -33.794698 -33.795082 0.00038389601 20.204105 -0.34550116 + 1811900 -33.792339 -33.803644 0.011304926 594.96819 0.013144176 + 1812000 -33.795951 -33.796533 0.00058247045 30.6549 -0.073238661 + 1812100 -33.797183 -33.803634 0.0064511311 339.51728 0.19509494 + 1812200 -33.798717 -33.799286 0.00056902657 29.947361 0.16147874 + 1812300 -33.794379 -33.803265 0.008885435 467.63252 0.38102865 + 1812400 -33.792886 -33.794546 0.0016606589 87.398998 0.31174926 + 1812500 -33.790954 -33.802447 0.011492696 604.85034 0.50368723 + 1812600 -33.794974 -33.796606 0.0016316875 85.87426 0.22757653 + 1812700 -33.795702 -33.802675 0.0069721559 366.93835 0.28170771 + 1812800 -33.799444 -33.800545 0.00110028 57.906758 0.065857963 + 1812900 -33.799978 -33.80316 0.0031821547 167.47396 0.041695173 + 1813000 -33.79948 -33.80112 0.0016391376 86.266348 -0.021524917 + 1813100 -33.795522 -33.801713 0.0061911711 325.83581 -0.0016478933 + 1813200 -33.792561 -33.797442 0.0048805778 256.86046 -0.099557219 + 1813300 -33.790562 -33.799439 0.0088765581 467.16533 -0.028395478 + 1813400 -33.793395 -33.798136 0.0047405459 249.4907 -0.1388264 + 1813500 -33.795756 -33.800656 0.0049002048 257.89341 -0.089608337 + 1813600 -33.796917 -33.800632 0.0037156348 195.55054 -0.028850769 + 1813700 -33.795165 -33.800156 0.0049909318 262.66829 0.072415325 + 1813800 -33.786262 -33.797512 0.011250263 592.09132 0.40756422 + 1813900 -33.78997 -33.797032 0.0070626997 371.70359 0.47105555 + 1814000 -33.794207 -33.800389 0.0061821297 325.35997 0.47588088 + 1814100 -33.795613 -33.798973 0.0033600966 176.83889 0.42088384 + 1814200 -33.794146 -33.800854 0.0067081382 353.04333 0.3859885 + 1814300 -33.790988 -33.795876 0.0048881267 257.25775 0.14433117 + 1814400 -33.786207 -33.799849 0.013642223 717.97801 0.087537629 + 1814500 -33.793116 -33.796938 0.0038225576 201.1778 -0.34674981 + 1814600 -33.793703 -33.801726 0.0080223342 422.20829 -0.34229427 + 1814700 -33.794937 -33.797235 0.0022976218 120.92179 -0.3883061 + 1814800 -33.792446 -33.801844 0.0093982891 494.62357 -0.12881488 + 1814900 -33.792284 -33.794819 0.0025355246 133.4424 -0.054163906 + 1815000 -33.788452 -33.801942 0.013490341 709.9846 0.4888413 + 1815100 -33.794397 -33.79633 0.0019333535 101.75067 0.41892431 + 1815200 -33.795731 -33.803137 0.0074062337 389.78347 0.5991726 + 1815300 -33.796814 -33.797707 0.00089348216 47.023169 0.44988174 + 1815400 -33.791603 -33.803041 0.011437861 601.96444 0.49077298 + 1815500 -33.788619 -33.79015 0.0015311309 80.582056 0.0052523091 + 1815600 -33.78773 -33.803197 0.015466745 814.00097 -0.056500368 + 1815700 -33.796343 -33.79686 0.00051712995 27.216088 -0.57083827 + 1815800 -33.795154 -33.803477 0.0083233453 438.05024 -0.39584435 + 1815900 -33.795581 -33.796037 0.0004561589 24.007236 -0.41725866 + 1816000 -33.789478 -33.803769 0.01429133 752.13994 0.084183556 + 1816100 -33.79188 -33.792722 0.00084121462 44.272375 0.1840374 + 1816200 -33.794549 -33.8038 0.0092513696 486.89133 0.59494336 + 1816300 -33.79782 -33.797848 2.8234305e-05 1.4859463 0.45848472 + 1816400 -33.794802 -33.803736 0.0089342945 470.20395 0.65157937 + 1816500 -33.794483 -33.794694 0.00021062759 11.085142 0.33919928 + 1816600 -33.790426 -33.803911 0.013485263 709.71737 0.34156083 + 1816700 -33.793915 -33.794363 0.00044780811 23.567741 -0.1481596 + 1816800 -33.792076 -33.803811 0.01173547 617.62731 -0.14038462 + 1816900 -33.795066 -33.795404 0.0003383548 17.807312 -0.51224509 + 1817000 -33.793267 -33.803502 0.010234894 538.65332 -0.28282367 + 1817100 -33.796188 -33.796577 0.0003892149 20.484033 -0.41826768 + 1817200 -33.795489 -33.803456 0.0079678862 419.34275 -0.1120836 + 1817300 -33.796728 -33.797588 0.00086023288 45.273289 -0.028638461 + 1817400 -33.791909 -33.803225 0.011316172 595.56002 0.40977597 + 1817500 -33.790419 -33.79279 0.0023708853 124.77758 0.53067312 + 1817600 -33.790705 -33.802297 0.011592181 610.08617 0.95581481 + 1817700 -33.797124 -33.798264 0.0011403124 60.013622 0.72077196 + 1817800 -33.795515 -33.80257 0.0070552353 371.31074 0.73007552 + 1817900 -33.794286 -33.796761 0.0024750175 130.25796 0.37411421 + 1818000 -33.790212 -33.801633 0.01142031 601.04071 0.090816482 + 1818100 -33.792622 -33.79605 0.0034275935 180.39119 -0.49460102 + 1818200 -33.796598 -33.802213 0.0056151231 295.51892 -0.68050638 + 1818300 -33.797622 -33.799891 0.0022690524 119.4182 -0.76805046 + 1818400 -33.79505 -33.801325 0.0062753844 330.26789 -0.46591942 + 1818500 -33.792004 -33.797183 0.0051792047 272.57692 -0.068032244 + 1818600 -33.791264 -33.799623 0.0083590039 439.92692 0.48952391 + 1818700 -33.793365 -33.798448 0.0050826031 267.49287 0.86366149 + 1818800 -33.793684 -33.799915 0.0062313754 327.95173 1.0867629 + 1818900 -33.794066 -33.79933 0.0052639096 277.03487 1.0610697 + 1819000 -33.793865 -33.799469 0.0056033988 294.90188 0.90491891 + 1819100 -33.793611 -33.799737 0.0061261039 322.41138 0.53774432 + 1819200 -33.793813 -33.79892 0.0051071275 268.78356 0.072160764 + 1819300 -33.793471 -33.800191 0.006720076 353.6716 -0.29962317 + 1819400 -33.794022 -33.798372 0.0043498438 228.9284 -0.70658104 + 1819500 -33.794201 -33.800952 0.0067504463 355.26997 -0.81051854 + 1819600 -33.796648 -33.799398 0.0027499081 144.72521 -0.83389145 + 1819700 -33.796936 -33.802272 0.0053361161 280.83503 -0.60323368 + 1819800 -33.796274 -33.798666 0.0023922184 125.90032 -0.29077578 + 1819900 -33.789441 -33.801245 0.011803867 621.227 0.5453813 + 1820000 -33.791244 -33.794643 0.003399821 178.92955 1.0274486 + 1820100 -33.792161 -33.801851 0.0096907021 510.01301 1.5935089 + 1820200 -33.794453 -33.7963 0.0018470393 97.208032 1.521787 + 1820300 -33.79271 -33.802351 0.0096416116 507.42942 1.429625 + 1820400 -33.794354 -33.796184 0.0018297364 96.297395 0.81598516 + 1820500 -33.794112 -33.803196 0.0090834751 478.05519 0.3540341 + 1820600 -33.798519 -33.799299 0.00078030571 41.066793 -0.31034121 + 1820700 -33.797695 -33.803589 0.0058944183 310.21798 -0.47109569 + 1820800 -33.796403 -33.796792 0.00038932106 20.48962 -0.78758357 + 1820900 -33.790945 -33.803467 0.012522186 659.03148 -0.66128752 + 1821000 -33.793459 -33.793805 0.00034622443 18.221483 -0.80873854 + 1821100 -33.792383 -33.803748 0.011365659 598.16447 -0.38306463 + 1821200 -33.797146 -33.797355 0.00020875245 10.986455 -0.33410049 + 1821300 -33.798173 -33.803971 0.0057980019 305.14367 0.043153255 + 1821400 -33.799423 -33.799509 8.6428453e-05 4.5486524 0.11061827 + 1821500 -33.791766 -33.803968 0.012202026 642.18174 0.64453659 + 1821600 -33.792363 -33.792707 0.00034415083 18.112351 0.74243159 + 1821700 -33.790991 -33.803643 0.012651399 665.83183 1.1458929 + 1821800 -33.796288 -33.796409 0.00012188023 6.4144479 0.87899287 + 1821900 -33.795558 -33.803607 0.0080493623 423.63076 0.86746194 + 1822000 -33.796168 -33.796807 0.00063873873 33.616249 0.38006874 + 1822100 -33.787351 -33.803427 0.016076479 846.09073 0.16574438 + 1822200 -33.791005 -33.792439 0.0014340531 75.472937 -0.83991527 + 1822300 -33.792542 -33.802986 0.010443871 549.65163 -1.0592086 + 1822400 -33.795642 -33.796523 0.00088070634 46.350789 -1.2851775 + 1822500 -33.793343 -33.802773 0.0094303519 496.31101 -0.89459229 + 1822600 -33.793341 -33.795346 0.0020048232 105.51206 -0.56825208 + 1822700 -33.786407 -33.802075 0.015667856 824.58527 0.49937939 + 1822800 -33.789437 -33.792507 0.0030698296 161.5624 1.1306154 + 1822900 -33.792928 -33.802041 0.0091126357 479.58989 1.7015452 + 1823000 -33.795712 -33.797587 0.0018756977 98.716298 1.6220706 + 1823100 -33.793945 -33.801958 0.008013209 421.72804 1.4486547 + 1823200 -33.791809 -33.795848 0.0040394848 212.59448 0.74795687 + 1823300 -33.786074 -33.800189 0.014115279 742.87456 -0.012040492 + 1823400 -33.793567 -33.797044 0.0034773824 183.01153 -1.2056555 + 1823500 -33.795092 -33.801281 0.0061888516 325.71374 -1.5073499 + 1823600 -33.795303 -33.7987 0.0033970444 178.78341 -1.532419 + 1823700 -33.792732 -33.800298 0.0075657224 398.17722 -1.0702963 + 1823800 -33.788749 -33.796336 0.0075877552 399.33679 -0.25190099 + 1823900 -33.789795 -33.798701 0.0089055022 468.68864 0.74893071 + 1824000 -33.796394 -33.800267 0.0038728057 203.82231 1.1422121 + 1824100 -33.796401 -33.80048 0.0040787481 214.66087 1.3462008 + 1824200 -33.793332 -33.799442 0.0061099846 321.56304 1.3091441 + 1824300 -33.790219 -33.797268 0.00704948 371.00784 0.90025722 + 1824400 -33.790974 -33.799342 0.0083679007 440.39515 0.3198946 + 1824500 -33.796244 -33.799854 0.0036103622 190.01014 -0.26618267 + 1824600 -33.796442 -33.801623 0.0051812619 272.68519 -0.50423504 + 1824700 -33.795554 -33.798605 0.003050187 160.52862 -0.68211592 + 1824800 -33.790528 -33.800489 0.0099611727 524.24763 -0.56694513 + 1824900 -33.790814 -33.795058 0.004244311 223.3743 -0.5525649 + 1825000 -33.794085 -33.802037 0.0079517795 418.49506 -0.22530559 + 1825100 -33.797496 -33.799237 0.0017409016 91.622096 -0.15907423 + 1825200 -33.795683 -33.80267 0.0069867477 367.7063 0.17196699 + 1825300 -33.795226 -33.796944 0.0017177112 90.401608 0.33250449 + 1825400 -33.79072 -33.802347 0.01162658 611.89652 0.76665646 + 1825500 -33.792587 -33.794395 0.0018085703 95.183443 0.72820141 + 1825600 -33.796258 -33.803372 0.0071134943 374.37686 0.84854996 + 1825700 -33.79875 -33.799282 0.00053172427 27.984174 0.57936094 + 1825800 -33.795274 -33.803488 0.0082144889 432.32122 0.48942013 + 1825900 -33.79381 -33.794668 0.00085857805 45.186197 -0.091897148 + 1826000 -33.790069 -33.803556 0.013487755 709.84851 -0.39349478 + 1826100 -33.794201 -33.794655 0.00045372528 23.879157 -1.0308015 + 1826200 -33.794567 -33.80361 0.0090424148 475.89423 -0.96744748 + 1826300 -33.799803 -33.799893 9.0073964e-05 4.7405124 -1.0627031 + 1826400 -33.799009 -33.803836 0.0048272089 254.0517 -0.68985769 + 1826500 -33.798194 -33.798715 0.00052152803 27.447555 -0.27563183 + 1826600 -33.793738 -33.803961 0.010222475 537.99974 0.70573944 + 1826700 -33.794158 -33.795104 0.0009458431 49.778879 1.4059395 + 1826800 -33.791277 -33.803087 0.011809242 621.50985 2.2643843 + 1826900 -33.794405 -33.794585 0.00018060604 9.505135 2.2527887 + 1827000 -33.794655 -33.802847 0.008191855 431.13002 2.2176534 + 1827100 -33.797248 -33.798003 0.00075555276 39.764068 1.5049664 + 1827200 -33.794524 -33.803546 0.0090216454 474.80115 0.83345246 + 1827300 -33.791192 -33.794851 0.0036593766 192.58973 -0.53331819 + 1827400 -33.789028 -33.80232 0.013292125 699.55266 -1.8261835 + 1827500 -33.796522 -33.797416 0.00089427605 47.064951 -2.7934875 + 1827600 -33.795323 -33.801718 0.0063948424 336.55485 -2.6344403 + 1827700 -33.794229 -33.796817 0.0025883578 136.22296 -2.045299 + 1827800 -33.790785 -33.802108 0.011322362 595.88581 -0.51146709 + 1827900 -33.79536 -33.798472 0.0031123027 163.79772 0.78080151 + 1828000 -33.79822 -33.802565 0.0043452894 228.6887 1.5562918 + 1828100 -33.798043 -33.79999 0.0019477099 102.50623 1.8506408 + 1828200 -33.795279 -33.801341 0.0060628458 319.08216 1.9102726 + 1828300 -33.792846 -33.797551 0.0047052265 247.63187 1.387317 + 1828400 -33.791619 -33.800052 0.0084330793 443.82544 0.67715069 + 1828500 -33.79457 -33.798932 0.0043621336 229.5752 -0.28293067 + 1828600 -33.797691 -33.801373 0.0036825128 193.80736 -0.8515324 + 1828700 -33.798529 -33.801358 0.0028280404 148.83725 -1.0318129 + 1828800 -33.797343 -33.800961 0.0036182342 190.42444 -0.9851936 + 1828900 -33.794369 -33.800644 0.0062745788 330.22549 -0.63350731 + 1829000 -33.793174 -33.79868 0.0055055062 289.74988 -0.077540446 + 1829100 -33.792705 -33.800238 0.0075324455 396.42589 0.54874764 + 1829200 -33.79599 -33.798948 0.0029582885 155.69208 0.89101342 + 1829300 -33.797897 -33.801803 0.003906247 205.5823 1.0590742 + 1829400 -33.797345 -33.799537 0.0021915692 115.34033 0.91727304 + 1829500 -33.792281 -33.801872 0.0095909028 504.76066 0.72572735 + 1829600 -33.793404 -33.79748 0.0040767397 214.55517 0.075972365 + 1829700 -33.793943 -33.802316 0.0083733704 440.68302 -0.36417116 + 1829800 -33.796042 -33.797664 0.0016217365 85.350543 -0.82283551 + 1829900 -33.793252 -33.801788 0.0085365597 449.27152 -0.82097927 + 1830000 -33.79003 -33.791873 0.0018432496 97.008581 -0.89746846 + 1830100 -33.787064 -33.802239 0.015175673 798.68212 -0.30091482 + 1830200 -33.794275 -33.795809 0.0015346037 80.764824 -0.25945899 + 1830300 -33.794201 -33.803395 0.0091937621 483.8595 0.18105722 + 1830400 -33.795933 -33.796953 0.0010199178 53.677362 0.29498898 + 1830500 -33.792546 -33.803462 0.010916423 574.52163 0.70231141 + 1830600 -33.790254 -33.791432 0.0011778463 61.989002 0.65159149 + 1830700 -33.78479 -33.802907 0.018116596 953.4603 1.0751262 + 1830800 -33.793857 -33.794171 0.00031415032 16.533451 0.60568725 + 1830900 -33.792955 -33.803004 0.010049725 528.90805 0.65027826 + 1831000 -33.79483 -33.79544 0.0006104073 32.125192 0.23087173 + 1831100 -33.791966 -33.803764 0.011797796 620.90747 0.15831934 + 1831200 -33.795408 -33.796368 0.00096044872 50.547559 -0.31785332 + 1831300 -33.796411 -33.803878 0.0074679004 393.02894 -0.32695753 + 1831400 -33.798447 -33.798706 0.00025889826 13.625584 -0.51012051 + 1831500 -33.793759 -33.803609 0.0098492964 518.35968 -0.20128834 + 1831600 -33.792032 -33.792609 0.0005779458 30.416772 -0.1169689 + 1831700 -33.789769 -33.803115 0.013346734 702.42672 0.45032556 + 1831800 -33.794771 -33.795272 0.0005009495 26.364526 0.4445965 + 1831900 -33.794627 -33.803258 0.0086316234 454.27464 0.71756564 + 1832000 -33.798215 -33.798855 0.00063944506 33.653423 0.52628905 + 1832100 -33.799487 -33.803599 0.0041119412 216.4078 0.51451665 + 1832200 -33.799618 -33.800585 0.00096739957 50.913376 0.28436394 + 1832300 -33.79569 -33.80309 0.0074003768 389.47523 0.096400647 + 1832400 -33.794885 -33.797386 0.0025013162 131.64204 -0.40982562 + 1832500 -33.792312 -33.801541 0.0092286298 485.69456 -0.65355994 + 1832600 -33.791956 -33.794943 0.0029868732 157.19647 -1.032891 + 1832700 -33.788634 -33.799965 0.011330333 596.3053 -0.85509928 + 1832800 -33.791355 -33.795193 0.0038387946 202.03234 -0.8019404 + 1832900 -33.794235 -33.801365 0.0071293666 375.2122 -0.44725821 + 1833000 -33.796636 -33.799761 0.0031253514 164.48446 -0.18714792 + 1833100 -33.795529 -33.801658 0.0061289823 322.56287 0.22752507 + 1833200 -33.790645 -33.797483 0.0068377407 359.8642 0.64450534 + 1833300 -33.785367 -33.797236 0.011869281 624.66967 1.2743591 + 1833400 -33.791441 -33.796987 0.0055452786 291.84307 1.405493 + 1833500 -33.792299 -33.798195 0.005895356 310.26733 1.3744892 + 1833600 -33.792556 -33.798323 0.0057667678 303.49985 1.1062049 + 1833700 -33.793135 -33.799132 0.005996648 315.59823 0.64859772 + 1833800 -33.796633 -33.801407 0.0047748604 251.29664 0.15366733 + 1833900 -33.798618 -33.801422 0.002803586 147.55023 -0.21535288 + 1834000 -33.797255 -33.802049 0.0047942644 252.31786 -0.42246243 + 1834100 -33.792085 -33.797326 0.0052409739 275.82778 -0.63112948 + 1834200 -33.790801 -33.800144 0.0093427017 491.69806 -0.71156998 + 1834300 -33.793479 -33.796367 0.0028873604 151.9592 -0.80821353 + 1834400 -33.793815 -33.800723 0.0069084452 363.58531 -0.51918375 + 1834500 -33.794986 -33.79745 0.0024639261 129.67423 -0.29894265 + 1834600 -33.792696 -33.802121 0.0094242193 495.98825 0.25001472 + 1834700 -33.793618 -33.797288 0.003669541 193.12467 0.54786235 + 1834800 -33.795042 -33.803003 0.0079611176 418.98652 0.89542136 + 1834900 -33.798012 -33.79912 0.0011078249 58.303836 0.82307416 + 1835000 -33.796096 -33.802745 0.00664924 349.94357 0.82464865 + 1835100 -33.79262 -33.793894 0.0012740237 67.050729 0.33469756 + 1835200 -33.788892 -33.802683 0.013790557 725.78472 0.0016067037 + 1835300 -33.793834 -33.794832 0.00099819375 52.534047 -0.74146984 + 1835400 -33.794478 -33.803218 0.0087406102 460.01052 -0.83382663 + 1835500 -33.796763 -33.797418 0.00065543715 34.495072 -0.9870853 + 1835600 -33.7919 -33.803623 0.011723032 616.97271 -0.52790403 + 1835700 -33.788828 -33.791383 0.002554755 134.45448 -0.18701647 + 1835800 -33.790582 -33.803267 0.012685215 667.61158 0.61851999 + 1835900 -33.795865 -33.79604 0.00017563116 9.2433114 0.69558879 + 1836000 -33.793746 -33.802874 0.0091278443 480.3903 1.0199319 + 1836100 -33.793437 -33.794138 0.00070054394 36.869003 0.84826534 + 1836200 -33.783542 -33.803617 0.020074558 1056.5061 1.0169025 + 1836300 -33.791624 -33.793086 0.001462659 76.978438 0.21090729 + 1836400 -33.794302 -33.80356 0.0092579502 487.23766 0.11104879 + 1836500 -33.796527 -33.796968 0.00044172449 23.247566 -0.27890669 + 1836600 -33.793024 -33.803223 0.010198573 536.74179 -0.23446228 + 1836700 -33.791412 -33.792636 0.0012236766 64.401007 -0.50056224 + 1836800 -33.787548 -33.802784 0.015235335 801.82211 -0.21940081 + 1836900 -33.796535 -33.797326 0.00079072886 41.615355 -0.43640768 + 1837000 -33.795928 -33.803141 0.0072129338 379.61027 -0.16332584 + 1837100 -33.795716 -33.79739 0.001674126 88.107756 -0.078456453 + 1837200 -33.791104 -33.802573 0.011469165 603.61193 0.41768712 + 1837300 -33.791143 -33.794252 0.0031092921 163.63927 0.56030912 + 1837400 -33.793887 -33.801903 0.0080161024 421.88032 0.82515111 + 1837500 -33.797554 -33.799053 0.0014982649 78.852343 0.69247981 + 1837600 -33.795593 -33.802008 0.0064151183 337.62195 0.64771416 + 1837700 -33.792177 -33.796627 0.0044497683 234.18733 0.28227359 + 1837800 -33.79023 -33.800814 0.010583999 557.02641 -0.0485627 + 1837900 -33.793655 -33.79791 0.0042555167 223.96405 -0.56015449 + 1838000 -33.793566 -33.80062 0.0070544753 371.27074 -0.69918525 + 1838100 -33.794177 -33.798218 0.004040442 212.64486 -0.77417248 + 1838200 -33.79296 -33.799665 0.0067051684 352.88703 -0.55345423 + 1838300 -33.788959 -33.79645 0.0074910573 394.24766 -0.1582372 + 1838400 -33.787348 -33.79744 0.010091785 531.12165 0.43125711 + 1838500 -33.794475 -33.799787 0.0053113925 279.53385 0.70153445 + 1838600 -33.795702 -33.800246 0.0045441869 239.1565 0.84173201 + 1838700 -33.794914 -33.800403 0.0054887913 288.87019 0.84036015 + 1838800 -33.793106 -33.798342 0.005235796 275.55527 0.64514165 + 1838900 -33.78517 -33.797356 0.012186434 641.36116 0.39366761 + 1839000 -33.788062 -33.794961 0.0068984895 363.06135 -0.24959559 + 1839100 -33.79447 -33.800824 0.0063542282 334.41736 -0.53161551 + 1839200 -33.795214 -33.798439 0.0032255736 169.75906 -0.64716822 + 1839300 -33.792929 -33.801247 0.0083182715 437.78321 -0.46774536 + 1839400 -33.792677 -33.796723 0.0040459698 212.93578 -0.33899479 + 1839500 -33.792172 -33.801719 0.0095472857 502.46513 0.1151227 + 1839600 -33.796603 -33.798606 0.002003422 105.43832 0.20209423 + 1839700 -33.796883 -33.802633 0.0057506498 302.65157 0.42877692 + 1839800 -33.796426 -33.797716 0.0012899469 67.888756 0.44571363 + 1839900 -33.788556 -33.802164 0.013608821 716.22011 0.72497006 + 1840000 -33.791792 -33.79401 0.002218303 116.74731 0.42188875 + 1840100 -33.793106 -33.803158 0.010052481 529.05312 0.47825772 + 1840200 -33.796537 -33.797436 0.0008986207 47.293606 0.12950353 + 1840300 -33.794914 -33.803377 0.008463053 445.40293 0.1302591 + 1840400 -33.793163 -33.793657 0.00049423355 26.011071 -0.17854953 + 1840500 -33.784953 -33.803228 0.018275778 961.83791 -0.053436425 + 1840600 -33.792415 -33.793055 0.00063927485 33.644465 -0.56297072 + 1840700 -33.793051 -33.803712 0.0106617 561.11577 -0.34828565 + 1840800 -33.795796 -33.796073 0.0002770269 14.579679 -0.46541429 + 1840900 -33.793102 -33.803902 0.010799887 568.38841 -0.04049961 + 1841000 -33.793489 -33.793735 0.00024594419 12.943823 0.029376726 + 1841100 -33.78498 -33.803849 0.018868905 993.05363 0.76655669 + 1841200 -33.791865 -33.791988 0.0001226093 6.452818 0.69991906 + 1841300 -33.793449 -33.803724 0.010274908 540.75924 0.99712687 + 1841400 -33.796087 -33.796172 8.4997162e-05 4.4733248 0.69656681 + 1841500 -33.79286 -33.803863 0.011003309 579.09432 0.70051526 + 1841600 -33.792154 -33.792869 0.00071445474 37.601115 0.10872744 + 1841700 -33.783264 -33.803721 0.020456774 1076.6218 -0.0463651 + 1841800 -33.793399 -33.793752 0.00035314334 18.585619 -0.91567071 + 1841900 -33.793667 -33.803365 0.0096975709 510.37451 -0.8582465 + 1842000 -33.795656 -33.796112 0.00045549293 23.972187 -0.95072064 + 1842100 -33.792089 -33.803344 0.011254917 592.33626 -0.39379049 + 1842200 -33.790865 -33.792649 0.0017844369 93.91332 -0.05783461 + 1842300 -33.787318 -33.802869 0.015550377 818.40246 0.87984915 + 1842400 -33.796076 -33.796999 0.00092259636 48.555423 0.98322425 + 1842500 -33.795442 -33.802996 0.0075537866 397.54905 1.202567 + 1842600 -33.795531 -33.79697 0.0014384873 75.706302 0.94384622 + 1842700 -33.790157 -33.802304 0.012147005 639.28604 0.7858587 + 1842800 -33.788411 -33.791941 0.0035298646 185.77363 -0.077246723 + 1842900 -33.792779 -33.802086 0.0093066579 489.80111 -0.53452664 + 1843000 -33.79704 -33.798792 0.0017514921 92.179466 -0.88913083 + 1843100 -33.795399 -33.802187 0.0067879976 357.24626 -0.79305214 + 1843200 -33.792619 -33.796486 0.0038672919 203.53213 -0.60273356 + 1843300 -33.788944 -33.800284 0.011339803 596.8037 0.020525906 + 1843400 -33.79403 -33.797615 0.0035849354 188.67195 0.33937882 + 1843500 -33.796721 -33.801694 0.0049723274 261.68916 0.63686755 + 1843600 -33.796474 -33.799777 0.0033029902 173.83343 0.70492413 + 1843700 -33.794017 -33.800339 0.0063216604 332.70335 0.73091704 + 1843800 -33.790981 -33.797656 0.0066753569 351.31808 0.57913618 + 1843900 -33.791211 -33.798761 0.0075501988 397.36023 0.29797357 + 1844000 -33.797536 -33.80126 0.0037240563 195.99376 -0.023968197 + 1844100 -33.797905 -33.80095 0.0030448525 160.24787 -0.15196488 + 1844200 -33.795025 -33.800713 0.0056877622 299.34185 -0.20810203 + 1844300 -33.792844 -33.797637 0.0047926047 252.23051 -0.27552511 + 1844400 -33.791013 -33.800035 0.0090219855 474.81905 -0.15871461 + 1844500 -33.793307 -33.797495 0.0041880656 220.41416 -0.20999907 + 1844600 -33.795608 -33.801878 0.0062699647 329.98265 -0.047814038 + 1844700 -33.799873 -33.801232 0.0013592869 71.538058 -0.050898622 + 1844800 -33.799424 -33.803083 0.0036589558 192.56758 0.058667066 + 1844900 -33.798249 -33.799529 0.0012802214 67.376909 0.11037956 + 1845000 -33.793514 -33.802526 0.0090119168 474.28914 0.40292431 + 1845100 -33.793289 -33.795236 0.0019469837 102.46801 0.34892973 + 1845200 -33.790636 -33.802541 0.011904613 626.52917 0.61602579 + 1845300 -33.795304 -33.796588 0.0012837851 67.564462 0.37901882 + 1845400 -33.79722 -33.803399 0.006178838 325.18673 0.38986246 + 1845500 -33.797988 -33.798526 0.00053715488 28.269982 0.17108021 + 1845600 -33.794051 -33.803547 0.0094960429 499.76827 0.18615608 + 1845700 -33.794817 -33.795591 0.00077382391 40.725662 -0.21925663 + 1845800 -33.792144 -33.803642 0.01149795 605.12688 -0.16078235 + 1845900 -33.794716 -33.795047 0.00033028897 17.382814 -0.48466182 + 1846000 -33.793935 -33.803624 0.0096886641 509.90575 -0.29641665 + 1846100 -33.798238 -33.798327 8.8665611e-05 4.666392 -0.39712125 + 1846200 -33.797081 -33.80382 0.0067395881 354.69851 -0.11617533 + 1846300 -33.79542 -33.796072 0.00065194476 34.311271 -0.0066794291 + 1846400 -33.789331 -33.803909 0.014578426 767.24953 0.65614569 + 1846500 -33.793546 -33.794172 0.00062616177 32.954336 0.66689081 + 1846600 -33.792909 -33.803285 0.010376036 546.08154 0.99995485 + 1846700 -33.795685 -33.795868 0.00018259298 9.6097054 0.76439835 + 1846800 -33.792404 -33.803305 0.010901125 573.71651 0.79155152 + 1846900 -33.790131 -33.791779 0.0016480041 86.732988 0.23795643 + 1847000 -33.788389 -33.803348 0.01495934 787.29672 0.02745022 + 1847100 -33.796042 -33.796828 0.00078599495 41.366213 -0.58177559 + 1847200 -33.795147 -33.803225 0.0080777873 425.12674 -0.53855474 + 1847300 -33.795471 -33.79652 0.001049251 55.221144 -0.65231589 + 1847400 -33.788559 -33.802561 0.01400119 736.87014 -0.17309918 + 1847500 -33.787803 -33.790492 0.0026887618 141.50714 0.049878524 + 1847600 -33.789696 -33.802281 0.012585759 662.37725 0.59329887 + 1847700 -33.793891 -33.7958 0.0019081472 100.42409 0.58958656 + 1847800 -33.793599 -33.802323 0.008724207 459.14723 0.82290734 + 1847900 -33.796227 -33.798061 0.0018342856 96.536813 0.604966 + 1848000 -33.795164 -33.802315 0.0071510893 376.35545 0.54783769 + 1848100 -33.793517 -33.79694 0.003423345 180.16759 0.21071419 + 1848200 -33.788148 -33.800479 0.01233077 648.95745 -0.042638165 + 1848300 -33.791838 -33.795958 0.0041203592 216.85083 -0.61907935 + 1848400 -33.794838 -33.801211 0.0063726016 335.38434 -0.7440224 + 1848500 -33.795726 -33.799002 0.003276012 172.41359 -0.78479565 + 1848600 -33.794013 -33.800594 0.00658093 346.34848 -0.4775074 + 1848700 -33.791599 -33.797747 0.0061480713 323.56751 -0.070543229 + 1848800 -33.789564 -33.798683 0.0091193277 479.94208 0.48392311 + 1848900 -33.794287 -33.799411 0.0051236352 269.65235 0.82785056 + 1849000 -33.796431 -33.800522 0.0040918857 215.35229 0.94887769 + 1849100 -33.796089 -33.800596 0.0045066403 237.18046 0.88873178 + 1849200 -33.793506 -33.798583 0.005076426 267.16777 0.66372128 + 1849300 -33.788499 -33.7986 0.010101078 531.61075 0.239684 + 1849400 -33.791041 -33.797006 0.0059647763 313.92085 -0.41627634 + 1849500 -33.792817 -33.800507 0.0076907916 404.7595 -0.71851587 + 1849600 -33.794633 -33.798222 0.0035885732 188.86341 -0.94776541 + 1849700 -33.794672 -33.801463 0.006791132 357.41122 -0.80970154 + 1849800 -33.795887 -33.798497 0.0026106736 137.39742 -0.61414276 + 1849900 -33.794609 -33.802044 0.007434829 391.28842 -0.13977529 + 1850000 -33.794289 -33.796951 0.0026625528 140.12778 0.24130286 + 1850100 -33.789551 -33.801595 0.012044352 633.88349 1.0027311 + 1850200 -33.791892 -33.794689 0.002796864 147.19646 1.2314904 + 1850300 -33.79534 -33.802697 0.0073576805 387.22816 1.4510575 + 1850400 -33.79745 -33.798512 0.0010621588 55.900469 1.1823516 + 1850500 -33.794523 -33.802989 0.0084664027 445.57922 0.91067432 + 1850600 -33.794206 -33.795784 0.0015782492 83.061847 0.10636683 + 1850700 -33.791517 -33.803173 0.011656317 613.46155 -0.46309398 + 1850800 -33.794232 -33.795223 0.00099138332 52.17562 -1.323692 + 1850900 -33.792722 -33.803132 0.010409937 547.86572 -1.425974 + 1851000 -33.795313 -33.795753 0.00043989293 23.151173 -1.5833952 + 1851100 -33.794349 -33.803549 0.0091995482 484.16401 -1.0643661 + 1851200 -33.797194 -33.797649 0.00045496443 23.944372 -0.6864001 + 1851300 -33.795334 -33.803916 0.0085824245 451.68534 0.10921513 + 1851400 -33.794526 -33.795239 0.00071233076 37.489332 0.67332012 + 1851500 -33.787434 -33.803561 0.01612745 848.77332 1.8873351 + 1851600 -33.792296 -33.792528 0.00023181492 12.200213 2.1805699 + 1851700 -33.794869 -33.803074 0.0082047461 431.80847 2.413998 + 1851800 -33.796751 -33.797138 0.00038701108 20.368048 1.9015539 + 1851900 -33.793193 -33.803713 0.010519849 553.65027 1.2628886 + 1852000 -33.793306 -33.795233 0.0019271809 101.42581 -0.14531249 + 1852100 -33.792211 -33.803375 0.011163682 587.53461 -1.1813848 + 1852200 -33.798021 -33.798364 0.00034291119 18.04711 -2.0921212 + 1852300 -33.796926 -33.802935 0.0060094373 316.27132 -2.0480754 + 1852400 -33.79504 -33.796494 0.0014546786 76.558436 -1.6772544 + 1852500 -33.790813 -33.802979 0.012165355 640.25176 -0.43413119 + 1852600 -33.794094 -33.796456 0.0023618416 124.30162 0.58227172 + 1852700 -33.794169 -33.802578 0.0084095484 442.58703 1.6269275 + 1852800 -33.796492 -33.797856 0.0013641189 71.792361 1.9488208 + 1852900 -33.794396 -33.80204 0.0076443544 402.31555 2.1610299 + 1853000 -33.790433 -33.794152 0.0037184757 195.70006 1.663364 + 1853100 -33.787999 -33.801065 0.013066166 687.66068 0.91902532 + 1853200 -33.795168 -33.797982 0.0028141142 148.10432 -0.11475538 + 1853300 -33.795287 -33.801952 0.0066644114 350.74203 -0.61141614 + 1853400 -33.795356 -33.798429 0.0030732528 161.74256 -1.1022851 + 1853500 -33.792886 -33.800617 0.0077306892 406.85928 -1.1725626 + 1853600 -33.787342 -33.794376 0.0070343152 370.20974 -1.1217421 + 1853700 -33.780475 -33.796254 0.0157784 830.4031 -0.52399103 + 1853800 -33.792036 -33.797497 0.0054611498 287.41544 -0.23456135 + 1853900 -33.793467 -33.800125 0.0066579008 350.39938 0.14330214 + 1854000 -33.795465 -33.799806 0.0043407162 228.44802 0.37984232 + 1854100 -33.795661 -33.800409 0.0047477624 249.8705 0.60311132 + 1854200 -33.793879 -33.799657 0.0057782209 304.10261 0.70020372 + 1854300 -33.790277 -33.79731 0.007032466 370.11241 0.68953279 + 1854400 -33.788536 -33.79803 0.0094937102 499.6455 0.58777979 + 1854500 -33.794375 -33.798979 0.0046038329 242.29562 0.25507846 + 1854600 -33.79548 -33.801146 0.0056662838 298.21146 0.11314976 + 1854700 -33.795208 -33.798737 0.0035298183 185.77119 -0.094843668 + 1854800 -33.791227 -33.800436 0.0092084572 484.63289 -0.15990579 + 1854900 -33.789995 -33.794928 0.0049339059 259.66707 -0.36279295 + 1855000 -33.791374 -33.80107 0.0096957396 510.27813 -0.31085755 + 1855100 -33.796349 -33.798657 0.0023086043 121.49978 -0.43650023 + 1855200 -33.795831 -33.80242 0.006589081 346.77745 -0.20166369 + 1855300 -33.795351 -33.797338 0.0019870837 104.57844 -0.074331867 + 1855400 -33.787819 -33.801617 0.013798683 726.21235 0.49707304 + 1855500 -33.790064 -33.792953 0.0028890362 152.0474 0.67119169 + 1855600 -33.794801 -33.802966 0.0081650354 429.71853 0.94082949 + 1855700 -33.796807 -33.797777 0.00097014107 51.057659 0.7602368 + 1855800 -33.793239 -33.80304 0.0098009846 515.81708 0.76563864 + 1855900 -33.792807 -33.794056 0.0012496032 65.765503 0.20898214 + 1856000 -33.789209 -33.803231 0.014021357 737.93154 -0.011386807 + 1856100 -33.795446 -33.796199 0.00075357701 39.660086 -0.6245608 + 1856200 -33.796216 -33.803643 0.0074277426 390.91547 -0.62296414 + 1856300 -33.797163 -33.797375 0.00021194061 11.154245 -0.71138243 + 1856400 -33.793237 -33.803775 0.010537343 554.57096 -0.24440689 + 1856500 -33.794393 -33.794712 0.00031953197 16.816683 -0.090906695 + 1856600 -33.791753 -33.803938 0.012185361 641.30465 0.57942741 + 1856700 -33.794744 -33.794877 0.0001328932 6.9940508 0.68262877 + 1856800 -33.792619 -33.803859 0.011240185 591.56093 1.0720232 + 1856900 -33.795135 -33.795157 2.1986396e-05 1.1571244 0.85898723 + 1857000 -33.793485 -33.803854 0.010369079 545.71537 0.91123881 + 1857100 -33.796772 -33.796919 0.00014698303 7.7355859 0.40299763 + 1857200 -33.794691 -33.80391 0.0092189355 485.18435 0.27260269 + 1857300 -33.794673 -33.795171 0.00049816042 26.217738 -0.28709116 + 1857400 -33.788807 -33.803615 0.014808106 779.33743 -0.43645848 + 1857500 -33.791882 -33.792442 0.000560184 29.481984 -1.0347803 + 1857600 -33.794571 -33.803304 0.0087334249 459.63236 -0.95524213 + 1857700 -33.797397 -33.797994 0.00059733475 31.437195 -0.97244896 + 1857800 -33.794493 -33.803313 0.0088192003 464.14665 -0.40373336 + 1857900 -33.793064 -33.795038 0.0019737895 103.87878 0.07259497 + 1858000 -33.789094 -33.802531 0.013436994 707.17699 1.0537144 + 1858100 -33.79591 -33.797197 0.0012872188 67.74518 1.3631166 + 1858200 -33.796651 -33.802681 0.006030119 317.35978 1.5485302 + 1858300 -33.796815 -33.798547 0.0017319127 91.149023 1.2469741 + 1858400 -33.792227 -33.801948 0.0097206147 511.58728 0.8647224 + 1858500 -33.791328 -33.795509 0.0041808653 220.03521 -0.20985034 + 1858600 -33.791937 -33.801223 0.0092856757 488.69683 -0.95451407 + 1858700 -33.795069 -33.798026 0.0029572027 155.63494 -1.5331926 + 1858800 -33.794033 -33.800944 0.006911242 363.7325 -1.5740699 + 1858900 -33.793634 -33.797839 0.0042049388 221.30218 -1.359713 + 1859000 -33.791972 -33.800094 0.0081217096 427.43833 -0.66716684 + 1859100 -33.793293 -33.798474 0.0051813522 272.68994 0.028646799 + 1859200 -33.796042 -33.800948 0.0049053908 258.16634 0.64287863 + 1859300 -33.797575 -33.800966 0.003391106 178.47088 0.95283327 + 1859400 -33.796173 -33.800374 0.0042011857 221.10465 1.090688 + 1859500 -33.790058 -33.798374 0.0083159998 437.66365 1.1376056 + 1859600 -33.790728 -33.79727 0.0065418873 344.29369 0.81421112 + 1859700 -33.79338 -33.800266 0.0068855141 362.37847 0.42567374 + 1859800 -33.795446 -33.799186 0.0037404062 196.85424 0.032927911 + 1859900 -33.795447 -33.801415 0.0059677676 314.07828 -0.22243005 + 1860000 -33.794566 -33.797951 0.0033857648 178.18978 -0.51093853 + 1860100 -33.787008 -33.799729 0.012720824 669.48563 -0.47160473 + 1860200 -33.79025 -33.794809 0.0045588901 239.93032 -0.73421619 + 1860300 -33.794068 -33.80192 0.0078513092 413.2074 -0.58296802 + 1860400 -33.795919 -33.798041 0.0021218546 111.67132 -0.46710233 + 1860500 -33.793758 -33.802285 0.0085276577 448.80302 -0.041060478 + 1860600 -33.793109 -33.795385 0.0022758389 119.77537 0.2467084 + 1860700 -33.781981 -33.800991 0.019010181 1000.4889 1.1903339 + 1860800 -33.789639 -33.792543 0.0029041714 152.84395 1.2784084 + 1860900 -33.79209 -33.802499 0.010408906 547.81143 1.5463832 + 1861000 -33.79494 -33.796258 0.0013180184 69.366133 1.1885531 + 1861100 -33.793949 -33.803129 0.0091797965 483.1245 0.93778857 + 1861200 -33.79606 -33.797077 0.001017326 53.540959 0.28725686 + 1861300 -33.794248 -33.803491 0.0092427758 486.43904 -0.076816416 + 1861400 -33.795049 -33.79576 0.00071028493 37.381662 -0.76901821 + 1861500 -33.789406 -33.803296 0.013889701 731.00255 -0.88156248 + 1861600 -33.791149 -33.791673 0.00052384498 27.569494 -1.3942449 + 1861700 -33.792743 -33.803532 0.010789283 567.83032 -1.1517419 + 1861800 -33.797314 -33.797524 0.0002099288 11.048366 -1.0783149 + 1861900 -33.794959 -33.803854 0.0088956227 468.16869 -0.44665825 + 1862000 -33.794918 -33.795576 0.00065853673 34.658201 0.059403705 + 1862100 -33.788916 -33.803838 0.014922399 785.35254 1.2202754 + 1862200 -33.786105 -33.787163 0.0010584052 55.702922 1.8162984 + 1862300 -33.785895 -33.802787 0.016892195 889.02114 2.8052744 + 1862400 -33.794276 -33.794347 7.1718755e-05 3.7744941 2.5072842 + 1862500 -33.793177 -33.803096 0.0099197137 522.06569 2.2263017 + 1862600 -33.795529 -33.79657 0.0010412651 54.800852 1.2379935 + 1862700 -33.794313 -33.803809 0.0094962054 499.77682 0.42147697 + 1862800 -33.797667 -33.798533 0.00086595508 45.574443 -0.6925907 + 1862900 -33.797047 -33.803474 0.0064273074 338.26346 -1.1821597 + 1863000 -33.79604 -33.796908 0.00086835688 45.700848 -1.6399265 + 1863100 -33.789934 -33.8025 0.012565278 661.29939 -1.5266181 + 1863200 -33.791916 -33.79346 0.0015442478 81.272382 -1.478447 + 1863300 -33.791869 -33.802482 0.010612058 558.50314 -0.78328533 + 1863400 -33.796469 -33.797942 0.001472935 77.519257 -0.4248136 + 1863500 -33.795876 -33.802888 0.0070120452 369.03769 0.24204738 + 1863600 -33.79359 -33.796709 0.0031189915 164.14974 0.68526807 + 1863700 -33.786468 -33.800732 0.014264044 750.70389 1.5912895 + 1863800 -33.792094 -33.795273 0.0031791401 167.31531 1.8600531 + 1863900 -33.793888 -33.801112 0.0072233648 380.15925 1.9427637 + 1864000 -33.795708 -33.798412 0.0027035984 142.28797 1.5217594 + 1864100 -33.79392 -33.801311 0.0073907811 388.97021 0.9904168 + 1864200 -33.788739 -33.796078 0.0073389807 386.24401 -0.065493382 + 1864300 -33.787548 -33.798965 0.011416365 600.83309 -1.2651465 + 1864400 -33.795132 -33.798864 0.0037318681 196.40489 -2.1053666 + 1864500 -33.795007 -33.799967 0.0049604569 261.06442 -2.1750109 + 1864600 -33.793103 -33.798683 0.0055799994 293.67039 -1.7160826 + 1864700 -33.790352 -33.798426 0.008074345 424.94557 -0.70650268 + 1864800 -33.791949 -33.799436 0.0074866317 394.01475 0.50884641 + 1864900 -33.796711 -33.80035 0.0036389642 191.51544 1.2028144 + 1865000 -33.796688 -33.801226 0.0045375565 238.80755 1.5542717 + 1865100 -33.795061 -33.798688 0.0036268216 190.87639 1.5674952 + 1865200 -33.790203 -33.799838 0.009635226 507.09335 1.3993232 + 1865300 -33.791653 -33.796532 0.0048790477 256.77993 0.6730427 + 1865400 -33.792614 -33.801144 0.0085305258 448.95396 0.083059498 + 1865500 -33.794542 -33.797634 0.0030917954 162.71844 -0.55716918 + 1865600 -33.793803 -33.801723 0.0079200425 416.82477 -0.86543882 + 1865700 -33.794689 -33.797097 0.0024085302 126.7588 -1.1489694 + 1865800 -33.790478 -33.801654 0.011175741 588.16927 -0.86034474 + 1865900 -33.79129 -33.794265 0.0029745798 156.54948 -0.71724396 + 1866000 -33.792899 -33.802615 0.0097160694 511.34807 -0.12659631 + 1866100 -33.796785 -33.798019 0.0012340352 64.94617 0.085510481 + 1866200 -33.795485 -33.80309 0.0076052523 400.25764 0.49435855 + 1866300 -33.794142 -33.795239 0.0010961333 57.688519 0.63621141 + 1866400 -33.7848 -33.802701 0.01790071 942.09839 1.286197 + 1866500 -33.7916 -33.792954 0.0013534552 71.231142 1.0015373 + 1866600 -33.792591 -33.803188 0.010597146 557.71835 1.1076195 + 1866700 -33.795732 -33.796274 0.00054213805 28.532242 0.66442312 + 1866800 -33.793693 -33.803544 0.0098517899 518.49091 0.46137709 + 1866900 -33.79409 -33.794817 0.00072627567 38.223241 -0.15169003 + 1867000 -33.786929 -33.803663 0.01673332 880.6597 -0.34613717 + 1867100 -33.79251 -33.793101 0.00059084022 31.095394 -1.1472155 + 1867200 -33.794215 -33.803454 0.0092390235 486.24157 -1.0570994 + 1867300 -33.796484 -33.796597 0.00011333647 5.9647974 -1.0750536 + 1867400 -33.792941 -33.803726 0.010784839 567.59646 -0.45716818 + 1867500 -33.792635 -33.793622 0.00098641321 51.914047 0.025577092 + 1867600 -33.781577 -33.803775 0.022198663 1168.2958 1.3660085 + 1867700 -33.790783 -33.791466 0.00068262141 35.925756 1.7414613 + 1867800 -33.792416 -33.802854 0.010437948 549.33988 2.205183 + 1867900 -33.795383 -33.79569 0.00030637468 16.124226 1.7929726 + 1868000 -33.792856 -33.803275 0.010419405 548.36399 1.442858 + 1868100 -33.7935 -33.795232 0.0017318141 91.143831 0.42137992 + 1868200 -33.791182 -33.803482 0.012299684 647.32142 -0.37841548 + 1868300 -33.796665 -33.797556 0.00089123607 46.90496 -1.3390886 + 1868400 -33.796576 -33.802981 0.0064056325 337.12272 -1.4966199 + 1868500 -33.796163 -33.797309 0.0011461307 60.319838 -1.5286355 + 1868600 -33.788694 -33.802163 0.013468722 708.84685 -0.6807482 + 1868700 -33.791802 -33.794485 0.0026825769 141.18163 0.010384624 + 1868800 -33.792872 -33.802381 0.0095090129 500.45087 0.88288596 + 1868900 -33.796176 -33.79803 0.0018535495 97.550659 1.1817754 + 1869000 -33.794781 -33.802194 0.0074129054 390.1346 1.4565487 + 1869100 -33.790265 -33.79461 0.004344519 228.64816 1.2665073 + 1869200 -33.783778 -33.799406 0.015628573 822.51784 1.002949 + 1869300 -33.792019 -33.795855 0.0038362137 201.8965 0.12693476 + 1869400 -33.793195 -33.801037 0.0078427656 412.75776 -0.22923161 + 1869500 -33.795259 -33.798562 0.003303379 173.85389 -0.59108723 + 1869600 -33.7946 -33.80107 0.0064700593 340.51345 -0.68333279 + 1869700 -33.793078 -33.79821 0.0051327553 270.13233 -0.68077382 + 1869800 -33.789447 -33.798859 0.0094117109 495.32995 -0.34685344 + 1869900 -33.79144 -33.797662 0.0062219568 327.45604 -0.091778778 + 1870000 -33.794955 -33.800037 0.0050824362 267.48408 0.17256014 + 1870100 -33.795859 -33.800229 0.0043695108 229.96346 0.37255518 + 1870200 -33.794934 -33.799631 0.0046970298 247.20049 0.49735963 + 1870300 -33.792217 -33.799722 0.0075051396 394.98881 0.64363891 + 1870400 -33.791304 -33.797555 0.0062503012 328.94778 0.607252 + 1870500 -33.792382 -33.800196 0.0078145842 411.2746 0.47992865 + 1870600 -33.795609 -33.798936 0.0033267484 175.0838 0.24725064 + 1870700 -33.796137 -33.80156 0.0054234658 285.43217 0.13603564 + 1870800 -33.795722 -33.798494 0.0027728244 145.93128 -0.11028317 + 1870900 -33.789059 -33.800756 0.011697131 615.60957 -0.090393389 + 1871000 -33.790276 -33.794831 0.0045556694 239.76082 -0.40670288 + 1871100 -33.793842 -33.802131 0.00828915 436.25057 -0.41355748 + 1871200 -33.795796 -33.797608 0.0018116013 95.342959 -0.45035892 + 1871300 -33.793251 -33.802183 0.0089316068 470.0625 -0.12984993 + 1871400 -33.793264 -33.795205 0.0019409243 102.14911 -0.01552625 + 1871500 -33.789259 -33.80239 0.013131216 691.08418 0.58381466 + 1871600 -33.794261 -33.795976 0.0017152628 90.272752 0.59009085 + 1871700 -33.796385 -33.803404 0.0070182423 369.36383 0.75791986 + 1871800 -33.797546 -33.79815 0.00060355288 31.76445 0.58442094 + 1871900 -33.792571 -33.803314 0.010743136 565.40168 0.5674488 + 1872000 -33.792029 -33.792853 0.00082488347 43.412881 -0.030639946 + 1872100 -33.789837 -33.803455 0.013617668 716.68573 -0.15378303 + 1872200 -33.794124 -33.794552 0.00042851798 22.552519 -0.72714773 + 1872300 -33.793745 -33.803698 0.0099535125 523.84449 -0.6309419 + 1872400 -33.796922 -33.797125 0.00020305562 10.686636 -0.73713786 + 1872500 -33.796273 -33.803914 0.0076411473 402.14677 -0.39139063 + 1872600 -33.7981 -33.798281 0.00018128256 9.5407395 -0.24854111 + 1872700 -33.79353 -33.803949 0.010418979 548.34157 0.36361679 + 1872800 -33.792089 -33.7926 0.00051057501 26.871107 0.67195422 + 1872900 -33.789258 -33.803564 0.014306466 752.93655 1.4392867 + 1873000 -33.795522 -33.795605 8.3066044e-05 4.3716918 1.3320716 + 1873100 -33.79589 -33.803496 0.0076063138 400.31351 1.365092 + 1873200 -33.797203 -33.79772 0.00051706125 27.212473 0.89922105 + 1873300 -33.794315 -33.803691 0.0093763057 493.4666 0.5226161 + 1873400 -33.794001 -33.795544 0.0015429099 81.201974 -0.38841888 + 1873500 -33.790315 -33.803012 0.012697063 668.2351 -0.91009468 + 1873600 -33.794335 -33.79532 0.00098564776 51.873762 -1.6944699 + 1873700 -33.795756 -33.802537 0.006781481 356.9033 -1.6785198 + 1873800 -33.797479 -33.798634 0.0011547862 60.775367 -1.4937416 + 1873900 -33.793293 -33.802714 0.0094213025 495.83475 -0.65781784 + 1874000 -33.789128 -33.794445 0.0053172372 279.84145 0.56481094 + 1874100 -33.790247 -33.801398 0.011150248 586.82761 1.9433877 + 1874200 -33.794511 -33.796875 0.0023639272 124.41138 2.4037232 + 1874300 -33.794038 -33.800917 0.0068784863 362.0086 2.6044622 + 1874400 -33.793623 -33.797009 0.0033868172 178.24517 2.1320351 + 1874500 -33.787544 -33.800214 0.012670815 666.85367 1.2556573 + 1874600 -33.79098 -33.796724 0.0057437821 302.29013 -0.37040833 + 1874700 -33.794708 -33.801111 0.0064026158 336.96396 -1.2754565 + 1874800 -33.795536 -33.799098 0.0035622854 187.4799 -1.8133501 + 1874900 -33.79381 -33.799914 0.0061036812 321.23129 -1.8150843 + 1875000 -33.78937 -33.796802 0.007432844 391.18395 -1.4026921 + 1875100 -33.787637 -33.797319 0.0096815782 509.53283 -0.56872445 + 1875200 -33.795626 -33.800389 0.0047628333 250.66367 0.072241986 + 1875300 -33.796567 -33.800399 0.0038317126 201.65961 0.51441662 + 1875400 -33.794707 -33.800501 0.0057932069 304.89131 0.89326257 + 1875500 -33.792016 -33.797513 0.0054976605 289.33697 1.181216 + 1875600 -33.788992 -33.799085 0.010093005 531.18584 1.3708154 + 1875700 -33.794429 -33.798371 0.0039422958 207.47951 1.0939961 + 1875800 -33.796617 -33.801818 0.0052001712 273.68037 0.89230742 + 1875900 -33.796244 -33.798882 0.0026379298 138.83189 0.41890211 + 1876000 -33.791325 -33.801324 0.0099997037 526.27548 -0.065482803 + 1876100 -33.791359 -33.795322 0.0039629224 208.56507 -0.90121782 + 1876200 -33.794756 -33.80227 0.0075142697 395.46931 -1.3396955 + 1876300 -33.798124 -33.799289 0.0011643128 61.276742 -1.5302292 + 1876400 -33.795732 -33.802699 0.0069674874 366.69265 -1.1059101 + 1876500 -33.794356 -33.796381 0.0020256098 106.60604 -0.52577689 + 1876600 -33.790572 -33.802929 0.012356967 650.33614 0.67458695 + 1876700 -33.794093 -33.795645 0.0015522887 81.695572 1.3396268 + 1876800 -33.794124 -33.80286 0.0087360441 459.77021 1.9582184 + 1876900 -33.797672 -33.798195 0.00052313154 27.531946 1.8534973 + 1877000 -33.798865 -33.803351 0.0044856428 236.07538 1.6828357 + 1877100 -33.798623 -33.799471 0.00084826693 44.643532 1.0234958 + 1877200 -33.792964 -33.803897 0.010932463 575.36575 0.11023077 + 1877300 -33.793817 -33.795956 0.0021395879 112.6046 -1.4946073 + 1877400 -33.793244 -33.802657 0.0094132894 495.41302 -2.4226399 + 1877500 -33.79658 -33.796604 2.401939e-05 1.2641191 -3.0114714 + 1877600 -33.796635 -33.8024 0.0057654815 303.43215 -2.6464852 + 1877700 -33.797126 -33.798483 0.0013572009 71.428274 -1.9411389 + 1877800 -33.790495 -33.80381 0.013314766 700.74426 -0.13733415 + 1877900 -33.793252 -33.796872 0.0036204569 190.54142 1.6667523 + 1878000 -33.795642 -33.802374 0.006732132 354.3061 2.9537123 + 1878100 -33.796716 -33.79721 0.00049375852 25.98607 3.2757526 + 1878200 -33.793645 -33.801745 0.0081004644 426.32021 3.2038568 + 1878300 -33.7922 -33.794997 0.0027963068 147.16713 2.0905838 + 1878400 -33.790745 -33.802779 0.012033895 633.33313 0.72052724 + 1878500 -33.797214 -33.799022 0.0018079204 95.149237 -0.7941736 + 1878600 -33.796967 -33.802797 0.0058303902 306.84824 -1.4691144 + 1878700 -33.79656 -33.798435 0.001875055 98.682472 -2.0004911 + 1878800 -33.793044 -33.801497 0.0084533639 444.893 -1.9496157 + 1878900 -33.791436 -33.795444 0.0040081113 210.94332 -1.6382627 + 1879000 -33.79077 -33.800572 0.0098016287 515.85098 -0.76870038 + 1879100 -33.797515 -33.799796 0.002281 120.04699 -0.21618355 + 1879200 -33.797557 -33.801892 0.0043352496 228.16032 0.32209783 + 1879300 -33.79583 -33.799749 0.0039189726 206.25203 0.77128384 + 1879400 -33.792781 -33.800325 0.0075434516 397.00513 1.2868547 + 1879500 -33.79213 -33.798451 0.0063205504 332.64493 1.5393301 + 1879600 -33.79433 -33.799579 0.0052488106 276.24022 1.4731609 + 1879700 -33.798304 -33.801064 0.0027597253 145.24188 1.1876416 + 1879800 -33.797701 -33.800723 0.0030221261 159.0518 0.77519517 + 1879900 -33.794238 -33.800835 0.0065967745 347.18236 0.10367129 + 1880000 -33.793263 -33.798985 0.0057228418 301.18806 -0.85202133 + 1880100 -33.793702 -33.800981 0.0072788939 383.0817 -1.5694654 + 1880200 -33.795404 -33.798415 0.0030110859 158.47077 -2.0160343 + 1880300 -33.796712 -33.801438 0.0047263023 248.74108 -1.8857017 + 1880400 -33.798092 -33.799702 0.0016098681 84.72592 -1.5082447 + 1880500 -33.794885 -33.802262 0.0073771052 388.25047 -0.60500677 + 1880600 -33.792226 -33.79721 0.004984063 262.30679 0.6621468 + 1880700 -33.792546 -33.802318 0.0097722388 514.30421 2.09921 + 1880800 -33.796548 -33.797897 0.0013482423 70.956792 2.5913136 + 1880900 -33.795748 -33.801812 0.0060635512 319.11929 2.7407458 + 1881000 -33.79127 -33.793644 0.0023735849 124.91965 2.032677 + 1881100 -33.787389 -33.802771 0.015381105 809.49382 0.8147005 + 1881200 -33.795104 -33.79673 0.0016266163 85.607366 -0.70537022 + 1881300 -33.79553 -33.803157 0.0076271567 401.41046 -1.3061431 + 1881400 -33.796532 -33.797199 0.000666282 35.065828 -1.8188456 + 1881500 -33.789712 -33.803106 0.013393686 704.89773 -1.5402915 + 1881600 -33.789656 -33.791449 0.0017927236 94.349442 -1.3325678 + 1881700 -33.790275 -33.803084 0.012808996 674.12602 -0.46409383 + 1881800 -33.794089 -33.794647 0.00055872717 29.405313 -0.040201739 + 1881900 -33.792414 -33.803078 0.010664612 561.26903 0.78824381 + 1882000 -33.795141 -33.795793 0.00065224492 34.327068 1.0467461 + 1882100 -33.794414 -33.803448 0.0090334711 475.42353 1.4354056 + 1882200 -33.797786 -33.798405 0.00061906628 32.580906 1.1956368 + 1882300 -33.796895 -33.803671 0.0067758698 356.60798 1.0477747 + 1882400 -33.795473 -33.796958 0.0014852112 78.16534 0.42542483 + 1882500 -33.78886 -33.803067 0.014207155 747.70991 -0.21144092 + 1882600 -33.792742 -33.794139 0.00139661 73.502338 -1.3560911 + 1882700 -33.792707 -33.801858 0.0091504355 481.57926 -1.6705602 + 1882800 -33.794794 -33.795917 0.0011222962 59.065449 -1.8690977 + 1882900 -33.792551 -33.80227 0.0097193062 511.51842 -1.2954227 + 1883000 -33.794224 -33.797076 0.0028527446 150.1374 -0.73883579 + 1883100 -33.793982 -33.80278 0.0087978103 463.02091 0.17741836 + 1883200 -33.797144 -33.799116 0.001972241 103.79728 0.71157178 + 1883300 -33.797 -33.802404 0.0054039195 284.40346 1.1873103 + 1883400 -33.795577 -33.798094 0.002516948 132.46473 1.302393 + 1883500 -33.790208 -33.800509 0.010301685 542.1685 1.4271665 + 1883600 -33.791083 -33.79558 0.0044969997 236.67308 0.95532137 + 1883700 -33.792913 -33.800637 0.0077232285 406.46663 0.57133699 + 1883800 -33.796085 -33.799206 0.0031205803 164.23336 0.095310552 + 1883900 -33.79531 -33.801114 0.0058039201 305.45514 -0.22445498 + 1884000 -33.794764 -33.799438 0.004674311 246.00482 -0.55877332 + 1884100 -33.793851 -33.8003 0.0064492542 339.4185 -0.69953587 + 1884200 -33.793542 -33.799275 0.0057331966 301.73303 -0.76524182 + 1884300 -33.793921 -33.799252 0.0053311376 280.57302 -0.62708709 + 1884400 -33.795173 -33.800035 0.0048622162 255.8941 -0.35867245 + 1884500 -33.795497 -33.799356 0.0038589368 203.0924 -0.074074375 + 1884600 -33.792514 -33.800045 0.0075301557 396.30538 0.39204495 + 1884700 -33.789895 -33.796606 0.0067107765 353.18218 0.83409566 + 1884800 -33.792317 -33.800781 0.008464121 445.45914 1.1680288 + 1884900 -33.796755 -33.799408 0.0026536599 139.65975 1.0885162 + 1885000 -33.795699 -33.801703 0.0060036374 315.96608 0.98419085 + 1885100 -33.794687 -33.797419 0.0027319112 143.77805 0.49064314 + 1885200 -33.789795 -33.801116 0.011320985 595.81336 0.025115643 + 1885300 -33.7919 -33.795221 0.003320667 174.76374 -0.81168521 + 1885400 -33.796979 -33.802804 0.0058244354 306.53484 -1.1161908 + 1885500 -33.798141 -33.799254 0.0011136379 58.609767 -1.1796461 + 1885600 -33.79387 -33.802915 0.0090447745 476.01841 -0.70589727 + 1885700 -33.792679 -33.794969 0.0022895335 120.49611 -0.20206432 + 1885800 -33.790824 -33.80285 0.01202685 632.96241 0.79010361 + 1885900 -33.796118 -33.796895 0.0007774469 40.916337 1.0793378 + 1886000 -33.797412 -33.80303 0.005617632 295.65096 1.3265874 + 1886100 -33.797966 -33.79851 0.00054369241 28.614047 1.108498 + 1886200 -33.794385 -33.803683 0.0092976388 489.32644 0.88229568 + 1886300 -33.794047 -33.796029 0.0019819909 104.31041 0.071352577 + 1886400 -33.791795 -33.803569 0.011774054 619.65797 -0.46799505 + 1886500 -33.797327 -33.797587 0.00026071495 13.721195 -1.206992 + 1886600 -33.797452 -33.802933 0.0054811286 288.46691 -1.1989096 + 1886700 -33.797033 -33.797514 0.00048129511 25.330132 -1.0966965 + 1886800 -33.792063 -33.803703 0.011639939 612.59959 -0.28823881 + 1886900 -33.794381 -33.796302 0.0019207832 101.08911 0.28016163 + 1887000 -33.794118 -33.803527 0.0094087056 495.17179 1.0562799 + 1887100 -33.797097 -33.797641 0.00054395796 28.628022 1.233322 + 1887200 -33.795371 -33.802833 0.0074613204 392.68264 1.4570649 + 1887300 -33.792651 -33.79389 0.0012388428 65.199193 1.088282 + 1887400 -33.787388 -33.802623 0.015235232 801.81666 0.79153741 + 1887500 -33.793848 -33.795442 0.0015936715 83.87351 -0.13638601 + 1887600 -33.794632 -33.80304 0.0084085206 442.53294 -0.44972684 + 1887700 -33.796107 -33.797634 0.0015270793 80.368819 -0.83226145 + 1887800 -33.793624 -33.802511 0.0088863303 467.67964 -0.74786643 + 1887900 -33.793164 -33.795761 0.00259649 136.65095 -0.7763546 + 1888000 -33.787497 -33.801227 0.013729954 722.59523 -0.18907744 + 1888100 -33.78659 -33.791121 0.0045306774 238.44551 0.21500206 + 1888200 -33.791145 -33.801003 0.0098583929 518.83842 0.72029507 + 1888300 -33.795079 -33.79765 0.0025711744 135.31862 0.78844801 + 1888400 -33.794321 -33.801472 0.0071517282 376.38908 0.90522688 + 1888500 -33.794183 -33.798088 0.0039043076 205.48023 0.68100597 + 1888600 -33.791098 -33.800612 0.0095140206 500.71442 0.52827575 + 1888700 -33.791025 -33.796863 0.0058376983 307.23286 0.018067667 + 1888800 -33.794144 -33.800428 0.0062841512 330.72927 -0.34005036 + 1888900 -33.796624 -33.79988 0.0032554179 171.32974 -0.53668801 + 1889000 -33.795601 -33.800342 0.0047411106 249.52042 -0.53275 + 1889100 -33.790635 -33.798156 0.007520082 395.77521 -0.34996059 + 1889200 -33.787553 -33.796974 0.0094209932 495.81847 0.027325838 + 1889300 -33.796082 -33.801259 0.0051770254 272.46223 0.18745647 + 1889400 -33.797322 -33.800243 0.0029200488 153.67956 0.26918576 + 1889500 -33.794853 -33.801101 0.006248009 328.82714 0.43370036 + 1889600 -33.792585 -33.796711 0.0041257603 217.13508 0.42791557 + 1889700 -33.789273 -33.800156 0.010883262 572.77638 0.53646 + 1889800 -33.793173 -33.796778 0.0036052077 189.73886 0.30321278 + 1889900 -33.796152 -33.802294 0.0061422922 323.26336 0.24275409 + 1890000 -33.796895 -33.7988 0.0019052092 100.26946 0.047184818 + 1890100 -33.793988 -33.802413 0.0084242151 443.35893 0.060146269 + 1890200 -33.793851 -33.796193 0.0023421944 123.2676 -0.19817444 + 1890300 -33.790454 -33.802259 0.011805711 621.32402 -0.096374657 + 1890400 -33.793947 -33.795636 0.0016886181 88.870462 -0.33360218 + 1890500 -33.795611 -33.802943 0.0073310382 385.826 -0.18452354 + 1890600 -33.797397 -33.798114 0.00071736135 37.754088 -0.21647398 + 1890700 -33.79283 -33.803186 0.010355577 545.00477 0.14960456 + 1890800 -33.790794 -33.792712 0.0019184305 100.96529 0.23539065 + 1890900 -33.789764 -33.803485 0.013721251 722.1372 0.72589993 + 1891000 -33.794662 -33.795295 0.00063274652 33.300885 0.56353579 + 1891100 -33.792704 -33.803251 0.010547459 555.10338 0.75251888 + 1891200 -33.794589 -33.794778 0.00018911101 9.9527436 0.41938652 + 1891300 -33.7909 -33.803491 0.012590677 662.63608 0.45693655 + 1891400 -33.792759 -33.793378 0.000618828 32.568366 -0.056391781 + 1891500 -33.792648 -33.803957 0.011309059 595.1857 -0.080524669 + 1891600 -33.797555 -33.797797 0.00024180334 12.725894 -0.43757764 + 1891700 -33.796192 -33.80392 0.0077285326 406.74577 -0.29124861 + 1891800 -33.794459 -33.7948 0.00034157302 17.976684 -0.34338936 + 1891900 -33.786641 -33.803582 0.016940424 891.55941 0.25475107 + 1892000 -33.792451 -33.792663 0.00021169516 11.141327 0.1985878 + 1892100 -33.792589 -33.803426 0.010836361 570.308 0.5955015 + 1892200 -33.795959 -33.796384 0.00042533684 22.385098 0.46036857 + 1892300 -33.79373 -33.803565 0.0098342628 517.56848 0.64210433 + 1892400 -33.792206 -33.793869 0.0016635334 87.550279 0.35290395 + 1892500 -33.784346 -33.80288 0.018534394 975.44862 0.44779741 + 1892600 -33.793437 -33.794558 0.0011206704 58.979885 -0.1728777 + 1892700 -33.793769 -33.802672 0.0089028557 468.54935 -0.16090297 + 1892800 -33.795515 -33.796674 0.0011592532 61.010462 -0.37132341 + 1892900 -33.79223 -33.802503 0.010272316 540.62285 -0.14101781 + 1893000 -33.788129 -33.79216 0.0040313084 212.16416 -0.1351744 + 1893100 -33.786357 -33.801436 0.015078918 793.59 0.29896542 + 1893200 -33.795552 -33.797556 0.0020043064 105.48486 0.15947468 + 1893300 -33.794705 -33.802105 0.0073997821 389.44393 0.34471226 + 1893400 -33.794486 -33.797142 0.0026557823 139.77145 0.28567208 + 1893500 -33.790289 -33.800857 0.010568276 556.19895 0.44176329 + 1893600 -33.78855 -33.793804 0.0052535764 276.49104 0.26922109 + 1893700 -33.79255 -33.800977 0.0084268137 443.49569 0.23538868 + 1893800 -33.796615 -33.799539 0.0029234008 153.85598 0.052293839 + 1893900 -33.795563 -33.801356 0.0057929839 304.87958 0.04170936 + 1894000 -33.792484 -33.797839 0.0053559491 281.87882 -0.029522009 + 1894100 -33.788587 -33.798284 0.0096966126 510.32407 0.0052206247 + 1894200 -33.792408 -33.797986 0.0055778207 293.55573 -0.11466361 + 1894300 -33.796215 -33.800575 0.0043605108 229.48979 -0.13879943 + 1894400 -33.796019 -33.800529 0.0045103196 237.3741 -0.077412581 + 1894500 -33.794085 -33.79919 0.0051050639 268.67496 0.039841205 + 1894600 -33.789565 -33.798868 0.009302169 489.56486 0.27213265 + 1894700 -33.791298 -33.797244 0.0059460344 312.93449 0.34664353 + 1894800 -33.796985 -33.801704 0.0047194105 248.37836 0.36301247 + 1894900 -33.797286 -33.799783 0.0024964972 131.38842 0.30368306 + 1895000 -33.793462 -33.801129 0.0076668894 403.50155 0.33341079 + 1895100 -33.791981 -33.795932 0.0039513162 207.95425 0.10003158 + 1895200 -33.790826 -33.801256 0.010430586 548.95245 0.055523447 + 1895300 -33.794627 -33.797365 0.0027380834 144.10289 -0.23045593 + 1895400 -33.796454 -33.80272 0.0062658997 329.76871 -0.20771444 + 1895500 -33.800762 -33.801485 0.00072386835 38.096546 -0.30283993 + 1895600 -33.800189 -33.803486 0.0032966112 173.49771 -0.17638704 + 1895700 -33.798863 -33.799608 0.00074454679 39.184833 -0.073225262 + 1895800 -33.793987 -33.803272 0.0092851769 488.67058 0.39046507 + 1895900 -33.793411 -33.79471 0.0012991617 68.37372 0.56435309 + 1896000 -33.789889 -33.803011 0.013121985 690.59837 1.0721092 + 1896100 -33.794552 -33.795172 0.00061957739 32.607806 0.92342731 + 1896200 -33.796329 -33.803316 0.0069869734 367.71818 0.9679198 + 1896300 -33.797806 -33.798212 0.0004063597 21.386348 0.61530332 + 1896400 -33.794224 -33.8038 0.0095755691 503.95366 0.43118596 + 1896500 -33.795206 -33.796289 0.0010838552 57.042335 -0.25136781 + 1896600 -33.792925 -33.803734 0.010809927 568.9168 -0.51053639 + 1896700 -33.795098 -33.795445 0.00034640437 18.230953 -1.0298222 + 1896800 -33.79199 -33.803154 0.011164428 587.57389 -0.90547792 + 1896900 -33.791773 -33.792026 0.00025371556 13.352823 -0.94997857 + 1897000 -33.786786 -33.80339 0.016604628 873.88674 -0.19903473 + 1897100 -33.794854 -33.795358 0.00050336456 26.491628 -0.097493983 + 1897200 -33.795079 -33.803746 0.0086666133 456.11613 0.39846257 + 1897300 -33.796459 -33.797158 0.00069859925 36.766655 0.46825771 + 1897400 -33.792585 -33.803546 0.010961838 576.91176 0.83131008 + 1897500 -33.789251 -33.791125 0.001873653 98.608686 0.73009639 + 1897600 -33.780812 -33.802136 0.021324209 1122.2741 1.0469969 + 1897700 -33.793493 -33.79436 0.00086673611 45.615548 0.44082839 + 1897800 -33.792705 -33.802344 0.0096393235 507.309 0.46950614 + 1897900 -33.794895 -33.796429 0.0015340474 80.735548 0.080473468 + 1898000 -33.793434 -33.802779 0.0093456087 491.85105 0.031268267 + 1898100 -33.795829 -33.797949 0.0021197703 111.56162 -0.26239493 + 1898200 -33.796008 -33.802799 0.0067914021 357.42544 -0.27178783 + 1898300 -33.797841 -33.799497 0.0016564412 87.177024 -0.37628366 + 1898400 -33.795352 -33.802135 0.0067832619 356.99702 -0.16552377 + 1898500 -33.79112 -33.795279 0.0041593054 218.90053 -0.017760528 + 1898600 -33.7895 -33.800082 0.010582044 556.92355 0.39542209 + 1898700 -33.79385 -33.797383 0.0035337033 185.97565 0.46822515 + 1898800 -33.79459 -33.801047 0.0064567419 339.81257 0.59705383 + 1898900 -33.79523 -33.799091 0.003861712 203.23846 0.53066277 + 1899000 -33.794257 -33.800753 0.0064962144 341.88997 0.47169109 + 1899100 -33.793834 -33.799107 0.0052726446 277.49458 0.23051102 + 1899200 -33.793348 -33.799762 0.0064143007 337.57893 0.023414447 + 1899300 -33.794471 -33.799563 0.0050917028 267.97177 -0.21663961 + 1899400 -33.795776 -33.799899 0.0041235746 217.02005 -0.36908427 + 1899500 -33.795971 -33.800672 0.0047016393 247.44308 -0.36231819 + 1899600 -33.794297 -33.798842 0.0045450023 239.19942 -0.27626601 + 1899700 -33.788204 -33.799196 0.010992583 578.52985 0.071166837 + 1899800 -33.791237 -33.796929 0.0056922788 299.57956 0.22938827 + 1899900 -33.794938 -33.801371 0.0064329327 338.55951 0.39074194 + 1900000 -33.795612 -33.798399 0.0027870299 146.6789 0.39691038 + 1900100 -33.792867 -33.801144 0.008276829 435.60213 0.52869937 + 1900200 -33.792036 -33.795515 0.0034783961 183.06488 0.34479385 + 1900300 -33.788475 -33.801025 0.012550658 660.52995 0.39212582 + 1900400 -33.794597 -33.797169 0.002572102 135.36743 0.035169447 + 1900500 -33.796194 -33.802802 0.006607961 347.7711 0.0096822751 + 1900600 -33.796866 -33.798252 0.0013866023 72.975641 -0.14875514 + 1900700 -33.790933 -33.802486 0.011553338 608.04187 0.040407887 + 1900800 -33.789927 -33.792265 0.002337354 123.01286 -0.15859662 + 1900900 -33.790416 -33.802693 0.012276958 646.12533 0.098060986 + 1901000 -33.794536 -33.795456 0.00092042479 48.441136 -0.079251796 + 1901100 -33.792399 -33.802991 0.010592109 557.45322 0.18212628 + 1901200 -33.794451 -33.795321 0.00087037169 45.806886 0.087723858 + 1901300 -33.792782 -33.803581 0.010799149 568.34958 0.35069364 + 1901400 -33.796283 -33.796952 0.00066951544 35.236001 0.15782814 + 1901500 -33.796537 -33.803868 0.007330949 385.82131 0.30867712 + 1901600 -33.798573 -33.798726 0.0001533687 8.0716577 0.11988067 + 1901700 -33.793904 -33.803775 0.0098713171 519.51862 0.2484263 + 1901800 -33.792184 -33.792264 7.9636939e-05 4.1912211 -0.03353006 + 1901900 -33.789197 -33.803759 0.014561718 766.37023 0.12503173 + 1902000 -33.795132 -33.795214 8.2065123e-05 4.3190142 -0.2537819 + 1902100 -33.795111 -33.803857 0.0087456434 460.27541 -0.058137143 + 1902200 -33.796863 -33.797153 0.00029050525 15.289032 -0.19875607 + 1902300 -33.794149 -33.803881 0.0097327254 512.22466 0.087407928 + 1902400 -33.795252 -33.795793 0.00054142269 28.494593 0.044692198 + 1902500 -33.791557 -33.803522 0.011965625 629.74017 0.38898711 + 1902600 -33.792645 -33.793325 0.00068011961 35.794088 0.27039442 + 1902700 -33.790438 -33.803009 0.012570688 661.58408 0.59573046 + 1902800 -33.796375 -33.796986 0.00061086749 32.149411 0.3164372 + 1902900 -33.796198 -33.803313 0.0071147373 374.44228 0.38888613 + 1903000 -33.796528 -33.797898 0.0013699583 72.099682 0.16339937 + 1903100 -33.788521 -33.80255 0.014028741 738.32013 0.21547126 + 1903200 -33.790194 -33.793241 0.0030469338 160.35741 -0.27296199 + 1903300 -33.791161 -33.801631 0.010470684 551.06273 -0.28606158 + 1903400 -33.794662 -33.796558 0.0018961491 99.792634 -0.50811819 + 1903500 -33.79352 -33.801633 0.0081132145 426.99124 -0.28428696 + 1903600 -33.793923 -33.797146 0.0032230041 169.62383 -0.20464099 + 1903700 -33.791195 -33.801376 0.010181452 535.84073 0.19391677 + 1903800 -33.793528 -33.79757 0.0040422554 212.74029 0.34936143 + 1903900 -33.795282 -33.801494 0.0062118979 326.92665 0.53947329 + 1904000 -33.797111 -33.799762 0.0026515301 139.54766 0.50742158 + 1904100 -33.795152 -33.800864 0.0057113957 300.58566 0.51717371 + 1904200 -33.78886 -33.796102 0.0072424453 381.16344 0.32359275 + 1904300 -33.789624 -33.798567 0.0089426054 470.64135 0.065317373 + 1904400 -33.794144 -33.799395 0.0052509625 276.35347 -0.22140707 + 1904500 -33.79511 -33.80011 0.0050003321 263.16302 -0.35135568 + 1904600 -33.794766 -33.800134 0.0053681915 282.52313 -0.34640657 + 1904700 -33.793401 -33.79864 0.0052396228 275.75668 -0.25547143 + 1904800 -33.78325 -33.796451 0.013201558 694.7862 0.13826788 + 1904900 -33.787631 -33.795147 0.0075159103 395.55566 0.33235367 + 1905000 -33.792609 -33.800201 0.007591385 399.52782 0.51130994 + 1905100 -33.794643 -33.798415 0.0037714759 198.48941 0.48136636 + 1905200 -33.794848 -33.80145 0.0066012845 347.41972 0.53049456 + 1905300 -33.795623 -33.798585 0.0029619576 155.88519 0.34923573 + 1905400 -33.792279 -33.801384 0.009105541 479.2165 0.2820193 + 1905500 -33.790953 -33.794877 0.0039232304 206.47612 -0.052364837 + 1905600 -33.790444 -33.8014 0.01095649 576.63029 -0.17360008 + 1905700 -33.795862 -33.797808 0.0019455111 102.39051 -0.50379876 + 1905800 -33.79561 -33.802568 0.0069577344 366.17936 -0.37066528 + 1905900 -33.795893 -33.797402 0.0015083562 79.383442 -0.36564205 + 1906000 -33.792233 -33.802785 0.010552014 555.34306 0.047062332 + 1906100 -33.793766 -33.795522 0.0017565278 92.444492 0.17713942 + 1906200 -33.792203 -33.803075 0.010872103 572.18907 0.60206791 + 1906300 -33.794664 -33.795644 0.00098051049 51.603392 0.55745984 + 1906400 -33.792986 -33.803137 0.010150609 534.2175 0.80733399 + 1906500 -33.795405 -33.795953 0.00054823299 28.853013 0.51756635 + 1906600 -33.794404 -33.803526 0.0091220093 480.08321 0.52981156 + 1906700 -33.796609 -33.797076 0.00046651756 24.552403 0.1472594 + 1906800 -33.793312 -33.803823 0.010510841 553.17621 0.089402906 + 1906900 -33.792491 -33.793298 0.00080705446 42.474556 -0.37848902 + 1907000 -33.7875 -33.803648 0.016147943 849.85183 -0.31303921 + 1907100 -33.795474 -33.795619 0.00014511564 7.6373068 -0.77401493 + 1907200 -33.795499 -33.803452 0.0079526822 418.54257 -0.5397709 + 1907300 -33.796277 -33.796544 0.00026694998 14.049339 -0.48235117 + 1907400 -33.791233 -33.803816 0.012582736 662.2182 0.14752201 + 1907500 -33.791694 -33.792987 0.0012930879 68.054064 0.43158437 + 1907600 -33.79312 -33.803598 0.010477625 551.42807 0.998427 + 1907700 -33.798088 -33.798343 0.00025508752 13.425029 0.89082893 + 1907800 -33.795981 -33.803445 0.0074639975 392.82353 0.96158995 + 1907900 -33.793825 -33.79485 0.0010249342 53.941373 0.50933757 + 1908000 -33.789203 -33.803101 0.013897485 731.41226 0.22007111 + 1908100 -33.793485 -33.794804 0.0013196632 69.452699 -0.56581995 + 1908200 -33.792893 -33.802939 0.010046317 528.72873 -0.74082721 + 1908300 -33.795052 -33.796401 0.0013495942 71.02794 -1.0322097 + 1908400 -33.792972 -33.80258 0.0096073958 505.62867 -0.74988666 + 1908500 -33.794125 -33.79617 0.0020452517 107.63977 -0.61848843 + 1908600 -33.792411 -33.802188 0.0097775579 514.58415 -0.0084969713 + 1908700 -33.795997 -33.797981 0.0019837285 104.40186 0.26405136 + 1908800 -33.796134 -33.802381 0.0062469863 328.77332 0.62523962 + 1908900 -33.79641 -33.798821 0.0024114896 126.91454 0.7201414 + 1909000 -33.791892 -33.8011 0.009208394 484.62956 0.90555368 + 1909100 -33.789759 -33.795097 0.0053378048 280.92391 0.6843403 + 1909200 -33.790988 -33.800211 0.0092229116 485.39361 0.55055208 + 1909300 -33.79407 -33.798082 0.0040120065 211.14832 0.1870182 + 1909400 -33.7936 -33.800412 0.0068118096 358.49946 -0.020598093 + 1909500 -33.793934 -33.79862 0.0046860616 246.62324 -0.25844016 + 1909600 -33.793508 -33.79993 0.0064218605 337.97679 -0.37114532 + 1909700 -33.79481 -33.799733 0.0049231929 259.10325 -0.44686568 + 1909800 -33.795931 -33.80041 0.004478601 235.70478 -0.36766603 + 1909900 -33.796261 -33.800909 0.0046485843 244.65084 -0.22654022 + 1910000 -33.794861 -33.79929 0.0044295365 233.12256 -0.01086489 + 1910100 -33.788578 -33.798657 0.010078684 530.43215 0.47850065 + 1910200 -33.789827 -33.795938 0.006110985 321.61569 0.73018668 + 1910300 -33.793862 -33.800756 0.0068943818 362.84516 0.91190834 + 1910400 -33.795119 -33.798372 0.0032524012 171.17098 0.8348443 + 1910500 -33.793453 -33.801264 0.0078108487 411.078 0.73035245 + 1910600 -33.793616 -33.797199 0.0035825171 188.54468 0.33338888 + 1910700 -33.791964 -33.801597 0.0096333601 506.99515 0.07843211 + 1910800 -33.795388 -33.797858 0.0024700368 129.99583 -0.41872837 + 1910900 -33.796842 -33.802726 0.0058835338 309.64514 -0.49602241 + 1911000 -33.797646 -33.798816 0.001170175 61.585265 -0.59461682 + 1911100 -33.79028 -33.802179 0.011899445 626.25716 -0.23067406 + 1911200 -33.790928 -33.793116 0.0021880831 115.15686 -0.073567859 + 1911300 -33.791596 -33.803005 0.011409244 600.45831 0.45223793 + 1911400 -33.795759 -33.796782 0.0010226573 53.821542 0.43394541 + 1911500 -33.794529 -33.80337 0.0088415371 465.32221 0.70863905 + 1911600 -33.795452 -33.796037 0.0005850986 30.793217 0.52124664 + 1911700 -33.783373 -33.80299 0.019616182 1032.3822 0.74232704 + 1911800 -33.787826 -33.788883 0.0010575484 55.657829 0.070368485 + 1911900 -33.791117 -33.803599 0.012481456 656.8879 0.048563808 + 1912000 -33.79568 -33.795976 0.00029656896 15.60816 -0.34565501 + 1912100 -33.794345 -33.803817 0.009471421 498.47244 -0.1746882 + 1912200 -33.795863 -33.796077 0.00021385876 11.255196 -0.33848042 + 1912300 -33.788971 -33.80392 0.014948184 786.7096 0.090278747 + 1912400 -33.789488 -33.789864 0.00037674704 19.82786 0.052595949 + 1912500 -33.791349 -33.803778 0.012428209 654.08554 0.46537685 + 1912600 -33.796236 -33.796249 1.2740498e-05 0.67052105 0.30378111 + 1912700 -33.793659 -33.803764 0.010104901 531.81191 0.54917372 + 1912800 -33.794319 -33.794663 0.00034447027 18.129163 0.27204496 + 1912900 -33.788259 -33.803887 0.015628331 822.50513 0.47202906 + 1913000 -33.789559 -33.790378 0.00081924867 43.116327 -0.00031665231 + 1913100 -33.7922 -33.803525 0.011325163 596.03321 0.016947856 + 1913200 -33.796735 -33.797029 0.0002937381 15.459174 -0.25597496 + 1913300 -33.794458 -33.803425 0.0089668538 471.91752 -0.074489602 + 1913400 -33.792999 -33.794196 0.0011974518 63.020818 -0.19732446 + 1913500 -33.784812 -33.802901 0.018089091 952.01271 0.33347356 + 1913600 -33.793807 -33.794811 0.0010041263 52.84627 0.12786792 + 1913700 -33.794874 -33.803149 0.0082755681 435.53577 0.31902295 + 1913800 -33.795926 -33.797143 0.0012174928 64.07556 0.22705648 + 1913900 -33.792127 -33.802574 0.010446194 549.77386 0.39677281 + 1914000 -33.790852 -33.793494 0.0026428584 139.09128 0.1429452 + 1914100 -33.789783 -33.801741 0.011958237 629.35137 0.27814474 + 1914200 -33.79714 -33.798791 0.0016513112 86.907034 -0.029353534 + 1914300 -33.796307 -33.802541 0.0062337521 328.07681 0.011560626 + 1914400 -33.795015 -33.797868 0.0028530764 150.15487 -0.049702362 + 1914500 -33.790878 -33.800874 0.0099964275 526.10306 0.074316523 + 1914600 -33.791004 -33.795599 0.0045956077 241.86273 -0.021555086 + 1914700 -33.79521 -33.801387 0.0061770382 325.09201 0.066439549 + 1914800 -33.797791 -33.800438 0.0026469983 139.30916 -0.001132427 + 1914900 -33.795977 -33.801173 0.0051962441 273.47369 0.090855413 + 1915000 -33.791867 -33.798011 0.0061442514 323.36647 0.20340913 + 1915100 -33.790533 -33.798567 0.0080333878 422.79004 0.2557623 + 1915200 -33.794016 -33.799461 0.0054454303 286.58814 0.23718619 + 1915300 -33.797143 -33.800733 0.003590641 188.97223 0.20984875 + 1915400 -33.797142 -33.801314 0.0041718454 219.5605 0.16368653 + 1915500 -33.796185 -33.799741 0.0035553182 187.11323 0.10664617 + 1915600 -33.792244 -33.800286 0.0080427406 423.28226 0.13589728 + 1915700 -33.791517 -33.796651 0.0051341445 270.20544 -0.054109434 + 1915800 -33.793527 -33.801155 0.0076281599 401.46325 -0.046877607 + 1915900 -33.797892 -33.799892 0.0020001044 105.26371 -0.17588568 + 1916000 -33.796707 -33.802336 0.0056289201 296.24505 -0.080691704 + 1916100 -33.795501 -33.797707 0.0022068112 116.1425 -0.032854438 + 1916200 -33.791229 -33.801965 0.010735746 565.01273 0.28937725 + 1916300 -33.793179 -33.795687 0.0025080165 131.99467 0.24278463 + 1916400 -33.792559 -33.802455 0.0098968658 520.86322 0.51010894 + 1916500 -33.794758 -33.796259 0.0015014548 79.020226 0.35161151 + 1916600 -33.792875 -33.802742 0.0098667547 519.2785 0.46697829 + 1916700 -33.79457 -33.795766 0.0011968115 62.987124 0.2048161 + 1916800 -33.792429 -33.803189 0.010760525 566.31684 0.24670433 + 1916900 -33.794653 -33.795669 0.0010155376 53.44684 -0.097784867 + 1917000 -33.792886 -33.803485 0.010598524 557.79089 -0.0010055369 + 1917100 -33.795942 -33.796475 0.00053296476 28.04946 -0.28827159 + 1917200 -33.797307 -33.803732 0.0064250251 338.14334 -0.15960033 + 1917300 -33.798907 -33.799031 0.0001248636 6.5714599 -0.21901312 + 1917400 -33.793851 -33.803846 0.009994814 526.01815 0.10224366 + 1917500 -33.793249 -33.793771 0.00052237027 27.491881 0.15054287 + 1917600 -33.790927 -33.803879 0.012951653 681.63393 0.62615787 + 1917700 -33.795341 -33.795446 0.00010446766 5.4980397 0.45883053 + 1917800 -33.795475 -33.803672 0.0081971232 431.40728 0.65067893 + 1917900 -33.799723 -33.799782 5.8465781e-05 3.0770019 0.39836411 + 1918000 -33.799144 -33.803808 0.0046642443 245.47502 0.3585924 + 1918100 -33.797269 -33.798206 0.00093712598 49.320105 0.083415957 + 1918200 -33.793635 -33.803665 0.010030078 527.87408 -0.090364432 + 1918300 -33.794655 -33.795996 0.001341548 70.604474 -0.60545228 + 1918400 -33.791964 -33.802564 0.010599903 557.86345 -0.60785534 + 1918500 -33.792977 -33.794064 0.0010868681 57.200898 -0.86959404 + 1918600 -33.789567 -33.801957 0.012389148 652.02981 -0.47771313 + 1918700 -33.7931 -33.79494 0.001840409 96.859083 -0.35857859 + 1918800 -33.794917 -33.802801 0.0078841128 414.93382 0.029969664 + 1918900 -33.797554 -33.799267 0.0017137129 90.191183 0.14932873 + 1919000 -33.795456 -33.80277 0.0073147416 384.96833 0.48898327 + 1919100 -33.789002 -33.794068 0.0050657406 266.60541 0.61338071 + 1919200 -33.7868 -33.799793 0.012992494 683.78339 0.95935885 + 1919300 -33.792213 -33.79531 0.003096203 162.9504 0.79004419 + 1919400 -33.792492 -33.800165 0.0076727688 403.81098 0.7081186 + 1919500 -33.794434 -33.797976 0.0035420432 186.41457 0.42532227 + 1919600 -33.795174 -33.801361 0.0061865881 325.59461 0.24196009 + 1919700 -33.79906 -33.801532 0.0024714967 130.07267 -0.066747009 + 1919800 -33.798912 -33.802354 0.0034411632 181.10535 -0.1660432 + 1919900 -33.795009 -33.800215 0.005205816 273.97745 -0.23639762 + 1920000 -33.7931 -33.799161 0.0060608936 318.97942 -0.34463544 + 1920100 -33.792738 -33.798718 0.0059800673 314.72561 -0.32341667 + 1920200 -33.792678 -33.797391 0.0047133448 248.05913 -0.25028324 + 1920300 -33.790255 -33.798489 0.0082340014 433.34815 -0.006641849 + 1920400 -33.789716 -33.796393 0.0066775225 351.43205 0.24762279 + 1920500 -33.794336 -33.801356 0.0070196412 369.43746 0.44113277 + 1920600 -33.796997 -33.799959 0.0029610758 155.83878 0.42915245 + 1920700 -33.795884 -33.802051 0.0061673101 324.58003 0.49940453 + 1920800 -33.79414 -33.797321 0.0031816741 167.44867 0.31731959 + 1920900 -33.786575 -33.800113 0.013538587 712.52377 0.29315577 + 1921000 -33.79 -33.793418 0.0034182134 179.89752 -0.19189713 + 1921100 -33.790633 -33.800937 0.010304161 542.29878 -0.265154 + 1921200 -33.794026 -33.796258 0.002232226 117.48006 -0.48000449 + 1921300 -33.794684 -33.8026 0.0079155058 416.58601 -0.31969772 + 1921400 -33.797302 -33.798908 0.0016061306 84.529219 -0.3527619 + 1921500 -33.79878 -33.803618 0.0048377923 254.60869 -0.11710312 + 1921600 -33.80022 -33.800786 0.00056604483 29.790434 -0.05983701 + 1921700 -33.796015 -33.80346 0.0074448331 391.81492 0.25096934 + 1921800 -33.794881 -33.79587 0.0009895407 52.078645 0.42265228 + 1921900 -33.791168 -33.803011 0.011843088 623.29113 0.88094686 + 1922000 -33.79312 -33.793515 0.00039557033 20.818513 0.74466392 + 1922100 -33.791643 -33.802976 0.011333204 596.45644 0.98350221 + 1922200 -33.796617 -33.796972 0.00035504005 18.685441 0.5948771 + 1922300 -33.79652 -33.803581 0.0070606926 371.59796 0.5110781 + 1922400 -33.79691 -33.797905 0.00099547726 52.39108 0.14076288 + 1922500 -33.78732 -33.803886 0.016565916 871.84936 0.0046744877 + 1922600 -33.791857 -33.793771 0.0019137236 100.71757 -0.81773134 + 1922700 -33.792568 -33.802443 0.0098751518 519.72043 -0.86115431 + 1922800 -33.794857 -33.795122 0.00026468249 13.930003 -1.0644908 + 1922900 -33.791453 -33.80234 0.010886971 572.97156 -0.59040799 + 1923000 -33.789779 -33.79233 0.0025507821 134.24538 -0.21692197 + 1923100 -33.783537 -33.80303 0.019493539 1025.9276 0.84411236 + 1923200 -33.795157 -33.796579 0.0014225924 74.869767 0.95294992 + 1923300 -33.795007 -33.802965 0.0079575186 418.79711 1.2583993 + 1923400 -33.79597 -33.797128 0.0011580907 60.949279 1.0067185 + 1923500 -33.791216 -33.802387 0.011171879 587.96603 0.88511807 + 1923600 -33.789372 -33.79238 0.0030072876 158.27086 0.11459076 + 1923700 -33.790923 -33.801698 0.010774964 567.07672 -0.39886471 + 1923800 -33.796858 -33.798426 0.001567588 82.500756 -0.85981514 + 1923900 -33.79505 -33.802238 0.0071873477 378.2637 -0.78466404 + 1924000 -33.793178 -33.796962 0.0037834416 199.11916 -0.72371383 + 1924100 -33.790056 -33.801138 0.011081294 583.1986 -0.20620605 + 1924200 -33.795418 -33.798376 0.0029582411 155.68959 0.042881641 + 1924300 -33.797127 -33.801724 0.0045965935 241.91462 0.31067499 + 1924400 -33.796638 -33.799512 0.0028744881 151.28175 0.46720069 + 1924500 -33.793834 -33.800462 0.0066278473 348.81769 0.68060838 + 1924600 -33.79254 -33.798367 0.005826929 306.66607 0.68358978 + 1924700 -33.792818 -33.799882 0.0070639948 371.77174 0.64643387 + 1924800 -33.794471 -33.799684 0.0052131239 274.36206 0.4266086 + 1924900 -33.795067 -33.799896 0.0048283224 254.1103 0.18345258 + 1925000 -33.795535 -33.800344 0.0048091182 253.0996 -0.023044523 + 1925100 -33.795651 -33.799498 0.0038468984 202.45883 -0.2392921 + 1925200 -33.792583 -33.800003 0.0074199039 390.50292 -0.30987187 + 1925300 -33.790909 -33.796734 0.0058244953 306.53799 -0.38961653 + 1925400 -33.791999 -33.800639 0.0086401329 454.72249 -0.3307449 + 1925500 -33.79655 -33.799343 0.0027926869 146.97662 -0.36064442 + 1925600 -33.796318 -33.802064 0.0057460621 302.41012 -0.13683787 + 1925700 -33.795983 -33.798299 0.0023157595 121.87636 -0.015496424 + 1925800 -33.792616 -33.801785 0.0091687387 482.54254 0.4019546 + 1925900 -33.793544 -33.796122 0.0025780873 135.68244 0.53589002 + 1926000 -33.792233 -33.80217 0.0099374487 522.99906 0.8114235 + 1926100 -33.79433 -33.796273 0.001943244 102.2712 0.68331806 + 1926200 -33.793046 -33.802646 0.0096002767 505.254 0.73840898 + 1926300 -33.795129 -33.796579 0.0014503844 76.332437 0.32895816 + 1926400 -33.796648 -33.80339 0.0067420199 354.82649 0.2252169 + 1926500 -33.798901 -33.79944 0.00053843257 28.337226 -0.077529778 + 1926600 -33.795558 -33.803488 0.0079300886 417.35349 -0.10598833 + 1926700 -33.793755 -33.794609 0.00085387621 44.938744 -0.38816694 + 1926800 -33.790167 -33.803489 0.013322252 701.13822 -0.26303672 + 1926900 -33.794227 -33.794671 0.00044422409 23.379118 -0.57276519 + 1927000 -33.794542 -33.803561 0.0090196267 474.69491 -0.27429796 + 1927100 -33.799433 -33.799556 0.00012326881 6.4875274 -0.33152642 + 1927200 -33.799044 -33.803806 0.0047623456 250.638 -0.10241471 + 1927300 -33.79868 -33.79919 0.00050914801 26.796005 0.034155361 + 1927400 -33.794964 -33.803946 0.0089823617 472.73368 0.46847796 + 1927500 -33.794662 -33.795804 0.0011417937 60.091586 0.57213704 + 1927600 -33.791085 -33.803082 0.011997042 631.3936 1.0177412 + 1927700 -33.793038 -33.793482 0.00044428578 23.382364 0.82368711 + 1927800 -33.791563 -33.802449 0.010886162 572.92901 0.93397046 + 1927900 -33.795492 -33.796201 0.00070950499 37.340615 0.52914806 + 1928000 -33.794864 -33.80314 0.0082760642 435.56187 0.4130093 + 1928100 -33.796651 -33.798248 0.0015963484 84.014393 0.0046143776 + 1928200 -33.794174 -33.80334 0.0091657639 482.38598 -0.10646866 + 1928300 -33.792396 -33.795539 0.0031436861 165.44939 -0.5066208 + 1928400 -33.789139 -33.801437 0.012297775 647.22091 -0.50945656 + 1928500 -33.794407 -33.795872 0.0014656192 77.134231 -0.78229554 + 1928600 -33.795316 -33.801243 0.0059271352 311.93984 -0.58557553 + 1928700 -33.795751 -33.798285 0.002534746 133.40142 -0.39275995 + 1928800 -33.789854 -33.801768 0.011914348 627.04151 0.19868227 + 1928900 -33.786657 -33.795651 0.0089934888 473.31929 0.78076369 + 1929000 -33.792911 -33.80052 0.0076086763 400.43785 1.1368956 + 1929100 -33.794443 -33.797562 0.0031185845 164.12832 1.1284402 + 1929200 -33.792854 -33.799161 0.0063068191 331.92226 1.0861285 + 1929300 -33.789503 -33.79604 0.006537058 344.03953 0.75167685 + 1929400 -33.789166 -33.798852 0.0096857813 509.75403 0.23656493 + 1929500 -33.796153 -33.800449 0.00429625 226.1078 -0.27184111 + 1929600 -33.796459 -33.800932 0.0044732746 235.42445 -0.47778045 + 1929700 -33.794737 -33.800326 0.0055895871 294.17498 -0.60252374 + 1929800 -33.792287 -33.798349 0.0060612292 318.99709 -0.56586932 + 1929900 -33.787406 -33.797777 0.010371917 545.86474 -0.29796549 + 1930000 -33.788982 -33.795299 0.0063169487 332.45538 -0.15856387 + 1930100 -33.794233 -33.800006 0.0057732886 303.84303 0.078349577 + 1930200 -33.795505 -33.798589 0.0030836291 162.28865 0.20906921 + 1930300 -33.793535 -33.801272 0.0077364405 407.16196 0.41003434 + 1930400 -33.791737 -33.797407 0.005669787 298.39583 0.47518603 + 1930500 -33.79114 -33.801636 0.010495547 552.3713 0.59147118 + 1930600 -33.79662 -33.798669 0.002048319 107.8012 0.31869283 + 1930700 -33.796148 -33.801853 0.0057043579 300.21527 0.30926334 + 1930800 -33.795125 -33.796867 0.0017426356 91.713359 0.07080186 + 1930900 -33.789996 -33.802075 0.012078904 635.70194 0.015640942 + 1931000 -33.792835 -33.7955 0.002664506 140.23057 -0.37163902 + 1931100 -33.793183 -33.802787 0.0096040012 505.45002 -0.35394158 + 1931200 -33.796022 -33.797184 0.0011617566 61.142212 -0.5499504 + 1931300 -33.794677 -33.802952 0.0082749474 435.5031 -0.27496739 + 1931400 -33.794539 -33.795768 0.0012284905 64.65436 -0.2165487 + 1931500 -33.788185 -33.803186 0.015000863 789.48205 0.37340932 + 1931600 -33.792735 -33.794057 0.0013218452 69.567532 0.43677952 + 1931700 -33.794641 -33.803024 0.0083830124 441.19046 0.72844369 + 1931800 -33.796685 -33.797003 0.00031813153 16.742979 0.57817271 + 1931900 -33.793335 -33.803312 0.009977258 525.09419 0.69474099 + 1932000 -33.794202 -33.795498 0.001295336 68.172377 0.28513643 + 1932100 -33.792277 -33.803779 0.01150173 605.32578 0.2107113 + 1932200 -33.795326 -33.796284 0.00095820333 50.429387 -0.2550192 + 1932300 -33.794109 -33.803299 0.0091899161 483.65709 -0.27935288 + 1932400 -33.796072 -33.796433 0.00036056168 18.976039 -0.52904614 + 1932500 -33.792118 -33.802989 0.010870651 572.11268 -0.253732 + 1932600 -33.790852 -33.792261 0.0014089033 74.149323 -0.2695045 + 1932700 -33.789104 -33.80303 0.013926059 732.91608 0.26052122 + 1932800 -33.796486 -33.797366 0.00088009806 46.318776 0.17947988 + 1932900 -33.795419 -33.803284 0.007865419 413.94998 0.43105323 + 1933000 -33.795686 -33.797154 0.0014676087 77.238936 0.36874559 + 1933100 -33.792015 -33.802728 0.010713428 563.83816 0.54404274 + 1933200 -33.790409 -33.793274 0.0028645 150.75608 0.29592346 + 1933300 -33.782646 -33.800718 0.018072065 951.11664 0.46915578 + 1933400 -33.791902 -33.793929 0.0020265471 106.65537 -0.06039471 + 1933500 -33.792922 -33.801461 0.0085390738 449.40384 -0.0024497345 + 1933600 -33.795082 -33.797555 0.0024726349 130.13257 -0.13495948 + 1933700 -33.794044 -33.802115 0.008070791 424.75853 -0.014213546 + 1933800 -33.795782 -33.799011 0.0032290757 169.94337 -0.048782207 + 1933900 -33.796361 -33.802124 0.0057628773 303.29509 0.084217254 + 1934000 -33.797268 -33.799856 0.0025880847 136.20859 0.069406073 + 1934100 -33.794395 -33.800681 0.0062855987 330.80545 0.2305906 + 1934200 -33.790313 -33.796145 0.0058323416 306.95094 0.32693825 + 1934300 -33.790051 -33.798659 0.008608075 453.03531 0.40153523 + 1934400 -33.793698 -33.7988 0.0051014076 268.48253 0.33762994 + 1934500 -33.79469 -33.800257 0.0055670135 292.98696 0.31313808 + 1934600 -33.794713 -33.800136 0.0054225325 285.38305 0.19952461 + 1934700 -33.794418 -33.799629 0.0052115774 274.28067 0.091651957 + 1934800 -33.793317 -33.799863 0.0065459534 344.50769 0.0078586754 + 1934900 -33.792391 -33.797591 0.0051999514 273.66881 -0.14741505 + 1935000 -33.788327 -33.79838 0.010053705 529.1175 -0.097910683 + 1935100 -33.790489 -33.796014 0.0055245505 290.75216 -0.192813 + 1935200 -33.794844 -33.801256 0.0064119277 337.45404 -0.15319858 + 1935300 -33.796275 -33.79919 0.0029143365 153.37893 -0.1298323 + 1935400 -33.794411 -33.801895 0.0074846776 393.91191 0.08432027 + 1935500 -33.792963 -33.796687 0.0037236944 195.97472 0.14578261 + 1935600 -33.781947 -33.799638 0.01769122 931.07315 0.66444727 + 1935700 -33.789608 -33.79332 0.0037121429 195.36677 0.51438253 + 1935800 -33.791445 -33.800833 0.0093878183 494.0725 0.6531611 + 1935900 -33.79372 -33.795895 0.0021752434 114.48112 0.43130285 + 1936000 -33.793475 -33.802397 0.0089221531 469.56496 0.41837037 + 1936100 -33.796807 -33.798657 0.0018495169 97.338424 0.11625057 + 1936200 -33.79826 -33.803618 0.0053578907 281.98101 0.043137748 + 1936300 -33.79957 -33.800291 0.00072068816 37.929175 -0.16576308 + 1936400 -33.793871 -33.803241 0.009370245 493.14763 -0.065567848 + 1936500 -33.792954 -33.793927 0.00097255592 51.184751 -0.33705517 + 1936600 -33.789854 -33.802561 0.01270698 668.75704 -0.1309384 + 1936700 -33.793761 -33.794085 0.00032375609 17.038994 -0.30786126 + 1936800 -33.794782 -33.803112 0.0083300585 438.40355 -0.055087188 + 1936900 -33.798049 -33.798663 0.00061455401 32.343429 -0.10754964 + 1937000 -33.796442 -33.803902 0.0074594409 392.58372 0.17417086 + 1937100 -33.79273 -33.795476 0.0027459667 144.51778 0.22618439 + 1937200 -33.788795 -33.803131 0.014336509 754.51768 0.62427116 + 1937300 -33.794941 -33.795366 0.00042506574 22.370831 0.4443975 + 1937400 -33.794228 -33.801814 0.0075867092 399.28174 0.55578242 + 1937500 -33.793923 -33.794993 0.0010700825 56.317489 0.3067969 + 1937600 -33.781894 -33.803159 0.021265068 1119.1616 0.53069143 + 1937700 -33.791276 -33.794474 0.0031975111 168.28216 -0.16266623 + 1937800 -33.792866 -33.803007 0.010141447 533.73534 -0.19347435 + 1937900 -33.7964 -33.797119 0.00071876905 37.828174 -0.4204881 + 1938000 -33.794395 -33.802238 0.0078436936 412.8066 -0.24987325 + 1938100 -33.791508 -33.79371 0.0022021028 115.89471 -0.19569425 + 1938200 -33.786979 -33.802115 0.015136069 796.59779 0.40348134 + 1938300 -33.793745 -33.796272 0.0025269786 132.99263 0.36558 + 1938400 -33.793368 -33.802547 0.0091795821 483.11322 0.63276739 + 1938500 -33.795231 -33.797315 0.0020838015 109.66861 0.52924263 + 1938600 -33.793493 -33.801755 0.0082621159 434.82779 0.55044213 + 1938700 -33.791496 -33.79497 0.0034730429 182.78315 0.26992374 + 1938800 -33.785928 -33.799933 0.014005137 737.07787 0.21476275 + 1938900 -33.792877 -33.796392 0.0035149278 184.98751 -0.32520492 + 1939000 -33.794675 -33.801651 0.0069761174 367.14684 -0.3798793 + 1939100 -33.795522 -33.798907 0.0033851001 178.1548 -0.45048149 + 1939200 -33.793802 -33.800933 0.0071313028 375.3141 -0.28129144 + 1939300 -33.790299 -33.796499 0.0062002627 326.31429 -0.072016645 + 1939400 -33.786267 -33.797531 0.011264471 592.83905 0.38397017 + 1939500 -33.793096 -33.798098 0.0050025291 263.27865 0.53269135 + 1939600 -33.795061 -33.800182 0.0051210601 269.51682 0.63844471 + 1939700 -33.794969 -33.7999 0.0049311581 259.52245 0.61310496 + 1939800 -33.793597 -33.799477 0.005880484 309.48463 0.50391011 + 1939900 -33.789211 -33.798547 0.0093361371 491.35257 0.31918167 + 1940000 -33.789353 -33.796689 0.007335505 386.06109 -0.065785318 + 1940100 -33.795045 -33.800505 0.0054599116 287.35028 -0.3279195 + 1940200 -33.796201 -33.79919 0.0029893414 157.32637 -0.4588907 + 1940300 -33.793788 -33.800834 0.0070465197 370.85205 -0.34993148 + 1940400 -33.791025 -33.796358 0.0053327203 280.65631 -0.20222911 + 1940500 -33.786376 -33.800184 0.013808274 726.71717 0.25503192 + 1940600 -33.795292 -33.798095 0.002803064 147.52276 0.22665827 + 1940700 -33.795914 -33.802012 0.0060986515 320.96659 0.42455428 + 1940800 -33.79585 -33.797584 0.0017339856 91.258114 0.36476796 + 1940900 -33.789704 -33.801706 0.012001717 631.63967 0.55840055 + 1941000 -33.790874 -33.794049 0.0031749376 167.09413 0.32582767 + 1941100 -33.79414 -33.803069 0.0089290829 469.92967 0.29069551 + 1941200 -33.79724 -33.798275 0.0010345261 54.446188 0.02631697 + 1941300 -33.794668 -33.803089 0.0084208407 443.18133 0.096667393 + 1941400 -33.794271 -33.795052 0.00078081191 41.093434 -0.19695188 + 1941500 -33.788533 -33.803006 0.014472727 761.6867 -0.0018789027 + 1941600 -33.792203 -33.793142 0.0009389958 49.418511 -0.29563497 + 1941700 -33.795969 -33.803748 0.00777883 409.39288 -0.18089683 + 1941800 -33.79781 -33.798117 0.00030685131 16.149311 -0.24435888 + 1941900 -33.793667 -33.803835 0.010168046 535.13518 0.11263929 + 1942000 -33.792827 -33.793258 0.00043033599 22.648199 0.093111099 + 1942100 -33.789292 -33.803701 0.014409746 758.3721 0.63838947 + 1942200 -33.794756 -33.794815 5.8539626e-05 3.0808883 0.48710569 + 1942300 -33.797829 -33.803664 0.0058342717 307.05251 0.59118923 + 1942400 -33.798918 -33.799129 0.00021091823 11.100439 0.41720057 + 1942500 -33.794455 -33.803932 0.0094773494 498.78444 0.4062834 + 1942600 -33.793049 -33.794555 0.0015055648 79.236531 -0.11658081 + 1942700 -33.790539 -33.803339 0.012799906 673.64764 -0.2199417 + 1942800 -33.796061 -33.796386 0.00032498917 17.10389 -0.71269303 + 1942900 -33.796665 -33.802858 0.0061926585 325.91409 -0.63031167 + 1943000 -33.79742 -33.798308 0.00088784542 46.726513 -0.59342168 + 1943100 -33.787738 -33.802979 0.01524131 802.13656 0.089924296 + 1943200 -33.792244 -33.795295 0.0030506217 160.5515 0.37894373 + 1943300 -33.794416 -33.802573 0.0081568554 429.28802 0.83710575 + 1943400 -33.796574 -33.797797 0.001223255 64.378819 0.8184203 + 1943500 -33.793557 -33.801875 0.0083188252 437.81235 0.9340879 + 1943600 -33.789063 -33.792912 0.0038488172 202.55982 0.62380252 + 1943700 -33.787892 -33.801219 0.013326574 701.36572 0.39819092 + 1943800 -33.793464 -33.796782 0.003318338 174.64117 -0.15671961 + 1943900 -33.794153 -33.801867 0.0077136379 405.96188 -0.30709356 + 1944000 -33.796168 -33.79876 0.0025919811 136.41365 -0.53940893 + 1944100 -33.794675 -33.801312 0.0066367018 349.28369 -0.43900479 + 1944200 -33.788894 -33.794858 0.0059642903 313.89528 -0.29299258 + 1944300 -33.787141 -33.798592 0.011450955 602.65355 0.11623166 + 1944400 -33.793657 -33.798273 0.004616405 242.95728 0.2498047 + 1944500 -33.794368 -33.800591 0.0062234332 327.53374 0.42077132 + 1944600 -33.794715 -33.79944 0.0047245166 248.6471 0.46368327 + 1944700 -33.793895 -33.799793 0.0058979666 310.40472 0.50274173 + 1944800 -33.789789 -33.797667 0.0078778619 414.60485 0.42819963 + 1944900 -33.786896 -33.795903 0.0090071049 474.0359 0.26273984 + 1945000 -33.792609 -33.799304 0.0066948944 352.34632 0.026165384 + 1945100 -33.795049 -33.799374 0.0043254906 227.64671 -0.16537081 + 1945200 -33.794707 -33.800805 0.0060975312 320.90763 -0.17229297 + 1945300 -33.794263 -33.798509 0.0042454211 223.43273 -0.1823623 + 1945400 -33.788545 -33.799532 0.010987298 578.25167 -0.00075374198 + 1945500 -33.786875 -33.793432 0.0065571831 345.0987 0.072428791 + 1945600 -33.792802 -33.800952 0.0081501814 428.93678 0.23483916 + 1945700 -33.795391 -33.798034 0.0026431088 139.10446 0.15612849 + 1945800 -33.793927 -33.801716 0.0077891903 409.93814 0.31379238 + 1945900 -33.79373 -33.796726 0.0029964733 157.70172 0.23626297 + 1946000 -33.787888 -33.801432 0.013544723 712.84667 0.38562156 + 1946100 -33.790633 -33.794135 0.0035021384 184.31442 0.1296512 + 1946200 -33.794807 -33.802499 0.0076917618 404.81056 0.15051435 + 1946300 -33.796719 -33.797828 0.001108855 58.358048 -0.046335741 + 1946400 -33.79323 -33.802641 0.0094102656 495.25389 0.12252314 + 1946500 -33.791182 -33.793217 0.0020350924 107.1051 -0.026491187 + 1946600 -33.78591 -33.8029 0.016990027 894.16994 0.26641126 + 1946700 -33.796359 -33.79717 0.00081114638 42.689911 -0.038092437 + 1946800 -33.795714 -33.803444 0.0077301401 406.83038 0.12325011 + 1946900 -33.796035 -33.796293 0.00025830659 13.594445 -0.029123488 + 1947000 -33.789471 -33.803503 0.014032406 738.51302 0.32795291 + 1947100 -33.791349 -33.791955 0.00060597368 31.891855 0.096752007 + 1947200 -33.793426 -33.803972 0.010546164 555.03518 0.29315982 + 1947300 -33.797824 -33.797935 0.00011085091 5.8339843 0.096012128 + 1947400 -33.795072 -33.803945 0.0088728156 466.96837 0.248374 + 1947500 -33.794643 -33.794678 3.4844544e-05 1.8338373 0.016039709 + 1947600 -33.788941 -33.803859 0.014918749 785.16043 0.29384101 + 1947700 -33.792713 -33.792748 3.5389673e-05 1.8625269 -0.082985999 + 1947800 -33.796148 -33.803879 0.0077316124 406.90786 0.035260163 + 1947900 -33.798096 -33.798285 0.0001892168 9.9583114 -0.090826371 + 1948000 -33.794062 -33.803862 0.0097998278 515.7562 0.12148973 + 1948100 -33.792838 -33.793637 0.00079972403 42.088762 0.0020725215 + 1948200 -33.78987 -33.803346 0.01347648 709.2551 0.36004647 + 1948300 -33.794108 -33.794766 0.00065832767 34.647198 0.11984618 + 1948400 -33.792336 -33.803123 0.010786908 567.70535 0.35738721 + 1948500 -33.794587 -33.79559 0.001002433 52.757154 0.15776052 + 1948600 -33.792744 -33.80304 0.010295476 541.8417 0.28923684 + 1948700 -33.796162 -33.797375 0.0012135239 63.866681 0.068218606 + 1948800 -33.797165 -33.803178 0.0060128394 316.45037 0.11403148 + 1948900 -33.798502 -33.799708 0.0012063487 63.489054 -0.036495333 + 1949000 -33.794388 -33.802439 0.0080513512 423.73543 0.095939439 + 1949100 -33.792056 -33.79525 0.0031944873 168.12302 -0.039682632 + 1949200 -33.791031 -33.801159 0.010127717 533.01271 0.074851756 + 1949300 -33.795039 -33.797819 0.0027792505 146.26947 -0.042364877 + 1949400 -33.795946 -33.80189 0.0059435058 312.80141 0.034455678 + 1949500 -33.798962 -33.800906 0.0019439965 102.3108 -0.018067271 + 1949600 -33.800175 -33.802759 0.0025839347 135.99018 0.037816107 + 1949700 -33.799383 -33.801676 0.0022931004 120.68383 0.050737243 + 1949800 -33.796457 -33.800907 0.0044495396 234.1753 0.13963777 + 1949900 -33.794032 -33.7996 0.0055680812 293.04315 0.22244383 + 1950000 -33.792201 -33.798328 0.0061271545 322.46668 0.24060266 + 1950100 -33.790664 -33.798669 0.0080052112 421.30713 0.28510251 + 1950200 -33.793473 -33.798433 0.0049596567 261.02231 0.21311343 + 1950300 -33.796956 -33.801635 0.0046784885 246.22467 0.14983746 + 1950400 -33.797176 -33.799981 0.0028052913 147.63998 0.073979959 + 1950500 -33.794319 -33.801423 0.0071045179 373.90444 0.11894631 + 1950600 -33.794051 -33.79757 0.0035186102 185.18132 -0.032791785 + 1950700 -33.792718 -33.801424 0.0087065222 458.2165 0.04051327 + 1950800 -33.794113 -33.796837 0.0027242045 143.37245 -0.089348963 + 1950900 -33.793269 -33.80186 0.0085904104 452.10564 0.035500232 + 1951000 -33.796233 -33.79806 0.0018263872 96.121129 -0.050118027 + 1951100 -33.79723 -33.803056 0.0058264837 306.64264 0.081040442 + 1951200 -33.79789 -33.799063 0.0011733932 61.754637 0.032983085 + 1951300 -33.791029 -33.80278 0.011751553 618.47374 0.33762011 + 1951400 -33.791587 -33.79364 0.0020522479 108.00798 0.2110312 + 1951500 -33.791389 -33.802708 0.011318664 595.69119 0.43443635 + 1951600 -33.7949 -33.795586 0.00068619217 36.113682 0.21071115 + 1951700 -33.79312 -33.802978 0.0098582126 518.82894 0.34581062 + 1951800 -33.794601 -33.79551 0.00090904959 47.842469 0.0971138 + 1951900 -33.788165 -33.803558 0.015393248 810.13293 0.29487343 + 1952000 -33.790216 -33.791943 0.0017271387 90.897767 -0.12963464 + 1952100 -33.793062 -33.803475 0.010412471 547.99907 -0.021794946 + 1952200 -33.796854 -33.796937 8.320093e-05 4.3787907 -0.24999749 + 1952300 -33.794289 -33.803397 0.0091072117 479.30443 -0.025083772 + 1952400 -33.792365 -33.793049 0.00068346207 35.969999 -0.054796124 + 1952500 -33.78606 -33.803956 0.017895757 941.83774 0.47471101 + 1952600 -33.794377 -33.794938 0.00056180661 29.567381 0.2418587 + 1952700 -33.793277 -33.803673 0.010396043 547.13447 0.51765849 + 1952800 -33.795158 -33.79531 0.00015138741 7.9673846 0.27249948 + 1952900 -33.791542 -33.803441 0.011899192 626.24385 0.43684683 + 1953000 -33.79239 -33.792957 0.00056636649 29.807363 0.10075725 + 1953100 -33.790018 -33.803534 0.013516384 711.35521 0.17226875 + 1953200 -33.79686 -33.797382 0.00052207908 27.476556 -0.21002715 + 1953300 -33.79639 -33.803633 0.007242867 381.18563 -0.095644775 + 1953400 -33.796451 -33.797341 0.00089019507 46.850173 -0.24114213 + 1953500 -33.789811 -33.802912 0.013100691 689.4777 0.09740736 + 1953600 -33.790522 -33.792291 0.0017688277 93.091824 0.029904384 + 1953700 -33.789913 -33.80229 0.012376418 651.35986 0.33914695 + 1953800 -33.795025 -33.796485 0.0014593581 76.804715 0.211512 + 1953900 -33.794873 -33.802655 0.0077818946 409.55417 0.38741673 + 1954000 -33.796512 -33.798356 0.0018439863 97.047353 0.22380346 + 1954100 -33.793591 -33.802318 0.0087265042 459.26813 0.31719476 + 1954200 -33.789997 -33.794398 0.0044004875 231.59373 0.11680798 + 1954300 -33.789166 -33.800504 0.011338123 596.7153 0.06677582 + 1954400 -33.795453 -33.798058 0.0026049682 137.09715 -0.19467661 + 1954500 -33.795182 -33.801335 0.0061527113 323.81171 -0.13959206 + 1954600 -33.794774 -33.798544 0.003769991 198.41126 -0.17269349 + 1954700 -33.793062 -33.800692 0.0076298904 401.55432 0.0078406179 + 1954800 -33.793375 -33.798578 0.0052025953 273.80795 0.075104016 + 1954900 -33.796535 -33.801132 0.0045963699 241.90285 0.14944891 + 1955000 -33.798549 -33.801317 0.0027677444 145.66392 0.17806801 + 1955100 -33.79722 -33.800775 0.0035548546 187.08883 0.21990516 + 1955200 -33.792758 -33.799562 0.0068040249 358.08976 0.29760101 + 1955300 -33.792195 -33.798054 0.0058597994 308.39602 0.26635783 + 1955400 -33.793206 -33.800388 0.0071818354 377.97359 0.22574703 + 1955500 -33.795932 -33.799359 0.0034264146 180.32914 0.09098651 + 1955600 -33.798876 -33.802485 0.003608369 189.90524 0.051254351 + 1955700 -33.799733 -33.80114 0.0014063479 74.014835 -0.028364001 + 1955800 -33.793795 -33.801708 0.0079128447 416.44596 0.093732935 + 1955900 -33.792727 -33.796242 0.0035142602 184.95238 -0.024329188 + 1956000 -33.791641 -33.801887 0.010245937 539.23451 0.10140073 + 1956100 -33.795233 -33.797234 0.0020006036 105.28998 -0.054650087 + 1956200 -33.795602 -33.802559 0.0069561358 366.09522 0.070756368 + 1956300 -33.796563 -33.797744 0.0011811416 62.162427 0.0026403605 + 1956400 -33.788886 -33.802375 0.013489009 709.91449 0.33802938 + 1956500 -33.789611 -33.792255 0.0026438016 139.14092 0.19424395 + 1956600 -33.79181 -33.803174 0.01136357 598.05458 0.4269883 + 1956700 -33.795321 -33.796169 0.00084756795 44.606745 0.20951995 + 1956800 -33.793201 -33.80317 0.0099684756 524.63198 0.34697077 + 1956900 -33.794417 -33.794907 0.00048993615 25.784903 0.09668329 + 1957000 -33.787595 -33.803288 0.015693743 825.94769 0.30425293 + 1957100 -33.788267 -33.789404 0.0011369756 59.838014 -0.14257846 + 1957200 -33.791847 -33.803853 0.012005932 631.86149 0.00091663153 + 1957300 -33.796308 -33.796523 0.00021427606 11.277158 -0.26223939 + 1957400 -33.794016 -33.803835 0.0098194607 516.78946 -0.036664449 + 1957500 -33.79434 -33.794376 3.5477216e-05 1.8671342 -0.12021688 + 1957600 -33.785141 -33.803848 0.018707204 984.54347 0.42511538 + 1957700 -33.789397 -33.789543 0.00014665533 7.718339 0.22588112 + 1957800 -33.793597 -33.80394 0.010342772 544.33085 0.53516748 + 1957900 -33.79631 -33.796403 9.3092537e-05 4.8993772 0.32405613 + 1958000 -33.793068 -33.803931 0.010862346 571.67556 0.46764446 + 1958100 -33.79307 -33.793404 0.00033361666 17.557947 0.12996675 + 1958200 -33.787523 -33.803706 0.016182686 851.68033 0.24749037 + 1958300 -33.794042 -33.794282 0.00024013933 12.638319 -0.27775806 + 1958400 -33.795396 -33.803622 0.0082265115 432.95396 -0.17937281 + 1958500 -33.79703 -33.797531 0.00050067745 26.350207 -0.33698936 + 1958600 -33.7929 -33.803458 0.010558311 555.67447 -0.046356741 + 1958700 -33.790106 -33.791893 0.0017871356 94.055351 -0.025392403 + 1958800 -33.787387 -33.802488 0.01510111 794.75797 0.472948 + 1958900 -33.797099 -33.797951 0.00085140796 44.808841 0.28801645 + 1959000 -33.796069 -33.803059 0.0069902354 367.88986 0.4595506 + 1959100 -33.795074 -33.796859 0.0017854209 93.96511 0.30698214 + 1959200 -33.789931 -33.802062 0.012130486 638.41667 0.39594491 + 1959300 -33.79165 -33.794561 0.0029109891 153.20276 0.045359009 + 1959400 -33.794354 -33.802139 0.0077848876 409.71169 -0.020525806 + 1959500 -33.797451 -33.799344 0.0018927739 99.615 -0.2067512 + 1959600 -33.795637 -33.802015 0.0063772599 335.6295 -0.11053981 + 1959700 -33.793351 -33.797243 0.0038910601 204.78302 -0.12614528 + 1959800 -33.790421 -33.800201 0.0097796919 514.69646 0.092909963 + 1959900 -33.793493 -33.79766 0.004167626 219.33844 0.11004759 + 1960000 -33.797401 -33.801706 0.0043052744 226.58275 0.16253885 + 1960100 -33.79738 -33.800627 0.0032470062 170.88704 0.1869097 + 1960200 -33.794964 -33.800242 0.0052782714 277.79071 0.25416916 + 1960300 -33.791601 -33.79853 0.0069292071 364.67799 0.2682043 + 1960400 -33.791786 -33.798322 0.0065361628 343.99242 0.2350349 + 1960500 -33.793386 -33.799811 0.006424491 338.11523 0.1751506 + 1960600 -33.794281 -33.798904 0.0046225736 243.28193 0.070917563 + 1960700 -33.793726 -33.800453 0.0067266984 354.02013 0.076180868 + 1960800 -33.794019 -33.798179 0.0041595243 218.91205 -0.016453792 + 1960900 -33.792833 -33.80076 0.0079278969 417.23814 0.038520699 + 1961000 -33.794335 -33.79789 0.0035551116 187.10235 -0.035871685 + 1961100 -33.795907 -33.802124 0.0062173329 327.21269 0.034224427 + 1961200 -33.797414 -33.799381 0.0019678676 103.56712 -0.016522484 + 1961300 -33.794258 -33.802123 0.0078648814 413.92169 0.16340335 + 1961400 -33.791318 -33.794143 0.0028252486 148.69031 0.13243086 + 1961500 -33.788846 -33.801758 0.012911576 679.5247 0.4189482 + 1961600 -33.793398 -33.795522 0.0021247275 111.82251 0.23983784 + 1961700 -33.79306 -33.802697 0.0096370147 507.18749 0.3775163 + 1961800 -33.795001 -33.796386 0.0013854311 72.914001 0.17396759 + 1961900 -33.792901 -33.803045 0.010143641 533.85079 0.29003462 + 1962000 -33.794611 -33.79569 0.0010791703 56.79577 0.0070803646 + 1962100 -33.792689 -33.803326 0.010637161 559.82432 0.13005059 + 1962200 -33.795356 -33.796002 0.00064578663 33.987174 -0.13609425 + 1962300 -33.793848 -33.803586 0.0097388062 512.54468 0.013859572 + 1962400 -33.795759 -33.796098 0.00033853438 17.816762 -0.1539243 + 1962500 -33.791643 -33.803714 0.012071286 635.30104 0.13165538 + 1962600 -33.791665 -33.792001 0.00033543787 17.653796 -0.036655963 + 1962700 -33.788739 -33.803872 0.015133345 796.45447 0.38392568 + 1962800 -33.796389 -33.796495 0.0001060692 5.5823274 0.1198943 + 1962900 -33.795525 -33.80394 0.0084151632 442.88253 0.30408864 + 1963000 -33.796293 -33.796303 1.0597907e-05 0.55775838 0.13317837 + 1963100 -33.790867 -33.803978 0.013110989 690.01963 0.35159653 + 1963200 -33.790382 -33.790563 0.00018157136 9.5559388 0.0053037943 + 1963300 -33.781814 -33.803871 0.022057524 1160.8678 0.3715785 + 1963400 -33.793116 -33.793187 7.0861967e-05 3.7294021 -0.19262469 + 1963500 -33.7939 -33.803814 0.0099132889 521.72755 -0.0070195857 + 1963600 -33.796778 -33.796962 0.00018384711 9.6757095 -0.17911853 + 1963700 -33.79383 -33.803765 0.0099351211 522.87656 0.069499061 + 1963800 -33.791751 -33.792652 0.00090052317 47.393731 -0.0011357708 + 1963900 -33.785717 -33.803239 0.017522518 922.1945 0.49515493 + 1964000 -33.795284 -33.795822 0.00053737132 28.281373 0.22934273 + 1964100 -33.794975 -33.803371 0.0083953435 441.83944 0.41907905 + 1964200 -33.795685 -33.796674 0.00098965579 52.084701 0.23418869 + 1964300 -33.791406 -33.802908 0.011501357 605.30615 0.36347447 + 1964400 -33.790783 -33.79295 0.0021665563 114.02392 0.040537226 + 1964500 -33.790598 -33.802245 0.011647318 612.98798 0.083866811 + 1964600 -33.79733 -33.798647 0.0013162736 69.274303 -0.20853723 + 1964700 -33.796143 -33.802738 0.0065949658 347.08717 -0.1021365 + 1964800 -33.794347 -33.796985 0.00263739 138.80348 -0.13988573 + 1964900 -33.789421 -33.80103 0.011608572 610.9488 0.14548061 + 1965000 -33.79151 -33.795342 0.0038321339 201.68179 0.12874564 + 1965100 -33.791486 -33.80098 0.0094939115 499.65609 0.34745202 + 1965200 -33.79406 -33.79759 0.0035297634 185.7683 0.2844008 + 1965300 -33.794292 -33.801183 0.0068911821 362.67677 0.37298209 + 1965400 -33.796303 -33.799492 0.003189498 167.86044 0.25953949 + 1965500 -33.796616 -33.801445 0.0048287026 254.13031 0.22459362 + 1965600 -33.796551 -33.800232 0.0036813992 193.74876 0.12077648 + 1965700 -33.793568 -33.799738 0.0061702106 324.73268 0.057615074 + 1965800 -33.789665 -33.797546 0.0078810893 414.7747 -0.053973339 + 1965900 -33.791124 -33.798066 0.0069428862 365.39791 -0.18172761 + 1966000 -33.795564 -33.800609 0.0050453262 265.53102 -0.26031783 + 1966100 -33.796166 -33.799872 0.0037051701 194.9998 -0.24156258 + 1966200 -33.794499 -33.800789 0.0062903189 331.05387 -0.069123112 + 1966300 -33.793456 -33.797846 0.0043899693 231.04017 0.070978989 + 1966400 -33.789896 -33.799969 0.010073445 530.15644 0.40898505 + 1966500 -33.7917 -33.79626 0.0045590296 239.93766 0.48006827 + 1966600 -33.795912 -33.802034 0.0061222543 322.20878 0.57215373 + 1966700 -33.797365 -33.799326 0.0019609738 103.2043 0.45637893 + 1966800 -33.79403 -33.802018 0.0079879404 420.39818 0.45127239 + 1966900 -33.791122 -33.794253 0.0031304976 164.75529 0.099145244 + 1967000 -33.788814 -33.801768 0.012953674 681.74033 -0.030550099 + 1967100 -33.79284 -33.795184 0.002343748 123.34937 -0.49118863 + 1967200 -33.793181 -33.802607 0.0094260699 496.08565 -0.44337178 + 1967300 -33.795862 -33.797103 0.0012409088 65.307925 -0.57055062 + 1967400 -33.79503 -33.803168 0.0081377591 428.283 -0.27860892 + 1967500 -33.796946 -33.797778 0.00083223997 43.800047 -0.19843922 + 1967600 -33.793848 -33.803425 0.0095765973 504.00778 0.25629139 + 1967700 -33.793005 -33.793947 0.00094142732 49.54648 0.40256067 + 1967800 -33.788118 -33.803305 0.015187389 799.29875 1.0252005 + 1967900 -33.794609 -33.795147 0.00053823118 28.326627 0.87781835 + 1968000 -33.79587 -33.803569 0.0076998625 405.2369 0.97289116 + 1968100 -33.796944 -33.79719 0.00024610593 12.952336 0.62155643 + 1968200 -33.792596 -33.803865 0.01126897 593.07585 0.4630441 + 1968300 -33.793157 -33.793872 0.00071570511 37.666922 -0.28780055 + 1968400 -33.791902 -33.803823 0.011920392 627.35962 -0.53812931 + 1968500 -33.798409 -33.798438 2.9125607e-05 1.5328547 -1.0020361 + 1968600 -33.796966 -33.803689 0.0067223651 353.79208 -0.81722533 + 1968700 -33.795551 -33.795964 0.00041289264 21.730172 -0.63774472 + 1968800 -33.79014 -33.803819 0.013679019 719.91455 0.20379011 + 1968900 -33.793509 -33.794315 0.0008063832 42.439228 0.57819477 + 1969000 -33.79305 -33.803486 0.010435748 549.22409 1.2273002 + 1969100 -33.79628 -33.796684 0.00040374231 21.248597 1.1797955 + 1969200 -33.794798 -33.803256 0.0084579487 445.13429 1.2715707 + 1969300 -33.796096 -33.796973 0.0008769623 46.153744 0.82607841 + 1969400 -33.792285 -33.803199 0.01091453 574.422 0.5025696 + 1969500 -33.792267 -33.794386 0.0021188784 111.51468 -0.36198245 + 1969600 -33.791419 -33.802532 0.011112711 584.85209 -0.79563682 + 1969700 -33.796845 -33.798011 0.0011653293 61.330241 -1.3144105 + 1969800 -33.796411 -33.802621 0.0062098497 326.81885 -1.1717896 + 1969900 -33.794408 -33.797118 0.0027096507 142.6065 -0.91024575 + 1970000 -33.786223 -33.800841 0.014618145 769.33995 0.17316685 + 1970100 -33.792238 -33.795879 0.0036413213 191.63949 0.87841331 + 1970200 -33.793923 -33.801526 0.0076023479 400.10479 1.4756578 + 1970300 -33.795914 -33.798547 0.0026339038 138.62001 1.5201512 + 1970400 -33.794241 -33.801186 0.0069452404 365.52181 1.4555806 + 1970500 -33.787787 -33.794627 0.0068394962 359.95658 0.90409667 + 1970600 -33.786059 -33.798539 0.012480304 656.82727 0.053395305 + 1970700 -33.792967 -33.797889 0.0049222265 259.05239 -0.81411452 + 1970800 -33.793531 -33.800083 0.0065517005 344.81015 -1.1625191 + 1970900 -33.794575 -33.799153 0.0045775444 240.91208 -1.2905496 + 1971000 -33.794436 -33.799889 0.0054532944 287.00202 -1.0607271 + 1971100 -33.793588 -33.799543 0.0059552761 313.42087 -0.60080292 + 1971200 -33.792601 -33.798704 0.0061028026 321.18506 0.03968715 + 1971300 -33.792324 -33.799621 0.0072964878 384.00764 0.76305976 + 1971400 -33.794822 -33.799068 0.0042464253 223.48558 1.1736416 + 1971500 -33.796907 -33.801546 0.0046384101 244.11539 1.3354976 + 1971600 -33.79734 -33.799939 0.0025987986 136.77245 1.1790174 + 1971700 -33.790213 -33.800296 0.010083074 530.66321 0.87691857 + 1971800 -33.789727 -33.795027 0.0052995113 278.90855 -0.076076982 + 1971900 -33.792719 -33.801466 0.0087461551 460.30234 -0.73769479 + 1972000 -33.795659 -33.797958 0.0022989834 120.99344 -1.2501163 + 1972100 -33.79436 -33.80203 0.0076698186 403.65571 -1.1978927 + 1972200 -33.794574 -33.796692 0.0021180142 111.4692 -1.0764724 + 1972300 -33.788837 -33.801933 0.013096053 689.2336 -0.33152676 + 1972400 -33.783837 -33.78844 0.0046024655 242.22366 0.47004246 + 1972500 -33.789037 -33.802216 0.013178612 693.57858 1.5172651 + 1972600 -33.794469 -33.795844 0.0013743783 72.332307 1.6156157 + 1972700 -33.794006 -33.802693 0.008687002 457.18917 1.7386102 + 1972800 -33.795653 -33.796766 0.001112869 58.569302 1.2284111 + 1972900 -33.791827 -33.803251 0.011423416 601.2042 0.81688062 + 1973000 -33.791398 -33.793359 0.0019609483 103.20296 -0.26598537 + 1973100 -33.790541 -33.803281 0.012739991 670.49438 -0.96639233 + 1973200 -33.796605 -33.796956 0.00035111174 18.478698 -1.6568018 + 1973300 -33.795279 -33.803228 0.007948689 418.33241 -1.5018616 + 1973400 -33.795376 -33.795867 0.00049121266 25.852084 -1.2911964 + 1973500 -33.789641 -33.803863 0.014221466 748.46309 -0.21027445 + 1973600 -33.791958 -33.793163 0.0012057058 63.455221 0.54092944 + 1973700 -33.795073 -33.803711 0.0086377041 454.59466 1.3522146 + 1973800 -33.798036 -33.798056 1.9662236e-05 1.034806 1.4315885 + 1973900 -33.794755 -33.803583 0.0088284787 464.63496 1.5339965 + 1974000 -33.792856 -33.793468 0.00061245259 32.232833 0.89542259 + 1974100 -33.788989 -33.803811 0.014821944 780.06571 0.43328459 + 1974200 -33.794937 -33.795486 0.0005489191 28.889123 -0.58888549 + 1974300 -33.794747 -33.803608 0.0088610318 466.3482 -0.85973091 + 1974400 -33.796252 -33.796686 0.00043385762 22.83354 -1.1918802 + 1974500 -33.793027 -33.803293 0.010266096 540.29547 -0.92852221 + 1974600 -33.792904 -33.794106 0.0012019975 63.260055 -0.7794512 + 1974700 -33.789105 -33.80294 0.013835206 728.13454 0.072020875 + 1974800 -33.795752 -33.796779 0.0010271886 54.060018 0.33247072 + 1974900 -33.796458 -33.803194 0.0067362444 354.52253 0.73476812 + 1975000 -33.797004 -33.798305 0.001300342 68.43584 0.76524057 + 1975100 -33.792291 -33.802404 0.010113383 532.25834 0.9158737 + 1975200 -33.791047 -33.794031 0.0029841366 157.05245 0.56493601 + 1975300 -33.790302 -33.801568 0.011266701 592.95644 0.43584918 + 1975400 -33.794308 -33.796902 0.002593949 136.51722 -0.067328863 + 1975500 -33.794398 -33.801899 0.0075004046 394.7396 -0.19615375 + 1975600 -33.796403 -33.798895 0.0024915682 131.12901 -0.42764044 + 1975700 -33.796518 -33.801961 0.0054431297 286.46706 -0.40513628 + 1975800 -33.796996 -33.799877 0.0028805138 151.59887 -0.37087287 + 1975900 -33.794109 -33.800778 0.0066689057 350.97856 -0.095089921 + 1976000 -33.790398 -33.796823 0.0064247861 338.13076 0.22279881 + 1976100 -33.790546 -33.79882 0.0082744788 435.47844 0.62063522 + 1976200 -33.795823 -33.799982 0.0041588821 218.87826 0.71723755 + 1976300 -33.796755 -33.800764 0.0040086559 210.97199 0.72346558 + 1976400 -33.795566 -33.800508 0.0049425225 260.12055 0.6331697 + 1976500 -33.793956 -33.799039 0.0050831066 267.51937 0.36764087 + 1976600 -33.790585 -33.799284 0.0086994499 457.84429 0.046236647 + 1976700 -33.791544 -33.797094 0.0055500862 292.09608 -0.40311294 + 1976800 -33.796567 -33.80164 0.0050734235 267.00975 -0.63408373 + 1976900 -33.797571 -33.79988 0.0023090913 121.52542 -0.68460316 + 1977000 -33.794281 -33.801542 0.0072608563 382.13239 -0.4032065 + 1977100 -33.792195 -33.796042 0.0038469913 202.46372 -0.11159417 + 1977200 -33.790667 -33.801475 0.010808221 568.82704 0.51872086 + 1977300 -33.793456 -33.796286 0.0028303824 148.9605 0.73395572 + 1977400 -33.793357 -33.802067 0.0087099691 458.3979 1.0344147 + 1977500 -33.795415 -33.797132 0.0017174528 90.388011 0.91516705 + 1977600 -33.795135 -33.802767 0.0076314084 401.63422 0.87744872 + 1977700 -33.797451 -33.798621 0.0011698943 61.570496 0.45884337 + 1977800 -33.795526 -33.803286 0.007759864 408.39472 0.27414464 + 1977900 -33.794028 -33.795503 0.001475014 77.628673 -0.29309674 + 1978000 -33.788122 -33.802901 0.01477908 777.80981 -0.57658256 + 1978100 -33.793036 -33.793989 0.00095288786 50.149638 -1.2087113 + 1978200 -33.795593 -33.803077 0.007483962 393.87424 -1.1421016 + 1978300 -33.79721 -33.797629 0.00041895686 22.049326 -1.0827235 + 1978400 -33.793612 -33.803662 0.010050775 528.96333 -0.37872606 + 1978500 -33.793423 -33.79498 0.0015569814 81.942541 0.16850829 + 1978600 -33.791016 -33.803725 0.012708818 668.85375 1.158927 + 1978700 -33.797377 -33.797573 0.00019559396 10.293935 1.3663102 + 1978800 -33.796962 -33.803259 0.0062970898 331.41022 1.5359972 + 1978900 -33.796665 -33.79699 0.00032513283 17.111451 1.1452241 + 1979000 -33.791998 -33.803762 0.011764374 619.14852 0.77692764 + 1979100 -33.79426 -33.795566 0.0013062402 68.746255 -0.26776615 + 1979200 -33.79328 -33.803632 0.010352103 544.82196 -0.79114851 + 1979300 -33.796532 -33.796973 0.00044040158 23.177943 -1.3936465 + 1979400 -33.796019 -33.803065 0.0070453085 370.7883 -1.3659777 + 1979500 -33.797565 -33.798174 0.00060959448 32.082414 -1.2845837 + 1979600 -33.793165 -33.803193 0.01002804 527.76681 -0.5117919 + 1979700 -33.791339 -33.794355 0.0030163207 158.74627 0.2999288 + 1979800 -33.791408 -33.802582 0.011174227 588.08958 1.4103711 + 1979900 -33.796691 -33.797892 0.0012008475 63.199533 1.6938037 + 1980000 -33.795408 -33.80229 0.0068815403 362.16933 1.8535817 + 1980100 -33.79519 -33.797223 0.0020332039 107.00571 1.442121 + 1980200 -33.79194 -33.801928 0.009988282 525.67437 0.93130659 + 1980300 -33.792401 -33.796267 0.0038656368 203.44502 -0.16098687 + 1980400 -33.794884 -33.801908 0.0070240034 369.66703 -0.87485958 + 1980500 -33.798241 -33.800168 0.0019270315 101.41795 -1.29581 + 1980600 -33.796717 -33.801783 0.005065507 266.59311 -1.2551408 + 1980700 -33.79361 -33.798044 0.0044330736 233.30871 -0.9338509 + 1980800 -33.792142 -33.799999 0.0078570297 413.50846 -0.23570067 + 1980900 -33.793415 -33.798615 0.0051998624 273.66412 0.39587937 + 1981000 -33.794296 -33.800122 0.0058254582 306.58867 0.97013207 + 1981100 -33.797225 -33.800762 0.0035371769 186.15846 1.2054243 + 1981200 -33.799185 -33.801672 0.0024869607 130.88652 1.1760306 + 1981300 -33.798517 -33.801906 0.0033895976 178.3915 0.9718623 + 1981400 -33.795096 -33.799408 0.0043113043 226.9001 0.40153663 + 1981500 -33.792972 -33.800771 0.0077996089 410.48646 -0.42541427 + 1981600 -33.79382 -33.797796 0.0039764051 209.27465 -1.2845156 + 1981700 -33.793638 -33.800855 0.0072170935 379.82919 -1.7137833 + 1981800 -33.794977 -33.797639 0.0026622779 140.11331 -1.870509 + 1981900 -33.79385 -33.801659 0.0078091798 410.99017 -1.4142065 + 1982000 -33.79427 -33.797267 0.0029969702 157.72787 -0.85037514 + 1982100 -33.791839 -33.802274 0.010435273 549.19911 0.23888712 + 1982200 -33.794697 -33.797029 0.0023312099 122.6895 0.96230884 + 1982300 -33.79618 -33.80275 0.0065692843 345.73557 1.5485845 + 1982400 -33.797913 -33.79872 0.00080681132 42.46176 1.5815296 + 1982500 -33.792468 -33.802607 0.010139488 533.6322 1.5627423 + 1982600 -33.790705 -33.792913 0.0022078956 116.19957 0.66379676 + 1982700 -33.790877 -33.803362 0.012485517 657.10163 0.027801265 + 1982800 -33.795851 -33.79664 0.00078954002 41.552787 -0.83008857 + 1982900 -33.794475 -33.803358 0.0088832684 467.51849 -1.0124478 + 1983000 -33.795461 -33.795719 0.00025754722 13.55448 -1.2481415 + 1983100 -33.791536 -33.803555 0.01201884 632.54085 -0.82699795 + 1983200 -33.793903 -33.794419 0.00051588833 27.150743 -0.64558787 + 1983300 -33.791987 -33.803939 0.011951781 629.0116 0.16198088 + 1983400 -33.79562 -33.795909 0.00028861235 15.189411 0.40893517 + 1983500 -33.794878 -33.803843 0.0089655313 471.84792 0.93347174 + 1983600 -33.797475 -33.797482 6.9577353e-06 0.3661794 0.92399835 + 1983700 -33.794765 -33.803809 0.0090446159 476.01007 1.0432209 + 1983800 -33.792799 -33.793239 0.00044015735 23.165088 0.58850388 + 1983900 -33.787656 -33.803817 0.016161165 850.54771 0.42312528 + 1984000 -33.794613 -33.794944 0.00033161898 17.452811 -0.41716915 + 1984100 -33.794907 -33.803674 0.008766362 461.36581 -0.50054665 + 1984200 -33.796326 -33.796711 0.00038433379 20.227145 -0.74982238 + 1984300 -33.792823 -33.803448 0.010625231 559.19646 -0.49266761 + 1984400 -33.79266 -33.793793 0.0011330197 59.629815 -0.43397112 + 1984500 -33.788297 -33.803011 0.014714218 774.39617 0.23830007 + 1984600 -33.7948 -33.795805 0.0010051786 52.901653 0.28867345 + 1984700 -33.795711 -33.803167 0.0074566896 392.43892 0.61982915 + 1984800 -33.797077 -33.798222 0.0011454878 60.286 0.55129365 + 1984900 -33.792844 -33.802638 0.0097933945 515.41762 0.65350633 + 1985000 -33.789799 -33.792899 0.003100806 163.19265 0.32555676 + 1985100 -33.789015 -33.801581 0.012565914 661.33284 0.22251875 + 1985200 -33.793605 -33.796218 0.0026124293 137.48983 -0.23573499 + 1985300 -33.793473 -33.801874 0.0084011395 442.14448 -0.24561147 + 1985400 -33.795699 -33.798211 0.0025117855 132.19303 -0.42297196 + 1985500 -33.795257 -33.801794 0.0065369469 344.03368 -0.29792001 + 1985600 -33.796511 -33.799328 0.0028175773 148.28658 -0.23076503 + 1985700 -33.794868 -33.801285 0.0064171356 337.72812 0.023200843 + 1985800 -33.791388 -33.79702 0.0056311424 296.362 0.27260976 + 1985900 -33.789161 -33.798752 0.0095906749 504.74867 0.67167332 + 1986000 -33.794821 -33.799179 0.0043583807 229.37769 0.72362387 + 1986100 -33.796683 -33.800985 0.0043024691 226.43511 0.72098504 + 1986200 -33.795844 -33.80034 0.0044964426 236.64376 0.60012122 + 1986300 -33.793953 -33.799309 0.0053553924 281.84953 0.33271654 + 1986400 -33.790575 -33.798831 0.0082564461 434.52939 -0.014129714 + 1986500 -33.791422 -33.797395 0.0059728107 314.3437 -0.46333537 + 1986600 -33.797142 -33.801685 0.0045437056 239.13117 -0.69538135 + 1986700 -33.797772 -33.800226 0.0024539456 129.14897 -0.70156418 + 1986800 -33.793934 -33.801224 0.0072899475 383.66344 -0.3900857 + 1986900 -33.79199 -33.796089 0.004099338 215.7445 -0.030356432 + 1987000 -33.790856 -33.80114 0.010283852 541.22996 0.63526087 + 1987100 -33.793916 -33.796879 0.0029631101 155.94584 0.84792804 + 1987200 -33.793498 -33.801969 0.0084709472 445.8184 1.1188558 + 1987300 -33.794715 -33.79685 0.0021346707 112.34581 0.97005069 + 1987400 -33.792603 -33.802273 0.0096692213 508.88249 0.88509393 + 1987500 -33.794065 -33.796054 0.0019889547 104.67691 0.35069954 + 1987600 -33.794084 -33.802974 0.0088898611 467.86546 0.095999054 + 1987700 -33.797381 -33.798374 0.00099282998 52.251756 -0.38513099 + 1987800 -33.79622 -33.803373 0.0071528281 376.44696 -0.42811244 + 1987900 -33.795074 -33.795693 0.00061937221 32.597007 -0.60449136 + 1988000 -33.787852 -33.803187 0.015335837 807.11143 -0.24533027 + 1988100 -33.792228 -33.793008 0.00077996646 41.048939 -0.35125714 + 1988200 -33.792265 -33.803661 0.011395573 599.73887 0.092584809 + 1988300 -33.795435 -33.795768 0.00033289436 17.519933 0.061514766 + 1988400 -33.793096 -33.80383 0.010733558 564.89756 0.47599808 + 1988500 -33.794995 -33.795144 0.00014919213 7.8518487 0.40013261 + 1988600 -33.791692 -33.803904 0.012212088 642.7113 0.69127269 + 1988700 -33.792901 -33.792949 4.7621676e-05 2.5062863 0.42383915 + 1988800 -33.789774 -33.803958 0.014184179 746.50067 0.58309951 + 1988900 -33.795314 -33.795343 2.9312623e-05 1.5426972 0.1091216 + 1989000 -33.795262 -33.803981 0.0087184256 458.84296 0.15547921 + 1989100 -33.797324 -33.797385 6.1283799e-05 3.2253117 -0.14627045 + 1989200 -33.791563 -33.803959 0.012396036 652.39234 -0.0033134124 + 1989300 -33.789716 -33.790056 0.00033968836 17.877495 -0.32181884 + 1989400 -33.78887 -33.803657 0.014787927 778.27541 -0.082416172 + 1989500 -33.794828 -33.795127 0.00029877841 15.724441 -0.35295298 + 1989600 -33.793195 -33.803614 0.010419721 548.38062 -0.024802343 + 1989700 -33.795237 -33.795823 0.00058656456 30.87037 -0.093149526 + 1989800 -33.792327 -33.803433 0.011106554 584.52801 0.28900766 + 1989900 -33.792051 -33.793335 0.0012847571 67.61562 0.28245898 + 1990000 -33.78854 -33.802818 0.014278741 751.47738 0.67376639 + 1990100 -33.795077 -33.796102 0.0010243387 53.91003 0.45019005 + 1990200 -33.795391 -33.803053 0.0076623532 403.26281 0.5531422 + 1990300 -33.796553 -33.797922 0.0013697044 72.086321 0.28993285 + 1990400 -33.79179 -33.802502 0.010712521 563.79042 0.28284844 + 1990500 -33.786957 -33.790974 0.0040178955 211.45826 -0.19732199 + 1990600 -33.787922 -33.801155 0.013232981 696.44 -0.3696467 + 1990700 -33.794027 -33.796575 0.0025485905 134.13004 -0.71113544 + 1990800 -33.794238 -33.801818 0.0075798952 398.92312 -0.56172317 + 1990900 -33.795868 -33.798522 0.0026542087 139.68864 -0.50238112 + 1991000 -33.794141 -33.801504 0.0073630923 387.51298 -0.10000588 + 1991100 -33.789784 -33.795567 0.0057826026 304.33322 0.31409398 + 1991200 -33.788044 -33.799124 0.011080212 583.14169 0.91217946 + 1991300 -33.794744 -33.798638 0.0038947443 204.97692 1.0607522 + 1991400 -33.795264 -33.800767 0.0055027395 289.60427 1.1075546 + 1991500 -33.794735 -33.79927 0.0045347089 238.65768 0.8824898 + 1991600 -33.79305 -33.799606 0.0065560249 345.03774 0.54505265 + 1991700 -33.788418 -33.797236 0.00881738 464.05084 0.00079282492 + 1991800 -33.785496 -33.795746 0.01024997 539.44679 -0.69150401 + 1991900 -33.793114 -33.79938 0.0062651145 329.72739 -1.2214968 + 1992000 -33.795 -33.799208 0.0042083223 221.48025 -1.32628 + 1992100 -33.794579 -33.800568 0.0059893965 315.21659 -1.0445295 + 1992200 -33.793701 -33.798263 0.0045619894 240.09343 -0.54390392 + 1992300 -33.787489 -33.799398 0.011909478 626.78522 0.41839917 + 1992400 -33.789382 -33.795291 0.0059089184 310.9811 1.225068 + 1992500 -33.794947 -33.801418 0.0064710813 340.56724 1.6844885 + 1992600 -33.796078 -33.798431 0.0023527856 123.82501 1.627034 + 1992700 -33.793015 -33.801468 0.008453723 444.9119 1.4461634 + 1992800 -33.791225 -33.795084 0.0038594555 203.1197 0.64266195 + 1992900 -33.787097 -33.80132 0.014223304 748.55981 -0.17755045 + 1993000 -33.7954 -33.797479 0.0020793526 109.43447 -1.1544585 + 1993100 -33.795827 -33.80267 0.0068424782 360.11352 -1.3094996 + 1993200 -33.796158 -33.797278 0.0011194651 58.916447 -1.3628821 + 1993300 -33.789655 -33.80254 0.012885212 678.13724 -0.66096881 + 1993400 -33.790692 -33.79277 0.0020778693 109.35641 -0.10882689 + 1993500 -33.793687 -33.803464 0.0097774544 514.5787 0.74168497 + 1993600 -33.797549 -33.798058 0.00050858394 26.766319 0.89821863 + 1993700 -33.794679 -33.80348 0.0088007451 463.17537 1.1872403 + 1993800 -33.794081 -33.79447 0.00038981633 20.515686 0.93844156 + 1993900 -33.788443 -33.803589 0.015145487 797.09349 0.92644869 + 1994000 -33.793281 -33.793771 0.00048992125 25.784118 0.14584504 + 1994100 -33.79603 -33.803914 0.0078840669 414.93141 -0.030807139 + 1994200 -33.797723 -33.797795 7.2913016e-05 3.837347 -0.391703 + 1994300 -33.793806 -33.803937 0.01013078 533.17391 -0.35158028 + 1994400 -33.793577 -33.793691 0.00011378264 5.9882788 -0.61528776 + 1994500 -33.789844 -33.803901 0.014057019 739.80836 -0.2655789 + 1994600 -33.794525 -33.794597 7.2573873e-05 3.8194982 -0.41799152 + 1994700 -33.797622 -33.80384 0.006217134 327.20221 -0.1178247 + 1994800 -33.79926 -33.799444 0.00018438237 9.7038795 -0.093845822 + 1994900 -33.79532 -33.803811 0.0084909517 446.87122 0.26086594 + 1995000 -33.793594 -33.794576 0.00098174886 51.668567 0.40230801 + 1995100 -33.789913 -33.80324 0.013326906 701.38319 0.9047978 + 1995200 -33.794599 -33.795349 0.00074985785 39.46435 0.73560503 + 1995300 -33.79634 -33.803145 0.0068053131 358.15756 0.83472964 + 1995400 -33.798196 -33.799048 0.00085125902 44.801003 0.54789338 + 1995500 -33.795892 -33.8031 0.0072079674 379.3489 0.3707964 + 1995600 -33.795345 -33.797482 0.0021367665 112.45612 -0.11539065 + 1995700 -33.792332 -33.802291 0.0099589657 524.13148 -0.39949336 + 1995800 -33.792787 -33.795726 0.0029386868 154.66047 -0.91612651 + 1995900 -33.792331 -33.801207 0.0088761879 467.14585 -0.92554282 + 1996000 -33.796526 -33.798612 0.0020869418 109.83389 -0.99848053 + 1996100 -33.796296 -33.801865 0.0055691986 293.10195 -0.6689838 + 1996200 -33.794557 -33.798651 0.0040943307 215.48097 -0.2280587 + 1996300 -33.788787 -33.799942 0.011155358 587.09654 0.64667854 + 1996400 -33.791608 -33.797319 0.0057106663 300.54727 1.3032803 + 1996500 -33.794215 -33.80003 0.0058150714 306.04202 1.675328 + 1996600 -33.794434 -33.798657 0.0042232241 222.26452 1.62465 + 1996700 -33.793015 -33.799231 0.0062156378 327.12347 1.3171128 + 1996800 -33.79104 -33.798459 0.007419059 390.45846 0.68788826 + 1996900 -33.792877 -33.799255 0.0063783187 335.68522 -0.10853281 + 1997000 -33.797445 -33.801555 0.0041096505 216.28724 -0.63614466 + 1997100 -33.797623 -33.800555 0.0029317369 154.2947 -0.8841068 + 1997200 -33.794207 -33.800679 0.0064713035 340.57893 -0.86216816 + 1997300 -33.792883 -33.797072 0.0041888019 220.45291 -0.73209874 + 1997400 -33.791845 -33.800607 0.00876227 461.15045 -0.27119694 + 1997500 -33.793714 -33.797246 0.0035323451 185.90417 0.046056538 + 1997600 -33.794874 -33.802017 0.0071423232 375.8941 0.49436409 + 1997700 -33.798169 -33.799888 0.0017193679 90.488799 0.58817697 + 1997800 -33.799176 -33.803209 0.0040327025 212.23754 0.67288167 + 1997900 -33.798473 -33.799545 0.001072175 56.427613 0.51892725 + 1998000 -33.791727 -33.802542 0.010814973 569.1824 0.39198987 + 1998100 -33.793095 -33.794921 0.0018260493 96.103346 -0.24256036 + 1998200 -33.792423 -33.802674 0.010251142 539.50847 -0.44153788 + 1998300 -33.795979 -33.79684 0.00086138828 45.334097 -0.83341078 + 1998400 -33.795906 -33.803288 0.0073812127 388.46664 -0.70045988 + 1998500 -33.797702 -33.798381 0.00067905313 35.73796 -0.65953545 + 1998600 -33.793584 -33.803671 0.010087169 530.87869 -0.1441107 + 1998700 -33.791794 -33.793423 0.0016290767 85.736853 0.2238323 + 1998800 -33.789758 -33.803256 0.013498333 710.40523 1.0672984 + 1998900 -33.796019 -33.796185 0.00016540547 8.7051425 1.090177 + 1999000 -33.795346 -33.803044 0.0076981869 405.14871 1.2727782 + 1999100 -33.796138 -33.796703 0.00056452902 29.710659 0.9373756 + 1999200 -33.792785 -33.803866 0.011081278 583.19776 0.70906056 + 1999300 -33.79446 -33.795956 0.0014965514 78.762166 -0.061010488 + 1999400 -33.79464 -33.803632 0.00899211 473.24673 -0.40992196 + 1999500 -33.798972 -33.799095 0.0001234424 6.4966636 -0.86976697 + 1999600 -33.797387 -33.803292 0.0059048797 310.76855 -0.77776201 + 1999700 -33.794802 -33.795738 0.00093590201 49.255688 -0.66029969 + 1999800 -33.79136 -33.803471 0.012110761 637.37857 -0.032809406 + 1999900 -33.794665 -33.796158 0.0014936841 78.611262 0.23264679 + 2000000 -33.794845 -33.803195 0.0083504319 439.47578 0.73583733 + 2000100 -33.797842 -33.798574 0.00073153014 38.499779 0.72992291 + 2000200 -33.796887 -33.802925 0.0060380938 317.77949 0.86186647 + 2000300 -33.794508 -33.796507 0.0019984526 105.17678 0.62593273 + 2000400 -33.789242 -33.80202 0.012777512 672.46908 0.42278028 + 2000486 -33.790572 -33.801935 0.011362905 598.01955 0.011812493 +Loop time of 5.7871 on 4 procs for 1000000 steps with 14 atoms + +Performance: 14929750.690 fs/day, 0.000 hours/fs, 172798.040 timesteps/s, 2.419 Matom-step/s +96.0% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.10758 | 1.289 | 2.7509 | 91.5 | 22.27 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 1.5581 | 3.0978 | 4.3969 | 61.9 | 53.53 +Output | 0.23586 | 0.25046 | 0.27826 | 3.3 | 4.33 +Modify | 0.61232 | 0.75216 | 0.85487 | 10.7 | 13.00 +Other | | 0.3977 | | | 6.87 + +Nlocal: 3.5 ave 6 max 2 min +Histogram: 1 0 2 0 0 0 0 0 0 1 +Nghost: 10.5 ave 12 max 8 min +Histogram: 1 0 0 0 0 0 0 2 0 1 +Neighs: 22.75 ave 50 max 1 min +Histogram: 1 1 0 0 0 0 1 0 0 1 + +Total # of neighbors = 91 +Ave neighs/atom = 6.5 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:11 diff --git a/examples/PACKAGES/eff/ECP/Si2H6/in.Si2H6 b/examples/PACKAGES/eff/ECP/Si2H6/in.Si2H6 index c419b11144..ec305b5f8f 100644 --- a/examples/PACKAGES/eff/ECP/Si2H6/in.Si2H6 +++ b/examples/PACKAGES/eff/ECP/Si2H6/in.Si2H6 @@ -3,12 +3,11 @@ # General parameters -variable sname index Si2H6 -log ${sname}.log +variable sname index Si2H6 -units electron -newton on -boundary f f f +units electron +newton on +boundary f f f atom_style electron @@ -23,7 +22,7 @@ variable epauli equal c_energies[2] variable estatics equal c_energies[3] variable errestrain equal c_energies[4] -comm_modify vel yes +comm_modify vel yes compute peratom all stress/atom NULL compute p all reduce sum c_peratom[1] c_peratom[2] c_peratom[3] @@ -39,12 +38,12 @@ thermo_modify temp effTemp press effPress # Minimization min_style cg -dump 1 all xyz 2 ${sname}.min.xyz +#dump 1 all xyz 2 ${sname}.min.xyz compute 1 all property/atom spin eradius erforce -dump 2 all custom 2 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +#dump 2 all custom 2 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] min_modify line quadratic minimize 0 1.0e-5 1000 10000 -undump 1 -undump 2 +#undump 1 +#undump 2 diff --git a/examples/PACKAGES/eff/ECP/Si2H6/in.Si2H6.ang b/examples/PACKAGES/eff/ECP/Si2H6/in.Si2H6.ang index e33f77b57e..0e3389c12a 100644 --- a/examples/PACKAGES/eff/ECP/Si2H6/in.Si2H6.ang +++ b/examples/PACKAGES/eff/ECP/Si2H6/in.Si2H6.ang @@ -3,18 +3,17 @@ # General parameters -variable sname index Si2H6.ang -log ${sname}.log +variable sname index Si2H6.ang -units real -newton on -boundary f f f +units real +newton on +boundary f f f atom_style electron read_data data.${sname} -pair_style eff/cut 529.177249 +pair_style eff/cut 529.177249 ecp 1 Si pair_coeff * * compute energies all pair eff/cut @@ -23,7 +22,7 @@ variable epauli equal c_energies[2] variable estatics equal c_energies[3] variable errestrain equal c_energies[4] -comm_modify vel yes +comm_modify vel yes compute peratom all stress/atom NULL compute p all reduce sum c_peratom[1] c_peratom[2] c_peratom[3] @@ -39,21 +38,21 @@ thermo_modify temp effTemp press effPress # Minimization min_style cg -dump 1 all xyz 10 ${sname}.min.xyz +#dump 1 all xyz 10 ${sname}.min.xyz compute 1 all property/atom spin eradius erforce -dump 2 all custom 10 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +#dump 2 all custom 10 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] min_modify line quadratic minimize 0 1.0e-6 2000 10000 -undump 1 -undump 2 +#undump 1 +#undump 2 # Equilibrate at 300K velocity all create 300.0 4928459 rot yes mom yes dist gaussian timestep 0.001 -dump 1 all custom 1000 ${sname}.nvt.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +#dump 1 all custom 1000 ${sname}.nvt.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] #fix 0 all langevin/eff 300.0 300.0 0.1 fix 1 all nvt/eff temp 300.0 300.0 0.1 diff --git a/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.ang.g++.1 b/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.ang.g++.1 new file mode 100644 index 0000000000..c3acc2dd64 --- /dev/null +++ b/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.ang.g++.1 @@ -0,0 +1,20189 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task + +# Created 2011-01-07 + +# General parameters + +variable sname index Si2H6.ang + +units real +newton on +boundary f f f + +atom_style electron + +read_data data.${sname} +read_data data.Si2H6.ang +Reading data file ... + orthogonal box = (-529.17725 -529.17725 -529.17725) to (529.17725 529.17725 529.17725) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 22 atoms + read_data CPU = 0.000 seconds + +pair_style eff/cut 529.177249 ecp 1 Si +pair_coeff * * + +compute energies all pair eff/cut +variable eke equal c_energies[1] +variable epauli equal c_energies[2] +variable estatics equal c_energies[3] +variable errestrain equal c_energies[4] + +comm_modify vel yes + +compute peratom all stress/atom NULL +compute p all reduce sum c_peratom[1] c_peratom[2] c_peratom[3] +variable press equal -(c_p[1]+c_p[2]+c_p[3])/(3*vol) + +compute effTemp all temp/eff +compute effPress all pressure effTemp + +thermo 10 +thermo_style custom step etotal pe ke v_eke v_epauli v_estatics v_errestrain temp press v_press +thermo_modify temp effTemp press effPress + +# Minimization + +min_style cg +#dump 1 all xyz 10 ${sname}.min.xyz +compute 1 all property/atom spin eradius erforce +#dump 2 all custom 10 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +min_modify line quadratic +minimize 0 1.0e-6 2000 10000 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- EFF package: doi:10.1002/jcc.21637 + +@Article{Jaramillo-Botero11, + author = {A. Jaramillo-Botero and J. Su and A. Qi and Goddard, III, W. A.}, + title = {Large-Scale, Long-Term Nonadiabatic Electron Molecular Dynamics for Describing Material Properties and Phenomena in Extreme Environments}, + journal = {J.~Comp.\ Chem.}, + year = 2011, + volume = 32, + number = 3, + pages = {497--512} +} + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 531.17725 + ghost atom cutoff = 531.17725 + binsize = 265.58862, bins = 4 4 4 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair eff/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 6.098 | 6.098 | 6.098 Mbytes + Step TotEng PotEng KinEng v_eke v_epauli v_estatics v_errestrain Temp Press v_press + 0 -5050.1521 -5050.1521 0 3444.1415 1317.4784 -9811.772 0 0 0.048396025 0.048396025 + 10 -6181.4654 -6181.4654 0 3753.15 830.37457 -10764.99 0 0 0.0242879 0.0242879 + 20 -6254.9729 -6254.9729 0 3871.4029 665.15453 -10791.53 0 0 0.0053673679 0.0053673679 + 30 -6259.1457 -6259.1457 0 3724.221 630.24895 -10613.616 0 0 6.0271678e-06 6.0271678e-06 + 40 -6259.1461 -6259.1461 0 3723.6439 630.2123 -10613.002 0 0 -3.122198e-07 -3.122198e-07 + 50 -6259.1461 -6259.1461 0 3723.6503 630.21469 -10613.011 0 0 2.7210449e-09 2.7210449e-09 + 60 -6259.1461 -6259.1461 0 3723.6503 630.21467 -10613.011 0 0 -4.1437829e-12 -4.1438132e-12 +Loop time of 0.00335554 on 1 procs for 60 steps with 22 atoms + +97.5% CPU use with 1 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = force tolerance + Energy initial, next-to-last, final = + -5050.15207998896 -6259.14612629924 -6259.14612629927 + Force two-norm initial, final = 3250.3463 5.7347886e-07 + Force max component initial, final = 1943.1659 1.8088875e-07 + Final line search alpha, max atom move = 1 1.8088875e-07 + Iterations, force evaluations = 60 98 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0030275 | 0.0030275 | 0.0030275 | 0.0 | 90.22 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 1.335e-05 | 1.335e-05 | 1.335e-05 | 0.0 | 0.40 +Output | 5.9934e-05 | 5.9934e-05 | 5.9934e-05 | 0.0 | 1.79 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.0002548 | | | 7.59 + +Nlocal: 22 ave 22 max 22 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 231 ave 231 max 231 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 231 +Ave neighs/atom = 10.5 +Neighbor list builds = 0 +Dangerous builds = 0 + +#undump 1 +#undump 2 + +# Equilibrate at 300K +velocity all create 300.0 4928459 rot yes mom yes dist gaussian + +timestep 0.001 + +#dump 1 all custom 1000 ${sname}.nvt.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +#fix 0 all langevin/eff 300.0 300.0 0.1 +fix 1 all nvt/eff temp 300.0 300.0 0.1 + +run 200000 +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Per MPI rank memory allocation (min/avg/max) = 5.348 | 5.348 | 5.348 Mbytes + Step TotEng PotEng KinEng v_eke v_epauli v_estatics v_errestrain Temp Press v_press + 60 -6240.367 -6259.1461 18.779103 3723.6503 630.21467 -10613.011 0 900 0.00072412613 0.00072412613 + 70 -6240.7299 -6258.653 17.923108 3723.5208 625.73203 -10607.906 0 858.9759 0.00028996181 0.00028992461 + 80 -6241.6799 -6257.332 15.652041 3722.6624 622.43019 -10602.425 0 750.13365 -9.988313e-05 -0.0001003931 + 90 -6242.8888 -6255.5793 12.690418 3720.6401 620.6936 -10596.913 0 608.19604 -0.00036377688 -0.00036568571 + 100 -6244.0325 -6253.8573 9.8248014 3717.5147 620.55349 -10591.925 0 470.85961 -0.00045876614 -0.00046268137 + 110 -6244.9404 -6252.5381 7.5976559 3713.8348 621.76484 -10588.138 0 364.1223 -0.0003881341 -0.00039356452 + 120 -6245.6062 -6251.8308 6.2245584 3710.4587 623.92825 -10586.218 0 298.31576 -0.00019122291 -0.00019671567 + 130 -6246.0999 -6251.7848 5.6849089 3708.3118 626.60075 -10586.697 0 272.45273 7.494705e-05 7.086597e-05 + 140 -6246.4893 -6252.3272 5.8379103 3708.162 629.37458 -10589.864 0 279.78542 0.00035230177 0.00035008811 + 150 -6246.815 -6253.3013 6.4862705 3710.4421 631.92845 -10595.672 0 310.85848 0.00059290828 0.0005915255 + 160 -6247.1032 -6254.5025 7.3993388 3715.1393 634.05778 -10603.7 0 354.61783 0.00076540359 0.00076273176 + 170 -6247.3822 -6255.713 8.3307518 3721.7637 635.68333 -10613.16 0 399.25637 0.00085770272 0.00085166839 + 180 -6247.6872 -6256.737 9.0498072 3729.4081 636.8354 -10622.98 0 433.71754 0.00087629694 0.00086613407 + 190 -6248.0491 -6257.4346 9.3855165 3736.8944 637.61516 -10631.944 0 449.80661 0.00084233103 0.00082922308 + 200 -6248.478 -6257.746 9.267972 3742.9876 638.14211 -10638.876 0 444.17322 0.00078505975 0.00077165932 + 210 -6248.9527 -6257.6976 8.7448332 3746.6401 638.50216 -10642.84 0 419.10147 0.000733734 0.00072270913 + 220 -6249.4285 -6257.3848 7.9562423 3747.2184 638.7128 -10643.316 0 381.30778 0.00070936278 0.00070187313 + 230 -6249.8583 -6256.9318 7.0734683 3744.6582 638.71681 -10640.307 0 339.00029 0.00071832641 0.00071354296 + 240 -6250.2142 -6256.4476 6.233418 3739.4969 638.40525 -10634.35 0 298.74037 0.00075016513 0.00074620802 + 250 -6250.4942 -6256.0015 5.5073013 3732.7619 637.66008 -10626.423 0 263.94078 0.00078108959 0.00077658872 + 260 -6250.7134 -6255.6297 4.9162661 3725.7364 636.40074 -10617.767 0 235.61505 0.00078249223 0.00077747439 + 270 -6250.888 -6255.3589 4.4709432 3719.6722 634.62066 -10609.652 0 214.27269 0.00073119647 0.00072666878 + 280 -6251.0254 -6255.223 4.197644 3715.5343 632.40563 -10603.163 0 201.17466 0.00061730869 0.00061408478 + 290 -6251.1256 -6255.2572 4.1315259 3713.84 629.93219 -10599.029 0 198.0059 0.00044711581 0.00044501328 + 300 -6251.1885 -6255.476 4.2874726 3714.6096 627.44994 -10597.536 0 205.47974 0.00024126791 0.00023933585 + 310 -6251.2195 -6255.8555 4.6359554 3717.4109 625.25299 -10598.519 0 222.18099 3.0379687e-05 2.7821144e-05 + 320 -6251.2289 -6256.3318 5.1028874 3721.4719 623.64514 -10601.449 0 244.559 -0.00014994925 -0.00015308246 + 330 -6251.2265 -6256.8171 5.5906559 3725.8427 622.90055 -10605.56 0 267.9356 -0.00026416325 -0.00026712524 + 340 -6251.217 -6257.2198 6.0028895 3729.5937 623.2212 -10610.035 0 287.69215 -0.00028241347 -0.00028455119 + 350 -6251.2003 -6257.4598 6.2595819 3732.0249 624.6939 -10614.179 0 299.99429 -0.00018708709 -0.00018847888 + 360 -6251.1756 -6257.4801 6.3045769 3732.8365 627.25374 -10617.57 0 302.1507 2.1038759e-05 1.9656004e-05 + 370 -6251.1438 -6257.2599 6.1160622 3732.2074 630.66502 -10620.132 0 293.11602 0.00031945097 0.00031730043 + 380 -6251.1063 -6256.8289 5.7225932 3730.7425 634.53125 -10622.103 0 274.25877 0.00066551247 0.0006622944 + 390 -6251.0613 -6256.273 5.2117299 3729.2989 638.34172 -10623.914 0 249.77534 0.0010034781 0.00099936821 + 400 -6251.0035 -6255.719 4.7154288 3728.7356 641.55202 -10626.007 0 225.98981 0.0012754161 0.0012707475 + 410 -6250.9268 -6255.2996 4.3727129 3729.6592 643.68366 -10628.642 0 209.56494 0.0014334667 0.001428569 + 420 -6250.825 -6255.1144 4.2893654 3732.2287 644.41944 -10631.763 0 205.57046 0.0014507241 0.0014460413 + 430 -6250.6886 -6255.2041 4.5154747 3736.0684 643.66923 -10634.942 0 216.40688 0.0013281912 0.001324325 + 440 -6250.5007 -6255.5448 5.0441103 3740.3158 641.58887 -10637.449 0 241.74207 0.001095604 0.0010929445 + 450 -6250.2381 -6256.0558 5.8176934 3743.8092 638.54703 -10638.412 0 278.81651 0.00080500952 0.0008031458 + 460 -6249.8832 -6256.6131 6.7299234 3745.3813 635.04867 -10637.043 0 322.53569 0.00051812052 0.00051566722 + 470 -6249.4399 -6257.0682 7.6282808 3744.1876 631.63261 -10632.888 0 365.59002 0.00029092186 0.00028620163 + 480 -6248.942 -6257.2779 8.3359026 3739.9756 628.76595 -10626.019 0 399.50323 0.00016033735 0.00015260001 + 490 -6248.4435 -6257.1466 8.7030723 3733.2093 626.75862 -10617.115 0 417.10006 0.00013699629 0.00012721437 + 500 -6247.9933 -6256.6632 8.6698909 3725.0067 625.71852 -10607.388 0 415.50982 0.0002055731 0.00019603226 + 510 -6247.6123 -6255.913 8.3007253 3716.9087 625.55866 -10598.38 0 397.81733 0.00033140156 0.00032426108 + 520 -6247.2893 -6255.0531 7.7638554 3710.547 626.05303 -10591.653 0 372.08751 0.00047071255 0.00046658518 + 530 -6246.9952 -6254.2624 7.2671863 3707.2928 626.92293 -10588.478 0 348.28434 0.00058207333 0.00057965989 + 540 -6246.7028 -6253.69 6.987287 3707.9609 627.92793 -10589.579 0 334.87 0.0006371974 0.00063419233 + 550 -6246.398 -6253.4226 7.0246706 3712.6187 628.93676 -10594.978 0 336.66163 0.00062928572 0.00062389277 + 560 -6246.0807 -6253.4761 7.3954139 3720.5379 629.96003 -10603.974 0 354.42973 0.00057670475 0.00056875704 + 570 -6245.7593 -6253.808 8.048785 3730.3077 631.13523 -10615.251 0 385.74294 0.00051992738 0.00051089834 + 580 -6245.4453 -6254.3369 8.891584 3740.1128 632.66439 -10627.114 0 426.13459 0.00051080389 0.00050272479 + 590 -6245.1556 -6254.9587 9.8030535 3748.1395 634.71647 -10637.815 0 469.81733 0.00059551636 0.00058959227 + 600 -6244.9191 -6255.5578 10.63864 3753.0206 637.32022 -10645.899 0 509.86331 0.00079566913 0.00079164562 + 610 -6244.7823 -6256.0208 11.238531 3754.186 640.28478 -10650.492 0 538.61346 0.0010946215 0.0010913389 + 620 -6244.8021 -6256.2612 11.459104 3751.9884 643.18779 -10651.437 0 549.18455 0.0014361755 0.0014326814 + 630 -6245.0254 -6256.2476 11.222176 3747.5458 645.45534 -10649.249 0 537.82962 0.0017385765 0.0017347117 + 640 -6245.4664 -6256.0162 10.549781 3742.3512 646.52369 -10644.891 0 505.60472 0.0019198602 0.0019159225 + 650 -6246.0977 -6255.6537 9.5560329 3737.7954 646.02935 -10639.478 0 457.97871 0.0019249579 0.0019210789 + 660 -6246.8573 -6255.26 8.4027196 3734.7722 643.94836 -10633.981 0 402.70547 0.0017439985 0.0017400335 + 670 -6247.6655 -6254.917 7.2514472 3733.4922 640.619 -10629.028 0 347.53004 0.0014149848 0.0014109263 + 680 -6248.4449 -6254.6802 6.235316 3733.5457 636.63591 -10624.862 0 298.83133 0.0010104205 0.0010066804 + 690 -6249.1388 -6254.5872 5.4484175 3734.1623 632.66956 -10621.419 0 261.11874 0.00061413384 0.00061128015 + 700 -6249.7209 -6254.6639 4.9429926 3734.5424 629.2955 -10618.502 0 236.89594 0.0002981631 0.00029638091 + 710 -6250.1918 -6254.9207 4.7289474 3734.1389 626.89216 -10615.952 0 226.63769 0.00010743254 0.00010623961 + 720 -6250.5669 -6255.3405 4.773546 3732.8148 625.61494 -10613.77 0 228.77511 5.4380773e-05 5.2849303e-05 + 730 -6250.8673 -6255.8702 5.0029134 3730.8584 625.42402 -10612.153 0 239.76768 0.00012193376 0.00011927184 + 740 -6251.1138 -6256.426 5.3121403 3728.8732 626.1412 -10611.44 0 254.58757 0.00027243132 0.0002685263 + 750 -6251.3239 -6256.9124 5.5884954 3727.578 627.51749 -10612.008 0 267.83206 0.00045996608 0.00045549078 + 760 -6251.5077 -6257.2497 5.741962 3727.5821 629.29685 -10614.129 0 275.18704 0.00064296348 0.00063891912 + 770 -6251.6663 -6257.395 5.7287671 3729.2038 631.26332 -10617.862 0 274.55466 0.00079354303 0.00079052186 + 780 -6251.7938 -6257.3492 5.5553857 3732.3836 633.2633 -10622.996 0 266.24525 0.00090117144 0.00089887962 + 790 -6251.8843 -6257.1469 5.2625516 3736.7084 635.2015 -10629.057 0 252.211 0.00097028585 0.0009677326 + 800 -6251.938 -6256.8402 4.9022089 3741.5209 637.01712 -10635.378 0 234.94136 0.0010139001 0.0010101645 + 810 -6251.9619 -6256.4856 4.5237175 3746.0685 638.65304 -10641.207 0 216.80193 0.0010464076 0.0010413981 + 820 -6251.9651 -6256.1402 4.1751279 3749.6493 640.03204 -10645.822 0 200.09556 0.0010782583 0.0010728278 + 830 -6251.9514 -6255.8614 3.9099639 3751.7299 641.05059 -10648.642 0 187.38741 0.001113527 0.0011088083 + 840 -6251.9158 -6255.7001 3.7842457 3752.0264 641.59297 -10649.319 0 181.36229 0.0011498819 0.0011463742 + 850 -6251.8478 -6255.686 3.8382304 3750.5462 641.56018 -10647.792 0 183.94953 0.0011799794 0.0011771474 + 860 -6251.7382 -6255.8119 4.0736376 3747.5832 640.90176 -10644.297 0 195.23157 0.0011936552 0.0011903872 + 870 -6251.5853 -6256.0301 4.4448192 3743.6619 639.63796 -10639.33 0 213.02068 0.0011806689 0.0011762153 + 880 -6251.3945 -6256.2683 4.8738212 3739.434 637.86396 -10633.566 0 233.58086 0.0011336261 0.0011282423 + 890 -6251.1744 -6256.4559 5.281487 3735.5519 635.73586 -10627.744 0 253.11849 0.0010502934 0.0010450819 + 900 -6250.9309 -6256.5462 5.6153448 3732.5511 633.44516 -10622.542 0 269.11883 0.00093451786 0.00093062919 + 910 -6250.6655 -6256.525 5.8595282 3730.7703 631.19266 -10618.488 0 280.82147 0.00079564337 0.00079346447 + 920 -6250.3779 -6256.4042 6.0262776 3730.3173 629.17029 -10615.892 0 288.81304 0.000647154 0.00064603532 + 930 -6250.07 -6256.209 6.1390422 3731.077 627.55428 -10614.84 0 294.21735 0.00050548865 0.00050413861 + 940 -6249.7489 -6255.9671 6.2181836 3732.7494 626.50565 -10615.222 0 298.01025 0.00038939638 0.00038667168 + 950 -6249.4264 -6255.7024 6.2759907 3734.9092 626.16974 -10616.781 0 300.78069 0.00031937207 0.00031499857 + 960 -6249.1148 -6255.4372 6.3223264 3737.0848 626.66595 -10619.188 0 303.00135 0.00031619804 0.00031097907 + 970 -6248.8213 -6255.1973 6.3760186 3738.8558 628.06382 -10622.117 0 305.57459 0.00039765144 0.0003929688 + 980 -6248.543 -6255.0147 6.471658 3739.9623 630.34821 -10625.325 0 310.15816 0.00057306988 0.00056991761 + 990 -6248.27 -6254.922 6.6519158 3740.4008 633.38391 -10628.707 0 318.79713 0.00083670963 0.00083489192 + 1000 -6247.9928 -6254.9378 6.9450309 3740.4664 636.89461 -10632.299 0 332.84485 0.0011624105 0.001160537 + 1010 -6247.7124 -6255.053 7.3405499 3740.6994 640.47229 -10636.225 0 351.80034 0.0015031278 0.0014995145 + 1020 -6247.4453 -6255.227 7.7817312 3741.7172 643.62844 -10640.573 0 372.94422 0.0017981834 0.0017920459 + 1030 -6247.2173 -6255.4 8.1827526 3743.9679 645.88634 -10645.254 0 392.16342 0.0019880776 0.0019801121 + 1040 -6247.0517 -6255.5124 8.4606515 3747.4904 646.89491 -10649.898 0 405.48189 0.0020325608 0.0020244618 + 1050 -6246.9588 -6255.5215 8.562743 3751.7867 646.52754 -10653.836 0 410.37469 0.001924928 0.0019182234 + 1060 -6246.933 -6255.4104 8.4774161 3755.8822 644.92549 -10656.218 0 406.28534 0.001696206 0.0016912742 + 1070 -6246.9591 -6255.189 8.2298435 3758.5776 642.46207 -10656.229 0 394.42028 0.0014068507 0.00140278 + 1080 -6247.0217 -6254.8928 7.8711012 3758.8152 639.6353 -10653.343 0 377.22733 0.0011286227 0.001123938 + 1090 -6247.1112 -6254.5784 7.4672291 3756.0359 636.92631 -10647.541 0 357.87152 0.0009230458 0.00091676401 + 1100 -6247.2252 -6254.3153 7.0900257 3750.4031 634.67379 -10639.392 0 339.79381 0.00082388369 0.00081619459 + 1110 -6247.3647 -6254.1731 6.8084052 3742.8194 633.00714 -10630 0 326.29698 0.00082928892 0.00082141699 + 1120 -6247.5286 -6254.2064 6.6777698 3734.7342 631.8565 -10620.797 0 320.0362 0.00090560486 0.00089892772 + 1130 -6247.7133 -6254.4381 6.72476 3727.8023 631.0302 -10613.271 0 322.28823 0.0010007703 0.00099577918 + 1140 -6247.9176 -6254.8461 6.9285073 3723.4883 630.32763 -10608.662 0 332.05294 0.0010624672 0.0010583371 + 1150 -6248.1506 -6255.3584 7.2078369 3722.7132 629.64551 -10607.717 0 345.43999 0.0010553729 0.0010505511 + 1160 -6248.4365 -6255.8665 7.4300442 3725.6239 629.03932 -10610.53 0 356.08941 0.00097280334 0.00096625773 + 1170 -6248.8073 -6256.2579 7.4505174 3731.5449 628.71749 -10616.52 0 357.0706 0.00083968997 0.00083183868 + 1180 -6249.2862 -6256.4579 7.1717243 3739.1354 628.96865 -10624.562 0 343.70927 0.00070563257 0.00069811411 + 1190 -6249.8692 -6256.4589 6.5897238 3746.7359 630.04576 -10633.241 0 315.81654 0.00062901047 0.00062340797 + 1200 -6250.5195 -6256.3174 5.7979153 3752.8217 632.04795 -10641.187 0 277.86863 0.00065625425 0.00065287566 + 1210 -6251.1772 -6256.1221 4.9448785 3756.4226 634.84529 -10647.39 0 236.98632 0.00080358976 0.00080139123 + 1220 -6251.7816 -6255.955 4.173352 3757.3491 638.08034 -10651.384 0 200.01045 0.0010493246 0.0010469356 + 1230 -6252.2932 -6255.8692 3.5760469 3756.1332 641.24836 -10653.251 0 171.38423 0.0013405673 0.0013373349 + 1240 -6252.7011 -6255.8879 3.1868583 3753.7381 643.8202 -10653.446 0 152.73213 0.0016105847 0.0016067728 + 1250 -6253.0148 -6256.0127 2.9979324 3751.1948 645.35959 -10652.567 0 143.67774 0.001798199 0.001794478 + 1260 -6253.2495 -6256.2283 2.9788774 3749.3086 645.60823 -10651.145 0 142.76452 0.001862597 0.0018594534 + 1270 -6253.4177 -6256.5031 3.0853542 3748.4854 644.53316 -10649.522 0 147.86748 0.0017913922 0.0017888662 + 1280 -6253.5289 -6256.7909 3.2620705 3748.6831 642.33163 -10647.806 0 156.33672 0.0016018506 0.0015996212 + 1290 -6253.5909 -6257.0407 3.4497761 3749.4779 639.38798 -10645.907 0 165.33263 0.0013355452 0.0013331688 + 1300 -6253.6118 -6257.2098 3.5980204 3750.2258 636.18837 -10643.624 0 172.43733 0.0010475719 0.0010446767 + 1310 -6253.5989 -6257.276 3.6771284 3750.2791 633.2158 -10640.771 0 176.22863 0.00079299444 0.0007893701 + 1320 -6253.559 -6257.2412 3.6822685 3749.1975 630.85599 -10637.295 0 176.47497 0.00061425798 0.00060989341 + 1330 -6253.4978 -6257.1262 3.6284241 3746.8935 629.33926 -10633.359 0 173.89444 0.00053302683 0.00052813527 + 1340 -6253.4196 -6256.9604 3.5408253 3743.6742 628.72844 -10629.363 0 169.69622 0.00054826423 0.00054325711 + 1350 -6253.3262 -6256.7726 3.4463298 3740.1711 628.94653 -10625.89 0 165.16746 0.00064020958 0.0006355602 + 1360 -6253.2168 -6256.585 3.3682702 3737.1867 629.82775 -10623.6 0 161.42641 0.00077820681 0.00077422952 + 1370 -6253.0877 -6256.4118 3.3241837 3735.5012 631.17302 -10623.086 0 159.31353 0.00092966024 0.00092633494 + 1380 -6252.9349 -6256.26 3.3251309 3735.6875 632.79477 -10624.742 0 159.35893 0.0010677006 0.0010646819 + 1390 -6252.7559 -6256.1325 3.3765353 3737.975 634.54279 -10628.65 0 161.82252 0.0011760285 0.0011728587 + 1400 -6252.5505 -6256.0318 3.4813051 3742.184 636.30976 -10634.526 0 166.84367 0.0012504106 0.0012467892 + 1410 -6252.3196 -6255.9642 3.6445871 3747.7426 638.02113 -10641.728 0 174.66906 0.0012971233 0.0012930161 + 1420 -6252.0631 -6255.9395 3.8764215 3753.7825 639.61809 -10649.34 0 185.77987 0.0013291562 0.0013246492 + 1430 -6251.7794 -6255.9666 4.1872143 3759.2993 641.04229 -10656.308 0 200.67481 0.0013612577 0.0013563014 + 1440 -6251.4675 -6256.0424 4.5749086 3763.3468 642.22813 -10661.617 0 219.25529 0.001405032 0.0013993767 + 1450 -6251.1322 -6256.1432 5.0110761 3765.2256 643.1038 -10664.473 0 240.15889 0.0014652894 0.0014587677 + 1460 -6250.7858 -6256.2245 5.4386954 3764.6226 643.59794 -10664.445 0 260.6528 0.0015385361 0.0015314765 + 1470 -6250.4458 -6256.2351 5.7893157 3761.6703 643.6479 -10661.553 0 277.45649 0.0016137714 0.0016070763 + 1480 -6250.1255 -6256.138 6.0125578 3756.918 643.20687 -10656.263 0 288.15551 0.0016749263 0.0016695456 + 1490 -6249.8284 -6255.9269 6.0984857 3751.2263 642.24975 -10649.403 0 292.27366 0.001703912 0.0017000185 + 1500 -6249.5494 -6255.6259 6.076532 3745.6068 640.78012 -10642.013 0 291.22151 0.0016836746 0.0016802779 + 1510 -6249.2824 -6255.2759 5.9934469 3741.0325 638.84073 -10635.149 0 287.23961 0.0016014733 0.0015969891 + 1520 -6249.0291 -6254.9199 5.89086 3738.2437 636.52738 -10629.691 0 282.32306 0.0014529028 0.0014463892 + 1530 -6248.7971 -6254.5995 5.8024011 3737.5831 634.00224 -10626.185 0 278.08362 0.0012463819 0.0012384579 + 1540 -6248.5916 -6254.3615 5.7698362 3738.9054 631.49927 -10624.766 0 276.52293 0.0010063718 0.00099893728 + 1550 -6248.4056 -6254.2613 5.8556834 3741.6062 629.31435 -10625.182 0 280.6372 0.00077272629 0.00076753949 + 1560 -6248.2195 -6254.3473 6.1277183 3744.7866 627.77526 -10626.909 0 293.67465 0.00059436772 0.00059156902 + 1570 -6248.0144 -6254.6283 6.6138572 3747.5175 627.1915 -10629.337 0 316.97315 0.00051786388 0.00051572389 + 1580 -6247.7888 -6255.0458 7.2569817 3749.1243 627.78873 -10631.959 0 347.79528 0.00057414169 0.00057036702 + 1590 -6247.5666 -6255.4774 7.9108411 3749.3894 629.63942 -10634.506 0 379.1319 0.00076792291 0.00076148458 + 1600 -6247.3859 -6255.7806 8.394659 3748.6051 632.60827 -10636.994 0 402.31916 0.0010737247 0.0010656013 + 1610 -6247.2751 -6255.8537 8.578515 3747.4655 636.33653 -10639.656 0 411.13057 0.0014398853 0.0014319944 + 1620 -6247.2355 -6255.6773 8.441861 3746.8416 640.28495 -10642.804 0 404.58134 0.0017993964 0.0017926603 + 1630 -6247.2456 -6255.3109 8.0652603 3747.5112 643.83788 -10646.66 0 386.53253 0.0020846907 0.0020780772 + 1640 -6247.283 -6254.8524 7.5693085 3749.9084 646.4446 -10651.205 0 362.76374 0.0022432091 0.0022347516 + 1650 -6247.3409 -6254.3959 7.0549893 3753.9454 647.75314 -10656.094 0 338.11467 0.0022506559 0.0022395861 + 1660 -6247.4263 -6254.0155 6.5891893 3758.9552 647.68931 -10660.66 0 315.79092 0.0021185434 0.0021065217 + 1670 -6247.5426 -6253.773 6.2303813 3763.7954 646.45337 -10664.022 0 298.59483 0.0018925665 0.0018826771 + 1680 -6247.6769 -6253.7264 6.0495706 3767.1275 644.43878 -10665.293 0 289.92937 0.0016400885 0.0016342697 + 1690 -6247.804 -6253.912 6.1079606 3767.8155 642.10584 -10663.833 0 292.72774 0.0014291716 0.0014263133 + 1700 -6247.9088 -6254.3093 6.4004949 3765.3198 639.85536 -10659.484 0 306.74763 0.0013063335 0.0013028684 + 1710 -6248.0043 -6254.8225 6.8182743 3759.9266 637.93982 -10652.689 0 326.76996 0.0012821312 0.0012748082 + 1720 -6248.1299 -6255.3078 7.1778181 3752.7083 636.43168 -10644.448 0 344.00132 0.0013307302 0.0013192668 + 1730 -6248.3268 -6255.6377 7.3108204 3745.2207 635.25051 -10636.109 0 350.37554 0.0014031076 0.0013904441 + 1740 -6248.6088 -6255.7612 7.1524151 3739.0568 634.23631 -10629.054 0 342.78386 0.0014473347 0.0014372961 + 1750 -6248.9543 -6255.7169 6.7626204 3735.4254 633.24454 -10624.387 0 324.10271 0.0014271694 0.0014215681 + 1760 -6249.3252 -6255.5952 6.270078 3734.8848 632.23024 -10622.71 0 300.49732 0.0013327402 0.0013302948 + 1770 -6249.6932 -6255.4813 5.7880199 3737.2762 631.29003 -10624.048 0 277.39439 0.0011818191 0.0011795457 + 1780 -6250.0534 -6255.4185 5.3651021 3741.8351 630.64476 -10627.898 0 257.12579 0.0010135594 0.001009222 + 1790 -6250.4151 -6255.4099 4.9948444 3747.4205 630.56777 -10633.398 0 239.38097 0.00087741636 0.00087099313 + 1800 -6250.784 -6255.4422 4.6581931 3752.8056 631.28492 -10639.533 0 223.24675 0.00081965042 0.00081287234 + 1810 -6251.152 -6255.5076 4.3555673 3756.9716 632.88268 -10645.362 0 208.74323 0.00087000244 0.00086469012 + 1820 -6251.5005 -6255.6063 4.1057916 3759.3385 635.25614 -10650.201 0 196.77257 0.0010318924 0.0010285962 + 1830 -6251.812 -6255.7355 3.9234696 3759.8729 638.11258 -10653.721 0 188.03468 0.001279495 0.0012773765 + 1840 -6252.0795 -6255.881 3.8015014 3759.0374 641.02753 -10655.946 0 182.18928 0.0015633259 0.0015610695 + 1850 -6252.3058 -6256.0198 3.7140127 3757.5987 643.53606 -10657.155 0 177.99633 0.0018230607 0.0018199164 + 1860 -6252.4985 -6256.133 3.6345086 3756.3565 645.23511 -10657.725 0 174.18605 0.0020036735 0.0019998741 + 1870 -6252.6628 -6256.2163 3.5535023 3755.8852 645.87069 -10657.972 0 170.30377 0.0020698234 0.0020662195 + 1880 -6252.7985 -6256.2818 3.4832518 3756.3677 645.38806 -10658.038 0 166.93697 0.0020141123 0.0020114016 + 1890 -6252.9011 -6256.3483 3.4472796 3757.5696 643.93266 -10657.851 0 165.21298 0.0018570094 0.0018551294 + 1900 -6252.9653 -6256.4267 3.4614667 3758.9468 641.80394 -10657.177 0 165.89291 0.0016390661 0.0016371687 + 1910 -6252.9903 -6256.5089 3.5185827 3759.8412 639.37741 -10655.728 0 168.63023 0.0014085254 0.0014055583 + 1920 -6252.9809 -6256.5683 3.5874293 3759.6938 637.01836 -10653.28 0 171.92974 0.0012086416 0.0012041283 + 1930 -6252.9446 -6256.5741 3.6295633 3758.2098 635.011 -10649.795 0 173.94904 0.0010685226 0.0010629471 + 1940 -6252.8855 -6256.5094 3.6238717 3755.4404 633.52008 -10645.47 0 173.67627 0.00099941491 0.00099389492 + 1950 -6252.8005 -6256.3827 3.5821577 3751.7734 632.59066 -10640.747 0 171.6771 0.00099615653 0.00099164633 + 1960 -6252.6788 -6256.224 3.5452409 3747.8499 632.17887 -10636.253 0 169.90783 0.0010420948 0.0010387267 + 1970 -6252.5061 -6256.07 3.5639169 3744.4325 632.19782 -10632.7 0 170.80289 0.0011154574 0.001112484 + 1980 -6252.2682 -6255.947 3.6787807 3742.2509 632.56075 -10630.759 0 176.30781 0.0011955313 0.0011918445 + 1990 -6251.9527 -6255.8625 3.9097902 3741.8539 633.20848 -10630.925 0 187.37908 0.0012674737 0.0012622938 + 2000 -6251.5492 -6255.8048 4.2555549 3743.4926 634.11675 -10633.414 0 203.95007 0.001324965 0.0013182645 + 2010 -6251.0535 -6255.7478 4.6943387 3747.0526 635.28586 -10638.086 0 224.97905 0.0013703299 0.001362799 + 2020 -6250.4769 -6255.6576 5.1807163 3752.0459 636.71888 -10644.422 0 248.28899 0.0014122997 0.001404921 + 2030 -6249.855 -6255.4979 5.6429239 3757.67 638.39541 -10651.563 0 270.44057 0.0014621839 0.0014556476 + 2040 -6249.2447 -6255.2401 5.9953905 3762.9469 640.24904 -10658.436 0 287.33275 0.0015296568 0.001523946 + 2050 -6248.7039 -6254.8771 6.1731939 3766.932 642.1564 -10663.965 0 295.85409 0.0016193975 0.0016138429 + 2060 -6248.2665 -6254.4385 6.1719364 3768.9398 643.94343 -10667.322 0 295.79382 0.0017293608 0.0017231244 + 2070 -6247.934 -6253.9976 6.0636461 3768.7028 645.40753 -10668.108 0 290.60394 0.0018507233 0.0018432855 + 2080 -6247.6851 -6253.6583 5.9731387 3766.4124 646.34951 -10666.42 0 286.26632 0.0019689928 0.0019603217 + 2090 -6247.4942 -6253.5205 6.0262613 3762.6466 646.60713 -10662.774 0 288.81226 0.0020657969 0.0020563059 + 2100 -6247.3419 -6253.64 6.2981589 3758.2219 646.08321 -10657.945 0 301.84311 0.0021213677 0.0021118318 + 2110 -6247.2178 -6254.0032 6.7854008 3754.0071 644.76398 -10652.774 0 325.19448 0.0021179423 0.0021092865 + 2120 -6247.1197 -6254.527 7.4073372 3750.7371 642.72702 -10647.991 0 355.00116 0.0020437869 0.0020366638 + 2130 -6247.0515 -6255.0791 8.027586 3748.8682 640.1405 -10644.088 0 384.72696 0.001896904 0.0018913092 + 2140 -6247.0235 -6255.5108 8.4873428 3748.5023 637.25419 -10641.267 0 406.76109 0.0016874684 0.0016827586 + 2150 -6247.0475 -6255.6958 8.6483398 3749.3899 634.37973 -10639.465 0 414.47697 0.0014384767 0.001433819 + 2160 -6247.1289 -6255.5685 8.4395721 3751.0076 631.85806 -10638.434 0 404.47165 0.0011842913 0.0011791688 + 2170 -6247.2593 -6255.1501 7.8907437 3752.6942 630.01556 -10637.86 0 378.16871 0.00096661682 0.00096098081 + 2180 -6247.4169 -6254.5493 7.1323579 3753.8245 629.11506 -10637.489 0 341.82261 0.00082758779 0.00082158805 + 2190 -6247.5759 -6253.9314 6.3554542 3753.9857 629.31072 -10637.228 0 304.58903 0.00080054242 0.00079415859 + 2200 -6247.7186 -6253.464 5.7453845 3753.1114 630.6145 -10637.19 0 275.35106 0.00090045613 0.00089345629 + 2210 -6247.8418 -6253.2613 5.4194745 3751.5304 632.88014 -10637.672 0 259.73163 0.0011171083 0.0011094523 + 2220 -6247.9538 -6253.3518 5.3980377 3749.9006 635.80975 -10639.062 0 258.70425 0.0014140702 0.0014063496 + 2230 -6248.0649 -6253.6848 5.6199206 3749.0314 638.98795 -10641.704 0 269.33813 0.0017351293 0.0017284053 + 2240 -6248.1785 -6254.1646 5.9860904 3749.6399 641.94667 -10645.751 0 286.88704 0.0020171335 0.002012004 + 2250 -6248.2904 -6254.6883 6.3979011 3752.1136 644.25567 -10651.058 0 306.62332 0.0022056656 0.0022012874 + 2260 -6248.3969 -6255.165 6.7680892 3756.3545 645.62028 -10657.14 0 324.36481 0.0022689075 0.0022630638 + 2270 -6248.5058 -6255.5199 7.0141266 3761.7461 645.95513 -10663.221 0 336.1563 0.0022058713 0.0021964005 + 2280 -6248.6364 -6255.699 7.0626202 3767.2527 645.40248 -10668.354 0 338.48039 0.0020468578 0.0020334301 + 2290 -6248.8073 -6255.6848 6.8775073 3771.6351 644.27955 -10671.6 0 329.60874 0.0018455401 0.0018302445 + 2300 -6249.0203 -6255.511 6.4907049 3773.7485 642.96838 -10672.228 0 311.071 0.0016637205 0.0016498487 + 2310 -6249.2555 -6255.2565 6.0009972 3772.8622 641.78737 -10669.906 0 287.60146 0.0015522577 0.0015422055 + 2320 -6249.4824 -6255.0138 5.5313943 3768.9114 640.89302 -10664.818 0 265.09545 0.0015342011 0.0015280967 + 2330 -6249.6772 -6254.8488 5.1716405 3762.5852 640.2472 -10657.681 0 247.85403 0.0015967283 0.0015926808 + 2340 -6249.8324 -6254.7771 4.9447404 3755.1968 639.65824 -10649.632 0 236.97971 0.0016957533 0.0016912964 + 2350 -6249.9557 -6254.7713 4.8156681 3748.3559 638.87681 -10642.004 0 230.79383 0.0017720561 0.0017656258 + 2360 -6250.0605 -6254.7898 4.7293042 3743.5376 637.71121 -10636.039 0 226.65479 0.001773068 0.0017646295 + 2370 -6250.1571 -6254.8066 4.6494943 3741.6854 636.12256 -10632.615 0 222.82986 0.0016723572 0.0016630678 + 2380 -6250.2479 -6254.826 4.578083 3742.9739 634.26905 -10632.069 0 219.40743 0.0014800751 0.0014714286 + 2390 -6250.3283 -6254.8771 4.548789 3746.7983 632.48524 -10634.161 0 218.00349 0.0012411678 0.0012341652 + 2400 -6250.3902 -6254.9928 4.6025865 3751.9852 631.20262 -10638.181 0 220.58177 0.0010222998 0.0010170374 + 2410 -6250.4269 -6255.1841 4.7571486 3757.1531 630.83396 -10643.171 0 227.98925 0.00089180368 0.00088764068 + 2420 -6250.4366 -6255.4225 4.985973 3761.1072 631.65286 -10648.183 0 238.9558 0.00089884527 0.00089500755 + 2430 -6250.4227 -6255.6437 5.221012 3763.1534 633.70029 -10652.497 0 250.22019 0.0010580804 0.0010542598 + 2440 -6250.3899 -6255.7713 5.3814874 3763.2451 636.74513 -10655.762 0 257.91107 0.0013443837 0.0013408441 + 2450 -6250.3383 -6255.7526 5.4143233 3761.932 640.31499 -10658 0 259.48475 0.0016991272 0.0016961961 + 2460 -6250.2613 -6255.5825 5.3212132 3760.1412 643.79592 -10659.52 0 255.02239 0.0020459057 0.0020432965 + 2470 -6250.1492 -6255.3045 5.1552132 3758.8632 646.57796 -10660.746 0 247.06674 0.0023108379 0.0023074944 + 2480 -6249.9968 -6254.9888 4.9920381 3758.8364 648.20409 -10662.029 0 239.24648 0.0024415889 0.0024363633 + 2490 -6249.806 -6254.7053 4.899324 3760.3127 648.47537 -10663.493 0 234.8031 0.0024201048 0.0024128268 + 2500 -6249.5815 -6254.5066 4.9250298 3762.966 647.47897 -10664.952 0 236.03506 0.0022659647 0.0022579743 + 2510 -6249.3197 -6254.4256 5.1058988 3765.9699 645.53377 -10665.929 0 244.70332 0.0020295226 0.0020230103 + 2520 -6249.0007 -6254.4768 5.4761063 3768.2329 643.07841 -10665.788 0 262.44574 0.0017764496 0.001772856 + 2530 -6248.5934 -6254.647 6.053648 3768.7369 640.54486 -10663.929 0 290.12478 0.0015678192 0.0015664282 + 2540 -6248.075 -6254.8782 6.8032281 3766.8809 638.26018 -10660.019 0 326.04887 0.0014419208 0.001439866 + 2550 -6247.456 -6255.0611 7.6050258 3762.7114 636.40184 -10654.174 0 364.47551 0.0014043728 0.0013983222 + 2560 -6246.791 -6255.0613 8.2702804 3756.9429 635.00965 -10647.014 0 396.35824 0.0014307761 0.0014192076 + 2570 -6246.1591 -6254.7756 8.6164979 3750.7511 634.03885 -10639.565 0 412.95092 0.0014810666 0.0014654294 + 2580 -6245.6256 -6254.1884 8.562837 3745.417 633.42835 -10633.034 0 410.37919 0.0015189423 0.0015027993 + 2590 -6245.2126 -6253.3928 8.1801839 3741.9713 633.15573 -10628.52 0 392.04031 0.0015270594 0.0015138871 + 2600 -6244.8989 -6252.5603 7.6613681 3740.9676 633.25787 -10626.786 0 367.17575 0.0015114911 0.0015027693 + 2610 -6244.6438 -6251.8786 7.2348025 3742.4375 633.8113 -10628.127 0 346.73233 0.0014951834 0.0014899947 + 2620 -6244.4131 -6251.4898 7.0767327 3745.9905 634.88322 -10632.364 0 339.15674 0.0015053515 0.0015014749 + 2630 -6244.1917 -6251.4571 7.2653056 3750.9797 636.47561 -10638.912 0 348.19421 0.0015612636 0.0015567233 + 2640 -6243.983 -6251.7664 7.7833016 3756.6599 638.48705 -10646.913 0 373.01948 0.0016670363 0.0016609632 + 2650 -6243.8028 -6252.3479 8.5450622 3762.3037 640.7114 -10655.363 0 409.52733 0.0018109348 0.0018033926 + 2660 -6243.6772 -6253.0955 9.4183847 3767.2725 642.87935 -10663.247 0 451.38184 0.0019701094 0.0019614859 + 2670 -6243.6436 -6253.8788 10.235156 3771.0558 644.73091 -10669.665 0 490.5261 0.0021184983 0.002109254 + 2680 -6243.7466 -6254.5568 10.810176 3773.2937 646.089 -10673.94 0 518.08429 0.0022352304 0.0022260941 + 2690 -6244.0209 -6255.006 10.985135 3773.7961 646.89861 -10675.701 0 526.46929 0.0023104806 0.002302494 + 2700 -6244.4693 -6255.1535 10.684154 3772.5712 647.20927 -10674.934 0 512.04459 0.0023458965 0.0023399129 + 2710 -6245.0524 -6254.997 9.9445784 3769.8584 647.10985 -10671.965 0 476.59999 0.0023489129 0.0023449571 + 2720 -6245.699 -6254.5998 8.900862 3766.1341 646.65401 -10667.388 0 426.57925 0.0023242359 0.002321426 + 2730 -6246.3322 -6254.0671 7.7349439 3762.0536 645.82179 -10661.943 0 370.70191 0.0022683347 0.0022654543 + 2740 -6246.8941 -6253.5186 6.6245407 3758.3187 644.54049 -10656.378 0 317.48516 0.0021709841 0.0021671229 + 2750 -6247.3573 -6253.0666 5.7092777 3755.5077 642.75225 -10651.326 0 273.62062 0.0020229867 0.0020177761 + 2760 -6247.7225 -6252.7982 5.075687 3753.9313 640.49089 -10647.22 0 243.2554 0.0018254099 0.0018189478 + 2770 -6248.0081 -6252.7632 4.7550825 3753.566 637.92989 -10644.259 0 227.89023 0.0015954553 0.0015882422 + 2780 -6248.237 -6252.9678 4.7307819 3754.0833 635.37894 -10642.43 0 226.72561 0.0013663152 0.0013592426 + 2790 -6248.4276 -6253.38 4.9523932 3754.9656 633.2281 -10641.574 0 237.34647 0.0011807959 0.0011749354 + 2800 -6248.5891 -6253.9404 5.3512931 3755.6817 631.85573 -10641.478 0 256.46399 0.0010802127 0.0010762787 + 2810 -6248.7228 -6254.5718 5.8489836 3755.8752 631.5278 -10641.975 0 280.31611 0.0010914407 0.0010892223 + 2820 -6248.829 -6255.1852 6.3562559 3755.5078 632.31965 -10643.013 0 304.62745 0.0012162591 0.0012145409 + 2830 -6248.9127 -6255.6857 6.7729864 3754.8961 634.08602 -10644.668 0 324.59951 0.0014275176 0.0014246843 + 2840 -6248.9849 -6255.9865 7.0015983 3754.6088 636.49201 -10647.087 0 335.55588 0.0016749874 0.0016699073 + 2850 -6249.057 -6256.0312 6.9742121 3755.2492 639.09906 -10650.379 0 334.24337 0.00189995 0.0018925198 + 2860 -6249.134 -6255.8118 6.6778117 3757.1976 641.48115 -10654.491 0 320.03821 0.0020535134 0.0020446023 + 2870 -6249.2127 -6255.3746 6.161885 3760.4177 643.33352 -10659.126 0 295.3121 0.0021118008 0.0021027851 + 2880 -6249.2842 -6254.8109 5.5267113 3764.4023 644.53661 -10663.75 0 264.87102 0.0020824735 0.0020746539 + 2890 -6249.3376 -6254.2376 4.8999774 3768.2867 645.15393 -10667.678 0 234.83441 0.0020004073 0.0019944886 + 2900 -6249.3635 -6253.7715 4.4079994 3771.097 645.36723 -10670.236 0 211.25606 0.0019140757 0.0019098765 + 2910 -6249.3561 -6253.5015 4.1454227 3772.0534 645.37546 -10670.93 0 198.67191 0.001867243 0.001863846 + 2920 -6249.3146 -6253.4657 4.1511058 3770.8269 645.29588 -10669.589 0 198.94428 0.0018823038 0.0018786687 + 2930 -6249.243 -6253.6444 4.4014032 3767.6582 645.10488 -10666.407 0 210.93994 0.0019513613 0.0019470312 + 2940 -6249.1466 -6253.9723 4.8256989 3763.2967 644.64263 -10661.912 0 231.27457 0.0020385985 0.00203394 + 2950 -6249.029 -6254.3639 5.3348618 3758.779 643.68363 -10656.827 0 255.67651 0.0020933229 0.0020890669 + 2960 -6248.8909 -6254.7356 5.8447452 3755.1211 642.05051 -10651.907 0 280.11299 0.0020689727 0.0020654569 + 2970 -6248.7336 -6255.0178 6.2841698 3753.0248 639.72773 -10647.77 0 301.17268 0.0019412361 0.0019380674 + 2980 -6248.5645 -6255.1584 6.5938816 3752.6882 636.9277 -10644.774 0 316.01581 0.0017190543 0.0017155278 + 2990 -6248.3968 -6255.1285 6.7316256 3753.7734 634.07649 -10642.978 0 322.61727 0.0014449238 0.0014407833 + 3000 -6248.2438 -6254.9323 6.6885482 3755.5418 631.71779 -10642.192 0 320.55276 0.0011842595 0.0011800161 + 3010 -6248.1094 -6254.6135 6.5040751 3757.1154 630.36606 -10642.095 0 311.71177 0.0010067575 0.0010031934 + 3020 -6247.9856 -6254.2461 6.2605261 3757.7875 630.35968 -10642.393 0 300.03954 0.00096526728 0.00096254732 + 3030 -6247.8576 -6253.9105 6.0529162 3757.283 631.76291 -10642.956 0 290.08971 0.0010789251 0.0010761473 + 3040 -6247.7135 -6253.6639 5.9503578 3755.8728 634.34534 -10643.882 0 285.17453 0.0013263533 0.0013220054 + 3050 -6247.5516 -6253.5248 5.9732208 3754.295 637.64106 -10645.461 0 286.27026 0.0016515094 0.0016445282 + 3060 -6247.3791 -6253.4776 6.098536 3753.4985 641.06703 -10648.043 0 292.27607 0.0019804028 0.0019710468 + 3070 -6247.2055 -6253.4923 6.2867967 3754.2943 644.06606 -10651.853 0 301.29857 0.0022431016 0.0022329847 + 3080 -6247.034 -6253.5455 6.5115044 3757.0406 646.23441 -10656.821 0 312.06783 0.00239362 0.0023848197 + 3090 -6246.8574 -6253.6307 6.7732909 3761.4753 647.39782 -10662.504 0 324.61411 0.0024210216 0.0024147644 + 3100 -6246.6609 -6253.7502 7.08927 3766.7574 647.61574 -10668.123 0 339.7576 0.0023482272 0.0023439857 + 3110 -6246.4324 -6253.8948 7.4623367 3771.7002 647.11683 -10672.712 0 357.63705 0.0022196495 0.0022153574 + 3120 -6246.1742 -6254.0255 7.8512723 3775.109 646.19308 -10675.328 0 376.27702 0.0020831684 0.0020765777 + 3130 -6245.9057 -6254.0749 8.1691572 3776.1018 645.09243 -10675.269 0 391.51185 0.0019739734 0.0019642522 + 3140 -6245.6535 -6253.9749 8.3213511 3774.3193 643.94804 -10672.242 0 398.80584 0.0019061597 0.0018944682 + 3150 -6245.4348 -6253.6963 8.2614837 3769.9804 642.76629 -10666.443 0 395.93665 0.0018736236 0.0018621583 + 3160 -6245.2467 -6253.2714 8.0246945 3763.8029 641.47141 -10658.546 0 384.58839 0.0018575817 0.0018479055 + 3170 -6245.0713 -6252.7861 7.7148875 3756.8335 639.98251 -10649.602 0 369.7407 0.0018363873 0.0018284584 + 3180 -6244.8894 -6252.3502 7.4607896 3750.2324 638.28684 -10640.869 0 357.5629 0.001794179 0.0017867448 + 3190 -6244.6908 -6252.0649 7.3741579 3745.0548 636.47893 -10633.599 0 353.41102 0.0017263705 0.0017181464 + 3200 -6244.4743 -6252.0021 7.5277863 3742.0678 634.75257 -10628.822 0 360.77376 0.0016408804 0.0016314513 + 3210 -6244.2443 -6252.1901 7.9457803 3741.6358 633.35388 -10627.18 0 380.80637 0.0015548489 0.0015447545 + 3220 -6244.0098 -6252.6024 8.5926191 3743.6896 632.51698 -10628.809 0 411.80652 0.001488068 0.0014782963 + 3230 -6243.7891 -6253.1515 9.362394 3747.7712 632.40621 -10633.329 0 448.69845 0.0014559348 0.0014473079 + 3240 -6243.6146 -6253.6993 10.084763 3753.1317 633.08215 -10639.913 0 483.31842 0.0014651167 0.0014578422 + 3250 -6243.5286 -6254.0896 10.560931 3758.8645 634.49688 -10647.451 0 506.13907 0.0015136116 0.0015071031 + 3260 -6243.5708 -6254.1939 10.623176 3764.0565 636.51335 -10654.764 0 509.12218 0.0015943391 0.0015874817 + 3270 -6243.7601 -6253.9549 10.194847 3767.9417 638.9363 -10660.833 0 488.59429 0.0016996238 0.0016915606 + 3280 -6244.0839 -6253.4116 9.3276413 3770.0259 641.54187 -10664.979 0 447.03291 0.0018239988 0.0018149576 + 3290 -6244.499 -6252.6998 8.2008477 3770.1583 644.09787 -10666.956 0 393.03064 0.0019640028 0.0019552933 + 3300 -6244.9465 -6252.021 7.0744976 3768.5422 646.37428 -10666.938 0 339.04962 0.00211495 0.0021078788 + 3310 -6245.3767 -6251.5805 6.2038684 3765.6936 648.14898 -10665.423 0 297.32419 0.0022660131 0.0022606488 + 3320 -6245.7673 -6251.5156 5.7483344 3762.3522 649.21592 -10663.084 0 275.49244 0.0023964957 0.0023915215 + 3330 -6246.127 -6251.8465 5.7194151 3759.3396 649.40256 -10660.589 0 274.10646 0.0024767172 0.002470575 + 3340 -6246.4832 -6252.477 5.9938196 3757.3701 648.60041 -10658.447 0 287.25747 0.0024752169 0.0024674894 + 3350 -6246.8625 -6253.243 6.3805011 3756.851 646.80551 -10656.899 0 305.78941 0.0023704641 0.0023622459 + 3360 -6247.2755 -6253.978 6.7025296 3757.7451 644.15557 -10655.879 0 321.22283 0.0021620887 0.0021550574 + 3370 -6247.7115 -6254.5637 6.8522412 3759.5611 640.94409 -10655.069 0 328.39785 0.0018760899 0.0018711285 + 3380 -6248.1461 -6254.9473 6.8011625 3761.4947 637.59505 -10654.037 0 325.94987 0.0015610865 0.0015576159 + 3390 -6248.5547 -6255.131 6.5763084 3762.68 634.59437 -10652.405 0 315.1736 0.0012767182 0.0012731974 + 3400 -6248.9222 -6255.1512 6.2289115 3762.4635 632.39189 -10650.007 0 298.52439 0.001078258 0.0010733335 + 3410 -6249.2453 -6255.059 5.813726 3760.612 631.30053 -10646.971 0 278.62637 0.0010022294 0.00099561165 + 3420 -6249.5265 -6254.907 5.380425 3757.3961 631.42315 -10643.726 0 257.86016 0.0010569306 0.00104945 + 3430 -6249.7687 -6254.7388 4.9700914 3753.5339 632.63011 -10640.903 0 238.19467 0.0012202791 0.0012132289 + 3440 -6249.9709 -6254.5832 4.6122278 3750.0156 634.59567 -10639.194 0 221.04383 0.001445638 0.0014399193 + 3450 -6250.1294 -6254.452 4.3225521 3747.8531 636.88352 -10639.189 0 207.16095 0.0016742927 0.0016698768 + 3460 -6250.241 -6254.3443 4.1032842 3747.8128 639.05809 -10641.215 0 196.6524 0.0018513393 0.0018473209 + 3470 -6250.3068 -6254.2539 3.9470967 3750.1959 640.7906 -10645.24 0 189.16702 0.0019406124 0.001935801 + 3480 -6250.3339 -6254.1792 3.845292 3754.7239 641.93017 -10650.833 0 184.28797 0.0019343893 0.0019280769 + 3490 -6250.3322 -6254.1309 3.7987109 3760.5661 642.51964 -10657.217 0 182.05554 0.0018549234 0.0018473334 + 3500 -6250.3094 -6254.1352 3.8258218 3766.5154 642.75188 -10663.402 0 183.35485 0.0017470155 0.0017391157 + 3510 -6250.2652 -6254.2251 3.9599068 3771.2754 642.8806 -10668.381 0 189.78095 0.0016633641 0.0016561678 + 3520 -6250.1914 -6254.4224 4.2310158 3773.7897 643.1146 -10671.327 0 202.77402 0.0016467899 0.0016406677 + 3530 -6250.0767 -6254.7154 4.6387471 3773.5231 643.53056 -10671.769 0 222.31479 0.0017148795 0.0017094197 + 3540 -6249.9143 -6255.0466 5.1322922 3770.609 644.03415 -10669.69 0 245.96824 0.0018524182 0.001846926 + 3550 -6249.707 -6255.3216 5.6145457 3765.8107 644.3843 -10665.517 0 269.08053 0.0020148189 0.0020089895 + 3560 -6249.4656 -6255.439 5.9734598 3760.301 644.27425 -10660.014 0 286.28171 0.0021420091 0.0021361703 + 3570 -6249.202 -6255.3274 6.1253646 3755.3267 643.44404 -10654.098 0 293.56184 0.0021782787 0.0021730284 + 3580 -6248.9244 -6254.9721 6.0476418 3751.8647 641.78654 -10648.623 0 289.83693 0.0020912429 0.0020868694 + 3590 -6248.6353 -6254.4229 5.7875805 3750.3784 639.41018 -10644.211 0 277.37333 0.0018835075 0.001879711 + 3600 -6248.3339 -6253.783 5.4491195 3750.7393 636.63659 -10641.159 0 261.15238 0.0015934854 0.0015895654 + 3610 -6248.0175 -6253.1835 5.165961 3752.3254 633.93458 -10639.443 0 247.58183 0.0012856 0.0012808889 + 3620 -6247.6809 -6252.749 5.0680852 3754.2529 631.81282 -10638.815 0 242.89108 0.0010332534 0.0010275011 + 3630 -6247.315 -6252.5623 5.2473407 3755.6657 630.70237 -10638.93 0 251.48201 0.00089957308 0.00089311157 + 3640 -6246.9076 -6252.637 5.7293409 3756.002 630.85773 -10639.497 0 274.58216 0.0009209456 0.00091455965 + 3650 -6246.4504 -6252.9101 6.4596777 3755.1658 632.29667 -10640.373 0 309.584 0.0010972215 0.0010917106 + 3660 -6245.9484 -6253.2592 7.3107712 3753.5605 634.79125 -10641.611 0 350.37317 0.0013909951 0.0013865778 + 3670 -6245.4273 -6253.5397 8.1123691 3751.9689 637.91587 -10643.424 0 388.79024 0.0017368001 0.001732729 + 3680 -6244.9305 -6253.632 8.7015579 3751.3015 641.14731 -10646.081 0 417.02748 0.0020588103 0.0020535824 + 3690 -6244.5048 -6253.4811 8.9763005 3752.2805 643.99384 -10649.755 0 430.19469 0.0022924405 0.002284622 + 3700 -6244.1846 -6253.1137 8.929069 3755.1618 646.1127 -10654.388 0 427.93109 0.0024026026 0.0023917882 + 3710 -6243.9814 -6252.6261 8.6446884 3759.5954 647.37288 -10659.594 0 414.30197 0.0023917421 0.0023789791 + 3720 -6243.8848 -6252.1502 8.2653736 3764.6835 647.84061 -10664.674 0 396.12308 0.0022947491 0.0022820904 + 3730 -6243.8698 -6251.8109 7.9410913 3769.2222 647.69948 -10668.733 0 380.58165 0.0021632836 0.0021526964 + 3740 -6243.9062 -6251.691 7.7847331 3772.048 647.14494 -10670.884 0 373.08809 0.0020459631 0.0020382082 + 3750 -6243.9683 -6251.8107 7.8424003 3772.3777 646.30039 -10670.489 0 375.85183 0.0019717581 0.0019659004 + 3760 -6244.0429 -6252.1243 8.0814824 3770.0317 645.18774 -10667.344 0 387.30998 0.0019422261 0.001936158 + 3770 -6244.1337 -6252.534 8.4002713 3765.4696 643.75931 -10661.763 0 402.58813 0.0019349675 0.001926746 + 3780 -6244.2575 -6252.9216 8.664072 3759.63 641.97079 -10654.522 0 415.23095 0.0019166044 0.0019057609 + 3790 -6244.4302 -6253.1911 8.7609544 3753.6394 639.85769 -10646.688 0 419.87409 0.001859608 0.0018474488 + 3800 -6244.6531 -6253.3039 8.6507687 3748.5072 637.57685 -10639.388 0 414.59337 0.0017553056 0.0017439301 + 3810 -6244.9093 -6253.2862 8.3768505 3744.917 635.39184 -10633.595 0 401.46568 0.0016172021 0.0016080064 + 3820 -6245.1731 -6253.2054 8.032313 3743.1659 633.60842 -10629.98 0 384.95351 0.0014738719 0.0014667259 + 3830 -6245.4249 -6253.1297 7.7048446 3743.2222 632.48888 -10628.841 0 369.25938 0.0013560897 0.0013497503 + 3840 -6245.6592 -6253.0965 7.4373425 3744.8329 632.18129 -10630.111 0 356.43918 0.0012852138 0.0012784485 + 3850 -6245.8809 -6253.1059 7.2250112 3747.6158 632.68979 -10633.412 0 346.26308 0.0012679942 0.0012603708 + 3860 -6246.096 -6253.1349 7.038914 3751.1162 633.89237 -10638.143 0 337.34426 0.001298667 0.001290471 + 3870 -6246.3052 -6253.1555 6.8503294 3754.8418 635.59305 -10643.59 0 328.30622 0.0013654468 0.0013571095 + 3880 -6246.5055 -6253.1469 6.641361 3758.3003 637.58311 -10649.03 0 318.29129 0.001457288 0.0014490463 + 3890 -6246.6941 -6253.1015 6.4074127 3761.0513 639.68564 -10653.839 0 307.07917 0.0015678326 0.0015598429 + 3900 -6246.8693 -6253.0314 6.1620947 3762.7718 641.768 -10657.571 0 295.32215 0.0016952998 0.0016878033 + 3910 -6247.0286 -6252.9713 5.9426591 3763.3225 643.72307 -10660.017 0 284.80557 0.0018386649 0.0018318029 + 3920 -6247.1682 -6252.9715 5.8032581 3762.797 645.43442 -10661.203 0 278.12469 0.0019917887 0.0019852288 + 3930 -6247.286 -6253.076 5.7900037 3761.5255 646.74836 -10661.35 0 277.48946 0.0021383593 0.0021312877 + 3940 -6247.3868 -6253.2975 5.9107487 3760.0097 647.47371 -10660.781 0 283.27624 0.0022510476 0.0022427761 + 3950 -6247.4832 -6253.6064 6.1231791 3758.7833 647.41834 -10659.808 0 293.4571 0.0022971133 0.0022878114 + 3960 -6247.5888 -6253.9417 6.3528435 3758.2316 646.45475 -10658.628 0 304.4639 0.0022495767 0.0022403228 + 3970 -6247.7095 -6254.2368 6.5272351 3758.4376 644.59055 -10657.265 0 312.82173 0.0020995052 0.0020914354 + 3980 -6247.8405 -6254.4397 6.5991701 3759.1272 642.01275 -10655.58 0 316.26926 0.0018635291 0.0018568129 + 3990 -6247.972 -6254.5189 6.5468903 3759.7507 639.08128 -10653.351 0 313.76372 0.001582689 0.0015763304 + 4000 -6248.0983 -6254.4616 6.363313 3759.6733 636.2646 -10650.4 0 304.96566 0.0013127431 0.0013054391 + 4010 -6248.2207 -6254.2749 6.0542064 3758.4061 634.03235 -10646.713 0 290.15154 0.0011093856 0.001100669 + 4020 -6248.3426 -6253.9914 5.6488558 3755.7977 632.73698 -10642.526 0 270.72487 0.0010130403 0.0010037047 + 4030 -6248.4628 -6253.6713 5.2084947 3752.1289 632.52235 -10638.323 0 249.62029 0.0010375154 0.0010290081 + 4040 -6248.5728 -6253.3904 4.817661 3748.0861 633.28938 -10634.766 0 230.88934 0.0011657537 0.001159081 + 4050 -6248.6603 -6253.2189 4.5586437 3744.614 634.7314 -10632.564 0 218.47578 0.0013543069 0.0013492858 + 4060 -6248.7156 -6253.1976 4.4820551 3742.68 636.42939 -10632.307 0 214.80523 0.0015458231 0.0015411741 + 4070 -6248.7367 -6253.3245 4.5878558 3743.0022 637.97872 -10634.305 0 219.87579 0.0016862372 0.0016804302 + 4080 -6248.7301 -6253.5556 4.8254935 3745.8132 639.10783 -10638.477 0 231.26472 0.0017415245 0.0017338376 + 4090 -6248.7065 -6253.8218 5.115297 3750.7315 639.75053 -10644.304 0 245.15374 0.0017086537 0.0016997176 + 4100 -6248.6723 -6254.0565 5.3842557 3756.7971 640.04702 -10650.901 0 258.04375 0.0016168071 0.0016081341 + 4110 -6248.6223 -6254.2198 5.5975003 3762.6863 640.27303 -10657.179 0 268.26362 0.0015176554 0.0015103531 + 4120 -6248.5406 -6254.3043 5.7637009 3767.0619 640.72168 -10662.088 0 276.22889 0.0014670647 0.0014607186 + 4130 -6248.4108 -6254.3205 5.9097711 3768.9534 641.58002 -10664.854 0 283.22939 0.0015042311 0.0014970181 + 4140 -6248.228 -6254.2754 6.0474367 3768.0359 642.84253 -10665.154 0 289.8271 0.0016361372 0.0016262698 + 4150 -6248.002 -6254.1653 6.1633264 3764.7029 644.29032 -10663.158 0 295.38118 0.0018336836 0.0018210374 + 4160 -6247.747 -6253.9889 6.2418379 3759.9135 645.54325 -10659.446 0 299.1439 0.0020409996 0.0020274698 + 4170 -6247.4677 -6253.7643 6.2965972 3754.883 646.16961 -10654.817 0 301.76827 0.0021938058 0.0021819837 + 4180 -6247.1522 -6253.5284 6.3761101 3750.7363 645.82092 -10650.086 0 305.57897 0.0022395046 0.0022307313 + 4190 -6246.781 -6253.3144 6.5334556 3748.233 644.35022 -10645.898 0 313.11985 0.0021523165 0.0021457109 + 4200 -6246.3428 -6253.1272 6.7843527 3747.6199 641.87614 -10642.623 0 325.14425 0.0019399504 0.0019331575 + 4210 -6245.848 -6252.9374 7.0893236 3748.6188 638.77061 -10640.327 0 339.76016 0.0016414229 0.0016324431 + 4220 -6245.3273 -6252.7036 7.3762775 3750.5332 635.57194 -10638.809 0 353.5126 0.001317449 0.0013061364 + 4230 -6244.8171 -6252.4067 7.5895669 3752.4457 632.84979 -10637.702 0 363.73463 0.0010358342 0.0010239512 + 4240 -6244.3407 -6252.0733 7.7325265 3753.4745 631.06549 -10636.613 0 370.58606 0.00085522481 0.00084498568 + 4250 -6243.8989 -6251.771 7.8720411 3753.0334 630.4721 -10635.276 0 377.27238 0.00081113856 0.00080330729 + 4260 -6243.4788 -6251.575 8.0961257 3751.0282 631.08086 -10633.684 0 388.01177 0.00090783318 0.00090091106 + 4270 -6243.0748 -6251.5244 8.4495736 3747.9184 632.69372 -10632.136 0 404.95098 0.0011182904 0.0011096111 + 4280 -6242.7043 -6251.599 8.8946696 3744.6003 634.97931 -10631.179 0 426.28248 0.0013926607 0.0013806234 + 4290 -6242.4042 -6251.7342 9.3299958 3742.1324 637.56255 -10631.429 0 447.14575 0.0016729796 0.0016585059 + 4300 -6242.2092 -6251.8639 9.6547372 3741.3977 640.10293 -10633.365 0 462.70918 0.0019093445 0.0018951437 + 4310 -6242.1314 -6251.9578 9.826335 3742.8332 642.34656 -10637.137 0 470.93311 0.002071564 0.0020597206 + 4320 -6242.1596 -6252.0242 9.8646256 3746.3238 644.14515 -10642.493 0 472.76821 0.0021521361 0.0021421707 + 4330 -6242.2786 -6252.0832 9.8046037 3751.2711 645.4432 -10648.798 0 469.89162 0.0021608941 0.0021501594 + 4340 -6242.4894 -6252.1372 9.6478369 3756.7716 646.24348 -10655.152 0 462.37848 0.0021159452 0.0021021192 + 4350 -6242.8071 -6252.17 9.3629667 3761.8186 646.56818 -10660.557 0 448.7259 0.0020364479 0.0020198563 + 4360 -6243.2387 -6252.1743 8.9356274 3765.4772 646.43306 -10664.085 0 428.2454 0.0019396551 0.0019231879 + 4370 -6243.7629 -6252.1771 8.4141259 3767.0326 645.84469 -10665.054 0 403.25213 0.0018403998 0.0018270391 + 4380 -6244.3335 -6252.2306 7.8970699 3766.1233 644.81796 -10663.172 0 378.4719 0.0017499248 0.0017402476 + 4390 -6244.9047 -6252.3744 7.4696395 3762.8384 643.40051 -10658.613 0 357.98704 0.0016736006 0.0016655703 + 4400 -6245.4525 -6252.6034 7.1509201 3757.7256 641.68719 -10652.016 0 342.71221 0.0016099271 0.001600877 + 4410 -6245.973 -6252.8729 6.8999189 3751.6775 639.81412 -10644.365 0 330.68283 0.0015525172 0.0015411994 + 4420 -6246.467 -6253.1305 6.663497 3745.7273 637.93503 -10636.793 0 319.35216 0.0014937114 0.0014807154 + 4430 -6246.9281 -6253.3425 6.4144688 3740.8305 636.19256 -10630.366 0 307.41734 0.0014272502 0.0014140146 + 4440 -6247.3438 -6253.4979 6.15411 3737.6956 634.69841 -10625.892 0 294.93948 0.0013492659 0.0013369814 + 4450 -6247.7031 -6253.5986 5.8954752 3736.6851 633.5292 -10623.813 0 282.54425 0.0012589685 0.0012481509 + 4460 -6248.0007 -6253.6536 5.6528947 3737.7799 632.73658 -10624.17 0 270.91843 0.0011602199 0.00115079 + 4470 -6248.2367 -6253.6787 5.4420036 3740.6026 632.3641 -10626.645 0 260.81135 0.0010633599 0.0010548307 + 4480 -6248.416 -6253.6945 5.2785629 3744.4967 632.46108 -10630.652 0 252.97835 0.00098547817 0.00097719907 + 4490 -6248.5479 -6253.7187 5.1707917 3748.6579 633.08421 -10635.461 0 247.81335 0.00094794146 0.00093950413 + 4500 -6248.6448 -6253.7592 5.1144144 3752.2945 634.2809 -10640.335 0 245.11144 0.00097145553 0.00096305457 + 4510 -6248.7169 -6253.8163 5.0994267 3754.7871 636.05523 -10644.659 0 244.39314 0.0010698323 0.0010621407 + 4520 -6248.7677 -6253.8895 5.121747 3755.8201 638.32659 -10648.036 0 245.46285 0.0012437025 0.0012371983 + 4530 -6248.7941 -6253.9778 5.1836864 3755.4566 640.89783 -10650.332 0 248.43134 0.0014756419 0.0014699912 + 4540 -6248.7934 -6254.0731 5.2796969 3754.1263 643.45208 -10651.651 0 253.0327 0.0017290145 0.0017232072 + 4550 -6248.7695 -6254.1531 5.383642 3752.5049 645.59099 -10652.249 0 258.01433 0.0019530504 0.0019462541 + 4560 -6248.7329 -6254.188 5.4550901 3751.3012 646.91393 -10652.403 0 261.43852 0.002094734 0.0020870564 + 4570 -6248.6931 -6254.1555 5.4624367 3751.0125 647.11969 -10652.288 0 261.79061 0.0021143969 0.0021068082 + 4580 -6248.6512 -6254.0546 5.4033865 3751.7404 646.09796 -10651.893 0 258.9606 0.0019991075 0.0019925698 + 4590 -6248.5992 -6253.9057 5.3065359 3753.1377 643.97644 -10651.02 0 254.31897 0.0017683202 0.0017628641 + 4600 -6248.5261 -6253.7405 5.2144076 3754.5123 641.10392 -10649.357 0 249.90367 0.0014695646 0.0014640496 + 4610 -6248.4257 -6253.5864 5.1607263 3755.0501 637.97363 -10646.61 0 247.33096 0.001165942 0.001158692 + 4620 -6248.3014 -6253.4574 5.156061 3754.083 635.11001 -10642.65 0 247.10738 0.00091975531 0.00090964475 + 4630 -6248.1636 -6253.3532 5.1895429 3751.3165 632.95081 -10637.621 0 248.71201 0.00077709282 0.00076435447 + 4640 -6248.0234 -6253.2675 5.244085 3746.9516 631.7541 -10631.973 0 251.32598 0.00075718453 0.00074338197 + 4650 -6247.8845 -6253.198 5.3135311 3741.6741 631.5528 -10626.425 0 254.65423 0.00084876379 0.00083594041 + 4660 -6247.7407 -6253.1505 5.4098405 3736.5186 632.16788 -10621.837 0 259.26991 0.0010141096 0.0010036714 + 4670 -6247.5794 -6253.1365 5.557138 3732.6392 633.27669 -10619.052 0 266.32924 0.0011998932 0.001191891 + 4680 -6247.3881 -6253.1661 5.7779473 3731.0304 634.51725 -10618.714 0 276.91165 0.0013522509 0.0013454126 + 4690 -6247.1615 -6253.2404 6.0789081 3732.2624 635.59829 -10621.101 0 291.33538 0.0014320789 0.0014245282 + 4700 -6246.9049 -6253.3469 6.442016 3736.2974 636.38235 -10626.027 0 308.73755 0.0014262145 0.0014165051 + 4710 -6246.6337 -6253.4602 6.8264119 3742.4444 636.91619 -10632.821 0 327.15996 0.0013512455 0.0013391614 + 4720 -6246.3669 -6253.5488 7.1819695 3749.4793 637.39867 -10640.427 0 344.20028 0.001248657 0.0012352724 + 4730 -6246.1184 -6253.5854 7.4670489 3755.9154 638.09533 -10647.596 0 357.86288 0.0011722006 0.0011591055 + 4740 -6245.8932 -6253.5496 7.6564375 3760.3674 639.22669 -10653.144 0 366.93944 0.0011704561 0.0011587175 + 4750 -6245.6905 -6253.4241 7.7335557 3761.9138 640.86568 -10656.204 0 370.63538 0.0012694595 0.0012591869 + 4760 -6245.5104 -6253.1912 7.6807775 3760.3476 642.87701 -10656.416 0 368.10595 0.0014613337 0.0014521682 + 4770 -6245.3553 -6252.845 7.4897065 3756.2219 644.91962 -10653.987 0 358.94876 0.001703837 0.0016956792 + 4780 -6245.2231 -6252.4144 7.1912944 3750.6715 646.51787 -10649.604 0 344.64718 0.0019319696 0.0019249687 + 4790 -6245.1007 -6251.9744 6.8736557 3745.0743 647.18852 -10644.237 0 329.42415 0.0020776934 0.0020714604 + 4800 -6244.9681 -6251.6247 6.656564 3740.6728 646.58988 -10638.887 0 319.01989 0.0020905501 0.0020836669 + 4810 -6244.8101 -6251.4435 6.6334209 3738.2651 644.64307 -10634.352 0 317.91075 0.0019524694 0.0019432005 + 4820 -6244.6238 -6251.4509 6.8270914 3738.0333 641.57833 -10631.062 0 327.19253 0.0016831209 0.0016709029 + 4830 -6244.4141 -6251.6084 7.1943408 3739.5333 637.88557 -10629.027 0 344.79318 0.0013352061 0.0013215181 + 4840 -6244.1809 -6251.8512 7.6703558 3741.8474 634.18687 -10627.886 0 367.60649 0.00098116906 0.00096879412 + 4850 -6243.91 -6252.124 8.2139976 3743.8667 631.07912 -10627.07 0 393.66085 0.00069457542 0.0006855566 + 4860 -6243.5782 -6252.3953 8.817083 3744.635 629.00102 -10626.031 0 422.56409 0.00053098621 0.00052469395 + 4870 -6243.1728 -6252.6417 9.4689027 3743.6588 628.16138 -10624.462 0 453.80295 0.00051375248 0.00050667072 + 4880 -6242.7167 -6252.8204 10.103765 3741.076 628.53673 -10622.433 0 484.22909 0.00062927532 0.00061715297 + 4890 -6242.2772 -6252.8615 10.584259 3737.6099 629.92316 -10620.395 0 507.25707 0.00083396568 0.0008151403 + 4900 -6241.9432 -6252.7013 10.758093 3734.3042 632.01612 -10619.022 0 515.58816 0.0010712316 0.0010484505 + 4910 -6241.7763 -6252.3389 10.562617 3732.1467 634.4917 -10618.977 0 506.21986 0.001291815 0.0012705282 + 4920 -6241.7761 -6251.8648 10.088764 3731.7535 637.06785 -10620.686 0 483.51018 0.0014677902 0.0014518784 + 4930 -6241.8917 -6251.4246 9.5329108 3733.2535 639.53195 -10624.21 0 456.87058 0.0015935138 0.0015821112 + 4940 -6242.0709 -6251.1352 9.0643602 3736.3707 641.73345 -10629.239 0 434.415 0.0016752933 0.0016637207 + 4950 -6242.3011 -6251.0209 8.7198203 3740.5879 643.5551 -10635.164 0 417.90271 0.0017189991 0.0017030981 + 4960 -6242.6071 -6251.022 8.4149231 3745.2665 644.88636 -10641.175 0 403.29033 0.0017248208 0.0017047681 + 4970 -6243.0121 -6251.0677 8.0556374 3749.6962 645.6193 -10646.383 0 386.07134 0.0016910894 0.0016712345 + 4980 -6243.5017 -6251.1441 7.6424474 3753.1395 645.67184 -10649.956 0 366.26896 0.0016212837 0.0016062783 + 4990 -6244.0268 -6251.2999 7.2730814 3754.9408 645.02515 -10651.266 0 348.56687 0.0015268316 0.0015176898 + 5000 -6244.5383 -6251.5886 7.0503345 3754.69 643.7523 -10650.031 0 337.89159 0.0014235317 0.0014170696 + 5010 -6245.0193 -6252.0065 6.9871345 3752.36 642.01914 -10646.386 0 334.86269 0.0013253451 0.0013171551 + 5020 -6245.4869 -6252.4791 6.9922004 3748.333 640.0516 -10640.864 0 335.10548 0.0012403906 0.0012284903 + 5030 -6245.9661 -6252.9061 6.9400175 3743.3003 638.07975 -10634.286 0 332.60458 0.0011706525 0.0011567873 + 5040 -6246.4622 -6253.2223 6.7601388 3738.0883 636.2807 -10627.591 0 323.98378 0.0011135549 0.0011014427 + 5050 -6246.9521 -6253.4283 6.4761948 3733.4912 634.74463 -10621.664 0 310.37559 0.0010631836 0.0010554608 + 5060 -6247.3997 -6253.5745 6.1747036 3730.1543 633.47828 -10617.207 0 295.92644 0.0010109522 0.0010072613 + 5070 -6247.7789 -6253.7168 5.9378931 3728.5054 632.44286 -10614.665 0 284.57716 0.00094727533 0.00094469242 + 5080 -6248.0872 -6253.8788 5.7915699 3728.7077 631.60869 -10614.195 0 277.56452 0.00086547755 0.00086065832 + 5090 -6248.3441 -6254.0414 5.6973596 3730.6211 631.00209 -10615.665 0 273.04944 0.00076716711 0.00075857545 + 5100 -6248.5758 -6254.1612 5.5854799 3733.7921 630.72412 -10618.677 0 267.68753 0.00066638967 0.00065516725 + 5110 -6248.7987 -6254.2011 5.4024639 3737.5088 630.93093 -10622.641 0 258.91638 0.00058945307 0.0005784798 + 5120 -6249.01 -6254.154 5.1440038 3740.9448 631.77942 -10626.878 0 246.52953 0.00056869015 0.00056052026 + 5130 -6249.191 -6254.045 4.8540063 3743.3727 633.355 -10630.773 0 232.63122 0.00063108767 0.00062614569 + 5140 -6249.3209 -6253.9132 4.5923699 3744.385 635.60654 -10633.905 0 220.09213 0.00078560317 0.00078187701 + 5150 -6249.392 -6253.7874 4.3953974 3744.0309 638.31326 -10636.132 0 210.65211 0.0010146836 0.0010091583 + 5160 -6249.416 -6253.6747 4.2587735 3742.7995 641.10001 -10637.574 0 204.10432 0.0012747191 0.001265549 + 5170 -6249.4161 -6253.5719 4.1558128 3741.4352 643.50345 -10638.511 0 199.16987 0.0015067233 0.0014945619 + 5180 -6249.4113 -6253.4858 4.0744943 3740.6515 645.07564 -10639.213 0 195.27263 0.0016538756 0.0016413908 + 5190 -6249.4031 -6253.4434 4.0402835 3740.8574 645.49758 -10639.798 0 193.63306 0.0016792118 0.0016691859 + 5200 -6249.375 -6253.4786 4.1035908 3742.006 644.66798 -10640.153 0 196.6671 0.0015767127 0.0015701603 + 5210 -6249.3036 -6253.6046 4.3009226 3743.6165 642.73717 -10639.958 0 206.12434 0.0013722105 0.0013678403 + 5220 -6249.1731 -6253.794 4.6208844 3744.9456 640.07231 -10638.812 0 221.45871 0.001114816 0.0011100832 + 5230 -6248.9835 -6253.9858 5.0022221 3745.2356 637.1622 -10636.384 0 239.73455 0.00086257943 0.00085544077 + 5240 -6248.7487 -6254.1148 5.3661125 3743.9559 634.49038 -10632.561 0 257.17422 0.00066696794 0.00065709387 + 5250 -6248.4857 -6254.1457 5.6599876 3740.9748 632.41681 -10627.537 0 271.25837 0.00056017868 0.00054891454 + 5260 -6248.2038 -6254.0873 5.8834259 3736.6239 631.10633 -10621.817 0 281.96678 0.00054825867 0.00053752966 + 5270 -6247.9004 -6253.9804 6.0800278 3731.6436 630.52537 -10616.149 0 291.38905 0.00061166047 0.00060265046 + 5280 -6247.5655 -6253.8666 6.3011046 3727.0215 630.50283 -10611.391 0 301.98429 0.00071305847 0.00070554055 + 5290 -6247.1921 -6253.7559 6.563772 3723.757 630.82773 -10608.341 0 314.57278 0.00081022046 0.00080293158 + 5300 -6246.7859 -6253.6154 6.8295443 3722.6046 631.34422 -10607.564 0 327.31008 0.00087013543 0.00086187858 + 5310 -6246.3661 -6253.3846 7.0185195 3723.8636 632.00889 -10609.257 0 336.36684 0.00088000022 0.00087065187 + 5320 -6245.9571 -6253.0108 7.0537224 3727.28 632.89157 -10613.182 0 338.05396 0.00085132395 0.0008419686 + 5330 -6245.5749 -6252.4858 6.910905 3732.1016 634.12278 -10618.71 0 331.20934 0.00081538266 0.00080741956 + 5340 -6245.2188 -6251.8631 6.6442532 3737.2827 635.81054 -10624.956 0 318.42989 0.00081124152 0.00080509685 + 5350 -6244.8745 -6251.2475 6.3729863 3741.7758 637.95939 -10630.983 0 305.42926 0.00087050213 0.00086493473 + 5360 -6244.5252 -6250.7621 6.2368733 3744.8122 640.42225 -10635.997 0 298.90596 0.0010043543 0.00099699396 + 5370 -6244.1646 -6250.5087 6.3440622 3746.0777 642.90363 -10639.49 0 304.04306 0.0011976983 0.001186644 + 5380 -6243.8014 -6250.5379 6.7365066 3745.7238 645.01528 -10641.277 0 322.8512 0.0014126133 0.0013980913 + 5390 -6243.4543 -6250.8418 7.3874884 3744.2232 646.36902 -10641.434 0 354.0499 0.001600162 0.0015849015 + 5400 -6243.1407 -6251.3642 8.2235123 3742.1417 646.67871 -10640.185 0 394.11685 0.0017161004 0.0017037507 + 5410 -6242.8708 -6252.0145 9.1436537 3739.936 645.83895 -10637.789 0 438.21519 0.0017339277 0.0017264134 + 5420 -6242.6551 -6252.6737 10.0186 3737.8629 643.95362 -10634.49 0 480.14753 0.0016499882 0.0016458745 + 5430 -6242.5169 -6253.2034 10.68646 3736.0037 641.30493 -10630.512 0 512.15512 0.0014800906 0.0014754204 + 5440 -6242.4939 -6253.4735 10.979596 3734.3417 638.27689 -10626.092 0 526.20384 0.0012517673 0.0012428037 + 5450 -6242.619 -6253.4072 10.788127 3732.8239 635.26424 -10621.495 0 517.02757 0.00099707558 0.00098284962 + 5460 -6242.8943 -6253.0167 10.122457 3731.3797 632.59918 -10616.996 0 485.12492 0.00074800706 0.00073085122 + 5470 -6243.2797 -6252.4077 9.1280237 3729.9226 630.51335 -10612.844 0 437.46611 0.00053365002 0.00051752251 + 5480 -6243.7076 -6251.7451 8.0374624 3728.3674 629.13421 -10609.247 0 385.20029 0.00037761327 0.00036558556 + 5490 -6244.1118 -6251.1989 7.0870872 3726.6784 628.50254 -10606.38 0 339.65298 0.00029534681 0.00028799069 + 5500 -6244.451 -6250.894 6.4429658 3724.9279 628.59568 -10604.418 0 308.78307 0.00029206976 0.00028755989 + 5510 -6244.7144 -6250.8818 6.1673442 3723.3302 629.3458 -10603.558 0 295.57374 0.00036211512 0.00035758709 + 5520 -6244.9138 -6251.1404 6.2265854 3722.2242 630.65003 -10604.015 0 298.41291 0.00048997781 0.00048306319 + 5530 -6245.0705 -6251.5926 6.5220544 3722.0001 632.37494 -10605.968 0 312.57344 0.000652856 0.00064257826 + 5540 -6245.2064 -6252.1311 6.9247419 3722.9887 634.35978 -10609.48 0 331.87248 0.00082423163 0.00081110014 + 5550 -6245.3394 -6252.6447 7.3053543 3725.3431 636.42245 -10614.41 0 350.11357 0.00097802112 0.00096361143 + 5560 -6245.4809 -6253.0424 7.5615221 3728.947 638.37133 -10620.361 0 362.39057 0.0010929232 0.0010792321 + 5570 -6245.6332 -6253.2761 7.6428507 3733.3801 640.02443 -10626.681 0 366.28829 0.0011564419 0.0011451047 + 5580 -6245.7891 -6253.3526 7.5634764 3737.9619 641.23417 -10632.549 0 362.48423 0.0011674746 0.0011589861 + 5590 -6245.936 -6253.3226 7.3866307 3741.8773 641.91186 -10637.112 0 354.00879 0.0011359945 0.0011294041 + 5600 -6246.0658 -6253.2477 7.1819469 3744.355 642.04233 -10639.645 0 344.19919 0.001079257 0.0010728024 + 5610 -6246.1819 -6253.1648 6.9828923 3744.8459 641.68046 -10639.691 0 334.65938 0.0010158832 0.0010083184 + 5620 -6246.2966 -6253.0742 6.7776617 3743.1474 640.92777 -10637.149 0 324.82358 0.00096036089 0.00095193197 + 5630 -6246.4189 -6252.9585 6.5395441 3739.4489 639.89628 -10632.304 0 313.41164 0.00091972257 0.00091184235 + 5640 -6246.5445 -6252.8116 6.2670529 3734.3015 638.67355 -10625.787 0 300.35234 0.00089236837 0.00088617114 + 5650 -6246.6573 -6252.6536 5.9963366 3728.5283 637.30328 -10618.485 0 287.37809 0.00086827387 0.00086335833 + 5660 -6246.7427 -6252.5198 5.777127 3723.0871 635.79005 -10611.397 0 276.87234 0.00083079073 0.00082539257 + 5670 -6246.8008 -6252.4402 5.6393227 3718.89 634.12743 -10605.458 0 270.26799 0.00076124587 0.0007537857 + 5680 -6246.8466 -6252.4304 5.5838277 3716.5988 632.3388 -10601.368 0 267.60835 0.00064661573 0.00063725376 + 5690 -6246.8972 -6252.5009 5.6036653 3716.4498 630.51466 -10599.465 0 268.55909 0.00048791944 0.00047866537 + 5700 -6246.9574 -6252.6663 5.708887 3718.1771 628.82979 -10599.673 0 273.6019 0.00030498373 0.00029814488 + 5710 -6247.0158 -6252.9388 5.9230125 3721.0856 627.53044 -10601.555 0 283.86399 0.00013399002 0.00013020597 + 5720 -6247.0558 -6253.3013 6.2455207 3724.2656 626.8904 -10604.457 0 299.3204 1.7625539e-05 1.515206e-05 + 5730 -6247.0727 -6253.6836 6.6109391 3726.8742 627.14456 -10607.702 0 316.83329 -8.4707822e-06 -1.2584034e-05 + 5740 -6247.0818 -6253.9685 6.8866845 3728.3751 628.41567 -10610.759 0 330.04856 7.2521409e-05 6.4759374e-05 + 5750 -6247.1097 -6254.0348 6.9251527 3728.6568 630.65514 -10613.347 0 331.89218 0.00025291544 0.00024188691 + 5760 -6247.1744 -6253.8171 6.6426888 3728.0049 633.61906 -10615.441 0 318.35492 0.00050223166 0.00049043234 + 5770 -6247.2709 -6253.347 6.0760968 3726.964 636.89367 -10617.205 0 291.20065 0.00077485099 0.00076517742 + 5780 -6247.3731 -6252.7548 5.3816539 3726.1488 639.97002 -10618.874 0 257.91905 0.0010206854 0.0010145112 + 5790 -6247.449 -6252.2257 4.7766934 3726.065 642.35032 -10620.641 0 228.92595 0.0011958354 0.0011921291 + 5800 -6247.4781 -6251.9324 4.4543138 3726.9788 643.65716 -10622.568 0 213.47571 0.0012710145 0.0012670338 + 5810 -6247.4594 -6251.9717 4.512247 3728.8459 643.715 -10624.533 0 216.25219 0.0012366403 0.0012297413 + 5820 -6247.4073 -6252.3332 4.9258774 3731.3026 642.58221 -10626.218 0 236.07568 0.0011042618 0.0010936383 + 5830 -6247.3409 -6252.912 5.5710986 3733.7194 640.52605 -10627.157 0 266.9983 0.00090412162 0.00089130386 + 5840 -6247.2735 -6253.5518 6.2782571 3735.3275 637.94906 -10626.828 0 300.88931 0.00067863419 0.00066640115 + 5850 -6247.2082 -6254.0953 6.8870782 3735.4119 635.28857 -10624.796 0 330.06743 0.00047225422 0.00046273565 + 5860 -6247.141 -6254.4213 7.2802915 3733.5336 632.91779 -10620.873 0 348.91242 0.00031985275 0.00031318052 + 5870 -6247.0687 -6254.4621 7.393376 3729.7061 631.07518 -10615.243 0 354.33206 0.00023734582 0.00023177758 + 5880 -6246.9949 -6254.2079 7.2130083 3724.4495 629.83886 -10608.496 0 345.68783 0.00021841023 0.00021173851 + 5890 -6246.9284 -6253.7049 6.7765684 3718.6843 629.14826 -10601.537 0 324.77118 0.00023902411 0.00023018101 + 5900 -6246.8769 -6253.05 6.1731855 3713.4916 628.86127 -10595.403 0 295.85369 0.00026821248 0.00025794067 + 5910 -6246.8395 -6252.3758 5.5363135 3709.8261 628.82617 -10591.028 0 265.33121 0.00028061877 0.00027084737 + 5920 -6246.8043 -6251.8234 5.0191541 3708.282 628.94481 -10589.05 0 240.54603 0.00026588542 0.00025836787 + 5930 -6246.7503 -6251.5065 4.7561271 3708.9853 629.20729 -10589.699 0 227.9403 0.00023151745 0.00022668193 + 5940 -6246.6538 -6251.4784 4.8245921 3711.6264 629.68759 -10592.792 0 231.22152 0.00019878694 0.0001954667 + 5950 -6246.4945 -6251.7167 5.2222008 3715.5955 630.50225 -10597.814 0 250.27717 0.00019380949 0.00018992678 + 5960 -6246.2628 -6252.1314 5.8686031 3720.1588 631.74675 -10604.037 0 281.25639 0.00023732952 0.00023110888 + 5970 -6245.9645 -6252.597 6.632438 3724.6156 633.43276 -10610.645 0 317.86364 0.00033686991 0.00032790165 + 5980 -6245.6195 -6252.9964 7.376904 3728.4013 635.45017 -10616.848 0 353.54263 0.00048384902 0.00047333736 + 5990 -6245.2527 -6253.2595 8.0067838 3731.132 637.57107 -10621.963 0 383.73001 0.00065624352 0.00064616058 + 6000 -6244.8839 -6253.3752 8.4913546 3732.6071 639.49781 -10625.48 0 406.95336 0.00082508861 0.0008167007 + 6010 -6244.5246 -6253.3707 8.8461103 3732.7941 640.93967 -10627.104 0 423.95524 0.00096186101 0.00095470743 + 6020 -6244.1859 -6253.2716 9.085703 3731.8055 641.68909 -10626.766 0 435.43787 0.0010443738 0.0010365707 + 6030 -6243.8867 -6253.0735 9.1867314 3729.8645 641.66771 -10624.606 0 440.27972 0.0010603739 0.0010500804 + 6040 -6243.6534 -6252.7461 9.0927836 3727.2543 640.92638 -10620.927 0 435.77721 0.001008943 0.00099586378 + 6050 -6243.5067 -6252.2662 8.7594292 3724.2622 639.60493 -10616.133 0 419.801 0.00089967307 0.00088543496 + 6060 -6243.4477 -6251.6537 8.2059859 3721.1375 637.87447 -10610.666 0 393.27689 0.00074952205 0.00073659791 + 6070 -6243.4523 -6250.9889 7.5365944 3718.0813 635.89045 -10604.961 0 361.19589 0.00057800379 0.00056791503 + 6080 -6243.4827 -6250.3964 6.9137145 3715.2652 633.77508 -10599.437 0 331.34399 0.00040243733 0.00039454122 + 6090 -6243.5073 -6250.0055 6.4981982 3712.8571 631.63037 -10594.493 0 311.43012 0.00023533386 0.00022715933 + 6100 -6243.5164 -6249.9078 6.3913831 3711.0242 629.56683 -10590.499 0 306.31094 8.5087653e-05 7.4048479e-05 + 6110 -6243.5247 -6250.1341 6.609395 3709.8968 627.72782 -10587.759 0 316.75929 -4.0764624e-05 -5.551577e-05 + 6120 -6243.561 -6250.6542 7.0931844 3709.5132 626.2941 -10586.462 0 339.9452 -0.00013222303 -0.00014914571 + 6130 -6243.655 -6251.3896 7.734625 3709.7868 625.46381 -10586.64 0 370.68663 -0.00017629427 -0.00019246363 + 6140 -6243.8296 -6252.2273 8.3977458 3710.5301 625.41095 -10588.168 0 402.4671 -0.00016058327 -0.00017362607 + 6150 -6244.1006 -6253.0317 8.931043 3711.5355 626.23284 -10590.8 0 428.02569 -7.9745919e-05 -8.9373329e-05 + 6160 -6244.4792 -6253.6628 9.1835507 3712.6712 627.90186 -10594.236 0 440.12728 5.8589085e-05 5.0501174e-05 + 6170 -6244.9683 -6254.0063 9.0379546 3713.9385 630.2405 -10598.185 0 433.1495 0.00023214228 0.00022298692 + 6180 -6245.5519 -6254.0085 8.4565726 3715.4486 632.93584 -10602.393 0 405.28641 0.00040839459 0.00039675922 + 6190 -6246.1866 -6253.7013 7.5146736 3717.3202 635.59774 -10606.619 0 360.14532 0.0005537781 0.00054042522 + 6200 -6246.8092 -6253.2008 6.3916018 3719.5523 637.84633 -10610.599 0 306.32142 0.00064370386 0.00063088183 + 6210 -6247.3598 -6252.6737 5.3139066 3721.9442 639.39872 -10614.017 0 254.67222 0.00066910109 0.00065882485 + 6220 -6247.8052 -6252.2841 4.4788427 3724.1123 640.12363 -10616.52 0 214.65127 0.0006372285 0.00062994237 + 6230 -6248.1449 -6252.1427 3.9978089 3725.5955 640.04765 -10617.786 0 191.59744 0.00056730103 0.00056182936 + 6240 -6248.3998 -6252.2799 3.88007 3725.9967 639.31713 -10617.594 0 185.95473 0.00048309023 0.00047765947 + 6250 -6248.5979 -6252.6503 4.0523862 3725.108 638.13393 -10615.892 0 194.21308 0.00040498717 0.00039841313 + 6260 -6248.763 -6253.1606 4.3976549 3722.9811 636.68903 -10612.831 0 210.7603 0.00034379094 0.00033603162 + 6270 -6248.9095 -6253.7035 4.7939855 3719.9291 635.11625 -10608.749 0 229.75468 0.00029794679 0.00028981505 + 6280 -6249.0421 -6254.1832 5.1411795 3716.4627 633.47983 -10604.126 0 246.39417 0.00025504758 0.00024744516 + 6290 -6249.1578 -6254.529 5.3711699 3713.1729 631.79655 -10599.498 0 257.4166 0.00019723331 0.0001904808 + 6300 -6249.2516 -6254.6985 5.4469073 3710.5891 630.08038 -10595.368 0 261.04636 0.0001089573 0.00010264131 + 6310 -6249.3201 -6254.6776 5.3574601 3709.0496 628.3895 -10592.117 0 256.75955 -1.5236737e-05 -2.1848732e-05 + 6320 -6249.3645 -6254.4808 5.116364 3708.6201 626.85465 -10589.956 0 245.20487 -0.00016552441 -0.00017286295 + 6330 -6249.3875 -6254.1524 4.7648713 3709.0867 625.67475 -10588.914 0 228.35937 -0.0003163719 -0.00032427984 + 6340 -6249.3902 -6253.763 4.3728169 3710.0332 625.07813 -10588.874 0 209.56992 -0.00043189107 -0.00043991963 + 6350 -6249.3699 -6253.3963 4.0264309 3710.9871 625.26036 -10589.644 0 192.96916 -0.00047609146 -0.00048403911 + 6360 -6249.3222 -6253.1249 3.8027003 3711.591 626.31842 -10591.034 0 182.24674 -0.00042493988 -0.00043304175 + 6370 -6249.2447 -6252.9904 3.7456637 3711.7375 628.20174 -10592.93 0 179.51322 -0.00027581537 -0.0002844155 + 6380 -6249.1359 -6252.9979 3.8620141 3711.6104 630.69703 -10595.305 0 185.08938 -5.0601306e-05 -5.97786e-05 + 6390 -6248.9914 -6253.1269 4.1354683 3711.6158 633.45581 -10598.198 0 198.19485 0.00020881893 0.00019915007 + 6400 -6248.8024 -6253.3427 4.5403359 3712.2293 636.06258 -10601.635 0 217.59837 0.00045099079 0.00044063791 + 6410 -6248.5602 -6253.5986 5.0384265 3713.8126 638.12836 -10605.54 0 241.46967 0.00062793876 0.00061632122 + 6420 -6248.2654 -6253.8333 5.5679361 3716.4491 639.38245 -10609.665 0 266.84674 0.00070750836 0.00069420866 + 6430 -6247.9312 -6253.9795 6.0483436 3719.8427 639.73281 -10613.555 0 289.87056 0.0006821455 0.00066756032 + 6440 -6247.577 -6253.9864 6.4093112 3723.3216 639.27418 -10616.582 0 307.17016 0.00057138564 0.00055662964 + 6450 -6247.2186 -6253.8398 6.6212398 3725.9767 638.24165 -10618.058 0 317.32696 0.00041596283 0.0004019783 + 6460 -6246.8632 -6253.5623 6.6991024 3726.9145 636.92537 -10617.402 0 321.05858 0.00026406946 0.00025084613 + 6470 -6246.5153 -6253.194 6.6786895 3725.548 635.57554 -10614.317 0 320.08028 0.00015434385 0.00014107076 + 6480 -6246.1823 -6252.7742 6.5918353 3721.8105 634.32935 -10608.914 0 315.91774 0.00010267879 8.8641379e-05 + 6490 -6245.874 -6252.3372 6.4632069 3716.2127 633.18572 -10601.736 0 309.75314 9.8514778e-05 8.3806815e-05 + 6500 -6245.5964 -6251.9207 6.3242485 3709.7217 632.03699 -10593.679 0 303.09347 0.00011162664 9.703292e-05 + 6510 -6245.3474 -6251.5693 6.221941 3703.5122 630.74533 -10585.827 0 298.19033 0.00010568789 9.1978114e-05 + 6520 -6245.1188 -6251.3273 6.2085399 3698.6724 629.23379 -10579.234 0 297.54807 5.2873343e-05 4.0245823e-05 + 6530 -6244.9033 -6251.2234 6.3201782 3695.9477 627.55591 -10574.727 0 302.8984 -5.533332e-05 -6.7230105e-05 + 6540 -6244.6995 -6251.2616 6.5620877 3695.5894 625.91663 -10572.768 0 314.49206 -0.00020391613 -0.00021558502 + 6550 -6244.5128 -6251.4218 6.9089912 3697.3392 624.63482 -10573.396 0 331.11762 -0.00035769479 -0.0003694689 + 6560 -6244.3528 -6251.6682 7.315415 3700.5462 624.05811 -10576.273 0 350.59573 -0.00047158063 -0.0004835926 + 6570 -6244.2304 -6251.9569 7.7264913 3704.3763 624.45711 -10580.79 0 370.29681 -0.00050486656 -0.00051717224 + 6580 -6244.1555 -6252.2407 8.0852158 3708.0468 625.9341 -10586.222 0 387.48891 -0.00043479858 -0.0004474107 + 6590 -6244.135 -6252.4745 8.3395677 3711.0175 628.37694 -10591.869 0 399.67888 -0.00026449429 -0.00027727718 + 6600 -6244.1694 -6252.6244 8.454935 3713.0789 631.47239 -10597.176 0 405.20793 -2.2429788e-05 -3.5104983e-05 + 6610 -6244.2501 -6252.6784 8.4283678 3714.3227 634.77269 -10601.774 0 403.93468 0.00024576859 0.0002332818 + 6620 -6244.3607 -6252.6498 8.2891553 3715.0223 637.79435 -10605.467 0 397.26283 0.00048963109 0.0004768341 + 6630 -6244.486 -6252.5632 8.077214 3715.4837 640.12129 -10608.168 0 387.10542 0.00066605517 0.00065208223 + 6640 -6244.62 -6252.4373 7.8173748 3715.9137 641.48437 -10609.835 0 374.65247 0.00074852369 0.00073300165 + 6650 -6244.7643 -6252.282 7.5177604 3716.3363 641.79568 -10610.414 0 360.29326 0.00073172573 0.000715401 + 6660 -6244.9191 -6252.1123 7.1932538 3716.5775 641.13092 -10609.821 0 344.74108 0.00063046642 0.00061476796 + 6670 -6245.0759 -6251.9595 6.883615 3716.3331 639.67288 -10607.966 0 329.90145 0.00047274985 0.00045860536 + 6680 -6245.2217 -6251.8635 6.6418776 3715.2997 637.64298 -10604.806 0 318.31604 0.00028933283 0.00027640061 + 6690 -6245.3481 -6251.8514 6.5033402 3713.311 635.24927 -10600.412 0 311.67655 0.00010430007 9.131354e-05 + 6700 -6245.4579 -6251.9226 6.4647319 3710.4178 632.66735 -10595.008 0 309.82622 -6.9124461e-05 -8.3321133e-05 + 6710 -6245.5618 -6252.0503 6.4884216 3706.8795 630.05323 -10588.983 0 310.96157 -0.00022646197 -0.0002420864 + 6720 -6245.6723 -6252.1955 6.5232271 3703.0896 627.57109 -10582.856 0 312.62965 -0.00036605748 -0.00038225495 + 6730 -6245.7963 -6252.3244 6.5280959 3699.4786 625.41165 -10577.215 0 312.86299 -0.00048339751 -0.00049875687 + 6740 -6245.9321 -6252.4223 6.4901964 3696.4343 623.78344 -10572.64 0 311.04663 -0.00056892349 -0.00058237733 + 6750 -6246.0696 -6252.498 6.4283932 3694.2646 622.87602 -10569.639 0 308.08467 -0.00061054976 -0.00062218018 + 6760 -6246.1978 -6252.5732 6.3754086 3693.2013 622.81096 -10568.585 0 305.54535 -0.00059960029 -0.00061069202 + 6770 -6246.3145 -6252.6636 6.349144 3693.4138 623.60238 -10569.68 0 304.28661 -0.00053673454 -0.00054881271 + 6780 -6246.4291 -6252.7679 6.3388207 3694.9936 625.14357 -10572.905 0 303.79186 -0.00043403934 -0.00044756435 + 6790 -6246.5558 -6252.8763 6.3205016 3697.8952 627.22508 -10577.997 0 302.9139 -0.00031160604 -0.00032551076 + 6800 -6246.7007 -6252.9868 6.2860532 3701.8694 629.57886 -10584.435 0 301.26294 -0.00019036658 -0.0002029713 + 6810 -6246.8569 -6253.1101 6.2531322 3706.4409 631.93462 -10591.486 0 299.68518 -8.5200561e-05 -9.5739091e-05 + 6820 -6247.011 -6253.2529 6.2419522 3710.9668 634.07109 -10598.291 0 299.14937 -1.7251124e-06 -1.1073823e-05 + 6830 -6247.1559 -6253.3961 6.2402202 3714.7611 635.84612 -10604.003 0 299.06636 6.2516228e-05 5.2593649e-05 + 6840 -6247.2974 -6253.4907 6.1932694 3717.2389 637.19703 -10607.927 0 296.81622 0.00011416336 0.00010255446 + 6850 -6247.4473 -6253.4821 6.0348013 3718.0328 638.11323 -10609.628 0 289.22154 0.00015958885 0.0001467592 + 6860 -6247.6103 -6253.3462 5.7358601 3717.0622 638.59408 -10609.002 0 274.8946 0.00020099598 0.00018853235 + 6870 -6247.7776 -6253.1099 5.3323748 3714.5491 638.61127 -10606.27 0 255.55732 0.00023345335 0.00022272002 + 6880 -6247.9312 -6252.8414 4.9102079 3710.9806 638.09525 -10601.917 0 235.32472 0.00024372417 0.00023483432 + 6890 -6248.0564 -6252.6184 4.5619606 3707.0155 636.95601 -10596.59 0 218.63475 0.00021241873 0.0002043023 + 6900 -6248.1497 -6252.4985 4.3487671 3703.3399 635.13338 -10590.972 0 208.41732 0.00012028043 0.00011161138 + 6910 -6248.2176 -6252.5065 4.288868 3700.4996 632.65688 -10585.663 0 205.54662 -4.2867682e-05 -5.2748415e-05 + 6920 -6248.2695 -6252.6387 4.369226 3698.7583 629.68943 -10581.086 0 209.39782 -0.00027017329 -0.00028099393 + 6930 -6248.3108 -6252.873 4.5621743 3698.0363 626.53429 -10577.444 0 218.64499 -0.0005347069 -0.00054566622 + 6940 -6248.341 -6253.1747 4.833698 3697.9578 623.59833 -10574.731 0 231.65793 -0.00079328471 -0.00080366803 + 6950 -6248.3554 -6253.4983 5.1428972 3697.9983 621.31909 -10572.816 0 246.47649 -0.00099631087 -0.0010058695 + 6960 -6248.3496 -6253.7908 5.4411604 3697.6829 620.07393 -10571.548 0 260.77094 -0.0011005917 -0.0011095472 + 6970 -6248.321 -6253.9999 5.6789476 3696.7719 620.0934 -10570.865 0 272.16703 -0.0010812527 -0.0010900987 + 6980 -6248.2689 -6254.0882 5.8193563 3695.3704 621.40065 -10570.859 0 278.89621 -0.00093934906 -0.00094866844 + 6990 -6248.1933 -6254.0428 5.8494904 3693.9246 623.79477 -10571.762 0 280.3404 -0.00070297732 -0.00071329811 + 7000 -6248.0953 -6253.8773 5.7820092 3693.1018 626.88694 -10573.866 0 277.10632 -0.00042123368 -0.00043281948 + 7010 -6247.977 -6253.6252 5.6482212 3693.5803 630.1843 -10577.39 0 270.69445 -0.00015214826 -0.00016475717 + 7020 -6247.8397 -6253.3295 5.4897776 3695.8076 633.20091 -10582.338 0 263.10094 5.239201e-05 3.9536391e-05 + 7030 -6247.6811 -6253.0339 5.3527537 3699.8027 635.56462 -10588.401 0 256.53399 0.000160334 0.00014816796 + 7040 -6247.4925 -6252.774 5.2814633 3705.073 637.08802 -10594.935 0 253.11736 0.0001673295 0.00015632261 + 7050 -6247.2611 -6252.5693 5.3082449 3710.6809 637.78257 -10601.033 0 254.40088 9.605646e-05 8.579821e-05 + 7060 -6246.976 -6252.4175 5.4414934 3715.4487 637.81322 -10605.679 0 260.7869 -1.2792688e-05 -2.3389238e-05 + 7070 -6246.635 -6252.2961 5.6611428 3718.2415 637.41041 -10607.948 0 271.31373 -0.00011468051 -0.00012661764 + 7080 -6246.2464 -6252.1763 5.9298881 3718.2501 636.77042 -10607.197 0 284.19351 -0.00017573681 -0.00018917241 + 7090 -6245.8249 -6252.0422 6.217276 3715.2009 635.9794 -10603.222 0 297.96675 -0.00018307661 -0.00019719392 + 7100 -6245.3834 -6251.9042 6.5208531 3709.445 634.98894 -10596.338 0 312.51587 -0.00014812062 -0.00016177297 + 7110 -6244.9282 -6251.7949 6.8667072 3701.9035 633.65348 -10587.352 0 329.09114 -0.00010230469 -0.00011492955 + 7120 -6244.4621 -6251.7477 7.2856299 3693.8777 631.81659 -10577.442 0 349.16826 -8.6488521e-05 -9.8540819e-05 + 7130 -6243.9926 -6251.7732 7.7805317 3686.7617 629.41324 -10567.948 0 372.88674 -0.00013691804 -0.00014946649 + 7140 -6243.5389 -6251.8474 8.3084435 3681.7253 626.54718 -10560.12 0 398.18723 -0.00027182262 -0.00028563024 + 7150 -6243.1306 -6251.9206 8.7899665 3679.4509 623.51068 -10554.882 0 421.26452 -0.00048316885 -0.00049795862 + 7160 -6242.7986 -6251.9396 9.1409767 3679.9985 620.73576 -10552.674 0 438.08689 -0.00073683466 -0.00075128973 + 7170 -6242.5628 -6251.8727 9.3098611 3682.8342 618.69322 -10553.4 0 446.18078 -0.00098135825 -0.00099394025 + 7180 -6242.4239 -6251.7256 9.3016979 3687.0112 617.77652 -10556.513 0 445.78956 -0.0011619506 -0.0011721294 + 7190 -6242.3657 -6251.5395 9.1737894 3691.449 618.21065 -10561.199 0 439.65946 -0.0012348493 -0.0012439335 + 7200 -6242.3697 -6251.3674 8.9976615 3695.2252 620.00979 -10566.602 0 431.21843 -0.0011780028 -0.0011886724 + 7210 -6242.4317 -6251.24 8.8082556 3697.7915 622.98358 -10572.015 0 422.14103 -0.00099590581 -0.0010102943 + 7220 -6242.566 -6251.1496 8.5836554 3699.0426 626.77602 -10576.968 0 411.37693 -0.00071772929 -0.00073534637 + 7230 -6242.7887 -6251.07 8.2812413 3699.2342 630.92215 -10581.226 0 396.88355 -0.00038930341 -0.00040680473 + 7240 -6243.0943 -6250.9962 7.9018752 3698.8171 634.91552 -10584.729 0 378.7022 -6.1804986e-05 -7.534673e-05 + 7250 -6243.4472 -6250.9667 7.5195184 3698.2765 638.28098 -10587.524 0 360.37751 0.00021831704 0.00020976385 + 7260 -6243.8014 -6251.0414 7.2399901 3698.0316 640.64142 -10589.714 0 346.98095 0.00041474621 0.00040794928 + 7270 -6244.1333 -6251.2494 7.1161089 3698.3832 641.76419 -10591.397 0 341.04387 0.00050234583 0.00049184267 + 7280 -6244.4601 -6251.5517 7.0915937 3699.4648 641.57912 -10592.596 0 339.86896 0.00046754442 0.00044993493 + 7290 -6244.8248 -6251.8577 7.0328632 3701.1692 640.16959 -10593.197 0 337.05426 0.00031142915 0.00028848185 + 7300 -6245.2559 -6252.0921 6.8362023 3703.0851 637.74521 -10592.922 0 327.62917 5.4524099e-05 3.2152649e-05 + 7310 -6245.7355 -6252.2558 6.5202201 3704.5258 634.60749 -10591.389 0 312.48553 -0.00026224265 -0.00027863824 + 7320 -6246.2088 -6252.4208 6.2120429 3704.7092 631.11671 -10588.247 0 297.71595 -0.0005851346 -0.00059494938 + 7330 -6246.6256 -6252.6586 6.0330134 3703.0445 627.65921 -10583.362 0 289.13585 -0.00086209105 -0.00086954214 + 7340 -6246.9763 -6252.9679 5.9916047 3699.3857 624.60687 -10576.96 0 287.15132 -0.001056567 -0.0010666085 + 7350 -6247.289 -6253.272 5.9830174 3694.1177 622.26436 -10569.654 0 286.73976 -0.0011539784 -0.0011680362 + 7360 -6247.596 -6253.4826 5.8865867 3688.0544 620.81488 -10562.352 0 282.11826 -0.0011600539 -0.0011752725 + 7370 -6247.9026 -6253.5667 5.6641795 3682.228 620.28733 -10556.082 0 271.45926 -0.0010952102 -0.001107343 + 7380 -6248.1837 -6253.5618 5.3781828 3677.6724 620.56353 -10551.798 0 257.7527 -0.00098886273 -0.00099589389 + 7390 -6248.4056 -6253.5359 5.1302437 3675.2491 621.42622 -10550.211 0 245.87006 -0.00087437835 -0.00087796745 + 7400 -6248.551 -6253.5325 4.9815777 3675.5099 622.63066 -10551.673 0 238.74515 -0.00078328389 -0.00078732675 + 7410 -6248.6292 -6253.5421 4.9129402 3678.5828 623.97533 -10556.1 0 235.45566 -0.00073800698 -0.00074571386 + 7420 -6248.6698 -6253.514 4.8441568 3684.0924 625.34965 -10562.956 0 232.15917 -0.0007445618 -0.00075617832 + 7430 -6248.7033 -6253.3991 4.6958305 3691.1536 626.74525 -10571.298 0 225.05055 -0.00078826643 -0.00080095277 + 7440 -6248.7414 -6253.1944 4.453005 3698.4875 628.22903 -10579.911 0 213.41299 -0.00083567933 -0.00084563833 + 7450 -6248.7706 -6252.9583 4.1876817 3704.6762 629.88789 -10587.522 0 200.6972 -0.00084415139 -0.00084955334 + 7460 -6248.7628 -6252.7839 4.0211583 3708.5126 631.76304 -10593.06 0 192.71647 -0.00077714002 -0.00077970541 + 7470 -6248.6975 -6252.7467 4.049203 3709.3377 633.79329 -10595.878 0 194.06053 -0.00062015021 -0.00062410747 + 7480 -6248.5791 -6252.861 4.2819006 3707.2336 635.7843 -10595.879 0 205.2127 -0.00039075726 -0.0003998261 + 7490 -6248.437 -6253.0769 4.6399048 3702.985 637.41714 -10593.479 0 222.37027 -0.00013774018 -0.00015233543 + 7500 -6248.3073 -6253.3142 5.0069477 3697.8181 638.30366 -10589.436 0 239.96103 7.1510246e-05 5.4749093e-05 + 7510 -6248.209 -6253.507 5.2980114 3693.0151 638.08304 -10584.605 0 253.91043 0.00017120767 0.00015715304 + 7520 -6248.1321 -6253.6265 5.4943443 3689.5482 636.53606 -10579.711 0 263.31981 0.00011759738 0.00010925132 + 7530 -6248.047 -6253.6725 5.6255716 3687.8496 633.67987 -10575.202 0 269.60896 -9.7615372e-05 -0.00010120016 + 7540 -6247.9273 -6253.6481 5.7208968 3687.7658 629.80741 -10571.221 0 274.17748 -0.00044453037 -0.0004475861 + 7550 -6247.7705 -6253.5432 5.7726669 3688.6768 625.453 -10567.673 0 276.65859 -0.00086230181 -0.00086946587 + 7560 -6247.6001 -6253.3426 5.7424424 3689.7154 621.2898 -10564.348 0 275.21006 -0.0012729561 -0.0012862207 + 7570 -6247.4489 -6253.0533 5.6043931 3690.0214 617.98612 -10561.061 0 268.59396 -0.0015980246 -0.0016156052 + 7580 -6247.3357 -6252.7253 5.3895659 3688.9788 616.06005 -10557.764 0 258.29824 -0.0017750248 -0.001792812 + 7590 -6247.2527 -6252.4442 5.1914524 3686.4035 615.77196 -10554.62 0 248.80353 -0.0017712173 -0.001785627 + 7600 -6247.1719 -6252.2943 5.122362 3682.6461 617.08215 -10552.023 0 245.49233 -0.0015918091 -0.0016019668 + 7610 -6247.0634 -6252.3113 5.2479272 3678.57 619.67964 -10550.561 0 251.51012 -0.001279888 -0.0012877612 + 7620 -6246.9141 -6252.4572 5.5430577 3675.3766 623.06865 -10550.902 0 265.65443 -0.00090683494 -0.00091547907 + 7630 -6246.735 -6252.6328 5.8978507 3674.2883 626.68644 -10553.608 0 282.6581 -0.00055461981 -0.00056590222 + 7640 -6246.5529 -6252.7243 6.171395 3676.1649 630.0228 -10558.912 0 295.76788 -0.00029426073 -0.00030758891 + 7650 -6246.3928 -6252.6581 6.2652946 3681.1774 632.71404 -10566.55 0 300.26807 -0.0001667311 -0.00017955468 + 7660 -6246.2608 -6252.4393 6.1784338 3688.6649 634.591 -10575.695 0 296.10521 -0.00017274936 -0.00018249597 + 7670 -6246.1402 -6252.152 6.0118353 3697.2442 635.67276 -10585.069 0 288.12088 -0.0002755136 -0.00028169506 + 7680 -6246.0028 -6251.9185 5.9156715 3705.1511 636.11264 -10593.182 0 283.51217 -0.00041582113 -0.00042076227 + 7690 -6245.8312 -6251.8358 6.0046049 3710.7013 636.11544 -10598.653 0 287.77436 -0.00053391278 -0.00054131053 + 7700 -6245.6329 -6251.9274 6.2944885 3712.7143 635.85059 -10600.492 0 301.66721 -0.00058952338 -0.00060169932 + 7710 -6245.4363 -6252.141 6.7046639 3710.7691 635.38614 -10598.296 0 321.32511 -0.00057288594 -0.00058893597 + 7720 -6245.2692 -6252.3892 7.1199428 3705.2434 634.66619 -10592.299 0 341.22761 -0.00050414213 -0.000520695 + 7730 -6245.1392 -6252.5957 7.4565695 3697.174 633.54494 -10583.315 0 357.36065 -0.00042365135 -0.00043768416 + 7740 -6245.033 -6252.7132 7.6802152 3688.0094 631.87 -10572.593 0 368.07901 -0.00037802918 -0.00038928374 + 7750 -6244.9352 -6252.7136 7.7784546 3679.3156 629.5819 -10561.611 0 372.78719 -0.00040609979 -0.00041707089 + 7760 -6244.8451 -6252.5786 7.7334885 3672.475 626.78444 -10551.838 0 370.63216 -0.00052753527 -0.00054124118 + 7770 -6244.7792 -6252.3089 7.5296785 3668.4224 623.75267 -10544.484 0 360.86444 -0.00073642787 -0.00075395036 + 7780 -6244.7562 -6251.9435 7.1873353 3667.4779 620.87575 -10540.297 0 344.45744 -0.0010016892 -0.0010213807 + 7790 -6244.7807 -6251.5675 6.7867896 3669.3254 618.56215 -10539.455 0 325.26104 -0.0012746369 -0.0012934155 + 7800 -6244.838 -6251.2913 6.4533669 3673.1482 617.14743 -10541.587 0 309.28155 -0.0015016208 -0.0015172242 + 7810 -6244.9035 -6251.2056 6.3021658 3677.8798 616.83599 -10545.921 0 302.03515 -0.0016375944 -0.0016500554 + 7820 -6244.9605 -6251.3327 6.3721951 3682.4881 617.68429 -10551.505 0 305.39134 -0.001656338 -0.0016676096 + 7830 -6245.0137 -6251.6081 6.5944332 3686.2033 619.61272 -10557.424 0 316.04224 -0.0015545558 -0.001566718 + 7840 -6245.0873 -6251.9094 6.8220761 3688.6279 622.42733 -10562.965 0 326.95216 -0.0013496087 -0.0013632356 + 7850 -6245.2106 -6252.1182 6.9075826 3689.7325 625.84148 -10567.692 0 331.05011 -0.0010731785 -0.0010871543 + 7860 -6245.4004 -6252.1767 6.7763492 3689.781 629.49903 -10571.457 0 324.76068 -0.00076424213 -0.00077689701 + 7870 -6245.6534 -6252.1084 6.4549819 3689.2286 633.00464 -10574.342 0 309.35895 -0.00046359554 -0.00047402161 + 7880 -6245.9512 -6251.9998 6.0485544 3688.6094 635.96303 -10576.572 0 289.88066 -0.00021006505 -0.00021869976 + 7890 -6246.2722 -6251.9587 5.6865681 3688.4149 638.02449 -10578.398 0 272.53225 -3.74364e-05 -4.5749213e-05 + 7900 -6246.6045 -6252.068 5.4635167 3688.9758 638.93191 -10579.976 0 261.84238 2.8797672e-05 1.9235225e-05 + 7910 -6246.9504 -6252.3509 5.4004977 3690.3639 638.56382 -10581.279 0 258.82215 -2.4606605e-05 -3.6062511e-05 + 7920 -6247.3193 -6252.7655 5.4462401 3692.338 636.96516 -10582.069 0 261.01438 -0.00019424332 -0.0002068539 + 7930 -6247.7143 -6253.2273 5.5129632 3694.3558 634.35528 -10581.938 0 264.21213 -0.00045693471 -0.00046910391 + 7940 -6248.1237 -6253.6441 5.5203511 3695.6783 631.10401 -10580.426 0 264.5662 -0.00077067532 -0.00078111495 + 7950 -6248.5231 -6253.9439 5.4208371 3695.5619 627.67389 -10577.18 0 259.79693 -0.0010815744 -0.0010901995 + 7960 -6248.8864 -6254.0866 5.2002735 3693.4923 624.53683 -10572.116 0 249.22629 -0.001335961 -0.0013438283 + 7970 -6249.1963 -6254.0645 4.8681711 3689.3829 622.08273 -10565.53 0 233.31008 -0.001493931 -0.0015023583 + 7980 -6249.4482 -6253.9013 4.4531017 3683.6651 620.54305 -10558.109 0 213.41762 -0.0015395851 -0.0015492326 + 7990 -6249.646 -6253.6512 4.0051326 3677.2375 619.95069 -10550.839 0 191.94843 -0.0014845198 -0.0014951402 + 8000 -6249.796 -6253.3911 3.5951374 3671.286 620.14952 -10544.827 0 172.29916 -0.0013637133 -0.0013746568 + 8010 -6249.9026 -6253.2037 3.3010514 3667.0255 620.85357 -10541.083 0 158.2049 -0.0012253218 -0.0012362723 + 8020 -6249.9689 -6253.1505 3.1815693 3665.4204 621.74098 -10540.312 0 152.47865 -0.0011172395 -0.001128513 + 8030 -6249.9988 -6253.2487 3.2498623 3666.9474 622.55643 -10542.752 0 155.75164 -0.0010736182 -0.0010857559 + 8040 -6249.9988 -6253.4632 3.4643967 3671.448 623.19116 -10548.102 0 166.03333 -0.0011044371 -0.0011174602 + 8050 -6249.9754 -6253.7214 3.7460033 3678.1148 623.71397 -10555.55 0 179.5295 -0.0011910167 -0.0012040698 + 8060 -6249.9298 -6253.9433 4.0135551 3685.6333 624.33926 -10563.916 0 192.35208 -0.0012897907 -0.0013016265 + 8070 -6249.8552 -6254.0717 4.2165673 3692.4705 625.33793 -10571.88 0 202.08157 -0.0013449251 -0.0013549264 + 8080 -6249.7402 -6254.0849 4.344674 3697.253 626.91743 -10578.255 0 208.22115 -0.0013072415 -0.0013160601 + 8090 -6249.5781 -6253.9916 4.413575 3699.1272 629.1105 -10582.229 0 211.52328 -0.0011534142 -0.001162528 + 8100 -6249.3724 -6253.8203 4.4479221 3697.9819 631.71262 -10583.515 0 213.16938 -0.00089786131 -0.00090835512 + 8110 -6249.1343 -6253.6141 4.4798472 3694.4495 634.29469 -10582.358 0 214.69941 -0.00059193418 -0.00060364802 + 8120 -6248.8707 -6253.4268 4.556111 3689.6897 636.29503 -10579.412 0 218.3544 -0.00031032501 -0.00032217094 + 8130 -6248.5776 -6253.3058 4.7282528 3685.0356 637.16892 -10575.51 0 226.60441 -0.00012983654 -0.00014084702 + 8140 -6248.245 -6253.2617 5.0166671 3681.6176 636.5519 -10571.431 0 240.42684 -0.00010767901 -0.00011760918 + 8150 -6247.8703 -6253.2466 5.3763213 3680.0628 634.38284 -10567.692 0 257.66348 -0.00026511463 -0.00027406877 + 8160 -6247.4659 -6253.1706 5.7047029 3680.3361 630.94278 -10564.449 0 273.40137 -0.00058001128 -0.00058782162 + 8170 -6247.0534 -6252.9532 5.8998716 3681.7684 626.79305 -10561.515 0 282.75495 -0.0009904328 -0.00099684216 + 8180 -6246.6493 -6252.5761 5.9268153 3683.2833 622.63328 -10558.493 0 284.04625 -0.0014097678 -0.0014153824 + 8190 -6246.2598 -6252.0973 5.8375327 3683.7717 619.12885 -10554.998 0 279.76732 -0.0017502691 -0.0017570417 + 8200 -6245.8877 -6251.6208 5.733139 3682.4859 616.76419 -10550.871 0 274.76419 -0.0019473151 -0.0019575919 + 8210 -6245.5418 -6251.2498 5.7080374 3679.3044 615.76105 -10546.315 0 273.56118 -0.0019752289 -0.0019899756 + 8220 -6245.2348 -6251.0548 5.8199968 3674.7733 616.07423 -10541.902 0 278.9269 -0.0018493835 -0.0018672504 + 8230 -6244.9726 -6251.0638 6.0912381 3669.9328 617.45238 -10538.449 0 291.92631 -0.001615975 -0.0016341684 + 8240 -6244.7473 -6251.2627 6.5154301 3666.0144 619.53609 -10536.813 0 312.25597 -0.0013354917 -0.0013517796 + 8250 -6244.5435 -6251.5958 7.05226 3664.1135 621.95982 -10537.669 0 337.98387 -0.0010662823 -0.0010805361 + 8260 -6244.3521 -6251.9701 7.618036 3664.9197 624.42957 -10541.319 0 365.09903 -0.00085213649 -0.00086632803 + 8270 -6244.1797 -6252.2738 8.0941068 3668.5524 626.76056 -10547.587 0 387.91502 -0.00071529943 -0.00073215562 + 8280 -6244.0466 -6252.4069 8.3602637 3674.5274 628.87357 -10555.808 0 400.67075 -0.00065532056 -0.00067662711 + 8290 -6243.9758 -6252.3135 8.3377012 3681.8586 630.75968 -10564.932 0 399.58942 -0.00065357557 -0.0006790049 + 8300 -6243.9804 -6252.0042 8.0238243 3689.2649 632.42836 -10573.697 0 384.54668 -0.00068178683 -0.00070878138 + 8310 -6244.0533 -6251.5642 7.5109287 3695.4296 633.85655 -10580.85 0 359.96585 -0.00071138949 -0.00073640878 + 8320 -6244.1665 -6251.1416 6.9750247 3699.2575 634.95792 -10585.357 0 334.28232 -0.00072119581 -0.00074189765 + 8330 -6244.2831 -6250.899 6.6159773 3700.0929 635.58806 -10586.58 0 317.07475 -0.00070267454 -0.00071945621 + 8340 -6244.379 -6250.9422 6.5631998 3697.8568 635.58679 -10584.386 0 314.54536 -0.00066247735 -0.0006778771 + 8350 -6244.4587 -6251.2655 6.8068168 3693.0544 634.83875 -10579.159 0 326.22085 -0.00062079045 -0.00063715164 + 8360 -6244.5489 -6251.7561 7.2071856 3686.6361 633.32345 -10571.716 0 345.40877 -0.00060474137 -0.00062228236 + 8370 -6244.6784 -6252.2524 7.5740991 3679.7558 631.1317 -10563.14 0 362.99333 -0.00063907179 -0.00065603761 + 8380 -6244.8577 -6252.6144 7.7567416 3673.5153 628.44474 -10554.575 0 371.74658 -0.00073838264 -0.00075288017 + 8390 -6245.0755 -6252.7669 7.6913376 3668.7649 625.49247 -10547.024 0 368.61205 -0.00090389495 -0.00091559462 + 8400 -6245.309 -6252.7058 7.3967932 3665.9888 622.51629 -10541.211 0 354.49583 -0.0011242093 -0.001134548 + 8410 -6245.5383 -6252.4814 6.9430583 3665.2689 619.7536 -10537.504 0 332.75031 -0.0013774817 -0.0013884956 + 8420 -6245.7544 -6252.1735 6.4191375 3666.3151 617.44094 -10535.93 0 307.64109 -0.0016333509 -0.0016462523 + 8430 -6245.9577 -6251.8692 5.9114955 3668.5499 615.81764 -10536.237 0 283.31203 -0.0018551589 -0.001869647 + 8440 -6246.1522 -6251.6439 5.4917221 3671.24 615.11132 -10537.995 0 263.19414 -0.0020040185 -0.0020186087 + 8450 -6246.3386 -6251.5482 5.2095951 3673.6601 615.49943 -10540.708 0 249.67303 -0.0020455046 -0.002058527 + 8460 -6246.5128 -6251.6013 5.0885757 3675.2692 617.05641 -10543.927 0 243.8731 -0.0019581528 -0.0019687766 + 8470 -6246.6675 -6251.791 5.1234421 3675.86 619.70497 -10547.356 0 245.54409 -0.0017415692 -0.0017503017 + 8480 -6246.7979 -6252.0801 5.2821942 3675.6326 623.19041 -10550.903 0 253.15239 -0.0014213046 -0.001429773 + 8490 -6246.9059 -6252.4184 5.5124857 3675.1511 627.0922 -10554.662 0 264.18925 -0.0010479384 -0.001058101 + 8500 -6247.0027 -6252.7522 5.7495887 3675.1731 630.87905 -10558.804 0 275.55255 -0.0006890259 -0.00070210931 + 8510 -6247.1075 -6253.0334 5.9258646 3676.3881 634.00267 -10563.424 0 284.00068 -0.00041451361 -0.00043010702 + 8520 -6247.2404 -6253.2277 5.9872874 3679.1395 636.01082 -10568.378 0 286.94441 -0.00027871937 -0.00029465683 + 8530 -6247.4105 -6253.3276 5.9170974 3683.2237 636.64848 -10573.2 0 283.58051 -0.00030441517 -0.0003179298 + 8540 -6247.608 -6253.3576 5.7496433 3687.8613 635.91511 -10577.134 0 275.55517 -0.00047540457 -0.00048516705 + 8550 -6247.8103 -6253.3614 5.5510869 3691.8784 634.05833 -10579.298 0 266.03923 -0.00074162705 -0.00074918965 + 8560 -6248.0015 -6253.3693 5.3677496 3694.0568 631.50529 -10578.931 0 257.25268 -0.0010354499 -0.0010445668 + 8570 -6248.1892 -6253.3711 5.1819764 3693.5219 628.75138 -10575.644 0 248.34938 -0.0012924041 -0.0013063011 + 8580 -6248.4016 -6253.3246 4.9230462 3690.0182 626.23708 -10569.58 0 235.94 -0.0014680334 -0.0014867205 + 8590 -6248.6629 -6253.1966 4.533678 3683.9834 624.24814 -10561.428 0 217.27929 -0.001545868 -0.0015658493 + 8600 -6248.9687 -6253.0033 4.0345975 3676.4313 622.86848 -10552.303 0 193.36055 -0.0015367165 -0.001553395 + 8610 -6249.2855 -6252.814 3.5285214 3668.7119 621.99889 -10543.525 0 169.10654 -0.0014722586 -0.0014830119 + 8620 -6249.573 -6252.7164 3.1434406 3662.2265 621.43 -10536.373 0 150.65131 -0.0013954296 -0.0014010517 + 8630 -6249.8076 -6252.772 2.9643946 3658.1528 620.93993 -10531.865 0 142.07042 -0.0013489468 -0.0013527696 + 8640 -6249.9917 -6252.9894 2.9977141 3657.2152 620.38388 -10530.589 0 143.66728 -0.0013635549 -0.0013691934 + 8650 -6250.146 -6253.3242 3.1782027 3659.5339 619.75078 -10532.609 0 152.31731 -0.0014485183 -0.0014577254 + 8660 -6250.2958 -6253.7028 3.4070401 3664.579 619.17371 -10537.456 0 163.28448 -0.0015871638 -0.0015989656 + 8670 -6250.4556 -6254.0555 3.5998414 3671.2592 618.89252 -10544.207 0 172.5246 -0.0017395108 -0.0017510646 + 8680 -6250.6209 -6254.3413 3.720392 3678.1503 619.17929 -10551.671 0 178.30206 -0.0018524273 -0.001861068 + 8690 -6250.7707 -6254.551 3.7803334 3683.8341 620.24732 -10558.632 0 181.17479 -0.0018754637 -0.0018805785 + 8700 -6250.8812 -6254.6873 3.8061831 3687.2611 622.16866 -10564.117 0 182.41365 -0.0017779867 -0.0017813738 + 8710 -6250.9412 -6254.7425 3.8012814 3688.02 624.82216 -10567.585 0 182.17873 -0.0015616752 -0.0015661273 + 8720 -6250.9579 -6254.6941 3.7361801 3686.415 627.88749 -10568.997 0 179.05871 -0.0012632092 -0.0012704424 + 8730 -6250.9489 -6254.5257 3.5767747 3683.3207 630.89203 -10568.738 0 171.41911 -0.0009453991 -0.00095492948 + 8740 -6250.9277 -6254.254 3.3262448 3679.8753 633.30622 -10567.436 0 159.41232 -0.00067962772 -0.00068938104 + 8750 -6250.8935 -6253.9387 3.0451243 3677.1277 634.66638 -10565.733 0 145.93944 -0.00052593354 -0.00053400765 + 8760 -6250.8316 -6253.6634 2.8318328 3675.7561 634.69059 -10564.11 0 135.71732 -0.00051757235 -0.00052376974 + 8770 -6250.722 -6253.4974 2.7754137 3675.9297 633.35024 -10562.777 0 133.0134 -0.00065441536 -0.00066041801 + 8780 -6250.5506 -6253.461 2.9103541 3677.3214 630.87392 -10561.656 0 139.4805 -0.00090572162 -0.00091377738 + 8790 -6250.3153 -6253.5167 3.2014618 3679.235 627.68406 -10560.436 0 153.43201 -0.0012197268 -0.001230773 + 8800 -6250.0243 -6253.5932 3.5688673 3680.7927 624.28904 -10558.675 0 171.04015 -0.0015363118 -0.0015489522 + 8810 -6249.6884 -6253.6266 3.9382112 3681.147 621.16646 -10555.94 0 188.74118 -0.0017996155 -0.0018109219 + 8820 -6249.3116 -6253.593 4.2814554 3679.6949 618.67287 -10551.961 0 205.19137 -0.001968744 -0.0019765596 + 8830 -6248.8902 -6253.5057 4.615444 3676.2744 617.00242 -10546.782 0 221.19798 -0.0020254235 -0.0020304747 + 8840 -6248.4263 -6253.3829 4.9566083 3671.2883 616.19681 -10540.868 0 237.54848 -0.0019770595 -0.0019829518 + 8850 -6247.9435 -6253.2162 5.2727451 3665.6761 616.18982 -10535.082 0 252.69953 -0.001853245 -0.0018639756 + 8860 -6247.4882 -6252.9717 5.483464 3660.6951 616.86063 -10530.527 0 262.79836 -0.0016952645 -0.0017121094 + 8870 -6247.1084 -6252.6266 5.518283 3657.5636 618.07514 -10528.265 0 264.46709 -0.0015417704 -0.0015621169 + 8880 -6246.8246 -6252.2102 5.3855928 3657.1066 619.7073 -10529.024 0 258.10783 -0.0014167096 -0.0014358008 + 8890 -6246.6179 -6251.8129 5.1950154 3659.5426 621.64335 -10532.999 0 248.97429 -0.0013247146 -0.0013389607 + 8900 -6246.4412 -6251.5545 5.1133772 3664.4749 623.77679 -10539.806 0 245.06172 -0.0012550876 -0.0012645588 + 8910 -6246.2464 -6251.5248 5.2783818 3671.0566 626.00103 -10548.582 0 252.96968 -0.0011913466 -0.0011997239 + 8920 -6246.0124 -6251.7298 5.717389 3678.2335 628.20392 -10558.167 0 274.00936 -0.001121238 -0.0011331443 + 8930 -6245.7568 -6252.0782 6.321321 3684.9603 630.26473 -10567.303 0 302.95317 -0.0010423536 -0.0010597947 + 8940 -6245.5235 -6252.424 6.9005037 3690.3278 632.05392 -10574.806 0 330.71085 -0.00096091644 -0.00098152115 + 8950 -6245.3486 -6252.6434 7.2947925 3693.617 633.43876 -10579.699 0 349.60739 -0.00088556252 -0.00090429162 + 8960 -6245.233 -6252.6922 7.4592226 3694.3507 634.29829 -10581.341 0 357.4878 -0.00082163179 -0.00083483882 + 8970 -6245.1441 -6252.6026 7.4584369 3692.389 634.54439 -10579.536 0 357.45014 -0.00077095382 -0.00077947008 + 8980 -6245.0473 -6252.4287 7.3813998 3688.0325 634.13837 -10574.6 0 353.7581 -0.00073697725 -0.00074556666 + 8990 -6244.9368 -6252.1933 7.25655 3682.0384 633.09228 -10567.324 0 347.77459 -0.0007299776 -0.00074356202 + 9000 -6244.84 -6251.8805 7.0405602 3675.4798 631.45546 -10558.816 0 337.42315 -0.0007667978 -0.0007865027 + 9010 -6244.7922 -6251.4779 6.6856861 3669.4735 629.29812 -10550.25 0 320.41559 -0.00086404892 -0.00088620861 + 9020 -6244.8036 -6251.0283 6.224748 3664.8851 626.70714 -10542.621 0 298.32485 -0.0010287492 -0.001047665 + 9030 -6244.845 -6250.644 5.7990733 3662.1392 623.80133 -10536.585 0 277.92413 -0.0012520376 -0.0012643956 + 9040 -6244.8647 -6250.4642 5.5994678 3661.1991 620.7602 -10532.424 0 268.35791 -0.0015091258 -0.0015167229 + 9050 -6244.8224 -6250.5789 5.7565335 3661.6936 617.84789 -10530.12 0 275.88538 -0.001764565 -0.0017732525 + 9060 -6244.717 -6250.9716 6.2545231 3663.0993 615.41092 -10529.482 0 299.75184 -0.0019794394 -0.0019949713 + 9070 -6244.5913 -6251.5203 6.9289741 3664.8913 613.83524 -10530.247 0 332.07532 -0.0021175683 -0.0021413428 + 9080 -6244.5067 -6252.0608 7.5541016 3666.6297 613.46457 -10532.155 0 362.03494 -0.0021501509 -0.0021780417 + 9090 -6244.505 -6252.4687 7.9636756 3668.0071 614.5008 -10534.977 0 381.66402 -0.0020603842 -0.0020856713 + 9100 -6244.5838 -6252.7059 8.1221247 3668.9047 616.92101 -10538.532 0 389.25779 -0.0018494476 -0.0018677201 + 9110 -6244.706 -6252.8058 8.0997692 3669.4554 620.44472 -10542.706 0 388.18639 -0.0015424798 -0.0015548041 + 9120 -6244.8352 -6252.8164 7.9812321 3670.0602 624.56978 -10547.446 0 382.50542 -0.0011900434 -0.0012020405 + 9130 -6244.9672 -6252.7508 7.783608 3671.2849 628.67275 -10552.708 0 373.03417 -0.00086040871 -0.00087797268 + 9140 -6245.1321 -6252.5792 7.4470636 3673.6223 632.1486 -10558.35 0 356.90507 -0.00062185327 -0.00064666638 + 9150 -6245.3656 -6252.2703 6.904719 3677.1961 634.54919 -10564.016 0 330.91288 -0.00052014861 -0.00054834805 + 9160 -6245.6708 -6251.8485 6.1777702 3681.5611 635.67643 -10569.086 0 296.07341 -0.00056116742 -0.00058631949 + 9170 -6246.0053 -6251.4189 5.4135834 3685.7442 635.59913 -10572.762 0 259.44929 -0.00070849033 -0.00072668882 + 9180 -6246.308 -6251.1278 4.8198319 3688.5574 634.59009 -10574.275 0 230.99339 -0.00089920194 -0.00091210638 + 9190 -6246.544 -6251.0794 4.5354386 3689.0527 633.01081 -10573.143 0 217.36366 -0.0010707114 -0.0010838136 + 9200 -6246.7302 -6251.276 4.545808 3686.8886 631.18688 -10569.351 0 217.86063 -0.0011846989 -0.0012023205 + 9210 -6246.9176 -6251.6353 4.7177191 3682.4347 629.31744 -10563.387 0 226.09957 -0.0012367979 -0.0012583912 + 9220 -6247.1483 -6252.0652 4.9169517 3676.603 627.44846 -10556.117 0 235.64791 -0.001250328 -0.0012713252 + 9230 -6247.4248 -6252.5212 5.0964268 3670.5419 625.51713 -10548.58 0 244.24937 -0.001261138 -0.0012772136 + 9240 -6247.7169 -6252.9999 5.283013 3665.3416 623.44472 -10541.786 0 253.19162 -0.0013023627 -0.0013130646 + 9250 -6247.9935 -6253.4873 5.4938621 3661.8232 621.23387 -10536.544 0 263.2967 -0.0013939035 -0.0014026675 + 9260 -6248.249 -6253.9202 5.6712044 3660.4153 619.02536 -10533.361 0 271.79594 -0.0015370329 -0.0015480145 + 9270 -6248.503 -6254.2004 5.6974827 3661.0998 617.08979 -10532.39 0 273.05534 -0.0017131522 -0.0017278469 + 9280 -6248.775 -6254.2537 5.4787148 3663.4325 615.75891 -10533.445 0 262.57075 -0.0018868289 -0.0019032987 + 9290 -6249.0597 -6254.0843 5.0246087 3666.6602 615.32665 -10536.071 0 240.80744 -0.0020140548 -0.0020291572 + 9300 -6249.3259 -6253.7807 4.4548108 3669.9342 615.95969 -10539.675 0 213.49953 -0.0020551425 -0.0020675286 + 9310 -6249.5402 -6253.464 3.92378 3672.5687 617.64762 -10543.68 0 188.04955 -0.0019884263 -0.0019995284 + 9320 -6249.6927 -6253.2211 3.5283482 3674.2401 620.2007 -10547.662 0 169.09824 -0.0018189069 -0.0018311786 + 9330 -6249.801 -6253.0758 3.2747531 3675.0371 623.28497 -10551.398 0 156.94454 -0.0015775526 -0.0015918995 + 9340 -6249.8902 -6253.0135 3.1232227 3675.3438 626.48085 -10554.838 0 149.68236 -0.0013115739 -0.0013265845 + 9350 -6249.9702 -6253.0259 3.0557 3675.6336 629.35585 -10558.015 0 146.44629 -0.0010704786 -0.0010841013 + 9360 -6250.0287 -6253.1266 3.0979241 3676.2805 631.54222 -10560.949 0 148.4699 -0.00089392293 -0.00090574218 + 9370 -6250.0457 -6253.3275 3.2818192 3677.4511 632.80385 -10563.582 0 157.28319 -0.00080480322 -0.00081663892 + 9380 -6250.0105 -6253.6052 3.5947343 3679.0748 633.07265 -10565.753 0 172.27984 -0.0008074885 -0.00082187748 + 9390 -6249.9284 -6253.895 3.9666628 3680.8623 632.44152 -10567.199 0 190.10474 -0.00088958843 -0.00090764197 + 9400 -6249.8117 -6254.1157 4.3040643 3682.3598 631.11732 -10567.593 0 206.27491 -0.0010262106 -0.0010466231 + 9410 -6249.6658 -6254.2072 4.5414238 3683.0418 629.35258 -10566.602 0 217.65051 -0.0011862394 -0.001206105 + 9420 -6249.4787 -6254.1544 4.6756899 3682.4375 627.38044 -10563.972 0 224.08529 -0.0013397181 -0.0013565298 + 9430 -6249.222 -6253.985 4.7629979 3680.2691 625.37393 -10559.628 0 228.26958 -0.0014646757 -0.0014781659 + 9440 -6248.8639 -6253.7415 4.8775956 3676.5673 623.4387 -10553.748 0 233.76175 -0.0015515766 -0.0015640782 + 9450 -6248.3898 -6253.4458 5.056002 3671.7244 621.6342 -10546.804 0 242.31198 -0.0016040326 -0.0016188681 + 9460 -6247.8192 -6253.085 5.2657821 3666.4509 620.0071 -10539.543 0 252.36582 -0.0016352583 -0.0016540744 + 9470 -6247.2054 -6252.6366 5.4311889 3661.6275 618.61901 -10532.883 0 260.29305 -0.0016609595 -0.0016820696 + 9480 -6246.6083 -6252.1177 5.5094299 3658.089 617.55701 -10527.764 0 264.0428 -0.0016910002 -0.0017105459 + 9490 -6246.0568 -6251.6138 5.5570852 3656.4219 616.92702 -10524.963 0 266.3267 -0.0017238579 -0.0017394204 + 9500 -6245.5365 -6251.246 5.7094509 3656.8639 616.83675 -10524.947 0 273.62892 -0.0017476338 -0.0017611634 + 9510 -6245.0232 -6251.0903 6.0671107 3659.3202 617.37479 -10527.785 0 290.76999 -0.0017472875 -0.001764034 + 9520 -6244.5268 -6251.117 6.5902171 3663.4298 618.58771 -10533.135 0 315.84018 -0.0017123989 -0.0017361648 + 9530 -6244.0977 -6251.2097 7.1119925 3668.6047 620.45781 -10540.272 0 340.84659 -0.0016392074 -0.0016682563 + 9540 -6243.7847 -6251.2551 7.4703762 3674.0524 622.8884 -10548.196 0 358.02234 -0.0015265631 -0.001554376 + 9550 -6243.5871 -6251.2266 7.6394904 3678.8638 625.70429 -10555.795 0 366.12725 -0.0013719556 -0.0013926187 + 9560 -6243.4497 -6251.1912 7.7414234 3682.2211 628.6677 -10562.08 0 371.01245 -0.001174069 -0.0011877232 + 9570 -6243.3068 -6251.2359 7.9290417 3683.6673 631.50298 -10566.406 0 380.00417 -0.00094171289 -0.00095529199 + 9580 -6243.1371 -6251.3792 8.2420268 3683.295 633.92373 -10568.598 0 395.00417 -0.00070183073 -0.00072420012 + 9590 -6242.9856 -6251.5412 8.5556864 3681.7191 635.66116 -10568.922 0 410.0365 -0.00049828635 -0.0005333786 + 9600 -6242.9319 -6251.5977 8.6657777 3679.813 636.49452 -10567.905 0 415.31269 -0.00037911418 -0.00042232049 + 9610 -6243.028 -6251.4769 8.4488265 3678.3204 636.28155 -10566.079 0 404.91517 -0.00037811468 -0.00041899096 + 9620 -6243.2519 -6251.2262 7.9742597 3677.5456 634.98501 -10563.757 0 382.17127 -0.00050119075 -0.00053083593 + 9630 -6243.5187 -6250.9889 7.4702759 3677.286 632.69215 -10560.967 0 358.01754 -0.00072520246 -0.0007427235 + 9640 -6243.7427 -6250.9032 7.1604993 3677.0249 629.62293 -10557.551 0 343.1713 -0.0010087174 -0.0010215625 + 9650 -6243.8982 -6251.0029 7.1047244 3676.2334 626.118 -10553.354 0 340.49826 -0.0013063903 -0.0013243267 + 9660 -6244.0294 -6251.2064 7.1769911 3674.5855 622.59722 -10548.389 0 343.96168 -0.0015783625 -0.0016061627 + 9670 -6244.2069 -6251.397 7.1900607 3672.0125 619.49056 -10542.9 0 344.58805 -0.0017926083 -0.0018272065 + 9680 -6244.4706 -6251.5207 7.0500787 3668.6596 617.1583 -10537.339 0 337.87933 -0.0019246727 -0.0019583646 + 9690 -6244.805 -6251.6207 6.8156298 3664.8518 615.82531 -10532.298 0 326.64322 -0.0019599005 -0.0019863292 + 9700 -6245.159 -6251.7908 6.6317975 3661.0983 615.54822 -10528.437 0 317.83295 -0.0018987478 -0.0019169984 + 9710 -6245.4872 -6252.0943 6.6071041 3658.0853 616.22233 -10526.402 0 316.6495 -0.0017612158 -0.001775579 + 9720 -6245.7802 -6252.5048 6.7245712 3656.5904 617.62296 -10526.718 0 322.27918 -0.0015856077 -0.0016018354 + 9730 -6246.0662 -6252.9066 6.8404278 3657.2933 619.46761 -10529.668 0 327.83168 -0.0014194719 -0.0014403812 + 9740 -6246.3845 -6253.1544 6.7698857 3660.5232 621.47955 -10535.157 0 324.45091 -0.001304712 -0.001328169 + 9750 -6246.7486 -6253.1588 6.4102479 3666.043 623.43575 -10542.638 0 307.21505 -0.0012625855 -0.001283354 + 9760 -6247.1261 -6252.9462 5.8201181 3672.9935 625.19176 -10551.131 0 278.93272 -0.0012857853 -0.0013000137 + 9770 -6247.4558 -6252.6459 5.1900331 3680.0673 626.6881 -10559.401 0 248.73551 -0.0013422036 -0.0013510275 + 9780 -6247.6909 -6252.409 4.7181257 3685.8687 627.94318 -10566.221 0 226.11906 -0.0013887771 -0.0013978698 + 9790 -6247.832 -6252.319 4.487066 3689.3043 629.02938 -10570.653 0 215.04538 -0.0013882759 -0.0014035177 + 9800 -6247.9244 -6252.3623 4.4378843 3689.8417 630.02515 -10572.229 0 212.68832 -0.0013215858 -0.0013444218 + 9810 -6248.0235 -6252.4715 4.4480074 3687.5708 630.94936 -10570.992 0 213.17347 -0.0011924923 -0.0012187223 + 9820 -6248.1565 -6252.5941 4.4376104 3683.112 631.70482 -10567.411 0 212.67519 -0.0010262853 -0.0010490674 + 9830 -6248.3068 -6252.7297 4.4228149 3677.45 632.06633 -10562.246 0 211.96611 -0.00086442372 -0.00087912794 + 9840 -6248.428 -6252.9157 4.4877638 3671.7426 631.73517 -10556.394 0 215.07882 -0.00075629487 -0.00076383283 + 9850 -6248.4751 -6253.1791 4.7039588 3667.1172 630.4504 -10550.747 0 225.4401 -0.00074831607 -0.00075481139 + 9860 -6248.4362 -6253.49 5.0538471 3664.4556 628.11715 -10546.063 0 242.20871 -0.00087117334 -0.00088415856 + 9870 -6248.3428 -6253.755 5.4122009 3664.1831 624.89748 -10542.836 0 259.38303 -0.0011274956 -0.0011509512 + 9880 -6248.2534 -6253.8605 5.6070589 3666.111 621.21999 -10541.191 0 268.72172 -0.0014839792 -0.0015154322 + 9890 -6248.2149 -6253.7456 5.5306861 3669.413 617.69563 -10540.854 0 265.06151 -0.001872723 -0.0019045977 + 9900 -6248.2281 -6253.4534 5.2253138 3672.8057 614.96788 -10541.227 0 250.42636 -0.002204831 -0.0022294326 + 9910 -6248.2449 -6253.1168 4.8719367 3674.9354 613.55259 -10541.605 0 233.49054 -0.0023945712 -0.0024092321 + 9920 -6248.1986 -6252.8795 4.6808432 3674.8621 613.71979 -10541.461 0 224.33227 -0.0023864699 -0.0023950737 + 9930 -6248.0429 -6252.8069 4.7640143 3672.4422 615.44205 -10540.691 0 228.3183 -0.0021747402 -0.0021846659 + 9940 -6247.7692 -6252.8508 5.0815806 3668.4324 618.40784 -10539.691 0 243.53785 -0.0018069853 -0.0018239791 + 9950 -6247.3968 -6252.8867 5.4898821 3664.2577 622.08901 -10539.233 0 263.10596 -0.0013706289 -0.0013952567 + 9960 -6246.9486 -6252.7929 5.8443607 3661.5422 625.851 -10540.186 0 280.09456 -0.0009671682 -0.00099488665 + 9970 -6246.433 -6252.5189 6.0858375 3661.5819 629.08938 -10543.19 0 291.66748 -0.00068316721 -0.00070749258 + 9980 -6245.8404 -6252.1068 6.2663293 3664.934 631.36554 -10548.406 0 300.31766 -0.0005669103 -0.00058361193 + 9990 -6245.1522 -6251.6626 6.5104607 3671.2274 632.50747 -10555.397 0 312.01781 -0.0006169788 -0.00062702388 + 10000 -6244.3623 -6251.2918 6.9294991 3679.2341 632.64324 -10563.169 0 332.10048 -0.0007857915 -0.00079516238 + 10010 -6243.5079 -6251.0323 7.5244324 3687.1836 632.14317 -10570.359 0 360.61302 -0.00099752341 -0.0010131463 + 10020 -6242.6823 -6250.8353 8.153041 3693.2258 631.46966 -10575.531 0 390.73947 -0.0011743653 -0.001198326 + 10030 -6241.9963 -6250.6239 8.627647 3695.8896 630.97897 -10577.493 0 413.48525 -0.0012605155 -0.0012877542 + 10040 -6241.5041 -6250.3876 8.88359 3694.4114 630.76537 -10575.564 0 425.75148 -0.0012357272 -0.0012584768 + 10050 -6241.1695 -6250.211 9.0415807 3688.9072 630.63464 -10569.753 0 433.32328 -0.0011177651 -0.0011330451 + 10060 -6240.9136 -6250.1926 9.2789878 3680.3922 630.22369 -10560.809 0 444.70116 -0.00095629732 -0.00096895678 + 10070 -6240.6963 -6250.3362 9.6399074 3670.5971 629.19685 -10550.13 0 461.99845 -0.00081845923 -0.00083678707 + 10080 -6240.5508 -6250.5287 9.9778792 3661.5474 627.41378 -10539.49 0 478.19596 -0.0007668009 -0.00079513659 + 10090 -6240.5466 -6250.6255 10.07889 3655.0066 624.99458 -10530.627 0 483.03698 -0.00083615519 -0.00087119532 + 10100 -6240.7224 -6250.5649 9.8425334 3652.0017 622.26932 -10524.836 0 471.70943 -0.0010203655 -0.0010538307 + 10110 -6241.0493 -6250.4168 9.3675404 3652.6283 619.65493 -10522.7 0 448.9451 -0.0012763617 -0.001301257 + 10120 -6241.4495 -6250.3379 8.8884102 3656.1827 617.52702 -10524.048 0 425.98249 -0.0015431713 -0.0015587441 + 10130 -6241.8477 -6250.4728 8.625054 3661.5101 616.14218 -10528.125 0 413.36098 -0.001765005 -0.001777265 + 10140 -6242.2153 -6250.8606 8.6452524 3667.3941 615.62778 -10533.882 0 414.329 -0.001907024 -0.0019247932 + 10150 -6242.5837 -6251.3987 8.8149663 3672.8342 616.01572 -10540.249 0 422.46265 -0.0019584557 -0.0019873951 + 10160 -6243.016 -6251.888 8.8719963 3677.1388 617.27863 -10546.305 0 425.19584 -0.0019247156 -0.0019632008 + 10170 -6243.5509 -6252.1445 8.5936127 3679.8734 619.34081 -10551.359 0 411.85414 -0.0018152092 -0.0018552602 + 10180 -6244.1606 -6252.1061 7.9455381 3680.7956 622.06616 -10554.968 0 380.79477 -0.0016356498 -0.0016684706 + 10190 -6244.7612 -6251.8565 7.0952769 3679.8905 625.24337 -10556.99 0 340.04548 -0.0013906777 -0.0014123993 + 10200 -6245.2684 -6251.5587 6.2903854 3677.4904 628.58226 -10557.631 0 301.47056 -0.0010944855 -0.0011077531 + 10210 -6245.6445 -6251.3608 5.716344 3674.3404 631.72293 -10557.424 0 273.95928 -0.00078049905 -0.00079151768 + 10220 -6245.907 -6251.3421 5.4351009 3671.4945 634.25959 -10557.096 0 260.48053 -0.00050178222 -0.00051587393 + 10230 -6246.1033 -6251.5137 5.4103388 3670.0359 635.78868 -10557.338 0 259.29379 -0.00032002781 -0.00033885641 + 10240 -6246.2806 -6251.8453 5.5647375 3670.7217 635.98776 -10558.555 0 266.69344 -0.0002872291 -0.00030879047 + 10250 -6246.4659 -6252.2871 5.821222 3673.6889 634.71292 -10560.689 0 278.98562 -0.00042719853 -0.00044779454 + 10260 -6246.6625 -6252.777 6.1144351 3678.33 632.08109 -10563.188 0 293.03804 -0.00072387808 -0.00074055819 + 10270 -6246.8576 -6253.2408 6.3831588 3683.3972 628.49614 -10565.134 0 305.91679 -0.0011208916 -0.0011330261 + 10280 -6247.0353 -6253.5964 6.5611646 3687.3224 624.59093 -10565.51 0 314.44782 -0.0015332728 -0.0015425668 + 10290 -6247.1879 -6253.7685 6.5805616 3688.6701 621.08779 -10563.526 0 315.37744 -0.0018687198 -0.0018778481 + 10300 -6247.3187 -6253.7118 6.3931814 3686.5848 618.61368 -10558.91 0 306.39713 -0.0020526466 -0.0020635093 + 10310 -6247.435 -6253.4357 6.0006805 3681.0897 617.53066 -10552.056 0 287.58628 -0.0020495257 -0.0020623159 + 10320 -6247.5401 -6253.0111 5.4709672 3673.1452 617.84212 -10543.998 0 262.19945 -0.0018735711 -0.0018871298 + 10330 -6247.6296 -6252.5545 4.9249976 3664.4523 619.20836 -10536.215 0 236.03352 -0.001584955 -0.0015979274 + 10340 -6247.6933 -6252.1931 4.499789 3657.0517 621.06411 -10530.309 0 215.65514 -0.0012725034 -0.0012844631 + 10350 -6247.7206 -6252.0251 4.3045232 3652.8222 622.79675 -10527.644 0 206.29691 -0.0010282957 -0.0010402045 + 10360 -6247.7055 -6252.0876 4.382073 3653.0004 623.92975 -10529.018 0 210.01353 -0.00092178947 -0.00093546802 + 10370 -6247.6526 -6252.34 4.687457 3657.8391 624.25993 -10534.439 0 224.64924 -0.00098033369 -0.00099709557 + 10380 -6247.5776 -6252.6776 5.0999187 3666.4867 623.91094 -10543.075 0 244.41672 -0.0011805626 -0.0011998825 + 10390 -6247.499 -6252.9752 5.4761621 3677.1282 623.28699 -10553.39 0 262.44842 -0.0014529135 -0.0014723617 + 10400 -6247.4229 -6253.1442 5.7213637 3687.3859 622.93691 -10563.467 0 274.19985 -0.0016995486 -0.0017164478 + 10410 -6247.3364 -6253.1654 5.8290161 3694.9106 623.36659 -10571.443 0 279.35916 -0.0018229702 -0.001836601 + 10420 -6247.2181 -6253.0763 5.8581622 3698.0177 624.85589 -10575.95 0 280.756 -0.0017580473 -0.0017703618 + 10430 -6247.0576 -6252.9304 5.8728742 3696.1642 627.33748 -10576.432 0 281.46108 -0.0014963074 -0.0015103169 + 10440 -6246.8638 -6252.7676 5.9037707 3690.0901 630.3787 -10573.236 0 282.94182 -0.0010921885 -0.0011095007 + 10450 -6246.6537 -6252.6131 5.9594408 3681.574 633.27971 -10567.467 0 285.60984 -0.00064792295 -0.00066772926 + 10460 -6246.4328 -6252.4889 6.056143 3672.9002 635.26523 -10560.654 0 290.24435 -0.00028291759 -0.00030311455 + 10470 -6246.1882 -6252.4098 6.221639 3666.226 635.71233 -10554.348 0 298.17585 -9.8979794e-05 -0.00011801051 + 10480 -6245.8973 -6252.367 6.4697853 3663.033 634.33888 -10549.739 0 310.06841 -0.00015228707 -0.00016995709 + 10490 -6245.5418 -6252.3204 6.7786778 3663.7865 631.29029 -10547.397 0 324.87228 -0.00043898176 -0.00045583806 + 10500 -6245.1143 -6252.2154 7.1010469 3667.8665 627.10107 -10547.183 0 340.32201 -0.00089672857 -0.00091299297 + 10510 -6244.6139 -6252.0182 7.4042634 3673.7724 622.55321 -10548.344 0 354.85385 -0.0014208123 -0.001436136 + 10520 -6244.0366 -6251.7432 7.7065856 3679.5524 618.48422 -10549.78 0 369.34283 -0.0018905215 -0.0019048519 + 10530 -6243.3747 -6251.4458 8.0711287 3683.3547 615.60263 -10550.403 0 386.81378 -0.0021995032 -0.0022140057 + 10540 -6242.6293 -6251.1814 8.552039 3683.9553 614.35231 -10549.489 0 409.8617 -0.0022824763 -0.0022991427 + 10550 -6241.8277 -6250.9628 9.1351126 3681.1046 614.84278 -10546.91 0 437.80585 -0.0021308153 -0.0021507193 + 10560 -6241.026 -6250.7538 9.7277675 3675.5829 616.84884 -10543.185 0 466.2092 -0.0017921077 -0.0018139517 + 10570 -6240.2893 -6250.5008 10.211431 3668.9519 619.87967 -10539.332 0 489.38909 -0.0013538545 -0.0013745445 + 10580 -6239.6624 -6250.1753 10.512913 3663.098 623.30882 -10536.582 0 503.83776 -0.00091719806 -0.00093436292 + 10590 -6239.1564 -6249.7923 10.635808 3659.7174 626.53528 -10536.045 0 509.72761 -0.00056995094 -0.000584336 + 10600 -6238.7632 -6249.3939 10.630666 3659.8893 629.12614 -10538.409 0 509.48116 -0.00036720989 -0.00038266692 + 10610 -6238.4832 -6249.0207 10.537522 3663.8312 630.89332 -10543.745 0 505.01716 -0.00032333115 -0.00034397928 + 10620 -6238.3382 -6248.6989 10.360726 3670.8592 631.88317 -10551.441 0 496.54413 -0.00041425452 -0.00044092743 + 10630 -6238.3554 -6248.4628 10.107472 3679.5402 632.29321 -10560.296 0 484.40679 -0.00058713537 -0.00061633086 + 10640 -6238.5374 -6248.3889 9.85153 3688.0119 632.35785 -10568.759 0 472.14059 -0.00077514962 -0.00080188746 + 10650 -6238.8544 -6248.5914 9.7369391 3694.4341 632.2533 -10575.279 0 466.64876 -0.00091609393 -0.00093838074 + 10660 -6239.2753 -6249.156 9.8806646 3697.4737 632.0559 -10578.686 0 473.53689 -0.00097108086 -0.00099168969 + 10670 -6239.8106 -6250.0552 10.244666 3696.6664 631.75698 -10578.479 0 490.98187 -0.00093603878 -0.00095968238 + 10680 -6240.5188 -6251.1238 10.604954 3692.499 631.30944 -10574.932 0 508.2489 -0.00083948567 -0.0008680797 + 10690 -6241.4538 -6252.1238 10.669999 3686.1811 630.67218 -10568.977 0 511.36622 -0.00072725424 -0.00075782547 + 10700 -6242.5885 -6252.853 10.264419 3679.2284 629.82924 -10561.911 0 491.92857 -0.00064309065 -0.00067008255 + 10710 -6243.788 -6253.219 9.4310413 3673.0445 628.78139 -10555.045 0 451.98841 -0.0006160004 -0.00063551631 + 10720 -6244.869 -6253.2447 8.3756966 3668.6484 627.52721 -10549.42 0 401.41038 -0.00065899024 -0.00067124026 + 10730 -6245.6997 -6253.0214 7.3216429 3666.5827 626.05787 -10545.662 0 350.89421 -0.00077455999 -0.00078313057 + 10740 -6246.2523 -6252.6569 6.4046345 3666.9391 624.379 -10543.975 0 306.94602 -0.00095837184 -0.00096766379 + 10750 -6246.5819 -6252.2461 5.6642116 3669.4072 622.55283 -10544.206 0 271.4608 -0.001197093 -0.0012098281 + 10760 -6246.7738 -6251.8666 5.0928266 3673.3144 620.73706 -10545.918 0 244.07683 -0.0014633148 -0.0014792838 + 10770 -6246.8997 -6251.5873 4.6876551 3677.6967 619.19239 -10548.476 0 224.65874 -0.0017133831 -0.0017299205 + 10780 -6246.998 -6251.4731 4.4751344 3681.4569 618.24321 -10551.173 0 214.47355 -0.0018924817 -0.001906361 + 10790 -6247.074 -6251.5747 4.5006988 3683.6216 618.19702 -10553.393 0 215.69874 -0.0019475499 -0.00195714 + 10800 -6247.1145 -6251.9069 4.7923959 3683.6357 619.24668 -10554.789 0 229.6785 -0.0018446225 -0.0018509462 + 10810 -6247.1073 -6252.428 5.3207241 3681.5863 621.38624 -10555.401 0 254.99895 -0.0015843816 -0.0015904333 + 10820 -6247.0571 -6253.0385 5.9813921 3678.2492 624.36849 -10555.656 0 286.66187 -0.0012091579 -0.0012179705 + 10830 -6246.9892 -6253.6059 6.6166629 3674.9017 627.72454 -10556.232 0 317.10761 -0.00079682327 -0.000809561 + 10840 -6246.9378 -6254.0062 7.0684187 3672.9362 630.85287 -10557.795 0 338.75828 -0.00044158015 -0.00045688773 + 10850 -6246.9278 -6254.1631 7.2352616 3673.3947 633.16413 -10560.722 0 346.75433 -0.00022707197 -0.00024205079 + 10860 -6246.9617 -6254.0643 7.102657 3676.5894 634.24246 -10564.896 0 340.39918 -0.00020104058 -0.00021313453 + 10870 -6247.0197 -6253.7534 6.7336936 3681.9514 633.96675 -10569.672 0 322.71638 -0.00036072833 -0.00036927524 + 10880 -6247.0731 -6253.3065 6.2333805 3688.1658 632.54255 -10574.015 0 298.73857 -0.00065417353 -0.00066074539 + 10890 -6247.0989 -6252.8094 5.7104448 3693.5459 630.42917 -10576.784 0 273.67656 -0.00099659773 -0.0010041064 + 10900 -6247.0894 -6252.3412 5.2518236 3696.5172 628.18915 -10577.048 0 251.69686 -0.001296 -0.0013071709 + 10910 -6247.0527 -6251.9638 4.9111826 3696.0633 626.31681 -10574.344 0 235.37142 -0.0014795372 -0.0014954687 + 10920 -6247.0058 -6251.7156 4.7097883 3692.0077 625.10406 -10568.827 0 225.71948 -0.0015126387 -0.0015320696 + 10930 -6246.9628 -6251.6139 4.651079 3685.0651 624.58083 -10561.26 0 222.9058 -0.0014057256 -0.0014255341 + 10940 -6246.9222 -6251.6649 4.7427546 3676.6643 624.53883 -10552.868 0 227.29941 -0.0012078881 -0.0012248855 + 10950 -6246.8624 -6251.868 5.0056121 3668.6101 624.62406 -10545.102 0 239.89702 -0.00099098295 -0.0010040878 + 10960 -6246.7533 -6252.2048 5.4515125 3662.6749 624.46885 -10539.349 0 261.26707 -0.00082945103 -0.00084061748 + 10970 -6246.5782 -6252.6207 6.042521 3660.2031 623.82557 -10536.649 0 289.59151 -0.00078053243 -0.00079341493 + 10980 -6246.3502 -6253.0222 6.6719992 3661.7876 622.66381 -10537.474 0 319.75964 -0.00086822668 -0.00088538401 + 10990 -6246.1077 -6253.3076 7.1999238 3667.0851 621.20092 -10541.594 0 345.06075 -0.0010741538 -0.0010950713 + 11000 -6245.8888 -6253.4146 7.5258055 3674.8454 619.85424 -10548.114 0 360.67883 -0.0013391176 -0.0013608099 + 11010 -6245.7082 -6253.3463 7.6380432 3683.2062 619.12621 -10555.679 0 366.05789 -0.0015780457 -0.0015976325 + 11020 -6245.5564 -6253.1509 7.5944744 3690.2022 619.45387 -10562.807 0 363.96983 -0.0017059941 -0.001722753 + 11030 -6245.4188 -6252.878 7.459215 3694.3237 621.06463 -10568.266 0 357.48743 -0.0016662721 -0.0016814271 + 11040 -6245.2915 -6252.555 7.2635033 3694.919 623.88086 -10571.355 0 348.10783 -0.0014492691 -0.0014642708 + 11050 -6245.1794 -6252.1996 7.0202013 3692.3143 627.50673 -10572.021 0 336.44744 -0.0010951702 -0.0011104563 + 11060 -6245.0848 -6251.8426 6.7577636 3687.6491 631.30868 -10570.8 0 323.86995 -0.00068150973 -0.00069664287 + 11070 -6245.0021 -6251.5315 6.5294084 3682.5078 634.56906 -10568.608 0 312.92589 -0.00030153316 -0.00031602517 + 11080 -6244.9214 -6251.3143 6.392881 3678.4649 636.66563 -10566.445 0 306.38273 -4.0087307e-05 -5.39124e-05 + 11090 -6244.8341 -6251.2208 6.3866647 3676.6603 637.2217 -10565.103 0 306.08481 4.7297661e-05 3.3754055e-05 + 11100 -6244.7359 -6251.2585 6.5225825 3677.5137 636.18464 -10564.957 0 312.59875 -5.2603077e-05 -6.6427036e-05 + 11110 -6244.6254 -6251.4169 6.7915421 3680.6431 633.81636 -10565.876 0 325.48881 -0.0003091056 -0.00032387484 + 11120 -6244.505 -6251.671 7.165917 3685.0047 630.60707 -10567.283 0 343.43095 -0.00065804192 -0.00067450603 + 11130 -6244.3842 -6251.9749 7.5906622 3689.2041 627.14556 -10568.325 0 363.78712 -0.0010207668 -0.001039448 + 11140 -6244.2822 -6252.2588 7.9766802 3691.8879 623.98623 -10568.133 0 382.28727 -0.0013250292 -0.0013456297 + 11150 -6244.2237 -6252.4416 8.2179012 3692.1041 621.54564 -10566.091 0 393.84794 -0.0015208775 -0.0015419932 + 11160 -6244.2274 -6252.4607 8.2332876 3689.5423 620.04596 -10562.049 0 394.58534 -0.0015879909 -0.0016076715 + 11170 -6244.2945 -6252.3027 8.0081816 3684.6022 619.50809 -10556.413 0 383.797 -0.0015348329 -0.0015517848 + 11180 -6244.4081 -6252.0147 7.6066128 3678.2908 619.78714 -10550.093 0 364.55157 -0.0013921927 -0.0014067875 + 11190 -6244.5438 -6251.6906 7.1468784 3671.987 620.63608 -10544.314 0 342.51851 -0.0012038038 -0.0012181485 + 11200 -6244.6842 -6251.4391 6.7549133 3667.1315 621.77897 -10540.35 0 323.73335 -0.0010161502 -0.0010331068 + 11210 -6244.8296 -6251.3477 6.5180933 3664.9065 622.97492 -10539.229 0 312.3836 -0.00086913312 -0.00089077923 + 11220 -6244.9987 -6251.4552 6.4564941 3665.9652 624.06039 -10541.481 0 309.43142 -0.00078883848 -0.00081508805 + 11230 -6245.2205 -6251.7418 6.5213221 3670.264 624.96602 -10546.972 0 312.53835 -0.00078300741 -0.00081108322 + 11240 -6245.5185 -6252.1437 6.6251778 3677.037 625.7107 -10554.891 0 317.5157 -0.00083945833 -0.00086482203 + 11250 -6245.8935 -6252.5864 6.692881 3684.9373 626.37661 -10563.9 0 320.76041 -0.00092831407 -0.00094712994 + 11260 -6246.3174 -6253.0133 6.6958431 3692.3436 627.07096 -10572.428 0 320.90237 -0.0010095553 -0.0010214408 + 11270 -6246.7489 -6253.3837 6.6347739 3697.777 627.88327 -10579.044 0 317.97559 -0.001045806 -0.001054561 + 11280 -6247.1605 -6253.6484 6.487889 3700.2984 628.84837 -10582.795 0 310.93605 -0.0010160022 -0.0010270675 + 11290 -6247.5518 -6253.7435 6.1917666 3699.7275 629.92274 -10583.394 0 296.7442 -0.0009227641 -0.00093912812 + 11300 -6247.9342 -6253.6281 5.6938905 3696.6 630.98003 -10581.208 0 272.88318 -0.00078932434 -0.00080940912 + 11310 -6248.3055 -6253.3355 5.0299673 3691.9144 631.83016 -10577.08 0 241.06425 -0.0006490427 -0.00066838457 + 11320 -6248.6418 -6252.9833 4.3414957 3686.8168 632.26079 -10572.061 0 208.06883 -0.00053484751 -0.00054984256 + 11330 -6248.9143 -6252.7217 3.8074219 3682.3505 632.09048 -10567.163 0 182.47302 -0.00047345689 -0.00048382184 + 11340 -6249.1109 -6252.6569 3.5459871 3679.3045 631.2174 -10563.179 0 169.9436 -0.00048356672 -0.00049180224 + 11350 -6249.2429 -6252.8054 3.5624895 3678.1242 629.64982 -10560.579 0 170.73449 -0.00057437163 -0.00058329378 + 11360 -6249.335 -6253.1068 3.7718092 3678.8539 627.51301 -10559.474 0 180.76626 -0.00074250884 -0.00075320868 + 11370 -6249.4083 -6253.4734 4.0651377 3681.1205 625.03538 -10559.629 0 194.82421 -0.00096894592 -0.00098064846 + 11380 -6249.4691 -6253.8349 4.3658443 3684.1976 622.52106 -10560.554 0 209.23576 -0.001218994 -0.0012304318 + 11390 -6249.5106 -6254.1515 4.6409056 3687.1683 620.315 -10561.635 0 222.41824 -0.0014473448 -0.0014581505 + 11400 -6249.5232 -6254.3997 4.8764452 3689.1566 618.76049 -10562.317 0 233.70661 -0.0016073222 -0.0016183176 + 11410 -6249.5042 -6254.5545 5.0503651 3689.562 618.14634 -10562.263 0 242.04183 -0.0016617281 -0.001674154 + 11420 -6249.4593 -6254.5856 5.1262472 3688.2299 618.6441 -10561.46 0 245.67853 -0.0015925287 -0.0016070208 + 11430 -6249.3992 -6254.4682 5.068995 3685.5096 620.24828 -10560.226 0 242.93468 -0.0014071345 -0.0014231711 + 11440 -6249.3317 -6254.2007 4.8690434 3682.1805 622.74281 -10559.124 0 233.35188 -0.0011392459 -0.0011553425 + 11450 -6249.2563 -6253.8178 4.5615088 3679.2564 625.71907 -10558.793 0 218.61309 -0.00084277998 -0.00085735268 + 11460 -6249.1617 -6253.3902 4.2284479 3677.7175 628.65598 -10559.764 0 202.65095 -0.00057933884 -0.00059182497 + 11470 -6249.0288 -6253.0052 3.9763939 3678.2456 631.04687 -10562.298 0 190.5711 -0.00040245557 -0.00041395833 + 11480 -6248.8387 -6252.7348 3.8960804 3681.0338 632.53305 -10566.302 0 186.72203 -0.00034343765 -0.00035626226 + 11490 -6248.5792 -6252.6083 4.0290743 3685.7123 632.99612 -10571.317 0 193.09585 -0.00040290054 -0.00041912463 + 11500 -6248.2452 -6252.6097 4.3644339 3691.3976 632.57532 -10576.583 0 209.16816 -0.00055010141 -0.0005701462 + 11510 -6247.8341 -6252.6975 4.8634127 3696.8601 631.60579 -10581.163 0 233.08203 -0.00073042971 -0.0007526216 + 11520 -6247.3427 -6252.83 5.4872675 3700.7904 630.50084 -10584.121 0 262.98065 -0.00088004023 -0.00090140256 + 11530 -6246.7713 -6252.9767 6.2054136 3702.1262 629.61541 -10584.718 0 297.39824 -0.00094497672 -0.00096276715 + 11540 -6246.1319 -6253.1132 6.9812165 3700.3699 629.12952 -10582.613 0 334.57907 -0.00090008897 -0.00091333784 + 11550 -6245.4566 -6253.2054 7.7488195 3695.8032 628.98743 -10577.996 0 371.36691 -0.00076122436 -0.00077147643 + 11560 -6244.7981 -6253.1981 8.3999861 3689.49 628.92039 -10571.609 0 402.57447 -0.0005840443 -0.0005946367 + 11570 -6244.2207 -6253.02 8.7993787 3683.0081 628.55721 -10564.585 0 421.7156 -0.00044645151 -0.00046044905 + 11580 -6243.7793 -6252.6135 8.8341845 3677.9585 627.58824 -10558.16 0 423.38369 -0.00041914924 -0.00043723751 + 11590 -6243.4981 -6251.9757 8.4775936 3675.4366 625.91744 -10553.33 0 406.29385 -0.00053611689 -0.00055606594 + 11600 -6243.3593 -6251.1872 7.8278855 3675.6849 623.73673 -10550.609 0 375.15619 -0.00077824022 -0.00079646572 + 11610 -6243.3121 -6250.4067 7.0945955 3678.0748 621.48961 -10549.971 0 340.01283 -0.0010776237 -0.0010918086 + 11620 -6243.2955 -6249.8262 6.5306713 3681.4128 619.73893 -10550.978 0 312.98641 -0.001340863 -0.0013517805 + 11630 -6243.264 -6249.6013 6.3372136 3684.4306 618.99074 -10553.023 0 303.71484 -0.0014816984 -0.0014928517 + 11640 -6243.2057 -6249.7908 6.5851056 3686.2583 619.53668 -10555.586 0 315.59521 -0.0014502798 -0.0014654982 + 11650 -6243.143 -6250.3383 7.1953187 3686.7013 621.36298 -10558.403 0 344.84005 -0.0012485277 -0.0012692542 + 11660 -6243.1171 -6251.1062 7.9890432 3686.2331 624.14915 -10561.488 0 382.87978 -0.00092723404 -0.00095164234 + 11670 -6243.1644 -6251.9366 8.7722027 3685.7335 627.35522 -10565.025 0 420.41317 -0.000567693 -0.00059235239 + 11680 -6243.3013 -6252.6968 9.3955091 3686.1024 630.37385 -10569.173 0 450.28551 -0.000255609 -0.00027820049 + 11690 -6243.5269 -6253.2882 9.7612997 3687.903 632.70296 -10573.894 0 467.81625 -5.6055891e-05 -7.6787414e-05 + 11700 -6243.8339 -6253.6373 9.8034003 3691.1487 634.08116 -10578.867 0 469.83395 3.5953945e-06 -1.7172618e-05 + 11710 -6244.2123 -6253.6953 9.4830085 3695.2841 634.53518 -10583.515 0 454.47898 -6.1649561e-05 -8.4049359e-05 + 11720 -6244.6435 -6253.4526 8.8091022 3699.3543 634.31984 -10587.127 0 422.18161 -0.0002036807 -0.00022759087 + 11730 -6245.0962 -6252.9542 7.8579714 3702.3043 633.77614 -10589.035 0 376.59808 -0.00036151438 -0.00038507414 + 11740 -6245.5303 -6252.3017 6.7713928 3703.3067 633.17051 -10588.779 0 324.52314 -0.00048442458 -0.00050518682 + 11750 -6245.9078 -6251.6424 5.7345703 3702.007 632.58725 -10586.237 0 274.83279 -0.00054829044 -0.0005648971 + 11760 -6246.2019 -6251.1403 4.9384232 3698.6183 631.91929 -10581.678 0 236.67695 -0.00055947759 -0.00057294921 + 11770 -6246.4052 -6250.9307 4.5255128 3693.8577 630.9547 -10575.743 0 216.88797 -0.00054714921 -0.00056070603 + 11780 -6246.5348 -6251.0685 4.5336473 3688.7541 629.5117 -10569.334 0 217.27782 -0.00054899303 -0.00056597611 + 11790 -6246.6298 -6251.505 4.8752141 3684.3757 627.55708 -10563.438 0 233.64762 -0.00059557549 -0.00061664767 + 11800 -6246.7347 -6252.1172 5.3825645 3681.5418 625.25674 -10558.916 0 257.96269 -0.00069757695 -0.00071955999 + 11810 -6246.8747 -6252.7747 5.899982 3680.6137 622.9421 -10556.331 0 282.76024 -0.00084005814 -0.00085791265 + 11820 -6247.0402 -6253.3944 6.3542401 3681.4513 621.01276 -10555.858 0 304.53084 -0.0009871961 -0.00099800329 + 11830 -6247.1971 -6253.9418 6.7447268 3683.5574 619.8194 -10557.319 0 323.24515 -0.0010970711 -0.0011027566 + 11840 -6247.3193 -6254.385 7.065704 3686.3295 619.5712 -10560.286 0 338.62818 -0.0011399613 -0.0011462182 + 11850 -6247.4149 -6254.656 7.2411263 3689.2766 620.29457 -10564.227 0 347.0354 -0.0011101579 -0.0011222514 + 11860 -6247.5204 -6254.6638 7.1433405 3692.0937 621.84692 -10568.604 0 342.34896 -0.0010246538 -0.0010435443 + 11870 -6247.6677 -6254.3539 6.6861834 3694.5939 623.97237 -10572.92 0 320.43943 -0.00091046153 -0.00093236281 + 11880 -6247.8539 -6253.7655 5.9115627 3696.594 626.37626 -10576.736 0 283.31525 -0.0007893936 -0.00080887568 + 11890 -6248.0411 -6253.036 4.9949587 3697.869 628.79311 -10579.698 0 239.38645 -0.00066960192 -0.00068351695 + 11900 -6248.1834 -6252.3505 4.1671049 3698.2219 631.02629 -10581.599 0 199.71105 -0.00054748288 -0.00055672354 + 11910 -6248.2559 -6251.8704 3.6145357 3697.6194 632.94879 -10582.439 0 173.22883 -0.00041679868 -0.00042505635 + 11920 -6248.2619 -6251.6869 3.4249876 3696.2939 634.4702 -10582.451 0 164.14462 -0.00027874044 -0.00028980633 + 11930 -6248.221 -6251.8145 3.5935216 3694.7343 635.4923 -10582.041 0 172.22172 -0.00014776456 -0.00016350512 + 11940 -6248.1514 -6252.2084 4.0569929 3693.5586 635.88367 -10581.651 0 194.43386 -5.0882451e-05 -7.0803933e-05 + 11950 -6248.0608 -6252.7821 4.7213188 3693.3135 635.49719 -10581.593 0 226.27209 -2.0449987e-05 -4.2392521e-05 + 11960 -6247.9457 -6253.4223 5.4766763 3694.2677 634.23062 -10581.921 0 262.47306 -8.2281489e-05 -0.00010353082 + 11970 -6247.7938 -6254.0082 6.2144227 3696.2662 632.10544 -10582.38 0 297.83001 -0.00024291875 -0.00026146157 + 11980 -6247.5867 -6254.4329 6.8462344 3698.7098 629.32501 -10582.468 0 328.10997 -0.00048156056 -0.00049719312 + 11990 -6247.3074 -6254.6166 7.3092059 3700.6987 626.27841 -10581.594 0 350.29816 -0.00075147052 -0.00076596786 + 12000 -6246.9521 -6254.506 7.5538677 3701.3106 623.47579 -10579.292 0 362.02373 -0.0009916289 -0.0010073643 + 12010 -6246.5366 -6254.0787 7.5420538 3699.912 621.42773 -10575.418 0 361.45754 -0.0011441431 -0.0011619439 + 12020 -6246.0856 -6253.3647 7.279124 3696.386 620.50587 -10570.257 0 348.85647 -0.0011705297 -0.0011887518 + 12030 -6245.6117 -6252.4697 6.8580512 3691.2143 620.83421 -10564.518 0 328.67629 -0.0010620735 -0.001078038 + 12040 -6245.1028 -6251.5635 6.4606682 3685.4201 622.25142 -10559.235 0 309.63147 -0.00084309997 -0.00085571317 + 12050 -6244.5295 -6250.8238 6.2943799 3680.3976 624.35608 -10555.578 0 301.662 -0.00056735974 -0.00057853757 + 12060 -6243.8648 -6250.3668 6.5020086 3677.6317 626.61883 -10554.617 0 311.61273 -0.0003069601 -0.00032063029 + 12070 -6243.108 -6250.2082 7.1001743 3678.3152 628.53129 -10557.055 0 340.28019 -0.00013349623 -0.00015297086 + 12080 -6242.2984 -6250.2752 7.9768214 3682.9215 629.75782 -10562.955 0 382.29404 -9.4031546e-05 -0.00011964017 + 12090 -6241.5077 -6250.4567 8.9490393 3690.878 630.24782 -10571.583 0 428.88818 -0.00018945195 -0.00021815405 + 12100 -6240.8098 -6250.6626 9.8527518 3700.5322 630.26092 -10581.456 0 472.19915 -0.00036628293 -0.0003937636 + 12110 -6240.2504 -6250.8566 10.606232 3709.5311 630.277 -10590.665 0 508.31014 -0.00053065148 -0.00055452163 + 12120 -6239.8431 -6251.0437 11.200585 3715.5445 630.80899 -10597.397 0 536.79488 -0.00058299652 -0.00060456395 + 12130 -6239.593 -6251.229 11.63598 3717.0619 632.18214 -10600.473 0 557.66143 -0.00045993394 -0.00048309041 + 12140 -6239.5154 -6251.3881 11.87269 3713.9238 634.36369 -10599.676 0 569.00593 -0.00016423514 -0.00019251554 + 12150 -6239.6323 -6251.4726 11.840295 3707.3614 636.91712 -10595.751 0 567.45337 0.00023101006 0.00019681811 + 12160 -6239.9503 -6251.4367 11.486405 3699.5451 639.115 -10590.097 0 550.49296 0.00060612783 0.00056837 + 12170 -6240.443 -6251.2639 10.820927 3692.8358 640.17987 -10584.28 0 518.59955 0.0008367602 0.00079952959 + 12180 -6241.0504 -6250.9808 9.9304545 3689.0256 639.56154 -10579.568 0 475.9231 0.0008373288 0.0008044076 + 12190 -6241.6948 -6250.6568 8.9620193 3688.8283 637.13895 -10576.624 0 429.51025 0.00058973106 0.00056290041 + 12200 -6242.3059 -6250.3919 8.0860325 3691.7652 633.27122 -10575.428 0 387.52805 0.00014786834 0.00012624205 + 12210 -6242.8411 -6250.2909 7.4497998 3696.4399 628.69128 -10575.422 0 357.03621 -0.00038134613 -0.00040070051 + 12220 -6243.2947 -6250.43 7.1353356 3701.0613 624.29518 -10575.786 0 341.96532 -0.00087159036 -0.00089196781 + 12230 -6243.6915 -6250.8297 7.1382012 3704.0201 620.90407 -10575.754 0 342.10266 -0.0012131003 -0.0012362584 + 12240 -6244.0701 -6251.4478 7.3776279 3704.3453 619.06782 -10574.861 0 353.57733 -0.0013403685 -0.0013655719 + 12250 -6244.463 -6252.1928 7.7298679 3701.9397 618.95622 -10573.089 0 370.45864 -0.0012454241 -0.0012700615 + 12260 -6244.8836 -6252.9475 8.0639521 3697.5652 620.356 -10570.869 0 386.46983 -0.0009752989 -0.00099659819 + 12270 -6245.3246 -6253.5913 8.2666772 3692.5991 622.76492 -10568.955 0 396.18556 -0.00061576201 -0.00063245672 + 12280 -6245.7641 -6254.0217 8.2575504 3688.6295 625.55213 -10568.203 0 395.74815 -0.00026588252 -0.0002788972 + 12290 -6246.1762 -6254.1717 7.9955606 3687.0001 628.13877 -10569.311 0 383.19213 -1.0228121e-05 -2.2050048e-05 + 12300 -6246.542 -6254.0204 7.478437 3688.4346 630.14654 -10572.602 0 358.40866 0.00010336784 9.0325268e-05 + 12310 -6246.8553 -6253.5981 6.7428699 3692.8417 631.46787 -10577.908 0 323.15616 7.4029913e-05 5.9074158e-05 + 12320 -6247.1185 -6252.9917 5.8732126 3699.3438 632.23706 -10584.573 0 281.4773 -5.6507517e-05 -7.1930724e-05 + 12330 -6247.3341 -6252.3413 5.0072108 3706.5145 632.72075 -10591.577 0 239.97364 -0.00022077433 -0.00023430835 + 12340 -6247.4992 -6251.8159 4.3167176 3712.7611 633.17821 -10597.755 0 206.88133 -0.00034906462 -0.00035938879 + 12350 -6247.6073 -6251.5663 3.9590112 3716.7455 633.74819 -10602.06 0 189.73803 -0.0003917249 -0.00039975818 + 12360 -6247.6548 -6251.6744 4.0196304 3717.7213 634.39976 -10603.795 0 192.64324 -0.00033328837 -0.00034185034 + 12370 -6247.6469 -6252.12 4.4731144 3715.6929 634.95428 -10602.767 0 214.37674 -0.00019487193 -0.0002070323 + 12380 -6247.6033 -6252.7819 5.1786217 3711.3622 635.1603 -10599.304 0 248.18861 -2.5182433e-05 -4.22065e-05 + 12390 -6247.5559 -6253.4758 5.9199398 3705.8875 634.78919 -10594.153 0 283.71673 0.00011657023 9.644367e-05 + 12400 -6247.5348 -6254.0214 6.4866458 3700.5364 633.71788 -10588.276 0 310.87646 0.00018046289 0.00016129544 + 12410 -6247.5486 -6254.311 6.7623972 3696.3463 631.97368 -10582.631 0 324.09202 0.00014152305 0.00012697807 + 12420 -6247.5762 -6254.3384 6.7622399 3693.9125 629.73291 -10577.984 0 324.08448 5.2223201e-06 -4.3524869e-06 + 12430 -6247.5841 -6254.1715 6.5874101 3693.3552 627.2811 -10574.808 0 315.70566 -0.0001987024 -0.00020690151 + 12440 -6247.5556 -6253.8907 6.3350476 3694.4274 624.95154 -10573.27 0 303.61103 -0.00042936578 -0.00044114969 + 12450 -6247.5063 -6253.547 6.040709 3696.6595 623.05969 -10573.266 0 289.50467 -0.00064704328 -0.00066485109 + 12460 -6247.4698 -6253.1662 5.6964542 3699.4673 621.84871 -10574.482 0 273.00605 -0.00081957294 -0.00084130171 + 12470 -6247.4676 -6252.7815 5.3139396 3702.2196 621.45709 -10576.458 0 254.6738 -0.00092322055 -0.0009437164 + 12480 -6247.4894 -6252.4542 4.9648437 3704.3157 621.91357 -10578.683 0 237.94317 -0.00094184577 -0.00095665747 + 12490 -6247.4973 -6252.2566 4.7592698 3705.305 623.15529 -10580.717 0 228.09091 -0.00086759393 -0.00087606482 + 12500 -6247.4501 -6252.2309 4.7808873 3705.0254 625.05685 -10582.313 0 229.12695 -0.00070341843 -0.00070895055 + 12510 -6247.3259 -6252.3576 5.0317676 3703.6949 627.45418 -10583.507 0 241.15054 -0.00046548584 -0.00047305411 + 12520 -6247.1316 -6252.5599 5.4282402 3701.8927 630.15229 -10584.605 0 260.15173 -0.00018327878 -0.0001961148 + 12530 -6246.8932 -6252.7429 5.8496337 3700.4146 632.91802 -10586.075 0 280.34727 0.00010365684 8.6024672e-05 + 12540 -6246.6355 -6252.8434 6.2079269 3700.0411 635.4722 -10588.357 0 297.51869 0.00035206062 0.0003333273 + 12550 -6246.3626 -6252.8603 6.4976887 3701.2972 637.50208 -10591.66 0 311.4057 0.00052315025 0.00050771979 + 12560 -6246.051 -6252.8484 6.7973862 3704.2804 638.70776 -10595.837 0 325.76888 0.00059065157 0.00058061123 + 12570 -6245.6604 -6252.875 7.2145725 3708.6107 638.87803 -10600.364 0 345.76279 0.00054641305 0.00053994591 + 12580 -6245.161 -6252.9596 7.7985499 3713.5044 637.96911 -10604.433 0 373.75027 0.00040224305 0.00039478886 + 12590 -6244.5618 -6253.0385 8.4767043 3717.9297 636.1479 -10607.116 0 406.25123 0.00018825605 0.00017588933 + 12600 -6243.9163 -6252.9889 9.0725583 3720.7929 633.76932 -10607.551 0 434.8079 -5.125426e-05 -6.8744767e-05 + 12610 -6243.2964 -6252.7064 9.4100318 3721.1396 631.28594 -10605.132 0 450.98152 -0.00026446622 -0.00028348264 + 12620 -6242.7487 -6252.1792 9.4305383 3718.3816 629.12196 -10599.683 0 451.96431 -0.00040243201 -0.00041871398 + 12630 -6242.2743 -6251.5013 9.2269733 3712.5318 627.5612 -10591.594 0 442.20833 -0.00043296798 -0.00044520933 + 12640 -6241.8473 -6250.8176 8.970346 3704.3585 626.68795 -10581.864 0 429.90931 -0.0003536627 -0.0003643629 + 12650 -6241.4495 -6250.2502 8.8007291 3695.3425 626.39122 -10571.984 0 421.78032 -0.0001968978 -0.00020990394 + 12660 -6241.0889 -6249.8614 8.7725187 3687.3828 626.42088 -10563.665 0 420.42832 -2.2029754e-05 -3.9229553e-05 + 12670 -6240.7886 -6249.6655 8.8769502 3682.3131 626.4782 -10558.457 0 425.43326 0.00010389539 8.3849211e-05 + 12680 -6240.5651 -6249.6585 9.0934065 3681.3855 626.32192 -10557.366 0 435.80706 0.00012968707 0.00010987034 + 12690 -6240.4191 -6249.8303 9.4112109 3684.8981 625.86625 -10560.595 0 451.03803 3.8751819e-05 2.1279324e-05 + 12700 -6240.3456 -6250.1525 9.8069047 3692.0887 625.24055 -10567.482 0 470.0019 -0.00014353436 -0.00015914899 + 12710 -6240.3539 -6250.5608 10.206824 3701.3285 624.78186 -10576.671 0 489.16828 -0.00035590194 -0.00037220365 + 12720 -6240.4804 -6250.9576 10.477253 3710.5598 624.94511 -10586.462 0 502.12875 -0.00051883147 -0.00053822582 + 12730 -6240.7782 -6251.2441 10.465899 3717.848 626.14171 -10595.234 0 501.58459 -0.00055909845 -0.00058169149 + 12740 -6241.2873 -6251.3693 10.082019 3721.8843 628.55276 -10601.806 0 483.1869 -0.00043442069 -0.00045761731 + 12750 -6242.0002 -6251.3656 9.3653869 3722.2986 631.9935 -10605.658 0 448.84189 -0.00015022903 -0.00017050339 + 12760 -6242.8539 -6251.3411 8.487215 3719.7015 635.90504 -10606.948 0 406.75496 0.0002381741 0.00022273393 + 12770 -6243.7561 -6251.426 7.6699008 3715.4456 639.49843 -10606.37 0 367.58468 0.00064018421 0.00062863113 + 12780 -6244.6265 -6251.7039 7.0774045 3711.1778 641.99583 -10604.877 0 339.18893 0.00095659629 0.00094605534 + 12790 -6245.4206 -6252.1709 6.7503081 3708.3298 642.86112 -10603.362 0 323.51264 0.0011085919 0.0010964038 + 12800 -6246.1258 -6252.7424 6.6165745 3707.7173 641.93079 -10602.39 0 317.10338 0.0010589347 0.0010443405 + 12810 -6246.744 -6253.2963 6.5522743 3709.3553 639.42199 -10602.074 0 314.02175 0.00081995972 0.00080432302 + 12820 -6247.2771 -6253.7257 6.448637 3712.5114 635.84657 -10602.084 0 309.05487 0.00044820751 0.00043381323 + 12830 -6247.7211 -6253.9747 6.2535982 3715.9592 631.87333 -10601.807 0 299.70752 2.8324694e-05 1.6583007e-05 + 12840 -6248.0691 -6254.0417 5.9726014 3718.3646 628.17583 -10600.582 0 286.24057 -0.00034966813 -0.00035936645 + 12850 -6248.3208 -6253.9562 5.635376 3718.6991 625.29736 -10597.953 0 270.07884 -0.00061377919 -0.0006236096 + 12860 -6248.491 -6253.751 5.2599923 3716.5558 623.55725 -10593.864 0 252.08835 -0.00072706997 -0.00073894901 + 12870 -6248.6072 -6253.456 4.848833 3712.2625 623.01324 -10588.732 0 232.38328 -0.00069300914 -0.00070688252 + 12880 -6248.6954 -6253.1156 4.4202519 3706.7672 623.48431 -10583.367 0 211.84328 -0.0005484414 -0.00056224314 + 12890 -6248.7651 -6252.8057 4.0406515 3701.3545 624.62813 -10578.788 0 193.65069 -0.00034833495 -0.00035975135 + 12900 -6248.8068 -6252.6232 3.8163595 3697.3107 626.05397 -10575.988 0 182.90136 -0.00014873456 -0.00015725521 + 12910 -6248.8036 -6252.6449 3.8412692 3695.6329 627.43846 -10575.716 0 184.09517 6.8706766e-06 -6.0003402e-07 + 12920 -6248.7467 -6252.8844 4.1377311 3696.8321 628.60688 -10578.323 0 198.30329 9.5506331e-05 8.62741e-05 + 12930 -6248.6437 -6253.2785 4.6348227 3700.8368 629.55418 -10583.67 0 222.12671 0.00011695904 0.00010434346 + 12940 -6248.515 -6253.7132 5.1982401 3706.9999 630.4031 -10591.116 0 249.12883 9.0913724e-05 7.5719808e-05 + 12950 -6248.3805 -6254.0706 5.690122 3714.2164 631.32145 -10599.608 0 272.70257 4.9677104e-05 3.4603131e-05 + 12960 -6248.2485 -6254.2713 6.0227846 3721.1485 632.43401 -10607.854 0 288.64563 2.7899798e-05 1.5670591e-05 + 12970 -6248.111 -6254.2913 6.1803007 3726.5203 633.76232 -10614.574 0 296.19468 5.1874149e-05 4.3288044e-05 + 12980 -6247.9511 -6254.1525 6.2013454 3729.41 635.20911 -10618.772 0 297.20327 0.00013145916 0.00012463168 + 12990 -6247.7582 -6253.8943 6.1360712 3729.4572 636.58498 -10619.936 0 294.07496 0.00025697281 0.00024843618 + 13000 -6247.5398 -6253.547 6.0072013 3726.9205 637.66039 -10618.128 0 287.89879 0.000402066 0.0003892172 + 13010 -6247.3206 -6253.1291 5.808552 3722.5618 638.22196 -10613.913 0 278.3784 0.000531992 0.00051518094 + 13020 -6247.1238 -6252.6699 5.5461144 3717.4021 638.11723 -10608.189 0 265.80092 0.00061457599 0.00059702288 + 13030 -6246.9499 -6252.2331 5.283258 3712.4485 637.28004 -10601.962 0 253.20337 0.00062935677 0.0006146752 + 13040 -6246.7706 -6251.9099 5.1393141 3708.4948 635.73685 -10596.142 0 246.30477 0.00057090222 0.00056010833 + 13050 -6246.5449 -6251.7755 5.2305394 3706.0381 633.59834 -10591.412 0 250.6768 0.0004458938 0.00043636636 + 13060 -6246.2454 -6251.8419 5.5964352 3705.2775 631.04353 -10588.163 0 268.21257 0.00026768416 0.00025496598 + 13070 -6245.8765 -6252.046 6.1694555 3706.1302 628.30353 -10586.48 0 295.67493 5.3142609e-05 3.4185858e-05 + 13080 -6245.4718 -6252.2835 6.8116764 3708.236 625.64958 -10586.169 0 326.45375 -0.00017613593 -0.00020073438 + 13090 -6245.0736 -6252.4653 7.3917651 3710.9735 623.38331 -10586.822 0 354.25486 -0.00039040924 -0.00041677805 + 13100 -6244.7089 -6252.5577 7.848794 3713.545 621.82103 -10587.924 0 376.15825 -0.00055082667 -0.00057445877 + 13110 -6244.3789 -6252.5802 8.2012964 3715.1582 621.26126 -10589 0 393.05214 -0.00061477302 -0.00063351911 + 13120 -6244.0701 -6252.5693 8.4992763 3715.2777 621.92995 -10589.777 0 407.33301 -0.00054779174 -0.00056309372 + 13130 -6243.7771 -6252.5348 8.7577243 3713.8578 623.90911 -10590.302 0 419.71929 -0.00033816136 -0.00035368932 + 13140 -6243.5175 -6252.443 8.9254557 3711.4409 627.06835 -10590.952 0 427.75792 -7.6076961e-06 -2.6385368e-05 + 13150 -6243.3246 -6252.2428 8.9182033 3709.0449 631.03032 -10592.318 0 427.41034 0.00038794102 0.00036566452 + 13160 -6243.2233 -6251.9149 8.6916252 3707.8519 635.20351 -10594.97 0 416.55145 0.00076998465 0.0007465082 + 13170 -6243.2114 -6251.5025 8.2911558 3708.8077 638.89815 -10599.208 0 397.35871 0.0010584501 0.0010365261 + 13180 -6243.264 -6251.0985 7.8345555 3712.2783 641.5023 -10604.879 0 375.47586 0.001194861 0.0011758021 + 13190 -6243.3541 -6250.8004 7.4463308 3717.8775 642.65562 -10611.334 0 356.86995 0.0011598882 0.0011433999 + 13200 -6243.4697 -6250.6733 7.2035491 3724.5103 642.34859 -10617.532 0 345.23449 0.00097984247 0.00096514985 + 13210 -6243.6138 -6250.7429 7.1290601 3730.6253 640.90482 -10622.273 0 341.66456 0.00071975947 0.00070644688 + 13220 -6243.7953 -6251.0087 7.2133999 3734.6263 638.85528 -10624.49 0 345.7066 0.00046382816 0.0004515635 + 13230 -6244.0265 -6251.4487 7.4222755 3735.3482 636.7554 -10623.552 0 355.71709 0.00028785506 0.00027575439 + 13240 -6244.3303 -6252.0067 7.6764365 3732.451 635.01178 -10619.47 0 367.89791 0.00023284615 0.0002197302 + 13250 -6244.7441 -6252.5843 7.8402078 3726.5789 633.77582 -10612.939 0 375.74675 0.0002906983 0.0002762629 + 13260 -6245.3028 -6253.0658 7.7629787 3719.1949 632.93575 -10605.196 0 372.0455 0.00040925465 0.00039472172 + 13270 -6246.0039 -6253.3676 7.3637542 3712.1322 632.20665 -10597.706 0 352.91242 0.00051503626 0.00050218721 + 13280 -6246.7861 -6253.4754 6.6892394 3707.0321 631.28242 -10591.79 0 320.58589 0.00054299144 0.0005324151 + 13290 -6247.5502 -6253.4378 5.8875837 3704.8848 629.98722 -10588.31 0 282.16604 0.00045981919 0.00045024961 + 13300 -6248.2095 -6253.3294 5.1198938 3705.8298 628.36342 -10587.523 0 245.37404 0.00027271453 0.00026210105 + 13310 -6248.7276 -6253.2157 4.4880845 3709.2348 626.66842 -10589.119 0 215.09419 2.4174946e-05 1.1325045e-05 + 13320 -6249.116 -6253.1419 4.0259686 3713.9588 625.29682 -10592.398 0 192.947 -0.00022145836 -0.00023607334 + 13330 -6249.4065 -6253.1394 3.7328858 3718.6867 624.66358 -10596.49 0 178.90083 -0.00039492492 -0.00040961846 + 13340 -6249.6269 -6253.2329 3.6060781 3722.2628 625.08079 -10600.577 0 172.8235 -0.00043985303 -0.00045296193 + 13350 -6249.7896 -6253.4386 3.6490504 3723.9775 626.65571 -10604.072 0 174.88297 -0.00032871303 -0.00033983792 + 13360 -6249.8954 -6253.7531 3.8576038 3723.7476 629.23693 -10606.738 0 184.87802 -7.2878948e-05 -8.3409643e-05 + 13370 -6249.9436 -6254.1402 4.1965561 3722.1339 632.42804 -10608.702 0 201.12251 0.00027708919 0.00026455941 + 13380 -6249.9428 -6254.5263 4.583518 3720.1655 635.6716 -10610.363 0 219.6679 0.00064257398 0.00062581642 + 13390 -6249.9157 -6254.812 4.896243 3718.9985 638.38439 -10612.195 0 234.65544 0.00093765052 0.00091657602 + 13400 -6249.8915 -6254.9042 5.0126666 3719.5031 640.10544 -10614.513 0 240.23511 0.0010941773 0.001071595 + 13410 -6249.8883 -6254.7608 4.8725925 3721.9188 640.61107 -10617.291 0 233.52197 0.0010832823 0.0010636951 + 13420 -6249.8975 -6254.4221 4.5245076 3725.7243 639.95912 -10620.106 0 216.83979 0.00092476865 0.00091151077 + 13430 -6249.8866 -6254.0007 4.1141238 3729.7969 638.449 -10622.247 0 197.1719 0.00067923611 0.00067185674 + 13440 -6249.8204 -6253.6259 3.8055065 3732.812 636.51315 -10622.951 0 182.38122 0.00042498262 0.00041919607 + 13450 -6249.6886 -6253.3741 3.6855621 3733.7151 634.57809 -10621.667 0 176.63282 0.00022959079 0.0002203298 + 13460 -6249.5137 -6253.2423 3.7286932 3732.0624 632.94013 -10618.245 0 178.6999 0.00012888701 0.00011420606 + 13470 -6249.3317 -6253.1823 3.8505963 3728.1137 631.69587 -10612.992 0 184.54218 0.00012111309 0.00010365401 + 13480 -6249.1609 -6253.1602 3.9992654 3722.6942 630.75076 -10606.605 0 191.66724 0.00017539679 0.00016014014 + 13490 -6248.9847 -6253.1849 4.2001621 3716.9364 629.90174 -10600.023 0 201.29533 0.00024754947 0.00023777153 + 13500 -6248.7631 -6253.283 4.5199504 3712.0059 628.96061 -10594.25 0 216.62139 0.00029600831 0.00029074611 + 13510 -6248.4634 -6253.45 4.9865941 3708.8687 627.86751 -10590.186 0 238.98557 0.0002940316 0.00028891575 + 13520 -6248.0881 -6253.624 5.5359468 3708.1098 626.74743 -10588.481 0 265.31363 0.00023690823 0.00022752025 + 13530 -6247.6785 -6253.7077 6.0291651 3709.8149 625.88572 -10589.408 0 288.95142 0.00014343046 0.00012857722 + 13540 -6247.292 -6253.6229 6.3309263 3713.5445 625.63091 -10592.798 0 303.41351 5.0768979e-05 3.3284557e-05 + 13550 -6246.9659 -6253.3612 6.3952673 3718.4344 626.26372 -10598.059 0 306.49709 3.1059571e-06 -1.2405555e-05 + 13560 -6246.6962 -6252.9957 6.2994824 3723.4265 627.88627 -10604.308 0 301.90654 3.6841836e-05 2.5922727e-05 + 13570 -6246.445 -6252.6438 6.1988148 3727.5743 630.37445 -10610.592 0 297.08199 0.00016713343 0.00015890913 + 13580 -6246.1736 -6252.3997 6.2261556 3730.315 633.40667 -10616.121 0 298.39231 0.00038066901 0.00036949955 + 13590 -6245.8769 -6252.2789 6.4019968 3731.5906 636.5491 -10620.419 0 306.81961 0.00063803768 0.00061846823 + 13600 -6245.5925 -6252.2142 6.6217175 3731.7529 639.36107 -10623.328 0 317.34986 0.00088612079 0.00085731447 + 13610 -6245.3758 -6252.1148 6.7390093 3731.3026 641.48643 -10624.904 0 322.97114 0.0010767299 0.001043924 + 13620 -6245.2554 -6251.9464 6.690975 3730.6104 642.70945 -10625.266 0 320.66907 0.0011835481 0.0011549131 + 13630 -6245.2057 -6251.7733 6.5676008 3729.7817 642.96709 -10624.522 0 314.75628 0.0012084636 0.0011892599 + 13640 -6245.1603 -6251.7201 6.5598231 3728.7328 642.32175 -10622.775 0 314.38353 0.0011732001 0.0011615965 + 13650 -6245.0613 -6251.8731 6.8118421 3727.4042 640.91044 -10620.188 0 326.46169 0.0011011003 0.0010892106 + 13660 -6244.9077 -6252.1947 7.2870253 3725.9371 638.8941 -10617.026 0 349.23514 0.0010010333 0.0009808809 + 13670 -6244.7623 -6252.5265 7.7642582 3724.6648 636.42828 -10613.62 0 372.10682 0.00086484026 0.00083478043 + 13680 -6244.7049 -6252.6936 7.988637 3723.9074 633.66458 -10610.265 0 382.86031 0.00068048176 0.0006466837 + 13690 -6244.7674 -6252.63 7.8625982 3723.7182 630.77746 -10607.126 0 376.81982 0.00045102059 0.00042252449 + 13700 -6244.9087 -6252.4205 7.511792 3723.7879 627.99843 -10604.207 0 360.00722 0.0002048193 0.00018641531 + 13710 -6245.053 -6252.2225 7.1694464 3723.5935 625.632 -10601.448 0 343.6001 -1.0364232e-05 -2.1276554e-05 + 13720 -6245.1533 -6252.1423 6.9890647 3722.6955 624.02952 -10598.867 0 334.9552 -0.0001444897 -0.00015475888 + 13730 -6245.2205 -6252.1681 6.9476697 3720.9927 623.51345 -10596.674 0 332.97132 -0.00016272407 -0.00017732477 + 13740 -6245.3015 -6252.2074 6.9059609 3718.7983 624.27078 -10595.277 0 330.9724 -5.5625914e-05 -7.40122e-05 + 13750 -6245.4299 -6252.1837 6.7537791 3716.7392 626.259 -10595.182 0 323.67899 0.00015912824 0.00014146745 + 13760 -6245.5959 -6252.1047 6.5087964 3715.5703 629.17315 -10596.848 0 311.93804 0.00044082838 0.00042760743 + 13770 -6245.7576 -6252.0515 6.2939045 3715.988 632.50081 -10600.54 0 301.63922 0.0007334555 0.00072404646 + 13780 -6245.8789 -6252.1082 6.2292526 3718.4633 635.65339 -10606.225 0 298.54074 0.00097688832 0.00096679729 + 13790 -6245.9601 -6252.2943 6.3342095 3723.0824 638.12916 -10613.506 0 303.57086 0.0011215167 0.0011061365 + 13800 -6246.0382 -6252.5482 6.5099907 3729.4095 639.65088 -10621.609 0 311.99528 0.001143735 0.0011222621 + 13810 -6246.1604 -6252.771 6.6105962 3736.4388 640.22769 -10629.437 0 316.81686 0.0010568419 0.0010332854 + 13820 -6246.3465 -6252.8977 6.5511755 3742.7233 640.11596 -10635.737 0 313.96909 0.0009107035 0.0008909701 + 13830 -6246.5717 -6252.9415 6.3698199 3746.7219 639.69196 -10639.355 0 305.27751 0.00077599151 0.00076308481 + 13840 -6246.7862 -6252.9695 6.1833179 3747.2971 639.28754 -10639.554 0 296.33929 0.00071591899 0.00070729036 + 13850 -6246.9593 -6253.0289 6.0696207 3744.1692 639.05515 -10636.253 0 290.89028 0.00075743156 0.00074707484 + 13860 -6247.1069 -6253.0974 5.9904587 3738.0877 638.91273 -10630.098 0 287.09639 0.00087747356 0.00086101058 + 13870 -6247.2759 -6253.109 5.8330359 3730.6036 638.58662 -10622.299 0 279.55181 0.0010128889 0.00099096527 + 13880 -6247.502 -6253.027 5.5250546 3723.5419 637.73766 -10614.307 0 264.79162 0.0010887505 0.001065878 + 13890 -6247.7835 -6252.8891 5.1055508 3718.4234 636.1252 -10607.438 0 244.68664 0.0010500469 0.0010305354 + 13900 -6248.0932 -6252.784 4.6907695 3716.0685 633.74416 -10602.597 0 224.80799 0.00088231856 0.00086727206 + 13910 -6248.4089 -6252.7904 4.3815642 3716.4813 630.87531 -10600.147 0 209.98914 0.00061512792 0.00060273508 + 13920 -6248.7326 -6252.9333 4.2007209 3718.9844 628.02366 -10599.941 0 201.32211 0.00031056123 0.00029858365 + 13930 -6249.0824 -6253.1849 4.1025436 3722.5116 625.76859 -10601.465 0 196.61691 4.2976153e-05 3.076776e-05 + 13940 -6249.4691 -6253.4964 4.0272787 3725.9594 624.58663 -10604.042 0 193.00979 -0.00012314077 -0.00013464813 + 13950 -6249.8811 -6253.8257 3.9445142 3728.5032 624.71533 -10607.044 0 189.04325 -0.00015088868 -0.00016064933 + 13960 -6250.2892 -6254.1441 3.8549157 3729.7953 626.10327 -10610.043 0 184.74919 -3.945247e-05 -4.753556e-05 + 13970 -6250.6634 -6254.4269 3.7635465 3729.9973 628.44902 -10612.873 0 180.37026 0.00017835452 0.00017082944 + 13980 -6250.9865 -6254.645 3.6584267 3729.6498 631.29901 -10615.594 0 175.33234 0.0004476331 0.00043955166 + 13990 -6251.2557 -6254.7703 3.5145662 3729.4359 634.16459 -10618.371 0 168.43773 0.00070775023 0.00069897588 + 14000 -6251.4751 -6254.7926 3.3175798 3729.9202 636.62666 -10621.34 0 158.99704 0.00090858351 0.00090001398 + 14010 -6251.6473 -6254.7324 3.0851098 3731.3507 638.40829 -10624.491 0 147.85577 0.0010222327 0.0010149322 + 14020 -6251.7707 -6254.6374 2.8667421 3733.5832 639.40496 -10627.626 0 137.39037 0.0010470944 0.0010412309 + 14030 -6251.8421 -6254.5615 2.7193958 3736.1464 639.67008 -10630.378 0 130.3287 0.0010035325 0.0009980028 + 14040 -6251.8632 -6254.5372 2.6739382 3738.4101 639.3636 -10632.311 0 128.15012 0.00092332672 0.00091642839 + 14050 -6251.8435 -6254.5607 2.7171319 3739.7867 638.68071 -10633.028 0 130.22021 0.00083733174 0.00082799579 + 14060 -6251.797 -6254.6003 2.8032975 3739.894 637.78383 -10632.278 0 134.34974 0.00076600846 0.00075459637 + 14070 -6251.7334 -6254.6206 2.8871848 3738.6367 636.76067 -10630.018 0 138.37009 0.00071558038 0.00070355861 + 14080 -6251.6526 -6254.6043 2.9517063 3736.2044 635.62221 -10626.431 0 141.46233 0.00067981307 0.00066857283 + 14090 -6251.5453 -6254.5542 3.0089133 3733.0076 634.3387 -10621.9 0 144.20401 0.0006454822 0.00063534235 + 14100 -6251.4025 -6254.4801 3.0775728 3729.5818 632.89526 -10616.957 0 147.49456 0.00059916761 0.00058942948 + 14110 -6251.224 -6254.3866 3.1625785 3726.4754 631.33989 -10612.202 0 151.56851 0.00053346317 0.00052338298 + 14120 -6251.0185 -6254.2766 3.2580997 3724.1407 629.80145 -10608.219 0 156.14642 0.00045106216 0.00044071297 + 14130 -6250.7949 -6254.1644 3.3695364 3722.8504 628.47066 -10605.486 0 161.48709 0.00036530089 0.00035542089 + 14140 -6250.5543 -6254.0797 3.5254034 3722.6698 627.55478 -10604.304 0 168.95711 0.00029636984 0.00028738095 + 14150 -6250.2918 -6254.0488 3.7569752 3723.4918 627.22603 -10604.767 0 180.05533 0.00026415694 0.00025547969 + 14160 -6250.0073 -6254.0663 4.0589699 3725.1113 627.58146 -10606.759 0 194.52861 0.000280858 0.0002713572 + 14170 -6249.7142 -6254.0857 4.3714899 3727.2898 628.62334 -10609.999 0 209.50633 0.00034714963 0.00033626524 + 14180 -6249.4341 -6254.0417 4.6075877 3729.7842 630.261 -10614.087 0 220.82146 0.00045366978 0.00044198335 + 14190 -6249.1832 -6253.8886 4.7053555 3732.3495 632.3308 -10618.569 0 225.50703 0.00058609013 0.00057473365 + 14200 -6248.9636 -6253.6237 4.6601675 3734.7464 634.62758 -10622.998 0 223.34138 0.00073017726 0.00071980298 + 14210 -6248.7667 -6253.2852 4.518452 3736.7692 636.93771 -10626.992 0 216.54957 0.00087440753 0.00086478107 + 14220 -6248.5826 -6252.9359 4.3533341 3738.2787 639.0632 -10630.278 0 208.6362 0.0010101467 0.0010005208 + 14230 -6248.4029 -6252.649 4.2461051 3739.2234 640.83172 -10632.704 0 203.49718 0.0011304924 0.0011201103 + 14240 -6248.2205 -6252.4927 4.2721811 3739.6413 642.09583 -10634.23 0 204.74689 0.0012284502 0.0012167676 + 14250 -6248.0291 -6252.5089 4.4798079 3739.6421 642.73018 -10634.881 0 214.69753 0.0012949862 0.0012818104 + 14260 -6247.8257 -6252.692 4.8663184 3739.3661 642.63553 -10634.694 0 233.22128 0.0013183101 0.0013040383 + 14270 -6247.6117 -6252.9823 5.3705968 3738.921 641.75502 -10633.658 0 257.38913 0.0012860573 0.001271727 + 14280 -6247.3904 -6253.2824 5.8919909 3738.3194 640.10114 -10631.703 0 282.37726 0.0011905934 0.0011773754 + 14290 -6247.163 -6253.4906 6.3275958 3737.4491 637.78363 -10628.723 0 303.2539 0.001035207 0.0010234531 + 14300 -6246.9281 -6253.5358 6.6076983 3736.1046 635.02302 -10624.663 0 316.67798 0.00083755534 0.00082608325 + 14310 -6246.6857 -6253.3952 6.7094526 3734.0809 632.13764 -10619.614 0 321.55461 0.00062782386 0.00061426471 + 14320 -6246.4449 -6253.0916 6.6466184 3731.2982 629.5007 -10613.891 0 318.54325 0.00044209753 0.00042448881 + 14330 -6246.225 -6252.6826 6.457579 3727.8999 627.47374 -10608.056 0 309.48342 0.0003139519 0.00029251324 + 14340 -6246.0433 -6252.2545 6.2112071 3724.2749 626.33147 -10602.861 0 297.67589 0.00026713226 0.00024454243 + 14350 -6245.8996 -6251.914 6.0144692 3721.0044 626.20041 -10599.119 0 288.24711 0.00031022438 0.00028986368 + 14360 -6245.7715 -6251.7586 5.9871382 3718.7684 627.03355 -10597.561 0 286.93726 0.00043340163 0.00041699325 + 14370 -6245.6289 -6251.8308 6.2019367 3718.2323 628.63078 -10598.694 0 297.2316 0.00060857793 0.00059521979 + 14380 -6245.454 -6252.0862 6.6322202 3719.908 630.69761 -10602.692 0 317.85321 0.00079507621 0.00078225904 + 14390 -6245.2531 -6252.4027 7.1496032 3723.9859 632.92288 -10609.311 0 342.6491 0.0009510318 0.00093658792 + 14400 -6245.0533 -6252.6295 7.5762126 3730.1774 635.05306 -10617.86 0 363.09462 0.0010472996 0.0010308376 + 14410 -6244.8867 -6252.6497 7.7629966 3737.6484 636.94333 -10627.241 0 372.04636 0.0010784246 0.001061487 + 14420 -6244.7717 -6252.4295 7.6577967 3745.1116 638.57074 -10636.112 0 367.00459 0.0010657746 0.0010507392 + 14430 -6244.7019 -6252.0354 7.3335017 3751.0938 640.00408 -10643.133 0 351.46255 0.0010505988 0.0010388983 + 14440 -6244.6504 -6251.6073 6.9569189 3754.3194 641.33759 -10647.264 0 333.41459 0.0010782077 0.0010689804 + 14450 -6244.5902 -6251.2937 6.7034953 3754.0977 642.6095 -10648.001 0 321.26911 0.0011780065 0.0011684304 + 14460 -6244.515 -6251.1792 6.6642091 3750.5689 643.73491 -10645.483 0 319.38629 0.0013471236 0.001334605 + 14470 -6244.4437 -6251.2553 6.8116346 3744.6972 644.48259 -10640.435 0 326.45175 0.0015458368 0.0015303235 + 14480 -6244.4013 -6251.4529 7.0516287 3737.9927 644.51674 -10633.962 0 337.95361 0.0017087409 0.0016927781 + 14490 -6244.3945 -6251.7038 7.309288 3732.0647 643.50475 -10627.273 0 350.30209 0.0017677728 0.0017538628 + 14500 -6244.4071 -6251.9718 7.5647309 3728.1743 641.26299 -10621.409 0 362.54435 0.0016770337 0.0016647488 + 14510 -6244.4239 -6252.234 7.8101624 3726.9296 637.88491 -10617.049 0 374.30681 0.0014295373 0.0014154609 + 14520 -6244.4586 -6252.4464 7.9877973 3728.1777 633.78961 -10614.414 0 382.82007 0.0010615661 0.001042495 + 14530 -6244.5551 -6252.5474 7.992306 3731.0847 629.65553 -10613.288 0 383.03615 0.0006456034 0.00062206949 + 14540 -6244.7542 -6252.5078 7.7535653 3734.374 626.25202 -10613.134 0 371.59435 0.00027427452 0.00025076853 + 14550 -6245.0563 -6252.3781 7.3217341 3736.7004 624.22883 -10613.307 0 350.89858 3.7316341e-05 1.8588809e-05 + 14560 -6245.4184 -6252.2735 6.8551363 3737.0941 623.94201 -10613.31 0 328.53659 -4.7253557e-06 -1.7898888e-05 + 14570 -6245.7924 -6252.2931 6.5007077 3735.3414 625.37282 -10613.007 0 311.55039 0.00015785687 0.00014649664 + 14580 -6246.1653 -6252.4411 6.2758052 3732.1176 628.15149 -10612.71 0 300.7718 0.00047733743 0.0004632242 + 14590 -6246.5576 -6252.628 6.0704107 3728.7639 631.66357 -10613.055 0 290.92814 0.00086314476 0.00084496086 + 14600 -6246.9865 -6252.7502 5.7637337 3726.779 635.20747 -10614.737 0 276.23046 0.0012131235 0.001193347 + 14610 -6247.4364 -6252.7694 5.3330307 3727.2613 638.16876 -10618.199 0 255.58876 0.0014473935 0.0014294822 + 14620 -6247.8665 -6252.7259 4.8594439 3730.5422 640.16568 -10623.434 0 232.89182 0.0015302492 0.0015157766 + 14630 -6248.2415 -6252.6945 4.4530953 3736.1164 641.11858 -10629.93 0 213.41731 0.0014739058 0.0014621029 + 14640 -6248.5514 -6252.7334 4.1820249 3742.8311 641.21976 -10636.784 0 200.4261 0.0013271294 0.0013164418 + 14650 -6248.8082 -6252.8641 4.0559283 3749.224 640.82001 -10642.908 0 194.38284 0.001155763 0.001145479 + 14660 -6249.0291 -6253.0834 4.0542283 3753.9015 640.27836 -10647.263 0 194.30137 0.0010216277 0.0010121691 + 14670 -6249.2225 -6253.3803 4.1578168 3755.8729 639.83121 -10649.084 0 199.26591 0.00096479002 0.00095674039 + 14680 -6249.386 -6253.7391 4.3531041 3754.7778 639.52603 -10648.043 0 208.62517 0.00099323182 0.0009862766 + 14690 -6249.5153 -6254.1244 4.6091727 3750.9589 639.23718 -10644.32 0 220.89742 0.0010827003 0.0010755975 + 14700 -6249.6133 -6254.4709 4.8575359 3745.3534 638.74891 -10638.573 0 232.80038 0.001186945 0.0011785599 + 14710 -6249.6912 -6254.695 5.0037387 3739.2273 637.86591 -10631.788 0 239.80723 0.0012549688 0.0012453278 + 14720 -6249.7589 -6254.7286 4.9697314 3733.8308 636.50587 -10625.065 0 238.17741 0.0012490011 0.0012393162 + 14730 -6249.8162 -6254.5523 4.7361465 3730.0927 634.74168 -10619.387 0 226.98271 0.0011565471 0.0011481833 + 14740 -6249.8519 -6254.206 4.3541608 3728.4479 632.78514 -10615.439 0 208.67582 0.00099265513 0.00098595759 + 14750 -6249.852 -6253.7747 3.9227306 3728.8288 630.92745 -10613.531 0 187.99926 0.00079297339 0.00078687662 + 14760 -6249.8088 -6253.3587 3.5499053 3730.7858 629.46457 -10613.609 0 170.13138 0.00060168621 0.00059431032 + 14770 -6249.7241 -6253.0441 3.3200433 3733.6675 628.63439 -10615.346 0 159.1151 0.00045942294 0.00044917159 + 14780 -6249.6052 -6252.8836 3.2783723 3736.7961 628.58012 -10618.26 0 157.118 0.00039486941 0.00038132316 + 14790 -6249.4568 -6252.8894 3.4325935 3739.5973 629.34033 -10621.827 0 164.50914 0.00042138023 0.00040549541 + 14800 -6249.2736 -6253.0376 3.7639982 3741.6777 630.85712 -10625.572 0 180.39191 0.00053772718 0.00052127938 + 14810 -6249.0386 -6253.2776 4.2389766 3742.8586 632.99304 -10629.129 0 203.15554 0.00073098523 0.0007155925 + 14820 -6248.7283 -6253.5427 4.8143801 3743.1832 635.55052 -10632.276 0 230.73211 0.00097952942 0.00096578615 + 14830 -6248.3248 -6253.7596 5.4347887 3742.9029 638.29011 -10634.953 0 260.46557 0.0012549438 0.0012421588 + 14840 -6247.83 -6253.8567 6.026699 3742.4359 640.94558 -10637.238 0 288.83323 0.0015230892 0.0015098446 + 14850 -6247.2737 -6253.7765 6.5028786 3742.2783 643.23649 -10639.291 0 311.65443 0.0017460985 0.0017313235 + 14860 -6246.7071 -6253.4955 6.788401 3742.8626 644.88439 -10641.242 0 325.33827 0.00188739 0.0018711564 + 14870 -6246.1824 -6253.0409 6.8585416 3744.3938 645.64305 -10643.078 0 328.6998 0.0019198448 0.0019032433 + 14880 -6245.7321 -6252.4894 6.7573069 3746.7272 645.34847 -10644.565 0 323.84806 0.001834309 0.0018186105 + 14890 -6245.3638 -6251.9414 6.5776265 3749.3475 643.9782 -10645.267 0 315.23677 0.0016445211 0.0016304118 + 14900 -6245.0673 -6251.4869 6.4196121 3751.4682 641.69339 -10644.648 0 307.66383 0.0013863051 0.0013736489 + 14910 -6244.8263 -6251.1817 6.3553911 3752.2306 638.83561 -10642.248 0 304.586 0.0011110762 0.0010991142 + 14920 -6244.6272 -6251.0397 6.4124963 3750.9571 635.86593 -10637.863 0 307.3228 0.00087481958 0.00086265513 + 14930 -6244.4645 -6251.0409 6.576392 3747.3884 633.25795 -10631.687 0 315.1776 0.00072466749 0.000711866 + 14940 -6244.3384 -6251.1493 6.810902 3741.83 631.3775 -10624.357 0 326.41664 0.00068649437 0.00067335388 + 14950 -6244.2487 -6251.3338 7.0850541 3735.1562 630.39139 -10616.881 0 339.55554 0.00075736915 0.00074449361 + 14960 -6244.1904 -6251.5755 7.3851626 3728.6621 630.23986 -10610.478 0 353.93843 0.00090553768 0.00089298338 + 14970 -6244.1561 -6251.8577 7.7015622 3723.7938 630.68298 -10606.334 0 369.10208 0.0010784861 0.001065261 + 14980 -6244.1444 -6252.1463 8.0019451 3721.8048 631.40322 -10605.354 0 383.49811 0.0012174907 0.0012019995 + 14990 -6244.1654 -6252.3815 8.2160747 3723.4134 632.12572 -10607.921 0 393.7604 0.0012753304 0.001256646 + 15000 -6244.2375 -6252.4905 8.2529369 3728.5456 632.71319 -10613.749 0 395.52704 0.0012325773 0.001211637 + 15010 -6244.3728 -6252.4254 8.0526192 3736.2566 633.20388 -10621.886 0 385.92669 0.0011071624 0.0010866555 + 15020 -6244.5596 -6252.203 7.6434066 3744.8949 633.78384 -10630.882 0 366.31493 0.00095238365 0.00093484421 + 15030 -6244.7613 -6251.9126 7.1513619 3752.5098 634.70838 -10639.131 0 342.73339 0.00084137447 0.00082675432 + 15040 -6244.938 -6251.6723 6.734248 3757.4042 636.19845 -10645.275 0 322.74295 0.00084151607 0.00082664662 + 15050 -6245.0768 -6251.5596 6.4827826 3758.6429 638.33536 -10648.538 0 310.69132 0.00098797542 0.00096901033 + 15060 -6245.2009 -6251.5774 6.3764493 3756.3158 640.97749 -10648.871 0 305.59523 0.0012674927 0.0012434173 + 15070 -6245.3478 -6251.6819 6.3340836 3751.458 643.73152 -10646.871 0 303.56483 0.0016195859 0.0015934733 + 15080 -6245.5364 -6251.8402 6.3038395 3745.6849 646.01289 -10643.538 0 302.11536 0.0019544724 0.001931218 + 15090 -6245.7533 -6252.055 6.3017304 3740.6967 647.20133 -10639.953 0 302.01428 0.0021801045 0.0021627344 + 15100 -6245.9685 -6252.3383 6.3698 3737.8156 646.8456 -10637 0 305.27656 0.0022286922 0.0022164379 + 15110 -6246.1626 -6252.6691 6.5065243 3737.6621 644.83527 -10635.167 0 311.82915 0.0020755474 0.0020649812 + 15120 -6246.3406 -6252.9799 6.639386 3740.0255 641.46494 -10634.47 0 318.19663 0.0017465151 0.0017344158 + 15130 -6246.5244 -6253.1878 6.6634566 3743.9491 637.36315 -10634.5 0 319.35023 0.0013124539 0.0012979785 + 15140 -6246.7318 -6253.2438 6.5120141 3748.011 633.31601 -10634.571 0 312.09225 0.00087127088 0.00085591885 + 15150 -6246.9606 -6253.1602 6.1996016 3750.7415 630.05661 -10633.958 0 297.11969 0.00052149869 0.00050734015 + 15160 -6247.1919 -6252.9959 5.8039683 3751.0694 628.09438 -10632.16 0 278.15873 0.00033536244 0.00032335353 + 15170 -6247.4059 -6252.816 5.4101517 3748.6614 627.62684 -10629.104 0 259.28483 0.00034044768 0.00033016478 + 15180 -6247.5925 -6252.6627 5.0702237 3744.0361 628.53589 -10625.235 0 242.99357 0.00051563563 0.00050609872 + 15190 -6247.7509 -6252.5559 4.8049901 3738.4142 630.44995 -10621.42 0 230.28209 0.00080098833 0.00079135453 + 15200 -6247.8826 -6252.5089 4.6262876 3733.3643 632.85102 -10618.724 0 221.71766 0.001116689 0.0011062736 + 15210 -6247.9893 -6252.5352 4.5459365 3730.3662 635.20717 -10618.109 0 217.86678 0.0013848966 0.0013730477 + 15220 -6248.0758 -6252.6415 4.5657081 3730.4139 637.10336 -10620.159 0 218.81435 0.0015493324 0.0015357265 + 15230 -6248.1509 -6252.8208 4.6698915 3733.7503 638.33562 -10624.907 0 223.8074 0.0015885437 0.0015735997 + 15240 -6248.2216 -6253.0563 4.8346232 3739.7919 638.93777 -10631.786 0 231.70227 0.0015194981 0.0015041719 + 15250 -6248.2875 -6253.3275 5.0400165 3747.2709 639.13086 -10639.729 0 241.54587 0.0013897117 0.0013746475 + 15260 -6248.3432 -6253.6073 5.2640487 3754.5666 639.21536 -10647.389 0 252.28275 0.0012597033 0.0012446739 + 15270 -6248.3868 -6253.8515 5.4646832 3760.1289 639.447 -10653.427 0 261.89828 0.0011820474 0.0011663879 + 15280 -6248.424 -6254.0043 5.5803123 3762.8583 639.94116 -10656.804 0 267.43987 0.0011851985 0.0011686992 + 15290 -6248.4615 -6254.0209 5.5593753 3762.3362 640.63675 -10656.994 0 266.43646 0.0012674069 0.0012505759 + 15300 -6248.4992 -6253.8908 5.3916248 3758.8674 641.32594 -10654.084 0 258.39691 0.0014006675 0.0013841757 + 15310 -6248.5295 -6253.6408 5.1113238 3753.3548 641.73113 -10648.727 0 244.96332 0.0015411274 0.0015252665 + 15320 -6248.5436 -6253.3211 4.7774779 3747.0496 641.5965 -10641.967 0 228.96355 0.001642167 0.0016268943 + 15330 -6248.535 -6252.9911 4.4561538 3741.2423 640.76452 -10634.998 0 213.56389 0.0016671782 0.0016524187 + 15340 -6248.4979 -6252.7114 4.2135707 3736.9759 639.22088 -10628.908 0 201.93795 0.0015991224 0.0015848076 + 15350 -6248.4252 -6252.5336 4.1083506 3734.8564 637.10285 -10624.493 0 196.89521 0.0014442041 0.0014301287 + 15360 -6248.3093 -6252.4851 4.1757991 3734.9913 634.67333 -10622.15 0 200.12772 0.0012288248 0.0012147778 + 15370 -6248.144 -6252.5595 4.4155245 3737.0379 632.26819 -10621.866 0 211.61671 0.00099176861 0.00097797655 + 15380 -6247.9231 -6252.7216 4.798426 3740.3186 630.231 -10623.271 0 229.9675 0.00077522663 0.00076249057 + 15390 -6247.6366 -6252.9268 5.2901369 3743.9739 628.85366 -10625.754 0 253.53304 0.00061754099 0.00060651943 + 15400 -6247.2706 -6253.1358 5.8652426 3747.1415 628.33908 -10628.616 0 281.09533 0.00054828872 0.00053836025 + 15410 -6246.8176 -6253.3086 6.49101 3749.1451 628.79059 -10631.244 0 311.08562 0.00058475565 0.00057374157 + 15420 -6246.2942 -6253.3889 7.0947462 3749.6534 630.21806 -10633.26 0 340.02005 0.0007292204 0.00071475745 + 15430 -6245.7469 -6253.3054 7.5585751 3748.7547 632.54171 -10634.602 0 362.24933 0.00096778385 0.00094948796 + 15440 -6245.2355 -6253.0057 7.7702425 3746.9201 635.58134 -10635.507 0 372.39362 0.0012717568 0.0012521366 + 15450 -6244.7995 -6252.5031 7.7035435 3744.8694 639.03678 -10636.409 0 369.19703 0.0016013114 0.0015841358 + 15460 -6244.4356 -6251.895 7.4594206 3743.3944 642.4846 -10637.774 0 357.49729 0.0019099092 0.0018970436 + 15470 -6244.107 -6251.3269 7.2199552 3743.1837 645.41958 -10639.93 0 346.02076 0.0021488947 0.0021383189 + 15480 -6243.7776 -6250.919 7.1413706 3744.6682 647.35108 -10642.938 0 342.25455 0.0022738698 0.0022608061 + 15490 -6243.4419 -6250.709 7.2670448 3747.8813 647.93278 -10646.523 0 348.27756 0.0022548584 0.002235262 + 15500 -6243.1272 -6250.6512 7.5240411 3752.3498 647.07763 -10650.079 0 360.59427 0.0020890272 0.0020626263 + 15510 -6242.8699 -6250.6675 7.7976228 3757.0784 645.0058 -10652.752 0 373.70584 0.0018099721 0.0017804149 + 15520 -6242.6872 -6250.7064 8.0192308 3760.7047 642.19546 -10653.607 0 384.32654 0.0014857221 0.001457784 + 15530 -6242.5672 -6250.7653 8.1981394 3761.8548 639.24837 -10651.868 0 392.90084 0.0012016039 0.001177837 + 15540 -6242.4868 -6250.8655 8.3786656 3759.619 636.72011 -10647.205 0 401.55267 0.0010325171 0.001012115 + 15550 -6242.4379 -6251.0115 8.5736678 3753.9605 634.97442 -10639.946 0 410.89827 0.0010163256 0.00099682105 + 15560 -6242.4347 -6251.1793 8.7445775 3745.8592 634.10302 -10631.141 0 419.08922 0.0011403377 0.0011200254 + 15570 -6242.4989 -6251.339 8.8401109 3737.1044 633.92734 -10622.371 0 423.66772 0.001345964 0.0013246376 + 15580 -6242.6418 -6251.4787 8.8368773 3729.8121 634.08021 -10615.371 0 423.51274 0.001548366 0.001526364 + 15590 -6242.8647 -6251.5994 8.73471 3725.8346 634.14727 -10611.581 0 418.61631 0.001663789 0.0016412653 + 15600 -6243.1677 -6251.6967 8.5289339 3726.2309 633.82708 -10611.755 0 408.75437 0.0016370446 0.0016144393 + 15610 -6243.5506 -6251.7609 8.2102557 3730.9339 633.05651 -10615.751 0 393.48152 0.0014617745 0.0014403466 + 15620 -6244.0007 -6251.7964 7.7956925 3738.7296 632.05634 -10622.582 0 373.61332 0.0011862099 0.0011672911 + 15630 -6244.4882 -6251.8306 7.3424632 3747.5949 631.27607 -10630.702 0 351.89204 0.00090004377 0.00088360285 + 15640 -6244.9801 -6251.8952 6.9150127 3755.3111 631.24677 -10638.453 0 331.40621 0.00070508134 0.00068947585 + 15650 -6245.4582 -6251.998 6.5398131 3760.131 632.38139 -10644.51 0 313.42454 0.00068015909 0.00066365342 + 15660 -6245.9202 -6252.1225 6.2022916 3761.2533 634.78961 -10648.165 0 297.24862 0.00085389399 0.00083633847 + 15670 -6246.3667 -6252.2543 5.8875338 3758.9641 638.18501 -10649.403 0 282.16365 0.0011949954 0.0011778761 + 15680 -6246.7886 -6252.4047 5.6161423 3754.4527 641.93397 -10648.791 0 269.15705 0.0016221378 0.0016070265 + 15690 -6247.1682 -6252.6058 5.4375901 3749.4011 645.23339 -10647.24 0 260.59983 0.0020283061 0.0020152411 + 15700 -6247.4909 -6252.8777 5.3868201 3745.4836 647.34784 -10645.709 0 258.16664 0.0023108656 0.0022981102 + 15710 -6247.7569 -6253.1957 5.4388761 3743.9056 647.8186 -10644.92 0 260.66146 0.0023987706 0.002384251 + 15720 -6247.983 -6253.4831 5.5001796 3745.0859 646.57822 -10645.147 0 263.59947 0.0022706902 0.0022540619 + 15730 -6248.1914 -6253.6468 5.4553633 3748.5498 643.94415 -10646.141 0 261.45162 0.0019602734 0.0019438041 + 15740 -6248.39 -6253.6369 5.2469472 3753.0638 640.50696 -10647.208 0 251.46315 0.001546906 0.0015339754 + 15750 -6248.5606 -6253.4869 4.9263069 3757.0027 636.96034 -10647.45 0 236.09627 0.0011333125 0.0011253627 + 15760 -6248.6709 -6253.2945 4.6235551 3758.8642 633.93067 -10646.089 0 221.5867 0.00081575439 0.00081035144 + 15770 -6248.7021 -6253.1538 4.4516904 3757.7712 631.84973 -10642.775 0 213.34998 0.00065648991 0.00064865404 + 15780 -6248.6698 -6253.0962 4.4263625 3753.7673 630.88901 -10637.752 0 212.13613 0.00066846474 0.00065453521 + 15790 -6248.6167 -6253.0892 4.4725155 3747.7852 630.95785 -10631.832 0 214.34804 0.00081746052 0.00079821876 + 15800 -6248.582 -6253.0892 4.5072306 3741.3208 631.76191 -10626.172 0 216.01178 0.0010392844 0.0010195549 + 15810 -6248.5734 -6253.0928 4.5194212 3735.9736 632.91075 -10621.977 0 216.59602 0.0012635406 0.0012485568 + 15820 -6248.5623 -6253.1404 4.5781097 3733.0329 634.04647 -10620.22 0 219.40871 0.0014344105 0.0014258474 + 15830 -6248.5069 -6253.2745 4.7676324 3733.2194 634.95129 -10621.445 0 228.49169 0.0015223196 0.0015169383 + 15840 -6248.3837 -6253.4853 5.1015786 3736.5936 635.59634 -10625.675 0 244.49627 0.0015254298 0.0015173026 + 15850 -6248.21 -6253.6881 5.4780354 3742.5915 636.1173 -10632.397 0 262.5382 0.0014639117 0.0014488285 + 15860 -6248.0377 -6253.7559 5.7182133 3750.1376 636.731 -10640.625 0 274.04886 0.0013715882 0.0013506091 + 15870 -6247.9177 -6253.6002 5.6825006 3757.8158 637.62855 -10649.045 0 272.33731 0.0012882208 0.0012673763 + 15880 -6247.8586 -6253.2475 5.3888708 3764.1097 638.88788 -10656.245 0 258.26493 0.0012522911 0.0012379829 + 15890 -6247.8152 -6252.8424 5.0271727 3767.7265 640.43855 -10661.007 0 240.93033 0.0012920384 0.0012855674 + 15900 -6247.7248 -6252.5592 4.8344276 3767.9483 642.08381 -10662.591 0 231.6929 0.0014149592 0.001411065 + 15910 -6247.5589 -6252.4843 4.9253837 3764.8701 643.55801 -10660.912 0 236.05202 0.0016009138 0.0015919695 + 15920 -6247.3462 -6252.569 5.2227653 3759.3812 644.58907 -10656.539 0 250.30422 0.0018052851 0.0017875828 + 15930 -6247.1464 -6252.6882 5.5418495 3752.8703 644.94911 -10650.508 0 265.59652 0.0019733031 0.0019499011 + 15940 -6246.9994 -6252.7437 5.7443529 3746.7872 644.49271 -10644.024 0 275.30162 0.0020588017 0.0020366395 + 15950 -6246.8959 -6252.7207 5.8248917 3742.2654 643.18558 -10638.172 0 279.16149 0.0020375368 0.0020216811 + 15960 -6246.7913 -6252.6629 5.8715574 3739.9281 641.1194 -10633.71 0 281.39797 0.0019098089 0.0018998182 + 15970 -6246.6469 -6252.608 5.9611025 3739.8759 638.50559 -10630.989 0 285.68948 0.0016950056 0.0016859485 + 15980 -6246.4594 -6252.5506 6.0911874 3741.7715 635.64705 -10629.969 0 291.92388 0.0014245228 0.0014111225 + 15990 -6246.2602 -6252.4564 6.1962383 3744.9509 632.89527 -10630.303 0 296.95851 0.0011371274 0.0011175604 + 16000 -6246.0903 -6252.3065 6.2161407 3748.5394 630.60337 -10631.449 0 297.91234 0.00087630301 0.00085318554 + 16010 -6245.9721 -6252.1299 6.1578208 3751.591 629.08256 -10632.804 0 295.11733 0.00068692973 0.00066526374 + 16020 -6245.8946 -6252.0029 6.1083318 3753.2692 628.5644 -10633.837 0 292.74553 0.00060929848 0.00059292162 + 16030 -6245.8215 -6252.0109 6.1894642 3753.0637 629.1686 -10634.243 0 296.63385 0.000670129 0.00065900268 + 16040 -6245.7177 -6252.192 6.4743672 3750.994 630.87604 -10634.062 0 310.28801 0.00087227194 0.00086255403 + 16050 -6245.5778 -6252.4954 6.917592 3747.7003 633.50937 -10633.705 0 331.52982 0.0011872866 0.0011743281 + 16060 -6245.4346 -6252.7925 7.3578399 3744.3248 636.7308 -10633.848 0 352.62897 0.0015564857 0.0015385028 + 16070 -6245.3361 -6252.9425 7.6064112 3742.1727 640.07306 -10635.188 0 364.54191 0.001903501 0.0018828833 + 16080 -6245.3085 -6252.8701 7.5616433 3742.2744 643.01598 -10638.16 0 362.39638 0.0021552328 0.0021363861 + 16090 -6245.3362 -6252.601 7.2648457 3745.0299 645.10061 -10642.731 0 348.17217 0.0022628624 0.0022484264 + 16100 -6245.3753 -6252.2368 6.8614853 3750.0693 646.047 -10648.353 0 328.84087 0.0022146332 0.0022031927 + 16110 -6245.3883 -6251.8918 6.5034725 3756.3547 645.83118 -10654.078 0 311.68289 0.0020368523 0.0020239899 + 16120 -6245.3707 -6251.6373 6.2666568 3762.4525 644.68866 -10658.779 0 300.33336 0.0017849991 0.0017668665 + 16130 -6245.3501 -6251.4898 6.139687 3766.876 643.03904 -10661.405 0 294.24825 0.0015293136 0.0015058473 + 16140 -6245.3597 -6251.4404 6.0806726 3768.4176 641.35483 -10661.213 0 291.41995 0.0013383264 0.0013134443 + 16150 -6245.4088 -6251.4899 6.0811042 3766.4361 640.0174 -10657.943 0 291.44063 0.001262064 0.0012406824 + 16160 -6245.4764 -6251.6499 6.1734782 3761.063 639.20649 -10651.919 0 295.86772 0.001317061 0.001301512 + 16170 -6245.5318 -6251.9112 6.3794353 3753.2698 638.85697 -10644.038 0 305.73834 0.0014778744 0.0014666715 + 16180 -6245.5602 -6252.2199 6.6597068 3744.7194 638.69469 -10635.634 0 319.17052 0.0016809717 0.0016704892 + 16190 -6245.5722 -6252.4951 6.922842 3737.3823 638.34137 -10628.219 0 331.78143 0.0018431708 0.001830256 + 16200 -6245.5923 -6252.6742 7.0819667 3733.0055 637.46111 -10623.141 0 339.40758 0.0018894856 0.0018728891 + 16210 -6245.6439 -6252.7446 7.1007079 3732.6053 635.9062 -10621.256 0 340.30576 0.0017798545 0.0017601665 + 16220 -6245.7447 -6252.738 6.9932359 3736.1567 633.81197 -10622.707 0 335.15511 0.001524848 0.0015038699 + 16230 -6245.9077 -6252.7042 6.7965101 3742.5821 631.59957 -10626.886 0 325.7269 0.0011854723 0.0011655479 + 16240 -6246.141 -6252.6884 6.5474184 3750.0484 629.8732 -10632.61 0 313.78903 0.0008572059 0.00084031056 + 16250 -6246.4469 -6252.7183 6.2714268 3756.5035 629.23651 -10638.458 0 300.56196 0.0006418324 0.00062848971 + 16260 -6246.8225 -6252.7946 5.9721293 3760.3069 630.08518 -10643.187 0 286.21795 0.00061412463 0.00060299916 + 16270 -6247.261 -6252.8872 5.6261041 3760.7476 632.44846 -10646.083 0 269.63447 0.00079452888 0.00078338911 + 16280 -6247.747 -6252.9491 5.2021043 3758.2397 635.94426 -10647.133 0 249.31403 0.0011400575 0.0011274688 + 16290 -6248.2493 -6252.9509 4.7015477 3754.1036 639.87392 -10646.928 0 225.32455 0.0015589853 0.0015451669 + 16300 -6248.7265 -6252.9091 4.1826364 3750.0375 643.42287 -10646.37 0 200.45541 0.0019425922 0.0019287515 + 16310 -6249.144 -6252.8834 3.739412 3747.5257 645.88791 -10646.297 0 179.2136 0.002198994 0.0021861009 + 16320 -6249.4889 -6252.9421 3.4531609 3747.411 646.85197 -10647.205 0 165.49485 0.0022766103 0.0022648982 + 16330 -6249.7694 -6253.1259 3.3564385 3749.7171 646.26322 -10649.106 0 160.85937 0.0021730242 0.0021623864 + 16340 -6250.0016 -6253.433 3.431414 3753.7077 644.41224 -10651.553 0 164.45261 0.0019306437 0.0019210768 + 16350 -6250.1961 -6253.829 3.6328645 3758.1321 641.82506 -10653.786 0 174.10725 0.0016220765 0.0016134596 + 16360 -6250.3536 -6254.2616 3.9080196 3761.5973 639.10709 -10654.966 0 187.29423 0.0013286854 0.0013201877 + 16370 -6250.4711 -6254.6658 4.1947417 3762.9779 636.78414 -10654.428 0 201.03556 0.0011174907 0.0011076016 + 16380 -6250.5528 -6254.9636 4.4107878 3761.7425 635.18418 -10651.89 0 211.3897 0.0010233831 0.0010110095 + 16390 -6250.6126 -6255.0792 4.4665641 3758.0889 634.38803 -10647.556 0 214.06281 0.001042899 0.0010286009 + 16400 -6250.6629 -6254.9743 4.311304 3752.8488 634.25529 -10642.078 0 206.62188 0.0011413144 0.001127197 + 16410 -6250.7019 -6254.6786 3.9767667 3747.2204 634.51077 -10636.41 0 190.58898 0.0012687269 0.0012567372 + 16420 -6250.713 -6254.2835 3.5704724 3742.4473 634.85969 -10631.59 0 171.11707 0.0013774421 0.0013676202 + 16430 -6250.6808 -6253.8959 3.2150461 3739.5405 635.09162 -10628.528 0 154.08305 0.001434581 0.0014250709 + 16440 -6250.6055 -6253.5891 2.9836833 3739.0848 635.13909 -10627.813 0 142.99484 0.0014280994 0.0014170205 + 16450 -6250.5025 -6253.3874 2.8848511 3741.135 635.07638 -10629.599 0 138.25825 0.0013673059 0.0013547229 + 16460 -6250.3867 -6253.2889 2.9021218 3745.2106 635.06794 -10633.567 0 139.08596 0.0012790677 0.0012671315 + 16470 -6250.2526 -6253.2986 3.0460373 3750.4086 635.2932 -10639 0 145.9832 0.0012000278 0.001190976 + 16480 -6250.0688 -6253.4339 3.3650794 3755.6293 635.87803 -10644.941 0 161.27349 0.0011655111 0.0011591788 + 16490 -6249.7954 -6253.6927 3.897293 3759.8615 636.85469 -10650.409 0 186.78015 0.0011977183 0.0011908673 + 16500 -6249.415 -6254.012 4.5969903 3762.4296 638.15669 -10654.598 0 220.31357 0.0012977053 0.0012861976 + 16510 -6248.9578 -6254.2612 5.3033891 3763.1078 639.64185 -10657.011 0 254.16816 0.0014454756 0.0014279138 + 16520 -6248.4942 -6254.2944 5.8001488 3762.0693 641.13045 -10657.494 0 277.97568 0.0016091886 0.0015889526 + 16530 -6248.0906 -6254.0356 5.9449321 3759.7251 642.44381 -10656.204 0 284.91451 0.0017589842 0.0017423255 + 16540 -6247.7629 -6253.5358 5.7729421 3756.5676 643.43149 -10653.535 0 276.67178 0.0018769322 0.0018680159 + 16550 -6247.471 -6252.9497 5.4787474 3753.1089 643.98106 -10650.04 0 262.57232 0.0019567429 0.001953673 + 16560 -6247.1623 -6252.4429 5.2805799 3749.9039 644.01348 -10646.36 0 253.07502 0.0019949986 0.0019905726 + 16570 -6246.8221 -6252.1003 5.2782002 3747.5528 643.47501 -10643.128 0 252.96097 0.0019828177 0.0019697942 + 16580 -6246.4863 -6251.9043 5.4179499 3746.5828 642.33982 -10640.827 0 259.65856 0.0019062844 0.0018829716 + 16590 -6246.2101 -6251.7891 5.5789786 3747.2257 640.63147 -10639.646 0 267.37596 0.0017564479 0.0017281416 + 16600 -6246.0205 -6251.7165 5.6960006 3749.2244 638.4573 -10639.398 0 272.98431 0.0015420242 0.0015172463 + 16610 -6245.8918 -6251.7112 5.8193662 3751.8167 636.03538 -10639.563 0 278.89668 0.0012958164 0.001280228 + 16620 -6245.761 -6251.8348 6.0737904 3753.953 633.69036 -10639.478 0 291.09012 0.001069693 0.0010620067 + 16630 -6245.5708 -6252.121 6.5502263 3754.6763 631.80691 -10638.604 0 313.9236 0.00091925902 0.00091192655 + 16640 -6245.3134 -6252.5196 7.2062503 3753.5042 630.74736 -10636.771 0 345.36395 0.00088454611 0.00086885745 + 16650 -6245.0441 -6252.8926 7.8485131 3750.6386 630.7537 -10634.285 0 376.14479 0.0009751987 0.00094749582 + 16660 -6244.85 -6253.0768 8.2268498 3746.9044 631.86238 -10631.844 0 394.2768 0.0011669007 0.0011314997 + 16670 -6244.7884 -6252.9817 8.1933104 3743.4466 633.86459 -10630.293 0 392.66941 0.001410407 0.0013766254 + 16680 -6244.8413 -6252.6531 7.8118283 3741.3385 636.34029 -10630.332 0 374.38664 0.0016479589 0.0016229644 + 16690 -6244.9289 -6252.2429 7.3140573 3741.2843 638.77217 -10632.299 0 350.53067 0.0018286666 0.0018118395 + 16700 -6244.9769 -6251.8929 6.9160055 3743.5027 640.70659 -10636.102 0 331.45379 0.0019178645 0.0019019305 + 16710 -6244.9777 -6251.632 6.654374 3747.7283 641.89476 -10641.255 0 318.91494 0.0019023958 0.0018806943 + 16720 -6244.9856 -6251.3929 6.4073896 3753.2232 642.34914 -10646.965 0 307.07806 0.0017958531 0.0017688389 + 16730 -6245.0517 -6251.1352 6.0834726 3758.8192 642.2933 -10652.248 0 291.55414 0.001641423 0.0016159228 + 16740 -6245.1669 -6250.9438 5.7768702 3763.1194 642.03867 -10656.102 0 276.86003 0.0015036916 0.0014858183 + 16750 -6245.2695 -6250.9918 5.7223541 3764.916 641.84906 -10657.757 0 274.24732 0.0014454656 0.0014344481 + 16760 -6245.3055 -6251.3985 6.0929662 3763.6637 641.84429 -10656.906 0 292.00913 0.0014988079 0.0014875836 + 16770 -6245.2824 -6252.1143 6.8319042 3759.7452 641.96686 -10653.826 0 327.42318 0.0016472724 0.0016288273 + 16780 -6245.27 -6252.9296 7.6595818 3754.358 642.0132 -10649.301 0 367.09014 0.0018308223 0.0018042657 + 16790 -6245.3528 -6253.5912 8.2383523 3749.067 641.71637 -10644.375 0 394.82807 0.0019712104 0.0019424466 + 16800 -6245.5705 -6253.9313 8.3607979 3745.2418 640.85373 -10640.027 0 400.69635 0.0020040857 0.00198093 + 16810 -6245.8935 -6253.9222 8.0286811 3743.6283 639.34395 -10636.894 0 384.77945 0.0019020498 0.0018881545 + 16820 -6246.2517 -6253.642 7.3902935 3744.2088 637.30105 -10635.152 0 354.18433 0.0016805343 0.0016730146 + 16830 -6246.5854 -6253.2017 6.6163229 3746.3442 635.02776 -10634.574 0 317.09132 0.0013888742 0.001381 + 16840 -6246.8755 -6252.6977 5.8222698 3749.0702 632.94847 -10634.716 0 279.03584 0.0010941759 0.0010803071 + 16850 -6247.1365 -6252.21 5.0734826 3751.4084 631.49946 -10635.118 0 243.14975 0.00086396596 0.00084278452 + 16860 -6247.3916 -6251.8161 4.424586 3752.6153 631.00919 -10635.441 0 212.05099 0.00075038559 0.00072479126 + 16870 -6247.6552 -6251.5909 3.9357088 3752.3471 631.60662 -10635.545 0 188.62125 0.00077810823 0.00075295789 + 16880 -6247.9298 -6251.5886 3.6587855 3750.7286 633.18444 -10635.502 0 175.34953 0.00093883992 0.00091844884 + 16890 -6248.2071 -6251.8292 3.6221561 3748.3128 635.42402 -10635.566 0 173.59404 0.0011941242 0.0011804767 + 16900 -6248.4717 -6252.2992 3.8274877 3745.9341 637.87183 -10636.105 0 183.43469 0.0014852565 0.0014770868 + 16910 -6248.7089 -6252.9529 4.2439625 3744.494 640.04757 -10637.494 0 203.3945 0.0017469385 0.0017400358 + 16920 -6248.9192 -6253.7064 4.7871916 3744.7254 641.55943 -10639.991 0 229.42908 0.001921475 0.0019107254 + 16930 -6249.1277 -6254.4339 5.3062344 3746.9755 642.1977 -10643.607 0 254.30452 0.0019718266 0.0019544211 + 16940 -6249.3736 -6254.9944 5.6207945 3751.0404 641.97885 -10648.014 0 269.38001 0.0018920449 0.0018696286 + 16950 -6249.6794 -6255.2874 5.6080006 3756.1189 641.12455 -10652.531 0 268.76685 0.0017115505 0.0016891679 + 16960 -6250.0268 -6255.2984 5.2715255 3760.9607 639.98277 -10656.242 0 252.64108 0.0014884832 0.0014708526 + 16970 -6250.3652 -6255.0914 4.7262132 3764.2203 638.9179 -10658.23 0 226.50666 0.0012912008 0.0012794856 + 16980 -6250.6452 -6254.7585 4.1133133 3764.8969 638.20428 -10657.86 0 197.13305 0.0011745521 0.0011662531 + 16990 -6250.8471 -6254.3734 3.5263539 3762.6708 637.95241 -10654.997 0 169.00267 0.0011617811 0.00115329 + 17000 -6250.9821 -6253.9834 3.0013333 3758.0001 638.08707 -10650.071 0 143.84073 0.0012396013 0.0012288662 + 17010 -6251.0751 -6253.6293 2.5541745 3751.9654 638.3828 -10643.977 0 122.41037 0.0013665689 0.0013539595 + 17020 -6251.1462 -6253.3633 2.2170644 3745.949 638.54575 -10637.858 0 106.25417 0.0014893879 0.0014767345 + 17030 -6251.2022 -6253.248 2.0458403 3741.2676 638.31614 -10632.832 0 98.048146 0.0015604482 0.0015493715 + 17040 -6251.2355 -6253.3358 2.1002313 3738.8634 637.55943 -10629.759 0 100.65487 0.0015513099 0.0015419787 + 17050 -6251.2306 -6253.6416 2.4110084 3739.1217 636.31879 -10629.082 0 115.54905 0.0014591519 0.0014501379 + 17060 -6251.1709 -6254.1211 2.950212 3741.8375 634.81373 -10630.772 0 141.39071 0.0013056075 0.0012949208 + 17070 -6251.0447 -6254.6673 3.622647 3746.3062 633.38522 -10634.359 0 173.61757 0.0011295415 0.001116232 + 17080 -6250.8444 -6255.1365 4.2921805 3751.4955 632.40351 -10639.036 0 205.70537 0.00097663971 0.00096180629 + 17090 -6250.5596 -6255.3955 4.8358957 3756.2545 632.16763 -10643.818 0 231.76325 0.00088874431 0.00087499296 + 17100 -6250.1731 -6255.3671 5.1940256 3759.5406 632.82848 -10647.736 0 248.92685 0.00089491079 0.00088441893 + 17110 -6249.6672 -6255.0483 5.3810905 3760.6409 634.35648 -10650.046 0 257.89205 0.0010050972 0.00099763032 + 17120 -6249.042 -6254.4948 5.4528827 3759.35 636.55437 -10650.399 0 261.33274 0.0012069962 0.0011994077 + 17130 -6248.3321 -6253.7903 5.4581594 3756.0523 639.101 -10648.944 0 261.58563 0.0014668243 0.001454625 + 17140 -6247.608 -6253.0195 5.4114963 3751.6566 641.61146 -10646.288 0 259.34927 0.0017352186 0.001715495 + 17150 -6246.9544 -6252.2585 5.3041065 3747.3662 643.70547 -10643.33 0 254.20255 0.0019585908 0.0019325239 + 17160 -6246.434 -6251.5781 5.1441551 3744.3254 645.07484 -10640.978 0 246.53678 0.0020935869 0.0020665617 + 17170 -6246.056 -6251.0562 5.0002189 3743.2633 645.53379 -10639.853 0 239.63855 0.0021192355 0.002097701 + 17180 -6245.7693 -6250.7794 5.0100896 3744.2909 645.03964 -10640.11 0 240.11161 0.0020410959 0.0020277951 + 17190 -6245.4911 -6250.8142 5.3230125 3746.9427 643.68615 -10641.443 0 255.10863 0.0018853351 0.0018765155 + 17200 -6245.1611 -6251.1514 5.9903067 3750.4192 641.68049 -10643.251 0 287.08911 0.0016862225 0.0016737105 + 17210 -6244.7844 -6251.671 6.8866232 3753.8669 639.31009 -10644.848 0 330.04562 0.0014747357 0.0014519683 + 17220 -6244.4304 -6252.18 7.7495933 3756.5397 636.90111 -10645.621 0 371.40399 0.0012751474 0.0012424443 + 17230 -6244.1804 -6252.5103 8.3299029 3757.8264 634.77403 -10645.111 0 399.21569 0.0011096576 0.0010742364 + 17240 -6244.0678 -6252.6056 8.537785 3757.263 633.20473 -10643.073 0 409.17856 0.0010035948 0.00097425332 + 17250 -6244.0588 -6252.5307 8.4718875 3754.6363 632.39206 -10639.559 0 406.02039 0.0009828186 0.00096357375 + 17260 -6244.0853 -6252.4011 8.3157979 3750.1657 632.4266 -10634.993 0 398.53969 0.0010618511 0.0010493895 + 17270 -6244.1003 -6252.2888 8.1885238 3744.6305 633.25995 -10630.179 0 392.44001 0.0012298854 0.001216533 + 17280 -6244.1103 -6252.1741 8.0638119 3739.2994 634.68819 -10626.162 0 386.46311 0.0014453048 0.0014250744 + 17290 -6244.1614 -6251.9797 7.8183443 3735.6093 636.37238 -10623.961 0 374.69893 0.0016452924 0.0016183442 + 17300 -6244.2922 -6251.6621 7.3699722 3734.6909 637.9108 -10624.264 0 353.21042 0.0017681304 0.0017402162 + 17310 -6244.4936 -6251.2859 6.7923679 3736.9514 638.95321 -10627.191 0 325.52838 0.0017775673 0.0017549695 + 17320 -6244.7114 -6251.0156 6.3041917 3741.9138 639.31894 -10632.248 0 302.13224 0.0016768791 0.001661073 + 17330 -6244.889 -6251.0207 6.1317179 3748.3798 639.06874 -10638.469 0 293.86633 0.0015065059 0.0014930276 + 17340 -6245.0127 -6251.3637 6.3510241 3754.8151 638.49314 -10644.672 0 304.37671 0.0013284082 0.0013107719 + 17350 -6245.1241 -6251.9561 6.831966 3759.7733 638.01201 -10649.741 0 327.42615 0.0012054703 0.001180681 + 17360 -6245.2904 -6252.612 7.3216003 3762.225 638.01596 -10652.853 0 350.89217 0.0011832528 0.001154277 + 17370 -6245.5554 -6253.1536 7.5981623 3761.7514 638.70678 -10653.612 0 364.14657 0.0012776494 0.0012509372 + 17380 -6245.9087 -6253.4902 7.5815377 3758.6153 640.00034 -10652.106 0 363.34983 0.0014695494 0.0014498307 + 17390 -6246.2961 -6253.626 7.3298418 3753.7079 641.53465 -10648.868 0 351.28714 0.0017073533 0.0016940336 + 17400 -6246.6613 -6253.6069 6.9456516 3748.3533 642.78593 -10644.746 0 332.8746 0.0019184293 0.0019063856 + 17410 -6246.9815 -6253.4634 6.4819495 3743.9709 643.25083 -10640.685 0 310.65139 0.0020290934 0.0020130069 + 17420 -6247.2711 -6253.1962 5.9251302 3741.66 642.62568 -10637.482 0 283.96548 0.0019888479 0.0019674978 + 17430 -6247.5545 -6252.815 5.2604334 3741.8404 640.91491 -10635.57 0 252.10949 0.0017905021 0.0017676374 + 17440 -6247.8351 -6252.3907 4.5556629 3744.1015 638.43101 -10634.923 0 218.33293 0.0014768184 0.0014579547 + 17450 -6248.086 -6252.0675 3.9815479 3747.3526 635.6946 -10635.115 0 190.81811 0.0011286853 0.0011163984 + 17460 -6248.2707 -6252.0058 3.7351414 3750.2392 633.28127 -10635.526 0 179.00893 0.00083822666 0.00082981836 + 17470 -6248.3744 -6252.2888 3.9144529 3751.6538 631.67097 -10635.614 0 187.60255 0.00067789739 0.00066745108 + 17480 -6248.4207 -6252.8621 4.4414311 3751.121 631.13873 -10635.122 0 212.8583 0.00067844182 0.0006615844 + 17490 -6248.4596 -6253.5576 5.0979415 3748.9016 631.7039 -10634.163 0 244.32196 0.00082353733 0.00080087406 + 17500 -6248.5342 -6254.1824 5.648159 3745.8172 633.14302 -10633.143 0 270.69147 0.0010606068 0.0010370013 + 17510 -6248.6526 -6254.6045 5.9518976 3742.9213 635.06398 -10632.59 0 285.24833 0.0013207649 0.0013013407 + 17520 -6248.7876 -6254.7786 5.9909526 3741.1685 637.02348 -10632.971 0 287.12006 0.0015393099 0.0015257642 + 17530 -6248.9032 -6254.7182 5.8149816 3741.1742 638.65158 -10634.544 0 278.68655 0.0016710212 0.0016611153 + 17540 -6248.9802 -6254.4587 5.4784652 3743.0856 639.7409 -10637.285 0 262.55879 0.0016983971 0.0016883713 + 17550 -6249.0223 -6254.0481 5.0258684 3746.5573 640.27195 -10640.877 0 240.86781 0.0016328941 0.0016202625 + 17560 -6249.0428 -6253.5601 4.5173024 3750.8309 640.37418 -10644.765 0 216.49448 0.0015093743 0.0014939639 + 17570 -6249.0503 -6253.0975 4.0472151 3754.918 640.24682 -10648.262 0 193.96525 0.00137461 0.0013577412 + 17580 -6249.0429 -6252.7698 3.7269041 3757.8471 640.07364 -10650.691 0 178.61416 0.001272782 0.0012558932 + 17590 -6249.011 -6252.6539 3.6429041 3758.9091 639.96112 -10651.524 0 174.58841 0.0012326761 0.0012165574 + 17600 -6248.9403 -6252.7625 3.8222227 3757.829 639.91491 -10650.506 0 183.18236 0.001260721 0.0012456141 + 17610 -6248.8129 -6253.0398 4.2268695 3754.8195 639.8529 -10647.712 0 202.5753 0.0013414169 0.0013274946 + 17620 -6248.6056 -6253.3866 4.7810156 3750.5105 639.64208 -10643.539 0 229.13309 0.0014439248 0.0014314242 + 17630 -6248.2893 -6253.7019 5.4126464 3745.7853 639.14544 -10638.633 0 259.40439 0.0015318862 0.0015205525 + 17640 -6247.8358 -6253.9134 6.0776315 3741.5814 638.27014 -10633.765 0 291.2742 0.0015732451 0.0015615982 + 17650 -6247.2341 -6253.9801 6.7459709 3738.7038 637.01071 -10629.695 0 323.30478 0.0015478329 0.0015333068 + 17660 -6246.5098 -6253.8753 7.3654855 3737.6701 635.47709 -10627.022 0 352.99539 0.0014519651 0.0014324205 + 17670 -6245.7308 -6253.5756 7.8448196 3738.5874 633.89326 -10626.056 0 375.96777 0.0013001002 0.0012758543 + 17680 -6244.9859 -6253.0723 8.0864371 3741.0875 632.55731 -10626.717 0 387.54744 0.0011233742 0.0010979432 + 17690 -6244.3425 -6252.3984 8.0558854 3744.374 631.76955 -10628.542 0 386.08323 0.00096437354 0.00094267223 + 17700 -6243.8138 -6251.6456 7.8318797 3747.4215 631.75224 -10630.819 0 375.34762 0.00086781061 0.00085256944 + 17710 -6243.3622 -6250.9459 7.583684 3749.2934 632.58937 -10632.829 0 363.45269 0.00086818252 0.00085726966 + 17720 -6242.9395 -6250.4154 7.4759273 3749.4669 634.20494 -10634.087 0 358.28838 0.00097773638 0.00096499595 + 17730 -6242.5315 -6250.0989 7.5674184 3748.0236 636.38153 -10634.504 0 362.67315 0.0011800119 0.0011596685 + 17740 -6242.1713 -6249.9628 7.7915188 3745.6081 638.80819 -10634.379 0 373.4133 0.0014336801 0.0014050596 + 17750 -6241.907 -6249.9544 8.0474023 3743.1623 641.14081 -10634.258 0 385.67667 0.0016866743 0.0016549323 + 17760 -6241.7525 -6250.0769 8.3244149 3741.5677 643.06118 -10634.706 0 398.95267 0.0018936293 0.0018651895 + 17770 -6241.6718 -6250.3986 8.726778 3741.3749 644.3268 -10636.1 0 418.23617 0.0020265187 0.0020030539 + 17780 -6241.6208 -6250.967 9.3461537 3742.7271 644.80703 -10638.501 0 447.92013 0.0020737497 0.0020506837 + 17790 -6241.6104 -6251.7012 10.090781 3745.4232 644.4988 -10641.623 0 483.60684 0.0020330684 0.0020046803 + 17800 -6241.7209 -6252.3792 10.658295 3748.9831 643.51452 -10644.877 0 510.80528 0.0019085517 0.0018749198 + 17810 -6242.035 -6252.7607 10.72574 3752.6543 642.0438 -10647.459 0 514.03763 0.0017159053 0.0016842001 + 17820 -6242.5477 -6252.7502 10.202489 3755.4585 640.30576 -10648.514 0 488.9605 0.0014885711 0.0014666046 + 17830 -6243.1504 -6252.4471 9.2966483 3756.4181 638.51412 -10647.379 0 445.54755 0.0012731333 0.0012616087 + 17840 -6243.7127 -6252.0465 8.3338734 3754.929 636.86147 -10643.837 0 399.40598 0.0011128225 0.001104352 + 17850 -6244.1724 -6251.6999 7.5274609 3751.0568 635.50877 -10638.265 0 360.75816 0.0010309243 0.0010164489 + 17860 -6244.5521 -6251.4607 6.9085282 3745.5522 634.56618 -10631.579 0 331.09543 0.0010256672 0.0010017082 + 17870 -6244.9089 -6251.3289 6.4200061 3739.5883 634.06909 -10624.986 0 307.68272 0.0010768954 0.0010475942 + 17880 -6245.2778 -6251.3168 6.0389735 3734.39 633.96594 -10619.673 0 289.42149 0.0011568395 0.0011302482 + 17890 -6245.6497 -6251.4724 5.8226804 3730.9314 634.13133 -10616.535 0 279.05552 0.0012383468 0.0012205289 + 17900 -6245.9842 -6251.8492 5.8649593 3729.7821 634.40503 -10616.036 0 281.08176 0.0012988325 0.0012898205 + 17910 -6246.2431 -6252.4491 6.2060043 3731.0888 634.64571 -10618.184 0 297.42655 0.0013215878 0.0013154874 + 17920 -6246.4219 -6253.1791 6.7571292 3734.6218 634.78187 -10622.583 0 323.83955 0.0012970202 0.0012860342 + 17930 -6246.5607 -6253.8586 7.2979197 3739.8155 634.8418 -10628.516 0 349.75726 0.0012256344 0.0012053999 + 17940 -6246.721 -6254.2874 7.5664683 3745.7914 634.95044 -10635.029 0 362.62762 0.0011223277 0.0010949371 + 17950 -6246.9422 -6254.3403 7.3980571 3751.4191 635.29143 -10641.051 0 354.55641 0.00101861 0.0009910931 + 17960 -6247.2104 -6254.031 6.8205893 3755.4938 636.04245 -10645.567 0 326.88091 0.00095796003 0.00093725781 + 17970 -6247.4661 -6253.5026 6.0364428 3757.0403 637.29991 -10647.843 0 289.30021 0.000982064 0.0009702084 + 17980 -6247.647 -6252.9492 5.3021631 3755.6532 639.01399 -10647.616 0 254.1094 0.0011116613 0.0011047266 + 17990 -6247.7287 -6252.5212 4.7924022 3751.714 640.95685 -10645.192 0 229.6788 0.0013311792 0.0013226204 + 18000 -6247.736 -6252.277 4.5410333 3746.3471 642.74215 -10641.366 0 217.63179 0.001586729 0.0015723356 + 18010 -6247.7183 -6252.2059 4.487635 3741.093 643.90249 -10637.201 0 215.07265 0.0018010879 0.0017816645 + 18020 -6247.7121 -6252.2863 4.5742641 3737.4105 644.01324 -10633.71 0 219.2244 0.0019002524 0.0018801737 + 18030 -6247.7176 -6252.5208 4.8032075 3736.2081 642.83157 -10631.56 0 230.19665 0.0018398915 0.0018231296 + 18040 -6247.7073 -6252.917 5.2096472 3737.5846 640.40492 -10630.907 0 249.67552 0.001620755 0.0016078533 + 18050 -6247.6559 -6253.4387 5.7828 3740.8461 637.10534 -10631.39 0 277.14422 0.0012885563 0.0012768437 + 18060 -6247.5658 -6253.9792 6.4133788 3744.7566 633.56605 -10632.302 0 307.3651 0.00092065866 0.00090706008 + 18070 -6247.4682 -6254.3886 6.9203704 3747.9167 630.52796 -10632.833 0 331.66298 0.00060506967 0.0005888133 + 18080 -6247.3992 -6254.5409 7.1416508 3749.1615 628.63717 -10632.339 0 342.26798 0.00041721537 0.00040016867 + 18090 -6247.3724 -6254.392 7.019526 3747.8932 628.25862 -10630.544 0 336.41507 0.00039947397 0.00038416188 + 18100 -6247.3721 -6253.9926 6.6204565 3744.2712 629.37209 -10627.636 0 317.28942 0.00054873977 0.0005360591 + 18110 -6247.3691 -6253.4557 6.0866195 3739.1976 631.5898 -10624.243 0 291.70496 0.00081675622 0.00080529424 + 18120 -6247.3425 -6252.907 5.5644897 3734.0793 634.28952 -10621.276 0 266.68157 0.0011245946 0.0011118175 + 18130 -6247.2905 -6252.4449 5.1543341 3730.4208 636.81472 -10619.68 0 247.02461 0.0013872379 0.0013714369 + 18140 -6247.2263 -6252.1232 4.896888 3729.3679 638.67026 -10620.161 0 234.68635 0.0015399883 0.0015216218 + 18150 -6247.1634 -6251.957 4.793588 3731.3489 639.64604 -10622.952 0 229.73563 0.0015577026 0.0015392407 + 18160 -6247.1002 -6251.945 4.8448277 3735.9337 639.83023 -10627.709 0 232.19133 0.0014604171 0.0014445744 + 18170 -6247.0131 -6252.0902 5.0770719 3741.9676 639.51895 -10633.577 0 243.32177 0.0013033907 0.0012907093 + 18180 -6246.8657 -6252.395 5.5292447 3747.9407 639.07051 -10639.406 0 264.99243 0.0011549903 0.001142592 + 18190 -6246.6328 -6252.8325 6.1997378 3752.4589 638.76792 -10644.059 0 297.12622 0.001070817 0.0010537213 + 18200 -6246.3218 -6253.3198 6.9980248 3754.6324 638.73671 -10646.689 0 335.38461 0.0010745529 0.0010490527 + 18210 -6245.9749 -6253.7282 7.7533225 3754.2404 638.93258 -10646.901 0 371.58272 0.0011532733 0.0011199244 + 18220 -6245.6446 -6253.9335 8.2889387 3751.6462 639.18637 -10644.766 0 397.25245 0.0012681329 0.0012318878 + 18230 -6245.3607 -6253.872 8.5113338 3747.5576 639.28208 -10640.712 0 407.91087 0.0013738525 0.0013410745 + 18240 -6245.114 -6253.5608 8.4468515 3742.7762 639.04185 -10635.379 0 404.82052 0.0014367074 0.0014113357 + 18250 -6244.8684 -6253.0737 8.2052926 3738.034 638.39119 -10629.499 0 393.24366 0.0014431315 0.0014247751 + 18260 -6244.5875 -6252.497 7.909593 3733.9343 637.38144 -10623.813 0 379.07208 0.0013975712 0.0013825248 + 18270 -6244.2532 -6251.9006 7.6474785 3730.9493 636.16025 -10619.01 0 366.51008 0.0013140012 0.0012979766 + 18280 -6243.8669 -6251.3383 7.4713689 3729.4154 634.90477 -10615.659 0 358.06992 0.0012073378 0.001187821 + 18290 -6243.4362 -6250.8667 7.4304314 3729.4953 633.75395 -10614.116 0 356.10797 0.0010890558 0.0010659212 + 18300 -6242.9613 -6250.5548 7.5935581 3731.118 632.77959 -10614.452 0 363.92591 0.00096783704 0.00094243015 + 18310 -6242.434 -6250.4659 8.0318425 3733.9393 632.01311 -10616.418 0 384.93096 0.00085346714 0.00082749837 + 18320 -6241.8504 -6250.6189 8.7685317 3737.3541 631.50869 -10619.482 0 420.23724 0.00076129781 0.00073656545 + 18330 -6241.2248 -6250.9649 9.7401055 3740.575 631.39563 -10622.935 0 466.80051 0.00071451275 0.00069301094 + 18340 -6240.5934 -6251.3989 10.805521 3742.784 631.87273 -10626.056 0 517.86118 0.00074127766 0.00072439637 + 18350 -6240.0068 -6251.7961 11.789282 3743.3594 633.12903 -10628.285 0 565.00855 0.00086461906 0.00085145103 + 18360 -6239.526 -6252.0375 12.511515 3742.136 635.22186 -10629.395 0 599.62198 0.0010869978 0.0010738741 + 18370 -6239.2209 -6252.0247 12.803772 3739.5673 637.97506 -10629.567 0 613.62858 0.0013781791 0.0013608908 + 18380 -6239.1534 -6251.7118 12.558381 3736.6388 640.95912 -10629.31 0 601.86808 0.0016768403 0.0016536192 + 18390 -6239.3425 -6251.145 11.80251 3734.5193 643.58204 -10629.246 0 565.64249 0.0019082389 0.0018804718 + 18400 -6239.7494 -6250.4621 10.712791 3734.1082 645.26701 -10629.837 0 513.41706 0.0020094372 0.0019800177 + 18410 -6240.2995 -6249.8377 9.5381578 3735.6877 645.64358 -10631.169 0 457.12204 0.0019506179 0.0019221651 + 18420 -6240.9195 -6249.4205 8.5009936 3738.8023 644.66536 -10632.888 0 407.41531 0.0017452338 0.0017193698 + 18430 -6241.5572 -6249.3052 7.7480135 3742.3974 642.60635 -10634.309 0 371.32828 0.0014464237 0.0014236042 + 18440 -6242.1839 -6249.5345 7.3506444 3745.1657 639.95199 -10634.652 0 352.28412 0.0011308395 0.0011101979 + 18450 -6242.7891 -6250.1068 7.31772 3745.9866 637.24327 -10633.337 0 350.7062 0.00087499385 0.00085436861 + 18460 -6243.3764 -6250.9729 7.5964836 3744.3087 634.93421 -10630.216 0 364.06612 0.00073192636 0.00070849688 + 18470 -6243.9611 -6252.0267 8.0655837 3740.3468 633.2981 -10625.672 0 386.54802 0.00071589174 0.0006875287 + 18480 -6244.564 -6253.1095 8.5454617 3735.0256 632.39357 -10620.529 0 409.54647 0.00080032593 0.00076702106 + 18490 -6245.1985 -6254.0433 8.8447817 3729.6913 632.0892 -10615.824 0 423.89157 0.00092979119 0.00089407706 + 18500 -6245.8564 -6254.6809 8.8245122 3725.6952 632.13768 -10612.514 0 422.92014 0.0010409394 0.0010068579 + 18510 -6246.505 -6254.9451 8.4400807 3723.9963 632.27885 -10611.22 0 404.49603 0.0010841214 0.0010554392 + 18520 -6247.0982 -6254.8419 7.7437356 3724.907 632.33747 -10612.086 0 371.12326 0.0010383032 0.0010169782 + 18530 -6247.5922 -6254.4501 6.8578788 3728.0415 632.28185 -10614.773 0 328.66803 0.0009155947 0.00090101163 + 18540 -6247.9602 -6253.8928 5.9326475 3732.4707 632.22397 -10618.587 0 284.32576 0.00075515893 0.00074437561 + 18550 -6248.2016 -6253.2986 5.0970625 3737.0221 632.36485 -10622.686 0 244.27984 0.00060913799 0.00059832599 + 18560 -6248.3428 -6252.7677 4.4249739 3740.6179 632.90656 -10626.292 0 212.06958 0.00052578128 0.00051239943 + 18570 -6248.4252 -6252.3662 3.9410233 3742.5368 633.96283 -10628.866 0 188.87595 0.00053574678 0.00052001693 + 18580 -6248.4838 -6252.1447 3.6608813 3742.5381 635.50001 -10630.183 0 175.44997 0.00064522428 0.00062961984 + 18590 -6248.53 -6252.1525 3.6224168 3740.86 637.32845 -10630.341 0 173.60654 0.00083580408 0.00082288628 + 18600 -6248.5526 -6252.4228 3.8701571 3738.1336 639.14469 -10629.701 0 185.47964 0.0010690285 0.0010594722 + 18610 -6248.5332 -6252.9363 4.4030702 3735.2348 640.60565 -10628.777 0 211.01983 0.0012940831 0.0012864899 + 18620 -6248.465 -6253.5996 5.134632 3733.077 641.40926 -10628.086 0 246.08037 0.001458172 0.0014505589 + 18630 -6248.3593 -6254.2656 5.9062483 3732.3655 641.36097 -10627.992 0 283.06056 0.0015188552 0.0015102534 + 18640 -6248.2374 -6254.7882 6.5508175 3733.3748 640.41639 -10628.579 0 313.95193 0.001455921 0.0014466014 + 18650 -6248.1143 -6255.0766 6.9623267 3735.8356 638.69725 -10629.609 0 333.67376 0.0012787132 0.0012689376 + 18660 -6247.9916 -6255.113 7.1213745 3738.989 636.47937 -10630.581 0 341.29622 0.001025125 0.0010137801 + 18670 -6247.8662 -6254.9268 7.0606454 3741.8048 634.1498 -10630.881 0 338.38574 0.00075154327 0.00073632327 + 18680 -6247.7458 -6254.5523 6.8064211 3743.285 632.13214 -10629.969 0 326.20189 0.00051737648 0.0004968656 + 18690 -6247.6525 -6254.0113 6.3588327 3742.7402 630.78784 -10627.539 0 304.75094 0.00037017498 0.00034608674 + 18700 -6247.6037 -6253.343 5.739277 3739.9563 630.31763 -10623.617 0 275.05835 0.00033579876 0.00031279119 + 18710 -6247.5876 -6252.6453 5.057641 3735.2405 630.70017 -10618.586 0 242.39054 0.00041432044 0.00039668899 + 18720 -6247.5595 -6252.0736 4.514073 3729.3831 631.70051 -10613.157 0 216.33971 0.00058019816 0.00056802039 + 18730 -6247.4674 -6251.7748 4.3073943 3723.5572 632.95037 -10608.282 0 206.4345 0.00078643304 0.00077485163 + 18740 -6247.2857 -6251.8073 4.5216127 3719.12 634.06781 -10604.995 0 216.70105 0.00097437949 0.00095699436 + 18750 -6247.0264 -6252.1145 5.0881166 3717.2891 634.77082 -10604.174 0 243.8511 0.0010897199 0.0010632625 + 18760 -6246.7233 -6252.5688 5.8455372 3718.7595 634.95261 -10606.281 0 280.15094 0.0011006637 0.0010672191 + 18770 -6246.4059 -6253.0405 6.6345756 3723.4142 634.70679 -10611.162 0 317.96609 0.0010108379 0.00097632039 + 18780 -6246.0829 -6253.4395 7.3565878 3730.2759 634.30039 -10618.016 0 352.56897 0.00086033364 0.00083079181 + 18790 -6245.7434 -6253.719 7.9756308 3737.7393 634.09669 -10625.555 0 382.23698 0.00071336668 0.00069162487 + 18800 -6245.3712 -6253.8568 8.4856219 3744.02 634.43867 -10632.315 0 406.67862 0.0006364314 0.00062080781 + 18810 -6244.9652 -6253.8342 8.869041 3747.6763 635.52009 -10637.031 0 425.05421 0.00067409407 0.00065980479 + 18820 -6244.5534 -6253.6235 9.0701152 3748.0312 637.28602 -10638.941 0 434.69081 0.00083082572 0.00081349387 + 18830 -6244.1885 -6253.2024 9.0138765 3745.3313 639.40661 -10637.94 0 431.99554 0.00106691 0.0010459757 + 18840 -6243.9158 -6252.5987 8.6829422 3740.574 641.35062 -10634.523 0 416.13531 0.0013122588 0.0012912775 + 18850 -6243.7361 -6251.9284 8.1923273 3735.0999 642.54814 -10629.576 0 392.62229 0.0014928224 0.0014758511 + 18860 -6243.6031 -6251.3687 7.7655598 3730.1646 642.58632 -10624.12 0 372.1692 0.0015563009 0.0015436311 + 18870 -6243.4635 -6251.0627 7.5992369 3726.658 641.35399 -10619.075 0 364.19807 0.0014854197 0.0014730645 + 18880 -6243.3031 -6251.0312 7.7280183 3724.9914 639.07023 -10615.093 0 370.37 0.0012968398 0.001280464 + 18890 -6243.1565 -6251.1717 8.0152128 3725.0818 636.19091 -10612.444 0 384.13397 0.0010317667 0.0010111312 + 18900 -6243.0721 -6251.3513 8.2792143 3726.4043 633.24816 -10611.004 0 396.78641 0.00074450352 0.00072387912 + 18910 -6243.0662 -6251.5105 8.4442257 3728.1411 630.7011 -10610.353 0 404.69468 0.00049096154 0.00047476513 + 18920 -6243.1106 -6251.6927 8.5820808 3729.4451 628.85376 -10609.992 0 411.30146 0.00031664992 0.0003041663 + 18930 -6243.17 -6251.9733 8.8032608 3729.7476 627.84859 -10609.569 0 421.90165 0.00024528065 0.00022970091 + 18940 -6243.2605 -6252.3506 9.0900663 3728.9682 627.70451 -10609.023 0 435.64698 0.00027255796 0.00024620494 + 18950 -6243.4677 -6252.7022 9.2345381 3727.4985 628.35904 -10608.56 0 442.57088 0.00037052384 0.0003323873 + 18960 -6243.8891 -6252.8614 8.9722795 3725.9522 629.69097 -10608.505 0 430.00198 0.00050290294 0.00046144691 + 18970 -6244.5374 -6252.7599 8.2225001 3724.8346 631.52483 -10609.119 0 394.06834 0.00064311717 0.00061056688 + 18980 -6245.301 -6252.5093 7.2082794 3724.357 633.63396 -10610.5 0 345.46119 0.00078180732 0.00076414899 + 18990 -6246.0178 -6252.3307 6.3129365 3724.5141 635.75713 -10612.602 0 302.55134 0.00091773578 0.00090972234 + 19000 -6246.594 -6252.3891 5.7951519 3725.3065 637.6292 -10615.325 0 277.7362 0.0010414028 0.0010314107 + 19010 -6247.0489 -6252.6843 5.6354777 3726.8569 639.01508 -10618.556 0 270.08371 0.0011283356 0.0011081603 + 19020 -6247.462 -6253.0935 5.6314811 3729.2836 639.74119 -10622.118 0 269.89217 0.0011493584 0.0011199182 + 19030 -6247.8914 -6253.4974 5.6059446 3732.4523 639.72733 -10625.677 0 268.66832 0.0010891893 0.0010581758 + 19040 -6248.3354 -6253.8627 5.5272288 3735.8358 639.01643 -10628.715 0 264.89582 0.00095865988 0.00093364907 + 19050 -6248.7503 -6254.2213 5.4710163 3738.61 637.78567 -10630.617 0 262.2018 0.00079266426 0.00077587899 + 19060 -6249.0935 -6254.5921 5.4985366 3739.9355 636.32023 -10630.848 0 263.52073 0.00063662311 0.00062474386 + 19070 -6249.3557 -6254.9235 5.5677747 3739.2692 634.94561 -10629.138 0 266.839 0.00052988782 0.00051790218 + 19080 -6249.5614 -6255.1047 5.5433803 3736.5669 633.93454 -10625.606 0 265.66989 0.00049344258 0.00047894309 + 19090 -6249.744 -6255.0348 5.290746 3732.3064 633.41866 -10620.76 0 253.56224 0.0005250039 0.00050968453 + 19100 -6249.9172 -6254.698 4.7808346 3727.3526 633.33943 -10615.39 0 229.12442 0.00060100789 0.00058861095 + 19110 -6250.0645 -6254.1928 4.1282918 3722.7371 633.46416 -10610.394 0 197.85091 0.00068362347 0.00067632024 + 19120 -6250.1551 -6253.6923 3.5371898 3719.425 633.47118 -10606.588 0 169.52198 0.00073108793 0.0007272632 + 19130 -6250.1695 -6253.3633 3.1937991 3718.1145 633.07905 -10604.557 0 153.06477 0.00070971935 0.00070485763 + 19140 -6250.116 -6253.2918 3.1757699 3719.0793 632.17195 -10604.543 0 152.20071 0.00060534556 0.00059536168 + 19150 -6250.0273 -6253.458 3.4306573 3722.0669 630.87024 -10606.395 0 164.41635 0.00043119876 0.00041576305 + 19160 -6249.9385 -6253.7711 3.8325997 3726.2888 629.5137 -10609.574 0 183.67968 0.00022912079 0.00021235618 + 19170 -6249.8593 -6254.1362 4.2768945 3730.5563 628.55854 -10613.251 0 204.97278 6.15286e-05 4.9117507e-05 + 19180 -6249.7602 -6254.5023 4.742072 3733.5899 628.42482 -10616.517 0 227.2667 -6.2860555e-06 -1.1828649e-05 + 19190 -6249.5877 -6254.8538 5.2660124 3734.446 629.35063 -10618.65 0 252.37686 7.0236746e-05 6.8008945e-05 + 19200 -6249.3057 -6255.1576 5.8518877 3732.9033 631.30359 -10619.364 0 280.45529 0.00029401111 0.00028719721 + 19210 -6248.9327 -6255.3234 6.3907073 3729.611 633.97481 -10618.909 0 306.27855 0.00061856153 0.00060050658 + 19220 -6248.5416 -6255.2277 6.6860469 3725.8803 636.85189 -10617.96 0 320.43288 0.00095983829 0.00093042584 + 19230 -6248.2155 -6254.7963 6.5807588 3723.1789 639.34919 -10617.324 0 315.38689 0.0012248038 0.0011911317 + 19240 -6247.99 -6254.0808 6.0907128 3722.5523 640.96059 -10617.594 0 291.90113 0.001344757 0.0013163579 + 19250 -6247.8303 -6253.2648 5.434478 3724.2392 641.39214 -10618.896 0 260.45068 0.0012981645 0.0012802225 + 19260 -6247.6581 -6252.5814 4.9232402 3727.6408 640.63493 -10620.857 0 235.94929 0.0011133534 0.0011030738 + 19270 -6247.4091 -6252.1889 4.7797997 3731.6123 638.95537 -10622.757 0 229.07482 0.00085243028 0.00084152206 + 19280 -6247.076 -6252.0909 5.0149365 3734.8899 636.80444 -10623.785 0 240.34389 0.00058692395 0.00056844297 + 19290 -6246.7076 -6252.1662 5.4585744 3736.4425 634.67172 -10623.28 0 261.60551 0.00037710211 0.00035108034 + 19300 -6246.3609 -6252.2858 5.9249194 3735.6612 632.93228 -10620.879 0 283.95538 0.00026073208 0.00023362519 + 19310 -6246.0484 -6252.4158 6.3674223 3732.44 631.74531 -10616.601 0 305.1626 0.00024927589 0.00022766947 + 19320 -6245.7314 -6252.6103 6.8788785 3727.2228 631.04666 -10610.88 0 329.67445 0.00032728919 0.00031182099 + 19330 -6245.3706 -6252.9125 7.5419127 3720.9968 630.63319 -10604.542 0 361.45077 0.00045512061 0.00044038535 + 19340 -6244.9816 -6253.2688 8.2871687 3715.1261 630.29141 -10598.686 0 397.16762 0.00057904204 0.00055925657 + 19350 -6244.6397 -6253.5441 8.9043871 3710.9837 629.90729 -10594.435 0 426.74819 0.00064990924 0.00062459452 + 19360 -6244.4245 -6253.6172 9.1926828 3709.5034 629.51258 -10592.633 0 440.56494 0.00064322899 0.00061762621 + 19370 -6244.3595 -6253.4643 9.1048744 3710.8766 629.25862 -10593.6 0 436.35667 0.00056901946 0.00054931725 + 19380 -6244.4 -6253.1634 8.7634287 3714.548 629.3408 -10597.052 0 419.99268 0.00046502188 0.0004530062 + 19390 -6244.4742 -6252.828 8.3537948 3719.4882 629.9129 -10602.229 0 400.36072 0.00037759567 0.00036919435 + 19400 -6244.5359 -6252.5317 7.995807 3724.5808 631.02621 -10608.139 0 383.20394 0.00034160843 0.00033017192 + 19410 -6244.5883 -6252.2792 7.6908397 3728.9338 632.60922 -10613.822 0 368.58819 0.00036934471 0.0003508494 + 19420 -6244.6658 -6252.0409 7.3750427 3732.0024 634.48376 -10618.527 0 353.45343 0.0004517898 0.000427831 + 19430 -6244.7928 -6251.8201 7.0272688 3733.5399 636.40422 -10621.764 0 336.78615 0.00056847255 0.0005446777 + 19440 -6244.9565 -6251.6884 6.7318451 3733.4972 638.10849 -10623.294 0 322.62779 0.00069808524 0.00067940888 + 19450 -6245.1165 -6251.7497 6.6331768 3731.9844 639.3709 -10623.105 0 317.89905 0.0008236657 0.00081069034 + 19460 -6245.2382 -6252.0624 6.8241831 3729.3026 640.04402 -10621.409 0 327.05314 0.00093181024 0.00092085708 + 19470 -6245.3182 -6252.5879 7.2696882 3725.9611 640.07547 -10618.624 0 348.40425 0.001009663 0.00099579843 + 19480 -6245.3837 -6253.1979 7.8142475 3722.6151 639.49629 -10615.309 0 374.50259 0.0010431024 0.0010232729 + 19490 -6245.476 -6253.7232 8.2471298 3719.9265 638.39155 -10612.041 0 395.24873 0.0010175931 0.00099216371 + 19500 -6245.6274 -6254.0133 8.3858893 3718.3913 636.87054 -10609.275 0 401.89887 0.00092240589 0.00089473752 + 19510 -6245.8402 -6253.9944 8.1541998 3718.1875 635.05036 -10607.232 0 390.79501 0.00075735555 0.00073165 + 19520 -6246.0824 -6253.6987 7.6163691 3719.1047 633.05869 -10605.862 0 365.01914 0.00053817655 0.00051676245 + 19530 -6246.3074 -6253.244 6.9365818 3720.6072 631.05006 -10604.901 0 332.43992 0.0002962039 0.00027831425 + 19540 -6246.4849 -6252.7744 6.2894516 3722.0096 629.21969 -10604.004 0 301.42581 7.1944711e-05 5.5055125e-05 + 19550 -6246.6159 -6252.4094 5.7935171 3722.6844 627.79547 -10602.889 0 277.65785 -9.3954117e-05 -0.00011155325 + 19560 -6246.7201 -6252.2289 5.5088375 3722.2264 626.99859 -10601.454 0 264.0144 -0.00016898227 -0.00018687262 + 19570 -6246.813 -6252.2828 5.4697241 3720.5529 626.98061 -10599.816 0 262.13987 -0.00013564595 -0.00015228703 + 19580 -6246.8947 -6252.5892 5.694489 3717.951 627.76091 -10598.301 0 272.91187 2.5440703e-06 -1.2136825e-05 + 19590 -6246.959 -6253.1132 6.1542109 3715.0634 629.1935 -10597.37 0 294.94432 0.00021740584 0.00020380973 + 19600 -6247.0104 -6253.7512 6.7407357 3712.772 630.98482 -10597.508 0 323.05388 0.00045852774 0.00044455788 + 19610 -6247.0684 -6254.3504 7.2819645 3711.9615 632.76567 -10599.078 0 348.9926 0.00066464948 0.00064966553 + 19620 -6247.1549 -6254.7595 7.6045754 3713.2197 634.19786 -10602.177 0 364.45392 0.00078202108 0.00076651201 + 19630 -6247.2787 -6254.8784 7.5996193 3716.59 635.07759 -10606.546 0 364.2164 0.00078272621 0.00076751751 + 19640 -6247.4306 -6254.6824 7.251828 3721.4837 635.39285 -10611.559 0 347.54829 0.00067487967 0.00066033565 + 19650 -6247.5904 -6254.2214 6.6310195 3726.7982 635.30982 -10616.329 0 317.79566 0.00050032569 0.0004862876 + 19660 -6247.7379 -6253.6037 5.8657782 3731.2046 635.09605 -10619.904 0 281.12101 0.00032101618 0.00030722515 + 19670 -6247.8597 -6252.9726 5.1128798 3733.5176 635.01446 -10621.505 0 245.03789 0.00019922295 0.00018560331 + 19680 -6247.9499 -6252.4748 4.5248628 3733.0352 635.22695 -10620.737 0 216.85681 0.0001779522 0.00016449825 + 19690 -6248.0077 -6252.2249 4.2172411 3729.7496 635.73337 -10617.708 0 202.11386 0.00026708476 0.00025358675 + 19700 -6248.0346 -6252.2747 4.2400629 3724.3718 636.35857 -10613.005 0 203.2076 0.00043898838 0.00042504201 + 19710 -6248.0351 -6252.5983 4.5631941 3718.1619 636.79255 -10607.553 0 218.69387 0.00063531493 0.00062081167 + 19720 -6248.0165 -6253.1056 5.0891898 3712.6004 636.68052 -10602.387 0 243.90253 0.00078417172 0.00076981376 + 19730 -6247.9841 -6253.6811 5.6970312 3708.9805 635.74409 -10598.406 0 273.0337 0.00082329172 0.00081030356 + 19740 -6247.9361 -6254.2275 6.2914342 3708.0418 633.89763 -10596.167 0 301.52083 0.00072132427 0.00071022403 + 19750 -6247.8645 -6254.6832 6.8186891 3709.7736 631.31693 -10595.774 0 326.78984 0.00048894613 0.00047849336 + 19760 -6247.7677 -6255.0068 7.2391099 3713.4524 628.42841 -10596.888 0 346.93876 0.00017573303 0.00016341091 + 19770 -6247.662 -6255.1543 7.4922684 3717.8822 625.81388 -10598.85 0 359.07154 -0.00014488888 -0.00016088295 + 19780 -6247.5781 -6255.0792 7.5011193 3721.7365 624.05805 -10600.874 0 359.49573 -0.00039609742 -0.00041504351 + 19790 -6247.5408 -6254.7616 7.2207715 3723.9005 623.58934 -10602.251 0 346.05989 -0.00051692164 -0.00053574799 + 19800 -6247.5484 -6254.2371 6.6886488 3723.7449 624.56702 -10602.549 0 320.55758 -0.00047616778 -0.00049167921 + 19810 -6247.5713 -6253.5975 6.0261614 3721.2903 626.8463 -10601.734 0 288.80747 -0.00027937061 -0.00029069614 + 19820 -6247.5714 -6252.9566 5.3851592 3717.2239 630.02078 -10600.201 0 258.08705 3.1865745e-05 2.269291e-05 + 19830 -6247.5263 -6252.409 4.8826481 3712.743 633.51815 -10598.67 0 234.0039 0.00038863027 0.00037839497 + 19840 -6247.4376 -6252.013 4.5753722 3709.2345 636.72071 -10597.968 0 219.27751 0.00071109882 0.00069790422 + 19850 -6247.319 -6251.8051 4.4861635 3707.8735 639.0887 -10598.767 0 215.00213 0.00092939966 0.0009139195 + 19860 -6247.1757 -6251.8235 4.6478041 3709.2656 640.26818 -10601.357 0 222.74885 0.0010027401 0.00098738104 + 19870 -6246.9903 -6252.1086 5.118361 3713.2546 640.16174 -10605.525 0 245.30058 0.00092983485 0.00091661906 + 19880 -6246.7265 -6252.6727 5.9462008 3718.9573 638.93994 -10610.57 0 284.97531 0.00074654444 0.00073539549 + 19890 -6246.3531 -6253.4533 7.1001672 3725.0038 636.98414 -10615.441 0 340.27985 0.00051178537 0.00050057646 + 19900 -6245.876 -6254.2891 8.4130708 3729.8986 634.77338 -10618.961 0 403.20156 0.00028754528 0.00027394652 + 19910 -6245.3541 -6254.9519 9.5978285 3732.3886 632.74943 -10620.09 0 459.9818 0.00012098254 0.00010452668 + 19920 -6244.876 -6255.2333 10.357252 3731.7438 631.20578 -10618.183 0 496.37761 3.4880366e-05 1.7155812e-05 + 19930 -6244.5102 -6255.0346 10.524361 3727.9057 630.2401 -10613.18 0 504.38642 2.7715846e-05 1.0311513e-05 + 19940 -6244.2739 -6254.398 10.124103 3721.4967 629.78183 -10605.676 0 485.2038 7.9808761e-05 6.2241361e-05 + 19950 -6244.1455 -6253.4616 9.3160505 3713.6916 629.6698 -10596.823 0 446.47741 0.00016132212 0.00014144515 + 19960 -6244.0989 -6252.3906 8.2917134 3705.9564 629.73449 -10588.081 0 397.38543 0.00024043558 0.00021704989 + 19970 -6244.1184 -6251.3399 7.2214874 3699.7055 629.85007 -10580.895 0 346.0942 0.00029139121 0.00026627729 + 19980 -6244.1901 -6250.4577 6.2675587 3695.9809 629.9482 -10576.387 0 300.37658 0.00030094343 0.00027812754 + 19990 -6244.2871 -6249.8961 5.6089912 3695.2601 630.00645 -10575.163 0 268.81433 0.00027071105 0.00025340901 + 20000 -6244.3692 -6249.7937 5.4244603 3697.4378 630.03012 -10577.262 0 259.97057 0.00021406606 0.0002017382 + 20010 -6244.4009 -6250.2224 5.8214767 3701.9492 630.04153 -10582.213 0 278.99783 0.00014889429 0.00013686666 + 20020 -6244.3789 -6251.1277 6.7488662 3707.9527 630.08128 -10589.162 0 323.44354 9.0039151e-05 7.2431661e-05 + 20030 -6244.3516 -6252.3099 7.958323 3714.4891 630.2144 -10597.013 0 381.40749 4.5802527e-05 2.0044774e-05 + 20040 -6244.409 -6253.4803 9.0713383 3720.5741 630.52876 -10604.583 0 434.74943 2.0601864e-05 -9.908418e-06 + 20050 -6244.6334 -6254.378 9.7446027 3725.2581 631.11574 -10610.752 0 467.01604 2.1280897e-05 -6.585751e-06 + 20060 -6245.0429 -6254.8769 9.8339113 3727.732 632.03522 -10614.644 0 471.29621 6.0368122e-05 4.0778394e-05 + 20070 -6245.58 -6255.0045 9.4244964 3727.5297 633.27807 -10615.812 0 451.67475 0.00015034302 0.00013820466 + 20080 -6246.1599 -6254.862 8.7020424 3724.7558 634.74145 -10614.359 0 417.0507 0.00029067127 0.0002797511 + 20090 -6246.729 -6254.5274 7.7984423 3720.1652 636.22509 -10610.918 0 373.74511 0.00045794048 0.00044260462 + 20100 -6247.2722 -6254.0354 6.763193 3714.9687 637.45202 -10606.456 0 324.13016 0.00060893788 0.00058919366 + 20110 -6247.7807 -6253.4348 5.6541638 3710.4315 638.11687 -10601.983 0 270.97925 0.0006960783 0.00067699395 + 20120 -6248.2278 -6252.8419 4.6141121 3707.4776 637.95958 -10598.279 0 221.13414 0.00068521681 0.00067195373 + 20130 -6248.5793 -6252.4234 3.8441081 3706.4809 636.84744 -10595.752 0 184.23123 0.00056642838 0.00055977333 + 20140 -6248.8178 -6252.322 3.5041331 3707.2756 634.83778 -10594.435 0 167.93772 0.00035536812 0.00035123795 + 20150 -6248.9578 -6252.581 3.6231603 3709.304 632.1959 -10594.081 0 173.64217 8.8112816e-05 8.0887381e-05 + 20160 -6249.0428 -6253.1215 4.078684 3711.8035 629.35543 -10594.28 0 195.47342 -0.0001868526 -0.00019991232 + 20170 -6249.126 -6253.7863 4.6603572 3713.972 626.82482 -10594.583 0 223.35046 -0.00041751977 -0.00043408048 + 20180 -6249.2403 -6254.4233 5.1829624 3715.1122 625.06215 -10594.598 0 248.39664 -0.00055790998 -0.00057242148 + 20190 -6249.3773 -6254.951 5.5736861 3714.7795 624.35624 -10594.087 0 267.12231 -0.0005785412 -0.00058695561 + 20200 -6249.4948 -6255.3605 5.8656524 3712.9375 624.75529 -10593.053 0 281.11497 -0.00047643789 -0.00048003103 + 20210 -6249.5538 -6255.6562 6.1024309 3710.0569 626.06784 -10591.781 0 292.46273 -0.00028051152 -0.00028538013 + 20220 -6249.5548 -6255.7968 6.2419766 3707.0535 627.93182 -10590.782 0 299.15054 -4.7039587e-05 -5.9389229e-05 + 20230 -6249.541 -6255.6955 6.1545294 3705.0087 629.92421 -10590.628 0 294.95958 0.0001567432 0.0001357073 + 20240 -6249.5632 -6255.2865 5.7232414 3704.7567 631.67532 -10591.718 0 274.28984 0.00027615295 0.00025153231 + 20250 -6249.6378 -6254.6024 4.9645266 3706.5314 632.95484 -10594.089 0 237.92797 0.00028935343 0.00026897535 + 20260 -6249.7311 -6253.8013 4.0702029 3709.857 633.70742 -10597.366 0 195.06696 0.00021436836 0.00020299239 + 20270 -6249.7811 -6253.1144 3.3333399 3713.7401 634.03139 -10600.886 0 159.75235 9.9091455e-05 9.469643e-05 + 20280 -6249.7391 -6252.7398 3.000654 3717.0674 634.11326 -10603.92 0 143.80818 -6.7878044e-07 -5.6502519e-06 + 20290 -6249.5994 -6252.7467 3.1473261 3719.0079 634.14177 -10605.896 0 150.83753 -4.4164114e-05 -5.7282594e-05 + 20300 -6249.3986 -6253.0596 3.6610946 3719.2356 634.22851 -10606.524 0 175.46019 -1.8835919e-05 -4.192381e-05 + 20310 -6249.1829 -6253.5292 4.3462877 3717.9091 634.36023 -10605.799 0 208.29849 6.0332364e-05 3.2689988e-05 + 20320 -6248.9662 -6254.0319 5.0657188 3715.4873 634.40232 -10603.922 0 242.77767 0.00016188045 0.00013822217 + 20330 -6248.7096 -6254.5164 5.8068074 3712.528 634.15788 -10601.202 0 278.29479 0.00025113872 0.00023654854 + 20340 -6248.3461 -6254.9656 6.6195208 3709.5725 633.46268 -10598.001 0 317.24458 0.00029937691 0.00029167907 + 20350 -6247.8359 -6255.3183 7.4823995 3707.1098 632.27569 -10594.704 0 358.59857 0.00028774824 0.00027960148 + 20360 -6247.2133 -6255.4364 8.2230885 3705.5382 630.72133 -10591.696 0 394.09654 0.00020926655 0.0001944831 + 20370 -6246.5785 -6255.1646 8.5861278 3705.0635 629.0602 -10589.288 0 411.49542 7.172349e-05 5.0499447e-05 + 20380 -6246.0332 -6254.4465 8.4132851 3705.5775 627.6024 -10587.626 0 403.21183 -9.9940195e-05 -0.00012137555 + 20390 -6245.6121 -6253.3991 7.7869349 3706.6356 626.60866 -10586.643 0 373.19361 -0.00026667341 -0.00028158418 + 20400 -6245.271 -6252.2791 7.0080682 3707.6094 626.22559 -10586.114 0 335.86595 -0.00038620176 -0.00039312861 + 20410 -6244.9336 -6251.3586 6.4250368 3707.9608 626.47311 -10585.793 0 307.92381 -0.00042774132 -0.00043170061 + 20420 -6244.5514 -6250.7983 6.2468646 3707.4861 627.27018 -10585.555 0 299.3848 -0.00038277406 -0.00039114848 + 20430 -6244.1313 -6250.5981 6.4667585 3706.389 628.47357 -10585.461 0 309.92335 -0.00026637102 -0.00028292802 + 20440 -6243.7191 -6250.6487 6.9295645 3705.1476 629.91158 -10585.708 0 332.10361 -0.00010894057 -0.00013065732 + 20450 -6243.3551 -6250.839 7.4839137 3704.2644 631.40782 -10586.511 0 358.67114 5.704174e-05 3.7677009e-05 + 20460 -6243.0341 -6251.1414 8.1072882 3704.0522 632.79873 -10587.992 0 388.54674 0.00020838531 0.00019688518 + 20470 -6242.7064 -6251.6086 8.9022248 3704.5783 633.9504 -10590.137 0 426.64456 0.00033442583 0.00032849378 + 20480 -6242.3309 -6252.279 9.9480469 3705.7691 634.7752 -10592.823 0 476.76623 0.00043073252 0.00042037941 + 20490 -6241.9472 -6253.0635 11.11628 3707.5477 635.24314 -10595.854 0 532.75449 0.00048918059 0.00046399124 + 20500 -6241.6968 -6253.7211 12.024306 3709.8452 635.38091 -10598.947 0 576.2722 0.00049483917 0.00045341935 + 20510 -6241.7473 -6253.9763 12.22897 3712.4442 635.25516 -10601.676 0 586.08087 0.00043601919 0.00038919904 + 20520 -6242.1586 -6253.7128 11.554161 3714.8041 634.94342 -10603.46 0 553.74023 0.0003209304 0.00028410759 + 20530 -6242.8203 -6253.08 10.25975 3716.1084 634.50554 -10603.694 0 491.70478 0.00018337963 0.00016357738 + 20540 -6243.5404 -6252.3889 8.8484907 3715.6284 633.97206 -10601.989 0 424.06932 6.6343161e-05 5.646154e-05 + 20550 -6244.2038 -6251.8841 7.680278 3713.1793 633.35199 -10598.415 0 368.08202 -5.0620609e-06 -1.8669957e-05 + 20560 -6244.8318 -6251.618 6.7862298 3709.2884 632.64548 -10593.552 0 325.23421 -3.6513409e-05 -6.1170526e-05 + 20570 -6245.5011 -6251.5292 6.0280955 3704.9373 631.85008 -10588.317 0 288.90016 -5.3075708e-05 -8.4585369e-05 + 20580 -6246.232 -6251.5911 5.3591676 3701.1024 630.96539 -10583.659 0 256.84138 -7.7460204e-05 -0.00010602484 + 20590 -6246.9643 -6251.8628 4.8985033 3698.4278 630.00252 -10580.293 0 234.76377 -0.00011781597 -0.00013726383 + 20600 -6247.6171 -6252.4164 4.7993318 3697.1654 628.99547 -10578.577 0 230.01091 -0.0001705911 -0.00018220188 + 20610 -6248.1434 -6253.2358 5.0923582 3697.295 628.00884 -10578.54 0 244.05438 -0.00022953172 -0.00023904172 + 20620 -6248.5419 -6254.1787 5.6367759 3698.6532 627.139 -10579.971 0 270.14593 -0.00029092434 -0.00030304039 + 20630 -6248.8428 -6255.0249 6.1821524 3700.9728 626.50624 -10582.504 0 296.28343 -0.00035246502 -0.00036744388 + 20640 -6249.0856 -6255.5763 6.490657 3703.8527 626.23454 -10585.664 0 311.0687 -0.00040870238 -0.00042303272 + 20650 -6249.2907 -6255.7432 6.4524837 3706.7524 626.42126 -10588.917 0 309.23922 -0.00044795623 -0.00045818363 + 20660 -6249.447 -6255.5628 6.1158643 3709.0864 627.10774 -10591.757 0 293.10653 -0.00045469444 -0.0004609672 + 20670 -6249.5343 -6255.1461 5.6117807 3710.4028 628.2631 -10593.812 0 268.94802 -0.00041681525 -0.0004229131 + 20680 -6249.5548 -6254.6083 5.0534823 3710.5385 629.78438 -10594.931 0 242.19123 -0.00033252292 -0.00034249232 + 20690 -6249.5379 -6254.0395 4.5015261 3709.6503 631.50737 -10595.197 0 215.73839 -0.00021207148 -0.00022675032 + 20700 -6249.5191 -6253.5183 3.999206 3708.1184 633.22262 -10594.859 0 191.66439 -7.450263e-05 -9.0915194e-05 + 20710 -6249.5132 -6253.1289 3.6156672 3706.3986 634.69541 -10594.223 0 173.28306 5.7187959e-05 4.3464995e-05 + 20720 -6249.5055 -6252.9534 3.4479099 3704.9002 635.69135 -10593.545 0 165.24319 0.00015985785 0.00015147828 + 20730 -6249.4598 -6253.0436 3.5838007 3703.9205 636.00984 -10592.974 0 171.75584 0.00021293204 0.00020885715 + 20740 -6249.3373 -6253.3914 4.0540676 3703.6216 635.52514 -10592.538 0 194.29367 0.00020111881 0.00019692686 + 20750 -6249.1176 -6253.915 4.7973602 3704.0235 634.23026 -10592.169 0 229.91642 0.00011769376 0.00010790043 + 20760 -6248.8146 -6254.4708 5.6561528 3704.9939 632.26907 -10591.734 0 271.07458 -3.1990562e-05 -5.0697605e-05 + 20770 -6248.4759 -6254.8945 6.4186568 3706.2291 629.93633 -10591.06 0 307.61805 -0.00022778783 -0.00025419822 + 20780 -6248.1588 -6255.0629 6.9041241 3707.2536 627.63039 -10589.947 0 330.88437 -0.00043459712 -0.00046331446 + 20790 -6247.895 -6254.9445 7.0494716 3707.4878 625.76391 -10588.196 0 337.85023 -0.00060716961 -0.00063195023 + 20800 -6247.673 -6254.6027 6.9296481 3706.4224 624.66205 -10585.687 0 332.10762 -0.00070142474 -0.00071929958 + 20810 -6247.4563 -6254.1401 6.683827 3703.8667 624.48516 -10582.492 0 320.32649 -0.00069013933 -0.00070292167 + 20820 -6247.2205 -6253.6298 6.4092476 3700.1418 625.19652 -10578.968 0 307.16711 -0.00057608952 -0.00058802231 + 20830 -6246.9717 -6253.0948 6.1230614 3696.0775 626.57411 -10575.746 0 293.45146 -0.00039455416 -0.0004085525 + 20840 -6246.7305 -6252.5497 5.8192265 3692.7757 628.25972 -10573.585 0 278.88999 -0.00020215644 -0.00021819285 + 20850 -6246.5052 -6252.0505 5.5452167 3691.2483 629.84378 -10573.143 0 265.7579 -5.6823415e-05 -7.333374e-05 + 20860 -6246.2832 -6251.6957 5.4125014 3692.0864 630.97784 -10574.76 0 259.39744 2.053232e-06 -1.4036497e-05 + 20870 -6246.0434 -6251.5776 5.5342127 3695.2716 631.48546 -10578.335 0 265.23053 -3.4119569e-05 -5.0117037e-05 + 20880 -6245.7751 -6251.7291 5.9539513 3700.1602 631.4274 -10583.317 0 285.34675 -0.00014099397 -0.00015715713 + 20890 -6245.4832 -6252.1102 6.6270243 3705.6273 631.08462 -10588.822 0 317.60419 -0.00026839399 -0.00028363869 + 20900 -6245.1786 -6252.6368 7.4582214 3710.3454 630.85143 -10593.834 0 357.43982 -0.00035532713 -0.00036774445 + 20910 -6244.8689 -6253.216 8.3470568 3713.1528 631.07011 -10597.439 0 400.0378 -0.00035118093 -0.00036007155 + 20920 -6244.5629 -6253.7556 9.192686 3713.4184 631.87222 -10599.046 0 440.5651 -0.0002378252 -0.00024509786 + 20930 -6244.2858 -6254.154 9.8681267 3711.2644 633.10097 -10598.519 0 472.936 -4.2296024e-05 -5.1503124e-05 + 20940 -6244.0842 -6254.3067 10.222471 3707.5216 634.35895 -10596.187 0 489.91816 0.00016980413 0.0001560283 + 20950 -6244.0043 -6254.1464 10.142069 3703.406 635.16595 -10592.718 0 486.06483 0.00032019154 0.00030178365 + 20960 -6244.0617 -6253.6842 9.6224839 3700.0522 635.1559 -10588.892 0 461.16342 0.0003503241 0.00032918028 + 20970 -6244.2323 -6253.0093 8.7769399 3698.1228 634.22286 -10585.355 0 420.64021 0.00024356992 0.00022188117 + 20980 -6244.4716 -6252.246 7.7744298 3697.65 632.55414 -10582.45 0 372.5943 2.8244236e-05 7.7247204e-06 + 20990 -6244.7397 -6251.5144 6.774683 3698.1317 630.54418 -10580.19 0 324.68082 -0.00023595074 -0.00025375121 + 21000 -6245.0079 -6250.9244 5.9164632 3698.7944 628.6366 -10578.355 0 283.55011 -0.00047967913 -0.00049347927 + 21010 -6245.2511 -6250.5915 5.3403803 3698.9111 627.16936 -10576.672 0 255.94099 -0.00064591064 -0.00065608122 + 21020 -6245.447 -6250.6274 5.1804209 3698.0818 626.28712 -10574.996 0 248.27484 -0.00070635818 -0.00071624175 + 21030 -6245.5908 -6251.0863 5.4954121 3696.3988 625.94437 -10573.429 0 263.37098 -0.00066830303 -0.00068322997 + 21040 -6245.7145 -6251.907 6.1925655 3694.4212 625.97812 -10572.306 0 296.78248 -0.00056926066 -0.00059300185 + 21050 -6245.8834 -6252.9102 7.0268226 3692.9378 626.20575 -10572.054 0 336.76477 -0.00046032118 -0.00049167519 + 21060 -6246.1652 -6253.8658 7.7006364 3692.6066 626.50712 -10572.98 0 369.0577 -0.0003842058 -0.0004169455 + 21070 -6246.5876 -6254.5874 7.9997258 3693.6567 626.86562 -10575.11 0 383.39175 -0.00035799245 -0.00038464077 + 21080 -6247.119 -6254.9902 7.8712583 3695.8107 627.35817 -10578.159 0 377.23486 -0.00036916999 -0.00038575296 + 21090 -6247.6862 -6255.0888 7.4025966 3698.4525 628.09892 -10581.64 0 354.77396 -0.00038668773 -0.00039486671 + 21100 -6248.2169 -6254.9532 6.7363283 3700.924 629.15889 -10585.036 0 322.84265 -0.00038019688 -0.00038546205 + 21110 -6248.6715 -6254.6648 5.9933638 3702.7833 630.49672 -10587.945 0 287.23562 -0.00033657462 -0.00034423587 + 21120 -6249.048 -6254.2971 5.2491196 3703.9064 631.93431 -10590.138 0 251.56726 -0.00026565407 -0.00027762591 + 21130 -6249.3649 -6253.9206 4.5556953 3704.4197 633.19241 -10591.533 0 218.33448 -0.00019402206 -0.0002083032 + 21140 -6249.6388 -6253.613 3.9741872 3704.5334 633.97467 -10592.121 0 190.46535 -0.00015168611 -0.00016440611 + 21150 -6249.8713 -6253.4561 3.5848479 3704.3829 634.0674 -10591.906 0 171.80603 -0.00015859238 -0.00016702722 + 21160 -6250.0514 -6253.5123 3.4609576 3703.9591 633.41712 -10590.889 0 165.86851 -0.00021679161 -0.00022132029 + 21170 -6250.169 -6253.7864 3.6173932 3703.1537 632.15592 -10589.096 0 173.36578 -0.00031087182 -0.00031451174 + 21180 -6250.2302 -6254.2027 3.9724864 3701.8688 630.56253 -10586.634 0 190.38384 -0.00041540243 -0.00042124527 + 21190 -6250.259 -6254.6258 4.366788 3700.1127 628.97008 -10583.709 0 209.28098 -0.00050525524 -0.00051389434 + 21200 -6250.2812 -6254.9239 4.6427323 3698.0325 627.65448 -10580.611 0 222.50578 -0.00056429538 -0.00057353065 + 21210 -6250.3027 -6255.0351 4.7323515 3695.8919 626.75001 -10577.677 0 226.80084 -0.00058977403 -0.0005969641 + 21220 -6250.3035 -6254.9887 4.6852029 3694.0265 626.22904 -10575.244 0 224.54121 -0.00059194797 -0.00059699681 + 21230 -6250.2544 -6254.8684 4.6139762 3692.7909 625.95262 -10573.612 0 221.12763 -0.00058967868 -0.0005959677 + 21240 -6250.1445 -6254.7433 4.5987407 3692.4839 625.76501 -10572.992 0 220.39746 -0.00060310575 -0.00061523338 + 21250 -6249.998 -6254.6203 4.6223176 3693.242 625.58645 -10573.449 0 221.52739 -0.00064467898 -0.00066441841 + 21260 -6249.8631 -6254.454 4.5909274 3694.9241 625.4621 -10574.84 0 220.023 -0.00071064996 -0.0007343294 + 21270 -6249.7761 -6254.2107 4.4345694 3697.0543 625.54656 -10576.812 0 212.52945 -0.00077678073 -0.00079688863 + 21280 -6249.725 -6253.934 4.2089903 3698.9073 626.03195 -10578.873 0 201.71843 -0.00080310435 -0.00081386833 + 21290 -6249.6481 -6253.7427 4.0945855 3699.7728 627.05197 -10580.567 0 196.23551 -0.00075009919 -0.00075282935 + 21300 -6249.4786 -6253.742 4.2634903 3699.3174 628.6014 -10581.661 0 204.33038 -0.00060130407 -0.00060432791 + 21310 -6249.2028 -6253.9258 4.7230478 3697.8298 630.4988 -10582.254 0 226.35495 -0.00037961978 -0.00039195523 + 21320 -6248.8781 -6254.1696 5.29152 3696.1525 632.40545 -10582.728 0 253.59933 -0.00014464852 -0.00016867039 + 21330 -6248.5906 -6254.3289 5.7382864 3695.2899 633.90466 -10583.523 0 275.01088 3.0490777e-05 8.5822312e-07 + 21340 -6248.3905 -6254.3447 5.9541632 3695.913 634.63078 -10584.888 0 285.35691 9.0458128e-05 6.4715037e-05 + 21350 -6248.2624 -6254.2605 5.9981356 3698.0398 634.40655 -10586.707 0 287.46431 1.9894094e-05 3.8889457e-06 + 21360 -6248.1528 -6254.1538 6.0009637 3701.0337 633.32576 -10588.513 0 287.59985 -0.00015318612 -0.00016058881 + 21370 -6248.0209 -6254.0539 6.0330278 3703.8717 631.73284 -10589.658 0 289.13654 -0.00037091496 -0.00037559157 + 21380 -6247.868 -6253.9193 6.0513411 3705.5277 630.09967 -10589.547 0 290.01422 -0.00056743338 -0.00057488416 + 21390 -6247.727 -6253.6826 5.9555875 3705.3057 628.85027 -10587.839 0 285.42517 -0.00069031115 -0.00070192936 + 21400 -6247.6287 -6253.3213 5.6926806 3703.0328 628.20888 -10584.563 0 272.8252 -0.00071546518 -0.00072859357 + 21410 -6247.575 -6252.8965 5.3214871 3699.0877 628.13455 -10580.119 0 255.03552 -0.00065229166 -0.00066324566 + 21420 -6247.5391 -6252.5326 4.993495 3694.2925 628.36368 -10575.189 0 239.3163 -0.00053828937 -0.00054558349 + 21430 -6247.4852 -6252.3563 4.8711113 3689.7077 628.53538 -10570.599 0 233.45098 -0.00042530593 -0.00043071743 + 21440 -6247.3925 -6252.4325 5.0400185 3686.3723 628.34477 -10567.15 0 241.54597 -0.00036201273 -0.00036896905 + 21450 -6247.2681 -6252.7352 5.4670776 3685.037 627.66519 -10565.437 0 262.01303 -0.00037800463 -0.00038866708 + 21460 -6247.1406 -6253.1673 6.0267665 3685.9488 626.59725 -10565.713 0 288.83647 -0.00047394571 -0.00048728459 + 21470 -6247.0378 -6253.6169 6.579063 3688.7595 625.43302 -10567.809 0 315.30562 -0.00062053384 -0.00063309194 + 21480 -6246.9647 -6254.0098 7.0450541 3692.6166 624.5557 -10571.182 0 337.63852 -0.00076725788 -0.00077629189 + 21490 -6246.9004 -6254.3221 7.4217459 3696.4381 624.31555 -10575.076 0 355.69171 -0.0008593485 -0.0008658729 + 21500 -6246.8213 -6254.5446 7.7232092 3699.2808 624.9238 -10578.749 0 370.13952 -0.00085775517 -0.00086662136 + 21510 -6246.7324 -6254.6361 7.9036285 3700.645 626.39209 -10581.673 0 378.78623 -0.00075414654 -0.00077051503 + 21520 -6246.6739 -6254.5182 7.8443789 3700.5759 628.52713 -10583.621 0 375.94665 -0.00057366772 -0.00059847772 + 21530 -6246.6923 -6254.1281 7.4357723 3699.5266 630.97706 -10584.632 0 356.36393 -0.00036364733 -0.00039200963 + 21540 -6246.7981 -6253.4919 6.6937344 3698.0828 633.31551 -10584.89 0 320.80131 -0.00017416482 -0.00019846873 + 21550 -6246.9476 -6252.7539 5.8062757 3696.7142 635.1399 -10584.608 0 278.26931 -4.1146613e-05 -5.6646748e-05 + 21560 -6247.0701 -6252.1242 5.0541287 3695.6773 636.15674 -10583.958 0 242.22221 1.9761808e-05 1.1485031e-05 + 21570 -6247.1165 -6251.7737 4.6572712 3695.065 636.23175 -10583.07 0 223.20257 8.6462782e-06 1.3100402e-06 + 21580 -6247.0889 -6251.7555 4.6665569 3694.8955 635.39592 -10582.047 0 223.64759 -6.6504892e-05 -7.8623008e-05 + 21590 -6247.0294 -6252.0099 4.9805501 3695.135 633.81301 -10580.958 0 238.69591 -0.00019363512 -0.00021136941 + 21600 -6246.9804 -6252.4374 5.4570079 3695.6492 631.72563 -10579.812 0 261.53044 -0.00035573378 -0.00037514733 + 21610 -6246.9524 -6252.9645 6.0120913 3696.1714 629.40075 -10578.537 0 288.13315 -0.00053016043 -0.00054650479 + 21620 -6246.9239 -6253.5503 6.6264463 3696.3608 627.09083 -10577.002 0 317.57649 -0.00069233029 -0.00070403512 + 21630 -6246.8713 -6254.1433 7.2719261 3695.9353 625.01569 -10575.094 0 348.5115 -0.00082247304 -0.00083179198 + 21640 -6246.8009 -6254.6457 7.8447938 3694.7944 623.35997 -10572.8 0 375.96654 -0.00091030265 -0.0009205405 + 21650 -6246.7511 -6254.9312 8.1800776 3693.0506 622.27445 -10570.256 0 392.03522 -0.00095399696 -0.00096623542 + 21660 -6246.7642 -6254.9069 8.1426964 3690.966 621.87058 -10567.743 0 390.2437 -0.00095508958 -0.00096742591 + 21670 -6246.8516 -6254.5696 7.7180413 3688.8601 622.20351 -10565.633 0 369.89185 -0.00091454157 -0.00092423221 + 21680 -6246.986 -6254.0122 7.0262227 3687.0568 623.24833 -10564.317 0 336.73601 -0.00083382691 -0.00084005465 + 21690 -6247.1239 -6253.3787 6.2547271 3685.8776 624.88197 -10564.138 0 299.76162 -0.00071981493 -0.00072455687 + 21700 -6247.2362 -6252.8049 5.5686197 3685.6354 626.88624 -10565.326 0 266.8795 -0.00058852048 -0.00059499699 + 21710 -6247.3218 -6252.3803 5.0584676 3686.5814 628.98059 -10567.942 0 242.43015 -0.00046361586 -0.00047380903 + 21720 -6247.3997 -6252.1429 4.7432246 3688.8042 630.8792 -10571.826 0 227.32194 -0.00036954573 -0.00038271719 + 21730 -6247.4884 -6252.0971 4.6087617 3692.1251 632.35225 -10576.574 0 220.87772 -0.00032263468 -0.00033587749 + 21740 -6247.5891 -6252.2381 4.6489265 3696.0568 633.26856 -10581.563 0 222.80264 -0.00032474892 -0.00033523392 + 21750 -6247.6831 -6252.5601 4.8769867 3699.8731 633.6077 -10586.041 0 233.73257 -0.00036285412 -0.00037019856 + 21760 -6247.7465 -6253.0418 5.2952818 3702.7877 633.445 -10589.274 0 253.77961 -0.00041483811 -0.00042170205 + 21770 -6247.7731 -6253.6224 5.8493167 3704.1769 632.91956 -10590.719 0 280.33208 -0.00045860894 -0.00046886017 + 21780 -6247.7852 -6254.1997 6.4145622 3703.7489 632.19307 -10590.142 0 307.42181 -0.00047999397 -0.00049582008 + 21790 -6247.8224 -6254.6605 6.8380487 3701.6 631.4054 -10587.666 0 327.71766 -0.00047646824 -0.0004967298 + 21800 -6247.9174 -6254.9241 7.0066218 3698.1601 630.63621 -10583.72 0 335.79663 -0.0004565906 -0.00047760309 + 21810 -6248.0755 -6254.9676 6.8921343 3694.0738 629.88679 -10578.928 0 330.30975 -0.00043672207 -0.00045468755 + 21820 -6248.274 -6254.8207 6.5466677 3690.0603 629.09381 -10573.975 0 313.75305 -0.00043648561 -0.00044970657 + 21830 -6248.4782 -6254.5381 6.0599635 3686.7797 628.17374 -10569.492 0 290.42745 -0.00047361799 -0.00048305044 + 21840 -6248.6607 -6254.1748 5.5140544 3684.7165 627.0805 -10565.972 0 264.26442 -0.0005585594 -0.00056660409 + 21850 -6248.812 -6253.7767 4.9646938 3684.0917 625.85018 -10563.719 0 237.93598 -0.00068965363 -0.00069828652 + 21860 -6248.9359 -6253.3902 4.4542593 3684.8185 624.61218 -10562.821 0 213.4731 -0.00085061895 -0.00086024695 + 21870 -6249.0396 -6253.0754 4.0357624 3686.5222 623.56385 -10563.161 0 193.41638 -0.0010120341 -0.0010217392 + 21880 -6249.1243 -6252.9043 3.78 3688.6363 622.92131 -10564.462 0 181.15881 -0.0011374507 -0.001146153 + 21890 -6249.1851 -6252.9383 3.7532097 3690.5614 622.86583 -10566.365 0 179.87487 -0.0011928496 -0.0012002681 + 21900 -6249.2158 -6253.1953 3.9795037 3691.8412 623.49928 -10568.536 0 190.72014 -0.001156587 -0.0011632398 + 21910 -6249.2145 -6253.6323 4.417866 3692.2944 624.81375 -10570.74 0 211.72893 -0.0010266412 -0.0010331262 + 21920 -6249.183 -6254.1553 4.9722307 3692.0554 626.67685 -10572.887 0 238.29719 -0.0008229356 -0.00082936704 + 21930 -6249.1243 -6254.6502 5.5258552 3691.5146 628.83806 -10575.003 0 264.82999 -0.00058405428 -0.00059018811 + 21940 -6249.0402 -6255.0158 5.9756682 3691.1827 630.96362 -10577.162 0 286.38755 -0.00035897281 -0.0003647325 + 21950 -6248.9325 -6255.1838 6.2512957 3691.5165 632.70261 -10579.403 0 299.59717 -0.00019536529 -0.00020114614 + 21960 -6248.8049 -6255.126 6.3211175 3692.7517 633.77204 -10581.65 0 302.94342 -0.00012706335 -0.00013358582 + 21970 -6248.6618 -6254.8545 6.1927602 3694.7912 634.03454 -10583.68 0 296.79181 -0.00016427567 -0.00017224277 + 21980 -6248.5065 -6254.415 5.9085311 3697.1929 633.53716 -10585.145 0 283.16996 -0.00029025062 -0.00030007749 + 21990 -6248.341 -6253.8749 5.5338571 3699.2719 632.49055 -10585.637 0 265.21348 -0.00046623403 -0.00047786092 + 22000 -6248.1664 -6253.3105 5.1440774 3700.2889 631.19168 -10584.791 0 246.53305 -0.00064332719 -0.00065610512 + 22010 -6247.9813 -6252.7995 4.8181932 3699.667 629.91921 -10582.386 0 230.91486 -0.00077709958 -0.00078992562 + 22020 -6247.7784 -6252.4167 4.6382629 3697.1749 628.84392 -10578.435 0 222.29158 -0.00084014818 -0.0008519593 + 22030 -6247.5418 -6252.2257 4.6838505 3693.0323 627.98915 -10573.247 0 224.4764 -0.00082903057 -0.00083941356 + 22040 -6247.2481 -6252.2648 5.016705 3687.9029 627.25222 -10567.42 0 240.42865 -0.00076393273 -0.00077347964 + 22050 -6246.8726 -6252.533 5.6603979 3682.7679 626.47261 -10561.773 0 271.27803 -0.00068143795 -0.00069168061 + 22060 -6246.4013 -6252.9803 6.5789446 3678.7021 625.51939 -10557.202 0 315.29994 -0.0006226133 -0.00063548648 + 22070 -6245.8469 -6253.5059 7.6590101 3676.6067 624.36832 -10554.481 0 367.06274 -0.00061974506 -0.00063655755 + 22080 -6245.2585 -6253.9711 8.7126019 3676.9622 623.1424 -10554.076 0 417.55677 -0.00068522524 -0.00070550051 + 22090 -6244.7108 -6254.2316 9.5208417 3679.6686 622.09872 -10555.999 0 456.29216 -0.00080584517 -0.00082694721 + 22100 -6244.272 -6254.1851 9.9131117 3684.034 621.56139 -10559.78 0 475.09193 -0.00094503711 -0.00096334639 + 22110 -6243.9704 -6253.8089 9.8385574 3688.9472 621.82194 -10564.578 0 471.51887 -0.0010534999 -0.0010667401 + 22120 -6243.7866 -6253.1665 9.3799568 3693.2024 623.04258 -10569.412 0 449.54016 -0.0010853077 -0.001094366 + 22130 -6243.6774 -6252.375 8.6975911 3695.8703 625.19411 -10573.439 0 416.83737 -0.0010139239 -0.001022452 + 22140 -6243.6106 -6251.5571 7.9465496 3696.5671 628.04443 -10576.169 0 380.84324 -0.00084203524 -0.00085373163 + 22150 -6243.5803 -6250.8148 7.2344906 3695.508 631.1967 -10577.519 0 346.71738 -0.00060105448 -0.00061668812 + 22160 -6243.5946 -6250.2401 6.6454704 3693.3442 634.16753 -10577.752 0 318.48823 -0.0003403287 -0.00035710305 + 22170 -6243.6502 -6249.9368 6.2865585 3690.8887 636.48831 -10577.314 0 301.28716 -0.00011100951 -0.00012496177 + 22180 -6243.7219 -6250.0134 6.2914872 3688.8644 637.80508 -10576.683 0 301.52337 4.7906742e-05 3.8367054e-05 + 22190 -6243.7772 -6250.5328 6.7555585 3687.7597 637.94854 -10576.241 0 323.76427 0.0001157259 0.00010806824 + 22200 -6243.8095 -6251.445 7.6355633 3687.7911 636.95536 -10576.191 0 365.93904 8.798659e-05 7.735708e-05 + 22210 -6243.8656 -6252.5573 8.6916575 3688.9166 635.03827 -10576.512 0 416.55299 -2.9060447e-05 -4.5454804e-05 + 22220 -6244.037 -6253.5868 9.5498363 3690.8405 632.51826 -10576.946 0 457.68174 -0.00022137788 -0.00024099738 + 22230 -6244.4016 -6254.2898 9.8881745 3693.0122 629.74357 -10577.046 0 473.8968 -0.00046568158 -0.00048228533 + 22240 -6244.9607 -6254.5798 9.619054 3694.6981 627.02683 -10576.305 0 460.99904 -0.00072830284 -0.00073795261 + 22250 -6245.635 -6254.5347 8.8996797 3695.1935 624.622 -10574.35 0 426.52259 -0.00097038827 -0.00097594865 + 22260 -6246.3297 -6254.2924 7.9626744 3694.1025 622.73241 -10571.127 0 381.61604 -0.0011584922 -0.0011673517 + 22270 -6246.9935 -6253.9459 6.9524338 3691.5024 621.51737 -10566.966 0 333.19964 -0.0012725806 -0.0012896132 + 22280 -6247.6149 -6253.5353 5.9203748 3687.8766 621.07577 -10562.488 0 283.73758 -0.0013061337 -0.0013291846 + 22290 -6248.1836 -6253.1091 4.9255651 3683.896 621.41713 -10558.422 0 236.06072 -0.0012618005 -0.0012837544 + 22300 -6248.6741 -6252.7669 4.0928328 3680.2283 622.44497 -10555.44 0 196.15151 -0.0011492234 -0.001163824 + 22310 -6249.0583 -6252.6328 3.5745619 3677.4658 623.96471 -10554.063 0 171.31306 -0.00098679912 -0.00099295082 + 22320 -6249.322 -6252.7901 3.4681235 3676.128 625.71293 -10554.631 0 166.21194 -0.00080385286 -0.00080579707 + 22330 -6249.4738 -6253.2278 3.7539552 3676.6448 627.40176 -10557.274 0 179.9106 -0.00063877478 -0.00064288185 + 22340 -6249.5466 -6253.835 4.2884233 3679.2602 628.77384 -10561.869 0 205.52531 -0.00053095017 -0.00054150718 + 22350 -6249.5886 -6254.4461 4.8574546 3683.8735 629.66 -10567.98 0 232.79648 -0.00050789828 -0.00052442954 + 22360 -6249.6428 -6254.913 5.2701641 3689.9021 630.02463 -10574.84 0 252.57583 -0.00057260516 -0.000590365 + 22370 -6249.7224 -6255.1668 5.4444474 3696.2735 629.97996 -10581.42 0 260.92847 -0.00069778387 -0.0007112302 + 22380 -6249.8033 -6255.2313 5.4280635 3701.6219 629.75624 -10586.61 0 260.14326 -0.00083205507 -0.00083898784 + 22390 -6249.8445 -6255.1782 5.3336821 3704.6658 629.62784 -10589.472 0 255.61997 -0.00091777022 -0.00092096719 + 22400 -6249.8234 -6255.0582 5.2348239 3704.6281 629.81185 -10589.498 0 250.88213 -0.00091377458 -0.00091867095 + 22410 -6249.7546 -6254.8651 5.1104725 3701.5078 630.37056 -10586.743 0 244.92252 -0.00081281924 -0.00082309135 + 22420 -6249.6781 -6254.5639 4.8858558 3696.0781 631.15834 -10581.8 0 234.15763 -0.00064546641 -0.00066024121 + 22430 -6249.6248 -6254.1524 4.5276203 3689.6302 631.84566 -10575.628 0 216.98897 -0.00046914857 -0.00048405123 + 22440 -6249.5931 -6253.6985 4.1053879 3683.5914 632.02386 -10569.314 0 196.75322 -0.00034801719 -0.00035892923 + 22450 -6249.5512 -6253.3204 3.7691882 3679.1632 631.35486 -10563.838 0 180.64065 -0.00033218726 -0.00033855723 + 22460 -6249.4613 -6253.1257 3.6644204 3677.0728 629.70714 -10559.906 0 175.61959 -0.00044323891 -0.00044845322 + 22470 -6249.3058 -6253.1533 3.8475045 3677.4643 627.22624 -10557.844 0 184.394 -0.00066877011 -0.00067741867 + 22480 -6249.0987 -6253.3576 4.258848 3679.9125 624.31614 -10557.586 0 204.10789 -0.00096536983 -0.00097947002 + 22490 -6248.8737 -6253.6459 4.7721991 3683.537 621.53992 -10558.723 0 228.71056 -0.0012680437 -0.0012851722 + 22500 -6248.6548 -6253.9426 5.2878049 3687.2023 619.4736 -10560.619 0 253.42128 -0.0015044488 -0.0015195937 + 22510 -6248.433 -6254.2266 5.7935868 3689.804 618.5599 -10562.59 0 277.66119 -0.0016126477 -0.0016226376 + 22520 -6248.1741 -6254.5031 6.3289762 3690.6033 619.00504 -10564.111 0 303.32005 -0.0015596438 -0.0015662801 + 22530 -6247.8591 -6254.7332 6.8741478 3689.4997 620.74183 -10564.975 0 329.44773 -0.0013545882 -0.0013631796 + 22540 -6247.5178 -6254.7999 7.2821328 3687.0875 623.45777 -10565.345 0 349.00067 -0.0010486763 -0.0010630095 + 22550 -6247.2157 -6254.5655 7.3498214 3684.4191 626.67399 -10565.659 0 352.24468 -0.00071813725 -0.00073676173 + 22560 -6247.0011 -6253.9817 6.9805773 3682.5778 629.85788 -10566.417 0 334.54843 -0.00043680726 -0.00045431034 + 22570 -6246.8661 -6253.1528 6.2867335 3682.2846 632.54519 -10567.983 0 301.29555 -0.00025228553 -0.000264157 + 22580 -6246.7576 -6252.2975 5.5398746 3683.7169 634.43547 -10570.45 0 265.50188 -0.00017691135 -0.00018333602 + 22590 -6246.6217 -6251.6423 5.0205413 3686.5595 635.42811 -10573.63 0 240.61251 -0.00019432823 -0.00019977609 + 22600 -6246.4387 -6251.3264 4.8877001 3690.1859 635.59157 -10577.104 0 234.24601 -0.00027378128 -0.00028316664 + 22610 -6246.2255 -6251.3707 5.1452139 3693.8493 635.08948 -10580.309 0 246.58752 -0.00038318312 -0.0003979174 + 22620 -6246.012 -6251.7121 5.7001482 3696.8202 634.1016 -10582.634 0 273.18308 -0.00049647289 -0.00051350871 + 22630 -6245.8123 -6252.2614 6.4491121 3698.4783 632.77177 -10583.511 0 309.07764 -0.00059601328 -0.00061057539 + 22640 -6245.6146 -6252.9326 7.3180243 3698.3999 631.19645 -10582.529 0 350.72079 -0.00067314413 -0.00068287786 + 22650 -6245.4014 -6253.6277 8.2262857 3696.4586 629.4476 -10579.534 0 394.24977 -0.00072862091 -0.0007355695 + 22660 -6245.183 -6254.2089 9.02591 3692.8982 627.60926 -10574.716 0 432.57225 -0.00077156512 -0.00078021989 + 22670 -6245.0075 -6254.5141 9.5065736 3688.3016 625.80286 -10568.619 0 455.60835 -0.00081461751 -0.00082798957 + 22680 -6244.931 -6254.4277 9.4967101 3683.4368 624.18508 -10562.05 0 455.13564 -0.00086618799 -0.00088368512 + 22690 -6244.9729 -6253.9528 8.9799663 3679.0523 622.91964 -10555.925 0 430.37037 -0.00092481439 -0.00094356455 + 22700 -6245.1029 -6253.2215 8.1185102 3675.7282 622.13785 -10551.087 0 389.08456 -0.00098016202 -0.00099785892 + 22710 -6245.2676 -6252.4345 7.1669072 3673.8267 621.9052 -10548.166 0 343.47841 -0.0010197446 -0.0010361654 + 22720 -6245.4251 -6251.7814 6.356387 3673.5038 622.20573 -10547.491 0 304.63373 -0.0010359065 -0.0010523273 + 22730 -6245.5607 -6251.3874 5.826688 3674.7272 622.95009 -10549.065 0 279.24758 -0.0010284326 -0.0010462049 + 22740 -6245.6809 -6251.297 5.6161018 3677.2842 624.00589 -10552.587 0 269.15511 -0.0010023971 -0.0010219806 + 22750 -6245.8013 -6251.4814 5.6800823 3680.7964 625.23956 -10557.517 0 272.22142 -0.00096388725 -0.00098459043 + 22760 -6245.9394 -6251.8593 5.9199644 3684.7537 626.55115 -10563.164 0 283.71791 -0.00091624608 -0.00093646455 + 22770 -6246.1083 -6252.3307 6.2224434 3688.5753 627.88607 -10568.792 0 298.2144 -0.0008581897 -0.00087618762 + 22780 -6246.3134 -6252.8135 6.5001831 3691.699 629.2208 -10573.733 0 311.52525 -0.0007846527 -0.00079978966 + 22790 -6246.5568 -6253.2615 6.7047241 3693.7025 630.53346 -10577.497 0 321.328 -0.0006910644 -0.00070454105 + 22800 -6246.8516 -6253.6523 6.8006968 3694.4242 631.77392 -10579.85 0 325.92755 -0.00057998241 -0.00059402114 + 22810 -6247.2308 -6253.9677 6.7368954 3694.0162 632.84393 -10580.828 0 322.86983 -0.00046601415 -0.00048183402 + 22820 -6247.7321 -6254.1922 6.4601144 3692.8793 633.59614 -10580.668 0 309.60493 -0.00037433263 -0.00039083858 + 22830 -6248.3632 -6254.33 5.9668477 3691.501 633.86142 -10579.692 0 285.96482 -0.000332003 -0.00034661662 + 22840 -6249.0754 -6254.4105 5.3350931 3690.2788 633.50414 -10578.193 0 255.68759 -0.0003569635 -0.00036778365 + 22850 -6249.7794 -6254.4709 4.69153 3689.4111 632.48235 -10576.364 0 224.84444 -0.00045145663 -0.00045860099 + 22860 -6250.3926 -6254.5328 4.1401589 3688.8853 630.87904 -10574.297 0 198.41965 -0.00060264141 -0.00060776657 + 22870 -6250.8751 -6254.5954 3.7202672 3688.536 628.88951 -10572.021 0 178.29608 -0.00078740937 -0.00079236538 + 22880 -6251.2288 -6254.6493 3.420461 3688.1296 626.77813 -10569.557 0 163.92768 -0.00097749566 -0.00098343864 + 22890 -6251.4766 -6254.693 3.2164378 3687.4481 624.82411 -10566.965 0 154.14975 -0.0011441273 -0.0011514376 + 22900 -6251.6449 -6254.7389 3.0939457 3686.3635 623.26871 -10564.371 0 148.27924 -0.0012631103 -0.0012716844 + 22910 -6251.7564 -6254.8036 3.0471896 3684.8914 622.27336 -10561.968 0 146.03842 -0.0013199819 -0.001329409 + 22920 -6251.8282 -6254.8952 3.0669569 3683.2087 621.89776 -10560.002 0 146.98578 -0.0013132934 -0.0013228434 + 22930 -6251.871 -6255.0074 3.1364341 3681.6231 622.10195 -10558.732 0 150.31552 -0.0012542893 -0.0012630487 + 22940 -6251.8865 -6255.125 3.2385059 3680.5001 622.76885 -10558.394 0 155.20738 -0.0011630009 -0.0011704159 + 22950 -6251.868 -6255.2307 3.3626964 3680.1702 623.73971 -10559.141 0 161.15928 -0.0010624831 -0.0010690302 + 22960 -6251.8064 -6255.3064 3.4999769 3680.8449 624.85357 -10561.005 0 167.73853 -0.00097324912 -0.00098055051 + 22970 -6251.6992 -6255.3282 3.6289906 3682.557 625.98277 -10563.868 0 173.92159 -0.00090900454 -0.00091897997 + 22980 -6251.5566 -6255.2678 3.7112263 3685.1326 627.05677 -10567.457 0 177.86279 -0.00087378922 -0.00088726666 + 22990 -6251.3975 -6255.1074 3.7099627 3688.1946 628.06713 -10571.369 0 177.80223 -0.00086064583 -0.00087654575 + 23000 -6251.2362 -6254.8625 3.6263175 3691.2095 629.04993 -10575.122 0 173.79348 -0.0008528275 -0.00086882902 + 23010 -6251.0707 -6254.5917 3.5210263 3693.5915 630.04856 -10578.232 0 168.74734 -0.00082900947 -0.00084336617 + 23020 -6250.8838 -6254.3752 3.4913746 3694.8611 631.06863 -10580.305 0 167.32626 -0.00077247144 -0.00078537463 + 23030 -6250.6582 -6254.2694 3.6112408 3694.8073 632.04114 -10581.118 0 173.07092 -0.00068095377 -0.00069404081 + 23040 -6250.3912 -6254.2749 3.8836802 3693.5708 632.8102 -10580.656 0 186.12775 -0.00057161728 -0.00058604502 + 23050 -6250.0958 -6254.3441 4.2483379 3691.5888 633.15651 -10579.089 0 203.60419 -0.00047719049 -0.00049225772 + 23060 -6249.7867 -6254.4183 4.6316778 3689.4251 632.8585 -10576.702 0 221.97599 -0.00043442897 -0.00044819399 + 23070 -6249.4682 -6254.4558 4.9875699 3687.5695 631.77676 -10573.802 0 239.03234 -0.00047040877 -0.0004816492 + 23080 -6249.1364 -6254.4308 5.2943866 3686.2929 629.9306 -10570.654 0 253.73671 -0.00059256066 -0.00060209024 + 23090 -6248.7921 -6254.3186 5.5264635 3685.5965 627.53096 -10567.446 0 264.85914 -0.00078535199 -0.0007954641 + 23100 -6248.4503 -6254.0923 5.6420893 3685.2479 624.94918 -10564.289 0 270.40058 -0.0010134106 -0.0010260304 + 23110 -6248.1357 -6253.7418 5.6061129 3684.8801 622.62863 -10561.251 0 268.67639 -0.0012296354 -0.0012447585 + 23120 -6247.8691 -6253.297 5.427934 3684.1287 620.97057 -10558.396 0 260.13705 -0.0013865792 -0.0014021472 + 23130 -6247.6528 -6252.8372 5.1844195 3682.7735 620.23399 -10555.845 0 248.46647 -0.0014486488 -0.0014619634 + 23140 -6247.4658 -6252.4756 5.0098231 3680.8504 620.48082 -10553.807 0 240.09883 -0.001401811 -0.0014116736 + 23150 -6247.2713 -6252.3198 5.0485727 3678.7007 621.57996 -10552.601 0 241.95593 -0.0012578613 -0.0012659961 + 23160 -6247.038 -6252.4216 5.3835974 3676.9356 623.26304 -10552.62 0 258.01219 -0.0010518247 -0.0010622187 + 23170 -6246.7622 -6252.7419 5.9797802 3676.2912 625.20821 -10554.241 0 286.58462 -0.0008325699 -0.00084876844 + 23180 -6246.4738 -6253.164 6.6902618 3677.3818 627.12351 -10557.669 0 320.63488 -0.00064833177 -0.00067067619 + 23190 -6246.2174 -6253.5501 7.3327449 3680.4263 628.80736 -10562.784 0 351.42628 -0.0005312793 -0.00055651369 + 23200 -6246.022 -6253.8042 7.7821821 3685.0801 630.17578 -10569.06 0 372.96583 -0.0004873985 -0.00051114144 + 23210 -6245.886 -6253.8959 8.0099007 3690.4774 631.25329 -10575.627 0 383.87939 -0.0004969801 -0.00051698342 + 23220 -6245.7881 -6253.8387 8.0506124 3695.4804 632.129 -10581.448 0 385.83052 -0.00052594157 -0.00054343934 + 23230 -6245.7104 -6253.6556 7.9452761 3699.0249 632.8875 -10585.568 0 380.78221 -0.00054225077 -0.00056061263 + 23240 -6245.651 -6253.3665 7.7154889 3700.4185 633.53906 -10587.324 0 369.76952 -0.00052955493 -0.0005517119 + 23250 -6245.6214 -6252.9959 7.3744549 3699.4952 633.98507 -10586.476 0 353.42526 -0.00049269366 -0.00051918696 + 23260 -6245.6344 -6252.583 6.9485718 3696.5954 634.04395 -10583.222 0 333.01455 -0.00045372715 -0.00048232064 + 23270 -6245.6901 -6252.189 6.498872 3692.395 633.52942 -10578.113 0 311.46241 -0.0004404205 -0.00046757398 + 23280 -6245.7676 -6251.8981 6.1304397 3687.6729 632.34372 -10571.915 0 293.80507 -0.0004726507 -0.00049623241 + 23290 -6245.8336 -6251.7925 5.9588246 3683.1348 630.54143 -10565.469 0 285.58031 -0.00055404445 -0.0005751317 + 23300 -6245.868 -6251.9054 6.0373648 3679.348 628.33499 -10559.588 0 289.3444 -0.00067266755 -0.00069445567 + 23310 -6245.8822 -6252.1929 6.310717 3676.7341 626.03813 -10554.965 0 302.44497 -0.00080821285 -0.00083282344 + 23320 -6245.9107 -6252.5588 6.6481445 3675.5459 623.97194 -10552.077 0 318.61639 -0.00094012896 -0.00096639013 + 23330 -6245.9836 -6252.914 6.9304473 3675.8239 622.3776 -10551.115 0 332.14592 -0.0010528933 -0.0010772086 + 23340 -6246.1047 -6253.2189 7.114187 3677.3788 621.37412 -10551.972 0 340.95176 -0.0011377254 -0.0011571581 + 23350 -6246.2546 -6253.4798 7.2251447 3679.8376 620.97121 -10554.289 0 346.26947 -0.0011917314 -0.0012065485 + 23360 -6246.4134 -6253.7118 7.2983673 3682.7305 621.11684 -10557.559 0 349.77871 -0.0012155999 -0.0012292123 + 23370 -6246.5826 -6253.9025 7.319885 3685.5779 621.7485 -10561.229 0 350.80996 -0.0012105792 -0.0012269851 + 23380 -6246.7896 -6254.0051 7.2155112 3687.9515 622.82556 -10564.782 0 345.80778 -0.0011754767 -0.001196109 + 23390 -6247.0675 -6253.967 6.8994934 3689.5143 624.3317 -10567.813 0 330.66244 -0.0011049697 -0.0011273694 + 23400 -6247.4236 -6253.7799 6.3563154 3690.0582 626.24423 -10570.082 0 304.6303 -0.00099115172 -0.0010108741 + 23410 -6247.8223 -6253.5115 5.6891273 3689.5618 628.48071 -10571.554 0 272.6549 -0.00082991104 -0.00084449662 + 23420 -6248.2055 -6253.28 5.0744698 3688.2657 630.85206 -10572.398 0 243.19706 -0.0006307733 -0.00064225415 + 23430 -6248.5358 -6253.1834 4.6475646 3686.7048 633.05557 -10572.944 0 222.73737 -0.0004239864 -0.00043730243 + 23440 -6248.8218 -6253.2441 4.4222683 3685.6057 634.72389 -10573.574 0 211.93991 -0.00025718334 -0.00027587887 + 23450 -6249.1015 -6253.418 4.316571 3685.628 635.51907 -10574.565 0 206.8743 -0.00017980076 -0.00020308987 + 23460 -6249.4038 -6253.6481 4.2442529 3687.06 635.23996 -10575.948 0 203.40841 -0.00022244699 -0.00024613866 + 23470 -6249.7263 -6253.9042 4.1779209 3689.641 633.90244 -10577.448 0 200.22941 -0.00038248699 -0.00040243961 + 23480 -6250.0418 -6254.1803 4.1384483 3692.6126 631.75678 -10578.55 0 198.33766 -0.00062311768 -0.000638008 + 23490 -6250.3215 -6254.4669 4.1454939 3694.9714 629.22832 -10578.667 0 198.67533 -0.00088540982 -0.0008969671 + 23500 -6250.5516 -6254.7363 4.1847331 3695.8071 626.79962 -10577.343 0 200.55589 -0.0011073061 -0.0011185545 + 23510 -6250.7368 -6254.9478 4.2109712 3694.6013 624.87717 -10574.426 0 201.81337 -0.0012423739 -0.0012554881 + 23520 -6250.8922 -6255.0664 4.1741332 3691.3994 623.68945 -10570.155 0 200.04788 -0.0012723954 -0.0012874692 + 23530 -6251.0309 -6255.0822 4.0512606 3686.8066 623.24665 -10565.135 0 194.15914 -0.0012102899 -0.0012256337 + 23540 -6251.1538 -6255.021 3.8671995 3681.8213 623.36907 -10560.211 0 185.3379 -0.0010933612 -0.001107073 + 23550 -6251.249 -6254.9339 3.6849268 3677.5709 623.77099 -10556.276 0 176.60237 -0.00097019909 -0.00098178594 + 23560 -6251.3032 -6254.8682 3.5650121 3675.0356 624.17161 -10554.075 0 170.85538 -0.00088575749 -0.00089641804 + 23570 -6251.3136 -6254.8381 3.5244781 3674.8192 624.39593 -10554.053 0 168.91277 -0.00086827854 -0.00087960599 + 23580 -6251.2902 -6254.8221 3.5318972 3677.0044 624.43189 -10556.258 0 169.26833 -0.00092073335 -0.00093309747 + 23590 -6251.245 -6254.7902 3.5451237 3681.1201 624.42527 -10560.336 0 169.90222 -0.001019153 -0.0010313792 + 23600 -6251.1772 -6254.7348 3.557627 3686.2473 624.61701 -10565.599 0 170.50145 -0.0011195136 -0.001130241 + 23610 -6251.0685 -6254.6773 3.6088 3691.2604 625.24771 -10571.185 0 172.95395 -0.0011723466 -0.0011817362 + 23620 -6250.8944 -6254.6423 3.7479252 3695.1406 626.46252 -10576.245 0 179.62161 -0.001140438 -0.001150466 + 23630 -6250.6383 -6254.6267 3.9883214 3697.2447 628.24569 -10580.117 0 191.14274 -0.001012544 -0.0010255011 + 23640 -6250.2986 -6254.5942 4.2955598 3697.4311 630.40245 -10582.428 0 205.86733 -0.00080754433 -0.00082409881 + 23650 -6249.883 -6254.498 4.6149867 3696.012 632.59231 -10583.102 0 221.17606 -0.00056822047 -0.0005866815 + 23660 -6249.4013 -6254.3094 4.9080986 3693.5855 634.40454 -10582.299 0 235.22363 -0.00034826397 -0.00036555135 + 23670 -6248.8631 -6254.0328 5.1697918 3690.8271 635.4554 -10580.315 0 247.76543 -0.00019754218 -0.0002112035 + 23680 -6248.2801 -6253.7007 5.4206286 3688.3123 635.48347 -10577.496 0 259.78694 -0.00014966701 -0.00015978066 + 23690 -6247.6733 -6253.3548 5.6814914 3686.4115 634.42088 -10574.187 0 272.28895 -0.0002145457 -0.00022423823 + 23700 -6247.0786 -6253.0238 5.9452047 3685.2651 632.41868 -10570.708 0 284.92757 -0.00037747554 -0.00039123002 + 23710 -6246.5455 -6252.7158 6.1703376 3684.812 629.81031 -10567.338 0 295.7172 -0.00060458555 -0.00062509114 + 23720 -6246.1197 -6252.4354 6.3156246 3684.8353 627.01922 -10564.29 0 302.68017 -0.00085217869 -0.00087818168 + 23730 -6245.8196 -6252.2121 6.3925656 3685.0121 624.44795 -10561.672 0 306.36761 -0.0010766505 -0.0011038098 + 23740 -6245.6248 -6252.1062 6.4813521 3684.9874 622.39708 -10559.491 0 310.62276 -0.0012426459 -0.0012666707 + 23750 -6245.4919 -6252.1751 6.6831438 3684.4825 621.04068 -10557.698 0 320.29375 -0.0013283186 -0.0013476413 + 23760 -6245.3814 -6252.4258 7.0444173 3683.4038 620.44781 -10556.277 0 337.608 -0.0013271869 -0.0013432213 + 23770 -6245.2792 -6252.7923 7.5131659 3681.8994 620.61834 -10555.31 0 360.07307 -0.0012469268 -0.0012622467 + 23780 -6245.1993 -6253.1531 7.9538218 3680.3361 621.5046 -10554.994 0 381.19177 -0.0011063916 -0.0011224716 + 23790 -6245.1697 -6253.3808 8.2111084 3679.2098 623.00935 -10555.6 0 393.52239 -0.00093174591 -0.00094785768 + 23800 -6245.2065 -6253.4031 8.1965814 3679.0074 624.97124 -10557.382 0 392.82617 -0.00075154872 -0.00076576362 + 23810 -6245.2955 -6253.2424 7.9468896 3680.0657 627.16239 -10560.471 0 380.85954 -0.00059143459 -0.00060315188 + 23820 -6245.4015 -6252.9973 7.5958303 3682.48 629.31775 -10564.795 0 364.03481 -0.00047059795 -0.00048212731 + 23830 -6245.4998 -6252.7694 7.269609 3686.0859 631.19266 -10570.048 0 348.40045 -0.00040087904 -0.00041592075 + 23840 -6245.6003 -6252.6 6.9996989 3690.4772 632.62029 -10575.697 0 335.46485 -0.0003861425 -0.00040616703 + 23850 -6245.7341 -6252.4707 6.7365853 3695.0239 633.53872 -10581.033 0 322.85497 -0.00041987382 -0.00044202589 + 23860 -6245.9176 -6252.3623 6.4446751 3698.9163 633.97737 -10585.256 0 308.86499 -0.00048300838 -0.00050206674 + 23870 -6246.1275 -6252.3036 6.1760863 3701.2965 634.01682 -10587.617 0 295.99271 -0.00054683234 -0.00055983438 + 23880 -6246.316 -6252.3585 6.042479 3701.5 633.74635 -10587.605 0 289.5895 -0.00058314867 -0.00059242911 + 23890 -6246.4515 -6252.5604 6.108886 3699.3218 633.23631 -10585.119 0 292.7721 -0.00057742429 -0.0005890314 + 23900 -6246.5483 -6252.8651 6.3167877 3695.1562 632.52725 -10580.549 0 302.73591 -0.00053653649 -0.00055529986 + 23910 -6246.6558 -6253.1716 6.5157979 3689.9062 631.62992 -10574.708 0 312.27359 -0.00048564423 -0.00051127613 + 23920 -6246.8192 -6253.393 6.5737502 3684.6988 630.53319 -10568.625 0 315.051 -0.00045640554 -0.00048384836 + 23930 -6247.0466 -6253.5105 6.4639506 3680.5494 629.2208 -10563.281 0 309.78878 -0.00047416774 -0.00049746955 + 23940 -6247.3074 -6253.57 6.2626227 3678.1208 627.69636 -10559.387 0 300.14002 -0.00055054025 -0.00056686812 + 23950 -6247.5589 -6253.6338 6.0748817 3677.638 626.01004 -10557.282 0 291.14241 -0.00068243886 -0.00069338888 + 23960 -6247.7749 -6253.7311 5.9561908 3678.927 624.27814 -10556.936 0 285.45408 -0.00085468375 -0.00086449747 + 23970 -6247.9578 -6253.842 5.8841986 3681.5125 622.68619 -10558.041 0 282.00381 -0.0010429725 -0.0010553952 + 23980 -6248.1291 -6253.9208 5.7917204 3684.7261 621.46972 -10560.117 0 277.57174 -0.0012162469 -0.0012323454 + 23990 -6248.3088 -6253.9364 5.6276052 3687.8231 620.873 -10562.633 0 269.70642 -0.0013397848 -0.0013579862 + 24000 -6248.5011 -6253.8963 5.3952736 3690.1233 621.09372 -10565.113 0 258.57179 -0.001380947 -0.0013987463 + 24010 -6248.695 -6253.838 5.1430289 3691.1737 622.22681 -10567.239 0 246.4828 -0.0013177751 -0.0013334826 + 24020 -6248.8758 -6253.7994 4.923609 3690.8847 624.22146 -10568.906 0 235.96697 -0.0011478975 -0.0011612296 + 24030 -6249.0347 -6253.7953 4.7605851 3689.579 626.86352 -10570.238 0 228.15395 -0.00089371952 -0.00090525223 + 24040 -6249.1713 -6253.8156 4.6443023 3687.9167 629.79194 -10571.524 0 222.58102 -0.00060070941 -0.00061101457 + 24050 -6249.2886 -6253.8424 4.55376 3686.7078 632.55281 -10573.103 0 218.24173 -0.00032806151 -0.00033733193 + 24060 -6249.3866 -6253.8697 4.4830812 3686.6639 634.68557 -10575.219 0 214.8544 -0.00013401016 -0.00014238722 + 24070 -6249.4607 -6253.9092 4.4484429 3688.1643 635.82525 -10577.899 0 213.19434 -6.0352866e-05 -6.843175e-05 + 24080 -6249.507 -6253.9756 4.4686342 3691.111 635.79459 -10580.881 0 214.16202 -0.0001210482 -0.0001298082 + 24090 -6249.5274 -6254.0675 4.5401346 3694.9143 634.65605 -10583.638 0 217.58872 -0.00029802238 -0.00030810239 + 24100 -6249.5282 -6254.1635 4.6353076 3698.6132 632.70168 -10585.478 0 222.14995 -0.0005451085 -0.00055624216 + 24110 -6249.5122 -6254.2384 4.7261277 3701.1117 630.3773 -10585.727 0 226.50256 -0.00079951408 -0.00081088095 + 24120 -6249.473 -6254.279 4.8059788 3701.481 628.16113 -10583.921 0 230.32947 -0.00099870603 -0.0010098903 + 24130 -6249.3982 -6254.285 4.8867506 3699.2511 626.43422 -10579.97 0 234.20051 -0.0010983578 -0.0011098634 + 24140 -6249.2782 -6254.2584 4.9801748 3694.5928 625.38453 -10574.236 0 238.67792 -0.0010853123 -0.0010981146 + 24150 -6249.1099 -6254.198 5.0881221 3688.3198 624.97583 -10567.494 0 243.85136 -0.00098056755 -0.00099525414 + 24160 -6248.8933 -6254.1035 5.2101601 3681.7063 624.9911 -10560.801 0 249.7001 -0.00083116129 -0.00084752451 + 24170 -6248.6262 -6253.9818 5.3555545 3676.1773 625.13379 -10555.293 0 256.66822 -0.00069413111 -0.00071148066 + 24180 -6248.3011 -6253.8466 5.5454274 3672.9621 625.15014 -10551.959 0 265.768 -0.00061816991 -0.00063597708 + 24190 -6247.9088 -6253.7106 5.8017888 3672.7971 624.92938 -10551.437 0 278.05428 -0.00062866008 -0.00064697478 + 24200 -6247.4454 -6253.5741 6.1286691 3675.7486 624.54897 -10553.872 0 293.72021 -0.00072016471 -0.00073944892 + 24210 -6246.9209 -6253.4169 6.4959955 3681.1919 624.25185 -10558.861 0 311.32455 -0.00085806177 -0.00087848033 + 24220 -6246.3616 -6253.2026 6.8409339 3687.9529 624.36425 -10565.52 0 327.85594 -0.00098857186 -0.0010092752 + 24230 -6245.8033 -6252.8986 7.0952933 3694.5817 625.18014 -10572.661 0 340.04627 -0.0010544827 -0.0010736428 + 24240 -6245.2749 -6252.5024 7.2275295 3699.7038 626.84852 -10579.055 0 346.38377 -0.0010125619 -0.001028453 + 24250 -6244.786 -6252.0569 7.2709022 3702.3674 629.29776 -10583.722 0 348.46243 -0.00084796469 -0.00086043727 + 24260 -6244.3291 -6251.6436 7.3145759 3702.2918 632.21969 -10586.155 0 350.55552 -0.00058120608 -0.0005923416 + 24270 -6243.8942 -6251.3532 7.4590228 3699.9272 635.12145 -10586.402 0 357.47822 -0.00026489144 -0.00027804386 + 24280 -6243.4861 -6251.2479 7.7618873 3696.2914 637.43891 -10584.978 0 371.99319 2.9799749e-05 1.2181191e-05 + 24290 -6243.1289 -6251.3363 8.2074383 3692.6222 638.68802 -10582.647 0 393.34649 0.00023354472 0.00021185761 + 24300 -6242.856 -6251.5732 8.7172737 3689.9669 638.60898 -10580.149 0 417.78067 0.00029995083 0.00027762448 + 24310 -6242.6903 -6251.8843 9.1940337 3688.8612 637.24613 -10577.992 0 440.62968 0.00021971026 0.00020115548 + 24320 -6242.6303 -6252.1979 9.5675381 3689.218 634.92333 -10576.339 0 458.53011 2.1781998e-05 9.2027129e-06 + 24330 -6242.6544 -6252.4605 9.8061232 3690.4577 632.12238 -10575.041 0 469.96445 -0.00023967159 -0.00024828595 + 24340 -6242.7437 -6252.627 9.8833289 3691.8056 629.32332 -10573.756 0 473.66457 -0.00050682375 -0.00051652377 + 24350 -6242.9026 -6252.6465 9.743922 3692.6016 626.8812 -10572.129 0 466.98341 -0.00073706021 -0.00075203907 + 24360 -6243.1513 -6252.4809 9.3295861 3692.4757 624.98344 -10569.94 0 447.12612 -0.00090965354 -0.00092990208 + 24370 -6243.4937 -6252.1519 8.6582134 3691.3507 623.681 -10567.184 0 414.95017 -0.0010197004 -0.0010413746 + 24380 -6243.8964 -6251.7672 7.8707802 3689.3577 622.95402 -10564.079 0 377.21195 -0.0010677798 -0.0010868519 + 24390 -6244.304 -6251.4819 7.1778659 3686.7735 622.76898 -10561.024 0 344.00361 -0.0010545468 -0.0010700804 + 24400 -6244.6765 -6251.419 6.7424594 3684.0121 623.10248 -10558.534 0 323.13649 -0.00098250896 -0.0009966499 + 24410 -6245.0104 -6251.6096 6.5992277 3681.6128 623.92922 -10557.152 0 316.27202 -0.00086062784 -0.00087595063 + 24420 -6245.3296 -6251.9965 6.6668864 3680.1677 625.18937 -10557.354 0 319.5146 -0.0007067127 -0.00072383469 + 24430 -6245.6586 -6252.4837 6.8251278 3680.1908 626.7585 -10559.433 0 327.09842 -0.00054588906 -0.00056342357 + 24440 -6246.002 -6252.9888 6.9867676 3681.978 628.44174 -10563.409 0 334.8451 -0.00040626291 -0.00042274943 + 24450 -6246.3449 -6253.4608 7.1159042 3685.5134 630.00305 -10568.977 0 341.03406 -0.00031348676 -0.00032924535 + 24460 -6246.6695 -6253.8626 7.1930945 3690.4392 631.22454 -10575.526 0 344.73345 -0.0002851603 -0.00030221876 + 24470 -6246.9722 -6254.1448 7.1725379 3696.0848 631.97424 -10582.204 0 343.74826 -0.00032535743 -0.00034539693 + 24480 -6247.2646 -6254.2475 6.9828461 3701.5399 632.25313 -10588.041 0 334.65717 -0.00042017687 -0.00044239036 + 24490 -6247.5552 -6254.136 6.5808088 3705.7772 632.19675 -10592.11 0 315.38928 -0.00053698077 -0.00055804222 + 24500 -6247.832 -6253.8418 6.0097098 3707.8465 632.02455 -10593.713 0 288.01901 -0.00063085474 -0.00064731634 + 24510 -6248.0646 -6253.4652 5.4005668 3707.1303 631.95131 -10592.547 0 258.82546 -0.0006592411 -0.00067029933 + 24520 -6248.2244 -6253.1303 4.9058403 3703.5898 632.09238 -10588.813 0 235.1154 -0.00060015223 -0.00060827614 + 24530 -6248.3069 -6252.9255 4.6186375 3697.8858 632.39927 -10583.211 0 221.35102 -0.00046515962 -0.00047404136 + 24540 -6248.3337 -6252.8754 4.5417676 3691.281 632.6538 -10576.81 0 217.66699 -0.00029949951 -0.00031120602 + 24550 -6248.3363 -6252.9592 4.6228557 3685.3246 632.53136 -10570.815 0 221.55318 -0.00016789318 -0.00018168195 + 24560 -6248.3339 -6253.1475 4.8136036 3681.4194 631.71915 -10566.286 0 230.69489 -0.0001318737 -0.00014547077 + 24570 -6248.3245 -6253.4216 5.097134 3680.4241 630.05207 -10563.898 0 244.28326 -0.00022791273 -0.00023983261 + 24580 -6248.2948 -6253.7603 5.46543 3682.4211 627.61629 -10563.798 0 261.93407 -0.00045397253 -0.00046473647 + 24590 -6248.2393 -6254.1176 5.8782421 3686.7059 624.7764 -10565.6 0 281.71834 -0.00076771969 -0.00077906299 + 24600 -6248.1698 -6254.4194 6.2496699 3691.9846 622.10729 -10568.511 0 299.51925 -0.0010959541 -0.001108976 + 24610 -6248.1087 -6254.5887 6.4799947 3696.7222 620.24631 -10571.557 0 310.55771 -0.0013528821 -0.0013669009 + 24620 -6248.0724 -6254.5804 6.5080398 3699.5612 619.71188 -10573.853 0 311.90178 -0.0014634014 -0.0014764785 + 24630 -6248.0585 -6254.4009 6.3424157 3699.7096 620.74771 -10574.858 0 303.96415 -0.0013856285 -0.0013962205 + 24640 -6248.0483 -6254.0989 6.0505243 3697.1902 623.24182 -10574.531 0 289.97507 -0.0011256528 -0.0011340159 + 24650 -6248.0196 -6253.7369 5.7173081 3692.864 626.74331 -10573.344 0 274.00548 -0.00073889911 -0.00074719993 + 24660 -6247.9614 -6253.3633 5.4018996 3688.202 630.57082 -10572.136 0 258.88934 -0.00031666784 -0.00032767409 + 24670 -6247.8809 -6252.998 5.1170958 3684.8537 633.98159 -10571.833 0 245.23994 3.8689999e-05 2.3599526e-05 + 24680 -6247.7992 -6252.645 4.8457433 3684.1359 636.35432 -10573.135 0 232.23521 0.00024298104 0.00022519082 + 24690 -6247.734 -6252.3242 4.5902224 3686.5946 637.33504 -10576.254 0 219.98921 0.0002551649 0.00023831369 + 24700 -6247.6806 -6252.1041 4.4235108 3691.7965 636.90664 -10580.807 0 211.99946 8.9816545e-05 7.7190933e-05 + 24710 -6247.6056 -6252.0963 4.4906818 3698.4401 635.36685 -10585.903 0 215.21867 -0.00018834314 -0.00019687198 + 24720 -6247.4653 -6252.3966 4.9313274 3704.7628 633.22655 -10590.386 0 236.33688 -0.00048710232 -0.00049582433 + 24730 -6247.241 -6253.0021 5.7611264 3709.0918 631.05863 -10593.153 0 276.1055 -0.00071835237 -0.00073270408 + 24740 -6246.9642 -6253.7737 6.8094666 3710.3213 629.33686 -10593.432 0 326.34785 -0.00082591449 -0.00084769088 + 24750 -6246.7037 -6254.4894 7.7857724 3708.1572 628.30824 -10590.955 0 373.1379 -0.00079900426 -0.00082414535 + 24760 -6246.518 -6254.9558 8.4378138 3703.1051 627.9421 -10586.003 0 404.38738 -0.0006685337 -0.00069007612 + 24770 -6246.4147 -6255.0876 8.6728966 3696.2814 627.98006 -10579.349 0 415.65387 -0.00049162133 -0.00050556057 + 24780 -6246.3552 -6254.9003 8.5451047 3689.144 628.06958 -10572.114 0 409.52937 -0.00033265718 -0.00034141959 + 24790 -6246.3006 -6254.443 8.1423325 3683.1872 627.92195 -10565.552 0 390.22626 -0.00024644925 -0.00025674032 + 24800 -6246.2497 -6253.7459 7.4962587 3679.6204 627.42412 -10560.79 0 359.26278 -0.00026502628 -0.00028190008 + 24810 -6246.2337 -6252.837 6.6032475 3679.0743 626.66185 -10558.573 0 316.46467 -0.00038881792 -0.00041111288 + 24820 -6246.2769 -6251.8087 5.5318803 3681.4233 625.85923 -10559.091 0 265.11874 -0.00058468375 -0.00060582834 + 24830 -6246.3601 -6250.8664 4.5062848 3685.824 625.27855 -10561.969 0 215.96645 -0.00079391284 -0.00080759548 + 24840 -6246.4228 -6250.2876 3.8648397 3691.0011 625.13293 -10566.422 0 185.22481 -0.00095018636 -0.00095614381 + 24850 -6246.3995 -6250.2951 3.8956099 3695.6923 625.54097 -10571.528 0 186.69949 -0.0010018598 -0.0010066789 + 24860 -6246.2607 -6250.9214 4.6607068 3699.0535 626.51893 -10576.494 0 223.36722 -0.00092910722 -0.00094103687 + 24870 -6246.0276 -6251.9734 5.9458482 3700.835 627.98924 -10580.798 0 284.95841 -0.00074800566 -0.00076999944 + 24880 -6245.7484 -6253.1297 7.3812838 3701.2742 629.79265 -10584.197 0 353.75253 -0.00050033782 -0.00052729424 + 24890 -6245.4543 -6254.1002 8.6459808 3700.8301 631.70877 -10586.639 0 414.36391 -0.00023576163 -0.00025849295 + 24900 -6245.1318 -6254.7348 9.6029389 3699.9536 633.49299 -10588.181 0 460.22672 3.4004286e-06 -9.3889973e-06 + 24910 -6244.7402 -6255.0154 10.27527 3699.0088 634.92505 -10588.949 0 492.44859 0.00018785633 0.00018226026 + 24920 -6244.2641 -6254.9673 10.703178 3698.3097 635.85079 -10589.128 0 512.95633 0.0002983075 0.00029047032 + 24930 -6243.7595 -6254.5744 10.814876 3698.1468 636.20045 -10588.922 0 518.30952 0.00032073005 0.00030214249 + 24940 -6243.3429 -6253.7817 10.438735 3698.7022 635.98004 -10588.464 0 500.28273 0.00024752247 0.00021827375 + 24950 -6243.1154 -6252.5922 9.4767486 3699.8745 635.24545 -10587.712 0 454.17897 8.5909572e-05 5.5613401e-05 + 24960 -6243.0773 -6251.179 8.1016696 3701.1605 634.07584 -10586.415 0 388.27746 -0.00013411809 -0.00015410215 + 24970 -6243.1172 -6249.8874 6.7701904 3701.7667 632.56241 -10584.217 0 324.46551 -0.00036339603 -0.00037031358 + 24980 -6243.0954 -6249.081 5.9855569 3700.9691 630.81813 -10580.868 0 286.86147 -0.00055117411 -0.0005542306 + 24990 -6242.9472 -6248.934 5.9867532 3698.5146 628.9957 -10576.444 0 286.9188 -0.00066569731 -0.00067878526 + 25000 -6242.7228 -6249.3457 6.622929 3694.7828 627.29048 -10571.419 0 317.40792 -0.00070296549 -0.00073295364 + 25010 -6242.54 -6250.0474 7.507395 3690.5998 625.91414 -10566.561 0 359.79649 -0.00067872564 -0.00071951984 + 25020 -6242.492 -6250.8018 8.3097824 3686.8637 625.04605 -10562.712 0 398.2514 -0.00061229516 -0.00064970154 + 25030 -6242.5833 -6251.5282 8.944931 3684.254 624.78405 -10560.566 0 428.69128 -0.0005162403 -0.00053936653 + 25040 -6242.747 -6252.2668 9.5198189 3683.1745 625.11634 -10560.558 0 456.24314 -0.00039943565 -0.00040905922 + 25050 -6242.9282 -6253.0387 10.110524 3683.8638 625.92542 -10562.828 0 484.55306 -0.00027836506 -0.0002855881 + 25060 -6243.1543 -6253.7374 10.583078 3686.4738 627.02302 -10567.234 0 507.20047 -0.00018333183 -0.00020005203 + 25070 -6243.5215 -6254.1523 10.630822 3690.9782 628.20555 -10573.336 0 509.48863 -0.000149577 -0.00017888705 + 25080 -6244.0991 -6254.1101 10.01092 3696.954 629.31414 -10580.378 0 479.77946 -0.00019609745 -0.00023048998 + 25090 -6244.8417 -6253.618 8.776229 3703.4438 630.27931 -10587.341 0 420.60614 -0.00030731165 -0.00033572827 + 25100 -6245.6009 -6252.8893 7.2884399 3709.0929 631.13214 -10593.114 0 349.30294 -0.00043329407 -0.00045040817 + 25110 -6246.2283 -6252.225 5.9966982 3712.5681 631.97479 -10596.768 0 287.39543 -0.00051084637 -0.00052054228 + 25120 -6246.6693 -6251.8447 5.1754391 3713.0504 632.91842 -10597.814 0 248.03608 -0.00049238452 -0.00050323947 + 25130 -6246.9708 -6251.794 4.8232591 3710.5379 634.0073 -10596.339 0 231.15764 -0.00036628027 -0.00038382444 + 25140 -6247.2227 -6251.9866 4.7639138 3705.8236 635.1545 -10592.965 0 228.31348 -0.00016050609 -0.00018303734 + 25150 -6247.487 -6252.3216 4.8346663 3700.2036 636.11966 -10588.645 0 231.70434 6.8390462e-05 4.7365114e-05 + 25160 -6247.7636 -6252.7669 5.0032645 3695.0876 636.55407 -10584.409 0 239.78451 0.00025333992 0.00023871936 + 25170 -6248.0096 -6253.3428 5.3332014 3691.6655 636.11351 -10581.122 0 255.59694 0.00033450586 0.00032497855 + 25180 -6248.1893 -6254.0365 5.8471741 3690.6833 634.60373 -10579.323 0 280.22939 0.00027335027 0.00026239324 + 25190 -6248.3153 -6254.7323 6.4169407 3692.3051 632.09951 -10579.137 0 307.5358 6.2895335e-05 4.4452865e-05 + 25200 -6248.4467 -6255.2303 6.7836906 3696.0422 628.98025 -10580.253 0 325.11252 -0.00026606136 -0.00029199144 + 25210 -6248.6408 -6255.351 6.7102166 3700.7883 625.85503 -10581.994 0 321.59123 -0.00064575543 -0.00067248386 + 25220 -6248.8994 -6255.0518 6.1524898 3705.0389 623.39611 -10583.487 0 294.86183 -0.00098393481 -0.0010032885 + 25230 -6249.1581 -6254.4633 5.3051508 3707.318 622.14185 -10583.923 0 254.25259 -0.0011892824 -0.0011984152 + 25240 -6249.3353 -6253.8088 4.4735669 3706.7038 622.34296 -10582.856 0 214.39843 -0.0012027644 -0.00120662 + 25250 -6249.3947 -6253.2729 3.8782179 3703.2271 623.9012 -10580.401 0 185.86596 -0.0010209682 -0.0010281743 + 25260 -6249.3688 -6252.9232 3.5544609 3697.924 626.40811 -10577.255 0 170.34971 -0.00069894969 -0.00071477516 + 25270 -6249.3256 -6252.7414 3.4158646 3692.487 629.2608 -10574.489 0 163.7074 -0.0003301823 -0.00035264707 + 25280 -6249.3121 -6252.7124 3.4003572 3688.6708 631.82081 -10573.204 0 162.96419 -1.3117183e-05 -3.5284037e-05 + 25290 -6249.3189 -6252.8757 3.5568119 3687.7255 633.57862 -10574.18 0 170.46238 0.00018028902 0.00016425519 + 25300 -6249.2903 -6253.2899 3.9995502 3690.0725 634.28271 -10577.645 0 191.68089 0.0002221106 0.00021236217 + 25310 -6249.1678 -6253.9458 4.7779906 3695.2767 633.99606 -10583.219 0 228.98812 0.00012897812 0.00012038166 + 25320 -6248.9339 -6254.7073 5.7733375 3702.2375 633.05998 -10590.005 0 276.69073 -4.986161e-05 -6.3060786e-05 + 25330 -6248.6278 -6255.3393 6.71149 3709.4756 631.97157 -10596.786 0 321.65226 -0.00024987113 -0.00026910691 + 25340 -6248.3163 -6255.6151 7.2988028 3715.4421 631.21084 -10602.268 0 349.79958 -0.00040854785 -0.00042987905 + 25350 -6248.0419 -6255.4329 7.391009 3718.8282 631.07642 -10605.338 0 354.21862 -0.00048024215 -0.00049817159 + 25360 -6247.7931 -6254.8578 7.0647331 3718.8594 631.59232 -10605.31 0 338.58165 -0.00044724435 -0.00046004753 + 25370 -6247.5258 -6254.0595 6.5336637 3715.513 632.52168 -10602.094 0 313.12983 -0.0003248114 -0.0003364072 + 25380 -6247.2142 -6253.2025 5.9882602 3709.5556 633.47544 -10596.233 0 286.99103 -0.00015672681 -0.00017320633 + 25390 -6246.8782 -6252.3792 5.5010067 3702.3366 634.06236 -10588.778 0 263.63911 -3.5916311e-07 -2.4251092e-05 + 25400 -6246.5639 -6251.6305 5.0666218 3695.386 634.01595 -10581.033 0 242.82094 9.4171671e-05 6.6737871e-05 + 25410 -6246.2951 -6251.0154 4.7203119 3689.9833 633.25462 -10574.253 0 226.22383 0.00010153839 7.8148232e-05 + 25420 -6246.0365 -6250.6516 4.6151248 3686.8822 631.86941 -10569.403 0 221.18268 2.7036336e-05 1.2816374e-05 + 25430 -6245.6977 -6250.6791 4.9813862 3686.2815 630.0662 -10567.027 0 238.73598 -0.0001014054 -0.00010861232 + 25440 -6245.1788 -6251.1635 5.9847883 3687.9846 628.10104 -10567.249 0 286.82464 -0.00024947607 -0.00025873177 + 25450 -6244.4427 -6252.0126 7.5699213 3691.5901 626.23575 -10569.838 0 362.7931 -0.00039146766 -0.00041291455 + 25460 -6243.5746 -6252.9729 9.3982693 3696.5724 624.71938 -10574.265 0 450.4178 -0.00051566817 -0.00055289852 + 25470 -6242.7662 -6253.7286 10.962399 3702.2222 623.78378 -10579.735 0 525.37966 -0.00061705385 -0.00066343338 + 25480 -6242.2051 -6254.0498 11.844677 3707.5646 623.6369 -10585.251 0 567.66336 -0.00068272368 -0.0007255013 + 25490 -6241.9557 -6253.8905 11.934785 3711.4415 624.44226 -10589.774 0 571.98185 -0.00068332012 -0.00071298091 + 25500 -6241.9427 -6253.3659 11.423204 3712.8445 626.2808 -10592.491 0 547.46404 -0.00058143729 -0.00059843759 + 25510 -6242.0424 -6252.6424 10.600058 3711.3694 629.09726 -10593.109 0 508.01427 -0.0003544483 -0.00036765292 + 25520 -6242.1766 -6251.841 9.6643533 3707.5131 632.64499 -10591.999 0 463.17004 -1.6870052e-05 -3.5709896e-05 + 25530 -6242.3355 -6251.0293 8.6938186 3702.6017 636.459 -10590.09 0 416.65657 0.00037282788 0.00034542934 + 25540 -6242.5364 -6250.2817 7.7453831 3698.3567 639.89549 -10588.534 0 371.20222 0.00072616571 0.00069481442 + 25550 -6242.7766 -6249.73 6.9534341 3696.3004 642.2576 -10588.288 0 333.24758 0.00095298649 0.00092500849 + 25560 -6243.0203 -6249.5449 6.5245436 3697.2558 642.98413 -10589.785 0 312.69274 0.00099117542 0.00097043201 + 25570 -6243.2229 -6249.8467 6.6238411 3701.1128 641.83684 -10592.796 0 317.45163 0.00082576386 0.00081001276 + 25580 -6243.371 -6250.6067 7.2356148 3706.8928 639.0099 -10596.509 0 346.77126 0.00049240181 0.00047608964 + 25590 -6243.505 -6251.6212 8.1162551 3713.0275 635.10896 -10599.758 0 388.97649 6.7622956e-05 4.7486259e-05 + 25600 -6243.6945 -6252.6023 8.9077655 3717.7459 630.99403 -10601.342 0 426.9101 -0.00034899741 -0.00037085032 + 25610 -6243.9816 -6253.3282 9.346608 3719.5068 627.53466 -10600.37 0 447.9419 -0.00065785313 -0.00067661393 + 25620 -6244.3428 -6253.7355 9.3927421 3717.4402 625.36503 -10596.541 0 450.1529 -0.00078593937 -0.00079984823 + 25630 -6244.7156 -6253.882 9.1664207 3711.7001 624.72664 -10590.309 0 439.30631 -0.00071133888 -0.0007242619 + 25640 -6245.0578 -6253.8373 8.7794839 3703.5524 625.4438 -10582.833 0 420.76213 -0.00047402077 -0.00049201355 + 25650 -6245.375 -6253.6208 8.2458747 3695.0688 627.02311 -10575.713 0 395.18858 -0.00016365409 -0.00018921616 + 25660 -6245.6942 -6253.2339 7.5396492 3688.4925 628.83303 -10570.559 0 361.34229 0.00011292318 8.3157235e-05 + 25670 -6246.0224 -6252.7255 6.7031167 3685.5346 630.30494 -10568.565 0 321.25096 0.00026995695 0.00024237022 + 25680 -6246.333 -6252.215 5.8820639 3686.887 631.0953 -10570.197 0 281.90151 0.00026986225 0.00024895645 + 25690 -6246.5859 -6251.8495 5.2636521 3692.1021 631.16249 -10575.114 0 252.26374 0.00013002586 0.00011555785 + 25700 -6246.7562 -6251.7366 4.9804317 3699.8174 630.74255 -10582.297 0 238.69023 -8.9207145e-05 -0.0001014304 + 25710 -6246.849 -6251.9014 5.0524036 3708.1948 630.24294 -10590.339 0 242.13953 -0.00030735591 -0.00032228653 + 25720 -6246.8946 -6252.2911 5.3964786 3715.4147 630.09399 -10597.8 0 258.62953 -0.00044860593 -0.00046891722 + 25730 -6246.9305 -6252.8143 5.8838245 3720.0974 630.60285 -10603.515 0 281.98588 -0.00046231845 -0.00048743915 + 25740 -6246.984 -6253.381 6.3969264 3721.574 631.84988 -10606.805 0 306.5766 -0.0003357578 -0.00036307366 + 25750 -6247.067 -6253.9147 6.8477119 3719.9716 633.65713 -10607.543 0 328.18078 -9.6955193e-05 -0.00012368951 + 25760 -6247.1812 -6254.3417 7.1604685 3716.1108 635.63953 -10606.092 0 343.16983 0.0001934086 0.00016917944 + 25770 -6247.3258 -6254.5844 7.2585887 3711.2391 637.32213 -10603.146 0 347.8723 0.00045978646 0.00043919976 + 25780 -6247.4951 -6254.58 7.0848452 3706.6711 638.28241 -10599.533 0 339.54553 0.00063400827 0.00061762361 + 25790 -6247.6727 -6254.3133 6.6405963 3703.4415 638.26697 -10596.022 0 318.25463 0.00067407428 0.00066155527 + 25800 -6247.8327 -6253.835 6.0022584 3702.0832 637.24616 -10593.164 0 287.6619 0.00057292621 0.00056268469 + 25810 -6247.9532 -6253.2503 5.297027 3702.5771 635.3982 -10591.226 0 253.86325 0.00035582552 0.00034548002 + 25820 -6248.028 -6252.6894 4.6614297 3704.4469 633.04259 -10590.179 0 223.40187 7.0177157e-05 5.7752763e-05 + 25830 -6248.0664 -6252.2785 4.2121271 3706.9324 630.55616 -10589.767 0 201.86876 -0.00022691248 -0.00024198435 + 25840 -6248.0838 -6252.1148 4.031043 3709.189 628.30126 -10589.605 0 193.1902 -0.00048004113 -0.00049677386 + 25850 -6248.0911 -6252.2436 4.1524987 3710.4843 626.57851 -10589.306 0 199.01104 -0.00064481264 -0.00066119778 + 25860 -6248.0893 -6252.6428 4.5535625 3710.3657 625.59866 -10588.607 0 218.23226 -0.00069465207 -0.00070848505 + 25870 -6248.0681 -6253.2279 5.1598294 3708.7695 625.46218 -10587.46 0 247.28798 -0.00062467792 -0.00063458031 + 25880 -6248.0092 -6253.8757 5.8665071 3706.0512 626.14295 -10586.07 0 281.15593 -0.00045237404 -0.00045885381 + 25890 -6247.895 -6254.4534 6.5584228 3702.9319 627.48609 -10584.871 0 314.31642 -0.00021497511 -0.00022085378 + 25900 -6247.7213 -6254.84 7.1186789 3700.3568 629.23428 -10584.431 0 341.16703 3.6853753e-05 2.737952e-05 + 25910 -6247.5062 -6254.9429 7.4367163 3699.2716 631.08656 -10585.301 0 356.40917 0.00024950562 0.00023299708 + 25920 -6247.2842 -6254.7164 7.4321961 3700.3478 632.77487 -10587.839 0 356.19254 0.00038001884 0.00035584543 + 25930 -6247.089 -6254.1811 7.092044 3703.7342 634.12974 -10592.045 0 339.89054 0.00040897907 0.00037984822 + 25940 -6246.9339 -6253.4307 6.49677 3708.9333 635.10855 -10597.473 0 311.36167 0.00034736858 0.00031789815 + 25950 -6246.8046 -6252.6162 5.8116278 3714.8774 635.77641 -10603.27 0 278.52581 0.00023344933 0.00020769127 + 25960 -6246.6661 -6251.9055 5.2393781 3720.1986 636.2507 -10608.355 0 251.1004 0.0001198793 9.9357016e-05 + 25970 -6246.4771 -6251.4345 4.9574251 3723.6104 636.63351 -10611.678 0 237.58763 5.5687711e-05 3.902021e-05 + 25980 -6246.2001 -6251.2716 5.0714625 3724.2685 636.95645 -10612.497 0 243.05294 6.9880661e-05 5.3906267e-05 + 25990 -6245.806 -6251.4087 5.6026246 3721.9994 637.15442 -10610.562 0 268.50921 0.00016229681 0.00014374014 + 26000 -6245.2778 -6251.7775 6.4996733 3717.3383 637.07608 -10606.192 0 311.50082 0.00030406217 0.00028077559 + 26010 -6244.6203 -6252.275 7.6547156 3711.3809 636.53234 -10600.188 0 366.85692 0.00044677622 0.0004182042 + 26020 -6243.872 -6252.7826 8.9105343 3705.4915 635.37551 -10593.65 0 427.0428 0.00053763928 0.00050476298 + 26030 -6243.1091 -6253.1776 10.068482 3700.9387 633.58742 -10587.704 0 482.53814 0.00053664844 0.00050181225 + 26040 -6242.4287 -6253.3457 10.916952 3698.5574 631.33916 -10583.242 0 523.20162 0.00043095621 0.00039761844 + 26050 -6241.9148 -6253.2053 11.290501 3698.541 628.98332 -10580.73 0 541.10418 0.00024113137 0.00021307137 + 26060 -6241.6025 -6252.7443 11.141798 3700.4417 626.9648 -10580.151 0 533.97749 1.5782374e-05 -4.6712979e-06 + 26070 -6241.4641 -6252.0417 10.577599 3703.3869 625.68039 -10581.109 0 506.93792 -0.00018495653 -0.00019900088 + 26080 -6241.4352 -6251.2459 9.8107229 3706.4358 625.35147 -10583.033 0 470.18489 -0.00031130464 -0.00032397346 + 26090 -6241.4633 -6250.5089 9.0456533 3708.9207 625.97047 -10585.4 0 433.51846 -0.00034095895 -0.00035821746 + 26100 -6241.5391 -6249.9341 8.3950153 3710.6018 627.33943 -10587.875 0 402.33624 -0.000281943 -0.00030637655 + 26110 -6241.6819 -6249.58 7.8980827 3711.579 629.17141 -10590.33 0 378.52044 -0.00016014818 -0.00018922688 + 26120 -6241.9035 -6249.4933 7.5898219 3712.0784 631.2006 -10592.772 0 363.74685 -1.5826323e-06 -3.0055026e-05 + 26130 -6242.1936 -6249.7135 7.5198332 3712.2951 633.24953 -10595.258 0 360.3926 0.00017791544 0.00015412524 + 26140 -6242.5341 -6250.24 7.7059442 3712.3692 635.22459 -10597.834 0 369.31208 0.00037063446 0.00035237098 + 26150 -6242.9178 -6251.0085 8.0906411 3712.443 637.0515 -10600.503 0 387.74892 0.00056732816 0.00055262067 + 26160 -6243.3535 -6251.9022 8.5486633 3712.7114 638.60108 -10603.215 0 409.69991 0.00074822777 0.00073370259 + 26170 -6243.857 -6252.785 8.9279693 3713.4163 639.66554 -10605.867 0 427.87838 0.00088105054 0.00086325955 + 26180 -6244.4399 -6253.5279 9.087956 3714.7716 640.01248 -10608.312 0 435.54584 0.00092844675 0.00090512412 + 26190 -6245.0975 -6254.0282 8.9306786 3716.8305 639.48964 -10610.348 0 428.00823 0.00086300109 0.00083409486 + 26200 -6245.7981 -6254.2311 8.4330625 3719.3486 638.11991 -10611.7 0 404.15967 0.00068325798 0.00065094543 + 26210 -6246.4851 -6254.1456 7.6604586 3721.7409 636.13431 -10612.021 0 367.13216 0.00042169713 0.0003892068 + 26220 -6247.0984 -6253.8374 6.7389438 3723.203 633.92713 -10610.967 0 322.968 0.00013882965 0.00010905566 + 26230 -6247.5985 -6253.4056 5.8071167 3722.9701 631.95049 -10608.326 0 278.30961 -9.472729e-05 -0.00011998381 + 26240 -6247.9743 -6252.9603 4.9860717 3720.6068 630.58407 -10604.151 0 238.96053 -0.00022074037 -0.00024104637 + 26250 -6248.2345 -6252.6063 4.3718234 3716.225 630.02041 -10598.852 0 209.52231 -0.00021252165 -0.00022888962 + 26260 -6248.3971 -6252.4267 4.0295291 3710.5585 630.20252 -10593.188 0 193.11764 -8.4794548e-05 -9.9358051e-05 + 26270 -6248.4838 -6252.4672 3.9834237 3704.8509 630.83766 -10588.156 0 190.90801 0.00010945802 9.4309472e-05 + 26280 -6248.5166 -6252.7296 4.2130449 3700.5552 631.49236 -10584.777 0 201.91275 0.00029537324 0.00027797378 + 26290 -6248.5158 -6253.1748 4.6589548 3698.9135 631.74762 -10583.836 0 223.28325 0.00040121604 0.00038115432 + 26300 -6248.4989 -6253.728 5.2291035 3700.554 631.36727 -10585.649 0 250.60798 0.0003836648 0.00036177842 + 26310 -6248.4809 -6254.2849 5.804038 3705.2475 630.41555 -10589.948 0 278.16207 0.0002445174 0.00022260172 + 26320 -6248.4738 -6254.7286 6.2548208 3711.9202 629.26644 -10595.915 0 299.76611 3.2623795e-05 1.2854136e-05 + 26330 -6248.4802 -6254.9613 6.4810815 3718.9343 628.48389 -10602.379 0 310.60979 -0.00017079794 -0.00018693344 + 26340 -6248.4894 -6254.9359 6.4465492 3724.5657 628.60944 -10608.111 0 308.95481 -0.00028012962 -0.00029297677 + 26350 -6248.4841 -6254.6637 6.1796579 3727.5369 629.9405 -10612.141 0 296.16388 -0.00023759711 -0.00024942189 + 26360 -6248.4546 -6254.1987 5.7440654 3727.4139 632.3912 -10614.004 0 275.28784 -3.6827391e-05 -5.0373148e-05 + 26370 -6248.4049 -6253.6233 5.2183315 3724.7026 635.49194 -10613.818 0 250.09172 0.00027322339 0.00025647822 + 26380 -6248.344 -6253.0424 4.6984136 3720.6101 638.52752 -10612.18 0 225.17434 0.00060580861 0.00058611463 + 26390 -6248.2764 -6252.5681 4.2916201 3716.5899 640.76177 -10609.92 0 205.67851 0.00086690957 0.00084550405 + 26400 -6248.2018 -6252.2846 4.0828041 3713.858 641.66518 -10607.808 0 195.67088 0.00098605186 0.000964529 + 26410 -6248.1176 -6252.2219 4.1042321 3713.0349 641.06318 -10606.32 0 196.69783 0.00093737771 0.00091762303 + 26420 -6248.0152 -6252.3629 4.3476903 3714.0024 639.15861 -10605.524 0 208.36571 0.00074561879 0.00072931315 + 26430 -6247.8711 -6252.6747 4.8035563 3716.0105 636.43492 -10605.12 0 230.21337 0.00047545346 0.00046252584 + 26440 -6247.6517 -6253.1199 5.4681809 3718.0048 633.49075 -10604.615 0 262.06591 0.00020709601 0.0001944705 + 26450 -6247.338 -6253.6333 6.2952711 3719.0574 630.86959 -10603.56 0 301.70471 6.8965659e-06 -1.0368303e-05 + 26460 -6246.9519 -6254.0994 7.1475396 3718.7092 628.93431 -10601.743 0 342.5502 -9.4169578e-05 -0.00011941063 + 26470 -6246.5549 -6254.3797 7.8248452 3717.0693 627.81404 -10599.263 0 375.01049 -0.0001041895 -0.00013623694 + 26480 -6246.2131 -6254.3776 8.1645563 3714.6608 627.43281 -10596.471 0 391.29135 -5.6292118e-05 -8.9893442e-05 + 26490 -6245.9584 -6254.0854 8.1270169 3712.1444 627.6058 -10593.836 0 389.49225 1.305526e-05 -1.6124978e-05 + 26500 -6245.7781 -6253.5757 7.7976265 3710.0816 628.15902 -10591.816 0 373.70602 8.1164787e-05 5.96531e-05 + 26510 -6245.6336 -6252.9556 7.3219913 3708.8246 629.01173 -10590.792 0 350.91091 0.00014479497 0.00013022577 + 26520 -6245.4879 -6252.3249 6.8369688 3708.5325 630.1797 -10591.037 0 327.66591 0.00021468175 0.0002034667 + 26530 -6245.3209 -6251.7596 6.4386803 3709.2546 631.70337 -10592.718 0 308.57769 0.00030380716 0.00029171376 + 26540 -6245.1317 -6251.317 6.1852815 3711.0033 633.54841 -10595.869 0 296.4334 0.00041574481 0.00039992617 + 26550 -6244.9306 -6251.0422 6.1115822 3713.7638 635.54208 -10600.348 0 292.90131 0.00053872027 0.0005188101 + 26560 -6244.7272 -6250.9666 6.2394371 3717.4301 637.38916 -10605.786 0 299.02883 0.00064848038 0.00062642614 + 26570 -6244.5196 -6251.0987 6.5790665 3721.7093 638.76627 -10611.574 0 315.30578 0.00071887025 0.00069757868 + 26580 -6244.2906 -6251.4105 7.1198658 3726.0644 639.44861 -10616.924 0 341.22392 0.00073483747 0.00071634226 + 26590 -6244.0152 -6251.831 7.8157711 3729.7522 639.40276 -10620.986 0 374.57561 0.00070108158 0.00068531895 + 26600 -6243.6761 -6252.2551 8.5790043 3731.97 638.79659 -10623.022 0 411.15402 0.00064173139 0.00062662242 + 26610 -6243.278 -6252.5703 9.2922691 3732.0779 637.92269 -10622.571 0 445.33767 0.00059086036 0.00057360389 + 26620 -6242.8511 -6252.6906 9.8395299 3729.8264 637.07598 -10619.593 0 471.56548 0.00057819001 0.00055694049 + 26630 -6242.4391 -6252.5889 10.149771 3725.4992 636.44282 -10614.531 0 486.43397 0.00061660309 0.00059127913 + 26640 -6242.0788 -6252.3113 10.232546 3719.9032 636.04445 -10608.259 0 490.40102 0.00069634413 0.00066785841 + 26650 -6241.7886 -6251.9552 10.166616 3714.2013 635.74947 -10601.906 0 487.24129 0.00078679667 0.00075569229 + 26660 -6241.5804 -6251.6121 10.031688 3709.6362 635.34428 -10596.593 0 480.77479 0.00084476911 0.00081120668 + 26670 -6241.4762 -6251.3189 9.8426188 3707.2039 634.63173 -10593.155 0 471.71352 0.00082868756 0.00079406355 + 26680 -6241.504 -6251.0659 9.5618652 3707.346 633.52121 -10591.933 0 458.25823 0.0007164426 0.00068429545 + 26690 -6241.6697 -6250.8512 9.1815309 3709.7718 632.08042 -10592.703 0 440.03048 0.00051952897 0.00049357124 + 26700 -6241.9418 -6250.7172 8.7754623 3713.5309 630.53604 -10594.784 0 420.56939 0.00028385495 0.00026444837 + 26710 -6242.2734 -6250.7223 8.4488644 3717.3593 629.22586 -10597.307 0 404.91699 7.4114753e-05 5.7069127e-05 + 26720 -6242.6433 -6250.8795 8.2361226 3720.1503 628.51256 -10599.542 0 394.72121 -5.028168e-05 -7.067988e-05 + 26730 -6243.0699 -6251.1337 8.063746 3721.3197 628.6764 -10601.13 0 386.45995 -5.476126e-05 -8.1085018e-05 + 26740 -6243.5822 -6251.4036 7.8213961 3720.916 629.81657 -10602.136 0 374.84518 6.2992012e-05 3.3258367e-05 + 26750 -6244.1804 -6251.6444 7.4639612 3719.4958 631.79947 -10602.94 0 357.7149 0.00027638198 0.00024860326 + 26760 -6244.8251 -6251.8693 7.0441705 3717.8854 634.27956 -10604.034 0 337.59617 0.00053855652 0.00051701318 + 26770 -6245.4603 -6252.121 6.6607232 3716.9339 636.78777 -10605.843 0 319.21923 0.00079294632 0.00077851637 + 26780 -6246.043 -6252.4285 6.3854246 3717.3001 638.8541 -10608.583 0 306.02538 0.00098512354 0.00097563673 + 26790 -6246.556 -6252.7823 6.2262434 3719.287 640.12385 -10612.193 0 298.39652 0.001075152 0.0010673189 + 26800 -6247.0044 -6253.1391 6.1346943 3722.7461 640.43616 -10616.321 0 294.00897 0.0010476275 0.0010390339 + 26810 -6247.4036 -6253.4445 6.0408709 3727.0759 639.84734 -10620.368 0 289.51243 0.00091606972 0.00090621968 + 26820 -6247.7664 -6253.6638 5.8974825 3731.3338 638.59737 -10623.595 0 282.64045 0.00071978652 0.00070973133 + 26830 -6248.0933 -6253.8026 5.709379 3734.4537 637.03321 -10625.29 0 273.62548 0.00051341775 0.00050428411 + 26840 -6248.3753 -6253.8997 5.5244431 3735.5319 635.51279 -10624.944 0 264.76231 0.00035136969 0.0003430007 + 26850 -6248.6055 -6253.9925 5.3870024 3734.1051 634.31538 -10622.413 0 258.17538 0.00027143266 0.00026242134 + 26860 -6248.7899 -6254.0822 5.2922575 3730.3173 633.57808 -10617.978 0 253.63468 0.00028328249 0.00027240504 + 26870 -6248.9453 -6254.1313 5.1860136 3724.9055 633.2726 -10612.309 0 248.54287 0.00036655803 0.00035411814 + 26880 -6249.0846 -6254.0971 5.012499 3719.0049 633.229 -10606.331 0 240.22708 0.00047929799 0.00046687928 + 26890 -6249.2044 -6253.9694 4.7650218 3713.8534 633.20412 -10601.027 0 228.36658 0.0005729209 0.00056169085 + 26900 -6249.2882 -6253.7811 4.4928349 3710.4971 632.9769 -10597.255 0 215.32186 0.00060780569 0.00059705749 + 26910 -6249.3223 -6253.5853 4.2629943 3709.5695 632.4396 -10595.594 0 204.30661 0.00056477487 0.00055217988 + 26920 -6249.309 -6253.4248 4.1158419 3711.1735 631.65059 -10596.249 0 197.25424 0.00045035932 0.00043379832 + 26930 -6249.2677 -6253.318 4.0503147 3714.8718 630.82766 -10599.017 0 194.11381 0.00029546026 0.00027497142 + 26940 -6249.2218 -6253.2675 4.0456013 3719.7871 630.28209 -10603.337 0 193.88791 0.00014782269 0.00012612775 + 26950 -6249.1814 -6253.2803 4.0988651 3724.8037 630.31573 -10608.4 0 196.44061 5.9533168e-05 4.0576533e-05 + 26960 -6249.1319 -6253.3782 4.2463194 3728.8405 631.1156 -10613.334 0 203.50745 7.185211e-05 5.8192355e-05 + 26970 -6249.0397 -6253.5819 4.5422501 3731.1425 632.68031 -10617.405 0 217.69011 0.00020090934 0.00019184341 + 26980 -6248.8733 -6253.8763 5.0030045 3731.5012 634.80052 -10620.178 0 239.77205 0.0004288924 0.00042090954 + 26990 -6248.6256 -6254.1868 5.5611347 3730.3081 637.09871 -10621.594 0 266.52078 0.00070539204 0.00069476976 + 27000 -6248.32 -6254.3971 6.0770465 3728.3899 639.11949 -10621.906 0 291.24617 0.00096097005 0.00094645606 + 27010 -6247.9942 -6254.4028 6.4086347 3726.6758 640.45055 -10621.529 0 307.13773 0.001129634 0.0011130656 + 27020 -6247.6758 -6254.163 6.4871672 3725.8381 640.84228 -10620.843 0 310.90145 0.0011715866 0.0011561469 + 27030 -6247.369 -6253.7135 6.3444784 3726.0639 640.28505 -10620.062 0 304.063 0.0010864349 0.0010741872 + 27040 -6247.0603 -6253.1424 6.0821036 3727.0395 639.0085 -10619.19 0 291.48853 0.00091135173 0.00090196838 + 27050 -6246.7345 -6252.5507 5.8161442 3728.1274 637.39499 -10618.073 0 278.74227 0.00070565263 0.00069700394 + 27060 -6246.3868 -6252.0235 5.636691 3728.6431 635.83845 -10616.505 0 270.14186 0.00052878595 0.00051867068 + 27070 -6246.023 -6251.6229 5.5999098 3728.1136 634.60716 -10614.344 0 268.3791 0.00042071057 0.00040836873 + 27080 -6245.6496 -6251.3967 5.7471067 3726.4302 633.76849 -10611.595 0 275.4336 0.0003918768 0.0003781226 + 27090 -6245.2616 -6251.3844 6.1227738 3723.8604 633.20597 -10608.451 0 293.43767 0.00042530319 0.00041117025 + 27100 -6244.8443 -6251.5998 6.7555462 3720.9474 632.71854 -10605.266 0 323.76368 0.00048783079 0.00047309669 + 27110 -6244.3944 -6251.9937 7.5993326 3718.3463 632.15433 -10602.494 0 364.20266 0.00054480494 0.00052814808 + 27120 -6243.9419 -6252.4332 8.4912733 3716.6388 631.51361 -10600.586 0 406.94946 0.00057316116 0.00055399117 + 27130 -6243.5463 -6252.741 9.194705 3716.161 630.96812 -10599.87 0 440.66185 0.00056957752 0.00054938827 + 27140 -6243.2592 -6252.7795 9.52033 3716.9099 630.78608 -10600.475 0 456.26763 0.00055088893 0.00053217078 + 27150 -6243.0899 -6252.5213 9.4314867 3718.5898 631.20195 -10602.313 0 452.00976 0.00054522689 0.00052871452 + 27160 -6243.0061 -6252.0524 9.0463011 3720.7874 632.2984 -10605.138 0 433.54951 0.00057675048 0.00055987534 + 27170 -6242.9684 -6251.5135 8.5451579 3723.1725 633.95691 -10608.643 0 409.53191 0.00065186508 0.00063025614 + 27180 -6242.9628 -6251.0312 8.0683921 3725.5965 635.89346 -10612.521 0 386.68262 0.00075518964 0.00072616359 + 27190 -6243.0035 -6250.6815 7.6779471 3728.0335 637.75559 -10616.471 0 367.9703 0.00085792473 0.00082310448 + 27200 -6243.1098 -6250.4998 7.3899342 3730.4217 639.23624 -10620.158 0 354.16711 0.00093376765 0.00089865366 + 27210 -6243.2791 -6250.5095 7.2304109 3732.5294 640.16128 -10623.2 0 346.52186 0.00097313562 0.00094374094 + 27220 -6243.479 -6250.7367 7.2576211 3733.9589 640.5218 -10625.217 0 347.82593 0.00098742896 0.00096623852 + 27230 -6243.6669 -6251.1908 7.523875 3734.3097 640.44314 -10625.944 0 360.5863 0.0010005248 0.00098474156 + 27240 -6243.8225 -6251.8241 8.001561 3733.4176 640.10501 -10625.347 0 383.4797 0.0010320111 0.0010156913 + 27250 -6243.9689 -6252.5109 8.5419346 3731.5152 639.64535 -10623.671 0 409.37744 0.0010821244 0.0010608543 + 27260 -6244.1575 -6253.0833 8.9258158 3729.1916 639.08978 -10621.365 0 427.77517 0.0011280252 0.0011023908 + 27270 -6244.4242 -6253.4109 8.9867169 3727.1595 638.34417 -10618.915 0 430.6939 0.0011340153 0.00110883 + 27280 -6244.7546 -6253.4621 8.707506 3725.9637 637.26189 -10616.688 0 417.31254 0.0010693448 0.0010493396 + 27290 -6245.0922 -6253.2986 8.206429 3725.7862 635.75728 -10614.842 0 393.29812 0.0009235227 0.00090943484 + 27300 -6245.3797 -6253.0114 7.6316379 3726.4218 633.90584 -10613.339 0 365.75091 0.00071266188 0.0007010603 + 27310 -6245.5958 -6252.6589 7.0630838 3727.3861 631.97457 -10612.02 0 338.50261 0.00047644041 0.00046303475 + 27320 -6245.7579 -6252.2579 6.4999919 3728.0842 630.36248 -10610.705 0 311.51608 0.00026849503 0.00025174767 + 27330 -6245.896 -6251.8243 5.9283489 3727.9875 629.476 -10609.288 0 284.11974 0.00014313449 0.00012511998 + 27340 -6246.0234 -6251.4218 5.3983705 3726.8019 629.59105 -10607.815 0 258.7202 0.00014072001 0.00012474779 + 27350 -6246.1264 -6251.1676 5.0411213 3724.6114 630.75334 -10606.532 0 241.59882 0.00027444519 0.00026164858 + 27360 -6246.1795 -6251.1858 5.0062518 3721.9511 632.7493 -10605.886 0 239.92768 0.00052228044 0.00051010182 + 27370 -6246.1711 -6251.5358 5.3647028 3719.7469 635.15507 -10606.438 0 257.10666 0.00082821585 0.00081208 + 27380 -6246.1215 -6252.1662 6.0446139 3719.0813 637.44892 -10608.696 0 289.69182 0.0011151296 0.0010920587 + 27390 -6246.0799 -6252.9244 6.8445297 3720.8163 639.15538 -10612.896 0 328.02827 0.0013073362 0.0012787697 + 27400 -6246.0984 -6253.6199 7.5214446 3725.1976 639.97783 -10618.795 0 360.46983 0.0013559204 0.0013274088 + 27410 -6246.1988 -6254.1052 7.9064447 3731.6176 639.87707 -10625.6 0 378.92119 0.0012569986 0.0012344696 + 27420 -6246.3544 -6254.3275 7.9730727 3738.689 639.07084 -10632.087 0 382.11438 0.0010541606 0.0010391597 + 27430 -6246.5108 -6254.3149 7.8041312 3744.6488 637.95617 -10636.92 0 374.01775 0.00082238714 0.00081018445 + 27440 -6246.6306 -6254.1143 7.4836835 3747.9385 636.97899 -10639.032 0 358.6601 0.00063976389 0.00062250576 + 27450 -6246.7244 -6253.7407 7.0162636 3747.6999 636.48858 -10637.929 0 336.25872 0.00055987414 0.00053272693 + 27460 -6246.836 -6253.1902 6.3541964 3743.9817 636.62085 -10633.793 0 304.52874 0.0005967849 0.00056205989 + 27470 -6246.9971 -6252.5032 5.5060424 3737.6312 637.25135 -10627.386 0 263.88044 0.00072659762 0.00069231211 + 27480 -6247.1939 -6251.8104 4.6164328 3729.9974 638.03919 -10619.847 0 221.24536 0.00090067222 0.00087469266 + 27490 -6247.3737 -6251.3075 3.9337647 3722.6023 638.54856 -10612.458 0 188.52808 0.0010619982 0.0010464917 + 27500 -6247.4818 -6251.1658 3.6840332 3716.8653 638.40302 -10606.434 0 176.55954 0.0011589664 0.0011493308 + 27510 -6247.4968 -6251.4418 3.9450254 3713.8825 637.41685 -10602.741 0 189.06775 0.0011557275 0.001144434 + 27520 -6247.4421 -6252.0501 4.6080356 3714.2306 635.66003 -10601.941 0 220.84292 0.0010403695 0.0010225499 + 27530 -6247.368 -6252.8158 5.4478673 3717.8096 633.44071 -10604.066 0 261.09237 0.00083032829 0.00080692981 + 27540 -6247.3172 -6253.5656 6.2483222 3723.793 631.21877 -10608.577 0 299.45466 0.00057178245 0.00054809531 + 27550 -6247.2982 -6254.191 6.8927511 3730.7695 629.48648 -10614.447 0 330.33931 0.00032993074 0.00031087497 + 27560 -6247.2876 -6254.6449 7.3572692 3737.0932 628.65626 -10620.394 0 352.60162 0.0001710474 0.00015719934 + 27570 -6247.2622 -6254.8903 7.6280818 3741.3483 628.97948 -10625.218 0 365.58048 0.00014237909 0.00013004032 + 27580 -6247.228 -6254.8638 7.6358194 3742.7477 630.49837 -10628.11 0 365.95131 0.00025802652 0.00024300583 + 27590 -6247.2175 -6254.502 7.2845269 3741.3068 633.02675 -10628.836 0 349.1154 0.00049610362 0.00047753187 + 27600 -6247.2561 -6253.8112 6.555046 3737.7504 636.16605 -10627.728 0 314.15458 0.00080677983 0.00078749698 + 27610 -6247.3337 -6252.9143 5.5805791 3733.2402 639.37126 -10625.526 0 267.45266 0.0011264033 0.0011099714 + 27620 -6247.4096 -6252.0282 4.6186116 3729.0522 642.06639 -10623.147 0 221.34978 0.0013924324 0.0013798114 + 27630 -6247.4408 -6251.3837 3.9428476 3726.2891 643.77999 -10621.453 0 188.96338 0.0015560522 0.0015446257 + 27640 -6247.4054 -6251.1392 3.7337976 3725.663 644.2544 -10621.057 0 178.94453 0.0015909292 0.0015762178 + 27650 -6247.3069 -6251.3278 4.0208779 3727.3624 643.49288 -10622.183 0 192.70303 0.0014969972 0.0014757287 + 27660 -6247.1666 -6251.8537 4.6870456 3731.0114 641.73535 -10624.6 0 224.62953 0.0012990697 0.0012718305 + 27670 -6247.0086 -6252.5396 5.5309922 3735.7233 639.37828 -10627.641 0 265.07618 0.0010414075 0.0010131049 + 27680 -6246.8399 -6253.2061 6.3662197 3740.256 636.8683 -10630.33 0 305.10497 0.00077943877 0.00075650337 + 27690 -6246.6376 -6253.7381 7.1005153 3743.2835 634.60314 -10631.625 0 340.29653 0.00056865258 0.00055412653 + 27700 -6246.3615 -6254.089 7.7275412 3743.7671 632.86681 -10630.723 0 370.34713 0.00045091404 0.00044122924 + 27710 -6245.9956 -6254.2273 8.2316332 3741.3195 631.8081 -10627.355 0 394.50605 0.00044186464 0.00042889278 + 27720 -6245.5836 -6254.0942 8.5106083 3736.3801 631.4499 -10621.924 0 407.8761 0.00052643732 0.00050391048 + 27730 -6245.2123 -6253.6346 8.4223825 3730.0776 631.71146 -10615.424 0 403.64783 0.00066707905 0.00063581485 + 27740 -6244.9506 -6252.8767 7.9261265 3723.8424 632.43634 -10609.155 0 379.86446 0.00082085948 0.00078794928 + 27750 -6244.7993 -6251.9721 7.1727454 3718.9827 633.42959 -10604.384 0 343.75821 0.00095497519 0.00092786676 + 27760 -6244.6982 -6251.1446 6.4463283 3716.4171 634.5014 -10602.063 0 308.94422 0.001052261 0.0010332398 + 27770 -6244.5768 -6250.5829 6.0060869 3716.5981 635.50306 -10602.684 0 287.84538 0.0011070638 0.0010925713 + 27780 -6244.4001 -6250.3605 5.9603749 3719.5379 636.34182 -10606.24 0 285.65461 0.0011187252 0.001103194 + 27790 -6244.1768 -6250.4352 6.2583774 3724.8392 636.97526 -10612.25 0 299.93656 0.0010895084 0.0010698186 + 27800 -6243.9362 -6250.7161 6.7799495 3731.71 637.39975 -10619.826 0 324.93322 0.001027919 0.0010048301 + 27810 -6243.6976 -6251.1306 7.4329597 3739.0211 637.64943 -10627.801 0 356.22914 0.00095277649 0.0009288118 + 27820 -6243.4624 -6251.6385 8.1761203 3745.4698 637.80834 -10634.917 0 391.84556 0.00089249734 0.0008688407 + 27830 -6243.2323 -6252.1919 8.9595401 3749.8492 638.01833 -10640.059 0 429.39143 0.00087786708 0.00085339952 + 27840 -6243.0363 -6252.6919 9.6555538 3751.3456 638.45359 -10642.491 0 462.74832 0.0009314335 0.00090471582 + 27850 -6242.9317 -6253.0009 10.069175 3749.7497 639.24707 -10641.998 0 482.57135 0.0010585711 0.0010304657 + 27860 -6242.9694 -6253.0129 10.043525 3745.5074 640.3909 -10638.911 0 481.34208 0.0012433034 0.001217112 + 27870 -6243.1531 -6252.7239 9.5707238 3739.6111 641.66891 -10634.004 0 458.68278 0.001448923 0.0014275672 + 27880 -6243.4354 -6252.2349 8.7995012 3733.3859 642.67983 -10628.301 0 421.72147 0.0016229762 0.0016061465 + 27890 -6243.7544 -6251.6886 7.9341988 3728.2116 642.96415 -10622.864 0 380.25133 0.0017079746 0.0016922756 + 27900 -6244.0735 -6251.2003 7.1267809 3725.2018 642.18461 -10618.587 0 341.55533 0.001658578 0.0016403972 + 27910 -6244.3886 -6250.8373 6.4486588 3724.8957 640.27703 -10616.01 0 309.05592 0.0014608082 0.0014390084 + 27920 -6244.7103 -6250.6421 5.9317734 3727.0769 637.50427 -10615.223 0 284.28387 0.0011439433 0.0011202029 + 27930 -6245.0447 -6250.657 5.6122404 3730.8242 634.39455 -10615.876 0 268.97005 0.0007771692 0.00075426444 + 27940 -6245.3891 -6250.9215 5.532417 3734.8066 631.59497 -10617.323 0 265.14446 0.00045048916 0.00043027488 + 27950 -6245.7391 -6251.4456 5.70652 3737.7209 629.69644 -10618.863 0 273.48846 0.00024712076 0.00022964994 + 27960 -6246.0969 -6252.1802 6.0832666 3738.7139 629.08404 -10619.978 0 291.54427 0.00021786241 0.00020189773 + 27970 -6246.4735 -6253.0108 6.5372671 3737.6442 629.84708 -10620.502 0 313.30252 0.00036606014 0.00035027751 + 27980 -6246.8816 -6253.7821 6.9004898 3735.1043 631.76377 -10620.65 0 330.71019 0.00064725147 0.00063120153 + 27990 -6247.3237 -6254.3455 7.0217378 3732.2017 634.36124 -10620.908 0 336.52108 0.00098292281 0.00096716389 + 28000 -6247.7825 -6254.6083 6.8257357 3730.1771 637.03932 -10621.825 0 327.12755 0.0012840516 0.0012694511 + 28010 -6248.2221 -6254.5619 6.3398576 3729.9908 639.23103 -10623.784 0 303.84155 0.0014771968 0.0014639732 + 28020 -6248.6028 -6254.2764 5.6735945 3732.0197 640.55538 -10626.851 0 271.91048 0.0015248087 0.0015120999 + 28030 -6248.8998 -6253.8667 4.9668871 3735.953 640.91145 -10630.731 0 238.0411 0.0014334584 0.0014197792 + 28040 -6249.1123 -6253.4525 4.3401378 3740.8977 640.47841 -10634.829 0 208.00376 0.0012481755 0.0012324292 + 28050 -6249.2595 -6253.1275 3.8679268 3745.6394 639.62178 -10638.389 0 185.37275 0.0010357637 0.0010181367 + 28060 -6249.3673 -6252.9473 3.5799801 3748.974 638.74391 -10640.665 0 171.57273 0.00086315724 0.00084530358 + 28070 -6249.453 -6252.9353 3.4822579 3750.0187 638.13707 -10641.091 0 166.88934 0.00077785773 0.00076202055 + 28080 -6249.5153 -6253.0956 3.5803278 3748.4344 637.89328 -10639.423 0 171.5894 0.00079588675 0.00078318775 + 28090 -6249.5362 -6253.415 3.8788045 3744.5181 637.89909 -10635.832 0 185.89408 0.00089944082 0.00088848699 + 28100 -6249.4979 -6253.8455 4.3475741 3739.1485 637.9088 -10630.903 0 208.36014 0.0010436948 0.001030956 + 28110 -6249.4034 -6254.2886 4.8851047 3733.577 637.66045 -10625.526 0 234.12163 0.0011709693 0.0011531746 + 28120 -6249.2832 -6254.6105 5.3273522 3729.0929 636.98774 -10620.691 0 255.31661 0.0012293802 0.0012062678 + 28130 -6249.1775 -6254.6954 5.5178878 3726.6485 635.88868 -10617.233 0 264.44814 0.0011909128 0.0011659805 + 28140 -6249.1084 -6254.5059 5.3974892 3726.583 634.53163 -10615.621 0 258.67797 0.0010620656 0.0010404058 + 28150 -6249.0629 -6254.1082 5.0453217 3728.5644 633.20339 -10615.876 0 241.80012 0.00088168865 0.00086640933 + 28160 -6249.0038 -6253.6406 4.6367714 3731.7754 632.22264 -10617.639 0 222.2201 0.0007061646 0.0006961418 + 28170 -6248.8979 -6253.2442 4.3462641 3735.249 631.84874 -10620.342 0 208.29736 0.00058848441 0.00057918493 + 28180 -6248.7392 -6253.0008 4.26157 3738.1968 632.21177 -10623.409 0 204.23835 0.00056059043 0.00054735508 + 28190 -6248.551 -6252.9135 4.3624893 3740.1969 633.27997 -10626.39 0 209.07497 0.00062594071 0.00060730154 + 28200 -6248.3671 -6252.9357 4.5686372 3741.1976 634.87126 -10629.005 0 218.95473 0.00076362105 0.00074221884 + 28210 -6248.2063 -6253.0194 4.8130938 3741.3936 636.70601 -10631.119 0 230.67046 0.0009399163 0.00092038029 + 28220 -6248.0597 -6253.1435 5.0837695 3741.0784 638.48605 -10632.708 0 243.64276 0.0011207892 0.0011062403 + 28230 -6247.9001 -6253.3061 5.4060053 3740.5497 639.97334 -10633.829 0 259.08611 0.0012800929 0.0012698821 + 28240 -6247.7056 -6253.4949 5.7893684 3740.0777 641.03814 -10634.611 0 277.45902 0.0014018891 0.0013920984 + 28250 -6247.4812 -6253.6645 6.1832607 3739.8972 641.65887 -10635.221 0 296.33655 0.0014782667 0.0014645567 + 28260 -6247.2625 -6253.7379 6.4753853 3740.18 641.87874 -10635.797 0 310.3368 0.0015056084 0.001486526 + 28270 -6247.0951 -6253.6406 6.5454413 3740.971 641.7465 -10636.358 0 313.69427 0.001482514 0.0014608662 + 28280 -6247.0019 -6253.3524 6.3504589 3742.1203 641.27737 -10636.75 0 304.34962 0.0014109476 0.0013917954 + 28290 -6246.9612 -6252.9375 5.9763408 3743.2741 640.45806 -10636.67 0 286.41979 0.001298944 0.0012853759 + 28300 -6246.9205 -6252.5187 5.5981695 3743.9679 639.29108 -10635.778 0 268.29569 0.0011615278 0.0011516832 + 28310 -6246.836 -6252.205 5.3689892 3743.7919 637.84607 -10633.843 0 257.31209 0.0010184664 0.0010066119 + 28320 -6246.7056 -6252.0324 5.3268734 3742.5367 636.28229 -10630.851 0 255.29366 0.00089065452 0.00087167402 + 28330 -6246.5677 -6251.9641 5.3963944 3740.2451 634.8268 -10627.036 0 258.6255 0.00079756893 0.00077122732 + 28340 -6246.4687 -6251.9487 5.4800733 3737.1707 633.71763 -10622.837 0 262.63586 0.00075601619 0.00072743961 + 28350 -6246.4225 -6251.9851 5.5626444 3733.7048 633.13527 -10618.825 0 266.59313 0.00077805905 0.00075384805 + 28360 -6246.396 -6252.1364 5.7403853 3730.3367 633.14668 -10615.62 0 275.11147 0.00086613957 0.00084900772 + 28370 -6246.3329 -6252.476 6.1430616 3727.6594 633.68114 -10613.816 0 294.40998 0.0010063798 0.0009925783 + 28380 -6246.2017 -6253.0015 6.7998344 3726.3586 634.54782 -10613.908 0 325.88622 0.0011648488 0.0011467515 + 28390 -6246.0309 -6253.587 7.556122 3727.0939 635.49305 -10616.174 0 362.13176 0.0012929706 0.0012651642 + 28400 -6245.8991 -6254.0254 8.1262209 3730.2345 636.28334 -10620.543 0 389.4541 0.0013445081 0.0013085452 + 28410 -6245.8783 -6254.1415 8.2632352 3735.5537 636.79004 -10626.485 0 396.0206 0.0012982847 0.0012618915 + 28420 -6245.9759 -6253.894 7.9180746 3742.0889 637.0451 -10633.028 0 379.47856 0.0011736132 0.0011447415 + 28430 -6246.1299 -6253.3841 7.254186 3748.3373 637.23813 -10638.96 0 347.6613 0.0010267176 0.0010075419 + 28440 -6246.2613 -6252.7728 6.511487 3752.7474 637.64138 -10643.162 0 312.06699 0.00092758172 0.00091364306 + 28450 -6246.3327 -6252.1844 5.8517335 3754.2682 638.48033 -10644.933 0 280.4479 0.00092938804 0.00091418855 + 28460 -6246.3611 -6251.6807 5.3196797 3752.6847 639.80059 -10644.166 0 254.9489 0.001046582 0.0010270011 + 28470 -6246.384 -6251.3064 4.9223777 3748.6211 641.39579 -10641.323 0 235.90796 0.0012505957 0.001228421 + 28480 -6246.4187 -6251.134 4.7152968 3743.2809 642.84158 -10637.256 0 225.98348 0.0014816751 0.0014607611 + 28490 -6246.4497 -6251.2501 4.8003745 3738.0747 643.63202 -10632.957 0 230.06088 0.0016690775 0.0016514383 + 28500 -6246.448 -6251.6888 5.240827 3734.2577 643.36462 -10629.311 0 251.16984 0.0017519038 0.0017362585 + 28510 -6246.4012 -6252.373 5.9718089 3732.6406 641.89807 -10626.912 0 286.20259 0.0016958043 0.0016794663 + 28520 -6246.3299 -6253.1198 6.7899663 3733.4017 639.42046 -10625.942 0 325.41328 0.0015032321 0.0014852498 + 28530 -6246.2734 -6253.7222 7.4488505 3736.0345 636.40476 -10626.161 0 356.99071 0.0012153728 0.0011976395 + 28540 -6246.2558 -6254.0536 7.7978299 3739.4774 633.47422 -10627.005 0 373.71576 0.00090340122 0.00088828794 + 28550 -6246.2666 -6254.1129 7.8462887 3742.4475 631.23274 -10627.793 0 376.03818 0.00064842781 0.00063525522 + 28560 -6246.2817 -6253.9739 7.6922349 3743.8925 630.11722 -10627.984 0 368.65506 0.00051520288 0.0004997148 + 28570 -6246.3018 -6253.6951 7.3933676 3743.3709 630.30529 -10627.371 0 354.33166 0.00053063524 0.00050879809 + 28580 -6246.3624 -6253.2854 6.9229845 3741.1669 631.68698 -10626.139 0 331.78826 0.00067766257 0.00065021067 + 28590 -6246.4979 -6252.7542 6.2563279 3738.1034 633.89997 -10624.758 0 299.83834 0.00090646498 0.00087928421 + 28600 -6246.6989 -6252.1833 5.4843494 3735.1916 636.42466 -10623.8 0 262.84079 0.0011550653 0.0011345419 + 28610 -6246.9098 -6251.7307 4.8209352 3733.3138 638.72148 -10623.766 0 231.04626 0.0013680564 0.0013556004 + 28620 -6247.07 -6251.5535 4.4834987 3733.0461 640.37191 -10624.971 0 214.87441 0.0015071396 0.0014978725 + 28630 -6247.1604 -6251.7117 4.551385 3734.5986 641.17609 -10627.486 0 218.12791 0.0015544673 0.0015411099 + 28640 -6247.2155 -6252.1332 4.9177185 3737.8024 641.17581 -10631.111 0 235.68466 0.0015127516 0.0014913333 + 28650 -6247.2972 -6252.6626 5.3654305 3742.1126 640.60187 -10635.377 0 257.14153 0.0014040023 0.0013768267 + 28660 -6247.4493 -6253.1572 5.7079053 3746.6619 639.7726 -10639.592 0 273.55485 0.0012656109 0.0012391923 + 28670 -6247.6657 -6253.5574 5.8917262 3750.4206 638.98525 -10642.963 0 282.36458 0.0011416192 0.001121206 + 28680 -6247.8989 -6253.8814 5.9824691 3752.4724 638.43848 -10644.792 0 286.71349 0.0010692843 0.0010545082 + 28690 -6248.1049 -6254.152 6.047028 3752.3232 638.20322 -10644.678 0 289.80751 0.0010653693 0.0010509425 + 28700 -6248.283 -6254.3291 6.0461601 3750.0872 638.23363 -10642.65 0 289.76592 0.0011195916 0.0011005779 + 28710 -6248.4712 -6254.3228 5.8516218 3746.4265 638.39865 -10639.148 0 280.44255 0.0012003238 0.0011770946 + 28720 -6248.7011 -6254.0814 5.3802559 3742.271 638.5222 -10634.875 0 257.85205 0.0012701141 0.0012482392 + 28730 -6248.9579 -6253.6712 4.7133644 3738.4852 638.43175 -10630.588 0 225.89087 0.0013017635 0.0012869355 + 28740 -6249.1854 -6253.2661 4.0807417 3735.6657 638.01261 -10626.944 0 195.57204 0.0012859788 0.0012787163 + 28750 -6249.3301 -6253.0496 3.7194749 3734.1195 637.2521 -10624.421 0 178.25811 0.0012286985 0.001223503 + 28760 -6249.3816 -6253.1053 3.7237387 3733.9417 636.25229 -10623.299 0 178.46245 0.0011432282 0.0011327919 + 28770 -6249.3796 -6253.3747 3.995093 3735.0708 635.20115 -10623.647 0 191.46727 0.001043914 0.0010249535 + 28780 -6249.3868 -6253.709 4.3222085 3737.2702 634.31315 -10625.292 0 207.14448 0.00094476791 0.00092091239 + 28790 -6249.4421 -6253.9753 4.5331561 3740.0812 633.76493 -10627.821 0 217.25428 0.00086163359 0.00084086732 + 28800 -6249.5282 -6254.1389 4.61073 3742.8503 633.65349 -10630.643 0 220.97205 0.00081320553 0.00080144112 + 28810 -6249.5804 -6254.2575 4.6771698 3744.898 633.99174 -10633.147 0 224.15622 0.00081689169 0.00081270717 + 28820 -6249.5367 -6254.3916 4.8549184 3745.7782 634.73432 -10634.904 0 232.67493 0.00088044237 0.00087564739 + 28830 -6249.3897 -6254.5148 5.1250524 3745.4756 635.80947 -10635.8 0 245.62127 0.00099547903 0.00098146863 + 28840 -6249.1954 -6254.5121 5.3167275 3744.3932 637.13327 -10636.039 0 254.80741 0.0011390152 0.0011137583 + 28850 -6249.0295 -6254.2736 5.2441576 3743.1309 638.60036 -10636.005 0 251.32946 0.0012830117 0.0012528434 + 28860 -6248.9276 -6253.8014 4.8738282 3742.2031 640.06643 -10636.071 0 233.58119 0.0014054049 0.0013801934 + 28870 -6248.8581 -6253.2385 4.3804497 3741.8701 641.34403 -10636.453 0 209.93573 0.0014949824 0.0014806508 + 28880 -6248.7451 -6252.7932 4.0481283 3742.1554 642.22408 -10637.173 0 194.00902 0.0015478035 0.0015420167 + 28890 -6248.5195 -6252.6138 4.0943306 3742.9757 642.51907 -10638.109 0 196.22329 0.0015597349 0.0015538215 + 28900 -6248.1615 -6252.702 4.54047 3744.2437 642.11323 -10639.059 0 217.6048 0.0015224908 0.0015080431 + 28910 -6247.711 -6252.9234 5.2123911 3745.8462 641.00227 -10639.772 0 249.80703 0.0014277723 0.00140313 + 28920 -6247.2387 -6253.1103 5.8715593 3747.5116 639.31006 -10639.932 0 281.39806 0.0012780738 0.0012497775 + 28930 -6246.7915 -6253.1829 6.3914163 3748.7026 637.27811 -10639.164 0 306.31253 0.0010969265 0.0010744746 + 28940 -6246.3529 -6253.1942 6.8412333 3748.6902 635.23223 -10637.117 0 327.87029 0.00092926668 0.0009167962 + 28950 -6245.8645 -6253.2508 7.3863217 3746.8611 633.53364 -10633.646 0 353.99398 0.00082728738 0.00081928757 + 28960 -6245.3014 -6253.3729 8.07145 3743.1132 632.51584 -10629.002 0 386.82917 0.00082736035 0.00081300399 + 28970 -6244.7309 -6253.4235 8.6925813 3738.0729 632.40458 -10623.901 0 416.59727 0.00093175327 0.00090471873 + 28980 -6244.2811 -6253.193 8.9119194 3732.9516 633.23229 -10619.377 0 427.10918 0.0011069788 0.0010717912 + 28990 -6244.0365 -6252.5781 8.5415664 3729.1076 634.7865 -10616.472 0 409.35979 0.001299102 0.0012676047 + 29000 -6243.9624 -6251.6997 7.7373658 3727.5772 636.64235 -10615.919 0 370.81798 0.0014548936 0.0014357372 + 29010 -6243.9327 -6250.8496 6.9169319 3728.8124 638.29375 -10617.956 0 331.49819 0.0015366816 0.0015274116 + 29020 -6243.8348 -6250.3065 6.4716999 3732.6706 639.33847 -10622.316 0 310.16017 0.0015277362 0.0015166009 + 29030 -6243.6537 -6250.1675 6.513757 3738.5232 639.63499 -10628.326 0 312.17579 0.0014334513 0.0014094455 + 29040 -6243.4738 -6250.3262 6.852395 3745.3453 639.35732 -10635.029 0 328.40522 0.0012833885 0.0012460492 + 29050 -6243.3996 -6250.6078 7.2081782 3751.7836 638.91643 -10641.308 0 345.45635 0.0011319543 0.001092282 + 29060 -6243.4607 -6250.9366 7.4758757 3756.3371 638.77632 -10646.05 0 358.28591 0.0010488717 0.0010200103 + 29070 -6243.5864 -6251.3765 7.7901 3757.7659 639.24466 -10648.387 0 373.3453 0.0010935698 0.0010793208 + 29080 -6243.6792 -6252.0067 8.3275654 3755.628 640.33182 -10647.967 0 399.10366 0.0012818392 0.0012735557 + 29090 -6243.7161 -6252.7682 9.0521057 3750.6228 641.73525 -10645.126 0 433.8277 0.0015662701 0.0015506858 + 29100 -6243.7779 -6253.4454 9.6674545 3744.4348 642.94837 -10640.829 0 463.31867 0.0018482443 0.0018185238 + 29110 -6243.9795 -6253.8009 9.821393 3739.0805 643.44853 -10636.33 0 470.69626 0.0020189049 0.0019792184 + 29120 -6244.3696 -6253.7325 9.3629339 3736.0923 642.89542 -10632.72 0 448.72433 0.0020068615 0.0019678017 + 29130 -6244.8912 -6253.3248 8.4335864 3735.9687 641.26707 -10630.561 0 404.18478 0.0018070871 0.0017771952 + 29140 -6245.4287 -6252.7786 7.3499194 3738.1268 638.88191 -10629.787 0 352.24938 0.0014790072 0.0014595269 + 29150 -6245.8865 -6252.2915 6.4050336 3741.2935 636.30001 -10629.885 0 306.96515 0.0011196448 0.0011054797 + 29160 -6246.2348 -6251.974 5.7391746 3744.0807 634.14277 -10630.197 0 275.05345 0.00082738247 0.00081210883 + 29170 -6246.5024 -6251.8412 5.33881 3745.4765 632.89604 -10630.214 0 255.86573 0.00067112742 0.00065172521 + 29180 -6246.7356 -6251.8628 5.1271763 3745.1029 632.76276 -10629.728 0 245.72306 0.00067365802 0.00065173227 + 29190 -6246.9608 -6252.0225 5.0617034 3743.2262 633.61414 -10628.863 0 242.58523 0.00081130733 0.00079052805 + 29200 -6247.1719 -6252.3336 5.161725 3740.5913 635.05652 -10627.981 0 247.37882 0.0010268131 0.0010091784 + 29210 -6247.3483 -6252.7986 5.4503403 3738.1664 636.58981 -10627.555 0 261.21089 0.0012493999 0.00123367 + 29220 -6247.4839 -6253.3548 5.8708289 3736.8557 637.7947 -10628.005 0 281.36306 0.0014161907 0.0013997172 + 29230 -6247.5996 -6253.8654 6.2657923 3737.2268 638.47186 -10629.564 0 300.29192 0.0014901069 0.0014720696 + 29240 -6247.725 -6254.1808 6.455842 3739.3205 638.67721 -10632.179 0 309.40017 0.0014697609 0.0014524206 + 29250 -6247.8665 -6254.2281 6.3616366 3742.6253 638.64632 -10635.5 0 304.88532 0.001387252 0.0013736846 + 29260 -6247.9945 -6254.0552 6.0606935 3746.2627 638.65469 -10638.973 0 290.46244 0.0012929121 0.0012833062 + 29270 -6248.0678 -6253.7891 5.7213724 3749.3217 638.88636 -10641.997 0 274.20027 0.001232523 0.0012229208 + 29280 -6248.072 -6253.5446 5.4725334 3751.1847 639.36624 -10644.095 0 262.2745 0.001228064 0.0012132316 + 29290 -6248.0362 -6253.3634 5.3271824 3751.6776 639.97014 -10645.011 0 255.30847 0.0012718926 0.0012498983 + 29300 -6248.0097 -6253.2292 5.2194321 3750.9959 640.4904 -10644.715 0 250.14447 0.0013361344 0.0013104136 + 29310 -6248.0215 -6253.1267 5.105132 3749.4944 640.7213 -10643.342 0 244.66657 0.00138998 0.0013668857 + 29320 -6248.0569 -6253.0822 5.0252803 3747.4974 640.53158 -10641.111 0 240.83963 0.0014140568 0.001397883 + 29330 -6248.0705 -6253.1443 5.0737278 3745.2368 639.90413 -10638.285 0 243.1615 0.0014048528 0.0013944899 + 29340 -6248.0249 -6253.3248 5.2999708 3742.9129 638.93699 -10635.175 0 254.00434 0.0013697935 0.0013597837 + 29350 -6247.9223 -6253.5604 5.638122 3740.7778 637.81002 -10632.148 0 270.21044 0.0013191982 0.0013042271 + 29360 -6247.8032 -6253.7362 5.9330433 3739.1393 636.72807 -10629.604 0 284.34472 0.0012612418 0.001240208 + 29370 -6247.7125 -6253.7594 6.0469483 3738.2682 635.85891 -10627.887 0 289.80369 0.0012014765 0.0011778002 + 29380 -6247.6641 -6253.6194 5.9553808 3738.2832 635.28933 -10627.192 0 285.41527 0.0011443396 0.0011226095 + 29390 -6247.6343 -6253.3886 5.7543478 3739.104 635.01846 -10627.511 0 275.78064 0.0010939344 0.0010760292 + 29400 -6247.5855 -6253.1663 5.5807862 3740.4966 634.98952 -10628.652 0 267.46259 0.0010538411 0.0010377268 + 29410 -6247.4986 -6253.0127 5.5141234 3742.1633 635.14174 -10630.318 0 264.26773 0.0010272723 0.0010092362 + 29420 -6247.3878 -6252.9201 5.5322898 3743.8103 635.45394 -10632.184 0 265.13837 0.0010183822 0.00099674817 + 29430 -6247.2877 -6252.8404 5.5526156 3745.166 635.95628 -10633.963 0 266.1125 0.0010340635 0.0010112728 + 29440 -6247.2214 -6252.7474 5.5260408 3745.9822 636.70259 -10635.432 0 264.83888 0.0010841972 0.0010652928 + 29450 -6247.1745 -6252.6834 5.5089282 3746.0771 637.71667 -10636.477 0 264.01875 0.0011780755 0.0011664296 + 29460 -6247.098 -6252.7436 5.6456283 3745.4393 638.94058 -10637.123 0 270.57019 0.0013166105 0.0013101935 + 29470 -6246.9435 -6253.0014 6.0578897 3744.3382 640.21463 -10637.554 0 290.32807 0.0014836238 0.0014752312 + 29480 -6246.7077 -6253.4217 6.7140303 3743.3318 641.30509 -10638.059 0 321.774 0.0016426272 0.0016248043 + 29490 -6246.4518 -6253.84 7.3881976 3743.09 641.97245 -10638.902 0 354.08388 0.0017450639 0.0017164952 + 29500 -6246.2676 -6254.0437 7.7761393 3744.0605 642.05168 -10640.156 0 372.67623 0.0017502106 0.0017180761 + 29510 -6246.2054 -6253.9134 7.7080658 3746.147 641.51045 -10641.571 0 369.41376 0.001647588 0.0016227042 + 29520 -6246.226 -6253.5087 7.2826859 3748.6338 640.46343 -10642.606 0 349.02717 0.0014668939 0.0014548063 + 29530 -6246.2317 -6253.0161 6.7844642 3750.4641 639.14306 -10642.623 0 325.14959 0.0012663284 0.0012622045 + 29540 -6246.1512 -6252.5993 6.448129 3750.7352 637.84026 -10641.175 0 309.03052 0.0011058156 0.001098251 + 29550 -6245.9985 -6252.2912 6.2927399 3749.1023 636.82944 -10638.223 0 301.58341 0.0010228673 0.0010034155 + 29560 -6245.8511 -6252.0264 6.1752232 3745.8676 636.29207 -10634.186 0 295.95134 0.0010246042 0.00099446445 + 29570 -6245.7756 -6251.7652 5.9895898 3741.7784 636.26006 -10629.804 0 287.05475 0.001095056 0.0010633352 + 29580 -6245.7693 -6251.5764 5.8071893 3737.7344 636.60346 -10625.914 0 278.3131 0.0012068613 0.0011826959 + 29590 -6245.7661 -6251.6003 5.8342323 3734.5742 637.07508 -10623.25 0 279.60915 0.0013284899 0.001314142 + 29600 -6245.69 -6251.9308 6.240884 3732.9733 637.40036 -10622.304 0 299.09818 0.0014268771 0.0014170046 + 29610 -6245.5091 -6252.5204 7.0113349 3733.3754 637.38099 -10623.277 0 336.02251 0.0014710324 0.0014577465 + 29620 -6245.256 -6253.1817 7.9256763 3735.8882 636.97395 -10626.044 0 379.84288 0.0014405662 0.0014197195 + 29630 -6245.0034 -6253.6849 8.6815091 3740.1536 636.3152 -10630.154 0 416.06663 0.0013370353 0.0013108673 + 29640 -6244.8137 -6253.8819 9.0681631 3745.2947 635.67785 -10634.854 0 434.59726 0.0011907319 0.001165118 + 29650 -6244.701 -6253.7666 9.065626 3750.0588 635.38146 -10639.207 0 434.47566 0.0010553147 0.0010342975 + 29660 -6244.6384 -6253.4347 8.7963446 3753.1801 635.68917 -10642.304 0 421.57019 0.00098917419 0.00097175216 + 29670 -6244.5994 -6252.9887 8.3892231 3753.8268 636.72664 -10643.542 0 402.05864 0.0010317802 0.0010136219 + 29680 -6244.5869 -6252.4802 7.8933044 3751.9118 638.43687 -10642.829 0 378.29144 0.0011872938 0.0011651844 + 29690 -6244.622 -6251.932 7.3099959 3748.115 640.5706 -10640.618 0 350.33602 0.0014225522 0.0013971295 + 29700 -6244.7146 -6251.3952 6.6806217 3743.6343 642.71496 -10637.744 0 320.17288 0.0016777601 0.001652527 + 29710 -6244.8494 -6250.9744 6.1250281 3739.7993 644.36786 -10635.142 0 293.54571 0.0018837926 0.0018621414 + 29720 -6244.9972 -6250.7975 5.8003764 3737.6883 645.0577 -10633.544 0 277.98658 0.0019809837 0.0019640033 + 29730 -6245.1337 -6250.9602 5.8265767 3737.8424 644.48585 -10633.289 0 279.24225 0.0019358819 0.0019220559 + 29740 -6245.2518 -6251.4806 6.228835 3740.1324 642.64716 -10634.26 0 298.52072 0.001752041 0.0017383035 + 29750 -6245.3661 -6252.2787 6.9125683 3743.8059 639.87603 -10635.961 0 331.28906 0.001470699 0.0014540725 + 29760 -6245.5134 -6253.1859 7.6724556 3747.7074 636.7806 -10637.674 0 367.70712 0.0011597957 0.0011390811 + 29770 -6245.7413 -6253.988 8.2467261 3750.6054 634.06839 -10638.662 0 395.22939 0.00089437318 0.00087109997 + 29780 -6246.0818 -6254.4984 8.416593 3751.5378 632.32032 -10638.357 0 403.37036 0.00073490393 0.00071255832 + 29790 -6246.5227 -6254.6285 8.1058297 3750.086 631.80805 -10636.523 0 388.47684 0.00071050286 0.00069205819 + 29800 -6247.0046 -6254.4138 7.4091171 3746.5119 632.43695 -10633.363 0 355.08646 0.00081182685 0.00079735489 + 29810 -6247.4546 -6253.9787 6.5240843 3741.7098 633.82998 -10629.518 0 312.67073 0.00099550417 0.00098201317 + 29820 -6247.8266 -6253.4709 5.6443093 3736.9657 635.49505 -10625.932 0 270.50697 0.0011989134 0.0011826547 + 29830 -6248.1184 -6253.0119 4.8934884 3733.5795 636.99264 -10623.584 0 234.52342 0.0013608512 0.0013401631 + 29840 -6248.358 -6252.6844 4.3264108 3732.4744 638.04611 -10623.205 0 207.34588 0.0014410088 0.001417571 + 29850 -6248.5759 -6252.5421 3.9661625 3733.9333 638.5781 -10625.054 0 190.08076 0.0014312526 0.0014090575 + 29860 -6248.7846 -6252.6214 3.8368088 3737.5452 638.68326 -10628.85 0 183.88141 0.0013548945 0.0013376882 + 29870 -6248.9733 -6252.9395 3.9662666 3742.3695 638.55935 -10633.868 0 190.08575 0.0012547381 0.001243484 + 29880 -6249.1196 -6253.474 4.3544124 3747.2548 638.42187 -10639.151 0 208.68787 0.0011748458 0.0011668844 + 29890 -6249.2122 -6254.1409 4.9286664 3751.192 638.42645 -10643.759 0 236.20935 0.0011434617 0.0011341672 + 29900 -6249.2659 -6254.797 5.5310121 3753.5644 638.61899 -10646.98 0 265.07713 0.0011641805 0.0011501487 + 29910 -6249.3169 -6255.2829 5.9660212 3754.2104 638.92797 -10648.421 0 285.92521 0.0012186891 0.001200137 + 29920 -6249.3983 -6255.4869 6.0886294 3753.3152 639.20373 -10648.006 0 291.80129 0.001278627 0.0012591886 + 29930 -6249.5162 -6255.3886 5.8723738 3751.2352 639.29092 -10645.915 0 281.4371 0.0013197423 0.0013038638 + 29940 -6249.6446 -6255.0584 5.4138327 3748.3639 639.10072 -10642.523 0 259.46124 0.0013312044 0.0013210417 + 29950 -6249.7419 -6254.6179 4.8759806 3745.0888 638.64507 -10638.352 0 233.68435 0.0013163446 0.0013102139 + 29960 -6249.777 -6254.1833 4.4063322 3741.8152 638.01732 -10634.016 0 211.17617 0.0012858909 0.0012792717 + 29970 -6249.7477 -6253.8211 4.0734213 3738.9907 637.33564 -10630.147 0 195.2212 0.0012486655 0.0012372502 + 29980 -6249.6812 -6253.5393 3.858071 3737.0682 636.68458 -10627.292 0 184.90041 0.0012059016 0.0011887501 + 29990 -6249.6124 -6253.3216 3.7092771 3736.3903 636.08622 -10625.798 0 177.76937 0.0011527173 0.0011330788 + 30000 -6249.5532 -6253.1793 3.6261307 3737.0508 635.51308 -10625.743 0 173.78453 0.0010850823 0.0010678622 + 30010 -6249.476 -6253.1706 3.6946536 3738.8271 634.93383 -10626.932 0 177.06853 0.0010066844 0.00099432396 + 30020 -6249.325 -6253.3625 4.037472 3741.2392 634.36639 -10628.968 0 193.49831 0.00093080692 0.00092102386 + 30030 -6249.0497 -6253.7595 4.7097923 3743.7063 633.90977 -10631.376 0 225.71967 0.00087672219 0.00086425205 + 30040 -6248.6363 -6254.2626 5.6263012 3745.7056 633.73483 -10633.703 0 269.64392 0.00086390231 0.00084500946 + 30050 -6248.1162 -6254.6995 6.5833073 3746.8617 634.03296 -10635.594 0 315.50902 0.00090743778 0.00088344788 + 30060 -6247.5442 -6254.9115 7.3672563 3746.9718 634.94055 -10636.824 0 353.08026 0.0010152168 0.00099183528 + 30070 -6246.9611 -6254.8306 7.8695929 3746.0259 636.46792 -10637.324 0 377.15505 0.0011848217 0.0011673933 + 30080 -6246.3736 -6254.4887 8.1150838 3744.262 638.46068 -10637.211 0 388.92035 0.0013986605 0.0013872558 + 30090 -6245.775 -6253.957 8.1820292 3742.2105 640.6099 -10636.777 0 392.12875 0.0016199349 0.0016087754 + 30100 -6245.1833 -6253.2787 8.095454 3740.6271 642.51224 -10636.418 0 387.97958 0.0017958438 0.0017779936 + 30110 -6244.6559 -6252.4601 7.8041326 3740.252 643.76816 -10636.48 0 374.01783 0.00187252 0.0018460307 + 30120 -6244.2571 -6251.5303 7.2732714 3741.4579 644.09344 -10637.082 0 348.57598 0.0018180216 0.0017881614 + 30130 -6244.0041 -6250.6149 6.6107931 3743.9709 643.40874 -10637.995 0 316.8263 0.0016414487 0.0016167624 + 30140 -6243.8435 -6249.9425 6.0989536 3746.8653 641.87301 -10638.681 0 292.29608 0.0013954993 0.0013807553 + 30150 -6243.6816 -6249.7514 6.0697725 3748.9 639.8451 -10638.496 0 290.89755 0.001158408 0.0011504726 + 30160 -6243.4507 -6250.1455 6.6948795 3749.052 637.7824 -10636.98 0 320.85619 0.0010032994 0.00099374014 + 30170 -6243.1625 -6251.0103 7.8477588 3746.9693 636.10384 -10634.083 0 376.10864 0.00096995869 0.0009522969 + 30180 -6242.9063 -6252.0618 9.1555494 3743.1083 635.05806 -10630.228 0 438.7853 0.0010518405 0.0010270529 + 30190 -6242.7866 -6252.9966 10.210046 3738.5248 634.64725 -10626.169 0 489.32268 0.0012023326 0.0011776554 + 30200 -6242.8499 -6253.6282 10.778298 3734.4737 634.64831 -10622.75 0 516.5565 0.0013548951 0.0013370463 + 30210 -6243.0614 -6253.9226 10.861229 3732.0177 634.73221 -10620.673 0 520.53102 0.0014469703 0.0014358953 + 30220 -6243.3487 -6253.9319 10.58319 3731.7697 634.62963 -10620.331 0 507.20583 0.0014389868 0.001427723 + 30230 -6243.6665 -6253.7012 10.034702 3733.778 634.26395 -10621.743 0 480.91923 0.0013248231 0.0013057285 + 30240 -6244.0168 -6253.2368 9.219972 3737.5161 633.79018 -10624.543 0 441.87279 0.0011341315 0.0011060263 + 30250 -6244.4123 -6252.565 8.152672 3741.9632 633.52598 -10628.054 0 390.72179 0.00092690323 0.00089655141 + 30260 -6244.8276 -6251.8165 6.9889713 3745.8205 633.81184 -10631.449 0 334.95072 0.00077875858 0.00075504222 + 30270 -6245.1938 -6251.233 6.0392032 3747.8932 634.86445 -10633.991 0 289.4325 0.00075699333 0.00074290248 + 30280 -6245.4423 -6251.0566 5.6142689 3747.5484 636.67911 -10635.284 0 269.06727 0.00089359982 0.00088326901 + 30290 -6245.5583 -6251.3808 5.8225153 3745.0379 639.00583 -10635.425 0 279.04761 0.0011670102 0.0011505037 + 30300 -6245.5999 -6252.0845 6.4845923 3741.4725 641.397 -10634.954 0 310.77805 0.0015035876 0.001475325 + 30310 -6245.6653 -6252.9068 7.2414223 3738.3968 643.31475 -10634.618 0 347.04959 0.001801832 0.0017654486 + 30320 -6245.8273 -6253.6033 7.7760567 3737.146 644.27881 -10635.028 0 372.67227 0.0019702954 0.0019358365 + 30330 -6246.0826 -6254.0623 7.9797231 3738.3031 644.01768 -10636.383 0 382.43311 0.0019614247 0.0019373188 + 30340 -6246.3627 -6254.306 7.9432735 3741.5149 642.5682 -10638.389 0 380.68624 0.0017851917 0.0017717952 + 30350 -6246.5949 -6254.3993 7.804427 3745.7102 640.27623 -10640.386 0 374.03193 0.0014985211 0.0014885092 + 30360 -6246.7606 -6254.3594 7.5987957 3749.5498 637.69009 -10641.599 0 364.17693 0.0011800697 0.0011650289 + 30370 -6246.8998 -6254.1481 7.2483095 3751.8603 635.38599 -10641.394 0 347.37966 0.00090476383 0.00088209147 + 30380 -6247.0632 -6253.7483 6.6851071 3751.9021 633.7943 -10639.445 0 320.38784 0.00072695693 0.00070120356 + 30390 -6247.2606 -6253.2368 5.97618 3749.478 633.0922 -10635.807 0 286.41208 0.00067244634 0.00065056904 + 30400 -6247.4547 -6252.7751 5.3204912 3744.9538 633.19438 -10630.923 0 254.98779 0.00073613406 0.00072152172 + 30410 -6247.5965 -6252.5221 4.9256517 3739.2155 633.82783 -10625.565 0 236.06487 0.00088454907 0.0008749453 + 30420 -6247.6647 -6252.5447 4.8800107 3733.5208 634.64726 -10620.713 0 233.8775 0.0010647711 0.0010549933 + 30430 -6247.6775 -6252.7957 5.1181421 3729.2183 635.34574 -10617.36 0 245.29009 0.0012195624 0.0012059752 + 30440 -6247.6757 -6253.1626 5.4869605 3727.3857 635.73273 -10616.281 0 262.96593 0.0013047376 0.0012878107 + 30450 -6247.692 -6253.5432 5.8512549 3728.5085 635.76976 -10617.821 0 280.42497 0.0013026708 0.0012859975 + 30460 -6247.7301 -6253.8948 6.1647461 3732.3283 635.56462 -10621.788 0 295.44923 0.0012267095 0.0012135412 + 30470 -6247.7657 -6254.2278 6.4620804 3737.9295 635.32942 -10627.487 0 309.69915 0.0011144786 0.0011045612 + 30480 -6247.7725 -6254.5525 6.780018 3744.0328 635.31107 -10633.896 0 324.93651 0.0010124922 0.0010018682 + 30490 -6247.7525 -6254.8245 7.0719618 3749.3702 635.70935 -10639.904 0 338.92809 0.00095866014 0.00094288884 + 30500 -6247.7425 -6254.9413 7.1987711 3752.985 636.6052 -10644.531 0 345.00551 0.00097068273 0.00094886961 + 30510 -6247.7852 -6254.8072 7.022009 3754.364 637.92403 -10647.095 0 336.53407 0.0010448205 0.0010206968 + 30520 -6247.8888 -6254.4137 6.5249376 3753.4317 639.4496 -10647.295 0 312.71162 0.0011627165 0.0011415302 + 30530 -6248.0156 -6253.8639 5.8483936 3750.4939 640.88425 -10645.242 0 280.28784 0.001299576 0.0012835898 + 30540 -6248.111 -6253.3186 5.2075485 3746.1847 641.93082 -10641.434 0 249.57494 0.0014289399 0.0014156241 + 30550 -6248.145 -6252.9104 4.7653415 3741.3883 642.36478 -10636.663 0 228.3819 0.0015245973 0.0015089496 + 30560 -6248.1291 -6252.6933 4.5642285 3737.0884 642.07445 -10631.856 0 218.74344 0.001563078 0.0015418832 + 30570 -6248.1002 -6252.6552 4.5549882 3734.1427 641.066 -10627.864 0 218.30059 0.0015286963 0.0015031763 + 30580 -6248.0869 -6252.7699 4.6829834 3733.053 639.44513 -10625.268 0 224.43484 0.0014195972 0.0013943963 + 30590 -6248.0828 -6253.0374 4.9545161 3733.8312 637.39225 -10624.261 0 237.44821 0.0012508812 0.0012302596 + 30600 -6248.0486 -6253.4738 5.4251846 3736.0283 635.14166 -10624.644 0 260.00529 0.0010516893 0.0010360487 + 30610 -6247.9405 -6254.0569 6.1163582 3738.9109 632.96464 -10625.932 0 293.1302 0.00085689385 0.00084259692 + 30620 -6247.7467 -6254.6789 6.9322087 3741.6914 631.14798 -10627.518 0 332.23034 0.00069788767 0.00068063732 + 30630 -6247.4997 -6255.1613 7.6615785 3743.7054 629.95993 -10628.827 0 367.18583 0.00059743867 0.0005763118 + 30640 -6247.254 -6255.3384 8.084356 3744.496 629.60448 -10629.439 0 387.4477 0.00056987426 0.00054831288 + 30650 -6247.0424 -6255.1493 8.1068978 3743.8474 630.17571 -10629.172 0 388.52803 0.00062305129 0.00060574771 + 30660 -6246.8532 -6254.6669 7.8137377 3741.8315 631.62943 -10628.128 0 374.47815 0.00075722034 0.00074568864 + 30670 -6246.6488 -6254.0396 7.3908619 3738.8693 633.78327 -10626.692 0 354.21157 0.00095976866 0.00095074748 + 30680 -6246.4067 -6253.3968 6.9900333 3735.7324 636.34399 -10625.473 0 335.00161 0.0012004589 0.0011887092 + 30690 -6246.1428 -6252.7948 6.6519755 3733.4001 638.95186 -10625.147 0 318.79999 0.0014336097 0.001416614 + 30700 -6245.8945 -6252.2409 6.3463728 3732.7685 641.23327 -10626.243 0 304.15379 0.0016096315 0.001589927 + 30710 -6245.6815 -6251.7611 6.0796177 3734.3208 642.85831 -10628.94 0 291.36939 0.0016915033 0.0016744234 + 30720 -6245.4784 -6251.4404 5.9619285 3737.9173 643.60079 -10632.958 0 285.72907 0.0016675746 0.0016562306 + 30730 -6245.226 -6251.3885 6.1625265 3742.8126 643.39132 -10637.592 0 295.34285 0.0015540997 0.0015459697 + 30740 -6244.8742 -6251.655 6.7808453 3747.8785 642.34687 -10641.88 0 324.97615 0.0013876321 0.0013759164 + 30750 -6244.4262 -6252.1646 7.7383449 3751.9124 640.75929 -10644.836 0 370.86491 0.0012131211 0.0011920437 + 30760 -6243.9496 -6252.7373 8.7877109 3753.9044 639.03166 -10645.673 0 421.15641 0.0010737616 0.0010435096 + 30770 -6243.5386 -6253.1861 9.6475021 3753.2173 637.56642 -10643.97 0 462.36243 0.0010040983 0.00097105842 + 30780 -6243.2549 -6253.419 10.164074 3749.7097 636.63505 -10639.764 0 487.11947 0.0010235925 0.00099533411 + 30790 -6243.0972 -6253.4669 10.369607 3743.8324 636.28193 -10633.581 0 496.96973 0.0011285173 0.0011076374 + 30800 -6243.0284 -6253.4189 10.390459 3736.6586 636.31355 -10626.391 0 497.96908 0.0012854997 0.0012677178 + 30810 -6243.0314 -6253.3283 10.296913 3729.7464 636.38596 -10619.461 0 493.48585 0.001434522 0.0014127468 + 30820 -6243.1342 -6253.1744 10.040214 3724.7617 636.15236 -10614.088 0 481.18341 0.0015066001 0.0014772807 + 30830 -6243.3798 -6252.914 9.5342029 3722.9382 635.40578 -10611.258 0 456.9325 0.0014517377 0.0014178054 + 30840 -6243.7727 -6252.5653 8.7925829 3724.608 634.16263 -10611.336 0 421.38991 0.0012634507 0.001231488 + 30850 -6244.2608 -6252.2388 7.9779605 3729.0609 632.66556 -10613.965 0 382.34863 0.00098562526 0.00096027042 + 30860 -6244.7696 -6252.0795 7.3099161 3734.8189 631.31505 -10618.213 0 350.33219 0.00069737196 0.00067813271 + 30870 -6245.2524 -6252.1705 6.9180698 3740.1822 630.55572 -10622.908 0 331.55272 0.00048428645 0.00046710961 + 30880 -6245.7109 -6252.4804 6.7694672 3743.7825 630.74694 -10627.01 0 324.43085 0.00041019901 0.00039162011 + 30890 -6246.173 -6252.8914 6.7184133 3744.9411 632.04654 -10629.879 0 321.98406 0.00049952094 0.0004794594 + 30900 -6246.6563 -6253.2771 6.6208144 3743.7666 634.3368 -10631.381 0 317.30658 0.00073274071 0.00071395757 + 30910 -6247.1478 -6253.5691 6.4213704 3741.0325 637.22033 -10631.822 0 307.7481 0.001052999 0.0010382955 + 30920 -6247.6109 -6253.775 6.1640638 3737.9065 640.10136 -10631.783 0 295.41652 0.001380827 0.0013705273 + 30930 -6248.0108 -6253.9482 5.9373647 3735.6061 642.34135 -10631.896 0 284.55183 0.0016341341 0.0016257209 + 30940 -6248.336 -6254.1373 5.8012311 3735.0531 643.4451 -10632.635 0 278.02754 0.0017495461 0.0017395614 + 30950 -6248.6034 -6254.3493 5.7458834 3736.602 643.2123 -10634.164 0 275.37497 0.001699999 0.0016867003 + 30960 -6248.8428 -6254.551 5.7081574 3739.9077 641.79443 -10636.253 0 273.56693 0.0015033416 0.0014880056 + 30970 -6249.0734 -6254.7016 5.6282266 3743.9902 639.63176 -10638.324 0 269.7362 0.0012180159 0.0012037718 + 30980 -6249.2899 -6254.7855 5.4955924 3747.5125 637.29631 -10639.594 0 263.37963 0.00092518807 0.00091433081 + 30990 -6249.47 -6254.8151 5.3451383 3749.2108 635.30586 -10639.332 0 256.16902 0.00070218928 0.00069426848 + 31000 -6249.5943 -6254.8101 5.2158176 3748.3254 633.98026 -10637.116 0 249.97125 0.0005973009 0.00058947552 + 31010 -6249.6611 -6254.78 5.1189326 3744.8645 633.38288 -10633.027 0 245.32797 0.00061631471 0.00060536125 + 31020 -6249.6856 -6254.7276 5.0420275 3739.5985 633.35143 -10627.678 0 241.64225 0.00072551411 0.0007097154 + 31030 -6249.6889 -6254.6596 4.9707275 3733.8043 633.5932 -10622.057 0 238.22515 0.00086784778 0.00084767068 + 31040 -6249.6889 -6254.5889 4.9000146 3728.8698 633.80696 -10617.266 0 234.83619 0.00098451293 0.00096223021 + 31050 -6249.6948 -6254.5274 4.8325527 3725.8957 633.79188 -10614.215 0 231.60304 0.0010343153 0.0010130713 + 31060 -6249.7038 -6254.4838 4.7800026 3725.4145 633.51104 -10613.409 0 229.08454 0.0010054573 0.00098791887 + 31070 -6249.699 -6254.4673 4.7682995 3727.3029 633.09225 -10614.862 0 228.52367 0.00091665103 0.00090349335 + 31080 -6249.6569 -6254.4847 4.8278318 3730.9026 632.77025 -10618.158 0 231.37679 0.0008072379 0.00079642499 + 31090 -6249.5628 -6254.5255 4.9626451 3735.2844 632.79268 -10622.603 0 237.8378 0.000720245 0.00070811969 + 31100 -6249.4248 -6254.5527 5.1279051 3739.5318 633.3232 -10627.408 0 245.75798 0.00068610826 0.00066994142 + 31110 -6249.2706 -6254.5212 5.2505212 3742.9348 634.37664 -10631.833 0 251.63444 0.00071451086 0.00069458739 + 31120 -6249.1276 -6254.4139 5.2862652 3745.0584 635.8116 -10635.284 0 253.34749 0.00079660848 0.00077603575 + 31130 -6249.0017 -6254.2663 5.2645109 3745.727 637.38301 -10637.376 0 252.3049 0.00091368391 0.00089599334 + 31140 -6248.8732 -6254.1508 5.2775638 3744.9885 638.82917 -10637.968 0 252.93047 0.0010457026 0.0010321729 + 31150 -6248.7123 -6254.1301 5.41775 3743.0929 639.95012 -10637.173 0 259.64898 0.001175459 0.0011642885 + 31160 -6248.5028 -6254.2114 5.7086661 3740.4742 640.64286 -10635.329 0 273.59131 0.0012883464 0.0012762713 + 31170 -6248.2543 -6254.3378 6.0835593 3737.6983 640.88513 -10632.921 0 291.5583 0.001370694 0.0013556531 + 31180 -6247.9951 -6254.4236 6.4284583 3735.3556 640.68821 -10630.467 0 308.08779 0.00140942 0.0013920408 + 31190 -6247.7507 -6254.4069 6.6562235 3733.9213 640.05411 -10628.382 0 319.00358 0.0013935765 0.0013763269 + 31200 -6247.5264 -6254.2805 6.7540924 3733.635 638.9676 -10626.883 0 323.69401 0.001316751 0.0013016334 + 31210 -6247.3086 -6254.0834 6.7747689 3734.4455 637.42967 -10625.959 0 324.68494 0.0011795416 0.0011663033 + 31220 -6247.0794 -6253.8694 6.7899634 3736.027 635.51117 -10625.408 0 325.41315 0.00099212121 0.00097827183 + 31230 -6246.8328 -6253.6776 6.844832 3737.849 633.39144 -10624.918 0 328.04276 0.00077635405 0.00075883514 + 31240 -6246.5818 -6253.5186 6.9368059 3739.28 631.35549 -10624.154 0 332.45066 0.00056563136 0.00054306013 + 31250 -6246.3526 -6253.3798 7.0271741 3739.7099 629.74539 -10622.835 0 336.78161 0.00040079582 0.00037486365 + 31260 -6246.1659 -6253.2495 7.0836543 3738.6834 628.88151 -10620.814 0 339.48846 0.0003222228 0.00029698255 + 31270 -6246.0168 -6253.1432 7.1263797 3736.0397 628.97787 -10618.161 0 341.5361 0.00035929945 0.00033831826 + 31280 -6245.8722 -6253.1026 7.2304635 3732.0461 630.07447 -10615.223 0 346.52438 0.00051906241 0.00050238648 + 31290 -6245.6914 -6253.1602 7.4688126 3727.4708 632.00452 -10612.635 0 357.94741 0.00077733806 0.00076088671 + 31300 -6245.4575 -6253.2952 7.8376908 3723.5077 634.40991 -10611.213 0 375.62612 0.0010777498 0.0010560373 + 31310 -6245.1936 -6253.4241 8.2304985 3721.4939 636.81205 -10611.73 0 394.45167 0.0013432517 0.0013136731 + 31320 -6244.9485 -6253.4407 8.4922289 3722.4648 638.73076 -10614.636 0 406.99526 0.0014997784 0.0014652746 + 31330 -6244.7596 -6253.2879 8.5282658 3726.704 639.8221 -10619.814 0 408.72235 0.0015042845 0.0014720228 + 31340 -6244.6185 -6253.0123 8.3938238 3733.4976 639.98862 -10626.499 0 402.27913 0.001364513 0.0013409337 + 31350 -6244.4682 -6252.7532 8.2849391 3741.2524 639.41634 -10633.422 0 397.06077 0.0011394051 0.0011250728 + 31360 -6244.2439 -6252.6539 8.4100277 3747.9757 638.51485 -10639.144 0 403.05571 0.0009176677 0.00090637103 + 31370 -6243.9307 -6252.7548 8.8240147 3751.9232 637.77005 -10642.448 0 422.8963 0.00078335767 0.00076701182 + 31380 -6243.5907 -6252.9595 9.3687755 3752.1307 637.55318 -10642.643 0 449.00429 0.00078438448 0.00075998993 + 31390 -6243.3256 -6253.1185 9.7929023 3748.6315 637.95825 -10639.708 0 469.33083 0.00091763377 0.00088983834 + 31400 -6243.2021 -6253.154 9.9519477 3742.3528 638.74641 -10634.253 0 476.95317 0.0011342738 0.001110776 + 31410 -6243.2109 -6253.1069 9.8960086 3734.8185 639.43675 -10627.362 0 474.27226 0.0013583979 0.0013425594 + 31420 -6243.2998 -6253.065 9.7652155 3727.7751 639.50822 -10620.348 0 468.00392 0.0015095154 0.0014973692 + 31430 -6243.4396 -6253.0546 9.6149832 3722.7899 638.61824 -10614.463 0 460.80395 0.0015239781 0.0015082257 + 31440 -6243.6532 -6253.0067 9.3535673 3720.8534 636.74139 -10610.602 0 448.27543 0.0013739272 0.0013507782 + 31450 -6243.9804 -6252.8306 8.85024 3722.0819 634.17947 -10609.092 0 424.15316 0.0010800793 0.0010524985 + 31460 -6244.4193 -6252.5252 8.1058947 3725.657 631.45621 -10609.638 0 388.47996 0.00071102039 0.0006855501 + 31470 -6244.9079 -6252.2248 7.3169063 3730.0962 629.15519 -10611.476 0 350.6672 0.00036403502 0.000344347 + 31480 -6245.3658 -6252.1236 6.7578551 3733.7952 627.76644 -10613.685 0 323.87433 0.00013219934 0.00011560016 + 31490 -6245.758 -6252.338 6.5799501 3735.6169 627.57887 -10615.534 0 315.34813 7.2109518e-05 5.2349787e-05 + 31500 -6246.1169 -6252.8241 6.7071126 3735.2509 628.62357 -10616.699 0 321.44247 0.00018737033 0.00016083776 + 31510 -6246.5053 -6253.4241 6.9188086 3733.1941 630.66694 -10617.285 0 331.58813 0.00043369579 0.00040279157 + 31520 -6246.9576 -6253.986 7.0284146 3730.4334 633.26386 -10617.683 0 336.84107 0.00073941442 0.0007101165 + 31530 -6247.4543 -6254.4434 6.9890331 3728.048 635.87268 -10618.364 0 334.95368 0.0010292592 0.0010058433 + 31540 -6247.9447 -6254.8036 6.8588849 3726.9021 638.00173 -10619.707 0 328.71625 0.0012424918 0.0012245067 + 31550 -6248.3878 -6255.0893 6.7014473 3727.4692 639.33195 -10621.89 0 321.17096 0.0013432033 0.0013266562 + 31560 -6248.7742 -6255.2978 6.5235729 3729.7587 639.77242 -10624.829 0 312.64622 0.0013240914 0.0013049 + 31570 -6249.1197 -6255.4012 6.2814902 3733.3279 639.44055 -10628.17 0 301.04426 0.0012045638 0.0011814176 + 31580 -6249.4464 -6255.3713 5.924886 3737.3785 638.58963 -10631.339 0 283.95378 0.0010236676 0.00099877542 + 31590 -6249.7638 -6255.2093 5.4454876 3740.9319 637.51656 -10633.658 0 260.97832 0.00082957515 0.00080715393 + 31600 -6250.0591 -6254.9644 4.9053093 3743.0554 636.47879 -10634.499 0 235.08994 0.00066810541 0.0006514621 + 31610 -6250.3034 -6254.7231 4.419696 3743.1061 635.64003 -10633.469 0 211.81663 0.00057207798 0.00056114706 + 31620 -6250.4723 -6254.5647 4.0923666 3740.9347 635.05141 -10630.551 0 196.12917 0.00055304913 0.00054440977 + 31630 -6250.5672 -6254.5152 3.9480212 3736.9686 634.66293 -10626.147 0 189.21133 0.0005981256 0.00058775611 + 31640 -6250.616 -6254.5418 3.9257709 3732.1077 634.35521 -10621.005 0 188.14497 0.00067471267 0.00066120949 + 31650 -6250.6521 -6254.5975 3.9454359 3727.4537 633.98401 -10616.035 0 189.08743 0.00074289594 0.00072828289 + 31660 -6250.6877 -6254.6742 3.9865031 3723.9864 633.43165 -10612.092 0 191.0556 0.00077038297 0.00075784473 + 31670 -6250.7062 -6254.8117 4.1054641 3722.3228 632.65492 -10609.789 0 196.75688 0.00074293204 0.00073363979 + 31680 -6250.6786 -6255.0534 4.374822 3722.63 631.71404 -10609.397 0 209.66601 0.00066611547 0.00065803833 + 31690 -6250.5897 -6255.3866 4.7968292 3724.6656 630.76936 -10610.822 0 229.89097 0.00055973717 0.00054946627 + 31700 -6250.4534 -6255.7208 5.2673279 3727.8815 630.04298 -10613.645 0 252.43991 0.00044989299 0.00043581668 + 31710 -6250.3015 -6255.9284 5.6268927 3731.5373 629.75583 -10617.221 0 269.67227 0.00036304625 0.00034693598 + 31720 -6250.1554 -6255.9209 5.765556 3734.8227 630.06049 -10620.804 0 276.3178 0.00032272164 0.00030805109 + 31730 -6250.0051 -6255.7013 5.6962687 3737.0112 630.99384 -10623.706 0 272.99716 0.00034624677 0.00033454674 + 31740 -6249.8178 -6255.3489 5.5311291 3737.6426 632.46684 -10625.458 0 265.08274 0.00043963982 0.00042832767 + 31750 -6249.5715 -6254.9512 5.3797426 3736.6754 634.29242 -10625.919 0 257.82745 0.00059267222 0.00057680731 + 31760 -6249.2809 -6254.5469 5.2660051 3734.5135 636.23419 -10625.295 0 252.37651 0.00077894629 0.00075572142 + 31770 -6248.9887 -6254.1357 5.1469104 3731.86 638.05241 -10624.048 0 246.66883 0.00096364716 0.000935455 + 31780 -6248.7256 -6253.7407 5.0151128 3729.4574 639.53207 -10622.73 0 240.35234 0.0011154611 0.0010883024 + 31790 -6248.4756 -6253.4492 4.9735291 3727.8631 640.49433 -10621.807 0 238.35942 0.0012148084 0.0011932288 + 31800 -6248.1828 -6253.3736 5.1908443 3727.3663 640.80255 -10621.543 0 248.77438 0.0012533056 0.0012365899 + 31810 -6247.7934 -6253.5629 5.7694922 3728.0283 640.37412 -10621.965 0 276.50644 0.0012275081 0.0012106223 + 31820 -6247.299 -6253.9473 6.6482855 3729.7301 639.20163 -10622.879 0 318.62314 0.0011351894 0.0011132661 + 31830 -6246.7463 -6254.369 7.6226915 3732.1552 637.37921 -10623.903 0 365.32215 0.00097901386 0.00095113589 + 31840 -6246.2109 -6254.6636 8.4526639 3734.7506 635.12029 -10624.534 0 405.09908 0.00077421282 0.00074366493 + 31850 -6245.7581 -6254.7273 8.9691859 3736.7658 632.74668 -10624.24 0 429.85371 0.00055250101 0.00052413504 + 31860 -6245.4162 -6254.542 9.1258491 3737.4128 630.63561 -10622.59 0 437.36189 0.00035762709 0.00033467195 + 31870 -6245.1734 -6254.1653 8.9919012 3736.1104 629.13442 -10619.41 0 430.94236 0.0002338305 0.00021596832 + 31880 -6244.9989 -6253.6942 8.6952432 3732.7304 628.47475 -10614.899 0 416.72484 0.00021157191 0.00019532951 + 31890 -6244.8723 -6253.2154 8.3430687 3727.7426 628.71669 -10609.675 0 399.84667 0.00029572845 0.00027721432 + 31900 -6244.7976 -6252.779 7.9813597 3722.1639 629.73488 -10604.678 0 382.51154 0.00046157798 0.0004396632 + 31910 -6244.7884 -6252.4174 7.6290439 3717.2926 631.245 -10600.955 0 365.62659 0.00066154809 0.00063865919 + 31920 -6244.8412 -6252.182 7.3408541 3714.3313 632.86894 -10599.382 0 351.81492 0.00084047322 0.000820162 + 31930 -6244.9279 -6252.1474 7.2194985 3714.054 634.23233 -10600.434 0 345.99888 0.00095278921 0.00093632707 + 31940 -6245.0149 -6252.371 7.3560259 3716.6205 635.07265 -10604.064 0 352.54203 0.00097507813 0.00096010551 + 31950 -6245.0909 -6252.8409 7.7500029 3721.5548 635.32209 -10609.718 0 371.42362 0.00091081178 0.0008930967 + 31960 -6245.1817 -6253.457 8.2753016 3727.8564 635.13097 -10616.444 0 396.59888 0.00078782536 0.00076470251 + 31970 -6245.3378 -6254.0631 8.7253554 3734.2089 634.81447 -10623.086 0 418.16799 0.00065078419 0.00062355983 + 31980 -6245.5976 -6254.5206 8.922963 3739.2505 634.73178 -10628.503 0 427.63845 0.0005503248 0.00052338821 + 31990 -6245.9537 -6254.7742 8.8205602 3741.879 635.14022 -10631.793 0 422.73074 0.00052916342 0.00050611321 + 32000 -6246.3548 -6254.8538 8.4990123 3741.5497 636.08739 -10632.491 0 407.32036 0.00060650226 0.00058683754 + 32010 -6246.7477 -6254.8096 8.0618868 3738.4752 637.388 -10630.673 0 386.37085 0.00076655068 0.00074650935 + 32020 -6247.1121 -6254.6546 7.5425616 3733.5982 638.68511 -10626.938 0 361.48187 0.0009596247 0.00093637163 + 32030 -6247.4544 -6254.3821 6.9276952 3728.2873 639.56 -10622.229 0 332.01403 0.0011189182 0.0010934309 + 32040 -6247.7745 -6254.0287 6.2541804 3723.876 639.65138 -10617.556 0 299.73542 0.0011854596 0.0011611069 + 32050 -6248.0504 -6253.7003 5.6498993 3721.2673 638.75728 -10613.725 0 270.77488 0.0011282622 0.0011070741 + 32060 -6248.2563 -6253.5222 5.2659368 3720.7543 636.89997 -10611.176 0 252.37324 0.00095149931 0.00093230545 + 32070 -6248.3876 -6253.561 5.1733726 3722.0534 634.33682 -10609.951 0 247.93704 0.0006897783 0.00066981301 + 32080 -6248.4669 -6253.7917 5.3248486 3724.4582 631.50971 -10609.76 0 255.19662 0.0003974135 0.00037526805 + 32090 -6248.526 -6254.133 5.6069935 3727.0438 628.94156 -10610.118 0 268.71859 0.00013603788 0.00011284841 + 32100 -6248.583 -6254.5081 5.9251458 3728.9006 627.10642 -10610.515 0 283.96623 -3.8552038e-05 -6.0646009e-05 + 32110 -6248.6338 -6254.8756 6.2418029 3729.3826 626.31201 -10610.57 0 299.14222 -9.0020084e-05 -0.00011029746 + 32120 -6248.667 -6255.212 6.5450411 3728.3112 626.63118 -10610.154 0 313.6751 -1.2502936e-05 -3.2412273e-05 + 32130 -6248.6836 -6255.4775 6.7938985 3726.0463 627.90279 -10609.427 0 325.60174 0.00016644135 0.00014488783 + 32140 -6248.7027 -6255.6078 6.9050647 3723.37 629.79735 -10608.775 0 330.92944 0.0003945069 0.00037102789 + 32150 -6248.7463 -6255.5478 6.8014984 3721.2108 631.92082 -10608.679 0 325.96597 0.0006126983 0.00058938089 + 32160 -6248.8158 -6255.2986 6.4827628 3720.3198 633.91895 -10609.537 0 310.69037 0.00077486005 0.00075429047 + 32170 -6248.8859 -6254.9336 6.0476931 3721.0387 635.5492 -10611.521 0 289.83939 0.00085951204 0.00084205282 + 32180 -6248.9241 -6254.5597 5.6356364 3723.2477 636.70451 -10614.512 0 270.09132 0.00086968965 0.00085276429 + 32190 -6248.9204 -6254.2546 5.3342572 3726.4681 637.39263 -10618.115 0 255.64753 0.000824279 0.00080474638 + 32200 -6248.8949 -6254.0395 5.1445085 3730.0183 637.68752 -10621.745 0 246.55372 0.00074839967 0.00072575425 + 32210 -6248.8753 -6253.911 5.0357765 3733.1485 637.67531 -10624.735 0 241.34267 0.00066736407 0.00064433058 + 32220 -6248.8655 -6253.8891 5.0235573 3735.1623 637.41558 -10626.467 0 240.75705 0.00060288185 0.0005826359 + 32230 -6248.8408 -6254.0168 5.1760024 3735.5637 636.93026 -10626.511 0 248.06308 0.00056842435 0.00055132488 + 32240 -6248.7722 -6254.3097 5.5374302 3734.2072 636.21828 -10624.735 0 265.38473 0.0005643936 0.00054761869 + 32250 -6248.6563 -6254.7087 6.0524365 3731.3641 635.28238 -10621.355 0 290.06672 0.00057748993 0.00055778667 + 32260 -6248.5194 -6255.0937 6.5742733 3727.639 634.1525 -10616.885 0 315.07607 0.00058702792 0.00056359105 + 32270 -6248.3957 -6255.3458 6.9501451 3723.7704 632.89656 -10612.013 0 333.08995 0.00057515283 0.00054989559 + 32280 -6248.3016 -6255.404 7.1023776 3720.4218 631.61739 -10607.443 0 340.38579 0.00053438274 0.00050982964 + 32290 -6248.231 -6255.275 7.0440721 3718.0529 630.43839 -10603.766 0 337.59146 0.00046848357 0.00044563374 + 32300 -6248.1678 -6255.0069 6.8391289 3716.8839 629.48198 -10601.373 0 327.76943 0.00038821033 0.000366149 + 32310 -6248.1024 -6254.657 6.5545809 3716.9191 628.84688 -10600.423 0 314.13229 0.0003062481 0.00028342196 + 32320 -6248.0373 -6254.2768 6.2395239 3717.99 628.59123 -10600.858 0 299.03299 0.00023430156 0.00021017493 + 32330 -6247.9806 -6253.916 5.9354469 3719.7968 628.72564 -10602.439 0 284.45992 0.00018251069 0.00015826288 + 32340 -6247.9337 -6253.634 5.7002967 3721.9479 629.21722 -10604.799 0 273.1902 0.00015980812 0.00013748808 + 32350 -6247.8824 -6253.5009 5.6185236 3724.0143 630.0037 -10607.519 0 269.27118 0.00017384981 0.00015454184 + 32360 -6247.7997 -6253.5773 5.7776188 3725.6139 631.01439 -10610.206 0 276.89591 0.00022984942 0.00021225584 + 32370 -6247.6614 -6253.8774 6.2160563 3726.511 632.18934 -10612.578 0 297.90829 0.00032830196 0.00030905952 + 32380 -6247.4649 -6254.3389 6.8739834 3726.6888 633.48408 -10614.512 0 329.43986 0.00046229926 0.00043819318 + 32390 -6247.2389 -6254.8272 7.5883801 3726.347 634.85143 -10616.026 0 363.67775 0.00061601202 0.00058666368 + 32400 -6247.0304 -6255.1846 8.1542576 3725.809 636.20772 -10617.201 0 390.79778 0.00076609071 0.00073487754 + 32410 -6246.8751 -6255.3007 8.4256269 3725.3811 637.40773 -10618.09 0 403.80331 0.00088634564 0.00085829361 + 32420 -6246.7722 -6255.1593 8.387087 3725.2401 638.25526 -10618.655 0 401.95627 0.00095386409 0.00093174855 + 32430 -6246.6899 -6254.8266 8.1366881 3725.4024 638.55663 -10618.786 0 389.95575 0.00095388033 0.00093574857 + 32440 -6246.598 -6254.3907 7.7927789 3725.7648 638.19468 -10618.35 0 373.47369 0.00088228979 0.00086285211 + 32450 -6246.4989 -6253.9082 7.4093128 3726.1514 637.18401 -10617.244 0 355.09584 0.00074686378 0.00072188822 + 32460 -6246.4254 -6253.4029 6.9774312 3726.3242 635.67786 -10615.405 0 334.39766 0.0005682234 0.00053821281 + 32470 -6246.4075 -6252.9135 6.5060137 3725.9791 633.92472 -10612.817 0 311.80468 0.0003793033 0.00034919382 + 32480 -6246.4401 -6252.5352 6.0951289 3724.7953 632.19801 -10609.529 0 292.11278 0.0002202885 0.00019537052 + 32490 -6246.4812 -6252.4026 5.921391 3722.5731 630.72886 -10605.705 0 283.78628 0.00012762309 0.00010916407 + 32500 -6246.4827 -6252.6168 6.1340236 3719.4137 629.66234 -10601.693 0 293.97683 0.00012012256 0.00010438373 + 32510 -6246.4293 -6253.1683 6.7390492 3715.8299 629.04021 -10598.038 0 322.97305 0.00018895327 0.0001704151 + 32520 -6246.3563 -6253.9199 7.5636151 3712.6778 628.80451 -10595.402 0 362.49087 0.00029804773 0.0002741509 + 32530 -6246.3317 -6254.6684 8.3367257 3710.8888 628.8202 -10594.377 0 399.54267 0.00039690917 0.00037024923 + 32540 -6246.4113 -6255.2457 8.8344603 3711.1041 628.92221 -10595.272 0 423.39691 0.0004409533 0.00041687667 + 32550 -6246.6026 -6255.5834 8.9807391 3713.395 628.98636 -10597.965 0 430.40741 0.00040964616 0.00039125919 + 32560 -6246.8715 -6255.6993 8.8277766 3717.2208 629.00056 -10601.921 0 423.07659 0.00031368247 0.0002988723 + 32570 -6247.1809 -6255.631 8.4501489 3721.6297 629.09438 -10606.355 0 404.97855 0.00018913346 0.00017248317 + 32580 -6247.5206 -6255.3881 7.8674869 3725.573 629.49488 -10610.456 0 377.05412 8.3442644e-05 6.1217142e-05 + 32590 -6247.897 -6254.9676 7.0705799 3728.1815 630.41719 -10613.566 0 338.86186 4.0017859e-05 1.3489496e-05 + 32600 -6248.302 -6254.409 6.1070253 3728.9406 631.94105 -10615.291 0 292.68292 8.5506943e-05 5.9809637e-05 + 32610 -6248.6999 -6253.8245 5.1245834 3727.7792 633.93587 -10615.54 0 245.59879 0.00022142382 0.00020145465 + 32620 -6249.0449 -6253.3736 4.3286355 3725.0862 636.06974 -10614.529 0 207.4525 0.00042174108 0.00040870741 + 32630 -6249.3068 -6253.2005 3.8937311 3721.6374 637.89471 -10612.733 0 186.60944 0.00063798153 0.00062883046 + 32640 -6249.4848 -6253.3735 3.8887306 3718.4182 638.97336 -10610.765 0 186.36979 0.00081136939 0.00080096467 + 32650 -6249.6068 -6253.8551 4.2482799 3716.3627 639.00457 -10609.222 0 203.60141 0.00088912251 0.00087360929 + 32660 -6249.7174 -6254.5178 4.8004429 3716.0694 637.91188 -10608.499 0 230.06416 0.00084058141 0.00081993436 + 32670 -6249.8571 -6255.2005 5.3434296 3717.5827 635.86892 -10608.652 0 256.08713 0.00066840552 0.00064647453 + 32680 -6250.0404 -6255.7765 5.7360913 3720.3368 633.2548 -10609.368 0 274.90568 0.00041027068 0.00039203417 + 32690 -6250.2475 -6256.1917 5.9441771 3723.3186 630.55491 -10610.065 0 284.87832 0.00012853129 0.00011639855 + 32700 -6250.4413 -6256.449 6.007653 3725.4169 628.24074 -10610.107 0 287.92044 -0.00010984044 -0.00011773278 + 32710 -6250.597 -6256.5588 5.9618106 3725.818 626.66471 -10609.042 0 285.72342 -0.00025510892 -0.00026313822 + 32720 -6250.7196 -6256.5086 5.7890319 3724.274 625.9947 -10606.777 0 277.44289 -0.00028875457 -0.00030015261 + 32730 -6250.8328 -6256.2775 5.4446838 3721.141 626.19781 -10603.616 0 260.9398 -0.00022433597 -0.00023879575 + 32740 -6250.9533 -6255.8789 4.9255493 3717.21 627.07199 -10600.161 0 236.05996 -9.7300704e-05 -0.00011167601 + 32750 -6251.0735 -6255.3865 4.3129904 3713.4386 628.31525 -10597.14 0 206.7027 4.9527511e-05 3.8339912e-05 + 32760 -6251.1669 -6254.9193 3.7524042 3710.696 629.61331 -10595.229 0 179.83627 0.00017839014 0.00017088034 + 32770 -6251.208 -6254.593 3.3849681 3709.5891 630.72189 -10594.904 0 162.22666 0.00026401587 0.00025774236 + 32780 -6251.189 -6254.4698 3.2808048 3710.3743 631.52063 -10596.365 0 157.23457 0.00029643063 0.0002880135 + 32790 -6251.122 -6254.5405 3.4185643 3712.9332 632.0243 -10599.498 0 163.83678 0.000280839 0.00026858288 + 32800 -6251.0252 -6254.7471 3.7219501 3716.7931 632.3492 -10603.889 0 178.37673 0.0002354112 0.00022047484 + 32810 -6250.9033 -6255.0251 4.1217375 3721.2037 632.6482 -10608.877 0 197.53679 0.00018646462 0.00017172259 + 32820 -6250.7372 -6255.3318 4.5945987 3725.2836 633.0398 -10613.655 0 220.19895 0.00016071107 0.0001483156 + 32830 -6250.4902 -6255.6429 5.1526806 3728.2213 633.55918 -10617.423 0 246.94537 0.00017627413 0.00016585648 + 32840 -6250.1271 -6255.9257 5.7986925 3729.4716 634.1487 -10619.546 0 277.90588 0.00023605556 0.00022484319 + 32850 -6249.6359 -6256.1198 6.4838528 3728.8755 634.68672 -10619.682 0 310.74261 0.0003265824 0.00031124135 + 32860 -6249.041 -6256.1393 7.0983314 3726.6601 635.03682 -10617.836 0 340.19187 0.00042287629 0.00040184711 + 32870 -6248.3992 -6255.9027 7.503474 3723.3291 635.09349 -10614.325 0 359.60858 0.00049727533 0.00047219203 + 32880 -6247.7779 -6255.3757 7.5978102 3719.4927 634.80619 -10609.675 0 364.1297 0.00052892017 0.00050409103 + 32890 -6247.2213 -6254.6096 7.3883613 3715.7058 634.17728 -10604.493 0 354.09173 0.00051037005 0.00049019654 + 32900 -6246.7292 -6253.7457 7.0165265 3712.3791 633.24452 -10599.369 0 336.27132 0.0004482639 0.00043400142 + 32910 -6246.2683 -6252.9686 6.7002668 3709.7898 632.06534 -10594.824 0 321.11438 0.00035734239 0.00034576014 + 32920 -6245.8082 -6252.4275 6.6192632 3708.1475 630.71283 -10591.288 0 317.23223 0.00025149146 0.00023702531 + 32930 -6245.3523 -6252.1804 6.8280788 3707.6227 629.27928 -10589.082 0 327.23985 0.00013819495 0.00011727099 + 32940 -6244.9368 -6252.2 7.2632566 3708.2832 627.87822 -10588.361 0 348.09601 2.0539938e-05 -5.4374937e-06 + 32950 -6244.6005 -6252.4276 7.8271496 3709.9765 626.64313 -10589.047 0 375.12093 -9.5010486e-05 -0.00012065003 + 32960 -6244.355 -6252.8186 8.4635754 3712.2699 625.72802 -10590.816 0 405.62202 -0.00019181155 -0.00021198215 + 32970 -6244.1841 -6253.3369 9.1528646 3714.5361 625.30825 -10593.181 0 438.65663 -0.00024383114 -0.00025756156 + 32980 -6244.0729 -6253.9114 9.8385286 3716.1715 625.56509 -10595.648 0 471.51749 -0.00022522581 -0.00023599092 + 32990 -6244.0358 -6254.4093 10.373446 3716.835 626.63512 -10597.879 0 497.15374 -0.00012332999 -0.00013573981 + 33000 -6244.1105 -6254.6726 10.562099 3716.5752 628.52913 -10599.777 0 506.19506 5.2734073e-05 3.6687769e-05 + 33010 -6244.3199 -6254.6023 10.282383 3715.785 631.06094 -10601.448 0 492.78948 0.00027241937 0.00025428981 + 33020 -6244.6403 -6254.2245 9.5842404 3715.0247 633.84141 -10603.091 0 459.33058 0.00049199352 0.00047461594 + 33030 -6245.0082 -6253.683 8.6747905 3714.8092 636.36529 -10604.857 0 415.74464 0.00066613056 0.00065077705 + 33040 -6245.3603 -6253.1642 7.8038742 3715.4427 638.16094 -10606.768 0 374.00544 0.00075903072 0.00074466205 + 33050 -6245.6654 -6252.8136 7.1481649 3716.9265 638.93217 -10608.672 0 342.58017 0.0007533331 0.0007381015 + 33060 -6245.9265 -6252.6987 6.772128 3718.9404 638.62904 -10610.268 0 324.55837 0.00065529277 0.00063832908 + 33070 -6246.1611 -6252.822 6.6608583 3720.9043 637.42872 -10611.155 0 319.2257 0.0004938069 0.00047559817 + 33080 -6246.3826 -6253.1499 6.7673321 3722.1283 635.65249 -10610.931 0 324.32853 0.00031199123 0.00029344357 + 33090 -6246.5969 -6253.6288 7.0319362 3722.0276 633.66297 -10609.319 0 337.00984 0.00015357704 0.0001350356 + 33100 -6246.8079 -6254.1871 7.3791514 3720.3297 631.77547 -10606.292 0 353.65034 4.9398217e-05 3.0479682e-05 + 33110 -6247.022 -6254.7408 7.7187181 3717.1945 630.19828 -10602.134 0 369.92428 8.9634196e-06 -1.1024263e-05 + 33120 -6247.2469 -6255.2075 7.9605967 3713.1972 629.00753 -10597.412 0 381.51646 1.9295829e-05 -2.3028341e-06 + 33130 -6247.4884 -6255.5197 8.0312707 3709.1829 628.16049 -10592.863 0 384.90356 5.0653873e-05 2.7454331e-05 + 33140 -6247.7495 -6255.6336 7.8840955 3706.0349 627.54459 -10589.213 0 377.85009 6.7496025e-05 4.3654628e-05 + 33150 -6248.0268 -6255.5368 7.5099865 3704.4193 627.04677 -10587.003 0 359.92069 4.1885774e-05 1.9355661e-05 + 33160 -6248.3069 -6255.2568 6.9499372 3704.5885 626.61717 -10586.462 0 333.07999 -3.5044694e-05 -5.4072848e-05 + 33170 -6248.5657 -6254.8624 6.2966813 3706.314 626.30264 -10587.479 0 301.7723 -0.00014836409 -0.00016284058 + 33180 -6248.7757 -6254.4473 5.6716173 3708.9835 626.2363 -10589.667 0 271.81572 -0.00026397881 -0.00027502507 + 33190 -6248.9193 -6254.0989 5.1795888 3711.8242 626.58614 -10592.509 0 248.23496 -0.00034117166 -0.00035169373 + 33200 -6249.0002 -6253.8679 4.8676873 3714.1601 627.48081 -10595.509 0 233.28689 -0.00034767384 -0.00036047707 + 33210 -6249.0417 -6253.7641 4.7223915 3715.596 628.9397 -10598.3 0 226.3235 -0.00027068 -0.00028645521 + 33220 -6249.0703 -6253.7815 4.7111389 3716.073 630.83442 -10600.689 0 225.78421 -0.00011991997 -0.00013687183 + 33230 -6249.0977 -6253.9269 4.8291336 3715.8129 632.89883 -10602.639 0 231.43918 7.6385647e-05 6.0910708e-05 + 33240 -6249.1163 -6254.2197 5.1033755 3715.2086 634.78687 -10604.215 0 244.58239 0.00027911481 0.00026651333 + 33250 -6249.1111 -6254.6607 5.5496524 3714.7003 636.1595 -10605.521 0 265.97048 0.00044670579 0.00043632332 + 33260 -6249.0764 -6255.2018 6.125447 3714.6508 636.77209 -10606.625 0 293.56579 0.00054388239 0.00053389711 + 33270 -6249.0228 -6255.7452 6.722379 3715.23 636.53497 -10607.51 0 322.17412 0.00055012362 0.00053896985 + 33280 -6248.9711 -6256.1741 7.2030665 3716.3418 635.53003 -10608.046 0 345.21136 0.00046557728 0.0004526419 + 33290 -6248.9395 -6256.3921 7.4526666 3717.6305 633.98075 -10608.003 0 357.1736 0.00031128154 0.0002966054 + 33300 -6248.9357 -6256.3481 7.41241 3718.5796 632.18774 -10607.115 0 355.24428 0.00012258119 0.00010624566 + 33310 -6248.9571 -6256.0412 7.0840342 3718.6733 630.45207 -10605.166 0 339.50667 -6.1749202e-05 -7.9768241e-05 + 33320 -6248.9965 -6255.5133 6.5168587 3717.5639 629.00943 -10602.087 0 312.32443 -0.0002099716 -0.00022934827 + 33330 -6249.0461 -6254.8426 5.7964578 3715.1848 627.99028 -10598.018 0 277.79878 -0.00030363568 -0.00032325073 + 33340 -6249.0971 -6254.1389 5.0418232 3711.7744 627.41121 -10593.325 0 241.63246 -0.00033872976 -0.00035697794 + 33350 -6249.136 -6253.5342 4.3981132 3707.8223 627.19496 -10588.551 0 210.78226 -0.00032335512 -0.0003391901 + 33360 -6249.1467 -6253.1552 4.0085279 3703.9732 627.21107 -10584.339 0 192.11115 -0.00027397269 -0.00028776686 + 33370 -6249.1146 -6253.086 3.9714464 3700.9157 627.32533 -10581.327 0 190.334 -0.00021101614 -0.00022437722 + 33380 -6249.03 -6253.3409 4.3108968 3699.2603 627.44422 -10580.045 0 206.60236 -0.0001537732 -0.00016852306 + 33390 -6248.8848 -6253.863 4.9782196 3699.4132 627.54239 -10580.819 0 238.58422 -0.00011522626 -0.00013248877 + 33400 -6248.6694 -6254.5421 5.8726464 3701.4732 627.66654 -10583.682 0 281.45017 -9.8830636e-05 -0.00011872051 + 33410 -6248.3755 -6255.2355 6.8600354 3705.1882 627.91501 -10588.339 0 328.77139 -9.8782784e-05 -0.00012036848 + 33420 -6248.0019 -6255.7942 7.7922051 3709.9809 628.39901 -10594.174 0 373.44619 -0.00010306353 -0.0001243947 + 33430 -6247.5551 -6256.0987 8.5436342 3715.0325 629.19859 -10600.33 0 409.45889 -9.6982122e-05 -0.0001157354 + 33440 -6247.0406 -6256.0953 9.0546587 3719.4169 630.3301 -10605.842 0 433.95005 -6.6146755e-05 -8.1205145e-05 + 33450 -6246.4621 -6255.7987 9.3365465 3722.2915 631.73747 -10609.828 0 447.45969 -4.1161199e-08 -1.2764791e-05 + 33460 -6245.834 -6255.2554 9.4213252 3723.1082 633.30421 -10611.668 0 451.52277 0.00010309303 8.9751055e-05 + 33470 -6245.1936 -6254.5081 9.3144413 3721.7613 634.87032 -10611.14 0 446.40029 0.00023272812 0.00021693921 + 33480 -6244.5876 -6253.6093 9.0217052 3718.5902 636.24214 -10608.442 0 432.37074 0.00036769269 0.00035030139 + 33490 -6244.038 -6252.6634 8.6253644 3714.2555 637.20165 -10604.121 0 413.37586 0.00048257551 0.00046537761 + 33500 -6243.5277 -6251.8278 8.3001691 3709.5804 637.53347 -10598.942 0 397.79067 0.00055385474 0.00053657791 + 33510 -6243.0246 -6251.2456 8.2209268 3705.4128 637.07559 -10593.734 0 393.99294 0.00056243015 0.00054230711 + 33520 -6242.5221 -6250.9686 8.4465286 3702.4829 635.77552 -10589.227 0 404.80504 0.00049503481 0.00046987857 + 33530 -6242.0509 -6250.9488 8.8978953 3701.2263 633.72231 -10585.897 0 426.43707 0.00034861879 0.0003201338 + 33540 -6241.6538 -6251.1038 9.4500388 3701.625 631.13751 -10583.866 0 452.89889 0.00013696763 0.00011043454 + 33550 -6241.3479 -6251.3956 10.047736 3703.1728 628.33185 -10582.9 0 481.54387 -0.00010653146 -0.0001266605 + 33560 -6241.1167 -6251.8471 10.730464 3705.0389 625.65093 -10582.537 0 514.26403 -0.00033562469 -0.00035057162 + 33570 -6240.9485 -6252.4792 11.530715 3706.3849 623.43044 -10582.295 0 552.61654 -0.00050638264 -0.00052354135 + 33580 -6240.8926 -6253.2243 12.331631 3706.6899 621.96303 -10581.877 0 591.00093 -0.00059249656 -0.0006200342 + 33590 -6241.0708 -6253.9057 12.83484 3705.9091 621.46297 -10581.278 0 615.11754 -0.0005911241 -0.00063062275 + 33600 -6241.6056 -6254.3237 12.718069 3704.3882 622.02037 -10580.732 0 609.52124 -0.00051645783 -0.00056041427 + 33610 -6242.5091 -6254.3871 11.877937 3702.6266 623.55928 -10580.573 0 569.25739 -0.00038802713 -0.00042532343 + 33620 -6243.6391 -6254.1701 10.531053 3701.0837 625.83079 -10581.085 0 504.70713 -0.00022464791 -0.00024917161 + 33630 -6244.777 -6253.8443 9.0673201 3700.1386 628.45944 -10582.442 0 434.55686 -4.750273e-05 -6.1783454e-05 + 33640 -6245.7545 -6253.5611 7.8066736 3700.1273 631.02785 -10584.716 0 374.1396 0.00011537398 0.00010386726 + 33650 -6246.5145 -6253.3939 6.8793692 3701.32 633.16384 -10587.878 0 329.69797 0.00023207754 0.00021703638 + 33660 -6247.0859 -6253.356 6.2701029 3703.8071 634.60412 -10591.767 0 300.49851 0.0002769669 0.00025654003 + 33670 -6247.5285 -6253.443 5.9144904 3707.3754 635.22954 -10596.048 0 283.45557 0.00024099453 0.00021745002 + 33680 -6247.8937 -6253.6537 5.7599267 3711.4635 635.07449 -10600.192 0 276.048 0.00013662734 0.00011408844 + 33690 -6248.2084 -6253.9895 5.7810907 3715.2392 634.30894 -10603.538 0 277.0623 -4.4697492e-06 -2.2678998e-05 + 33700 -6248.4754 -6254.4407 5.9653914 3717.7962 633.19104 -10605.428 0 285.89503 -0.00014062531 -0.00015395045 + 33710 -6248.6889 -6254.9661 6.277197 3718.4233 631.99689 -10605.386 0 300.8385 -0.00023414188 -0.00024500694 + 33720 -6248.8547 -6255.4766 6.6219494 3716.8522 630.94376 -10603.273 0 317.36097 -0.00026539428 -0.00027724717 + 33730 -6248.9977 -6255.8492 6.8515232 3713.3685 630.1294 -10599.347 0 328.36344 -0.00024059541 -0.00025512905 + 33740 -6249.1478 -6255.978 6.8302153 3708.7246 629.50984 -10594.212 0 327.34224 -0.0001887944 -0.0002047544 + 33750 -6249.3152 -6255.8332 6.5179488 3703.8994 628.93047 -10588.663 0 312.37668 -0.00014941062 -0.00016408 + 33760 -6249.4817 -6255.4797 5.9980045 3699.8202 628.20536 -10583.505 0 287.45803 -0.00015668151 -0.00016854188 + 33770 -6249.6163 -6255.0421 5.4257101 3697.1493 627.21529 -10579.407 0 260.03047 -0.00022775957 -0.00023785696 + 33780 -6249.6994 -6254.6441 4.9447741 3696.1745 625.98184 -10576.8 0 236.98132 -0.00035772013 -0.00036876841 + 33790 -6249.7337 -6254.3657 4.6319831 3696.7937 624.68476 -10575.844 0 221.99062 -0.00052130966 -0.00053557098 + 33800 -6249.7392 -6254.2319 4.4926738 3698.5814 623.61584 -10576.429 0 215.31414 -0.0006798063 -0.00069743826 + 33810 -6249.7372 -6254.2292 4.4920678 3700.9161 623.08747 -10578.233 0 215.28509 -0.00079106844 -0.00080997944 + 33820 -6249.7362 -6254.3315 4.5952514 3703.1449 623.32945 -10580.806 0 220.23023 -0.00082063105 -0.00083784903 + 33830 -6249.7266 -6254.5182 4.79164 3704.753 624.40977 -10583.681 0 229.64227 -0.0007514329 -0.00076512421 + 33840 -6249.6855 -6254.7756 5.0900268 3705.4997 626.20575 -10586.481 0 243.94265 -0.00058973926 -0.0006005854 + 33850 -6249.5928 -6255.0812 5.4883881 3705.4858 628.43342 -10589 0 263.03435 -0.00036531568 -0.0003762516 + 33860 -6249.4457 -6255.3882 5.9424317 3705.1146 630.72175 -10591.224 0 284.79467 -0.00012502723 -0.00013938331 + 33870 -6249.2647 -6255.6267 6.3619901 3704.9392 632.70411 -10593.27 0 304.90226 7.918165e-05 5.9924605e-05 + 33880 -6249.0827 -6255.7273 6.6446536 3705.4343 634.09826 -10595.26 0 318.44908 0.00020477328 0.00018206686 + 33890 -6248.9268 -6255.6525 6.7256738 3706.7819 634.75577 -10597.19 0 322.33203 0.00023075511 0.00020820346 + 33900 -6248.8034 -6255.4148 6.6113823 3708.7685 634.67452 -10598.858 0 316.85454 0.00016291531 0.00014420172 + 33910 -6248.6952 -6255.0737 6.3785023 3710.8389 633.97638 -10599.889 0 305.69362 3.0132122e-05 1.6869149e-05 + 33920 -6248.5709 -6254.712 6.1410667 3712.2847 632.85875 -10599.855 0 294.31437 -0.000126826 -0.00013619166 + 33930 -6248.4026 -6254.3992 5.9966146 3712.4946 631.53439 -10598.428 0 287.39142 -0.00026980984 -0.0002793004 + 33940 -6248.1826 -6254.1587 5.9760245 3711.1673 630.177 -10595.503 0 286.40462 -0.00037546476 -0.00038914813 + 33950 -6247.929 -6253.9624 6.0334775 3708.4011 628.88742 -10591.251 0 289.1581 -0.00044001999 -0.00045921361 + 33960 -6247.6713 -6253.7671 6.0957804 3704.6279 627.68921 -10586.084 0 292.144 -0.00047494021 -0.00049715414 + 33970 -6247.4253 -6253.566 6.1407223 3700.4431 626.5555 -10580.565 0 294.29787 -0.00049653503 -0.00051727383 + 33980 -6247.1752 -6253.4139 6.2386419 3696.4352 625.45893 -10575.308 0 298.99073 -0.00051583166 -0.00053205845 + 33990 -6246.8808 -6253.3954 6.5145622 3693.0967 624.42453 -10570.917 0 312.21438 -0.00053409088 -0.00054661532 + 34000 -6246.5049 -6253.5592 7.0542833 3690.8184 623.55742 -10567.935 0 338.08084 -0.00054512771 -0.00055797662 + 34010 -6246.0425 -6253.8673 7.8247795 3689.9038 623.02495 -10566.796 0 375.00734 -0.00054147525 -0.00055873753 + 34020 -6245.532 -6254.2008 8.6688255 3690.5437 622.99557 -10567.74 0 415.45876 -0.00051993243 -0.00054252974 + 34030 -6245.0379 -6254.4196 9.3817288 3692.7418 623.56415 -10570.726 0 449.62508 -0.00048321739 -0.0005081056 + 34040 -6244.6156 -6254.438 9.8224054 3696.2405 624.70449 -10575.383 0 470.74478 -0.00043722135 -0.00045977046 + 34050 -6244.2824 -6254.2658 9.9834069 3700.512 626.27611 -10581.054 0 478.46087 -0.00038639846 -0.00040430283 + 34060 -6244.0201 -6253.9863 9.9661722 3704.8483 628.07952 -10586.914 0 477.63489 -0.00033116454 -0.000346791 + 34070 -6243.8103 -6253.6857 9.8753908 3708.53 629.92607 -10592.142 0 473.28414 -0.00026929132 -0.00028813039 + 34080 -6243.6691 -6253.387 9.7179036 3710.9963 631.68252 -10596.066 0 465.73647 -0.00019938921 -0.00022522738 + 34090 -6243.6463 -6253.0517 9.4053322 3711.9329 633.26961 -10598.254 0 450.75629 -0.00012241923 -0.00015315905 + 34100 -6243.7805 -6252.6579 8.8773396 3711.2577 634.62373 -10598.539 0 425.45192 -3.9752149e-05 -6.8265472e-05 + 34110 -6244.0516 -6252.2814 8.2298476 3709.0822 635.65422 -10597.018 0 394.42048 4.8212415e-05 2.8038171e-05 + 34120 -6244.3885 -6252.0827 7.6942484 3705.7403 636.22792 -10594.051 0 368.75156 0.00013742939 0.00012492597 + 34130 -6244.7333 -6252.1908 7.4575478 3701.8607 636.18929 -10590.241 0 357.40753 0.0002110887 0.00019924351 + 34140 -6245.0969 -6252.5932 7.4963201 3698.3346 635.40284 -10586.331 0 359.26572 0.00023600136 0.00021782366 + 34150 -6245.5476 -6253.141 7.5933277 3696.0694 633.80309 -10583.013 0 363.91487 0.00017318905 0.00014773269 + 34160 -6246.1431 -6253.6605 7.5174317 3695.6134 631.44362 -10580.718 0 360.27751 -5.5678415e-07 -2.7983404e-05 + 34170 -6246.8697 -6254.0644 7.1947 3696.882 628.53224 -10579.479 0 344.81039 -0.00027422076 -0.00029709352 + 34180 -6247.6447 -6254.375 6.7303446 3699.1677 625.42908 -10578.972 0 322.55588 -0.00060025998 -0.00061604791 + 34190 -6248.3713 -6254.6646 6.293235 3701.4279 622.59256 -10578.685 0 301.60713 -0.00090987719 -0.0009212121 + 34200 -6248.9928 -6254.9753 5.9824759 3702.6876 620.48325 -10578.146 0 286.71381 -0.0011362005 -0.0011479432 + 34210 -6249.5051 -6255.2821 5.7770617 3702.3669 619.45558 -10577.105 0 276.86921 -0.0012338537 -0.0012490554 + 34220 -6249.9336 -6255.5166 5.5830495 3700.427 619.6693 -10575.613 0 267.57106 -0.001188932 -0.0012068247 + 34230 -6250.3008 -6255.6261 5.3253053 3697.3343 621.04451 -10574.005 0 255.21851 -0.0010193383 -0.0010365879 + 34240 -6250.6073 -6255.6176 5.0102324 3693.9093 623.27498 -10572.802 0 240.11845 -0.00076839224 -0.00078235273 + 34250 -6250.8378 -6255.5502 4.712418 3691.1301 625.90045 -10572.581 0 225.84551 -0.00049482645 -0.00050596054 + 34260 -6250.9826 -6255.4845 4.501966 3689.9216 628.41963 -10573.826 0 215.75947 -0.00026077377 -0.00027214348 + 34270 -6251.0556 -6255.4374 4.3818137 3690.9285 630.41097 -10576.777 0 210.0011 -0.00011811665 -0.00013249093 + 34280 -6251.0906 -6255.383 4.2923511 3694.2956 631.62661 -10581.305 0 205.71355 -9.4668712e-05 -0.00011192651 + 34290 -6251.1187 -6255.2943 4.1756322 3699.5322 632.03501 -10586.862 0 200.11972 -0.00018445449 -0.00020159921 + 34300 -6251.147 -6255.1854 4.0384152 3705.5548 631.80336 -10592.544 0 193.54352 -0.00034757219 -0.00036131694 + 34310 -6251.1554 -6255.1124 3.9569774 3710.9455 631.22633 -10597.284 0 189.64056 -0.00052233882 -0.00053203182 + 34320 -6251.1145 -6255.1319 4.0173107 3714.357 630.62209 -10600.111 0 192.53207 -0.0006466017 -0.000654996 + 34330 -6251.0111 -6255.25 4.2388504 3714.9182 630.2257 -10600.394 0 203.14949 -0.00067992587 -0.00069108647 + 34340 -6250.8601 -6255.4056 4.5455622 3712.4847 630.11141 -10598.002 0 217.84884 -0.00061736974 -0.00063339426 + 34350 -6250.6944 -6255.5062 4.8118424 3707.6493 630.16893 -10593.324 0 230.61049 -0.00048949532 -0.00050876294 + 34360 -6250.5391 -6255.4895 4.95042 3701.5291 630.14444 -10587.163 0 237.2519 -0.00034967224 -0.00036815118 + 34370 -6250.3908 -6255.364 4.9732241 3695.4317 629.7374 -10580.533 0 238.3448 -0.00025493341 -0.00026956379 + 34380 -6250.2206 -6255.195 4.974436 3690.5266 628.72314 -10574.445 0 238.40289 -0.00024805516 -0.00025938717 + 34390 -6250.0002 -6255.0476 5.0474015 3687.6113 627.05818 -10569.717 0 241.8998 -0.00034606214 -0.00035779155 + 34400 -6249.7286 -6254.9341 5.2055135 3686.9907 624.92788 -10566.853 0 249.47741 -0.00053638249 -0.00055203699 + 34410 -6249.4358 -6254.8141 5.3783894 3688.45 622.71454 -10565.979 0 257.7626 -0.0007795192 -0.00079918001 + 34420 -6249.1575 -6254.6467 5.489225 3691.3159 620.89434 -10566.857 0 263.07446 -0.0010173791 -0.0010374864 + 34430 -6248.9034 -6254.4457 5.5423349 3694.6289 619.90058 -10568.975 0 265.61979 -0.0011871363 -0.0012037188 + 34440 -6248.6467 -6254.2837 5.6369513 3697.4272 620.00262 -10571.713 0 270.15433 -0.001238922 -0.0012514381 + 34450 -6248.3478 -6254.2378 5.8899585 3699.0599 621.23972 -10574.537 0 282.27986 -0.0011521438 -0.0011644953 + 34460 -6247.9914 -6254.3225 6.3310858 3699.3973 623.42301 -10577.143 0 303.42115 -0.00094341238 -0.00096107938 + 34470 -6247.6085 -6254.4647 6.8561769 3698.8272 626.19554 -10579.487 0 328.58647 -0.00066150987 -0.00068692795 + 34480 -6247.2638 -6254.5432 7.2794401 3698.0309 629.12607 -10581.7 0 348.87161 -0.00037042668 -0.00040021979 + 34490 -6247.0123 -6254.4686 7.4563488 3697.6474 631.80767 -10583.924 0 357.35007 -0.00012713246 -0.00015375443 + 34500 -6246.8558 -6254.25 7.3942066 3697.9976 633.93286 -10586.18 0 354.37187 3.6046243e-05 1.8756491e-05 + 34510 -6246.7373 -6253.9933 7.2559169 3699.013 635.32764 -10588.334 0 347.74425 0.00011565125 0.00010697255 + 34520 -6246.588 -6253.815 7.2269803 3700.3927 635.94313 -10590.151 0 346.35745 0.00012602234 0.00011799939 + 34530 -6246.3923 -6253.7357 7.3433748 3701.8453 635.81759 -10591.399 0 351.93572 8.1528987e-05 6.5211736e-05 + 34540 -6246.2078 -6253.6577 7.4499642 3703.2087 635.02773 -10591.894 0 357.04409 -1.3606515e-05 -4.0280724e-05 + 34550 -6246.1132 -6253.467 7.3537864 3704.3589 633.65194 -10591.478 0 352.43471 -0.00016027783 -0.00019042719 + 34560 -6246.1321 -6253.1638 7.0317493 3705.0397 631.76593 -10589.969 0 337.00088 -0.00035097801 -0.00037483365 + 34570 -6246.208 -6252.8911 6.6830586 3704.8214 629.47495 -10587.187 0 320.28967 -0.00056193123 -0.00057538621 + 34580 -6246.2555 -6252.8274 6.5719183 3703.269 626.95951 -10583.056 0 314.9632 -0.00075817114 -0.00076594731 + 34590 -6246.2339 -6253.044 6.8101457 3700.2015 624.49478 -10577.74 0 326.38039 -0.00090641445 -0.00091735889 + 34600 -6246.1783 -6253.4525 7.2741558 3695.8555 622.41424 -10571.722 0 348.61836 -0.0009855175 -0.0010047504 + 34610 -6246.1658 -6253.8828 7.7169985 3690.8525 621.02058 -10565.756 0 369.84187 -0.0009894499 -0.001014445 + 34620 -6246.2486 -6254.2123 7.9637364 3686.0253 620.48286 -10560.72 0 381.66693 -0.00092551213 -0.00094915901 + 34630 -6246.4151 -6254.4324 8.0173791 3682.2283 620.77447 -10557.435 0 384.23779 -0.00081286181 -0.00083020345 + 34640 -6246.6102 -6254.6076 7.9973561 3680.208 621.68764 -10556.503 0 383.27818 -0.00068219258 -0.000694625 + 34650 -6246.7899 -6254.7783 7.9883136 3680.5124 622.91903 -10558.21 0 382.84481 -0.00057235847 -0.0005859203 + 34660 -6246.9565 -6254.903 7.9465132 3683.3708 624.18446 -10562.458 0 380.8415 -0.00052001311 -0.00053985685 + 34670 -6247.1458 -6254.8872 7.7413704 3688.5374 625.31208 -10568.737 0 371.0099 -0.0005442414 -0.00057035454 + 34680 -6247.3844 -6254.6666 7.2822513 3695.1892 626.28028 -10576.136 0 349.00634 -0.00063425634 -0.00066180981 + 34690 -6247.6577 -6254.2713 6.613647 3702.0059 627.19442 -10583.472 0 316.96307 -0.0007487727 -0.00077223716 + 34700 -6247.9174 -6253.82 5.9025485 3707.4774 628.21923 -10589.517 0 282.88325 -0.0008296459 -0.00084692685 + 34710 -6248.1155 -6253.4548 5.3393855 3710.3467 629.49279 -10593.294 0 255.89331 -0.0008242818 -0.00083771897 + 34720 -6248.2335 -6253.2702 5.0367205 3710.0082 631.04632 -10594.325 0 241.38791 -0.00070702825 -0.00072104388 + 34730 -6248.2881 -6253.2823 4.9941496 3706.7026 632.75035 -10592.735 0 239.34767 -0.00049113667 -0.00050879913 + 34740 -6248.3144 -6253.4503 5.1358722 3701.4398 634.30676 -10589.197 0 246.13981 -0.00022738599 -0.00024844587 + 34750 -6248.3426 -6253.7206 5.3779991 3695.6901 635.30128 -10584.712 0 257.74389 9.9046162e-06 -1.1542028e-05 + 34760 -6248.3833 -6254.0585 5.6751516 3690.9535 635.3151 -10580.327 0 271.98511 0.00014501364 0.00012664015 + 34770 -6248.4271 -6254.4474 6.020286 3688.3419 634.06798 -10576.857 0 288.52588 0.00012408805 0.00011037921 + 34780 -6248.4582 -6254.8639 6.405662 3688.2941 631.54306 -10574.701 0 306.99526 -6.7898742e-05 -7.796632e-05 + 34790 -6248.4716 -6255.2523 6.7806984 3690.4913 628.04152 -10573.785 0 324.96911 -0.00040156997 -0.00041041258 + 34800 -6248.4792 -6255.5274 7.0482056 3693.9799 624.13725 -10573.645 0 337.78956 -0.00080998168 -0.00081934914 + 34810 -6248.4999 -6255.6114 7.1115166 3697.4516 620.54041 -10573.603 0 340.82378 -0.0012053663 -0.0012152536 + 34820 -6248.5413 -6255.4791 6.9377859 3699.6141 617.91583 -10573.009 0 332.49763 -0.0015012621 -0.0015106509 + 34830 -6248.5922 -6255.1746 6.5823505 3699.5655 616.71823 -10571.458 0 315.46317 -0.001634561 -0.0016430539 + 34840 -6248.6329 -6254.7845 6.1516575 3697.0764 617.09408 -10568.955 0 294.82195 -0.001581752 -0.0015903215 + 34850 -6248.6518 -6254.3899 5.7380872 3692.6835 618.86991 -10565.943 0 275.00133 -0.0013645582 -0.0013746386 + 34860 -6248.6538 -6254.0367 5.3828184 3687.5499 621.61776 -10563.204 0 257.97486 -0.0010428353 -0.0010547609 + 34870 -6248.6503 -6253.7423 5.0919678 3683.1264 624.77208 -10561.641 0 244.03567 -0.00069663458 -0.00070912743 + 34880 -6248.6437 -6253.5243 4.8806417 3680.7306 627.76608 -10562.021 0 233.90774 -0.00040326245 -0.00041464533 + 34890 -6248.6198 -6253.4171 4.7973435 3681.1856 630.15527 -10564.758 0 229.91562 -0.00021707766 -0.00022720174 + 34900 -6248.5568 -6253.4586 4.9018758 3684.6209 631.69894 -10569.778 0 234.92539 -0.0001584474 -0.00016951457 + 34910 -6248.4441 -6253.6555 5.2114555 3690.4679 632.3818 -10576.505 0 249.76219 -0.00021411874 -0.00022931364 + 34920 -6248.2969 -6253.9585 5.6616089 3697.6088 632.37494 -10583.942 0 271.33607 -0.00034635792 -0.00036701972 + 34930 -6248.1508 -6254.2779 6.1270458 3704.613 631.9525 -10590.843 0 293.64241 -0.0005054838 -0.00052918871 + 34940 -6248.0351 -6254.5373 6.5021989 3710.0108 631.3915 -10595.94 0 311.62185 -0.00064165912 -0.00066345209 + 34950 -6247.9457 -6254.7217 6.7759977 3712.5872 630.88543 -10598.194 0 324.74383 -0.00071546535 -0.00073190045 + 34960 -6247.8477 -6254.8665 7.0188139 3711.6812 630.49587 -10597.044 0 336.38094 -0.00070838231 -0.000720874 + 34970 -6247.713 -6254.9903 7.2772718 3707.4112 630.15262 -10592.554 0 348.7677 -0.00063107108 -0.00064488947 + 34980 -6247.5571 -6255.0393 7.4822254 3700.6984 629.69584 -10585.434 0 358.59022 -0.00052297443 -0.00054224195 + 34990 -6247.4331 -6254.9164 7.4833249 3693.0088 628.94329 -10576.869 0 358.64292 -0.00043847878 -0.00046194488 + 35000 -6247.3832 -6254.5762 7.1929778 3685.8965 627.76306 -10568.236 0 344.72786 -0.00042418084 -0.00044614415 + 35010 -6247.3974 -6254.0917 6.694345 3680.5682 626.13401 -10560.794 0 320.83057 -0.00050004419 -0.0005155275 + 35020 -6247.4222 -6253.6227 6.2005197 3677.6608 624.17628 -10555.46 0 297.1637 -0.00065488895 -0.00066390217 + 35030 -6247.4077 -6253.314 5.9063471 3677.2579 622.13952 -10552.711 0 283.06529 -0.00085566958 -0.00086268533 + 35040 -6247.3441 -6253.2139 5.8697353 3679.0319 620.34958 -10552.595 0 281.31065 -0.0010615266 -0.0010711434 + 35050 -6247.2602 -6253.272 6.0118301 3682.3882 619.13015 -10554.79 0 288.12063 -0.0012342616 -0.0012472553 + 35060 -6247.1904 -6253.4035 6.2130906 3686.5727 618.7256 -10558.702 0 297.76616 -0.0013431448 -0.0013562474 + 35070 -6247.1421 -6253.5547 6.4126661 3690.7755 619.249 -10563.579 0 307.33094 -0.0013669246 -0.0013762038 + 35080 -6247.0893 -6253.7207 6.6313708 3694.2697 620.66813 -10568.659 0 317.8125 -0.00129626 -0.0013009873 + 35090 -6246.9975 -6253.9073 6.9097887 3696.5723 622.82687 -10573.306 0 331.15584 -0.0011368061 -0.001140426 + 35100 -6246.8576 -6254.0837 7.2260701 3697.5597 625.48618 -10577.13 0 346.31382 -0.00091026901 -0.00091761798 + 35110 -6246.6995 -6254.1756 7.476125 3697.4634 628.36517 -10580.004 0 358.29786 -0.00065069162 -0.00066389207 + 35120 -6246.5711 -6254.1144 7.5433535 3696.7333 631.16976 -10582.017 0 361.51983 -0.00039629249 -0.00041294443 + 35130 -6246.5007 -6253.9005 7.3997341 3695.8419 633.60901 -10583.351 0 354.63678 -0.00018079614 -0.00019605155 + 35140 -6246.4759 -6253.6218 7.1458825 3695.1382 635.40819 -10584.168 0 342.47079 -2.8829346e-05 -3.9482066e-05 + 35150 -6246.4561 -6253.408 6.951938 3694.8072 636.32883 -10584.544 0 333.17588 4.3479394e-05 3.6357794e-05 + 35160 -6246.4068 -6253.3543 6.9474298 3694.9034 636.2014 -10584.459 0 332.95982 2.5925702e-05 1.776049e-05 + 35170 -6246.3262 -6253.4678 7.1416802 3695.3854 634.96828 -10583.822 0 342.26939 -8.5947661e-05 -9.9889095e-05 + 35180 -6246.2476 -6253.6699 7.4223014 3696.103 632.72476 -10582.498 0 355.71833 -0.00028694372 -0.0003081319 + 35190 -6246.2197 -6253.846 7.626268 3696.7549 629.73709 -10580.338 0 365.49355 -0.00055635832 -0.00058182434 + 35200 -6246.2744 -6253.9145 7.6401378 3696.8794 626.41775 -10577.212 0 366.15827 -0.00085480789 -0.00087907008 + 35210 -6246.4052 -6253.8721 7.4669546 3695.9415 623.2536 -10573.067 0 357.85836 -0.0011284232 -0.0011473098 + 35220 -6246.5736 -6253.7832 7.209618 3693.5344 620.70491 -10568.023 0 345.52535 -0.0013220591 -0.0013355864 + 35230 -6246.7422 -6253.7211 6.978885 3689.6253 619.10677 -10562.453 0 334.46733 -0.0013976145 -0.0014094652 + 35240 -6246.9044 -6253.708 6.8036496 3684.7102 618.59945 -10557.018 0 326.06906 -0.001348864 -0.0013628093 + 35250 -6247.0841 -6253.7108 6.6266482 3679.7613 619.10263 -10552.575 0 317.58616 -0.0012046185 -0.0012211406 + 35260 -6247.3052 -6253.692 6.386823 3675.9594 620.34061 -10549.992 0 306.09239 -0.0010181954 -0.0010344689 + 35270 -6247.5626 -6253.6622 6.0995522 3674.3338 621.92014 -10549.916 0 292.32477 -0.00084870372 -0.00086172572 + 35280 -6247.8262 -6253.6763 5.8500907 3675.4612 623.44773 -10552.585 0 280.36917 -0.00074278122 -0.00075231985 + 35290 -6248.0689 -6253.7798 5.7108727 3679.3122 624.65125 -10557.743 0 273.69707 -0.00072263037 -0.00073112045 + 35300 -6248.2903 -6253.9612 5.670897 3685.2499 625.45975 -10564.671 0 271.7812 -0.00078150464 -0.00079131403 + 35310 -6248.5114 -6254.1581 5.6467418 3692.1506 626.00675 -10572.315 0 270.62355 -0.00088584058 -0.00089686167 + 35320 -6248.7492 -6254.3105 5.5612911 3698.6313 626.55256 -10579.494 0 266.52827 -0.00098415613 -0.00099411862 + 35330 -6248.9963 -6254.409 5.4126645 3703.3669 627.35489 -10585.131 0 259.40525 -0.0010229934 -0.0010300707 + 35340 -6249.2264 -6254.4943 5.2679123 3705.4408 628.53989 -10588.475 0 252.46791 -0.00096693244 -0.00097192023 + 35350 -6249.4186 -6254.6099 5.1912388 3704.614 630.02587 -10589.25 0 248.79329 -0.00081497104 -0.00082079467 + 35360 -6249.5771 -6254.7581 5.1809868 3701.3928 631.52909 -10587.68 0 248.30196 -0.00060445567 -0.00061352569 + 35370 -6249.7249 -6254.9012 5.1762768 3696.8438 632.64755 -10584.393 0 248.07623 -0.00039905569 -0.00041115484 + 35380 -6249.8809 -6254.9999 5.1189656 3692.2262 632.99061 -10580.217 0 245.32955 -0.00026590292 -0.00027860844 + 35390 -6250.0429 -6255.046 5.0030709 3688.5983 632.30831 -10575.953 0 239.77523 -0.00025254648 -0.00026355193 + 35400 -6250.1919 -6255.0582 4.8662375 3686.5474 630.57734 -10572.183 0 233.21741 -0.00037301107 -0.00038199033 + 35410 -6250.3102 -6255.0529 4.7426813 3686.1077 628.01799 -10569.179 0 227.2959 -0.00060609132 -0.00061453548 + 35420 -6250.3945 -6255.0258 4.6313834 3686.8459 625.04137 -10566.913 0 221.96188 -0.00090339915 -0.00091298196 + 35430 -6250.4531 -6254.9617 4.5086196 3688.0493 622.14714 -10565.158 0 216.07835 -0.0012028122 -0.0012140451 + 35440 -6250.4944 -6254.8596 4.3651536 3688.9602 619.80467 -10563.624 0 209.20265 -0.0014437868 -0.0014560647 + 35450 -6250.518 -6254.7449 4.2269006 3689.0067 618.35126 -10562.103 0 202.5768 -0.0015817105 -0.0015943137 + 35460 -6250.5165 -6254.6567 4.1401694 3687.9782 617.93223 -10560.567 0 198.42015 -0.0015980862 -0.0016109221 + 35470 -6250.4834 -6254.6229 4.1394606 3686.0919 618.49323 -10559.208 0 198.38618 -0.0015033636 -0.0015167973 + 35480 -6250.4166 -6254.6445 4.2278374 3683.9208 619.8208 -10558.386 0 202.62169 -0.0013312812 -0.0013454256 + 35490 -6250.3166 -6254.6985 4.3819016 3682.2064 621.61558 -10558.52 0 210.00531 -0.0011269268 -0.0011411628 + 35500 -6250.1811 -6254.7535 4.5723398 3681.6227 623.57574 -10559.952 0 219.13218 -0.0009330509 -0.00094620655 + 35510 -6250.0005 -6254.7856 4.7850554 3682.5749 625.46529 -10562.826 0 229.3267 -0.0007792177 -0.00079032474 + 35520 -6249.757 -6254.788 5.0309785 3685.0903 627.14754 -10567.026 0 241.11272 -0.00067680573 -0.00068598721 + 35530 -6249.4299 -6254.7666 5.3366842 3688.8281 628.57762 -10572.172 0 255.76385 -0.00062070883 -0.00062955201 + 35540 -6249.0068 -6254.7235 5.7167087 3693.1841 629.764 -10577.672 0 273.97676 -0.00059628003 -0.00060714761 + 35550 -6248.4957 -6254.6404 6.144746 3697.4385 630.72079 -10582.8 0 294.49071 -0.00058802573 -0.00060240518 + 35560 -6247.9295 -6254.4816 6.5520255 3700.8899 631.43266 -10586.804 0 314.00982 -0.00058587065 -0.00060285706 + 35570 -6247.3532 -6254.22 6.8667708 3702.9469 631.84582 -10589.013 0 329.09419 -0.00058649531 -0.00060291509 + 35580 -6246.7995 -6253.869 7.0695132 3703.1942 631.88489 -10588.948 0 338.81074 -0.00059068967 -0.00060332317 + 35590 -6246.2735 -6253.4861 7.2126099 3701.4612 631.48474 -10586.432 0 345.66873 -0.00060023941 -0.00060862049 + 35600 -6245.7629 -6253.1397 7.3768588 3697.8921 630.62171 -10581.654 0 353.54047 -0.00061716622 -0.00062447181 + 35610 -6245.2654 -6252.8632 7.5977556 3692.9734 629.33245 -10575.169 0 364.12708 -0.00064491582 -0.00065581254 + 35620 -6244.8072 -6252.6358 7.8286565 3687.4661 627.71564 -10567.818 0 375.19315 -0.00068869034 -0.00070567704 + 35630 -6244.4311 -6252.4115 7.9803986 3682.2356 625.91763 -10560.565 0 382.46548 -0.0007529488 -0.00077428984 + 35640 -6244.1647 -6252.1727 8.0079833 3678.0375 624.10594 -10554.316 0 383.78749 -0.00083730625 -0.00085848769 + 35650 -6243.9962 -6251.9624 7.9662116 3675.3564 622.43907 -10549.758 0 381.78556 -0.00093442924 -0.00095199243 + 35660 -6243.8842 -6251.8621 7.9779286 3674.363 621.04401 -10547.269 0 382.3471 -0.0010323688 -0.0010467551 + 35670 -6243.7939 -6251.9301 8.1362336 3674.9756 620.01064 -10546.916 0 389.93397 -0.0011197925 -0.0011346432 + 35680 -6243.7271 -6252.1513 8.4241265 3676.9473 619.40276 -10548.501 0 403.73141 -0.0011895346 -0.0012080808 + 35690 -6243.7198 -6252.444 8.724178 3679.909 619.27492 -10551.628 0 418.11156 -0.0012369984 -0.0012588955 + 35700 -6243.8075 -6252.7206 8.9131261 3683.3709 619.6803 -10555.772 0 427.16701 -0.0012548411 -0.0012765226 + 35710 -6243.9908 -6252.9466 8.9558052 3686.7544 620.66078 -10560.362 0 429.21244 -0.0012299423 -0.00124827 + 35720 -6244.2351 -6253.1435 8.9084055 3689.5141 622.22065 -10564.878 0 426.94077 -0.0011479657 -0.0011635948 + 35730 -6244.5044 -6253.3347 8.8302253 3691.3215 624.29399 -10568.95 0 423.19394 -0.0010042286 -0.0010211923 + 35740 -6244.7944 -6253.4942 8.699792 3692.1876 626.7193 -10572.401 0 416.94285 -0.00081286553 -0.00083462424 + 35750 -6245.1275 -6253.5554 8.4278552 3692.4244 629.23708 -10575.217 0 403.91011 -0.00060634387 -0.0006321423 + 35760 -6245.5183 -6253.4749 7.9566717 3692.4568 631.5211 -10577.453 0 381.32835 -0.00042471 -0.00044978656 + 35770 -6245.944 -6253.2886 7.3445226 3692.6048 633.24073 -10579.134 0 351.99073 -0.00030175021 -0.00032116886 + 35780 -6246.3524 -6253.1032 6.7508152 3692.9641 634.13384 -10580.201 0 323.53694 -0.00025644563 -0.00026899376 + 35790 -6246.6956 -6253.0305 6.3349499 3693.4238 634.0645 -10580.519 0 303.60635 -0.00029235943 -0.00030118565 + 35800 -6246.9603 -6253.1181 6.1578824 3693.7639 633.04934 -10579.931 0 295.12028 -0.00040120196 -0.00041101591 + 35810 -6247.1686 -6253.3324 6.1638648 3693.744 631.25047 -10578.327 0 295.40699 -0.0005656669 -0.00057923275 + 35820 -6247.3545 -6253.5983 6.2438075 3693.1468 628.94087 -10575.686 0 299.23829 -0.00076053858 -0.00077736669 + 35830 -6247.5386 -6253.8523 6.3136967 3691.8048 626.45098 -10572.108 0 302.58777 -0.00095499471 -0.00097274177 + 35840 -6247.7207 -6254.0628 6.3420649 3689.6528 624.10713 -10567.823 0 303.94734 -0.0011186168 -0.001135266 + 35850 -6247.8913 -6254.2145 6.3232056 3686.7992 622.17407 -10563.188 0 303.04349 -0.0012296028 -0.0012443742 + 35860 -6248.0443 -6254.2902 6.2458817 3683.5645 620.813 -10558.668 0 299.3377 -0.0012807423 -0.001293559 + 35870 -6248.1787 -6254.2751 6.0964058 3680.4419 620.06453 -10554.782 0 292.17397 -0.0012799077 -0.0012907316 + 35880 -6248.2914 -6254.1767 5.8853298 3677.9895 619.86184 -10552.028 0 282.05803 -0.0012454213 -0.0012544315 + 35890 -6248.374 -6254.0339 5.6598975 3676.6982 620.07148 -10550.804 0 271.25405 -0.0011991004 -0.0012073366 + 35900 -6248.4187 -6253.9014 5.4826965 3676.8799 620.54983 -10551.331 0 262.76158 -0.0011596249 -0.0011690294 + 35910 -6248.4273 -6253.8209 5.3936583 3678.5945 621.19572 -10553.611 0 258.49437 -0.0011374187 -0.0011498187 + 35920 -6248.4144 -6253.8035 5.389171 3681.6158 621.98026 -10557.4 0 258.27932 -0.001131421 -0.0011471664 + 35930 -6248.3996 -6253.8343 5.4346823 3685.4446 622.94339 -10562.222 0 260.46047 -0.0011285915 -0.0011460421 + 35940 -6248.3953 -6253.8917 5.4964092 3689.3893 624.15849 -10567.439 0 263.41877 -0.0011075099 -0.0011239092 + 35950 -6248.3986 -6253.9633 5.5646621 3692.7193 625.67649 -10572.359 0 266.68983 -0.0010464364 -0.0010596052 + 35960 -6248.3947 -6254.0476 5.6528618 3694.8622 627.46797 -10576.378 0 270.91685 -0.00093374418 -0.00094344943 + 35970 -6248.3669 -6254.1429 5.7760019 3695.5777 629.38555 -10579.106 0 276.81842 -0.0007764948 -0.00078458774 + 35980 -6248.3091 -6254.2353 5.9262617 3695.0302 631.16685 -10580.432 0 284.01971 -0.00060271694 -0.00061194475 + 35990 -6248.2304 -6254.2966 6.0662269 3693.7154 632.48585 -10580.498 0 290.72763 -0.00045507121 -0.00046736021 + 36000 -6248.1498 -6254.2976 6.1478209 3692.2586 633.04076 -10579.597 0 294.63807 -0.0003772759 -0.00039266207 + 36010 -6248.0831 -6254.2275 6.1443747 3691.1634 632.6499 -10578.041 0 294.47291 -0.000398239 -0.00041515149 + 36020 -6248.0331 -6254.1046 6.0715213 3690.6186 631.32052 -10576.044 0 290.98137 -0.00052038765 -0.00053701063 + 36030 -6247.9891 -6253.9675 5.9784898 3690.4453 629.26378 -10573.677 0 286.52278 -0.00071731147 -0.00073293866 + 36040 -6247.9377 -6253.8491 5.9113365 3690.2 626.84734 -10570.896 0 283.30441 -0.00094202767 -0.00095725616 + 36050 -6247.876 -6253.7508 5.8747543 3689.3838 624.49838 -10567.633 0 281.55119 -0.0011425236 -0.0011580582 + 36060 -6247.8139 -6253.6436 5.8297007 3687.661 622.58697 -10563.892 0 279.39197 -0.0012780998 -0.0012933394 + 36070 -6247.7617 -6253.5005 5.7387801 3685.0054 621.32785 -10559.834 0 275.03454 -0.0013303428 -0.001343429 + 36080 -6247.713 -6253.3352 5.6222249 3681.7411 620.73549 -10555.812 0 269.44856 -0.0013059171 -0.0013156255 + 36090 -6247.6427 -6253.2086 5.5659788 3678.4865 620.65024 -10552.345 0 266.75294 -0.0012320287 -0.0012397994 + 36100 -6247.5252 -6253.1888 5.6635506 3676.0203 620.82662 -10550.036 0 271.42912 -0.0011469123 -0.0011567384 + 36110 -6247.3588 -6253.2978 5.9389387 3675.0817 621.04886 -10549.428 0 284.62727 -0.0010873677 -0.0011030878 + 36120 -6247.172 -6253.4913 6.3193807 3676.1331 621.22718 -10550.852 0 302.86018 -0.001075578 -0.001097637 + 36130 -6247.0057 -6253.6888 6.6831432 3679.1548 621.43592 -10554.28 0 320.29372 -0.0011091193 -0.0011336114 + 36140 -6246.8826 -6253.8268 6.9442763 3683.571 621.87755 -10559.275 0 332.80868 -0.0011592598 -0.001180383 + 36150 -6246.7877 -6253.8947 7.1070809 3688.3776 622.7872 -10565.06 0 340.61119 -0.0011807564 -0.0011950979 + 36160 -6246.6779 -6253.9231 7.2452124 3692.4614 624.31594 -10570.7 0 347.23123 -0.0011311767 -0.0011405841 + 36170 -6246.5165 -6253.9346 7.4180485 3694.9921 626.43907 -10575.366 0 355.51451 -0.00099198383 -0.0010024807 + 36180 -6246.306 -6253.9012 7.5951591 3695.7087 628.92375 -10578.534 0 364.00264 -0.00078084633 -0.00079803141 + 36190 -6246.0888 -6253.7561 7.6673063 3694.9453 631.3679 -10580.069 0 367.46034 -0.0005476127 -0.00057218757 + 36200 -6245.911 -6253.4592 7.5482132 3693.3901 633.29995 -10580.149 0 361.75273 -0.00035500133 -0.00038234012 + 36210 -6245.781 -6253.0545 7.273506 3691.7315 634.3097 -10579.096 0 348.58722 -0.00025425513 -0.00027832975 + 36220 -6245.6616 -6252.6591 6.9975283 3690.3953 634.16659 -10577.221 0 335.36082 -0.00026829407 -0.00028629252 + 36230 -6245.4981 -6252.3897 6.8915516 3689.4728 632.88255 -10574.745 0 330.28182 -0.00038847172 -0.00040227891 + 36240 -6245.2546 -6252.2909 7.0362393 3688.7976 630.69853 -10571.787 0 337.21607 -0.00058245944 -0.00059644602 + 36250 -6244.9312 -6252.3176 7.3863233 3688.0794 628.0055 -10568.402 0 353.99406 -0.00080690688 -0.00082434393 + 36260 -6244.5585 -6252.3739 7.8153615 3687.0228 625.23361 -10564.63 0 374.55597 -0.0010195249 -0.0010403187 + 36270 -6244.175 -6252.379 8.2039858 3685.4138 622.7474 -10560.54 0 393.18103 -0.0011876572 -0.0012088981 + 36280 -6243.8016 -6252.319 8.5174052 3683.1816 620.77835 -10556.279 0 408.20185 -0.0012927107 -0.0013117013 + 36290 -6243.4334 -6252.2446 8.8111572 3680.4562 619.41386 -10552.115 0 422.28009 -0.0013315286 -0.0013488016 + 36300 -6243.0637 -6252.2122 9.1484689 3677.6065 618.64017 -10548.459 0 438.44596 -0.0013152966 -0.0013344943 + 36310 -6242.7164 -6252.2235 9.5070415 3675.1978 618.41092 -10545.832 0 455.63077 -0.0012644794 -0.0012887792 + 36320 -6242.4478 -6252.2277 9.7798973 3673.8247 618.70146 -10544.754 0 468.70755 -0.0011991559 -0.0012277955 + 36330 -6242.3113 -6252.1821 9.8708226 3673.8856 619.52245 -10545.59 0 473.0652 -0.0011291499 -0.0011576477 + 36340 -6242.3212 -6252.0999 9.7787279 3675.4419 620.8914 -10548.433 0 468.65151 -0.0010510917 -0.0010748064 + 36350 -6242.4522 -6252.0423 9.5901452 3678.243 622.77986 -10553.065 0 459.61357 -0.00095517786 -0.00097274585 + 36360 -6242.6675 -6252.0687 9.4011615 3681.872 625.06284 -10559.004 0 450.55641 -0.00083708473 -0.00085097777 + 36370 -6242.949 -6252.193 9.2440739 3685.9012 627.49896 -10565.593 0 443.02789 -0.0007070347 -0.00072127054 + 36380 -6243.3037 -6252.376 9.0723272 3689.9675 629.76046 -10572.104 0 434.79682 -0.00059000548 -0.00060710237 + 36390 -6243.7472 -6252.5537 8.8065121 3693.7507 631.50976 -10577.814 0 422.05748 -0.00051626399 -0.00053572421 + 36400 -6244.2773 -6252.68 8.4026619 3696.8994 632.49523 -10582.075 0 402.70271 -0.00050703673 -0.00052628098 + 36410 -6244.862 -6252.7524 7.890394 3698.9874 632.62623 -10584.366 0 378.15195 -0.00056332245 -0.0005800857 + 36420 -6245.4515 -6252.8032 7.3516747 3699.5641 631.99571 -10584.363 0 352.3335 -0.00066429479 -0.00067837695 + 36430 -6246.0041 -6252.8646 6.8604458 3698.3034 630.84123 -10582.009 0 328.79106 -0.00077601579 -0.00078894624 + 36440 -6246.5024 -6252.9426 6.4401723 3695.1708 629.45955 -10577.573 0 308.64919 -0.00086532148 -0.00087855546 + 36450 -6246.9476 -6253.0254 6.0777571 3690.516 628.10655 -10571.648 0 291.28022 -0.00091204709 -0.00092575027 + 36460 -6247.3426 -6253.1119 5.7692731 3685.0455 626.91924 -10565.077 0 276.49594 -0.00091550858 -0.00092910325 + 36470 -6247.6846 -6253.2238 5.5392443 3679.7017 625.88969 -10558.815 0 265.47167 -0.00089453517 -0.00090800998 + 36480 -6247.9716 -6253.3854 5.4137732 3675.4833 624.89974 -10553.768 0 259.45839 -0.0008814986 -0.00089573253 + 36490 -6248.2122 -6253.5974 5.3851956 3673.2279 623.80097 -10550.626 0 258.08879 -0.00091104777 -0.00092680755 + 36500 -6248.4235 -6253.8337 5.4101922 3673.3887 622.50728 -10549.73 0 259.28677 -0.0010059953 -0.0010228424 + 36510 -6248.6214 -6254.0621 5.4406627 3675.8725 621.06511 -10551 0 260.74708 -0.0011653368 -0.001181652 + 36520 -6248.8102 -6254.265 5.4548253 3680.0171 619.67441 -10553.957 0 261.42584 -0.0013599774 -0.0013740862 + 36530 -6248.9824 -6254.4451 5.4626552 3684.748 618.64943 -10557.842 0 261.80109 -0.0015391304 -0.0015505554 + 36540 -6249.1264 -6254.6116 5.4852156 3688.8755 618.32812 -10561.815 0 262.88231 -0.0016459428 -0.0016558139 + 36550 -6249.2364 -6254.7614 5.5249713 3691.4416 618.95692 -10565.16 0 264.78762 -0.0016370445 -0.0016473486 + 36560 -6249.3191 -6254.8672 5.5481537 3691.9966 620.58938 -10567.453 0 265.89865 -0.0014989231 -0.0015110413 + 36570 -6249.3898 -6254.8853 5.495518 3690.7131 623.03551 -10568.634 0 263.37606 -0.0012547862 -0.0012683612 + 36580 -6249.4608 -6254.7822 5.3214092 3688.2945 625.88529 -10568.962 0 255.03179 -0.00095895419 -0.00097212435 + 36590 -6249.5288 -6254.5626 5.0337683 3685.7236 628.60496 -10568.891 0 241.24642 -0.00068093061 -0.00069196945 + 36600 -6249.5757 -6254.2721 4.6964583 3683.9509 630.67793 -10568.901 0 225.08063 -0.00048546715 -0.00049443023 + 36610 -6249.5831 -6253.9697 4.3866385 3683.6273 631.74342 -10569.34 0 210.23233 -0.0004154171 -0.00042414071 + 36620 -6249.5487 -6253.6963 4.1476473 3684.9365 631.68546 -10570.318 0 198.77853 -0.00048145753 -0.00049179992 + 36630 -6249.486 -6253.4701 3.9841276 3687.5429 630.64475 -10571.658 0 190.94175 -0.00066000249 -0.00067202356 + 36640 -6249.4094 -6253.31 3.9006276 3690.6642 628.95637 -10572.931 0 186.93996 -0.00089947509 -0.00091133301 + 36650 -6249.3162 -6253.2557 3.939468 3693.2737 627.04092 -10573.57 0 188.80141 -0.0011341885 -0.0011438558 + 36660 -6249.1823 -6253.3575 4.1752557 3694.4004 625.2873 -10573.045 0 200.10168 -0.0013029741 -0.0013102034 + 36670 -6248.9731 -6253.6374 4.6642519 3693.443 623.95976 -10571.04 0 223.53712 -0.0013672751 -0.0013740762 + 36680 -6248.6638 -6254.0491 5.3852814 3690.3865 623.1493 -10567.585 0 258.0929 -0.0013226742 -0.00133183 + 36690 -6248.2554 -6254.4729 6.2175252 3685.8334 622.77661 -10563.083 0 297.97869 -0.0011994996 -0.0012122231 + 36700 -6247.7769 -6254.7569 6.98003 3680.8314 622.64281 -10558.231 0 334.5222 -0.0010516111 -0.0010662452 + 36710 -6247.2677 -6254.7868 7.5191798 3676.5533 622.51363 -10553.854 0 360.36129 -0.00093680084 -0.00094991127 + 36720 -6246.7527 -6254.5425 7.7898438 3673.9529 622.21336 -10550.709 0 373.33302 -0.00089621693 -0.00090561759 + 36730 -6246.232 -6254.0975 7.8654565 3673.5236 621.69938 -10549.32 0 376.95681 -0.00094139453 -0.00094868619 + 36740 -6245.6991 -6253.5592 7.8600809 3675.2338 621.09144 -10549.884 0 376.69918 -0.0010536969 -0.0010636919 + 36750 -6245.1703 -6252.9964 7.8260643 3678.6072 620.64304 -10552.247 0 375.06891 -0.0011939643 -0.0012107996 + 36760 -6244.6918 -6252.4176 7.7257863 3682.8667 620.65997 -10555.944 0 370.26303 -0.0013154598 -0.0013385664 + 36770 -6244.3084 -6251.8207 7.5123648 3687.0822 621.39071 -10560.294 0 360.03467 -0.0013746697 -0.0013986524 + 36780 -6244.021 -6251.2596 7.2385265 3690.3429 622.92731 -10564.53 0 346.91081 -0.0013398179 -0.0013589827 + 36790 -6243.7796 -6250.8483 7.0687125 3691.9804 625.15436 -10567.983 0 338.77237 -0.0011995194 -0.0012130218 + 36800 -6243.5238 -6250.6879 7.1641198 3691.7953 627.76423 -10570.247 0 343.34482 -0.00097046918 -0.00098302927 + 36810 -6243.2366 -6250.7852 7.5485998 3690.1502 630.33016 -10571.266 0 361.77126 -0.00069798942 -0.00071537666 + 36820 -6242.9588 -6251.0463 8.0875621 3687.8306 632.41281 -10571.29 0 387.60136 -0.00044414872 -0.00046776127 + 36830 -6242.7541 -6251.3527 8.5986112 3685.7169 633.66985 -10570.739 0 412.0937 -0.00026619356 -0.00029179978 + 36840 -6242.6579 -6251.6452 8.9872637 3684.443 633.93589 -10570.024 0 430.7201 -0.00019633062 -0.00021797941 + 36850 -6242.6574 -6251.9408 9.2834163 3684.2177 633.24477 -10569.403 0 444.9134 -0.00023451012 -0.0002498318 + 36860 -6242.7207 -6252.2724 9.5517112 3684.8698 631.78782 -10568.93 0 457.7716 -0.0003571906 -0.00036914426 + 36870 -6242.842 -6252.6137 9.7717863 3686.0265 629.83307 -10568.473 0 468.31883 -0.00053375194 -0.0005473656 + 36880 -6243.0544 -6252.8721 9.8177302 3687.2786 627.6475 -10567.798 0 470.52072 -0.00073799566 -0.00075556834 + 36890 -6243.394 -6252.9591 9.5650695 3688.2463 625.4543 -10566.66 0 458.4118 -0.00094888299 -0.00096848572 + 36900 -6243.8556 -6252.8695 9.013913 3688.5891 623.43108 -10564.89 0 431.99729 -0.001145481 -0.0011638047 + 36910 -6244.3894 -6252.6881 8.2987625 3688.0459 621.73009 -10562.464 0 397.72326 -0.0013049414 -0.0013208694 + 36920 -6244.9391 -6252.523 7.5838947 3686.5275 620.49262 -10559.543 0 363.46279 -0.0014065465 -0.0014216186 + 36930 -6245.4764 -6252.4378 6.9613632 3684.1948 619.83941 -10556.472 0 333.62759 -0.0014377113 -0.0014536449 + 36940 -6245.9986 -6252.4427 6.4441112 3681.4517 619.83914 -10553.734 0 308.83797 -0.0013971443 -0.001413724 + 36950 -6246.5037 -6252.5331 6.029446 3678.8519 620.47434 -10551.859 0 288.96488 -0.0012946977 -0.001310306 + 36960 -6246.9753 -6252.7175 5.7422535 3676.98 621.62665 -10551.324 0 275.20101 -0.0011502527 -0.0011639899 + 36970 -6247.3911 -6253.0042 5.6130813 3676.3502 623.09115 -10552.445 0 269.01035 -0.00099243834 -0.0010052331 + 36980 -6247.7389 -6253.3682 5.6293632 3677.319 624.61507 -10555.302 0 269.79067 -0.00085522087 -0.00086887398 + 36990 -6248.0214 -6253.742 5.7205437 3679.9906 625.9493 -10559.682 0 274.16055 -0.00077058109 -0.00078598743 + 37000 -6248.2487 -6254.0411 5.7924332 3684.1259 626.90221 -10565.069 0 277.6059 -0.00075866316 -0.0007750138 + 37010 -6248.4281 -6254.2059 5.7778002 3689.1072 627.38572 -10570.699 0 276.9046 -0.00081960845 -0.00083514234 + 37020 -6248.5613 -6254.2263 5.6650692 3694.0076 627.4405 -10575.674 0 271.5019 -0.00093121635 -0.00094470771 + 37030 -6248.6464 -6254.1394 5.4929794 3697.7772 627.22639 -10579.143 0 263.25439 -0.0010540973 -0.0010658795 + 37040 -6248.6836 -6254.0044 5.3208438 3699.5072 626.97175 -10580.483 0 255.00469 -0.0011431877 -0.0011550019 + 37050 -6248.6805 -6253.872 5.1914999 3698.6934 626.89173 -10579.457 0 248.8058 -0.0011623778 -0.0011760993 + 37060 -6248.655 -6253.7633 5.1083188 3695.4086 627.1022 -10576.274 0 244.8193 -0.0010975002 -0.0011135248 + 37070 -6248.6286 -6253.6741 5.0455377 3690.3143 627.56227 -10571.551 0 241.81048 -0.00096269792 -0.0009792333 + 37080 -6248.6116 -6253.6011 4.9895853 3684.5047 628.07064 -10566.176 0 239.12892 -0.00079725988 -0.00081146216 + 37090 -6248.5912 -6253.5672 4.9760069 3679.2409 628.32319 -10561.131 0 238.47817 -0.00065403384 -0.00066454936 + 37100 -6248.5367 -6253.6137 5.0769744 3675.6636 628.01732 -10557.295 0 243.3171 -0.00058407888 -0.00059295736 + 37110 -6248.4241 -6253.7575 5.3334758 3674.5528 626.96929 -10555.28 0 255.61008 -0.00062265519 -0.00063450705 + 37120 -6248.2612 -6253.9481 5.6868649 3676.1541 625.20346 -10555.306 0 272.54647 -0.0007791868 -0.00079757824 + 37130 -6248.0913 -6254.0747 5.9834703 3680.0819 622.97972 -10557.136 0 286.76147 -0.0010316883 -0.001055517 + 37140 -6247.9623 -6254.0355 6.0731776 3685.334 620.74595 -10560.115 0 291.06074 -0.0013267437 -0.0013500924 + 37150 -6247.8842 -6253.8199 5.9356845 3690.4797 619.02657 -10563.326 0 284.47131 -0.0015880648 -0.0016045828 + 37160 -6247.8117 -6253.5336 5.7218897 3694.0428 618.28007 -10565.856 0 274.22506 -0.0017360175 -0.0017447681 + 37170 -6247.6758 -6253.3252 5.6494209 3694.9945 618.76859 -10567.088 0 270.75195 -0.0017150286 -0.0017225245 + 37180 -6247.4444 -6253.2638 5.8193823 3693.1589 620.47694 -10566.9 0 278.89745 -0.0015181323 -0.0015337514 + 37190 -6247.1589 -6253.2737 6.1147923 3689.3095 623.10103 -10565.684 0 293.05516 -0.0011947402 -0.0012226054 + 37200 -6246.9074 -6253.1998 6.2923215 3684.8645 626.1105 -10564.175 0 301.56335 -0.0008340943 -0.00086856154 + 37210 -6246.7495 -6252.9561 6.2065706 3681.3146 628.87724 -10563.148 0 297.45369 -0.0005308212 -0.00056039781 + 37220 -6246.6583 -6252.6232 5.9648749 3679.6858 630.84282 -10563.152 0 285.87028 -0.00035096597 -0.00036795395 + 37230 -6246.5383 -6252.3928 5.8545345 3680.2987 631.67515 -10564.367 0 280.58214 -0.00031608854 -0.00032341442 + 37240 -6246.3082 -6252.4033 6.0950676 3682.8579 631.35704 -10566.618 0 292.10984 -0.000408785 -0.00041751197 + 37250 -6245.9732 -6252.6162 6.6429828 3686.6842 630.17013 -10569.471 0 318.36901 -0.0005882643 -0.000607811 + 37260 -6245.6219 -6252.8548 7.2328755 3690.8865 628.57835 -10572.32 0 346.63998 -0.00080301992 -0.00083297498 + 37270 -6245.3502 -6252.9633 7.6131031 3694.4574 627.05793 -10574.479 0 364.86262 -0.00099819598 -0.0010290477 + 37280 -6245.1817 -6252.9341 7.7523231 3696.4174 625.94362 -10575.295 0 371.53482 -0.0011241923 -0.0011459308 + 37290 -6245.0576 -6252.8912 7.8335876 3696.0833 625.34968 -10574.324 0 375.42947 -0.0011504575 -0.0011611317 + 37300 -6244.8994 -6252.957 8.0576842 3693.3675 625.18505 -10571.51 0 386.16944 -0.0010789093 -0.0010859256 + 37310 -6244.6868 -6253.1236 8.4368481 3688.9139 625.23911 -10567.277 0 404.3411 -0.00094665584 -0.000960188 + 37320 -6244.4831 -6253.2358 8.7527805 3683.9337 625.28946 -10562.459 0 419.48235 -0.0008125064 -0.00083674784 + 37330 -6244.3858 -6253.1039 8.7181621 3679.7694 625.18476 -10558.058 0 417.82325 -0.00073181519 -0.00076137829 + 37340 -6244.4418 -6252.6598 8.2180728 3677.3949 624.87819 -10554.933 0 393.85616 -0.00073255606 -0.00075713737 + 37350 -6244.6021 -6252.0321 7.4299605 3677.1182 624.41675 -10553.567 0 356.0854 -0.00080619221 -0.00081960639 + 37360 -6244.7605 -6251.474 6.7135195 3678.6285 623.90929 -10554.012 0 321.74953 -0.00091775296 -0.00092351556 + 37370 -6244.8385 -6251.2002 6.3616588 3681.2971 623.49188 -10555.989 0 304.88638 -0.0010267794 -0.0010354745 + 37380 -6244.8433 -6251.26 6.4167306 3684.4906 623.29508 -10559.046 0 307.52573 -0.0011051477 -0.0011259716 + 37390 -6244.8553 -6251.538 6.6827223 3687.7083 623.41154 -10562.658 0 320.27355 -0.0011428506 -0.0011763369 + 37400 -6244.9645 -6251.8638 6.8993827 3690.5396 623.86798 -10566.271 0 330.65713 -0.0011424136 -0.0011799591 + 37410 -6245.204 -6252.1378 6.9337693 3692.5815 624.61259 -10569.332 0 332.30513 -0.0011092245 -0.0011395494 + 37420 -6245.5303 -6252.3802 6.8499816 3693.4528 625.52786 -10571.361 0 328.28955 -0.0010458108 -0.00106332 + 37430 -6245.8624 -6252.6783 6.8158897 3692.9368 626.4684 -10572.084 0 326.65568 -0.00095384727 -0.00096257391 + 37440 -6246.1511 -6253.0791 6.9279518 3691.1591 627.30779 -10571.546 0 332.02632 -0.00084116987 -0.00085133672 + 37450 -6246.4194 -6253.5195 7.1000295 3688.6502 627.96925 -10570.139 0 340.27325 -0.00072654076 -0.00074641392 + 37460 -6246.7411 -6253.858 7.116807 3686.1977 628.42216 -10568.478 0 341.07732 -0.00063616431 -0.00066568697 + 37470 -6247.171 -6253.9866 6.8156351 3684.5365 628.65023 -10567.173 0 326.64348 -0.00059289302 -0.00062429835 + 37480 -6247.689 -6253.9265 6.2374557 3684.0599 628.62106 -10566.607 0 298.93388 -0.00060605663 -0.00063074915 + 37490 -6248.2124 -6253.8161 5.6036541 3684.7266 628.28767 -10566.83 0 268.55855 -0.00066977574 -0.00068523088 + 37500 -6248.6622 -6253.799 5.1368414 3686.1899 627.62572 -10567.615 0 246.18626 -0.00076981028 -0.00078048066 + 37510 -6249.0178 -6253.9103 4.8925354 3688.01 626.6777 -10568.598 0 234.47775 -0.00089139469 -0.00090351475 + 37520 -6249.3138 -6254.064 4.750185 3689.7824 625.56843 -10569.415 0 227.65552 -0.0010210777 -0.0010368353 + 37530 -6249.5924 -6254.1444 4.5520387 3691.1478 624.47854 -10569.771 0 218.15924 -0.0011431442 -0.0011595278 + 37540 -6249.8613 -6254.1091 4.2478506 3691.7808 623.59177 -10569.482 0 203.58084 -0.0012372783 -0.0012498579 + 37550 -6250.0919 -6254.0151 3.9231863 3691.4516 623.044 -10568.511 0 188.0211 -0.0012826944 -0.0012901817 + 37560 -6250.2496 -6253.9611 3.7115812 3690.1495 622.89267 -10567.003 0 177.8798 -0.0012673715 -0.0012728794 + 37570 -6250.3256 -6254.0084 3.682738 3688.1711 623.10998 -10565.289 0 176.49747 -0.0011961006 -0.0012044455 + 37580 -6250.3461 -6254.1419 3.7958098 3686.0823 623.5943 -10563.819 0 181.9165 -0.0010915115 -0.0011051322 + 37590 -6250.3528 -6254.2959 3.9431198 3684.5436 624.19394 -10563.033 0 188.97642 -0.00098665589 -0.0010035462 + 37600 -6250.3723 -6254.4149 4.0425171 3684.0688 624.74033 -10563.224 0 193.7401 -0.00091273065 -0.00092809957 + 37610 -6250.395 -6254.4965 4.101455 3684.8373 625.08927 -10564.423 0 196.56474 -0.00088826277 -0.00089865621 + 37620 -6250.3825 -6254.5783 4.1957156 3686.6509 625.16489 -10566.394 0 201.08223 -0.00091476345 -0.00092117719 + 37630 -6250.3011 -6254.6807 4.3795821 3689.0382 624.99339 -10568.712 0 209.89415 -0.00097914357 -0.00098630011 + 37640 -6250.1508 -6254.7657 4.614846 3691.4218 624.70793 -10570.895 0 221.16931 -0.0010589993 -0.0010713818 + 37650 -6249.9653 -6254.7584 4.7931159 3693.2512 624.5122 -10572.522 0 229.71301 -0.0011272535 -0.0011455336 + 37660 -6249.782 -6254.6122 4.8301987 3694.0829 624.6093 -10573.304 0 231.49023 -0.0011565834 -0.0011775117 + 37670 -6249.6138 -6254.3521 4.738306 3693.654 625.12263 -10573.129 0 227.08621 -0.0011260942 -0.0011454292 + 37680 -6249.4443 -6254.0577 4.6134272 3691.9737 626.04026 -10572.072 0 221.10132 -0.0010299069 -0.0010454337 + 37690 -6249.2454 -6253.8091 4.5636928 3689.3877 627.20293 -10570.4 0 218.71777 -0.00088326526 -0.0008956523 + 37700 -6248.9966 -6253.643 4.6463567 3686.5466 628.33913 -10568.529 0 222.67948 -0.00072145121 -0.00073303262 + 37710 -6248.6935 -6253.544 4.8504527 3684.251 629.13665 -10566.932 0 232.46091 -0.00059055131 -0.00060346246 + 37720 -6248.3475 -6253.4644 5.1169463 3683.2146 629.33148 -10566.01 0 245.23278 -0.00053324841 -0.0005480989 + 37730 -6247.9794 -6253.3548 5.3753572 3683.823 628.78856 -10565.966 0 257.61728 -0.0005745268 -0.00059013025 + 37740 -6247.6092 -6253.1929 5.5837021 3685.9732 627.54995 -10566.716 0 267.60234 -0.00071181524 -0.00072612916 + 37750 -6247.2452 -6253.0014 5.756177 3689.0588 625.83498 -10567.895 0 275.8683 -0.00091309748 -0.00092502943 + 37760 -6246.8828 -6252.8363 5.953467 3692.1355 623.99219 -10568.964 0 285.32354 -0.0011248973 -0.0011357117 + 37770 -6246.5203 -6252.7475 6.2271537 3694.2274 622.4162 -10569.391 0 298.44015 -0.0012887238 -0.0013014433 + 37780 -6246.1785 -6252.7366 6.5581158 3694.6583 621.44863 -10568.844 0 314.30171 -0.0013601456 -0.001376831 + 37790 -6245.8995 -6252.7544 6.8548669 3693.2645 621.28505 -10567.304 0 328.52368 -0.0013224709 -0.0013417307 + 37800 -6245.7166 -6252.7443 7.0276997 3690.4149 621.91471 -10565.074 0 336.8068 -0.0011898729 -0.0012074392 + 37810 -6245.6231 -6252.6917 7.0686831 3686.872 623.11931 -10562.683 0 338.77096 -0.0010008391 -0.0010131988 + 37820 -6245.574 -6252.6277 7.0536829 3683.5827 624.54045 -10560.751 0 338.05206 -0.00080660447 -0.00081438152 + 37830 -6245.5219 -6252.5877 7.0658088 3681.4565 625.79637 -10559.841 0 338.6332 -0.0006582146 -0.00066607928 + 37840 -6245.4519 -6252.571 7.1191005 3681.1468 626.60681 -10560.325 0 341.18724 -0.00059342363 -0.00060657643 + 37850 -6245.3873 -6252.5397 7.1523728 3682.8551 626.88142 -10562.276 0 342.78184 -0.00062486782 -0.00064509161 + 37860 -6245.3654 -6252.4578 7.0924025 3686.2198 626.74043 -10565.418 0 339.90772 -0.00073347557 -0.00075786168 + 37870 -6245.4047 -6252.3326 6.9279874 3690.3653 626.45762 -10569.156 0 332.02803 -0.00087207734 -0.00089522265 + 37880 -6245.4897 -6252.2235 6.733785 3694.137 626.34474 -10572.705 0 322.72076 -0.0009809169 -0.00099876997 + 37890 -6245.5827 -6252.2091 6.6263675 3696.4694 626.62099 -10575.299 0 317.57271 -0.0010104156 -0.0010229199 + 37900 -6245.6505 -6252.3371 6.6865518 3696.7537 627.32018 -10576.411 0 320.45708 -0.00094148729 -0.00095226184 + 37910 -6245.6875 -6252.5926 6.9051145 3695.0551 628.27195 -10575.92 0 330.93183 -0.00079385762 -0.00080742353 + 37920 -6245.7174 -6252.9066 7.1891707 3692.0732 629.16181 -10574.142 0 344.5454 -0.00061844256 -0.00063723175 + 37930 -6245.7756 -6253.1944 7.4188142 3688.8609 629.64498 -10571.7 0 355.5512 -0.00047749751 -0.00050074985 + 37940 -6245.8864 -6253.3929 7.5065822 3686.4292 629.4719 -10569.294 0 359.75754 -0.00042151299 -0.00044639126 + 37950 -6246.0524 -6253.472 7.4195698 3685.4125 628.58084 -10567.465 0 355.58742 -0.00047216324 -0.00049570113 + 37960 -6246.2595 -6253.4259 7.1664124 3685.9129 627.12475 -10566.464 0 343.45469 -0.00061675586 -0.00063713756 + 37970 -6246.4857 -6253.2663 6.7805877 3687.5421 625.42286 -10566.231 0 324.96381 -0.00081454325 -0.00083138278 + 37980 -6246.7083 -6253.0254 6.3171459 3689.6125 623.85664 -10566.495 0 302.75308 -0.001011482 -0.0010256096 + 37990 -6246.9088 -6252.7576 5.8487923 3691.3972 622.75089 -10566.906 0 280.30694 -0.0011581136 -0.0011711229 + 38000 -6247.0797 -6252.526 5.4462673 3692.3722 622.28215 -10567.18 0 261.01569 -0.0012246166 -0.0012380321 + 38010 -6247.2258 -6252.3824 5.1565912 3692.3596 622.44205 -10567.184 0 247.13278 -0.001207849 -0.0012222151 + 38020 -6247.3572 -6252.3595 5.002217 3691.5244 623.06323 -10566.947 0 239.73431 -0.0011281675 -0.0011429211 + 38030 -6247.4785 -6252.4733 4.9948285 3690.2545 623.89644 -10566.624 0 239.38021 -0.001018404 -0.0010327798 + 38040 -6247.587 -6252.7227 5.1356772 3689.0016 624.70959 -10566.434 0 246.13047 -0.00091067657 -0.00092464353 + 38050 -6247.6815 -6253.0793 5.3978288 3688.1507 625.36821 -10566.598 0 258.69424 -0.00082641103 -0.00084056751 + 38060 -6247.7686 -6253.4872 5.7185594 3687.9386 625.86274 -10567.288 0 274.06545 -0.00077221336 -0.00078692089 + 38070 -6247.8596 -6253.8798 6.0201819 3688.4207 626.27475 -10568.575 0 288.5209 -0.0007418175 -0.00075675717 + 38080 -6247.9619 -6254.2014 6.2394841 3689.4914 626.70619 -10570.399 0 299.03109 -0.00072284159 -0.00073745592 + 38090 -6248.0762 -6254.4136 6.337365 3690.95 627.21126 -10572.575 0 303.72209 -0.00070539579 -0.00071950066 + 38100 -6248.1998 -6254.4923 6.2925209 3692.5761 627.76221 -10574.831 0 301.57291 -0.00068810813 -0.00070201059 + 38110 -6248.3274 -6254.4303 6.1029037 3694.1711 628.25877 -10576.86 0 292.48539 -0.00067816346 -0.00069252675 + 38120 -6248.4512 -6254.2451 5.7938831 3695.558 628.57131 -10578.374 0 277.67539 -0.00068588566 -0.00070166538 + 38130 -6248.5648 -6253.9739 5.4090356 3696.5671 628.59744 -10579.138 0 259.23134 -0.00071779282 -0.00073582618 + 38140 -6248.6702 -6253.6564 4.9861338 3697.0304 628.30783 -10578.995 0 238.96351 -0.00077174895 -0.0007917654 + 38150 -6248.7753 -6253.3297 4.5544038 3696.7867 627.76216 -10577.879 0 218.27259 -0.00083549444 -0.00085559658 + 38160 -6248.8806 -6253.0429 4.162299 3695.7094 627.08872 -10575.841 0 199.48072 -0.00088908188 -0.00090686956 + 38170 -6248.9711 -6252.8626 3.8915593 3693.7834 626.43638 -10573.082 0 186.50536 -0.00091197015 -0.00092658478 + 38180 -6249.0254 -6252.8478 3.8223964 3691.2123 625.91699 -10569.977 0 183.19068 -0.00089334385 -0.00090630045 + 38190 -6249.0325 -6253.0122 3.9797087 3688.4766 625.55869 -10567.047 0 190.72997 -0.00084038716 -0.00085427502 + 38200 -6248.9973 -6253.3139 4.3165128 3686.2598 625.29019 -10564.864 0 206.87151 -0.00077862951 -0.00079502609 + 38210 -6248.9325 -6253.6792 4.7467022 3685.2448 624.97005 -10563.894 0 227.4886 -0.00074281427 -0.00076130198 + 38220 -6248.8448 -6254.0362 5.1914028 3685.8658 624.45808 -10564.36 0 248.80115 -0.00076223121 -0.00078106469 + 38230 -6248.7301 -6254.3335 5.6033693 3688.1241 623.70292 -10566.16 0 268.5449 -0.00084703952 -0.00086463122 + 38240 -6248.5761 -6254.5384 5.9623501 3691.5379 622.80563 -10568.882 0 285.74927 -0.00098123736 -0.00099730823 + 38250 -6248.3717 -6254.6258 6.2540562 3695.2494 622.02386 -10571.899 0 299.72946 -0.0011251426 -0.0011408119 + 38260 -6248.1178 -6254.5681 6.4503268 3698.2596 621.70508 -10574.533 0 309.13585 -0.0012268296 -0.0012435783 + 38270 -6247.8298 -6254.3391 6.5093263 3699.7183 622.16736 -10576.225 0 311.96344 -0.0012387118 -0.0012569536 + 38280 -6247.5293 -6253.936 6.4067309 3699.1774 623.5701 -10576.683 0 307.04649 -0.0011335624 -0.0011521404 + 38290 -6247.2266 -6253.4055 6.1788857 3696.7327 625.82541 -10575.964 0 296.12687 -0.00091492706 -0.00093229701 + 38300 -6246.9121 -6252.8431 5.9310102 3693.0306 628.58787 -10574.462 0 284.24729 -0.00061942209 -0.00063554013 + 38310 -6246.5657 -6252.3522 5.7865237 3689.1399 631.32982 -10572.822 0 277.32269 -0.00031037625 -0.00032726288 + 38320 -6246.1768 -6251.9935 5.8167155 3686.2928 633.47671 -10571.763 0 278.76964 -6.3021208e-05 -8.3223917e-05 + 38330 -6245.7539 -6251.769 6.015145 3685.5269 634.5582 -10571.854 0 288.2795 5.6753103e-05 3.2316879e-05 + 38340 -6245.3159 -6251.6493 6.3333572 3687.3233 634.33245 -10573.305 0 303.53002 1.4188431e-05 -1.307219e-05 + 38350 -6244.8764 -6251.6106 6.7341651 3691.3869 632.85234 -10575.85 0 322.73898 -0.00018069593 -0.00020833152 + 38360 -6244.4361 -6251.6493 7.2132014 3696.6786 630.4565 -10578.784 0 345.69709 -0.00047425746 -0.00050082401 + 38370 -6243.9889 -6251.7673 7.7784004 3701.7045 627.68523 -10581.157 0 372.78459 -0.00078549998 -0.00081177713 + 38380 -6243.538 -6251.9468 8.4088361 3704.969 625.14108 -10582.057 0 402.99861 -0.0010313493 -0.0010598553 + 38390 -6243.1095 -6252.1325 9.0229121 3705.438 623.33152 -10580.902 0 432.42857 -0.0011517065 -0.0011846392 + 38400 -6242.7544 -6252.24 9.4855135 3702.8527 622.53883 -10577.631 0 454.59903 -0.0011257535 -0.0011626036 + 38410 -6242.5264 -6252.1953 9.6689971 3697.788 622.75604 -10572.739 0 463.39259 -0.00097466249 -0.0010115017 + 38420 -6242.4475 -6251.988 9.5404044 3691.452 623.70875 -10567.149 0 457.22971 -0.00075129126 -0.00078297926 + 38430 -6242.4904 -6251.6947 9.2043501 3685.3321 624.9565 -10561.983 0 441.1241 -0.00052241031 -0.00054649001 + 38440 -6242.597 -6251.4436 8.8466342 3680.8342 626.04176 -10558.32 0 423.98035 -0.00035056249 -0.00036949846 + 38450 -6242.7247 -6251.335 8.6103303 3678.9966 626.63747 -10556.969 0 412.65534 -0.00027985464 -0.00029924721 + 38460 -6242.876 -6251.3857 8.509773 3680.2818 626.64378 -10558.311 0 407.83607 -0.00032621541 -0.00035036028 + 38470 -6243.088 -6251.541 8.4529979 3684.4457 626.20365 -10562.19 0 405.11509 -0.00047239396 -0.00050108377 + 38480 -6243.3956 -6251.7305 8.334944 3690.5449 625.63835 -10567.914 0 399.45729 -0.00067039117 -0.00069940157 + 38490 -6243.8019 -6251.9142 8.1123115 3697.1472 625.32995 -10574.391 0 388.78749 -0.0008538349 -0.00087818301 + 38500 -6244.2753 -6252.0905 7.8152033 3702.7168 625.59016 -10580.397 0 374.54839 -0.0009583525 -0.00097572388 + 38510 -6244.7679 -6252.2757 7.5078162 3706.0552 626.55477 -10584.886 0 359.81668 -0.00094325958 -0.0009554578 + 38520 -6245.2423 -6252.4726 7.2303228 3706.6439 628.13397 -10587.25 0 346.51764 -0.0008063421 -0.00081788884 + 38530 -6245.6883 -6252.652 6.9637177 3704.7618 630.03106 -10587.445 0 333.74042 -0.00058524204 -0.0006000504 + 38540 -6246.1164 -6252.7718 6.6553396 3701.3229 631.82204 -10585.917 0 318.96122 -0.00034380748 -0.0003626084 + 38550 -6246.5326 -6252.8209 6.288335 3697.5101 633.07282 -10583.404 0 301.3723 -0.0001491492 -0.00016993037 + 38560 -6246.9234 -6252.8415 5.9181055 3694.3829 633.46217 -10580.686 0 283.62882 -5.0374932e-05 -7.1029459e-05 + 38570 -6247.2674 -6252.8955 5.6281335 3692.6229 632.87284 -10578.391 0 269.73174 -6.7568586e-05 -8.7673803e-05 + 38580 -6247.5557 -6253.012 5.4563331 3692.4514 631.41763 -10576.881 0 261.4981 -0.00019167324 -0.00021181698 + 38590 -6247.7959 -6253.1742 5.3782665 3693.6592 629.38908 -10576.223 0 257.75671 -0.00039088532 -0.00041114883 + 38600 -6247.9977 -6253.3543 5.3566262 3695.7042 627.15664 -10576.215 0 256.71958 -0.00062032626 -0.00064016101 + 38610 -6248.161 -6253.5462 5.3852337 3697.8762 625.06022 -10576.483 0 258.09061 -0.00083397815 -0.00085335998 + 38620 -6248.2813 -6253.7566 5.475266 3699.51 623.34392 -10576.61 0 262.40547 -0.00099653068 -0.0010165012 + 38630 -6248.3624 -6253.9752 5.6128299 3700.1657 622.14304 -10576.284 0 268.9983 -0.0010904461 -0.0011122043 + 38640 -6248.4182 -6254.1648 5.7465303 3699.7019 621.50808 -10575.375 0 275.40598 -0.0011151407 -0.0011388318 + 38650 -6248.4645 -6254.2795 5.8149909 3698.2436 621.43979 -10573.963 0 278.68699 -0.001080245 -0.0011047415 + 38660 -6248.5095 -6254.2886 5.7791185 3696.1057 621.91563 -10572.31 0 276.96779 -0.00099822871 -0.0010218372 + 38670 -6248.5524 -6254.1875 5.635071 3693.7203 622.89733 -10570.805 0 270.06422 -0.00088050904 -0.00090182144 + 38680 -6248.5861 -6253.9977 5.411589 3691.5772 624.31885 -10569.894 0 259.35371 -0.00073784902 -0.0007563334 + 38690 -6248.6006 -6253.7579 5.1573177 3690.1651 626.06441 -10569.987 0 247.1676 -0.00058340341 -0.00059961882 + 38700 -6248.5893 -6253.5073 4.9180197 3689.9119 627.95387 -10571.373 0 235.6991 -0.00043567545 -0.00045086387 + 38710 -6248.5543 -6253.2697 4.7154118 3691.1143 629.75051 -10574.135 0 225.98899 -0.00031848493 -0.00033355789 + 38720 -6248.5054 -6253.0555 4.5500334 3693.8485 631.19606 -10578.1 0 218.06313 -0.0002562108 -0.00027092149 + 38730 -6248.4498 -6252.881 4.4311567 3697.8785 632.06619 -10582.826 0 212.36589 -0.00026525369 -0.00027851914 + 38740 -6248.3824 -6252.7845 4.4021441 3702.6126 632.23267 -10587.63 0 210.97544 -0.00034547067 -0.0003567298 + 38750 -6248.2878 -6252.8136 4.5257895 3707.1641 631.71387 -10591.692 0 216.90123 -0.00047612373 -0.00048635855 + 38760 -6248.1542 -6252.9885 4.8342983 3710.5297 630.69199 -10594.21 0 231.6867 -0.0006189854 -0.00063020222 + 38770 -6247.9852 -6253.2745 5.2892728 3711.8361 629.47804 -10594.589 0 253.49163 -0.00072818157 -0.00074173722 + 38780 -6247.7988 -6253.5897 5.7909046 3710.5811 628.42126 -10592.592 0 277.53264 -0.00076403752 -0.00077944564 + 38790 -6247.6145 -6253.8445 6.2299706 3706.8066 627.78685 -10588.438 0 298.57515 -0.00070705705 -0.00072245542 + 38800 -6247.4398 -6253.9808 6.5410193 3701.1583 627.64913 -10582.788 0 313.48235 -0.00056764169 -0.00058153414 + 38810 -6247.2677 -6253.9884 6.7206808 3694.8011 627.84991 -10576.639 0 322.09273 -0.00038739102 -0.00040022261 + 38820 -6247.0867 -6253.8914 6.8047443 3689.1821 628.05022 -10571.124 0 326.12153 -0.0002297201 -0.00024402907 + 38830 -6246.8949 -6253.7178 6.8228462 3685.6747 627.86511 -10567.258 0 326.98908 -0.00016107738 -0.00017990275 + 38840 -6246.7101 -6253.4742 6.7641284 3685.1873 627.03317 -10565.695 0 324.17499 -0.00022772235 -0.00025209434 + 38850 -6246.5617 -6253.1505 6.5888133 3687.8465 625.55051 -10566.548 0 315.7729 -0.00043538294 -0.00046276082 + 38860 -6246.4673 -6252.7579 6.2906211 3692.8742 623.70903 -10569.341 0 301.48186 -0.00073982084 -0.00076532249 + 38870 -6246.4092 -6252.3664 5.9571231 3698.7558 622.01986 -10573.142 0 285.49876 -0.0010547291 -0.0010749521 + 38880 -6246.3386 -6252.0897 5.7510389 3703.7041 621.05378 -10576.848 0 275.62205 -0.0012778185 -0.0012941729 + 38890 -6246.2114 -6252.0122 5.8008087 3706.2744 621.25836 -10579.545 0 278.0073 -0.0013269095 -0.0013449554 + 38900 -6246.0256 -6252.1184 6.0927584 3705.8694 622.80875 -10580.797 0 291.99917 -0.0011707286 -0.0011954878 + 38910 -6245.8241 -6252.2999 6.475813 3702.9044 625.53149 -10580.736 0 310.35729 -0.00084031643 -0.00087170893 + 38920 -6245.6565 -6252.4411 6.7846802 3698.5892 628.92674 -10579.957 0 325.15994 -0.00041686688 -0.00044964206 + 38930 -6245.5353 -6252.5029 6.967606 3694.4727 632.29367 -10579.269 0 333.92677 -3.6218872e-06 -3.1884857e-05 + 38940 -6245.4288 -6252.5288 7.1000377 3691.9667 634.9282 -10579.424 0 340.27364 0.00030483138 0.00028280239 + 38950 -6245.2953 -6252.575 7.2797108 3691.9891 636.32557 -10580.89 0 348.88459 0.00044550251 0.00042656268 + 38960 -6245.1246 -6252.6373 7.5126979 3694.7634 636.31284 -10583.714 0 360.05064 0.00039894043 0.00037882394 + 38970 -6244.9466 -6252.65 7.7033519 3699.7626 635.06673 -10587.479 0 369.18785 0.00019125124 0.00016888566 + 38980 -6244.7995 -6252.5555 7.7560177 3705.8042 633.01997 -10591.38 0 371.71189 -0.00011333896 -0.00013514283 + 38990 -6244.6905 -6252.375 7.6845295 3711.3278 630.70227 -10594.405 0 368.28577 -0.00043006819 -0.00044799755 + 39000 -6244.5896 -6252.2063 7.6167358 3714.8257 628.58049 -10595.612 0 365.03671 -0.00067889828 -0.00069295891 + 39010 -6244.4606 -6252.1481 7.687579 3715.2981 626.95131 -10594.398 0 368.43192 -0.00080893483 -0.00082281992 + 39020 -6244.2985 -6252.2219 7.9234406 3712.5487 625.90817 -10590.679 0 379.73573 -0.00081138853 -0.0008291491 + 39030 -6244.1382 -6252.358 8.2198146 3707.2034 625.37284 -10584.934 0 393.93964 -0.00071592842 -0.00073824135 + 39040 -6244.0292 -6252.4501 8.4208862 3700.4678 625.16641 -10578.084 0 403.57612 -0.00057408272 -0.00059750179 + 39050 -6244.0003 -6252.4279 8.4276442 3693.7534 625.09226 -10571.274 0 403.9 -0.0004386924 -0.00045844233 + 39060 -6244.0406 -6252.2946 8.2539301 3688.3238 625.00749 -10565.626 0 395.57464 -0.00034789571 -0.00036190713 + 39070 -6244.112 -6252.1108 7.9987911 3685.0659 624.86579 -10562.042 0 383.34695 -0.00031805746 -0.00032910947 + 39080 -6244.1826 -6251.9448 7.7622466 3684.4088 624.72274 -10561.076 0 372.01041 -0.00034549732 -0.00035971632 + 39090 -6244.2548 -6251.8241 7.5693162 3686.3426 624.70538 -10562.872 0 362.7641 -0.00041336248 -0.00043594348 + 39100 -6244.3657 -6251.7279 7.3622216 3690.4651 624.9594 -10567.152 0 352.83897 -0.0004987048 -0.00052991936 + 39110 -6244.5558 -6251.6236 7.0677232 3696.0298 625.59394 -10573.247 0 338.72495 -0.00057669145 -0.00061127743 + 39120 -6244.8339 -6251.5175 6.6835627 3702.0295 626.64203 -10580.189 0 320.31382 -0.00062265815 -0.00065325545 + 39130 -6245.1641 -6251.474 6.3098754 3707.3655 628.0455 -10586.885 0 302.40463 -0.00061516511 -0.00063737277 + 39140 -6245.4895 -6251.5824 6.0929101 3711.1034 629.66417 -10592.35 0 292.00644 -0.00054205118 -0.00055732157 + 39150 -6245.7727 -6251.8907 6.1180299 3712.7343 631.30336 -10595.928 0 293.21032 -0.00040749335 -0.00042158281 + 39160 -6246.0228 -6252.3607 6.3379086 3712.3146 632.75058 -10597.426 0 303.74814 -0.00023478084 -0.00025298677 + 39170 -6246.2845 -6252.8874 6.6028287 3710.3974 633.81065 -10597.095 0 316.4446 -6.0739536e-05 -8.3943582e-05 + 39180 -6246.5985 -6253.369 6.7704882 3707.7876 634.33275 -10595.489 0 324.47978 7.6340966e-05 5.1535099e-05 + 39190 -6246.9688 -6253.7633 6.7945302 3705.2611 634.22822 -10593.253 0 325.63201 0.00014814914 0.0001257736 + 39200 -6247.365 -6254.0798 6.7147641 3703.3795 633.48125 -10590.941 0 321.80917 0.00014109394 0.00012238587 + 39210 -6247.7519 -6254.3263 6.5744171 3702.4336 632.15289 -10588.913 0 315.08296 5.4594275e-05 3.7754192e-05 + 39220 -6248.1135 -6254.4704 6.3569663 3702.4562 630.37804 -10587.305 0 304.66149 -0.0001020467 -0.00011935081 + 39230 -6248.4517 -6254.4542 6.0025178 3703.2441 628.35441 -10586.053 0 287.67433 -0.00031032077 -0.00032854367 + 39240 -6248.7679 -6254.2462 5.4782853 3704.3878 626.32231 -10584.956 0 262.55017 -0.00054172485 -0.0005592765 + 39250 -6249.0504 -6253.8812 4.8307897 3705.3485 624.53483 -10583.765 0 231.51855 -0.00075940235 -0.00077437864 + 39260 -6249.28 -6253.4564 4.1763801 3705.5996 623.22111 -10582.277 0 200.15557 -0.00092444726 -0.00093633737 + 39270 -6249.4443 -6253.0918 3.6474975 3704.7985 622.54944 -10580.44 0 174.80855 -0.0010051951 -0.001015166 + 39280 -6249.5465 -6252.887 3.3404761 3702.9223 622.59837 -10578.408 0 160.09436 -0.00098563168 -0.00099551696 + 39290 -6249.6012 -6252.8943 3.2930975 3700.3133 623.34206 -10576.55 0 157.82371 -0.00086984924 -0.00088089495 + 39300 -6249.6251 -6253.1153 3.4901425 3697.616 624.65142 -10575.383 0 167.26721 -0.00068159111 -0.00069387555 + 39310 -6249.6273 -6253.5075 3.8802661 3695.6226 626.31071 -10575.441 0 185.96412 -0.00045949315 -0.0004722467 + 39320 -6249.607 -6253.996 4.388913 3695.0696 628.04974 -10577.115 0 210.34134 -0.00024923284 -0.00026160662 + 39330 -6249.5591 -6254.4828 4.9237292 3696.4367 629.59134 -10580.511 0 235.97273 -9.3871727e-05 -0.00010547809 + 39340 -6249.4801 -6254.8633 5.3832606 3699.7925 630.70909 -10585.365 0 257.99605 -2.380131e-05 -3.4758677e-05 + 39350 -6249.3705 -6255.0515 5.6809186 3704.7226 631.28231 -10591.056 0 272.2615 -4.8298137e-05 -5.9121278e-05 + 39360 -6249.2315 -6255.0085 5.7770175 3710.3707 631.33065 -10596.71 0 276.86709 -0.00015146798 -0.00016317839 + 39370 -6249.0621 -6254.7548 5.6927411 3715.6051 631.01203 -10601.372 0 272.82809 -0.00029512659 -0.00030932973 + 39380 -6248.8634 -6254.3528 5.4893929 3719.2823 630.57733 -10604.212 0 263.08251 -0.00042902668 -0.00044731547 + 39390 -6248.6452 -6253.8747 5.229563 3720.5314 630.28907 -10604.695 0 250.63 -0.00050562571 -0.00052826871 + 39400 -6248.4243 -6253.3806 4.956306 3718.9715 630.32723 -10602.679 0 237.53399 -0.00049445665 -0.00051938538 + 39410 -6248.2118 -6252.9195 4.7076994 3714.8068 630.71465 -10598.441 0 225.61937 -0.00039153011 -0.00041486683 + 39420 -6247.9977 -6252.5445 4.5467831 3708.7953 631.29062 -10592.63 0 217.90736 -0.00022144822 -0.00023972169 + 39430 -6247.7453 -6252.3156 4.5703334 3702.1158 631.74576 -10586.177 0 219.03602 -3.2278492e-05 -4.5006667e-05 + 39440 -6247.403 -6252.2806 4.8775199 3696.1566 631.71025 -10580.147 0 233.75812 0.00011539935 0.00010461341 + 39450 -6246.9305 -6252.4398 5.5093204 3692.2407 630.87305 -10575.554 0 264.03755 0.00016332763 0.00014831175 + 39460 -6246.3304 -6252.7215 6.3911452 3691.3101 629.10188 -10573.133 0 306.29954 7.2066114e-05 4.7881603e-05 + 39470 -6245.6665 -6252.9912 7.3246354 3693.6217 626.53127 -10573.144 0 351.03763 -0.00016350876 -0.0001965064 + 39480 -6245.0427 -6253.1107 8.0680543 3698.5482 623.5842 -10575.243 0 386.66643 -0.00050367451 -0.00053878364 + 39490 -6244.5391 -6253.022 8.4828969 3704.6166 620.90379 -10578.542 0 406.54802 -0.00086453714 -0.0008928779 + 39500 -6244.1579 -6252.7879 8.6299776 3709.8853 619.20065 -10581.874 0 413.59695 -0.0011362799 -0.0011540475 + 39510 -6243.8381 -6252.5343 8.6962308 3712.6143 619.0569 -10584.206 0 416.77217 -0.0012187353 -0.0012311794 + 39520 -6243.5339 -6252.3241 8.7902789 3711.968 620.74425 -10585.036 0 421.27949 -0.0010618256 -0.0010791872 + 39530 -6243.2738 -6252.0836 8.8097872 3708.389 624.10756 -10584.58 0 422.21444 -0.00069028027 -0.00071848934 + 39540 -6243.1346 -6251.6759 8.5412379 3703.4164 628.55512 -10583.647 0 409.34405 -0.00019739459 -0.0002322798 + 39550 -6243.1539 -6251.0661 7.9122854 3699.0488 633.18155 -10583.296 0 379.20111 0.00028983696 0.00025891927 + 39560 -6243.2772 -6250.4193 7.1421939 3697.0025 637.0094 -10584.431 0 342.29401 0.00065520671 0.00063563897 + 39570 -6243.3938 -6250.0276 6.6338473 3698.2031 639.27587 -10587.507 0 317.93118 0.00082626256 0.00081537776 + 39580 -6243.4221 -6250.121 6.6988762 3702.6259 639.65657 -10592.404 0 321.04773 0.0007865745 0.0007736986 + 39590 -6243.3724 -6250.7088 7.3364197 3709.3993 638.34066 -10598.449 0 351.6024 0.0005710231 0.00054645662 + 39600 -6243.3425 -6251.5676 8.2250575 3717.0316 635.93288 -10604.532 0 394.1909 0.00025202621 0.00021559913 + 39610 -6243.4476 -6252.3847 8.9371287 3723.7028 633.22142 -10609.309 0 428.31735 -7.8607615e-05 -0.00011667167 + 39620 -6243.7265 -6252.9525 9.2259987 3727.6442 630.90089 -10611.498 0 442.16162 -0.00033177659 -0.00035920183 + 39630 -6244.1057 -6253.2626 9.1568482 3727.6178 629.36068 -10610.241 0 438.84754 -0.00044641848 -0.0004598491 + 39640 -6244.4628 -6253.4285 8.9656796 3723.3853 628.619 -10605.433 0 429.68567 -0.00041130658 -0.00042002292 + 39650 -6244.7333 -6253.5197 8.7863727 3715.9193 628.40744 -10597.846 0 421.09228 -0.0002710268 -0.00028952851 + 39660 -6244.9573 -6253.4733 8.5159997 3707.1483 628.34237 -10588.964 0 408.13449 -0.00010779259 -0.00014358406 + 39670 -6245.2262 -6253.1671 7.9409719 3699.2709 628.09916 -10580.537 0 380.57593 -4.5017224e-06 -5.1688826e-05 + 39680 -6245.5869 -6252.5748 6.987884 3693.9697 627.52817 -10574.073 0 334.89861 -7.6752762e-06 -5.1494269e-05 + 39690 -6245.9946 -6251.8558 5.8611905 3691.9263 626.68586 -10570.468 0 280.90113 -0.00011029931 -0.00013832182 + 39700 -6246.3462 -6251.2994 4.9532305 3692.8396 625.78755 -10569.927 0 237.3866 -0.00026231117 -0.00027329136 + 39710 -6246.5544 -6251.1596 4.6051944 3695.8373 625.11242 -10572.109 0 220.70676 -0.00040004508 -0.00040412172 + 39720 -6246.6065 -6251.5006 4.8940355 3699.9797 624.90088 -10576.381 0 234.54964 -0.0004768848 -0.0004876239 + 39730 -6246.5723 -6252.161 5.5887719 3704.573 625.27741 -10582.011 0 267.84531 -0.00047946028 -0.00050391898 + 39740 -6246.5593 -6252.8656 6.3063776 3709.1865 626.2189 -10588.271 0 302.237 -0.00042363511 -0.00045784264 + 39750 -6246.6401 -6253.3988 6.7587188 3713.4803 627.57483 -10594.454 0 323.91573 -0.00033657348 -0.00036964527 + 39760 -6246.8051 -6253.7117 6.9065686 3717.0512 629.13002 -10599.893 0 331.00152 -0.00023859107 -0.00026181082 + 39770 -6246.9824 -6253.8902 6.9078032 3719.4513 630.68432 -10604.026 0 331.06069 -0.00013605201 -0.00014930559 + 39780 -6247.1061 -6254.0278 6.9216769 3720.3611 632.11413 -10606.503 0 331.7256 -2.6440731e-05 -3.6998345e-05 + 39790 -6247.1714 -6254.1207 6.9492667 3719.769 633.38587 -10607.276 0 333.04785 9.1948547e-05 7.6553541e-05 + 39800 -6247.2296 -6254.075 6.8454587 3718.0105 634.51303 -10606.599 0 328.07279 0.00021377811 0.00019219241 + 39810 -6247.3317 -6253.8098 6.4781284 3715.6451 635.47818 -10604.933 0 310.46826 0.00032614872 0.00030349878 + 39820 -6247.4776 -6253.3564 5.8787489 3713.2698 636.16704 -10602.793 0 281.74263 0.00041076403 0.00039318372 + 39830 -6247.6162 -6252.8618 5.2456145 3711.3885 636.36209 -10600.612 0 251.39928 0.00044580116 0.00043463098 + 39840 -6247.6912 -6252.498 4.8068246 3710.3609 635.81216 -10598.671 0 230.37001 0.00040848263 0.00039922711 + 39850 -6247.6854 -6252.357 4.6715351 3710.3687 634.35034 -10597.076 0 223.88617 0.00028151524 0.00026787519 + 39860 -6247.6295 -6252.4149 4.785391 3711.3416 632.00546 -10595.762 0 229.34279 6.379066e-05 4.2893035e-05 + 39870 -6247.5739 -6252.5788 5.0048693 3712.8758 629.054 -10594.509 0 239.86142 -0.0002193693 -0.00024480216 + 39880 -6247.5496 -6252.7681 5.2184947 3714.2409 625.98417 -10592.993 0 250.09955 -0.00051389222 -0.00053788374 + 39890 -6247.5457 -6252.9672 5.4215292 3714.5603 623.379 -10590.907 0 259.8301 -0.00074777273 -0.00076592134 + 39900 -6247.5195 -6253.2116 5.6921022 3713.1474 621.75859 -10588.118 0 272.79748 -0.00085369776 -0.00086669509 + 39910 -6247.4324 -6253.5235 6.0910934 3709.8687 621.4362 -10584.828 0 291.91937 -0.00079496884 -0.00080804174 + 39920 -6247.2841 -6253.853 6.5689233 3705.3448 622.43368 -10581.631 0 314.81966 -0.00058280412 -0.00060148674 + 39930 -6247.1171 -6254.0811 6.9639569 3700.849 624.47855 -10579.409 0 333.75189 -0.00027582751 -0.00030151796 + 39940 -6246.9847 -6254.0901 7.1054594 3697.9047 627.08188 -10579.077 0 340.53348 3.9413293e-05 1.0330357e-05 + 39950 -6246.9078 -6253.846 6.9382467 3697.7469 629.67729 -10581.27 0 332.51971 0.00027866075 0.00025144732 + 39960 -6246.8615 -6253.4212 6.5597198 3700.8858 631.78385 -10586.091 0 314.37858 0.00038770874 0.00036487508 + 39970 -6246.8014 -6252.9422 6.1408536 3706.9362 633.14192 -10593.02 0 294.30416 0.00035733505 0.00033724169 + 39980 -6246.7008 -6252.5117 5.8108824 3714.7289 633.77361 -10601.014 0 278.49009 0.00022260204 0.00020201659 + 39990 -6246.5638 -6252.1737 5.60989 3722.6154 633.94298 -10608.732 0 268.85741 4.9797366e-05 2.7574678e-05 + 40000 -6246.4024 -6251.9402 5.5378148 3728.8635 634.02802 -10614.832 0 265.40316 -8.4025816e-05 -0.00010579968 + 40010 -6246.2029 -6251.8376 5.6347773 3732.0705 634.35123 -10618.259 0 270.05015 -0.00011442125 -0.00013281202 + 40020 -6245.9128 -6251.9166 6.0037971 3731.5255 635.03286 -10618.475 0 287.73564 -1.0921348e-05 -2.5648405e-05 + 40030 -6245.4596 -6252.2046 6.7449716 3727.4336 635.92252 -10615.561 0 323.25688 0.00020960907 0.00019491825 + 40040 -6244.795 -6252.6409 7.8458852 3720.9113 636.63523 -10610.187 0 376.01884 0.00048303512 0.00046321135 + 40050 -6243.9423 -6253.0515 9.1092498 3713.7092 636.68316 -10603.444 0 436.56636 0.00071404289 0.00068676736 + 40060 -6243.0113 -6253.2057 10.194358 3707.6905 635.66395 -10596.56 0 488.57082 0.00080700404 0.00077561398 + 40070 -6242.1447 -6252.9364 10.791705 3704.208 633.44062 -10590.585 0 517.19907 0.00070383336 0.00067526416 + 40080 -6241.4259 -6252.2489 10.822999 3703.6408 630.23831 -10586.128 0 518.69882 0.00041220079 0.00039059113 + 40090 -6240.8416 -6251.3228 10.481253 3705.342 626.61397 -10583.279 0 502.32046 6.5783312e-06 -1.1897886e-05 + 40100 -6240.3403 -6250.3928 10.052458 3708.0288 623.31454 -10581.736 0 481.77018 -0.00040028879 -0.0004254094 + 40110 -6239.9194 -6249.6062 9.6868011 3710.3684 621.07859 -10581.053 0 464.24586 -0.00069863475 -0.00073739491 + 40120 -6239.6415 -6248.9883 9.346854 3711.4342 620.43799 -10580.86 0 447.95369 -0.00081393734 -0.00086290369 + 40130 -6239.5633 -6248.5385 8.9752475 3710.8791 621.56745 -10580.985 0 430.14422 -0.00072001908 -0.00076684545 + 40140 -6239.657 -6248.3428 8.685817 3708.9156 624.22639 -10581.485 0 416.27309 -0.00043752434 -0.00047139196 + 40150 -6239.8153 -6248.5608 8.7454221 3706.2575 627.82166 -10582.64 0 419.1297 -2.7312282e-05 -4.8939522e-05 + 40160 -6239.9465 -6249.2783 9.3317952 3704.0426 631.577 -10584.898 0 447.23199 0.00041835464 0.00039671721 + 40170 -6240.0733 -6250.3677 10.294438 3703.6053 634.75192 -10588.725 0 493.36723 0.00079243654 0.00075743525 + 40180 -6240.3405 -6251.5022 11.161727 3706.0105 636.83793 -10594.351 0 534.93257 0.001002219 0.0009512013 + 40190 -6240.9066 -6252.3356 11.429007 3711.492 637.67292 -10601.5 0 547.74212 0.0010041084 0.0009479462 + 40200 -6241.7979 -6252.7119 10.914022 3719.1298 637.4402 -10609.282 0 523.06117 0.00082529426 0.00077953824 + 40210 -6242.8628 -6252.7424 9.8796146 3727.0487 636.55625 -10616.347 0 473.48657 0.00055416499 0.00052617805 + 40220 -6243.8775 -6252.6852 8.8076029 3733.1185 635.49623 -10621.3 0 422.10975 0.00029976772 0.0002832294 + 40230 -6244.7012 -6252.7266 8.0253465 3735.7932 634.63061 -10623.15 0 384.61964 0.00014325078 0.00012452414 + 40240 -6245.3365 -6252.8471 7.5105516 3734.6349 634.12719 -10621.609 0 359.94777 0.00010931214 7.9413489e-05 + 40250 -6245.8699 -6252.8785 7.008679 3730.2946 633.93143 -10617.105 0 335.89522 0.00016913647 0.00013083278 + 40260 -6246.3699 -6252.6897 6.3198333 3724.0776 633.81278 -10610.58 0 302.88187 0.00026552678 0.00023014295 + 40270 -6246.8307 -6252.3304 5.4996835 3717.4166 633.45983 -10603.207 0 263.57569 0.00034164256 0.00031902882 + 40280 -6247.1896 -6252.0133 4.8236664 3711.5238 632.60241 -10596.139 0 231.17716 0.00035910596 0.00034940857 + 40290 -6247.3915 -6251.9609 4.5694619 3707.278 631.1264 -10590.365 0 218.99425 0.00030252913 0.00029618964 + 40300 -6247.4442 -6252.2474 4.8032541 3705.2237 629.14123 -10586.612 0 230.19889 0.00017639482 0.00016186511 + 40310 -6247.4267 -6252.7541 5.3273244 3705.5418 626.97141 -10585.267 0 255.31528 1.3590574e-06 -2.5731524e-05 + 40320 -6247.444 -6253.2624 5.8184846 3707.965 625.06879 -10586.296 0 278.85443 -0.00018771668 -0.00022102779 + 40330 -6247.5546 -6253.6107 6.0560855 3711.7433 623.87322 -10589.227 0 290.2416 -0.00034510055 -0.00037266007 + 40340 -6247.7259 -6253.7951 6.0691527 3715.7908 623.67325 -10593.259 0 290.86785 -0.00042375618 -0.00043809642 + 40350 -6247.8599 -6253.9359 6.0759579 3719.0474 624.52326 -10597.507 0 291.194 -0.00039205791 -0.00039724505 + 40360 -6247.8778 -6254.1312 6.2533745 3720.9085 626.2476 -10601.287 0 299.69679 -0.00025060546 -0.00025973245 + 40370 -6247.7941 -6254.3319 6.5378327 3721.4593 628.51923 -10604.31 0 313.32963 -3.6926468e-05 -6.1513317e-05 + 40380 -6247.7105 -6254.3619 6.651406 3721.3307 630.96935 -10606.662 0 318.7727 0.00018941291 0.00014923588 + 40390 -6247.7305 -6254.0754 6.3449079 3721.254 633.28163 -10608.611 0 304.08359 0.00037518695 0.00033107391 + 40400 -6247.8691 -6253.5094 5.6402213 3721.6235 635.24267 -10610.376 0 270.31105 0.00049747765 0.00046344282 + 40410 -6248.0424 -6252.8904 4.8480127 3722.3602 636.74252 -10611.993 0 232.34397 0.00056690357 0.00054836704 + 40420 -6248.1393 -6252.4857 4.3463955 3723.1236 637.73802 -10613.347 0 208.30366 0.00060920045 0.00059970295 + 40430 -6248.1064 -6252.4244 4.317981 3723.6526 638.2036 -10614.281 0 206.94188 0.00064029731 0.00062782048 + 40440 -6247.9761 -6252.6328 4.656706 3723.9566 638.09627 -10614.686 0 223.17548 0.00065303496 0.00062979157 + 40450 -6247.8283 -6252.9194 5.091133 3724.2388 637.35477 -10614.513 0 243.99566 0.00062301571 0.00059065603 + 40460 -6247.7238 -6253.1224 5.3985578 3724.6511 635.93758 -10613.711 0 258.72918 0.00052713933 0.00049405708 + 40470 -6247.6613 -6253.2003 5.5389347 3725.0854 633.88339 -10612.169 0 265.45683 0.00036147814 0.00033544218 + 40480 -6247.5871 -6253.2143 5.6271644 3725.1498 631.36312 -10609.727 0 269.68529 0.00014824843 0.00013065207 + 40490 -6247.4428 -6253.2389 5.79607 3724.3418 628.69304 -10606.274 0 277.7802 -6.9871663e-05 -8.4009048e-05 + 40500 -6247.2111 -6253.2866 6.0754803 3722.3041 626.29309 -10601.884 0 291.17111 -0.00024307939 -0.00026020488 + 40510 -6246.9234 -6253.3041 6.3807436 3719.0239 624.59421 -10596.922 0 305.80104 -0.0003290007 -0.00035173695 + 40520 -6246.6286 -6253.232 6.6034132 3714.8936 623.91896 -10592.045 0 316.47261 -0.0003043205 -0.00033001039 + 40530 -6246.3523 -6253.0661 6.7137753 3710.6465 624.37579 -10588.088 0 321.76178 -0.00017182721 -0.00019552547 + 40540 -6246.0787 -6252.8666 6.7879056 3707.2196 625.80987 -10585.896 0 325.31452 3.8109633e-05 1.9137139e-05 + 40550 -6245.7663 -6252.713 6.9467692 3705.5782 627.83716 -10586.128 0 332.92816 0.0002728587 0.00025670537 + 40560 -6245.3818 -6252.6431 7.2612726 3706.5039 629.95947 -10589.106 0 348.00093 0.00047007993 0.00045140106 + 40570 -6244.9292 -6252.6168 7.6876053 3710.3566 631.72772 -10594.701 0 368.43318 0.00057578156 0.00054970635 + 40580 -6244.456 -6252.5315 8.0754888 3716.8501 632.89783 -10602.279 0 387.02273 0.00056385205 0.00053000712 + 40590 -6244.0269 -6252.2884 8.2615374 3724.9307 633.51567 -10610.735 0 395.93923 0.00045099499 0.00041447136 + 40600 -6243.6747 -6251.8774 8.2026194 3732.8734 633.88655 -10618.637 0 393.11555 0.00029899433 0.00026659545 + 40610 -6243.3711 -6251.4067 8.0356146 3738.6854 634.4309 -10624.523 0 385.11174 0.00019693161 0.00017114694 + 40620 -6243.0541 -6251.0286 7.9744422 3740.7611 635.48332 -10627.273 0 382.18002 0.00022441421 0.00020094714 + 40630 -6242.6934 -6250.8142 8.1207276 3738.5231 637.11783 -10626.455 0 389.19083 0.00041162874 0.00038365048 + 40640 -6242.322 -6250.713 8.3910382 3732.6946 639.06786 -10622.475 0 402.14563 0.00071973848 0.00068458868 + 40650 -6241.9981 -6250.6395 8.6414374 3725.0398 640.77597 -10616.455 0 414.14617 0.0010540745 0.0010151026 + 40660 -6241.7464 -6250.5763 8.8298693 3717.7368 641.56785 -10609.881 0 423.17688 0.0013011118 0.0012632716 + 40670 -6241.5479 -6250.5746 9.0267096 3712.691 640.89675 -10604.162 0 432.61057 0.0013688465 0.0013337758 + 40680 -6241.3818 -6250.6692 9.2874572 3711.0144 638.56616 -10600.25 0 445.10706 0.0012155348 0.0011814295 + 40690 -6241.2663 -6250.8196 9.5532861 3712.7574 634.84206 -10598.419 0 457.84708 0.00086217577 0.00082767078 + 40700 -6241.2519 -6250.9417 9.689852 3716.9254 630.41004 -10598.277 0 464.39208 0.00038888038 0.00035598677 + 40710 -6241.3769 -6250.9975 9.6205937 3721.7928 626.19062 -10598.981 0 461.07283 -8.4761327e-05 -0.0001122156 + 40720 -6241.6345 -6251.0494 9.4149168 3725.4739 623.07471 -10599.598 0 451.21564 -0.0004337832 -0.00045486608 + 40730 -6241.9896 -6251.2153 9.2256972 3726.5953 621.66865 -10599.479 0 442.14718 -0.000568815 -0.00058818834 + 40740 -6242.4353 -6251.552 9.11669 3724.8222 622.13383 -10598.508 0 436.92294 -0.00046854642 -0.00049321712 + 40750 -6243.0181 -6251.9786 8.9604843 3720.9765 624.17027 -10597.125 0 429.43669 -0.00018644974 -0.0002188852 + 40760 -6243.7853 -6252.3335 8.5481238 3716.6521 627.14219 -10596.128 0 409.67406 0.00017478137 0.00013985973 + 40770 -6244.6991 -6252.5144 7.8153442 3713.5219 630.29725 -10596.334 0 374.55515 0.00050775413 0.00047879989 + 40780 -6245.6259 -6252.5575 6.9316834 3712.7225 632.99819 -10598.278 0 332.20516 0.00073797933 0.00071891152 + 40790 -6246.4236 -6252.582 6.1584781 3714.5977 634.88023 -10602.06 0 295.14883 0.00083743881 0.00082463692 + 40800 -6247.0275 -6252.6764 5.6488707 3718.7809 635.88663 -10607.344 0 270.72558 0.00081755551 0.00080352406 + 40810 -6247.46 -6252.8399 5.3798879 3724.4165 636.19859 -10613.455 0 257.83441 0.00071494282 0.0006942052 + 40820 -6247.7848 -6253.0137 5.2288763 3730.3821 636.11363 -10619.509 0 250.59709 0.00057817522 0.00055046413 + 40830 -6248.0579 -6253.1488 5.0909075 3735.4979 635.92361 -10624.57 0 243.98485 0.00045618464 0.00042542325 + 40840 -6248.3037 -6253.2459 4.9422287 3738.7546 635.82353 -10627.824 0 236.85933 0.00038690058 0.00035780374 + 40850 -6248.5187 -6253.343 4.8243165 3739.5365 635.86458 -10628.744 0 231.20831 0.00038736718 0.00036254 + 40860 -6248.6894 -6253.4768 4.7873674 3737.7711 635.95402 -10627.202 0 229.43751 0.00044915409 0.00042829149 + 40870 -6248.8086 -6253.6529 4.8442806 3733.9423 635.89954 -10623.495 0 232.16511 0.0005419007 0.00052287355 + 40880 -6248.8827 -6253.8401 4.9573628 3728.9598 635.48779 -10618.288 0 237.58464 0.00062408152 0.00060482231 + 40890 -6248.9287 -6253.9864 5.0577159 3723.9201 634.5729 -10612.479 0 242.39412 0.00065707725 0.00063705074 + 40900 -6248.963 -6254.0515 5.0885049 3719.8255 633.14138 -10607.018 0 243.8697 0.00061786775 0.00059811837 + 40910 -6248.9885 -6254.0337 5.0451627 3717.3464 631.32872 -10602.709 0 241.79251 0.00050614825 0.00048788304 + 40920 -6248.9942 -6253.9699 4.9756934 3716.7073 629.38627 -10600.063 0 238.46315 0.00034333299 0.0003264042 + 40930 -6248.9675 -6253.903 4.9355912 3717.7167 627.61752 -10599.237 0 236.54122 0.00016434764 0.00014723585 + 40940 -6248.909 -6253.8473 4.9382319 3719.8922 626.30991 -10600.049 0 236.66778 6.6191259e-06 -1.1989497e-05 + 40950 -6248.8338 -6253.7802 4.9464008 3722.6115 625.68197 -10602.074 0 237.05928 -9.8730808e-05 -0.00011832451 + 40960 -6248.7576 -6253.6678 4.9101917 3725.2454 625.85386 -10604.767 0 235.32394 -0.00013121371 -0.00014941398 + 40970 -6248.6814 -6253.4981 4.8166935 3727.2741 626.83658 -10607.609 0 230.84298 -8.2002025e-05 -9.6312549e-05 + 40980 -6248.5861 -6253.2965 4.7104315 3728.3918 628.5314 -10610.22 0 225.75031 4.5749252e-05 3.5727837e-05 + 40990 -6248.443 -6253.1114 4.6683907 3728.5876 630.73733 -10612.436 0 223.73548 0.00023608407 0.00022775671 + 41000 -6248.2323 -6252.9818 4.749553 3728.1629 633.17387 -10614.319 0 227.62523 0.00046043658 0.0004494623 + 41010 -6247.9557 -6252.9149 4.9591684 3727.648 635.52521 -10616.088 0 237.67117 0.00068158553 0.00066444448 + 41020 -6247.6344 -6252.8879 5.253534 3727.6175 637.50009 -10618.006 0 251.77883 0.00086218368 0.00083824679 + 41030 -6247.2948 -6252.8703 5.5755709 3728.4642 638.88742 -10620.222 0 267.21264 0.00097502121 0.00094677732 + 41040 -6246.9531 -6252.8434 5.8903834 3730.2229 639.58527 -10622.652 0 282.30022 0.00101024 0.00098169384 + 41050 -6246.6085 -6252.8057 6.1971539 3732.5267 639.59422 -10624.927 0 297.00239 0.00097611475 0.00095048444 + 41060 -6246.2484 -6252.7624 6.5139998 3734.7183 638.98423 -10626.465 0 312.18742 0.00089336659 0.00087147926 + 41070 -6245.8611 -6252.7125 6.8513745 3736.0717 637.8559 -10626.64 0 328.35631 0.00078608361 0.00076625458 + 41080 -6245.4464 -6252.6454 7.1989332 3736.0293 636.31624 -10624.991 0 345.01327 0.00067378573 0.00065283862 + 41090 -6245.0163 -6252.5535 7.5371759 3734.3676 634.47861 -10621.4 0 361.22376 0.00056808962 0.00054249883 + 41100 -6244.5899 -6252.4422 7.8523506 3731.254 632.48223 -10616.178 0 376.3287 0.00047411687 0.00044086025 + 41110 -6244.1949 -6252.3184 8.1235183 3727.2034 630.51212 -10610.034 0 389.32458 0.00039395219 0.00035173085 + 41120 -6243.8717 -6252.1656 8.2939079 3722.9476 628.79618 -10603.909 0 397.4906 0.00032980051 0.00028085212 + 41130 -6243.6636 -6251.9461 8.2824454 3719.2344 627.56932 -10598.75 0 396.94126 0.00028650463 0.00023730823 + 41140 -6243.5861 -6251.6424 8.0563287 3716.6193 627.01548 -10595.277 0 386.10448 0.00027286701 0.00023157314 + 41150 -6243.6026 -6251.3003 7.6976645 3715.3626 627.21279 -10593.876 0 368.91527 0.0002991715 0.00027045341 + 41160 -6243.6393 -6251.0167 7.3774524 3715.4953 628.104 -10594.616 0 353.56891 0.00036937148 0.00035076104 + 41170 -6243.6342 -6250.8767 7.2424305 3716.9833 629.50184 -10597.362 0 347.09791 0.00047206453 0.00045533684 + 41180 -6243.5801 -6250.8945 7.3143506 3719.8204 631.12959 -10601.844 0 350.54472 0.00057865295 0.00055555117 + 41190 -6243.5261 -6251.013 7.4869054 3723.95 632.69387 -10607.657 0 358.81452 0.00065388221 0.00062186366 + 41200 -6243.5393 -6251.1562 7.6169706 3729.0682 633.97728 -10614.202 0 365.04797 0.00067502878 0.00063879937 + 41210 -6243.6545 -6251.2926 7.6380443 3734.474 634.91806 -10620.685 0 366.05794 0.00064848164 0.00061616027 + 41220 -6243.8492 -6251.4574 7.608148 3739.1285 635.63206 -10626.218 0 364.62514 0.00061176335 0.0005884431 + 41230 -6244.066 -6251.7095 7.643426 3741.9672 636.34962 -10630.026 0 366.31586 0.00061644721 0.00060030297 + 41240 -6244.2686 -6252.0512 7.7825591 3742.3361 637.28201 -10631.669 0 372.9839 0.00069967515 0.000684148 + 41250 -6244.4777 -6252.3919 7.9142032 3740.3046 638.47472 -10631.171 0 379.29303 0.00086101835 0.00084112084 + 41260 -6244.7487 -6252.6107 7.8620033 3736.6576 639.7237 -10628.992 0 376.79131 0.0010589287 0.0010353584 + 41270 -6245.1113 -6252.6637 7.5524689 3732.5755 640.6129 -10625.852 0 361.95669 0.0012276107 0.0012046112 + 41280 -6245.5403 -6252.6239 7.0836644 3729.2067 640.67445 -10622.505 0 339.48894 0.0013027253 0.0012825734 + 41290 -6245.9864 -6252.609 6.6226219 3727.3319 639.60231 -10619.543 0 317.3932 0.0012434776 0.0012238606 + 41300 -6246.4283 -6252.6797 6.2513592 3727.1933 637.41301 -10617.286 0 299.60021 0.0010457415 0.0010224462 + 41310 -6246.8868 -6252.805 5.9182026 3728.4698 634.47306 -10615.748 0 283.63348 0.00074537775 0.00071694752 + 41320 -6247.3929 -6252.9147 5.5218142 3730.3851 631.3838 -10614.684 0 264.63632 0.00041063056 0.00038022987 + 41330 -6247.9453 -6252.9743 5.028942 3731.9522 628.78214 -10613.709 0 241.01512 0.00012323062 9.6229084e-05 + 41340 -6248.5006 -6253.0173 4.5166556 3732.3164 627.14578 -10612.479 0 216.46348 -4.7389026e-05 -6.762137e-05 + 41350 -6248.9995 -6253.1153 4.1157072 3731.0836 626.67389 -10610.873 0 197.24778 -6.711524e-05 -8.1607954e-05 + 41360 -6249.4027 -6253.3204 3.9177315 3728.4977 627.26947 -10609.088 0 187.75967 5.24116e-05 3.9170531e-05 + 41370 -6249.7058 -6253.6263 3.9205276 3725.3851 628.6068 -10607.618 0 187.89368 0.00025984078 0.0002430275 + 41380 -6249.9319 -6253.9692 4.0372783 3722.8788 630.24861 -10607.097 0 193.48903 0.00048317938 0.00046066237 + 41390 -6250.1134 -6254.2629 4.1495165 3722.0215 631.77759 -10608.062 0 198.86811 0.0006543509 0.000627904 + 41400 -6250.2742 -6254.4432 4.168972 3723.3855 632.91172 -10610.74 0 199.80053 0.00073116334 0.00070535621 + 41410 -6250.4192 -6254.4981 4.0789007 3726.8508 633.57395 -10614.923 0 195.48381 0.00070990225 0.00068932125 + 41420 -6250.5319 -6254.4674 3.9354375 3731.6276 633.89401 -10619.989 0 188.60825 0.00062427173 0.0006106165 + 41430 -6250.5878 -6254.4114 3.8235375 3736.5252 634.13687 -10625.073 0 183.24537 0.00053042711 0.00052138812 + 41440 -6250.5754 -6254.3647 3.7893173 3740.3638 634.57827 -10629.307 0 181.60535 0.00048324302 0.0004742625 + 41450 -6250.5116 -6254.3125 3.8008977 3742.3529 635.37094 -10632.036 0 182.16034 0.00051374427 0.00050162289 + 41460 -6250.4334 -6254.2156 3.7821299 3742.2838 636.45627 -10632.956 0 181.26089 0.00061798117 0.00060334524 + 41470 -6250.3681 -6254.0665 3.6984091 3740.4883 637.56379 -10632.119 0 177.24852 0.00076154784 0.00074780565 + 41480 -6250.3096 -6253.9198 3.6102588 3737.6442 638.30554 -10629.87 0 173.02386 0.00089517129 0.00088484992 + 41490 -6250.2251 -6253.8565 3.6314389 3734.5469 638.32715 -10626.731 0 174.03893 0.00097235523 0.00096439682 + 41500 -6250.0865 -6253.9104 3.8238349 3731.9131 637.4497 -10623.273 0 183.25962 0.00096261477 0.00095331939 + 41510 -6249.8969 -6254.0262 4.1292488 3730.2254 635.74378 -10619.995 0 197.89677 0.00085899987 0.0008456758 + 41520 -6249.6872 -6254.0951 4.4078366 3729.6172 633.51143 -10617.224 0 211.24826 0.00068071249 0.00066437479 + 41530 -6249.4847 -6254.0394 4.5547574 3729.8369 631.19129 -10615.068 0 218.28953 0.0004700039 0.00045426966 + 41540 -6249.2831 -6253.8729 4.5897546 3730.3512 629.22935 -10613.453 0 219.96679 0.00028129827 0.00026829965 + 41550 -6249.0465 -6253.6778 4.6313124 3730.5857 627.96414 -10612.228 0 221.95848 0.00016337789 0.00015069673 + 41560 -6248.7458 -6253.5183 4.7724504 3730.2081 627.55994 -10611.286 0 228.7226 0.00014129406 0.00012337685 + 41570 -6248.3966 -6253.3723 4.9757095 3729.2905 627.99585 -10610.659 0 238.46392 0.00020783697 0.00018115304 + 41580 -6248.0558 -6253.1539 5.098024 3728.2447 629.09957 -10610.498 0 244.32591 0.00033043763 0.00029762347 + 41590 -6247.7754 -6252.8108 5.0353968 3727.5702 630.60953 -10610.991 0 241.32447 0.00046977051 0.00043834698 + 41600 -6247.5531 -6252.4047 4.8515925 3727.5944 632.25021 -10612.249 0 232.51554 0.00059813545 0.00057436682 + 41610 -6247.3305 -6252.0871 4.7566046 3728.3789 633.80263 -10614.269 0 227.96318 0.00070628868 0.00068972612 + 41620 -6247.0424 -6251.9865 4.9441176 3729.8144 635.14753 -10616.948 0 236.94986 0.00079711424 0.00078103795 + 41630 -6246.6729 -6252.112 5.4390759 3731.7641 636.26333 -10620.139 0 260.67104 0.00087466656 0.00085201434 + 41640 -6246.2654 -6252.3603 6.0948835 3734.1051 637.18034 -10623.646 0 292.10102 0.00093840198 0.00090757819 + 41650 -6245.8829 -6252.611 6.7280553 3736.6531 637.91868 -10627.183 0 322.44616 0.0009849887 0.00095045321 + 41660 -6245.5588 -6252.8081 7.2492257 3739.085 638.44949 -10630.343 0 347.42357 0.0010125851 0.00098044323 + 41670 -6245.2842 -6252.9586 7.6743795 3740.9633 638.70379 -10632.626 0 367.79932 0.0010221176 0.00099528607 + 41680 -6245.035 -6253.0676 8.0326363 3741.8632 638.61937 -10633.55 0 384.969 0.0010152696 0.0009922507 + 41690 -6244.8073 -6253.084 8.2767034 3741.5207 638.19022 -10632.795 0 396.66607 0.00099264963 0.00097018402 + 41700 -6244.6261 -6252.9099 8.2838404 3739.9194 637.48311 -10630.312 0 397.00811 0.0009546486 0.00093136984 + 41710 -6244.5199 -6252.474 7.9540837 3737.2825 636.61046 -10626.367 0 381.20432 0.00090417657 0.00088186054 + 41720 -6244.4858 -6251.8132 7.327409 3733.9978 635.6794 -10621.49 0 351.17055 0.00084814858 0.00082936608 + 41730 -6244.4805 -6251.09 6.609529 3730.5434 634.75262 -10616.386 0 316.76571 0.00079513747 0.00077962385 + 41740 -6244.4514 -6250.5164 6.0649977 3727.4505 633.84441 -10611.811 0 290.66872 0.00075007942 0.00073372493 + 41750 -6244.3786 -6250.2379 5.8593322 3725.268 632.94753 -10608.453 0 280.81208 0.00071044102 0.00068839824 + 41760 -6244.2888 -6250.2693 5.9805457 3724.4598 632.06758 -10606.797 0 286.62131 0.00066795345 0.00063918377 + 41770 -6244.2296 -6250.5238 6.2941953 3725.233 631.24406 -10607.001 0 301.65315 0.00061566847 0.00058463196 + 41780 -6244.2277 -6250.8988 6.6710306 3727.3949 630.55138 -10608.845 0 319.71322 0.00055562269 0.00052923004 + 41790 -6244.2642 -6251.3416 7.0773961 3730.3579 630.08474 -10611.784 0 339.18853 0.00050152299 0.00048349768 + 41800 -6244.2894 -6251.8486 7.5592467 3733.3309 629.94109 -10615.121 0 362.28152 0.00047399123 0.00046106256 + 41810 -6244.2687 -6252.4064 8.1377722 3735.6172 630.2032 -10618.227 0 390.0077 0.00049072975 0.00047396797 + 41820 -6244.2259 -6252.9333 8.7074095 3736.8639 630.928 -10620.725 0 417.30792 0.00055748227 0.00052836435 + 41830 -6244.2456 -6253.2805 9.0348695 3737.1307 632.13351 -10622.545 0 433.00164 0.00066556812 0.00062257157 + 41840 -6244.4212 -6253.307 8.8857869 3736.7553 633.77987 -10623.842 0 425.85677 0.00079758152 0.00074813944 + 41850 -6244.7829 -6252.9816 8.1987242 3736.1197 635.74757 -10624.849 0 392.92887 0.00093687589 0.00089258183 + 41860 -6245.2641 -6252.4311 7.1669999 3735.4809 637.82557 -10625.738 0 343.48285 0.0010730071 0.001041262 + 41870 -6245.7454 -6251.8837 6.1382736 3734.972 639.72538 -10626.581 0 294.18051 0.0011979797 0.0011767994 + 41880 -6246.1429 -6251.5322 5.3893563 3734.7319 641.12877 -10627.393 0 258.2882 0.0012965948 0.0012772975 + 41890 -6246.4626 -6251.4258 4.9632166 3734.9912 641.75722 -10628.174 0 237.86519 0.0013418735 0.0013174055 + 41900 -6246.7734 -6251.4885 4.7151248 3735.9696 641.43979 -10628.898 0 225.97523 0.0013043727 0.0012754826 + 41910 -6247.1299 -6251.6423 4.5123303 3737.6414 640.16176 -10629.445 0 216.25618 0.0011715735 0.0011451237 + 41920 -6247.5222 -6251.902 4.3798103 3739.5873 638.08594 -10629.575 0 209.90509 0.00096241646 0.00094398876 + 41930 -6247.8955 -6252.3487 4.4531575 3741.0991 635.54059 -10628.988 0 213.42029 0.00072461871 0.00071287836 + 41940 -6248.2104 -6253.0106 4.8001898 3741.4946 632.96644 -10627.472 0 230.05203 0.00051597293 0.00050397686 + 41950 -6248.4826 -6253.7751 5.292583 3740.436 630.82231 -10625.033 0 253.65028 0.0003819472 0.00036378194 + 41960 -6248.7675 -6254.4229 5.6554149 3738.0625 629.4662 -10621.952 0 271.03921 0.00034203609 0.00031836881 + 41970 -6249.1031 -6254.763 5.6599095 3734.9006 629.04964 -10618.713 0 271.25462 0.00038890936 0.00036622893 + 41980 -6249.4645 -6254.7556 5.2911211 3731.6616 629.47247 -10615.89 0 253.58021 0.00049566146 0.00047998623 + 41990 -6249.7778 -6254.5203 4.7424662 3729.0654 630.42733 -10614.013 0 227.28559 0.00062434433 0.0006153668 + 42000 -6249.9788 -6254.229 4.2501956 3727.7331 631.52179 -10613.484 0 203.69322 0.00073358523 0.00072463706 + 42010 -6250.0627 -6253.9831 3.9203561 3728.0934 632.42749 -10614.504 0 187.88546 0.00078777111 0.00077150736 + 42020 -6250.0839 -6253.7743 3.690445 3730.247 632.99437 -10617.016 0 176.86683 0.00076920923 0.00074389597 + 42030 -6250.11 -6253.5501 3.4400253 3733.8287 633.28473 -10620.663 0 164.86532 0.00068899369 0.00065996049 + 42040 -6250.1699 -6253.3088 3.1389729 3737.991 633.51841 -10624.818 0 150.4372 0.00058822059 0.00056335164 + 42050 -6250.2354 -6253.1339 2.8984547 3741.6132 633.95756 -10628.705 0 138.91021 0.00052413249 0.00050741744 + 42060 -6250.25 -6253.1346 2.884657 3743.6981 634.7809 -10631.614 0 138.24895 0.00054512809 0.00053375002 + 42070 -6250.1743 -6253.3544 3.1800879 3743.7701 635.99453 -10633.119 0 152.40765 0.00066707217 0.00065412195 + 42080 -6250.0139 -6253.729 3.7151151 3742.066 637.40744 -10633.202 0 178.04916 0.00086369528 0.00084375512 + 42090 -6249.8099 -6254.1284 4.3185019 3739.4151 638.67855 -10632.222 0 206.96684 0.0010758999 0.0010487838 + 42100 -6249.6069 -6254.437 4.8300908 3736.8813 639.42255 -10630.741 0 231.48505 0.0012346579 0.0012047791 + 42110 -6249.4245 -6254.6018 5.1773714 3735.3472 639.34269 -10629.292 0 248.12869 0.0012864879 0.0012591748 + 42120 -6249.2546 -6254.6233 5.3686459 3735.2124 638.34488 -10628.181 0 257.29563 0.001211583 0.001189623 + 42130 -6249.0786 -6254.5145 5.4358749 3736.3008 636.58981 -10627.405 0 260.51763 0.0010295806 0.0010121607 + 42140 -6248.8864 -6254.2734 5.3869746 3737.9779 634.46015 -10626.711 0 258.17405 0.00079232471 0.00077633005 + 42150 -6248.6867 -6253.8832 5.1965 3739.4195 632.44929 -10625.752 0 249.04544 0.00056601754 0.00054846109 + 42160 -6248.5033 -6253.3362 4.8328537 3739.9237 631.00461 -10624.265 0 231.61746 0.0004086064 0.0003887547 + 42170 -6248.3604 -6252.6709 4.3104908 3739.1487 630.37809 -10622.198 0 206.5829 0.00035115679 0.00033097142 + 42180 -6248.2622 -6252.0018 3.7396474 3737.1982 630.54361 -10619.744 0 179.22489 0.00039075908 0.00037302156 + 42190 -6248.1842 -6251.5076 3.3234374 3734.5604 631.22334 -10617.291 0 159.27777 0.00049650497 0.00048189497 + 42200 -6248.0877 -6251.3578 3.2701435 3731.9542 632.02054 -10615.333 0 156.72363 0.00062377954 0.00060971439 + 42210 -6247.9503 -6251.6139 3.6636217 3730.1322 632.60161 -10614.348 0 175.58131 0.00073039151 0.00071328067 + 42220 -6247.7846 -6252.1823 4.3977168 3729.6588 632.84041 -10614.682 0 210.76326 0.00079030786 0.00076934607 + 42230 -6247.6229 -6252.8686 5.2456415 3730.7113 632.85494 -10616.435 0 251.40057 0.00080233991 0.00078070747 + 42240 -6247.4797 -6253.4934 6.0136715 3732.9982 632.92382 -10619.415 0 288.20888 0.00079023135 0.00077168393 + 42250 -6247.3306 -6253.9697 6.639117 3735.8821 633.33303 -10623.185 0 318.18374 0.00079103292 0.00077481554 + 42260 -6247.1397 -6254.2797 7.1400433 3738.6737 634.23571 -10627.189 0 342.19094 0.00083439578 0.00081404573 + 42270 -6246.9125 -6254.3898 7.4772553 3740.9261 635.58999 -10630.906 0 358.35203 0.00092384073 0.00089233588 + 42280 -6246.715 -6254.2114 7.4964852 3742.5345 637.18755 -10633.933 0 359.27363 0.001033637 0.00099077391 + 42290 -6246.6245 -6253.6751 7.0506463 3743.5795 638.73771 -10635.992 0 337.90653 0.001125567 0.0010799876 + 42300 -6246.6522 -6252.8503 6.1981006 3744.071 639.95673 -10636.878 0 297.04776 0.0011735753 0.0011362244 + 42310 -6246.7205 -6251.9732 5.2527053 3743.8379 640.63127 -10636.442 0 251.73911 0.0011765495 0.0011511724 + 42320 -6246.725 -6251.3193 4.5942535 3742.6737 640.65144 -10634.644 0 220.1824 0.001150467 0.0011304845 + 42330 -6246.6207 -6251.0252 4.4044908 3740.5946 640.02004 -10631.64 0 211.08791 0.0011104891 0.0010854527 + 42340 -6246.4488 -6251.0284 4.579686 3737.9547 638.83925 -10627.822 0 219.48425 0.0010606658 0.0010258874 + 42350 -6246.2847 -6251.1773 4.8926296 3735.3113 637.27411 -10623.763 0 234.48226 0.00099796709 0.00095797188 + 42360 -6246.16 -6251.3909 5.2309167 3733.1689 635.50393 -10620.064 0 250.69488 0.00092216808 0.00088513484 + 42370 -6246.0331 -6251.7084 5.6753555 3731.8205 633.68554 -10617.214 0 271.99488 0.00083944429 0.00080878594 + 42380 -6245.8355 -6252.1914 6.3559918 3731.3664 631.94737 -10615.505 0 304.61479 0.00075710849 0.0007286607 + 42390 -6245.547 -6252.7906 7.2436077 3731.807 630.41304 -10615.011 0 347.15433 0.00067768208 0.00064488317 + 42400 -6245.2289 -6253.3156 8.0866402 3733.0581 629.2318 -10615.606 0 387.55717 0.00060096258 0.00056255761 + 42410 -6244.9797 -6253.544 8.5642531 3734.8659 628.58602 -10616.996 0 410.44706 0.00053358023 0.00049604521 + 42420 -6244.8492 -6253.3767 8.5275684 3736.747 628.65766 -10618.781 0 408.68893 0.00049616095 0.00046806052 + 42430 -6244.7948 -6252.9034 8.1086078 3738.1072 629.56155 -10620.572 0 388.60998 0.0005178067 0.00050125877 + 42440 -6244.7265 -6252.3211 7.5945961 3738.5339 631.27728 -10622.132 0 363.97566 0.00061827794 0.00060586204 + 42450 -6244.5924 -6251.7864 7.1940793 3738.0663 633.61679 -10623.47 0 344.78064 0.00079079581 0.00077106241 + 42460 -6244.4232 -6251.3342 6.9109916 3737.22 636.24964 -10624.804 0 331.2135 0.00099957071 0.00096629935 + 42470 -6244.3011 -6250.9157 6.6145837 3736.7164 638.78146 -10626.414 0 317.00796 0.0011947327 0.0011521812 + 42480 -6244.2867 -6250.5059 6.2192018 3737.08 640.85257 -10628.439 0 298.05905 0.0013348761 0.0012949051 + 42490 -6244.3628 -6250.1838 5.820992 3738.3514 642.21232 -10630.748 0 278.9746 0.0014034451 0.0013765302 + 42500 -6244.4363 -6250.1159 5.6795617 3740.0925 642.7444 -10632.953 0 272.19646 0.0014099408 0.0013965699 + 42510 -6244.4 -6250.4379 6.0379572 3741.6752 642.45191 -10634.565 0 289.37279 0.0013764685 0.0013656565 + 42520 -6244.2144 -6251.1167 6.9022597 3742.6531 641.42985 -10635.2 0 330.79502 0.0013196619 0.0012964621 + 42530 -6243.9504 -6251.9157 7.9653597 3742.9481 639.84355 -10634.707 0 381.74473 0.0012414937 0.0011981696 + 42540 -6243.749 -6252.5195 8.7705203 3742.7355 637.91389 -10633.169 0 420.33254 0.0011358361 0.0010777121 + 42550 -6243.7225 -6252.7291 9.0066503 3742.1573 635.89953 -10630.786 0 431.64922 0.0010045045 0.00094556411 + 42560 -6243.8765 -6252.5701 8.6935684 3741.1384 634.06762 -10627.776 0 416.64458 0.00086787091 0.00082001236 + 42570 -6244.1247 -6252.2329 8.1082281 3739.4628 632.65164 -10624.347 0 388.59179 0.00075965 0.00072478556 + 42580 -6244.3744 -6251.9115 7.537159 3737.0364 631.80451 -10620.752 0 361.22295 0.00070907463 0.00068006687 + 42590 -6244.6001 -6251.6758 7.0757799 3734.1154 631.56119 -10617.352 0 339.11107 0.00072350759 0.00069205985 + 42600 -6244.8437 -6251.4734 6.6297021 3731.3166 631.82464 -10614.615 0 317.73253 0.00078349747 0.00074765164 + 42610 -6245.1514 -6251.2448 6.0934578 3729.3913 632.3842 -10613.02 0 292.03269 0.00085307586 0.00081784725 + 42620 -6245.5133 -6251.0404 5.5270981 3728.9103 632.97215 -10612.923 0 264.88955 0.00089762561 0.00086873845 + 42630 -6245.8683 -6251.0202 5.1518894 3730.0606 633.35317 -10614.434 0 246.90745 0.00089772174 0.00087495428 + 42640 -6246.1657 -6251.3279 5.1622222 3732.6387 633.42083 -10617.388 0 247.40265 0.00085309885 0.00082998376 + 42650 -6246.4204 -6251.9511 5.5307407 3736.1633 633.25814 -10621.373 0 265.06413 0.00077969599 0.00074994579 + 42660 -6246.7063 -6252.6976 5.9913883 3739.9811 633.12393 -10625.803 0 287.14094 0.00070548337 0.0006698687 + 42670 -6247.0901 -6253.3173 6.2272073 3743.3356 633.35491 -10630.008 0 298.44271 0.00066628416 0.00063298608 + 42680 -6247.5629 -6253.6658 6.1029334 3745.4827 634.21391 -10633.362 0 292.48681 0.00069737064 0.00067492519 + 42690 -6248.0367 -6253.7694 5.7327097 3745.9267 635.7486 -10635.445 0 274.74362 0.00081777084 0.0008071515 + 42700 -6248.414 -6253.7483 5.3342722 3744.6927 637.72726 -10636.168 0 255.64825 0.0010132411 0.0010066106 + 42710 -6248.6602 -6253.6913 5.0311027 3742.4263 639.68592 -10635.804 0 241.11867 0.001231304 0.0012183125 + 42720 -6248.8175 -6253.6018 4.7843501 3740.1761 641.07583 -10634.854 0 229.2929 0.0013970909 0.0013728177 + 42730 -6248.9595 -6253.4393 4.4798164 3738.9309 641.45861 -10633.829 0 214.69794 0.0014446956 0.0014128689 + 42740 -6249.1329 -6253.1987 4.0657496 3739.153 640.67108 -10633.023 0 194.85353 0.0013477521 0.0013174 + 42750 -6249.3271 -6252.9539 3.6268717 3740.5604 638.88665 -10632.401 0 173.82004 0.0011327465 0.0011112532 + 42760 -6249.4879 -6252.8287 3.3407641 3742.2744 636.54726 -10631.65 0 160.10816 0.00086794197 0.00085574663 + 42770 -6249.5632 -6252.9105 3.3472759 3743.2539 634.2015 -10630.366 0 160.42024 0.00063388965 0.0006247484 + 42780 -6249.5432 -6253.1786 3.6354824 3742.7796 632.32173 -10628.28 0 174.23272 0.0004910987 0.00047743889 + 42790 -6249.4642 -6253.5154 4.0512175 3740.7397 631.16982 -10625.425 0 194.15707 0.00046067205 0.00043926758 + 42800 -6249.3737 -6253.796 4.422329 3737.615 630.75313 -10622.164 0 211.94282 0.00052442137 0.00049756123 + 42810 -6249.29 -6253.9715 4.681468 3734.2485 630.87651 -10619.097 0 224.36221 0.00063930462 0.00061124493 + 42820 -6249.1962 -6254.0696 4.8733788 3731.559 631.25931 -10616.888 0 233.55966 0.0007559016 0.00072882898 + 42830 -6249.0671 -6254.1276 5.0605479 3730.294 631.66375 -10616.085 0 242.52985 0.00083390895 0.00080725427 + 42840 -6248.8972 -6254.1345 5.237267 3730.8447 631.98467 -10616.964 0 250.99922 0.0008529539 0.00082581997 + 42850 -6248.7027 -6254.0352 5.3324849 3733.1299 632.27521 -10619.44 0 255.5626 0.00081844294 0.00079192686 + 42860 -6248.4991 -6253.7836 5.2845541 3736.5963 632.70955 -10623.09 0 253.26549 0.00076045326 0.00073730133 + 42870 -6248.2795 -6253.3898 5.1102822 3740.3719 633.49992 -10627.262 0 244.9134 0.00072342196 0.00070535313 + 42880 -6248.0141 -6252.9207 4.9066197 3743.5516 634.79296 -10631.265 0 235.15275 0.00074799939 0.00073328845 + 42890 -6247.6718 -6252.4584 4.7866476 3745.5125 636.5775 -10634.548 0 229.40301 0.00085183695 0.00083559749 + 42900 -6247.2462 -6252.0526 4.8063628 3746.1147 638.63883 -10636.806 0 230.34788 0.0010187993 0.00099616214 + 42910 -6246.7656 -6251.7096 4.9440849 3745.6845 640.58751 -10637.982 0 236.94829 0.0012032294 0.0011731223 + 42920 -6246.2757 -6251.4246 5.1488344 3744.7805 641.96825 -10638.173 0 246.76104 0.0013485784 0.0013150342 + 42930 -6245.8082 -6251.2212 5.41299 3743.8672 642.42084 -10637.509 0 259.42085 0.0014120991 0.0013816838 + 42940 -6245.3581 -6251.1543 5.7962106 3743.082 641.83128 -10636.068 0 277.78693 0.0013835751 0.0013606128 + 42950 -6244.8962 -6251.2616 6.3654049 3742.2304 640.39662 -10633.889 0 305.06592 0.001288412 0.0012717331 + 42960 -6244.4083 -6251.5087 7.1004029 3740.9979 638.55137 -10631.058 0 340.29115 0.0011732375 0.0011570682 + 42970 -6243.9246 -6251.7852 7.8606128 3739.2284 636.77375 -10627.787 0 376.72467 0.0010816021 0.0010597218 + 42980 -6243.5097 -6251.9613 8.4515497 3737.094 635.37294 -10624.428 0 405.04568 0.0010328376 0.0010026737 + 42990 -6243.223 -6251.9603 8.7373447 3735.0648 634.38146 -10621.407 0 418.74258 0.0010152597 0.00097907432 + 43000 -6243.0823 -6251.8004 8.7180526 3733.7039 633.60955 -10619.114 0 417.818 0.00099662565 0.00095919658 + 43010 -6243.0559 -6251.5797 8.5238904 3733.4027 632.81233 -10617.795 0 408.51266 0.00094476255 0.00090937992 + 43020 -6243.0873 -6251.412 8.3247212 3734.1978 631.8629 -10617.473 0 398.96735 0.00084609979 0.00081214721 + 43030 -6243.1381 -6251.3445 8.2064499 3735.7496 630.84349 -10617.938 0 393.29913 0.00071308527 0.00067750483 + 43040 -6243.2129 -6251.3219 8.1090677 3737.4626 630.02517 -10618.81 0 388.63203 0.00057984373 0.00054129186 + 43050 -6243.3413 -6251.237 7.8957672 3738.6653 629.76013 -10619.662 0 378.40947 0.00049141522 0.00045276467 + 43060 -6243.5309 -6251.0378 7.5068895 3738.8034 630.33853 -10620.18 0 359.77227 0.00049094656 0.00045689184 + 43070 -6243.741 -6250.7902 7.0491542 3737.6399 631.86677 -10620.297 0 337.83502 0.00060530623 0.0005770508 + 43080 -6243.9093 -6250.6318 6.7224572 3735.4321 634.20797 -10620.272 0 322.17787 0.00083056486 0.00080317586 + 43090 -6244.0066 -6250.6606 6.653951 3732.9743 636.9976 -10620.633 0 318.89467 0.0011242787 0.0010898552 + 43100 -6244.0665 -6250.8613 6.7948427 3731.4023 639.72472 -10621.988 0 325.64699 0.0014128232 0.0013670091 + 43110 -6244.1644 -6251.1258 6.9614099 3731.7755 641.85865 -10624.76 0 333.62982 0.0016149432 0.0015613935 + 43120 -6244.3639 -6251.3417 6.9778018 3734.5997 642.99119 -10628.933 0 334.41541 0.001672597 0.0016216858 + 43130 -6244.6678 -6251.4801 6.8123056 3739.5144 642.9521 -10633.947 0 326.48391 0.0015746403 0.0015368774 + 43140 -6245.0104 -6251.6153 6.6049582 3745.322 641.85563 -10638.793 0 316.54666 0.0013613037 0.0013398768 + 43150 -6245.3036 -6251.8568 6.5531198 3750.3883 640.05912 -10642.304 0 314.06227 0.0011067163 0.0010948379 + 43160 -6245.5039 -6252.2382 6.7343211 3753.2403 638.04699 -10643.526 0 322.74645 0.00088828619 0.00087388965 + 43170 -6245.6463 -6252.6633 7.0169902 3753.076 636.2785 -10642.018 0 336.29354 0.00075846925 0.0007329268 + 43180 -6245.8158 -6252.9627 7.1469191 3749.9607 635.04911 -10637.973 0 342.52047 0.00073147018 0.00069550466 + 43190 -6246.0781 -6253.0192 6.9411279 3744.6884 634.41422 -10632.122 0 332.65779 0.00078716366 0.00074951732 + 43200 -6246.4284 -6252.8553 6.4268992 3738.4554 634.20396 -10625.515 0 308.01307 0.00088521551 0.00085561699 + 43210 -6246.7979 -6252.6173 5.819362 3732.5262 634.12123 -10619.265 0 278.89648 0.00098025609 0.00096236949 + 43220 -6247.1068 -6252.4722 5.3654637 3727.9966 633.88031 -10614.349 0 257.14312 0.0010331155 0.0010225502 + 43230 -6247.3189 -6252.495 5.1761175 3725.653 633.32791 -10611.476 0 248.06859 0.0010181985 0.0010065338 + 43240 -6247.4592 -6252.6269 5.1676805 3725.869 632.50081 -10610.997 0 247.66425 0.00092892817 0.00091025998 + 43250 -6247.5854 -6252.7357 5.1502359 3728.5118 631.60489 -10612.852 0 246.8282 0.00078138223 0.00075621329 + 43260 -6247.7391 -6252.7267 4.9876263 3732.913 630.93467 -10616.574 0 239.03504 0.00061337906 0.00058708271 + 43270 -6247.9153 -6252.6141 4.6988755 3737.9892 630.77229 -10621.376 0 225.19648 0.00047597489 0.00045367019 + 43280 -6248.0739 -6252.5007 4.4267692 3742.5323 631.30205 -10626.335 0 212.15562 0.00041799403 0.00040041977 + 43290 -6248.1777 -6252.493 4.3152437 3745.5685 632.55999 -10630.621 0 206.81069 0.00046902709 0.00045259919 + 43300 -6248.2223 -6252.6249 4.402574 3746.6336 634.42129 -10633.68 0 210.99605 0.00062814663 0.00060859154 + 43310 -6248.237 -6252.8445 4.6074508 3745.8544 636.62029 -10635.319 0 220.81489 0.00086322893 0.00083945781 + 43320 -6248.2589 -6253.0648 4.8058151 3743.8262 638.79649 -10635.687 0 230.32163 0.0011210446 0.0010960736 + 43330 -6248.3009 -6253.2327 4.9317956 3741.3622 640.56093 -10635.156 0 236.35932 0.0013436043 0.0013217989 + 43340 -6248.3382 -6253.3598 5.0216388 3739.2341 641.57499 -10634.169 0 240.66511 0.0014838158 0.0014667166 + 43350 -6248.3269 -6253.4896 5.1626458 3737.9949 641.62913 -10633.114 0 247.42296 0.0015149405 0.001499306 + 43360 -6248.2408 -6253.6295 5.3887298 3737.9072 640.70185 -10632.239 0 258.25817 0.0014330025 0.0014131091 + 43370 -6248.095 -6253.7158 5.6207771 3738.9253 638.97623 -10631.617 0 269.37918 0.0012553497 0.0012278467 + 43380 -6247.9325 -6253.6517 5.7192077 3740.6901 636.79905 -10631.141 0 274.09652 0.001018144 0.00098512977 + 43390 -6247.7837 -6253.3919 5.6081491 3742.5586 634.58955 -10630.54 0 268.77397 0.00077158374 0.00073901152 + 43400 -6247.6378 -6252.9899 5.3521726 3743.7424 632.72936 -10629.462 0 256.50614 0.00056971264 0.00054269914 + 43410 -6247.4508 -6252.5643 5.1134838 3743.562 631.47271 -10627.599 0 245.06684 0.00045530877 0.00043471092 + 43420 -6247.1782 -6252.2192 5.0410036 3741.7126 630.90237 -10624.834 0 241.59318 0.00044606337 0.00042886207 + 43430 -6246.7975 -6251.993 5.1955491 3738.4052 630.93573 -10621.334 0 248.99986 0.00052934491 0.00051152285 + 43440 -6246.3114 -6251.8633 5.5519315 3734.3212 631.37321 -10617.558 0 266.07971 0.00066811611 0.0006471904 + 43450 -6245.7398 -6251.7811 6.0412503 3730.4152 631.97672 -10614.173 0 289.53061 0.00081498723 0.0007907177 + 43460 -6245.1123 -6251.6992 6.5869171 3727.6437 632.55892 -10611.902 0 315.68203 0.00092871043 0.00090228771 + 43470 -6244.463 -6251.5821 7.1190967 3726.6951 633.05283 -10611.33 0 341.18706 0.00098721867 0.0009599849 + 43480 -6243.8278 -6251.4014 7.5736153 3727.8041 633.52847 -10612.734 0 362.97014 0.00099259987 0.00096536126 + 43490 -6243.2432 -6251.1353 7.8920896 3730.7083 634.14114 -10615.985 0 378.23322 0.00096663954 0.00094001076 + 43500 -6242.7383 -6250.7867 8.0484342 3734.7506 635.03154 -10620.569 0 385.72613 0.00094003183 0.00091486877 + 43510 -6242.3173 -6250.4173 8.0999875 3739.0726 636.23106 -10625.721 0 388.19685 0.00094062165 0.00091696178 + 43520 -6241.9531 -6250.1481 8.1949974 3742.8437 637.62883 -10630.621 0 392.75026 0.00098418263 0.00095926432 + 43530 -6241.6161 -6250.0855 8.4693836 3745.4814 639.01941 -10634.586 0 405.90038 0.0010688894 0.0010376181 + 43540 -6241.3199 -6250.2225 8.9025678 3746.7747 640.19389 -10637.191 0 426.661 0.0011756813 0.0011350682 + 43550 -6241.1266 -6250.4305 9.303961 3746.823 641.01001 -10638.264 0 445.89802 0.001277142 0.001230561 + 43560 -6241.0917 -6250.5677 9.4760149 3745.8368 641.40558 -10637.81 0 454.14381 0.0013516088 0.0013073601 + 43570 -6241.2081 -6250.5942 9.386088 3743.9884 641.37041 -10635.953 0 449.834 0.0013922354 0.0013569488 + 43580 -6241.4113 -6250.5792 9.1678979 3741.4394 640.91571 -10632.934 0 439.37711 0.0014034308 0.0013767627 + 43590 -6241.6385 -6250.6092 8.9707544 3738.4791 640.06305 -10629.151 0 429.92889 0.0013887829 0.0013643753 + 43600 -6241.8776 -6250.7022 8.8246422 3735.5908 638.84715 -10625.14 0 422.92637 0.0013424466 0.0013136592 + 43610 -6242.1616 -6250.8018 8.6402687 3733.3444 637.31968 -10621.466 0 414.09015 0.0012517115 0.0012166664 + 43620 -6242.5244 -6250.8409 8.3164951 3732.1711 635.55234 -10618.564 0 398.57311 0.0011078714 0.0010699699 + 43630 -6242.9628 -6250.8082 7.8453858 3732.1673 633.64684 -10616.622 0 375.99491 0.00091663093 0.00088100441 + 43640 -6243.4342 -6250.7646 7.3304293 3733.0445 631.75377 -10615.563 0 351.3153 0.00070160265 0.00067089688 + 43650 -6243.8866 -6250.8 6.9133929 3734.2466 630.08728 -10615.134 0 331.32858 0.00050011665 0.00047290575 + 43660 -6244.2928 -6250.968 6.6752255 3735.1713 628.91437 -10615.054 0 319.91426 0.00035413217 0.00032677656 + 43670 -6244.6609 -6251.2517 6.5908124 3735.3878 628.50452 -10615.144 0 315.86871 0.00029945075 0.00026939721 + 43680 -6245.0169 -6251.5828 6.5659704 3734.7716 629.04501 -10615.399 0 314.67814 0.00035560551 0.00032325793 + 43690 -6245.3781 -6251.8921 6.5140457 3733.5352 630.55156 -10615.979 0 312.18962 0.00051849027 0.00048645876 + 43700 -6245.7402 -6252.1479 6.4077056 3732.1716 632.81798 -10617.137 0 307.09321 0.00075812409 0.00072896629 + 43710 -6246.0822 -6252.3605 6.2783225 3731.3306 635.43848 -10619.13 0 300.89244 0.0010234942 0.00099783727 + 43720 -6246.382 -6252.5588 6.1768106 3731.6432 637.90484 -10622.107 0 296.02742 0.0012541662 0.001230377 + 43730 -6246.6314 -6252.7557 6.1242606 3733.5228 639.74477 -10626.023 0 293.50893 0.0013956733 0.0013712113 + 43740 -6246.842 -6252.9262 6.0841602 3736.9874 640.65113 -10630.565 0 291.5871 0.0014146354 0.0013882283 + 43750 -6247.0355 -6253.0208 5.9853889 3741.5538 640.55739 -10635.132 0 286.85342 0.0013098593 0.0012827132 + 43760 -6247.2214 -6253.0118 5.7903865 3746.2613 639.63836 -10638.911 0 277.50781 0.0011155507 0.0010900576 + 43770 -6247.3836 -6252.9277 5.544105 3749.8787 638.24175 -10641.048 0 265.70462 0.00089281237 0.00086958443 + 43780 -6247.4946 -6252.8306 5.3359352 3751.2801 636.77724 -10640.888 0 255.72795 0.00070931209 0.00068583102 + 43790 -6247.549 -6252.752 5.2030019 3749.8513 635.59638 -10638.2 0 249.35705 0.00061472339 0.00058772904 + 43800 -6247.5744 -6252.6664 5.0919257 3745.7192 634.89403 -10633.28 0 244.03365 0.00062433863 0.00059358924 + 43810 -6247.6048 -6252.5403 4.9355055 3739.6993 634.65857 -10626.898 0 236.53712 0.00071824526 0.0006871479 + 43820 -6247.645 -6252.3959 4.7508676 3733.0393 634.69064 -10620.126 0 227.68823 0.00085261732 0.00082485646 + 43830 -6247.6685 -6252.3054 4.6368556 3727.1183 634.6889 -10614.113 0 222.22414 0.00097437475 0.00095042356 + 43840 -6247.6478 -6252.3273 4.6795108 3723.1718 634.37161 -10609.871 0 224.26841 0.0010343494 0.0010114889 + 43850 -6247.5808 -6252.4565 4.8757105 3722.0382 633.5867 -10608.081 0 233.67141 0.00099929182 0.00097459222 + 43860 -6247.4904 -6252.6333 5.1428298 3723.9369 632.37366 -10608.944 0 246.47326 0.00086279606 0.00083588146 + 43870 -6247.404 -6252.7929 5.3889536 3728.3567 630.96331 -10612.113 0 258.2689 0.00065169361 0.00062496102 + 43880 -6247.3298 -6252.909 5.5791824 3734.1335 629.72149 -10616.764 0 267.38572 0.00042296843 0.0003992558 + 43890 -6247.2506 -6252.9972 5.746569 3739.7429 629.05438 -10621.794 0 275.40783 0.00024878121 0.00022846109 + 43900 -6247.1416 -6253.075 5.9334074 3743.7462 629.29824 -10626.119 0 284.36218 0.00019270707 0.00017297017 + 43910 -6247.0009 -6253.1117 6.1108318 3745.2409 630.61458 -10628.967 0 292.86535 0.00028621723 0.00026376165 + 43920 -6246.8596 -6253.0311 6.1714859 3744.1225 632.9125 -10630.066 0 295.77223 0.00051658268 0.0004912955 + 43930 -6246.7528 -6252.7859 6.0330894 3741.0427 635.82758 -10629.656 0 289.13949 0.00083201274 0.0008073535 + 43940 -6246.6793 -6252.4308 5.7515678 3737.1274 638.78833 -10628.347 0 275.6474 0.001159546 0.0011386584 + 43950 -6246.5994 -6252.1014 5.5020772 3733.6264 641.17058 -10626.898 0 263.69041 0.001425395 0.0014072265 + 43960 -6246.4765 -6251.9085 5.4319889 3731.6154 642.48784 -10626.012 0 260.33139 0.0015712597 0.001551239 + 43970 -6246.3136 -6251.8564 5.542861 3731.752 642.53577 -10626.144 0 265.645 0.0015666577 0.0015411293 + 43980 -6246.1457 -6251.8658 5.720073 3734.079 641.43102 -10627.376 0 274.13799 0.0014175111 0.0013869753 + 43990 -6246.0032 -6251.8621 5.8588155 3737.9516 639.54029 -10629.354 0 280.78731 0.0011668023 0.0011348799 + 44000 -6245.8874 -6251.833 5.9456438 3742.187 637.34395 -10631.364 0 284.94861 0.00088289961 0.00085286433 + 44010 -6245.7792 -6251.8113 6.0321694 3745.4194 635.29341 -10632.524 0 289.0954 0.00063797849 0.00061063209 + 44020 -6245.6629 -6251.8249 6.161982 3746.5228 633.70592 -10632.054 0 295.31675 0.00048588075 0.00046005631 + 44030 -6245.5366 -6251.8708 6.3342153 3744.9425 632.71487 -10629.528 0 303.57114 0.0004484512 0.00042253571 + 44040 -6245.4077 -6251.9236 6.5159599 3740.8494 632.2749 -10625.048 0 312.28136 0.00051332374 0.00048617424 + 44050 -6245.2868 -6251.9543 6.6675294 3735.0961 632.20995 -10619.26 0 319.54542 0.00064109968 0.00061228951 + 44060 -6245.1843 -6251.9457 6.7614552 3728.9878 632.28626 -10613.22 0 324.04687 0.00077875478 0.00074858916 + 44070 -6245.1064 -6251.904 6.7976226 3723.9209 632.2921 -10608.117 0 325.78021 0.00087619531 0.00084542398 + 44080 -6245.0522 -6251.8583 6.8061241 3721.0055 632.10906 -10604.973 0 326.18766 0.00090171326 0.00087093109 + 44090 -6245.0167 -6251.8405 6.8238151 3720.7945 631.75878 -10604.394 0 327.03551 0.00085116665 0.00082051531 + 44100 -6244.9982 -6251.8571 6.8589741 3723.1878 631.40616 -10606.451 0 328.72053 0.00074761443 0.00071721158 + 44110 -6244.9999 -6251.8811 6.8812242 3727.5074 631.3077 -10610.696 0 329.78688 0.00063219526 0.0006027108 + 44120 -6245.0239 -6251.8732 6.8492983 3732.7015 631.71579 -10616.29 0 328.2568 0.00055015052 0.0005226674 + 44130 -6245.0637 -6251.8123 6.7485775 3737.6291 632.77367 -10622.215 0 323.4297 0.00053666529 0.00051186105 + 44140 -6245.1054 -6251.7127 6.6073052 3741.3503 634.44335 -10627.506 0 316.65914 0.00060654761 0.00058394902 + 44150 -6245.1339 -6251.619 6.4851305 3743.3339 636.49606 -10631.449 0 310.80384 0.0007502861 0.00072813775 + 44160 -6245.1417 -6251.5807 6.4390092 3743.5318 638.57107 -10633.684 0 308.59345 0.0009368999 0.00091288202 + 44170 -6245.1368 -6251.616 6.4791236 3742.3174 640.28216 -10634.215 0 310.51596 0.0011225036 0.0010953365 + 44180 -6245.1431 -6251.6952 6.5521503 3740.3152 641.33011 -10633.341 0 314.0158 0.0012631117 0.0012341141 + 44190 -6245.1818 -6251.7671 6.5853372 3738.1664 641.57544 -10631.509 0 315.60631 0.0013286471 0.001301372 + 44200 -6245.2493 -6251.8083 6.5589743 3736.3228 641.04475 -10629.176 0 314.34285 0.0013119425 0.001289315 + 44210 -6245.315 -6251.8393 6.5243459 3734.9708 639.87865 -10626.689 0 312.68326 0.001226626 0.0012079937 + 44220 -6245.3489 -6251.8859 6.53702 3734.1029 638.25807 -10624.247 0 313.29068 0.0010948203 0.0010761817 + 44230 -6245.3524 -6251.9328 6.5803334 3733.6393 636.35016 -10621.922 0 315.3665 0.00093424589 0.00091182242 + 44240 -6245.3567 -6251.9311 6.5743961 3733.4776 634.29532 -10619.704 0 315.08195 0.00075498891 0.00072855145 + 44250 -6245.3897 -6251.8558 6.4660398 3733.4515 632.22977 -10617.537 0 309.88891 0.00056694546 0.00053947819 + 44260 -6245.4486 -6251.7457 6.2971013 3733.2888 630.31931 -10615.354 0 301.79243 0.00038901 0.00036329717 + 44270 -6245.5058 -6251.6789 6.1731459 3732.6661 628.77664 -10613.122 0 295.85179 0.00025039215 0.00022627398 + 44280 -6245.5396 -6251.7047 6.1651836 3731.357 627.84391 -10610.906 0 295.47019 0.0001824157 0.0001574611 + 44290 -6245.558 -6251.8018 6.2438141 3729.3846 627.73878 -10608.925 0 299.23861 0.00020676709 0.0001794781 + 44300 -6245.591 -6251.9015 6.3104862 3727.0773 628.57794 -10607.557 0 302.4339 0.0003271457 0.00029929346 + 44310 -6245.6593 -6251.9575 6.2982177 3725.002 630.3063 -10607.266 0 301.84593 0.00052696606 0.00050246182 + 44320 -6245.7501 -6251.994 6.243973 3723.8207 632.66644 -10608.481 0 299.24622 0.00077135896 0.00075250269 + 44330 -6245.8264 -6252.0808 6.2543626 3724.1441 635.23331 -10611.458 0 299.74415 0.0010113364 0.00099616942 + 44340 -6245.8635 -6252.2552 6.3916704 3726.3969 637.51326 -10616.165 0 306.32471 0.0011912653 0.0011748993 + 44350 -6245.875 -6252.4681 6.5930929 3730.6642 639.07946 -10622.212 0 315.97801 0.0012625241 0.0012413419 + 44360 -6245.903 -6252.6079 6.7048583 3736.5235 639.70028 -10628.832 0 321.33443 0.0012020808 0.001176834 + 44370 -6245.9818 -6252.5815 6.5996838 3742.9636 639.41532 -10634.96 0 316.29388 0.0010275527 0.0010025742 + 44380 -6246.1083 -6252.3808 6.2725429 3748.5186 638.52358 -10639.423 0 300.61545 0.00079790843 0.00077737401 + 44390 -6246.2453 -6252.0868 5.8414905 3751.6474 637.47613 -10641.21 0 279.957 0.00059541646 0.00057997928 + 44400 -6246.351 -6251.8179 5.4668643 3751.2399 636.70641 -10639.764 0 262.00281 0.00049515202 0.00048151289 + 44410 -6246.4086 -6251.6637 5.2551583 3747.0487 636.46322 -10635.176 0 251.85667 0.00053523339 0.00051874175 + 44420 -6246.4359 -6251.646 5.2100763 3739.8617 636.71328 -10628.221 0 249.69609 0.00070059506 0.00067887895 + 44430 -6246.4701 -6251.73 5.2598691 3731.3262 637.15147 -10620.208 0 252.08244 0.00092724319 0.00090207877 + 44440 -6246.5356 -6251.8732 5.3376411 3723.4724 637.31472 -10612.66 0 255.80971 0.0011251858 0.0011009208 + 44450 -6246.6239 -6252.0649 5.44108 3718.118 636.75949 -10606.942 0 260.76708 0.0012101237 0.0011898534 + 44460 -6246.7034 -6252.3143 5.6108437 3716.3715 635.24171 -10603.927 0 268.90311 0.0011314067 0.0011143753 + 44470 -6246.7517 -6252.6039 5.8521627 3718.3764 632.83678 -10603.817 0 280.46847 0.00088792008 0.00087054801 + 44480 -6246.7773 -6252.866 6.0887778 3723.3166 629.95615 -10606.139 0 291.8084 0.00052962867 0.00050897235 + 44490 -6246.8108 -6253.0136 6.2028271 3729.6467 627.25132 -10609.912 0 297.27428 0.00014563452 0.00012187191 + 44500 -6246.8768 -6252.9981 6.1212868 3735.5021 625.43348 -10613.934 0 293.36641 -0.00015931185 -0.00018340138 + 44510 -6246.974 -6252.8415 5.8674619 3739.218 625.06244 -10617.122 0 281.2017 -0.00029518761 -0.00031673662 + 44520 -6247.0787 -6252.6221 5.543412 3739.8167 626.36895 -10618.808 0 265.67141 -0.00021496535 -0.00023320183 + 44530 -6247.1618 -6252.4335 5.2717235 3737.2992 629.16742 -10618.9 0 252.65057 6.9480716e-05 5.2716065e-05 + 44540 -6247.2067 -6252.3398 5.1330265 3732.6414 632.89318 -10617.874 0 246.00343 0.00048956418 0.00047108415 + 44550 -6247.2207 -6252.3428 5.1220232 3727.4954 636.75735 -10616.596 0 245.47609 0.00093925023 0.00091701564 + 44560 -6247.2313 -6252.3829 5.1516587 3723.676 639.96718 -10616.026 0 246.89639 0.0013056908 0.0012810104 + 44570 -6247.2644 -6252.3878 5.1233615 3722.5743 641.9354 -10616.897 0 245.54023 0.0015026316 0.0014799213 + 44580 -6247.3175 -6252.3387 5.0212284 3724.7011 642.41153 -10619.451 0 240.64544 0.0014956634 0.0014791272 + 44590 -6247.3524 -6252.2948 4.9424748 3729.5439 641.5039 -10623.343 0 236.87113 0.0013092113 0.0012988814 + 44600 -6247.3224 -6252.3426 5.0202469 3735.7907 639.60173 -10627.735 0 240.5984 0.0010122805 0.0010032214 + 44610 -6247.2123 -6252.5122 5.2999555 3741.7877 637.2367 -10631.537 0 254.00361 0.00069068813 0.00067668867 + 44620 -6247.0537 -6252.7388 5.6850984 3746.0101 634.93262 -10633.681 0 272.46182 0.0004197582 0.00039854016 + 44630 -6246.9001 -6252.9078 6.0077162 3747.386 633.08383 -10633.378 0 287.92347 0.00024816203 0.00022336515 + 44640 -6246.7811 -6252.9411 6.1600005 3745.4557 631.88685 -10630.284 0 295.22179 0.00019428181 0.00017223903 + 44650 -6246.6769 -6252.8427 6.1657654 3740.4227 631.33307 -10624.598 0 295.49808 0.00024946661 0.00023355351 + 44660 -6246.538 -6252.6673 6.1293873 3733.1362 631.25591 -10617.059 0 293.75463 0.00038281359 0.00037042644 + 44670 -6246.3314 -6252.4478 6.1164104 3724.9796 631.41401 -10608.841 0 293.13271 0.00054721537 0.0005321088 + 44680 -6246.0732 -6252.1588 6.0856466 3717.615 631.58248 -10601.356 0 291.65833 0.00068983248 0.00066771056 + 44690 -6245.8134 -6251.7605 5.9471062 3712.5882 631.62304 -10595.972 0 285.0187 0.0007676727 0.00073985332 + 44700 -6245.5885 -6251.2848 5.6963307 3710.9117 631.51307 -10593.71 0 273.00013 0.00076256574 0.00073423662 + 44710 -6245.3846 -6250.8702 5.4856259 3712.81 631.33228 -10595.012 0 262.90197 0.00068646868 0.00066135708 + 44720 -6245.1506 -6250.6916 5.5410164 3717.7399 631.22193 -10599.653 0 265.5566 0.00057310219 0.00055009067 + 44730 -6244.8463 -6250.8352 5.9889518 3724.6273 631.33634 -10606.799 0 287.02417 0.00046196295 0.00043709561 + 44740 -6244.4771 -6251.2324 6.7553189 3732.1471 631.80092 -10615.18 0 323.75279 0.0003857657 0.00035719283 + 44750 -6244.0841 -6251.7124 7.6283178 3738.9325 632.68381 -10623.329 0 365.59179 0.00036701843 0.00033721505 + 44760 -6243.7039 -6252.1112 8.4072994 3743.7505 633.98229 -10629.844 0 402.92496 0.00041938667 0.00039226039 + 44770 -6243.348 -6252.3292 8.9812535 3745.7286 635.61943 -10633.677 0 430.43206 0.00054581993 0.00052238943 + 44780 -6243.0202 -6252.3125 9.2922655 3744.598 637.44327 -10634.354 0 445.3375 0.00073255273 0.00071019013 + 44790 -6242.7399 -6252.0303 9.2904071 3740.7997 639.22883 -10632.059 0 445.24844 0.00094681787 0.00092218583 + 44800 -6242.5341 -6251.4969 8.9628184 3735.3548 640.69851 -10627.55 0 429.54855 0.0011442742 0.0011160987 + 44810 -6242.4152 -6250.7989 8.3837015 3729.5572 641.57503 -10621.931 0 401.79402 0.0012824993 0.0012518731 + 44820 -6242.3731 -6250.079 7.7058865 3724.6276 641.65391 -10616.36 0 369.30932 0.0013323188 0.0013014426 + 44830 -6242.3836 -6249.4864 7.1028647 3721.4316 640.85851 -10611.777 0 340.40913 0.0012826442 0.0012534461 + 44840 -6242.4195 -6249.1323 6.712795 3720.3271 639.25026 -10608.71 0 321.7148 0.0011395825 0.0011127528 + 44850 -6242.4603 -6249.0647 6.6043776 3721.1619 636.99896 -10607.226 0 316.51883 0.00092241454 0.00089723119 + 44860 -6242.4998 -6249.2664 6.7666287 3723.3874 634.34061 -10606.994 0 324.29481 0.00065916943 0.00063426144 + 44870 -6242.5463 -6249.6778 7.131481 3726.2138 631.54834 -10607.44 0 341.78058 0.00038377188 0.00035798769 + 44880 -6242.6164 -6250.2315 7.6151639 3728.7676 628.92316 -10607.922 0 364.96138 0.00013427387 0.00010673909 + 44890 -6242.7319 -6250.8657 8.1338065 3730.2662 626.7908 -10607.923 0 389.81764 -5.0550867e-05 -8.0654185e-05 + 44900 -6242.9264 -6251.5078 8.5813705 3730.2087 625.47835 -10607.195 0 411.26743 -0.00013779189 -0.00017059467 + 44910 -6243.243 -6252.0653 8.822241 3728.5188 625.25143 -10605.835 0 422.81129 -0.00010846961 -0.00014243116 + 44920 -6243.7111 -6252.4522 8.7410909 3725.5718 626.21999 -10604.244 0 418.92212 3.5734963e-05 3.4046543e-06 + 44930 -6244.3178 -6252.6292 8.3113632 3722.1068 628.25506 -10602.991 0 398.32716 0.00026884528 0.00024014752 + 44940 -6245.005 -6252.6161 7.6111493 3719.0669 630.97325 -10602.656 0 364.76898 0.00054191736 0.00051647976 + 44950 -6245.6951 -6252.4715 6.7764392 3717.3918 633.81915 -10603.682 0 324.76499 0.00079200798 0.00076759264 + 44960 -6246.3234 -6252.2654 5.9420165 3717.7747 636.22242 -10606.263 0 284.77477 0.00095884036 0.00093317323 + 44970 -6246.8557 -6252.0641 5.2083673 3720.4378 637.76359 -10610.265 0 249.61418 0.0010036243 0.00097576702 + 44980 -6247.2883 -6251.9215 4.6331646 3725.0141 638.28244 -10615.218 0 222.04725 0.00092185753 0.00089246816 + 44990 -6247.6377 -6251.8728 4.2350482 3730.5942 637.89734 -10620.364 0 202.96727 0.00074503499 0.00071597213 + 45000 -6247.9254 -6251.9329 4.0074494 3735.9281 636.94084 -10624.802 0 192.05946 0.00053134129 0.00050496015 + 45010 -6248.165 -6252.1057 3.9406498 3739.7311 635.83868 -10627.675 0 188.85805 0.00034860567 0.00032667632 + 45020 -6248.3565 -6252.3923 4.0357669 3741.0251 634.96892 -10628.386 0 193.4166 0.00025384318 0.00023637172 + 45030 -6248.4929 -6252.7832 4.2902944 3739.4345 634.54175 -10626.759 0 205.61498 0.00027442111 0.00025937256 + 45040 -6248.5745 -6253.2378 4.6633491 3735.3368 634.53649 -10623.111 0 223.49386 0.00039700332 0.0003816021 + 45050 -6248.6174 -6253.6787 5.0612608 3729.7857 634.71719 -10618.182 0 242.56401 0.00056996892 0.00055270812 + 45060 -6248.6451 -6254.0151 5.3699676 3724.1986 634.72586 -10612.94 0 257.35898 0.00072059451 0.00070214236 + 45070 -6248.6724 -6254.1823 5.5099169 3719.9182 634.2266 -10608.327 0 264.06613 0.00078128567 0.00076350098 + 45080 -6248.6968 -6254.1623 5.4654298 3717.811 633.05132 -10605.025 0 261.93406 0.00071433393 0.00069846583 + 45090 -6248.7053 -6253.9757 5.2704054 3718.0489 631.29044 -10603.315 0 252.5874 0.00052547833 0.00051122687 + 45100 -6248.6874 -6253.662 4.9745789 3720.1259 629.28948 -10603.077 0 238.40973 0.00026194953 0.00024797479 + 45110 -6248.6424 -6253.2655 4.6230962 3723.0781 627.55035 -10603.894 0 221.56471 -3.0410735e-06 -1.7948074e-05 + 45120 -6248.5759 -6252.8352 4.2592833 3725.8167 626.57432 -10605.226 0 204.12876 -0.0001931994 -0.00020942748 + 45130 -6248.4922 -6252.4295 3.9373072 3727.4705 626.70238 -10606.602 0 188.69785 -0.00025200983 -0.00026939382 + 45140 -6248.3882 -6252.1137 3.7255098 3727.6424 628.00494 -10607.761 0 178.54733 -0.00015920584 -0.0001778027 + 45150 -6248.2554 -6251.9462 3.6907887 3726.5142 630.2525 -10608.713 0 176.8833 6.3316017e-05 4.2825343e-05 + 45160 -6248.0865 -6251.9579 3.871359 3724.7692 632.97466 -10609.702 0 185.53725 0.00035780332 0.00033460563 + 45170 -6247.8805 -6252.1375 4.2569653 3723.3453 635.59048 -10611.073 0 204.01766 0.0006479108 0.00062207889 + 45180 -6247.6423 -6252.4332 4.7909055 3723.0867 637.57353 -10613.093 0 229.60707 0.00086219761 0.00083524878 + 45190 -6247.3773 -6252.769 5.3917285 3724.4104 638.60116 -10615.781 0 258.40188 0.00095629118 0.0009305359 + 45200 -6247.0853 -6253.0647 5.9794756 3727.1191 638.63698 -10618.821 0 286.57002 0.0009257079 0.00090258638 + 45210 -6246.7624 -6253.2519 6.4894445 3730.4482 637.91433 -10621.614 0 311.01059 0.00080412964 0.00078273521 + 45220 -6246.4115 -6253.2778 6.8662876 3733.3404 636.82479 -10623.443 0 329.07103 0.00064741157 0.00062465958 + 45230 -6246.0546 -6253.1064 7.0518406 3734.8336 635.75561 -10623.696 0 337.96377 0.00050996818 0.00048281206 + 45240 -6245.7318 -6252.7272 6.9953567 3734.3878 634.94275 -10622.058 0 335.25674 0.00042432466 0.00039249548 + 45250 -6245.4809 -6252.1783 6.6974542 3732.0175 634.4012 -10618.597 0 320.97959 0.00039314225 0.0003598926 + 45260 -6245.3093 -6251.5624 6.253012 3728.2111 633.9598 -10613.733 0 299.67942 0.00039568443 0.00036548272 + 45270 -6245.1875 -6251.0239 5.8364142 3723.73 633.37889 -10608.133 0 279.71371 0.00040246276 0.00037751668 + 45280 -6245.0706 -6250.6876 5.6169845 3719.4004 632.48988 -10602.578 0 269.19742 0.00038915734 0.00036797157 + 45290 -6244.9319 -6250.5974 5.6654402 3715.9485 631.28995 -10597.836 0 271.51968 0.00034484065 0.00032408271 + 45300 -6244.7778 -6250.7084 5.9306056 3713.8747 629.95386 -10594.537 0 284.2279 0.00027453452 0.00025224631 + 45310 -6244.634 -6250.9372 6.3032443 3713.3648 628.76838 -10593.07 0 302.08684 0.0001972941 0.00017431882 + 45320 -6244.5182 -6251.2219 6.703649 3714.2742 628.02652 -10593.523 0 321.27647 0.00013965092 0.00011812389 + 45330 -6244.4276 -6251.5409 7.1132497 3716.2163 627.92761 -10595.685 0 340.90684 0.0001248657 0.0001055506 + 45340 -6244.3496 -6251.8804 7.5307965 3718.7279 628.5191 -10599.127 0 360.91802 0.00016190362 0.00014310851 + 45350 -6244.2843 -6252.1914 7.9070525 3721.4244 629.6947 -10603.31 0 378.95032 0.00024035941 0.00021942376 + 45360 -6244.2514 -6252.3815 8.1301478 3724.0566 631.2406 -10607.679 0 389.6423 0.0003351862 0.00031095606 + 45370 -6244.2734 -6252.3565 8.0831162 3726.4556 632.90571 -10611.718 0 387.38828 0.00041902729 0.00039285069 + 45380 -6244.3521 -6252.0765 7.7243738 3728.4372 634.46858 -10614.982 0 370.19533 0.00047487744 0.00044926712 + 45390 -6244.4612 -6251.584 7.1228296 3729.7595 635.78117 -10617.125 0 341.36596 0.00050204568 0.00047844858 + 45400 -6244.5621 -6250.9911 6.4290157 3730.1747 636.78182 -10617.948 0 308.1145 0.00051359494 0.00049122771 + 45410 -6244.6261 -6250.4432 5.8170584 3729.5345 637.4788 -10617.457 0 278.78608 0.00052844025 0.00050481554 + 45420 -6244.6464 -6250.0784 5.4320227 3727.8856 637.91217 -10615.876 0 260.33301 0.00056217632 0.00053472302 + 45430 -6244.6382 -6249.9914 5.3532729 3725.5035 638.10741 -10613.602 0 256.55887 0.00061930764 0.00058719777 + 45440 -6244.6284 -6250.2125 5.5840585 3722.8443 638.03805 -10611.095 0 267.61942 0.00068919239 0.00065427439 + 45450 -6244.6376 -6250.7119 6.0742807 3720.4273 637.61513 -10608.754 0 291.11361 0.0007477325 0.00071353147 + 45460 -6244.6681 -6251.4167 6.7486467 3718.7012 636.71634 -10606.834 0 323.43302 0.00076448216 0.00073372509 + 45470 -6244.7119 -6252.2144 7.5024888 3717.9454 635.25315 -10605.413 0 359.56136 0.0007124634 0.00068535513 + 45480 -6244.7705 -6252.9538 8.1833028 3718.2123 633.25074 -10604.417 0 392.18979 0.00057824503 0.00055301673 + 45490 -6244.8611 -6253.4743 8.6131902 3719.2936 630.90049 -10603.668 0 412.7924 0.00037031749 0.00034504091 + 45500 -6245.0029 -6253.6568 8.6539449 3720.7357 628.55257 -10602.945 0 414.7456 0.00012196351 9.584362e-05 + 45510 -6245.2001 -6253.4615 8.2613202 3721.9469 626.64093 -10602.049 0 395.92882 -0.00011526673 -0.00014160258 + 45520 -6245.4354 -6252.9374 7.5019809 3722.3756 625.56289 -10600.876 0 359.53702 -0.00028634657 -0.00031141182 + 45530 -6245.6731 -6252.2129 6.5397561 3721.6916 625.55886 -10599.463 0 313.4218 -0.00034961904 -0.00037237627 + 45540 -6245.8753 -6251.4591 5.5838591 3719.9132 626.6413 -10598.014 0 267.60986 -0.00028947653 -0.00031037081 + 45550 -6246.0229 -6250.8295 4.806592 3717.4487 628.59664 -10596.875 0 230.35886 -0.00012126978 -0.00014161487 + 45560 -6246.1243 -6250.4133 4.2890235 3715.014 631.04707 -10596.474 0 205.55407 0.00011303655 9.2802497e-05 + 45570 -6246.199 -6250.2399 4.0409319 3713.4202 633.54116 -10597.201 0 193.66413 0.00035731211 0.00033827518 + 45580 -6246.2538 -6250.3153 4.0615218 3713.3093 635.64802 -10599.273 0 194.65091 0.00055737455 0.00054066773 + 45590 -6246.2752 -6250.6421 4.3668775 3714.951 637.04273 -10602.636 0 209.28527 0.00067494886 0.00065975873 + 45600 -6246.2461 -6251.2017 4.9556751 3718.1725 637.57248 -10606.947 0 237.50376 0.00069546042 0.00067890207 + 45610 -6246.1687 -6251.9234 5.7547484 3722.4075 637.28805 -10611.619 0 275.79983 0.00062896923 0.00060831506 + 45620 -6246.0737 -6252.6812 6.6075453 3726.8181 636.42381 -10615.923 0 316.67065 0.0005057883 0.00048106731 + 45630 -6246.0034 -6253.3317 7.3283839 3730.454 635.3214 -10619.107 0 351.21728 0.00036827127 0.00034266689 + 45640 -6245.9831 -6253.768 7.7849095 3732.449 634.31462 -10620.532 0 373.09654 0.00025923093 0.00023655885 + 45650 -6246.005 -6253.9492 7.944129 3732.2423 633.61621 -10619.808 0 380.72724 0.00020818739 0.00018938024 + 45660 -6246.0408 -6253.8868 7.8460932 3729.7711 633.25363 -10616.912 0 376.02881 0.0002197035 0.00020137595 + 45670 -6246.0722 -6253.6034 7.5311712 3725.5401 633.08274 -10612.226 0 360.93598 0.00027023267 0.00024696917 + 45680 -6246.1134 -6253.1061 6.9926583 3720.4951 632.87142 -10606.473 0 335.12742 0.00031756508 0.00028645029 + 45690 -6246.1991 -6252.4079 6.2088202 3715.7095 632.41329 -10600.531 0 297.5615 0.00032028937 0.0002839325 + 45700 -6246.3492 -6251.5807 5.2315217 3712.0119 631.62129 -10595.214 0 250.72388 0.00025806471 0.0002232558 + 45710 -6246.542 -6250.7865 4.2445477 3709.7413 630.56506 -10591.093 0 203.42254 0.00014196659 0.0001146972 + 45720 -6246.7227 -6250.2425 3.5197767 3708.7596 629.44438 -10588.446 0 168.68745 9.1944192e-06 -1.0007855e-05 + 45730 -6246.8428 -6250.1253 3.2825534 3708.6939 628.51646 -10587.336 0 157.31838 -9.5018413e-05 -0.00011150164 + 45740 -6246.8973 -6250.4753 3.5779765 3709.2419 628.00777 -10587.725 0 171.47671 -0.00013848216 -0.00015906253 + 45750 -6246.9313 -6251.1715 4.2401739 3710.3426 628.03939 -10589.554 0 203.21292 -0.00011506616 -0.00014230007 + 45760 -6247.0081 -6252.0027 4.9945837 3712.1244 628.58809 -10592.715 0 239.36847 -4.3826142e-05 -7.3801167e-05 + 45770 -6247.1624 -6252.7823 5.6198447 3714.7011 629.49671 -10596.98 0 269.33449 4.3216193e-05 1.7528583e-05 + 45780 -6247.3754 -6253.4194 6.0439818 3717.9831 630.53392 -10601.936 0 289.66152 0.00011612327 9.8762984e-05 + 45790 -6247.5948 -6253.8996 6.3047719 3721.6223 631.48423 -10607.006 0 302.16005 0.00015697595 0.0001455267 + 45800 -6247.7835 -6254.2109 6.4273134 3725.092 632.23134 -10611.534 0 308.03292 0.00016266357 0.00015052442 + 45810 -6247.9502 -6254.2969 6.3466934 3727.8158 632.79682 -10614.91 0 304.16916 0.00014359254 0.00012594451 + 45820 -6248.1331 -6254.0909 5.9577414 3729.2695 633.31241 -10616.673 0 285.5284 0.00012109911 9.9170565e-05 + 45830 -6248.3527 -6253.6006 5.2478697 3729.0558 633.93424 -10616.591 0 251.50736 0.00012252527 0.00010226099 + 45840 -6248.5814 -6252.96 4.3786655 3727.0029 634.73737 -10614.7 0 209.85022 0.00017126319 0.00015768743 + 45850 -6248.7616 -6252.385 3.6233506 3723.3013 635.64282 -10611.329 0 173.65129 0.00027298509 0.00026554389 + 45860 -6248.8515 -6252.0577 3.2061883 3718.6038 636.41396 -10607.075 0 153.65853 0.00040537698 0.00039837815 + 45870 -6248.855 -6252.0341 3.179081 3713.967 636.72513 -10602.726 0 152.3594 0.00051996137 0.00050735496 + 45880 -6248.8142 -6252.2407 3.4265794 3710.5744 636.27488 -10599.09 0 164.22091 0.00055856005 0.00053869216 + 45890 -6248.775 -6252.5522 3.7772124 3709.325 634.9033 -10596.781 0 181.02521 0.00047805574 0.00045457986 + 45900 -6248.7538 -6252.8778 4.1239679 3710.4728 632.67423 -10596.025 0 197.64368 0.00027164357 0.00025025756 + 45910 -6248.727 -6253.1929 4.4658978 3713.495 629.89533 -10596.583 0 214.03088 -2.3900214e-05 -3.9975541e-05 + 45920 -6248.6515 -6253.5039 4.8523349 3717.2593 627.06678 -10597.83 0 232.55112 -0.00033832102 -0.00035051396 + 45930 -6248.4994 -6253.7861 5.2867228 3720.4125 624.76974 -10598.968 0 253.36942 -0.00059042202 -0.00060311402 + 45940 -6248.2794 -6253.9576 5.6781522 3721.8247 623.52071 -10599.303 0 272.12891 -0.00071333647 -0.0007299985 + 45950 -6248.029 -6253.9175 5.8885165 3720.9261 623.62825 -10598.472 0 282.21075 -0.00067359736 -0.00069422028 + 45960 -6247.7828 -6253.6181 5.8353263 3717.8527 625.09437 -10596.565 0 279.66158 -0.00047949658 -0.00050138913 + 45970 -6247.5481 -6253.1046 5.5564336 3713.4011 627.59763 -10594.103 0 266.29548 -0.00017846301 -0.00019921589 + 45980 -6247.3088 -6252.492 5.1832013 3708.824 630.57263 -10591.889 0 248.40809 0.0001549723 0.00013536585 + 45990 -6247.0471 -6251.9021 4.8550218 3705.5076 633.36668 -10590.776 0 232.67989 0.00043831014 0.00041798236 + 46000 -6246.7629 -6251.4117 4.6488805 3704.5928 635.42483 -10591.429 0 222.80044 0.00060348929 0.00058116067 + 46010 -6246.4727 -6251.0468 4.5741188 3706.6291 636.44186 -10594.118 0 219.21744 0.00061697344 0.00059401799 + 46020 -6246.1892 -6250.8206 4.6314442 3711.3606 636.42964 -10598.611 0 221.96479 0.00049122143 0.00047114596 + 46030 -6245.8954 -6250.7768 4.8814062 3717.7381 635.67805 -10604.193 0 233.94437 0.0002820911 0.00026723008 + 46040 -6245.5425 -6250.9829 5.4404362 3724.196 634.62825 -10609.807 0 260.73623 7.012407e-05 5.8271898e-05 + 46050 -6245.0868 -6251.4576 6.3707297 3729.1306 633.70991 -10614.298 0 305.32111 -6.9388805e-05 -8.4536524e-05 + 46060 -6244.5448 -6252.0908 7.5459747 3731.3892 633.2023 -10616.682 0 361.64545 -9.4881323e-05 -0.00011859728 + 46070 -6244.0092 -6252.6526 8.6433927 3730.5546 633.16396 -10616.371 0 414.23988 -1.1087961e-05 -4.2159847e-05 + 46080 -6243.5919 -6252.91 9.3181187 3726.9304 633.44599 -10613.286 0 446.57653 0.000139971 0.0001090485 + 46090 -6243.339 -6252.7605 9.4214831 3721.3237 633.77284 -10607.857 0 451.53033 0.00030124097 0.00027770203 + 46100 -6243.2045 -6252.2645 9.0599928 3714.8024 633.85217 -10600.919 0 434.20569 0.0004210918 0.00040514847 + 46110 -6243.1075 -6251.5641 8.4566365 3708.5153 633.47283 -10593.552 0 405.28947 0.00046365605 0.00044817835 + 46120 -6243.007 -6250.7789 7.7718566 3703.5337 632.56547 -10586.878 0 372.47098 0.00041177371 0.00038858133 + 46130 -6242.9245 -6249.9731 7.0485995 3700.6577 631.21772 -10581.848 0 337.80844 0.00026869109 0.00023562866 + 46140 -6242.9048 -6249.2047 6.2999043 3700.2122 629.6462 -10579.063 0 301.92676 5.9810452e-05 2.26074e-05 + 46150 -6242.9605 -6248.5914 5.6309595 3701.9367 628.13481 -10578.663 0 269.86717 -0.00016950311 -0.00020194022 + 46160 -6243.0469 -6248.3186 5.2717051 3705.0689 626.95881 -10580.346 0 252.64969 -0.00036401665 -0.00038702914 + 46170 -6243.0877 -6248.5597 5.4720137 3708.6259 626.31896 -10583.504 0 262.2496 -0.0004756604 -0.0004930025 + 46180 -6243.0336 -6249.3522 6.3186211 3711.7658 626.30461 -10587.423 0 302.82378 -0.00048083974 -0.00050190971 + 46190 -6242.9145 -6250.5235 7.6089935 3714.0374 626.89067 -10591.451 0 364.66566 -0.00038889135 -0.00042076697 + 46200 -6242.838 -6251.7444 8.9063627 3715.3833 627.96296 -10595.091 0 426.84287 -0.00023545096 -0.00027629254 + 46210 -6242.9209 -6252.6944 9.773592 3715.9356 629.36198 -10597.992 0 468.40537 -6.3049567e-05 -0.00010315588 + 46220 -6243.2016 -6253.2143 10.012639 3715.8036 630.93092 -10599.949 0 479.86184 9.8726234e-05 6.859549e-05 + 46230 -6243.6206 -6253.3269 9.7063033 3715.0442 632.54629 -10600.917 0 465.18051 0.00023939006 0.00022013009 + 46240 -6244.0842 -6253.1345 9.050283 3713.8046 634.11211 -10601.051 0 433.74034 0.00035736732 0.00034153249 + 46250 -6244.5402 -6252.7108 8.17058 3712.4502 635.52053 -10600.682 0 391.58004 0.00044528762 0.0004244899 + 46260 -6244.9897 -6252.0912 7.1015292 3711.5062 636.61119 -10600.209 0 340.34513 0.00048509503 0.00045740705 + 46270 -6245.4433 -6251.345 5.9016582 3711.4237 637.17184 -10599.94 0 282.84058 0.00045650769 0.00042738448 + 46280 -6245.8819 -6250.631 4.7491314 3712.3314 636.99785 -10599.96 0 227.60502 0.00035045392 0.00032727243 + 46290 -6246.2612 -6250.1684 3.9071836 3713.9375 635.98462 -10600.091 0 187.25416 0.00017693752 0.00016256021 + 46300 -6246.5454 -6250.133 3.5875781 3715.6338 634.20191 -10599.969 0 171.93687 -3.6509248e-05 -4.5854505e-05 + 46310 -6246.735 -6250.5563 3.8213609 3716.7269 631.90921 -10599.192 0 183.14106 -0.00025258959 -0.00026396271 + 46320 -6246.8709 -6251.3031 4.4321623 3716.6656 629.50247 -10597.471 0 212.41409 -0.00043314046 -0.000451238 + 46330 -6247.0117 -6252.1457 5.1340142 3715.1761 627.41144 -10594.733 0 246.05077 -0.00054635158 -0.00057021113 + 46340 -6247.1968 -6252.883 5.686152 3712.3032 625.98492 -10591.171 0 272.51231 -0.00057246361 -0.00059693396 + 46350 -6247.4235 -6253.4171 5.9935783 3708.4082 625.40222 -10587.227 0 287.2459 -0.00050895408 -0.00052921891 + 46360 -6247.6548 -6253.7481 6.0932494 3704.15 625.63585 -10583.534 0 292.0227 -0.00037431227 -0.00038950415 + 46370 -6247.8503 -6253.9154 6.0650833 3700.4158 626.47143 -10580.803 0 290.67282 -0.00020728153 -0.00022066476 + 46380 -6247.992 -6253.9441 5.9521595 3698.1574 627.57725 -10579.679 0 285.26088 -5.8977451e-05 -7.5239907e-05 + 46390 -6248.0903 -6253.8296 5.7392659 3698.142 628.6065 -10580.578 0 275.05782 2.1423346e-05 -4.9428084e-07 + 46400 -6248.172 -6253.558 5.3860153 3700.6837 629.30522 -10583.547 0 258.12807 3.2963756e-06 -2.327163e-05 + 46410 -6248.2587 -6253.1442 4.8855158 3705.4563 629.59154 -10588.192 0 234.14133 -0.00011236693 -0.00013947101 + 46420 -6248.3495 -6252.6602 4.310687 3711.4788 629.57663 -10593.716 0 206.59231 -0.00028913258 -0.00031243996 + 46430 -6248.4196 -6252.2285 3.8089139 3717.3253 629.5188 -10599.073 0 182.54452 -0.00046397158 -0.00048213085 + 46440 -6248.438 -6251.9705 3.5325411 3721.5241 629.72587 -10603.221 0 169.29919 -0.00056752359 -0.00058311141 + 46450 -6248.393 -6251.9408 3.547852 3723.0098 630.43693 -10605.388 0 170.03297 -0.00054884826 -0.00056603124 + 46460 -6248.3032 -6252.1013 3.7981551 3721.4489 631.71829 -10605.269 0 182.0289 -0.00039466003 -0.00041546794 + 46470 -6248.2031 -6252.3616 4.1585559 3717.3199 633.40609 -10603.088 0 199.30133 -0.00013529634 -0.0001579307 + 46480 -6248.1142 -6252.6482 4.5339359 3711.7517 635.12102 -10599.521 0 217.29165 0.00016386188 0.00014306597 + 46490 -6248.0299 -6252.9363 4.906416 3706.2104 636.36277 -10595.509 0 235.14298 0.00042075044 0.00040368598 + 46500 -6247.9292 -6253.2205 5.2913123 3702.132 636.66249 -10592.015 0 253.58938 0.0005583266 0.00054339078 + 46510 -6247.8054 -6253.4624 5.6569276 3700.5597 635.74465 -10589.767 0 271.11171 0.00052504954 0.00050888213 + 46520 -6247.6795 -6253.5773 5.897756 3701.846 633.63991 -10589.063 0 282.65356 0.00031085917 0.00029170462 + 46530 -6247.584 -6253.478 5.8939986 3705.507 630.70504 -10589.69 0 282.47348 -4.5547069e-05 -6.6063539e-05 + 46540 -6247.5341 -6253.1427 5.6086722 3710.3122 627.53791 -10590.993 0 268.79904 -0.0004627501 -0.0004810624 + 46550 -6247.5109 -6252.6502 5.1393096 3714.6258 624.8135 -10592.089 0 246.30455 -0.00083741122 -0.0008514079 + 46560 -6247.4741 -6252.149 4.6748577 3716.9132 623.09637 -10592.159 0 224.04541 -0.0010749452 -0.0010862415 + 46570 -6247.3936 -6251.778 4.3844198 3716.2436 622.6912 -10590.713 0 210.126 -0.0011192124 -0.0011320346 + 46580 -6247.2724 -6251.5981 4.3257493 3712.5964 623.57535 -10587.77 0 207.31418 -0.00096914742 -0.00098661084 + 46590 -6247.1402 -6251.589 4.4487506 3706.8548 625.42626 -10583.87 0 213.20909 -0.00067568681 -0.00069691133 + 46600 -6247.0211 -6251.7036 4.6825468 3700.5033 627.72845 -10579.935 0 224.41392 -0.00032183287 -0.00034281612 + 46610 -6246.9059 -6251.9197 5.0137823 3695.1815 629.92475 -10577.026 0 240.28858 3.9016522e-06 -1.3685118e-05 + 46620 -6246.7576 -6252.2321 5.4745746 3692.2672 631.56635 -10576.066 0 262.37233 0.00022992688 0.00021480041 + 46630 -6246.5467 -6252.6014 6.054679 3692.586 632.41826 -10577.606 0 290.17419 0.00031481133 0.0002978323 + 46640 -6246.285 -6252.9207 6.6357615 3696.2468 632.49327 -10581.661 0 318.02292 0.00025237436 0.00022991083 + 46650 -6246.022 -6253.0523 7.0302589 3702.5876 632.01363 -10587.654 0 336.92945 7.1330637e-05 4.3913689e-05 + 46660 -6245.8063 -6252.9115 7.1051031 3710.2606 631.3229 -10594.495 0 340.51641 -0.00017043004 -0.00019857752 + 46670 -6245.6468 -6252.5274 6.8805953 3717.5111 630.77964 -10600.818 0 329.75674 -0.00039912338 -0.0004239796 + 46680 -6245.5112 -6252.0244 6.5131625 3722.6259 630.65845 -10605.309 0 312.14729 -0.00054577625 -0.00056701766 + 46690 -6245.3602 -6251.5423 6.1821293 3724.411 631.07467 -10607.028 0 296.28232 -0.00056822713 -0.00058918334 + 46700 -6245.1804 -6251.1622 5.9818688 3722.5114 631.94705 -10605.621 0 286.68472 -0.00046471891 -0.00048911475 + 46710 -6244.9912 -6250.8886 5.8973899 3717.4611 633.01496 -10601.365 0 282.63601 -0.00027252736 -0.00030092363 + 46720 -6244.8235 -6250.6905 5.8669217 3710.469 633.91468 -10595.074 0 281.17581 -5.2565397e-05 -8.1438682e-05 + 46730 -6244.6864 -6250.5634 5.8770273 3703.0451 634.29321 -10587.902 0 281.66012 0.00013243671 0.00010793727 + 46740 -6244.5493 -6250.5569 6.0076591 3696.6206 633.91737 -10581.095 0 287.92074 0.00023604159 0.00021756692 + 46750 -6244.3605 -6250.73 6.3694026 3692.2934 632.73887 -10575.762 0 305.25751 0.00023547541 0.00021925605 + 46760 -6244.0949 -6251.066 6.9711014 3690.7171 630.8971 -10572.68 0 334.09429 0.00012890543 0.00010860407 + 46770 -6243.7874 -6251.4347 7.6473531 3692.0495 628.66742 -10572.152 0 366.50407 -7.0082627e-05 -9.7430749e-05 + 46780 -6243.5145 -6251.6597 8.1452173 3695.8895 626.38362 -10573.933 0 390.36452 -0.00033410198 -0.00036477132 + 46790 -6243.3307 -6251.6468 8.3161278 3701.2565 624.37014 -10577.273 0 398.55551 -0.00062039269 -0.00064712796 + 46800 -6243.2212 -6251.455 8.2338075 3706.7451 622.90689 -10581.107 0 394.61026 -0.00087320053 -0.00089231612 + 46810 -6243.1222 -6251.2375 8.1153552 3710.8972 622.22207 -10584.357 0 388.93336 -0.0010352083 -0.0010507505 + 46820 -6242.9893 -6251.1059 8.1166313 3712.6549 622.48585 -10586.247 0 388.99451 -0.0010644828 -0.0010851957 + 46830 -6242.847 -6251.0406 8.1935638 3711.6697 623.78091 -10586.491 0 392.68155 -0.00094763876 -0.00097929094 + 46840 -6242.7723 -6250.9246 8.1522448 3708.3377 626.05268 -10585.315 0 390.70131 -0.00070246477 -0.00074233534 + 46850 -6242.8277 -6250.6678 7.8400591 3703.5965 629.06786 -10583.332 0 375.73962 -0.00037067956 -0.00040914601 + 46860 -6243.0029 -6250.3131 7.3101301 3698.6327 632.41373 -10581.36 0 350.34245 -7.2335399e-06 -3.5377233e-05 + 46870 -6243.2182 -6250.0315 6.8132839 3694.6365 635.55317 -10580.221 0 326.53079 0.00032757306 0.00031059373 + 46880 -6243.3888 -6250.0047 6.6159536 3692.64 637.92688 -10580.572 0 317.07362 0.00057250973 0.00055855097 + 46890 -6243.4967 -6250.284 6.7872751 3693.3741 639.07802 -10582.736 0 325.28431 0.00067150702 0.00065003272 + 46900 -6243.6122 -6250.74 7.127715 3697.0666 638.76708 -10586.574 0 341.6001 0.00058666273 0.00055370377 + 46910 -6243.8418 -6251.152 7.310165 3703.2069 637.04382 -10591.403 0 350.34412 0.00031678453 0.00027873355 + 46920 -6244.2381 -6251.3752 7.1370907 3710.4428 634.25061 -10596.069 0 342.04943 -8.8868591e-05 -0.00012045944 + 46930 -6244.749 -6251.4464 6.6973605 3716.8108 630.95113 -10599.208 0 320.9751 -0.00053536744 -0.00055396494 + 46940 -6245.2616 -6251.5311 6.2694905 3720.3346 627.80227 -10599.668 0 300.46916 -0.00091037966 -0.00092037631 + 46950 -6245.7015 -6251.7581 6.0565941 3719.7501 625.40092 -10596.909 0 290.26597 -0.0011241347 -0.0011368031 + 46960 -6246.0881 -6252.0976 6.0094459 3714.9803 624.14045 -10591.218 0 288.00636 -0.0011397767 -0.0011631079 + 46970 -6246.4957 -6252.3944 5.8987123 3707.1233 624.11249 -10583.63 0 282.69939 -0.00097981845 -0.0010117065 + 46980 -6246.9677 -6252.516 5.5482239 3698.0236 625.08719 -10575.627 0 265.90202 -0.00071038073 -0.00074095443 + 46990 -6247.4685 -6252.4715 5.0029992 3689.6982 626.58778 -10568.757 0 239.77179 -0.00041591382 -0.00043623702 + 47000 -6247.9114 -6252.4054 4.494006 3683.8687 628.04034 -10564.314 0 215.37798 -0.00017675819 -0.0001860793 + 47010 -6248.2261 -6252.4807 4.254604 3681.6881 628.9495 -10563.118 0 203.9045 -5.4189637e-05 -6.0191101e-05 + 47020 -6248.4061 -6252.7537 4.3476321 3683.605 629.0438 -10565.402 0 208.36292 -8.095528e-05 -9.3540902e-05 + 47030 -6248.5095 -6253.134 4.6245818 3689.2859 628.34917 -10570.769 0 221.63591 -0.00025441861 -0.00027811222 + 47040 -6248.6173 -6253.4537 4.8363307 3697.5973 627.17186 -10578.223 0 231.7841 -0.00053293578 -0.00056356901 + 47050 -6248.7761 -6253.5917 4.8156659 3706.7298 625.99736 -10586.319 0 230.79373 -0.0008400441 -0.00086827558 + 47060 -6248.9635 -6253.5586 4.5951263 3714.55 625.33715 -10593.446 0 220.22424 -0.0010813729 -0.0011004013 + 47070 -6249.1091 -6253.4698 4.3606577 3719.1634 625.57164 -10598.205 0 208.98719 -0.0011735184 -0.0011846847 + 47080 -6249.1549 -6253.43 4.275104 3719.5064 626.83389 -10599.77 0 204.88697 -0.0010750583 -0.0010864553 + 47090 -6249.1053 -6253.4338 4.3285273 3715.7035 628.95991 -10598.097 0 207.44731 -0.0008047372 -0.00082397181 + 47100 -6249.0227 -6253.3786 4.3558699 3708.9966 631.51465 -10593.89 0 208.75773 -0.00043631024 -0.00046392165 + 47110 -6248.9718 -6253.1766 4.2048102 3701.2813 633.89274 -10588.351 0 201.5181 -7.1949808e-05 -0.00010135094 + 47120 -6248.9651 -6252.8551 3.8900354 3694.4898 635.47775 -10582.823 0 186.43232 0.00019214327 0.00016856772 + 47130 -6248.9578 -6252.5494 3.5916149 3690.0923 635.81796 -10578.46 0 172.13034 0.00029231393 0.00027680438 + 47140 -6248.888 -6252.4029 3.5148593 3688.8431 634.75924 -10576.005 0 168.45178 0.0002088075 0.00019683281 + 47150 -6248.723 -6252.4664 3.7434403 3690.7394 632.48794 -10575.694 0 179.40667 -3.6028069e-05 -5.1769959e-05 + 47160 -6248.4784 -6252.6701 4.1917385 3695.1031 629.47276 -10577.246 0 200.89163 -0.00038718328 -0.00041098036 + 47170 -6248.2044 -6252.876 4.6716518 3700.7355 626.33122 -10579.943 0 223.89176 -0.00076998839 -0.00079975574 + 47180 -6247.9493 -6252.9725 5.0232255 3706.1392 623.66783 -10582.78 0 240.74115 -0.0011045756 -0.0011332613 + 47190 -6247.721 -6252.947 5.2260059 3709.8211 621.93531 -10584.703 0 250.45952 -0.0013207943 -0.0013418241 + 47200 -6247.4776 -6252.8831 5.4054776 3710.6655 621.35708 -10584.906 0 259.06082 -0.001372942 -0.0013858165 + 47210 -6247.1641 -6252.8735 5.7094033 3708.2965 621.91971 -10583.09 0 273.62664 -0.0012524218 -0.0012636284 + 47220 -6246.7709 -6252.9159 6.1449445 3703.2736 623.41475 -10579.604 0 294.50022 -0.00099345711 -0.0010111847 + 47230 -6246.3593 -6252.8923 6.5329543 3696.9698 625.49992 -10575.362 0 313.09583 -0.00066574556 -0.00069266411 + 47240 -6246.0198 -6252.6668 6.6470435 3691.1244 627.76569 -10571.557 0 318.56362 -0.00035287218 -0.0003837839 + 47250 -6245.796 -6252.2141 6.4181637 3687.268 629.80979 -10569.292 0 307.59441 -0.00012500089 -0.00015186358 + 47260 -6245.6507 -6251.6556 6.0048926 3686.2958 631.31943 -10569.271 0 287.78815 -1.9680417e-05 -3.922102e-05 + 47270 -6245.5067 -6251.1702 5.663496 3688.3328 632.14108 -10571.644 0 271.42651 -3.8630977e-05 -5.5354382e-05 + 47280 -6245.3178 -6250.8645 5.5466927 3692.837 632.30845 -10576.01 0 265.82864 -0.00015680041 -0.00017887568 + 47290 -6245.1051 -6250.7131 5.6079511 3698.7931 632.01125 -10581.517 0 268.76448 -0.00033421009 -0.00036612603 + 47300 -6244.933 -6250.6134 5.680349 3704.9095 631.51288 -10587.036 0 272.2342 -0.0005244025 -0.00056277358 + 47310 -6244.8465 -6250.5039 5.6573955 3709.8192 631.04811 -10591.371 0 271.13414 -0.00068009903 -0.00071635129 + 47320 -6244.8234 -6250.4452 5.6217665 3712.3311 630.74429 -10593.521 0 269.42659 -0.00076055594 -0.00078858941 + 47330 -6244.7858 -6250.5827 5.7969241 3711.7405 630.60038 -10592.924 0 277.82113 -0.00074303994 -0.00076533695 + 47340 -6244.6672 -6251.0072 6.3400218 3708.1084 630.52641 -10589.642 0 303.84942 -0.00063428968 -0.00066052609 + 47350 -6244.4796 -6251.6345 7.1548823 3702.3335 630.40974 -10584.378 0 342.90211 -0.00047274186 -0.00051144845 + 47360 -6244.3145 -6252.2291 7.91461 3695.8886 630.16359 -10578.281 0 379.31252 -0.00031541962 -0.00036614939 + 47370 -6244.2696 -6252.5601 8.2905526 3690.3019 629.7388 -10572.601 0 397.3298 -0.00021467926 -0.00026797065 + 47380 -6244.3704 -6252.5465 8.1760517 3686.6636 629.11343 -10568.324 0 391.84227 -0.00019917141 -0.00024390554 + 47390 -6244.5591 -6252.2737 7.7145914 3685.4017 628.2856 -10565.961 0 369.7265 -0.00026972063 -0.0003007949 + 47400 -6244.7474 -6251.905 7.1576175 3686.3522 627.27962 -10565.537 0 343.03319 -0.00040793372 -0.00042848807 + 47410 -6244.8736 -6251.584 6.7103649 3688.9725 626.15791 -10566.714 0 321.59834 -0.00058749569 -0.00060585138 + 47420 -6244.9266 -6251.3843 6.457692 3692.5512 625.02851 -10568.964 0 309.48883 -0.00078124783 -0.0008058447 + 47430 -6244.9409 -6251.2986 6.3576824 3696.354 624.04302 -10571.696 0 304.69581 -0.00096354809 -0.00099838848 + 47440 -6244.9757 -6251.2585 6.28276 3699.6989 623.3823 -10574.34 0 301.10511 -0.0011097209 -0.0011519447 + 47450 -6245.0788 -6251.1894 6.1105878 3701.9759 623.22892 -10576.394 0 292.85366 -0.0011942962 -0.0012355642 + 47460 -6245.25 -6251.0779 5.8279683 3702.6778 623.72931 -10577.485 0 279.30894 -0.0011911402 -0.0012230096 + 47470 -6245.4349 -6250.9942 5.5592649 3701.5178 624.95038 -10577.462 0 266.43117 -0.001079759 -0.0010997783 + 47480 -6245.5631 -6251.0359 5.4727865 3698.6281 626.83618 -10576.5 0 262.28664 -0.00085841926 -0.00087200775 + 47490 -6245.6022 -6251.2398 5.63754 3694.7038 629.17355 -10575.117 0 270.18255 -0.0005571657 -0.00057341902 + 47500 -6245.582 -6251.5428 5.9608402 3690.9226 631.58698 -10574.052 0 285.67691 -0.00023975195 -0.00026458936 + 47510 -6245.5694 -6251.8303 6.2609252 3688.5975 633.59028 -10574.018 0 300.05867 1.1634653e-05 -2.0591003e-05 + 47520 -6245.6172 -6252.0218 6.4045554 3688.6977 634.70642 -10575.426 0 306.94223 0.00012423888 9.1170453e-05 + 47530 -6245.728 -6252.1219 6.3939587 3691.4575 634.62664 -10578.206 0 306.43438 6.2271117e-05 3.4626208e-05 + 47540 -6245.8573 -6252.1991 6.3417343 3696.2461 633.34166 -10581.787 0 303.93149 -0.00015902453 -0.00018029434 + 47550 -6245.9539 -6252.3129 6.358995 3701.7521 631.17716 -10585.242 0 304.75872 -0.00047867798 -0.00049862096 + 47560 -6246.0041 -6252.4463 6.4421958 3706.3975 628.70615 -10587.55 0 308.74617 -0.00081101695 -0.00083641335 + 47570 -6246.047 -6252.4997 6.4526797 3708.8088 626.56602 -10587.875 0 309.24862 -0.001072382 -0.0011057225 + 47580 -6246.1435 -6252.3685 6.2250249 3708.1762 625.24877 -10585.793 0 298.33812 -0.0012033229 -0.0012401338 + 47590 -6246.3189 -6252.0488 5.7299151 3704.4209 624.94499 -10581.415 0 274.60968 -0.0011811849 -0.0012135109 + 47600 -6246.5348 -6251.6774 5.1425134 3698.2011 625.50054 -10575.379 0 246.45809 -0.001023779 -0.0010470892 + 47610 -6246.7201 -6251.4544 4.7343715 3690.8064 626.4963 -10568.757 0 226.89765 -0.00078598737 -0.00080320349 + 47620 -6246.8309 -6251.5069 4.6759705 3683.9302 627.41018 -10562.847 0 224.09874 -0.00054808842 -0.00056707545 + 47630 -6246.8856 -6251.8082 4.9226168 3679.2803 627.79661 -10558.885 0 235.91942 -0.00039397356 -0.00042101434 + 47640 -6246.9461 -6252.2141 5.2679346 3678.0767 627.42702 -10557.718 0 252.46898 -0.00038305734 -0.00041807702 + 47650 -6247.0695 -6252.5682 5.4987741 3680.6209 626.35772 -10559.547 0 263.53211 -0.0005268127 -0.00056388385 + 47660 -6247.2687 -6252.7897 5.5209802 3686.1494 624.91176 -10563.851 0 264.59635 -0.00078195274 -0.00081394352 + 47670 -6247.51 -6252.8869 5.3769124 3693.0675 623.58012 -10569.535 0 257.69181 -0.0010650426 -0.001088452 + 47680 -6247.7409 -6252.912 5.1711158 3699.4761 622.86828 -10575.256 0 247.82888 -0.0012826027 -0.0012992683 + 47690 -6247.9255 -6252.904 4.9784519 3703.7761 623.13307 -10579.813 0 238.59535 -0.0013638121 -0.0013788943 + 47700 -6248.0617 -6252.8635 4.801846 3705.1269 624.46044 -10582.451 0 230.1314 -0.0012831355 -0.0013012789 + 47710 -6248.1728 -6252.7724 4.5996331 3703.611 626.62476 -10583.008 0 220.44023 -0.0010657043 -0.0010881657 + 47720 -6248.2842 -6252.6351 4.3509155 3700.0853 629.14629 -10581.867 0 208.52029 -0.00077550467 -0.00080006516 + 47730 -6248.4027 -6252.5022 4.0994915 3695.8185 631.43176 -10579.752 0 196.47063 -0.00049260756 -0.00051589933 + 47740 -6248.515 -6252.4509 3.9358484 3692.0744 632.95193 -10577.477 0 188.62794 -0.00028857177 -0.00030866258 + 47750 -6248.6017 -6252.5349 3.9331148 3689.7774 633.39409 -10575.706 0 188.49693 -0.00020782723 -0.00022507774 + 47760 -6248.6519 -6252.7458 4.0939343 3689.3264 632.73589 -10574.808 0 196.2043 -0.00025908126 -0.00027511222 + 47770 -6248.6664 -6253.0177 4.3513359 3690.5645 631.22017 -10574.802 0 208.54043 -0.00041728598 -0.00043347332 + 47780 -6248.6507 -6253.2671 4.6164025 3692.8877 629.25015 -10575.405 0 221.24391 -0.00063441821 -0.00065130621 + 47790 -6248.6069 -6253.4358 4.8289416 3695.4557 627.25253 -10576.144 0 231.42998 -0.00085552039 -0.00087329959 + 47800 -6248.5314 -6253.5058 4.9743971 3697.4476 625.56112 -10576.515 0 238.40102 -0.0010348218 -0.001053993 + 47810 -6248.4206 -6253.486 5.0654276 3698.2817 624.35678 -10576.124 0 242.76371 -0.0011465055 -0.0011679054 + 47820 -6248.2769 -6253.3886 5.1117481 3697.7346 623.6713 -10574.795 0 244.98365 -0.0011869656 -0.0012110495 + 47830 -6248.1106 -6253.2135 5.1028781 3695.9371 623.43753 -10572.588 0 244.55855 -0.0011691853 -0.0011951047 + 47840 -6247.9349 -6252.9533 5.0184431 3693.2719 623.55418 -10569.779 0 240.51195 -0.0011128236 -0.0011381858 + 47850 -6247.7532 -6252.6168 4.8636529 3690.2326 623.93579 -10566.785 0 233.09354 -0.0010347461 -0.0010568045 + 47860 -6247.5489 -6252.2491 4.7002523 3687.3141 624.53159 -10564.095 0 225.26246 -0.00094440727 -0.0009623546 + 47870 -6247.2897 -6251.9201 4.6303724 3684.9813 625.31387 -10562.215 0 221.91343 -0.00084634271 -0.00086283674 + 47880 -6246.951 -6251.6784 4.7273539 3683.6891 626.24827 -10561.616 0 226.56133 -0.00074758673 -0.00076747862 + 47890 -6246.5414 -6251.5134 4.9720697 3683.8636 627.26346 -10562.64 0 238.28948 -0.00066338651 -0.0006899192 + 47900 -6246.1032 -6251.3714 5.2681414 3685.7711 628.23904 -10565.382 0 252.47889 -0.00061468054 -0.00064628199 + 47910 -6245.6823 -6251.2216 5.5393735 3689.3178 629.02691 -10569.566 0 265.47786 -0.00061697959 -0.00064796044 + 47920 -6245.2876 -6251.1101 5.8224637 3693.9238 629.50609 -10574.54 0 279.04513 -0.00066804044 -0.00069322736 + 47930 -6244.8829 -6251.1378 6.2548982 3698.6024 629.64674 -10579.387 0 299.76982 -0.0007441436 -0.00076362299 + 47940 -6244.4243 -6251.3704 6.9460168 3702.2472 629.54327 -10583.161 0 332.8921 -0.00080908213 -0.00082859134 + 47950 -6243.9173 -6251.75 7.8327027 3703.9896 629.38765 -10585.127 0 375.38706 -0.00083055797 -0.00085660639 + 47960 -6243.4369 -6252.0934 8.6565489 3703.4504 629.38669 -10584.93 0 414.87039 -0.00079349747 -0.00082718189 + 47970 -6243.0825 -6252.1956 9.1131193 3700.7859 629.66003 -10582.642 0 436.75181 -0.00070319013 -0.00073853475 + 47980 -6242.8979 -6251.9667 9.0687904 3696.5659 630.16943 -10578.702 0 434.62732 -0.00057996289 -0.00060906313 + 47990 -6242.8336 -6251.4882 8.6545915 3691.6066 630.71756 -10573.812 0 414.77659 -0.00045283179 -0.00047354586 + 48000 -6242.793 -6250.9365 8.1434485 3686.8483 631.02007 -10568.805 0 390.27974 -0.00035647303 -0.00037529417 + 48010 -6242.7189 -6250.442 7.7231339 3683.2432 630.81708 -10564.502 0 370.13591 -0.00032813978 -0.00035502516 + 48020 -6242.6367 -6250.0125 7.3757737 3681.5597 629.97305 -10561.545 0 353.48846 -0.00039851046 -0.00043802434 + 48030 -6242.6192 -6249.5854 6.9661842 3682.0935 628.52537 -10560.204 0 333.85863 -0.00057636208 -0.00062307138 + 48040 -6242.7094 -6249.1534 6.44395 3684.4415 626.67257 -10560.268 0 308.83024 -0.00083555381 -0.00087790996 + 48050 -6242.873 -6248.8378 5.9648023 3687.545 624.72166 -10561.104 0 285.86679 -0.001115508 -0.001145019 + 48060 -6243.0192 -6248.8362 5.8170416 3690.0688 623.02192 -10561.927 0 278.78527 -0.0013394528 -0.0013575506 + 48070 -6243.0694 -6249.2814 6.2119505 3690.9579 621.90037 -10562.14 0 297.71152 -0.0014430689 -0.0014602957 + 48080 -6243.0192 -6250.121 7.1018144 3689.8839 621.59814 -10561.603 0 340.3588 -0.0013993407 -0.0014276625 + 48090 -6242.9538 -6251.1115 8.1577666 3687.3594 622.20822 -10560.679 0 390.96595 -0.0012277914 -0.0012716828 + 48100 -6243.0029 -6251.9335 8.9306856 3684.4781 623.63061 -10560.042 0 428.00857 -0.00098455716 -0.0010371472 + 48110 -6243.2552 -6252.3618 9.1066338 3682.4255 625.57269 -10560.36 0 436.44099 -0.00073886948 -0.00078617535 + 48120 -6243.6898 -6252.3852 8.6953818 3682.0084 627.61378 -10562.007 0 416.73149 -0.00054797215 -0.00057881762 + 48130 -6244.1872 -6252.1923 8.0051163 3683.43 629.32358 -10564.946 0 383.65009 -0.00044290395 -0.00045739444 + 48140 -6244.6221 -6252.0204 7.398279 3686.378 630.39255 -10568.791 0 354.56704 -0.00042976031 -0.00043919412 + 48150 -6244.9581 -6251.976 7.0178877 3690.2756 630.71913 -10572.971 0 336.33655 -0.00049935354 -0.00051698834 + 48160 -6245.2598 -6251.9836 6.7238447 3694.4565 630.41611 -10576.856 0 322.24436 -0.00063329018 -0.00066367877 + 48170 -6245.6141 -6251.9015 6.2873869 3698.1828 629.74009 -10579.824 0 301.32686 -0.00080220814 -0.00083839281 + 48180 -6246.0419 -6251.6842 5.6422333 3700.6424 628.98557 -10581.312 0 270.40748 -0.00096387426 -0.00099431451 + 48190 -6246.4809 -6251.4381 4.9572181 3701.0947 628.3911 -10580.924 0 237.57771 -0.0010710486 -0.0010894526 + 48200 -6246.8423 -6251.3352 4.4929221 3699.1623 628.08199 -10578.579 0 215.32604 -0.001089348 -0.0010991312 + 48210 -6247.0804 -6251.474 4.3935823 3695.0917 628.05081 -10574.616 0 210.56512 -0.0010150347 -0.0010257466 + 48220 -6247.221 -6251.8039 4.5828519 3689.7976 628.16837 -10569.77 0 219.63598 -0.00088106561 -0.00090050139 + 48230 -6247.3368 -6252.1657 4.8288516 3684.6148 628.22129 -10565.002 0 231.42566 -0.00074621246 -0.00077451372 + 48240 -6247.4913 -6252.4136 4.9222621 3680.8453 627.97336 -10561.232 0 235.90242 -0.00067152386 -0.00070163054 + 48250 -6247.6919 -6252.5228 4.830881 3679.3103 627.24343 -10559.077 0 231.52292 -0.00069579015 -0.00071962928 + 48260 -6247.8881 -6252.5954 4.7073127 3680.1158 625.98287 -10558.694 0 225.60084 -0.00082214501 -0.0008373542 + 48270 -6248.0164 -6252.7599 4.7435107 3682.7175 624.32691 -10559.804 0 227.33565 -0.0010204463 -0.0010320599 + 48280 -6248.0538 -6253.0502 4.996348 3686.1921 622.59232 -10561.835 0 239.45303 -0.0012405499 -0.0012564821 + 48290 -6248.035 -6253.3663 5.3312702 3689.5404 621.20608 -10564.113 0 255.50438 -0.0014277863 -0.0014522372 + 48300 -6248.0224 -6253.5473 5.5249479 3691.9089 620.57764 -10566.034 0 264.7865 -0.0015353447 -0.0015656962 + 48310 -6248.0554 -6253.489 5.4336744 3692.7283 620.95793 -10567.175 0 260.41216 -0.0015334099 -0.0015627897 + 48320 -6248.1219 -6253.214 5.0920851 3691.8156 622.34213 -10567.372 0 244.04129 -0.001416245 -0.0014391624 + 48330 -6248.1721 -6252.8508 4.6787815 3689.4456 624.45785 -10566.754 0 224.23346 -0.0012060458 -0.0012224726 + 48340 -6248.158 -6252.5485 4.3904488 3686.3399 626.84422 -10565.733 0 210.41494 -0.00095049119 -0.0009654872 + 48350 -6248.0687 -6252.3894 4.3207143 3683.5181 628.99052 -10564.898 0 207.07287 -0.00071207113 -0.00073155718 + 48360 -6247.9341 -6252.3579 4.4238443 3682.0066 630.48326 -10564.848 0 212.01544 -0.0005506212 -0.00057662841 + 48370 -6247.7995 -6252.3787 4.579232 3682.4829 631.11169 -10565.973 0 219.46249 -0.00050414386 -0.00053314345 + 48380 -6247.6875 -6252.3894 4.7019843 3685.001 630.90119 -10568.292 0 225.34547 -0.00057532119 -0.00060093505 + 48390 -6247.5746 -6252.3883 4.8137186 3688.9332 630.0718 -10571.393 0 230.7004 -0.00073038999 -0.00074848142 + 48400 -6247.4007 -6252.4186 5.0178835 3693.1772 628.94529 -10574.541 0 240.48513 -0.00091237275 -0.00092457502 + 48410 -6247.1047 -6252.5023 5.3975602 3696.5454 627.83793 -10576.886 0 258.68137 -0.0010636212 -0.0010763118 + 48420 -6246.6591 -6252.582 5.9229096 3698.1555 626.97203 -10577.71 0 283.85906 -0.0011471438 -0.0011663709 + 48430 -6246.0714 -6252.5337 6.4623164 3697.6434 626.42519 -10576.602 0 309.71046 -0.0011563261 -0.0011828165 + 48440 -6245.3479 -6252.2548 6.9069356 3695.1333 626.12488 -10573.513 0 331.01911 -0.001109605 -0.0011384127 + 48450 -6244.4556 -6251.7536 7.2979918 3691.0585 625.89032 -10568.702 0 349.76071 -0.0010363316 -0.0010617719 + 48460 -6243.335 -6251.1483 7.8132781 3686.0053 625.5149 -10562.669 0 374.45612 -0.00096459804 -0.0009861978 + 48470 -6241.9838 -6250.5644 8.5806114 3680.6736 624.86853 -10556.107 0 411.23104 -0.00091686581 -0.00094078093 + 48480 -6240.5526 -6250.0179 9.465318 3675.8771 623.9852 -10549.88 0 453.63115 -0.00090933449 -0.00094290748 + 48490 -6239.3182 -6249.408 10.089775 3672.4127 623.08412 -10544.905 0 483.55864 -0.00094647939 -0.00099018817 + 48500 -6238.4922 -6248.6492 10.156929 3670.7835 622.48575 -10541.918 0 486.77702 -0.0010119862 -0.0010580388 + 48510 -6238.0687 -6247.8124 9.7436558 3671.0087 622.45913 -10541.28 0 466.97066 -0.0010704411 -0.0011107847 + 48520 -6237.8788 -6247.1227 9.2438375 3672.7169 623.09711 -10542.937 0 443.01656 -0.0010857663 -0.0011207576 + 48530 -6237.754 -6246.8132 9.0592027 3675.4327 624.2858 -10546.532 0 434.16783 -0.0010429896 -0.0010816438 + 48540 -6237.6403 -6246.9642 9.3239639 3678.8118 625.76714 -10551.543 0 446.85667 -0.00095691863 -0.0010084916 + 48550 -6237.6077 -6247.4585 9.8508596 3682.6508 627.24984 -10557.359 0 472.10847 -0.00086200123 -0.00092636658 + 48560 -6237.7673 -6248.0896 10.322242 3686.6877 628.5128 -10563.29 0 494.69974 -0.00078951587 -0.00085531506 + 48570 -6238.1614 -6248.7283 10.566929 3690.4 629.4595 -10568.588 0 506.42654 -0.00074717869 -0.00080050871 + 48580 -6238.7219 -6249.3901 10.668221 3693.0494 630.11378 -10572.553 0 511.28102 -0.00071671268 -0.00075309623 + 48590 -6239.3389 -6250.1349 10.795954 3694.0187 630.57226 -10574.726 0 517.40268 -0.00067214663 -0.00070047315 + 48600 -6239.9676 -6250.9094 10.941764 3693.2046 630.93391 -10575.048 0 524.39071 -0.00060442029 -0.00063874235 + 48610 -6240.6576 -6251.5064 10.848721 3691.1382 631.22728 -10573.872 0 519.93158 -0.00053266887 -0.00057938681 + 48620 -6241.4711 -6251.7018 10.23067 3688.714 631.36393 -10571.78 0 490.3111 -0.00049410964 -0.00054651188 + 48630 -6242.3803 -6251.4482 9.0678541 3686.7219 631.15234 -10569.322 0 434.58245 -0.0005219576 -0.00056676467 + 48640 -6243.2599 -6250.9385 7.6786647 3685.5156 630.38386 -10566.838 0 368.0047 -0.00062853047 -0.00065754271 + 48650 -6243.9762 -6250.4831 6.5069582 3684.9905 628.95512 -10564.429 0 311.84995 -0.00080251468 -0.00081875035 + 48660 -6244.4757 -6250.3088 5.8330784 3684.7899 626.96064 -10562.059 0 279.55384 -0.0010162618 -0.0010304283 + 48670 -6244.8048 -6250.4381 5.6332881 3684.5358 624.70343 -10559.677 0 269.97877 -0.0012346085 -0.0012560453 + 48680 -6245.0669 -6250.7237 5.6568227 3683.9545 622.61333 -10557.292 0 271.10668 -0.001420942 -0.0014504989 + 48690 -6245.352 -6250.995 5.6430492 3682.8921 621.10513 -10554.992 0 270.44658 -0.0015415657 -0.0015716947 + 48700 -6245.6805 -6251.2006 5.520029 3681.3046 620.43703 -10552.942 0 264.55076 -0.0015716026 -0.0015933779 + 48710 -6246 -6251.4359 5.4359732 3679.3039 620.63267 -10551.373 0 260.52234 -0.001503746 -0.0015150418 + 48720 -6246.2385 -6251.8366 5.5980996 3677.2497 621.49847 -10550.585 0 268.29234 -0.0013564361 -0.0013643681 + 48730 -6246.3744 -6252.4264 6.0519622 3675.7801 622.71833 -10550.925 0 290.04398 -0.001174571 -0.0011899783 + 48740 -6246.4641 -6253.0531 6.5889388 3675.6548 623.97293 -10552.681 0 315.77892 -0.001017636 -0.0010460949 + 48750 -6246.6033 -6253.4719 6.8685574 3677.4103 625.03208 -10555.914 0 329.17981 -0.00093717466 -0.00097409794 + 48760 -6246.8481 -6253.5136 6.6654624 3681 625.79541 -10560.309 0 319.44636 -0.00095373492 -0.00098785437 + 48770 -6247.164 -6253.2039 6.0399589 3685.6655 626.28653 -10565.156 0 289.46872 -0.0010466596 -0.0010691222 + 48780 -6247.4503 -6252.7412 5.2909872 3690.1653 626.61846 -10569.525 0 253.5738 -0.0011639222 -0.001175448 + 48790 -6247.6181 -6252.3549 4.7367119 3693.2581 626.94469 -10572.558 0 227.00981 -0.0012468262 -0.0012571546 + 48800 -6247.6544 -6252.1583 4.5038809 3694.1793 627.40205 -10573.74 0 215.85124 -0.0012556885 -0.0012759685 + 48810 -6247.6253 -6252.1053 4.4799267 3692.874 628.05194 -10573.031 0 214.70322 -0.0011838534 -0.0012180005 + 48820 -6247.6245 -6252.0706 4.4460806 3689.91 628.83425 -10570.815 0 213.08113 -0.0010556677 -0.0010972328 + 48830 -6247.7033 -6251.9837 4.2803363 3686.1771 629.55455 -10567.715 0 205.13773 -0.00091292968 -0.00094985891 + 48840 -6247.8331 -6251.9049 4.0718695 3682.5657 629.92178 -10564.392 0 195.14684 -0.00079912516 -0.00082287322 + 48850 -6247.9266 -6251.9802 4.0535661 3679.7771 629.63711 -10561.394 0 194.26963 -0.00074919295 -0.0007611793 + 48860 -6247.9044 -6252.3059 4.4015653 3678.2827 628.51008 -10559.099 0 210.9477 -0.00078592804 -0.00079622382 + 48870 -6247.7543 -6252.8171 5.0628141 3678.3253 626.55828 -10557.701 0 242.63846 -0.00091807419 -0.00093730111 + 48880 -6247.5422 -6253.2998 5.7575741 3679.8541 624.04546 -10557.199 0 275.93525 -0.0011353389 -0.0011662571 + 48890 -6247.3603 -6253.5282 6.1678978 3682.4107 621.43431 -10557.373 0 295.60027 -0.0014019762 -0.0014376253 + 48900 -6247.2524 -6253.4185 6.1661634 3685.1149 619.2659 -10557.799 0 295.51715 -0.0016570727 -0.0016869683 + 48910 -6247.1806 -6253.0738 5.8931657 3686.8841 618.01049 -10557.968 0 282.43357 -0.001828827 -0.0018478169 + 48920 -6247.0634 -6252.6859 5.6224964 3686.8573 617.94396 -10557.487 0 269.46157 -0.0018604596 -0.0018726316 + 48930 -6246.8466 -6252.3848 5.5381736 3684.8099 619.08639 -10556.281 0 265.42035 -0.0017348111 -0.0017494974 + 48940 -6246.544 -6252.162 5.6180535 3681.3126 621.20978 -10554.684 0 269.24865 -0.0014832569 -0.0015071306 + 48950 -6246.2177 -6251.9218 5.7040546 3677.5353 623.90089 -10553.358 0 273.3703 -0.0011737741 -0.0012058861 + 48960 -6245.9219 -6251.5974 5.6755617 3674.8013 626.65832 -10553.057 0 272.00476 -0.00088517266 -0.0009186213 + 48970 -6245.6576 -6251.228 5.5704195 3674.1188 629.00196 -10554.349 0 266.96576 -0.00068099553 -0.00070917854 + 48980 -6245.3741 -6250.934 5.5599312 3675.8867 630.57394 -10557.395 0 266.4631 -0.00059404704 -0.00061601956 + 48990 -6245.0102 -6250.8212 5.8109755 3679.8423 631.21137 -10561.875 0 278.49455 -0.00062414169 -0.00064488606 + 49000 -6244.5426 -6250.8973 6.3547229 3685.1846 630.97444 -10567.056 0 304.55398 -0.00074437864 -0.00077027141 + 49010 -6244.0026 -6251.0711 7.0685148 3690.7664 630.11868 -10571.956 0 338.76289 -0.00090999784 -0.00094373751 + 49020 -6243.4509 -6251.2278 7.7769115 3695.3063 629.01198 -10575.546 0 372.71323 -0.0010679916 -0.0011074294 + 49030 -6242.9358 -6251.3011 8.3653044 3697.6462 628.0155 -10576.963 0 400.91233 -0.0011697205 -0.0012109319 + 49040 -6242.4798 -6251.2737 8.7938562 3697.0594 627.36427 -10575.697 0 421.45093 -0.0011868896 -0.0012274627 + 49050 -6242.097 -6251.1299 9.0328891 3693.5044 627.08791 -10571.722 0 432.90673 -0.0011239744 -0.0011631831 + 49060 -6241.8046 -6250.8469 9.0423755 3687.6658 627.00543 -10565.518 0 433.36137 -0.0010172033 -0.0010544644 + 49070 -6241.6066 -6250.4402 8.8336215 3680.7426 626.80922 -10557.992 0 423.35671 -0.00091834224 -0.00095321027 + 49080 -6241.4808 -6249.9936 8.5128609 3674.1063 626.21454 -10550.314 0 407.98406 -0.00087299903 -0.00090668782 + 49090 -6241.3956 -6249.6222 8.2265311 3668.9809 625.10592 -10543.709 0 394.26153 -0.00090533121 -0.00094090366 + 49100 -6241.3404 -6249.4023 8.0618973 3666.2107 623.60307 -10539.216 0 386.37135 -0.0010134841 -0.0010535276 + 49110 -6241.3339 -6249.3406 8.0066686 3666.117 622.01496 -10537.473 0 383.72449 -0.0011729915 -0.0012169153 + 49120 -6241.4047 -6249.3978 7.9930176 3668.4552 620.71563 -10538.569 0 383.07025 -0.0013446357 -0.0013882466 + 49130 -6241.5649 -6249.5357 7.9707944 3672.5004 620.0106 -10542.047 0 382.00519 -0.0014851849 -0.0015230231 + 49140 -6241.7963 -6249.7492 7.952902 3677.2533 620.05145 -10547.054 0 381.14769 -0.0015592264 -0.0015881735 + 49150 -6242.0585 -6250.0669 8.0083699 3681.7079 620.82004 -10552.595 0 383.80602 -0.001548835 -0.0015708677 + 49160 -6242.3163 -6250.5152 8.1988744 3685.1103 622.1679 -10557.793 0 392.93607 -0.0014580933 -0.0014800859 + 49170 -6242.5735 -6251.0624 8.4888649 3687.1275 623.87756 -10562.067 0 406.83404 -0.001311181 -0.0013408816 + 49180 -6242.8845 -6251.5939 8.7093528 3687.8531 625.7154 -10565.162 0 417.40105 -0.0011441131 -0.0011844644 + 49190 -6243.3184 -6251.958 8.6395349 3687.6369 627.4666 -10567.061 0 414.05499 -0.00099203599 -0.0010384269 + 49200 -6243.8973 -6252.0585 8.1612312 3686.848 628.95972 -10567.866 0 391.13199 -0.00087716043 -0.00092044812 + 49210 -6244.5629 -6251.9179 7.3549502 3685.7278 630.08417 -10567.73 0 352.49048 -0.0008039346 -0.0008370742 + 49220 -6245.2062 -6251.6605 6.4542915 3684.4087 630.78803 -10566.857 0 309.32586 -0.0007645349 -0.00078751877 + 49230 -6245.7324 -6251.4357 5.7032018 3683.0337 631.04878 -10565.518 0 273.32943 -0.00075086684 -0.00077042263 + 49240 -6246.1103 -6251.3385 5.2282051 3681.8467 630.83594 -10564.021 0 250.56492 -0.00076473117 -0.00078949483 + 49250 -6246.3738 -6251.3751 5.0013191 3681.1678 630.09984 -10562.643 0 239.69128 -0.00081916729 -0.00085386188 + 49260 -6246.5897 -6251.4877 4.8979556 3681.2504 628.80321 -10561.541 0 234.73752 -0.00092966672 -0.00097192795 + 49270 -6246.8122 -6251.6192 4.8070017 3682.0932 626.97893 -10560.691 0 230.37849 -0.0011000692 -0.0011419049 + 49280 -6247.0488 -6251.776 4.7272496 3683.3244 624.77731 -10559.878 0 226.55632 -0.0013115347 -0.0013448288 + 49290 -6247.256 -6252.036 4.7799167 3684.2653 622.47314 -10558.774 0 229.08043 -0.0015223505 -0.0015450133 + 49300 -6247.3738 -6252.4783 5.1044563 3684.2003 620.42477 -10557.103 0 244.63419 -0.0016810486 -0.00169907 + 49310 -6247.3809 -6253.0772 5.6963594 3682.7395 618.9958 -10554.813 0 273.0015 -0.0017472248 -0.0017701123 + 49320 -6247.3274 -6253.6582 6.3308093 3680.0532 618.45865 -10552.17 0 303.4079 -0.0017083992 -0.0017410168 + 49330 -6247.305 -6253.9836 6.6785929 3676.8208 618.90696 -10549.711 0 320.07564 -0.0015830351 -0.001621011 + 49340 -6247.3703 -6253.9123 6.5419846 3673.9407 620.21152 -10548.065 0 313.52861 -0.0014098676 -0.0014431743 + 49350 -6247.4964 -6253.4978 6.0014233 3672.2143 622.04655 -10547.759 0 287.62188 -0.0012330586 -0.0012546692 + 49360 -6247.5982 -6252.9426 5.3444673 3672.1692 623.98349 -10549.095 0 256.13686 -0.0010920967 -0.0011039552 + 49370 -6247.6034 -6252.457 4.8536644 3674.0202 625.61796 -10552.095 0 232.61483 -0.0010171798 -0.0010286546 + 49380 -6247.5063 -6252.1382 4.631871 3677.6612 626.68566 -10556.485 0 221.98525 -0.0010251641 -0.0010457272 + 49390 -6247.3672 -6251.9471 4.579933 3682.6214 627.13347 -10561.702 0 219.49609 -0.0011129349 -0.0011448979 + 49400 -6247.2647 -6251.7845 4.5197854 3688.0247 627.12589 -10566.935 0 216.61348 -0.0012509542 -0.0012876164 + 49410 -6247.2349 -6251.6013 4.3663664 3692.6577 626.97932 -10571.238 0 209.26078 -0.0013841909 -0.0014149283 + 49420 -6247.239 -6251.4576 4.2185703 3695.2365 627.03697 -10573.731 0 202.17756 -0.0014467238 -0.0014654858 + 49430 -6247.188 -6251.4742 4.2861367 3694.8503 627.52396 -10573.848 0 205.41572 -0.0013888154 -0.0013993165 + 49440 -6247.0115 -6251.7121 4.7005343 3691.4089 628.43682 -10571.558 0 225.27598 -0.0012047029 -0.0012176227 + 49450 -6246.7144 -6252.0935 5.3790857 3685.8205 629.51187 -10567.426 0 257.79597 -0.00094408619 -0.00096840447 + 49460 -6246.3714 -6252.4511 6.0796205 3679.7289 630.29068 -10562.471 0 291.36952 -0.00069718058 -0.00073334255 + 49470 -6246.0629 -6252.6581 6.5951878 3674.9024 630.27198 -10557.833 0 316.0784 -0.0005593157 -0.0006001044 + 49480 -6245.8146 -6252.7086 6.8939418 3672.5895 629.10604 -10554.404 0 330.39637 -0.00059369387 -0.00063105869 + 49490 -6245.5959 -6252.677 7.0810166 3673.1372 626.75849 -10552.573 0 339.36205 -0.00080955064 -0.00084051703 + 49500 -6245.3654 -6252.6202 7.2548196 3675.9662 623.56986 -10552.156 0 347.69166 -0.0011610019 -0.001188152 + 49510 -6245.1104 -6252.5255 7.4150941 3679.8208 620.18035 -10552.527 0 355.37291 -0.001561814 -0.0015897252 + 49520 -6244.8497 -6252.337 7.4872845 3683.1733 617.35005 -10552.86 0 358.83268 -0.0019093401 -0.001941086 + 49530 -6244.6122 -6252.014 7.4018256 3684.6887 615.74387 -10552.447 0 354.73701 -0.0021123777 -0.0021483177 + 49540 -6244.4178 -6251.5639 7.1461258 3683.6421 615.7505 -10550.957 0 342.48244 -0.0021169955 -0.0021553415 + 49550 -6244.2701 -6251.0418 6.7717467 3680.1575 617.3803 -10548.58 0 324.5401 -0.0019224107 -0.0019604826 + 49560 -6244.1557 -6250.5363 6.3806295 3675.181 620.26305 -10545.98 0 305.79557 -0.0015806872 -0.0016164113 + 49570 -6244.0493 -6250.1473 6.097928 3670.2065 623.74808 -10544.102 0 292.24693 -0.0011803303 -0.0012134225 + 49580 -6243.9263 -6249.9536 6.0273098 3666.853 627.08541 -10543.892 0 288.8625 -0.00082005224 -0.00085195735 + 49590 -6243.7757 -6249.9833 6.207626 3666.4109 629.63659 -10546.031 0 297.50427 -0.00058113279 -0.00061358335 + 49600 -6243.6035 -6250.207 6.6035314 3669.4566 631.04673 -10550.71 0 316.47828 -0.00050572076 -0.00053919999 + 49610 -6243.4226 -6250.5569 7.1342722 3675.6394 631.31959 -10557.516 0 341.91436 -0.00058676327 -0.00062031878 + 49620 -6243.2438 -6250.9502 7.7064217 3683.7278 630.77175 -10565.45 0 369.33497 -0.00077315059 -0.00080546034 + 49630 -6243.0766 -6251.2987 8.2221094 3691.9282 629.88417 -10573.111 0 394.04962 -0.00098926229 -0.001019494 + 49640 -6242.9364 -6251.5182 8.5817745 3698.3735 629.10564 -10578.997 0 411.28678 -0.0011618896 -0.0011895963 + 49650 -6242.8391 -6251.5575 8.7184219 3701.6115 628.68427 -10581.853 0 417.83569 -0.0012438264 -0.0012688851 + 49660 -6242.7867 -6251.4341 8.6473725 3700.9491 628.59588 -10580.979 0 414.43061 -0.0012257709 -0.0012493376 + 49670 -6242.7671 -6251.2296 8.4624926 3696.5929 628.59701 -10576.42 0 405.57013 -0.0011344896 -0.0011597683 + 49680 -6242.7762 -6251.0302 8.2540651 3689.5686 628.36769 -10568.967 0 395.58111 -0.0010201728 -0.0010508499 + 49690 -6242.8396 -6250.8671 8.0274554 3681.4228 627.66512 -10559.955 0 384.72071 -0.00093755729 -0.00097431129 + 49700 -6243.0003 -6250.7199 7.7196008 3673.776 626.41677 -10550.913 0 369.96658 -0.00092627134 -0.00096487586 + 49710 -6243.2787 -6250.5793 7.3006231 3667.8894 624.73011 -10543.199 0 349.88682 -0.00099739267 -0.0010311079 + 49720 -6243.647 -6250.495 6.8480044 3664.4267 622.84089 -10537.763 0 328.1948 -0.0011323301 -0.0011570489 + 49730 -6244.0461 -6250.5586 6.5124614 3663.4717 621.03656 -10535.067 0 312.11369 -0.0012944403 -0.001312265 + 49740 -6244.4299 -6250.834 6.4040708 3664.718 619.5842 -10535.136 0 306.91901 -0.0014466577 -0.0014648985 + 49750 -6244.8 -6251.2927 6.4926841 3667.6807 618.68051 -10537.654 0 311.16585 -0.0015654295 -0.0015915781 + 49760 -6245.203 -6251.8055 6.6025043 3671.8218 618.42887 -10542.056 0 316.42905 -0.0016441496 -0.0016802847 + 49770 -6245.6894 -6252.2066 6.5172187 3676.5631 618.83866 -10547.608 0 312.34169 -0.0016859203 -0.0017266329 + 49780 -6246.2617 -6252.394 6.1323128 3681.2449 619.83997 -10553.479 0 293.89484 -0.0016921074 -0.001727893 + 49790 -6246.8569 -6252.3983 5.5414546 3685.1375 621.30951 -10558.845 0 265.5776 -0.0016557436 -0.0016797835 + 49800 -6247.3804 -6252.3592 4.978755 3687.5853 623.10221 -10563.047 0 238.60987 -0.0015650895 -0.0015783137 + 49810 -6247.7668 -6252.4182 4.6513775 3688.2459 625.07619 -10565.74 0 222.92011 -0.0014149279 -0.0014251904 + 49820 -6248.0187 -6252.6125 4.5938094 3687.2771 627.09516 -10566.985 0 220.16112 -0.0012172971 -0.0012331875 + 49830 -6248.1962 -6252.8583 4.6621193 3685.3155 629.00508 -10567.179 0 223.43492 -0.0010037072 -0.0010280411 + 49840 -6248.3695 -6253.0366 4.6670867 3683.2291 630.60591 -10566.872 0 223.67298 -0.00081692561 -0.000845123 + 49850 -6248.5695 -6253.097 4.5275134 3681.7844 631.65232 -10566.534 0 216.98384 -0.00069732097 -0.00072155439 + 49860 -6248.7738 -6253.0946 4.320801 3681.4068 631.90246 -10566.404 0 207.07703 -0.00067119399 -0.00068656467 + 49870 -6248.9306 -6253.1379 4.2072744 3682.116 631.20016 -10566.454 0 201.6362 -0.00074555797 -0.00075358859 + 49880 -6249.0001 -6253.2992 4.2991362 3683.606 629.55201 -10566.457 0 206.03873 -0.00090913128 -0.00091640983 + 49890 -6248.9839 -6253.551 4.5671143 3685.3792 627.16128 -10566.091 0 218.88174 -0.0011364584 -0.001149663 + 49900 -6248.9273 -6253.7735 4.8461684 3686.8616 624.40016 -10565.035 0 232.25558 -0.0013920074 -0.0014128289 + 49910 -6248.8883 -6253.8334 4.9450993 3687.4763 621.72573 -10563.035 0 236.99691 -0.0016332801 -0.0016570525 + 49920 -6248.8923 -6253.6847 4.792435 3686.7144 619.56769 -10559.967 0 229.68037 -0.0018151038 -0.0018346237 + 49930 -6248.9084 -6253.4103 4.501916 3684.2657 618.22804 -10555.904 0 215.75707 -0.0018984906 -0.001910294 + 49940 -6248.874 -6253.1599 4.285948 3680.2133 617.82642 -10551.2 0 205.40667 -0.0018640432 -0.0018717097 + 49950 -6248.7485 -6253.0279 4.27942 3675.1874 618.29973 -10546.515 0 205.09382 -0.0017236169 -0.00173484 + 49960 -6248.5489 -6252.979 4.43007 3670.3203 619.43967 -10542.739 0 212.31381 -0.001521223 -0.0015410654 + 49970 -6248.3349 -6252.8898 4.5549501 3666.9365 620.94835 -10540.775 0 218.29877 -0.0013192073 -0.0013455808 + 49980 -6248.1567 -6252.667 4.5103173 3666.098 622.50321 -10541.268 0 216.15971 -0.0011751342 -0.0012005294 + 49990 -6248.0105 -6252.3368 4.3263069 3668.2289 623.8293 -10544.395 0 207.3409 -0.0011209453 -0.001138908 + 50000 -6247.8377 -6252.0349 4.1971509 3672.9958 624.76885 -10549.8 0 201.15102 -0.0011542408 -0.0011651572 + 50010 -6247.5671 -6251.907 4.3398938 3679.4588 625.3265 -10556.692 0 207.99206 -0.0012438057 -0.0012552572 + 50020 -6247.1685 -6251.9999 4.8314362 3686.37 625.6678 -10564.038 0 231.54953 -0.0013438064 -0.0013650079 + 50030 -6246.6818 -6252.2254 5.5435378 3692.4626 626.06086 -10570.749 0 265.67744 -0.0014084098 -0.0014427164 + 50040 -6246.1979 -6252.4262 6.2283593 3696.6474 626.77159 -10575.845 0 298.49793 -0.0014014998 -0.0014427939 + 50050 -6245.7953 -6252.4971 6.7017854 3698.1399 627.94382 -10578.581 0 321.18716 -0.0013018128 -0.0013383416 + 50060 -6245.4795 -6252.4595 6.9800075 3696.5956 629.51026 -10578.565 0 334.52112 -0.0011079656 -0.001131469 + 50070 -6245.185 -6252.4182 7.2331937 3692.2853 631.17598 -10575.879 0 346.65523 -0.00084626041 -0.00085891394 + 50080 -6244.8507 -6252.4284 7.5776644 3686.2113 632.48819 -10571.128 0 363.16419 -0.00057633785 -0.00058886333 + 50090 -6244.4944 -6252.4052 7.9107358 3679.9725 632.96715 -10565.345 0 379.12685 -0.00038326924 -0.00040546958 + 50100 -6244.2049 -6252.1813 7.976341 3675.2781 632.25254 -10559.712 0 382.27101 -0.00034999404 -0.00038249928 + 50110 -6244.0577 -6251.6673 7.609612 3673.2824 630.22443 -10555.174 0 364.69531 -0.00052032954 -0.00055503883 + 50120 -6244.0445 -6250.9594 6.9148716 3674.1109 627.07054 -10552.141 0 331.39945 -0.00087421587 -0.0009021275 + 50130 -6244.0846 -6250.2967 6.2120657 3676.8503 623.27876 -10550.426 0 297.71704 -0.0013303041 -0.0013489439 + 50140 -6244.0919 -6249.9123 5.8204159 3679.9796 619.54569 -10549.438 0 278.94699 -0.0017733244 -0.0017877316 + 50150 -6244.0338 -6249.9008 5.8669621 3681.9906 616.61494 -10548.506 0 281.17774 -0.0020916552 -0.0021092711 + 50160 -6243.9411 -6250.1872 6.246139 3681.9196 615.08427 -10547.191 0 299.35003 -0.0022101798 -0.0022345623 + 50170 -6243.8736 -6250.6037 6.7300694 3679.6241 615.23635 -10545.464 0 322.54269 -0.0021091772 -0.0021375554 + 50180 -6243.8698 -6251.0063 7.1365431 3675.7736 616.94908 -10543.729 0 342.02319 -0.0018260102 -0.0018523326 + 50190 -6243.9167 -6251.3516 7.4348776 3671.6138 619.72552 -10542.691 0 356.32105 -0.0014414552 -0.0014623262 + 50200 -6243.9655 -6251.6802 7.7146951 3668.6059 622.84761 -10543.134 0 369.73147 -0.0010563049 -0.0010747926 + 50210 -6243.983 -6252.0266 8.043576 3668.0333 625.60979 -10545.67 0 385.49329 -0.0007649618 -0.000788583 + 50220 -6243.9957 -6252.3341 8.3383416 3670.6328 627.54616 -10550.513 0 399.62012 -0.00063107255 -0.00066498165 + 50230 -6244.0785 -6252.4627 8.3841645 3676.2977 628.55728 -10557.318 0 401.8162 -0.00066903563 -0.00071021631 + 50240 -6244.2874 -6252.3021 8.0146944 3683.9567 628.88258 -10565.141 0 384.10912 -0.00083709967 -0.00087553645 + 50250 -6244.5949 -6251.8925 7.2975435 3691.7684 628.93873 -10572.6 0 349.73923 -0.0010493832 -0.0010762394 + 50260 -6244.8988 -6251.429 6.5302451 3697.6796 629.10903 -10578.218 0 312.96598 -0.0012083837 -0.0012240213 + 50270 -6245.1032 -6251.1289 6.0257037 3700.1607 629.58093 -10580.87 0 288.78553 -0.0012461991 -0.0012602723 + 50280 -6245.1941 -6251.0785 5.8843692 3698.7594 630.28551 -10580.123 0 282.01199 -0.0011532004 -0.0011765472 + 50290 -6245.2413 -6251.2034 5.9620447 3694.1822 630.93905 -10576.325 0 285.73463 -0.00097834087 -0.0010141983 + 50300 -6245.3332 -6251.3719 6.0386927 3687.9021 631.15765 -10570.432 0 289.40804 -0.00080253374 -0.00084464624 + 50310 -6245.5071 -6251.5181 6.0109723 3681.5545 630.6048 -10563.677 0 288.07952 -0.00070167782 -0.00073998532 + 50320 -6245.7316 -6251.6784 5.9467901 3676.4275 629.12396 -10557.23 0 285.00355 -0.00071842436 -0.00074678981 + 50330 -6245.9417 -6251.9306 5.9888013 3673.2186 626.81128 -10551.96 0 287.01696 -0.0008528273 -0.00087279733 + 50340 -6246.0944 -6252.3011 6.2067387 3672.0514 624.0055 -10548.358 0 297.46174 -0.0010704848 -0.0010889693 + 50350 -6246.2011 -6252.7132 6.5121569 3672.64 621.19993 -10546.553 0 312.0991 -0.0013198355 -0.0013429962 + 50360 -6246.3183 -6253.0173 6.6990026 3674.4687 618.90341 -10546.389 0 321.05379 -0.0015494539 -0.0015775815 + 50370 -6246.4988 -6253.0883 6.5894725 3676.9179 617.49368 -10547.5 0 315.8045 -0.0017196944 -0.0017471861 + 50380 -6246.7426 -6252.9203 6.1777155 3679.3542 617.11689 -10549.391 0 296.07079 -0.0018079136 -0.0018285185 + 50390 -6246.9927 -6252.6389 5.6461706 3681.2436 617.67594 -10551.558 0 270.59618 -0.0018095056 -0.0018223226 + 50400 -6247.1837 -6252.4119 5.2282433 3682.2931 618.91063 -10553.616 0 250.56675 -0.0017363998 -0.0017470798 + 50410 -6247.2982 -6252.3301 5.0319437 3682.5371 620.52523 -10555.392 0 241.15897 -0.0016123452 -0.0016282001 + 50420 -6247.3807 -6252.3593 4.9785912 3682.2813 622.29714 -10556.938 0 238.60203 -0.0014641488 -0.0014875956 + 50430 -6247.4963 -6252.3997 4.9034236 3681.9134 624.11764 -10558.431 0 234.99957 -0.0013114505 -0.0013377974 + 50440 -6247.6735 -6252.3912 4.71765 3681.7129 625.95658 -10560.061 0 226.09626 -0.0011612337 -0.0011827555 + 50450 -6247.8816 -6252.3678 4.4862513 3681.7935 627.78212 -10561.943 0 215.00633 -0.0010120642 -0.0010246676 + 50460 -6248.0584 -6252.4235 4.3650967 3682.1937 629.48561 -10564.103 0 209.19992 -0.00086618469 -0.00087301335 + 50470 -6248.1625 -6252.6264 4.4639284 3683.0049 630.85743 -10566.489 0 213.93649 -0.00074061187 -0.00074986434 + 50480 -6248.2078 -6252.9559 4.7481612 3684.3994 631.63301 -10568.988 0 227.55853 -0.00066774384 -0.00068657469 + 50490 -6248.2565 -6253.3066 5.0501082 3686.5025 631.59106 -10571.4 0 242.02952 -0.00068250575 -0.00071159895 + 50500 -6248.3762 -6253.5569 5.180707 3689.1734 630.65593 -10573.386 0 248.28855 -0.00080211225 -0.00083497009 + 50510 -6248.5895 -6253.651 5.0615027 3691.8534 628.95255 -10574.457 0 242.57561 -0.0010104296 -0.00103805 + 50520 -6248.8559 -6253.6297 4.7737533 3693.6367 626.78807 -10574.054 0 228.78504 -0.0012576858 -0.0012751166 + 50530 -6249.1038 -6253.5854 4.4815528 3693.591 624.57089 -10571.747 0 214.78115 -0.0014775905 -0.0014871674 + 50540 -6249.2839 -6253.5804 4.296464 3691.1831 622.70005 -10567.464 0 205.91066 -0.0016131434 -0.001622002 + 50550 -6249.3985 -6253.6026 4.2041369 3686.5737 621.45907 -10561.635 0 201.48583 -0.0016377 -0.0016520632 + 50560 -6249.4865 -6253.5941 4.1075956 3680.6286 620.94153 -10555.164 0 196.85903 -0.0015622605 -0.0015833147 + 50570 -6249.5856 -6253.5171 3.9315273 3674.6619 621.03084 -10549.21 0 188.42085 -0.0014284147 -0.0014524976 + 50580 -6249.7046 -6253.3966 3.6920317 3670.0484 621.44746 -10544.892 0 176.94288 -0.0012922431 -0.0013142739 + 50590 -6249.823 -6253.3087 3.4857138 3667.857 621.85499 -10543.021 0 167.05496 -0.0012058106 -0.0012229057 + 50600 -6249.9095 -6253.3299 3.4203498 3668.5993 621.99159 -10543.921 0 163.92236 -0.0012016051 -0.0012144747 + 50610 -6249.9436 -6253.4841 3.5405237 3672.1305 621.77836 -10547.393 0 169.68176 -0.0012832993 -0.0012949437 + 50620 -6249.926 -6253.7214 3.7954156 3677.6974 621.36195 -10552.781 0 181.89761 -0.0014243199 -0.0014373234 + 50630 -6249.8738 -6253.943 4.0691126 3684.1076 621.06995 -10559.12 0 195.01471 -0.0015743183 -0.0015888611 + 50640 -6249.8035 -6254.0582 4.2547114 3689.991 621.28987 -10565.339 0 203.90964 -0.0016726921 -0.0016868046 + 50650 -6249.7143 -6254.0337 4.3194776 3694.1188 622.31441 -10570.467 0 207.0136 -0.0016669446 -0.0016786894 + 50660 -6249.5879 -6253.8995 4.3116482 3695.7199 624.21242 -10573.832 0 206.63837 -0.0015313012 -0.0015408636 + 50670 -6249.4044 -6253.7129 4.3085258 3694.7022 626.77555 -10575.191 0 206.48873 -0.0012788976 -0.0012886616 + 50680 -6249.1595 -6253.5156 4.3560807 3691.6821 629.55821 -10574.756 0 208.76783 -0.00096162815 -0.00097422147 + 50690 -6248.8681 -6253.3181 4.4499796 3687.7856 631.99237 -10573.096 0 213.26799 -0.00065633088 -0.00067243309 + 50700 -6248.5525 -6253.1149 4.5623697 3684.2799 633.53642 -10570.931 0 218.65436 -0.00044193352 -0.00045966227 + 50710 -6248.2264 -6252.9072 4.680793 3682.1692 633.81304 -10568.889 0 224.32986 -0.00037578881 -0.00039202327 + 50720 -6247.8856 -6252.7134 4.8277716 3681.8947 632.70047 -10567.309 0 231.37391 -0.00047706307 -0.00048970277 + 50730 -6247.5105 -6252.5641 5.053579 3683.2312 630.35879 -10566.154 0 242.19586 -0.00072191413 -0.00073172208 + 50740 -6247.0787 -6252.4862 5.4075519 3685.4033 627.19199 -10565.082 0 259.16023 -0.0010513735 -0.0010623458 + 50750 -6246.5844 -6252.4788 5.8944195 3687.3736 623.76018 -10563.613 0 282.49366 -0.0013892252 -0.0014068699 + 50760 -6246.0574 -6252.4933 6.4359039 3688.1945 620.66097 -10561.349 0 308.44463 -0.0016638132 -0.0016916667 + 50770 -6245.5623 -6252.4423 6.8800147 3687.2897 618.40044 -10558.133 0 329.72891 -0.0018258286 -0.0018622088 + 50780 -6245.1664 -6252.2498 7.0834766 3684.5761 617.28002 -10554.106 0 339.47995 -0.0018561191 -0.0018940393 + 50790 -6244.8942 -6251.9138 7.0196313 3680.4326 617.33527 -10549.682 0 336.42012 -0.0017635282 -0.0017948102 + 50800 -6244.7092 -6251.5219 6.8126759 3675.6014 618.35473 -10545.478 0 326.50165 -0.0015780183 -0.0015988344 + 50810 -6244.5423 -6251.1969 6.6545869 3671.078 619.97408 -10542.249 0 318.92515 -0.0013438098 -0.00135717 + 50820 -6244.3424 -6251.017 6.674632 3667.97 621.80239 -10540.789 0 319.88581 -0.0011124411 -0.0011257411 + 50830 -6244.1069 -6250.9773 6.8703171 3667.2744 623.52695 -10541.779 0 329.26414 -0.00093308651 -0.00095295692 + 50840 -6243.8752 -6251.0146 7.1394082 3669.5892 624.96596 -10545.57 0 342.1605 -0.00084014048 -0.0008684443 + 50850 -6243.6968 -6251.0642 7.3674602 3674.8585 626.07116 -10551.994 0 353.09003 -0.00084234211 -0.00087559957 + 50860 -6243.6003 -6251.103 7.5027222 3682.2732 626.90056 -10560.277 0 359.57255 -0.00091880872 -0.00095081219 + 50870 -6243.5787 -6251.1572 7.5785214 3690.4004 627.58078 -10569.138 0 363.20527 -0.0010246295 -0.0010503753 + 50880 -6243.598 -6251.2758 7.6777718 3697.5301 628.26582 -10577.072 0 367.96191 -0.0011048529 -0.0011234532 + 50890 -6243.6233 -6251.4848 7.8614608 3702.1451 629.08751 -10582.717 0 376.76531 -0.0011129332 -0.0011277753 + 50900 -6243.6457 -6251.7512 8.1054576 3703.3566 630.09387 -10585.202 0 388.45901 -0.0010280437 -0.0010440804 + 50910 -6243.6911 -6251.9857 8.294586 3701.1462 631.1911 -10584.323 0 397.5231 -0.00086481391 -0.00088484537 + 50920 -6243.8 -6252.0917 8.2916571 3696.3219 632.1263 -10580.54 0 397.38273 -0.00067024145 -0.00069301852 + 50930 -6243.9925 -6252.0328 8.0402925 3690.2175 632.54548 -10574.796 0 385.33593 -0.00050743465 -0.00052924011 + 50940 -6244.2465 -6251.8658 7.6192236 3684.2741 632.12162 -10568.262 0 365.15595 -0.00043295505 -0.00045146653 + 50950 -6244.5129 -6251.7053 7.1923983 3679.6691 630.69866 -10562.073 0 344.70008 -0.00047835886 -0.00049537208 + 50960 -6244.7552 -6251.6406 6.8853603 3677.0957 628.3795 -10557.116 0 329.9851 -0.00064310349 -0.00066338065 + 50970 -6244.981 -6251.6692 6.6881625 3676.6956 625.51429 -10553.879 0 320.53427 -0.00089831592 -0.00092516115 + 50980 -6245.2332 -6251.7056 6.4724349 3678.0943 622.59652 -10552.396 0 310.1954 -0.0011959454 -0.0012273145 + 50990 -6245.5468 -6251.6667 6.1198885 3680.5082 620.1159 -10552.291 0 293.2994 -0.0014788081 -0.001507901 + 51000 -6245.9071 -6251.5648 5.6576401 3682.94 618.43087 -10552.936 0 271.14586 -0.0016910833 -0.0017117529 + 51010 -6246.2508 -6251.5226 5.271825 3684.4752 617.70727 -10553.705 0 252.65544 -0.0017905725 -0.0018032114 + 51020 -6246.5151 -6251.6834 5.168287 3684.6149 617.92995 -10554.228 0 247.69331 -0.0017611076 -0.0017734511 + 51030 -6246.6952 -6252.0883 5.3931428 3683.4872 618.95735 -10554.533 0 258.46967 -0.0016191235 -0.0016405239 + 51040 -6246.8557 -6252.6301 5.7743818 3681.792 620.57889 -10555.001 0 276.74077 -0.0014083398 -0.0014420382 + 51050 -6247.0854 -6253.1275 6.0420881 3680.4746 622.55526 -10556.157 0 289.57076 -0.0011827383 -0.0012227688 + 51060 -6247.4288 -6253.4539 6.0251304 3680.3038 624.64589 -10558.404 0 288.75806 -0.00098632913 -0.0010217705 + 51070 -6247.853 -6253.6106 5.757687 3681.5898 626.63294 -10561.833 0 275.94067 -0.00084122363 -0.0008642041 + 51080 -6248.2759 -6253.6929 5.4170243 3684.1621 628.34075 -10566.196 0 259.6142 -0.00074970843 -0.00076066882 + 51090 -6248.6288 -6253.7908 5.1619977 3687.553 629.64349 -10570.987 0 247.3919 -0.00070584851 -0.00071230117 + 51100 -6248.9 -6253.9117 5.0117488 3691.2193 630.45976 -10575.591 0 240.19112 -0.00070626002 -0.00071663958 + 51110 -6249.1303 -6253.9834 4.8530932 3694.663 630.74347 -10579.39 0 232.58746 -0.0007522072 -0.00076984195 + 51120 -6249.3707 -6253.9267 4.5560494 3697.4272 630.48374 -10581.838 0 218.35145 -0.00084297816 -0.00086455192 + 51130 -6249.6389 -6253.7354 4.0965097 3699.0501 629.71877 -10582.504 0 196.32773 -0.0009673088 -0.00098641817 + 51140 -6249.9087 -6253.4958 3.5871309 3699.0907 628.55452 -10581.141 0 171.91544 -0.0011007594 -0.0011132825 + 51150 -6250.136 -6253.3332 3.1972225 3697.2651 627.16859 -10577.767 0 153.22884 -0.0012121057 -0.0012190625 + 51160 -6250.2961 -6253.3288 3.0326453 3693.6288 625.78249 -10572.74 0 145.34138 -0.0012752406 -0.0012812799 + 51170 -6250.4017 -6253.4734 3.0716716 3688.681 624.60219 -10566.757 0 147.21174 -0.0012798534 -0.001289155 + 51180 -6250.4904 -6253.6888 3.1984168 3683.3073 623.74855 -10560.745 0 153.28608 -0.001235718 -0.0012488637 + 51190 -6250.5958 -6253.892 3.2961777 3678.5713 623.21264 -10555.676 0 157.97133 -0.0011693684 -0.0011834794 + 51200 -6250.725 -6254.0496 3.3245108 3675.4445 622.86456 -10552.359 0 159.32921 -0.0011151998 -0.0011268125 + 51210 -6250.8576 -6254.1853 3.3276941 3674.5706 622.51947 -10551.275 0 159.48177 -0.0011043802 -0.001112531 + 51220 -6250.9649 -6254.3436 3.3786416 3676.1253 622.03439 -10552.503 0 161.92346 -0.0011548195 -0.0011619358 + 51230 -6251.0347 -6254.5409 3.5062107 3679.7838 621.3923 -10555.717 0 168.03729 -0.001264617 -0.0012746115 + 51240 -6251.0813 -6254.7419 3.6605911 3684.7831 620.73459 -10560.26 0 175.43606 -0.0014103867 -0.0014254333 + 51250 -6251.1348 -6254.8784 3.7436002 3690.061 620.32609 -10565.266 0 179.41432 -0.0015509956 -0.0015694945 + 51260 -6251.2151 -6254.9 3.6848821 3694.4628 620.46453 -10569.827 0 176.60023 -0.0016366911 -0.0016542059 + 51270 -6251.3109 -6254.8167 3.5058024 3697.0004 621.36796 -10573.185 0 168.01772 -0.0016229276 -0.0016356442 + 51280 -6251.3832 -6254.6958 3.3125781 3697.1297 623.08013 -10574.906 0 158.75733 -0.0014865187 -0.0014945019 + 51290 -6251.3922 -6254.6071 3.2149874 3694.9613 625.42546 -10574.994 0 154.08024 -0.0012389238 -0.0012462762 + 51300 -6251.3265 -6254.5642 3.2376696 3691.2967 628.02662 -10573.888 0 155.16729 -0.00092969948 -0.0009412861 + 51310 -6251.2097 -6254.5135 3.3038442 3687.415 630.38118 -10572.31 0 158.33875 -0.00063548343 -0.00065296654 + 51320 -6251.0789 -6254.3848 3.3058167 3684.6562 631.98095 -10571.022 0 158.43328 -0.00043654788 -0.00045707242 + 51330 -6250.9556 -6254.155 3.1993433 3683.9617 632.44686 -10570.563 0 153.33048 -0.00038989076 -0.00040837475 + 51340 -6250.8293 -6253.8739 3.0446356 3685.5591 631.64179 -10571.075 0 145.91602 -0.00051001732 -0.00052303915 + 51350 -6250.6655 -6253.6331 2.9675928 3688.9097 629.72317 -10572.266 0 142.2237 -0.00076464071 -0.00077288018 + 51360 -6250.4298 -6253.5056 3.0758192 3692.9068 627.11304 -10573.525 0 147.41051 -0.0010855605 -0.0010930666 + 51370 -6250.1115 -6253.502 3.3905271 3696.2276 624.38993 -10574.12 0 162.49308 -0.0013893417 -0.001400272 + 51380 -6249.7322 -6253.5731 3.8408878 3697.7101 622.13171 -10573.415 0 184.07689 -0.0016004 -0.0016157136 + 51390 -6249.3303 -6253.6546 4.3242874 3696.6613 620.75604 -10571.072 0 207.24412 -0.0016701958 -0.0016869371 + 51400 -6248.9315 -6253.7164 4.7848592 3693.0464 620.40951 -10567.172 0 229.3173 -0.0015886783 -0.0016025937 + 51410 -6248.5305 -6253.7713 5.2407802 3687.5373 620.94526 -10562.254 0 251.16759 -0.0013863332 -0.0013957268 + 51420 -6248.1037 -6253.8348 5.7310294 3681.403 621.99709 -10557.235 0 274.66309 -0.0011264712 -0.0011338879 + 51430 -6247.6442 -6253.8742 6.2299652 3676.2281 623.12064 -10553.223 0 298.57489 -0.00088832235 -0.00089839981 + 51440 -6247.1834 -6253.8006 6.6171649 3673.4877 623.94769 -10551.236 0 317.13167 -0.00074352187 -0.00075880612 + 51450 -6246.7754 -6253.5218 6.7463728 3674.0832 624.29996 -10551.905 0 323.32404 -0.00073213029 -0.00075064241 + 51460 -6246.4547 -6253.0218 6.5671371 3678.0121 624.22981 -10555.264 0 314.73406 -0.00084729943 -0.00086428562 + 51470 -6246.2047 -6252.3997 6.1949822 3684.334 623.98399 -10560.718 0 296.89831 -0.0010365883 -0.0010491702 + 51480 -6245.9689 -6251.8258 5.856932 3691.4767 623.91092 -10567.213 0 280.69704 -0.0012212504 -0.0012317973 + 51490 -6245.6965 -6251.4395 5.7429979 3697.7579 624.34177 -10573.539 0 275.23668 -0.0013256871 -0.0013404923 + 51500 -6245.3844 -6251.2671 5.8826664 3701.8875 625.47504 -10578.63 0 281.93038 -0.0013038715 -0.0013278498 + 51510 -6245.0774 -6251.2288 6.1513993 3703.253 627.29236 -10581.774 0 294.80957 -0.0011518722 -0.0011838314 + 51520 -6244.8271 -6251.2274 6.4003117 3701.9357 629.53341 -10582.697 0 306.73885 -0.00090384391 -0.0009366787 + 51530 -6244.644 -6251.2377 6.5937294 3698.5494 631.74848 -10581.536 0 316.00851 -0.00061708919 -0.0006430226 + 51540 -6244.485 -6251.3204 6.8354133 3694.0296 633.42084 -10578.771 0 327.59136 -0.00035490257 -0.0003715273 + 51550 -6244.2876 -6251.5521 7.2645121 3689.4461 634.11966 -10575.118 0 348.15618 -0.00017314794 -0.00018538765 + 51560 -6244.0242 -6251.9349 7.910761 3685.8299 633.62764 -10571.392 0 379.12805 -0.0001115194 -0.00012795742 + 51570 -6243.734 -6252.361 8.6270389 3683.9776 631.9976 -10568.336 0 413.45611 -0.00018750032 -0.0002138332 + 51580 -6243.5068 -6252.6639 9.1571097 3684.2372 629.52251 -10566.424 0 438.86008 -0.00039181355 -0.00042631066 + 51590 -6243.4238 -6252.7216 9.2978131 3686.3476 626.63924 -10565.708 0 445.60337 -0.00068701032 -0.00072153101 + 51600 -6243.4994 -6252.5406 9.0411518 3689.4461 623.81195 -10565.799 0 433.30272 -0.0010126261 -0.0010387909 + 51610 -6243.671 -6252.2519 8.5808433 3692.3151 621.44144 -10566.008 0 411.24216 -0.0012988811 -0.001314796 + 51620 -6243.8533 -6252.0122 8.1589022 3693.8215 619.8207 -10565.654 0 391.02037 -0.0014863695 -0.0014981129 + 51630 -6244.0109 -6251.8797 7.8687241 3693.3568 619.12259 -10564.359 0 377.11341 -0.0015439386 -0.0015599663 + 51640 -6244.1808 -6251.7787 7.5978787 3691.0401 619.39123 -10562.21 0 364.13298 -0.001475401 -0.0014987191 + 51650 -6244.4218 -6251.5991 7.1773174 3687.5907 620.52847 -10559.718 0 343.97732 -0.0013115737 -0.0013372212 + 51660 -6244.7438 -6251.3337 6.5898386 3684.0051 622.29652 -10557.635 0 315.82204 -0.0010943802 -0.0011146053 + 51670 -6245.091 -6251.1167 6.0257268 3681.2633 624.36088 -10556.741 0 288.78664 -0.00086439238 -0.00087621786 + 51680 -6245.391 -6251.13 5.7390156 3680.1686 626.36838 -10557.667 0 275.04583 -0.00065716923 -0.00066526412 + 51690 -6245.6178 -6251.4632 5.8453638 3681.2671 628.02938 -10560.76 0 280.14263 -0.00050434058 -0.00051706863 + 51700 -6245.8142 -6252.0395 6.2252961 3684.7509 629.17342 -10565.964 0 298.35112 -0.0004320771 -0.00045433613 + 51710 -6246.0623 -6252.6605 6.5981483 3690.3259 629.76355 -10572.75 0 316.22029 -0.00045358655 -0.00048226446 + 51720 -6246.4189 -6253.136 6.7171431 3697.118 629.87133 -10580.125 0 321.92319 -0.00055929632 -0.00058533412 + 51730 -6246.8632 -6253.4066 6.5433968 3703.7522 629.62826 -10586.787 0 313.59629 -0.00071356223 -0.00072956149 + 51740 -6247.3084 -6253.5548 6.2464326 3708.6838 629.17976 -10591.418 0 299.3641 -0.00086492584 -0.00087192547 + 51750 -6247.6732 -6253.6927 6.0194714 3710.6988 628.66089 -10593.052 0 288.48684 -0.00096679443 -0.00097368513 + 51760 -6247.9476 -6253.8365 5.888981 3709.3341 628.18905 -10591.36 0 282.23301 -0.00099545907 -0.0010112633 + 51770 -6248.1876 -6253.8979 5.7103453 3704.9834 627.85262 -10586.734 0 273.67179 -0.00095411397 -0.0009804355 + 51780 -6248.4521 -6253.79 5.3379004 3698.6766 627.68519 -10580.152 0 255.82214 -0.00086399383 -0.0008943717 + 51790 -6248.749 -6253.5305 4.7815545 3691.7233 627.6394 -10572.893 0 229.15892 -0.00075316037 -0.00077888576 + 51800 -6249.0359 -6253.2448 4.2089598 3685.4191 627.58338 -10566.247 0 201.71697 -0.00065083025 -0.00066734084 + 51810 -6249.2609 -6253.0855 3.8245933 3680.8658 627.33297 -10561.284 0 183.29597 -0.00058620353 -0.00059525181 + 51820 -6249.3982 -6253.1442 3.7459669 3678.8531 626.71439 -10558.712 0 179.52775 -0.000586199 -0.00059350829 + 51830 -6249.4577 -6253.4121 3.9544215 3679.7477 625.63878 -10558.799 0 189.51807 -0.00066903962 -0.00068012046 + 51840 -6249.4741 -6253.7966 4.3224818 3683.3932 624.16259 -10561.352 0 207.15758 -0.0008354822 -0.00085238028 + 51850 -6249.4869 -6254.1722 4.6852138 3689.0672 622.5084 -10565.748 0 224.54174 -0.0010622008 -0.0010827195 + 51860 -6249.5186 -6254.4383 4.9196447 3695.5548 621.03165 -10571.025 0 235.77698 -0.0013016578 -0.0013212485 + 51870 -6249.5621 -6254.5566 4.994497 3701.3743 620.13851 -10576.069 0 239.36432 -0.0014907889 -0.0015059079 + 51880 -6249.5871 -6254.5462 4.9591431 3705.1387 620.17951 -10579.864 0 237.66996 -0.0015676827 -0.0015782994 + 51890 -6249.5639 -6254.4428 4.8789429 3705.9612 621.34891 -10581.753 0 233.82632 -0.0014916384 -0.0015009291 + 51900 -6249.486 -6254.2598 4.7738443 3703.7483 623.61318 -10581.621 0 228.78941 -0.001259187 -0.0012706952 + 51910 -6249.3711 -6253.9894 4.6182574 3699.2499 626.68282 -10579.922 0 221.33281 -0.00090925145 -0.00092405679 + 51920 -6249.24 -6253.6381 4.3980574 3693.8423 630.04013 -10577.521 0 210.77959 -0.00051501478 -0.00053130662 + 51930 -6249.0937 -6253.257 4.1632911 3689.1376 633.03133 -10575.426 0 199.52827 -0.00016547375 -0.00018053275 + 51940 -6248.9061 -6252.9334 4.0272652 3686.5552 635.01269 -10574.501 0 193.00915 5.7184617e-05 4.4587617e-05 + 51950 -6248.6303 -6252.7506 4.1203032 3686.9681 635.51363 -10575.232 0 197.46805 9.8112993e-05 8.6725915e-05 + 51960 -6248.2075 -6252.7465 4.5390216 3690.4892 634.36637 -10577.602 0 217.53539 -5.6411063e-05 -6.9570539e-05 + 51970 -6247.5808 -6252.895 5.3141981 3696.4178 631.76411 -10581.077 0 254.68619 -0.00037435391 -0.00039225895 + 51980 -6246.726 -6253.1145 6.388491 3703.3343 628.23887 -10584.688 0 306.17233 -0.00078267654 -0.00080648377 + 51990 -6245.6976 -6253.3001 7.6024657 3709.3339 624.56388 -10587.198 0 364.35281 -0.0011807875 -0.0012088777 + 52000 -6244.6368 -6253.3692 8.732397 3712.4377 621.57699 -10587.384 0 418.50546 -0.0014625907 -0.0014915346 + 52010 -6243.6979 -6253.291 9.5931272 3711.1888 619.94221 -10584.422 0 459.75648 -0.0015458229 -0.0015731778 + 52020 -6242.968 -6253.0699 10.101825 3705.2526 619.93946 -10578.262 0 484.13614 -0.0014013739 -0.0014276169 + 52030 -6242.4634 -6252.6995 10.236072 3695.7068 621.38965 -10569.796 0 490.57 -0.0010688629 -0.0010960938 + 52040 -6242.1666 -6252.1525 9.9859685 3684.8174 623.73719 -10560.707 0 478.58364 -0.00064741585 -0.00067655532 + 52050 -6242.042 -6251.4282 9.386207 3675.3679 626.23594 -10553.032 0 449.8397 -0.00026319919 -0.00029320066 + 52060 -6242.0347 -6250.6016 8.5669803 3669.8213 628.1747 -10548.598 0 410.57776 -2.7333953e-05 -5.6914149e-05 + 52070 -6242.0835 -6249.8167 7.7331931 3669.6279 629.08688 -10548.531 0 370.618 -8.6762515e-07 -3.0120518e-05 + 52080 -6242.1474 -6249.2274 7.0799359 3674.8744 628.88623 -10552.988 0 339.31025 -0.00017814454 -0.00020800748 + 52090 -6242.2182 -6248.941 6.722772 3684.3157 627.87992 -10561.137 0 322.19296 -0.00049155119 -0.00052193268 + 52100 -6242.3085 -6249.0023 6.69386 3695.7309 626.64908 -10571.382 0 320.80733 -0.00083389051 -0.00086279842 + 52110 -6242.4281 -6249.4125 6.9844509 3706.508 625.83615 -10581.757 0 334.73408 -0.0010911299 -0.001116048 + 52120 -6242.5727 -6250.1481 7.5754699 3714.3211 625.91317 -10590.382 0 363.05902 -0.0011768992 -0.0011973351 + 52130 -6242.7357 -6251.1524 8.4166991 3717.7344 627.01261 -10595.899 0 403.37545 -0.0010594741 -0.0010782338 + 52140 -6242.9354 -6252.3066 9.3711819 3716.548 628.88362 -10597.738 0 449.11962 -0.00077239546 -0.00079395753 + 52150 -6243.2283 -6253.4185 10.190175 3711.764 630.99321 -10596.176 0 488.37036 -0.000403236 -0.00043009747 + 52160 -6243.6841 -6254.2641 10.579982 3705.174 632.73097 -10592.169 0 507.05209 -6.2467654e-05 -9.2532898e-05 + 52170 -6244.3276 -6254.676 10.348392 3698.7236 633.62639 -10587.026 0 495.95302 0.00015605228 0.00012828788 + 52180 -6245.0968 -6254.6222 9.5254811 3693.9149 633.48504 -10582.022 0 456.5145 0.00020539038 0.00018438376 + 52190 -6245.864 -6254.2113 8.3472854 3691.4808 632.40064 -10578.093 0 400.04875 9.2986012e-05 7.8290643e-05 + 52200 -6246.511 -6253.6182 7.10721 3691.4035 630.66741 -10575.689 0 340.61738 -0.00013468861 -0.00014809646 + 52210 -6246.9905 -6252.9915 6.0010736 3693.1533 628.65505 -10574.8 0 287.60512 -0.00041707546 -0.00043457731 + 52220 -6247.3299 -6252.4149 5.0849847 3695.957 626.70199 -10575.074 0 243.701 -0.00069910977 -0.00072211173 + 52230 -6247.5864 -6251.938 4.351616 3698.983 625.05385 -10575.975 0 208.55386 -0.00093913283 -0.0009643126 + 52240 -6247.7987 -6251.6296 3.8309375 3701.4543 623.84862 -10576.933 0 183.60002 -0.0011085241 -0.0011310786 + 52250 -6247.9698 -6251.5854 3.6155896 3702.7603 623.13567 -10577.481 0 173.27934 -0.001189914 -0.0012077423 + 52260 -6248.0842 -6251.8753 3.7910864 3702.5889 622.90981 -10577.374 0 181.69013 -0.0011777296 -0.0011928537 + 52270 -6248.1374 -6252.4788 4.3414489 3701.0254 623.14143 -10576.646 0 208.06659 -0.001079742 -0.0010959933 + 52280 -6248.151 -6253.2707 5.1197812 3698.5453 623.78988 -10575.606 0 245.36864 -0.00091632939 -0.00093571655 + 52290 -6248.1614 -6254.0721 5.9106361 3695.8859 624.79785 -10574.756 0 283.27085 -0.00071639111 -0.00073748317 + 52300 -6248.1953 -6254.7274 6.5321651 3693.8483 626.07337 -10574.649 0 313.058 -0.00051205208 -0.00053160143 + 52310 -6248.2527 -6255.1526 6.8999458 3693.1092 627.47257 -10575.734 0 330.68412 -0.00033486638 -0.00035095407 + 52320 -6248.3142 -6255.3295 7.0152368 3694.0847 628.79963 -10578.214 0 336.20951 -0.0002137362 -0.00022755988 + 52330 -6248.3632 -6255.2687 6.9055154 3696.8491 629.83733 -10581.955 0 330.95105 -0.00017204743 -0.00018685973 + 52340 -6248.4017 -6254.9794 6.5777679 3701.092 630.40756 -10586.479 0 315.24355 -0.00022176252 -0.00023994926 + 52350 -6248.4471 -6254.472 6.0249105 3706.1152 630.44091 -10591.028 0 288.74752 -0.0003555923 -0.00037637528 + 52360 -6248.5123 -6253.7892 5.2768693 3710.8996 630.01962 -10594.708 0 252.89719 -0.0005419965 -0.00056173673 + 52370 -6248.5879 -6253.0357 4.4477922 3714.2811 629.36433 -10596.681 0 213.16316 -0.00072844569 -0.00074345168 + 52380 -6248.6425 -6252.371 3.7284528 3715.2414 628.76073 -10596.373 0 178.68838 -0.00085502008 -0.00086465012 + 52390 -6248.6415 -6251.9568 3.3153257 3713.2465 628.45289 -10593.656 0 158.88901 -0.00087465529 -0.00088212044 + 52400 -6248.5675 -6251.8914 3.323892 3708.5006 628.54575 -10588.938 0 159.29955 -0.0007717749 -0.00078194317 + 52410 -6248.4256 -6252.1745 3.7489406 3701.9874 628.95469 -10583.117 0 179.67027 -0.00057093253 -0.00058696648 + 52420 -6248.2306 -6252.7219 4.4912989 3695.2524 629.42192 -10577.396 0 215.24824 -0.00033153552 -0.00035298651 + 52430 -6247.9899 -6253.4058 5.415851 3689.9934 629.5973 -10572.996 0 259.55797 -0.00013056085 -0.00015407865 + 52440 -6247.6966 -6254.0909 6.394359 3687.5905 629.16018 -10570.842 0 306.45356 -3.9138865e-05 -6.0924598e-05 + 52450 -6247.3354 -6254.6514 7.3160441 3688.7123 627.94408 -10571.308 0 350.62588 -0.00010016677 -0.00011838458 + 52460 -6246.8986 -6254.9773 8.0787009 3693.1055 626.02395 -10574.107 0 387.17668 -0.00031346607 -0.00032918842 + 52470 -6246.3999 -6254.9821 8.5822345 3699.6325 623.73605 -10578.351 0 411.30883 -0.00063283717 -0.00064907685 + 52480 -6245.8765 -6254.6184 8.7419315 3706.5548 621.62001 -10582.793 0 418.96241 -0.00097599045 -0.00099552352 + 52490 -6245.375 -6253.9006 8.5255563 3711.99 620.29181 -10586.182 0 408.59249 -0.0012448714 -0.0012684312 + 52500 -6244.9281 -6252.9227 7.9946493 3714.4182 620.27565 -10587.617 0 383.14845 -0.0013515919 -0.0013778133 + 52510 -6244.5382 -6251.8491 7.3109192 3713.1083 621.83801 -10586.795 0 350.38027 -0.0012440437 -0.0012709819 + 52520 -6244.1835 -6250.8687 6.6852288 3708.3572 624.87407 -10584.1 0 320.39367 -0.00092445377 -0.00095095161 + 52530 -6243.8357 -6250.1374 6.3016592 3701.4682 628.88713 -10580.493 0 302.01087 -0.00045394009 -0.00047956042 + 52540 -6243.4689 -6249.7487 6.2797728 3694.4374 633.07872 -10577.265 0 300.96195 6.1106024e-05 3.6783365e-05 + 52550 -6243.0529 -6249.7421 6.6892441 3689.4163 636.53812 -10575.697 0 320.58611 0.00049801596 0.00047516611 + 52560 -6242.5503 -6250.1093 7.558949 3688.1125 638.48863 -10576.71 0 362.26725 0.00075225926 0.00072989938 + 52570 -6241.9396 -6250.7725 8.8328518 3691.3021 638.5198 -10580.594 0 423.31982 0.00076591207 0.00074221733 + 52580 -6241.2508 -6251.5671 10.316233 3698.5636 636.72121 -10586.852 0 494.41179 0.00054328854 0.00051769974 + 52590 -6240.5739 -6252.2836 11.7097 3708.2859 633.65519 -10594.225 0 561.19453 0.00015130361 0.00012592601 + 52600 -6240.0166 -6252.7641 12.747552 3718.0016 630.16896 -10600.935 0 610.9342 -0.00029700806 -0.00031945494 + 52610 -6239.6526 -6252.9645 13.311886 3725.0534 627.12567 -10605.144 0 637.98025 -0.00067566155 -0.00069573918 + 52620 -6239.5192 -6252.9174 13.398145 3727.4336 625.16729 -10605.518 0 642.11426 -0.00088693597 -0.00090914419 + 52630 -6239.6488 -6252.6491 13.000221 3724.4488 624.58057 -10601.678 0 623.04353 -0.0008925491 -0.00092105962 + 52640 -6240.0719 -6252.1563 12.084459 3716.8992 625.27171 -10594.327 0 579.15509 -0.00071985795 -0.00075383627 + 52650 -6240.7746 -6251.4575 10.682854 3706.7374 626.82922 -10585.024 0 511.9823 -0.0004435427 -0.00047699146 + 52660 -6241.6655 -6250.6506 8.9850652 3696.4198 628.65632 -10575.727 0 430.61474 -0.0001553614 -0.00018145242 + 52670 -6242.5944 -6249.9207 7.3263089 3688.2202 630.14635 -10568.287 0 351.11783 6.4458298e-05 4.8324518e-05 + 52680 -6243.4212 -6249.4883 6.0671711 3683.7174 630.8544 -10564.06 0 290.77288 0.00016561291 0.00015572884 + 52690 -6244.0814 -6249.5216 5.440212 3683.5692 630.61084 -10563.702 0 260.72549 0.00013348913 0.00012207822 + 52700 -6244.5983 -6250.0587 5.460477 3687.5498 629.54313 -10567.152 0 261.6967 -1.4601418e-05 -3.4382722e-05 + 52710 -6245.044 -6250.9884 5.9443956 3694.7216 628.011 -10573.721 0 284.88879 -0.00023759314 -0.00026708131 + 52720 -6245.4888 -6252.1005 6.6117198 3703.6306 626.48721 -10582.218 0 316.87071 -0.0004799452 -0.00051371985 + 52730 -6245.9645 -6253.1801 7.215598 3712.5209 625.42325 -10591.124 0 345.81194 -0.00068149355 -0.00071059554 + 52740 -6246.4508 -6254.0862 7.6354026 3719.6294 625.13578 -10598.851 0 365.93133 -0.00078888501 -0.00080686279 + 52750 -6246.8905 -6254.7655 7.8749456 3723.5797 625.74075 -10604.086 0 377.41158 -0.0007688645 -0.00077651787 + 52760 -6247.2319 -6255.2013 7.9694569 3723.7719 627.14319 -10606.116 0 381.94109 -0.00062040966 -0.00062538918 + 52770 -6247.4694 -6255.3563 7.8869079 3720.5825 629.07218 -10605.011 0 377.98488 -0.00037930309 -0.00039051568 + 52780 -6247.648 -6255.1704 7.5223534 3715.2341 631.14444 -10601.549 0 360.51338 -0.0001095141 -0.00013059513 + 52790 -6247.8262 -6254.6251 6.798928 3709.3647 632.94541 -10596.935 0 325.84278 0.00011773956 9.0779496e-05 + 52800 -6248.0283 -6253.8146 5.7863056 3704.4862 634.11803 -10592.419 0 277.31223 0.00024828152 0.00022355166 + 52810 -6248.2286 -6252.9547 4.7260702 3701.5721 634.4415 -10588.968 0 226.4998 0.00026069721 0.00024405509 + 52820 -6248.3751 -6252.3046 3.9294361 3700.9173 633.87693 -10587.099 0 188.32062 0.0001668305 0.00015769367 + 52830 -6248.4306 -6252.0448 3.6142043 3702.2504 632.56436 -10586.86 0 173.21295 -1.3576181e-07 -7.7245498e-06 + 52840 -6248.4002 -6252.1936 3.7934005 3704.9602 630.77292 -10587.927 0 181.80104 -0.000200959 -0.00021315104 + 52850 -6248.3264 -6252.6183 4.2919575 3708.2908 628.82171 -10589.731 0 205.69469 -0.00040069962 -0.00041887821 + 52860 -6248.2562 -6253.1334 4.8772476 3711.4535 626.99934 -10591.586 0 233.74507 -0.00057167158 -0.00059180471 + 52870 -6248.2044 -6253.6069 5.4025038 3713.7066 625.51193 -10592.825 0 258.91829 -0.00069234559 -0.00070905659 + 52880 -6248.1449 -6253.9962 5.851351 3714.4802 624.47726 -10592.954 0 280.42957 -0.00074728231 -0.00075885804 + 52890 -6248.0392 -6254.3012 6.2619912 3713.5461 623.95515 -10591.803 0 300.10975 -0.0007299688 -0.00073979596 + 52900 -6247.8771 -6254.4978 6.620696 3711.1368 623.98074 -10589.615 0 317.3009 -0.00064596359 -0.00065937869 + 52910 -6247.6896 -6254.5215 6.8318278 3707.9135 624.56894 -10587.004 0 327.41952 -0.00051267612 -0.00053232569 + 52920 -6247.5271 -6254.3135 6.7863855 3704.7719 625.68502 -10584.77 0 325.24167 -0.00035498678 -0.00037865664 + 52930 -6247.4202 -6253.8817 6.4614849 3702.573 627.20625 -10583.661 0 309.67061 -0.00019917507 -0.00022155509 + 52940 -6247.358 -6253.3261 5.9681033 3701.9136 628.90991 -10584.15 0 286.025 -6.8167256e-05 -8.4939891e-05 + 52950 -6247.295 -6252.8072 5.5121745 3703.0136 630.50872 -10586.329 0 264.17433 2.0758474e-05 9.5349879e-06 + 52960 -6247.181 -6252.4728 5.2917799 3705.7296 631.72762 -10589.93 0 253.61179 5.6766544e-05 4.640546e-05 + 52970 -6246.9934 -6252.385 5.3915585 3709.639 632.39121 -10594.415 0 258.39374 3.6593276e-05 2.1027655e-05 + 52980 -6246.7511 -6252.4951 5.7439694 3714.1209 632.4818 -10599.098 0 275.28324 -3.2819303e-05 -5.6456648e-05 + 52990 -6246.4991 -6252.6894 6.1902964 3718.4018 632.14098 -10603.232 0 296.67374 -0.00013117833 -0.00016014215 + 53000 -6246.2735 -6252.8736 6.6000987 3721.6143 631.61508 -10606.103 0 316.31376 -0.00022472777 -0.00025251814 + 53010 -6246.0723 -6253.0269 6.9545468 3722.9463 631.16915 -10607.142 0 333.3009 -0.00027309246 -0.00029425788 + 53020 -6245.8598 -6253.1855 7.3257432 3721.8956 631.00141 -10606.083 0 351.09072 -0.00024354796 -0.0002576146 + 53030 -6245.5994 -6253.3734 7.7739405 3718.5302 631.17999 -10603.084 0 372.57085 -0.0001276483 -0.00013914113 + 53040 -6245.2904 -6253.5443 8.2539278 3713.5978 631.61316 -10598.755 0 395.57453 4.8434222e-05 3.3639825e-05 + 53050 -6244.9753 -6253.5858 8.6104863 3708.3776 632.06204 -10594.025 0 412.66282 0.00022722491 0.00020618447 + 53060 -6244.7144 -6253.3827 8.6683192 3704.2955 632.20428 -10589.882 0 415.43449 0.00033828258 0.00031270104 + 53070 -6244.5449 -6252.8945 8.3496275 3702.443 631.74412 -10587.082 0 400.161 0.00032512646 0.00029954407 + 53080 -6244.4576 -6252.1938 7.7361746 3703.1966 630.53994 -10585.93 0 370.76089 0.00016926306 0.0001473782 + 53090 -6244.4076 -6251.4441 7.0365386 3706.0953 628.7005 -10586.24 0 337.23041 -9.9186395e-05 -0.00011721972 + 53100 -6244.3475 -6250.8317 6.4841597 3710.0237 626.60286 -10587.458 0 310.75732 -0.00040850746 -0.00042584358 + 53110 -6244.2585 -6250.4923 6.2338198 3713.6162 624.80837 -10588.917 0 298.75962 -0.00066696108 -0.00068714357 + 53120 -6244.1549 -6250.4756 6.3206828 3715.7114 623.89163 -10590.079 0 302.92259 -0.00079105968 -0.00081479979 + 53130 -6244.0637 -6250.762 6.6983556 3715.7014 624.23632 -10590.7 0 321.02278 -0.00073158424 -0.00075603646 + 53140 -6243.9955 -6251.3051 7.3096356 3713.6968 625.87644 -10590.878 0 350.31875 -0.0004899884 -0.00051136656 + 53150 -6243.937 -6252.0529 8.1158665 3710.5021 628.45363 -10591.009 0 388.95786 -0.00012093139 -0.00013831889 + 53160 -6243.8756 -6252.926 9.0503194 3707.4152 631.31691 -10591.658 0 433.74209 0.00027997867 0.00026313306 + 53170 -6243.8387 -6253.7797 9.9410194 3705.859 633.73292 -10593.372 0 476.42943 0.00060142868 0.00057988185 + 53180 -6243.908 -6254.4058 10.497765 3706.8919 635.13009 -10596.428 0 503.11182 0.0007501775 0.00072171739 + 53190 -6244.1797 -6254.6043 10.424572 3710.7389 635.28661 -10600.63 0 499.60396 0.00068476035 0.00065307595 + 53200 -6244.6843 -6254.2967 9.612437 3716.5638 634.38824 -10605.249 0 460.68192 0.00043556387 0.00040798443 + 53210 -6245.3383 -6253.601 8.262729 3722.6635 632.93113 -10609.196 0 395.99634 9.7565643e-05 7.8857397e-05 + 53220 -6245.9871 -6252.7905 6.8034058 3727.081 631.5142 -10611.386 0 326.05738 -0.00020688754 -0.00021915899 + 53230 -6246.5125 -6252.1467 5.6341828 3728.3758 630.61575 -10611.138 0 270.02165 -0.00037888187 -0.00039257901 + 53240 -6246.9018 -6251.8148 4.9130514 3726.1688 630.44117 -10608.425 0 235.46099 -0.00038019037 -0.00040171737 + 53250 -6247.223 -6251.7785 4.5554089 3721.2048 630.88097 -10603.864 0 218.32075 -0.00023937114 -0.00026813484 + 53260 -6247.547 -6251.9501 4.4031939 3714.9757 631.57495 -10598.501 0 211.02576 -2.9839349e-05 -5.901139e-05 + 53270 -6247.8908 -6252.2744 4.3836181 3709.1584 632.05466 -10593.488 0 210.08758 0.00016341498 0.00014097152 + 53280 -6248.2204 -6252.7492 4.5288472 3705.1359 631.91885 -10589.804 0 217.04777 0.00027222785 0.00025834379 + 53290 -6248.4926 -6253.3668 4.8742836 3703.7224 630.98343 -10588.073 0 233.60302 0.00026114743 0.00025161585 + 53300 -6248.6976 -6254.0505 5.3528943 3705.0743 629.35296 -10588.478 0 256.54073 0.00013150968 0.00012025997 + 53310 -6248.8671 -6254.6575 5.7904358 3708.7181 627.38845 -10590.764 0 277.51017 -8.2381938e-05 -9.8190891e-05 + 53320 -6249.0447 -6255.0531 6.0083207 3713.6655 625.58624 -10594.305 0 287.95244 -0.00032260601 -0.00034087627 + 53330 -6249.2479 -6255.1909 5.9430267 3718.6352 624.41706 -10598.243 0 284.82318 -0.00052226556 -0.00053862954 + 53340 -6249.4544 -6255.1325 5.6781604 3722.3809 624.18696 -10601.7 0 272.12931 -0.00062407463 -0.00063612411 + 53350 -6249.6247 -6254.9911 5.3664342 3724.0466 624.96541 -10604.003 0 257.18964 -0.00059783623 -0.00060713085 + 53360 -6249.7356 -6254.8481 5.1124868 3723.4161 626.59211 -10604.856 0 245.01905 -0.00044983836 -0.00046025856 + 53370 -6249.7968 -6254.7071 4.9102219 3720.9483 628.74215 -10604.397 0 235.32538 -0.00021985079 -0.00023403423 + 53380 -6249.8394 -6254.5149 4.675459 3717.5837 631.01621 -10603.115 0 224.07423 3.3040058e-05 1.6070667e-05 + 53390 -6249.8879 -6254.2282 4.3403668 3714.4094 633.02709 -10601.665 0 208.01473 0.00024970436 0.00023378228 + 53400 -6249.9386 -6253.8723 3.9337139 3712.3267 634.46796 -10600.667 0 188.52564 0.00038763579 0.00037618671 + 53410 -6249.9612 -6253.5461 3.5848826 3711.8424 635.15808 -10600.547 0 171.80769 0.00042931232 0.00042221995 + 53420 -6249.9204 -6253.3685 3.4480837 3713.0231 635.06471 -10601.456 0 165.25152 0.00038107548 0.00037426196 + 53430 -6249.8016 -6253.4042 3.6026242 3715.568 634.2982 -10603.27 0 172.65796 0.00026577166 0.00025401982 + 53440 -6249.6211 -6253.6229 4.0017862 3718.9168 633.07799 -10605.618 0 191.78805 0.00011414238 9.516064e-05 + 53450 -6249.413 -6253.9206 4.5076792 3722.3431 631.67398 -10607.938 0 216.03328 -4.1567257e-05 -6.4980091e-05 + 53460 -6249.2004 -6254.1877 4.9873271 3725.0423 630.33778 -10609.568 0 239.0207 -0.00017147755 -0.00019312781 + 53470 -6248.9714 -6254.3686 5.3971321 3726.2619 629.24539 -10609.876 0 258.66085 -0.00025143758 -0.00026635439 + 53480 -6248.681 -6254.4684 5.787409 3725.4941 628.47179 -10608.434 0 277.36511 -0.00026758417 -0.00027609884 + 53490 -6248.2838 -6254.5059 6.2221517 3722.6784 628.00426 -10605.189 0 298.20042 -0.00022112643 -0.00022903576 + 53500 -6247.7747 -6254.4592 6.6845429 3718.3069 627.78287 -10600.549 0 320.3608 -0.00012986147 -0.00014426854 + 53510 -6247.2049 -6254.2623 7.0573959 3713.3394 627.74402 -10595.346 0 338.23001 -2.3294651e-05 -4.7270329e-05 + 53520 -6246.6555 -6253.8605 7.2050703 3708.934 627.8459 -10590.64 0 345.3074 6.8027945e-05 3.7759101e-05 + 53530 -6246.187 -6253.2781 7.091091 3706.1041 628.06991 -10587.452 0 339.84487 0.00012390573 9.4506016e-05 + 53540 -6245.8046 -6252.6363 6.8317079 3705.453 628.40693 -10586.496 0 327.41378 0.00014031772 0.00011763891 + 53550 -6245.4631 -6252.1045 6.6414192 3707.077 628.84297 -10588.024 0 318.29407 0.00012697057 0.0001114822 + 53560 -6245.1057 -6251.8134 6.7076298 3710.631 629.35527 -10591.8 0 321.46726 9.9070831e-05 8.5683194e-05 + 53570 -6244.7101 -6251.7807 7.0705235 3715.4798 629.9206 -10597.181 0 338.85916 6.8867524e-05 5.0849509e-05 + 53580 -6244.312 -6251.8987 7.5866565 3720.8349 630.52737 -10603.261 0 363.59515 4.241703e-05 1.6809412e-05 + 53590 -6243.9829 -6252.0051 8.0222549 3725.8218 631.17954 -10609.006 0 384.47147 2.3807103e-05 -6.0255725e-06 + 53600 -6243.7731 -6251.9966 8.2234993 3729.5256 631.88983 -10613.412 0 394.11623 2.2810133e-05 -4.4620392e-06 + 53610 -6243.6726 -6251.891 8.2183667 3731.1266 632.67051 -10615.688 0 393.87024 5.7375916e-05 3.7002346e-05 + 53620 -6243.6287 -6251.7882 8.1595187 3730.1571 633.52652 -10615.472 0 391.04992 0.00014600824 0.0001310825 + 53630 -6243.5973 -6251.7765 8.1791584 3726.7541 634.44203 -10612.973 0 391.99116 0.00029421341 0.00027935089 + 53640 -6243.5758 -6251.8714 8.2956097 3721.7326 635.35163 -10608.956 0 397.57216 0.00048419012 0.00046474146 + 53650 -6243.5937 -6252.0236 8.4299004 3716.4037 636.10769 -10604.535 0 404.00813 0.00067434946 0.00064972604 + 53660 -6243.6804 -6252.1678 8.4873769 3712.2027 636.4757 -10600.846 0 406.76272 0.00080964625 0.00078318454 + 53670 -6243.8387 -6252.2706 8.4319801 3710.266 636.18517 -10598.722 0 404.1078 0.00083904677 0.00081510459 + 53680 -6244.0398 -6252.3474 8.3075849 3711.098 635.0334 -10598.479 0 398.14608 0.00073365993 0.00071420996 + 53690 -6244.2429 -6252.4394 8.1964973 3714.4282 633.00468 -10599.872 0 392.82214 0.00049885802 0.00048202923 + 53700 -6244.4243 -6252.5699 8.145592 3719.294 630.34737 -10602.211 0 390.38247 0.00017652968 0.00015828979 + 53710 -6244.5935 -6252.7179 8.1243856 3724.3054 627.55922 -10604.583 0 389.36614 -0.0001626184 -0.00018495922 + 53720 -6244.7812 -6252.8397 8.0584805 3728.0056 625.26594 -10606.111 0 386.2076 -0.00043496871 -0.00046053303 + 53730 -6245.0086 -6252.9131 7.9044404 3729.2498 624.02982 -10606.193 0 378.82514 -0.00056591635 -0.00059121513 + 53740 -6245.2705 -6252.958 7.6875012 3727.5412 624.16405 -10604.663 0 368.42819 -0.00051335454 -0.00053520907 + 53750 -6245.5423 -6253.013 7.4707107 3723.2355 625.62634 -10601.875 0 358.03838 -0.00028466208 -0.00030236856 + 53760 -6245.7995 -6253.0978 7.2982986 3717.5142 628.02746 -10598.639 0 349.77542 6.1060345e-05 4.5664246e-05 + 53770 -6246.0305 -6253.1977 7.1671624 3712.0859 630.74491 -10596.029 0 343.49064 0.00042835385 0.00041222467 + 53780 -6246.2371 -6253.2714 7.0342834 3708.6896 633.10281 -10595.064 0 337.12233 0.00071366054 0.00069414931 + 53790 -6246.432 -6253.2686 6.8365401 3708.5577 634.56581 -10596.392 0 327.64536 0.00083690835 0.00081320343 + 53800 -6246.6335 -6253.1488 6.5152666 3712.0127 634.89043 -10600.052 0 312.24813 0.00076651405 0.00074060584 + 53810 -6246.8533 -6252.9122 6.0589458 3718.3182 634.18635 -10605.417 0 290.37868 0.00053056072 0.00050669719 + 53820 -6247.0798 -6252.6323 5.5524917 3725.8438 632.86708 -10611.343 0 266.10656 0.00021022812 0.00019213647 + 53830 -6247.2763 -6252.4508 5.1744681 3732.5303 631.50855 -10616.49 0 247.98954 -8.468415e-05 -9.7248422e-05 + 53840 -6247.4056 -6252.5048 5.0992127 3736.5407 630.66326 -10619.709 0 244.38289 -0.00025247071 -0.00026438466 + 53850 -6247.4665 -6252.8266 5.3600757 3736.8622 630.68407 -10620.373 0 256.8849 -0.00023573956 -0.00025270629 + 53860 -6247.5055 -6253.3089 5.8034022 3733.6085 631.6043 -10618.522 0 278.1316 -4.1568649e-05 -6.4804002e-05 + 53870 -6247.5832 -6253.7803 6.1971702 3727.904 633.11187 -10614.796 0 297.00317 0.0002636271 0.00023895608 + 53880 -6247.724 -6254.1271 6.4030233 3721.4473 634.64024 -10610.215 0 306.8688 0.00058072721 0.00056138795 + 53890 -6247.8969 -6254.3482 6.4513355 3715.9804 635.56039 -10605.889 0 309.18419 0.00081200677 0.00080066463 + 53900 -6248.0465 -6254.5058 6.4592716 3712.8513 635.40779 -10602.765 0 309.56454 0.00088871458 0.0008815768 + 53910 -6248.1449 -6254.6299 6.4850025 3712.741 634.05405 -10601.425 0 310.79771 0.00078607602 0.00077619125 + 53920 -6248.2144 -6254.6723 6.4579031 3715.5478 631.7558 -10601.976 0 309.49895 0.00052668183 0.00050981325 + 53930 -6248.3056 -6254.5488 6.2432612 3720.4207 629.0672 -10604.037 0 299.21211 0.00017442003 0.00015241767 + 53940 -6248.448 -6254.2283 5.7802955 3725.9549 626.65688 -10606.84 0 277.02419 -0.0001807009 -0.00020182563 + 53950 -6248.6211 -6253.7897 5.1685828 3730.5564 625.1036 -10609.45 0 247.70749 -0.00044602232 -0.00046156238 + 53960 -6248.7694 -6253.3903 4.6209288 3732.9106 624.74399 -10611.045 0 221.46084 -0.00055295415 -0.00056367825 + 53970 -6248.8484 -6253.1673 4.3188881 3732.4028 625.61214 -10611.182 0 206.98535 -0.00047770796 -0.00048909648 + 53980 -6248.8599 -6253.1523 4.2923294 3729.3141 627.46674 -10609.933 0 205.71251 -0.00024743982 -0.00026474764 + 53990 -6248.8482 -6253.268 4.4197441 3724.6961 629.87602 -10607.84 0 211.81893 7.0919072e-05 4.7434364e-05 + 54000 -6248.8613 -6253.405 4.5436897 3719.9775 632.32922 -10605.712 0 217.7591 0.00039438596 0.00036996692 + 54010 -6248.9094 -6253.5146 4.605228 3716.4888 634.35139 -10604.355 0 220.70836 0.0006502087 0.00063134806 + 54020 -6248.9527 -6253.6419 4.689226 3715.1071 635.60201 -10604.351 0 224.73402 0.00079418591 0.0007830972 + 54030 -6248.9282 -6253.8738 4.9456257 3716.1282 635.93802 -10605.94 0 237.02213 0.00081540402 0.00080776134 + 54040 -6248.7951 -6254.2454 5.4502793 3719.3276 635.42659 -10609 0 261.20796 0.00072943572 0.00071733574 + 54050 -6248.5656 -6254.6792 6.1136381 3724.0906 634.30639 -10613.076 0 292.99984 0.00056729093 0.00054533117 + 54060 -6248.2992 -6255.0089 6.7097405 3729.5179 632.91145 -10617.438 0 321.56841 0.00036697345 0.00033686675 + 54070 -6248.0605 -6255.0746 7.0140587 3734.5079 631.58095 -10621.163 0 336.15305 0.00016960583 0.00013952425 + 54080 -6247.8684 -6254.8256 6.9572132 3737.8896 630.57926 -10623.294 0 333.42869 1.6826287e-05 -4.6300849e-06 + 54090 -6247.6766 -6254.3512 6.6745393 3738.6705 630.04718 -10623.069 0 319.88137 -5.5388278e-05 -6.6299349e-05 + 54100 -6247.4104 -6253.8082 6.397832 3736.3706 629.99538 -10620.174 0 306.62001 -2.7570745e-05 -3.4942292e-05 + 54110 -6247.0337 -6253.3007 6.2670574 3731.2928 630.33431 -10614.928 0 300.35256 9.29703e-05 7.845994e-05 + 54120 -6246.5891 -6252.8163 6.2272431 3724.5434 630.91805 -10608.278 0 298.44443 0.00027094354 0.00024395808 + 54130 -6246.1696 -6252.2881 6.1184848 3717.7216 631.5789 -10601.589 0 293.23212 0.00045526762 0.00042083274 + 54140 -6245.8394 -6251.728 5.8886081 3712.409 632.14604 -10596.283 0 282.21514 0.00059921802 0.00056879861 + 54150 -6245.5711 -6251.2947 5.7235825 3709.7264 632.46074 -10593.482 0 274.30619 0.00067589934 0.00065753113 + 54160 -6245.26 -6251.2126 5.95261 3710.1575 632.4022 -10593.772 0 285.28247 0.00067983569 0.00067091285 + 54170 -6244.8061 -6251.5953 6.7891366 3713.6162 631.92531 -10597.137 0 325.37352 0.00061729326 0.00060638884 + 54180 -6244.2046 -6252.319 8.1144153 3719.5744 631.09717 -10602.991 0 388.88831 0.00049695423 0.00047334089 + 54190 -6243.5725 -6253.0604 9.4878945 3727.0988 630.1119 -10610.271 0 454.71314 0.00033097512 0.00029395709 + 54200 -6243.0752 -6253.485 10.409852 3734.8241 629.26366 -10617.573 0 498.89853 0.00014586958 0.00010564796 + 54210 -6242.8013 -6253.453 10.651644 3741.0478 628.87435 -10623.375 0 510.48657 -9.1373337e-06 -4.0471836e-05 + 54220 -6242.7053 -6253.0791 10.373791 3744.111 629.19916 -10626.389 0 497.17026 -7.0738107e-05 -9.0171925e-05 + 54230 -6242.6773 -6252.603 9.9256695 3742.9983 630.34869 -10625.95 0 475.69378 1.1467275e-05 -4.6076847e-06 + 54240 -6242.6623 -6252.1929 9.5305337 3737.8488 632.25107 -10622.293 0 456.75665 0.00024592389 0.00022149217 + 54250 -6242.7025 -6251.8635 9.1610526 3730.031 634.65036 -10616.545 0 439.04904 0.00058843573 0.0005516525 + 54260 -6242.872 -6251.5597 8.6876411 3721.6972 637.13123 -10610.388 0 416.36051 0.00095649417 0.00091413816 + 54270 -6243.1873 -6251.286 8.0987282 3715.0588 639.17652 -10605.521 0 388.1365 0.001257753 0.0012205908 + 54280 -6243.585 -6251.141 7.5559326 3711.748 640.27147 -10603.16 0 362.12269 0.0014163826 0.00138986 + 54290 -6243.9793 -6251.2338 7.2545247 3712.4776 640.04536 -10603.757 0 347.67753 0.0013891415 0.0013699182 + 54300 -6244.3304 -6251.5817 7.2512873 3716.9854 638.40741 -10606.975 0 347.52238 0.001172866 0.0011529949 + 54310 -6244.6658 -6252.0844 7.4186265 3724.1551 635.6186 -10611.858 0 355.54221 0.00080682253 0.00078079619 + 54320 -6245.0453 -6252.5904 7.5451204 3732.2491 632.25704 -10617.097 0 361.60451 0.00036869598 0.00033739671 + 54330 -6245.5065 -6252.9908 7.4842612 3739.2634 629.07394 -10621.328 0 358.68779 -3.9804196e-05 -7.0641576e-05 + 54340 -6246.0342 -6253.271 7.2368393 3743.395 626.78305 -10623.449 0 346.82995 -0.00031813388 -0.0003428616 + 54350 -6246.5725 -6253.492 6.9195294 3743.5335 625.85743 -10622.883 0 331.62267 -0.00039633661 -0.00041356158 + 54360 -6247.0645 -6253.7234 6.6588791 3739.6207 626.40458 -10619.749 0 319.13085 -0.00025788638 -0.00027092769 + 54370 -6247.4851 -6253.982 6.4969074 3732.7259 628.1547 -10614.863 0 311.36825 5.3303717e-05 3.9427127e-05 + 54380 -6247.8442 -6254.2188 6.3745789 3724.7725 630.55284 -10609.544 0 305.50559 0.00044498925 0.00042725921 + 54390 -6248.1654 -6254.3581 6.1927079 3717.985 632.91839 -10605.262 0 296.78931 0.00080401197 0.00078297609 + 54400 -6248.4611 -6254.3531 5.8919854 3714.2379 634.62761 -10603.219 0 282.377 0.0010298699 0.0010083978 + 54410 -6248.7244 -6254.2157 5.4912747 3714.5267 635.27545 -10604.018 0 263.1727 0.001063568 0.0010443614 + 54420 -6248.9379 -6254.0078 5.0698967 3718.7192 634.77744 -10607.504 0 242.9779 0.00090326829 0.00088714014 + 54430 -6249.0884 -6253.8116 4.7231576 3725.638 633.38512 -10612.835 0 226.36021 0.00060311916 0.00058886513 + 54440 -6249.1749 -6253.6985 4.5235799 3733.4205 631.60965 -10618.729 0 216.79533 0.00025648917 0.0002419007 + 54450 -6249.208 -6253.7075 4.4994864 3740.0425 630.07247 -10623.823 0 215.64063 -3.1436609e-05 -4.8258455e-05 + 54460 -6249.2056 -6253.8366 4.631043 3743.8578 629.32104 -10627.015 0 221.94556 -0.00017406276 -0.00019376522 + 54470 -6249.1852 -6254.0483 4.8630845 3744.0138 629.66 -10627.722 0 233.0663 -0.00012809743 -0.0001499126 + 54480 -6249.1583 -6254.2868 5.1284716 3740.6456 631.04972 -10625.982 0 245.78513 9.456167e-05 7.2197354e-05 + 54490 -6249.1282 -6254.4973 5.3691286 3734.8096 633.11014 -10622.417 0 257.31877 0.00043099877 0.00040949153 + 54500 -6249.0918 -6254.6371 5.5453242 3728.179 635.23522 -10618.051 0 265.76305 0.00078598147 0.00076589495 + 54510 -6249.0449 -6254.6782 5.6332453 3722.5803 636.78328 -10614.042 0 269.97672 0.001059565 0.001040577 + 54520 -6248.9869 -6254.6059 5.6189495 3719.4941 637.27863 -10611.379 0 269.29159 0.0011756104 0.0011570659 + 54530 -6248.9216 -6254.4212 5.4996089 3719.6558 636.55409 -10610.631 0 263.57212 0.0011030871 0.001084682 + 54540 -6248.8535 -6254.1491 5.2956059 3722.8729 634.78752 -10611.809 0 253.79515 0.00086399066 0.00084599271 + 54550 -6248.7821 -6253.844 5.0618691 3728.1099 632.42774 -10614.382 0 242.59317 0.00052547531 0.00050829835 + 54560 -6248.7011 -6253.5812 4.8801271 3733.8141 630.04745 -10617.443 0 233.88307 0.00017881663 0.00016242194 + 54570 -6248.6026 -6253.4305 4.8278989 3738.3757 628.18106 -10619.987 0 231.38 -8.7585402e-05 -0.00010378824 + 54580 -6248.4827 -6253.4257 4.9430887 3740.5771 627.19743 -10621.2 0 236.90055 -0.00021215447 -0.00022879724 + 54590 -6248.3428 -6253.5521 5.2093258 3739.9014 627.23226 -10620.686 0 249.66012 -0.0001740932 -0.00019132912 + 54600 -6248.1863 -6253.755 5.5687247 3736.6286 628.18239 -10618.566 0 266.88453 5.1794493e-06 -1.2387312e-05 + 54610 -6248.0157 -6253.9619 5.9461969 3731.7187 629.75331 -10615.434 0 284.97512 0.00027155964 0.00025384802 + 54620 -6247.8349 -6254.1031 6.2682333 3726.5318 631.54724 -10612.182 0 300.40891 0.0005550125 0.00053702845 + 54630 -6247.6519 -6254.1286 6.4766671 3722.4615 633.17303 -10609.763 0 310.39823 0.00078902972 0.00077062022 + 54640 -6247.4766 -6254.0225 6.5458622 3720.5731 634.34955 -10608.945 0 313.71445 0.00092785263 0.00090913888 + 54650 -6247.3136 -6253.8115 6.4979053 3721.3426 634.96961 -10610.124 0 311.41608 0.00095659911 0.00093772237 + 54660 -6247.1584 -6253.5559 6.3975328 3724.5704 635.10178 -10613.228 0 306.60567 0.00089117503 0.00087170004 + 54670 -6247.0024 -6253.3218 6.319461 3729.48 634.93109 -10617.733 0 302.86403 0.00076854885 0.00074734416 + 54680 -6246.8428 -6253.1504 6.3076501 3734.9516 634.66713 -10622.769 0 302.29798 0.00063207319 0.00060809581 + 54690 -6246.6865 -6253.0464 6.3599166 3739.8007 634.46214 -10627.309 0 304.80289 0.00051847126 0.00049180014 + 54700 -6246.5436 -6252.9941 6.4505389 3743.0246 634.37292 -10630.392 0 309.14602 0.0004510709 0.00042304611 + 54710 -6246.4166 -6252.9809 6.5643696 3743.9851 634.37337 -10631.339 0 314.60143 0.00043912401 0.00041133626 + 54720 -6246.2984 -6253.0049 6.7064593 3742.5166 634.39618 -10629.918 0 321.41116 0.00047982364 0.00045294042 + 54730 -6246.1803 -6253.0633 6.8829376 3738.951 634.37206 -10626.386 0 329.86899 0.00056042416 0.0005339381 + 54740 -6246.0614 -6253.1394 7.0780228 3734.0491 634.24733 -10621.436 0 339.21857 0.00066045076 0.00063350111 + 54750 -6245.9511 -6253.2041 7.2530138 3728.8421 633.98222 -10616.028 0 347.60512 0.00075516925 0.00072761172 + 54760 -6245.8614 -6253.2347 7.3732545 3724.4076 633.54426 -10611.187 0 353.36772 0.00082054514 0.00079314308 + 54770 -6245.7956 -6253.2326 7.4370053 3721.6328 632.9105 -10607.776 0 356.42302 0.00083813283 0.00081162444 + 54780 -6245.748 -6253.217 7.4689657 3721.0342 632.08273 -10606.334 0 357.95474 0.00079804007 0.00077224649 + 54790 -6245.716 -6253.1962 7.4802664 3722.6695 631.1077 -10606.973 0 358.49634 0.00070009511 0.00067431695 + 54800 -6245.7087 -6253.1521 7.4433631 3726.1341 630.08828 -10609.374 0 356.72772 0.00055496262 0.00052927081 + 54810 -6245.7414 -6253.0592 7.3177171 3730.6254 629.17612 -10612.861 0 350.70606 0.00038563645 0.0003613752 + 54820 -6245.8202 -6252.9208 7.1005505 3735.087 628.5489 -10616.557 0 340.29822 0.00022691445 0.00020559197 + 54830 -6245.9376 -6252.7813 6.8437083 3738.4452 628.38135 -10619.608 0 327.9889 0.00011982521 0.00010157692 + 54840 -6246.0839 -6252.7007 6.6168785 3739.9012 628.81431 -10621.416 0 317.11795 0.00010087479 8.4253239e-05 + 54850 -6246.2594 -6252.7191 6.459684 3739.177 629.91687 -10621.813 0 309.5843 0.00018978614 0.00017300256 + 54860 -6246.4744 -6252.8433 6.3688919 3736.6115 631.64046 -10621.095 0 305.23304 0.00038060483 0.00036275372 + 54870 -6246.7386 -6253.0544 6.3158408 3733.072 633.78198 -10619.908 0 302.69053 0.00063945434 0.00062070836 + 54880 -6247.0535 -6253.3178 6.2642989 3729.7114 635.987 -10619.016 0 300.22035 0.00091030677 0.00089142139 + 54890 -6247.4111 -6253.5935 6.1824254 3727.6392 637.81452 -10619.047 0 296.29651 0.0011284406 0.0011101624 + 54900 -6247.7938 -6253.8494 6.0555695 3727.5955 638.85439 -10620.299 0 290.21687 0.0012384888 0.0012210006 + 54910 -6248.1793 -6254.07 5.8906974 3729.7295 638.85635 -10622.656 0 282.31527 0.0012111129 0.0011937246 + 54920 -6248.5483 -6254.2503 5.7019279 3733.5525 637.81706 -10625.62 0 273.26838 0.0010521646 0.0010336888 + 54930 -6248.8923 -6254.383 5.4907736 3738.0696 635.98642 -10628.439 0 263.14868 0.00080123902 0.00078098167 + 54940 -6249.2121 -6254.4564 5.2443167 3742.0416 633.79125 -10630.289 0 251.33708 0.00052053978 0.00049909951 + 54950 -6249.5104 -6254.4647 4.9542974 3744.3087 631.70988 -10630.483 0 237.43773 0.00027789641 0.00025701746 + 54960 -6249.7832 -6254.4228 4.6396009 3744.1018 630.14486 -10628.67 0 222.35571 0.00012897578 0.00011044573 + 54970 -6250.0184 -6254.3718 4.3533374 3741.2682 629.32992 -10624.97 0 208.63636 0.00010322194 8.7488062e-05 + 54980 -6250.2014 -6254.3656 4.1642774 3736.349 629.28759 -10620.002 0 199.57554 0.00019641715 0.00018189653 + 54990 -6250.3261 -6254.4424 4.1163226 3730.4833 629.84036 -10614.766 0 197.27728 0.00037132432 0.00035518414 + 55000 -6250.4046 -6254.5954 4.1908584 3725.1448 630.67098 -10610.411 0 200.84945 0.00056713242 0.00054738208 + 55010 -6250.4641 -6254.7715 4.3073808 3721.7528 631.42021 -10607.944 0 206.43386 0.00071700936 0.00069446169 + 55020 -6250.5306 -6254.9051 4.3745507 3721.2537 631.79975 -10607.959 0 209.65302 0.00076982485 0.00074809264 + 55030 -6250.6074 -6254.9653 4.357927 3723.8126 631.68901 -10610.467 0 208.85632 0.00070854308 0.00069156622 + 55040 -6250.6693 -6254.9752 4.3059196 3728.748 631.1829 -10614.906 0 206.36383 0.00055720499 0.00054601915 + 55050 -6250.6794 -6254.9831 4.3037634 3734.7533 630.56918 -10620.306 0 206.26049 0.00037262362 0.00036415983 + 55060 -6250.6188 -6255.0085 4.3896934 3740.3151 630.23577 -10625.559 0 210.37874 0.00022402888 0.00021332763 + 55070 -6250.5039 -6255.0134 4.5095005 3744.1562 630.5335 -10629.703 0 216.12057 0.00016942475 0.00015367252 + 55080 -6250.3734 -6254.9312 4.5578375 3745.5447 631.63922 -10632.115 0 218.43715 0.00023781792 0.00021876883 + 55090 -6250.256 -6254.732 4.4759975 3744.4113 633.46882 -10632.612 0 214.51492 0.0004221406 0.00040468706 + 55100 -6250.1439 -6254.4648 4.3209039 3741.3022 635.67514 -10631.442 0 207.08196 0.00068237489 0.00067031796 + 55110 -6249.995 -6254.2363 4.2412755 3737.2216 637.73538 -10629.193 0 203.26572 0.00095564617 0.00094816022 + 55120 -6249.7634 -6254.1361 4.3726664 3733.396 639.10026 -10626.632 0 209.56271 0.0011704743 0.0011623227 + 55130 -6249.4352 -6254.1641 4.7288876 3730.9741 639.35681 -10624.495 0 226.63483 0.0012638438 0.001249501 + 55140 -6249.044 -6254.2218 5.1778103 3730.6888 638.35384 -10623.264 0 248.14972 0.0011996351 0.00117821 + 55150 -6248.6482 -6254.1849 5.5366777 3732.5641 636.25073 -10623 0 265.34866 0.00098418055 0.00096078173 + 55160 -6248.2818 -6254.0079 5.7261253 3735.8123 633.47513 -10623.295 0 274.42805 0.00067115744 0.00065266625 + 55170 -6247.9201 -6253.7677 5.8475924 3739.0498 630.60667 -10623.424 0 280.24944 0.00034854865 0.00033681211 + 55180 -6247.5034 -6253.5941 6.0906505 3740.819 628.22759 -10622.641 0 291.89815 0.00010861798 9.7473879e-05 + 55190 -6247.0052 -6253.5432 6.5379929 3740.1902 626.78296 -10620.516 0 313.33731 1.3659257e-05 -6.4797133e-06 + 55200 -6246.4791 -6253.5356 7.0564769 3737.1308 626.47925 -10617.146 0 338.18597 7.5082203e-05 4.1625706e-05 + 55210 -6246.032 -6253.4253 7.3933493 3732.4596 627.24181 -10613.127 0 354.33078 0.00025575194 0.00021478433 + 55220 -6245.7399 -6253.1384 7.3985165 3727.4665 628.74767 -10609.353 0 354.57842 0.00049138537 0.00045505332 + 55230 -6245.5845 -6252.7554 7.1709399 3723.4465 630.53388 -10606.736 0 343.67167 0.00071700185 0.00069428068 + 55240 -6245.4679 -6252.4656 6.9977414 3721.3734 632.14966 -10605.989 0 335.37103 0.00088513102 0.00087451441 + 55250 -6245.2929 -6252.4278 7.1348283 3721.7775 633.29662 -10607.502 0 341.941 0.00097133548 0.00096173978 + 55260 -6245.0423 -6252.6436 7.601346 3724.7432 633.90484 -10611.292 0 364.29915 0.00097167759 0.00095103546 + 55270 -6244.7959 -6252.945 8.149067 3729.906 634.11874 -10616.97 0 390.54902 0.00089955226 0.00086455378 + 55280 -6244.6697 -6253.1138 8.4441405 3736.4161 634.20337 -10623.733 0 404.69059 0.00078494433 0.0007440436 + 55290 -6244.718 -6253.0484 8.3303667 3742.9747 634.41528 -10630.438 0 399.23792 0.00067213337 0.00063884356 + 55300 -6244.8847 -6252.8373 7.9525833 3748.0809 634.89819 -10635.816 0 381.13241 0.0006094441 0.00059117593 + 55310 -6245.0518 -6252.6733 7.6215451 3750.4967 635.64544 -10638.815 0 365.2672 0.0006308026 0.00062289573 + 55320 -6245.1413 -6252.6782 7.5368911 3749.7286 636.52782 -10638.935 0 361.21011 0.00073843619 0.00072867096 + 55330 -6245.1767 -6252.798 7.6212676 3746.2298 637.35122 -10636.379 0 365.25391 0.00089897829 0.00087839463 + 55340 -6245.2503 -6252.863 7.6127043 3741.182 637.90865 -10631.954 0 364.8435 0.0010575498 0.0010278705 + 55350 -6245.433 -6252.7535 7.3204632 3735.9928 638.01668 -10626.763 0 350.83767 0.0011620214 0.0011334635 + 55360 -6245.7086 -6252.5172 6.8086377 3731.8126 637.54541 -10621.875 0 326.30812 0.0011827839 0.0011647978 + 55370 -6245.989 -6252.3447 6.3557604 3729.301 636.44921 -10618.095 0 304.6037 0.0011177165 0.0011108635 + 55380 -6246.188 -6252.4278 6.239887 3728.6562 634.79332 -10615.877 0 299.0504 0.00098348728 0.00097891481 + 55390 -6246.2905 -6252.8142 6.5237214 3729.7583 632.76349 -10615.336 0 312.65333 0.00080294333 0.00078954838 + 55400 -6246.3672 -6253.3648 6.9975916 3732.2587 630.64623 -10616.27 0 335.36385 0.00059849909 0.00057209471 + 55410 -6246.5225 -6253.8512 7.3287282 3735.5597 628.7748 -10618.186 0 351.23378 0.00039465661 0.00036170087 + 55420 -6246.8085 -6254.123 7.3145333 3738.7837 627.45323 -10620.36 0 350.55348 0.00022389884 0.00019615951 + 55430 -6247.1783 -6254.2076 7.0293332 3740.9045 626.88796 -10622 0 336.88509 0.00012553254 0.00010983602 + 55440 -6247.5281 -6254.2505 6.7223686 3741.1023 627.15537 -10622.508 0 322.17362 0.0001322916 0.00012464106 + 55450 -6247.7912 -6254.3538 6.5626224 3739.1753 628.20753 -10621.737 0 314.51769 0.00025198652 0.00024157679 + 55460 -6247.9892 -6254.4759 6.4866786 3735.7149 629.89297 -10620.084 0 310.87803 0.00045871354 0.00043770325 + 55470 -6248.1969 -6254.4864 6.289573 3731.8945 631.97404 -10618.355 0 301.43163 0.00070140826 0.0006710933 + 55480 -6248.4639 -6254.3045 5.8405861 3729.0041 634.14665 -10617.455 0 279.91366 0.00092356204 0.00089209099 + 55490 -6248.7736 -6253.9777 5.2040946 3728.007 636.0798 -10618.064 0 249.40941 0.0010809967 0.0010561163 + 55500 -6249.066 -6253.6465 4.5804734 3729.3025 637.47768 -10620.427 0 219.52198 0.0011498244 0.0011334683 + 55510 -6249.2891 -6253.4472 4.1581369 3732.7057 638.14724 -10624.3 0 199.28125 0.0011260657 0.0011143018 + 55520 -6249.4324 -6253.438 4.0056694 3737.5579 638.04606 -10629.042 0 191.97416 0.0010223613 0.0010093933 + 55530 -6249.5266 -6253.5874 4.0607998 3742.887 637.29156 -10633.766 0 194.61631 0.00086494825 0.00084763849 + 55540 -6249.6182 -6253.8196 4.2014345 3747.5807 636.12373 -10637.524 0 201.35632 0.00069049708 0.00067028867 + 55550 -6249.7368 -6254.0812 4.3443328 3750.5713 634.831 -10639.483 0 208.2048 0.0005407053 0.00052177627 + 55560 -6249.8782 -6254.3748 4.4966656 3751.0559 633.66718 -10639.098 0 215.50545 0.00045305625 0.00043838256 + 55570 -6250.0175 -6254.7313 4.7137443 3748.7369 632.79188 -10636.26 0 225.90908 0.00044894062 0.00043781386 + 55580 -6250.1429 -6255.1458 5.0029071 3743.9963 632.24975 -10631.392 0 239.76738 0.0005241533 0.0005133049 + 55590 -6250.2743 -6255.5466 5.2722839 3737.8748 631.98169 -10625.403 0 252.67743 0.0006477883 0.00063464631 + 55600 -6250.4513 -6255.827 5.375756 3731.8101 631.85411 -10619.491 0 257.63639 0.00077160608 0.00075638323 + 55610 -6250.699 -6255.9079 5.2089265 3727.2233 631.70083 -10614.832 0 249.64099 0.00084622841 0.00083126493 + 55620 -6251.0049 -6255.7792 4.7742909 3725.1152 631.376 -10612.27 0 228.81081 0.00083751587 0.00082505846 + 55630 -6251.3237 -6255.4993 4.175525 3725.815 630.80923 -10612.124 0 200.11459 0.00073722862 0.00072770509 + 55640 -6251.606 -6255.1658 3.5597335 3728.9424 630.0449 -10614.153 0 170.6024 0.0005651234 0.00055695011 + 55650 -6251.8245 -6254.8752 3.0507137 3733.5654 629.24911 -10617.69 0 146.20732 0.0003630794 0.00035381681 + 55660 -6251.9829 -6254.6895 2.706635 3738.477 628.67755 -10621.844 0 129.71714 0.00018403668 0.00017210839 + 55670 -6252.1051 -6254.6233 2.518107 3742.5 628.60803 -10625.731 0 120.68182 7.9036965e-05 6.4959764e-05 + 55680 -6252.2154 -6254.6592 2.4438075 3744.7484 629.25174 -10628.659 0 117.12097 8.5052218e-05 7.1213198e-05 + 55690 -6252.3204 -6254.7775 2.4570752 3744.8135 630.66847 -10630.259 0 117.75683 0.00021537499 0.00020428409 + 55700 -6252.4065 -6254.9723 2.5657696 3742.8604 632.71605 -10630.549 0 122.96607 0.00045393281 0.00044619832 + 55710 -6252.4513 -6255.2415 2.790164 3739.615 635.05693 -10629.913 0 133.72032 0.00075526057 0.00074895128 + 55720 -6252.4407 -6255.5634 3.1226284 3736.2094 637.22618 -10628.999 0 149.65387 0.0010520185 0.0010439681 + 55730 -6252.3785 -6255.8855 3.5070065 3733.8828 638.74446 -10628.513 0 168.07543 0.0012703849 0.0012584208 + 55740 -6252.2825 -6256.1367 3.8541372 3733.6024 639.24553 -10628.985 0 184.71188 0.0013503623 0.0013348444 + 55750 -6252.1721 -6256.2538 4.0816429 3735.7245 638.58175 -10630.56 0 195.61523 0.0012648726 0.0012485469 + 55760 -6252.0544 -6256.209 4.1545908 3739.821 636.87369 -10632.904 0 199.1113 0.0010306019 0.0010168399 + 55770 -6251.9175 -6256.0225 4.1050588 3744.7507 634.48627 -10635.26 0 196.73745 0.00070571287 0.00069612253 + 55780 -6251.736 -6255.7511 4.0150605 3748.9714 631.93771 -10636.66 0 192.42423 0.00037409794 0.0003670214 + 55790 -6251.4889 -6255.4535 3.9645222 3751.0037 629.76982 -10636.227 0 190.00215 0.00012098794 0.0001121943 + 55800 -6251.1793 -6255.1544 3.9751305 3749.8943 628.41522 -10633.464 0 190.51056 8.2100542e-06 -6.2191818e-06 + 55810 -6250.8397 -6254.8374 3.9977243 3745.5176 628.09203 -10628.447 0 191.59338 5.7492072e-05 3.7022104e-05 + 55820 -6250.515 -6254.4802 3.9652901 3738.6225 628.74931 -10621.852 0 190.03895 0.00024675362 0.00022418346 + 55830 -6250.2291 -6254.1034 3.8742527 3730.6367 630.08132 -10614.821 0 185.67593 0.00051898643 0.00049992011 + 55840 -6249.9649 -6253.7853 3.8204334 3723.3242 631.61661 -10608.726 0 183.0966 0.00079905105 0.00078637163 + 55850 -6249.6738 -6253.622 3.9481694 3718.3993 632.86364 -10604.885 0 189.21843 0.0010127268 0.0010040049 + 55860 -6249.3134 -6253.6581 4.3447562 3717.1599 633.46817 -10604.286 0 208.2251 0.0011040983 0.0010930585 + 55870 -6248.8846 -6253.844 4.9593601 3720.1713 633.32767 -10607.343 0 237.68036 0.0010492349 0.0010304578 + 55880 -6248.4399 -6254.0527 5.6127705 3727.0526 632.62125 -10613.727 0 268.99546 0.00086434123 0.00083778674 + 55890 -6248.0497 -6254.1547 6.1050727 3736.4441 631.74485 -10622.344 0 292.58934 0.00060561772 0.00057725352 + 55900 -6247.7484 -6254.1018 6.353428 3746.2385 631.1773 -10631.518 0 304.49192 0.0003579093 0.00033529988 + 55910 -6247.5057 -6253.9566 6.4509093 3754.0922 631.32704 -10639.376 0 309.16377 0.00021172958 0.00019759924 + 55920 -6247.2531 -6253.8349 6.5818076 3758.1054 632.40868 -10644.349 0 315.43715 0.00023354894 0.00022280808 + 55930 -6246.9497 -6253.7986 6.848927 3757.4342 634.37617 -10645.609 0 328.23901 0.00043979809 0.00042337885 + 55940 -6246.6273 -6253.7932 7.1658302 3752.5636 636.91598 -10643.273 0 343.42679 0.00078684868 0.00075976982 + 55950 -6246.3694 -6253.7006 7.3311482 3745.0905 639.49801 -10638.289 0 351.34976 0.0011840793 0.0011505679 + 55960 -6246.2347 -6253.467 7.2322892 3737.1252 641.48646 -10632.079 0 346.61188 0.0015254939 0.0014959209 + 55970 -6246.1989 -6253.1804 6.9815795 3730.6176 642.30361 -10626.102 0 334.59646 0.0017243552 0.0017063178 + 55980 -6246.1719 -6253.0139 6.8420336 3726.8992 641.606 -10621.519 0 327.90864 0.0017348472 0.0017264243 + 55990 -6246.0745 -6253.0802 7.0056975 3726.5224 639.40507 -10619.008 0 335.75233 0.0015557464 0.0015469002 + 56000 -6245.9051 -6253.3267 7.4216049 3729.2896 636.07694 -10618.693 0 355.68495 0.0012225835 0.0012034013 + 56010 -6245.7426 -6253.5615 7.8188721 3734.3388 632.25469 -10620.155 0 374.72422 0.00079727509 0.00076614111 + 56020 -6245.6832 -6253.5931 7.9099427 3740.2642 628.6497 -10622.507 0 379.08884 0.00035882941 0.00032380046 + 56030 -6245.7587 -6253.3745 7.6157512 3745.3449 625.87498 -10624.594 0 364.98953 -7.3232988e-06 -3.5183071e-05 + 56040 -6245.9096 -6253.0383 7.1287058 3747.9425 624.33202 -10625.313 0 341.64758 -0.00022486622 -0.00024072709 + 56050 -6246.0354 -6252.7917 6.7562665 3747.0095 624.17976 -10623.981 0 323.7982 -0.00024589339 -0.00025512684 + 56060 -6246.0805 -6252.7533 6.6727666 3742.5109 625.35924 -10620.623 0 319.79641 -6.6998643e-05 -8.0361846e-05 + 56070 -6246.0787 -6252.8675 6.7887958 3735.5337 627.63184 -10616.033 0 325.35719 0.0002667639 0.0002426326 + 56080 -6246.1189 -6252.9724 6.8534794 3727.9734 630.60891 -10611.555 0 328.45719 0.00067475459 0.00064306913 + 56090 -6246.2608 -6252.9623 6.7015163 3721.9178 633.78715 -10608.667 0 321.17426 0.0010659964 0.0010364688 + 56100 -6246.4795 -6252.8941 6.414643 3719.0237 636.61929 -10608.537 0 307.42569 0.0013642123 0.0013437821 + 56110 -6246.6931 -6252.9362 6.2431677 3720.1449 638.6268 -10611.708 0 299.20763 0.0015213934 0.0015078847 + 56120 -6246.8447 -6253.212 6.3673275 3725.2523 639.52079 -10617.985 0 305.15806 0.001519345 0.0015038708 + 56130 -6246.9592 -6253.6834 6.7242096 3733.515 639.2792 -10626.478 0 322.26186 0.0013674403 0.0013429975 + 56140 -6247.1248 -6254.1768 7.052048 3743.4179 638.14449 -10635.739 0 337.97371 0.001102803 0.0010710041 + 56150 -6247.416 -6254.5211 7.1051124 3752.9422 636.54145 -10644.005 0 340.51685 0.00078992272 0.00075974534 + 56160 -6247.8276 -6254.6718 6.8442054 3759.9198 634.94672 -10649.538 0 328.01272 0.00051095411 0.00049075404 + 56170 -6248.2797 -6254.7144 6.4346691 3762.5866 633.75692 -10651.058 0 308.38545 0.0003428326 0.00033304353 + 56180 -6248.6882 -6254.757 6.0688592 3760.1671 633.19347 -10648.118 0 290.85378 0.00032925848 0.00032233164 + 56190 -6249.0294 -6254.8221 5.7927278 3753.2018 633.2614 -10641.285 0 277.62002 0.00046284293 0.0004500276 + 56200 -6249.3416 -6254.8349 5.4933043 3743.4214 633.76236 -10632.019 0 263.26996 0.00068795465 0.00066650521 + 56210 -6249.6724 -6254.7096 5.0371375 3733.2007 634.356 -10622.266 0 241.40789 0.00092247474 0.00089721773 + 56220 -6250.0273 -6254.4439 4.416572 3724.8404 634.6589 -10613.943 0 211.66691 0.0010867233 0.0010654349 + 56230 -6250.3646 -6254.1415 3.7768468 3719.9737 634.3596 -10608.475 0 181.00769 0.001126615 0.001113739 + 56240 -6250.6307 -6253.9499 3.3192207 3719.2724 633.31877 -10606.541 0 159.07568 0.0010245529 0.0010182537 + 56250 -6250.7992 -6253.9709 3.1717066 3722.4495 631.62426 -10608.045 0 152.00598 0.00079918554 0.00079332256 + 56260 -6250.8866 -6254.2067 3.3201366 3728.4508 629.5846 -10612.242 0 159.11958 0.00049852673 0.0004874366 + 56270 -6250.9386 -6254.5722 3.633578 3735.7282 627.66177 -10617.962 0 174.14145 0.00018990276 0.0001723428 + 56280 -6251.0003 -6254.956 3.9557362 3742.5495 626.35971 -10623.865 0 189.58108 -5.2301167e-05 -7.2705245e-05 + 56290 -6251.088 -6255.2844 4.1964045 3747.3411 626.09626 -10628.722 0 201.11525 -0.0001614253 -0.00017926981 + 56300 -6251.1813 -6255.5426 4.3613101 3749.0446 627.09031 -10631.678 0 209.01845 -9.5121101e-05 -0.0001073494 + 56310 -6251.2415 -6255.7485 4.5069489 3747.4145 629.29098 -10632.454 0 215.99828 0.00014982187 0.00014188688 + 56320 -6251.241 -6255.9064 4.6654154 3743.1379 632.36579 -10631.41 0 223.59288 0.00053032502 0.0005223774 + 56330 -6251.1819 -6255.9858 4.8038214 3737.6863 635.75407 -10629.426 0 230.22608 0.00096290419 0.00095112375 + 56340 -6251.0909 -6255.9393 4.848435 3732.8986 638.78129 -10627.619 0 232.36421 0.0013437031 0.0013275314 + 56350 -6250.9956 -6255.744 4.7484297 3730.4154 640.81467 -10626.974 0 227.5714 0.0015775374 0.001559812 + 56360 -6250.9022 -6255.4279 4.5257377 3731.1594 641.42238 -10628.01 0 216.89874 0.0016059708 0.0015905911 + 56370 -6250.7885 -6255.0625 4.2740637 3735.0444 640.48801 -10630.595 0 204.83712 0.0014241497 0.0014131512 + 56380 -6250.6145 -6254.7242 4.1097429 3741.0079 638.24174 -10633.974 0 196.96194 0.0010808056 0.001072946 + 56390 -6250.3425 -6254.4509 4.1083954 3747.3324 635.19805 -10636.981 0 196.89736 0.00066280887 0.00065461469 + 56400 -6249.9529 -6254.223 4.2700919 3752.1226 632.02127 -10638.367 0 204.64676 0.00027112606 0.00025957278 + 56410 -6249.4491 -6253.987 4.5378763 3753.7762 629.35965 -10637.123 0 217.48049 -3.6666583e-06 -1.893037e-05 + 56420 -6248.8532 -6253.7081 4.8548949 3751.3544 627.69012 -10632.753 0 232.67381 -0.00010105931 -0.00011771985 + 56430 -6248.1969 -6253.4107 5.2138111 3744.8401 627.2057 -10625.457 0 249.87508 -4.03499e-06 -1.9336375e-05 + 56440 -6247.5127 -6253.171 5.6583898 3735.2719 627.77058 -10616.214 0 271.18179 0.00025471057 0.00024139535 + 56450 -6246.8311 -6253.0654 6.2343409 3724.6537 628.96719 -10606.686 0 298.7846 0.00059757132 0.00058408959 + 56460 -6246.1877 -6253.1162 6.9285072 3715.5253 630.24239 -10598.884 0 332.05294 0.00092176905 0.00090510952 + 56470 -6245.6259 -6253.2745 7.6485928 3710.2559 631.10952 -10594.64 0 366.56348 0.0011309417 0.0011100364 + 56480 -6245.1869 -6253.4492 8.262251 3710.3152 631.3212 -10595.086 0 395.97343 0.0011671168 0.001144095 + 56490 -6244.8893 -6253.5606 8.6712448 3715.8055 630.94007 -10600.306 0 415.5747 0.0010301663 0.0010088499 + 56500 -6244.7141 -6253.5861 8.8719991 3725.4181 630.28956 -10609.294 0 425.19598 0.0007771359 0.00075957808 + 56510 -6244.614 -6253.5609 8.9469855 3736.8298 629.82331 -10620.214 0 428.78975 0.00050147795 0.00048533268 + 56520 -6244.5505 -6253.5243 8.9738623 3747.4078 629.97544 -10630.908 0 430.07783 0.00030027513 0.00028005422 + 56530 -6244.529 -6253.4637 8.9347085 3754.9492 631.0355 -10639.448 0 428.20136 0.00024331859 0.00021528541 + 56540 -6244.5893 -6253.3277 8.7384875 3758.1807 633.06092 -10644.569 0 418.79735 0.00035606567 0.00032210277 + 56550 -6244.7564 -6253.1012 8.3448016 3756.9079 635.83377 -10645.843 0 399.92971 0.00061861987 0.00058485358 + 56560 -6245.0078 -6252.8499 7.8420795 3751.9078 638.88104 -10643.639 0 375.83645 0.00097427591 0.00094599694 + 56570 -6245.2904 -6252.681 7.390615 3744.6828 641.57223 -10638.936 0 354.19974 0.001342101 0.0013202144 + 56580 -6245.5613 -6252.6676 7.1062711 3737.1094 643.2763 -10633.053 0 340.57238 0.0016334768 0.0016150476 + 56590 -6245.8095 -6252.8106 7.0010457 3730.9975 643.53071 -10627.339 0 335.52939 0.0017726567 0.0017537554 + 56600 -6246.0494 -6253.0513 7.0018374 3727.6487 642.16841 -10622.868 0 335.56734 0.0017165814 0.0016947748 + 56610 -6246.3051 -6253.3077 7.0026185 3727.5445 639.36287 -10620.215 0 335.60477 0.0014669588 0.0014423945 + 56620 -6246.5942 -6253.5137 6.9195095 3730.2554 635.57869 -10619.348 0 331.62172 0.0010704792 0.0010454873 + 56630 -6246.9161 -6253.6513 6.7351809 3734.5902 631.45083 -10619.692 0 322.78766 0.00060739439 0.00058479169 + 56640 -6247.2507 -6253.7576 6.5068263 3738.9533 627.64046 -10620.351 0 311.84363 0.0001717911 0.00015285429 + 56650 -6247.5731 -6253.8935 6.3203243 3741.8195 624.71354 -10620.426 0 302.90541 -0.00015109778 -0.00016735516 + 56660 -6247.8728 -6254.0933 6.2204973 3742.1818 623.0612 -10619.336 0 298.12114 -0.00030428527 -0.00031980872 + 56670 -6248.1594 -6254.3372 6.1777776 3739.8273 622.85515 -10617.02 0 296.07376 -0.00027006113 -0.00028568308 + 56680 -6248.449 -6254.5686 6.1196006 3735.361 624.02878 -10613.958 0 293.2856 -7.0763101e-05 -8.545267e-05 + 56690 -6248.744 -6254.7366 5.9925922 3730.005 626.28873 -10611.03 0 287.19864 0.00023930998 0.00022715477 + 56700 -6249.0274 -6254.8249 5.7974601 3725.2659 629.17054 -10609.261 0 277.84682 0.00058767499 0.00057823593 + 56710 -6249.2748 -6254.8476 5.5728171 3722.5621 632.13883 -10609.549 0 267.08067 0.0008997882 0.00089106983 + 56720 -6249.4729 -6254.8253 5.3524872 3722.8822 634.70923 -10612.417 0 256.52122 0.001114621 0.0011036397 + 56730 -6249.6289 -6254.766 5.1371057 3726.5279 636.55375 -10617.848 0 246.19893 0.0011972321 0.0011822204 + 56740 -6249.7646 -6254.6678 4.9032463 3732.9962 637.55578 -10625.22 0 234.99107 0.0011461671 0.0011280744 + 56750 -6249.8984 -6254.5414 4.6429877 3741.0399 637.80003 -10633.381 0 222.51802 0.00099362157 0.00097561969 + 56760 -6250.0299 -6254.43 4.4001321 3748.9218 637.50752 -10640.859 0 210.87902 0.00079682945 0.00078194733 + 56770 -6250.1379 -6254.4015 4.2636428 3754.8316 636.9447 -10646.178 0 204.33769 0.00062129082 0.00060991408 + 56780 -6250.1971 -6254.5075 4.3103661 3757.365 636.34019 -10648.213 0 206.57693 0.00052031394 0.00050968749 + 56790 -6250.1993 -6254.7395 4.540267 3755.9133 635.82952 -10646.482 0 217.59507 0.00051839044 0.00050466753 + 56800 -6250.1598 -6255.0237 4.863887 3750.8223 635.43128 -10641.277 0 233.10476 0.00060499164 0.00058606732 + 56810 -6250.1054 -6255.2608 5.1554465 3743.2674 635.0519 -10633.58 0 247.07793 0.00074039909 0.00071714611 + 56820 -6250.0544 -6255.3777 5.3233118 3734.9122 634.51969 -10624.81 0 255.12297 0.0008698299 0.0008450649 + 56830 -6250.0075 -6255.3496 5.3420852 3727.4808 633.64776 -10616.478 0 256.0227 0.00094004585 0.00091658415 + 56840 -6249.9526 -6255.1913 5.2387006 3722.3634 632.3122 -10609.867 0 251.06792 0.00091390028 0.00089331829 + 56850 -6249.8738 -6254.9397 5.0658908 3720.334 630.51955 -10605.793 0 242.78591 0.00078024741 0.00076271731 + 56860 -6249.755 -6254.6448 4.8897819 3721.4243 628.43759 -10604.507 0 234.34579 0.00055760776 0.00054216985 + 56870 -6249.5798 -6254.3659 4.7860741 3724.9767 626.37752 -10605.72 0 229.37553 0.00029057684 0.00027542028 + 56880 -6249.3326 -6254.1579 4.8253177 3729.8616 624.73329 -10608.753 0 231.2563 3.9482663e-05 2.2526149e-05 + 56890 -6249.002 -6254.0494 5.047432 3734.7892 623.89616 -10612.735 0 241.90126 -0.00013378169 -0.00015373317 + 56900 -6248.5821 -6254.0327 5.4506304 3738.618 624.16695 -10616.818 0 261.22479 -0.00017930221 -0.00020149696 + 56910 -6248.0669 -6254.0772 6.0103016 3740.5873 625.68647 -10620.351 0 288.04737 -6.8871883e-05 -9.0893824e-05 + 56920 -6247.4468 -6254.151 6.70412 3740.4612 628.39703 -10623.009 0 321.29905 0.00019810655 0.00017843225 + 56930 -6246.7184 -6254.2226 7.5042116 3738.5969 632.03704 -10624.857 0 359.64392 0.00059103296 0.00057357304 + 56940 -6245.9073 -6254.2429 8.3356518 3735.9138 636.1632 -10626.32 0 399.4912 0.0010476709 0.0010297851 + 56950 -6245.0837 -6254.1365 9.0528069 3733.6958 640.19775 -10628.03 0 433.8613 0.0014812684 0.0014600118 + 56960 -6244.3465 -6253.8307 9.4842211 3733.2042 643.50731 -10630.542 0 454.53709 0.0017989781 0.0017739205 + 56970 -6243.7774 -6253.3101 9.5327347 3735.1997 645.51898 -10634.029 0 456.86214 0.0019285064 0.0019025223 + 56980 -6243.3987 -6252.656 9.2572876 3739.5736 645.85843 -10638.088 0 443.66116 0.0018423558 0.0018192941 + 56990 -6243.1673 -6252.0323 8.8650344 3745.2748 644.46711 -10641.774 0 424.86219 0.001567935 0.0015488293 + 57000 -6243.0108 -6251.6102 8.5994181 3750.598 641.64568 -10643.854 0 412.13237 0.0011785424 0.0011597767 + 57010 -6242.8831 -6251.4711 8.588032 3753.7263 637.99056 -10643.188 0 411.58668 0.00076979011 0.00074552367 + 57020 -6242.7967 -6251.561 8.7642969 3753.3064 634.23043 -10639.098 0 420.03428 0.00043196048 0.00039930628 + 57030 -6242.8043 -6251.7401 8.9358043 3748.8394 631.01509 -10631.595 0 428.25388 0.00022791532 0.00019026027 + 57040 -6242.9453 -6251.8949 8.9496467 3740.8031 628.73778 -10621.436 0 428.91729 0.00018103415 0.00014608485 + 57050 -6243.2025 -6252.0199 8.8173836 3730.5417 627.46126 -10610.023 0 422.5785 0.00027330491 0.00024710981 + 57060 -6243.5105 -6252.2098 8.699268 3720 626.96845 -10599.178 0 416.91774 0.00045218697 0.00043398061 + 57070 -6243.8055 -6252.5702 8.7646972 3711.3515 626.90205 -10590.824 0 420.05347 0.00064463259 0.00062678092 + 57080 -6244.0781 -6253.1154 9.0372766 3706.5454 626.92836 -10586.589 0 433.117 0.00077629591 0.00074975229 + 57090 -6244.3857 -6253.7277 9.342038 3706.8185 626.8654 -10587.412 0 447.72288 0.00079319522 0.00075469119 + 57100 -6244.8081 -6254.2132 9.40512 3712.2819 626.73924 -10593.234 0 450.74612 0.00068127799 0.00063675525 + 57110 -6245.3753 -6254.4231 9.0477982 3721.7558 626.7612 -10602.94 0 433.62126 0.00047658041 0.00043759365 + 57120 -6246.0235 -6254.3533 8.3298 3733.0033 627.24233 -10614.599 0 399.21075 0.00025805555 0.00023320867 + 57130 -6246.6262 -6254.1405 7.5142384 3743.3692 628.47612 -10625.986 0 360.12447 0.00012079781 0.00010889122 + 57140 -6247.08 -6253.9484 6.8684411 3750.6117 630.62114 -10635.181 0 329.17424 0.00013840222 0.00012933269 + 57150 -6247.3727 -6253.8406 6.4678078 3753.5752 633.60784 -10641.024 0 309.97364 0.00033175789 0.00031489729 + 57160 -6247.5794 -6253.7589 6.1794801 3752.4078 637.09222 -10643.259 0 296.15536 0.00066005888 0.00063307071 + 57170 -6247.7905 -6253.6308 5.8402311 3748.2768 640.48456 -10642.392 0 279.89664 0.001037877 0.0010081975 + 57180 -6248.0376 -6253.4908 5.4531531 3742.8018 643.07245 -10639.365 0 261.34569 0.0013672988 0.0013451284 + 57190 -6248.277 -6253.485 5.2079679 3737.5245 644.217 -10635.227 0 249.59504 0.0015675859 0.0015569754 + 57200 -6248.4401 -6253.7475 5.3074326 3733.5915 643.55351 -10630.893 0 254.36195 0.0015915363 0.0015873648 + 57210 -6248.4988 -6254.2631 5.7643577 3731.6277 641.11453 -10627.005 0 276.26036 0.0014297104 0.0014225329 + 57220 -6248.4939 -6254.8427 6.3487766 3731.6908 637.32605 -10623.86 0 304.269 0.0011090955 0.0010931159 + 57230 -6248.5039 -6255.2356 6.7316778 3733.2617 632.88242 -10621.38 0 322.61977 0.00068917963 0.0006665157 + 57240 -6248.5801 -6255.2924 6.7122757 3735.3327 628.55494 -10619.18 0 321.68992 0.00025274961 0.00023070997 + 57250 -6248.7063 -6255.0535 6.3472167 3736.6711 625.01044 -10616.735 0 304.19424 -0.00011161208 -0.00012745155 + 57260 -6248.8176 -6254.6998 5.8822776 3736.2392 622.6972 -10613.636 0 281.91175 -0.00033255023 -0.00034322498 + 57270 -6248.8599 -6254.4154 5.5554432 3733.6101 621.81006 -10609.836 0 266.24801 -0.0003757013 -0.00038760608 + 57280 -6248.8343 -6254.2731 5.4388325 3729.1755 622.30913 -10605.758 0 260.65937 -0.00025136138 -0.00027035821 + 57290 -6248.7902 -6254.2239 5.433677 3724.0315 623.96216 -10602.218 0 260.41229 -7.1474285e-06 -3.3328616e-05 + 57300 -6248.782 -6254.178 5.3959243 3719.6042 626.39835 -10600.181 0 258.60297 0.00029006126 0.00026264372 + 57310 -6248.8233 -6254.0982 5.2748991 3717.1966 629.17534 -10600.47 0 252.80276 0.00057452216 0.00055318796 + 57320 -6248.8759 -6254.034 5.158113 3717.6424 631.85856 -10603.535 0 247.20572 0.00079663276 0.00078428421 + 57330 -6248.8776 -6254.0776 5.2000234 3721.1539 634.10018 -10609.332 0 249.2143 0.00092904088 0.0009216047 + 57340 -6248.7874 -6254.2812 5.4938736 3727.3396 635.69806 -10617.319 0 263.29725 0.00096531493 0.00095431615 + 57350 -6248.619 -6254.5969 5.9779142 3735.308 636.61909 -10626.524 0 286.49519 0.0009156484 0.0008943377 + 57360 -6248.4383 -6254.8877 6.4493949 3743.7865 636.98008 -10635.654 0 309.09119 0.00080389935 0.00077268567 + 57370 -6248.3194 -6255.014 6.6946465 3751.2479 636.99135 -10643.253 0 320.84502 0.00066679008 0.00063355068 + 57380 -6248.2857 -6254.9326 6.6469018 3756.1132 636.87993 -10647.926 0 318.55683 0.0005511676 0.00052546586 + 57390 -6248.2897 -6254.7227 6.4330403 3757.0939 636.81656 -10648.633 0 308.30739 0.00050359513 0.00048917546 + 57400 -6248.2532 -6254.5057 6.2524532 3753.6247 636.86625 -10644.997 0 299.65264 0.00055206482 0.00054418254 + 57410 -6248.135 -6254.3305 6.1954621 3746.1871 636.96872 -10637.486 0 296.92131 0.00068883069 0.00067888076 + 57420 -6247.9608 -6254.1391 6.1783619 3736.3017 636.94619 -10627.387 0 296.10177 0.00086686297 0.00084996138 + 57430 -6247.7904 -6253.8484 6.0580072 3726.1247 636.54012 -10616.513 0 290.3337 0.001015173 0.00099375316 + 57440 -6247.6566 -6253.4665 5.8098466 3717.8178 635.48141 -10606.766 0 278.44045 0.0010657578 0.0010463701 + 57450 -6247.5315 -6253.1289 5.597392 3712.9695 633.58856 -10599.687 0 268.25843 0.00097791851 0.0009647868 + 57460 -6247.3459 -6253.0191 5.6731753 3712.268 630.86683 -10596.154 0 271.89039 0.00074963151 0.00074093874 + 57470 -6247.0358 -6253.2366 6.2008453 3715.4561 627.57084 -10596.263 0 297.1793 0.00041559886 0.00040543101 + 57480 -6246.5795 -6253.7172 7.1376768 3721.4736 624.20118 -10599.392 0 342.07752 3.8270864e-05 2.2163722e-05 + 57490 -6246.0048 -6254.2612 8.2563292 3728.6907 621.42438 -10604.376 0 395.68962 -0.00030270844 -0.00032352645 + 57500 -6245.3639 -6254.6484 9.2845724 3735.2074 619.92586 -10609.782 0 444.96881 -0.00052240996 -0.00054200214 + 57510 -6244.6952 -6254.7536 10.058478 3739.2594 620.22865 -10614.242 0 482.05869 -0.00054733404 -0.00056091635 + 57520 -6244.0079 -6254.5729 10.564988 3739.729 622.53066 -10616.833 0 506.33348 -0.00033813202 -0.00034765217 + 57530 -6243.3116 -6254.1547 10.84309 3736.6079 626.61666 -10617.379 0 519.66172 8.854169e-05 7.4903437e-05 + 57540 -6242.6583 -6253.5234 10.865069 3731.1395 631.87539 -10616.538 0 520.71507 0.00065290428 0.00062751319 + 57550 -6242.137 -6252.6852 10.548202 3725.4564 637.41876 -10615.56 0 505.52905 0.0012298685 0.001192362 + 57560 -6241.8157 -6251.7037 9.887962 3721.8143 642.27492 -10615.793 0 473.88662 0.0016874061 0.0016451501 + 57570 -6241.6915 -6250.7455 9.0539609 3721.7722 645.60953 -10618.127 0 433.91661 0.0019277634 0.0018903075 + 57580 -6241.6976 -6250.0378 8.3401503 3725.6714 646.91481 -10622.624 0 399.7068 0.0019137007 0.0018865697 + 57590 -6241.7506 -6249.7714 8.0207929 3732.567 646.10949 -10628.448 0 384.4014 0.0016726466 0.0016547603 + 57600 -6241.7967 -6250.0216 8.2248624 3740.5624 643.52486 -10634.109 0 394.18156 0.001281921 0.0012670766 + 57610 -6241.838 -6250.7188 8.8807481 3747.3971 639.79261 -10637.909 0 425.61528 0.00084248067 0.00082328342 + 57620 -6241.9389 -6251.6714 9.732561 3751.0954 635.67443 -10638.441 0 466.43893 0.000449916 0.00042225881 + 57630 -6242.2039 -6252.6383 10.43439 3750.4824 631.87736 -10634.998 0 500.07451 0.00017179116 0.00013749976 + 57640 -6242.722 -6253.4292 10.707206 3745.4365 628.9001 -10627.766 0 513.14937 3.7445809e-05 2.9308293e-06 + 57650 -6243.5072 -6253.9773 10.470144 3736.8635 626.95408 -10617.795 0 501.78803 3.974651e-05 1.1275448e-05 + 57660 -6244.4844 -6254.3276 9.8431837 3726.457 625.9817 -10606.766 0 471.74059 0.00014338345 0.00012289295 + 57670 -6245.5311 -6254.5572 9.0261536 3716.3164 625.75049 -10596.624 0 432.58392 0.00029543747 0.00028037576 + 57680 -6246.5322 -6254.7034 8.1712765 3708.4794 625.96818 -10589.151 0 391.61342 0.0004376225 0.00042416109 + 57690 -6247.4109 -6254.756 7.345076 3704.4705 626.37071 -10585.597 0 352.01726 0.00051987463 0.0005059292 + 57700 -6248.1314 -6254.6994 6.5679572 3704.9882 626.77045 -10586.458 0 314.77336 0.00051244907 0.00049821006 + 57710 -6248.6887 -6254.5537 5.8650309 3709.8011 627.07817 -10591.433 0 281.08519 0.00041310899 0.00039961982 + 57720 -6249.0962 -6254.3814 5.2852331 3717.8391 627.31361 -10599.534 0 253.29803 0.00024778325 0.00023530558 + 57730 -6249.377 -6254.2607 4.8837584 3727.4374 627.6045 -10609.303 0 234.0571 6.4639913e-05 5.2073489e-05 + 57740 -6249.5598 -6254.2453 4.6854881 3736.687 628.16109 -10619.093 0 224.55488 -7.7489542e-05 -9.1807702e-05 + 57750 -6249.6787 -6254.338 4.6592559 3743.8294 629.21351 -10627.381 0 223.29769 -0.00012416414 -0.00014090502 + 57760 -6249.7674 -6254.4967 4.7292741 3747.6174 630.91481 -10633.029 0 226.65335 -4.0546045e-05 -5.838467e-05 + 57770 -6249.8477 -6254.6703 4.8225411 3747.5611 633.23787 -10635.469 0 231.12323 0.00017687643 0.00016061135 + 57780 -6249.9195 -6254.8354 4.9159833 3744.0165 635.91371 -10634.766 0 235.6015 0.00049518936 0.00048240926 + 57790 -6249.9631 -6255.0032 5.0400505 3738.0999 638.45387 -10631.557 0 241.5475 0.00084868108 0.00083860428 + 57800 -6249.9579 -6255.1886 5.2307393 3731.4356 640.26546 -10626.89 0 250.68638 0.0011517878 0.0011409508 + 57810 -6249.9018 -6255.3717 5.4698702 3725.7625 640.8234 -10621.958 0 262.14687 0.0013198028 0.0013043049 + 57820 -6249.8186 -6255.4866 5.6680124 3722.4691 639.8369 -10617.793 0 271.64296 0.001293062 0.001271466 + 57830 -6249.7445 -6255.4551 5.7106345 3722.1803 637.35091 -10614.986 0 273.68565 0.0010576294 0.0010323389 + 57840 -6249.7043 -6255.2415 5.5372921 3724.5469 633.7504 -10613.539 0 265.37811 0.00065458451 0.00063061049 + 57850 -6249.693 -6254.8918 5.1987448 3728.341 629.67071 -10612.904 0 249.15302 0.00017268647 0.0001545147 + 57860 -6249.6771 -6254.5272 4.8500607 3731.8531 625.84681 -10612.227 0 232.44212 -0.00027488252 -0.00028632604 + 57870 -6249.6135 -6254.2886 4.6751285 3733.4682 622.94765 -10610.704 0 224.05839 -0.00058269269 -0.00059085123 + 57880 -6249.4765 -6254.2591 4.7826097 3732.2227 621.4354 -10607.917 0 229.20949 -0.00068351001 -0.00069391273 + 57890 -6249.2751 -6254.417 5.1418646 3728.1415 621.47459 -10604.033 0 246.427 -0.00056671158 -0.00058296016 + 57900 -6249.0448 -6254.6544 5.60958 3722.2326 622.90501 -10599.792 0 268.84255 -0.0002785514 -0.00029960041 + 57910 -6248.8199 -6254.8514 6.0314858 3716.1572 625.28875 -10596.297 0 289.06264 9.5121151e-05 7.4029868e-05 + 57920 -6248.6052 -6254.9442 6.3390048 3711.7181 628.0316 -10594.694 0 303.80068 0.00045640548 0.00043972222 + 57930 -6248.3739 -6254.9358 6.5618798 3710.357 630.55329 -10595.846 0 314.4821 0.00072265614 0.00071074513 + 57940 -6248.095 -6254.847 6.7519831 3712.7964 632.45219 -10600.096 0 323.59291 0.00084520904 0.00083411101 + 57950 -6247.768 -6254.6635 6.8954921 3718.873 633.60191 -10607.138 0 330.47067 0.00081680452 0.00080184718 + 57960 -6247.4311 -6254.3363 6.9051831 3727.5457 634.14253 -10616.024 0 330.93512 0.00066950315 0.0006496151 + 57970 -6247.1318 -6253.8454 6.7136707 3737.0698 634.37512 -10625.29 0 321.75677 0.00046542329 0.00044414146 + 57980 -6246.8831 -6253.2703 6.3871265 3745.3469 634.61048 -10633.228 0 306.10694 0.00028088137 0.00026285752 + 57990 -6246.6474 -6252.7897 6.1422912 3750.4257 635.03945 -10638.255 0 294.37306 0.00018485607 0.00017093589 + 58000 -6246.3641 -6252.5911 6.227034 3751.0375 635.67271 -10639.301 0 298.43441 0.00021668838 0.000202274 + 58010 -6245.9998 -6252.7488 6.7489875 3746.9771 636.35715 -10636.083 0 323.44935 0.00037167041 0.00035027236 + 58020 -6245.5805 -6253.1687 7.5881844 3739.1639 636.84178 -10629.174 0 363.66837 0.00060189721 0.00057107374 + 58030 -6245.1788 -6253.646 8.4672562 3729.3504 636.85753 -10619.854 0 405.79843 0.00083330259 0.00079776272 + 58040 -6244.8618 -6253.9942 9.1323715 3719.597 636.18744 -10609.779 0 437.67448 0.00099183017 0.00096047075 + 58050 -6244.6411 -6254.1481 9.5069854 3711.7327 634.71873 -10600.6 0 455.62809 0.0010267056 0.0010054322 + 58060 -6244.472 -6254.1654 9.6934928 3706.9928 632.47715 -10593.635 0 464.56657 0.00092076446 0.00090703534 + 58070 -6244.3093 -6254.1328 9.8234896 3705.8952 629.64418 -10589.672 0 470.79674 0.00068684147 0.00067105456 + 58080 -6244.1693 -6254.0655 9.8961846 3708.2691 626.55223 -10588.887 0 474.2807 0.0003585511 0.00033172317 + 58090 -6244.1324 -6253.8945 9.762133 3713.3184 623.64901 -10590.862 0 467.85619 -1.5213958e-05 -5.3817513e-05 + 58100 -6244.2799 -6253.5534 9.2735078 3719.7042 621.42621 -10594.684 0 444.43853 -0.00037108666 -0.00041310486 + 58110 -6244.6211 -6253.0759 8.454779 3725.7454 620.32245 -10599.144 0 405.20045 -0.0006353461 -0.00067003055 + 58120 -6245.083 -6252.6063 7.5232786 3729.8218 620.62432 -10603.052 0 360.55772 -0.0007389973 -0.00076141398 + 58130 -6245.5697 -6252.3104 6.7406793 3730.895 622.39117 -10605.597 0 323.05117 -0.00064140877 -0.00065514554 + 58140 -6246.0333 -6252.2717 6.2384413 3728.9113 625.41984 -10606.603 0 298.98111 -0.0003504747 -0.0003633722 + 58150 -6246.4928 -6252.4605 5.9676878 3724.859 629.25646 -10606.576 0 286.00508 7.3070013e-05 5.5619814e-05 + 58160 -6246.9954 -6252.7906 5.795286 3720.4223 633.26129 -10606.474 0 277.74262 0.00053126402 0.00050970185 + 58170 -6247.5624 -6253.2031 5.6406601 3717.3787 636.72814 -10607.31 0 270.33208 0.00091808755 0.0008967526 + 58180 -6248.1696 -6253.6989 5.5293214 3717.0024 639.04162 -10609.743 0 264.99611 0.0011495203 0.0011321393 + 58190 -6248.7685 -6254.3012 5.5327348 3719.7003 639.82862 -10613.83 0 265.1597 0.0011833514 0.0011701916 + 58200 -6249.3206 -6254.9897 5.6690437 3724.9557 639.05111 -10618.997 0 271.69238 0.0010249179 0.0010134428 + 58210 -6249.8124 -6255.6686 5.8562838 3731.5194 637.00721 -10624.195 0 280.66598 0.00072134868 0.00070897399 + 58220 -6250.2473 -6256.1975 5.9502319 3737.7373 634.24042 -10628.175 0 285.1685 0.00034841672 0.00033467951 + 58230 -6250.6287 -6256.4612 5.8325681 3741.9364 631.38628 -10629.784 0 279.52939 -7.2052696e-06 -2.0753872e-05 + 58240 -6250.9474 -6256.4297 5.4823172 3742.8154 629.00541 -10628.25 0 262.7434 -0.00026794728 -0.00027972126 + 58250 -6251.1862 -6256.1657 4.9794948 3739.7829 627.45501 -10623.404 0 238.64533 -0.00038388508 -0.00039413419 + 58260 -6251.3354 -6255.7815 4.4460567 3733.1612 626.83279 -10615.776 0 213.07999 -0.00034474777 -0.00035560611 + 58270 -6251.405 -6255.3825 3.9775235 3724.1703 626.99608 -10606.549 0 190.62524 -0.0001812967 -0.00019509069 + 58280 -6251.4217 -6255.0359 3.6141873 3714.6676 627.63474 -10597.338 0 173.21213 4.4552204e-05 2.716542e-05 + 58290 -6251.4154 -6254.7731 3.3577212 3706.7046 628.36937 -10589.847 0 160.92084 0.00025769046 0.00023827847 + 58300 -6251.4035 -6254.6094 3.2059556 3702.0269 628.85168 -10585.488 0 153.64738 0.00039057073 0.00037188395 + 58310 -6251.3836 -6254.5604 3.1767653 3701.6536 628.85068 -10585.065 0 152.24842 0.00040125208 0.00038535697 + 58320 -6251.3364 -6254.6427 3.3062828 3705.6442 628.31241 -10588.599 0 158.45562 0.00028423468 0.00027099276 + 58330 -6251.2374 -6254.8583 3.6208532 3713.1016 627.38239 -10595.342 0 173.5316 7.1455061e-05 5.8369207e-05 + 58340 -6251.0747 -6255.1719 4.0972261 3722.4001 626.38247 -10603.954 0 196.36207 -0.00017650568 -0.0001927015 + 58350 -6250.8602 -6255.5026 4.6423493 3731.5647 625.73777 -10612.805 0 222.48743 -0.00038616489 -0.00040698752 + 58360 -6250.6258 -6255.7498 5.1239915 3738.7019 625.85937 -10620.311 0 245.57043 -0.00048947797 -0.00051318908 + 58370 -6250.3999 -6255.8452 5.4452659 3742.3934 627.00633 -10625.245 0 260.9677 -0.00044089597 -0.00046362535 + 58380 -6250.186 -6255.7894 5.6033827 3742.0001 629.17151 -10626.961 0 268.54554 -0.0002305642 -0.00024942503 + 58390 -6249.9642 -6255.6371 5.6728588 3737.8269 632.04108 -10625.505 0 271.87522 0.00010886212 9.3467233e-05 + 58400 -6249.7157 -6255.442 5.7262974 3731.0861 635.05363 -10621.582 0 274.4363 0.00050534243 0.000490406 + 58410 -6249.4447 -6255.2151 5.7704218 3723.6072 637.54339 -10616.366 0 276.55099 0.00086305566 0.00084586593 + 58420 -6249.1767 -6254.93 5.7533018 3717.3366 638.91851 -10611.185 0 275.73051 0.0010881876 0.0010687038 + 58430 -6248.9377 -6254.5638 5.6260925 3713.7766 638.81668 -10607.157 0 269.63392 0.0011168183 0.001097619 + 58440 -6248.7338 -6254.1368 5.4030242 3713.5603 637.19345 -10604.891 0 258.94324 0.00093461679 0.00091872765 + 58450 -6248.5457 -6253.723 5.1772876 3716.3056 634.32482 -10604.353 0 248.12467 0.00058110581 0.00056946912 + 58460 -6248.341 -6253.4247 5.0837288 3720.7855 630.73452 -10604.945 0 243.64081 0.00013766602 0.0001280947 + 58470 -6248.0956 -6253.3243 5.2286865 3725.3394 627.0761 -10605.74 0 250.58799 -0.00029536735 -0.00030689092 + 58480 -6247.8111 -6253.4396 5.6284536 3728.3748 624.00081 -10605.815 0 269.74708 -0.00062425515 -0.0006406741 + 58490 -6247.5157 -6253.7137 6.1979869 3728.7983 622.03289 -10604.545 0 297.04231 -0.0007829001 -0.00080369426 + 58500 -6247.2458 -6254.0444 6.7985653 3726.2733 621.46729 -10601.785 0 325.8254 -0.00074559228 -0.00076693048 + 58510 -6247.0222 -6254.3298 7.3076549 3721.2806 622.30831 -10597.919 0 350.22382 -0.00053062111 -0.00054814393 + 58520 -6246.8399 -6254.5004 7.6605579 3715.0074 624.27001 -10593.778 0 367.13692 -0.0001951675 -0.0002072681 + 58530 -6246.6788 -6254.5253 7.8464693 3709.0873 626.84834 -10590.461 0 376.04683 0.00017782461 0.00016872858 + 58540 -6246.5246 -6254.4064 7.8818502 3705.2186 629.45193 -10589.077 0 377.74249 0.00049911943 0.00048811805 + 58550 -6246.3824 -6254.1718 7.7894622 3704.7193 631.55607 -10590.447 0 373.31474 0.00069522213 0.00067806286 + 58560 -6246.2756 -6253.8684 7.5927716 3708.1311 632.83434 -10594.834 0 363.88822 0.00072743317 0.00070330624 + 58570 -6246.2313 -6253.5562 7.3248724 3714.9958 633.22755 -10601.78 0 351.04898 0.00060241847 0.00057469098 + 58580 -6246.2586 -6253.3051 7.0464467 3723.8944 632.92848 -10610.128 0 337.70526 0.00037053588 0.00034472838 + 58590 -6246.3359 -6253.1882 6.8523414 3732.7676 632.29058 -10618.246 0 328.40265 0.00011108133 9.1054845e-05 + 58600 -6246.4189 -6253.2577 6.8388159 3739.4573 631.69752 -10624.413 0 327.75443 -9.2291926e-05 -0.00010729859 + 58610 -6246.4715 -6253.5061 7.0346418 3742.3148 631.44081 -10627.262 0 337.1395 -0.00017825496 -0.00019317097 + 58620 -6246.4949 -6253.8454 7.3505366 3740.6685 631.64025 -10626.154 0 352.27896 -0.00012663694 -0.0001466877 + 58630 -6246.5296 -6254.1378 7.6081861 3734.9767 632.22062 -10621.335 0 364.62697 3.7963187e-05 1.1484448e-05 + 58640 -6246.6232 -6254.2693 7.6460678 3726.6269 632.94353 -10613.84 0 366.44247 0.00025831331 0.00022908965 + 58650 -6246.7915 -6254.2156 7.4241799 3717.4964 633.48467 -10605.197 0 355.80836 0.00046574274 0.00043951491 + 58660 -6247.0059 -6254.0503 7.0443781 3709.4616 633.53555 -10597.047 0 337.60613 0.00060063687 0.00058090948 + 58670 -6247.2171 -6253.8911 6.6740002 3704.0055 632.89826 -10590.795 0 319.85554 0.00062523439 0.00061107326 + 58680 -6247.3898 -6253.8267 6.4368271 3701.9789 631.54366 -10587.349 0 308.48887 0.00052769705 0.0005150186 + 58690 -6247.5226 -6253.8736 6.3509436 3703.501 629.62043 -10586.995 0 304.37285 0.00032083615 0.00030573366 + 58700 -6247.6402 -6253.9863 6.3461293 3707.9737 627.42072 -10589.381 0 304.14212 3.8962107e-05 2.0347246e-05 + 58710 -6247.7696 -6254.1019 6.3322616 3714.2064 625.31857 -10593.627 0 303.47751 -0.00026657377 -0.00028677061 + 58720 -6247.9204 -6254.1826 6.2622452 3720.6589 623.69685 -10598.538 0 300.12193 -0.00053482567 -0.00055361574 + 58730 -6248.0798 -6254.2291 6.1492873 3725.7834 622.87617 -10602.889 0 294.70835 -0.00070674841 -0.00072244911 + 58740 -6248.2262 -6254.2631 6.0369523 3728.4008 623.05575 -10605.72 0 289.32463 -0.00073913423 -0.00075232715 + 58750 -6248.3467 -6254.3007 5.9540734 3728.0109 624.27203 -10606.584 0 285.35261 -0.00061697812 -0.00062949768 + 58760 -6248.4452 -6254.3415 5.8962532 3724.9292 626.37734 -10605.648 0 282.58154 -0.00035977223 -0.00037285136 + 58770 -6248.5338 -6254.3838 5.8500162 3720.1942 629.04223 -10603.62 0 280.3656 -1.9047378e-05 -3.2491877e-05 + 58780 -6248.617 -6254.4459 5.8289339 3715.273 631.79266 -10601.512 0 279.35522 0.00033230572 0.00031916507 + 58790 -6248.6872 -6254.5594 5.8721891 3711.6657 634.09337 -10600.318 0 281.42825 0.00061583858 0.00060267949 + 58800 -6248.7365 -6254.733 5.9964249 3710.5157 635.47173 -10600.72 0 287.38233 0.000764981 0.00075038653 + 58810 -6248.7709 -6254.9215 6.1506394 3712.3028 635.64943 -10602.874 0 294.77315 0.00074144742 0.00072443158 + 58820 -6248.8085 -6255.0389 6.2304586 3716.6717 634.63273 -10606.343 0 298.59854 0.00054765712 0.00052908876 + 58830 -6248.8623 -6255.0118 6.1495041 3722.4587 632.7207 -10610.191 0 294.71874 0.00023052333 0.00021269799 + 58840 -6248.9255 -6254.8296 5.9040976 3727.9623 630.42146 -10613.213 0 282.95748 -0.00012805165 -0.00014339522 + 58850 -6248.9757 -6254.5488 5.5730575 3731.4204 628.30403 -10614.273 0 267.09219 -0.00043394519 -0.00044711993 + 58860 -6248.9943 -6254.256 5.2617331 3731.5465 626.83812 -10612.641 0 252.17177 -0.00060933671 -0.00062227562 + 58870 -6248.9793 -6254.0273 5.0480334 3727.932 626.27414 -10608.234 0 241.93008 -0.00061562631 -0.00063017057 + 58880 -6248.9427 -6253.9102 4.9675481 3721.1855 626.59481 -10601.69 0 238.07278 -0.00046273399 -0.00047934093 + 58890 -6248.8978 -6253.9251 5.0273514 3712.784 627.5416 -10594.251 0 240.93889 -0.00020369827 -0.00022151579 + 58900 -6248.8504 -6254.0708 5.2203367 3704.6991 628.69914 -10587.469 0 250.18783 8.153737e-05 6.3574955e-05 + 58910 -6248.799 -6254.3223 5.5232599 3698.9002 629.61371 -10582.836 0 264.7056 0.00030777745 0.00028991293 + 58920 -6248.743 -6254.6241 5.8811031 3696.8568 629.92119 -10581.402 0 281.85546 0.00040668258 0.00038834906 + 58930 -6248.6908 -6254.8909 6.2000075 3699.1551 629.45669 -10583.503 0 297.13915 0.00034504914 0.00032597706 + 58940 -6248.6575 -6255.0329 6.3753962 3705.3181 628.31405 -10588.665 0 305.54476 0.00013535577 0.00011656303 + 58950 -6248.6499 -6255.0027 6.35281 3713.8879 626.83032 -10595.721 0 304.4623 -0.0001650072 -0.00018176368 + 58960 -6248.6548 -6254.8291 6.1742803 3722.7795 625.49251 -10603.101 0 295.90616 -0.00046796172 -0.00048213549 + 58970 -6248.6453 -6254.6021 5.9567587 3729.8399 624.79195 -10609.234 0 285.4813 -0.00068059945 -0.00069415127 + 58980 -6248.6052 -6254.414 5.8088123 3733.4484 625.07088 -10612.933 0 278.39088 -0.00073488367 -0.00075107336 + 58990 -6248.5446 -6254.3057 5.7611302 3732.9447 626.40901 -10613.659 0 276.10568 -0.00060951576 -0.00062999179 + 59000 -6248.4905 -6254.2662 5.7756612 3728.7401 628.58617 -10611.593 0 276.80209 -0.00033510291 -0.00035822627 + 59010 -6248.4604 -6254.2711 5.8106849 3722.1133 631.13516 -10607.519 0 278.48062 1.7674793e-05 -4.5048554e-06 + 59020 -6248.4458 -6254.3086 5.8627364 3714.8155 633.46924 -10602.593 0 280.97522 0.00035971351 0.00034105225 + 59030 -6248.423 -6254.3696 5.9465869 3708.6213 635.04194 -10598.033 0 284.99381 0.00060654595 0.00059119429 + 59040 -6248.3745 -6254.4239 6.0493721 3704.9171 635.48766 -10594.829 0 289.91986 0.00069768237 0.0006834114 + 59050 -6248.303 -6254.4192 6.1162362 3704.3914 634.70427 -10593.515 0 293.12436 0.00060991585 0.00059471493 + 59060 -6248.2254 -6254.3127 6.0872277 3706.8832 632.8631 -10594.059 0 291.73411 0.00036279393 0.00034648936 + 59070 -6248.1552 -6254.1122 5.9569925 3711.4361 630.3535 -10595.902 0 285.4925 1.4469802e-05 -1.6285395e-06 + 59080 -6248.0873 -6253.8928 5.8054468 3716.5623 627.68394 -10598.139 0 278.22958 -0.00035238599 -0.00036740239 + 59090 -6248.0012 -6253.7642 5.7630365 3720.6608 625.36758 -10599.793 0 276.19705 -0.00065187862 -0.00066695536 + 59100 -6247.8802 -6253.8036 5.9233978 3722.4739 623.81813 -10600.096 0 283.88246 -0.00081751114 -0.00083524967 + 59110 -6247.732 -6253.9978 6.2657931 3721.4369 623.27315 -10598.708 0 300.29196 -0.00081899162 -0.00084084805 + 59120 -6247.5889 -6254.2443 6.6554748 3717.8073 623.75412 -10595.806 0 318.9677 -0.00066778369 -0.00069175691 + 59130 -6247.4828 -6254.4179 6.9351602 3712.5464 625.06823 -10592.033 0 332.37179 -0.00041030609 -0.0004315935 + 59140 -6247.4146 -6254.454 7.0394041 3707.0281 626.85427 -10588.336 0 337.36774 -0.00011284651 -0.00012766074 + 59150 -6247.3483 -6254.3803 7.0319249 3702.6972 628.66873 -10585.746 0 337.0093 0.00015502167 0.00014560356 + 59160 -6247.2424 -6254.2733 7.0309104 3700.7639 630.09553 -10585.133 0 336.96068 0.00033375232 0.00032369456 + 59170 -6247.0903 -6254.1829 7.0926241 3701.9507 630.85054 -10586.984 0 339.91834 0.00038371898 0.00036636946 + 59180 -6246.9341 -6254.0954 7.1613592 3706.2859 630.85041 -10591.232 0 343.21251 0.00029361301 0.00026713114 + 59190 -6246.8343 -6253.9646 7.130273 3712.9851 630.2257 -10597.175 0 341.72269 8.6675724e-05 5.5956553e-05 + 59200 -6246.821 -6253.7777 6.9567226 3720.5193 629.27463 -10603.572 0 333.40518 -0.00017990607 -0.0002067192 + 59210 -6246.8663 -6253.5906 6.7243273 3726.942 628.37173 -10608.904 0 322.26749 -0.00042738147 -0.00044520974 + 59220 -6246.9052 -6253.4923 6.5871111 3730.4357 627.85797 -10611.786 0 315.69132 -0.00057907694 -0.00058987901 + 59230 -6246.8879 -6253.5253 6.6373541 3729.8963 627.94244 -10611.364 0 318.09925 -0.00058704041 -0.00059804503 + 59240 -6246.8207 -6253.6355 6.814753 3725.3128 628.64019 -10607.588 0 326.6012 -0.00044962619 -0.00046724979 + 59250 -6246.7593 -6253.7057 6.9464205 3717.773 629.76074 -10601.24 0 332.91145 -0.00021149828 -0.0002361125 + 59260 -6246.7602 -6253.6536 6.893477 3709.1009 630.95292 -10593.707 0 330.3741 5.3593348e-05 2.758269e-05 + 59270 -6246.8318 -6253.5106 6.678729 3701.2993 631.80023 -10586.61 0 320.08217 0.00026828304 0.00024726079 + 59280 -6246.9308 -6253.4094 6.4785274 3696.0299 631.94574 -10581.385 0 310.48738 0.00037366049 0.00035924945 + 59290 -6247.0044 -6253.4849 6.480544 3694.2805 631.21017 -10578.976 0 310.58403 0.00034114753 0.00032917015 + 59300 -6247.0399 -6253.7666 6.7267348 3696.2353 629.66153 -10579.663 0 322.38288 0.00017490529 0.00015956777 + 59310 -6247.0786 -6254.15 7.0714201 3701.2856 627.6083 -10583.044 0 338.90213 -9.0974103e-05 -0.00011158301 + 59320 -6247.1814 -6254.4699 7.2884994 3708.1471 625.51482 -10588.132 0 349.30579 -0.00039833685 -0.00042045208 + 59330 -6247.3752 -6254.6138 7.2386528 3715.1104 623.86849 -10593.593 0 346.91686 -0.00067545923 -0.00069324011 + 59340 -6247.6289 -6254.5834 6.954539 3720.45 623.04691 -10598.08 0 333.30053 -0.0008539069 -0.00086507627 + 59350 -6247.8825 -6254.4598 6.5773282 3722.913 623.22804 -10600.601 0 315.22247 -0.00088872804 -0.00089687909 + 59360 -6248.1003 -6254.3196 6.2193215 3722.1013 624.36192 -10600.783 0 298.06478 -0.00077363307 -0.00078506707 + 59370 -6248.2959 -6254.1834 5.8874694 3718.562 626.19725 -10598.943 0 282.16057 -0.0005431156 -0.00056125622 + 59380 -6248.5107 -6254.0367 5.5259902 3713.546 628.3459 -10595.929 0 264.83646 -0.00026007405 -0.0002824806 + 59390 -6248.7697 -6253.889 5.1192813 3708.5581 630.36736 -10592.814 0 245.34468 4.8773881e-06 -1.5521688e-05 + 59400 -6249.0561 -6253.8074 4.7512587 3704.9029 631.85718 -10590.567 0 227.70697 0.00019291653 0.00017947012 + 59410 -6249.3236 -6253.8884 4.5648015 3703.3863 632.5258 -10589.8 0 218.7709 0.00026837492 0.00026147568 + 59420 -6249.5334 -6254.1848 4.6513342 3704.2207 632.25625 -10590.662 0 222.91803 0.00022095952 0.00021514351 + 59430 -6249.686 -6254.6449 4.9589392 3707.0763 631.12998 -10592.851 0 237.66019 6.2851663e-05 5.1923338e-05 + 59440 -6249.8223 -6255.122 5.2997319 3711.1867 629.41148 -10595.72 0 253.99289 -0.00017461487 -0.00019272255 + 59450 -6249.9911 -6255.4561 5.4650029 3715.4743 627.48959 -10598.42 0 261.9136 -0.00044361198 -0.00046546693 + 59460 -6250.2082 -6255.5722 5.3639727 3718.7299 625.78695 -10600.089 0 257.07167 -0.00068515547 -0.00070505127 + 59470 -6250.4438 -6255.5139 5.0700494 3719.8893 624.66224 -10600.065 0 242.98521 -0.0008409702 -0.00085572277 + 59480 -6250.6508 -6255.3878 4.7370188 3718.3663 624.33134 -10598.085 0 227.02452 -0.00087067622 -0.00088161089 + 59490 -6250.8044 -6255.2734 4.4690068 3714.3025 624.82347 -10594.399 0 214.17988 -0.00076687964 -0.00077757136 + 59500 -6250.9162 -6255.1789 4.2626684 3708.592 625.97654 -10589.747 0 204.29099 -0.00055980868 -0.00057225362 + 59510 -6251.0134 -6255.0705 4.0571396 3702.6468 627.47147 -10585.189 0 194.4409 -0.00030860421 -0.00032158132 + 59520 -6251.1079 -6254.9331 3.8252757 3697.9968 628.90246 -10581.832 0 183.32868 -8.338698e-05 -9.4211207e-05 + 59530 -6251.185 -6254.8016 3.6166031 3695.8789 629.87429 -10580.555 0 173.32791 5.4350924e-05 4.6722883e-05 + 59540 -6251.2171 -6254.7376 3.5204614 3696.9361 630.10663 -10581.78 0 168.72026 6.6827009e-05 6.035596e-05 + 59550 -6251.1884 -6254.7787 3.5902414 3701.0786 629.51726 -10585.374 0 172.06451 -5.1970865e-05 -6.0863978e-05 + 59560 -6251.1085 -6254.9061 3.7976292 3707.4976 628.25661 -10590.66 0 182.0037 -0.00027490547 -0.00028813417 + 59570 -6251.0028 -6255.0609 4.0580595 3714.8105 626.6768 -10596.548 0 194.48498 -0.00054622605 -0.00056199655 + 59580 -6250.8861 -6255.1951 4.3089339 3721.3212 625.2383 -10601.755 0 206.50829 -0.00079230013 -0.00080628148 + 59590 -6250.7398 -6255.3107 4.5709134 3725.3903 624.37967 -10605.081 0 219.06382 -0.00093899327 -0.00094803282 + 59600 -6250.5156 -6255.4424 4.9267806 3725.8692 624.39052 -10605.702 0 236.11897 -0.00093357485 -0.00093875019 + 59610 -6250.1671 -6255.5933 5.4261659 3722.4794 625.32534 -10603.398 0 260.05231 -0.00076451963 -0.0007705981 + 59620 -6249.6858 -6255.6899 6.0041175 3715.9731 626.97973 -10598.643 0 287.751 -0.00047010576 -0.00048178674 + 59630 -6249.1114 -6255.6072 6.495785 3707.9672 628.93439 -10592.509 0 311.31447 -0.00012990189 -0.00014826425 + 59640 -6248.5096 -6255.2476 6.7379709 3700.4853 630.66126 -10586.394 0 322.92137 0.00015906736 0.0001369122 + 59650 -6247.9357 -6254.6064 6.6706709 3695.3705 631.67192 -10581.649 0 319.69598 0.00031265215 0.00029089904 + 59660 -6247.4139 -6253.7781 6.3642482 3693.7677 631.66756 -10579.213 0 305.01048 0.0002854131 0.00026656972 + 59670 -6246.9415 -6252.9136 5.9721508 3695.8281 630.63776 -10579.379 0 286.21897 8.3915487e-05 6.777027e-05 + 59680 -6246.5065 -6252.168 5.6615064 3700.7021 628.86935 -10581.739 0 271.33115 -0.00023541453 -0.00025071055 + 59690 -6246.0996 -6251.6653 5.5657218 3706.8081 626.86131 -10585.335 0 266.74062 -0.00058235661 -0.00059850171 + 59700 -6245.7153 -6251.4822 5.7668953 3712.2933 625.17588 -10588.951 0 276.38198 -0.00085835809 -0.00087586462 + 59710 -6245.3486 -6251.6416 6.2929235 3715.558 624.27431 -10591.474 0 301.5922 -0.00098468444 -0.0010031675 + 59720 -6244.9946 -6252.1062 7.1116039 3715.7039 624.38616 -10592.196 0 340.82796 -0.00092542277 -0.00094468151 + 59730 -6244.658 -6252.7746 8.1165571 3712.7864 625.44951 -10591.01 0 388.99096 -0.00069823315 -0.00071888762 + 59740 -6244.3652 -6253.4893 9.1240428 3707.7924 627.13925 -10588.421 0 437.27533 -0.0003687431 -0.00039160249 + 59750 -6244.1629 -6254.0743 9.9114171 3702.3295 628.97398 -10585.378 0 475.01072 -2.9629304e-05 -5.4372314e-05 + 59760 -6244.0963 -6254.3943 10.29794 3698.1116 630.46597 -10582.972 0 493.53508 0.00022855745 0.0002039328 + 59770 -6244.1815 -6254.4027 10.221191 3696.4207 631.26353 -10582.087 0 489.85681 0.0003440905 0.00032234337 + 59780 -6244.3938 -6254.1508 9.7569828 3697.7395 631.23802 -10583.128 0 467.60936 0.00029902357 0.00028198761 + 59790 -6244.6808 -6253.7548 9.0740288 3701.6678 630.49067 -10585.913 0 434.87838 0.00011877579 0.00010617612 + 59800 -6244.9878 -6253.3439 8.356098 3707.1098 629.28753 -10589.741 0 400.4711 -0.00014113519 -0.00015160435 + 59810 -6245.2796 -6253.0131 7.7334853 3712.63 627.95809 -10593.601 0 370.63201 -0.00041467236 -0.00042607242 + 59820 -6245.5476 -6252.8003 7.2526884 3716.8443 626.79994 -10596.445 0 347.58952 -0.00064358912 -0.0006580226 + 59830 -6245.8012 -6252.6935 6.8922905 3718.7364 626.01851 -10597.448 0 330.31723 -0.00078891299 -0.00080644638 + 59840 -6246.0524 -6252.6616 6.6092235 3717.8399 625.70716 -10596.209 0 316.75107 -0.00083419715 -0.00085314689 + 59850 -6246.303 -6252.6857 6.3826061 3714.2839 625.85576 -10592.825 0 305.8903 -0.00078307034 -0.00080141377 + 59860 -6246.5444 -6252.7699 6.2255488 3708.733 626.3711 -10587.874 0 298.36323 -0.00065498934 -0.00067174695 + 59870 -6246.7672 -6252.9289 6.1617722 3702.2538 627.10003 -10582.283 0 295.3067 -0.00048138677 -0.00049683742 + 59880 -6246.9717 -6253.1675 6.1958896 3696.1218 627.85438 -10577.144 0 296.94179 -0.00030149894 -0.00031626327 + 59890 -6247.1661 -6253.4762 6.3101838 3691.5733 628.44043 -10573.49 0 302.41941 -0.00015606649 -0.00017033405 + 59900 -6247.3559 -6253.8412 6.4852693 3689.5423 628.69493 -10572.078 0 310.81049 -7.9027475e-05 -9.2967142e-05 + 59910 -6247.5385 -6254.2467 6.7081726 3690.453 628.52489 -10573.225 0 321.49327 -8.9898435e-05 -0.00010466789 + 59920 -6247.7109 -6254.6575 6.9465879 3694.1285 627.94104 -10576.727 0 332.91947 -0.00018958165 -0.00020732084 + 59930 -6247.8828 -6255.0001 7.1173235 3699.8265 627.07027 -10581.897 0 341.10208 -0.00036001015 -0.0003821796 + 59940 -6248.0765 -6255.1756 7.0990547 3706.3746 626.13545 -10587.686 0 340.22653 -0.00056640209 -0.00059183598 + 59950 -6248.3081 -6255.1105 6.8024264 3712.3791 625.40347 -10592.893 0 326.01044 -0.00076177155 -0.00078659718 + 59960 -6248.5661 -6254.8135 6.2473892 3716.5002 625.11549 -10596.429 0 299.40994 -0.00089514633 -0.0009151871 + 59970 -6248.8117 -6254.3875 5.5758504 3717.7693 625.41892 -10597.576 0 267.22604 -0.00092452095 -0.00093832182 + 59980 -6249.0029 -6253.9823 4.9793904 3715.8784 626.31719 -10596.178 0 238.64033 -0.00083192747 -0.00084173657 + 59990 -6249.1224 -6253.7205 4.5981232 3711.3246 627.64784 -10592.693 0 220.36786 -0.00063409832 -0.00064397102 + 60000 -6249.1845 -6253.6518 4.4673414 3705.3204 629.09789 -10588.07 0 214.10007 -0.00038217122 -0.00039493021 + 60010 -6249.2193 -6253.7571 4.5377136 3699.4705 630.2643 -10583.492 0 217.4727 -0.00014858318 -0.00016413337 + 60020 -6249.2503 -6253.9829 4.7326074 3695.3149 630.75615 -10580.054 0 226.8131 -5.4860571e-06 -2.1528552e-05 + 60030 -6249.2806 -6254.2704 4.989781 3693.8933 630.31525 -10578.479 0 239.1383 -2.6666878e-06 -1.6844587e-05 + 60040 -6249.298 -6254.5626 5.264657 3695.4624 628.91459 -10578.94 0 252.31191 -0.00015242056 -0.00016406993 + 60050 -6249.2879 -6254.7989 5.5109886 3699.4412 626.79476 -10581.035 0 264.1175 -0.00042540405 -0.00043572586 + 60060 -6249.2467 -6254.9172 5.6704367 3704.5835 624.41884 -10583.92 0 271.75915 -0.00075767459 -0.000768487 + 60070 -6249.1833 -6254.8735 5.6902433 3709.3193 622.35551 -10586.548 0 272.70839 -0.0010664775 -0.0010787274 + 60080 -6249.1091 -6254.6697 5.5606865 3712.172 621.1269 -10587.969 0 266.4993 -0.0012709015 -0.0012841619 + 60090 -6249.0264 -6254.3677 5.3413036 3712.1561 621.06839 -10587.592 0 255.98524 -0.0013127645 -0.0013260055 + 60100 -6248.9236 -6254.0715 5.1478375 3709.0623 622.24096 -10585.375 0 246.71326 -0.0011727603 -0.0011855445 + 60110 -6248.779 -6253.8827 5.1036414 3703.556 624.4155 -10581.854 0 244.59513 -0.00087730831 -0.00089031703 + 60120 -6248.5665 -6253.8562 5.2896589 3697.0424 627.12736 -10578.026 0 253.51013 -0.00049342623 -0.00050802605 + 60130 -6248.256 -6253.9788 5.7227437 3691.3214 629.78484 -10575.085 0 274.26599 -0.00011242578 -0.00012978549 + 60140 -6247.8121 -6254.175 6.3628671 3688.1202 631.80707 -10574.102 0 304.94429 0.00017307594 0.00015277528 + 60150 -6247.2001 -6254.3326 7.1325072 3688.6312 632.76028 -10575.724 0 341.82977 0.00029252059 0.00027049552 + 60160 -6246.4025 -6254.3402 7.9376212 3693.1562 632.46143 -10579.958 0 380.41535 0.0002156541 0.00019418224 + 60170 -6245.4384 -6254.1295 8.6910369 3700.9273 631.0276 -10586.084 0 416.52325 -3.7822402e-05 -5.6902477e-05 + 60180 -6244.3672 -6253.7025 9.3353549 3710.1742 628.85882 -10592.736 0 447.40259 -0.00039997117 -0.00041745117 + 60190 -6243.2748 -6253.1168 9.8420354 3718.5075 626.54649 -10598.171 0 471.68556 -0.00077076809 -0.00079078902 + 60200 -6242.261 -6252.433 10.171969 3723.5811 624.71496 -10600.729 0 487.49783 -0.0010475993 -0.0010747442 + 60210 -6241.428 -6251.6796 10.251619 3723.798 623.83646 -10599.314 0 491.31509 -0.0011572215 -0.0011915955 + 60220 -6240.8466 -6250.8854 10.038872 3718.7568 624.08536 -10593.728 0 481.11909 -0.0010752298 -0.0011108611 + 60230 -6240.5126 -6250.1436 9.6309936 3709.3175 625.28864 -10584.75 0 461.57125 -0.00082760245 -0.00085697772 + 60240 -6240.3465 -6249.6129 9.2664592 3697.3777 626.99018 -10573.981 0 444.10072 -0.00048076602 -0.00050138583 + 60250 -6240.2524 -6249.4292 9.1768058 3685.4766 628.5994 -10563.505 0 439.80402 -0.00012703393 -0.00014337553 + 60260 -6240.1875 -6249.6123 9.4248117 3676.2605 629.56823 -10555.441 0 451.68986 0.00013473638 0.0001154253 + 60270 -6240.181 -6250.0585 9.8775189 3671.8469 629.54462 -10551.45 0 473.38613 0.00022467857 0.00019838865 + 60280 -6240.3008 -6250.6198 10.319041 3673.2314 628.46957 -10552.321 0 494.54637 0.00010818016 7.6902047e-05 + 60290 -6240.5989 -6251.1966 10.597698 3679.955 626.59727 -10557.749 0 507.90116 -0.0001885351 -0.00021889189 + 60300 -6241.0776 -6251.7785 10.700944 3690.1927 624.43017 -10566.401 0 512.84929 -0.00058301624 -0.00060748008 + 60310 -6241.6958 -6252.4083 10.71258 3701.274 622.58366 -10576.266 0 513.40697 -0.00096215393 -0.00098043758 + 60320 -6242.4064 -6253.0963 10.689942 3710.4754 621.61834 -10585.19 0 512.32201 -0.00121926 -0.0012353429 + 60330 -6243.1855 -6253.7558 10.570281 3715.7983 621.88572 -10591.44 0 506.58717 -0.00128737 -0.0013053314 + 60340 -6244.0209 -6254.2266 10.205717 3716.4454 623.42637 -10594.098 0 489.1152 -0.0011558148 -0.0011759704 + 60350 -6244.8742 -6254.3791 9.5048312 3712.8686 625.94787 -10593.196 0 455.52484 -0.00086672354 -0.00088593727 + 60360 -6245.6686 -6254.2072 8.5385952 3706.4728 628.89306 -10589.573 0 409.21739 -0.00049819823 -0.00051375748 + 60370 -6246.323 -6253.8285 7.5054809 3699.1654 631.58229 -10584.576 0 359.70476 -0.0001434742 -0.00015622394 + 60380 -6246.8002 -6253.4045 6.6042617 3692.8911 633.38639 -10579.682 0 316.51328 0.00010925787 9.5502419e-05 + 60390 -6247.1211 -6253.0563 5.9352374 3689.2001 633.88089 -10576.137 0 284.44988 0.00019548761 0.00017727186 + 60400 -6247.3443 -6252.8328 5.4885032 3688.8928 632.94337 -10574.669 0 263.03987 8.955135e-05 6.685733e-05 + 60410 -6247.5313 -6252.7308 5.19949 3691.8161 630.77259 -10575.32 0 249.18873 -0.0001877675 -0.00021097406 + 60420 -6247.7153 -6252.7406 5.0253131 3696.8946 627.82638 -10577.462 0 240.8412 -0.00057288322 -0.00059113205 + 60430 -6247.8883 -6252.8807 4.9924004 3702.4243 624.6977 -10580.003 0 239.26384 -0.00097516354 -0.00098558599 + 60440 -6248.0134 -6253.1867 5.1733251 3706.5763 621.96913 -10581.732 0 247.93477 -0.0013017154 -0.0013068598 + 60450 -6248.0609 -6253.6567 5.5957704 3707.962 620.08933 -10581.708 0 268.18072 -0.0014838904 -0.001490572 + 60460 -6248.0435 -6254.2003 6.1568009 3706.0559 619.29859 -10579.555 0 295.06845 -0.0014957481 -0.0015101186 + 60470 -6248.019 -6254.6544 6.6354237 3701.3106 619.60814 -10575.573 0 318.00674 -0.001356988 -0.0013795503 + 60480 -6248.0511 -6254.8703 6.8192728 3694.9363 620.82499 -10570.632 0 326.81781 -0.0011201527 -0.0011450839 + 60490 -6248.1593 -6254.8088 6.6494642 3688.4824 622.61212 -10565.903 0 318.67963 -0.00084990699 -0.00086955774 + 60500 -6248.3041 -6254.5625 6.2584282 3683.4179 624.57227 -10562.553 0 299.93899 -0.00060494798 -0.00061581065 + 60510 -6248.4199 -6254.2867 5.8668419 3680.8458 626.33774 -10561.47 0 281.17198 -0.00042857591 -0.00043375185 + 60520 -6248.4672 -6254.0943 5.6270447 3681.3597 627.6443 -10563.098 0 269.67955 -0.00034654013 -0.00035285996 + 60530 -6248.4585 -6253.9959 5.5374079 3684.9774 628.37179 -10567.345 0 265.38366 -0.00036690529 -0.00037932892 + 60540 -6248.4405 -6253.9258 5.4853169 3691.1113 628.54559 -10573.583 0 262.88716 -0.00047864059 -0.00049659986 + 60550 -6248.4517 -6253.8236 5.371879 3698.6086 628.30556 -10580.738 0 257.45058 -0.0006504863 -0.00066903061 + 60560 -6248.4887 -6253.6983 5.2095522 3705.9328 627.85658 -10587.488 0 249.67097 -0.00083463537 -0.00084916382 + 60570 -6248.5114 -6253.6226 5.1112353 3711.5027 627.41463 -10592.54 0 244.95907 -0.00097794716 -0.00098831462 + 60580 -6248.4784 -6253.6637 5.1853016 3714.106 627.15765 -10594.927 0 248.50875 -0.0010380262 -0.0010484799 + 60590 -6248.3836 -6253.8156 5.4319794 3713.2288 627.18509 -10594.229 0 260.33093 -0.00099719444 -0.0010123118 + 60600 -6248.2612 -6253.9932 5.7320024 3709.1685 627.4894 -10590.651 0 274.70972 -0.00086785218 -0.00088811194 + 60610 -6248.156 -6254.0936 5.9376126 3702.9023 627.94519 -10584.941 0 284.56371 -0.00068746872 -0.00070839198 + 60620 -6248.0832 -6254.0714 5.9882466 3695.7909 628.32527 -10578.188 0 286.99038 -0.00050686741 -0.00052260043 + 60630 -6248.0124 -6253.9631 5.9506983 3689.252 628.35046 -10571.566 0 285.19085 -0.00037773681 -0.00038605502 + 60640 -6247.8912 -6253.8408 5.9496416 3684.4976 627.76968 -10566.108 0 285.14021 -0.00034297102 -0.00034736831 + 60650 -6247.6872 -6253.7405 6.053276 3682.3473 626.45067 -10562.538 0 290.10695 -0.00042915621 -0.00043619686 + 60660 -6247.4134 -6253.631 6.2176598 3683.0819 624.45157 -10561.165 0 297.98515 -0.00063897106 -0.00065314462 + 60670 -6247.1153 -6253.4532 6.3378675 3686.3339 622.04553 -10561.833 0 303.74617 -0.00094414658 -0.00096447989 + 60680 -6246.8327 -6253.1923 6.3595212 3691.0814 619.68492 -10563.959 0 304.78394 -0.0012836944 -0.001304778 + 60690 -6246.5659 -6252.9186 6.3526971 3695.8381 617.91112 -10566.668 0 304.45689 -0.0015727718 -0.0015891684 + 60700 -6246.274 -6252.7556 6.4816937 3699.0542 617.23105 -10569.041 0 310.63913 -0.0017233433 -0.0017336774 + 60710 -6245.905 -6252.7955 6.8904753 3699.6226 617.98768 -10570.406 0 330.23024 -0.0016714188 -0.0016789643 + 60720 -6245.4348 -6253.0265 7.5916953 3697.2952 620.25099 -10570.573 0 363.83664 -0.0014012784 -0.0014109668 + 60730 -6244.886 -6253.3285 8.4425341 3692.8315 623.75571 -10569.916 0 404.61361 -0.00095701295 -0.00097168026 + 60740 -6244.3166 -6253.5386 9.2219483 3687.8041 627.91366 -10569.256 0 441.96751 -0.00043555622 -0.00045453227 + 60750 -6243.788 -6253.5352 9.747211 3684.1192 631.92206 -10569.577 0 467.14104 3.8204316e-05 1.7440424e-05 + 60760 -6243.3383 -6253.2816 9.9432697 3683.406 634.96007 -10571.648 0 476.53728 0.00034680061 0.00032597634 + 60770 -6242.9815 -6252.8103 9.8287971 3686.469 636.4213 -10575.701 0 471.05111 0.00041456846 0.00039368186 + 60780 -6242.7227 -6252.1846 9.4619097 3692.9708 636.09759 -10581.253 0 453.4678 0.00023035334 0.00020905979 + 60790 -6242.5647 -6251.4819 8.9172191 3701.4424 634.23674 -10587.161 0 427.36317 -0.00014809157 -0.00016880061 + 60800 -6242.4965 -6250.8108 8.3142778 3709.6332 631.44561 -10591.89 0 398.46685 -0.00061004621 -0.00062835006 + 60810 -6242.4829 -6250.3207 7.8377494 3715.1322 628.47618 -10593.929 0 375.62893 -0.0010253234 -0.0010411885 + 60820 -6242.4808 -6250.1562 7.6753517 3716.1001 625.98124 -10592.238 0 367.84592 -0.001286226 -0.0013029639 + 60830 -6242.4783 -6250.3705 7.892248 3711.8769 624.33162 -10586.579 0 378.24081 -0.001342623 -0.0013646203 + 60840 -6242.5176 -6250.8805 8.3628758 3703.2166 623.55025 -10577.647 0 400.79593 -0.0012147706 -0.0012430028 + 60850 -6242.6726 -6251.5187 8.8461564 3692.0435 623.36867 -10566.931 0 423.95745 -0.00097867992 -0.0010088169 + 60860 -6242.9975 -6252.1384 9.1409408 3680.8519 623.37254 -10556.363 0 438.08517 -0.00073328067 -0.00075881057 + 60870 -6243.4957 -6252.6756 9.1799085 3672.0112 623.17899 -10547.866 0 439.95272 -0.0005660101 -0.00058353366 + 60880 -6244.132 -6253.1307 8.9987403 3667.2079 622.58124 -10542.92 0 431.27013 -0.00052958055 -0.00054131238 + 60890 -6244.8662 -6253.5112 8.6449958 3667.1334 621.61101 -10542.256 0 414.31671 -0.00063356005 -0.00064498194 + 60900 -6245.6675 -6253.7976 8.1301106 3671.4246 620.50544 -10545.728 0 389.64052 -0.00084794237 -0.00086305059 + 60910 -6246.5003 -6253.9598 7.4595275 3678.8291 619.60639 -10552.395 0 357.50241 -0.0011145062 -0.001132905 + 60920 -6247.309 -6253.9963 6.6872299 3687.5503 619.24465 -10560.791 0 320.48958 -0.0013626705 -0.0013806313 + 60930 -6248.0285 -6253.9531 5.9246157 3695.689 619.65422 -10569.296 0 283.94083 -0.0015266596 -0.0015406187 + 60940 -6248.6101 -6253.9022 5.2921571 3701.6719 620.93027 -10576.504 0 253.62986 -0.001560456 -0.0015697699 + 60950 -6249.0384 -6253.8942 4.8557859 3704.5727 623.01677 -10581.484 0 232.71651 -0.0014479544 -0.0014549735 + 60960 -6249.3317 -6253.9261 4.594394 3704.2679 625.70623 -10583.9 0 220.18914 -0.0012069665 -0.0012148028 + 60970 -6249.5295 -6253.9519 4.4224351 3701.3985 628.65089 -10584.001 0 211.9479 -0.00088594628 -0.00089591589 + 60980 -6249.6728 -6253.9309 4.2581569 3697.1456 631.39781 -10582.474 0 204.07477 -0.00055310936 -0.00056392837 + 60990 -6249.7846 -6253.8767 4.0921709 3692.8856 633.45937 -10580.222 0 196.11979 -0.00028027558 -0.00028963079 + 61000 -6249.8628 -6253.8645 4.0017378 3689.8315 634.41385 -10578.11 0 191.78573 -0.00012638405 -0.00013348522 + 61010 -6249.8916 -6253.9833 4.0916849 3688.7578 634.01057 -10576.752 0 196.0965 -0.00012558689 -0.00013236948 + 61020 -6249.8638 -6254.2646 4.4008148 3689.8563 632.24466 -10576.366 0 210.91174 -0.00028197885 -0.00029167868 + 61030 -6249.7962 -6254.6429 4.8466668 3692.7128 629.37269 -10576.728 0 232.27947 -0.00056991836 -0.00058407096 + 61040 -6249.7227 -6254.982 5.2593468 3696.3889 625.86064 -10577.232 0 252.05741 -0.00093817099 -0.00095474812 + 61050 -6249.6686 -6255.1543 5.4856692 3699.6074 622.28018 -10577.042 0 262.90405 -0.0013177653 -0.001332453 + 61060 -6249.6283 -6255.1098 5.4814516 3701.0556 619.18666 -10575.352 0 262.70192 -0.0016347204 -0.0016445252 + 61070 -6249.5692 -6254.8853 5.3160714 3699.7684 617.0146 -10571.668 0 254.77597 -0.0018269915 -0.0018329766 + 61080 -6249.4614 -6254.5554 5.0940731 3695.4776 616.0125 -10566.046 0 244.13656 -0.001860917 -0.0018674819 + 61090 -6249.3039 -6254.1785 4.8745124 3688.7766 616.22022 -10559.175 0 233.61399 -0.0017402944 -0.0017516097 + 61100 -6249.1245 -6253.7848 4.6602464 3681.0123 617.48165 -10552.279 0 223.34515 -0.0015038611 -0.0015206333 + 61110 -6248.9537 -6253.4057 4.4520496 3673.9398 619.48661 -10546.832 0 213.3672 -0.0012126042 -0.0012318275 + 61120 -6248.7988 -6253.1011 4.3023333 3669.2715 621.83745 -10544.21 0 206.19195 -0.00093259074 -0.00095016336 + 61130 -6248.6366 -6252.9503 4.313704 3668.2685 624.13301 -10545.352 0 206.7369 -0.00071931731 -0.00073315456 + 61140 -6248.4282 -6253.0105 4.582311 3671.4643 626.05399 -10550.529 0 219.61006 -0.00060700231 -0.00061827611 + 61150 -6248.1439 -6253.2716 5.1277001 3678.5514 627.42907 -10559.252 0 245.74816 -0.00060351595 -0.00061533185 + 61160 -6247.7829 -6253.6396 5.8566593 3688.418 628.2626 -10570.32 0 280.68397 -0.00069038814 -0.00070504182 + 61170 -6247.3776 -6253.968 6.5904691 3699.3198 628.7121 -10582 0 315.85226 -0.00082731251 -0.00084425112 + 61180 -6246.9732 -6254.1239 7.1506126 3709.1786 629.01795 -10592.32 0 342.69748 -0.00096098678 -0.0009772238 + 61190 -6246.5995 -6254.0513 7.4517234 3715.9972 629.4045 -10599.453 0 357.1284 -0.0010382285 -0.0010510627 + 61200 -6246.2569 -6253.7882 7.5312855 3718.3293 629.98599 -10602.103 0 360.94146 -0.001021877 -0.0010315504 + 61210 -6245.9317 -6253.4266 7.4949332 3715.6765 630.71109 -10599.814 0 359.19925 -0.00090482071 -0.00091460042 + 61220 -6245.6215 -6253.0534 7.4319395 3708.6502 631.36622 -10593.07 0 356.18024 -0.00071556285 -0.0007291658 + 61230 -6245.3442 -6252.7132 7.3690603 3698.8118 631.63701 -10583.162 0 353.16672 -0.00051145143 -0.00053009438 + 61240 -6245.1261 -6252.4069 7.2808208 3688.2429 631.20742 -10571.857 0 348.93779 -0.00036155255 -0.0003828844 + 61250 -6244.9815 -6252.1155 7.1340079 3678.9981 629.86288 -10560.977 0 341.90169 -0.00032542707 -0.00034495315 + 61260 -6244.8981 -6251.8356 6.9375608 3672.6151 627.56452 -10552.015 0 332.48684 -0.00043489561 -0.00044900564 + 61270 -6244.8374 -6251.6043 6.7669732 3669.8193 624.47656 -10545.9 0 324.31132 -0.00068450335 -0.00069331629 + 61280 -6244.7553 -6251.4914 6.7361215 3670.4806 620.9487 -10542.921 0 322.83274 -0.0010333889 -0.0010413779 + 61290 -6244.632 -6251.5564 6.9244742 3673.7881 617.4668 -10542.811 0 331.85966 -0.0014166836 -0.0014301058 + 61300 -6244.4904 -6251.8046 7.3141625 3678.5349 614.5835 -10544.923 0 350.53571 -0.0017607569 -0.0017832731 + 61310 -6244.3867 -6252.1795 7.7928734 3683.4062 612.83261 -10548.418 0 373.47822 -0.001996853 -0.0020265567 + 61320 -6244.3748 -6252.5962 8.2213529 3687.2298 612.62996 -10552.456 0 394.01336 -0.0020716746 -0.0021020077 + 61330 -6244.4742 -6252.9805 8.5063023 3689.1992 614.17232 -10556.352 0 407.66974 -0.0019568525 -0.0019808468 + 61340 -6244.6623 -6253.2841 8.6217661 3689.0704 617.3588 -10559.713 0 413.20341 -0.001658282 -0.0016729434 + 61350 -6244.8976 -6253.4741 8.5764911 3687.2709 621.76565 -10562.511 0 411.03358 -0.0012221647 -0.0012298979 + 61360 -6245.1489 -6253.5204 8.3714889 3684.836 626.69737 -10565.054 0 401.20872 -0.00073184899 -0.00073826699 + 61370 -6245.4102 -6253.4018 7.9916254 3683.1234 631.31691 -10567.842 0 383.00353 -0.00029152753 -0.00030159305 + 61380 -6245.6923 -6253.1291 7.4368012 3683.361 634.83069 -10571.321 0 356.41324 9.2822326e-07 -1.4353178e-05 + 61390 -6246.0037 -6252.7627 6.75892 3686.18 636.67908 -10575.622 0 323.92537 8.2972295e-05 6.4422629e-05 + 61400 -6246.3398 -6252.4052 6.0653993 3691.3248 636.67198 -10580.402 0 290.68797 -5.3338275e-05 -7.161264e-05 + 61410 -6246.6852 -6252.1675 5.4822534 3697.6653 635.02177 -10584.855 0 262.74034 -0.000359572 -0.00037468926 + 61420 -6247.0243 -6252.1286 5.1042904 3703.5135 632.26106 -10587.903 0 244.62623 -0.00074695991 -0.00075800198 + 61430 -6247.3494 -6252.3118 4.9624044 3707.1317 629.0748 -10588.518 0 237.82626 -0.0011141104 -0.0011221797 + 61440 -6247.6652 -6252.6815 5.0162886 3707.2654 626.10403 -10586.051 0 240.40869 -0.001377231 -0.0013845523 + 61450 -6247.9891 -6253.1567 5.1676525 3703.5332 623.78346 -10580.473 0 247.6629 -0.0014934565 -0.0015020053 + 61460 -6248.3459 -6253.6385 5.2926064 3696.5566 622.25919 -10572.454 0 253.6514 -0.0014698832 -0.0014802663 + 61470 -6248.7559 -6254.0451 5.2892156 3687.7883 621.40639 -10563.24 0 253.48889 -0.0013555801 -0.0013669453 + 61480 -6249.2217 -6254.3399 5.1181868 3679.1002 620.9341 -10554.374 0 245.29223 -0.0012203757 -0.0012314172 + 61490 -6249.725 -6254.5336 4.808588 3672.2741 620.5346 -10547.342 0 230.45452 -0.001129277 -0.0011394009 + 61500 -6250.2349 -6254.6609 4.4260236 3668.5544 620.0175 -10543.233 0 212.11989 -0.0011220078 -0.001131591 + 61510 -6250.7204 -6254.7526 4.0321743 3668.3899 619.37761 -10542.52 0 193.24442 -0.0012036487 -0.0012133241 + 61520 -6251.1578 -6254.8236 3.6657528 3671.4153 618.77821 -10545.017 0 175.68344 -0.001347382 -0.0013572467 + 61530 -6251.5313 -6254.8797 3.3483396 3676.6447 618.47122 -10549.996 0 160.47122 -0.0015062014 -0.0015157533 + 61540 -6251.8318 -6254.9289 3.0970194 3682.784 618.69773 -10556.411 0 148.42655 -0.0016284262 -0.0016371719 + 61550 -6252.056 -6254.9834 2.9274363 3688.5607 619.60651 -10563.151 0 140.29917 -0.0016722373 -0.0016803079 + 61560 -6252.2066 -6255.0522 2.8455297 3692.9935 621.2079 -10569.254 0 136.37375 -0.0016161605 -0.0016243665 + 61570 -6252.2933 -6255.1311 2.8378126 3695.5597 623.36422 -10574.055 0 136.0039 -0.0014639218 -0.0014731932 + 61580 -6252.3312 -6255.203 2.8717881 3696.24 625.81109 -10577.254 0 137.6322 -0.0012430522 -0.0012537004 + 61590 -6252.3373 -6255.2475 2.9102345 3695.4412 628.20287 -10578.892 0 139.47477 -0.00099769527 -0.0010090836 + 61600 -6252.3244 -6255.2553 2.9308383 3693.8259 630.17536 -10579.257 0 140.46222 -0.00077755303 -0.00078845576 + 61610 -6252.2973 -6255.2328 2.9355579 3692.1009 631.41517 -10578.749 0 140.6884 -0.00062619438 -0.00063556221 + 61620 -6252.2538 -6255.1946 2.9407585 3690.8264 631.72075 -10577.742 0 140.93765 -0.00057205822 -0.00057955591 + 61630 -6252.1906 -6255.1474 2.9568298 3690.2884 631.03889 -10576.475 0 141.70787 -0.00062407212 -0.00063000083 + 61640 -6252.1065 -6255.0838 2.977359 3690.4514 629.46675 -10575.002 0 142.69175 -0.0007718419 -0.00077669953 + 61650 -6252.0022 -6254.9904 2.9882079 3690.9919 627.22212 -10573.204 0 143.21169 -0.00098922511 -0.00099347427 + 61660 -6251.8772 -6254.8623 2.9851111 3691.401 624.59595 -10570.859 0 143.06328 -0.0012400515 -0.0012442666 + 61670 -6251.73 -6254.7104 2.9803851 3691.1352 621.90421 -10567.75 0 142.83678 -0.0014848904 -0.001489861 + 61680 -6251.5613 -6254.5558 2.9944878 3689.7763 619.45035 -10563.783 0 143.51266 -0.0016875389 -0.0016939149 + 61690 -6251.3763 -6254.4224 3.0460345 3687.1583 617.49889 -10559.08 0 145.98307 -0.0018199198 -0.0018276117 + 61700 -6251.1809 -6254.333 3.1521663 3683.4315 616.25501 -10554.02 0 151.0695 -0.001864961 -0.0018729421 + 61710 -6250.9744 -6254.3096 3.3352012 3679.0631 615.84497 -10549.218 0 159.84155 -0.0018181335 -0.0018250285 + 61720 -6250.7462 -6254.3685 3.6222813 3674.781 616.29748 -10545.447 0 173.60004 -0.0016884918 -0.0016936636 + 61730 -6250.4783 -6254.5083 4.0300786 3671.4696 617.53221 -10543.51 0 193.14398 -0.0014990669 -0.0015034491 + 61740 -6250.1565 -6254.6956 4.5391373 3670.0174 619.36435 -10544.077 0 217.54093 -0.001285241 -0.0012912069 + 61750 -6249.7842 -6254.8584 5.0742698 3671.124 621.53251 -10547.515 0 243.18748 -0.00108937 -0.0010994851 + 61760 -6249.3872 -6254.8995 5.5123029 3675.0854 623.74975 -10553.735 0 264.18049 -0.00095103269 -0.0009663828 + 61770 -6249.0044 -6254.7316 5.7271775 3681.6113 625.7674 -10562.11 0 274.47848 -0.00089477116 -0.00091409786 + 61780 -6248.6674 -6254.3211 5.6537589 3689.7556 627.43193 -10571.509 0 270.95985 -0.00091990766 -0.00094034072 + 61790 -6248.3842 -6253.7128 5.3286268 3698.0326 628.71299 -10580.458 0 255.37769 -0.0009978818 -0.0010167603 + 61800 -6248.1402 -6253.0195 4.8793098 3704.731 629.68705 -10587.438 0 233.8439 -0.0010800506 -0.0010964302 + 61810 -6247.9106 -6252.385 4.4743664 3708.3458 630.47678 -10591.208 0 214.43675 -0.001114187 -0.0011291085 + 61820 -6247.6728 -6251.9403 4.2674943 3707.9913 631.16561 -10591.097 0 204.52227 -0.0010641225 -0.0010797992 + 61830 -6247.4122 -6251.7667 4.3544976 3703.67 631.72197 -10587.159 0 208.69196 -0.00092570328 -0.00094422087 + 61840 -6247.1247 -6251.8743 4.7496025 3696.3114 631.96833 -10580.154 0 227.6276 -0.00073283225 -0.00075492249 + 61850 -6246.8146 -6252.2049 5.3902546 3687.5547 631.61606 -10571.376 0 258.33125 -0.00054989556 -0.00057447187 + 61860 -6246.4895 -6252.6586 6.1691218 3679.321 630.3632 -10562.343 0 295.65893 -0.00045187218 -0.00047680258 + 61870 -6246.157 -6253.126 6.9690183 3673.302 628.02674 -10554.455 0 333.99446 -0.00049895155 -0.00052252991 + 61880 -6245.8287 -6253.506 7.677302 3670.5208 624.66217 -10548.689 0 367.93939 -0.00071485811 -0.00073660859 + 61890 -6245.5258 -6253.7145 8.1886869 3671.0897 620.61973 -10545.424 0 392.44782 -0.0010759555 -0.0010960485 + 61900 -6245.276 -6253.7025 8.4265473 3674.2214 616.50556 -10544.429 0 403.84743 -0.0015139093 -0.0015321103 + 61910 -6245.0962 -6253.4813 8.3850655 3678.4858 613.05232 -10545.019 0 401.85939 -0.0019311929 -0.0019468626 + 61920 -6244.9808 -6253.1279 8.1471375 3682.2585 610.94047 -10546.327 0 390.45654 -0.0022262897 -0.0022395034 + 61930 -6244.9084 -6252.7472 7.8388619 3684.2409 610.62908 -10547.617 0 375.68225 -0.0023224375 -0.0023346134 + 61940 -6244.8624 -6252.414 7.5516064 3683.8775 612.24413 -10548.536 0 361.91535 -0.002190677 -0.0022036819 + 61950 -6244.8396 -6252.1451 7.3054189 3681.5135 615.5468 -10549.205 0 350.11666 -0.0018585026 -0.0018732928 + 61960 -6244.8424 -6251.9201 7.0777062 3678.2462 619.98371 -10550.15 0 339.2034 -0.0014012558 -0.001417629 + 61970 -6244.8677 -6251.7174 6.8496948 3675.5508 624.80774 -10552.076 0 328.27581 -0.00092051013 -0.00093789345 + 61980 -6244.9085 -6251.5332 6.6247308 3674.8132 629.24273 -10555.589 0 317.49427 -0.00051710462 -0.00053511762 + 61990 -6244.9598 -6251.3832 6.4233207 3676.8963 632.6503 -10560.93 0 307.84157 -0.00026611852 -0.0002843983 + 62000 -6245.02 -6251.3005 6.2804736 3681.849 634.65268 -10567.802 0 300.99553 -0.00019968042 -0.00021768032 + 62010 -6245.0854 -6251.3331 6.2477031 3688.8471 635.18095 -10575.361 0 299.42499 -0.00030199064 -0.00031945734 + 62020 -6245.148 -6251.5289 6.3808895 3696.3946 634.44381 -10582.367 0 305.80803 -0.00051812866 -0.00053594646 + 62030 -6245.2017 -6251.9072 6.7055196 3702.7277 632.83491 -10587.47 0 321.36612 -0.00077376959 -0.0007941879 + 62040 -6245.2546 -6252.4305 7.1758753 3706.2926 630.80966 -10589.533 0 343.90821 -0.000998853 -0.0010244477 + 62050 -6245.3378 -6252.9949 7.6571163 3706.1525 628.76551 -10587.913 0 366.97198 -0.001147094 -0.001178746 + 62060 -6245.4992 -6253.4563 7.9570325 3702.2109 626.95529 -10582.622 0 381.34564 -0.0012053656 -0.0012405794 + 62070 -6245.7766 -6253.692 7.9154038 3695.1955 625.45238 -10574.34 0 379.35056 -0.0011911037 -0.0012245413 + 62080 -6246.1641 -6253.6692 7.505158 3686.4353 624.17331 -10564.278 0 359.68928 -0.0011408805 -0.0011676638 + 62090 -6246.6082 -6253.4631 6.85485 3677.5347 622.95061 -10553.948 0 328.52287 -0.0010966816 -0.00111601 + 62100 -6247.0434 -6253.2017 6.1583272 3670.054 621.63102 -10544.887 0 295.14159 -0.0010948815 -0.0011104374 + 62110 -6247.4359 -6252.9895 5.5536623 3665.2307 620.16038 -10538.381 0 266.16266 -0.0011583529 -0.0011749782 + 62120 -6247.7937 -6252.8711 5.0774237 3663.7507 618.6214 -10535.243 0 243.33863 -0.0012905303 -0.0013103365 + 62130 -6248.142 -6252.8521 4.7100902 3665.6085 617.21555 -10535.676 0 225.73395 -0.0014725139 -0.0014937817 + 62140 -6248.4924 -6252.9371 4.4446538 3670.12 616.20619 -10539.263 0 213.01275 -0.0016659091 -0.0016852687 + 62150 -6248.8331 -6253.1419 4.3088073 3676.1153 615.85004 -10545.107 0 206.50222 -0.0018223759 -0.0018380036 + 62160 -6249.1421 -6253.469 4.3268057 3682.2624 616.33741 -10552.069 0 207.36481 -0.0018973549 -0.0019104257 + 62170 -6249.4082 -6253.8718 4.4636188 3687.4117 617.74859 -10559.032 0 213.92166 -0.001862986 -0.0018763647 + 62180 -6249.6399 -6254.2497 4.609831 3690.8445 620.02667 -10565.121 0 220.92897 -0.001715557 -0.0017310807 + 62190 -6249.8558 -6254.487 4.6311902 3692.3616 622.96793 -10569.817 0 221.95262 -0.0014756044 -0.0014923833 + 62200 -6250.0656 -6254.5165 4.4509764 3692.2227 626.2348 -10572.974 0 213.31576 -0.0011821235 -0.0011972842 + 62210 -6250.2577 -6254.3613 4.1035914 3690.9975 629.39565 -10574.754 0 196.66713 -0.00088409605 -0.00089527563 + 62220 -6250.4064 -6254.1252 3.7187834 3689.3941 631.99019 -10575.509 0 178.22496 -0.00063198112 -0.00063946707 + 62230 -6250.4903 -6253.9386 3.4483447 3688.0973 633.61136 -10575.647 0 165.26403 -0.00047002602 -0.00047682587 + 62240 -6250.5076 -6253.8932 3.3855231 3687.622 633.98703 -10575.502 0 162.25326 -0.00042912758 -0.00043893688 + 62250 -6250.4785 -6254.0035 3.5249456 3688.1824 633.04078 -10575.227 0 168.93517 -0.00052042185 -0.0005349886 + 62260 -6250.4319 -6254.2123 3.7804288 3689.5995 630.91335 -10574.725 0 181.17936 -0.00073100061 -0.00074876612 + 62270 -6250.3865 -6254.4317 4.0452441 3691.2934 627.93627 -10573.661 0 193.87079 -0.001023878 -0.0010409646 + 62280 -6250.3363 -6254.5922 4.2558951 3692.4024 624.56277 -10571.557 0 203.96637 -0.0013439779 -0.0013570289 + 62290 -6250.2514 -6254.6668 4.4154206 3692.0343 621.2756 -10567.977 0 211.61173 -0.0016302639 -0.0016391277 + 62300 -6250.0979 -6254.6583 4.5603259 3689.5855 618.49759 -10562.741 0 218.5564 -0.0018312171 -0.0018392634 + 62310 -6249.8619 -6254.567 4.7050984 3685.0024 616.5266 -10556.096 0 225.49472 -0.0019180951 -0.0019297105 + 62320 -6249.5584 -6254.3789 4.8204892 3678.8675 615.50575 -10548.752 0 231.02489 -0.0018904316 -0.0019076582 + 62330 -6249.2164 -6254.0831 4.8666681 3672.2737 615.42902 -10541.786 0 233.23804 -0.0017719863 -0.0017930313 + 62340 -6248.8529 -6253.6997 4.8467654 3666.5513 616.17401 -10536.425 0 232.28419 -0.0016002654 -0.0016209856 + 62350 -6248.4571 -6253.2854 4.8282654 3662.9647 617.54913 -10533.799 0 231.39757 -0.0014151365 -0.0014322075 + 62360 -6247.9958 -6252.9056 4.9097846 3662.4639 619.3408 -10534.71 0 235.30443 -0.0012507268 -0.001264062 + 62370 -6247.4404 -6252.5942 5.153769 3665.5155 621.35079 -10539.461 0 246.99753 -0.0011313717 -0.0011440452 + 62380 -6246.8003 -6252.3317 5.5313627 3671.9911 623.41986 -10547.743 0 265.09394 -0.0010694732 -0.001085155 + 62390 -6246.1383 -6252.0673 5.9289837 3681.0945 625.43976 -10558.602 0 284.15017 -0.0010626184 -0.0010823971 + 62400 -6245.5433 -6251.7785 6.2351794 3691.3789 627.35489 -10570.512 0 298.82478 -0.0010901568 -0.0011115583 + 62410 -6245.072 -6251.5185 6.4465753 3700.95 629.15116 -10581.62 0 308.95606 -0.0011142984 -0.0011337354 + 62420 -6244.7189 -6251.3963 6.6773984 3707.8964 630.82756 -10590.12 0 320.0184 -0.0010916351 -0.0011078325 + 62430 -6244.4469 -6251.4932 7.0462975 3710.8237 632.35219 -10594.669 0 337.69811 -0.00099296958 -0.0010075844 + 62440 -6244.2324 -6251.7965 7.5641244 3709.2548 633.61799 -10594.669 0 362.51528 -0.0008197747 -0.00083503731 + 62450 -6244.077 -6252.2128 8.135868 3703.7242 634.42494 -10590.362 0 389.91645 -0.00060690736 -0.00062368122 + 62460 -6243.988 -6252.6257 8.6377365 3695.5755 634.51286 -10582.714 0 413.9688 -0.00041175853 -0.00042997139 + 62470 -6243.9672 -6252.9331 8.9659049 3686.5827 633.64322 -10573.159 0 429.69647 -0.00029707996 -0.00031693489 + 62480 -6244.0151 -6253.0501 9.0350496 3678.5133 631.6967 -10563.26 0 433.01027 -0.00031353177 -0.00033540189 + 62490 -6244.1345 -6252.9159 8.7814765 3672.7198 628.74225 -10554.378 0 420.85763 -0.00048481132 -0.00050805104 + 62500 -6244.3203 -6252.5257 8.2054029 3669.846 625.05031 -10547.422 0 393.24895 -0.00079807133 -0.00082062851 + 62510 -6244.5465 -6251.9663 7.4197749 3669.7325 621.05205 -10542.751 0 355.59725 -0.001203431 -0.0012233339 + 62520 -6244.7692 -6251.4099 6.6406218 3671.5594 617.26642 -10540.236 0 318.25586 -0.0016248681 -0.0016423915 + 62530 -6244.9513 -6251.0461 6.0947955 3674.1825 614.21815 -10539.447 0 292.0968 -0.0019798782 -0.0019979539 + 62540 -6245.0879 -6250.9902 5.902278 3676.528 612.35709 -10539.875 0 282.87028 -0.0022004907 -0.002222401 + 62550 -6245.2099 -6251.2348 6.0249064 3677.8948 611.98093 -10541.111 0 288.74732 -0.0022479804 -0.0022742508 + 62560 -6245.3594 -6251.6768 6.3174421 3678.0845 613.17006 -10542.931 0 302.76727 -0.0021181753 -0.002145664 + 62570 -6245.559 -6252.1878 6.6288191 3677.3748 615.75456 -10545.317 0 317.6902 -0.0018392491 -0.0018634321 + 62580 -6245.7987 -6252.6691 6.8704236 3676.4005 619.33297 -10548.403 0 329.26925 -0.0014653435 -0.0014838186 + 62590 -6246.0494 -6253.0648 7.0154664 3675.984 623.34515 -10552.394 0 336.22051 -0.0010674306 -0.0010817048 + 62600 -6246.2877 -6253.3463 7.0585796 3676.9219 627.18192 -10557.45 0 338.28674 -0.00072083872 -0.00073514266 + 62610 -6246.5129 -6253.4963 6.983386 3679.7414 630.30508 -10563.543 0 334.68304 -0.00048959661 -0.00050779489 + 62620 -6246.7442 -6253.5058 6.7615861 3684.4773 632.35127 -10570.334 0 324.05314 -0.00041062636 -0.00043339875 + 62630 -6247.0034 -6253.3842 6.3808627 3690.5499 633.19544 -10577.13 0 305.80675 -0.00048302001 -0.00050719217 + 62640 -6247.293 -6253.1748 5.881835 3696.8153 632.95528 -10582.945 0 281.89054 -0.00066735788 -0.00068798451 + 62650 -6247.5872 -6252.9577 5.3704522 3701.8176 631.93208 -10586.707 0 257.3822 -0.00089725267 -0.00091118362 + 62660 -6247.845 -6252.8243 4.9793168 3704.1997 630.50411 -10587.528 0 238.6368 -0.0011007973 -0.0011091001 + 62670 -6248.0366 -6252.8294 4.7928389 3703.1404 629.00549 -10584.975 0 229.69973 -0.0012248082 -0.0012320388 + 62680 -6248.1648 -6252.9575 4.792671 3698.646 627.63027 -10579.234 0 229.69168 -0.0012522604 -0.0012630561 + 62690 -6248.2614 -6253.1343 4.8728982 3691.5702 626.3944 -10571.099 0 233.53662 -0.0012054041 -0.0012211095 + 62700 -6248.3627 -6253.2812 4.9185085 3683.3572 625.16955 -10561.808 0 235.72253 -0.0011334748 -0.0011514733 + 62710 -6248.4829 -6253.3694 4.8864251 3675.623 623.77544 -10552.768 0 234.18491 -0.0010912727 -0.0011074158 + 62720 -6248.6055 -6253.4317 4.8262072 3669.7423 622.09252 -10545.267 0 231.29893 -0.001118568 -0.0011306123 + 62730 -6248.699 -6253.527 4.8279738 3666.5686 620.14843 -10540.244 0 231.3836 -0.0012281269 -0.0012374533 + 62740 -6248.7423 -6253.6834 4.941118 3666.3326 618.14432 -10538.16 0 236.8061 -0.0014044572 -0.0014148556 + 62750 -6248.7416 -6253.8672 5.1255744 3668.689 616.41409 -10538.97 0 245.64628 -0.0016105144 -0.0016250934 + 62760 -6248.725 -6253.9971 5.2721937 3672.8526 615.33463 -10542.184 0 252.67311 -0.0017980587 -0.0018167512 + 62770 -6248.7192 -6253.9988 5.2795886 3677.7868 615.22032 -10547.006 0 253.02751 -0.0019185843 -0.0019383161 + 62780 -6248.7258 -6253.8558 5.1299716 3682.4285 616.23551 -10552.52 0 245.85702 -0.0019337171 -0.0019511948 + 62790 -6248.7182 -6253.6194 4.9012033 3685.9358 618.34888 -10557.904 0 234.89316 -0.001824691 -0.0018394188 + 62800 -6248.6634 -6253.3673 4.7039307 3687.9038 621.33578 -10562.607 0 225.43875 -0.0015992522 -0.001614001 + 62810 -6248.5493 -6253.1516 4.6022847 3688.4579 624.8192 -10566.429 0 220.56731 -0.0012926953 -0.001310917 + 62820 -6248.3911 -6252.9828 4.5916476 3688.1606 628.33404 -10569.477 0 220.05752 -0.0009604622 -0.00098301615 + 62830 -6248.2122 -6252.8597 4.6475395 3687.7576 631.40254 -10572.02 0 222.73617 -0.00066363102 -0.00068778493 + 62840 -6248.0156 -6252.8055 4.7898522 3687.88 633.61155 -10574.297 0 229.55659 -0.00045290164 -0.00047442254 + 62850 -6247.7704 -6252.8678 5.0974424 3688.8282 634.67942 -10576.375 0 244.29804 -0.00035759077 -0.00037413878 + 62860 -6247.4223 -6253.0781 5.6558027 3690.5058 634.49876 -10578.083 0 271.0578 -0.00038294211 -0.00039613678 + 62870 -6246.9256 -6253.3955 6.4698627 3692.4859 633.14683 -10579.028 0 310.07212 -0.0005144781 -0.00052904411 + 62880 -6246.2833 -6253.6813 7.3980052 3694.1496 630.86522 -10578.696 0 354.55392 -0.00072519594 -0.0007454882 + 62890 -6245.5658 -6253.7355 8.1696543 3694.83 628.01418 -10576.58 0 391.53567 -0.00098123153 -0.0010074542 + 62900 -6244.8816 -6253.3983 8.5166884 3693.928 625.00558 -10572.332 0 408.16749 -0.0012442431 -0.0012716847 + 62910 -6244.3079 -6252.6598 8.3519169 3691.0214 622.22426 -10565.905 0 400.27072 -0.0014731602 -0.0014959052 + 62920 -6243.8442 -6251.6902 7.8460174 3686.0071 619.95968 -10557.657 0 376.02518 -0.0016300115 -0.0016463171 + 62930 -6243.4353 -6250.7555 7.3201197 3679.2598 618.37272 -10548.388 0 350.82121 -0.0016904935 -0.001704764 + 62940 -6243.0356 -6250.0771 7.0414711 3671.7062 617.50526 -10539.289 0 337.4668 -0.0016533751 -0.001672592 + 62950 -6242.6505 -6249.7393 7.0887356 3664.7066 617.31561 -10531.762 0 339.73199 -0.0015415729 -0.0015691966 + 62960 -6242.3254 -6249.6977 7.3722529 3659.7307 617.71381 -10527.142 0 353.31973 -0.0013931471 -0.0014257502 + 62970 -6242.098 -6249.8622 7.7642609 3657.9403 618.5811 -10526.384 0 372.10695 -0.0012469585 -0.001276627 + 62980 -6241.9577 -6250.1793 8.2216314 3659.858 619.77778 -10529.815 0 394.02671 -0.0011305519 -0.0011515223 + 62990 -6241.8508 -6250.6452 8.7944351 3665.2594 621.1567 -10537.061 0 421.47868 -0.001055958 -0.0010702026 + 63000 -6241.7353 -6251.2391 9.5038129 3673.3023 622.59478 -10547.136 0 455.47604 -0.0010234652 -0.0010399113 + 63010 -6241.6417 -6251.846 10.204282 3682.7688 624.03185 -10558.647 0 489.04643 -0.001027121 -0.0010541389 + 63020 -6241.6709 -6252.2702 10.599264 3692.2584 625.48664 -10570.015 0 507.9762 -0.0010547492 -0.001092224 + 63030 -6241.9121 -6252.3597 10.447588 3700.3011 627.0263 -10579.687 0 500.70702 -0.001082864 -0.0011216751 + 63040 -6242.3539 -6252.1347 9.7808333 3705.5126 628.69774 -10586.345 0 468.75241 -0.0010762264 -0.0011062123 + 63050 -6242.8834 -6251.7873 8.9038682 3706.9022 630.45914 -10589.149 0 426.72332 -0.0010007499 -0.0010196165 + 63060 -6243.3767 -6251.5386 8.1618891 3704.247 632.15041 -10587.936 0 391.16352 -0.00084538549 -0.00086005744 + 63070 -6243.7871 -6251.48 7.6929749 3698.2939 633.5146 -10583.289 0 368.69052 -0.00063713373 -0.00065677157 + 63080 -6244.1535 -6251.536 7.3825016 3690.595 634.25429 -10576.385 0 353.8109 -0.00043632002 -0.00046401041 + 63090 -6244.5372 -6251.5654 7.0282022 3683.0128 634.09976 -10568.678 0 336.83088 -0.00031358281 -0.0003440488 + 63100 -6244.9538 -6251.5007 6.5469121 3677.1321 632.87421 -10561.507 0 313.76476 -0.00032217654 -0.00034677444 + 63110 -6245.3578 -6251.4089 6.0511074 3673.8482 630.549 -10555.806 0 290.00302 -0.00048008986 -0.00049422485 + 63120 -6245.6812 -6251.4356 5.7543838 3673.265 627.28271 -10551.983 0 275.78236 -0.00076771288 -0.00077448612 + 63130 -6245.8888 -6251.6885 5.7997527 3674.8539 623.43287 -10549.975 0 277.95669 -0.0011369209 -0.0011444037 + 63140 -6246.0059 -6252.1541 6.1481648 3677.7173 619.52478 -10549.396 0 294.65456 -0.0015237408 -0.0015383971 + 63150 -6246.102 -6252.7084 6.6064358 3680.8242 616.16797 -10549.701 0 316.61747 -0.001859724 -0.0018813841 + 63160 -6246.2404 -6253.2037 6.9633184 3683.1941 613.92986 -10550.328 0 333.72129 -0.0020821536 -0.0021045445 + 63170 -6246.4343 -6253.5537 7.1193919 3684.0793 613.20073 -10550.834 0 341.20121 -0.0021453449 -0.0021615557 + 63180 -6246.6422 -6253.7517 7.109563 3683.1712 614.09539 -10551.018 0 340.73015 -0.0020328932 -0.0020411215 + 63190 -6246.8061 -6253.8227 7.0165984 3680.7659 616.42552 -10551.014 0 336.27476 -0.0017664169 -0.0017713925 + 63200 -6246.898 -6253.7636 6.8655476 3677.7661 619.74978 -10551.279 0 329.03556 -0.0014046862 -0.0014139488 + 63210 -6246.9381 -6253.5301 6.5919241 3675.4462 623.48276 -10552.459 0 315.92199 -0.0010301014 -0.0010482664 + 63220 -6246.9754 -6253.0812 6.1058525 3675.0261 627.02881 -10555.136 0 292.62671 -0.00072536301 -0.00075067291 + 63230 -6247.0472 -6252.4479 5.4007077 3677.21 629.90404 -10559.562 0 258.83222 -0.00054837299 -0.000573979 + 63240 -6247.149 -6251.773 4.6240324 3681.8883 631.81633 -10565.478 0 221.60958 -0.0005153845 -0.00053449964 + 63250 -6247.2346 -6251.2806 4.0460347 3688.1412 632.68978 -10572.112 0 193.90868 -0.00059991445 -0.00061110546 + 63260 -6247.2494 -6251.1716 3.9221382 3694.5516 632.63778 -10578.361 0 187.97087 -0.00074802195 -0.00075635344 + 63270 -6247.1732 -6251.5056 4.3323894 3699.673 631.89902 -10583.078 0 207.63241 -0.00090201334 -0.00091471814 + 63280 -6247.0379 -6252.1626 5.124691 3702.4281 630.75273 -10585.343 0 245.60395 -0.0010202485 -0.0010404569 + 63290 -6246.9035 -6252.9214 6.0178809 3702.2933 629.43402 -10584.649 0 288.41062 -0.0010848378 -0.0011090541 + 63300 -6246.8101 -6253.5875 6.777377 3699.2944 628.07688 -10580.959 0 324.80993 -0.0010984793 -0.0011200846 + 63310 -6246.7519 -6254.0641 7.3122069 3693.931 626.70755 -10574.703 0 350.44199 -0.0010776578 -0.0010929292 + 63320 -6246.6957 -6254.3273 7.6316061 3687.0968 625.28761 -10566.712 0 365.74939 -0.0010472439 -0.0010582451 + 63330 -6246.6238 -6254.3633 7.7394812 3679.9633 623.77973 -10558.106 0 370.91937 -0.0010356736 -0.0010477741 + 63340 -6246.5547 -6254.1434 7.5886805 3673.771 622.20116 -10550.116 0 363.69215 -0.0010677003 -0.0010845566 + 63350 -6246.5234 -6253.6593 7.13597 3669.5442 620.64367 -10543.847 0 341.99572 -0.0011550747 -0.0011757693 + 63360 -6246.5448 -6252.9744 6.4295758 3667.8351 619.26079 -10540.07 0 308.14135 -0.0012898424 -0.0013103244 + 63370 -6246.5974 -6252.2298 5.6324071 3668.6188 618.23674 -10539.085 0 269.93655 -0.0014450359 -0.0014619637 + 63380 -6246.6391 -6251.5919 4.9528679 3671.3851 617.75106 -10540.728 0 237.36922 -0.0015830801 -0.0015964388 + 63390 -6246.6373 -6251.1798 4.5425496 3675.3617 617.94466 -10544.486 0 217.70446 -0.0016675792 -0.0016801441 + 63400 -6246.5853 -6251.0272 4.4419232 3679.754 618.88781 -10549.669 0 212.88189 -0.0016731705 -0.0016878568 + 63410 -6246.4959 -6251.1004 4.6045345 3683.9111 620.55315 -10555.565 0 220.67513 -0.001590541 -0.0016081605 + 63420 -6246.3819 -6251.3471 4.965136 3687.3974 622.80209 -10561.547 0 237.95718 -0.0014267255 -0.0014458184 + 63430 -6246.2407 -6251.7324 5.4916976 3689.9976 625.3942 -10567.124 0 263.19296 -0.0012024203 -0.0012208875 + 63440 -6246.052 -6252.2359 6.183864 3691.6922 628.02249 -10571.951 0 296.36546 -0.00094807134 -0.00096498451 + 63450 -6245.7927 -6252.8186 7.0258457 3692.6194 630.36656 -10575.805 0 336.71795 -0.00069960133 -0.0007156853 + 63460 -6245.4545 -6253.3933 7.9387758 3693.0165 632.14842 -10578.558 0 380.47068 -0.00049358947 -0.00051022571 + 63470 -6245.0533 -6253.8329 8.7795664 3693.1308 633.1758 -10580.139 0 420.76608 -0.00036145549 -0.00037947356 + 63480 -6244.6214 -6254.0132 9.3917464 3693.1199 633.36515 -10580.498 0 450.10518 -0.00032331616 -0.00034285204 + 63490 -6244.194 -6253.8589 9.6649018 3692.9867 632.74411 -10579.59 0 463.19633 -0.00038351086 -0.00040471291 + 63500 -6243.8002 -6253.3604 9.5601514 3692.5805 631.43687 -10577.378 0 458.1761 -0.00052945754 -0.00055272392 + 63510 -6243.4621 -6252.5679 9.1058103 3691.6542 629.6362 -10573.858 0 436.40152 -0.00073389468 -0.00075912634 + 63520 -6243.1912 -6251.583 8.3917816 3689.9469 627.56933 -10569.099 0 402.18126 -0.00095981855 -0.00098564644 + 63530 -6242.9832 -6250.5514 7.5682701 3687.2801 625.46571 -10563.297 0 362.71397 -0.0011675805 -0.0011916718 + 63540 -6242.8149 -6249.6465 6.8316549 3683.6572 623.53093 -10556.835 0 327.41124 -0.0013230562 -0.0013435043 + 63550 -6242.6491 -6249.0362 6.3871015 3679.3428 621.92607 -10550.305 0 306.10574 -0.0014048674 -0.001421711 + 63560 -6242.4445 -6248.839 6.3944763 3674.8873 620.75185 -10544.478 0 306.45918 -0.0014087886 -0.0014245629 + 63570 -6242.1704 -6249.0828 6.9123671 3671.0697 620.04108 -10540.194 0 331.27942 -0.0013484929 -0.0013671903 + 63580 -6241.8248 -6249.6831 7.8583519 3668.7531 619.76496 -10538.201 0 376.61632 -0.0012523352 -0.0012769722 + 63590 -6241.447 -6250.4593 9.0122854 3668.6625 619.85665 -10538.978 0 431.91928 -0.0011556375 -0.0011857378 + 63600 -6241.1081 -6251.1988 10.09068 3671.1254 620.24819 -10542.572 0 483.602 -0.0010884937 -0.0011197634 + 63610 -6240.8728 -6251.7495 10.876687 3675.8699 620.90857 -10548.528 0 521.27189 -0.0010624913 -0.0010901913 + 63620 -6240.7646 -6252.0731 11.308562 3682.0151 621.86492 -10555.953 0 541.96974 -0.0010643977 -0.0010883207 + 63630 -6240.7805 -6252.2038 11.423304 3688.3316 623.18961 -10563.725 0 547.46883 -0.001063915 -0.0010894785 + 63640 -6240.9407 -6252.1503 11.209679 3693.6544 624.94618 -10570.751 0 537.23069 -0.0010319575 -0.0010646206 + 63650 -6241.2942 -6251.8726 10.578391 3697.1949 627.10939 -10576.177 0 506.97587 -0.00095519601 -0.0009936316 + 63660 -6241.8506 -6251.3807 9.5300779 3698.6098 629.50203 -10579.493 0 456.7348 -0.00083704198 -0.00087360868 + 63670 -6242.5261 -6250.8299 8.3038273 3697.9362 631.79878 -10580.565 0 397.96599 -0.00069120667 -0.00071988278 + 63680 -6243.1895 -6250.4628 7.2732333 3695.5584 633.61063 -10579.632 0 348.57415 -0.0005393835 -0.00056194192 + 63690 -6243.762 -6250.4426 6.6806038 3692.1905 634.60408 -10577.237 0 320.17202 -0.0004129054 -0.00043660739 + 63700 -6244.2579 -6250.7479 6.4900454 3688.7424 634.5893 -10574.08 0 311.03939 -0.00034894065 -0.00037901029 + 63710 -6244.7413 -6251.2166 6.4753323 3686.0418 633.54636 -10570.805 0 310.33426 -0.00037767488 -0.00041234046 + 63720 -6245.2566 -6251.6809 6.4242965 3684.5423 631.60394 -10567.827 0 307.88834 -0.00050768078 -0.00053974523 + 63730 -6245.7903 -6252.0751 6.2848104 3684.1863 629.00115 -10565.263 0 301.20338 -0.00071955147 -0.00074247925 + 63740 -6246.284 -6252.4454 6.16143 3684.4997 626.05185 -10562.997 0 295.2903 -0.00097216954 -0.00098556166 + 63750 -6246.6819 -6252.8672 6.1852926 3684.8642 623.113 -10560.844 0 296.43393 -0.0012178678 -0.0012279862 + 63760 -6246.9758 -6253.342 6.366179 3684.8172 620.54721 -10558.706 0 305.10302 -0.0014178295 -0.0014326677 + 63770 -6247.2125 -6253.7639 6.5514388 3684.2149 618.67204 -10556.651 0 313.98171 -0.0015499893 -0.0015728726 + 63780 -6247.4554 -6253.986 6.5306847 3683.1937 617.70336 -10554.883 0 312.98705 -0.0016076024 -0.0016347009 + 63790 -6247.7326 -6253.9285 6.1959145 3682.0171 617.71389 -10553.66 0 296.94299 -0.0015931158 -0.0016168494 + 63800 -6248.0156 -6253.636 5.6204147 3680.9512 618.62629 -10553.214 0 269.36181 -0.0015137788 -0.0015289752 + 63810 -6248.2449 -6253.2463 5.0013914 3680.2455 620.24253 -10553.734 0 239.69474 -0.0013817322 -0.0013894233 + 63820 -6248.3771 -6252.905 4.5279042 3680.1748 622.29406 -10555.374 0 217.00258 -0.0012163198 -0.0012225333 + 63830 -6248.4149 -6252.6938 4.2788435 3681.044 624.49257 -10558.23 0 205.06619 -0.0010443415 -0.0010553093 + 63840 -6248.4019 -6252.615 4.2131286 3683.0966 626.56995 -10562.282 0 201.91676 -0.00089555804 -0.00091312279 + 63850 -6248.3903 -6252.633 4.2427051 3686.3559 628.30723 -10567.296 0 203.33423 -0.00079416146 -0.00081468376 + 63860 -6248.4039 -6252.731 4.3271092 3690.4944 629.55626 -10572.782 0 207.37935 -0.00075016207 -0.00076769014 + 63870 -6248.4197 -6252.9353 4.5155574 3694.8325 630.25388 -10578.022 0 216.41085 -0.00075593457 -0.00076734519 + 63880 -6248.3857 -6253.2811 4.8954516 3698.5065 630.4238 -10582.211 0 234.61751 -0.00079102207 -0.00079913529 + 63890 -6248.2636 -6253.7412 5.4775713 3700.7419 630.16205 -10584.645 0 262.51595 -0.00083310285 -0.00084493405 + 63900 -6248.0682 -6254.183 6.1147846 3701.0922 629.60649 -10584.882 0 293.05479 -0.000868295 -0.00088940556 + 63910 -6247.8644 -6254.4103 6.545933 3699.5201 628.89636 -10582.827 0 313.71784 -0.00089418332 -0.00092372364 + 63920 -6247.7192 -6254.277 6.5578243 3696.3097 628.13255 -10578.719 0 314.28774 -0.00091485741 -0.00094582808 + 63930 -6247.6462 -6253.7884 6.142152 3691.9193 627.35332 -10573.061 0 294.36639 -0.00093393383 -0.00095880582 + 63940 -6247.595 -6253.1064 5.5113674 3686.8966 626.53778 -10566.541 0 264.13565 -0.00095248503 -0.00096941235 + 63950 -6247.4952 -6252.4527 4.957453 3681.883 625.63689 -10559.973 0 237.58896 -0.00097286865 -0.00098711491 + 63960 -6247.312 -6251.9854 4.6733595 3677.6182 624.6162 -10554.22 0 223.97361 -0.0010028209 -0.0010223049 + 63970 -6247.0661 -6251.7416 4.6754622 3674.8397 623.49005 -10550.071 0 224.07438 -0.0010536142 -0.0010824499 + 63980 -6246.8071 -6251.6736 4.8664972 3674.0695 622.33601 -10548.079 0 233.22985 -0.0011316626 -0.0011669265 + 63990 -6246.5653 -6251.7309 5.1656232 3675.3987 621.29 -10548.42 0 247.56565 -0.0012292185 -0.0012633196 + 64000 -6246.319 -6251.9098 5.5908769 3678.4154 620.52673 -10550.852 0 267.94619 -0.0013216874 -0.0013482522 + 64010 -6246.0039 -6252.2305 6.226591 3682.3459 620.22875 -10554.805 0 298.41318 -0.001375268 -0.0013937885 + 64020 -6245.5595 -6252.6664 7.1069315 3686.3447 620.54601 -10559.557 0 340.60404 -0.0013615921 -0.0013772422 + 64030 -6244.9802 -6253.1021 8.1219577 3689.7756 621.55183 -10564.43 0 389.24978 -0.0012707833 -0.0012898956 + 64040 -6244.331 -6253.3663 9.0352938 3692.3429 623.20847 -10568.918 0 433.02197 -0.0011152952 -0.0011404335 + 64050 -6243.7138 -6253.3179 9.604092 3694.0471 625.35771 -10572.723 0 460.28198 -0.00092351561 -0.00095192753 + 64060 -6243.2083 -6252.9192 9.710942 3695.0399 627.74289 -10575.702 0 465.40283 -0.0007285743 -0.00075478993 + 64070 -6242.8313 -6252.2521 9.4207644 3695.4826 630.05589 -10577.791 0 451.49589 -0.00055888202 -0.00057928708 + 64080 -6242.543 -6251.4732 8.9301764 3695.4828 631.99645 -10578.952 0 427.98416 -0.00043369391 -0.00044962189 + 64090 -6242.2921 -6250.7329 8.4408143 3695.1195 633.33097 -10579.183 0 404.53118 -0.0003632681 -0.00037999377 + 64100 -6242.0616 -6250.1088 8.04716 3694.4857 633.93497 -10578.529 0 385.66506 -0.00035075313 -0.00037293914 + 64110 -6241.8752 -6249.6038 7.7285454 3693.6717 633.80446 -10577.08 0 370.39526 -0.00039267916 -0.00042017424 + 64120 -6241.7624 -6249.2067 7.4443225 3692.6918 633.03285 -10574.931 0 356.7737 -0.00047758225 -0.00050538997 + 64130 -6241.7192 -6248.9572 7.2379744 3691.4466 631.76469 -10572.169 0 346.88434 -0.00058579955 -0.0006083328 + 64140 -6241.7 -6248.9561 7.2560805 3689.7901 630.14577 -10568.892 0 347.75209 -0.00069400531 -0.00071013574 + 64150 -6241.6474 -6249.3088 7.6613432 3687.68 628.29349 -10565.282 0 367.17456 -0.00078433404 -0.00079918159 + 64160 -6241.5431 -6250.0344 8.4913266 3685.3103 626.3054 -10561.65 0 406.95202 -0.00085286964 -0.00087455839 + 64170 -6241.4483 -6251.0048 9.5565753 3683.1144 624.29907 -10558.418 0 458.00471 -0.00091057589 -0.00094377943 + 64180 -6241.5003 -6251.9734 10.473142 3681.5945 622.44716 -10556.015 0 501.93172 -0.00097385942 -0.001015085 + 64190 -6241.8459 -6252.698 10.852089 3681.054 620.96901 -10554.721 0 520.09301 -0.0010498248 -0.0010892841 + 64200 -6242.5414 -6253.0707 10.529292 3681.4228 620.07348 -10554.567 0 504.62274 -0.0011272344 -0.0011568422 + 64210 -6243.5028 -6253.1426 9.6397734 3682.3415 619.88799 -10555.372 0 461.99203 -0.0011818572 -0.0012019803 + 64220 -6244.5578 -6253.0295 8.4717787 3683.4502 620.41708 -10556.897 0 406.01517 -0.0011929242 -0.0012108087 + 64230 -6245.5468 -6252.8147 7.2679436 3684.6219 621.54648 -10558.983 0 348.32064 -0.0011564456 -0.0011786182 + 64240 -6246.3827 -6252.5396 6.1568453 3685.9541 623.07959 -10561.573 0 295.07057 -0.0010852526 -0.0011124151 + 64250 -6247.0488 -6252.2525 5.203752 3687.5933 624.78448 -10564.63 0 249.393 -0.00099945916 -0.0010275575 + 64260 -6247.5659 -6252.0357 4.4697362 3689.5741 626.43654 -10568.046 0 214.21484 -0.00091680746 -0.00094109864 + 64270 -6247.9621 -6251.984 4.0219079 3691.7685 627.85207 -10571.605 0 192.75239 -0.00084787719 -0.00086609882 + 64280 -6248.2586 -6252.1626 3.9039383 3693.9272 628.91167 -10575.001 0 187.09863 -0.00079597096 -0.00080917702 + 64290 -6248.4729 -6252.5715 4.0986021 3695.764 629.57056 -10577.906 0 196.42801 -0.00075964511 -0.00077099937 + 64300 -6248.627 -6253.136 4.5089638 3697.041 629.85228 -10580.029 0 216.09484 -0.00073598224 -0.00074847388 + 64310 -6248.7506 -6253.7262 4.9755524 3697.6214 629.82489 -10581.172 0 238.45639 -0.00072317158 -0.00073757965 + 64320 -6248.872 -6254.2058 5.3338568 3697.4738 629.56541 -10581.245 0 255.62835 -0.00072145981 -0.00073597559 + 64330 -6249.0011 -6254.4875 5.4863522 3696.6444 629.1267 -10580.259 0 262.93678 -0.00073253551 -0.00074453392 + 64340 -6249.1232 -6254.5602 5.4369814 3695.2359 628.52432 -10578.32 0 260.57066 -0.00075849351 -0.0007671156 + 64350 -6249.2114 -6254.4702 5.2587976 3693.4144 627.75091 -10575.636 0 252.03109 -0.00080130509 -0.00080856771 + 64360 -6249.2493 -6254.2757 5.0264588 3691.4179 626.80884 -10572.502 0 240.89611 -0.00086229107 -0.00087173417 + 64370 -6249.2433 -6254.0163 4.7729885 3689.5238 625.74042 -10569.28 0 228.74839 -0.00094053835 -0.00095463528 + 64380 -6249.2163 -6253.7126 4.4962656 3687.9745 624.63972 -10566.327 0 215.48627 -0.0010304476 -0.0010488299 + 64390 -6249.1906 -6253.3861 4.1955103 3686.9006 623.64078 -10563.928 0 201.07239 -0.0011200582 -0.001139692 + 64400 -6249.1724 -6253.0784 3.9060062 3686.2917 622.88783 -10562.258 0 187.19773 -0.001191901 -0.0012090137 + 64410 -6249.1449 -6252.8548 3.7098393 3686.0341 622.49848 -10561.387 0 177.79631 -0.0012270885 -0.0012397359 + 64420 -6249.0747 -6252.7849 3.7102169 3686.0064 622.53292 -10561.324 0 177.81441 -0.0012119453 -0.0012216303 + 64430 -6248.9297 -6252.9038 3.9740807 3686.189 622.97925 -10562.072 0 190.46024 -0.0011448848 -0.0011558824 + 64440 -6248.6996 -6253.1774 4.4777814 3686.7199 623.75735 -10563.655 0 214.60041 -0.0010398973 -0.0010563656 + 64450 -6248.4035 -6253.5076 5.1041622 3687.8382 624.7377 -10566.084 0 244.62009 -0.00092339176 -0.00094629245 + 64460 -6248.0761 -6253.7802 5.704083 3689.725 625.77102 -10569.276 0 273.37166 -0.00082438626 -0.00085075073 + 64470 -6247.7435 -6253.9176 6.1740612 3692.3336 626.72589 -10572.977 0 295.89566 -0.00076262453 -0.00078778018 + 64480 -6247.4107 -6253.8951 6.48444 3695.3209 627.52696 -10576.743 0 310.77075 -0.00074117861 -0.00076189963 + 64490 -6247.0696 -6253.7177 6.6481301 3698.1222 628.17683 -10580.017 0 318.6157 -0.000747122 -0.00076318214 + 64500 -6246.7146 -6253.3956 6.6809944 3700.1217 628.74331 -10582.261 0 320.19074 -0.00075867075 -0.00077223532 + 64510 -6246.3502 -6252.9447 6.5945471 3700.8395 629.31091 -10583.095 0 316.0477 -0.00075461052 -0.00076863539 + 64520 -6245.9895 -6252.3988 6.4093679 3700.078 629.91831 -10582.395 0 307.17287 -0.0007226236 -0.00073929706 + 64530 -6245.6503 -6251.8142 6.1639806 3697.9853 630.51355 -10580.313 0 295.41253 -0.0006643405 -0.000683933 + 64540 -6245.3483 -6251.2675 5.9191731 3695.0109 630.94939 -10577.228 0 283.67999 -0.00059535404 -0.00061592105 + 64550 -6245.0865 -6250.8514 5.7649177 3691.7645 631.02323 -10573.639 0 276.2872 -0.00053957424 -0.00055803506 + 64560 -6244.8461 -6250.6637 5.8176131 3688.8415 630.5496 -10570.055 0 278.81266 -0.00051986071 -0.00053416828 + 64570 -6244.5906 -6250.7774 6.1868348 3686.6879 629.44042 -10566.906 0 296.50784 -0.00054920901 -0.00056024473 + 64580 -6244.2876 -6251.197 6.9094085 3685.5425 627.7623 -10564.502 0 331.13762 -0.00062672291 -0.00063829628 + 64590 -6243.9388 -6251.8201 7.8812748 3685.4479 625.74573 -10563.014 0 377.71491 -0.00073960858 -0.00075593013 + 64600 -6243.5976 -6252.4444 8.8468362 3686.2833 623.73714 -10562.465 0 423.99003 -0.00086835688 -0.00089035922 + 64610 -6243.3465 -6252.8451 9.4986232 3687.7813 622.10575 -10562.732 0 455.22732 -0.0009907237 -0.0010144768 + 64620 -6243.2378 -6252.8956 9.6577861 3689.5405 621.13867 -10563.575 0 462.8553 -0.0010833266 -0.0011031104 + 64630 -6243.2481 -6252.6423 9.3941904 3691.0972 620.96814 -10564.708 0 450.22232 -0.0011245052 -0.001138785 + 64640 -6243.3027 -6252.2572 8.9545913 3692.0926 621.56218 -10565.912 0 429.15426 -0.0011016216 -0.0011160792 + 64650 -6243.3501 -6251.8963 8.5462318 3692.4532 622.77259 -10567.122 0 409.58338 -0.0010191403 -0.0010426666 + 64660 -6243.4128 -6251.5932 8.1804336 3692.4258 624.4014 -10568.42 0 392.05228 -0.00089916406 -0.00093566021 + 64670 -6243.5589 -6251.2834 7.7244177 3692.3971 626.24667 -10569.927 0 370.19744 -0.00077077334 -0.00081440918 + 64680 -6243.8257 -6250.9265 7.1007596 3692.6154 628.11727 -10571.659 0 340.30824 -0.00065462474 -0.00069351505 + 64690 -6244.1699 -6250.6016 6.4316953 3693.041 629.83341 -10573.476 0 308.24292 -0.0005546977 -0.00058022657 + 64700 -6244.4944 -6250.4788 5.9844599 3693.4466 631.23219 -10575.158 0 286.8089 -0.00046398928 -0.00047772937 + 64710 -6244.7245 -6250.69 5.9654965 3693.6808 632.18128 -10576.552 0 285.90007 -0.00037936849 -0.00039166841 + 64720 -6244.8682 -6251.2147 6.3465104 3693.8623 632.59065 -10577.668 0 304.16039 -0.00031302222 -0.000334569 + 64730 -6245.0111 -6251.8811 6.8700503 3694.3337 632.41675 -10578.632 0 329.25136 -0.00029055717 -0.00032392909 + 64740 -6245.2544 -6252.4821 7.2277361 3695.3997 631.66519 -10579.547 0 346.39367 -0.0003362513 -0.00037414114 + 64750 -6245.6405 -6252.9071 7.2665551 3697.0433 630.40058 -10580.351 0 348.25409 -0.00045576156 -0.00048696039 + 64760 -6246.1271 -6253.1895 7.0623738 3698.8298 628.76191 -10580.781 0 338.46858 -0.00062841091 -0.0006465003 + 64770 -6246.6278 -6253.4392 6.8114439 3700.0723 626.96921 -10580.481 0 326.44261 -0.00081400009 -0.00082181459 + 64780 -6247.083 -6253.7211 6.6381171 3700.1582 625.30476 -10579.184 0 318.13582 -0.0009690723 -0.00097566064 + 64790 -6247.4994 -6253.9809 6.4814579 3698.836 624.05966 -10576.877 0 310.62783 -0.0010625242 -0.0010754558 + 64800 -6247.926 -6254.0814 6.1553941 3696.3061 623.45379 -10573.841 0 295.00102 -0.0010830227 -0.0011025406 + 64810 -6248.3908 -6253.9206 5.5298029 3693.103 623.55811 -10570.582 0 265.01918 -0.0010373984 -0.0010571472 + 64820 -6248.8606 -6253.5331 4.6724743 3689.8903 624.25969 -10567.683 0 223.93118 -0.00094462516 -0.00095787385 + 64830 -6249.2622 -6253.0892 3.8270344 3687.3063 625.29501 -10565.691 0 183.41296 -0.00083047641 -0.00083608535 + 64840 -6249.54 -6252.7934 3.2533831 3685.8993 626.34086 -10565.033 0 155.92037 -0.00072403195 -0.00072719546 + 64850 -6249.6956 -6252.7649 3.0692726 3686.0881 627.12162 -10565.975 0 147.09677 -0.00065356789 -0.00066130505 + 64860 -6249.7817 -6252.9875 3.2058779 3688.0736 627.48983 -10568.551 0 153.64366 -0.00063971175 -0.00065518951 + 64870 -6249.8635 -6253.351 3.4875203 3691.7059 627.45514 -10572.512 0 167.14154 -0.00068714211 -0.00070726334 + 64880 -6249.977 -6253.7415 3.7644942 3696.3981 627.15941 -10577.299 0 180.41568 -0.00077931178 -0.00079726658 + 64890 -6250.107 -6254.1103 4.0032991 3701.1894 626.8132 -10582.113 0 191.86056 -0.00088110471 -0.00089192926 + 64900 -6250.2006 -6254.4711 4.2704727 3704.9925 626.62025 -10586.084 0 204.66501 -0.00095092996 -0.00095578822 + 64910 -6250.21 -6254.8337 4.6237192 3706.9441 626.71656 -10588.494 0 221.59457 -0.00095786365 -0.00096347576 + 64920 -6250.1345 -6255.1381 5.0036569 3706.6952 627.13895 -10588.972 0 239.80332 -0.00089503776 -0.0009083812 + 64930 -6250.0268 -6255.259 5.2321977 3704.4883 627.82244 -10587.57 0 250.75627 -0.00078153983 -0.00080405049 + 64940 -6249.9532 -6255.0903 5.1371632 3700.993 628.61877 -10584.702 0 246.20168 -0.00065200084 -0.00067830973 + 64950 -6249.94 -6254.6398 4.6998033 3697.0241 629.33052 -10580.994 0 225.24094 -0.00054116562 -0.00056356595 + 64960 -6249.9569 -6254.0451 4.0881384 3693.3155 629.75771 -10577.118 0 195.92653 -0.00047318464 -0.00048780928 + 64970 -6249.949 -6253.4937 3.5447397 3690.4363 629.74919 -10573.679 0 169.88382 -0.00045972336 -0.00046904059 + 64980 -6249.8841 -6253.1166 3.2324643 3688.7929 629.24496 -10571.154 0 154.91783 -0.00050309075 -0.00051304192 + 64990 -6249.7739 -6252.9383 3.1644263 3688.6152 628.29571 -10569.849 0 151.65706 -0.00059824195 -0.00061307441 + 65000 -6249.6562 -6252.9091 3.2529294 3689.891 627.05359 -10569.854 0 155.89863 -0.00073159916 -0.00075081726 + 65010 -6249.5601 -6252.9736 3.4134487 3692.3077 625.73761 -10571.019 0 163.59162 -0.0008796672 -0.00089911296 + 65020 -6249.4821 -6253.1165 3.6343546 3695.2824 624.58372 -10572.983 0 174.17867 -0.0010115444 -0.001027172 + 65030 -6249.3887 -6253.3558 3.967042 3698.104 623.79322 -10575.253 0 190.12291 -0.0010964549 -0.0011075942 + 65040 -6249.2424 -6253.6973 4.4548416 3700.1448 623.49329 -10577.335 0 213.50101 -0.0011134387 -0.001123075 + 65050 -6249.0315 -6254.0923 5.0608779 3701.0446 623.72009 -10578.857 0 242.54567 -0.0010583431 -0.0010703367 + 65060 -6248.7806 -6254.4365 5.6558941 3700.7872 624.42509 -10579.649 0 271.06218 -0.00094438761 -0.00095998274 + 65070 -6248.5326 -6254.6165 6.0839829 3699.6417 625.4961 -10579.754 0 291.5786 -0.00079612898 -0.00081279935 + 65080 -6248.314 -6254.5722 6.2582513 3698.0251 626.78092 -10579.378 0 299.93051 -0.00064062645 -0.00065440425 + 65090 -6248.1159 -6254.3204 6.204488 3696.3767 628.10697 -10578.804 0 297.35388 -0.00050112112 -0.00051034498 + 65100 -6247.9081 -6253.9234 6.0152735 3695.0994 629.29862 -10578.321 0 288.28566 -0.00039578263 -0.00040275911 + 65110 -6247.6713 -6253.4366 5.7653107 3694.5372 630.1971 -10578.171 0 276.30604 -0.00033909055 -0.00034818925 + 65120 -6247.4145 -6252.8885 5.4740118 3694.9237 630.68541 -10578.498 0 262.34536 -0.00034115225 -0.00035528539 + 65130 -6247.1642 -6252.3082 5.1440236 3696.2869 630.7144 -10579.31 0 246.53047 -0.00040315629 -0.00042184332 + 65140 -6246.9379 -6251.7624 4.8245114 3698.3676 630.32103 -10580.451 0 231.21766 -0.00051212631 -0.00053247984 + 65150 -6246.7284 -6251.3596 4.6311845 3700.6294 629.62719 -10581.616 0 221.95235 -0.00064011891 -0.00065943535 + 65160 -6246.5068 -6251.2094 4.7026245 3702.3869 628.81319 -10582.409 0 225.37615 -0.00075040057 -0.00076805237 + 65170 -6246.2412 -6251.3657 5.1245169 3703.0148 628.07166 -10582.452 0 245.5956 -0.00080865027 -0.00082593346 + 65180 -6245.9165 -6251.7888 5.8723046 3702.1603 627.55733 -10581.506 0 281.43378 -0.000794353 -0.00081268246 + 65190 -6245.5441 -6252.3563 6.81221 3699.8758 627.34824 -10579.58 0 326.47933 -0.00070765689 -0.00072688512 + 65200 -6245.1527 -6252.9179 7.7651599 3696.6262 627.42663 -10576.971 0 372.15003 -0.00056950228 -0.00058817237 + 65210 -6244.7699 -6253.3554 8.5854935 3693.178 627.6833 -10574.217 0 411.46502 -0.000416137 -0.00043360667 + 65220 -6244.4153 -6253.601 9.1856621 3690.422 627.94861 -10571.972 0 440.22847 -0.00029073591 -0.00030873017 + 65230 -6244.1138 -6253.6108 9.4969983 3689.1659 628.04856 -10570.825 0 455.14945 -0.00023349634 -0.00025476609 + 65240 -6243.9047 -6253.3446 9.439921 3689.9086 627.87259 -10571.126 0 452.41398 -0.00026994318 -0.00029496292 + 65250 -6243.8219 -6252.7916 8.9697099 3692.6335 627.42799 -10572.853 0 429.87883 -0.00039911424 -0.00042446833 + 65260 -6243.8597 -6252.0221 8.1624627 3696.7216 626.85665 -10575.6 0 391.19101 -0.00058759661 -0.00060830485 + 65270 -6243.9638 -6251.2016 7.2377902 3701.0866 626.40104 -10578.689 0 346.87552 -0.00077609626 -0.00078996199 + 65280 -6244.0629 -6250.5308 6.467925 3704.528 626.32513 -10581.384 0 309.97926 -0.00089920357 -0.00090897642 + 65290 -6244.1152 -6250.1528 6.037548 3706.1564 626.81314 -10583.122 0 289.35318 -0.00091025881 -0.00092145258 + 65300 -6244.1295 -6250.0993 5.9698435 3705.6884 627.88257 -10583.67 0 286.1084 -0.00079900044 -0.00081539425 + 65310 -6244.1457 -6250.3179 6.1721432 3703.4894 629.35082 -10583.158 0 295.80373 -0.00059368587 -0.00061465264 + 65320 -6244.1974 -6250.7418 6.5443396 3700.3861 630.87882 -10582.007 0 313.64147 -0.00034861072 -0.00037051557 + 65330 -6244.2898 -6251.3314 7.0416214 3697.3728 632.08084 -10580.785 0 337.47401 -0.00012534488 -0.00014532776 + 65340 -6244.4128 -6252.0504 7.6375554 3695.3365 632.6546 -10580.041 0 366.03451 2.3617841e-05 5.2660262e-06 + 65350 -6244.5722 -6252.8123 8.2400455 3694.8543 632.47421 -10580.141 0 394.90922 6.5331049e-05 4.6292902e-05 + 65360 -6244.8043 -6253.4697 8.6654089 3696.0647 631.61075 -10581.145 0 415.29502 -7.9419426e-06 -2.8962496e-05 + 65370 -6245.1523 -6253.8711 8.7188075 3698.6199 630.28532 -10582.776 0 417.85417 -0.00017705096 -0.00019876177 + 65380 -6245.6251 -6253.9433 8.3182071 3701.7624 628.79018 -10584.496 0 398.65516 -0.00039997174 -0.00041996625 + 65390 -6246.1785 -6253.7301 7.5515849 3704.5439 627.41512 -10585.689 0 361.91432 -0.0006228404 -0.00064035952 + 65400 -6246.7385 -6253.3595 6.6210447 3706.128 626.3954 -10585.883 0 317.31761 -0.0007953402 -0.0008123927 + 65410 -6247.2459 -6252.9724 5.7264983 3706.0562 625.87844 -10584.907 0 274.44593 -0.00088447042 -0.00090417893 + 65420 -6247.683 -6252.6631 4.9800979 3704.3676 625.90422 -10582.935 0 238.67424 -0.00088135152 -0.00090500388 + 65430 -6248.0666 -6252.4707 4.4041224 3701.5383 626.40218 -10580.411 0 211.07026 -0.00079939526 -0.00082481572 + 65440 -6248.418 -6252.4106 3.9925978 3698.2956 627.20991 -10577.916 0 191.34769 -0.00066635332 -0.00068911565 + 65450 -6248.7398 -6252.5083 3.76842 3695.4085 628.11307 -10576.03 0 180.60383 -0.00051508868 -0.0005317098 + 65460 -6249.0155 -6252.7961 3.7805878 3693.5385 628.89688 -10575.231 0 181.18698 -0.00037705355 -0.00038760807 + 65470 -6249.2271 -6253.2727 4.0456023 3693.1625 629.39353 -10575.829 0 193.88796 -0.00027926097 -0.000287283 + 65480 -6249.3755 -6253.8656 4.4900522 3694.5252 629.51197 -10577.903 0 215.18849 -0.00024254668 -0.00025229481 + 65490 -6249.4844 -6254.4381 4.9537485 3697.5761 629.24569 -10581.26 0 237.41142 -0.00027839986 -0.00029172555 + 65500 -6249.5841 -6254.8465 5.2624325 3701.9039 628.66549 -10585.416 0 252.20529 -0.00038398612 -0.00039933325 + 65510 -6249.6887 -6255.0071 5.3184243 3706.7321 627.90762 -10589.647 0 254.88873 -0.00053827504 -0.0005524844 + 65520 -6249.7858 -6254.9268 5.1410895 3711.0384 627.15998 -10593.125 0 246.38986 -0.00070342611 -0.00071466852 + 65530 -6249.8484 -6254.6794 4.8310279 3713.7942 626.63886 -10595.112 0 231.52996 -0.00083334127 -0.00084268666 + 65540 -6249.8592 -6254.3509 4.4917116 3714.2534 626.54624 -10595.151 0 215.26802 -0.0008871454 -0.00089751733 + 65550 -6249.8261 -6253.9969 4.1707509 3712.1821 627.00941 -10593.188 0 199.88578 -0.00084233629 -0.00085576322 + 65560 -6249.7762 -6253.6411 3.8648735 3707.9447 628.02017 -10589.606 0 185.22642 -0.00070232327 -0.00071789009 + 65570 -6249.7318 -6253.3129 3.5811666 3702.4199 629.40125 -10585.134 0 171.6296 -0.00049590678 -0.00051045824 + 65580 -6249.6866 -6253.081 3.3943852 3696.7972 630.82537 -10580.704 0 162.67799 -0.00027007309 -0.00028143501 + 65590 -6249.6059 -6253.0396 3.4336718 3692.3302 631.89428 -10577.264 0 164.56082 -7.9536514e-05 -8.9490269e-05 + 65600 -6249.4525 -6253.2436 3.7910256 3690.1024 632.25907 -10575.605 0 181.68722 2.4538506e-05 1.0592016e-05 + 65610 -6249.2237 -6253.6446 4.4208604 3690.801 631.74014 -10576.186 0 211.87244 6.3294769e-06 -1.6542991e-05 + 65620 -6248.9652 -6254.089 5.1237922 3694.4945 630.40035 -10578.984 0 245.56087 -0.00014260946 -0.00017408927 + 65630 -6248.7451 -6254.3964 5.651239 3700.476 628.54052 -10583.413 0 270.83908 -0.00039431634 -0.00042770785 + 65640 -6248.6014 -6254.466 5.8646716 3707.302 626.61806 -10588.386 0 281.06797 -0.00068489923 -0.00071146731 + 65650 -6248.5084 -6254.3275 5.8190538 3713.1278 625.12028 -10592.576 0 278.88171 -0.00092987981 -0.00094562554 + 65660 -6248.3996 -6254.0933 5.6937225 3716.2885 624.4353 -10594.817 0 272.87513 -0.0010521506 -0.0010613392 + 65670 -6248.2249 -6253.8563 5.6313244 3715.8901 624.75315 -10594.5 0 269.88466 -0.0010110571 -0.0010233093 + 65680 -6247.9951 -6253.6206 5.6254848 3712.1323 626.01406 -10591.767 0 269.6048 -0.00081837694 -0.0008415201 + 65690 -6247.7743 -6253.3199 5.5456079 3706.2107 627.91599 -10587.447 0 265.77665 -0.00053328863 -0.00056747673 + 65700 -6247.6307 -6252.9005 5.2697366 3699.8615 629.98834 -10582.75 0 252.55535 -0.00023908064 -0.00027653136 + 65710 -6247.5849 -6252.4015 4.8166129 3694.7696 631.72126 -10578.892 0 230.83911 -1.2945923e-05 -4.338656e-05 + 65720 -6247.592 -6251.9669 4.3749287 3692.093 632.71311 -10576.773 0 209.67113 9.7700673e-05 7.986201e-05 + 65730 -6247.5711 -6251.7761 4.2050509 3692.2593 632.78546 -10576.821 0 201.52963 8.4022704e-05 7.590256e-05 + 65740 -6247.4581 -6251.9341 4.4759967 3695.0309 632.02424 -10578.989 0 214.51488 -3.031966e-05 -3.7764189e-05 + 65750 -6247.2499 -6252.3958 5.1459298 3699.7097 630.73209 -10582.838 0 246.62183 -0.00020368231 -0.00021874409 + 65760 -6247.0078 -6252.9854 5.9776239 3705.3342 629.30954 -10587.629 0 286.48128 -0.00039103367 -0.00041486521 + 65770 -6246.8118 -6253.506 6.6941961 3710.8098 628.1128 -10592.429 0 320.82344 -0.0005530602 -0.00057908014 + 65780 -6246.6968 -6253.8582 7.1613564 3715.031 627.35152 -10596.241 0 343.21238 -0.00065972445 -0.00067965139 + 65790 -6246.6285 -6254.0695 7.4409643 3717.078 627.06979 -10598.217 0 356.61276 -0.00069220516 -0.00070364335 + 65800 -6246.5432 -6254.2117 7.6684648 3716.4733 627.20325 -10597.888 0 367.51586 -0.00064607629 -0.00065492622 + 65810 -6246.4159 -6254.2856 7.8697346 3713.3732 627.66015 -10595.319 0 377.16184 -0.00053406414 -0.00054952249 + 65820 -6246.2907 -6254.1801 7.8894232 3708.5547 628.36951 -10591.104 0 378.10543 -0.0003840109 -0.00041038677 + 65830 -6246.2446 -6253.7516 7.5070099 3703.1674 629.27209 -10586.191 0 359.77804 -0.00023007356 -0.00026249406 + 65840 -6246.313 -6252.9671 6.6541049 3698.3646 630.27284 -10581.605 0 318.90204 -0.00010110379 -0.00012913864 + 65850 -6246.4464 -6251.9941 5.5477269 3695.006 631.20157 -10578.202 0 265.8782 -1.3934144e-05 -3.0535213e-05 + 65860 -6246.5386 -6251.1486 4.6099665 3693.5659 631.82559 -10576.54 0 220.93546 2.4067468e-05 1.5739623e-05 + 65870 -6246.5044 -6250.7231 4.2187123 3694.2225 631.923 -10576.869 0 202.18437 7.3099965e-06 -4.7204957e-06 + 65880 -6246.3409 -6250.8169 4.4760062 3696.9593 631.38181 -10579.158 0 214.51533 -7.1356788e-05 -9.880457e-05 + 65890 -6246.1298 -6251.299 5.1691659 3701.5182 630.27043 -10583.088 0 247.73543 -0.00021358989 -0.00025820978 + 65900 -6245.9782 -6251.9276 5.9494247 3707.2229 628.84171 -10587.992 0 285.12981 -0.00040183835 -0.00045311229 + 65910 -6245.9381 -6252.5208 6.5826632 3712.8841 627.46869 -10592.874 0 315.47816 -0.00059092614 -0.00063340623 + 65920 -6245.9677 -6253.0383 7.0706293 3717.0065 626.53905 -10596.584 0 338.86423 -0.00071629263 -0.00074089057 + 65930 -6245.9701 -6253.5244 7.5543414 3718.308 626.34385 -10598.176 0 362.04643 -0.00071955008 -0.00072972363 + 65940 -6245.8787 -6253.9838 8.1050375 3716.2991 626.98925 -10597.272 0 388.43887 -0.00057854556 -0.0005867918 + 65950 -6245.7158 -6254.3172 8.6013905 3711.5801 628.35097 -10594.248 0 412.2269 -0.00032385583 -0.00034201832 + 65960 -6245.5771 -6254.3745 8.7974399 3705.6687 630.0883 -10590.132 0 421.62268 -3.1059577e-05 -6.2320691e-05 + 65970 -6245.5596 -6254.0692 8.5096078 3700.4387 631.72801 -10586.236 0 407.82815 0.00020775257 0.00016975714 + 65980 -6245.6939 -6253.4574 7.7635245 3697.4399 632.80555 -10583.703 0 372.07165 0.00031895146 0.00028441536 + 65990 -6245.9304 -6252.7254 6.7950747 3697.3951 633.01994 -10583.14 0 325.65811 0.00027290236 0.00024842365 + 66000 -6246.1829 -6252.0983 5.915361 3700.0529 632.34261 -10584.494 0 283.49729 9.0722978e-05 7.5464022e-05 + 66010 -6246.3914 -6251.7262 5.3347442 3704.3989 631.03407 -10587.159 0 255.67088 -0.00016740968 -0.00017966047 + 66020 -6246.5576 -6251.6216 5.0640633 3709.0729 629.55686 -10590.251 0 242.69833 -0.00042463224 -0.00043959057 + 66030 -6246.7286 -6251.6916 4.9630273 3712.7884 628.41277 -10592.893 0 237.85612 -0.00061056999 -0.00062890366 + 66040 -6246.9463 -6251.8396 4.8932918 3714.6363 627.96438 -10594.44 0 234.514 -0.00067870315 -0.00069670395 + 66050 -6247.2095 -6252.047 4.8374768 3714.2646 628.31233 -10594.624 0 231.83903 -0.00061621808 -0.000630525 + 66060 -6247.484 -6252.3637 4.8797127 3711.9552 629.2773 -10593.596 0 233.86321 -0.00044645573 -0.00045778479 + 66070 -6247.744 -6252.8308 5.0868275 3708.5615 630.48653 -10591.879 0 243.78932 -0.00022287287 -0.00023528745 + 66080 -6247.9995 -6253.4156 5.4160556 3705.2629 631.51938 -10590.198 0 259.56777 -1.3844197e-05 -3.0852444e-05 + 66090 -6248.287 -6254.0104 5.7233362 3703.1809 632.05073 -10589.242 0 274.29439 0.00011850149 9.7194309e-05 + 66100 -6248.6361 -6254.4852 5.8491515 3702.9966 631.94305 -10589.425 0 280.32416 0.00013828545 0.00011679672 + 66110 -6249.0396 -6254.7542 5.7145801 3704.7259 631.26424 -10590.744 0 273.87474 4.6959241e-05 3.0167643e-05 + 66120 -6249.4494 -6254.8153 5.365903 3707.7453 630.23768 -10592.798 0 257.16418 -0.00011932051 -0.00012967335 + 66130 -6249.8024 -6254.7377 4.9352983 3711.0558 629.15529 -10594.949 0 236.52719 -0.00030522882 -0.00031228302 + 66140 -6250.0612 -6254.6029 4.541715 3713.6694 628.29008 -10596.562 0 217.66447 -0.00045764604 -0.00046728964 + 66150 -6250.2363 -6254.4508 4.2144988 3714.9374 627.83165 -10597.22 0 201.98243 -0.00054258445 -0.00055887097 + 66160 -6250.371 -6254.2814 3.9103836 3714.6812 627.85171 -10596.814 0 187.40752 -0.00055064694 -0.00057266915 + 66170 -6250.5027 -6254.1024 3.599707 3713.1231 628.3001 -10595.526 0 172.51816 -0.00049198862 -0.00051491922 + 66180 -6250.6368 -6253.9614 3.3245937 3710.7318 629.03117 -10593.724 0 159.33318 -0.00038764326 -0.00040667422 + 66190 -6250.7516 -6253.9225 3.1708966 3708.0908 629.85234 -10591.866 0 151.96716 -0.00026310527 -0.00027659007 + 66200 -6250.8227 -6254.0159 3.1931365 3705.8101 630.57715 -10590.403 0 153.03302 -0.00014488366 -0.00015443228 + 66210 -6250.8406 -6254.211 3.3703605 3704.4395 631.06476 -10589.715 0 161.52659 -5.7470292e-05 -6.5836365e-05 + 66220 -6250.8108 -6254.4358 3.6250074 3704.3614 631.23832 -10590.036 0 173.7307 -1.9120154e-05 -2.8149899e-05 + 66230 -6250.7436 -6254.6194 3.8757646 3705.6876 631.08661 -10591.394 0 185.74839 -3.7489431e-05 -4.7513261e-05 + 66240 -6250.6443 -6254.7228 4.0785372 3708.2074 630.65724 -10593.587 0 195.46639 -0.00010731793 -0.00011779191 + 66250 -6250.5107 -6254.7443 4.2335881 3711.414 630.04681 -10596.205 0 202.8973 -0.00021131875 -0.00022176147 + 66260 -6250.3361 -6254.7019 4.3657173 3714.6083 629.38907 -10598.699 0 209.22967 -0.00032381705 -0.00033428469 + 66270 -6250.1151 -6254.6115 4.4964045 3717.0541 628.83899 -10600.505 0 215.49293 -0.00041599691 -0.00042689215 + 66280 -6249.8474 -6254.4729 4.6254982 3718.1479 628.54911 -10601.17 0 221.67983 -0.00046186853 -0.00047336589 + 66290 -6249.5383 -6254.2713 4.7329971 3717.5656 628.63571 -10600.473 0 226.83178 -0.00044428904 -0.00045593765 + 66300 -6249.1951 -6253.9943 4.7991735 3715.3514 629.13811 -10598.484 0 230.00332 -0.00036006081 -0.00037101767 + 66310 -6248.8223 -6253.6508 4.8284501 3711.9347 629.98509 -10595.571 0 231.40642 -0.00022263619 -0.00023247356 + 66320 -6248.42 -6253.2801 4.8600807 3708.0662 630.9887 -10592.335 0 232.92234 -6.0915225e-05 -7.0442287e-05 + 66330 -6247.9867 -6252.9435 4.9568449 3704.6738 631.88163 -10589.499 0 237.55982 8.6526326e-05 7.5107882e-05 + 66340 -6247.5271 -6252.7002 5.1731333 3702.6523 632.39651 -10587.749 0 247.92557 0.00018094125 0.00016497904 + 66350 -6247.0614 -6252.579 5.5175887 3702.622 632.3616 -10587.563 0 264.43381 0.00019457372 0.00017280546 + 66360 -6246.6257 -6252.5666 5.9408755 3704.7135 631.77167 -10589.052 0 284.72009 0.00012075826 9.4859795e-05 + 66370 -6246.2554 -6252.6259 6.3704679 3708.4565 630.7982 -10591.881 0 305.30857 -2.0516175e-05 -4.6354334e-05 + 66380 -6245.9612 -6252.7296 6.7684176 3712.8507 629.7316 -10595.312 0 324.38055 -0.00018553548 -0.00020743368 + 66390 -6245.7219 -6252.8716 7.1497428 3716.6477 628.88413 -10598.403 0 342.65579 -0.0003201226 -0.00033768934 + 66400 -6245.507 -6253.0376 7.5305492 3718.7666 628.49821 -10600.302 0 360.90617 -0.00037934122 -0.00039613207 + 66410 -6245.3102 -6253.1699 7.8596524 3718.668 628.69087 -10600.529 0 376.67864 -0.00034417561 -0.00036466696 + 66420 -6245.1563 -6253.1778 8.0214751 3716.509 629.43807 -10599.125 0 384.43409 -0.00022628604 -0.0002521536 + 66430 -6245.0752 -6252.9965 7.9213048 3713.0306 630.58906 -10596.616 0 379.63337 -5.9749089e-05 -8.8853838e-05 + 66440 -6245.0727 -6252.6395 7.5668428 3709.2746 631.90341 -10593.818 0 362.64556 0.00011310099 8.4697972e-05 + 66450 -6245.1266 -6252.1979 7.0712848 3706.2734 633.10606 -10591.577 0 338.89564 0.00025377328 0.00022920206 + 66460 -6245.2035 -6251.7983 6.5947782 3704.8021 633.95042 -10590.551 0 316.05878 0.00033505234 0.00031535265 + 66470 -6245.275 -6251.556 6.2810421 3705.2264 634.27446 -10591.057 0 301.02278 0.00034490584 0.00032910886 + 66480 -6245.3259 -6251.5388 6.212869 3707.4571 634.03579 -10593.032 0 297.75554 0.00028735299 0.00027333699 + 66490 -6245.3577 -6251.7442 6.3864899 3711.0038 633.31596 -10596.064 0 306.07643 0.00017976902 0.00016553518 + 66500 -6245.3862 -6252.1004 6.7141187 3715.0977 632.29196 -10599.49 0 321.77824 4.7409974e-05 3.2277087e-05 + 66510 -6245.4338 -6252.4981 7.0643 3718.8509 631.18397 -10602.533 0 338.56089 -8.2373482e-05 -9.7424115e-05 + 66520 -6245.5156 -6252.8423 7.3266951 3721.4309 630.19934 -10604.473 0 351.13634 -0.00018416474 -0.00019743713 + 66530 -6245.6299 -6253.0945 7.4646277 3722.2346 629.49327 -10604.822 0 357.74684 -0.00023701347 -0.00024789705 + 66540 -6245.76 -6253.276 7.5160245 3721.0399 629.15524 -10603.471 0 360.21007 -0.00022759802 -0.00023786703 + 66550 -6245.8928 -6253.4259 7.5331001 3718.0998 629.21364 -10600.739 0 361.02842 -0.00015510303 -0.00016821468 + 66560 -6246.0377 -6253.5447 7.5070432 3714.1287 629.64094 -10597.314 0 359.77963 -3.5289794e-05 -5.3595807e-05 + 66570 -6246.2246 -6253.5813 7.3566961 3710.1372 630.34836 -10594.067 0 352.57416 0.00010099313 7.882642e-05 + 66580 -6246.4734 -6253.4833 7.0098903 3707.1424 631.17857 -10591.804 0 335.95328 0.00021674249 0.00019511858 + 66590 -6246.764 -6253.2642 6.5001663 3705.866 631.92102 -10591.051 0 311.52444 0.00028095794 0.00026340303 + 66600 -6247.0439 -6253.0105 5.9665879 3706.5614 632.36694 -10591.939 0 285.95237 0.00027719419 0.00026281197 + 66610 -6247.2703 -6252.8159 5.5456782 3709.0124 632.39006 -10594.218 0 265.78002 0.00020582008 0.00018997072 + 66620 -6247.4442 -6252.7122 5.2680283 3712.6351 632.01055 -10597.358 0 252.47348 8.2899284e-05 6.1607138e-05 + 66630 -6247.6037 -6252.6691 5.0654186 3716.5995 631.4008 -10600.669 0 242.76328 -6.1301858e-05 -8.756955e-05 + 66640 -6247.7849 -6252.6559 4.8710545 3719.9656 630.82362 -10603.445 0 233.44826 -0.00018578988 -0.00021250892 + 66650 -6247.991 -6252.6942 4.7031547 3721.8826 630.52976 -10605.107 0 225.40156 -0.00024821275 -0.00027064834 + 66660 -6248.1962 -6252.8489 4.6527084 3721.8429 630.66012 -10605.352 0 222.98389 -0.00022007008 -0.00023686462 + 66670 -6248.3721 -6253.1702 4.7981007 3719.8943 631.19041 -10604.255 0 229.95191 -0.00010118795 -0.0001148283 + 66680 -6248.5131 -6253.6427 5.1296083 3716.6852 631.93575 -10602.264 0 245.83961 7.5438137e-05 6.1021443e-05 + 66690 -6248.6403 -6254.1804 5.5400436 3713.2872 632.61222 -10600.08 0 265.50997 0.00025287133 0.00023523447 + 66700 -6248.7876 -6254.6623 5.8746842 3710.8468 632.93626 -10598.445 0 281.54783 0.00037027626 0.00034986794 + 66710 -6248.9812 -6254.9807 5.9995429 3710.1961 632.72863 -10597.905 0 287.53176 0.00038507958 0.00036459468 + 66720 -6249.2252 -6255.0771 5.8518616 3711.5671 631.98438 -10598.629 0 280.45404 0.0002881263 0.00027057477 + 66730 -6249.4997 -6254.9541 5.4544326 3714.5193 630.88121 -10600.355 0 261.40701 0.00010641219 9.3238923e-05 + 66740 -6249.7722 -6254.6663 4.8940331 3718.1038 629.72389 -10602.494 0 234.54953 -0.00010671815 -0.00011633024 + 66750 -6250.0146 -6254.2967 4.2821567 3721.1953 628.84646 -10604.339 0 205.22498 -0.00028949228 -0.00029789365 + 66760 -6250.2145 -6253.935 3.7204372 3722.8583 628.50689 -10605.3 0 178.30423 -0.00039113715 -0.00040074002 + 66770 -6250.3777 -6253.658 3.2803034 3722.6224 628.8086 -10605.089 0 157.21055 -0.0003865407 -0.00039850602 + 66780 -6250.5213 -6253.5173 2.9959953 3720.5919 629.67245 -10603.782 0 143.5849 -0.000281952 -0.00029560017 + 66790 -6250.6631 -6253.5343 2.8711865 3717.3765 630.86504 -10601.776 0 137.60337 -0.00011062565 -0.00012383872 + 66800 -6250.8099 -6253.7064 2.8965016 3713.8841 632.07095 -10599.661 0 138.81661 7.9149814e-05 6.8562322e-05 + 66810 -6250.9525 -6254.0152 3.0627366 3711.0607 632.98379 -10598.06 0 146.78352 0.00023859966 0.00023123025 + 66820 -6251.0726 -6254.4257 3.3531122 3709.6579 633.38829 -10597.472 0 160.69995 0.00033049889 0.00032458074 + 66830 -6251.1574 -6254.8774 3.7199846 3710.0791 633.21125 -10598.168 0 178.28253 0.00033610288 0.00032846583 + 66840 -6251.2107 -6255.2857 4.0749893 3712.3069 632.53063 -10600.123 0 195.29635 0.00025727133 0.00024545889 + 66850 -6251.2501 -6255.5649 4.3148257 3715.9013 631.54531 -10603.011 0 206.79066 0.00011513989 9.9057281e-05 + 66860 -6251.2919 -6255.662 4.370142 3720.071 630.51903 -10606.252 0 209.44173 -5.4119826e-05 -7.2287528e-05 + 66870 -6251.3384 -6255.5783 4.2398686 3723.8329 629.71664 -10609.128 0 203.19829 -0.00020669056 -0.00022407724 + 66880 -6251.3766 -6255.3618 3.9851925 3726.2445 629.34709 -10610.953 0 190.99279 -0.00030120682 -0.00031602846 + 66890 -6251.3875 -6255.0789 3.6913575 3726.6559 629.52106 -10611.256 0 176.91056 -0.00030948409 -0.00032173916 + 66900 -6251.3577 -6254.7847 3.4270276 3724.9033 630.22618 -10609.914 0 164.24239 -0.00022473101 -0.00023561729 + 66910 -6251.2842 -6254.5103 3.2261009 3721.3765 631.3232 -10607.21 0 154.61286 -6.4448703e-05 -7.5190978e-05 + 66920 -6251.1707 -6254.2682 3.0974883 3716.9369 632.56671 -10603.772 0 148.44902 0.00013318949 0.0001221575 + 66930 -6251.0195 -6254.0695 3.049996 3712.7095 633.65132 -10600.43 0 146.17292 0.00031859652 0.00030757272 + 66940 -6250.8243 -6253.9352 3.1108487 3709.8066 634.27798 -10598.02 0 149.08932 0.00044309538 0.00043238925 + 66950 -6250.5703 -6253.8923 3.3219786 3709.0555 634.22896 -10597.177 0 159.20786 0.00047113876 0.00046042978 + 66960 -6250.2407 -6253.9554 3.7147011 3710.7868 633.43468 -10598.177 0 178.02932 0.0003897513 0.00037816311 + 66970 -6249.829 -6254.1082 4.2791732 3714.7195 632.01362 -10600.841 0 205.08199 0.00021339345 0.00020027567 + 66980 -6249.3489 -6254.2994 4.9505313 3719.9685 630.26748 -10604.535 0 237.25724 -1.7002124e-05 -3.1281425e-05 + 66990 -6248.8328 -6254.4584 5.6256296 3725.2031 628.62094 -10608.282 0 269.61173 -0.00024172678 -0.00025584496 + 67000 -6248.3176 -6254.5204 6.2027786 3728.9604 627.51358 -10610.994 0 297.27195 -0.00039655205 -0.00040936502 + 67010 -6247.8296 -6254.4447 6.6150703 3730.0633 627.2755 -10611.784 0 317.03129 -0.00043087409 -0.00044272684 + 67020 -6247.3814 -6254.215 6.8335125 3728.0111 628.03027 -10610.256 0 327.50026 -0.00032414242 -0.00033703704 + 67030 -6246.9815 -6253.832 6.8505033 3723.1892 629.65697 -10606.678 0 328.31456 -9.4091738e-05 -0.00011035358 + 67040 -6246.6401 -6253.3147 6.674611 3716.7986 631.81869 -10601.932 0 319.88481 0.0002069955 0.00018645189 + 67050 -6246.3648 -6252.7116 6.3467723 3710.5208 634.04558 -10597.278 0 304.17294 0.0005068468 0.00048318641 + 67060 -6246.1521 -6252.1075 5.955406 3706.0377 635.8501 -10593.995 0 285.41647 0.00073335466 0.00070901308 + 67070 -6245.9845 -6251.6101 5.6255629 3704.5694 636.84559 -10593.025 0 269.60854 0.00083384696 0.00081106017 + 67080 -6245.8365 -6251.3196 5.4831407 3706.5603 636.8375 -10594.717 0 262.78287 0.00078826276 0.00076799756 + 67090 -6245.6827 -6251.298 5.6153129 3711.5777 635.86449 -10598.74 0 269.1173 0.00061336725 0.00059509658 + 67100 -6245.5048 -6251.5503 6.0454268 3718.4315 634.18159 -10604.163 0 289.73077 0.00035750383 0.00033962461 + 67110 -6245.2971 -6252.0235 6.7264622 3725.4756 632.19366 -10609.693 0 322.36981 8.7494313e-05 6.8003321e-05 + 67120 -6245.0698 -6252.6185 7.5487476 3731.0192 630.3572 -10613.995 0 361.77834 -0.0001288751 -0.00015166586 + 67130 -6244.8507 -6253.2112 8.3604942 3733.7473 629.07369 -10616.032 0 400.68179 -0.00024002337 -0.0002668561 + 67140 -6244.6784 -6253.6818 9.0033834 3733.0399 628.59793 -10615.32 0 431.49265 -0.00022255224 -0.00025293011 + 67150 -6244.5897 -6253.9445 9.3548116 3729.1101 628.98357 -10612.038 0 448.33506 -8.5098617e-05 -0.00011750541 + 67160 -6244.6066 -6253.961 9.3543722 3722.9343 630.08105 -10606.976 0 448.314 0.00013578558 0.0001034523 + 67170 -6244.7322 -6253.7371 9.0049132 3716.0019 631.58809 -10601.327 0 431.56596 0.00038561326 0.00035578364 + 67180 -6244.9489 -6253.3157 8.3667313 3709.9448 633.134 -10596.394 0 400.98071 0.00060540139 0.00058044279 + 67190 -6245.2196 -6252.7774 7.5577733 3706.1434 634.36962 -10593.29 0 362.2109 0.00074565382 0.00072681085 + 67200 -6245.4958 -6252.2351 6.7392304 3705.4203 635.03906 -10592.694 0 322.98173 0.00077700823 0.00076321435 + 67210 -6245.7374 -6251.8057 6.0682974 3707.8985 635.02295 -10594.727 0 290.82686 0.00069473733 0.00068268543 + 67220 -6245.9313 -6251.5733 5.6420086 3713.0223 634.35401 -10598.95 0 270.39671 0.0005175797 0.00050351337 + 67230 -6246.0939 -6251.5672 5.4733107 3719.6954 633.20991 -10604.473 0 262.31176 0.00028348012 0.00026550856 + 67240 -6246.2572 -6251.7692 5.5119863 3726.4946 631.88488 -10610.149 0 264.16531 4.384518e-05 2.3060018e-05 + 67250 -6246.4476 -6252.1363 5.6887186 3731.9401 630.73593 -10614.812 0 272.63531 -0.0001442981 -0.00016472027 + 67260 -6246.6726 -6252.6216 5.9489987 3734.8054 630.10239 -10617.529 0 285.1094 -0.0002296063 -0.00024669189 + 67270 -6246.9225 -6253.1762 6.2536613 3734.425 630.21168 -10617.813 0 299.71054 -0.00018070348 -0.00019370156 + 67280 -6247.1853 -6253.7353 6.5500529 3730.9188 631.10008 -10615.754 0 313.91529 6.3094104e-07 -9.9646283e-06 + 67290 -6247.4608 -6254.2111 6.7502971 3725.2315 632.57964 -10612.022 0 323.51211 0.00027413023 0.00026344753 + 67300 -6247.7589 -6254.5144 6.7555221 3718.9193 634.27062 -10607.704 0 323.76252 0.00056888124 0.0005566083 + 67310 -6248.0829 -6254.5993 6.5163686 3713.7182 635.69842 -10604.016 0 312.30095 0.00080345579 0.0007893646 + 67320 -6248.4193 -6254.4893 6.0699916 3711.0419 636.4316 -10601.963 0 290.90806 0.00091068408 0.00089487886 + 67330 -6248.7461 -6254.26 5.5139117 3711.5856 636.2183 -10602.064 0 264.25759 0.00085763754 0.00084003543 + 67340 -6249.0499 -6253.9977 4.9477465 3715.1492 635.07219 -10604.219 0 237.12377 0.00065503174 0.00063596189 + 67350 -6249.3304 -6253.7718 4.4413448 3720.7047 633.27496 -10607.751 0 212.85416 0.00035469163 0.00033552729 + 67360 -6249.5905 -6253.6332 4.0426745 3726.6814 631.2939 -10611.608 0 193.74764 3.6001793e-05 1.8642598e-05 + 67370 -6249.8277 -6253.6179 3.7902133 3731.402 629.64407 -10614.664 0 181.64829 -0.00021600723 -0.00023044275 + 67380 -6250.0355 -6253.7383 3.7028621 3733.5615 628.73905 -10616.039 0 177.46193 -0.00033537284 -0.00034728195 + 67390 -6250.2112 -6253.9733 3.7621399 3732.6007 628.77299 -10615.347 0 180.30285 -0.00029475502 -0.00030559001 + 67400 -6250.3584 -6254.2738 3.9154192 3728.8549 629.66662 -10612.795 0 187.64886 -0.00011291082 -0.00012422631 + 67410 -6250.483 -6254.5838 4.1007525 3723.4365 631.09514 -10609.115 0 196.53107 0.00015219635 0.00013926367 + 67420 -6250.5902 -6254.8571 4.2669788 3717.9036 632.59407 -10605.355 0 204.49757 0.00042160463 0.00040638529 + 67430 -6250.6852 -6255.0583 4.3731046 3713.8191 633.71089 -10602.588 0 209.58371 0.00061867466 0.00060111207 + 67440 -6250.7762 -6255.157 4.3808038 3712.3187 634.14887 -10601.624 0 209.9527 0.00069083789 0.00067187175 + 67450 -6250.8703 -6255.1328 4.2625536 3713.7988 633.85094 -10602.783 0 204.28548 0.00062405359 0.00060565819 + 67460 -6250.9667 -6254.9922 4.025486 3717.8167 632.99699 -10605.806 0 192.92388 0.00044586859 0.00043021613 + 67470 -6251.0522 -6254.7784 3.7261864 3723.2379 631.92433 -10609.941 0 178.57976 0.00021571941 0.00020381124 + 67480 -6251.1057 -6254.5602 3.4544895 3728.5898 631.00894 -10614.159 0 165.55852 5.3345495e-06 -3.8429874e-06 + 67490 -6251.1095 -6254.402 3.2924802 3732.5005 630.55176 -10617.454 0 157.79413 -0.00012379006 -0.00013280208 + 67500 -6251.057 -6254.3354 3.2783212 3734.0731 630.70246 -10619.111 0 157.11555 -0.00013765962 -0.00014909505 + 67510 -6250.9515 -6254.3517 3.4002862 3733.0835 631.43283 -10618.868 0 162.96079 -3.6477372e-05 -5.1413799e-05 + 67520 -6250.7967 -6254.4181 3.6214201 3729.9659 632.55642 -10616.94 0 173.55877 0.00014951657 0.00013205206 + 67530 -6250.5884 -6254.5017 3.9133048 3725.6319 633.78206 -10613.916 0 187.54752 0.00037137122 0.00035369287 + 67540 -6250.3102 -6254.5841 4.2739524 3721.2061 634.78726 -10610.577 0 204.83178 0.00057508019 0.00055944004 + 67550 -6249.9398 -6254.6585 4.7186858 3717.7601 635.297 -10607.716 0 226.1459 0.00071394335 0.0007012977 + 67560 -6249.4613 -6254.713 5.2517694 3716.0915 635.15351 -10605.958 0 251.69426 0.00075785176 0.00074739178 + 67570 -6248.8795 -6254.7169 5.8374277 3716.5662 634.3614 -10605.645 0 279.76229 0.00069873992 0.00068830824 + 67580 -6248.2287 -6254.6167 6.3879635 3719.0402 633.09381 -10606.751 0 306.14705 0.00055156598 0.00053878218 + 67590 -6247.5685 -6254.3485 6.780088 3722.8808 631.65175 -10608.881 0 324.93986 0.00035054341 0.0003342318 + 67600 -6246.9636 -6253.8663 6.9026646 3727.0985 630.38501 -10611.35 0 330.81442 0.00014169852 0.00012279585 + 67610 -6246.4568 -6253.1802 6.7233693 3730.5698 629.59989 -10613.35 0 322.22158 -2.6082169e-05 -4.5137186e-05 + 67620 -6246.0487 -6252.384 6.3352617 3732.3077 629.4863 -10614.178 0 303.62129 -0.00011011995 -0.00012755741 + 67630 -6245.7031 -6251.6373 5.9342325 3731.7288 630.0865 -10613.453 0 284.40172 -8.3067629e-05 -9.9773388e-05 + 67640 -6245.3777 -6251.0995 5.7218141 3728.8542 631.30641 -10611.26 0 274.22143 5.8915935e-05 3.9868287e-05 + 67650 -6245.0561 -6250.857 5.800824 3724.3587 632.95094 -10608.167 0 278.00804 0.00029252835 0.00026893837 + 67660 -6244.7529 -6250.9028 6.1499284 3719.4126 634.76032 -10605.076 0 294.73907 0.000571834 0.00054521842 + 67670 -6244.4876 -6251.1806 6.6929958 3715.3523 636.43841 -10602.971 0 320.76592 0.00084031455 0.00081533784 + 67680 -6244.2545 -6251.6424 7.3878295 3713.3107 637.68252 -10602.636 0 354.06624 0.0010450288 0.0010253646 + 67690 -6244.0212 -6252.2597 8.2384684 3713.9456 638.23108 -10604.436 0 394.83363 0.0011467912 0.001130972 + 67700 -6243.766 -6252.9776 9.2116018 3717.3273 637.93186 -10608.237 0 441.47164 0.0011246779 0.0011061101 + 67710 -6243.5222 -6253.666 10.143791 3722.94 636.80938 -10613.415 0 486.14737 0.00097834954 0.00095014569 + 67720 -6243.3802 -6254.1332 10.75299 3729.7369 635.09563 -10618.966 0 515.34363 0.00073177635 0.00069252375 + 67730 -6243.4334 -6254.2102 10.776824 3736.2583 633.19586 -10623.664 0 516.48586 0.00043614555 0.00039165684 + 67740 -6243.7071 -6253.8453 10.138165 3740.8817 631.58851 -10626.315 0 485.87776 0.00016459656 0.00012412245 + 67750 -6244.1333 -6253.1411 9.0077952 3742.2284 630.6891 -10626.059 0 431.70409 -5.9245146e-06 -3.5931117e-05 + 67760 -6244.5916 -6252.3112 7.7195409 3739.6244 630.72513 -10622.661 0 369.96371 -2.0983751e-05 -4.0812556e-05 + 67770 -6244.9808 -6251.5876 6.6067959 3733.424 631.66442 -10616.676 0 316.63473 0.00012907628 0.00011323459 + 67780 -6245.2655 -6251.136 5.8704596 3725.0273 633.21688 -10609.38 0 281.34537 0.0004021138 0.00038263026 + 67790 -6245.4755 -6251.0176 5.5421173 3716.5437 634.90768 -10602.469 0 265.60936 0.00071584853 0.00068845475 + 67800 -6245.6713 -6251.2043 5.5329614 3710.198 636.20382 -10597.606 0 265.17055 0.00097354726 0.0009395826 + 67810 -6245.9052 -6251.6215 5.7162568 3707.6774 636.66486 -10595.964 0 273.9551 0.001094488 0.0010596765 + 67820 -6246.1958 -6252.1894 5.9935655 3709.6338 636.07821 -10597.901 0 287.24529 0.0010392271 0.0010100388 + 67830 -6246.5251 -6252.8457 6.3206233 3715.502 634.53646 -10602.884 0 302.91974 0.00082184679 0.00080150645 + 67840 -6246.8547 -6253.5424 6.6877721 3723.6896 632.42718 -10609.659 0 320.51556 0.00050526947 0.00049160826 + 67850 -6247.1558 -6254.2192 7.0634047 3732.0733 630.33243 -10616.625 0 338.51799 0.0001808419 0.000167603 + 67860 -6247.4356 -6254.7752 7.3396075 3738.6275 628.86407 -10622.267 0 351.75518 -6.0785154e-05 -7.9425196e-05 + 67870 -6247.7337 -6255.0798 7.3461637 3741.9577 628.48179 -10625.519 0 352.06939 -0.0001563886 -0.00018113342 + 67880 -6248.0834 -6255.0411 6.957726 3741.5745 629.35061 -10625.966 0 333.45327 -8.4925213e-05 -0.00011065461 + 67890 -6248.4698 -6254.6843 6.2144842 3737.8911 631.28843 -10623.864 0 297.83295 0.00013202078 0.00011185704 + 67900 -6248.8294 -6254.1621 5.3327397 3732.0383 633.82425 -10620.025 0 255.57481 0.00043939657 0.00042705932 + 67910 -6249.0956 -6253.674 4.5784041 3725.5922 636.34236 -10615.609 0 219.42281 0.00076194826 0.00075351854 + 67920 -6249.247 -6253.3555 4.1084978 3720.2409 638.25511 -10611.852 0 196.90227 0.0010198567 0.0010086744 + 67930 -6249.318 -6253.2241 3.9061726 3717.3961 639.14715 -10609.767 0 187.20571 0.001146931 0.0011292026 + 67940 -6249.3693 -6253.2151 3.8458025 3717.808 638.858 -10609.881 0 184.31244 0.0011090461 0.0010869542 + 67950 -6249.443 -6253.2689 3.8258775 3721.311 637.49544 -10612.075 0 183.35752 0.00091656872 0.00089640715 + 67960 -6249.5319 -6253.3966 3.8647292 3726.8335 635.39006 -10615.62 0 185.21951 0.00062369385 0.00061043687 + 67970 -6249.5856 -6253.6677 4.0820863 3732.7206 633.01013 -10619.399 0 195.63648 0.00031213934 0.00030476407 + 67980 -6249.552 -6254.1258 4.5737234 3737.2719 630.85797 -10622.256 0 219.19849 6.4465331e-05 5.6096141e-05 + 67990 -6249.4244 -6254.7019 5.277502 3739.2787 629.36455 -10623.345 0 252.92751 -6.1820537e-05 -7.8554327e-05 + 68000 -6249.2563 -6255.2101 5.9537242 3738.3398 628.79745 -10622.347 0 285.33587 -4.8512568e-05 -7.5086135e-05 + 68010 -6249.1244 -6255.4447 6.3202874 3734.8565 629.20123 -10619.502 0 302.90364 8.4962746e-05 5.4773343e-05 + 68020 -6249.0659 -6255.3109 6.2450419 3729.7906 630.39244 -10615.494 0 299.29745 0.00029472526 0.00027010156 + 68030 -6249.0469 -6254.881 5.8341224 3724.3573 632.01911 -10611.257 0 279.60388 0.0005279845 0.00051365651 + 68040 -6248.9908 -6254.3349 5.3441329 3719.7822 633.66759 -10607.785 0 256.12084 0.00073423444 0.00072665523 + 68050 -6248.8386 -6253.8387 5.0000576 3717.1251 634.97823 -10605.942 0 239.63082 0.00087171306 0.00086182495 + 68060 -6248.5888 -6253.4541 4.8652945 3717.1113 635.732 -10606.297 0 233.17221 0.00091262831 0.00089285583 + 68070 -6248.2896 -6253.1393 4.8496975 3719.9432 635.88703 -10608.97 0 232.42472 0.00084953756 0.00081969574 + 68080 -6247.9916 -6252.8284 4.8367754 3725.1487 635.56377 -10613.541 0 231.80542 0.00070139755 0.00066917008 + 68090 -6247.6927 -6252.5287 4.8359643 3731.5765 634.99086 -10619.096 0 231.76654 0.00051462925 0.00048997905 + 68100 -6247.3079 -6252.3555 5.0476123 3737.6243 634.43251 -10624.412 0 241.9099 0.00035457475 0.00034167116 + 68110 -6246.6899 -6252.4608 5.7709387 3741.6867 634.12021 -10628.268 0 276.57576 0.00028645657 0.00027892351 + 68120 -6245.7167 -6252.8836 7.1669054 3742.6905 634.20221 -10629.776 0 343.47832 0.0003500419 0.00033410874 + 68130 -6244.4365 -6253.4354 8.9988373 3740.5025 634.70878 -10628.647 0 431.27477 0.0005372964 0.00050286042 + 68140 -6243.1369 -6253.7607 10.623781 3735.9763 635.52964 -10625.267 0 509.15121 0.00078911762 0.00074084297 + 68150 -6242.1614 -6253.5888 11.427435 3730.5331 636.4221 -10620.544 0 547.66681 0.00102351 0.00097903893 + 68160 -6241.621 -6252.9572 11.336176 3725.5353 637.07767 -10615.57 0 543.29315 0.001177625 0.0011512163 + 68170 -6241.3586 -6252.1637 10.805059 3721.9126 637.23562 -10611.312 0 517.83903 0.0012272722 0.0012156391 + 68180 -6241.1714 -6251.4905 10.319113 3720.1751 636.78505 -10608.451 0 494.54981 0.0011755785 0.001161181 + 68190 -6241.0056 -6250.9866 9.9810513 3720.5332 635.80123 -10607.321 0 478.34798 0.0010353393 0.0010031907 + 68200 -6240.9516 -6250.5072 9.5556502 3722.8473 634.50745 -10607.862 0 457.96037 0.00082665483 0.00077800105 + 68210 -6241.1001 -6249.9454 8.8453169 3726.4613 633.19207 -10609.599 0 423.91722 0.00058704185 0.0005377301 + 68220 -6241.4212 -6249.4181 7.9968518 3730.2042 632.12294 -10611.745 0 383.25401 0.00037511611 0.00034112157 + 68230 -6241.777 -6249.2266 7.4496751 3732.7458 631.4898 -10613.462 0 357.03023 0.00025477576 0.00023850361 + 68240 -6242.039 -6249.6249 7.5859358 3733.1819 631.38127 -10614.188 0 363.56061 0.00026638255 0.00025556965 + 68250 -6242.1987 -6250.5983 8.3995728 3731.4928 631.78412 -10613.875 0 402.55466 0.0004046952 0.00038391882 + 68260 -6242.3803 -6251.8443 9.4639184 3728.5638 632.5914 -10612.999 0 453.56407 0.00061945106 0.00058357406 + 68270 -6242.7432 -6252.9672 10.223957 3725.7414 633.6188 -10612.327 0 489.98937 0.00083900487 0.00079685602 + 68280 -6243.3503 -6253.7205 10.370198 3724.206 634.64023 -10612.567 0 496.99805 0.001001964 0.0009676184 + 68290 -6244.1181 -6254.0986 9.9804203 3724.5359 635.44674 -10614.081 0 478.31774 0.0010772994 0.0010576378 + 68300 -6244.8934 -6254.2321 9.3387232 3726.6494 635.91188 -10616.793 0 447.56402 0.0010644267 0.0010543708 + 68310 -6245.569 -6254.2152 8.6462788 3730.0181 636.0309 -10620.264 0 414.3782 0.00098116537 0.00096970057 + 68320 -6246.1317 -6254.0302 7.8984958 3733.9155 635.91124 -10623.857 0 378.54024 0.00085314305 0.00083329019 + 68330 -6246.6216 -6253.6174 6.995872 3737.5594 635.7182 -10626.895 0 335.28144 0.0007103426 0.00068412991 + 68340 -6247.0649 -6253.0031 5.9381763 3740.1822 635.60271 -10628.788 0 284.59073 0.00058643968 0.00056169576 + 68350 -6247.4453 -6252.3588 4.9135279 3741.1342 635.64352 -10629.137 0 235.48383 0.00051421846 0.00049708775 + 68360 -6247.7239 -6251.9375 4.2136361 3740.0655 635.82463 -10627.828 0 201.94108 0.00051553829 0.000505307 + 68370 -6247.8803 -6251.9312 4.0508636 3737.1158 636.05114 -10625.098 0 194.14011 0.00059073101 0.00058083825 + 68380 -6247.9399 -6252.3567 4.4167242 3732.9775 636.18988 -10621.524 0 211.67421 0.00071459763 0.00069852442 + 68390 -6247.9674 -6253.0516 5.0842049 3728.7377 636.11428 -10617.904 0 243.66363 0.00084328801 0.00082025827 + 68400 -6248.0286 -6253.7815 5.7528932 3725.529 635.73655 -10615.047 0 275.71092 0.0009302219 0.00090587494 + 68410 -6248.1451 -6254.3743 6.2292365 3724.1469 635.0233 -10613.544 0 298.53997 0.00094335389 0.00092470586 + 68420 -6248.2807 -6254.7846 6.5038798 3724.8223 634.00262 -10613.61 0 311.70241 0.0008748159 0.00086378034 + 68430 -6248.3766 -6255.0491 6.6724424 3727.2367 632.77182 -10615.058 0 319.78088 0.0007392194 0.00073042038 + 68440 -6248.4078 -6255.1894 6.7815498 3730.7103 631.50409 -10617.404 0 325.00992 0.00056486613 0.00054992856 + 68450 -6248.4106 -6255.1584 6.7478515 3734.4134 630.44052 -10620.012 0 323.39491 0.00038585178 0.000360692 + 68460 -6248.4519 -6254.8833 6.4313187 3737.4997 629.85231 -10622.235 0 308.22488 0.00023925765 0.00020799495 + 68470 -6248.5673 -6254.3644 5.797075 3739.1891 629.9727 -10623.526 0 277.82836 0.00016401726 0.00013582192 + 68480 -6248.7243 -6253.7297 5.0053771 3738.9035 630.919 -10623.552 0 239.88575 0.00019435577 0.00017587775 + 68490 -6248.8475 -6253.1786 4.3311102 3736.4931 632.63516 -10622.307 0 207.5711 0.00034561681 0.00033572972 + 68500 -6248.8789 -6252.8594 3.9805268 3732.445 634.87699 -10620.181 0 190.76918 0.00059966868 0.00059096835 + 68510 -6248.8182 -6252.787 3.9687739 3727.8906 637.24548 -10617.923 0 190.20591 0.00090130254 0.00088656282 + 68520 -6248.7136 -6252.868 4.15446 3724.3163 639.26188 -10616.446 0 199.10503 0.0011715939 0.0011494134 + 68530 -6248.6173 -6253.002 4.3846749 3723.0648 640.47332 -10616.54 0 210.13822 0.0013338769 0.0013091479 + 68540 -6248.5428 -6253.166 4.6232122 3724.842 640.56943 -10618.578 0 221.57027 0.0013406311 0.0013200766 + 68550 -6248.4534 -6253.4183 4.9648176 3729.4454 639.47968 -10622.343 0 237.94192 0.0011894803 0.00117622 + 68560 -6248.2884 -6253.8221 5.5336897 3735.8084 637.41766 -10627.048 0 265.20546 0.00092276391 0.00091416345 + 68570 -6248.0069 -6254.3561 6.3492392 3742.3151 634.84954 -10631.521 0 304.29117 0.00061314835 0.00060335912 + 68580 -6247.6186 -6254.882 7.2634241 3747.2426 632.38529 -10634.51 0 348.10404 0.00034250838 0.0003274126 + 68590 -6247.1789 -6255.2011 8.0222056 3749.1938 630.61598 -10635.011 0 384.4691 0.00018105637 0.00016148758 + 68600 -6246.75 -6255.1603 8.4102568 3747.4328 629.94186 -10632.535 0 403.0667 0.00017066061 0.00015125692 + 68610 -6246.3591 -6254.7289 8.3698483 3742.0871 630.44948 -10627.266 0 401.13009 0.00031414653 0.00029896973 + 68620 -6245.9886 -6253.9953 8.0067306 3734.1831 631.88747 -10620.066 0 383.72746 0.00057263232 0.00056147628 + 68630 -6245.6056 -6253.1013 7.4956693 3725.4738 633.75465 -10612.33 0 359.23453 0.00087352079 0.00086202789 + 68640 -6245.1968 -6252.1754 6.978574 3718.0496 635.46753 -10605.692 0 334.45242 0.00112966 0.0011128813 + 68650 -6244.7782 -6251.3123 6.5341169 3713.797 636.54299 -10601.652 0 313.15155 0.0012654544 0.0012417307 + 68660 -6244.3753 -6250.595 6.2197656 3713.8579 636.73484 -10601.188 0 298.08607 0.0012415505 0.0012137462 + 68670 -6243.993 -6250.1214 6.1283967 3718.2726 636.08838 -10604.482 0 293.70716 0.0010691294 0.0010425364 + 68680 -6243.5972 -6249.9977 6.4005612 3725.9395 634.90927 -10610.847 0 306.7508 0.00080815074 0.0007866904 + 68690 -6243.1232 -6250.2919 7.1686681 3734.9176 633.66674 -10618.876 0 343.5628 0.00054931143 0.00053266607 + 68700 -6242.5152 -6250.9685 8.4532815 3742.9807 632.86144 -10626.811 0 405.12868 0.0003849516 0.00036869243 + 68710 -6241.7803 -6251.8556 10.075318 3748.2518 632.8863 -10632.994 0 482.86577 0.00037837564 0.00035721127 + 68720 -6241.018 -6252.6862 11.668116 3749.711 633.90613 -10636.303 0 559.20161 0.00054281316 0.00051463293 + 68730 -6240.3871 -6253.2096 12.822473 3747.4166 635.78664 -10636.413 0 614.52487 0.00083838951 0.00080580024 + 68740 -6240.0218 -6253.3044 13.282613 3742.3898 638.10767 -10633.802 0 636.57734 0.0011874485 0.0011555041 + 68750 -6239.9689 -6253.0167 13.047722 3736.2374 640.27723 -10629.531 0 625.32006 0.0015001648 0.0014724464 + 68760 -6240.1906 -6252.5036 12.312975 3730.6659 641.71803 -10624.888 0 590.10687 0.0017000299 0.0016765657 + 68770 -6240.6144 -6251.9388 11.324456 3727.0319 642.05494 -10621.026 0 542.73148 0.0017423683 0.0017207366 + 68780 -6241.1749 -6251.4462 10.27133 3726.0255 641.22443 -10618.696 0 492.25977 0.0016230477 0.0016009329 + 68790 -6241.8235 -6251.0894 9.2659446 3727.5491 639.46614 -10618.105 0 444.07606 0.0013763787 0.0013531004 + 68800 -6242.5188 -6250.8921 8.3733443 3730.8212 637.21419 -10618.928 0 401.29764 0.0010630317 0.0010393035 + 68810 -6243.2213 -6250.8569 7.6356262 3734.6689 634.94598 -10620.472 0 365.94205 0.00075198602 0.00072893552 + 68820 -6243.8965 -6250.9742 7.077702 3737.8988 633.05186 -10621.925 0 339.20319 0.00050293311 0.00048146967 + 68830 -6244.5181 -6251.2301 6.7120244 3739.6144 631.76528 -10622.61 0 321.67787 0.00035468274 0.00033523449 + 68840 -6245.0676 -6251.6155 6.5478276 3739.3998 631.1589 -10622.174 0 313.80864 0.00032125174 0.00030344772 + 68850 -6245.5344 -6252.1213 6.5868904 3737.3704 631.18439 -10620.676 0 315.68075 0.0003935776 0.00037609773 + 68860 -6245.92 -6252.7187 6.7986183 3734.1174 631.72336 -10618.559 0 325.82794 0.00054410671 0.00052532112 + 68870 -6246.2409 -6253.3421 7.1012523 3730.5594 632.62428 -10616.526 0 340.33186 0.00073324729 0.0007124474 + 68880 -6246.5211 -6253.9011 7.3799961 3727.711 633.71857 -10615.331 0 353.69082 0.00091767849 0.00089572338 + 68890 -6246.7793 -6254.3129 7.5336801 3726.4185 634.8285 -10615.56 0 361.05622 0.0010593621 0.0010379712 + 68900 -6247.0198 -6254.5301 7.5102981 3727.1431 635.78466 -10617.458 0 359.93562 0.0011328498 0.0011131887 + 68910 -6247.2358 -6254.545 7.309261 3729.8567 636.45919 -10620.861 0 350.3008 0.0011292681 0.0011110781 + 68920 -6247.4173 -6254.3815 6.9642208 3734.0588 636.80253 -10625.243 0 333.76454 0.0010570955 0.0010388584 + 68930 -6247.5593 -6254.0845 6.5252354 3738.896 636.8617 -10629.842 0 312.72589 0.00094015946 0.00091996839 + 68940 -6247.6661 -6253.7085 6.0423732 3743.3532 636.76408 -10633.826 0 289.58443 0.00081255031 0.00078930362 + 68950 -6247.7521 -6253.3063 5.5541875 3746.4747 636.66763 -10636.449 0 266.18783 0.00071066464 0.00068517233 + 68960 -6247.8347 -6252.931 5.0963729 3747.5646 636.6968 -10637.192 0 244.24679 0.00066434109 0.00063946668 + 68970 -6247.9191 -6252.6491 4.7300479 3746.3308 636.89156 -10635.872 0 226.69044 0.00068961921 0.0006687146 + 68980 -6247.9896 -6252.5439 4.5543121 3742.9646 637.19015 -10632.699 0 218.26819 0.00078429661 0.000768632 + 68990 -6248.017 -6252.6849 4.6679318 3738.15 637.44872 -10628.284 0 223.71349 0.00092637156 0.00091367124 + 69000 -6247.9814 -6253.0758 5.094443 3732.9751 637.48486 -10623.536 0 244.15429 0.0010761847 0.0010618727 + 69010 -6247.8928 -6253.6229 5.7301009 3728.7107 637.1291 -10619.463 0 274.61858 0.0011840327 0.0011645725 + 69020 -6247.7915 -6254.1574 6.3659651 3726.4718 636.27451 -10616.904 0 305.09277 0.0012038042 0.0011796497 + 69030 -6247.7244 -6254.5085 6.7841099 3726.8579 634.92011 -10616.287 0 325.13261 0.0011096756 0.001085403 + 69040 -6247.7114 -6254.5854 6.8739312 3729.7151 633.20107 -10617.502 0 329.43735 0.00090936492 0.00089046012 + 69050 -6247.7273 -6254.4179 6.6905627 3734.1445 631.39168 -10619.954 0 320.64931 0.00064674005 0.00063508965 + 69060 -6247.719 -6254.124 6.4049572 3738.785 629.86733 -10622.776 0 306.96149 0.00039040794 0.0003820368 + 69070 -6247.6497 -6253.8214 6.1716662 3742.2702 629.02395 -10625.116 0 295.78087 0.00021192025 0.00019938515 + 69080 -6247.5332 -6253.5487 6.0154908 3743.6639 629.17123 -10626.384 0 288.29607 0.0001630459 0.0001412709 + 69090 -6247.426 -6253.2636 5.837663 3742.693 630.43081 -10626.387 0 279.77357 0.00026183167 0.00023274538 + 69100 -6247.3785 -6252.9227 5.544147 3739.7279 632.67524 -10625.326 0 265.70663 0.00049139435 0.00046299261 + 69110 -6247.3861 -6252.5677 5.1815863 3735.6014 635.53414 -10623.703 0 248.33069 0.00080786404 0.00078786464 + 69120 -6247.384 -6252.3334 4.9494574 3731.4038 638.47054 -10622.208 0 237.20577 0.001150606 0.0011398145 + 69130 -6247.2928 -6252.3596 5.0667986 3728.3103 640.90419 -10621.574 0 242.82942 0.0014510662 0.0014421374 + 69140 -6247.0772 -6252.6781 5.6009462 3727.3922 642.34527 -10622.416 0 268.42877 0.0016423061 0.0016251998 + 69150 -6246.7746 -6253.1715 6.3969927 3729.3419 642.50699 -10625.02 0 306.57978 0.0016731862 0.0016431976 + 69160 -6246.4711 -6253.6409 7.1697706 3734.1437 641.37636 -10629.161 0 343.61564 0.0015267244 0.0014887017 + 69170 -6246.2368 -6253.9353 7.698529 3740.855 639.22804 -10634.018 0 368.95671 0.0012346216 0.001199503 + 69180 -6246.0683 -6254.041 7.9727443 3747.7076 636.57076 -10638.319 0 382.09864 0.00087607047 0.0008519054 + 69190 -6245.8946 -6254.0503 8.1556871 3752.6126 634.02871 -10640.692 0 390.86629 0.00055466884 0.00053950222 + 69200 -6245.6491 -6254.0339 8.3847738 3753.9021 632.18196 -10640.118 0 401.84541 0.00036100407 0.00034421985 + 69210 -6245.3448 -6253.9366 8.5917782 3750.954 631.40945 -10636.3 0 411.76622 0.00033959639 0.00031113115 + 69220 -6245.0771 -6253.6036 8.5264528 3744.3892 631.78521 -10629.778 0 408.63546 0.0004772669 0.00043679389 + 69230 -6244.9452 -6252.9286 7.9833965 3735.7842 633.06536 -10621.778 0 382.60916 0.00071648105 0.00067427698 + 69240 -6244.9614 -6251.9943 7.0328937 3727.1111 634.77291 -10613.878 0 337.05573 0.00098225918 0.0009507812 + 69250 -6245.0359 -6251.0766 6.0407196 3720.2102 636.35044 -10607.637 0 289.50518 0.0012061105 0.0011896502 + 69260 -6245.0465 -6250.4994 5.4528349 3716.4693 637.32611 -10604.295 0 261.33044 0.001338096 0.0013293398 + 69270 -6244.927 -6250.4482 5.5211881 3716.6819 637.43997 -10604.57 0 264.60631 0.0013499263 0.0013359879 + 69280 -6244.7054 -6250.8782 6.1727734 3720.9499 636.70007 -10608.528 0 295.83394 0.0012369515 0.0012097398 + 69290 -6244.4751 -6251.5736 7.0985262 3728.5719 635.36514 -10615.511 0 340.2012 0.001022739 0.00098537363 + 69300 -6244.3218 -6252.3048 7.9829655 3738.0092 633.86777 -10624.182 0 382.5885 0.00076208584 0.00072611907 + 69310 -6244.2598 -6252.9544 8.6946249 3747.106 632.70038 -10632.761 0 416.69521 0.00053365116 0.00050914667 + 69320 -6244.2343 -6253.5157 9.2814175 3753.6444 632.28853 -10639.449 0 444.8176 0.00041717709 0.00040407056 + 69330 -6244.1956 -6253.9829 9.7873114 3756.0697 632.87577 -10642.928 0 469.06288 0.00046205764 0.00045055066 + 69340 -6244.1715 -6254.2611 10.089556 3754.0372 634.44493 -10642.743 0 483.54813 0.00066440695 0.00064396846 + 69350 -6244.2592 -6254.2037 9.9444319 3748.4857 636.70208 -10639.391 0 476.59297 0.00096766062 0.00093616871 + 69360 -6244.5352 -6253.7481 9.2128826 3741.2152 639.14164 -10634.105 0 441.53303 0.0012868118 0.0012515327 + 69370 -6244.9751 -6253.0155 8.0403704 3734.2206 641.18343 -10628.42 0 385.33966 0.0015408016 0.0015110185 + 69380 -6245.4677 -6252.2716 6.8039533 3729.1148 642.33754 -10623.724 0 326.08362 0.001674952 0.0016537908 + 69390 -6245.9036 -6251.7747 5.8710529 3726.8281 642.33666 -10620.939 0 281.3738 0.0016669311 0.0016497556 + 69400 -6246.2501 -6251.633 5.3828401 3727.559 641.19207 -10620.384 0 257.9759 0.0015226968 0.0015025626 + 69410 -6246.5511 -6251.7785 5.2273761 3730.8444 639.16466 -10621.788 0 250.52519 0.0012714055 0.0012458376 + 69420 -6246.8691 -6252.0636 5.1944632 3735.6708 636.67257 -10624.407 0 248.94782 0.00096178978 0.00093471881 + 69430 -6247.2258 -6252.3913 5.1654932 3740.6614 634.17442 -10627.227 0 247.55942 0.0006560027 0.00063355516 + 69440 -6247.589 -6252.7681 5.1791382 3744.3986 632.06782 -10629.235 0 248.21336 0.00041684418 0.00040137437 + 69450 -6247.9111 -6253.2468 5.3357558 3745.8373 630.62734 -10629.712 0 255.71936 0.00029044856 0.00027851404 + 69460 -6248.1763 -6253.8294 5.6531879 3744.6395 629.98256 -10628.451 0 270.93249 0.0002925426 0.00027830237 + 69470 -6248.4134 -6254.4277 6.0142455 3741.257 630.12306 -10625.808 0 288.23639 0.00040571246 0.00038609071 + 69480 -6248.6681 -6254.9072 6.2390668 3736.7338 630.91953 -10622.561 0 299.01109 0.00058841864 0.0005653921 + 69490 -6248.962 -6255.1659 6.2039116 3732.3424 632.1577 -10619.666 0 297.32625 0.00079015382 0.0007686948 + 69500 -6249.2745 -6255.1832 5.9086739 3729.2179 633.58304 -10617.984 0 283.17681 0.00096553934 0.00094942463 + 69510 -6249.558 -6255.0116 5.45358 3728.108 634.9508 -10618.07 0 261.36615 0.0010828932 0.0010718653 + 69520 -6249.7717 -6254.729 4.9572431 3729.2683 636.07231 -10620.07 0 237.57891 0.0011270242 0.0011173427 + 69530 -6249.9084 -6254.3927 4.4843926 3732.4737 636.84736 -10623.714 0 214.91725 0.0010987773 0.0010865019 + 69540 -6249.9937 -6254.0314 4.0377028 3737.0884 637.2728 -10628.393 0 193.50937 0.0010137453 0.00099802214 + 69550 -6250.0616 -6253.6777 3.6160433 3742.172 637.4234 -10633.273 0 173.30108 0.00090028006 0.00088384699 + 69560 -6250.1246 -6253.406 3.281418 3746.6391 637.41177 -10637.457 0 157.26396 0.00079470726 0.00078112572 + 69570 -6250.1643 -6253.3241 3.1597921 3749.4953 637.34394 -10640.163 0 151.43497 0.00073203072 0.00072218053 + 69580 -6250.1502 -6253.5104 3.3601611 3750.1104 637.28677 -10640.908 0 161.03778 0.00073406899 0.00072523017 + 69590 -6250.0663 -6253.9477 3.8813866 3748.415 637.25324 -10639.616 0 186.01782 0.00080072368 0.00078901107 + 69600 -6249.9226 -6254.5134 4.590701 3744.9142 637.20299 -10636.631 0 220.01215 0.00090954132 0.00089326127 + 69610 -6249.7451 -6255.0333 5.2882003 3740.5091 637.05524 -10632.598 0 253.44023 0.0010239014 0.0010048618 + 69620 -6249.5534 -6255.3564 5.8029359 3736.2152 636.71275 -10628.284 0 278.10925 0.0011055209 0.0010874245 + 69630 -6249.347 -6255.4046 6.0576681 3732.8924 636.09428 -10624.391 0 290.31744 0.0011258111 0.0011111974 + 69640 -6249.1063 -6255.1795 6.0731852 3731.0701 635.16947 -10621.419 0 291.06111 0.0010725336 0.0010606139 + 69650 -6248.8111 -6254.7346 5.9235577 3730.8895 633.98718 -10619.611 0 283.89012 0.00095118665 0.00093816093 + 69660 -6248.4592 -6254.1406 5.6814099 3732.138 632.68775 -10618.966 0 272.28504 0.00078280924 0.00076450004 + 69670 -6248.0731 -6253.4674 5.3943512 3734.3279 631.49118 -10619.287 0 258.52758 0.00060031888 0.00057528224 + 69680 -6247.6846 -6252.7911 5.1065018 3736.7911 630.65872 -10620.241 0 244.73222 0.00044424157 0.00041506033 + 69690 -6247.3093 -6252.2084 4.8991339 3738.793 630.4352 -10621.437 0 234.79399 0.00035709331 0.0003287921 + 69700 -6246.9268 -6251.8298 4.9029768 3739.6928 630.98792 -10622.511 0 234.97816 0.00037519103 0.00035186655 + 69710 -6246.4854 -6251.7393 5.2538324 3739.1474 632.3584 -10623.245 0 251.79313 0.00051791984 0.00050003794 + 69720 -6245.9331 -6251.9423 6.0091459 3737.2976 634.4344 -10623.674 0 287.99199 0.00077682667 0.00076107468 + 69730 -6245.2632 -6252.3414 7.0781415 3734.8361 636.94261 -10624.12 0 339.22426 0.0011092181 0.0010909659 + 69740 -6244.543 -6252.7667 8.2236187 3732.8636 639.46853 -10625.099 0 394.12195 0.0014422418 0.0014189336 + 69750 -6243.891 -6253.0541 9.1631454 3732.5218 641.52044 -10627.096 0 439.14934 0.0016913622 0.0016643372 + 69760 -6243.4078 -6253.1275 9.7197325 3734.5187 642.64702 -10630.293 0 465.82412 0.0017891371 0.0017622623 + 69770 -6243.1219 -6253.0251 9.9031917 3738.7685 642.58479 -10634.378 0 474.61651 0.0017109319 0.0016871725 + 69780 -6242.9971 -6252.8476 9.8505112 3744.3354 641.37408 -10638.557 0 472.09177 0.0014841661 0.0014633162 + 69790 -6242.9811 -6252.6711 9.6899965 3749.7024 639.37771 -10641.751 0 464.399 0.0011780778 0.0011575973 + 69800 -6243.0419 -6252.4986 9.4567108 3753.235 637.1752 -10642.909 0 453.21864 0.00088085515 0.00085852812 + 69810 -6243.1692 -6252.2814 9.1122094 3753.6678 635.36579 -10641.315 0 436.7082 0.00067303187 0.000648818 + 69820 -6243.3549 -6251.975 8.620108 3750.486 634.35909 -10636.82 0 413.12394 0.00060415811 0.00058002434 + 69830 -6243.5795 -6251.5882 8.0086667 3744.1096 634.23995 -10629.938 0 383.82024 0.00067888745 0.00065718262 + 69840 -6243.8107 -6251.2008 7.3901005 3735.8249 634.76034 -10621.786 0 354.17508 0.00085717387 0.00083861836 + 69850 -6244.0124 -6250.9428 6.9303636 3727.4787 635.45511 -10613.877 0 332.14191 0.0010684025 0.0010508193 + 69860 -6244.1651 -6250.936 6.770874 3721.0209 635.8297 -10607.787 0 324.49828 0.0012337133 0.0012127817 + 69870 -6244.284 -6251.2215 6.9374723 3718.0113 635.54641 -10604.779 0 332.4826 0.0012893469 0.0012617216 + 69880 -6244.42 -6251.7297 7.3097397 3719.1912 634.54418 -10605.465 0 350.32374 0.0012060333 0.0011727954 + 69890 -6244.6292 -6252.3243 7.6950713 3724.2243 633.05612 -10609.605 0 368.79099 0.0010005179 0.00096754414 + 69900 -6244.9314 -6252.8883 7.9569 3731.7243 631.52779 -10616.14 0 381.33929 0.00073419697 0.00070810652 + 69910 -6245.2925 -6253.3755 8.0829476 3739.6378 630.47217 -10623.485 0 387.3802 0.00049516507 0.00047775237 + 69920 -6245.6535 -6253.7843 8.1307417 3745.8988 630.31242 -10629.995 0 389.67076 0.00036717497 0.00035330079 + 69930 -6245.9812 -6254.0918 8.1106305 3749.1019 631.25628 -10634.45 0 388.70692 0.00039794411 0.00037918246 + 69940 -6246.2927 -6254.2232 7.9305212 3748.9095 633.229 -10636.362 0 380.07507 0.0005817692 0.00055306177 + 69950 -6246.6321 -6254.0982 7.4660503 3746.0281 635.879 -10636.005 0 357.81502 0.00086438208 0.0008282274 + 69960 -6247.0206 -6253.7181 6.697454 3741.8122 638.65947 -10634.19 0 320.97957 0.0011660806 0.0011307764 + 69970 -6247.4282 -6253.2137 5.7855028 3737.7213 640.97115 -10631.906 0 277.27376 0.0014103405 0.0013837701 + 69980 -6247.7914 -6252.8003 5.0089057 3734.8805 642.32611 -10630.007 0 240.05487 0.0015449171 0.0015289523 + 69990 -6248.0578 -6252.6638 4.6060152 3733.8754 642.47748 -10629.017 0 220.74609 0.0015498365 0.0015395597 + 70000 -6248.2195 -6252.8573 4.6377261 3734.7512 641.47132 -10629.08 0 222.26586 0.0014347833 0.0014226438 + 70010 -6248.3157 -6253.2784 4.9626804 3737.1088 639.60706 -10629.994 0 237.83949 0.0012315116 0.0012129467 + 70020 -6248.4061 -6253.7399 5.3338022 3740.2234 637.32719 -10631.29 0 255.62573 0.0009851896 0.00096156597 + 70030 -6248.5322 -6254.0806 5.5484151 3743.1796 635.08082 -10632.341 0 265.91118 0.00074558849 0.00072253605 + 70040 -6248.6912 -6254.2436 5.5524548 3745.0578 633.21315 -10632.515 0 266.10479 0.00055769028 0.00054034277 + 70050 -6248.842 -6254.2757 5.4336805 3745.1717 631.91576 -10631.363 0 260.41246 0.00045234611 0.00044125268 + 70060 -6248.9402 -6254.2607 5.3204647 3743.2948 631.23937 -10628.795 0 254.98652 0.00043950881 0.00043034848 + 70070 -6248.9731 -6254.2431 5.2699577 3739.77 631.14082 -10625.154 0 252.56594 0.00050703018 0.00049426009 + 70080 -6248.9696 -6254.201 5.2314232 3735.4299 631.52875 -10621.16 0 250.71915 0.00062625589 0.00060775711 + 70090 -6248.9751 -6254.0846 5.1094383 3731.3401 632.28747 -10617.712 0 244.87295 0.0007626035 0.00074154244 + 70100 -6249.0129 -6253.8849 4.8719737 3728.474 633.28088 -10615.64 0 233.49232 0.0008865623 0.00086880627 + 70110 -6249.0612 -6253.6706 4.6093836 3727.4667 634.35304 -10615.49 0 220.90753 0.00097995688 0.00096899592 + 70120 -6249.067 -6253.5549 4.4879602 3728.5316 635.34127 -10617.428 0 215.08823 0.0010351325 0.0010286574 + 70130 -6248.985 -6253.6142 4.6291892 3731.5188 636.10625 -10621.239 0 221.85672 0.0010497025 0.0010408263 + 70140 -6248.8127 -6253.8229 5.0101903 3736.0066 636.56887 -10626.398 0 240.11643 0.0010228629 0.0010052969 + 70150 -6248.5926 -6254.0618 5.4692507 3741.3396 636.73641 -10632.138 0 262.11718 0.00095780684 0.00093100373 + 70160 -6248.3785 -6254.1988 5.8202371 3746.6169 636.70338 -10637.519 0 278.93842 0.00086888945 0.00083891506 + 70170 -6248.1884 -6254.1783 5.9899118 3750.7359 636.62369 -10641.538 0 287.07018 0.00078633459 0.00076146637 + 70180 -6247.9824 -6254.0488 6.0663983 3752.5942 636.6626 -10643.306 0 290.73585 0.00075085693 0.00073524976 + 70190 -6247.6857 -6253.9015 6.2158118 3751.4463 636.94181 -10642.29 0 297.89658 0.00079715697 0.00078769583 + 70200 -6247.2397 -6253.7761 6.5363734 3747.2644 637.48911 -10638.53 0 313.25969 0.00093416652 0.00092305506 + 70210 -6246.6408 -6253.617 6.9762243 3740.8914 638.20192 -10632.71 0 334.33981 0.0011339247 0.0011146887 + 70220 -6245.9391 -6253.3235 7.3843368 3733.8628 638.84003 -10626.026 0 353.89886 0.001336645 0.0013084537 + 70230 -6245.2032 -6252.8435 7.6403489 3727.951 639.06869 -10619.863 0 366.16839 0.0014702473 0.001437397 + 70240 -6244.4825 -6252.2223 7.7398229 3724.6229 638.56308 -10615.408 0 370.93574 0.0014754288 0.0014434641 + 70250 -6243.7978 -6251.5681 7.7702979 3724.6029 637.15038 -10613.321 0 372.39627 0.0013267721 0.0012991981 + 70260 -6243.1542 -6250.9882 7.8339751 3727.6562 634.92891 -10613.573 0 375.44804 0.0010443949 0.0010219827 + 70270 -6242.5517 -6250.5623 8.0105731 3732.638 632.29687 -10615.497 0 383.91161 0.00069352112 0.00067487995 + 70280 -6241.9859 -6250.3528 8.3668236 3737.8246 629.8614 -10618.039 0 400.98513 0.00036960168 0.00035146677 + 70290 -6241.458 -6250.3985 8.9404927 3741.4683 628.25794 -10620.125 0 428.47857 0.00016960787 0.00014772663 + 70300 -6240.9964 -6250.6805 9.6840637 3742.387 627.95026 -10621.018 0 464.11467 0.00015878452 0.00013050716 + 70310 -6240.6598 -6251.1119 10.452075 3740.3405 629.08419 -10620.537 0 500.92209 0.00034835018 0.00031496826 + 70320 -6240.505 -6251.5812 11.076297 3736.0627 631.44363 -10619.088 0 530.83828 0.00069386217 0.00065970628 + 70330 -6240.5516 -6252.0023 11.450716 3731.0019 634.51946 -10617.524 0 548.78258 0.0011111814 0.0010800335 + 70340 -6240.7799 -6252.3228 11.542917 3726.8916 637.66087 -10616.875 0 553.20134 0.0015004587 0.0014729295 + 70350 -6241.1531 -6252.5051 11.352033 3725.2527 640.25259 -10618.01 0 544.05313 0.0017710439 0.001745134 + 70360 -6241.6347 -6252.5178 10.883095 3726.9363 641.86295 -10621.317 0 521.57896 0.0018636933 0.001837373 + 70370 -6242.1889 -6252.3534 10.164546 3731.8366 642.32759 -10626.518 0 487.14209 0.0017661077 0.0017393019 + 70380 -6242.7711 -6252.0541 9.2829543 3738.8824 641.75483 -10632.691 0 444.89126 0.001516476 0.0014908033 + 70390 -6243.3286 -6251.7202 8.3915975 3746.3226 640.46047 -10638.503 0 402.17244 0.0011916234 0.0011682748 + 70400 -6243.8143 -6251.4784 7.6640928 3752.2241 638.86038 -10642.563 0 367.30633 0.00088235468 0.00086027708 + 70410 -6244.2092 -6251.4199 7.2106316 3755.0222 637.357 -10643.799 0 345.57393 0.00066527199 0.00064172033 + 70420 -6244.5306 -6251.553 7.0224567 3753.9438 636.2467 -10641.744 0 336.55553 0.00058240237 0.00055553356 + 70430 -6244.8175 -6251.8147 6.9972082 3749.1724 635.66107 -10636.648 0 335.34548 0.00063501085 0.00060591344 + 70440 -6245.1019 -6252.126 7.0241062 3741.7437 635.54882 -10629.419 0 336.63458 0.00078993966 0.00076197758 + 70450 -6245.3895 -6252.4422 7.0527203 3733.2573 635.70321 -10621.403 0 338.00593 0.00099211547 0.0009682149 + 70460 -6245.6649 -6252.7567 7.0918269 3725.5154 635.83258 -10614.105 0 339.88014 0.0011780251 0.0011585147 + 70470 -6245.9128 -6253.0711 7.1582884 3720.1558 635.65775 -10608.885 0 343.06535 0.0012889128 0.001271695 + 70480 -6246.1329 -6253.371 7.23815 3718.3117 635.00778 -10606.691 0 346.89276 0.0012841377 0.0012665132 + 70490 -6246.3374 -6253.6295 7.2921671 3720.3457 633.88407 -10607.859 0 349.48156 0.0011528737 0.0011330938 + 70500 -6246.5396 -6253.8215 7.2819312 3725.7378 632.47378 -10612.033 0 348.991 0.0009195413 0.00089715653 + 70510 -6246.7484 -6253.9281 7.1797132 3733.1912 631.10998 -10618.229 0 344.09214 0.00063923697 0.00061486946 + 70520 -6246.9689 -6253.9313 6.9623573 3740.9413 630.18985 -10625.062 0 333.67523 0.00038393684 0.00035921931 + 70530 -6247.2013 -6253.8209 6.6196033 3747.1808 630.06964 -10631.071 0 317.24853 0.00022424107 0.00020153469 + 70540 -6247.4336 -6253.6166 6.1829808 3750.4909 630.95955 -10635.067 0 296.32313 0.00021158946 0.00019276091 + 70550 -6247.6416 -6253.377 5.7354451 3750.1923 632.84481 -10636.414 0 274.87471 0.00036377138 0.00034867955 + 70560 -6247.8035 -6253.1745 5.3710401 3746.5393 635.45723 -10635.171 0 257.41038 0.0006562902 0.0006427111 + 70570 -6247.9165 -6253.055 5.1385136 3740.6785 638.31121 -10632.045 0 246.2664 0.0010238734 0.0010093116 + 70580 -6247.9968 -6253.0261 5.0293011 3734.3381 640.80295 -10628.167 0 241.03233 0.0013753727 0.0013589843 + 70590 -6248.0628 -6253.0788 5.0160008 3729.3256 642.35608 -10624.76 0 240.3949 0.0016192607 0.0016019707 + 70600 -6248.1193 -6253.2087 5.0894185 3727.0083 642.57825 -10622.795 0 243.91349 0.001690573 0.0016735343 + 70610 -6248.1588 -6253.4118 5.2530657 3727.9461 641.37937 -10622.737 0 251.75638 0.0015691654 0.0015523671 + 70620 -6248.1746 -6253.6623 5.4877023 3731.7715 639.00592 -10624.44 0 263.00148 0.0012837937 0.0012662174 + 70630 -6248.1726 -6253.9033 5.7306627 3737.3157 635.97478 -10627.194 0 274.64551 0.00090268502 0.00088369762 + 70640 -6248.1681 -6254.0676 5.8994956 3742.9268 632.92985 -10629.924 0 282.73693 0.00051522586 0.00049564622 + 70650 -6248.1718 -6254.1172 5.9453525 3746.9 630.47426 -10631.491 0 284.93465 0.00021018859 0.00019178476 + 70660 -6248.1783 -6254.0666 5.8883045 3747.9311 629.03337 -10631.031 0 282.20059 5.494482e-05 3.8723401e-05 + 70670 -6248.1691 -6253.9676 5.7984477 3745.4901 628.78027 -10628.238 0 277.89415 7.9361496e-05 6.4349678e-05 + 70680 -6248.1297 -6253.8674 5.7376444 3740.004 629.62588 -10623.497 0 274.98011 0.00026815318 0.00025199815 + 70690 -6248.0619 -6253.7782 5.7163029 3732.7764 631.26003 -10617.815 0 273.95731 0.0005649009 0.0005458069 + 70700 -6247.9804 -6253.6841 5.7037454 3725.6456 633.23053 -10612.56 0 273.35548 0.00088799146 0.00086617191 + 70710 -6247.8969 -6253.5726 5.6757085 3720.4818 635.05081 -10609.105 0 272.0118 0.0011539583 0.0011313128 + 70720 -6247.808 -6253.456 5.6480071 3718.684 636.32018 -10608.46 0 270.68419 0.0013002628 0.0012787482 + 70730 -6247.6965 -6253.3619 5.6654815 3720.8259 636.82762 -10611.015 0 271.52166 0.0013002201 0.0012804927 + 70740 -6247.5421 -6253.3053 5.7631948 3726.5315 636.60438 -10616.441 0 276.20463 0.0011669024 0.0011482805 + 70750 -6247.3312 -6253.2727 5.941553 3734.583 635.90223 -10623.758 0 284.75256 0.00094707176 0.0009284606 + 70760 -6247.0563 -6253.2349 6.1785356 3743.211 635.10076 -10631.547 0 296.11009 0.00070808119 0.00068868062 + 70770 -6246.7104 -6253.1725 6.4621118 3750.4942 634.57758 -10638.244 0 309.70065 0.00052078795 0.00049990814 + 70780 -6246.2852 -6253.0883 6.8030819 3754.7927 634.59252 -10642.473 0 326.04186 0.00044170114 0.00041829412 + 70790 -6245.7805 -6252.9901 7.2096057 3755.1279 635.22672 -10643.345 0 345.52476 0.000498473 0.00047154019 + 70800 -6245.2153 -6252.8691 7.6537294 3751.4129 636.38349 -10640.665 0 366.80966 0.00068310953 0.00065301286 + 70810 -6244.6246 -6252.7024 8.0777621 3744.4633 637.82658 -10634.992 0 387.13168 0.00095513995 0.00092421099 + 70820 -6244.0403 -6252.48 8.4396453 3735.7915 639.23003 -10627.501 0 404.47516 0.0012527278 0.0012238692 + 70830 -6243.4777 -6252.2168 8.7391146 3727.2633 640.23377 -10619.714 0 418.82741 0.0015066789 0.0014810904 + 70840 -6242.9439 -6251.9317 8.9878675 3720.7035 640.51162 -10613.147 0 430.74904 0.0016536232 0.0016302255 + 70850 -6242.4564 -6251.6249 9.1685248 3717.5031 639.84873 -10608.977 0 439.40715 0.001648429 0.0016256455 + 70860 -6242.0427 -6251.2941 9.2513825 3718.2747 638.20962 -10607.778 0 443.37816 0.0014765679 0.0014540984 + 70870 -6241.7185 -6250.9761 9.2576079 3722.6559 635.7747 -10609.407 0 443.67652 0.0011629754 0.001141254 + 70880 -6241.4755 -6250.7542 9.278645 3729.3734 632.93091 -10613.059 0 444.68473 0.00077069728 0.00074904537 + 70890 -6241.3021 -6250.7065 9.4044308 3736.5887 630.21154 -10617.507 0 450.71309 0.00038642284 0.00036294159 + 70900 -6241.2106 -6250.8436 9.6330104 3742.3963 628.1892 -10621.429 0 461.66791 9.8284671e-05 7.2177772e-05 + 70910 -6241.2375 -6251.1042 9.8666793 3745.2983 627.34153 -10623.744 0 472.86664 -2.5060591e-05 -5.16679e-05 + 70920 -6241.4117 -6251.4076 9.9958797 3744.5514 627.92472 -10623.884 0 479.05864 5.0734008e-05 2.7295298e-05 + 70930 -6241.7297 -6251.7032 9.9734599 3740.3607 629.89179 -10621.956 0 477.98416 0.00031672172 0.00029823428 + 70940 -6242.1623 -6251.9723 9.809932 3733.8847 632.87923 -10618.736 0 470.14699 0.0007178987 0.00070235831 + 70950 -6242.682 -6252.2004 9.5184732 3726.9902 636.27047 -10615.461 0 456.17864 0.0011606273 0.0011437998 + 70960 -6243.2768 -6252.3601 9.0832848 3721.7558 639.33269 -10613.449 0 435.32198 0.0015338181 0.0015127599 + 70970 -6243.9392 -6252.4243 8.4850153 3719.8469 641.40242 -10613.674 0 406.64954 0.0017406939 0.001716127 + 70980 -6244.6434 -6252.3974 7.7539955 3721.9801 642.06685 -10616.444 0 371.61497 0.0017296808 0.0017053298 + 70990 -6245.3373 -6252.3349 6.9976038 3727.6845 641.27402 -10621.293 0 335.36444 0.0015106721 0.0014901865 + 71000 -6245.9595 -6252.3291 6.369672 3735.4508 639.33019 -10627.11 0 305.27042 0.0011495569 0.0011334876 + 71010 -6246.4679 -6252.4605 5.9925685 3743.2035 636.79322 -10632.457 0 287.19751 0.00074480572 0.00073011973 + 71020 -6246.8602 -6252.7423 5.8820978 3748.9064 634.30794 -10635.957 0 281.90313 0.00039724801 0.00037993397 + 71030 -6247.1702 -6253.1067 5.9365445 3751.0905 632.435 -10636.632 0 284.51252 0.00018423527 0.00016287082 + 71040 -6247.4415 -6253.4512 6.0097002 3749.1659 631.51446 -10634.131 0 288.01856 0.00014422317 0.00012127425 + 71050 -6247.6968 -6253.7089 6.0120927 3743.4999 631.5945 -10628.803 0 288.13322 0.00027197503 0.00025157584 + 71060 -6247.9267 -6253.8802 5.9535217 3735.3128 632.44156 -10621.635 0 285.32617 0.00052198602 0.00050629464 + 71070 -6248.1054 -6254.0045 5.899044 3726.4309 633.62594 -10614.061 0 282.71529 0.0008188719 0.00080625346 + 71080 -6248.2179 -6254.1093 5.8913467 3718.9089 634.65549 -10607.674 0 282.34639 0.001074688 0.0010610112 + 71090 -6248.2753 -6254.1816 5.9062668 3714.5557 635.11994 -10603.857 0 283.06144 0.001211295 0.0011930647 + 71100 -6248.3108 -6254.1764 5.8655868 3714.4646 634.80885 -10603.45 0 281.11183 0.0011825299 0.0011596006 + 71110 -6248.3603 -6254.0536 5.6932416 3718.6829 633.7734 -10606.51 0 272.85208 0.0009894503 0.00096553697 + 71120 -6248.4379 -6253.821 5.3830459 3726.1456 632.31505 -10612.282 0 257.98576 0.00068316134 0.00066353837 + 71130 -6248.5224 -6253.5547 5.0322588 3734.9282 630.90422 -10619.387 0 241.17408 0.00035265317 0.00034019872 + 71140 -6248.5684 -6253.3669 4.7985307 3742.782 630.05149 -10626.2 0 229.97251 9.9262929e-05 9.1749564e-05 + 71150 -6248.5415 -6253.3299 4.788421 3747.7949 630.16383 -10631.289 0 229.488 4.7112848e-06 -3.8778745e-06 + 71160 -6248.4508 -6253.4135 4.9626584 3748.9423 631.41792 -10633.774 0 237.83844 0.00010415083 8.968558e-05 + 71170 -6248.3458 -6253.5051 5.1593067 3746.3158 633.68054 -10633.501 0 247.26292 0.00037538448 0.00035592663 + 71180 -6248.2736 -6253.5106 5.2370408 3740.9718 636.50725 -10630.99 0 250.98838 0.00074832404 0.00072984596 + 71190 -6248.2333 -6253.4434 5.2100784 3734.5297 639.24059 -10627.214 0 249.69619 0.0011286104 0.0011166116 + 71200 -6248.1743 -6253.4124 5.2381284 3728.7172 641.19362 -10623.323 0 251.0405 0.0014238786 0.0014180018 + 71210 -6248.0411 -6253.5156 5.4745076 3724.9895 641.85898 -10620.364 0 262.36912 0.0015642601 0.001558225 + 71220 -6247.8249 -6253.7369 5.9120547 3724.2358 641.06294 -10619.036 0 283.33884 0.0015155661 0.0015025832 + 71230 -6247.5758 -6253.9409 6.3651364 3726.5642 639.00644 -10619.512 0 305.05305 0.0012866605 0.0012655637 + 71240 -6247.3639 -6253.9713 6.6074229 3731.2115 636.1842 -10621.367 0 316.66478 0.00093019733 0.0009068454 + 71250 -6247.2196 -6253.7744 6.5547656 3736.6741 633.22339 -10623.672 0 314.14114 0.00053290759 0.00051531759 + 71260 -6247.1048 -6253.4424 6.3376158 3741.1132 630.71072 -10625.266 0 303.73411 0.00019346888 0.0001845997 + 71270 -6246.9441 -6253.1377 6.1935613 3742.9445 629.06842 -10625.151 0 296.83021 -6.8749174e-06 -1.2345847e-05 + 71280 -6246.6914 -6252.959 6.2675528 3741.3895 628.50073 -10622.849 0 300.3763 -2.9169627e-05 -4.0873201e-05 + 71290 -6246.3723 -6252.8659 6.493558 3736.7357 628.99434 -10618.596 0 311.20774 0.00011426496 9.0506587e-05 + 71300 -6246.0657 -6252.7297 6.664008 3730.1905 630.34677 -10613.267 0 319.37666 0.00037016699 0.0003376801 + 71310 -6245.8365 -6252.4665 6.6299551 3723.4239 632.21164 -10608.102 0 317.74465 0.00066732647 0.00063633384 + 71320 -6245.6772 -6252.1337 6.4564506 3718.049 634.16632 -10604.349 0 309.42934 0.00093970481 0.00091917368 + 71330 -6245.5089 -6251.9031 6.3941755 3715.265 635.80185 -10602.97 0 306.44477 0.0011394625 0.0011298895 + 71340 -6245.24 -6251.9303 6.6902142 3715.7243 636.81647 -10604.471 0 320.6326 0.0012385002 0.0012315576 + 71350 -6244.8344 -6252.2277 7.3933396 3719.5204 637.08203 -10608.83 0 354.33032 0.0012251197 0.0012102641 + 71360 -6244.3385 -6252.6411 8.3025642 3726.1695 636.662 -10615.473 0 397.90546 0.0011034015 0.0010761104 + 71370 -6243.8509 -6252.946 9.0951051 3734.5686 635.77964 -10623.294 0 435.88847 0.00089733758 0.00086254688 + 71380 -6243.4516 -6252.9935 9.5419329 3743.0419 634.75165 -10630.787 0 457.30296 0.00065462971 0.00062258542 + 71390 -6243.1461 -6252.7945 9.6484274 3749.6139 633.90935 -10636.318 0 462.40678 0.0004418206 0.00041954075 + 71400 -6242.8752 -6252.4796 9.6044514 3752.5235 633.52692 -10638.53 0 460.2992 0.00032664818 0.00031210225 + 71410 -6242.5835 -6252.1697 9.5862116 3750.812 633.76642 -10636.748 0 459.42505 0.00035325085 0.0003373908 + 71420 -6242.2846 -6251.8746 9.590037 3744.7047 634.63974 -10631.219 0 459.60838 0.00052310489 0.00049808314 + 71430 -6242.0574 -6251.5107 9.4532934 3735.5824 635.98726 -10623.08 0 453.05486 0.00079261269 0.00075891085 + 71440 -6241.9777 -6251.0222 9.0445007 3725.5521 637.48387 -10614.058 0 433.46322 0.0010884772 0.0010544994 + 71450 -6242.0462 -6250.4895 8.4433259 3716.8305 638.69108 -10606.011 0 404.65155 0.0013318644 0.0013062587 + 71460 -6242.1864 -6250.1191 7.9327485 3711.2056 639.16381 -10600.489 0 380.18182 0.0014591608 0.0014427562 + 71470 -6242.3149 -6250.1087 7.7938365 3709.7228 638.59017 -10598.422 0 373.52438 0.0014328735 0.0014175795 + 71480 -6242.4231 -6250.4975 8.0743129 3712.5635 636.9148 -10599.976 0 386.96638 0.0012453526 0.0012211836 + 71490 -6242.5971 -6251.1297 8.5325489 3719.0131 634.39391 -10604.537 0 408.92762 0.0009217054 0.00088578551 + 71500 -6242.953 -6251.7675 8.8145429 3727.5086 631.55352 -10610.83 0 422.44235 0.00052288325 0.0004823186 + 71510 -6243.5384 -6252.2568 8.7183584 3735.8847 629.05749 -10617.199 0 417.83265 0.00014120934 0.00010713626 + 71520 -6244.2892 -6252.6046 8.3154206 3741.9129 627.52511 -10622.043 0 398.52161 -0.00012053732 -0.00014220364 + 71530 -6245.081 -6252.9149 7.8339554 3744.0133 627.35601 -10624.284 0 375.4471 -0.00018402261 -0.00019670983 + 71540 -6245.8196 -6253.2597 7.4400771 3741.8193 628.6168 -10623.696 0 356.57024 -2.7566662e-05 -4.0025979e-05 + 71550 -6246.4824 -6253.6079 7.1255445 3736.3002 631.01982 -10620.928 0 341.49607 0.00030288241 0.00028415021 + 71560 -6247.0911 -6253.8634 6.7722826 3729.3826 633.99603 -10617.242 0 324.56578 0.0007098863 0.00068502894 + 71570 -6247.6616 -6253.9565 6.2948326 3723.2664 636.84071 -10614.064 0 301.6837 0.0010784683 0.0010527705 + 71580 -6248.18 -6253.9036 5.7235868 3719.7321 638.89578 -10612.531 0 274.30639 0.0013119456 0.0012908651 + 71590 -6248.6139 -6253.7893 5.1753501 3719.6764 639.72156 -10613.187 0 248.03182 0.0013569592 0.0013421568 + 71600 -6248.9406 -6253.6993 4.7587421 3722.9667 639.20955 -10615.876 0 228.06563 0.0012127838 0.0012018136 + 71610 -6249.165 -6253.6656 4.5005714 3728.5773 637.60133 -10619.844 0 215.69263 0.00092639869 0.00091547249 + 71620 -6249.3168 -6253.6644 4.3476271 3734.9131 635.40503 -10623.983 0 208.36269 0.00057742156 0.00056451485 + 71630 -6249.4295 -6253.6627 4.2331399 3740.2259 633.23537 -10627.124 0 202.87582 0.00025704855 0.00024283299 + 71640 -6249.5202 -6253.666 4.1457783 3743.0442 631.63033 -10628.341 0 198.68896 4.4944946e-05 3.1179674e-05 + 71650 -6249.5839 -6253.7239 4.1399834 3742.5447 630.90609 -10627.175 0 198.41123 -1.1227205e-05 -2.3992616e-05 + 71660 -6249.6073 -6253.8879 4.2805512 3738.7761 631.093 -10623.757 0 205.14803 9.1805384e-05 7.8615452e-05 + 71670 -6249.5866 -6254.1586 4.5719835 3732.6603 631.9629 -10618.782 0 219.1151 0.00031295262 0.0002972753 + 71680 -6249.5354 -6254.467 4.9316792 3725.7443 633.1267 -10613.338 0 236.35374 0.00057988433 0.00056109286 + 71690 -6249.4764 -6254.7025 5.2261747 3719.7673 634.1642 -10608.634 0 250.46762 0.0008113405 0.0007912014 + 71700 -6249.4254 -6254.7688 5.3434362 3716.1755 634.74464 -10605.689 0 256.08744 0.00094138552 0.00092308084 + 71710 -6249.3783 -6254.6331 5.2547385 3715.7386 634.70521 -10605.077 0 251.83655 0.00093768668 0.00092355431 + 71720 -6249.3118 -6254.3415 5.0296856 3718.3845 634.07368 -10606.8 0 241.05076 0.00080816747 0.00079769479 + 71730 -6249.1973 -6253.9921 4.7948582 3723.2882 633.04165 -10610.322 0 229.79651 0.00059485626 0.00058441768 + 71740 -6249.0215 -6253.6812 4.6597897 3729.157 631.90723 -10614.746 0 223.32327 0.00035864237 0.00034352177 + 71750 -6248.7978 -6253.4578 4.6600612 3734.5923 631.0039 -10619.054 0 223.33628 0.00016162216 0.00013925144 + 71760 -6248.5578 -6253.3194 4.7615752 3738.4005 630.6242 -10622.344 0 228.2014 5.3062419e-05 2.5108673e-05 + 71770 -6248.3256 -6253.2467 4.9210609 3739.7991 630.94625 -10623.992 0 235.84485 6.1253191e-05 3.2656229e-05 + 71780 -6248.0957 -6253.2386 5.1428612 3738.5298 631.97855 -10623.747 0 246.47476 0.00018978258 0.00016527046 + 71790 -6247.8343 -6253.3069 5.4726045 3734.9134 633.5437 -10621.764 0 262.27791 0.00041626135 0.00039715937 + 71800 -6247.5058 -6253.4384 5.9326092 3729.8283 635.31444 -10618.581 0 284.32392 0.0006940991 0.00067799943 + 71810 -6247.1025 -6253.5678 6.4652315 3724.5596 636.89546 -10615.023 0 309.85017 0.00096001297 0.00094326352 + 71820 -6246.654 -6253.5979 6.9439183 3720.4976 637.92604 -10612.022 0 332.79153 0.001148478 0.0011291038 + 71830 -6246.2079 -6253.455 7.2470815 3718.7494 638.17018 -10610.375 0 347.32081 0.0012099706 0.0011886867 + 71840 -6245.8019 -6253.1363 7.3344013 3719.7974 637.56831 -10610.502 0 351.50566 0.0011262616 0.0011052148 + 71850 -6245.4465 -6252.7148 7.2682537 3723.333 636.24214 -10612.29 0 348.3355 0.00091641809 0.00089710142 + 71860 -6245.1302 -6252.3 7.1698383 3728.3265 634.46165 -10615.088 0 343.61888 0.00063141231 0.00061349962 + 71870 -6244.8383 -6251.9823 7.1440679 3733.313 632.59003 -10617.885 0 342.38382 0.00034010808 0.00032201917 + 71880 -6244.5692 -6251.7941 7.2248725 3736.8014 631.01509 -10619.611 0 346.25643 0.00011184259 9.2437954e-05 + 71890 -6244.3348 -6251.7126 7.3778422 3737.6794 630.06835 -10619.46 0 353.58759 2.6363541e-07 -1.9968971e-05 + 71900 -6244.1456 -6251.6969 7.5512353 3735.5057 629.9411 -10617.144 0 361.89757 3.1154885e-05 1.1615911e-05 + 71910 -6243.9986 -6251.7214 7.7227665 3730.6357 630.62441 -10612.982 0 370.1183 0.00019584485 0.00017772705 + 71920 -6243.8808 -6251.7808 7.9000164 3724.1648 631.90416 -10607.85 0 378.61311 0.00045202469 0.0004341181 + 71930 -6243.7847 -6251.8741 8.0893798 3717.6879 633.42047 -10602.982 0 387.68847 0.0007334837 0.00071329914 + 71940 -6243.7176 -6251.996 8.278372 3712.9034 634.7716 -10599.671 0 396.74604 0.0009674871 0.00094290381 + 71950 -6243.6974 -6252.1408 8.4434039 3711.1515 635.62639 -10598.919 0 404.65529 0.0010945984 0.0010650872 + 71960 -6243.7452 -6252.3022 8.5569071 3713.0278 635.81202 -10601.142 0 410.095 0.0010843473 0.0010513772 + 71970 -6243.879 -6252.4617 8.5827271 3718.19 635.35451 -10606.006 0 411.33244 0.00094262838 0.00090950474 + 71980 -6244.1044 -6252.5882 8.4837403 3725.4088 634.46157 -10612.459 0 406.58844 0.00071010604 0.00068094066 + 71990 -6244.4033 -6252.6554 8.2521322 3732.863 633.45333 -10618.972 0 395.48848 0.00045203894 0.00042953815 + 72000 -6244.733 -6252.6592 7.92614 3738.6287 632.66408 -10623.952 0 379.8651 0.00024027404 0.00022358816 + 72010 -6245.0487 -6252.6091 7.5604211 3741.2385 632.34629 -10626.194 0 362.3378 0.00013121623 0.00011611103 + 72020 -6245.3298 -6252.511 7.1811412 3740.1114 632.60232 -10625.225 0 344.16058 0.00014806899 0.00012988186 + 72030 -6245.5855 -6252.371 6.7855345 3735.6795 633.35753 -10621.408 0 325.20089 0.00027558299 0.00025249601 + 72040 -6245.8349 -6252.2227 6.3877698 3729.1818 634.38145 -10615.786 0 306.13777 0.00046884283 0.0004426632 + 72050 -6246.086 -6252.1366 6.0505122 3722.2557 635.35449 -10609.747 0 289.97449 0.00067002249 0.00064427534 + 72060 -6246.3312 -6252.1914 5.8601961 3716.4983 635.96222 -10604.652 0 280.85348 0.00082497511 0.0008024116 + 72070 -6246.557 -6252.4262 5.8691527 3713.1151 635.98611 -10601.527 0 281.28273 0.00089486984 0.00087627773 + 72080 -6246.7542 -6252.8109 6.0566669 3712.7004 635.36117 -10600.872 0 290.26946 0.00086227045 0.00084680201 + 72090 -6246.9212 -6253.2572 6.3359761 3715.1565 634.18698 -10602.601 0 303.65553 0.00073287835 0.00071899293 + 72100 -6247.0612 -6253.6562 6.5950571 3719.7542 632.69601 -10606.106 0 316.07214 0.00053372847 0.00051993881 + 72110 -6247.1787 -6253.9199 6.741202 3725.3193 631.19402 -10610.433 0 323.07622 0.0003077627 0.00029300257 + 72120 -6247.2776 -6254.0052 6.7275453 3730.5075 629.99028 -10614.503 0 322.42172 0.00010492932 8.8713314e-05 + 72130 -6247.3609 -6253.918 6.5570852 3734.1077 629.33415 -10617.36 0 314.25232 -2.8778543e-05 -4.629444e-05 + 72140 -6247.4309 -6253.7022 6.2712641 3735.3106 629.36862 -10618.381 0 300.55416 -6.1836091e-05 -7.9937822e-05 + 72150 -6247.4886 -6253.4225 5.9338958 3733.8845 630.10424 -10617.411 0 284.38558 1.5282653e-05 -2.4678059e-06 + 72160 -6247.5315 -6253.1489 5.6174091 3730.2237 631.41123 -10614.784 0 269.21776 0.00018712102 0.00017027659 + 72170 -6247.553 -6252.9408 5.3878225 3725.2561 633.03111 -10611.228 0 258.21469 0.00041518336 0.00039887786 + 72180 -6247.5485 -6252.8306 5.2820895 3720.2321 634.61424 -10607.677 0 253.14737 0.00064470831 0.00062782401 + 72190 -6247.5218 -6252.8111 5.2892455 3716.428 635.78844 -10605.028 0 253.49032 0.00081632269 0.0007980303 + 72200 -6247.4847 -6252.8473 5.3625887 3714.8146 636.2505 -10603.912 0 257.00534 0.00088173714 0.00086239133 + 72210 -6247.4441 -6252.9107 5.4665276 3715.7721 635.85668 -10604.539 0 261.98667 0.00081956291 0.00080015072 + 72220 -6247.3924 -6253.0058 5.6133371 3718.9629 634.68094 -10606.65 0 269.02261 0.00064435972 0.00062478047 + 72230 -6247.3148 -6253.1543 5.8395585 3723.4326 633.0158 -10609.603 0 279.86441 0.00040340777 0.00038172047 + 72240 -6247.2121 -6253.3491 6.1369821 3727.9053 631.30555 -10612.56 0 294.11862 0.00016201314 0.00013623244 + 72250 -6247.1127 -6253.5316 6.4188965 3731.1413 630.02287 -10614.696 0 307.62954 -1.5703071e-05 -4.4685183e-05 + 72260 -6247.0524 -6253.6283 6.5759665 3732.234 629.52424 -10615.387 0 315.15721 -8.3088804e-05 -0.0001108562 + 72270 -6247.0402 -6253.6119 6.5717626 3730.8069 629.93678 -10614.356 0 314.95574 -2.1402259e-05 -4.3059664e-05 + 72280 -6247.0464 -6253.5191 6.4727058 3727.1226 631.1213 -10611.763 0 310.20838 0.00015497282 0.00014070073 + 72290 -6247.0272 -6253.4057 6.3785301 3722.081 632.72191 -10608.209 0 305.69495 0.0003990513 0.00038861107 + 72300 -6246.9611 -6253.2894 6.3282702 3717.0432 634.27547 -10604.608 0 303.28622 0.00064040207 0.00062816434 + 72310 -6246.8645 -6253.1373 6.2727391 3713.4668 635.34124 -10601.945 0 300.62485 0.00080414846 0.00078663915 + 72320 -6246.7751 -6252.9058 6.1307016 3712.4435 635.61806 -10600.967 0 293.81762 0.00083540237 0.00081367289 + 72330 -6246.721 -6252.5978 5.8767854 3714.3132 635.0256 -10601.937 0 281.64853 0.00071987844 0.00069842181 + 72340 -6246.6977 -6252.2907 5.5930308 3718.5182 633.7302 -10604.539 0 268.04942 0.00049129565 0.00047442694 + 72350 -6246.6686 -6252.1103 5.4417081 3723.7729 632.10458 -10607.988 0 260.79718 0.00022121132 0.00020962351 + 72360 -6246.5911 -6252.1592 5.5680228 3728.4964 630.62669 -10611.282 0 266.8509 -5.3905246e-06 -1.517798e-05 + 72370 -6246.4478 -6252.4447 5.9969024 3731.3375 629.74086 -10613.523 0 287.40521 -0.0001191107 -0.00013186548 + 72380 -6246.2592 -6252.8638 6.6045916 3731.5818 629.7182 -10614.164 0 316.52909 -8.8409811e-05 -0.00010628005 + 72390 -6246.0677 -6253.26 7.1922977 3729.3048 630.56188 -10613.127 0 344.69526 7.2535462e-05 5.1512377e-05 + 72400 -6245.9047 -6253.508 7.6033061 3725.2661 631.99847 -10610.772 0 364.39309 0.00031142158 0.0002911601 + 72410 -6245.7707 -6253.562 7.7913277 3720.6342 633.56898 -10607.765 0 373.40414 0.00055611414 0.00053879003 + 72420 -6245.6451 -6253.4452 7.8000965 3716.6513 634.78908 -10604.886 0 373.82439 0.0007366012 0.00072073537 + 72430 -6245.5122 -6253.2048 7.6925456 3714.3131 635.31404 -10602.832 0 368.66995 0.00080428891 0.00078608064 + 72440 -6245.3801 -6252.8763 7.4962332 3714.122 635.04331 -10602.042 0 359.26156 0.00074420355 0.00072085546 + 72450 -6245.2771 -6252.4803 7.2032668 3715.9605 634.13061 -10602.571 0 345.22096 0.00057772301 0.00055011666 + 72460 -6245.2285 -6252.0476 6.8191736 3719.1213 632.90612 -10604.075 0 326.81306 0.00035567142 0.00032823328 + 72470 -6245.23 -6251.6502 6.4201708 3722.5037 631.74914 -10605.903 0 307.69061 0.00014356391 0.00012102441 + 72480 -6245.2405 -6251.401 6.1605449 3724.9498 630.96344 -10607.314 0 295.24788 2.1987686e-06 -1.4591952e-05 + 72490 -6245.2058 -6251.4022 6.1963637 3725.6354 630.69911 -10607.737 0 296.96452 -3.1572971e-05 -4.7216798e-05 + 72500 -6245.1011 -6251.6668 6.5657395 3724.3714 630.93831 -10606.977 0 314.66708 4.2845018e-05 2.1347695e-05 + 72510 -6244.9574 -6252.0849 7.1274719 3721.6622 631.53363 -10605.281 0 341.58845 0.00019084701 0.00015984011 + 72520 -6244.8472 -6252.4775 7.6302784 3718.4721 632.27375 -10603.223 0 365.68575 0.00035831985 0.00032115324 + 72530 -6244.8327 -6252.7066 7.8738141 3715.8159 632.95296 -10601.475 0 377.35735 0.00049489905 0.0004600986 + 72540 -6244.921 -6252.756 7.8349475 3714.3941 633.42594 -10600.576 0 375.49464 0.00057227967 0.00054745107 + 72550 -6245.0628 -6252.7212 7.6583815 3714.4448 633.63184 -10600.798 0 367.03261 0.00058803512 0.00057438215 + 72560 -6245.1976 -6252.7232 7.525605 3715.8218 633.58182 -10602.127 0 360.66922 0.00055543781 0.00054718373 + 72570 -6245.3043 -6252.8151 7.5108728 3718.1721 633.32315 -10604.31 0 359.96317 0.00048899468 0.00047796546 + 72580 -6245.417 -6252.9501 7.5330488 3721.0653 632.90679 -10606.922 0 361.02597 0.00039670189 0.00037836911 + 72590 -6245.5943 -6253.0269 7.4325298 3724.0146 632.3791 -10609.421 0 356.20853 0.00028318186 0.00025951456 + 72600 -6245.8677 -6252.9742 7.1064658 3726.4481 631.79609 -10611.218 0 340.58172 0.0001586989 0.00013583218 + 72610 -6246.2132 -6252.8055 6.5922775 3727.7421 631.24006 -10611.788 0 315.93893 4.4587974e-05 2.7527288e-05 + 72620 -6246.5692 -6252.6058 6.0365596 3727.3751 630.8182 -10610.799 0 289.3058 -3.0922878e-05 -4.2074416e-05 + 72630 -6246.8826 -6252.4688 5.586196 3725.1503 630.63692 -10608.256 0 267.72186 -4.4461848e-05 -5.3906359e-05 + 72640 -6247.1412 -6252.4405 5.2992275 3721.354 630.7619 -10604.556 0 253.96872 1.0908371e-05 -1.4353769e-06 + 72650 -6247.3703 -6252.5126 5.1422854 3716.7418 631.1818 -10600.436 0 246.44717 0.00012126337 0.00010457597 + 72660 -6247.6016 -6252.6589 5.0573068 3712.3434 631.79367 -10596.796 0 242.37452 0.00025610959 0.00023720534 + 72670 -6247.8463 -6252.8704 5.0240312 3709.178 632.42042 -10594.469 0 240.77976 0.00037789275 0.00035996797 + 72680 -6248.0923 -6253.1547 5.0623896 3707.9941 632.85837 -10594.007 0 242.61812 0.00045199307 0.00043651111 + 72690 -6248.3208 -6253.5051 5.1843289 3709.1019 632.94107 -10595.548 0 248.46213 0.00045465983 0.00044057984 + 72700 -6248.5248 -6253.8751 5.350315 3712.3093 632.59836 -10598.783 0 256.41712 0.00037867943 0.00036387245 + 72710 -6248.7128 -6254.1858 5.4730234 3716.9487 631.89037 -10603.025 0 262.29799 0.00023667986 0.00021991643 + 72720 -6248.8983 -6254.3623 5.4640413 3721.9956 631.0021 -10607.36 0 261.86752 6.0647573e-05 4.2511085e-05 + 72730 -6249.0865 -6254.3736 5.2871643 3726.2758 630.19481 -10610.844 0 253.39058 -0.00010409135 -0.00012184661 + 72740 -6249.268 -6254.2502 4.9821936 3728.7382 629.72636 -10612.715 0 238.77467 -0.00021045534 -0.00022640491 + 72750 -6249.4249 -6254.0685 4.6436205 3728.7342 629.76709 -10612.57 0 222.54835 -0.00022405669 -0.00023822209 + 72760 -6249.5438 -6253.911 4.3671624 3726.2235 630.34157 -10610.476 0 209.29893 -0.00013566133 -0.00014932426 + 72770 -6249.625 -6253.8266 4.2016762 3721.8248 631.31506 -10606.967 0 201.3679 3.3516757e-05 1.9084943e-05 + 72780 -6249.6791 -6253.8197 4.1406055 3716.6702 632.42605 -10602.916 0 198.44105 0.00023655459 0.00022119004 + 72790 -6249.7158 -6253.866 4.1502319 3712.0981 633.3538 -10599.318 0 198.9024 0.00041423636 0.00039878018 + 72800 -6249.7348 -6253.9344 4.1995452 3709.2856 633.80443 -10597.024 0 201.26577 0.00051226088 0.00049756237 + 72810 -6249.7285 -6253.9943 4.265734 3708.9361 633.59542 -10596.526 0 204.43791 0.00049671949 0.00048293239 + 72820 -6249.69 -6254.0146 4.3246479 3711.0984 632.71667 -10597.83 0 207.26139 0.0003640432 0.00035087845 + 72830 -6249.6177 -6253.97 4.3522994 3715.1501 631.34858 -10600.469 0 208.58661 0.00014351109 0.00013093503 + 72840 -6249.5111 -6253.8563 4.3452125 3719.9462 629.8274 -10603.63 0 208.24696 -0.00010851842 -0.00012009968 + 72850 -6249.3633 -6253.7027 4.339373 3724.1101 628.56255 -10606.375 0 207.9671 -0.00032233071 -0.00033266419 + 72860 -6249.159 -6253.5621 4.4031657 3726.405 627.92611 -10607.893 0 211.0244 -0.0004339183 -0.00044357218 + 72870 -6248.8787 -6253.4829 4.6042074 3726.0883 628.14475 -10607.716 0 220.65945 -0.00040405697 -0.00041434666 + 72880 -6248.5067 -6253.4816 4.97491 3723.1374 629.22541 -10605.844 0 238.4256 -0.0002311012 -0.00024327649 + 72890 -6248.0352 -6253.5344 5.499143 3718.2769 630.93824 -10602.75 0 263.54979 4.6782012e-05 3.2316574e-05 + 72900 -6247.4687 -6253.5885 6.1198183 3712.8021 632.86637 -10599.257 0 293.29603 0.00036055441 0.00034429544 + 72910 -6246.8271 -6253.5806 6.7534725 3708.2428 634.51516 -10596.339 0 323.6643 0.00062805465 0.00061075582 + 72920 -6246.1478 -6253.4523 7.3045071 3705.9443 635.45548 -10594.852 0 350.07297 0.00077652046 0.00075847036 + 72930 -6245.4805 -6253.1643 7.6838533 3706.6649 635.45819 -10595.287 0 368.25336 0.00076440277 0.00074524595 + 72940 -6244.8742 -6252.7105 7.8363309 3710.3113 634.57049 -10597.592 0 375.56094 0.00059561981 0.00057481328 + 72950 -6244.3634 -6252.1308 7.7674009 3715.9194 633.10036 -10601.151 0 372.25743 0.00032013121 0.00029760166 + 72960 -6243.9604 -6251.5116 7.5511579 3721.9097 631.5118 -10604.933 0 361.89386 1.9156225e-05 -4.3589448e-06 + 72970 -6243.6573 -6250.9682 7.3108926 3726.5434 630.27041 -10607.782 0 350.379 -0.0002201942 -0.00024338944 + 72980 -6243.4321 -6250.612 7.1798786 3728.426 629.69665 -10608.735 0 344.10007 -0.00033169499 -0.00035346061 + 72990 -6243.2579 -6250.5135 7.2555565 3726.9037 629.87686 -10607.294 0 347.72698 -0.00028914063 -0.00030939731 + 73000 -6243.1137 -6250.6729 7.5591747 3722.2453 630.65677 -10603.575 0 362.27807 -0.0001124351 -0.00013234701 + 73010 -6242.9952 -6251.0112 8.0160442 3715.5679 631.71043 -10598.29 0 384.17381 0.00014013426 0.00011895915 + 73020 -6242.9189 -6251.3927 8.4738281 3708.5274 632.65313 -10592.573 0 406.11339 0.00039033816 0.0003672467 + 73030 -6242.9119 -6251.6769 8.7649886 3702.8569 633.15736 -10587.691 0 420.06743 0.00056349048 0.00053967138 + 73040 -6242.9913 -6251.7823 8.7909548 3699.8854 633.03793 -10584.706 0 421.31188 0.00061006715 0.00058797124 + 73050 -6243.1479 -6251.7259 8.5780208 3700.1862 632.29018 -10584.202 0 411.10689 0.00051894929 0.00050044595 + 73060 -6243.3497 -6251.6113 8.2615165 3703.4665 631.08282 -10586.161 0 395.93823 0.00031839654 0.00030311105 + 73070 -6243.5641 -6251.567 8.0028592 3708.7162 629.7146 -10589.998 0 383.54192 6.5252835e-05 5.0581107e-05 + 73080 -6243.7802 -6251.674 7.8938366 3714.5369 628.54415 -10594.755 0 378.31694 -0.00017299958 -0.00019002596 + 73090 -6244.014 -6251.9241 7.9100061 3719.5257 627.90279 -10599.353 0 379.09188 -0.00033697294 -0.00035733742 + 73100 -6244.2932 -6252.2331 7.9398691 3722.599 628.00621 -10602.838 0 380.52308 -0.00038946009 -0.00041119834 + 73110 -6244.6308 -6252.4977 7.8669134 3723.1965 628.88867 -10604.583 0 377.02663 -0.00032202994 -0.00034159689 + 73120 -6245.0089 -6252.6542 7.6452596 3721.3569 630.38481 -10604.396 0 366.40374 -0.00015427428 -0.00016933549 + 73130 -6245.3872 -6252.7009 7.3137242 3717.6808 632.17119 -10602.553 0 350.5147 7.224792e-05 6.0891596e-05 + 73140 -6245.7288 -6252.675 6.9462503 3713.1921 633.855 -10599.722 0 332.90329 0.00030344375 0.00029250933 + 73150 -6246.0223 -6252.6154 6.5930776 3709.0979 635.0767 -10596.79 0 315.97727 0.00048447956 0.00047084745 + 73160 -6246.2809 -6252.5467 6.2657946 3706.4782 635.59127 -10594.616 0 300.29204 0.0005724279 0.00055544116 + 73170 -6246.5229 -6252.4894 5.9664721 3705.9894 635.30847 -10593.787 0 285.94682 0.00054658129 0.00052816252 + 73180 -6246.754 -6252.4731 5.7190734 3707.6883 634.29238 -10594.454 0 274.09009 0.00041284348 0.00039562472 + 73190 -6246.9644 -6252.5325 5.5681183 3711.0373 632.73256 -10596.302 0 266.85547 0.00020074529 0.00018594419 + 73200 -6247.1391 -6252.686 5.5468891 3715.0785 630.90103 -10598.665 0 265.83805 -4.5216065e-05 -5.8565857e-05 + 73210 -6247.2714 -6252.9157 5.6443358 3718.6994 629.10447 -10600.72 0 270.50824 -0.00027644691 -0.00029059448 + 73220 -6247.3691 -6253.1652 5.7960573 3720.9092 627.63656 -10601.711 0 277.77959 -0.0004502345 -0.0004669737 + 73230 -6247.4514 -6253.3571 5.9057113 3721.0593 626.73341 -10601.15 0 283.03482 -0.00053703516 -0.00055630456 + 73240 -6247.5369 -6253.4264 5.8895142 3718.9745 626.53446 -10598.935 0 282.25857 -0.00052438324 -0.00054413033 + 73250 -6247.6305 -6253.355 5.724536 3714.9805 627.05302 -10595.389 0 274.35188 -0.00041773057 -0.00043527993 + 73260 -6247.7184 -6253.1874 5.4690307 3709.8429 628.16431 -10591.195 0 262.10664 -0.00023934091 -0.00025340308 + 73270 -6247.7775 -6253.0101 5.232635 3704.6364 629.61987 -10587.266 0 250.77723 -2.5954983e-05 -3.7681086e-05 + 73280 -6247.7929 -6252.906 5.1130913 3700.5544 631.09289 -10584.553 0 245.04802 0.00017569915 0.00016355576 + 73290 -6247.7688 -6252.9148 5.1459163 3698.6592 632.24932 -10583.823 0 246.62118 0.00031723073 0.00030234294 + 73300 -6247.724 -6253.0228 5.2988105 3699.6056 632.83057 -10585.459 0 253.94873 0.00036058268 0.00034260785 + 73310 -6247.6789 -6253.1811 5.5022193 3703.4153 632.72621 -10589.323 0 263.69722 0.00029031517 0.00027094077 + 73320 -6247.6444 -6253.3312 5.6867561 3709.3916 632.0127 -10594.735 0 272.54126 0.00012111728 0.00010285968 + 73330 -6247.6184 -6253.4279 5.8095248 3716.2299 630.93973 -10600.598 0 278.42502 -0.00010323651 -0.00011856468 + 73340 -6247.5883 -6253.4544 5.8661037 3722.3128 629.86256 -10605.63 0 281.1366 -0.00032023368 -0.00033263505 + 73350 -6247.539 -6253.4224 5.8834368 3726.1239 629.13886 -10608.685 0 281.9673 -0.00046598043 -0.00047743137 + 73360 -6247.4637 -6253.3548 5.8910023 3726.6661 629.02276 -10609.044 0 282.32989 -0.0004947201 -0.00050803565 + 73370 -6247.3728 -6253.2628 5.8900268 3723.7517 629.5868 -10606.601 0 282.28313 -0.00039398602 -0.00041083373 + 73380 -6247.2883 -6253.1413 5.8530361 3718.059 630.69202 -10601.892 0 280.51033 -0.00018961464 -0.00020913665 + 73390 -6247.228 -6252.9856 5.7576152 3710.9389 632.01428 -10595.939 0 275.93722 6.1259426e-05 4.1920568e-05 + 73400 -6247.1909 -6252.8097 5.6188458 3704.0502 633.12465 -10589.985 0 269.28662 0.00028631261 0.00026989767 + 73410 -6247.1576 -6252.6436 5.4860553 3698.9452 633.60842 -10585.197 0 262.92255 0.00041773462 0.00040488491 + 73420 -6247.1055 -6252.5131 5.4076188 3696.7049 633.19206 -10582.41 0 259.16344 0.00041022493 0.00039915373 + 73430 -6247.0249 -6252.4214 5.3964144 3697.6941 631.83904 -10581.955 0 258.62646 0.00025344436 0.00024138732 + 73440 -6246.9254 -6252.3503 5.4249127 3701.4758 629.78126 -10583.607 0 259.99226 -2.3513633e-05 -3.8218972e-05 + 73450 -6246.8277 -6252.283 5.4553266 3706.9115 627.47133 -10586.666 0 261.44986 -0.00035690541 -0.00037363264 + 73460 -6246.748 -6252.2322 5.4842272 3712.4392 625.46642 -10590.138 0 262.83494 -0.000662358 -0.00067879136 + 73470 -6246.685 -6252.25 5.5650541 3716.4816 624.2778 -10593.009 0 266.70862 -0.00085619025 -0.00087029566 + 73480 -6246.6212 -6252.402 5.7808517 3717.8899 624.23201 -10594.524 0 277.05085 -0.00087939576 -0.00089119408 + 73490 -6246.5395 -6252.7168 6.1772587 3716.2972 625.38313 -10594.397 0 296.0489 -0.00071715748 -0.0007287901 + 73500 -6246.4409 -6253.1456 6.704677 3712.2548 627.49717 -10592.898 0 321.32574 -0.00040643986 -0.0004204471 + 73510 -6246.3486 -6253.5675 7.2189537 3707.0811 630.10861 -10590.757 0 345.97277 -2.7365433e-05 -4.4651395e-05 + 73520 -6246.2933 -6253.8398 7.5464358 3702.4508 632.63504 -10588.926 0 361.66755 0.0003200261 0.00030085465 + 73530 -6246.292 -6253.8617 7.5696652 3699.8617 634.52523 -10588.249 0 362.78083 0.00054600847 0.00052750913 + 73540 -6246.3361 -6253.6138 7.2776688 3700.167 635.40439 -10589.185 0 348.78673 0.00059768751 0.00058171817 + 73550 -6246.3979 -6253.1554 6.7574828 3703.3329 635.17314 -10591.661 0 323.85649 0.00047277289 0.0004593218 + 73560 -6246.4478 -6252.5938 6.1460107 3708.4852 634.02399 -10595.103 0 294.55132 0.00021690448 0.00020423603 + 73570 -6246.4682 -6252.0451 5.5769476 3714.1996 632.36594 -10598.611 0 267.27862 -9.3164661e-05 -0.00010738333 + 73580 -6246.4584 -6251.6054 5.1469926 3718.9205 630.68399 -10601.21 0 246.67277 -0.00037391923 -0.00039127135 + 73590 -6246.4296 -6251.3378 4.9082324 3721.3754 629.3859 -10602.099 0 235.23004 -0.00055869788 -0.00057916399 + 73600 -6246.3949 -6251.2735 4.8786029 3720.8788 628.69066 -10600.843 0 233.81002 -0.00061354887 -0.00063552636 + 73610 -6246.3607 -6251.4169 5.0561789 3717.4666 628.59221 -10597.476 0 242.32046 -0.00054181228 -0.00056296517 + 73620 -6246.3221 -6251.7501 5.4279808 3711.854 628.89979 -10592.504 0 260.1393 -0.00037814746 -0.00039676007 + 73630 -6246.2654 -6252.2323 5.9669487 3705.2463 629.32887 -10586.807 0 285.96966 -0.00017602134 -0.00019220892 + 73640 -6246.1795 -6252.7918 6.6122694 3699.0653 629.60537 -10581.462 0 316.89705 6.448254e-06 -9.3321149e-06 + 73650 -6246.0727 -6253.3216 7.2488741 3694.6436 629.54883 -10577.514 0 347.40672 0.00011931056 0.0001015594 + 73660 -6245.9755 -6253.6994 7.7238986 3692.9259 629.11345 -10575.739 0 370.17256 0.00013156522 0.00011114788 + 73670 -6245.9231 -6253.8355 7.9123729 3694.2274 628.38442 -10576.447 0 379.2053 3.8897999e-05 1.7378846e-05 + 73680 -6245.9303 -6253.7153 7.7849469 3698.1373 627.54279 -10579.395 0 373.09834 -0.00013452716 -0.00015481953 + 73690 -6245.9837 -6253.3992 7.4154352 3703.6252 626.8178 -10583.842 0 355.38926 -0.00034255975 -0.00036054004 + 73700 -6246.0567 -6252.9802 6.9235164 3709.3279 626.43898 -10588.747 0 331.81376 -0.00053021679 -0.00054663008 + 73710 -6246.1294 -6252.5385 6.4090786 3713.9096 626.59147 -10593.04 0 307.15901 -0.00064828805 -0.00066465305 + 73720 -6246.1961 -6252.1246 5.928537 3716.3782 627.37519 -10595.878 0 284.12876 -0.00066448676 -0.00068172227 + 73730 -6246.2591 -6251.7691 5.5100723 3716.2911 628.77164 -10596.832 0 264.07358 -0.00056942324 -0.00058726736 + 73740 -6246.3215 -6251.498 5.1764537 3713.8281 630.62595 -10595.952 0 248.08471 -0.00037803689 -0.00039529555 + 73750 -6246.3824 -6251.3431 4.9606546 3709.7265 632.65273 -10593.722 0 237.7424 -0.00012711059 -0.00014240276 + 73760 -6246.4327 -6251.3467 4.9139085 3705.0958 634.47315 -10590.916 0 235.50207 0.00013110576 0.00011829322 + 73770 -6246.4566 -6251.5518 5.095143 3701.1561 635.68538 -10588.393 0 244.18784 0.00033866817 0.00032714308 + 73780 -6246.4408 -6251.9723 5.5314379 3698.9626 635.95884 -10586.894 0 265.09754 0.00044372877 0.00043090206 + 73790 -6246.3883 -6252.5583 6.1699653 3699.1564 635.12881 -10586.844 0 295.69936 0.00041253433 0.00039613202 + 73800 -6246.3242 -6253.1883 6.8640421 3701.775 633.25999 -10588.223 0 328.96341 0.00023940026 0.00021944287 + 73810 -6246.2861 -6253.7033 7.417132 3706.1731 630.65301 -10590.529 0 355.47058 -4.8243148e-05 -6.8912227e-05 + 73820 -6246.3021 -6253.9685 7.6663291 3711.1171 627.78527 -10592.871 0 367.41351 -0.00039266832 -0.00041007132 + 73830 -6246.3713 -6253.928 7.5566842 3715.0817 625.1994 -10594.209 0 362.15871 -0.00071790012 -0.00072987303 + 73840 -6246.4628 -6253.6221 7.1593071 3716.6899 623.37307 -10593.685 0 343.11417 -0.00094912728 -0.00095742967 + 73850 -6246.5376 -6253.1565 6.6189286 3715.158 622.61126 -10590.926 0 317.2162 -0.0010338998 -0.0010436736 + 73860 -6246.5797 -6252.6443 6.0645279 3710.5789 622.99114 -10586.214 0 290.6462 -0.00095752585 -0.00097395073 + 73870 -6246.6094 -6252.1597 5.550356 3703.9281 624.36554 -10580.453 0 266.0042 -0.00074646629 -0.00077069621 + 73880 -6246.6643 -6251.7416 5.0773203 3696.7791 626.40956 -10574.93 0 243.33368 -0.00045836187 -0.00048601869 + 73890 -6246.7626 -6251.4343 4.6716602 3690.8437 628.69073 -10570.969 0 223.89217 -0.00016351506 -0.00018750794 + 73900 -6246.8801 -6251.3152 4.4351277 3687.5223 630.75103 -10569.589 0 212.5562 7.3764138e-05 5.7927614e-05 + 73910 -6246.9626 -6251.4661 4.5034162 3687.6167 632.19508 -10571.278 0 215.82897 0.00020744844 0.00019810646 + 73920 -6246.9657 -6251.9051 4.9393943 3691.2328 632.77487 -10575.913 0 236.72349 0.00021489188 0.00020539157 + 73930 -6246.8888 -6252.5415 5.652688 3697.8049 632.4519 -10582.798 0 270.90853 9.8232753e-05 8.1925609e-05 + 73940 -6246.7795 -6253.1982 6.4187818 3706.1727 631.41475 -10590.786 0 307.62404 -0.00011488224 -0.00013972014 + 73950 -6246.7028 -6253.6947 6.9918267 3714.7152 630.03744 -10598.447 0 335.08757 -0.00037234942 -0.00040139458 + 73960 -6246.6977 -6253.9305 7.2328499 3721.6038 628.7818 -10604.316 0 346.63875 -0.00060483081 -0.000631079 + 73970 -6246.7528 -6253.9165 7.16371 3725.1966 628.06791 -10607.181 0 343.32518 -0.00074215212 -0.00076104822 + 73980 -6246.8221 -6253.7356 6.9135332 3724.4987 628.15019 -10606.384 0 331.3353 -0.00073595218 -0.00074832787 + 73990 -6246.8645 -6253.4709 6.6064245 3719.5214 629.03688 -10602.029 0 316.61693 -0.00057954055 -0.00059027109 + 74000 -6246.8729 -6253.1562 6.2832296 3711.3675 630.47679 -10595 0 301.12762 -0.00031470474 -0.00032851356 + 74010 -6246.8707 -6252.7853 5.9146067 3701.9637 632.01921 -10586.768 0 283.46114 -2.0660784e-05 -3.8697294e-05 + 74020 -6246.8828 -6252.3591 5.4762856 3693.5198 633.13487 -10579.014 0 262.45433 0.00021083288 0.0001911122 + 74030 -6246.9129 -6251.92 5.0071492 3687.9152 633.3683 -10573.204 0 239.97068 0.00030403458 0.00028627614 + 74040 -6246.9416 -6251.546 4.6044725 3686.2233 632.47804 -10570.247 0 220.67216 0.00022136688 0.00020757352 + 74050 -6246.9416 -6251.3195 4.3778509 3688.4972 630.52043 -10570.337 0 209.81118 -2.6508703e-05 -3.6994276e-05 + 74060 -6246.892 -6251.2999 4.4078991 3693.8318 627.84971 -10572.981 0 211.25126 -0.00038377706 -0.00039351878 + 74070 -6246.7834 -6251.5118 4.7284184 3700.6491 625.03497 -10577.196 0 226.61234 -0.00076396597 -0.00077589259 + 74080 -6246.6186 -6251.9383 5.3197505 3707.1195 622.72018 -10581.778 0 254.95229 -0.0010721583 -0.0010880495 + 74090 -6246.4115 -6252.5145 6.1030796 3711.6153 621.4661 -10585.596 0 292.49382 -0.0012293474 -0.0012488115 + 74100 -6246.1837 -6253.1311 6.9473714 3713.0946 621.61243 -10587.838 0 332.95702 -0.0011924183 -0.0012129153 + 74110 -6245.9557 -6253.6583 7.7026017 3711.3311 623.19116 -10588.18 0 369.15189 -0.00096463026 -0.0009829854 + 74120 -6245.7372 -6253.9817 8.2445096 3706.9553 625.91195 -10586.849 0 395.12316 -0.00059487119 -0.00060964187 + 74130 -6245.5283 -6254.0258 8.4974413 3701.3023 629.22642 -10584.554 0 407.24506 -0.00016690489 -0.00017973786 + 74140 -6245.3316 -6253.7587 8.4271679 3696.0831 632.45873 -10582.301 0 403.87717 0.00021935589 0.00020480713 + 74150 -6245.1604 -6253.1933 8.0328884 3692.9245 634.96938 -10581.087 0 384.98108 0.00047215191 0.0004530275 + 74160 -6245.0336 -6252.3955 7.3619251 3692.8824 636.30811 -10581.586 0 352.82476 0.00053286815 0.00050929807 + 74170 -6244.9602 -6251.4909 6.530783 3696.0882 636.31388 -10583.893 0 312.99177 0.00039362802 0.00036865089 + 74180 -6244.9292 -6250.6485 5.7192965 3701.672 635.13527 -10587.456 0 274.10078 9.9977299e-05 7.7482341e-05 + 74190 -6244.912 -6250.0401 5.1281614 3708.0057 633.16797 -10591.214 0 245.77027 -0.00026318235 -0.00028087662 + 74200 -6244.8723 -6249.7916 4.9193103 3713.1876 630.93092 -10593.91 0 235.76095 -0.00059734805 -0.00061076713 + 74210 -6244.7777 -6249.9439 5.1662542 3715.6061 628.91914 -10594.469 0 247.59589 -0.00081901388 -0.00083109674 + 74220 -6244.6099 -6250.4423 5.8323748 3714.4081 627.47571 -10592.326 0 279.52012 -0.00088244144 -0.00089686244 + 74230 -6244.3724 -6251.1533 6.780838 3709.7342 626.71802 -10587.605 0 324.9758 -0.0007904909 -0.00080971052 + 74240 -6244.0932 -6251.9021 7.8089104 3702.666 626.53834 -10581.106 0 374.2468 -0.00059086141 -0.00061479126 + 74250 -6243.8191 -6252.5189 8.69979 3694.9069 626.67615 -10574.102 0 416.94275 -0.00035884111 -0.00038471784 + 74260 -6243.598 -6252.885 9.2870175 3688.2934 626.83595 -10568.014 0 445.08599 -0.00017171528 -0.00019552613 + 74270 -6243.4554 -6252.9646 9.5091127 3684.2892 626.80671 -10564.06 0 455.73003 -8.3765483e-05 -0.00010281802 + 74280 -6243.3874 -6252.8 9.4125941 3683.633 626.5387 -10562.972 0 451.10432 -0.0001116775 -0.00012659725 + 74290 -6243.3773 -6252.4679 9.0905666 3686.237 626.15 -10564.855 0 435.67096 -0.00023536086 -0.0002495692 + 74300 -6243.4201 -6252.0316 8.6114328 3691.3125 625.86461 -10569.209 0 412.70818 -0.00041073787 -0.00042755366 + 74310 -6243.525 -6251.5337 8.0087113 3697.6223 625.91307 -10575.069 0 383.82238 -0.00058587536 -0.00060589438 + 74320 -6243.696 -6251.0276 7.3315747 3703.7748 626.4412 -10581.244 0 351.3702 -0.0007138567 -0.00073505536 + 74330 -6243.9161 -6250.6002 6.684049 3708.5186 627.4631 -10586.582 0 320.33713 -0.00076124447 -0.00078139993 + 74340 -6244.1554 -6250.3535 6.1980875 3711.0062 628.86696 -10590.227 0 297.04713 -0.00071371383 -0.0007325355 + 74350 -6244.3935 -6250.355 5.96158 3710.9674 630.456 -10591.778 0 285.71236 -0.0005791432 -0.00059816785 + 74360 -6244.6347 -6250.6011 5.9663964 3708.738 631.99855 -10591.338 0 285.94319 -0.0003864472 -0.00040712347 + 74370 -6244.9026 -6251.0225 6.1198781 3705.1257 633.26825 -10589.416 0 293.2989 -0.00017879127 -0.00020081076 + 74380 -6245.2188 -6251.5271 6.3082498 3701.1579 634.0696 -10586.755 0 302.32673 -2.6002463e-06 -2.4133462e-05 + 74390 -6245.5853 -6252.0441 6.4588882 3697.8012 634.25504 -10584.1 0 309.54616 0.00010351293 8.3925823e-05 + 74400 -6245.9851 -6252.5364 6.5512703 3695.7456 633.74367 -10582.026 0 313.97363 0.00011582351 9.7679266e-05 + 74410 -6246.4001 -6252.9755 6.5753734 3695.2973 632.54445 -10580.817 0 315.12879 2.7599716e-05 8.9063517e-06 + 74420 -6246.8243 -6253.3164 6.4920886 3696.364 630.77378 -10580.454 0 311.13731 -0.00015137165 -0.00017195164 + 74430 -6247.2573 -6253.5068 6.2495569 3698.4911 628.65259 -10580.65 0 299.51383 -0.00039532024 -0.0004170102 + 74440 -6247.687 -6253.5265 5.8395661 3700.9463 626.47741 -10580.95 0 279.86478 -0.00066390682 -0.00068463314 + 74450 -6248.0851 -6253.4096 5.3244568 3702.8821 624.57283 -10580.865 0 255.17785 -0.00090769852 -0.00092607866 + 74460 -6248.4238 -6253.2263 4.8025117 3703.5647 623.23593 -10580.027 0 230.16331 -0.0010786496 -0.0010948757 + 74470 -6248.6931 -6253.0464 4.3533294 3702.5967 622.67985 -10578.323 0 208.63597 -0.0011423014 -0.0011572668 + 74480 -6248.9025 -6252.9192 4.0167006 3700.0468 622.98362 -10575.95 0 192.50283 -0.0010870111 -0.001101039 + 74490 -6249.0672 -6252.8771 3.8099236 3696.4491 624.06121 -10573.387 0 182.59292 -0.00092746515 -0.0009400992 + 74500 -6249.1951 -6252.9442 3.7490991 3692.6853 625.66551 -10571.295 0 179.67786 -0.00070216098 -0.00071306211 + 74510 -6249.2846 -6253.131 3.8464145 3689.7853 627.43544 -10570.352 0 184.34177 -0.00046562445 -0.00047546877 + 74520 -6249.3317 -6253.4189 4.0871491 3688.6804 628.98066 -10571.08 0 195.87912 -0.00027636752 -0.00028676585 + 74530 -6249.3396 -6253.7504 4.4108257 3689.9509 629.98319 -10573.685 0 211.39152 -0.00018230007 -0.0001947178 + 74540 -6249.3215 -6254.0394 4.7178712 3693.6244 630.28551 -10577.949 0 226.10686 -0.00020680584 -0.00022132555 + 74550 -6249.2938 -6254.2002 4.9063795 3699.0901 629.93509 -10583.225 0 235.14123 -0.00033995761 -0.00035496739 + 74560 -6249.2635 -6254.186 4.9225629 3705.1789 629.16671 -10588.532 0 235.91683 -0.00053904025 -0.00055239745 + 74570 -6249.2194 -6254.0099 4.7904316 3710.4257 628.32649 -10592.762 0 229.58436 -0.00074004973 -0.0007510586 + 74580 -6249.1396 -6253.7309 4.5912639 3713.4636 627.7626 -10594.957 0 220.03913 -0.00087758036 -0.00088806891 + 74590 -6249.0099 -6253.4141 4.4041985 3713.4299 627.71681 -10594.561 0 211.0739 -0.00090626338 -0.00091948681 + 74600 -6248.8369 -6253.0978 4.260886 3710.2313 628.24653 -10591.576 0 204.20556 -0.00081547555 -0.00083356387 + 74610 -6248.6427 -6252.7982 4.1554573 3704.5665 629.1978 -10586.563 0 199.15283 -0.00063200613 -0.00065420994 + 74620 -6248.4435 -6252.5362 4.0926924 3697.7164 630.23943 -10580.492 0 196.14479 -0.00041090707 -0.00043418604 + 74630 -6248.2327 -6252.353 4.120301 3691.1981 630.95479 -10574.506 0 197.46794 -0.00021898234 -0.00024031808 + 74640 -6247.9809 -6252.295 4.3141215 3686.3995 630.96865 -10569.663 0 206.75691 -0.00011633029 -0.00013483873 + 74650 -6247.6493 -6252.3811 4.7318086 3684.2712 630.07179 -10566.724 0 226.77482 -0.00014027749 -0.00015772059 + 74660 -6247.2109 -6252.5803 5.3693545 3685.124 628.30437 -10566.009 0 257.32959 -0.00029492264 -0.00031453215 + 74670 -6246.6702 -6252.812 6.1417986 3688.5622 625.97086 -10567.345 0 294.34945 -0.00054874509 -0.00057310249 + 74680 -6246.0737 -6252.9707 6.8970599 3693.5717 623.57738 -10570.12 0 330.54581 -0.00084138431 -0.00087041332 + 74690 -6245.4968 -6252.9688 7.4719174 3698.7572 621.70227 -10573.428 0 358.09621 -0.0010982441 -0.0011287073 + 74700 -6245.0044 -6252.7833 7.7789007 3702.6868 620.83472 -10576.305 0 372.80857 -0.0012492524 -0.0012768857 + 74710 -6244.6135 -6252.472 7.858512 3704.2824 621.23593 -10577.99 0 376.62399 -0.0012476508 -0.0012708967 + 74720 -6244.3004 -6252.1252 7.8248032 3703.1623 622.87363 -10578.161 0 375.00848 -0.0010849489 -0.0011066657 + 74730 -6244.0444 -6251.7851 7.7406982 3699.8016 625.44492 -10577.032 0 370.97769 -0.00079680242 -0.00082149486 + 74740 -6243.8573 -6251.417 7.55971 3695.3918 628.46258 -10575.271 0 362.30372 -0.00045438288 -0.00048335648 + 74750 -6243.7636 -6250.9688 7.2051575 3691.4182 631.36969 -10573.757 0 345.31158 -0.00014166492 -0.0001711467 + 74760 -6243.7597 -6250.4613 6.7015466 3689.142 633.65717 -10573.26 0 321.17572 7.1921367e-05 4.7634035e-05 + 74770 -6243.7983 -6250.0173 6.2189894 3689.2244 634.96563 -10574.207 0 298.04887 0.00015053156 0.0001338632 + 74780 -6243.8157 -6249.7984 5.9827534 3691.619 635.1514 -10576.569 0 286.72711 9.5427604e-05 8.3068002e-05 + 74790 -6243.7763 -6249.899 6.1226723 3695.697 634.30068 -10579.897 0 293.43281 -6.4347863e-05 -7.8922462e-05 + 74800 -6243.6985 -6250.2824 6.5839187 3700.4743 632.68918 -10583.446 0 315.53833 -0.00028536859 -0.00030650425 + 74810 -6243.6398 -6250.8095 7.1697367 3704.8281 630.7003 -10586.338 0 343.61401 -0.00051995873 -0.0005461782 + 74820 -6243.6522 -6251.3336 7.6814294 3707.6809 628.72635 -10587.741 0 368.1372 -0.00072210422 -0.00074746576 + 74830 -6243.743 -6251.7817 8.0386985 3708.1933 627.08014 -10587.055 0 385.25954 -0.00085326425 -0.00087264581 + 74840 -6243.8771 -6252.1571 8.2800179 3705.9859 625.93954 -10584.082 0 396.82492 -0.00089116651 -0.00090478524 + 74850 -6244.0166 -6252.4734 8.4568133 3701.3233 625.33528 -10579.132 0 405.29794 -0.0008386154 -0.00085179309 + 74860 -6244.1593 -6252.696 8.5367276 3695.1331 625.17787 -10573.007 0 409.12788 -0.00072508933 -0.00074372965 + 74870 -6244.3372 -6252.7504 8.4131979 3688.784 625.30859 -10566.843 0 403.20765 -0.00059691448 -0.00062291682 + 74880 -6244.5803 -6252.5854 8.0050779 3683.6843 625.55703 -10561.827 0 383.64825 -0.00049982408 -0.00053020441 + 74890 -6244.8843 -6252.2277 7.3434647 3680.8756 625.78957 -10558.893 0 351.94003 -0.00046320734 -0.00049294388 + 74900 -6245.211 -6251.7787 6.5677345 3680.7883 625.9384 -10558.505 0 314.76269 -0.00049338537 -0.00051895261 + 74910 -6245.5152 -6251.3646 5.8494884 3683.2142 626.00585 -10560.585 0 280.34031 -0.00057635558 -0.00059726768 + 74920 -6245.7682 -6251.0869 5.3187102 3687.4467 626.04796 -10564.582 0 254.90244 -0.00068549527 -0.00070365287 + 74930 -6245.9644 -6250.9994 5.0349252 3692.5032 626.14768 -10569.65 0 241.30187 -0.00078997867 -0.00080812481 + 74940 -6246.1156 -6251.1075 4.9918353 3697.3632 626.38811 -10574.859 0 239.23676 -0.00086218221 -0.00088244565 + 74950 -6246.2434 -6251.3768 5.133434 3701.1761 626.82929 -10579.382 0 246.02296 -0.00088339838 -0.00090625568 + 74960 -6246.3712 -6251.7494 5.378258 3703.3977 627.4881 -10582.635 0 257.7563 -0.0008469126 -0.00087092203 + 74970 -6246.514 -6252.1645 5.6504925 3703.8437 628.3242 -10584.332 0 270.80331 -0.00075802973 -0.00078068406 + 74980 -6246.6725 -6252.574 5.9015267 3702.6729 629.23946 -10584.486 0 282.83427 -0.00063208608 -0.00065142716 + 74990 -6246.8353 -6252.9407 6.1053431 3700.3304 630.09486 -10583.366 0 292.6023 -0.00049202724 -0.00050788214 + 75000 -6246.9911 -6253.2262 6.2351009 3697.4583 630.73829 -10581.423 0 298.82102 -0.00036589802 -0.00037977456 + 75010 -6247.1371 -6253.3868 6.2497528 3694.7668 631.03207 -10579.186 0 299.52322 -0.00028303618 -0.00029686856 + 75020 -6247.2784 -6253.388 6.1096693 3692.8719 630.87407 -10577.134 0 292.80963 -0.00026802187 -0.00028290031 + 75030 -6247.4204 -6253.2281 5.8076863 3692.1351 630.2154 -10575.579 0 278.33691 -0.00033354827 -0.00034933075 + 75040 -6247.5624 -6252.9485 5.3860747 3692.5626 629.07932 -10574.59 0 258.13092 -0.00047506134 -0.00049082687 + 75050 -6247.6975 -6252.6245 4.9269902 3693.804 627.5784 -10574.007 0 236.12901 -0.00066959632 -0.00068438854 + 75060 -6247.8161 -6252.343 4.5269035 3695.2543 625.91767 -10573.515 0 216.95462 -0.00087951688 -0.00089297093 + 75070 -6247.9093 -6252.1779 4.268641 3696.2359 624.37137 -10572.785 0 204.57723 -0.0010604397 -0.0010730757 + 75080 -6247.9724 -6252.1692 4.1967946 3696.2114 623.22981 -10571.61 0 201.13395 -0.0011718042 -0.0011847761 + 75090 -6248.0078 -6252.3101 4.3023253 3694.9655 622.72605 -10570.002 0 206.19157 -0.001187727 -0.0012020162 + 75100 -6248.0241 -6252.5517 4.527555 3692.6922 622.96425 -10568.208 0 216.98584 -0.0011049815 -0.0011205601 + 75110 -6248.0293 -6252.8255 4.7962188 3689.954 623.8766 -10566.656 0 229.86171 -0.00094509454 -0.00096088183 + 75120 -6248.0215 -6253.0737 5.0521731 3687.5307 625.23051 -10565.835 0 242.12848 -0.00074930755 -0.00076419556 + 75130 -6247.9869 -6253.2639 5.2769943 3686.2101 626.69137 -10566.165 0 252.90317 -0.00056779521 -0.00058194878 + 75140 -6247.9082 -6253.3808 5.4725545 3686.5763 627.92348 -10567.881 0 262.27552 -0.00044640618 -0.00046157109 + 75150 -6247.7778 -6253.406 5.6282134 3688.8381 628.69336 -10570.937 0 269.73557 -0.00041437285 -0.00043270875 + 75160 -6247.6047 -6253.3123 5.7076105 3692.7253 628.93732 -10574.975 0 273.54072 -0.00047570152 -0.00049798234 + 75170 -6247.4082 -6253.079 5.6707053 3697.49 628.77016 -10579.339 0 271.77202 -0.00060645133 -0.00063107546 + 75180 -6247.2036 -6252.718 5.5143456 3702.0375 628.43464 -10583.19 0 264.27838 -0.00075968428 -0.00078335693 + 75190 -6246.9888 -6252.288 5.2992669 3705.1829 628.21093 -10585.682 0 253.9706 -0.00087837743 -0.00089815147 + 75200 -6246.7414 -6251.8814 5.140019 3705.9776 628.31476 -10586.174 0 246.33855 -0.00091370806 -0.00092909489 + 75210 -6246.4297 -6251.5865 5.1567716 3704.0156 628.81421 -10584.416 0 247.14143 -0.00084309804 -0.00085672003 + 75220 -6246.0315 -6251.4457 5.4142182 3699.6157 629.58981 -10580.651 0 259.47972 -0.0006810402 -0.00069711361 + 75230 -6245.551 -6251.4388 5.8878189 3693.7902 630.35408 -10575.583 0 282.17732 -0.00047727439 -0.00049880146 + 75240 -6245.0198 -6251.502 6.4821557 3687.9763 630.73416 -10570.212 0 310.66127 -0.00030138419 -0.00032807002 + 75250 -6244.4819 -6251.5675 7.0855534 3683.5999 630.4025 -10565.57 0 339.57948 -0.0002186846 -0.00024709915 + 75260 -6243.9727 -6251.5904 7.6176539 3681.6298 629.21595 -10562.436 0 365.08072 -0.00026641626 -0.00029214716 + 75270 -6243.5084 -6251.551 8.0425465 3682.292 627.30547 -10561.148 0 385.44396 -0.00043943794 -0.00045964499 + 75280 -6243.0875 -6251.4458 8.358244 3685.0453 625.06658 -10561.558 0 400.57395 -0.00069095391 -0.00070594743 + 75290 -6242.7 -6251.2827 8.582652 3688.8129 623.0423 -10563.138 0 411.32884 -0.00094834094 -0.0009616956 + 75300 -6242.3412 -6251.0742 8.7329782 3692.3757 621.74672 -10565.197 0 418.53332 -0.0011384453 -0.0011554656 + 75310 -6242.0262 -6250.8218 8.795632 3694.7772 621.50649 -10567.106 0 421.53604 -0.0012121436 -0.0012368272 + 75320 -6241.7908 -6250.511 8.7201833 3695.5791 622.37843 -10568.469 0 417.92011 -0.0011575604 -0.0011896549 + 75330 -6241.668 -6250.1384 8.4704066 3694.8835 624.15592 -10569.178 0 405.94941 -0.00099748687 -0.0010323124 + 75340 -6241.6558 -6249.751 8.0952445 3693.1725 626.4445 -10569.368 0 387.96954 -0.00077578557 -0.00080766079 + 75350 -6241.7125 -6249.4481 7.735687 3691.0994 628.77633 -10569.324 0 370.73753 -0.00054213957 -0.00056864903 + 75360 -6241.787 -6249.3295 7.542449 3689.3297 630.73106 -10569.39 0 361.47648 -0.00034117304 -0.00036443844 + 75370 -6241.8572 -6249.4351 7.5778979 3688.4251 632.02752 -10569.888 0 363.17539 -0.00020593658 -0.00023005719 + 75380 -6241.9397 -6249.7316 7.7918517 3688.7277 632.55943 -10571.019 0 373.42926 -0.00015367612 -0.00018120228 + 75390 -6242.0688 -6250.1485 8.0797584 3690.2555 632.37326 -10572.777 0 387.22736 -0.00018404445 -0.00021475446 + 75400 -6242.2701 -6250.621 8.3508925 3692.6743 631.61319 -10574.908 0 400.22162 -0.00028164108 -0.00031395736 + 75410 -6242.5538 -6251.0971 8.5433533 3695.3883 630.46662 -10576.952 0 409.44543 -0.00042265136 -0.0004553755 + 75420 -6242.9228 -6251.5249 8.6021369 3697.7075 629.12786 -10578.36 0 412.26267 -0.00058169132 -0.00061428277 + 75430 -6243.3755 -6251.8533 8.4778089 3699.01 627.77975 -10578.643 0 406.30417 -0.00073495052 -0.00076696468 + 75440 -6243.8979 -6252.0519 8.153981 3698.8657 626.5861 -10577.504 0 390.78452 -0.00086032598 -0.00089130003 + 75450 -6244.4614 -6252.1186 7.6571757 3697.1331 625.68682 -10574.939 0 366.97482 -0.00093885428 -0.0009684373 + 75460 -6245.0324 -6252.0646 7.0322953 3694.0233 625.18478 -10571.273 0 337.02705 -0.0009594935 -0.00098698096 + 75470 -6245.5808 -6251.9075 6.3267221 3690.081 625.11783 -10567.106 0 303.21202 -0.00092413643 -0.00094796333 + 75480 -6246.0779 -6251.6896 5.6116582 3686.0651 625.42967 -10563.184 0 268.94215 -0.00084838141 -0.00086693863 + 75490 -6246.4939 -6251.4963 5.0024062 3682.7775 625.96673 -10560.241 0 239.74337 -0.0007572815 -0.00077085059 + 75500 -6246.8073 -6251.4343 4.6269858 3680.913 626.5169 -10558.864 0 221.75112 -0.00067892395 -0.00069067365 + 75510 -6247.0198 -6251.5734 4.5535801 3680.9482 626.87785 -10559.399 0 218.23311 -0.00063844283 -0.00065294605 + 75520 -6247.1615 -6251.9001 4.738538 3683.0432 626.92535 -10561.869 0 227.09733 -0.00065265066 -0.0006727289 + 75530 -6247.279 -6252.322 5.0430521 3686.9501 626.65484 -10565.927 0 241.69135 -0.00072459332 -0.00074897031 + 75540 -6247.4101 -6252.7223 5.3122192 3691.9738 626.1833 -10570.879 0 254.59135 -0.00083914123 -0.00086295492 + 75550 -6247.5614 -6253.0244 5.4629979 3697.0564 625.71157 -10575.792 0 261.81751 -0.00096314651 -0.00098129184 + 75560 -6247.7041 -6253.2215 5.517402 3701.0156 625.45929 -10579.696 0 264.42486 -0.0010535255 -0.0010645624 + 75570 -6247.7961 -6253.3496 5.553515 3702.8888 625.5939 -10581.832 0 266.1556 -0.001072542 -0.0010801338 + 75580 -6247.8154 -6253.428 5.6125639 3702.2565 626.17646 -10581.861 0 268.98555 -0.001003995 -0.001014454 + 75590 -6247.7805 -6253.4255 5.6450065 3699.3947 627.13772 -10579.958 0 270.54038 -0.00086166168 -0.00087933475 + 75600 -6247.7355 -6253.2868 5.5512388 3695.1723 628.2867 -10576.746 0 266.04651 -0.00068498054 -0.00070928801 + 75610 -6247.7139 -6252.9966 5.2827298 3690.7412 629.34976 -10573.088 0 253.17805 -0.00052449956 -0.00055113489 + 75620 -6247.7133 -6252.6164 4.9031115 3687.172 630.03682 -10569.825 0 234.98461 -0.0004252025 -0.00045012838 + 75630 -6247.7054 -6252.2509 4.5455313 3685.1867 630.12318 -10567.561 0 217.84737 -0.00041495471 -0.00043724482 + 75640 -6247.6678 -6251.9791 4.3113249 3685.0377 629.52301 -10566.54 0 206.62288 -0.00049961073 -0.00052072474 + 75650 -6247.602 -6251.8174 4.2154139 3686.4969 628.32583 -10566.64 0 202.02629 -0.00066221005 -0.00068325379 + 75660 -6247.5213 -6251.7478 4.2265283 3688.9215 626.77938 -10567.449 0 202.55895 -0.00086501751 -0.0008854667 + 75670 -6247.427 -6251.7675 4.3405333 3691.4168 625.22396 -10568.408 0 208.02271 -0.0010567503 -0.0010758906 + 75680 -6247.3039 -6251.8955 4.5916019 3693.1056 624.00021 -10569.001 0 220.05533 -0.0011868406 -0.0012056046 + 75690 -6247.1401 -6252.1318 4.9917022 3693.4265 623.35691 -10568.915 0 239.23038 -0.0012226531 -0.001243156 + 75700 -6246.9458 -6252.4298 5.4840494 3692.3149 623.38342 -10568.128 0 262.82642 -0.0011606515 -0.0011839478 + 75710 -6246.7465 -6252.7183 5.9718049 3690.1837 623.98965 -10566.892 0 286.2024 -0.0010253079 -0.0010502223 + 75720 -6246.5622 -6252.9417 6.3795037 3687.7475 624.94767 -10565.637 0 305.74161 -0.0008578269 -0.0008821019 + 75730 -6246.398 -6253.0702 6.6722312 3685.7952 625.98304 -10564.848 0 319.77076 -0.00070194381 -0.00072407744 + 75740 -6246.2517 -6253.0792 6.8274899 3684.9796 626.87374 -10564.933 0 327.21163 -0.00059254521 -0.0006123771 + 75750 -6246.1237 -6252.9372 6.8134581 3685.6502 627.5093 -10566.097 0 326.53914 -0.00054883087 -0.00056683267 + 75760 -6246.0171 -6252.6228 6.6056497 3687.7574 627.88909 -10568.269 0 316.5798 -0.00057183421 -0.00058830166 + 75770 -6245.9305 -6252.154 6.2234964 3690.863 628.07583 -10571.093 0 298.26487 -0.00064615882 -0.00066113128 + 75780 -6245.8532 -6251.6062 5.7529971 3694.256 628.14118 -10574.003 0 275.7159 -0.00074544834 -0.00075936658 + 75790 -6245.7659 -6251.1007 5.3348006 3697.1352 628.13615 -10576.372 0 255.67358 -0.00083999126 -0.0008545539 + 75800 -6245.6496 -6250.7605 5.110885 3698.8093 628.09586 -10577.666 0 244.94229 -0.00090426151 -0.00092244924 + 75810 -6245.5019 -6250.649 5.1471592 3698.8662 628.06139 -10577.577 0 246.68075 -0.00092247899 -0.00094684578 + 75820 -6245.3456 -6250.7337 5.3880989 3697.2619 628.08748 -10576.083 0 258.22793 -0.00089085407 -0.00092085508 + 75830 -6245.2163 -6250.9165 5.7002615 3694.293 628.21613 -10573.426 0 273.18851 -0.00081632818 -0.00084740847 + 75840 -6245.1291 -6251.113 5.9839174 3690.4868 628.42903 -10570.029 0 286.7829 -0.0007136966 -0.00074009395 + 75850 -6245.0604 -6251.3084 6.2479745 3686.4949 628.61787 -10566.421 0 299.43799 -0.00060399524 -0.00062343957 + 75860 -6244.9656 -6251.5372 6.5716091 3683.0346 628.60577 -10563.178 0 314.94838 -0.00051438826 -0.0005303686 + 75870 -6244.8203 -6251.8187 6.9984053 3680.8243 628.21832 -10560.861 0 335.40285 -0.00047567349 -0.00049510325 + 75880 -6244.6447 -6252.1158 7.4710995 3680.434 627.36997 -10559.92 0 358.05701 -0.00051377166 -0.00054216642 + 75890 -6244.4935 -6252.3464 7.8529565 3682.0695 626.12498 -10560.541 0 376.35774 -0.00063724354 -0.00067511726 + 75900 -6244.4235 -6252.4231 7.9996569 3685.4046 624.70541 -10562.533 0 383.38844 -0.0008279273 -0.00087039476 + 75910 -6244.4613 -6252.2947 7.8334137 3689.5774 623.44061 -10565.313 0 375.42114 -0.0010410535 -0.0010804776 + 75920 -6244.5849 -6251.9781 7.3932128 3693.3895 622.67476 -10568.042 0 354.32424 -0.0012161796 -0.001246584 + 75930 -6244.7304 -6251.5649 6.8345021 3695.6664 622.66518 -10569.896 0 327.54769 -0.0012956629 -0.0013167192 + 75940 -6244.8273 -6251.1804 6.3530998 3695.6755 623.50512 -10570.361 0 304.47619 -0.0012450888 -0.0012627875 + 75950 -6244.8457 -6250.9082 6.0625449 3693.4395 625.08932 -10569.437 0 290.55117 -0.0010686968 -0.001091203 + 75960 -6244.8176 -6250.7428 5.9252329 3689.7737 627.12415 -10567.641 0 283.97041 -0.00081216552 -0.00084332873 + 75970 -6244.8087 -6250.6267 5.818032 3685.9841 629.18038 -10565.791 0 278.83274 -0.00054841593 -0.00058441726 + 75980 -6244.8595 -6250.5425 5.683004 3683.3601 630.7892 -10564.692 0 272.36144 -0.00035096644 -0.0003834818 + 75990 -6244.9491 -6250.5632 5.6141024 3682.7236 631.57088 -10564.858 0 269.05929 -0.00026790424 -0.00029124771 + 76000 -6245.0135 -6250.8008 5.7873487 3684.2346 631.3575 -10566.393 0 277.36222 -0.00030928832 -0.00032532034 + 76010 -6245.0032 -6251.2926 6.2893807 3687.4642 630.25564 -10569.013 0 301.42241 -0.00045149366 -0.00046806931 + 76020 -6244.9329 -6251.9214 6.9885255 3691.6092 628.61335 -10572.144 0 334.92935 -0.00065180576 -0.00067590544 + 76030 -6244.8793 -6252.4489 7.5695738 3695.7018 626.89778 -10575.048 0 362.77645 -0.00086287589 -0.00089407764 + 76040 -6244.9202 -6252.6584 7.7381798 3698.759 625.53145 -10576.949 0 370.85699 -0.0010409482 -0.0010712887 + 76050 -6245.0597 -6252.5062 7.4465433 3699.9216 624.75843 -10577.186 0 356.88014 -0.0011499177 -0.001171118 + 76060 -6245.2164 -6252.1505 6.9341697 3698.6583 624.59975 -10575.409 0 332.32432 -0.0011672538 -0.0011791116 + 76070 -6245.2934 -6251.8206 6.52725 3695.01 624.90749 -10571.738 0 312.82245 -0.0010928193 -0.0011045916 + 76080 -6245.2645 -6251.6377 6.3731553 3689.7144 625.47008 -10566.822 0 305.43736 -0.00095352203 -0.00097638439 + 76090 -6245.1963 -6251.5454 6.3491747 3684.0488 626.10128 -10561.696 0 304.28808 -0.00079599087 -0.00083315246 + 76100 -6245.1876 -6251.4036 6.2159318 3679.3999 626.67344 -10557.477 0 297.90233 -0.00066802261 -0.0007114063 + 76110 -6245.2831 -6251.1469 5.8637921 3676.7816 627.1027 -10555.031 0 281.02582 -0.00059936805 -0.00063589044 + 76120 -6245.4337 -6250.864 5.4303272 3676.5663 627.32371 -10554.754 0 260.25175 -0.00059405729 -0.00061615341 + 76130 -6245.5359 -6250.733 5.1971295 3678.5359 627.28623 -10556.555 0 249.07561 -0.00063775773 -0.00064949346 + 76140 -6245.5119 -6250.8776 5.3657296 3682.1412 626.97822 -10559.997 0 257.15587 -0.00071236003 -0.00072651621 + 76150 -6245.3683 -6251.2623 5.8940002 3686.7494 626.45499 -10564.467 0 282.47356 -0.00080595995 -0.00083454778 + 76160 -6245.1953 -6251.7076 6.5122897 3691.7271 625.84761 -10569.282 0 312.10546 -0.00091171384 -0.0009569857 + 76170 -6245.1053 -6252.0129 6.9075918 3696.3708 625.3367 -10573.72 0 331.05056 -0.0010183286 -0.0010709048 + 76180 -6245.1515 -6252.095 6.9434628 3699.8392 625.10001 -10577.034 0 332.7697 -0.0011017781 -0.0011474194 + 76190 -6245.29 -6252.0362 6.7461542 3701.2572 625.25818 -10578.552 0 323.31356 -0.0011277676 -0.0011577321 + 76200 -6245.4185 -6252.0021 6.583572 3700.0271 625.84184 -10577.871 0 315.52171 -0.0010668327 -0.0010837839 + 76210 -6245.4594 -6252.093 6.6336068 3696.1961 626.78499 -10575.074 0 317.91966 -0.00091399484 -0.00092897796 + 76220 -6245.4184 -6252.2511 6.8326973 3690.6262 627.93224 -10570.81 0 327.46119 -0.00070026136 -0.00072350485 + 76230 -6245.3726 -6252.3016 6.928984 3684.8002 629.04906 -10566.151 0 332.07579 -0.00048713542 -0.00052023175 + 76240 -6245.402 -6252.0964 6.6944253 3680.3192 629.84406 -10562.26 0 320.83442 -0.00034498272 -0.00038048423 + 76250 -6245.5214 -6251.6412 6.1198016 3678.3366 630.02558 -10560.003 0 293.29523 -0.00032572942 -0.00035387714 + 76260 -6245.6715 -6251.1096 5.4380398 3679.199 629.39867 -10559.707 0 260.62138 -0.00044353559 -0.00046025868 + 76270 -6245.7677 -6250.7356 4.9679287 3682.4259 627.97029 -10561.132 0 238.09102 -0.00067139983 -0.00068130715 + 76280 -6245.7637 -6250.6676 4.9039391 3686.9637 626.00553 -10563.637 0 235.02428 -0.0009519974 -0.00096439007 + 76290 -6245.6825 -6250.8854 5.2029586 3691.5458 623.98832 -10566.42 0 249.35497 -0.0012151047 -0.0012363547 + 76300 -6245.5946 -6251.2382 5.6435565 3695.0009 622.48054 -10568.72 0 270.47089 -0.0013946638 -0.0014230653 + 76310 -6245.56 -6251.5687 6.0087121 3696.4633 621.92638 -10569.958 0 287.9712 -0.0014428359 -0.0014702518 + 76320 -6245.5774 -6251.8204 6.2429986 3695.5304 622.48712 -10569.838 0 299.19952 -0.0013413037 -0.0013603563 + 76330 -6245.5862 -6252.0392 6.4530066 3692.3996 623.98494 -10568.424 0 309.26429 -0.0011089979 -0.0011196644 + 76340 -6245.5191 -6252.2809 6.7618309 3687.9253 625.97805 -10566.184 0 324.06488 -0.00080235535 -0.0008123871 + 76350 -6245.3604 -6252.518 7.1575424 3683.4753 627.9224 -10563.916 0 343.02959 -0.00050382301 -0.00052287304 + 76360 -6245.1624 -6252.6282 7.4657825 3680.5427 629.34495 -10562.516 0 357.80219 -0.00029867181 -0.00033098473 + 76370 -6245.0097 -6252.4725 7.4627835 3680.2198 629.96669 -10562.659 0 357.65846 -0.00024669709 -0.00028778977 + 76380 -6244.9589 -6252.0026 7.0437207 3682.7557 629.74796 -10564.506 0 337.57462 -0.00035989128 -0.00039947111 + 76390 -6244.9951 -6251.3254 6.3303474 3687.4106 628.86088 -10567.597 0 303.38577 -0.00059668602 -0.00062584945 + 76400 -6245.0382 -6250.6748 5.6366136 3692.7 627.61596 -10570.991 0 270.13815 -0.00087693441 -0.00089473607 + 76410 -6244.9966 -6250.2934 5.2968289 3696.9415 626.37466 -10573.61 0 253.85376 -0.00111185 -0.0011263342 + 76420 -6244.8284 -6250.2903 5.4619404 3698.8641 625.46709 -10574.621 0 261.76683 -0.0012355008 -0.0012579155 + 76430 -6244.569 -6250.5793 6.0103128 3698.0001 625.11796 -10573.697 0 288.04792 -0.0012242473 -0.0012604394 + 76440 -6244.3039 -6250.9502 6.6462675 3694.7124 625.38591 -10571.049 0 318.52643 -0.001097538 -0.0011432216 + 76450 -6244.1045 -6251.2183 7.1138103 3689.9219 626.13805 -10567.278 0 340.9337 -0.00090312291 -0.0009469403 + 76460 -6243.9757 -6251.3331 7.3573709 3684.7465 627.08746 -10563.167 0 352.6065 -0.00069654546 -0.00072852333 + 76470 -6243.8574 -6251.3672 7.5098476 3680.2359 627.89497 -10559.498 0 359.91403 -0.00052516415 -0.00054388805 + 76480 -6243.6782 -6251.4142 7.7359498 3677.2484 628.29477 -10556.957 0 370.75012 -0.00042145062 -0.00043465642 + 76490 -6243.4185 -6251.4849 8.0664239 3676.3962 628.18365 -10556.065 0 386.58829 -0.00040330279 -0.00042179991 + 76500 -6243.1336 -6251.4845 8.3509019 3677.9635 627.63449 -10557.083 0 400.22208 -0.00047538247 -0.0005048975 + 76510 -6242.9192 -6251.2871 8.3678901 3681.7726 626.83838 -10559.898 0 401.03624 -0.00062705009 -0.00066398832 + 76520 -6242.8377 -6250.8556 8.0178788 3687.0797 626.01788 -10563.953 0 384.26174 -0.00082816241 -0.00086275655 + 76530 -6242.866 -6250.3099 7.4439407 3692.6397 625.36275 -10568.312 0 356.75541 -0.001029503 -0.0010542221 + 76540 -6242.914 -6249.8672 6.9532696 3697.0226 625.01432 -10571.904 0 333.23969 -0.0011739933 -0.0011901224 + 76550 -6242.9036 -6249.6852 6.7815445 3699.0915 625.07933 -10573.856 0 325.00966 -0.0012164905 -0.0012327302 + 76560 -6242.8344 -6249.7448 6.9103658 3698.3959 625.62798 -10573.769 0 331.1835 -0.0011411947 -0.00116551 + 76570 -6242.7752 -6249.8907 7.1154799 3695.2702 626.64986 -10571.811 0 341.01372 -0.00096619036 -0.00099881129 + 76580 -6242.7941 -6249.9897 7.1956094 3690.635 627.9939 -10568.619 0 344.85398 -0.00073451564 -0.0007686 + 76590 -6242.8973 -6250.0522 7.154945 3685.6784 629.35281 -10565.083 0 342.90511 -0.00049997297 -0.00052860568 + 76600 -6243.0329 -6250.2101 7.1772611 3681.578 630.33268 -10562.121 0 343.97463 -0.00031542753 -0.00033798562 + 76610 -6243.148 -6250.5859 7.4378921 3679.2975 630.59008 -10560.473 0 356.46552 -0.0002248155 -0.00024728856 + 76620 -6243.2442 -6251.168 7.9238012 3679.4155 629.97134 -10560.555 0 379.75301 -0.00025588592 -0.00028543083 + 76630 -6243.3866 -6251.787 8.4003759 3681.9664 628.58536 -10562.339 0 402.59315 -0.00041190775 -0.00045036403 + 76640 -6243.6562 -6252.209 8.552816 3686.3397 626.77445 -10565.323 0 409.89893 -0.00066473738 -0.00070651888 + 76650 -6244.0767 -6252.2825 8.2057289 3691.3369 624.99718 -10568.617 0 393.26457 -0.00095541977 -0.00099188523 + 76660 -6244.5817 -6252.0297 7.4480058 3695.4638 623.67905 -10571.172 0 356.95023 -0.001207974 -0.0012347963 + 76670 -6245.058 -6251.611 6.5529567 3697.414 623.09733 -10572.122 0 314.05445 -0.0013544981 -0.001375371 + 76680 -6245.4305 -6251.2009 5.7703927 3696.5503 623.33468 -10571.086 0 276.5496 -0.0013599277 -0.0013830998 + 76690 -6245.7051 -6250.8912 5.1860551 3693.1349 624.29056 -10568.317 0 248.54486 -0.0012328399 -0.0012638193 + 76700 -6245.9411 -6250.6973 4.7561817 3688.197 625.72124 -10564.616 0 227.94291 -0.0010176966 -0.0010548403 + 76710 -6246.1898 -6250.6314 4.4415776 3683.1353 627.29354 -10561.06 0 212.86532 -0.00077545884 -0.00081188018 + 76720 -6246.4568 -6250.7468 4.2900033 3679.2796 628.65277 -10558.679 0 205.60103 -0.00056401064 -0.00059334766 + 76730 -6246.711 -6251.108 4.3969883 3677.5816 629.50167 -10558.191 0 210.72835 -0.00042596087 -0.0004468542 + 76740 -6246.9198 -6251.7176 4.7978238 3678.4773 629.67137 -10559.866 0 229.93864 -0.0003845436 -0.00040070363 + 76750 -6247.0784 -6252.4712 5.3927983 3681.8667 629.15881 -10563.497 0 258.45315 -0.00044401485 -0.00046066968 + 76760 -6247.2144 -6253.1835 5.969057 3687.1543 628.11624 -10568.454 0 286.0707 -0.00059093459 -0.00061090019 + 76770 -6247.3647 -6253.6709 6.3062001 3693.3328 626.79856 -10573.802 0 302.22849 -0.00079553503 -0.00081785101 + 76780 -6247.5454 -6253.8383 6.2929022 3699.1372 625.49199 -10578.467 0 301.59118 -0.0010150769 -0.0010368526 + 76790 -6247.7379 -6253.712 5.9740992 3703.286 624.45163 -10581.45 0 286.31236 -0.001201249 -0.0012208556 + 76800 -6247.9053 -6253.4039 5.4985793 3704.7806 623.86433 -10582.049 0 263.52277 -0.0013111568 -0.001329954 + 76810 -6248.0228 -6253.033 5.0101848 3703.1781 623.83443 -10580.046 0 240.11617 -0.0013185937 -0.0013396678 + 76820 -6248.0974 -6252.6645 4.5670404 3698.7332 624.37599 -10575.774 0 218.8782 -0.0012214238 -0.0012464089 + 76830 -6248.1586 -6252.3078 4.1492357 3692.3434 625.3992 -10570.05 0 198.85466 -0.0010423799 -0.0010693018 + 76840 -6248.2278 -6251.9678 3.7399543 3685.3204 626.69776 -10563.986 0 179.23959 -0.00082334392 -0.00084778117 + 76850 -6248.2949 -6251.6931 3.3981272 3679.0847 627.96204 -10558.74 0 162.85732 -0.00061566638 -0.0006345561 + 76860 -6248.3211 -6251.57 3.2488462 3674.8894 628.8392 -10555.299 0 155.70294 -0.0004696338 -0.00048444221 + 76870 -6248.266 -6251.664 3.3979595 3673.6138 629.03442 -10554.312 0 162.84929 -0.00042466639 -0.00044103918 + 76880 -6248.1151 -6251.9616 3.8464312 3675.6114 628.4176 -10555.991 0 184.34256 -0.0005003478 -0.00052430002 + 76890 -6247.8873 -6252.3621 4.4748331 3680.5983 627.0894 -10560.05 0 214.45911 -0.00068885171 -0.00072224499 + 76900 -6247.6174 -6252.7284 5.1110127 3687.6168 625.37509 -10565.72 0 244.9484 -0.00095115038 -0.00098970944 + 76910 -6247.3249 -6252.9631 5.6382823 3695.1362 623.74347 -10571.843 0 270.21812 -0.0012205219 -0.0012560618 + 76920 -6246.9857 -6253.0578 6.0720523 3701.3375 622.67805 -10577.073 0 291.00682 -0.0014158701 -0.0014417127 + 76930 -6246.534 -6253.0733 6.5393455 3704.5661 622.54584 -10580.185 0 313.40213 -0.0014640517 -0.0014801053 + 76940 -6245.9022 -6253.0539 7.1517256 3703.8507 623.50328 -10580.408 0 342.75082 -0.0013258028 -0.0013392496 + 76950 -6245.0865 -6252.9399 7.8533791 3699.3031 625.45323 -10577.696 0 376.37799 -0.0010158744 -0.0010361024 + 76960 -6244.1847 -6252.5695 8.3847607 3692.1938 628.04617 -10572.809 0 401.84478 -0.00060677439 -0.00063793911 + 76970 -6243.3556 -6251.7982 8.4426157 3684.5951 630.72453 -10567.118 0 404.61752 -0.00020971618 -0.00024727337 + 76980 -6242.7137 -6250.648 7.9342907 3678.6985 632.82717 -10562.174 0 380.25573 6.2379121e-05 2.758928e-05 + 76990 -6242.2578 -6249.3511 7.09331 3676.104 633.76149 -10559.217 0 339.95122 0.0001330218 0.00010669336 + 77000 -6241.8998 -6248.2386 6.3387551 3677.3799 633.20404 -10558.822 0 303.78871 -1.5701024e-05 -3.5914785e-05 + 77010 -6241.5536 -6247.5611 6.0074593 3681.9964 631.24589 -10560.803 0 287.91116 -0.00034215952 -0.00036389875 + 77020 -6241.1983 -6247.3763 6.1780249 3688.5493 628.40371 -10564.329 0 296.08562 -0.0007597169 -0.00078877541 + 77030 -6240.8758 -6247.5701 6.6943857 3695.1419 625.47017 -10568.182 0 320.83252 -0.0011593196 -0.0011943804 + 77040 -6240.6386 -6247.9798 7.3412223 3699.8403 623.24797 -10571.068 0 351.83257 -0.0014357015 -0.0014694546 + 77050 -6240.4936 -6248.5152 8.0216003 3701.1587 622.27266 -10571.947 0 384.4401 -0.0015142957 -0.0015402342 + 77060 -6240.3952 -6249.1779 8.7826741 3698.5102 622.64719 -10570.335 0 420.91502 -0.0013740934 -0.0013930894 + 77070 -6240.3003 -6249.9683 9.6680157 3692.4813 624.05826 -10566.508 0 463.34556 -0.0010581815 -0.0010786123 + 77080 -6240.2302 -6250.7824 10.552186 3684.7534 625.94706 -10561.483 0 505.71995 -0.00066353605 -0.00069454283 + 77090 -6240.2741 -6251.4107 11.13663 3677.5962 627.73519 -10556.742 0 533.72979 -0.00030925267 -0.0003530234 + 77100 -6240.5218 -6251.6472 11.125415 3673.0945 629.00384 -10553.746 0 533.19231 -9.4513226e-05 -0.00014403345 + 77110 -6240.9832 -6251.42 10.436753 3672.4403 629.57242 -10553.433 0 500.18777 -6.4920642e-05 -0.00010879531 + 77120 -6241.5645 -6250.8499 9.2853358 3675.6005 629.48093 -10555.931 0 445.00539 -0.00020238569 -0.00023294792 + 77130 -6242.122 -6250.196 8.0739944 3681.4757 628.9189 -10560.591 0 386.95111 -0.00044133749 -0.00046008538 + 77140 -6242.5483 -6249.7178 7.1694733 3688.4157 628.147 -10566.28 0 343.60139 -0.00070030819 -0.00071673919 + 77150 -6242.8273 -6249.5424 6.715132 3694.8063 627.43222 -10571.781 0 321.8268 -0.00091173153 -0.00093643854 + 77160 -6243.0252 -6249.6265 6.6013249 3699.4684 626.99312 -10576.088 0 316.37253 -0.0010374387 -0.0010745367 + 77170 -6243.2341 -6249.8329 6.5987793 3701.7758 626.95133 -10578.56 0 316.25053 -0.0010679456 -0.0011123566 + 77180 -6243.5082 -6250.0539 6.5456967 3701.5823 627.30075 -10578.937 0 313.70651 -0.001012541 -0.0010539368 + 77190 -6243.8346 -6250.2821 6.4475035 3699.1153 627.91408 -10577.311 0 309.00055 -0.00088979948 -0.00091993373 + 77200 -6244.1547 -6250.5815 6.4267098 3694.9299 628.59022 -10574.102 0 308.00399 -0.00072414938 -0.00074202282 + 77210 -6244.414 -6250.9977 6.5837204 3689.8963 629.12022 -10570.014 0 315.52882 -0.00054722993 -0.00055875705 + 77220 -6244.6009 -6251.4891 6.8882128 3685.1222 629.3391 -10565.95 0 330.12181 -0.00039840711 -0.00041159222 + 77230 -6244.7515 -6251.9301 7.1786004 3681.7448 629.1467 -10562.822 0 344.03881 -0.00031958066 -0.00033903718 + 77240 -6244.9196 -6252.1804 7.2607565 3680.6204 628.50595 -10561.307 0 347.97619 -0.00034377188 -0.00036823509 + 77250 -6245.1369 -6252.17 7.0330931 3682.0262 627.4407 -10561.637 0 337.06528 -0.00048178094 -0.00050589389 + 77260 -6245.3893 -6251.9427 6.5533581 3685.5133 626.04744 -10563.503 0 314.07369 -0.00071359991 -0.00073238095 + 77270 -6245.6284 -6251.6318 6.0034377 3690.0055 624.51494 -10566.152 0 287.71842 -0.00098974289 -0.0010024543 + 77280 -6245.8058 -6251.3819 5.576114 3694.1238 623.12788 -10568.634 0 267.23867 -0.0012431566 -0.0012538062 + 77290 -6245.9069 -6251.267 5.3600755 3696.6185 622.22891 -10570.114 0 256.88489 -0.0014076958 -0.0014218471 + 77300 -6245.9587 -6251.2621 5.3033851 3696.7383 622.13142 -10570.132 0 254.16797 -0.0014366521 -0.0014570324 + 77310 -6246.0068 -6251.2887 5.2818188 3694.4186 623.00452 -10568.712 0 253.13439 -0.0013153979 -0.001339849 + 77320 -6246.0792 -6251.2954 5.2162075 3690.2661 624.77781 -10566.339 0 249.98993 -0.0010652441 -0.0010886856 + 77330 -6246.1657 -6251.308 5.1423556 3685.3942 627.1162 -10563.818 0 246.45054 -0.00073892255 -0.00075764994 + 77340 -6246.2277 -6251.4091 5.1813371 3681.1718 629.4893 -10562.07 0 248.31875 -0.00040966104 -0.000424547 + 77350 -6246.2291 -6251.6672 5.4380966 3678.9231 631.31816 -10561.908 0 260.6241 -0.00015586656 -0.00017208167 + 77360 -6246.1669 -6252.0658 5.8989562 3679.6057 632.15025 -10563.822 0 282.71108 -4.3376247e-05 -6.6673936e-05 + 77370 -6246.0829 -6252.4803 6.3973868 3683.5138 631.80091 -10567.795 0 306.59867 -0.00010768038 -0.00013956559 + 77380 -6246.0421 -6252.733 6.6908921 3690.0742 630.40841 -10573.216 0 320.66509 -0.00033983688 -0.00037531193 + 77390 -6246.0821 -6252.7049 6.6228101 3697.8403 628.3809 -10578.926 0 317.40222 -0.00068213223 -0.00071274519 + 77400 -6246.1748 -6252.4222 6.2474298 3704.7841 626.26079 -10583.467 0 299.41189 -0.0010401369 -0.0010608036 + 77410 -6246.2439 -6252.0338 5.789949 3708.8839 624.56676 -10585.484 0 277.48684 -0.0013118379 -0.0013255368 + 77420 -6246.2293 -6251.6918 5.4624716 3708.8074 623.66737 -10584.167 0 261.79229 -0.0014231056 -0.0014386472 + 77430 -6246.1362 -6251.4491 5.3129181 3704.3717 623.70609 -10579.527 0 254.62485 -0.0013522039 -0.0013769082 + 77440 -6246.0215 -6251.2659 5.2443901 3696.5718 624.57672 -10572.414 0 251.3406 -0.0011323282 -0.0011663597 + 77450 -6245.9389 -6251.0953 5.1563641 3687.2178 625.95209 -10564.265 0 247.1219 -0.00083473138 -0.00087166706 + 77460 -6245.8944 -6250.9486 5.0541706 3678.399 627.37086 -10556.718 0 242.22421 -0.00054375199 -0.00057586641 + 77470 -6245.8443 -6250.887 5.0427229 3671.9829 628.36774 -10551.238 0 241.67558 -0.00033414782 -0.00035756161 + 77480 -6245.7221 -6250.9658 5.2437195 3669.2541 628.60895 -10548.829 0 251.30846 -0.00025535868 -0.00027172495 + 77490 -6245.4686 -6251.1862 5.7176389 3670.7155 627.98978 -10549.892 0 274.02134 -0.00032308434 -0.00033779498 + 77500 -6245.0508 -6251.4828 6.431952 3676.0439 626.66724 -10554.194 0 308.25523 -0.00051760106 -0.0005363603 + 77510 -6244.4728 -6251.7453 7.2724574 3684.172 625.02267 -10560.94 0 348.53696 -0.00078848244 -0.00081418531 + 77520 -6243.7761 -6251.8617 8.0855542 3693.4682 623.5655 -10568.895 0 387.50512 -0.0010650001 -0.0010963745 + 77530 -6243.025 -6251.7653 8.7403095 3702.0038 622.8009 -10576.57 0 418.88467 -0.001270672 -0.0013034745 + 77540 -6242.2793 -6251.4592 9.1799223 3707.9194 623.09544 -10582.474 0 439.95339 -0.0013400765 -0.001370196 + 77550 -6241.5761 -6250.9969 9.4207738 3709.8699 624.5775 -10585.444 0 451.49634 -0.0012356879 -0.0012618495 + 77560 -6240.9347 -6250.4364 9.5016326 3707.4313 627.09561 -10584.963 0 455.37155 -0.00096101279 -0.00098503846 + 77570 -6240.3697 -6249.8123 9.4425923 3701.2866 630.23628 -10581.335 0 452.542 -0.00056493187 -0.00058996168 + 77580 -6239.8944 -6249.1457 9.2512702 3693.0826 633.3954 -10575.624 0 443.37277 -0.00013362174 -0.00016221461 + 77590 -6239.5181 -6248.4656 8.9475044 3684.9911 635.89961 -10569.356 0 428.81462 0.0002295289 0.00019650411 + 77600 -6239.2441 -6247.8212 8.57713 3679.1095 637.16263 -10564.093 0 411.0642 0.00043163451 0.00039537148 + 77610 -6239.065 -6247.2904 8.225468 3676.8686 636.83763 -10560.997 0 394.21058 0.00041788983 0.00038082544 + 77620 -6238.9557 -6246.9811 8.0253449 3678.6322 634.91618 -10560.529 0 384.61956 0.00018887956 0.00015252072 + 77630 -6238.8822 -6246.9982 8.1159432 3683.6349 631.7415 -10562.375 0 388.96154 -0.00020020128 -0.00023701425 + 77640 -6238.8301 -6247.3768 8.5467585 3690.2699 627.93244 -10565.579 0 409.60862 -0.00065780628 -0.00069786627 + 77650 -6238.8285 -6248.037 9.2085576 3696.5807 624.23809 -10568.856 0 441.32575 -0.0010823546 -0.0011268254 + 77660 -6238.9384 -6248.8149 9.8764633 3700.7672 621.3596 -10570.942 0 473.33554 -0.0013858181 -0.0014323354 + 77670 -6239.2125 -6249.5458 10.333314 3701.6068 619.78942 -10570.942 0 495.23037 -0.001510175 -0.0015545524 + 77680 -6239.6661 -6250.1209 10.454829 3698.7617 619.71505 -10568.598 0 501.05408 -0.0014379367 -0.0014773136 + 77690 -6240.2796 -6250.4895 10.209926 3692.9107 621.00499 -10564.405 0 489.31694 -0.0011963629 -0.0012303869 + 77700 -6241.0081 -6250.6504 9.6423193 3685.5982 623.26289 -10559.512 0 462.11405 -0.00085134869 -0.00088132891 + 77710 -6241.7854 -6250.6597 8.874266 3678.8009 625.92913 -10555.39 0 425.30462 -0.0004898426 -0.00051805503 + 77720 -6242.5381 -6250.6197 8.0816273 3674.3742 628.4148 -10553.409 0 387.31693 -0.0001967775 -0.00022625667 + 77730 -6243.2161 -6250.6258 7.409614 3673.5817 630.24434 -10554.452 0 355.11028 -3.4895828e-05 -6.8184655e-05 + 77740 -6243.8129 -6250.7089 6.8960262 3676.8119 631.16512 -10558.686 0 330.49627 -3.1916255e-05 -6.8719792e-05 + 77750 -6244.35 -6250.8339 6.4838882 3683.4917 631.18651 -10565.512 0 310.7443 -0.00017547552 -0.00021160083 + 77760 -6244.8412 -6250.956 6.1147918 3692.196 630.53987 -10573.692 0 293.05513 -0.00041616478 -0.00044582332 + 77770 -6245.2694 -6251.0781 5.8087188 3700.9706 629.58224 -10581.631 0 278.3864 -0.00068020318 -0.00070055841 + 77780 -6245.5978 -6251.2453 5.6474802 3707.8412 628.68071 -10587.767 0 270.65894 -0.00089117567 -0.0009052396 + 77790 -6245.8067 -6251.4849 5.6782216 3711.3593 628.11008 -10590.954 0 272.13224 -0.00099439321 -0.0010092876 + 77800 -6245.9198 -6251.758 5.8381586 3710.9744 627.98607 -10590.718 0 279.79732 -0.00097328218 -0.00099498143 + 77810 -6245.9968 -6251.9762 5.9794193 3707.0911 628.24839 -10587.316 0 286.56732 -0.00085022 -0.00087908685 + 77820 -6246.0948 -6252.0682 5.9733343 3700.8324 628.69714 -10581.598 0 286.2757 -0.00067300616 -0.0007036831 + 77830 -6246.2319 -6252.0364 5.8045036 3693.6581 629.06805 -10574.762 0 278.18438 -0.00049576382 -0.00052137291 + 77840 -6246.378 -6251.9572 5.5792108 3687.0044 629.11688 -10568.078 0 267.38709 -0.00036411393 -0.00038146734 + 77850 -6246.4825 -6251.9232 5.440753 3682.0425 628.68487 -10562.651 0 260.75141 -0.00030912144 -0.00032099283 + 77860 -6246.5144 -6251.9692 5.4548867 3679.5567 627.73261 -10559.259 0 261.42878 -0.00034737576 -0.00036014819 + 77870 -6246.4868 -6252.0438 5.5570123 3679.8714 626.34426 -10558.259 0 266.32321 -0.00048111473 -0.0004997779 + 77880 -6246.4438 -6252.0529 5.6090967 3682.7817 624.71082 -10559.545 0 268.81939 -0.00069499315 -0.00071966489 + 77890 -6246.4226 -6251.9427 5.5200617 3687.5205 623.103 -10562.566 0 264.55233 -0.00095221385 -0.00097896265 + 77900 -6246.4245 -6251.7469 5.3223905 3692.8622 621.83976 -10566.449 0 255.07882 -0.0011963112 -0.0012211035 + 77910 -6246.4211 -6251.5603 5.1392079 3697.4099 621.24862 -10570.219 0 246.29968 -0.001362246 -0.0013841658 + 77920 -6246.3838 -6251.4651 5.081302 3699.9956 621.60635 -10573.067 0 243.5245 -0.0013942005 -0.00141528 + 77930 -6246.3077 -6251.4792 5.1714682 3700.0361 623.05745 -10574.573 0 247.84578 -0.0012633035 -0.00128579 + 77940 -6246.2092 -6251.5625 5.35333 3697.7106 625.53069 -10574.804 0 256.56161 -0.00097898271 -0.0010030049 + 77950 -6246.1058 -6251.6645 5.5586927 3693.9114 628.69363 -10574.269 0 266.40375 -0.00059065062 -0.00061431969 + 77960 -6245.9982 -6251.7627 5.764481 3690.0003 631.98251 -10573.745 0 276.26627 -0.00017914938 -0.00020061163 + 77970 -6245.8699 -6251.865 5.9950612 3687.4423 634.71744 -10574.025 0 287.31697 0.00016080989 0.00014140754 + 77980 -6245.7019 -6251.9807 6.2788466 3687.3936 636.277 -10575.651 0 300.91756 0.00034407635 0.00032432682 + 77990 -6245.4902 -6252.088 6.5977719 3690.3384 636.27996 -10578.706 0 316.20225 0.00031885484 0.00029573973 + 78000 -6245.2553 -6252.1222 6.8669346 3695.8735 634.71301 -10582.709 0 329.10204 8.3954401e-05 5.6364739e-05 + 78010 -6245.0338 -6252.0021 6.9683367 3702.7139 631.95445 -10586.671 0 333.96179 -0.00030639312 -0.00033607665 + 78020 -6244.8533 -6251.6864 6.8330769 3708.9513 628.67521 -10589.313 0 327.47938 -0.00075308067 -0.00078004472 + 78030 -6244.7058 -6251.2225 6.516619 3712.5381 625.64526 -10589.406 0 312.31294 -0.0011373437 -0.001157945 + 78040 -6244.547 -6250.7377 6.1907507 3711.9065 623.51299 -10586.157 0 296.69551 -0.0013554239 -0.0013706095 + 78050 -6244.3269 -6250.3642 6.0372442 3706.5379 622.6328 -10579.535 0 289.33862 -0.0013521637 -0.0013673758 + 78060 -6244.0278 -6250.1556 6.1278107 3697.2571 622.98891 -10570.402 0 293.67907 -0.001140317 -0.0011614745 + 78070 -6243.6725 -6250.0699 6.3974147 3686.0883 624.22677 -10560.385 0 306.60001 -0.00079636987 -0.00082530783 + 78080 -6243.2991 -6250.0274 6.7282861 3675.6987 625.77802 -10551.504 0 322.45722 -0.00043372009 -0.00046702909 + 78090 -6242.9253 -6249.984 7.0587158 3668.6353 627.0469 -10545.666 0 338.29327 -0.00016410906 -0.00019610851 + 78100 -6242.5331 -6249.9546 7.4214572 3666.6283 627.60679 -10544.19 0 355.67787 -6.2145436e-05 -8.9216341e-05 + 78110 -6242.0856 -6249.979 7.8933767 3670.1633 627.34404 -10547.486 0 378.2949 -0.00014448534 -0.00016737693 + 78120 -6241.5584 -6250.0681 8.5096462 3678.4047 626.49723 -10554.97 0 407.83 -0.00036838297 -0.00039113907 + 78130 -6240.9676 -6250.1757 9.2081312 3689.4532 625.57492 -10565.204 0 441.30531 -0.00064793745 -0.00067450201 + 78140 -6240.3717 -6250.2164 9.844676 3700.8487 625.17608 -10576.241 0 471.81211 -0.00088175081 -0.0009127729 + 78150 -6239.8428 -6250.1244 10.281636 3710.1811 625.772 -10586.078 0 492.75369 -0.00098308396 -0.0010155968 + 78160 -6239.4225 -6249.9132 10.490684 3715.6624 627.52739 -10593.103 0 502.77246 -0.0009042119 -0.00093490399 + 78170 -6239.1052 -6249.6726 10.567384 3716.5362 630.22967 -10596.438 0 506.44836 -0.00065009641 -0.00067929766 + 78180 -6238.8699 -6249.4901 10.620208 3713.2318 633.35222 -10596.074 0 508.97995 -0.00027889962 -0.0003109445 + 78190 -6238.7292 -6249.3632 10.633915 3707.1905 636.21998 -10592.774 0 509.63686 0.0001127305 7.3781191e-05 + 78200 -6238.7395 -6249.1904 10.450951 3700.3746 638.21 -10587.775 0 500.86819 0.00041885152 0.00037424065 + 78210 -6238.9547 -6248.8626 9.907941 3694.6109 638.91714 -10582.391 0 474.84413 0.00055980824 0.00051668196 + 78220 -6239.3653 -6248.3799 9.0145155 3691.0289 638.23557 -10577.644 0 432.02616 0.00050899592 0.00047517918 + 78230 -6239.8866 -6247.8902 8.0036811 3689.8351 636.34174 -10574.067 0 383.58131 0.00029651066 0.00027378473 + 78240 -6240.418 -6247.6046 7.1866051 3690.4924 633.60484 -10571.702 0 344.42244 -1.2010649e-05 -2.9659753e-05 + 78250 -6240.9205 -6247.6569 6.7363757 3692.1337 630.47393 -10570.264 0 322.84492 -0.00034651572 -0.0003676509 + 78260 -6241.4338 -6248.0374 6.6035928 3693.9356 627.38275 -10569.356 0 316.48122 -0.00065361177 -0.00068209342 + 78270 -6242.021 -6248.6477 6.6266935 3695.2868 624.68948 -10568.624 0 317.58834 -0.00089947674 -0.00093207217 + 78280 -6242.7021 -6249.4 6.6978926 3695.7987 622.65021 -10567.849 0 321.0006 -0.0010628337 -0.0010931694 + 78290 -6243.4388 -6250.2544 6.8156142 3695.2978 621.41748 -10566.97 0 326.64248 -0.0011305742 -0.0011546915 + 78300 -6244.17 -6251.1772 7.0071993 3693.8605 621.05207 -10566.09 0 335.82431 -0.0010999358 -0.0011183734 + 78310 -6244.8506 -6252.0878 7.2371225 3691.8413 621.53559 -10565.465 0 346.84352 -0.00098218496 -0.00099802654 + 78320 -6245.4619 -6252.8571 7.3951258 3689.825 622.77574 -10565.458 0 354.41592 -0.0008023557 -0.00081821203 + 78330 -6245.9993 -6253.3581 7.3588262 3688.4911 624.60524 -10566.454 0 352.67624 -0.00059448545 -0.00061110584 + 78340 -6246.4581 -6253.5245 7.0664048 3688.4391 626.78452 -10568.748 0 338.66177 -0.00039509822 -0.00041199895 + 78350 -6246.8303 -6253.3767 6.5464909 3690.0308 629.02075 -10572.428 0 313.74458 -0.00023726262 -0.00025407379 + 78360 -6247.1104 -6253.0068 5.8964054 3693.2881 631.01005 -10577.305 0 282.58883 -0.00014556197 -0.00016272577 + 78370 -6247.3036 -6252.5377 5.2340617 3697.8568 632.49756 -10582.892 0 250.84561 -0.00013146552 -0.00014988246 + 78380 -6247.4269 -6252.0822 4.6553213 3703.0407 633.33691 -10588.46 0 223.10912 -0.00018966429 -0.00020981637 + 78390 -6247.5029 -6251.7172 4.2143179 3707.9069 633.52457 -10593.149 0 201.97376 -0.00029750077 -0.000318841 + 78400 -6247.5515 -6251.4779 3.9264543 3711.4611 633.18997 -10596.129 0 188.17772 -0.00041962073 -0.00044066409 + 78410 -6247.5823 -6251.3669 3.7846493 3712.8695 632.53943 -10596.776 0 181.38163 -0.00051779809 -0.00053684441 + 78420 -6247.5928 -6251.371 3.7782734 3711.677 631.77312 -10594.821 0 181.07606 -0.00056303038 -0.00057913787 + 78430 -6247.5707 -6251.476 3.905328 3707.9592 631.00852 -10590.444 0 187.16523 -0.00054553973 -0.00055927743 + 78440 -6247.5006 -6251.6717 4.1711331 3702.3552 630.24235 -10584.269 0 199.9041 -0.00047898047 -0.00049254802 + 78450 -6247.3722 -6251.9447 4.5724566 3695.9566 629.36703 -10577.268 0 219.13778 -0.00039721688 -0.00041369778 + 78460 -6247.1894 -6252.2641 5.0746735 3690.0702 628.23585 -10570.57 0 243.20683 -0.00034432781 -0.00036616582 + 78470 -6246.9735 -6252.5726 5.5991006 3685.9006 626.75257 -10565.226 0 268.34032 -0.00036026497 -0.00038756485 + 78480 -6246.7573 -6252.7969 6.0396449 3684.2306 624.95122 -10561.979 0 289.45367 -0.00046579684 -0.00049554997 + 78490 -6246.5673 -6252.8791 6.3117865 3685.1898 623.03362 -10561.102 0 302.49623 -0.00065128959 -0.00067855165 + 78500 -6246.4043 -6252.8095 6.4051136 3688.2048 621.34711 -10562.361 0 306.96898 -0.00087424629 -0.00089515519 + 78510 -6246.24 -6252.6294 6.3894364 3692.187 620.30762 -10565.124 0 306.21765 -0.0010690861 -0.0010838091 + 78520 -6246.0393 -6252.3898 6.3505806 3695.9177 620.29133 -10568.599 0 304.35546 -0.0011681092 -0.0011810284 + 78530 -6245.7944 -6252.0981 6.3037384 3698.4828 621.52363 -10572.105 0 302.11051 -0.0011260848 -0.0011423834 + 78540 -6245.5356 -6251.7133 6.1776313 3699.5579 623.99106 -10575.262 0 296.06675 -0.00093709031 -0.00095841101 + 78550 -6245.3047 -6251.2109 5.9061662 3699.4284 627.4019 -10578.041 0 283.05662 -0.0006357194 -0.00065903825 + 78560 -6245.1131 -6250.657 5.543952 3698.7884 631.2203 -10580.666 0 265.69729 -0.00028411272 -0.00030507408 + 78570 -6244.9286 -6250.2055 5.2769018 3698.4575 634.78103 -10583.444 0 252.89874 4.6388969e-05 2.9054468e-05 + 78580 -6244.7049 -6250.0035 5.2986588 3699.1313 637.45622 -10586.591 0 253.94146 0.00029111912 0.00027467134 + 78590 -6244.421 -6250.0857 5.6646872 3701.1824 638.81619 -10590.084 0 271.4836 0.0004041675 0.00038524409 + 78600 -6244.0943 -6250.3564 6.2620515 3704.501 638.7269 -10593.584 0 300.11265 0.0003686958 0.00034716947 + 78610 -6243.7546 -6250.6727 6.9180543 3708.4225 637.35448 -10596.45 0 331.55198 0.00020378745 0.00018271606 + 78620 -6243.4082 -6250.9436 7.5354082 3711.8399 635.08453 -10597.868 0 361.13904 -3.867876e-05 -5.7216843e-05 + 78630 -6243.0346 -6251.1524 8.1178597 3713.5394 632.39575 -10597.088 0 389.05339 -0.0002911155 -0.00030984872 + 78640 -6242.6253 -6251.2903 8.6650197 3712.6456 629.73861 -10593.674 0 415.27636 -0.00049524064 -0.00052049073 + 78650 -6242.2247 -6251.288 9.0633061 3708.9566 627.45417 -10587.699 0 434.36448 -0.00062102068 -0.00065673883 + 78660 -6241.9191 -6251.0394 9.1202246 3702.9934 625.73837 -10579.771 0 437.09234 -0.00066890751 -0.00071168635 + 78670 -6241.7714 -6250.507 8.7356547 3695.7751 624.64025 -10570.922 0 418.66159 -0.00065755927 -0.00069806523 + 78680 -6241.7645 -6249.8054 8.040861 3688.4995 624.08571 -10562.391 0 385.36318 -0.00060931563 -0.00063936727 + 78690 -6241.8118 -6249.17 7.358181 3682.3103 623.92387 -10555.404 0 352.64532 -0.00054361856 -0.00056266079 + 78700 -6241.8228 -6248.8308 7.0080265 3678.1888 623.98834 -10551.008 0 335.86395 -0.00047834501 -0.00049383066 + 78710 -6241.7667 -6248.8821 7.1154137 3676.8846 624.1569 -10549.924 0 341.01055 -0.00043193671 -0.00045349378 + 78720 -6241.6906 -6249.2407 7.5501179 3678.7875 624.3907 -10552.419 0 361.84401 -0.00042031865 -0.00045237693 + 78730 -6241.6829 -6249.7151 8.0322618 3683.7454 624.74076 -10558.201 0 384.95105 -0.00044854729 -0.00048713518 + 78740 -6241.8114 -6250.1351 8.3237532 3690.9476 625.32028 -10566.403 0 398.92096 -0.00050299723 -0.00053927239 + 78750 -6242.0819 -6250.4423 8.36046 3699.0249 626.25358 -10575.721 0 400.68015 -0.00055190164 -0.00057951213 + 78760 -6242.4543 -6250.6787 8.2244825 3706.4054 627.61871 -10584.703 0 394.16335 -0.00055754989 -0.00057747978 + 78770 -6242.8982 -6250.8999 8.001707 3711.7862 629.39992 -10592.086 0 383.4867 -0.00049450628 -0.00051332467 + 78780 -6243.4269 -6251.1038 7.6769401 3714.4929 631.46248 -10597.059 0 367.92205 -0.0003626876 -0.00038622685 + 78790 -6244.0704 -6251.2385 7.1680743 3714.5753 633.56037 -10599.374 0 343.53434 -0.00018758255 -0.00021595053 + 78800 -6244.8164 -6251.2673 6.4509269 3712.6455 635.38004 -10599.293 0 309.16461 -8.9947569e-06 -3.702118e-05 + 78810 -6245.587 -6251.2251 5.638032 3709.5806 636.60823 -10597.414 0 270.20613 0.00013346221 0.0001114211 + 78820 -6246.2804 -6251.2137 4.9332449 3706.2388 637.00039 -10594.453 0 236.42878 0.00021020682 0.00019563801 + 78830 -6246.8307 -6251.342 4.5113001 3703.2905 636.43056 -10591.063 0 216.20681 0.00020479692 0.00019411587 + 78840 -6247.2319 -6251.6515 4.4195486 3701.1641 634.91786 -10587.733 0 211.80957 0.00011328157 0.00010079084 + 78850 -6247.5257 -6252.0826 4.55693 3700.0406 632.63056 -10584.754 0 218.39366 -5.6541329e-05 -7.4237367e-05 + 78860 -6247.7702 -6252.5091 4.7389472 3699.8402 629.8638 -10582.213 0 227.11694 -0.00028448886 -0.00030587022 + 78870 -6248.006 -6252.8212 4.8151621 3700.2154 626.98835 -10580.025 0 230.76959 -0.00053759463 -0.000557527 + 78880 -6248.2335 -6252.9942 4.7607603 3700.6184 624.38068 -10577.993 0 228.16235 -0.00077352763 -0.0007876029 + 78890 -6248.4189 -6253.0888 4.6699305 3700.4801 622.35683 -10575.926 0 223.80927 -0.00094976152 -0.00095812564 + 78900 -6248.5278 -6253.1844 4.6566074 3699.4496 621.1299 -10573.764 0 223.17076 -0.0010357699 -0.001043191 + 78910 -6248.557 -6253.305 4.7479689 3697.5704 620.79643 -10571.672 0 227.54931 -0.0010221431 -0.0010342911 + 78920 -6248.54 -6253.399 4.8589932 3695.2908 621.34299 -10570.033 0 232.87022 -0.00092173964 -0.00094082985 + 78930 -6248.5228 -6253.3855 4.8626885 3693.3018 622.66118 -10569.348 0 233.04732 -0.00076279832 -0.00078609062 + 78940 -6248.5304 -6253.2219 4.6914729 3692.2921 624.56528 -10570.079 0 224.8417 -0.00057847308 -0.00060057058 + 78950 -6248.5521 -6252.9404 4.3882669 3692.7386 626.8131 -10572.492 0 210.31037 -0.00039831803 -0.00041519178 + 78960 -6248.5525 -6252.628 4.0754864 3694.8023 629.13347 -10576.564 0 195.32018 -0.00024456487 -0.00025620007 + 78970 -6248.4989 -6252.3734 3.8744338 3698.3286 631.26131 -10581.963 0 185.68461 -0.00013216694 -0.00014209615 + 78980 -6248.3826 -6252.2197 3.8370935 3702.9032 632.97695 -10588.1 0 183.89505 -6.9516995e-05 -8.1893661e-05 + 78990 -6248.2199 -6252.1561 3.9362476 3707.9152 634.14001 -10594.211 0 188.64707 -5.7610272e-05 -7.41867e-05 + 79000 -6248.0348 -6252.1487 4.1139086 3712.6145 634.70592 -10599.469 0 197.16158 -8.8151966e-05 -0.00010746409 + 79010 -6247.8362 -6252.1777 4.3415143 3716.1928 634.71838 -10603.089 0 208.06972 -0.0001433886 -0.00016258033 + 79020 -6247.6102 -6252.246 4.635856 3717.9208 634.28098 -10604.448 0 222.17623 -0.00020017462 -0.00021763404 + 79030 -6247.3343 -6252.3518 5.0175838 3717.3294 633.51933 -10603.201 0 240.47077 -0.00023786859 -0.00025424999 + 79040 -6247.0004 -6252.458 5.4576266 3714.3681 632.54601 -10599.372 0 261.56009 -0.0002464465 -0.00026336836 + 79050 -6246.6252 -6252.497 5.8717981 3709.4598 631.43663 -10593.393 0 281.40951 -0.00023047016 -0.00024854188 + 79060 -6246.2375 -6252.4139 6.1764421 3703.4219 630.2213 -10586.057 0 296.00976 -0.00020692348 -0.00022535716 + 79070 -6245.8549 -6252.2075 6.3525774 3697.2876 628.89432 -10578.389 0 304.45115 -0.00019857167 -0.00021679008 + 79080 -6245.4772 -6251.9286 6.4513765 3692.0962 627.44296 -10571.468 0 309.18616 -0.00022645592 -0.00024571611 + 79090 -6245.1021 -6251.6345 6.5323793 3688.6994 625.88855 -10566.222 0 313.06827 -0.00030388237 -0.00032668192 + 79100 -6244.7461 -6251.3446 6.5985523 3687.5937 624.32415 -10563.262 0 316.23965 -0.00043166121 -0.00045904597 + 79110 -6244.4428 -6251.0426 6.5997455 3688.7954 622.93007 -10562.768 0 316.29684 -0.00059391058 -0.0006233439 + 79120 -6244.2154 -6250.7237 6.5083511 3691.8037 621.95505 -10564.482 0 311.9167 -0.00075630554 -0.00078277519 + 79130 -6244.0479 -6250.4397 6.3918293 3695.7158 621.66469 -10567.82 0 306.33233 -0.00087102784 -0.00089118309 + 79140 -6243.8894 -6250.2826 6.3931071 3699.509 622.27165 -10572.063 0 306.39356 -0.00089083029 -0.00090656271 + 79150 -6243.6955 -6250.3076 6.6120398 3702.4003 623.8671 -10576.575 0 316.88605 -0.00078817817 -0.00080573653 + 79160 -6243.4719 -6250.4668 6.9948788 3704.1109 626.36927 -10580.947 0 335.23384 -0.00056941551 -0.00059410866 + 79170 -6243.2751 -6250.6297 7.3545257 3704.8859 629.5026 -10585.018 0 352.47014 -0.00027492443 -0.00030612819 + 79180 -6243.1645 -6250.6843 7.5197842 3705.2762 632.82365 -10588.784 0 360.39025 3.5063269e-05 3.750218e-06 + 79190 -6243.1498 -6250.6274 7.4776226 3705.8334 635.80362 -10592.264 0 358.36963 0.00030040618 0.0002758422 + 79200 -6243.1837 -6250.5614 7.3777037 3706.8886 637.95429 -10595.404 0 353.58096 0.0004765732 0.00046031946 + 79210 -6243.2046 -6250.6009 7.3963182 3708.4855 638.95653 -10598.043 0 354.47307 0.00054111643 0.00052823344 + 79220 -6243.1906 -6250.7676 7.5769533 3710.4284 638.74017 -10599.936 0 363.13012 0.0004930676 0.0004764605 + 79230 -6243.1777 -6250.9619 7.7841603 3712.3524 637.48014 -10600.794 0 373.06064 0.00034983298 0.00032638877 + 79240 -6243.2254 -6251.0397 7.8142692 3713.7707 635.51191 -10600.322 0 374.50363 0.00014387506 0.00011703641 + 79250 -6243.3609 -6250.9298 7.568828 3714.1315 633.20975 -10598.271 0 362.74071 -8.24192e-05 -0.00010582784 + 79260 -6243.5523 -6250.6925 7.1401691 3712.9481 630.88699 -10594.528 0 342.19697 -0.00028580481 -0.00030154562 + 79270 -6243.7337 -6250.4762 6.742429 3709.9953 628.75489 -10589.226 0 323.13503 -0.00043353737 -0.00044353749 + 79280 -6243.8573 -6250.4127 6.555358 3705.4826 626.93575 -10582.831 0 314.16954 -0.0005119513 -0.00052268099 + 79290 -6243.9274 -6250.5345 6.6070487 3700.0907 625.49894 -10576.124 0 316.64685 -0.00052788504 -0.00054509187 + 79300 -6243.9933 -6250.77 6.7767058 3694.8191 624.48849 -10570.078 0 324.77776 -0.00050233049 -0.00052644633 + 79310 -6244.1084 -6251.0113 6.9029135 3690.6985 623.93087 -10565.641 0 330.82635 -0.0004595531 -0.00048540984 + 79320 -6244.2877 -6251.1954 6.9076172 3688.5002 623.83088 -10563.526 0 331.05177 -0.00041701389 -0.00043808211 + 79330 -6244.4961 -6251.3368 6.8406959 3688.5699 624.16988 -10564.077 0 327.84453 -0.00038080818 -0.00039463829 + 79340 -6244.6763 -6251.4906 6.8143122 3690.832 624.91274 -10567.235 0 326.58008 -0.00034809159 -0.00035863073 + 79350 -6244.7956 -6251.6788 6.8831895 3694.9084 626.01766 -10572.605 0 329.88106 -0.00031362078 -0.00032839129 + 79360 -6244.8738 -6251.8478 6.9740266 3700.2436 627.43823 -10579.53 0 334.23449 -0.00027487558 -0.00029905228 + 79370 -6244.9671 -6251.8989 6.9318263 3706.1625 629.11334 -10587.175 0 332.21201 -0.00023174242 -0.00026384334 + 79380 -6245.1202 -6251.7717 6.6514329 3711.8801 630.95265 -10594.604 0 318.77399 -0.00018192619 -0.00021471632 + 79390 -6245.3271 -6251.5106 6.1835524 3716.5544 632.82875 -10600.894 0 296.35052 -0.0001178347 -0.00014382 + 79400 -6245.5329 -6251.2531 5.7201913 3719.4419 634.58115 -10605.276 0 274.14366 -3.01752e-05 -4.7241151e-05 + 79410 -6245.677 -6251.1397 5.4627458 3720.1255 636.02876 -10607.294 0 261.80543 8.2291824e-05 6.9737373e-05 + 79420 -6245.7397 -6251.2168 5.4771814 3718.6876 636.9872 -10606.892 0 262.49726 0.00020400355 0.00018925067 + 79430 -6245.7532 -6251.413 5.6598117 3715.6986 637.29153 -10604.403 0 271.24994 0.00030340718 0.00028315125 + 79440 -6245.7697 -6251.6103 5.8406134 3711.9953 636.82799 -10600.434 0 279.91496 0.00034529348 0.00032172703 + 79450 -6245.8165 -6251.7364 5.9199091 3708.3736 635.57279 -10595.683 0 283.71526 0.00030702378 0.00028500099 + 79460 -6245.8813 -6251.796 5.9146799 3705.3668 633.62345 -10590.786 0 283.46465 0.00018806142 0.00017070476 + 79470 -6245.9329 -6251.8337 5.9008457 3703.1865 631.20132 -10586.222 0 282.80163 8.567593e-06 -4.7154049e-06 + 79480 -6245.9505 -6251.8841 5.9336048 3701.7904 628.61445 -10582.289 0 284.37164 -0.00019920795 -0.00021142836 + 79490 -6245.9372 -6251.952 6.0147627 3700.9982 626.19356 -10579.144 0 288.26118 -0.00040061589 -0.00041452242 + 79500 -6245.9133 -6252.0238 6.1105706 3700.5925 624.22913 -10576.845 0 292.85283 -0.00056560089 -0.00058185525 + 79510 -6245.8988 -6252.0856 6.1867723 3700.3832 622.934 -10575.403 0 296.50484 -0.00067217591 -0.00068939973 + 79520 -6245.9009 -6252.1303 6.2294206 3700.2419 622.43662 -10574.809 0 298.54879 -0.00070731787 -0.0007235668 + 79530 -6245.9121 -6252.1513 6.2392184 3700.1272 622.79019 -10575.069 0 299.01835 -0.00066689512 -0.00068122285 + 79540 -6245.9193 -6252.1311 6.211816 3700.1106 623.97534 -10576.217 0 297.70508 -0.00055586275 -0.00056883019 + 79550 -6245.9138 -6252.0446 6.1308129 3700.3835 625.88545 -10578.313 0 293.82295 -0.00038879124 -0.00040187719 + 79560 -6245.8934 -6251.8785 5.9851875 3701.2196 628.30696 -10581.405 0 286.84377 -0.00018971002 -0.00020444492 + 79570 -6245.8602 -6251.6514 5.7911561 3702.8928 630.92322 -10585.467 0 277.5447 1.00704e-05 -7.3281071e-06 + 79580 -6245.8195 -6251.4115 5.591977 3705.5686 633.36262 -10590.343 0 267.99892 0.00017709592 0.00015691794 + 79590 -6245.7789 -6251.2179 5.4390512 3709.1962 635.28263 -10595.697 0 260.66985 0.00028371817 0.00026178785 + 79600 -6245.7432 -6251.1225 5.3793518 3713.4313 636.45487 -10601.009 0 257.80872 0.00031671486 0.00029479414 + 79610 -6245.7072 -6251.1609 5.4537442 3717.6332 636.81373 -10605.608 0 261.37402 0.00028241418 0.0002617535 + 79620 -6245.657 -6251.3407 5.683669 3720.978 636.45169 -10608.77 0 272.39331 0.00020454777 0.00018481504 + 79630 -6245.5833 -6251.6245 6.0412492 3722.6743 635.56983 -10609.869 0 289.53056 0.00011501621 9.4646227e-05 + 79640 -6245.4922 -6251.9297 6.437488 3722.1996 634.4068 -10608.536 0 308.52055 4.2263012e-05 1.996104e-05 + 79650 -6245.402 -6252.1597 6.7577286 3719.4621 633.17058 -10604.792 0 323.86827 2.6509665e-06 -2.1588597e-05 + 79660 -6245.3278 -6252.2487 6.9208659 3714.8441 631.9916 -10599.084 0 331.68672 -2.9493798e-06 -2.8283934e-05 + 79670 -6245.2728 -6252.1829 6.910082 3709.1346 630.90771 -10592.225 0 331.1699 1.1889257e-05 -1.391496e-05 + 79680 -6245.2332 -6251.9898 6.7566455 3703.3734 629.88251 -10585.246 0 323.81637 2.3711986e-05 -2.417066e-06 + 79690 -6245.2074 -6251.7164 6.5089525 3698.6245 628.84935 -10579.19 0 311.94553 7.0976004e-06 -1.8975643e-05 + 79700 -6245.1966 -6251.4206 6.2240106 3695.7235 627.76522 -10574.909 0 298.28951 -5.5200212e-05 -8.0096709e-05 + 79710 -6245.1961 -6251.1735 5.9773698 3695.0724 626.65646 -10572.902 0 286.4691 -0.00016349013 -0.00018599111 + 79720 -6245.1915 -6251.048 5.8565009 3696.5607 625.64079 -10573.249 0 280.67639 -0.00029830258 -0.00031831012 + 79730 -6245.1664 -6251.0882 5.9217516 3699.6404 624.91606 -10575.645 0 283.80356 -0.00042544314 -0.0004443714 + 79740 -6245.115 -6251.2771 6.1621735 3703.5128 624.71419 -10579.504 0 295.32593 -0.00050663671 -0.00052639707 + 79750 -6245.0477 -6251.5354 6.4877621 3707.35 625.23093 -10584.116 0 310.92996 -0.00051106623 -0.00053252372 + 79760 -6244.9841 -6251.756 6.771956 3710.4903 626.5525 -10588.799 0 324.55013 -0.00042396573 -0.00044627791 + 79770 -6244.9379 -6251.8567 6.9188024 3712.5722 628.6045 -10593.033 0 331.58783 -0.00025084301 -0.00027230134 + 79780 -6244.9075 -6251.8177 6.9101372 3713.5898 631.14192 -10596.549 0 331.17255 -1.7537686e-05 -3.7202734e-05 + 79790 -6244.879 -6251.6808 6.8017454 3713.8589 633.78691 -10599.327 0 325.9778 0.0002336719 0.00021499043 + 79800 -6244.8408 -6251.5156 6.6748594 3713.8903 636.10733 -10601.513 0 319.89672 0.00045229807 0.0004326543 + 79810 -6244.7952 -6251.3775 6.5823139 3714.1933 637.71792 -10603.289 0 315.46141 0.00059200689 0.00057006269 + 79820 -6244.7572 -6251.2856 6.5284028 3715.0608 638.37704 -10604.724 0 312.8777 0.00062445829 0.00060083897 + 79830 -6244.7406 -6251.2297 6.489093 3716.4206 638.0477 -10605.698 0 310.99375 0.00054929353 0.00052631412 + 79840 -6244.7445 -6251.191 6.4464486 3717.8253 636.89841 -10605.915 0 308.94999 0.00039488915 0.00037477815 + 79850 -6244.7513 -6251.1574 6.4060909 3718.6068 635.23996 -10605.004 0 307.01582 0.00020827644 0.00019128063 + 79860 -6244.7387 -6251.1268 6.3880332 3718.1395 633.42096 -10602.687 0 306.15039 3.82177e-05 2.2091241e-05 + 79870 -6244.6958 -6251.1013 6.405524 3716.1033 631.72292 -10598.928 0 306.98865 -8.1003923e-05 -9.9656054e-05 + 79880 -6244.6327 -6251.0856 6.45295 3712.6323 630.29497 -10594.013 0 309.26157 -0.0001383671 -0.00016174278 + 79890 -6244.5759 -6251.0894 6.5135421 3708.2893 629.14982 -10588.528 0 312.16549 -0.00014493998 -0.00017226475 + 79900 -6244.5517 -6251.1349 6.5831716 3703.8876 628.21437 -10583.237 0 315.50252 -0.00012473356 -0.00015241195 + 79910 -6244.5676 -6251.2597 6.6920069 3700.247 627.40576 -10578.912 0 320.71852 -0.00010240463 -0.00012631866 + 79920 -6244.6059 -6251.5021 6.8962352 3697.9921 626.69688 -10576.191 0 330.50628 -9.340943e-05 -0.00011196078 + 79930 -6244.6385 -6251.8648 7.2263524 3697.4601 626.14514 -10575.47 0 346.32735 -0.00010067885 -0.00011622627 + 79940 -6244.6551 -6252.2765 7.6213858 3698.709 625.87666 -10576.862 0 365.25957 -0.0001180804 -0.00013534556 + 79950 -6244.6799 -6252.5917 7.9118408 3701.5626 626.03577 -10580.19 0 379.1798 -0.00013673317 -0.00015916515 + 79960 -6244.7576 -6252.6496 7.8920865 3705.6389 626.72301 -10585.012 0 378.23307 -0.00014892347 -0.00017589608 + 79970 -6244.9163 -6252.3672 7.450963 3710.3652 627.94775 -10590.68 0 357.09196 -0.00014747046 -0.00017476909 + 79980 -6245.1367 -6251.8037 6.6669269 3715.0258 629.61382 -10596.443 0 319.51654 -0.00012343125 -0.00014686002 + 79990 -6245.3606 -6251.1432 5.7826027 3718.8828 631.54129 -10601.567 0 277.13477 -6.7070997e-05 -8.612764e-05 + 80000 -6245.5343 -6250.5984 5.0640439 3721.3568 633.51144 -10605.467 0 242.6974 2.6545693e-05 8.4234201e-06 + 80010 -6245.6482 -6250.3016 4.6533804 3722.1841 635.3115 -10607.797 0 223.0161 0.00015171475 0.00013076825 + 80020 -6245.7362 -6250.2713 4.535046 3721.4563 636.75978 -10608.487 0 217.34485 0.00029170499 0.00026781234 + 80030 -6245.8371 -6250.4665 4.6293724 3719.5292 637.70726 -10607.703 0 221.8655 0.00042445197 0.00040130932 + 80040 -6245.9563 -6250.8603 4.9040017 3716.8906 638.03084 -10605.782 0 235.02728 0.00052896919 0.00051022369 + 80050 -6246.0651 -6251.4492 5.3841224 3714.078 637.63802 -10603.165 0 258.03736 0.00058720173 0.00057254655 + 80060 -6246.1364 -6252.1958 6.0594085 3711.6465 636.4921 -10600.334 0 290.40085 0.00058235498 0.00056758973 + 80070 -6246.1808 -6252.9789 6.7981832 3710.1019 634.64763 -10597.728 0 325.80709 0.00049975458 0.00048066486 + 80080 -6246.2468 -6253.6157 7.3688889 3709.7524 632.27551 -10595.644 0 353.1585 0.00033394923 0.00031018273 + 80090 -6246.3848 -6253.9459 7.5611231 3710.5389 629.65924 -10594.144 0 362.37144 9.8589927e-05 7.4006892e-05 + 80100 -6246.6048 -6253.9128 7.3079485 3711.9741 627.15721 -10593.044 0 350.2379 -0.00016895985 -0.00018956132 + 80110 -6246.8677 -6253.5821 6.7144502 3713.2741 625.13998 -10591.996 0 321.79413 -0.00041398517 -0.00042877783 + 80120 -6247.1136 -6253.0925 5.9788366 3713.6521 623.9201 -10590.665 0 286.5394 -0.00058033489 -0.00059179327 + 80130 -6247.303 -6252.5767 5.2737541 3712.6409 623.69195 -10588.91 0 252.74789 -0.00062851434 -0.00064130709 + 80140 -6247.436 -6252.1101 4.6740243 3710.2975 624.49247 -10586.9 0 224.00547 -0.00054784657 -0.00056514664 + 80150 -6247.5409 -6251.7126 4.1716652 3707.2051 626.18818 -10585.106 0 199.9296 -0.00035842647 -0.00037958373 + 80160 -6247.644 -6251.3946 3.750638 3704.2874 628.49108 -10584.173 0 179.75162 -0.0001037261 -0.00012506091 + 80170 -6247.7469 -6251.1985 3.4515714 3702.5327 631.00525 -10584.736 0 165.41867 0.00016177893 0.00014382138 + 80180 -6247.8268 -6251.1987 3.3719285 3702.7322 633.3002 -10587.231 0 161.60173 0.00038514982 0.00037106207 + 80190 -6247.8544 -6251.4581 3.6036929 3705.296 634.99928 -10591.753 0 172.70918 0.00052493133 0.00051167816 + 80200 -6247.8163 -6251.9738 4.157567 3710.1507 635.86307 -10597.988 0 199.25394 0.00055812122 0.00054142666 + 80210 -6247.7249 -6252.6535 4.9286482 3716.7018 635.8456 -10605.201 0 236.20848 0.00048465741 0.00046231918 + 80220 -6247.6117 -6253.3427 5.7310637 3723.8682 635.10391 -10612.315 0 274.66473 0.00032909132 0.00030280191 + 80230 -6247.5042 -6253.8892 6.3849749 3730.2195 633.95184 -10618.06 0 306.00382 0.0001376163 0.00011168587 + 80240 -6247.4045 -6254.2015 6.7970328 3734.2517 632.76701 -10621.22 0 325.75195 -3.1806798e-05 -5.4057526e-05 + 80250 -6247.2898 -6254.2608 6.9709882 3734.7821 631.88032 -10620.923 0 334.08887 -0.00012607842 -0.00014524184 + 80260 -6247.1381 -6254.0818 6.9436785 3731.3451 631.4847 -10616.912 0 332.78003 -0.00011531829 -0.00013534876 + 80270 -6246.9551 -6253.6726 6.7175849 3724.4138 631.58991 -10609.676 0 321.94436 -4.4619894e-06 -2.8972589e-05 + 80280 -6246.7724 -6253.0389 6.2665549 3715.3232 632.0306 -10600.393 0 300.32847 0.00016822682 0.00013938877 + 80290 -6246.619 -6252.2293 5.6102912 3705.9177 632.51935 -10590.666 0 268.87664 0.00034493328 0.00031563305 + 80300 -6246.4931 -6251.3692 4.8760322 3698.0794 632.72975 -10582.178 0 233.68682 0.00046717596 0.00044162686 + 80310 -6246.3604 -6250.6387 4.2783781 3693.3128 632.39087 -10576.342 0 205.04388 0.00049183433 0.00047105724 + 80320 -6246.1744 -6250.2034 4.0290636 3692.4783 631.37188 -10574.054 0 193.09534 0.00040054814 0.0003815901 + 80330 -6245.8988 -6250.1447 4.2459068 3695.6741 629.73721 -10575.556 0 203.48768 0.00020319355 0.00018141679 + 80340 -6245.5175 -6250.4337 4.9162635 3702.2297 627.75938 -10580.423 0 235.61493 -6.2676729e-05 -9.0234392e-05 + 80350 -6245.0348 -6250.9548 5.9199566 3710.7975 625.88378 -10587.636 0 283.71753 -0.00033621875 -0.0003688231 + 80360 -6244.4728 -6251.5559 7.0830672 3719.5641 624.64391 -10595.764 0 339.46032 -0.00054308844 -0.00057690608 + 80370 -6243.8655 -6252.0951 8.2296058 3726.6041 624.53247 -10603.232 0 394.40889 -0.00061189931 -0.00064274516 + 80380 -6243.2532 -6252.4622 9.2090603 3730.3524 625.85104 -10608.666 0 441.34984 -0.00049551057 -0.00052174443 + 80390 -6242.6798 -6252.5797 9.8998834 3730.0747 628.58282 -10611.237 0 474.45796 -0.00019067484 -0.00021405373 + 80400 -6242.1908 -6252.4047 10.21394 3726.1503 632.34146 -10610.896 0 489.50932 0.00025310289 0.00022906244 + 80410 -6241.8226 -6251.9455 10.122921 3720.0066 636.42968 -10608.382 0 485.14719 0.00074184755 0.00071426472 + 80420 -6241.5886 -6251.2764 9.6878415 3713.689 640.00273 -10604.968 0 464.29572 0.0011613702 0.0011291702 + 80430 -6241.4758 -6250.5241 9.0483312 3709.2129 642.29221 -10602.029 0 433.6468 0.0014092324 0.0013728934 + 80440 -6241.4589 -6249.8201 8.3612754 3707.9363 642.82008 -10600.576 0 400.71923 0.0014238362 0.0013849984 + 80450 -6241.5174 -6249.2548 7.7373641 3710.1542 641.52981 -10600.939 0 370.8179 0.0012024119 0.0011639979 + 80460 -6241.6368 -6248.8738 7.2369343 3715.0187 638.7879 -10602.68 0 346.8345 0.00080344876 0.00076919145 + 80470 -6241.7933 -6248.7145 6.9211965 3720.7989 635.25906 -10604.773 0 331.70257 0.00033198355 0.00030423653 + 80480 -6241.9494 -6248.8285 6.8791004 3725.4277 631.70872 -10605.965 0 329.68509 -9.0413618e-05 -0.0001132263 + 80490 -6242.0767 -6249.2485 7.1718697 3727.1868 628.80489 -10605.24 0 343.71624 -0.00036286276 -0.00038612205 + 80500 -6242.1867 -6249.9317 7.7449492 3725.2835 626.97311 -10602.188 0 371.18142 -0.00043565477 -0.00046488337 + 80510 -6242.3368 -6250.7468 8.4100381 3720.0876 626.32887 -10597.163 0 403.05621 -0.00032133223 -0.00035795896 + 80520 -6242.5966 -6251.5265 8.9298821 3712.9565 626.69402 -10591.177 0 427.97005 -8.3071618e-05 -0.00012344618 + 80530 -6243.0037 -6252.1385 9.1348106 3705.7634 627.6915 -10585.593 0 437.79138 0.00019212561 0.00015376079 + 80540 -6243.5423 -6252.5207 8.9784351 3700.3367 628.89059 -10581.748 0 430.29699 0.00042276849 0.0003902314 + 80550 -6244.1568 -6252.6694 8.5125975 3697.993 629.95064 -10580.613 0 407.97143 0.00055448488 0.00052777096 + 80560 -6244.7804 -6252.6142 7.8338223 3699.2621 630.70869 -10582.585 0 375.44072 0.00056963982 0.00054584533 + 80570 -6245.3573 -6252.4036 7.0463542 3703.8401 631.18491 -10587.429 0 337.70083 0.00048520217 0.00046077292 + 80580 -6245.8563 -6252.0971 6.2407973 3710.748 631.5196 -10594.365 0 299.09403 0.00034156713 0.00031447649 + 80590 -6246.274 -6251.7586 5.4845828 3718.6167 631.88163 -10602.257 0 262.85198 0.00018750983 0.00015855204 + 80600 -6246.6223 -6251.4631 4.8407725 3725.9839 632.38947 -10609.836 0 231.99698 6.746233e-05 3.9707851e-05 + 80610 -6246.9086 -6251.3103 4.4017213 3731.5464 633.07194 -10615.929 0 210.95518 1.3998155e-05 -9.7996572e-06 + 80620 -6247.126 -6251.4062 4.280213 3734.3789 633.87433 -10619.659 0 205.13182 4.3662989e-05 2.3552889e-05 + 80630 -6247.2664 -6251.8019 4.5355249 3734.122 634.69323 -10620.617 0 217.3678 0.00015384057 0.00013400831 + 80640 -6247.3407 -6252.4358 5.0951496 3731.0734 635.41239 -10618.922 0 244.18816 0.00032171503 0.00029848343 + 80650 -6247.3847 -6253.1381 5.7534097 3726.1092 635.92001 -10615.167 0 275.73568 0.00050814762 0.00048091601 + 80660 -6247.4415 -6253.7038 6.2623238 3720.4391 636.10883 -10610.252 0 300.1257 0.00066709889 0.00063920589 + 80670 -6247.5324 -6253.986 6.4536859 3715.2857 635.8761 -10605.148 0 309.29684 0.00075765431 0.00073400806 + 80680 -6247.6412 -6253.9536 6.3123407 3711.6061 635.13983 -10600.7 0 302.52279 0.00075408417 0.00073735612 + 80690 -6247.7248 -6253.6846 5.959761 3709.928 633.87399 -10597.487 0 285.62519 0.00065066914 0.00063881609 + 80700 -6247.7437 -6253.3075 5.5637476 3710.3172 632.14963 -10595.774 0 266.646 0.00046095753 0.00044797531 + 80710 -6247.6932 -6252.9255 5.2323137 3712.4358 630.15986 -10595.521 0 250.76183 0.00021376075 0.00019356635 + 80720 -6247.6105 -6252.5739 4.963361 3715.6326 628.2091 -10596.416 0 237.87211 -5.0972642e-05 -7.9919988e-05 + 80730 -6247.5509 -6252.2422 4.6913829 3719.0343 626.66047 -10597.937 0 224.83739 -0.00028504622 -0.00031795734 + 80740 -6247.5437 -6251.94 4.3963199 3721.6628 625.85459 -10599.457 0 210.69632 -0.00043588309 -0.00046471598 + 80750 -6247.5657 -6251.7376 4.1719042 3722.6441 626.02687 -10600.409 0 199.94106 -0.00045564881 -0.00047510616 + 80760 -6247.5558 -6251.7313 4.1754574 3721.5132 627.24642 -10600.491 0 200.11135 -0.00031694727 -0.00032850302 + 80770 -6247.4607 -6251.9576 4.4968668 3718.4976 629.38416 -10599.839 0 215.51509 -2.9508436e-05 -4.0072673e-05 + 80780 -6247.2734 -6252.3436 5.0702472 3714.5897 632.10879 -10599.042 0 242.9947 0.00035235741 0.00033576528 + 80790 -6247.0344 -6252.7443 5.709884 3711.3021 634.91932 -10598.966 0 273.64968 0.00073914542 0.00071414729 + 80800 -6246.8 -6253.0324 6.232313 3710.1675 637.2324 -10600.432 0 298.68741 0.00103145 0.0010011149 + 80810 -6246.6064 -6253.1645 6.5580631 3712.1785 638.5283 -10603.871 0 314.29918 0.0011517386 0.0011217278 + 80820 -6246.4535 -6253.1793 6.7257259 3717.3845 638.51808 -10609.082 0 322.33453 0.0010700688 0.0010447352 + 80830 -6246.314 -6253.1459 6.8318595 3724.7882 637.26166 -10615.196 0 327.42104 0.00081431048 0.00079411847 + 80840 -6246.1557 -6253.102 6.9462415 3732.5842 635.17484 -10620.861 0 332.90287 0.00046159218 0.00044302515 + 80850 -6245.9678 -6253.0138 7.0460058 3738.6697 632.90907 -10624.593 0 337.68413 0.00011409187 9.2196689e-05 + 80860 -6245.773 -6252.7857 7.0126611 3741.2512 631.14183 -10625.179 0 336.08607 -0.00013207307 -0.00015989123 + 80870 -6245.6111 -6252.3317 6.7205976 3739.3388 630.35283 -10622.023 0 322.08874 -0.00021355513 -0.00024549413 + 80880 -6245.5025 -6251.6685 6.1660514 3732.9965 630.67185 -10615.337 0 295.51178 -0.0001142061 -0.00014584319 + 80890 -6245.4276 -6250.9456 5.5179311 3723.34 631.85573 -10606.141 0 264.45022 0.00013378087 0.00010552979 + 80900 -6245.3429 -6250.3801 5.0371541 3712.32 633.39239 -10596.092 0 241.40869 0.00045927046 0.00043370168 + 80910 -6245.2093 -6250.1497 4.9403362 3702.3221 634.67719 -10587.149 0 236.76863 0.00076974953 0.00074311919 + 80920 -6245.0094 -6250.3184 5.3089204 3695.6362 635.19559 -10581.15 0 254.43325 0.00097450661 0.00094277511 + 80930 -6244.7499 -6250.8229 6.0729858 3693.9063 634.66634 -10579.396 0 291.05155 0.0010088758 0.00097049964 + 80940 -6244.4561 -6251.5081 7.0519582 3697.6895 633.11908 -10582.317 0 337.9694 0.00085369771 0.00081099766 + 80950 -6244.1589 -6252.1922 8.0333054 3706.24 630.89312 -10589.325 0 385.00107 0.0005443436 0.00050239756 + 80960 -6243.8751 -6252.7324 8.8572916 3717.6098 628.55809 -10598.9 0 424.49111 0.00016483214 0.00012796609 + 80970 -6243.5998 -6253.0513 9.4514655 3729.1047 626.77722 -10608.933 0 452.96726 -0.00017419674 -0.00020603521 + 80980 -6243.3252 -6253.1101 9.7848521 3738.0187 626.14567 -10617.274 0 468.94502 -0.00036868094 -0.00040024014 + 80990 -6243.0718 -6252.8703 9.7985493 3742.4099 627.0336 -10622.314 0 469.60146 -0.0003539165 -0.00039062416 + 81000 -6242.8899 -6252.3067 9.4167843 3741.6172 629.46064 -10623.385 0 451.30514 -0.00012371604 -0.00016681041 + 81010 -6242.8214 -6251.4754 8.654067 3736.335 633.04179 -10620.852 0 414.75145 0.00027064249 0.00022501705 + 81020 -6242.861 -6250.555 7.6940625 3728.2971 637.05123 -10615.903 0 368.74265 0.00073771168 0.00069488554 + 81030 -6242.9632 -6249.79 6.8267452 3719.7548 640.61054 -10610.155 0 327.17593 0.0011702528 0.0011330229 + 81040 -6243.0807 -6249.3746 6.2939584 3712.9049 642.93661 -10605.216 0 301.6418 0.0014702191 0.0014379055 + 81050 -6243.1912 -6249.3733 6.1820616 3709.3667 643.55169 -10602.292 0 296.27908 0.0015711626 0.0015411844 + 81060 -6243.2993 -6249.7213 6.4220295 3709.8083 642.38802 -10601.918 0 307.77969 0.0014540856 0.0014237387 + 81070 -6243.4259 -6250.2788 6.8528912 3713.8223 639.77226 -10603.873 0 328.429 0.0011515568 0.0011190123 + 81080 -6243.6026 -6250.8904 7.2877529 3720.0885 636.31236 -10607.291 0 349.27001 0.00073768445 0.00070270136 + 81090 -6243.8644 -6251.4319 7.5674864 3726.7613 632.72848 -10610.922 0 362.67641 0.00030742773 0.00027189467 + 81100 -6244.2305 -6251.847 7.6164566 3731.958 629.67718 -10613.482 0 365.02333 -4.7030967e-05 -7.9880104e-05 + 81110 -6244.6848 -6252.1647 7.4799646 3734.2294 627.61776 -10614.012 0 358.48188 -0.00025636156 -0.00028459942 + 81120 -6245.1822 -6252.4651 7.2829572 3732.934 626.75202 -10612.151 0 349.04017 -0.00028822467 -0.00031346521 + 81130 -6245.6844 -6252.7986 7.1141605 3728.4292 627.03505 -10608.263 0 340.95049 -0.00015379374 -0.00018005572 + 81140 -6246.1841 -6253.1317 6.9475906 3721.976 628.22746 -10603.335 0 332.96752 9.6748662e-05 6.6755424e-05 + 81150 -6246.6904 -6253.3731 6.6827026 3715.3485 629.96451 -10598.686 0 320.2726 0.00039032543 0.00035757669 + 81160 -6247.1982 -6253.4456 6.2473915 3710.3043 631.8352 -10595.585 0 299.41005 0.00065267821 0.00062077231 + 81170 -6247.6774 -6253.3377 5.6602806 3708.1249 633.46523 -10594.928 0 271.27241 0.00082702548 0.00079921259 + 81180 -6248.0873 -6253.1074 5.0200957 3709.3489 634.58655 -10597.043 0 240.59115 0.00088441311 0.00086128432 + 81190 -6248.3976 -6252.8532 4.4556063 3713.7207 635.07743 -10601.651 0 213.53766 0.00082539825 0.00080446903 + 81200 -6248.6024 -6252.6739 4.0714734 3720.3162 634.96966 -10607.96 0 195.12785 0.00067543703 0.00065254246 + 81210 -6248.7235 -6252.63 3.9064397 3727.7864 634.42854 -10614.845 0 187.21851 0.00047686037 0.00044870444 + 81220 -6248.8031 -6252.7233 3.920255 3734.6446 633.7102 -10621.078 0 187.88062 0.00027986272 0.00024649368 + 81230 -6248.8844 -6252.9122 4.0278623 3739.5325 633.09888 -10625.544 0 193.03776 0.000133897 9.927805e-05 + 81240 -6248.9859 -6253.1538 4.1678952 3741.4401 632.83229 -10627.426 0 199.74892 7.9230077e-05 4.8776367e-05 + 81250 -6249.0881 -6253.4333 4.3451494 3739.9001 633.03361 -10626.367 0 208.24394 0.00013755996 0.0001140833 + 81260 -6249.1507 -6253.7486 4.5978897 3735.1538 633.6714 -10622.574 0 220.35667 0.00030275582 0.00028425799 + 81270 -6249.1455 -6254.0691 4.9235373 3728.2052 634.5599 -10616.834 0 235.96354 0.00053671895 0.00051798702 + 81280 -6249.0785 -6254.3221 5.2436474 3720.6535 635.40145 -10610.377 0 251.305 0.00077571703 0.00075214197 + 81290 -6248.9832 -6254.4199 5.4366769 3714.2973 635.86501 -10604.582 0 260.55606 0.00094734723 0.00091795158 + 81300 -6248.8995 -6254.3009 5.4014061 3710.6345 635.68481 -10600.62 0 258.86569 0.00099254331 0.0009605842 + 81310 -6248.8504 -6253.9633 5.1129162 3710.4307 634.74997 -10599.144 0 245.03963 0.00088514101 0.0008562901 + 81320 -6248.8266 -6253.482 4.6553541 3713.4994 633.15389 -10600.135 0 223.11069 0.00064255252 0.0006214332 + 81330 -6248.7861 -6252.999 4.2129596 3718.7701 631.18726 -10602.956 0 201.90866 0.00032338002 0.00031002405 + 81340 -6248.6725 -6252.6704 3.997952 3724.6372 629.28017 -10606.588 0 191.60429 1.1575708e-05 2.0281217e-07 + 81350 -6248.4499 -6252.5792 4.1293318 3729.473 627.91055 -10609.963 0 197.90075 -0.00020819811 -0.00022617839 + 81360 -6248.1334 -6252.671 4.5376173 3732.113 627.4948 -10612.279 0 217.46808 -0.00027521418 -0.00030489682 + 81370 -6247.7865 -6252.7798 4.9933014 3732.1229 628.27461 -10613.177 0 239.30702 -0.00016808205 -0.0002060307 + 81380 -6247.4741 -6252.7532 5.2790655 3729.7866 630.22284 -10612.763 0 253.00244 9.3613693e-05 5.7930848e-05 + 81390 -6247.1999 -6252.5801 5.3801773 3725.9213 633.00684 -10611.508 0 257.84828 0.00045813461 0.000434122 + 81400 -6246.8908 -6252.4018 5.5109325 3721.6846 636.04403 -10610.13 0 264.11481 0.00085310803 0.00084050006 + 81410 -6246.4534 -6252.3842 5.93074 3718.4178 638.6485 -10609.45 0 284.23434 0.0011956813 0.0011834709 + 81420 -6245.8616 -6252.5622 6.7005556 3717.423 640.22462 -10610.21 0 321.12822 0.0014046823 0.0013791952 + 81430 -6245.2037 -6252.7885 7.5847506 3719.5747 640.44261 -10612.806 0 363.5038 0.0014200129 0.0013760775 + 81440 -6244.6397 -6252.8302 8.190441 3724.8499 639.33698 -10617.017 0 392.53189 0.0012274215 0.0011736264 + 81450 -6244.2871 -6252.5444 8.2573577 3732.0437 637.28988 -10621.878 0 395.73891 0.00087611899 0.00082904672 + 81460 -6244.1256 -6251.9997 7.874152 3738.956 634.90154 -10625.857 0 377.37355 0.00047276083 0.00044374605 + 81470 -6244.0154 -6251.4383 7.4228993 3743.1125 632.79925 -10627.35 0 355.74698 0.00014599008 0.00013103398 + 81480 -6243.8188 -6251.0923 7.2734587 3742.7485 631.46063 -10625.301 0 348.58495 -4.2583178e-06 -2.2272538e-05 + 81490 -6243.5198 -6251.0026 7.4828481 3737.5627 631.10485 -10619.67 0 358.62007 5.4097547e-05 1.6383522e-05 + 81500 -6243.236 -6251.0046 7.7686231 3728.8315 631.66361 -10611.5 0 372.31601 0.00027867494 0.00021895631 + 81510 -6243.1144 -6250.8993 7.7849045 3718.846 632.82136 -10602.567 0 373.0963 0.0005795789 0.00051213238 + 81520 -6243.2014 -6250.6504 7.4490432 3710.0306 634.11294 -10594.794 0 356.99995 0.00086104659 0.00080551382 + 81530 -6243.4057 -6250.4306 7.0248563 3704.2297 635.06221 -10589.722 0 336.67053 0.0010535254 0.001019988 + 81540 -6243.5755 -6250.4826 6.907102 3702.4202 635.32726 -10588.23 0 331.02708 0.0011241197 0.0011064166 + 81550 -6243.6142 -6250.9232 7.3090003 3704.7697 634.8054 -10590.498 0 350.2883 0.0010705095 0.001051836 + 81560 -6243.5457 -6251.6384 8.0926741 3710.7941 633.66165 -10596.094 0 387.84635 0.00091097646 0.00087644665 + 81570 -6243.4955 -6252.3386 8.8430799 3719.4508 632.27204 -10604.061 0 423.81001 0.0006791568 0.00062617498 + 81580 -6243.599 -6252.7275 9.1285294 3729.1858 631.10182 -10613.015 0 437.49035 0.00042382581 0.00036335581 + 81590 -6243.8992 -6252.6792 8.780031 3738.0799 630.55997 -10621.319 0 420.78835 0.00020728702 0.00015536487 + 81600 -6244.3128 -6252.3056 7.9927231 3744.2141 630.88033 -10627.4 0 383.05614 9.4526599e-05 6.0456298e-05 + 81610 -6244.6962 -6251.8687 7.1725246 3746.217 632.06637 -10630.152 0 343.74762 0.00013198882 0.0001122252 + 81620 -6244.9493 -6251.6053 6.6559741 3743.7658 633.90538 -10629.276 0 318.99162 0.00032545031 0.00030730566 + 81630 -6245.0739 -6251.5923 6.5183648 3737.7675 636.03063 -10625.39 0 312.39662 0.00063075655 0.0006022493 + 81640 -6245.1529 -6251.7396 6.5867477 3730.0857 638.00404 -10619.829 0 315.67391 0.00096504269 0.00092323649 + 81650 -6245.2797 -6251.8969 6.617229 3722.9087 639.40193 -10614.208 0 317.13474 0.0012348603 0.0011869321 + 81660 -6245.4894 -6251.9828 6.4934148 3718.032 639.89646 -10609.911 0 311.20087 0.0013682548 0.0013250949 + 81670 -6245.7399 -6252.0368 6.2969197 3716.3643 639.32642 -10607.728 0 301.78373 0.0013356552 0.0013033196 + 81680 -6245.9535 -6252.1597 6.2061073 3717.8248 637.74463 -10607.729 0 297.43148 0.0011520295 0.0011277156 + 81690 -6246.0817 -6252.4042 6.32245 3721.57 635.42516 -10609.399 0 303.00728 0.0008647003 0.00083987645 + 81700 -6246.1396 -6252.7153 6.5756792 3726.3507 632.81896 -10611.885 0 315.14344 0.00053736334 0.00050485308 + 81710 -6246.1876 -6252.9673 6.7797119 3730.8268 630.45902 -10614.253 0 324.92184 0.00023747387 0.00019657388 + 81720 -6246.2811 -6253.0585 6.777353 3733.805 628.8343 -10615.698 0 324.80878 2.6623969e-05 -1.7285737e-05 + 81730 -6246.4326 -6252.9754 6.5428391 3734.4546 628.2673 -10615.697 0 313.56956 -4.9973372e-05 -8.9873915e-05 + 81740 -6246.6122 -6252.7867 6.1745127 3732.5155 628.83422 -10614.136 0 295.91729 2.503092e-05 -6.6367979e-06 + 81750 -6246.7727 -6252.5952 5.8224288 3728.4199 630.35339 -10611.369 0 279.04346 0.00023411309 0.00021011223 + 81760 -6246.8733 -6252.491 5.6176584 3723.2423 632.44424 -10608.178 0 269.22971 0.00052732919 0.00050607899 + 81770 -6246.8975 -6252.514 5.6165174 3718.4646 634.6358 -10605.614 0 269.17503 0.00083389401 0.00080860419 + 81780 -6246.8656 -6252.6285 5.7628598 3715.6051 636.48845 -10604.722 0 276.18858 0.0010793406 0.0010453821 + 81790 -6246.83 -6252.7377 5.9076686 3715.7782 637.69078 -10606.207 0 283.12863 0.0012049781 0.0011634186 + 81800 -6246.8431 -6252.7512 5.9081587 3719.3008 638.1098 -10610.162 0 283.15212 0.0011856153 0.0011431808 + 81810 -6246.9165 -6252.6619 5.7453932 3725.507 637.79354 -10615.962 0 275.35148 0.001038813 0.0010033731 + 81820 -6247.0091 -6252.5635 5.5544287 3732.9033 636.93847 -10622.405 0 266.19939 0.0008192791 0.00079395883 + 81830 -6247.0563 -6252.5817 5.5253866 3739.6383 635.8338 -10628.054 0 264.80753 0.00059864863 0.00057934966 + 81840 -6247.0208 -6252.7712 5.7504159 3744.0877 634.79015 -10631.649 0 275.59219 0.00043960753 0.00041806105 + 81850 -6246.9208 -6253.0635 6.1426312 3745.3033 634.06177 -10632.429 0 294.38936 0.00037670754 0.00034657479 + 81860 -6246.817 -6253.3061 6.48917 3743.1776 633.78163 -10630.265 0 310.99744 0.00041133938 0.00037262627 + 81870 -6246.7694 -6253.36 6.5905946 3738.3388 633.93371 -10625.633 0 315.85827 0.00051949573 0.00047828298 + 81880 -6246.7964 -6253.1821 6.3857757 3731.8934 634.37208 -10619.448 0 306.0422 0.0006649217 0.00062894357 + 81890 -6246.8625 -6252.8485 5.9859947 3725.1367 634.87345 -10612.859 0 286.88245 0.0008100365 0.00078321301 + 81900 -6246.904 -6252.504 5.600019 3719.318 635.20085 -10607.023 0 268.38433 0.00092118517 0.00090084319 + 81910 -6246.8749 -6252.2725 5.3975953 3715.4801 635.1643 -10602.917 0 258.68305 0.00097025791 0.00094919033 + 81920 -6246.7794 -6252.1888 5.4094692 3714.3213 634.67077 -10601.181 0 259.25211 0.00093777057 0.00090975872 + 81930 -6246.6647 -6252.208 5.5433099 3716.0336 633.75503 -10601.997 0 265.66651 0.00082017148 0.00078455167 + 81940 -6246.5799 -6252.2755 5.6956336 3720.1633 632.58392 -10605.023 0 272.96672 0.00063787176 0.00059935275 + 81950 -6246.5363 -6252.3858 5.8495102 3725.6337 631.4315 -10609.451 0 280.34135 0.00043636354 0.00040053117 + 81960 -6246.5052 -6252.57 6.0647432 3731.0161 630.62663 -10614.213 0 290.65652 0.00027550683 0.00024428287 + 81970 -6246.4517 -6252.8312 6.3794139 3734.9749 630.47542 -10618.282 0 305.73731 0.00020987578 0.00018081379 + 81980 -6246.3685 -6253.1012 6.7327591 3736.6847 631.16755 -10620.954 0 322.67159 0.00026934755 0.00023860772 + 81990 -6246.2794 -6253.2682 6.9888066 3736.0399 632.69286 -10622.001 0 334.94283 0.00044862235 0.00041428066 + 82000 -6246.2168 -6253.2453 7.028496 3733.6195 634.80822 -10621.673 0 336.84497 0.00070851159 0.00067162442 + 82010 -6246.1985 -6253.0226 6.8241547 3730.4678 637.08116 -10620.572 0 327.05178 0.0009867805 0.00095029203 + 82020 -6246.2179 -6252.6736 6.4556915 3727.7683 638.99967 -10619.442 0 309.39296 0.00121482 0.0011815228 + 82030 -6246.2483 -6252.326 6.0776664 3726.4886 640.10905 -10618.924 0 291.27588 0.0013358743 0.0013063889 + 82040 -6246.2565 -6252.1048 5.8482726 3727.0999 640.13516 -10619.34 0 280.28204 0.001319706 0.0012916611 + 82050 -6246.2263 -6252.0656 5.8392201 3729.4581 639.06462 -10620.588 0 279.84819 0.0011696636 0.001139282 + 82060 -6246.1745 -6252.159 5.9844557 3732.8571 637.15914 -10622.175 0 286.8087 0.00092155453 0.00088703469 + 82070 -6246.1396 -6252.2683 6.1287522 3736.2053 634.8898 -10623.363 0 293.72419 0.00063617063 0.00059983545 + 82080 -6246.1461 -6252.3022 6.1561066 3738.288 632.80295 -10623.393 0 295.03517 0.00038652869 0.00035309689 + 82090 -6246.1786 -6252.2637 6.0850456 3738.1101 631.36213 -10621.736 0 291.62953 0.00023965969 0.00021184222 + 82100 -6246.1956 -6252.2328 6.0372034 3735.2683 630.8225 -10618.324 0 289.33666 0.00023545526 0.00021125765 + 82110 -6246.17 -6252.2859 6.1159018 3730.2013 631.17442 -10613.662 0 293.10833 0.00037057504 0.00034509355 + 82120 -6246.1143 -6252.4345 6.3201888 3724.1506 632.16512 -10608.75 0 302.89891 0.00059695711 0.00056676927 + 82130 -6246.0676 -6252.6335 6.5659843 3718.7942 633.38926 -10604.817 0 314.67881 0.0008381805 0.00080404732 + 82140 -6246.0604 -6252.8308 6.7704075 3715.6964 634.42561 -10602.953 0 324.47592 0.0010171655 0.0009828697 + 82150 -6246.093 -6253.0018 6.9088156 3715.808 634.97907 -10603.789 0 331.10921 0.0010829038 0.0010517745 + 82160 -6246.1415 -6253.143 7.0014692 3719.1942 634.97641 -10607.314 0 335.54969 0.0010254989 0.00099780202 + 82170 -6246.1814 -6253.2401 7.058626 3725.0522 634.57837 -10612.871 0 338.28897 0.0008755604 0.00084864205 + 82180 -6246.208 -6253.2495 7.041489 3731.9716 634.10706 -10619.328 0 337.46766 0.00069092013 0.00066162109 + 82190 -6246.2374 -6253.113 6.8755748 3738.3325 633.92063 -10625.366 0 329.51612 0.00053718086 0.00050450064 + 82200 -6246.2896 -6252.8032 6.513633 3742.7197 634.28069 -10629.804 0 312.16984 0.00046855024 0.00043441014 + 82210 -6246.3649 -6252.3697 6.0047847 3744.2511 635.25398 -10631.875 0 287.78298 0.0005132642 0.00048057691 + 82220 -6246.4377 -6251.9425 5.5048772 3742.7695 636.67874 -10631.391 0 263.82461 0.00066560813 0.00063525074 + 82230 -6246.4749 -6251.6735 5.1985804 3738.8759 638.20692 -10628.756 0 249.14514 0.00088584861 0.00085551941 + 82240 -6246.4657 -6251.6507 5.1849827 3733.7779 639.4078 -10624.836 0 248.49346 0.0011097045 0.0010760878 + 82250 -6246.4326 -6251.8538 5.4211866 3728.9469 639.89774 -10620.698 0 259.81368 0.001267343 0.001229697 + 82260 -6246.4128 -6252.1841 5.7713515 3725.6558 639.45585 -10617.296 0 276.59555 0.0013071099 0.0012687014 + 82270 -6246.4243 -6252.5402 6.1158838 3724.5704 638.09205 -10615.203 0 293.10747 0.0012143721 0.0011799659 + 82280 -6246.4483 -6252.8681 6.4197595 3725.5816 636.04887 -10614.499 0 307.67089 0.0010158071 0.00098729014 + 82290 -6246.4487 -6253.1475 6.6987894 3727.9536 633.73746 -10614.839 0 321.04357 0.00076660168 0.00074104304 + 82300 -6246.4107 -6253.3459 6.9352374 3730.6759 631.62526 -10615.647 0 332.37549 0.00052841722 0.00050060231 + 82310 -6246.358 -6253.4109 7.0529126 3732.8129 630.10797 -10616.332 0 338.01514 0.00035062332 0.00031747474 + 82320 -6246.3313 -6253.3135 6.9822344 3733.7193 629.41064 -10616.444 0 334.62785 0.00026184477 0.00022456007 + 82330 -6246.3553 -6253.0892 6.7339548 3733.1286 629.55692 -10615.775 0 322.7289 0.00027012001 0.00023275521 + 82340 -6246.4248 -6252.8279 6.4030994 3731.1665 630.41262 -10614.407 0 306.87245 0.00036667173 0.00033313649 + 82350 -6246.5135 -6252.6252 6.1116233 3728.312 631.76771 -10612.705 0 292.90328 0.00053028646 0.00050207044 + 82360 -6246.5912 -6252.536 5.9447677 3725.3037 633.40516 -10611.245 0 284.90662 0.00073137363 0.00070695659 + 82370 -6246.6387 -6252.5543 5.9156203 3723.0015 635.12564 -10610.681 0 283.50972 0.00093535684 0.00091126821 + 82380 -6246.6577 -6252.6221 5.9643433 3722.2164 636.73466 -10611.573 0 285.8448 0.0011059014 0.001078905 + 82390 -6246.6695 -6252.662 5.992469 3723.5163 638.02698 -10614.205 0 287.19274 0.0012097104 0.0011789318 + 82400 -6246.6991 -6252.6248 5.9257396 3727.0305 638.80438 -10618.46 0 283.99469 0.0012241363 0.0011915168 + 82410 -6246.7539 -6252.5255 5.7716276 3732.3163 638.93522 -10623.777 0 276.60878 0.0011457671 0.0011141844 + 82420 -6246.8169 -6252.436 5.6191183 3738.3802 638.42639 -10629.243 0 269.29968 0.00099508425 0.00096567735 + 82430 -6246.8629 -6252.4308 5.5678742 3743.894 637.45623 -10633.781 0 266.84377 0.00081308399 0.00078439048 + 82440 -6246.883 -6252.5307 5.6477484 3747.5358 636.33141 -10636.398 0 270.67179 0.00065025845 0.00061995885 + 82450 -6246.8906 -6252.6939 5.8033193 3748.3303 635.37698 -10636.401 0 278.12762 0.00055213579 0.00051947158 + 82460 -6246.9075 -6252.8557 5.9481671 3745.8969 634.81545 -10633.568 0 285.06954 0.00054616011 0.00051267363 + 82470 -6246.944 -6252.9737 6.0296647 3740.5665 634.6973 -10628.237 0 288.97536 0.00063359207 0.00060177538 + 82480 -6246.9913 -6253.0459 6.0545284 3733.3469 634.90696 -10621.3 0 290.16697 0.00078865347 0.00075982161 + 82490 -6247.0274 -6253.0989 6.071537 3725.7291 635.22219 -10614.05 0 290.98212 0.00096496288 0.00093783935 + 82500 -6247.0319 -6253.1601 6.128216 3719.3659 635.38999 -10607.916 0 293.6985 0.0011069596 0.0010779677 + 82510 -6247.006 -6253.225 6.2190502 3715.695 635.19862 -10604.119 0 298.05178 0.0011634255 0.001129114 + 82520 -6246.9816 -6253.2442 6.2625803 3715.5822 634.54055 -10603.367 0 300.13799 0.0011016246 0.0010621851 + 82530 -6247.0038 -6253.1599 6.1561046 3719.0472 633.45974 -10605.667 0 295.03507 0.00092084517 0.00088161459 + 82540 -6247.0878 -6252.9815 5.8937105 3725.1622 632.16717 -10610.311 0 282.45968 0.0006606947 0.00062885553 + 82550 -6247.1907 -6252.8212 5.6305498 3732.2403 631.01088 -10616.072 0 269.84754 0.00039598954 0.00037411766 + 82560 -6247.2388 -6252.8213 5.5825137 3738.3462 630.39937 -10621.567 0 267.54538 0.00021395934 0.00019661591 + 82570 -6247.1948 -6253.0149 5.8201275 3741.9525 630.68845 -10625.656 0 278.93317 0.00018145613 0.00015927803 + 82580 -6247.0976 -6253.2621 6.1644795 3742.4223 632.05298 -10627.737 0 295.43645 0.0003191896 0.00028733883 + 82590 -6247.0313 -6253.3464 6.3150181 3740.0974 634.38499 -10627.829 0 302.6511 0.00059633176 0.00055912912 + 82600 -6247.0472 -6253.1504 6.1032052 3736.0373 637.2727 -10626.46 0 292.49984 0.00094514546 0.0009122422 + 82610 -6247.1155 -6252.7532 5.6377123 3731.6221 640.09193 -10624.467 0 270.19081 0.001284065 0.0012617381 + 82620 -6247.1517 -6252.3686 5.2168944 3728.2013 642.18473 -10622.755 0 250.02285 0.0015373687 0.0015228573 + 82630 -6247.0877 -6252.1843 5.096608 3726.8335 643.05374 -10622.072 0 244.25805 0.0016477466 0.0016314253 + 82640 -6246.9261 -6252.2332 5.3070737 3728.0761 642.50024 -10622.809 0 254.34475 0.0015853659 0.0015588124 + 82650 -6246.7367 -6252.3923 5.6555149 3731.7965 640.66624 -10624.855 0 271.04401 0.001356897 0.0013202248 + 82660 -6246.5981 -6252.5073 5.9091818 3737.0698 637.97822 -10627.555 0 283.20115 0.0010116867 0.00097383748 + 82670 -6246.5259 -6252.5384 6.0125026 3742.295 635.01975 -10629.853 0 288.15286 0.00063663179 0.00060770073 + 82680 -6246.4509 -6252.5942 6.1432474 3745.6258 632.38041 -10630.6 0 294.41888 0.00033355565 0.00031534511 + 82690 -6246.2762 -6252.8122 6.535992 3745.6273 630.52744 -10628.967 0 313.24141 0.00018420414 0.0001677293 + 82700 -6245.9691 -6253.1936 7.2244254 3741.8681 629.72299 -10624.785 0 346.235 0.00021957676 0.00019250457 + 82710 -6245.6048 -6253.556 7.9512113 3735.1244 629.98614 -10618.667 0 381.06666 0.00041067026 0.00036838494 + 82720 -6245.3146 -6253.6595 8.3449175 3727.0801 631.09898 -10611.839 0 399.93527 0.00068516312 0.00063546714 + 82730 -6245.181 -6253.3918 8.21084 3719.7106 632.666 -10605.768 0 393.50952 0.00095888606 0.00091604738 + 82740 -6245.1722 -6252.8512 7.6789809 3714.6845 634.22716 -10601.763 0 368.01985 0.001164062 0.0011374285 + 82750 -6245.1742 -6252.268 7.0937836 3713.0202 635.39519 -10600.683 0 339.97391 0.0012626152 0.0012492976 + 82760 -6245.0835 -6251.8401 6.756553 3715.0211 635.96719 -10602.828 0 323.81193 0.001245387 0.0012324611 + 82770 -6244.8827 -6251.6091 6.7264147 3720.3514 635.97039 -10607.931 0 322.36753 0.0011258244 0.0010999201 + 82780 -6244.6474 -6251.4599 6.8124688 3728.115 635.63131 -10615.206 0 326.49173 0.00093553021 0.00089268688 + 82790 -6244.4874 -6251.238 6.7505341 3736.9131 635.28502 -10623.436 0 323.52347 0.00072280842 0.00067155473 + 82800 -6244.4602 -6250.8989 6.4386993 3744.9723 635.25755 -10631.129 0 308.5786 0.0005495101 0.00050472092 + 82810 -6244.5217 -6250.579 6.0573673 3750.46 635.76071 -10636.8 0 290.30303 0.0004800181 0.00045172515 + 82820 -6244.5547 -6250.5199 5.9652688 3751.9956 636.83061 -10639.346 0 285.88915 0.00056071643 0.00054634156 + 82830 -6244.4573 -6250.8852 6.4278731 3749.1895 638.31956 -10638.394 0 308.05974 0.00079659735 0.00078308743 + 82840 -6244.2266 -6251.6103 7.3837472 3742.9191 639.92671 -10634.456 0 353.87059 0.0011380623 0.0011126649 + 82850 -6243.9698 -6252.4214 8.4516036 3735.1141 641.24944 -10628.785 0 405.04827 0.00148976 0.0014505929 + 82860 -6243.8263 -6253.0211 9.1948061 3728.0804 641.85648 -10622.958 0 440.6667 0.0017425395 0.0016996517 + 82870 -6243.8593 -6253.2848 9.4254878 3723.6814 641.39589 -10618.362 0 451.72226 0.001814297 0.0017801629 + 82880 -6244.0186 -6253.2958 9.2772779 3722.7786 639.72736 -10615.802 0 444.61921 0.0016779698 0.0016562547 + 82890 -6244.2108 -6253.206 8.9951419 3725.1319 637.02583 -10615.364 0 431.09767 0.001364314 0.0013473256 + 82900 -6244.4003 -6253.0688 8.6684987 3729.6639 633.78923 -10616.522 0 415.4431 0.00094530671 0.00092199129 + 82910 -6244.6337 -6252.8075 8.1737863 3734.8476 630.72011 -10618.375 0 391.7337 0.00051279579 0.00047920039 + 82920 -6244.972 -6252.3389 7.3668804 3739.0686 628.51583 -10619.923 0 353.06225 0.00016055194 0.00012291951 + 82930 -6245.4063 -6251.7199 6.3135705 3740.9639 627.65401 -10620.338 0 302.58172 -3.2284424e-05 -6.4059933e-05 + 82940 -6245.8514 -6251.1686 5.3171998 3739.7702 628.26484 -10619.204 0 254.83005 -1.9585054e-05 -4.1247579e-05 + 82950 -6246.2165 -6250.9337 4.7171625 3735.6162 630.13137 -10616.681 0 226.07289 0.0001957794 0.00017950186 + 82960 -6246.4765 -6251.1274 4.650966 3729.6002 632.79058 -10613.518 0 222.90038 0.0005578966 0.00053810007 + 82970 -6246.6817 -6251.661 4.9792267 3723.5327 635.67285 -10610.867 0 238.63248 0.00097162827 0.00094303234 + 82980 -6246.9119 -6252.322 5.4101175 3719.3813 638.22988 -10609.933 0 259.28319 0.0013311396 0.0012960352 + 82990 -6247.2145 -6252.9179 5.7034808 3718.6209 640.03233 -10611.571 0 273.3428 0.001552222 0.0015178949 + 83000 -6247.5758 -6253.3723 5.7965676 3721.7572 640.83648 -10615.966 0 277.80404 0.0015953638 0.0015679203 + 83010 -6247.94 -6253.7171 5.7771194 3728.2041 640.61906 -10622.54 0 276.87198 0.0014714718 0.0014513961 + 83020 -6248.2565 -6254.0108 5.7542982 3736.5164 639.57233 -10630.1 0 275.77826 0.0012310968 0.0012137716 + 83030 -6248.5149 -6254.2605 5.7455502 3744.8346 638.0526 -10637.148 0 275.359 0.00094488558 0.00092502495 + 83040 -6248.7421 -6254.4112 5.6691553 3751.353 636.48541 -10642.25 0 271.69773 0.00068399524 0.00065993103 + 83050 -6248.9681 -6254.4042 5.4361827 3754.6886 635.24942 -10644.342 0 260.53238 0.00050538678 0.00047965439 + 83060 -6249.195 -6254.2419 5.0468854 3754.1247 634.5756 -10642.942 0 241.87507 0.00044236931 0.00041862866 + 83070 -6249.3971 -6253.9973 4.6001787 3749.741 634.49762 -10638.236 0 220.46638 0.00049940239 0.0004790012 + 83080 -6249.546 -6253.7651 4.2191494 3742.4126 634.86737 -10631.045 0 202.20531 0.00065183621 0.00063305291 + 83090 -6249.6342 -6253.6056 3.9714517 3733.6468 635.4216 -10622.674 0 190.33425 0.00085204957 0.00083207526 + 83100 -6249.6779 -6253.5249 3.8469902 3725.26 635.86864 -10614.654 0 184.36936 0.0010414112 0.0010189051 + 83110 -6249.702 -6253.4951 3.7930569 3718.9694 635.96602 -10608.431 0 181.78457 0.0011649896 0.0011411732 + 83120 -6249.7219 -6253.4927 3.7708567 3716.003 635.57283 -10605.069 0 180.72061 0.001185214 0.0011628723 + 83130 -6249.7306 -6253.5261 3.795487 3716.8332 634.6745 -10605.034 0 181.90103 0.0010912039 0.0010723168 + 83140 -6249.7011 -6253.6326 3.9314797 3721.1011 633.38591 -10608.12 0 188.41857 0.00090128577 0.00088494268 + 83150 -6249.6028 -6253.8404 4.2375858 3727.7457 631.93862 -10613.525 0 203.08889 0.00065790351 0.00064030079 + 83160 -6249.4248 -6254.1192 4.6944067 3735.2777 630.6532 -10620.05 0 224.98231 0.00041703695 0.00039410154 + 83170 -6249.1865 -6254.3662 5.1796694 3742.1012 629.89149 -10626.359 0 248.23882 0.00023647574 0.00020732656 + 83180 -6248.9223 -6254.4536 5.5313799 3746.8013 629.98521 -10631.24 0 265.09476 0.00016629217 0.00013440843 + 83190 -6248.6486 -6254.3076 5.6590433 3748.3869 631.14796 -10633.842 0 271.21311 0.00024111758 0.00021170525 + 83200 -6248.3459 -6253.9508 5.6049193 3746.5081 633.39217 -10633.851 0 268.61918 0.00047153659 0.0004472084 + 83210 -6247.9733 -6253.4718 5.4984726 3741.6219 636.47855 -10631.572 0 263.51766 0.0008345528 0.00081330125 + 83220 -6247.5039 -6252.9584 5.4544191 3735.0054 639.91968 -10627.883 0 261.40637 0.0012684952 0.0012457371 + 83230 -6246.9455 -6252.4615 5.5159873 3728.5195 643.04744 -10624.028 0 264.35706 0.0016797047 0.0016522179 + 83240 -6246.3313 -6252.0158 5.6845415 3724.1333 645.14368 -10621.293 0 272.43512 0.0019637305 0.0019317972 + 83250 -6245.6934 -6251.6752 5.981767 3723.3377 645.61955 -10620.632 0 286.67984 0.0020358945 0.0020020755 + 83260 -6245.0469 -6251.5093 6.4624463 3726.6384 644.20617 -10622.354 0 309.71669 0.0018604534 0.0018266411 + 83270 -6244.4009 -6251.5534 7.1524129 3733.299 641.09133 -10625.944 0 342.78376 0.0014670489 0.0014328163 + 83280 -6243.7862 -6251.757 7.9707707 3741.4485 636.92908 -10630.135 0 382.00406 0.00094756031 0.00091133089 + 83290 -6243.2624 -6251.9894 8.7269632 3748.5667 632.68779 -10633.244 0 418.24504 0.00043358597 0.00039520442 + 83300 -6242.8893 -6252.1074 9.2181956 3752.2254 629.37551 -10633.708 0 441.78766 6.08781e-05 2.2668673e-05 + 83310 -6242.6848 -6252.0369 9.3521107 3750.8544 627.74235 -10630.634 0 448.20562 -6.9745456e-05 -0.00010477742 + 83320 -6242.6134 -6251.8067 9.1932804 3744.2822 628.06572 -10624.155 0 440.59358 7.5949787e-05 4.4753403e-05 + 83330 -6242.614 -6251.5137 8.8996793 3733.8768 630.08507 -10615.476 0 426.52257 0.00045208725 0.00042182518 + 83340 -6242.6437 -6251.2512 8.6074937 3722.2307 633.09814 -10606.58 0 412.51939 0.0009441422 0.00091042955 + 83350 -6242.699 -6251.0609 8.361898 3712.4502 636.18524 -10599.696 0 400.74907 0.001404241 0.0013647971 + 83360 -6242.8006 -6250.9397 8.1390998 3707.2367 638.49462 -10596.671 0 390.07133 0.0016990896 0.001655519 + 83370 -6242.9619 -6250.8764 7.914413 3708.0636 639.50204 -10598.442 0 379.30308 0.0017527794 0.001709108 + 83380 -6243.1728 -6250.8738 7.7010496 3714.7445 639.15841 -10604.777 0 369.07751 0.0015686387 0.0015282586 + 83390 -6243.4074 -6250.9417 7.534249 3725.5354 637.87138 -10614.348 0 361.08349 0.0012235788 0.0011873094 + 83400 -6243.6439 -6251.0825 7.4385991 3737.6964 636.32763 -10625.106 0 356.49941 0.00083924357 0.00080553469 + 83410 -6243.8727 -6251.2941 7.4214239 3748.2937 635.22792 -10634.816 0 355.67628 0.00054142566 0.00050761272 + 83420 -6244.0975 -6251.5775 7.4799985 3754.9946 635.04349 -10641.616 0 358.4835 0.00042092343 0.00038448012 + 83430 -6244.3358 -6251.923 7.5872508 3756.6445 635.88165 -10644.449 0 363.62363 0.00050736582 0.00046733642 + 83440 -6244.6152 -6252.2952 7.6800151 3753.4654 637.48684 -10643.247 0 368.06942 0.00076426514 0.00072242526 + 83450 -6244.9541 -6252.6519 7.697794 3746.8292 639.34924 -10638.83 0 368.92148 0.0011065164 0.0010664598 + 83460 -6245.3413 -6252.9751 7.6337947 3738.7414 640.87467 -10632.591 0 365.85427 0.001431413 0.0013955678 + 83470 -6245.7448 -6253.2627 7.5179369 3731.2631 641.5669 -10626.093 0 360.30172 0.0016493367 0.001617007 + 83480 -6246.1403 -6253.4886 7.3482429 3726.031 641.1691 -10620.689 0 352.16903 0.0017049539 0.0016736434 + 83490 -6246.5251 -6253.591 7.0658888 3723.9306 639.72149 -10617.243 0 338.63704 0.0015869322 0.001555302 + 83500 -6246.9031 -6253.5137 6.6105483 3724.9562 637.52441 -10615.994 0 316.81457 0.0013269239 0.001296121 + 83510 -6247.2647 -6253.2583 5.9935352 3728.2965 635.03216 -10616.587 0 287.24384 0.00098860834 0.00096093934 + 83520 -6247.5852 -6252.901 5.3158695 3732.6366 632.72247 -10618.26 0 254.76629 0.00064931814 0.00062597947 + 83530 -6247.8391 -6252.5639 4.7247327 3736.5725 630.98417 -10620.121 0 226.4357 0.00037981269 0.00035971239 + 83540 -6248.0168 -6252.3643 4.3475047 3738.9983 630.05111 -10621.414 0 208.35682 0.00022844996 0.00020880813 + 83550 -6248.1303 -6252.3675 4.2371157 3739.359 629.98977 -10621.716 0 203.06636 0.00021346626 0.00019175618 + 83560 -6248.2098 -6252.5623 4.3524317 3737.7271 630.72682 -10621.016 0 208.59295 0.00032389057 0.00029993532 + 83570 -6248.287 -6252.8792 4.5921302 3734.706 632.0915 -10619.677 0 220.08064 0.00052722346 0.00050371967 + 83580 -6248.3738 -6253.2396 4.8658295 3731.2147 633.85207 -10618.306 0 233.19785 0.00077996693 0.00076046212 + 83590 -6248.4528 -6253.5951 5.1422781 3728.2494 635.74228 -10617.587 0 246.44682 0.0010363832 0.0010220483 + 83600 -6248.4931 -6253.9209 5.4278341 3726.6912 637.48621 -10618.098 0 260.13227 0.001253302 0.0012414486 + 83610 -6248.4795 -6254.1812 5.7016199 3727.1648 638.83117 -10620.177 0 273.25362 0.0013930729 0.0013790491 + 83620 -6248.4299 -6254.3135 5.8836001 3729.905 639.58972 -10623.808 0 281.97513 0.0014286071 0.0014095184 + 83630 -6248.3813 -6254.2593 5.8779723 3734.6312 639.68235 -10628.573 0 281.70541 0.0013515891 0.0013285369 + 83640 -6248.3592 -6254.0138 5.6545796 3740.4966 639.16503 -10633.675 0 270.99918 0.0011799142 0.00115687 + 83650 -6248.3576 -6253.6495 5.2918999 3746.2019 638.22578 -10638.077 0 253.61754 0.00095809699 0.00093855433 + 83660 -6248.344 -6253.2865 4.9425589 3750.2939 637.14255 -10640.723 0 236.87516 0.00074728472 0.00073152348 + 83670 -6248.2833 -6253.0322 4.7488591 3751.57 636.21147 -10640.814 0 227.59197 0.00060740892 0.00059237118 + 83680 -6248.1595 -6252.9272 4.7676908 3749.4481 635.66735 -10638.043 0 228.4945 0.00057839217 0.00056006333 + 83690 -6247.9815 -6252.9337 4.9521794 3744.1707 635.61933 -10632.724 0 237.33623 0.00066771823 0.00064416166 + 83700 -6247.7688 -6252.9709 5.2020735 3736.7677 636.01621 -10625.755 0 249.31255 0.00084857169 0.0008212748 + 83710 -6247.5286 -6252.9752 5.4465843 3728.7986 636.64985 -10618.424 0 261.03088 0.0010680422 0.0010404954 + 83720 -6247.2407 -6252.9333 5.6925958 3721.9747 637.20238 -10612.11 0 272.82113 0.0012613096 0.0012361239 + 83730 -6246.866 -6252.8668 6.0007952 3717.7779 637.33459 -10607.979 0 287.59178 0.0013674513 0.0013445999 + 83740 -6246.3686 -6252.7905 6.4218863 3717.1446 636.79679 -10606.732 0 307.77283 0.0013445278 0.0013220068 + 83750 -6245.7348 -6252.6931 6.9582885 3720.2379 635.53112 -10608.462 0 333.48023 0.0011826388 0.0011583597 + 83760 -6244.9767 -6252.5546 7.5778956 3726.3428 633.73191 -10612.629 0 363.17528 0.00091211426 0.00088487742 + 83770 -6244.1276 -6252.3675 8.239882 3733.9537 631.83925 -10618.161 0 394.90138 0.00060176352 0.00057079132 + 83780 -6243.2446 -6252.124 8.8793975 3741.1118 630.45143 -10623.687 0 425.55055 0.0003431787 0.00030795327 + 83790 -6242.4107 -6251.7855 9.3747848 3745.9333 630.15954 -10627.878 0 449.29229 0.00022394197 0.00018554357 + 83800 -6241.7134 -6251.3008 9.5874254 3747.1468 631.34174 -10629.789 0 459.48322 0.00030032155 0.00026225324 + 83810 -6241.1965 -6250.6743 9.4777887 3744.4599 633.99445 -10629.129 0 454.22881 0.00057949736 0.00054556492 + 83820 -6240.8395 -6250.0057 9.1661845 3738.6819 637.68287 -10626.37 0 439.29499 0.0010141711 0.00098515237 + 83830 -6240.5884 -6249.4487 8.8602652 3731.5667 641.64056 -10622.656 0 424.63362 0.0015096825 0.0014826438 + 83840 -6240.4045 -6249.1364 8.7318789 3725.3598 644.9785 -10619.475 0 418.48063 0.0019452672 0.0019161208 + 83850 -6240.2844 -6249.1308 8.8463575 3722.13 646.92955 -10618.19 0 423.96709 0.0022074091 0.0021740864 + 83860 -6240.252 -6249.412 9.1599745 3723.0966 647.05568 -10619.564 0 438.99738 0.0022252375 0.0021892352 + 83870 -6240.3358 -6249.9014 9.565597 3728.1915 645.35989 -10623.453 0 458.43708 0.0019944929 0.0019599726 + 83880 -6240.5438 -6250.5081 9.9643061 3736.0227 642.2731 -10628.804 0 477.54546 0.0015802913 0.0015508995 + 83890 -6240.8535 -6251.1609 10.307424 3744.2861 638.52769 -10633.975 0 493.9896 0.0010964488 0.0010718501 + 83900 -6241.2334 -6251.7927 10.559338 3750.5112 634.96214 -10637.266 0 506.06272 0.00066826627 0.00064380056 + 83910 -6241.6738 -6252.3034 10.629597 3752.8544 632.30831 -10637.466 0 509.42994 0.00039360417 0.00036417332 + 83920 -6242.1863 -6252.5697 10.383475 3750.6198 631.00933 -10634.199 0 497.63436 0.00031775393 0.00028246589 + 83930 -6242.7692 -6252.5157 9.7464351 3744.3491 631.11661 -10627.981 0 467.10386 0.00042892157 0.0003920216 + 83940 -6243.3804 -6252.1755 8.7950969 3735.55 632.30536 -10620.031 0 421.51039 0.00067051446 0.00063801651 + 83950 -6243.948 -6251.694 7.7460032 3726.2399 634.00763 -10611.942 0 371.23194 0.0009618966 0.00093703859 + 83960 -6244.4065 -6251.2649 6.8583874 3718.4641 635.61032 -10605.339 0 328.69241 0.001220371 0.001201191 + 83970 -6244.7262 -6251.0446 6.3183141 3713.8844 636.64171 -10601.571 0 302.80906 0.0013797162 0.0013601424 + 83980 -6244.9254 -6251.0864 6.1609594 3713.4781 636.88807 -10601.453 0 295.26774 0.0014030366 0.0013768231 + 83990 -6245.0613 -6251.3292 6.2678246 3717.3491 636.4175 -10605.096 0 300.38933 0.0012893887 0.0012545159 + 84000 -6245.2024 -6251.6499 6.447553 3724.672 635.52115 -10611.843 0 309.00292 0.0010739229 0.001034393 + 84010 -6245.3905 -6251.9499 6.5593171 3733.815 634.60346 -10620.368 0 314.35928 0.00082068469 0.00078402157 + 84020 -6245.6171 -6252.2141 6.5969474 3742.6854 634.06022 -10628.96 0 316.16273 0.00060744044 0.00057927773 + 84030 -6245.8328 -6252.5012 6.6684154 3749.2621 634.17511 -10635.938 0 319.58788 0.00050403755 0.00048369114 + 84040 -6245.9894 -6252.8687 6.8792998 3752.1689 635.05042 -10640.088 0 329.69465 0.00054946588 0.00053010079 + 84050 -6246.0849 -6253.2905 7.2056512 3751.074 636.57799 -10640.942 0 345.33524 0.00073616727 0.00070998049 + 84060 -6246.1744 -6253.6394 7.4650086 3746.7327 638.45569 -10638.828 0 357.7651 0.0010104004 0.00097516491 + 84070 -6246.3297 -6253.7645 7.4347818 3740.6431 640.25334 -10634.661 0 356.31646 0.0012916057 0.0012530118 + 84080 -6246.5743 -6253.6118 7.0375258 3734.4796 641.52164 -10629.613 0 337.27772 0.001502504 0.0014696095 + 84090 -6246.8567 -6253.2782 6.4215188 3729.5922 641.9169 -10624.787 0 307.75521 0.0015936453 0.0015710974 + 84100 -6247.0918 -6252.9387 5.8469123 3726.7702 641.29861 -10621.008 0 280.21685 0.0015508732 0.0015350564 + 84110 -6247.2312 -6252.7133 5.4820735 3726.2525 639.76257 -10618.728 0 262.73172 0.0013881755 0.0013707586 + 84120 -6247.2969 -6252.5959 5.298979 3727.8174 637.60135 -10618.015 0 253.95681 0.0011372477 0.001112614 + 84130 -6247.3533 -6252.5025 5.1492646 3730.8419 635.21569 -10618.56 0 246.78165 0.00084169625 0.00081153394 + 84140 -6247.4477 -6252.3828 4.9350704 3734.3659 633.01546 -10619.764 0 236.51626 0.00055458402 0.00052590053 + 84150 -6247.5724 -6252.2874 4.7149861 3737.2627 631.34251 -10620.893 0 225.96859 0.00033279643 0.00031154039 + 84160 -6247.6753 -6252.3303 4.6550655 3738.5481 630.4283 -10621.307 0 223.09686 0.00022466309 0.00021069451 + 84170 -6247.707 -6252.5842 4.8772127 3737.7256 630.38053 -10620.69 0 233.7434 0.00025478148 0.00024225658 + 84180 -6247.6613 -6253.0013 5.3400191 3734.9937 631.18322 -10619.178 0 255.92368 0.00041445815 0.00039683396 + 84190 -6247.58 -6253.4278 5.8478492 3731.2017 632.69959 -10617.329 0 280.26174 0.00066369492 0.00063898252 + 84200 -6247.5198 -6253.6986 6.1787448 3727.5646 634.67962 -10615.943 0 296.12012 0.0009440109 0.0009160682 + 84210 -6247.5072 -6253.7411 6.233913 3725.2672 636.78487 -10615.793 0 298.76409 0.0011956759 0.0011706278 + 84220 -6247.5187 -6253.6106 6.0919191 3725.1249 638.64232 -10617.378 0 291.95894 0.0013715199 0.0013524428 + 84230 -6247.5046 -6253.4287 5.924104 3727.413 639.92471 -10620.766 0 283.9163 0.0014433534 0.0014278992 + 84240 -6247.4338 -6253.2841 5.8502346 3731.8547 640.43502 -10625.574 0 280.37607 0.0014031757 0.0013860528 + 84250 -6247.3158 -6253.1811 5.865248 3737.6875 640.16135 -10631.03 0 281.0956 0.0012637159 0.0012413641 + 84260 -6247.1832 -6253.0718 5.8886361 3743.7635 639.27705 -10636.112 0 282.21648 0.0010590905 0.0010321769 + 84270 -6247.0573 -6252.9237 5.8663659 3748.719 638.08419 -10639.727 0 281.14917 0.00084145024 0.00081348292 + 84280 -6246.9301 -6252.7526 5.822531 3751.254 636.9221 -10640.929 0 279.04835 0.00066988455 0.00064397304 + 84290 -6246.772 -6252.6033 5.8313166 3750.4752 636.0731 -10639.152 0 279.46941 0.00059356351 0.0005702901 + 84300 -6246.5513 -6252.5085 5.9571885 3746.1853 635.69265 -10634.386 0 285.5019 0.00063594556 0.00061344683 + 84310 -6246.249 -6252.4633 6.2143556 3739.0074 635.77731 -10627.248 0 297.82679 0.00078640272 0.00076192414 + 84320 -6245.8649 -6252.4244 6.559553 3730.3007 636.1716 -10618.897 0 314.37058 0.0010017842 0.00097357329 + 84330 -6245.4169 -6252.3322 6.9153242 3721.8757 636.60844 -10610.816 0 331.42114 0.001217256 0.0011857935 + 84340 -6244.9304 -6252.147 7.2165782 3715.5675 636.77727 -10604.492 0 345.85892 0.0013638449 0.0013315755 + 84350 -6244.4233 -6251.8774 7.4541794 3712.7731 636.41261 -10601.063 0 357.2461 0.0013882601 0.0013578132 + 84360 -6243.8984 -6251.5767 7.6783393 3714.0899 635.39017 -10601.057 0 367.9891 0.0012692957 0.0012414991 + 84370 -6243.3529 -6251.3064 7.9535078 3719.1613 633.80466 -10604.272 0 381.17672 0.0010259597 0.0009993151 + 84380 -6242.7943 -6251.0976 8.3033705 3726.7579 631.994 -10609.849 0 397.9441 0.00071519776 0.0006872114 + 84390 -6242.2483 -6250.9436 8.6952846 3735.0617 630.48076 -10616.486 0 416.72683 0.00041977241 0.00038884906 + 84400 -6241.7511 -6250.8223 9.0712764 3742.0939 629.83026 -10622.746 0 434.74647 0.00022834746 0.00019470671 + 84410 -6241.3356 -6250.7227 9.3871711 3746.2082 630.46542 -10627.396 0 449.88591 0.00021123341 0.00017656492 + 84420 -6241.0233 -6250.651 9.6276444 3746.5347 632.50488 -10629.69 0 461.41074 0.00039779461 0.00036433524 + 84430 -6240.8227 -6250.6239 9.8011709 3743.2303 635.68756 -10629.542 0 469.7271 0.00076331901 0.00073283174 + 84440 -6240.7309 -6250.6585 9.9276231 3737.4454 639.41423 -10627.518 0 475.7874 0.0012311593 0.0012040389 + 84450 -6240.7408 -6250.7603 10.019515 3731.0033 642.89504 -10624.659 0 480.19137 0.0016907632 0.0016657407 + 84460 -6240.8501 -6250.912 10.061883 3725.8785 645.35805 -10622.149 0 482.2219 0.002027007 0.0020018245 + 84470 -6241.0665 -6251.0713 10.004771 3723.616 646.25775 -10620.945 0 479.48474 0.0021526333 0.0021254285 + 84480 -6241.4025 -6251.18 9.777496 3724.8639 645.42285 -10621.467 0 468.59247 0.0020339775 0.0020046271 + 84490 -6241.8618 -6251.1869 9.3250437 3729.1722 643.09907 -10623.458 0 446.90842 0.0017015475 0.0016720995 + 84500 -6242.423 -6251.0796 8.656586 3735.1289 639.873 -10626.081 0 414.87217 0.0012416388 0.0012151961 + 84510 -6243.0333 -6250.9104 7.8770614 3740.7976 636.50078 -10628.209 0 377.51298 0.00077125383 0.0007495948 + 84520 -6243.6255 -6250.7871 7.161673 3744.3244 633.69703 -10628.809 0 343.22755 0.0004038524 0.00038549092 + 84530 -6244.152 -6250.8176 6.6656352 3744.5197 631.95196 -10627.289 0 319.45464 0.00021666988 0.00019749526 + 84540 -6244.611 -6251.041 6.4300645 3741.215 631.43052 -10623.687 0 308.16477 0.00023067439 0.00020733385 + 84550 -6245.0377 -6251.4085 6.3707783 3735.2646 631.97261 -10618.646 0 305.32344 0.00041015788 0.0003833456 + 84560 -6245.4668 -6251.8331 6.3663006 3728.2154 633.18035 -10613.229 0 305.10885 0.00068071048 0.00065502331 + 84570 -6245.898 -6252.261 6.3629356 3721.8104 634.55727 -10608.629 0 304.94758 0.00095635286 0.00093645445 + 84580 -6246.2951 -6252.6953 6.4002222 3717.533 635.65721 -10605.886 0 306.73456 0.0011643154 0.0011506803 + 84590 -6246.6159 -6253.1551 6.5392689 3716.3147 636.20293 -10605.673 0 313.39846 0.0012601508 0.0012481268 + 84600 -6246.8497 -6253.6111 6.761449 3718.4144 636.14561 -10608.171 0 324.04657 0.0012323108 0.0012155284 + 84610 -6247.0312 -6253.9595 6.9283234 3723.4173 635.65363 -10613.03 0 332.04413 0.0010994844 0.0010751592 + 84620 -6247.2172 -6254.0683 6.8511324 3730.3098 635.03757 -10619.416 0 328.34471 0.00090429643 0.00087614554 + 84630 -6247.4396 -6253.8725 6.4329185 3737.6433 634.63716 -10626.153 0 308.30155 0.00070442249 0.00068028774 + 84640 -6247.6733 -6253.4437 5.7703851 3743.8219 634.70841 -10631.974 0 276.54923 0.00055984167 0.00054534551 + 84650 -6247.8518 -6252.966 5.1141502 3747.4996 635.34797 -10635.814 0 245.09877 0.00051620636 0.00050963331 + 84660 -6247.9208 -6252.6221 4.701354 3747.975 636.47435 -10637.072 0 225.31526 0.00058905718 0.00058221031 + 84670 -6247.8856 -6252.4793 4.5936534 3745.4005 637.86265 -10635.742 0 220.15365 0.00075706762 0.00074186063 + 84680 -6247.8116 -6252.4698 4.6581508 3740.683 639.21254 -10632.365 0 223.24472 0.00096995371 0.00094527963 + 84690 -6247.7735 -6252.4813 4.7077773 3735.1167 640.22467 -10627.823 0 225.6231 0.0011684542 0.0011412923 + 84700 -6247.7957 -6252.472 4.676382 3729.9431 640.66437 -10623.079 0 224.11846 0.0013056162 0.0012852392 + 84710 -6247.8332 -6252.5053 4.6720948 3726.0577 640.40082 -10618.964 0 223.913 0.0013576926 0.001347939 + 84720 -6247.8116 -6252.6757 4.864181 3723.9484 639.42043 -10616.045 0 233.11885 0.0013211732 0.0013174329 + 84730 -6247.6898 -6252.9987 5.3088401 3723.7757 637.82038 -10614.595 0 254.42941 0.0012030502 0.0011964024 + 84740 -6247.4961 -6253.367 5.8708239 3725.4377 635.79015 -10614.595 0 281.36282 0.0010149714 0.00099975095 + 84750 -6247.3047 -6253.6172 6.3125182 3728.541 633.58583 -10615.744 0 302.53129 0.00077597681 0.00075422132 + 84760 -6247.1737 -6253.6494 6.4756428 3732.3446 631.50076 -10617.495 0 310.34914 0.00051900453 0.00049805783 + 84770 -6247.0989 -6253.4944 6.3954953 3735.8206 629.83585 -10619.151 0 306.50802 0.00029180068 0.00027744703 + 84780 -6247.0244 -6253.2713 6.2468795 3737.9046 628.86961 -10620.045 0 299.38552 0.00014718343 0.00013862051 + 84790 -6246.8988 -6253.0764 6.1775497 3737.8574 628.8226 -10619.756 0 296.06284 0.00012651074 0.00011752152 + 84800 -6246.7217 -6252.9066 6.184955 3735.5522 629.81054 -10618.269 0 296.41775 0.00024530085 0.00023018491 + 84810 -6246.5405 -6252.6823 6.1417613 3731.5418 631.79121 -10616.015 0 294.34766 0.00048766188 0.00046642233 + 84820 -6246.4051 -6252.3427 5.93756 3726.8891 634.52605 -10613.758 0 284.56119 0.00081020964 0.00078852571 + 84830 -6246.3205 -6251.9289 5.6084074 3722.8656 637.58458 -10612.379 0 268.78635 0.0011518558 0.001136052 + 84840 -6246.2383 -6251.5825 5.3441376 3720.6465 640.41069 -10612.64 0 256.12106 0.0014453891 0.0014367492 + 84850 -6246.091 -6251.4569 5.3659532 3721.0779 642.4456 -10614.98 0 257.16658 0.0016289707 0.0016221518 + 84860 -6245.842 -6251.6075 5.7655619 3724.5094 643.27643 -10619.393 0 276.31808 0.0016579097 0.0016449355 + 84870 -6245.5146 -6251.9409 6.4263499 3730.653 642.76361 -10625.358 0 307.98674 0.0015172268 0.0014941215 + 84880 -6245.1757 -6252.2715 7.0957933 3738.4822 641.10022 -10631.854 0 340.07023 0.0012328329 0.0012034514 + 84890 -6244.8807 -6252.4492 7.5684997 3746.2704 638.77434 -10637.494 0 362.72497 0.00087493051 0.00084816132 + 84900 -6244.622 -6252.4553 7.8332978 3751.9062 636.43732 -10640.799 0 375.41558 0.00054552681 0.00052757459 + 84910 -6244.3358 -6252.3794 8.0436549 3753.4993 634.71656 -10640.595 0 385.49708 0.00034772608 0.00033629442 + 84920 -6243.9676 -6252.2964 8.328809 3750.0797 634.03105 -10636.407 0 399.16326 0.00034684592 0.00033309525 + 84930 -6243.5355 -6252.1683 8.6328482 3742.0433 634.46549 -10628.677 0 413.73453 0.00054267747 0.00051958835 + 84940 -6243.123 -6251.8792 8.7561943 3731.0946 635.74086 -10618.715 0 419.64596 0.00086864241 0.0008378307 + 84950 -6242.8029 -6251.3733 8.5704006 3719.711 637.29597 -10608.38 0 410.74168 0.0012182342 0.0011884066 + 84960 -6242.566 -6250.7558 8.1897755 3710.41 638.46482 -10599.631 0 392.49999 0.0014835136 0.0014619424 + 84970 -6242.3273 -6250.2455 7.9181818 3705.1349 638.69866 -10594.079 0 379.4837 0.0015868105 0.0015721569 + 84980 -6242.0024 -6250.016 8.0135208 3704.9058 637.75801 -10592.68 0 384.05288 0.0014966149 0.0014800268 + 84990 -6241.5822 -6250.066 8.4837255 3709.6894 635.80704 -10595.562 0 406.58773 0.0012306789 0.0012041869 + 85000 -6241.1428 -6250.2335 9.0907088 3718.3999 633.37758 -10602.011 0 435.67778 0.00085251558 0.00081710546 + 85010 -6240.782 -6250.3425 9.5604883 3729.0356 631.21326 -10610.591 0 458.19224 0.00046207735 0.00042781889 + 85020 -6240.5332 -6250.3562 9.8230603 3739.0528 630.04325 -10619.452 0 470.77617 0.00017582301 0.00015304316 + 85030 -6240.3383 -6250.3937 10.055435 3746.0244 630.36046 -10626.779 0 481.91285 9.3373386e-05 8.2421363e-05 + 85040 -6240.1232 -6250.5801 10.456868 3748.4258 632.27469 -10631.281 0 501.1518 0.00025878013 0.00024865253 + 85050 -6239.9084 -6250.87 10.961623 3746.1854 635.47668 -10632.532 0 525.34249 0.0006359923 0.00061443728 + 85060 -6239.8312 -6251.04 11.208791 3740.6495 639.31167 -10631.001 0 537.18814 0.0011175285 0.0010832701 + 85070 -6240.0323 -6250.8846 10.852322 3733.9398 642.94349 -10627.768 0 520.10418 0.0015671679 0.0015315306 + 85080 -6240.5146 -6250.4258 9.9111905 3728.0804 645.57671 -10624.083 0 474.99986 0.001873015 0.0018488892 + 85090 -6241.1347 -6249.9194 8.7847178 3724.3882 646.67514 -10620.983 0 421.01297 0.0019798467 0.0019695046 + 85100 -6241.7342 -6249.6571 7.9229052 3723.3311 646.09615 -10619.084 0 379.71007 0.0018891664 0.001883036 + 85110 -6242.2622 -6249.7601 7.4978864 3724.6916 644.08947 -10618.541 0 359.34078 0.0016407659 0.0016270785 + 85120 -6242.7782 -6250.139 7.360804 3727.7743 641.17433 -10619.088 0 352.77103 0.0012947848 0.0012699406 + 85130 -6243.3621 -6250.6158 7.2536797 3731.5599 637.96041 -10620.136 0 347.63703 0.00092054895 0.00089126049 + 85140 -6244.0284 -6251.078 7.0495324 3734.871 634.98691 -10620.936 0 337.85315 0.00058737245 0.00056397682 + 85150 -6244.7117 -6251.5393 6.8276806 3736.6278 632.62667 -10620.794 0 327.22076 0.00035243072 0.00033985474 + 85160 -6245.3215 -6252.0762 6.7546963 3736.1691 631.06354 -10619.309 0 323.72295 0.00024728824 0.00024114091 + 85170 -6245.8119 -6252.7071 6.8951856 3733.5015 630.32111 -10616.53 0 330.45598 0.00026965215 0.00026013268 + 85180 -6246.2094 -6253.3272 7.117749 3729.3257 630.31169 -10612.965 0 341.12247 0.00038621147 0.00036619009 + 85190 -6246.5839 -6253.7572 7.1732739 3724.7861 630.88371 -10609.427 0 343.78353 0.0005468761 0.00051747937 + 85200 -6246.9868 -6253.8649 6.8781047 3721.0546 631.85943 -10606.779 0 329.63737 0.00070402309 0.00067346388 + 85210 -6247.4083 -6253.6588 6.250459 3718.9597 633.06217 -10605.681 0 299.55707 0.00082707836 0.00080412731 + 85220 -6247.7874 -6253.284 5.4965784 3718.828 634.33274 -10606.445 0 263.42688 0.00090585946 0.00089337344 + 85230 -6248.059 -6252.9294 4.8704338 3720.5543 635.53562 -10609.019 0 233.41852 0.00094348394 0.00093675057 + 85240 -6248.2013 -6252.7179 4.5166734 3723.7841 636.55923 -10613.061 0 216.46433 0.0009456557 0.00093635799 + 85250 -6248.2501 -6252.6513 4.4012788 3728.0594 637.318 -10618.029 0 210.93397 0.00091425495 0.00089691685 + 85260 -6248.2742 -6252.6458 4.3715664 3732.8443 637.76118 -10623.251 0 209.50999 0.00084959495 0.00082567441 + 85270 -6248.3269 -6252.6283 4.3014426 3737.4674 637.88732 -10627.983 0 206.14927 0.00075917789 0.0007355528 + 85280 -6248.4071 -6252.614 4.2069092 3741.1075 637.75692 -10631.478 0 201.61869 0.00066481211 0.00064778121 + 85290 -6248.4653 -6252.6944 4.2291365 3742.9356 637.49185 -10633.122 0 202.68395 0.00059991393 0.00058980604 + 85300 -6248.4483 -6252.9434 4.4951604 3742.3912 637.25057 -10632.585 0 215.43331 0.00059622573 0.00058736734 + 85310 -6248.3474 -6253.3282 4.9808425 3739.4431 637.17719 -10629.949 0 238.70992 0.00066785276 0.00065388653 + 85320 -6248.2072 -6253.7099 5.5027496 3734.6661 637.33757 -10625.714 0 263.72264 0.00080267243 0.00078237402 + 85330 -6248.0868 -6253.937 5.8502157 3729.0847 637.6697 -10620.691 0 280.37516 0.00096549824 0.00094380149 + 85340 -6248.0084 -6253.9488 5.9404288 3723.881 637.97834 -10615.808 0 284.69868 0.0011094289 0.001092805 + 85350 -6247.939 -6253.7983 5.859334 3720.1116 637.98927 -10611.899 0 280.81216 0.0011884315 0.001178935 + 85360 -6247.8231 -6253.5843 5.7612272 3718.5139 637.4506 -10609.549 0 276.11033 0.0011672855 0.001160581 + 85370 -6247.632 -6253.3593 5.7272239 3719.3881 636.24455 -10608.992 0 274.4807 0.0010297242 0.0010186201 + 85380 -6247.3884 -6253.0948 5.7064069 3722.5125 634.46608 -10610.073 0 273.48304 0.00078623155 0.00076654779 + 85390 -6247.1468 -6252.7289 5.5820263 3727.1045 632.43586 -10612.269 0 267.52202 0.00047935441 0.00045326389 + 85400 -6246.9482 -6252.2495 5.3013245 3731.9003 630.63641 -10614.786 0 254.06922 0.00018104252 0.00015524706 + 85410 -6246.7848 -6251.7427 4.9579223 3735.4245 629.58557 -10616.753 0 237.61146 -2.2467774e-05 -4.2135579e-05 + 85420 -6246.6037 -6251.3591 4.7554014 3736.4305 629.6825 -10617.472 0 227.90552 -5.6712894e-05 -6.979491e-05 + 85430 -6246.3428 -6251.2237 4.880894 3734.3702 631.07115 -10616.665 0 233.91983 0.00011289322 0.00010141751 + 85440 -6245.9686 -6251.3595 5.3908974 3729.6838 633.56312 -10614.606 0 258.36205 0.00046312519 0.00044689741 + 85450 -6245.4912 -6251.6834 6.1921984 3723.7536 636.65003 -10612.087 0 296.76489 0.00091401758 0.00088988247 + 85460 -6244.9515 -6252.0647 7.1131792 3718.5075 639.61687 -10610.189 0 340.90346 0.0013499244 0.0013195335 + 85470 -6244.3969 -6252.3886 7.9917776 3715.8045 641.73908 -10609.932 0 383.01082 0.0016537759 0.0016216448 + 85480 -6243.8647 -6252.5819 8.7172246 3716.8111 642.50805 -10611.901 0 417.77831 0.0017433674 0.0017135333 + 85490 -6243.3788 -6252.6047 9.225891 3721.5774 641.80238 -10615.984 0 442.15646 0.0015980317 0.0015717319 + 85500 -6242.9545 -6252.4404 9.4858769 3728.9614 639.93099 -10621.333 0 454.61645 0.0012663703 0.0012417901 + 85510 -6242.6055 -6252.092 9.4864519 3736.9473 637.52595 -10626.565 0 454.644 0.0008509856 0.00082495231 + 85520 -6242.3491 -6251.5826 9.2334941 3743.2529 635.32837 -10630.164 0 442.52085 0.00047480829 0.00044545247 + 85530 -6242.2001 -6250.9626 8.7625397 3746.0046 633.94952 -10630.917 0 419.95007 0.0002420112 0.00021045732 + 85540 -6242.1545 -6250.3221 8.1676003 3744.257 633.68856 -10628.268 0 391.43723 0.00020809002 0.00017750324 + 85550 -6242.1803 -6249.7854 7.605122 3738.2312 634.4606 -10622.477 0 364.48012 0.00036745335 0.00034010785 + 85560 -6242.2316 -6249.4716 7.2400261 3729.2535 635.84906 -10614.574 0 346.98267 0.00065905661 0.00063419399 + 85570 -6242.2772 -6249.4408 7.1636267 3719.421 637.25733 -10606.119 0 343.32118 0.00098632232 0.00096080019 + 85580 -6242.3189 -6249.6679 7.3490277 3711.0642 638.10731 -10598.839 0 352.20664 0.0012458636 0.0012168784 + 85590 -6242.3871 -6250.0635 7.6764726 3706.1319 638.02311 -10594.219 0 367.89964 0.001357875 0.0013253319 + 85600 -6242.5186 -6250.5245 8.0058925 3705.6685 636.94518 -10593.138 0 383.68729 0.0012896664 0.0012562942 + 85610 -6242.7333 -6250.9791 8.2458138 3709.5488 635.14094 -10595.669 0 395.18566 0.0010644797 0.0010336659 + 85620 -6243.0264 -6251.3998 8.3733363 3716.5596 633.11078 -10601.07 0 401.29726 0.00075174783 0.00072492023 + 85630 -6243.3837 -6251.7803 8.3966492 3724.8016 631.42437 -10608.006 0 402.41454 0.00044211718 0.00041795764 + 85640 -6243.8008 -6252.1055 8.3046781 3732.2613 630.54604 -10614.913 0 398.00677 0.00021760863 0.00019366489 + 85650 -6244.2864 -6252.3491 8.0627346 3737.3473 630.70728 -10620.404 0 386.41148 0.00012888986 0.00010370336 + 85660 -6244.8449 -6252.4998 7.6548281 3739.2352 631.8612 -10623.596 0 366.86231 0.0001860281 0.00015964343 + 85670 -6245.4621 -6252.5737 7.1115955 3737.9663 633.72254 -10624.263 0 340.82756 0.00036165045 0.00033470258 + 85680 -6246.1085 -6252.5978 6.4892718 3734.3238 635.86901 -10622.791 0 311.00232 0.00060255378 0.00057571231 + 85690 -6246.7502 -6252.5895 5.8392741 3729.5363 637.86453 -10619.99 0 279.85078 0.00084650099 0.00082077919 + 85700 -6247.3519 -6252.5626 5.2107434 3724.903 639.36332 -10616.829 0 249.72806 0.0010398939 0.0010166775 + 85710 -6247.8795 -6252.5459 4.6664451 3721.4669 640.1664 -10614.179 0 223.64223 0.0011498974 0.0011301273 + 85720 -6248.308 -6252.5831 4.2751097 3719.8348 640.22429 -10612.642 0 204.88725 0.0011667979 0.0011501516 + 85730 -6248.6292 -6252.7123 4.0830809 3720.1534 639.60194 -10612.468 0 195.68415 0.0010983906 0.0010833478 + 85740 -6248.8516 -6252.9426 4.0910802 3722.1786 638.43337 -10613.555 0 196.06752 0.00096199204 0.00094674362 + 85750 -6248.9951 -6253.2456 4.2504987 3725.374 636.88753 -10615.507 0 203.70775 0.00077885843 0.00076240431 + 85760 -6249.0845 -6253.5651 4.4805665 3729.006 635.15219 -10617.723 0 214.73389 0.00057269337 0.00055540012 + 85770 -6249.1409 -6253.8418 4.7009229 3732.2374 633.43061 -10619.51 0 225.2946 0.00037085469 0.00035400852 + 85780 -6249.1737 -6254.0352 4.8615373 3734.2483 631.93987 -10620.223 0 232.99214 0.00020480485 0.00018939802 + 85790 -6249.1816 -6254.1274 4.9457964 3734.4007 630.89944 -10619.428 0 237.03031 0.00010651316 9.232194e-05 + 85800 -6249.1621 -6254.1092 4.9470417 3732.4224 630.50022 -10617.032 0 237.09 0.00010050231 8.6393107e-05 + 85810 -6249.1199 -6253.9721 4.8522198 3728.5386 630.85238 -10613.363 0 232.5456 0.00019481545 0.0001799063 + 85820 -6249.0639 -6253.7215 4.6575603 3723.48 631.92654 -10609.128 0 223.21642 0.00037511563 0.00035946512 + 85830 -6248.9987 -6253.3946 4.3958588 3718.3535 633.5183 -10605.266 0 210.67422 0.00060433718 0.0005885514 + 85840 -6248.9217 -6253.0595 4.1377445 3714.4095 635.26642 -10602.735 0 198.30394 0.00082853404 0.00081303221 + 85850 -6248.827 -6252.7912 3.9641942 3712.7516 636.73456 -10602.277 0 189.98643 0.00098884243 0.00097361593 + 85860 -6248.708 -6252.6475 3.9394335 3714.0409 637.53682 -10604.225 0 188.79976 0.0010379306 0.0010226358 + 85870 -6248.5556 -6252.6543 4.0987566 3718.2656 637.46552 -10608.385 0 196.43541 0.00095625063 0.00094014258 + 85880 -6248.3593 -6252.7973 4.4380281 3724.6632 636.57467 -10614.035 0 212.69521 0.00076154269 0.00074349603 + 85890 -6248.1162 -6253.0153 4.8990704 3731.8421 635.184 -10620.041 0 234.79094 0.00050701359 0.00048624574 + 85900 -6247.8387 -6253.2129 5.3742169 3738.0844 633.79383 -10625.091 0 257.56263 0.00026829725 0.00024549142 + 85910 -6247.5484 -6253.3001 5.7517199 3741.7563 632.93181 -10627.988 0 275.65469 0.00012311894 0.00010061162 + 85920 -6247.2589 -6253.2384 5.9794949 3741.7364 632.97879 -10627.954 0 286.57095 0.0001287514 0.00010899367 + 85930 -6246.965 -6253.0553 6.0902554 3737.7709 634.0314 -10624.858 0 291.87921 0.00030232984 0.00028573675 + 85940 -6246.6516 -6252.8105 6.1589094 3730.6441 635.84873 -10619.303 0 295.1695 0.00060973311 0.00059408432 + 85950 -6246.3144 -6252.5462 6.231731 3722.0652 637.90385 -10612.515 0 298.65952 0.00096905077 0.00095127045 + 85960 -6245.9708 -6252.2675 6.2966698 3714.2418 639.52933 -10606.039 0 301.77174 0.0012715794 0.001250328 + 85970 -6245.6478 -6251.9654 6.3176407 3709.2422 640.11809 -10601.326 0 302.77679 0.0014159625 0.001392724 + 85980 -6245.3615 -6251.6524 6.290889 3708.3596 639.32231 -10599.334 0 301.4947 0.0013434998 0.0013213772 + 85990 -6245.1052 -6251.3756 6.2704595 3711.7049 637.18624 -10600.267 0 300.5156 0.0010604936 0.0010418093 + 86000 -6244.8532 -6251.197 6.3438496 3718.1718 634.16324 -10603.532 0 304.03287 0.00063852304 0.00062300975 + 86010 -6244.5803 -6251.1526 6.5723288 3725.7843 631.00466 -10607.942 0 314.98287 0.00019262746 0.00017759814 + 86020 -6244.283 -6251.2196 6.9366001 3732.305 628.55101 -10612.076 0 332.4408 -0.00015401223 -0.00017145046 + 86030 -6243.9851 -6251.3262 7.3411149 3735.8883 627.48681 -10614.701 0 351.82741 -0.00030599625 -0.0003265394 + 86040 -6243.7177 -6251.405 7.6872519 3735.5777 628.13256 -10615.115 0 368.41625 -0.00022128208 -0.00024325571 + 86050 -6243.4951 -6251.4394 7.944256 3731.5352 630.3431 -10613.318 0 380.73332 7.8649922e-05 5.7145601e-05 + 86060 -6243.3129 -6251.4529 8.1399758 3724.9804 633.55169 -10609.985 0 390.11331 0.00051474051 0.00049398526 + 86070 -6243.1671 -6251.4596 8.2924835 3717.8491 636.9477 -10606.256 0 397.42234 0.00097170202 0.00095075954 + 86080 -6243.0662 -6251.4392 8.3729452 3712.231 639.72529 -10603.395 0 401.27851 0.0013312101 0.0013095106 + 86090 -6243.0221 -6251.3589 8.3367558 3709.7437 641.31613 -10602.419 0 399.54412 0.0015073315 0.0014852588 + 86100 -6243.0363 -6251.2103 8.1740438 3711.0619 641.52905 -10603.801 0 391.74605 0.001470898 0.0014489854 + 86110 -6243.098 -6251.0221 7.9240711 3715.7632 640.5576 -10607.343 0 379.76595 0.0012535323 0.0012315959 + 86120 -6243.195 -6250.8468 7.651801 3722.5113 638.86733 -10612.225 0 366.71724 0.00093163116 0.00090885854 + 86130 -6243.322 -6250.7395 7.4174553 3729.4774 637.01757 -10617.234 0 355.48608 0.0005989281 0.00057465399 + 86140 -6243.4833 -6250.741 7.2577035 3734.8496 635.48849 -10621.079 0 347.82988 0.00033871034 0.00031309287 + 86150 -6243.6882 -6250.8676 7.1793662 3737.2903 634.56772 -10622.726 0 344.07551 0.00020402574 0.00017814871 + 86160 -6243.9448 -6251.11 7.1652466 3736.2321 634.31594 -10621.658 0 343.39882 0.00020939948 0.00018465816 + 86170 -6244.2553 -6251.4392 7.1839522 3731.9664 634.59967 -10618.005 0 344.2953 0.00033301586 0.00031013304 + 86180 -6244.619 -6251.8052 7.186194 3725.5374 635.165 -10612.508 0 344.40274 0.0005259703 0.00050467814 + 86190 -6245.0383 -6252.1371 7.0988648 3718.4748 635.72434 -10606.336 0 340.21743 0.00072608422 0.00070595051 + 86200 -6245.5122 -6252.3673 6.8551201 3712.4071 636.03317 -10600.808 0 328.53582 0.00087465027 0.00085580262 + 86210 -6246.0223 -6252.4711 6.4487895 3708.6496 635.9419 -10597.063 0 309.06218 0.00093185643 0.00091441704 + 86220 -6246.5334 -6252.479 5.9455522 3707.9073 635.41846 -10595.805 0 284.94422 0.00088472065 0.00086797236 + 86230 -6247.0139 -6252.4466 5.4327069 3710.1704 634.54298 -10597.16 0 260.3658 0.00074563994 0.00072853068 + 86240 -6247.45 -6252.421 4.9710268 3714.7843 633.48075 -10600.686 0 238.2395 0.00054575713 0.0005282125 + 86250 -6247.8408 -6252.4372 4.596412 3720.6289 632.44311 -10605.509 0 220.28585 0.00032771337 0.00031089684 + 86260 -6248.1849 -6252.5283 4.343403 3726.3713 631.6463 -10610.546 0 208.16024 0.00013831398 0.00012340714 + 86270 -6248.4768 -6252.7201 4.2433223 3730.7591 631.27377 -10614.753 0 203.36381 1.9802377e-05 6.7607037e-06 + 86280 -6248.7136 -6253.0107 4.2971267 3732.9009 631.44325 -10617.355 0 205.94242 5.0783102e-07 -1.1889127e-05 + 86290 -6248.9006 -6253.3603 4.4597284 3732.4587 632.18032 -10617.999 0 213.73521 8.7855677e-05 7.4781594e-05 + 86300 -6249.0484 -6253.7053 4.6569803 3729.7059 633.4035 -10616.815 0 223.18863 0.00026624259 0.00025195206 + 86310 -6249.1658 -6253.9857 4.8199425 3725.4451 634.92735 -10614.358 0 230.99869 0.00050006479 0.00048478612 + 86320 -6249.256 -6254.1646 4.9085925 3720.8129 636.48723 -10611.465 0 235.24729 0.00074061554 0.00072472475 + 86330 -6249.3176 -6254.23 4.9123758 3717.0141 637.7834 -10609.028 0 235.42861 0.00093534736 0.00091887226 + 86340 -6249.3504 -6254.1844 4.8340258 3715.036 638.5379 -10607.758 0 231.67364 0.0010382611 0.0010209927 + 86350 -6249.3592 -6254.0329 4.6737035 3715.405 638.55525 -10607.993 0 223.99009 0.0010201841 0.0010022837 + 86360 -6249.3528 -6253.7831 4.4303184 3718.037 637.77567 -10609.596 0 212.32571 0.00087719516 0.00085961918 + 86370 -6249.3363 -6253.458 4.1217061 3722.2249 636.30645 -10611.989 0 197.53528 0.00063466574 0.00061872523 + 86380 -6249.305 -6253.1082 3.8032149 3726.7844 634.41782 -10614.31 0 182.2714 0.00034431557 0.00033047411 + 86390 -6249.2458 -6252.8043 3.5585709 3730.3499 632.49664 -10615.651 0 170.54668 7.3352872e-05 6.0330063e-05 + 86400 -6249.1484 -6252.6086 3.4601686 3731.7509 630.96349 -10615.323 0 165.83069 -0.00011214086 -0.00012684497 + 86410 -6249.0173 -6252.5461 3.5288359 3730.3562 630.17028 -10613.073 0 169.12162 -0.00016473973 -0.00018298047 + 86420 -6248.8711 -6252.6009 3.7298569 3726.2746 630.30356 -10609.179 0 178.75567 -6.8752015e-05 -9.0019295e-05 + 86430 -6248.7295 -6252.7399 4.0104184 3720.3528 631.32091 -10604.414 0 192.20175 0.00015473445 0.00013328826 + 86440 -6248.5969 -6252.9413 4.3443809 3713.9858 632.94392 -10599.871 0 208.20711 0.00045178521 0.00043337947 + 86450 -6248.4575 -6253.2017 4.7441658 3708.7978 634.71916 -10596.719 0 227.36704 0.00074745644 0.00073320254 + 86460 -6248.2868 -6253.5155 5.2287019 3706.2592 636.13909 -10595.914 0 250.58873 0.00096324123 0.00095100533 + 86470 -6248.0727 -6253.8421 5.7693583 3707.3078 636.79389 -10597.944 0 276.50002 0.0010368578 0.0010224808 + 86480 -6247.8341 -6254.0881 6.2540237 3712.0511 636.50926 -10602.648 0 299.72791 0.00094037389 0.0009207631 + 86490 -6247.617 -6254.1287 6.5116742 3719.6288 635.4204 -10609.178 0 312.07597 0.00069233002 0.00066833084 + 86500 -6247.4651 -6253.8751 6.4099094 3728.3071 633.94656 -10616.129 0 307.19882 0.00035922911 0.00033555941 + 86510 -6247.3808 -6253.3485 5.9676887 3735.8429 632.66437 -10621.856 0 286.00513 4.2060221e-05 2.3474202e-05 + 86520 -6247.3172 -6252.6937 5.3764441 3740.0877 632.12055 -10624.902 0 257.66937 -0.00015280018 -0.00016617486 + 86530 -6247.2159 -6252.0994 4.8834806 3739.671 632.64946 -10624.42 0 234.04379 -0.00015064022 -0.00016411727 + 86540 -6247.0572 -6251.6864 4.6292154 3734.5002 634.25409 -10620.441 0 221.85797 6.1996211e-05 4.2117833e-05 + 86550 -6246.8746 -6251.4611 4.5864951 3725.8399 636.58279 -10613.884 0 219.81058 0.00042969532 0.00040191741 + 86560 -6246.7196 -6251.3687 4.6491556 3715.9246 639.00799 -10606.301 0 222.81362 0.00084637138 0.00081558561 + 86570 -6246.6102 -6251.38 4.7697938 3707.2777 640.79233 -10599.45 0 228.59528 0.0011903241 0.0011636692 + 86580 -6246.5117 -6251.522 5.0102761 3702.0101 641.30385 -10594.836 0 240.12054 0.0013610685 0.0013418532 + 86590 -6246.3634 -6251.8296 5.4662185 3701.3125 640.21894 -10593.361 0 261.97186 0.0013058378 0.0012907831 + 86600 -6246.1293 -6252.2736 6.1443431 3705.2208 637.64606 -10595.141 0 294.4714 0.0010310902 0.001012964 + 86610 -6245.8313 -6252.7341 6.9028318 3712.6439 634.12401 -10599.502 0 330.82243 0.00059987618 0.00057320395 + 86620 -6245.5399 -6253.0479 7.5079754 3721.6174 630.48714 -10605.152 0 359.82431 0.00011738705 8.2739089e-05 + 86630 -6245.3265 -6253.0984 7.7718522 3729.7516 627.63444 -10610.484 0 372.47077 -0.00029331996 -0.00032977718 + 86640 -6245.214 -6252.8836 7.6695834 3734.8203 626.27491 -10613.979 0 367.56947 -0.00052242123 -0.00055370537 + 86650 -6245.1666 -6252.5093 7.3427549 3735.3774 626.73235 -10614.619 0 351.90602 -0.00050475233 -0.00052821466 + 86660 -6245.1255 -6252.1143 6.9888094 3731.2207 628.86796 -10612.203 0 334.94296 -0.0002414035 -0.00026009405 + 86670 -6245.0565 -6251.7892 6.7326737 3723.511 632.13457 -10607.435 0 322.6675 0.00019801044 0.00017846093 + 86680 -6244.9677 -6251.5481 6.5803725 3714.4556 635.73532 -10601.739 0 315.36837 0.00069528849 0.00067124372 + 86690 -6244.8912 -6251.3633 6.4720963 3706.6404 638.83706 -10596.841 0 310.17917 0.001119571 0.0010916756 + 86700 -6244.8498 -6251.2202 6.370447 3702.2469 640.7812 -10594.248 0 305.30757 0.0013664271 0.0013382547 + 86710 -6244.8385 -6251.1437 6.3052387 3702.4354 641.23772 -10594.817 0 302.18242 0.0013862832 0.0013610247 + 86720 -6244.8311 -6251.1783 6.3472553 3707.0837 640.26293 -10598.525 0 304.19609 0.0011933824 0.0011713945 + 86730 -6244.8027 -6251.3462 6.5435139 3714.9144 638.24879 -10604.509 0 313.6019 0.00085471799 0.00083356952 + 86740 -6244.7499 -6251.6169 6.8670309 3723.9104 635.78683 -10611.314 0 329.10665 0.00046555578 0.00044217408 + 86750 -6244.6946 -6251.9106 7.2159434 3731.8596 633.49499 -10617.265 0 345.8285 0.00012139868 9.4538921e-05 + 86760 -6244.6703 -6252.1341 7.4638401 3736.8784 631.8612 -10620.874 0 357.7091 -0.00010481712 -0.00013367544 + 86770 -6244.6989 -6252.2275 7.528549 3737.8076 631.1437 -10621.179 0 360.81031 -0.00017560111 -0.00020361636 + 86780 -6244.7786 -6252.1874 7.4087312 3734.4283 631.34488 -10617.961 0 355.06797 -9.1757693e-05 -0.00011714913 + 86790 -6244.892 -6252.0536 7.1616009 3727.482 632.25374 -10611.789 0 343.2241 0.00011245348 8.9072046e-05 + 86800 -6245.0262 -6251.8739 6.8476427 3718.497 633.53416 -10603.905 0 328.17746 0.00037952672 0.00035600307 + 86810 -6245.1855 -6251.6812 6.4957149 3709.4434 634.82533 -10595.95 0 311.3111 0.00064246612 0.00061719329 + 86820 -6245.3841 -6251.5011 6.1170176 3702.2774 635.82085 -10589.599 0 293.16181 0.00083980561 0.00081301111 + 86830 -6245.6297 -6251.3753 5.7455692 3698.4837 636.31024 -10586.169 0 275.35991 0.00092863073 0.00090174659 + 86840 -6245.9145 -6251.3679 5.4533503 3698.7426 636.19113 -10586.302 0 261.35514 0.00089219546 0.00086617812 + 86850 -6246.2259 -6251.5384 5.3125123 3702.8172 635.47298 -10589.829 0 254.6054 0.00074059766 0.00071513951 + 86860 -6246.5625 -6251.8989 5.3364617 3709.6661 634.28216 -10595.847 0 255.75319 0.00050615158 0.00048062643 + 86870 -6246.9359 -6252.3964 5.4604774 3717.7118 632.85785 -10602.966 0 261.69671 0.00023667516 0.00021157649 + 86880 -6247.3541 -6252.9386 5.5844659 3725.1822 631.52082 -10609.642 0 267.63894 -1.176362e-05 -3.4777228e-05 + 86890 -6247.8032 -6253.4396 5.6363855 3730.4764 630.60926 -10614.525 0 270.12722 -0.00018383717 -0.00020358174 + 86900 -6248.2493 -6253.8443 5.5949841 3732.5122 630.39493 -10616.751 0 268.14303 -0.00023696009 -0.00025427435 + 86910 -6248.6593 -6254.1177 5.4583104 3730.9879 631.00519 -10616.111 0 261.59286 -0.00015410702 -0.0001714084 + 86920 -6249.0192 -6254.2265 5.207282 3726.4634 632.3745 -10613.064 0 249.56217 4.8289908e-05 2.9205387e-05 + 86930 -6249.3327 -6254.1483 4.8155627 3720.2064 634.2409 -10608.596 0 230.78879 0.00032235438 0.00030205235 + 86940 -6249.6053 -6253.9014 4.2960223 3713.8458 636.19247 -10603.94 0 205.88949 0.00060068905 0.0005816452 + 86950 -6249.8325 -6253.5616 3.7290992 3708.9507 637.75801 -10600.27 0 178.71936 0.00081353087 0.00079799451 + 86960 -6250.0021 -6253.2419 3.2397781 3706.6611 638.52279 -10598.426 0 155.26835 0.00090556683 0.00089368261 + 86970 -6250.1057 -6253.0454 2.9397424 3707.4466 638.24023 -10598.732 0 140.88895 0.00084872281 0.00083837399 + 86980 -6250.1478 -6253.0225 2.8747562 3711.0248 636.90772 -10600.955 0 137.77445 0.00064916179 0.00063755989 + 86990 -6250.1468 -6253.1564 3.0095217 3716.4327 634.78283 -10604.372 0 144.23317 0.0003476473 0.00033346402 + 87000 -6250.125 -6253.3861 3.2611386 3722.2341 632.33087 -10607.951 0 156.29206 1.2801112e-05 -2.8504835e-06 + 87010 -6250.0913 -6253.6528 3.5614592 3726.8348 630.1143 -10610.602 0 170.68511 -0.00027281888 -0.00028757986 + 87020 -6250.0317 -6253.9303 3.898574 3728.8705 628.65228 -10611.453 0 186.84154 -0.00043274572 -0.00044557461 + 87030 -6249.9178 -6254.2125 4.2947608 3727.5997 628.28801 -10610.1 0 205.82903 -0.00041895913 -0.00043165096 + 87040 -6249.7327 -6254.4703 4.737568 3723.1809 629.09726 -10606.748 0 227.05084 -0.00022937483 -0.0002452429 + 87050 -6249.4904 -6254.6281 5.1377103 3716.6978 630.86053 -10602.186 0 246.22791 8.7694525e-05 6.6994914e-05 + 87060 -6249.2281 -6254.5969 5.3687702 3709.8755 633.10922 -10597.582 0 257.30159 0.00044610761 0.00042254401 + 87070 -6248.9771 -6254.3363 5.359228 3704.5715 635.24339 -10594.151 0 256.84428 0.00074773328 0.00072562287 + 87080 -6248.7389 -6253.8904 5.1514946 3702.2326 636.69765 -10592.821 0 246.88853 0.00091170822 0.0008942849 + 87090 -6248.4877 -6253.3643 4.8766526 3703.5028 637.10836 -10593.976 0 233.71655 0.00089688214 0.0008836545 + 87100 -6248.1932 -6252.8643 4.6711101 3708.0811 636.4256 -10597.371 0 223.8658 0.00071156642 0.0006985089 + 87110 -6247.8458 -6252.4458 4.6000126 3714.8269 634.92919 -10602.202 0 220.45841 0.00040972723 0.00039207739 + 87120 -6247.4669 -6252.102 4.6350888 3722.0558 633.14109 -10607.299 0 222.13946 7.6021431e-05 5.1772226e-05 + 87130 -6247.0983 -6251.7961 4.6977334 3727.9407 631.66144 -10611.398 0 225.14174 -0.00019620447 -0.00022448487 + 87140 -6246.7744 -6251.5163 4.741853 3730.9391 630.97889 -10613.434 0 227.2562 -0.00032898516 -0.00035556278 + 87150 -6246.494 -6251.313 4.8189908 3730.1749 631.31474 -10612.803 0 230.95308 -0.00028079014 -0.00030088382 + 87160 -6246.2165 -6251.2814 5.0649415 3725.7078 632.55162 -10609.541 0 242.74042 -5.9786701e-05 -7.352923e-05 + 87170 -6245.8933 -6251.4907 5.5974117 3718.6042 634.27225 -10604.367 0 268.25938 0.00027490752 0.00026206275 + 87180 -6245.5157 -6251.9088 6.3931205 3710.7274 635.89731 -10598.534 0 306.39421 0.00062680139 0.00060817471 + 87190 -6245.137 -6252.3876 7.2506336 3704.2278 636.87724 -10593.493 0 347.49105 0.00088979465 0.00086314065 + 87200 -6244.8422 -6252.7344 7.8922045 3700.8577 636.8719 -10590.464 0 378.23872 0.00098339085 0.00095329483 + 87210 -6244.6837 -6252.8263 8.1426348 3701.3755 635.85569 -10590.058 0 390.24075 0.00088217783 0.00085663071 + 87220 -6244.6382 -6252.6827 8.0445038 3705.3131 634.11413 -10592.11 0 385.53776 0.00062517808 0.00060872358 + 87230 -6244.6267 -6252.434 7.8072906 3711.2234 632.1403 -10595.798 0 374.16917 0.00029874608 0.00028802096 + 87240 -6244.5837 -6252.2073 7.6235317 3717.2744 630.47563 -10599.957 0 365.36241 8.634863e-07 -1.3073401e-05 + 87250 -6244.5134 -6252.0233 7.509815 3721.884 629.55175 -10603.459 0 359.91247 -0.00019454078 -0.00021847263 + 87260 -6244.4804 -6251.8051 7.3247226 3724.1068 629.57936 -10605.491 0 351.04181 -0.00025571191 -0.00028793545 + 87270 -6244.5398 -6251.494 6.9542194 3723.6861 630.50991 -10605.69 0 333.28521 -0.00018920492 -0.00022084215 + 87280 -6244.676 -6251.1548 6.4788643 3720.908 632.07383 -10604.137 0 310.50353 -2.451786e-05 -4.7602252e-05 + 87290 -6244.8104 -6250.9553 6.1448838 3716.4546 633.87697 -10601.287 0 294.49731 0.00019845862 0.00018370551 + 87300 -6244.8708 -6251.0297 6.1589496 3711.3164 635.52011 -10597.866 0 295.17142 0.00043416391 0.00041966267 + 87310 -6244.854 -6251.3558 6.501748 3706.6756 636.70233 -10594.734 0 311.60025 0.00063435107 0.00061153408 + 87320 -6244.8269 -6251.761 6.9341148 3703.6582 637.27787 -10592.697 0 332.32169 0.00075670436 0.0007238894 + 87330 -6244.8657 -6252.0525 7.186732 3702.9945 637.25448 -10592.301 0 344.42852 0.00077792422 0.00074109373 + 87340 -6244.9925 -6252.1509 7.1584142 3704.7704 636.7451 -10593.666 0 343.07137 0.00070195466 0.00066884614 + 87350 -6245.1642 -6252.1176 6.9533824 3708.4273 635.90265 -10596.448 0 333.2451 0.00055577813 0.00052924195 + 87360 -6245.3205 -6252.0695 6.7489793 3713.0073 634.87046 -10599.947 0 323.44896 0.00037541442 0.00035197684 + 87370 -6245.4394 -6252.0738 6.6344114 3717.4798 633.7662 -10603.32 0 317.95822 0.00019266233 0.00016688054 + 87380 -6245.5495 -6252.1139 6.564371 3720.971 632.69548 -10605.78 0 314.60149 3.1047827e-05 1.0324966e-06 + 87390 -6245.695 -6252.1429 6.447969 3722.844 631.77471 -10606.762 0 309.02285 -8.9798879e-05 -0.00012083677 + 87400 -6245.8899 -6252.1573 6.2674897 3722.7114 631.13869 -10606.007 0 300.37327 -0.00014962216 -0.00017679393 + 87410 -6246.1068 -6252.2138 6.1070199 3720.4896 630.91736 -10603.621 0 292.68266 -0.00013047435 -0.00015197513 + 87420 -6246.3055 -6252.3754 6.0699893 3716.5039 631.18444 -10600.064 0 290.90794 -2.7091249e-05 -4.5839392e-05 + 87430 -6246.472 -6252.642 6.1699073 3711.5409 631.90201 -10596.085 0 295.69658 0.0001427078 0.00012181009 + 87440 -6246.6332 -6252.929 6.2958668 3706.7385 632.89547 -10592.563 0 301.73326 0.00033637388 0.00031091324 + 87450 -6246.8332 -6253.1191 6.2859325 3703.2907 633.88364 -10590.293 0 301.25715 0.00049753042 0.00046979082 + 87460 -6247.0936 -6253.145 6.0513852 3702.0718 634.56113 -10589.778 0 290.01633 0.00057552898 0.00055044318 + 87470 -6247.3907 -6253.0397 5.6489978 3703.35 634.70195 -10591.092 0 270.73167 0.00054413826 0.00052470485 + 87480 -6247.6732 -6252.9082 5.2349808 3706.7216 634.24257 -10593.872 0 250.88965 0.00041014016 0.00039445387 + 87490 -6247.9073 -6252.8414 4.9341309 3711.276 633.31207 -10597.429 0 236.47124 0.00020900233 0.00019187032 + 87500 -6248.1062 -6252.8461 4.739824 3715.8817 632.19866 -10600.926 0 227.15896 -7.6064153e-06 -2.9654792e-05 + 87510 -6248.3165 -6252.859 4.5424567 3719.4604 631.26288 -10603.582 0 217.70001 -0.00018515581 -0.00021019182 + 87520 -6248.5692 -6252.834 4.2647909 3721.1886 630.82314 -10604.846 0 204.39271 -0.00027709749 -0.00029934499 + 87530 -6248.8463 -6252.8145 3.9681984 3720.6547 631.05023 -10604.519 0 190.17833 -0.00025492031 -0.00027036816 + 87540 -6249.0968 -6252.9102 3.8133258 3717.9945 631.9069 -10602.812 0 182.75597 -0.00011860735 -0.00012918571 + 87550 -6249.2883 -6253.1956 3.907353 3713.9446 633.15365 -10600.294 0 187.26228 9.7003436e-05 8.4935182e-05 + 87560 -6249.4406 -6253.6274 4.1868197 3709.7022 634.41792 -10597.748 0 200.65589 0.0003275516 0.00030905839 + 87570 -6249.6121 -6254.0602 4.4480423 3706.5619 635.30501 -10595.927 0 213.17514 0.00049890747 0.000475198 + 87580 -6249.8483 -6254.3472 4.4988678 3705.4532 635.51784 -10595.318 0 215.61099 0.00055450175 0.00053216463 + 87590 -6250.139 -6254.4406 4.3015895 3706.598 634.94847 -10595.987 0 206.15631 0.00047693342 0.00046228374 + 87600 -6250.4224 -6254.4111 3.9886827 3709.4655 633.71109 -10597.588 0 191.16005 0.00029268041 0.00028609146 + 87610 -6250.6328 -6254.375 3.7422006 3713.0357 632.10711 -10599.518 0 179.34725 5.8501016e-05 5.3639963e-05 + 87620 -6250.7524 -6254.3936 3.6411967 3716.2129 630.53737 -10601.144 0 174.50658 -0.00016154943 -0.00017279028 + 87630 -6250.8224 -6254.4281 3.6056719 3718.1747 629.39068 -10601.994 0 172.80403 -0.00031618543 -0.00033708185 + 87640 -6250.9075 -6254.3898 3.4822567 3718.5246 628.93953 -10601.854 0 166.88928 -0.00037674532 -0.00040297964 + 87650 -6251.041 -6254.2363 3.1952865 3717.2691 629.26934 -10600.775 0 153.13606 -0.00033773242 -0.0003608493 + 87660 -6251.1982 -6254.0284 2.8302044 3714.7309 630.26026 -10599.02 0 135.63928 -0.00021361039 -0.00022781985 + 87670 -6251.3173 -6253.8944 2.5770599 3711.485 631.62749 -10597.007 0 123.50717 -3.5752505e-05 -4.244027e-05 + 87680 -6251.3484 -6253.9332 2.5848291 3708.3037 633.00751 -10595.244 0 123.87951 0.00015146559 0.00014507363 + 87690 -6251.2883 -6254.1375 2.8491713 3706.0349 634.06261 -10594.235 0 136.54828 0.00029895539 0.00028564193 + 87700 -6251.1776 -6254.3993 3.2216573 3705.3732 634.57166 -10594.344 0 154.39989 0.00036659838 0.00034470675 + 87710 -6251.0642 -6254.5922 3.5279616 3706.5913 634.48208 -10595.666 0 169.07971 0.00033800106 0.00031238033 + 87720 -6250.9618 -6254.6598 3.6980472 3709.3809 633.91078 -10597.951 0 177.23117 0.00022849847 0.00020633728 + 87730 -6250.8341 -6254.6398 3.8057159 3712.921 633.09705 -10600.658 0 182.39126 8.0484582e-05 6.5537636e-05 + 87740 -6250.6168 -6254.6076 3.9907684 3716.1675 632.32415 -10603.099 0 191.26001 -5.3040357e-05 -6.3288498e-05 + 87750 -6250.2612 -6254.5899 4.3287388 3718.2269 631.83456 -10604.651 0 207.45745 -0.00012900493 -0.00014120261 + 87760 -6249.7718 -6254.5185 4.7467523 3718.6372 631.76321 -10604.919 0 227.491 -0.00012933697 -0.00014886003 + 87770 -6249.2165 -6254.2665 5.0499848 3717.4477 632.10515 -10603.819 0 242.02361 -6.4417906e-05 -9.0727954e-05 + 87780 -6248.6918 -6253.7477 5.0559691 3715.0959 632.72334 -10601.567 0 242.31041 3.5607558e-05 9.0494804e-06 + 87790 -6248.2576 -6253.0118 4.7542094 3712.1807 633.3942 -10598.587 0 227.84839 0.00013644227 0.00011691948 + 87800 -6247.8949 -6252.2521 4.3572417 3709.2707 633.881 -10595.404 0 208.82347 0.00021312239 0.00020189543 + 87810 -6247.5325 -6251.702 4.1694474 3706.8368 634.01531 -10592.554 0 199.82332 0.00025432453 0.00024456758 + 87820 -6247.1242 -6251.4875 4.3633733 3705.269 633.75719 -10590.514 0 209.11733 0.00025840515 0.00024067175 + 87830 -6246.699 -6251.5593 4.8602353 3704.8571 633.20599 -10589.622 0 232.92975 0.00022870224 0.00019965549 + 87840 -6246.3348 -6251.7654 5.4305702 3705.6691 632.55229 -10589.987 0 260.2634 0.00017388768 0.00014009919 + 87850 -6246.0761 -6251.998 5.9219412 3707.4267 631.99315 -10591.418 0 283.81265 0.00011092755 8.3497268e-05 + 87860 -6245.882 -6252.2705 6.3884867 3709.546 631.65472 -10593.471 0 306.17213 6.2802398e-05 4.728707e-05 + 87870 -6245.6598 -6252.6508 6.9910278 3711.3916 631.55961 -10595.602 0 335.04928 4.754717e-05 3.8500544e-05 + 87880 -6245.3552 -6253.123 7.7678206 3712.5874 631.6464 -10597.357 0 372.27755 6.5466553e-05 5.075808e-05 + 87890 -6245.0137 -6253.5197 8.5059721 3713.1472 631.82207 -10598.489 0 407.65391 9.6422705e-05 6.7581309e-05 + 87900 -6244.7525 -6253.6053 8.852821 3713.3242 632.01844 -10598.948 0 424.27685 0.00011281207 7.2275974e-05 + 87910 -6244.6611 -6253.2496 8.5885399 3713.3037 632.2283 -10598.782 0 411.61102 0.00010084115 5.9687476e-05 + 87920 -6244.7218 -6252.5464 7.824576 3712.9914 632.50659 -10598.044 0 374.99758 7.3867235e-05 4.2018287e-05 + 87930 -6244.8255 -6251.768 6.9424487 3712.08 632.93721 -10596.785 0 332.7211 6.5789612e-05 4.3538003e-05 + 87940 -6244.8669 -6251.1835 6.3165762 3710.3486 633.58002 -10595.112 0 302.72577 0.00010782142 8.6341305e-05 + 87950 -6244.8276 -6250.8886 6.0609837 3707.9531 634.41745 -10593.259 0 290.47635 0.00020532352 0.00017551381 + 87960 -6244.7756 -6250.7927 6.0171254 3705.4629 635.31908 -10591.575 0 288.37441 0.00033128951 0.00029250453 + 87970 -6244.7866 -6250.7682 5.9815932 3703.6057 636.04327 -10590.417 0 286.67151 0.00044018193 0.00040040886 + 87980 -6244.8645 -6250.8107 5.9462626 3702.9212 636.29334 -10590.025 0 284.97827 0.00049059654 0.0004579425 + 87990 -6244.9391 -6251.0436 6.1044719 3703.5782 635.82589 -10590.448 0 292.56054 0.00046050972 0.00043481385 + 88000 -6244.9458 -6251.5623 6.6164837 3705.4196 634.57397 -10591.556 0 317.09902 0.00034920954 0.00032258304 + 88010 -6244.9018 -6252.2883 7.386478 3708.0781 632.72326 -10593.09 0 354.00147 0.0001736996 0.00013928683 + 88020 -6244.9019 -6252.991 8.0891059 3711.0086 630.69238 -10594.692 0 387.67534 -3.1826588e-05 -7.2202562e-05 + 88030 -6245.0344 -6253.4513 8.416817 3713.4821 629.01262 -10595.946 0 403.3811 -0.00021641668 -0.00025353577 + 88040 -6245.304 -6253.6041 8.3000797 3714.7121 628.15102 -10596.467 0 397.78639 -0.00032295064 -0.00034878044 + 88050 -6245.6337 -6253.5376 7.9038985 3714.1618 628.34714 -10596.047 0 378.79917 -0.00031114128 -0.00032611995 + 88060 -6245.939 -6253.3783 7.4392467 3711.8695 629.52829 -10594.776 0 356.53044 -0.00018051949 -0.0001929898 + 88070 -6246.1951 -6253.1814 6.9862754 3708.5473 631.3359 -10593.065 0 334.82152 2.3517002e-05 4.5475175e-06 + 88080 -6246.4398 -6252.9181 6.4782846 3705.3385 633.25128 -10591.508 0 310.47575 0.00022706517 0.00019912903 + 88090 -6246.7214 -6252.5524 5.8310439 3703.3374 634.77063 -10590.66 0 279.45634 0.00035952506 0.00032799977 + 88100 -6247.0459 -6252.1272 5.081325 3703.134 635.5618 -10590.823 0 243.5256 0.00038247464 0.00035557669 + 88110 -6247.3692 -6251.7791 4.4099605 3704.6181 635.54747 -10591.945 0 211.35005 0.00030149219 0.00028357962 + 88120 -6247.6331 -6251.6695 4.0363556 3707.1141 634.89405 -10593.678 0 193.44481 0.00015784641 0.00014634187 + 88130 -6247.8097 -6251.884 4.0743209 3709.7263 633.92351 -10595.534 0 195.26432 7.4390812e-06 -4.7579281e-06 + 88140 -6247.9206 -6252.3761 4.4554848 3711.6937 632.98811 -10597.058 0 213.53183 -0.00010165502 -0.00012062013 + 88150 -6248.0222 -6252.9906 4.9684157 3712.6 632.35298 -10597.944 0 238.11436 -0.00014405733 -0.00017046809 + 88160 -6248.1676 -6253.552 5.3844292 3712.4027 632.12258 -10598.077 0 258.05206 -0.00012061209 -0.00014972655 + 88170 -6248.3699 -6253.9557 5.5857759 3711.3364 632.22999 -10597.522 0 267.70172 -5.224145e-05 -7.8133905e-05 + 88180 -6248.5955 -6254.201 5.6054792 3709.7845 632.48707 -10596.473 0 268.64602 3.0537748e-05 9.9451653e-06 + 88190 -6248.7951 -6254.3448 5.5497283 3708.1763 632.67329 -10595.194 0 265.97412 9.7181063e-05 7.8607614e-05 + 88200 -6248.948 -6254.4225 5.4744435 3706.9089 632.62851 -10593.96 0 262.36605 0.00012412938 0.0001023083 + 88210 -6249.078 -6254.411 5.3329867 3706.256 632.31401 -10592.981 0 255.58665 0.00010059742 7.3403704e-05 + 88220 -6249.2265 -6254.2672 5.0407145 3706.2688 631.81964 -10592.356 0 241.57932 3.3063045e-05 3.6679902e-06 + 88230 -6249.4105 -6253.996 4.5854907 3706.7374 631.317 -10592.05 0 219.76245 -5.4966519e-05 -8.0734368e-05 + 88240 -6249.605 -6253.6806 4.0755667 3707.2763 630.98019 -10591.937 0 195.32402 -0.00013106165 -0.00014964094 + 88250 -6249.7619 -6253.4445 3.6826372 3707.5185 630.9093 -10591.872 0 176.49264 -0.00016806093 -0.00018113942 + 88260 -6249.8481 -6253.3764 3.5283449 3707.3208 631.08912 -10591.786 0 169.09809 -0.00015745027 -0.00017062711 + 88270 -6249.8707 -6253.4735 3.6028168 3706.8537 631.39873 -10591.726 0 172.66719 -0.00011418263 -0.00013241865 + 88280 -6249.8708 -6253.6509 3.7801272 3706.5083 631.6646 -10591.824 0 181.16491 -6.9245948e-05 -9.2795462e-05 + 88290 -6249.8888 -6253.8127 3.9238392 3706.6578 631.73318 -10592.204 0 188.05239 -5.3152117e-05 -7.7452294e-05 + 88300 -6249.929 -6253.9254 3.9964602 3707.4177 631.5357 -10592.879 0 191.5328 -7.945926e-05 -9.9155666e-05 + 88310 -6249.9536 -6254.0281 4.0745619 3708.5613 631.1236 -10593.713 0 195.27587 -0.00013787146 -0.00015139859 + 88320 -6249.9123 -6254.1695 4.257242 3709.6335 630.66171 -10594.465 0 204.03093 -0.00020013472 -0.00021079468 + 88330 -6249.7788 -6254.3362 4.5573645 3710.1742 630.37751 -10594.888 0 218.41448 -0.0002338852 -0.0002467323 + 88340 -6249.5646 -6254.4409 4.8763649 3709.9091 630.47879 -10594.829 0 233.70277 -0.00021627574 -0.00023386464 + 88350 -6249.3018 -6254.3824 5.0805429 3708.8319 631.06564 -10594.28 0 243.48812 -0.00014185797 -0.00016254651 + 88360 -6249.0142 -6254.1225 5.1083582 3707.1872 632.07007 -10593.38 0 244.82119 -2.3901504e-05 -4.382103e-05 + 88370 -6248.6983 -6253.7199 5.0215512 3705.4028 633.25162 -10592.374 0 240.66091 0.00010903348 9.2297371e-05 + 88380 -6248.3294 -6253.2951 4.9657219 3703.9979 634.25967 -10591.553 0 237.98525 0.00021967573 0.00020474821 + 88390 -6247.8847 -6252.9565 5.0717868 3703.4634 634.74881 -10591.169 0 243.06848 0.00027131041 0.00025391358 + 88400 -6247.3698 -6252.7373 5.3674314 3704.1101 634.51002 -10591.357 0 257.23743 0.00023933202 0.00021586371 + 88410 -6246.8258 -6252.5937 5.767905 3705.9043 633.56513 -10592.063 0 276.43037 0.00012300342 9.3912053e-05 + 88420 -6246.3024 -6252.4667 6.1643837 3708.3646 632.17811 -10593.009 0 295.43185 -4.764993e-05 -7.8087435e-05 + 88430 -6245.8181 -6252.351 6.5328391 3710.6292 630.76992 -10593.75 0 313.09031 -0.00021668148 -0.00024456354 + 88440 -6245.3514 -6252.2943 6.942888 3711.7482 629.77071 -10593.813 0 332.74215 -0.00032171505 -0.00034760568 + 88450 -6244.8791 -6252.3253 7.4462509 3711.0956 629.47023 -10592.891 0 356.86612 -0.00032088162 -0.0003491965 + 88460 -6244.4202 -6252.3919 7.971713 3708.6678 629.92214 -10590.982 0 382.04922 -0.00021224436 -0.00024640464 + 88470 -6244.0306 -6252.3862 8.355587 3705.0917 630.93231 -10588.41 0 400.44661 -3.4188351e-05 -7.2875659e-05 + 88480 -6243.753 -6252.2347 8.4817374 3701.3622 632.13331 -10585.73 0 406.49245 0.00015227344 0.00011366441 + 88490 -6243.5782 -6251.9579 8.3797738 3698.4847 633.11896 -10583.562 0 401.60578 0.00028763199 0.00025213814 + 88500 -6243.4613 -6251.6422 8.1808771 3697.1908 633.58918 -10582.422 0 392.07353 0.0003324077 0.00029870095 + 88510 -6243.37 -6251.3624 7.992401 3697.7784 633.45011 -10582.591 0 383.0407 0.00027601807 0.0002405156 + 88520 -6243.3111 -6251.1425 7.8313535 3700.048 632.83384 -10584.024 0 375.3224 0.00013838699 9.9615477e-05 + 88530 -6243.3114 -6250.9831 7.6717605 3703.334 632.03769 -10586.355 0 367.67381 -3.430839e-05 -7.3822341e-05 + 88540 -6243.3808 -6250.911 7.5302251 3706.6722 631.41165 -10588.995 0 360.89064 -0.00018183081 -0.00021784022 + 88550 -6243.4976 -6250.9844 7.4867403 3709.1008 631.23444 -10591.32 0 358.8066 -0.00025014968 -0.00028063951 + 88560 -6243.6276 -6251.2462 7.6185444 3709.9959 631.61741 -10592.86 0 365.1234 -0.00021303449 -0.00024011228 + 88570 -6243.757 -6251.6695 7.9125633 3709.2913 632.46558 -10593.426 0 379.21443 -8.4094391e-05 -0.00011224735 + 88580 -6243.9084 -6252.1502 8.2418057 3707.4715 633.50862 -10593.13 0 394.99357 8.8098647e-05 5.5687607e-05 + 88590 -6244.1258 -6252.5595 8.4336513 3705.3371 634.39302 -10592.29 0 404.18789 0.00024019917 0.00020406026 + 88600 -6244.4402 -6252.815 8.3748188 3703.6586 634.80616 -10591.28 0 401.36831 0.00031974319 0.00028347048 + 88610 -6244.8461 -6252.9172 8.0710677 3702.8868 634.5889 -10590.393 0 386.81085 0.00030424971 0.0002716794 + 88620 -6245.3046 -6252.932 7.6274285 3703.0365 633.79248 -10589.761 0 365.54917 0.00020623306 0.00017871194 + 88630 -6245.767 -6252.9407 7.1737395 3703.7704 632.65544 -10589.367 0 343.80585 6.3855593e-05 3.9449058e-05 + 88640 -6246.2017 -6252.9878 6.7860208 3704.6155 631.50845 -10589.112 0 325.22419 -7.704327e-05 -0.00010191593 + 88650 -6246.6054 -6253.0588 6.4533987 3705.1911 630.64479 -10588.895 0 309.28308 -0.00018098402 -0.00020869204 + 88660 -6246.9913 -6253.1051 6.1137706 3705.3361 630.21102 -10588.652 0 293.00619 -0.00023347052 -0.00026338251 + 88670 -6247.3662 -6253.0951 5.7288779 3705.1025 630.16697 -10588.365 0 274.55997 -0.00024119604 -0.00027048419 + 88680 -6247.7169 -6253.0503 5.3333287 3704.6632 630.33261 -10588.046 0 255.60303 -0.00022407404 -0.00025037004 + 88690 -6248.0178 -6253.0322 5.0143352 3704.2107 630.494 -10587.737 0 240.31508 -0.00020430173 -0.0002278007 + 88700 -6248.2522 -6253.0932 4.8410076 3703.8882 630.51183 -10587.493 0 232.00825 -0.00019730354 -0.0002204379 + 88710 -6248.4264 -6253.2348 4.8083324 3703.7547 630.38 -10587.369 0 230.44227 -0.00020690985 -0.00023199752 + 88720 -6248.5649 -6253.412 4.8470119 3703.7688 630.21254 -10587.393 0 232.29601 -0.00022500111 -0.00025215125 + 88730 -6248.6908 -6253.5757 4.884895 3703.8032 630.17344 -10587.552 0 234.11158 -0.00023542053 -0.00026252425 + 88740 -6248.8105 -6253.7101 4.8996563 3703.709 630.38795 -10587.807 0 234.81902 -0.00022158156 -0.00024610682 + 88750 -6248.9128 -6253.8366 4.9237987 3703.4116 630.87664 -10588.125 0 235.97606 -0.00017533178 -0.00019632847 + 88760 -6248.9787 -6253.9884 5.0097156 3702.9862 631.53835 -10588.513 0 240.09368 -0.00010307895 -0.00012209282 + 88770 -6248.9952 -6254.1745 5.1793012 3702.6666 632.18543 -10589.027 0 248.22117 -2.6113885e-05 -4.6427056e-05 + 88780 -6248.9697 -6254.3542 5.3844789 3702.7723 632.61308 -10589.74 0 258.05444 2.5578724e-05 1.2341743e-06 + 88790 -6248.9304 -6254.4452 5.5147936 3703.5593 632.6727 -10590.677 0 264.29985 2.4766336e-05 -3.3956938e-06 + 88800 -6248.9081 -6254.377 5.4689244 3705.0441 632.32295 -10591.744 0 262.10154 -3.9790569e-05 -6.8342082e-05 + 88810 -6248.9098 -6254.1521 5.2423342 3706.8982 631.64806 -10592.698 0 251.24207 -0.0001544532 -0.00017939313 + 88820 -6248.9103 -6253.8575 4.9471998 3708.5111 630.84299 -10593.212 0 237.09758 -0.00028236063 -0.00030255047 + 88830 -6248.874 -6253.6103 4.7363081 3709.2248 630.16647 -10593.002 0 226.99046 -0.00037678293 -0.0003949969 + 88840 -6248.7841 -6253.481 4.6968524 3708.6206 629.86386 -10591.965 0 225.09952 -0.00040022091 -0.00042087141 + 88850 -6248.6545 -6253.4602 4.8057767 3706.707 630.07655 -10590.244 0 230.31979 -0.00033992552 -0.00036566116 + 88860 -6248.5158 -6253.4858 4.9700243 3703.9299 630.77271 -10588.188 0 238.19145 -0.00021316442 -0.0002431869 + 88870 -6248.3936 -6253.4942 5.1005604 3701.0292 631.73802 -10586.261 0 244.44747 -6.1046284e-05 -9.2011081e-05 + 88880 -6248.2937 -6253.4582 5.1645218 3698.8068 632.64076 -10584.906 0 247.51286 6.5964682e-05 3.754144e-05 + 88890 -6248.201 -6253.3956 5.1946215 3697.8799 633.15018 -10584.426 0 248.95541 0.00012531342 0.00010073391 + 88900 -6248.0916 -6253.3477 5.2560264 3698.4953 633.06159 -10584.905 0 251.89828 9.6190312e-05 7.373157e-05 + 88910 -6247.9522 -6253.3408 5.3885602 3700.466 632.37846 -10586.185 0 258.25004 -1.4438385e-05 -3.8165407e-05 + 88920 -6247.7938 -6253.362 5.568182 3703.2338 631.31793 -10587.914 0 266.85852 -0.00017434902 -0.00020165044 + 88930 -6247.6457 -6253.3728 5.727072 3706.0192 630.23512 -10589.627 0 274.47342 -0.0003352788 -0.00036546544 + 88940 -6247.5324 -6253.3501 5.8177164 3708.0175 629.49475 -10590.862 0 278.81761 -0.00044658651 -0.00047660245 + 88950 -6247.4542 -6253.3136 5.8593231 3708.6138 629.34127 -10591.269 0 280.81164 -0.00047076939 -0.00049777258 + 88960 -6247.3902 -6253.3119 5.9216945 3707.5811 629.81805 -10590.711 0 283.80083 -0.00039661173 -0.00042018346 + 88970 -6247.3173 -6253.3806 6.0633002 3705.1895 630.7622 -10589.332 0 290.58737 -0.00024466037 -0.00026686724 + 88980 -6247.2284 -6253.5096 6.2812225 3702.1535 631.86878 -10587.532 0 301.03143 -6.1585029e-05 -8.5220636e-05 + 88990 -6247.1349 -6253.6458 6.5108191 3699.4066 632.79605 -10585.848 0 312.03498 9.5349371e-05 6.8654911e-05 + 89000 -6247.0572 -6253.7187 6.661427 3697.7866 633.27726 -10584.782 0 319.25296 0.00017786905 0.00014854857 + 89010 -6247.0135 -6253.6711 6.6576176 3697.7589 633.20606 -10584.636 0 319.07039 0.00016313619 0.00013354793 + 89020 -6247.009 -6253.4872 6.4782086 3699.2727 632.66718 -10585.427 0 310.47211 6.1611642e-05 3.486287e-05 + 89030 -6247.0272 -6253.2127 6.1854464 3701.7918 631.89843 -10586.903 0 296.4413 -8.6692968e-05 -0.00010894408 + 89040 -6247.0331 -6252.9418 5.9086592 3704.4989 631.19718 -10588.638 0 283.1761 -0.00022761968 -0.00024706097 + 89050 -6246.9974 -6252.7621 5.7646323 3706.6101 630.80966 -10590.182 0 276.27353 -0.00031472257 -0.00033576643 + 89060 -6246.9223 -6252.6956 5.7732581 3707.6548 630.84577 -10591.196 0 276.68692 -0.00032724652 -0.00035361806 + 89070 -6246.8404 -6252.6981 5.8577347 3707.5801 631.24695 -10591.525 0 280.73551 -0.00027486417 -0.00030640897 + 89080 -6246.7834 -6252.7202 5.9367417 3706.6489 631.81409 -10591.183 0 284.52197 -0.00018815533 -0.0002212234 + 89090 -6246.7523 -6252.762 6.0096724 3705.2448 632.28503 -10590.292 0 288.01722 -0.00010269015 -0.00013377134 + 89100 -6246.7207 -6252.8624 6.1417269 3703.7191 632.4356 -10589.017 0 294.34602 -4.6182607e-05 -7.4932791e-05 + 89110 -6246.6663 -6253.04 6.3737091 3702.328 632.16571 -10587.534 0 305.4639 -3.2441945e-05 -6.1164307e-05 + 89120 -6246.5937 -6253.2583 6.6646357 3701.2134 631.5343 -10586.006 0 319.40674 -6.0158124e-05 -9.0918625e-05 + 89130 -6246.5264 -6253.4509 6.9245138 3700.3946 630.73034 -10584.576 0 331.86156 -0.00011445025 -0.000147203 + 89140 -6246.4833 -6253.5721 7.0887939 3699.7928 629.9962 -10583.361 0 339.73478 -0.00017188468 -0.00020517014 + 89150 -6246.4653 -6253.6208 7.1555116 3699.3088 629.53696 -10582.467 0 342.93226 -0.00020960301 -0.00024246198 + 89160 -6246.462 -6253.6239 7.1618257 3698.922 629.4498 -10581.996 0 343.23487 -0.00021566068 -0.00024862957 + 89170 -6246.4674 -6253.6025 7.1350515 3698.7413 629.69805 -10582.042 0 341.9517 -0.00019497816 -0.00022939202 + 89180 -6246.4885 -6253.5506 7.0620579 3698.9658 630.13944 -10582.656 0 338.45344 -0.00016679178 -0.00020317061 + 89190 -6246.5418 -6253.4393 6.8974269 3699.7653 630.59714 -10583.802 0 330.5634 -0.00015421439 -0.00019109238 + 89200 -6246.6391 -6253.2448 6.6056844 3701.1399 630.94139 -10585.326 0 316.58146 -0.00017108018 -0.00020535181 + 89210 -6246.7727 -6252.9836 6.2108488 3702.837 631.14314 -10586.964 0 297.65872 -0.00021301559 -0.00024193176 + 89220 -6246.9127 -6252.724 5.8113056 3704.396 631.27623 -10588.396 0 278.51037 -0.00025786835 -0.00028142422 + 89230 -6247.0252 -6252.5571 5.5319426 3705.3273 631.47211 -10589.356 0 265.12173 -0.00027602176 -0.00029757649 + 89240 -6247.0989 -6252.5385 5.4395518 3705.3439 631.8496 -10589.732 0 260.69385 -0.00024569824 -0.00026966241 + 89250 -6247.158 -6252.6555 5.4975696 3704.5078 632.44461 -10589.608 0 263.47438 -0.00016512224 -0.00019332315 + 89260 -6247.2431 -6252.8523 5.6092314 3703.1999 633.16453 -10589.217 0 268.82584 -5.5125193e-05 -8.518677e-05 + 89270 -6247.3788 -6253.086 5.7071876 3701.9471 633.79324 -10588.826 0 273.52045 4.8464599e-05 2.1090491e-05 + 89280 -6247.556 -6253.3577 5.8016955 3701.2159 634.05974 -10588.633 0 278.0498 0.00010813532 8.6249356e-05 + 89290 -6247.7436 -6253.6907 5.9470906 3701.2647 633.75077 -10588.706 0 285.01795 9.7771506e-05 7.9936693e-05 + 89300 -6247.92 -6254.0802 6.1601958 3702.0848 632.81752 -10588.983 0 295.23115 1.1139894e-05 -7.3372922e-06 + 89310 -6248.0963 -6254.4564 6.3601123 3703.4182 631.42272 -10589.297 0 304.81227 -0.00013594879 -0.00015917926 + 89320 -6248.3114 -6254.7011 6.3897414 3704.8213 629.90028 -10589.423 0 306.23226 -0.0003092747 -0.00033708188 + 89330 -6248.5957 -6254.7201 6.1243445 3705.7602 628.64101 -10589.121 0 293.51295 -0.00046438863 -0.00049214804 + 89340 -6248.9333 -6254.5205 5.5872215 3705.7442 627.95438 -10588.219 0 267.771 -0.00055853786 -0.00058123233 + 89350 -6249.2621 -6254.2229 4.9607686 3704.5039 627.9681 -10586.695 0 237.74787 -0.00056467759 -0.00058175436 + 89360 -6249.5187 -6253.9856 4.4669018 3702.1605 628.60307 -10584.749 0 214.079 -0.00048295019 -0.00049940985 + 89370 -6249.6853 -6253.9001 4.2147933 3699.2776 629.61987 -10582.798 0 201.99654 -0.00034338547 -0.00036586844 + 89380 -6249.8 -6253.9415 4.1415652 3696.7162 630.70527 -10581.363 0 198.48704 -0.00019641882 -0.0002275258 + 89390 -6249.9243 -6254.0112 4.0868922 3695.3168 631.56507 -10580.893 0 195.8668 -9.3826192e-05 -0.00012938999 + 89400 -6250.0954 -6254.0321 3.936727 3695.5526 632.00012 -10581.585 0 188.67005 -6.8093597e-05 -9.9748171e-05 + 89410 -6250.2962 -6254.0209 3.7247057 3697.3328 631.95199 -10583.306 0 178.5088 -0.00011996379 -0.00014128157 + 89420 -6250.4658 -6254.0792 3.6133852 3700.062 631.50983 -10585.651 0 173.17369 -0.00022042783 -0.00023209978 + 89430 -6250.5426 -6254.3072 3.764529 3702.923 630.87668 -10588.107 0 180.41735 -0.00032596832 -0.00033593687 + 89440 -6250.5113 -6254.703 4.1917503 3705.2216 630.30293 -10590.228 0 200.8922 -0.00039866515 -0.00041663115 + 89450 -6250.4192 -6255.1316 4.712402 3706.6075 630.00422 -10591.743 0 225.84475 -0.00042048298 -0.00045053169 + 89460 -6250.3468 -6255.3994 5.0525347 3707.0706 630.08808 -10592.558 0 242.14581 -0.00039526455 -0.00043229852 + 89470 -6250.347 -6255.3869 5.0398163 3706.7733 630.51578 -10592.676 0 241.53628 -0.00034002338 -0.00037322742 + 89480 -6250.4007 -6255.1354 4.7346655 3705.8762 631.11823 -10592.13 0 226.91174 -0.00027353462 -0.00029455917 + 89490 -6250.4286 -6254.8153 4.3867382 3704.4943 631.66405 -10590.974 0 210.23711 -0.00021016269 -0.00021960959 + 89500 -6250.351 -6254.5962 4.2452379 3702.7822 631.95261 -10589.331 0 203.45562 -0.0001607102 -0.00016763823 + 89510 -6250.1469 -6254.52 4.3731178 3701.0263 631.88954 -10587.436 0 209.58434 -0.00013555473 -0.00015028328 + 89520 -6249.8674 -6254.4803 4.6128978 3699.6136 631.51045 -10585.604 0 221.07595 -0.00014402516 -0.00016990698 + 89530 -6249.594 -6254.3268 4.7327941 3698.8613 630.9457 -10584.134 0 226.82205 -0.00018852271 -0.00021931214 + 89540 -6249.3706 -6254.009 4.6383353 3698.8304 630.35073 -10583.19 0 222.29505 -0.0002582824 -0.00028341107 + 89550 -6249.1629 -6253.6391 4.4762374 3699.2851 629.84134 -10582.766 0 214.52641 -0.00033013947 -0.00034383167 + 89560 -6248.8773 -6253.4148 4.537504 3699.8548 629.46482 -10582.734 0 217.46265 -0.0003790617 -0.00038588854 + 89570 -6248.4319 -6253.4569 5.0249958 3700.2911 629.21273 -10582.961 0 240.82599 -0.00039274263 -0.00040472777 + 89580 -6247.8309 -6253.6926 5.8616729 3700.6197 629.05886 -10583.371 0 280.92426 -0.00037950887 -0.00040640089 + 89590 -6247.1851 -6253.8906 6.7054349 3701.0479 628.99546 -10583.934 0 321.36206 -0.00036166978 -0.00040194075 + 89600 -6246.6397 -6253.839 7.1992843 3701.6784 629.0461 -10584.563 0 345.0301 -0.00035649655 -0.00039742388 + 89610 -6246.2538 -6253.5251 7.2712222 3702.2734 629.25219 -10585.051 0 348.47777 -0.00035883608 -0.00038712011 + 89620 -6245.9537 -6253.1494 7.1957617 3702.3185 629.65009 -10585.118 0 344.86127 -0.00034178766 -0.00035582214 + 89630 -6245.6154 -6252.9459 7.3305458 3701.3964 630.25605 -10584.598 0 351.32089 -0.0002775941 -0.00028967794 + 89640 -6245.1959 -6252.9718 7.7759008 3699.5799 631.05753 -10583.609 0 372.6648 -0.0001619992 -0.00018799922 + 89650 -6244.7812 -6253.0623 8.2810852 3697.5089 631.99897 -10582.57 0 396.87607 -2.209575e-05 -6.7836743e-05 + 89660 -6244.5121 -6252.9845 8.4724657 3696.0725 632.96337 -10582.02 0 406.0481 9.7715713e-05 4.1451482e-05 + 89670 -6244.4591 -6252.648 8.1889533 3695.9277 633.77042 -10582.346 0 392.46059 0.00015997712 0.00010989866 + 89680 -6244.5616 -6252.1922 7.6305851 3697.1848 634.21211 -10583.589 0 365.70046 0.00015105585 0.00011811234 + 89690 -6244.6821 -6251.8842 7.2020972 3699.4341 634.12375 -10585.442 0 345.16491 8.1258244e-05 6.2873878e-05 + 89700 -6244.7165 -6251.9173 7.2008157 3702.0228 633.46081 -10587.401 0 345.10349 -2.6971959e-05 -4.3483186e-05 + 89710 -6244.666 -6252.2759 7.6099763 3704.3414 632.34278 -10588.96 0 364.71277 -0.00015050759 -0.00017722985 + 89720 -6244.6227 -6252.7623 8.1396961 3705.9494 631.03671 -10589.748 0 390.09991 -0.00026897861 -0.0003083699 + 89730 -6244.6915 -6253.1463 8.4547398 3706.5489 629.87756 -10589.573 0 405.19857 -0.00036230362 -0.00040639982 + 89740 -6244.9093 -6253.3153 8.4060648 3705.9337 629.15103 -10588.4 0 402.86579 -0.00040985127 -0.00044743391 + 89750 -6245.2216 -6253.322 8.1003783 3704.027 628.98946 -10586.338 0 388.21558 -0.00039630776 -0.00042188543 + 89760 -6245.5343 -6253.3061 7.7718276 3701.015 629.33131 -10583.652 0 372.46958 -0.00032205054 -0.00033954613 + 89770 -6245.7899 -6253.3633 7.5734408 3697.4607 629.96115 -10580.785 0 362.96178 -0.00021002495 -0.00022862774 + 89780 -6246.0055 -6253.47 7.4644633 3694.2467 630.60273 -10578.319 0 357.73896 -0.00010165818 -0.00012778483 + 89790 -6246.2424 -6253.523 7.280649 3692.2928 631.01716 -10576.833 0 348.92955 -4.1129897e-05 -7.3470991e-05 + 89800 -6246.5406 -6253.4517 6.911136 3692.1772 631.07073 -10576.7 0 331.22041 -5.5642481e-05 -8.7215116e-05 + 89810 -6246.8798 -6253.2937 6.413901 3693.8885 630.76146 -10577.944 0 307.39012 -0.00014300266 -0.00016773787 + 89820 -6247.1988 -6253.1705 5.9716981 3696.8555 630.20964 -10580.236 0 286.19728 -0.0002733856 -0.00029112605 + 89830 -6247.4468 -6253.1938 5.7470234 3700.2088 629.61964 -10583.022 0 275.42961 -0.00040294051 -0.00041902003 + 89840 -6247.619 -6253.3895 5.770484 3703.1017 629.22122 -10585.712 0 276.55397 -0.00049076374 -0.00051145508 + 89850 -6247.7532 -6253.6901 5.9368614 3704.9432 629.20162 -10587.835 0 284.52771 -0.00051152841 -0.00053941321 + 89860 -6247.8998 -6253.9864 6.0866254 3705.49 629.6445 -10589.121 0 291.70524 -0.00046053744 -0.00049294845 + 89870 -6248.0871 -6254.1954 6.1083014 3704.8212 630.49265 -10589.509 0 292.74408 -0.00035189521 -0.00038312281 + 89880 -6248.3033 -6254.3029 5.9995842 3703.2511 631.55019 -10589.104 0 287.53374 -0.00021275003 -0.00023837683 + 89890 -6248.5061 -6254.3521 5.8460141 3701.2394 632.53169 -10588.123 0 280.1738 -7.6991935e-05 -9.7157995e-05 + 89900 -6248.6578 -6254.3874 5.7296119 3699.321 633.1481 -10586.857 0 274.59515 2.0296109e-05 1.4400466e-06 + 89910 -6248.7558 -6254.4047 5.6488923 3698.0215 633.19864 -10585.625 0 270.72661 4.9395092e-05 2.7645114e-05 + 89920 -6248.8294 -6254.3642 5.5347794 3697.7122 632.63198 -10584.708 0 265.25769 -4.8805388e-06 -3.0196381e-05 + 89930 -6248.9058 -6254.2551 5.3492939 3698.4481 631.55622 -10584.259 0 256.36818 -0.00013449495 -0.0001608041 + 89940 -6248.983 -6254.1366 5.1535374 3699.9063 630.20274 -10584.246 0 246.98643 -0.00030705648 -0.0003319751 + 89950 -6249.0387 -6254.0972 5.0585006 3701.5061 628.86376 -10584.467 0 242.43173 -0.00047619561 -0.00049991652 + 89960 -6249.062 -6254.1711 5.1090296 3702.649 627.82151 -10584.642 0 244.85337 -0.00059875411 -0.00062273365 + 89970 -6249.0689 -6254.3029 5.2339933 3702.9282 627.2807 -10584.512 0 250.84233 -0.00064879676 -0.00067277365 + 89980 -6249.081 -6254.4014 5.3204498 3702.2139 627.31708 -10583.932 0 254.98581 -0.00062207356 -0.000643486 + 89990 -6249.0957 -6254.4227 5.327014 3700.6422 627.85872 -10582.924 0 255.3004 -0.0005326261 -0.00054943262 + 90000 -6249.0831 -6254.3964 5.31328 3698.5786 628.71187 -10581.687 0 254.64219 -0.00040703864 -0.00042073739 + 90010 -6249.0134 -6254.378 5.3645406 3696.5625 629.62556 -10580.566 0 257.09889 -0.00027881622 -0.00029417658 + 90020 -6248.8871 -6254.3859 5.4988094 3695.1921 630.37396 -10579.952 0 263.5338 -0.00018132189 -0.00020282055 + 90030 -6248.7382 -6254.3818 5.6436085 3694.9433 630.82822 -10580.153 0 270.47339 -0.00013823351 -0.00016624957 + 90040 -6248.6089 -6254.3069 5.6980417 3695.9848 630.99153 -10581.283 0 273.08213 -0.00015434497 -0.0001843174 + 90050 -6248.5132 -6254.144 5.6307424 3698.0835 630.98022 -10583.208 0 269.85677 -0.00021212053 -0.00023768714 + 90060 -6248.4157 -6253.951 5.535269 3700.6677 630.95649 -10585.575 0 265.28115 -0.00027809481 -0.00029621119 + 90070 -6248.2438 -6253.8298 5.5859768 3703.0477 631.04466 -10587.922 0 267.71135 -0.00031804445 -0.00033207744 + 90080 -6247.9251 -6253.8413 5.9162239 3704.6967 631.27406 -10589.812 0 283.53864 -0.00031346403 -0.00033128643 + 90090 -6247.4164 -6253.9377 6.5213183 3705.4314 631.57541 -10590.944 0 312.53816 -0.00026928276 -0.00029742435 + 90100 -6246.7011 -6253.9799 7.2787286 3705.3772 631.82554 -10591.183 0 348.83751 -0.00020765596 -0.00024623284 + 90110 -6245.7714 -6253.8353 8.0638808 3704.7524 631.91153 -10590.499 0 386.46642 -0.00015251987 -0.00019517464 + 90120 -6244.6335 -6253.4765 8.8430167 3703.6462 631.78427 -10588.907 0 423.80698 -0.00011581267 -0.00015469416 + 90130 -6243.3349 -6252.9981 9.6632933 3701.9667 631.48448 -10586.449 0 463.11924 -9.3147654e-05 -0.00012525287 + 90140 -6241.9737 -6252.5365 10.56285 3699.6036 631.13256 -10583.273 0 506.23102 -6.9662173e-05 -9.9667221e-05 + 90150 -6240.6873 -6252.1584 11.47112 3696.672 630.87797 -10579.708 0 549.76044 -3.2290468e-05 -6.8732221e-05 + 90160 -6239.6301 -6251.8111 12.181046 3693.6305 630.82523 -10576.267 0 583.78405 1.8722899e-05 -2.8617427e-05 + 90170 -6238.9316 -6251.3767 12.445135 3691.1666 630.97666 -10573.52 0 596.44069 6.7051689e-05 1.340503e-05 + 90180 -6238.6365 -6250.7896 12.153088 3689.9212 631.22349 -10571.934 0 582.44417 8.8606724e-05 3.9566498e-05 + 90190 -6238.6702 -6250.1346 11.464407 3690.2179 631.38578 -10571.738 0 549.43869 6.5260182e-05 2.9299911e-05 + 90200 -6238.8749 -6249.6391 10.764227 3691.9543 631.28408 -10572.877 0 515.88214 -5.7858324e-06 -3.0423672e-05 + 90210 -6239.1115 -6249.5361 10.424585 3694.7014 630.82239 -10575.06 0 499.60462 -0.00011278392 -0.00013768058 + 90220 -6239.3557 -6249.8901 10.534411 3697.9059 630.0571 -10577.853 0 504.86807 -0.00023649151 -0.00027351969 + 90230 -6239.7051 -6250.5399 10.834853 3701.0174 629.21695 -10580.774 0 519.26694 -0.00035417801 -0.00040448757 + 90240 -6240.28 -6251.2279 10.947889 3703.4755 628.64503 -10583.348 0 524.68428 -0.00043713654 -0.00048908283 + 90250 -6241.0967 -6251.8043 10.707647 3704.6901 628.66818 -10585.163 0 513.17053 -0.00045001939 -0.00048897386 + 90260 -6242.0373 -6252.31 10.272657 3704.2071 629.4485 -10585.966 0 492.32336 -0.00036330961 -0.00038441597 + 90270 -6242.9467 -6252.8616 9.9148572 3702.0378 630.88994 -10585.789 0 475.17559 -0.00017668901 -0.00018839941 + 90280 -6243.7481 -6253.4762 9.7281177 3698.8819 632.64463 -10585.003 0 466.22599 6.5314825e-05 4.9408896e-05 + 90290 -6244.4664 -6254.0202 9.553854 3695.9746 634.21595 -10584.211 0 457.87429 0.00028264168 0.00025495819 + 90300 -6245.1606 -6254.3171 9.1564664 3694.5771 635.12226 -10584.016 0 438.82925 0.00039240122 0.00035575714 + 90310 -6245.8493 -6254.2939 8.4446054 3695.3992 635.06463 -10584.758 0 404.71287 0.00034605616 0.00030932137 + 90320 -6246.4928 -6254.0382 7.545368 3698.2787 634.03408 -10586.351 0 361.61637 0.00015036354 0.00012069455 + 90330 -6247.031 -6253.7367 6.7057704 3702.257 632.31352 -10588.307 0 321.37815 -0.00013679972 -0.0001587096 + 90340 -6247.4311 -6253.557 6.1258982 3705.9706 630.37689 -10589.904 0 293.58741 -0.00043046045 -0.00044940858 + 90350 -6247.7116 -6253.557 5.8454008 3708.1523 628.73169 -10590.441 0 280.1444 -0.00064951311 -0.00067086097 + 90360 -6247.9284 -6253.6795 5.7511096 3708.0353 627.76364 -10589.479 0 275.62544 -0.00074181508 -0.00076689766 + 90370 -6248.1352 -6253.8269 5.6916714 3705.5384 627.62896 -10586.994 0 272.77683 -0.00069596365 -0.00072158415 + 90380 -6248.3472 -6253.9515 5.6042579 3701.2336 628.21921 -10583.404 0 268.58749 -0.00053958029 -0.00056181203 + 90390 -6248.5386 -6254.0821 5.5435057 3696.1746 629.20715 -10579.464 0 265.6759 -0.00032869225 -0.00034723134 + 90400 -6248.6768 -6254.2693 5.5924686 3691.6497 630.16144 -10576.08 0 268.02247 -0.00013248439 -0.00015125889 + 90410 -6248.762 -6254.5107 5.7486733 3688.8764 630.69585 -10574.083 0 275.50868 -1.5157338e-05 -3.8554408e-05 + 90420 -6248.8335 -6254.7312 5.8976495 3688.6607 630.60421 -10573.996 0 282.64845 -1.6689239e-05 -4.4974998e-05 + 90430 -6248.9383 -6254.8387 5.9003508 3691.1081 629.93374 -10575.881 0 282.77792 -0.0001375988 -0.00016593404 + 90440 -6249.0876 -6254.8031 5.7154106 3695.5314 628.9684 -10579.303 0 273.91454 -0.00033544213 -0.00035771066 + 90450 -6249.2434 -6254.6851 5.4416965 3700.6518 628.12534 -10583.462 0 260.79663 -0.00053832175 -0.00055253556 + 90460 -6249.3487 -6254.584 5.2352762 3705.0502 627.80096 -10587.435 0 250.90381 -0.00067236729 -0.00068269437 + 90470 -6249.3769 -6254.5509 5.1740611 3707.6693 628.22326 -10590.444 0 247.97004 -0.00069096321 -0.00070433625 + 90480 -6249.3532 -6254.5515 5.1983509 3708.126 629.36579 -10592.043 0 249.13415 -0.00059109091 -0.00061138686 + 90490 -6249.3301 -6254.5139 5.183799 3706.713 630.95582 -10592.183 0 248.43673 -0.00040952103 -0.00043456935 + 90500 -6249.3404 -6254.4143 5.0739769 3704.1546 632.57301 -10591.142 0 243.17344 -0.00020351567 -0.00022745949 + 90510 -6249.3699 -6254.3145 4.9446624 3701.2941 633.79689 -10589.406 0 236.97596 -2.8225333e-05 -4.681345e-05 + 90520 -6249.3726 -6254.3155 4.9428579 3698.8608 634.34174 -10587.518 0 236.88949 7.8619509e-05 6.4589827e-05 + 90530 -6249.3106 -6254.4708 5.160172 3697.358 634.12764 -10585.956 0 247.30439 0.00010153467 8.7337138e-05 + 90540 -6249.1836 -6254.7331 5.5495109 3697.0281 633.27016 -10585.031 0 265.9637 4.4683709e-05 2.6015981e-05 + 90550 -6249.0275 -6254.9766 5.9490771 3697.8381 632.00821 -10584.823 0 285.11316 -7.3570934e-05 -9.679808e-05 + 90560 -6248.8839 -6255.0777 6.1937926 3699.4796 630.61058 -10585.168 0 296.84129 -0.00022618222 -0.00024979315 + 90570 -6248.7624 -6254.9939 6.2314505 3701.4158 629.30204 -10585.712 0 298.64607 -0.00038260166 -0.00040203387 + 90580 -6248.6297 -6254.7818 6.1520756 3703.0135 628.23085 -10586.026 0 294.84198 -0.00051454085 -0.00052948427 + 90590 -6248.4378 -6254.5365 6.0986531 3703.7432 627.47519 -10585.755 0 292.28168 -0.00060237445 -0.00061782761 + 90600 -6248.1718 -6254.3022 6.1304052 3703.3589 627.06857 -10584.73 0 293.80342 -0.00063952424 -0.00066161326 + 90610 -6247.8706 -6254.0399 6.1692466 3701.941 627.02274 -10583.004 0 295.66491 -0.00063077077 -0.00066064815 + 90620 -6247.5962 -6253.6919 6.0957336 3699.7774 627.33737 -10580.807 0 292.14176 -0.00058394498 -0.00061564191 + 90630 -6247.3726 -6253.2848 5.9122646 3697.1923 627.99746 -10578.475 0 283.34889 -0.00050110748 -0.00052608623 + 90640 -6247.1527 -6252.9618 5.8091607 3694.4829 628.96365 -10576.408 0 278.40757 -0.0003779164 -0.00039272725 + 90650 -6246.8449 -6252.8961 6.051207 3692.014 630.15886 -10575.069 0 290.00779 -0.00021388511 -0.00022405485 + 90660 -6246.3824 -6253.1505 6.7681427 3690.3487 631.45439 -10574.954 0 324.36737 -2.6279518e-05 -4.2625134e-05 + 90670 -6245.7828 -6253.6028 7.8199992 3690.2272 632.66454 -10576.495 0 374.77824 0.00014445713 0.00011448378 + 90680 -6245.1523 -6254.0066 8.8542995 3692.3003 633.56571 -10579.873 0 424.34771 0.0002456144 0.00020464945 + 90690 -6244.6196 -6254.1517 9.5321023 3696.7207 633.95185 -10584.824 0 456.83182 0.00023669495 0.00019635282 + 90700 -6244.2419 -6254.004 9.7621083 3702.8443 633.71681 -10590.565 0 467.855 0.00011385372 8.5788968e-05 + 90710 -6243.9692 -6253.7169 9.7476717 3709.2773 632.92698 -10595.921 0 467.16312 -8.2332023e-05 -9.6339248e-05 + 90720 -6243.707 -6253.4929 9.7859094 3714.3157 631.8381 -10599.647 0 468.99569 -0.00028274292 -0.00029292659 + 90730 -6243.4249 -6253.404 9.9791266 3716.5682 630.83013 -10600.802 0 478.25574 -0.00041995387 -0.00044009492 + 90740 -6243.2045 -6253.3304 10.125983 3715.4239 630.27242 -10599.027 0 485.29393 -0.00045411658 -0.00048931864 + 90750 -6243.1705 -6253.0869 9.9164176 3711.1469 630.37029 -10594.604 0 475.25037 -0.00038131956 -0.00042335168 + 90760 -6243.3682 -6252.6216 9.2533858 3704.6579 631.06505 -10588.345 0 443.47417 -0.00022649902 -0.0002614499 + 90770 -6243.7145 -6252.0925 8.378042 3697.2453 632.04276 -10581.381 0 401.52278 -3.2869729e-05 -5.3788909e-05 + 90780 -6244.0727 -6251.7493 7.6766072 3690.3562 632.85218 -10574.958 0 367.90609 0.00014498379 0.00013240803 + 90790 -6244.3713 -6251.7391 7.3678451 3685.4158 633.07666 -10570.232 0 353.10848 0.00024837516 0.00023168201 + 90800 -6244.6546 -6252.0102 7.3556328 3683.5479 632.48581 -10568.044 0 352.5232 0.00022899562 0.00020028902 + 90810 -6245.0315 -6252.3845 7.3529848 3685.2005 631.11357 -10568.699 0 352.39629 6.9537864e-05 3.2166149e-05 + 90820 -6245.5723 -6252.7239 7.1515959 3689.8657 629.24509 -10571.835 0 342.7446 -0.00020056073 -0.00023546488 + 90830 -6246.2454 -6253.0431 6.7977249 3696.1372 627.32852 -10576.509 0 325.78512 -0.00050782107 -0.00053145632 + 90840 -6246.9478 -6253.4699 6.522113 3702.1791 625.8475 -10581.497 0 312.57625 -0.00076008092 -0.00077346886 + 90850 -6247.5949 -6254.0957 6.5008044 3706.4068 625.19241 -10585.695 0 311.55502 -0.0008829736 -0.00089533383 + 90860 -6248.1783 -6254.8559 6.6775474 3708.0229 625.55935 -10588.438 0 320.02554 -0.00084760654 -0.00086774948 + 90870 -6248.7431 -6255.5469 6.8037895 3707.1582 626.89711 -10589.602 0 326.07577 -0.00067600784 -0.00070480862 + 90880 -6249.3206 -6255.9645 6.643983 3704.6235 628.91599 -10589.504 0 318.41695 -0.00042552675 -0.00045575248 + 90890 -6249.8836 -6256.0409 6.1573245 3701.49 631.16198 -10588.693 0 295.09354 -0.00016442035 -0.00018727657 + 90900 -6250.3613 -6255.8717 5.5103422 3698.7371 633.13951 -10587.748 0 264.08652 4.8149975e-05 3.5831605e-05 + 90910 -6250.6903 -6255.6242 4.9339291 3697.0774 634.44495 -10587.146 0 236.46157 0.0001719424 0.00016562953 + 90920 -6250.8582 -6255.4142 4.555937 3696.9099 634.86703 -10587.191 0 218.34606 0.00018781474 0.00017934987 + 90930 -6250.9119 -6255.2473 4.3354439 3698.3025 634.42317 -10587.973 0 207.7788 9.7583964e-05 8.1731049e-05 + 90940 -6250.9262 -6255.062 4.1357964 3700.9563 633.32405 -10589.342 0 198.21057 -7.6035954e-05 -9.779526e-05 + 90950 -6250.9564 -6254.8263 3.8699149 3704.2006 631.88608 -10590.913 0 185.46804 -0.00029156658 -0.00031285904 + 90960 -6251.0043 -6254.5999 3.5955756 3707.103 630.43002 -10592.133 0 172.32016 -0.00049671794 -0.0005120182 + 90970 -6251.0273 -6254.5047 3.4773561 3708.7277 629.20452 -10592.437 0 166.65442 -0.00064265125 -0.00065196805 + 90980 -6250.98 -6254.6259 3.6458637 3708.4591 628.35243 -10591.437 0 174.73025 -0.00069952156 -0.00070805837 + 90990 -6250.8549 -6254.9313 4.0764656 3706.2314 627.91216 -10589.075 0 195.36711 -0.00066558956 -0.0006789067 + 91000 -6250.6881 -6255.2815 4.5934552 3702.5409 627.83573 -10585.658 0 220.14415 -0.00056507812 -0.00058421466 + 91010 -6250.5277 -6255.5234 4.9956515 3698.2468 628.01194 -10581.782 0 239.41965 -0.00043638596 -0.00045722055 + 91020 -6250.3928 -6255.5886 5.1958354 3694.2858 628.29531 -10578.17 0 249.01359 -0.00031747741 -0.00033464895 + 91030 -6250.2592 -6255.521 5.2617914 3691.4421 628.5437 -10575.507 0 252.17457 -0.00023551671 -0.00024728743 + 91040 -6250.083 -6255.4206 5.3376657 3690.2317 628.66052 -10574.313 0 255.81089 -0.00020351071 -0.00021348182 + 91050 -6249.8397 -6255.3577 5.5180109 3690.8739 628.62852 -10574.86 0 264.45404 -0.0002219717 -0.00023638268 + 91060 -6249.5487 -6255.3176 5.7688888 3693.2875 628.52036 -10577.125 0 276.47752 -0.00028186854 -0.00030454212 + 91070 -6249.2656 -6255.2164 5.9508245 3697.0784 628.47697 -10580.772 0 285.1969 -0.00036631397 -0.00039501027 + 91080 -6249.0419 -6254.9773 5.9354582 3701.539 628.65603 -10585.172 0 284.46046 -0.00045092304 -0.00047829602 + 91090 -6248.8792 -6254.6159 5.736723 3705.7242 629.16836 -10589.508 0 274.93595 -0.00050553518 -0.0005248545 + 91100 -6248.7185 -6254.2551 5.5365168 3708.667 630.03045 -10592.953 0 265.34095 -0.00050109897 -0.00051253284 + 91110 -6248.4861 -6254.0354 5.5493913 3709.7065 631.15604 -10594.898 0 265.95797 -0.00042203734 -0.00043346614 + 91120 -6248.1616 -6253.9913 5.829656 3708.7616 632.38585 -10595.139 0 279.38982 -0.00027741014 -0.00029787505 + 91130 -6247.8048 -6254.0184 6.2136698 3706.3545 633.53208 -10593.905 0 297.79392 -0.00010109002 -0.00013231659 + 91140 -6247.5048 -6253.9801 6.4752564 3703.3413 634.41339 -10591.735 0 310.33062 6.2118803e-05 2.7896561e-05 + 91150 -6247.2979 -6253.8496 6.5516144 3700.5366 634.87362 -10589.26 0 313.99012 0.00017562664 0.00014894715 + 91160 -6247.1321 -6253.7456 6.6134447 3698.4798 634.79382 -10587.019 0 316.95338 0.00022170724 0.00020634211 + 91170 -6246.916 -6253.8202 6.904196 3697.4355 634.10874 -10585.364 0 330.88781 0.00019785539 0.00018729257 + 91180 -6246.607 -6254.1022 7.49516 3697.5056 632.83019 -10584.438 0 359.21012 0.00010626618 8.9430926e-05 + 91190 -6246.2599 -6254.4373 8.1773554 3698.669 631.06938 -10584.176 0 391.90476 -5.0716822e-05 -7.9524687e-05 + 91200 -6245.9909 -6254.5853 8.5944803 3700.6802 629.04354 -10584.309 0 411.89572 -0.00026328277 -0.00029896078 + 91210 -6245.8804 -6254.4018 8.5213381 3702.942 627.05318 -10584.397 0 408.39033 -0.00050185989 -0.00053268019 + 91220 -6245.9014 -6253.957 8.0555604 3704.548 625.42858 -10583.934 0 386.06765 -0.0007141246 -0.00073225624 + 91230 -6245.9438 -6253.4873 7.5435275 3704.5917 624.4619 -10582.541 0 361.52816 -0.0008397978 -0.00084870912 + 91240 -6245.9165 -6253.2125 7.2959466 3702.619 624.34695 -10580.178 0 349.6627 -0.00083653281 -0.00084811606 + 91250 -6245.8291 -6253.1813 7.3522016 3698.9348 625.13735 -10577.253 0 352.35876 -0.00069980211 -0.0007236338 + 91260 -6245.7764 -6253.2814 7.5049298 3694.5395 626.72261 -10574.543 0 359.67835 -0.0004641565 -0.00049892604 + 91270 -6245.848 -6253.3858 7.5378742 3690.7346 628.8275 -10572.948 0 361.25723 -0.00018763949 -0.00022261145 + 91280 -6246.0492 -6253.4811 7.4318755 3688.6573 631.05086 -10573.189 0 356.17717 6.8282114e-05 4.3573262e-05 + 91290 -6246.3073 -6253.6595 7.3522151 3688.9867 632.95147 -10575.598 0 352.3594 0.0002524229 0.00023930368 + 91300 -6246.5469 -6254.0022 7.4553202 3691.8695 634.16352 -10580.035 0 357.30078 0.00032973244 0.00031976339 + 91310 -6246.7663 -6254.4702 7.7038255 3696.9579 634.50343 -10585.931 0 369.21055 0.00028462436 0.00026706237 + 91320 -6247.0492 -6254.8986 7.8494446 3703.4502 634.02838 -10592.377 0 376.18943 0.00012606718 9.6931625e-05 + 91330 -6247.4979 -6255.1031 7.6051833 3710.1363 633.01974 -10598.259 0 364.48306 -0.00010746744 -0.00014213135 + 91340 -6248.1377 -6255.0192 6.8814684 3715.5494 631.88778 -10602.456 0 329.79858 -0.00035064692 -0.00038007479 + 91350 -6248.8753 -6254.7616 5.8862501 3718.311 631.02653 -10604.099 0 282.10213 -0.00052834811 -0.00054637989 + 91360 -6249.5641 -6254.5442 4.9800955 3717.6053 630.67681 -10602.826 0 238.67412 -0.00058443319 -0.00059435051 + 91370 -6250.1131 -6254.5231 4.4099781 3713.5463 630.85536 -10598.925 0 211.3509 -0.0005070446 -0.00051776006 + 91380 -6250.5305 -6254.6996 4.1691592 3707.1983 631.37048 -10593.268 0 199.8095 -0.00033400094 -0.00035198673 + 91390 -6250.8777 -6254.9569 4.0791772 3700.2173 631.90185 -10587.076 0 195.49706 -0.0001356984 -0.00016016976 + 91400 -6251.203 -6255.1764 3.9733511 3694.3056 632.10704 -10581.589 0 190.42528 1.3077184e-05 -1.1472348e-05 + 91410 -6251.5091 -6255.3283 3.8191474 3690.7222 631.72593 -10577.776 0 183.03497 5.8545514e-05 4.0297593e-05 + 91420 -6251.7623 -6255.4732 3.7108841 3690.0134 630.66248 -10576.149 0 177.84639 -1.7939977e-05 -2.8470099e-05 + 91430 -6251.9253 -6255.6907 3.7653548 3691.9938 629.02672 -10576.711 0 180.45693 -0.00019888965 -0.00020602195 + 91440 -6251.9907 -6255.9968 4.0060576 3695.9105 627.12406 -10579.031 0 191.99276 -0.00043959759 -0.00044973105 + 91450 -6251.9922 -6256.3138 4.3216336 3700.6861 625.38874 -10582.389 0 207.11693 -0.00068147103 -0.00069788027 + 91460 -6251.9842 -6256.5184 4.534178 3705.1559 624.27254 -10585.947 0 217.30325 -0.0008652315 -0.0008854639 + 91470 -6252.0016 -6256.5311 4.5295105 3708.2821 624.11655 -10588.93 0 217.07956 -0.00094254952 -0.0009606977 + 91480 -6252.0324 -6256.3732 4.3408729 3709.3648 625.04629 -10590.784 0 208.03899 -0.00088683583 -0.00089884198 + 91490 -6252.0306 -6256.1401 4.109495 3708.2403 626.92737 -10591.308 0 196.95006 -0.00070250606 -0.00070979993 + 91500 -6251.9596 -6255.9175 3.9579766 3705.3831 629.3979 -10590.699 0 189.68845 -0.00042842807 -0.00043663316 + 91510 -6251.8245 -6255.7185 3.8940349 3701.8102 631.96579 -10589.495 0 186.624 -0.00013033555 -0.00014429312 + 91520 -6251.6683 -6255.4969 3.828649 3698.7619 634.13815 -10588.397 0 183.49034 0.0001183814 9.8800353e-05 + 91530 -6251.5351 -6255.2197 3.6846582 3697.2735 635.54146 -10588.035 0 176.5895 0.00026072689 0.00024045267 + 91540 -6251.4327 -6254.9282 3.4955398 3697.8278 635.99722 -10588.753 0 167.52588 0.00027400304 0.00025850897 + 91550 -6251.324 -6254.7326 3.4085494 3700.2409 635.53542 -10590.509 0 163.35681 0.00017325562 0.00016380751 + 91560 -6251.1531 -6254.7394 3.5862746 3703.8029 634.35274 -10592.895 0 171.8744 -6.2416909e-08 -7.7479642e-06 + 91570 -6250.8866 -6254.9655 4.0788806 3707.5672 632.73997 -10595.273 0 195.48285 -0.00019676091 -0.00020924149 + 91580 -6250.5426 -6255.3079 4.7652195 3710.6319 631.00559 -10596.945 0 228.37606 -0.000375851 -0.00039653862 + 91590 -6250.1807 -6255.5996 5.418841 3712.3042 629.41377 -10597.318 0 259.70127 -0.00051124179 -0.00053734751 + 91600 -6249.857 -6255.717 5.8600347 3712.1502 628.14585 -10596.013 0 280.84575 -0.00058969569 -0.00061448676 + 91610 -6249.5802 -6255.6502 6.069962 3710.0142 627.28904 -10592.953 0 290.90664 -0.00060621254 -0.00062489291 + 91620 -6249.3146 -6255.4773 6.1627473 3706.0767 626.8511 -10588.405 0 295.35343 -0.00056281219 -0.00057665264 + 91630 -6249.0262 -6255.273 6.246828 3700.9188 626.79095 -10582.983 0 299.38305 -0.00047081448 -0.00048562625 + 91640 -6248.7245 -6255.0434 6.3189219 3695.4871 627.04768 -10577.578 0 302.83819 -0.00035159669 -0.00037216356 + 91650 -6248.4555 -6254.7477 6.292124 3690.8974 627.55334 -10573.198 0 301.55389 -0.00023212013 -0.00025795702 + 91660 -6248.2585 -6254.3747 6.1162492 3688.1418 628.22752 -10570.744 0 293.12498 -0.00013712271 -0.00016322619 + 91670 -6248.1289 -6253.9943 5.8654434 3687.8328 628.96671 -10570.794 0 281.10496 -8.2982554e-05 -0.00010444108 + 91680 -6248.0207 -6253.7358 5.7150942 3690.0823 629.64778 -10573.466 0 273.89938 -7.6006599e-05 -9.2329856e-05 + 91690 -6247.8805 -6253.7101 5.829593 3694.5217 630.15732 -10578.389 0 279.3868 -0.00011383261 -0.00012957724 + 91700 -6247.6893 -6253.9296 6.2403126 3700.4102 630.44142 -10584.781 0 299.0708 -0.00018697367 -0.00020810778 + 91710 -6247.482 -6254.2807 6.7987474 3706.7617 630.55059 -10591.593 0 325.83412 -0.00027851017 -0.00030702312 + 91720 -6247.3263 -6254.5849 7.2586034 3712.4566 630.64677 -10597.688 0 347.873 -0.00036213668 -0.00039333574 + 91730 -6247.2659 -6254.72 7.4540882 3716.3693 630.95206 -10602.041 0 357.24173 -0.00040205401 -0.00042781582 + 91740 -6247.2759 -6254.7052 7.4293423 3717.5849 631.65166 -10603.942 0 356.05577 -0.00036077239 -0.0003768425 + 91750 -6247.2833 -6254.6603 7.3770387 3715.7242 632.79286 -10603.177 0 353.54908 -0.00021728736 -0.00022776536 + 91760 -6247.24 -6254.6707 7.4307455 3711.2282 634.22767 -10600.127 0 356.12302 1.286634e-05 -1.1475813e-06 + 91770 -6247.1706 -6254.6973 7.5266797 3705.3603 635.62617 -10595.684 0 360.72072 0.00027178671 0.00024826114 + 91780 -6247.1469 -6254.6223 7.4754623 3699.8241 636.56111 -10591.008 0 358.2661 0.00047662323 0.00044587406 + 91790 -6247.2168 -6254.3739 7.1570688 3696.1558 636.63944 -10587.169 0 343.0069 0.00055241946 0.00052257071 + 91800 -6247.3605 -6254.0061 6.6455742 3695.1969 635.6368 -10584.84 0 318.4932 0.0004619567 0.00043978849 + 91810 -6247.5079 -6253.6711 6.1631867 3696.8776 633.58689 -10584.136 0 295.37449 0.00021799634 0.00020347994 + 91820 -6247.5964 -6253.5147 5.9182226 3700.3493 630.79556 -10584.66 0 283.63443 -0.00012421386 -0.00013733609 + 91830 -6247.6191 -6253.5827 5.9636769 3704.3371 627.77813 -10585.698 0 285.81286 -0.00048601797 -0.0005044876 + 91840 -6247.6246 -6253.8111 6.1864747 3707.5299 625.1394 -10586.48 0 296.49058 -0.00078581794 -0.00081103375 + 91850 -6247.672 -6254.1024 6.4303744 3708.8907 623.42607 -10586.419 0 308.17962 -0.00095559401 -0.00098287271 + 91860 -6247.7794 -6254.4156 6.636178 3707.8792 622.98808 -10585.283 0 318.04289 -0.0009541075 -0.0009776305 + 91870 -6247.9154 -6254.7746 6.8591791 3704.6139 623.88678 -10583.275 0 328.73035 -0.00077846696 -0.00079696645 + 91880 -6248.0427 -6255.1915 7.148858 3699.9363 625.87728 -10581.005 0 342.61339 -0.00047077389 -0.00048830508 + 91890 -6248.1658 -6255.5944 7.4286086 3695.2657 628.47268 -10579.333 0 356.0206 -0.00011213079 -0.00013354356 + 91900 -6248.3323 -6255.8442 7.5118432 3692.1902 631.07618 -10579.111 0 360.00968 0.00019993691 0.00017388074 + 91910 -6248.5884 -6255.8292 7.2407418 3691.9145 633.14669 -10580.89 0 347.01697 0.00038397987 0.00035716148 + 91920 -6248.9349 -6255.5486 6.6137416 3694.811 634.34733 -10584.707 0 316.96761 0.00040233436 0.00037954583 + 91930 -6249.3248 -6255.1169 5.7921152 3700.283 634.62352 -10590.023 0 277.59066 0.0002710038 0.00025383218 + 91940 -6249.7011 -6254.6942 4.9931087 3706.9825 634.18237 -10595.859 0 239.29779 4.8647535e-05 3.4602298e-05 + 91950 -6250.0369 -6254.4032 4.3663495 3713.2607 633.38652 -10601.05 0 209.25997 -0.00018778057 -0.00020260198 + 91960 -6250.3447 -6254.2898 3.9451025 3717.655 632.61033 -10604.555 0 189.07145 -0.00036886755 -0.00038632308 + 91970 -6250.6532 -6254.3417 3.6884639 3719.2512 632.11417 -10605.707 0 176.77188 -0.00045107371 -0.00046977682 + 91980 -6250.9775 -6254.5335 3.5559662 3717.8491 631.97609 -10604.359 0 170.42185 -0.00042454072 -0.0004416275 + 91990 -6251.3083 -6254.8504 3.5420127 3713.9422 632.09303 -10600.886 0 169.75312 -0.00031162613 -0.00032550844 + 92000 -6251.6255 -6255.275 3.6494841 3708.5553 632.24002 -10596.07 0 174.90375 -0.00015840392 -0.00016993933 + 92010 -6251.9165 -6255.7609 3.8443954 3702.9832 632.16097 -10590.905 0 184.245 -2.0977251e-05 -3.2300544e-05 + 92020 -6252.1831 -6256.2284 4.0452986 3698.4722 631.6618 -10586.362 0 193.87341 5.087173e-05 3.8429962e-05 + 92030 -6252.4331 -6256.5934 4.1603036 3695.9156 630.6796 -10583.189 0 199.38509 2.8450219e-05 1.5400296e-05 + 92040 -6252.6666 -6256.8062 4.1395133 3695.6482 629.31017 -10581.765 0 198.3887 -8.7542907e-05 -9.9604103e-05 + 92050 -6252.8714 -6256.8717 4.0002955 3697.4099 627.78766 -10582.069 0 191.7166 -0.00026818781 -0.00027827667 + 92060 -6253.0291 -6256.8363 3.8072044 3700.4842 626.42374 -10583.744 0 182.4626 -0.0004663466 -0.0004752105 + 92070 -6253.129 -6256.7519 3.6229183 3703.95 625.52554 -10586.227 0 173.63057 -0.00063149463 -0.00064118544 + 92080 -6253.1765 -6256.643 3.4664226 3706.9493 625.31636 -10588.909 0 166.13042 -0.0007239592 -0.00073615858 + 92090 -6253.1916 -6256.5005 3.3089185 3708.8845 625.88072 -10591.266 0 158.58194 -0.00072403661 -0.000738461 + 92100 -6253.1951 -6256.3065 3.1113949 3709.5056 627.1468 -10592.959 0 149.1155 -0.00063398448 -0.00064827436 + 92110 -6253.193 -6256.0693 2.8762997 3708.8988 628.90787 -10593.876 0 137.84842 -0.00047392992 -0.00048539142 + 92120 -6253.1701 -6255.8405 2.6704062 3707.419 630.87298 -10594.133 0 127.98085 -0.00027492835 -0.00028295439 + 92130 -6253.0992 -6255.6922 2.5930035 3705.6046 632.73045 -10594.027 0 124.27128 -7.2475117e-05 -7.9614382e-05 + 92140 -6252.9616 -6255.6685 2.706972 3704.0804 634.20709 -10593.956 0 129.73329 9.8363833e-05 8.79521e-05 + 92150 -6252.7631 -6255.7499 2.986757 3703.4284 635.11118 -10594.289 0 143.14216 0.0002074902 0.00019136989 + 92160 -6252.5323 -6255.8638 3.3315203 3704.0214 635.35431 -10595.239 0 159.66515 0.00023555298 0.00021552005 + 92170 -6252.2975 -6255.9395 3.6420324 3705.8623 634.95271 -10596.755 0 174.54663 0.00018012368 0.00016145129 + 92180 -6252.0602 -6255.9626 3.9023629 3708.5199 634.01241 -10598.495 0 187.02312 5.854981e-05 4.5923497e-05 + 92190 -6251.7883 -6255.9783 4.1900717 3711.2325 632.70354 -10599.914 0 200.81175 -9.6386596e-05 -0.0001032646 + 92200 -6251.445 -6256.0334 4.5884567 3713.1664 631.22919 -10600.429 0 219.90459 -0.00024800838 -0.00025510866 + 92210 -6251.0368 -6256.1044 5.0675868 3713.7101 629.79261 -10599.607 0 242.86719 -0.0003687939 -0.00038327876 + 92220 -6250.6326 -6256.0881 5.4555143 3712.6453 628.56759 -10597.301 0 261.45886 -0.00044669773 -0.00047058231 + 92230 -6250.3219 -6255.879 5.5571357 3710.1233 627.67851 -10593.681 0 266.32913 -0.00048094888 -0.00050873709 + 92240 -6250.1436 -6255.4727 5.329095 3706.5183 627.19418 -10589.185 0 255.40013 -0.0004725961 -0.000495592 + 92250 -6250.0542 -6254.9991 4.9449425 3702.3113 627.13123 -10584.442 0 236.98939 -0.00041994038 -0.00043364284 + 92260 -6249.9654 -6254.6472 4.6817364 3698.0862 627.45653 -10580.19 0 224.37508 -0.00032386942 -0.00033184656 + 92270 -6249.8146 -6254.5363 4.7216401 3694.5784 628.08389 -10577.199 0 226.28749 -0.00019797521 -0.00020877903 + 92280 -6249.6083 -6254.6393 5.0309752 3692.6289 628.8734 -10576.142 0 241.11256 -7.2878785e-05 -9.265869e-05 + 92290 -6249.4076 -6254.8191 5.4115604 3692.9606 629.64832 -10577.428 0 259.35234 1.2093729e-05 -1.5108985e-05 + 92300 -6249.2686 -6254.9462 5.6775768 3695.8504 630.23843 -10581.035 0 272.10134 2.6857122e-05 1.4396346e-08 + 92310 -6249.1888 -6254.9939 5.8051867 3700.9003 630.54168 -10586.436 0 278.21712 -3.3108526e-05 -5.2654733e-05 + 92320 -6249.1064 -6255.0305 5.9240743 3707.08 630.57854 -10592.689 0 283.91488 -0.00014286498 -0.00015546268 + 92330 -6248.9568 -6255.1188 6.1620136 3713.043 630.50694 -10598.669 0 295.31827 -0.00025846601 -0.00027170393 + 92340 -6248.7333 -6255.2244 6.4910367 3717.5411 630.57738 -10603.343 0 311.0869 -0.00033413048 -0.0003562125 + 92350 -6248.4985 -6255.2234 6.7248895 3719.7323 631.0357 -10605.991 0 322.29444 -0.00033627623 -0.00036863151 + 92360 -6248.3326 -6255.0101 6.6774293 3719.2927 632.01041 -10606.313 0 320.01988 -0.00025002991 -0.00028566304 + 92370 -6248.2654 -6254.607 6.341615 3716.3977 633.43428 -10604.439 0 303.92577 -8.0626827e-05 -0.00010963161 + 92380 -6248.2499 -6254.1788 5.9288679 3711.6717 635.0347 -10600.885 0 284.14462 0.00014606418 0.00012855464 + 92390 -6248.2002 -6253.9323 5.7320935 3706.1373 636.39653 -10596.466 0 274.71408 0.00038345586 0.00037343976 + 92400 -6248.0564 -6253.9783 5.9219057 3701.0973 637.07442 -10592.15 0 283.81095 0.00056882263 0.00055663668 + 92410 -6247.828 -6254.2585 6.4304868 3697.8702 636.72125 -10588.85 0 308.18501 0.0006370887 0.0006149598 + 92420 -6247.5867 -6254.5913 7.0045136 3697.3855 635.20034 -10587.177 0 335.69559 0.00054316718 0.00051123753 + 92430 -6247.4133 -6254.8 7.3866992 3699.785 632.65229 -10587.237 0 354.01207 0.00028473867 0.00025092311 + 92440 -6247.3361 -6254.83 7.4939483 3704.249 629.49355 -10588.573 0 359.15205 -8.6938763e-05 -0.00011326055 + 92450 -6247.3109 -6254.7675 7.4566531 3709.2013 626.33848 -10590.307 0 357.36466 -0.00047734631 -0.00049291135 + 92460 -6247.2631 -6254.7475 7.4843593 3712.8622 623.85852 -10591.468 0 358.69249 -0.00077888946 -0.00078917721 + 92470 -6247.1571 -6254.823 7.6658177 3713.9145 622.61227 -10591.35 0 367.389 -0.00090843139 -0.00092293877 + 92480 -6247.0321 -6254.9098 7.8776625 3711.9737 622.88971 -10589.773 0 377.54179 -0.00083520763 -0.00085930532 + 92490 -6246.9688 -6254.8599 7.8911399 3707.6651 624.61797 -10587.143 0 378.1877 -0.00058744097 -0.00061804914 + 92500 -6247.0146 -6254.6 7.585396 3702.3327 627.36888 -10584.302 0 363.53474 -0.00023758628 -0.00026659919 + 92510 -6247.14 -6254.2075 7.0675413 3697.5764 630.48078 -10582.265 0 338.71624 0.0001236147 0.00010151868 + 92520 -6247.267 -6253.8558 6.5887364 3694.8202 633.25847 -10581.934 0 315.76922 0.0004121798 0.00039472658 + 92530 -6247.3406 -6253.6823 6.3416842 3694.9992 635.17717 -10583.859 0 303.92909 0.0005688422 0.0005485639 + 92540 -6247.3741 -6253.6953 6.321174 3698.3586 636.01658 -10588.07 0 302.94612 0.00056995146 0.00054136654 + 92550 -6247.4345 -6253.793 6.3585123 3704.353 635.88382 -10594.03 0 304.73559 0.00043248572 0.00039762368 + 92560 -6247.5804 -6253.875 6.2946236 3711.6907 635.12733 -10600.693 0 301.67368 0.00021146029 0.00017869723 + 92570 -6247.8063 -6253.9484 6.1420845 3718.5984 634.18187 -10606.729 0 294.36315 -1.4101841e-05 -3.7308795e-05 + 92580 -6248.0442 -6254.1279 6.0837796 3723.3172 633.40773 -10610.853 0 291.56885 -0.00016717872 -0.00018140645 + 92590 -6248.2272 -6254.5196 6.2923322 3724.6889 632.98315 -10612.192 0 301.56386 -0.00020257619 -0.00021662388 + 92600 -6248.3601 -6255.0894 6.7293675 3722.5637 632.87897 -10610.532 0 322.50905 -0.0001254091 -0.00014876995 + 92610 -6248.5257 -6255.6493 7.1236543 3717.7973 632.90786 -10606.354 0 341.40549 1.3856499e-05 -2.0370485e-05 + 92620 -6248.8159 -6255.9854 7.1695136 3711.8308 632.81924 -10600.635 0 343.60332 0.00014627575 0.0001092128 + 92630 -6249.245 -6256.0148 6.7698262 3706.107 632.40479 -10594.527 0 324.44806 0.00021705143 0.00018782595 + 92640 -6249.7332 -6255.8309 6.0976678 3701.6501 631.58054 -10589.062 0 292.23446 0.00020464872 0.00018768765 + 92650 -6250.1731 -6255.6068 5.433781 3698.9619 630.41768 -10584.986 0 260.41728 0.00011897637 0.00010964307 + 92660 -6250.5098 -6255.46 4.9501877 3698.1417 629.11327 -10582.715 0 237.24077 -1.3272672e-05 -2.3765302e-05 + 92670 -6250.7644 -6255.3916 4.6272718 3699.0321 627.91839 -10582.342 0 221.76483 -0.00016273778 -0.00017985252 + 92680 -6250.9942 -6255.3339 4.3396608 3701.2832 627.05766 -10583.675 0 207.98089 -0.00030375875 -0.00032591894 + 92690 -6251.2376 -6255.2437 4.0061064 3704.3652 626.67242 -10586.281 0 191.9951 -0.00041451506 -0.00043545499 + 92700 -6251.4851 -6255.1581 3.6730645 3707.6195 626.80273 -10589.58 0 176.03386 -0.0004764579 -0.00049098131 + 92710 -6251.6945 -6255.1691 3.4746735 3710.398 627.40457 -10592.972 0 166.52585 -0.00047672208 -0.00048498282 + 92720 -6251.8298 -6255.3429 3.513067 3712.2455 628.38489 -10595.973 0 168.36588 -0.0004126471 -0.00041970902 + 92730 -6251.8925 -6255.6528 3.7602704 3713.029 629.63429 -10598.316 0 180.21326 -0.00029447386 -0.00030580558 + 92740 -6251.9216 -6255.9848 4.0632533 3712.9327 631.04248 -10599.96 0 194.73389 -0.00014300813 -0.00015977724 + 92750 -6251.962 -6256.2158 4.2537575 3712.323 632.49411 -10601.033 0 203.86393 1.7209145e-05 -1.0035914e-06 + 92760 -6252.0254 -6256.3016 4.2761906 3711.5751 633.85545 -10601.732 0 204.93905 0.00016483081 0.00015049689 + 92770 -6252.0779 -6256.2995 4.2215318 3710.972 634.96961 -10602.241 0 202.31949 0.00028389289 0.00027494276 + 92780 -6252.0697 -6256.3022 4.2324881 3710.7134 635.67223 -10602.688 0 202.84458 0.00036071526 0.0003531427 + 92790 -6251.9781 -6256.3434 4.3653309 3710.9589 635.82537 -10603.128 0 209.21115 0.00038051958 0.00036821879 + 92800 -6251.8269 -6256.3633 4.5364088 3711.8043 635.35665 -10603.524 0 217.41017 0.00032979647 0.00030998165 + 92810 -6251.6638 -6256.2649 4.6010708 3713.1682 634.2892 -10603.722 0 220.50913 0.00020522393 0.00018096195 + 92820 -6251.5163 -6256.0074 4.4911505 3714.6841 632.75316 -10603.445 0 215.24113 2.3086704e-05 7.5927293e-07 + 92830 -6251.3651 -6255.6548 4.2897329 3715.7224 630.97403 -10602.351 0 205.58807 -0.000178921 -0.00019494216 + 92840 -6251.1534 -6255.3373 4.1839756 3715.5854 629.23798 -10600.161 0 200.51959 -0.00035090431 -0.00036191682 + 92850 -6250.8214 -6255.1607 4.3392839 3713.7961 627.83901 -10596.796 0 207.96283 -0.00044710001 -0.00045923181 + 92860 -6250.3426 -6255.1312 4.7885943 3710.3421 627.01795 -10592.491 0 229.49631 -0.00044158677 -0.00046111273 + 92870 -6249.7435 -6255.1512 5.4077354 3705.7595 626.90411 -10587.815 0 259.16902 -0.0003369288 -0.00036504448 + 92880 -6249.0958 -6255.0914 5.9955362 3701.0159 627.4721 -10583.579 0 287.33973 -0.0001629557 -0.00019395528 + 92890 -6248.474 -6254.8946 6.4206071 3697.2375 628.53104 -10580.663 0 307.71152 3.3521021e-05 8.3543474e-06 + 92900 -6247.8999 -6254.6287 6.7287976 3695.396 629.76703 -10579.792 0 322.48174 0.00020345059 0.00018820451 + 92910 -6247.3386 -6254.4262 7.0875504 3696.0877 630.84445 -10581.358 0 339.67519 0.00030774207 0.00029713896 + 92920 -6246.7666 -6254.3471 7.580497 3699.4495 631.53389 -10585.33 0 363.29995 0.00032352902 0.00030689766 + 92930 -6246.2381 -6254.2999 8.0618453 3705.1277 631.80402 -10591.232 0 386.36886 0.00024834875 0.00021978558 + 92940 -6245.8587 -6254.1206 8.2618824 3712.2287 631.82677 -10598.176 0 395.95576 0.00010618753 7.0937617e-05 + 92950 -6245.6851 -6253.7487 8.0635232 3719.3385 631.89383 -10604.981 0 386.44927 -4.9816203e-05 -7.9762565e-05 + 92960 -6245.6609 -6253.3223 7.6614701 3724.7868 632.28923 -10610.398 0 367.18064 -0.00014863884 -0.00016574953 + 92970 -6245.6594 -6253.0888 7.4293552 3727.1779 633.17374 -10613.44 0 356.05639 -0.00012872366 -0.00013708602 + 92980 -6245.5905 -6253.2068 7.6162816 3725.9552 634.51706 -10613.679 0 365.01495 3.1271258e-05 1.9422068e-05 + 92990 -6245.4716 -6253.6155 8.1439456 3721.6694 636.09008 -10611.375 0 390.30357 0.00029690243 0.00027191551 + 93000 -6245.4093 -6254.0787 8.6693994 3715.7745 637.51551 -10607.369 0 415.48626 0.00058834303 0.0005517015 + 93010 -6245.5064 -6254.3639 8.8574929 3710.0462 638.36661 -10602.777 0 424.50076 0.00081266571 0.00077598992 + 93020 -6245.7693 -6254.4122 8.6429413 3705.9253 638.2912 -10598.629 0 414.21824 0.00090092708 0.00087603985 + 93030 -6246.099 -6254.3629 8.2639436 3704.111 637.12618 -10595.6 0 396.05455 0.00083018974 0.00081858528 + 93040 -6246.3766 -6254.4114 8.0348529 3704.5498 634.96734 -10593.929 0 385.07523 0.00062177998 0.00061280986 + 93050 -6246.567 -6254.6238 8.0568784 3706.692 632.16947 -10593.485 0 386.13082 0.00032410006 0.00030386409 + 93060 -6246.7452 -6254.8744 8.1291555 3709.7571 629.26869 -10593.9 0 389.59475 -4.0764234e-06 -4.0737715e-05 + 93070 -6247.0214 -6254.9643 7.9428956 3712.8558 626.84293 -10594.663 0 380.66813 -0.00030166223 -0.0003467302 + 93080 -6247.4332 -6254.8092 7.3760301 3715.0543 625.35444 -10595.218 0 353.50075 -0.00050971506 -0.00054898049 + 93090 -6247.9077 -6254.519 6.6112828 3715.5519 625.03217 -10595.103 0 316.84977 -0.00058155591 -0.00060642601 + 93100 -6248.3256 -6254.3035 5.9779105 3713.9936 625.83381 -10594.131 0 286.49501 -0.00049934044 -0.00051290958 + 93110 -6248.6177 -6254.2989 5.6811679 3710.7349 627.48697 -10592.521 0 272.27344 -0.00028682988 -0.0002997165 + 93120 -6248.8066 -6254.4723 5.6657447 3706.8256 629.57935 -10590.877 0 271.53427 -6.4077256e-06 -2.7196778e-05 + 93130 -6248.9703 -6254.6797 5.7093353 3703.6514 631.66564 -10589.997 0 273.62338 0.00026221237 0.00023329849 + 93140 -6249.171 -6254.8048 5.6337928 3702.4037 633.36929 -10590.578 0 270.00296 0.00045158816 0.00042124128 + 93150 -6249.4102 -6254.8522 5.4419926 3703.6554 634.46103 -10592.969 0 260.81082 0.00052872601 0.00050388683 + 93160 -6249.6412 -6254.9231 5.2818956 3707.2255 634.89464 -10597.043 0 253.13807 0.00049960216 0.00048185144 + 93170 -6249.8173 -6255.1121 5.294742 3712.3313 634.78967 -10602.233 0 253.75375 0.00039756496 0.00038286493 + 93180 -6249.932 -6255.417 5.4849599 3717.8885 634.36932 -10607.675 0 262.87005 0.00026557657 0.00024871506 + 93190 -6250.0211 -6255.7348 5.7136125 3722.8007 633.87715 -10612.413 0 273.82837 0.00014220907 0.00012162358 + 93200 -6250.128 -6255.9401 5.8120907 3726.1588 633.50001 -10615.599 0 278.548 5.5171248e-05 3.3931441e-05 + 93210 -6250.2633 -6255.9782 5.7149303 3727.3587 633.31971 -10616.657 0 273.89152 1.9844081e-05 2.1819499e-06 + 93220 -6250.3967 -6255.8925 5.4957638 3726.1891 633.30608 -10615.388 0 263.38784 3.8623887e-05 2.5516023e-05 + 93230 -6250.4869 -6255.769 5.282096 3722.8955 633.35011 -10612.015 0 253.14768 0.0001001767 8.824024e-05 + 93240 -6250.5194 -6255.6593 5.1399198 3718.1656 633.31956 -10607.144 0 246.33379 0.00018140208 0.00016594172 + 93250 -6250.516 -6255.5535 5.0374909 3712.9817 633.11165 -10601.647 0 241.42483 0.00025419628 0.00023323849 + 93260 -6250.5114 -6255.4178 4.90642 3708.3654 632.68299 -10596.466 0 235.14318 0.00029478302 0.000270404 + 93270 -6250.5215 -6255.2468 4.7253401 3705.1205 632.05209 -10592.419 0 226.46481 0.00029062496 0.00026683785 + 93280 -6250.533 -6255.081 4.5479687 3703.6804 631.28186 -10590.043 0 217.96418 0.0002417571 0.0002212509 + 93290 -6250.5157 -6254.9803 4.4645315 3704.0886 630.45475 -10589.524 0 213.9654 0.00015755579 0.0001399677 + 93300 -6250.4418 -6254.9834 4.541594 3706.0705 629.65334 -10590.707 0 217.65867 5.2366001e-05 3.4959309e-05 + 93310 -6250.298 -6255.0842 4.7862756 3709.1339 628.9556 -10593.174 0 229.38518 -5.731963e-05 -7.7537589e-05 + 93320 -6250.0834 -6255.2335 5.1501142 3712.6627 628.44599 -10596.342 0 246.82237 -0.0001535502 -0.00017783194 + 93330 -6249.7999 -6255.3639 5.5639843 3716.0001 628.23116 -10599.595 0 266.65735 -0.00021649624 -0.00024367087 + 93340 -6249.4385 -6255.4229 5.9844048 3718.5327 628.44088 -10602.396 0 286.80625 -0.00022476156 -0.00025227828 + 93350 -6248.973 -6255.3963 6.4232767 3719.7898 629.2001 -10604.386 0 307.83946 -0.00015848721 -0.00018457712 + 93360 -6248.3696 -6255.304 6.9344715 3719.5609 630.5749 -10605.44 0 332.33879 -6.346383e-06 -3.1765138e-05 + 93370 -6247.6125 -6255.166 7.5535715 3718.0065 632.51221 -10605.685 0 362.00953 0.00022498442 0.0001972951 + 93380 -6246.7377 -6254.9647 8.2270838 3715.6984 634.80171 -10605.465 0 394.28802 0.00050359223 0.00047135778 + 93390 -6245.8416 -6254.6445 8.8028103 3713.5065 637.0855 -10605.236 0 421.88006 0.00077421336 0.00073915505 + 93400 -6245.0374 -6254.1682 9.1307889 3712.3093 638.9281 -10605.406 0 437.59864 0.00097346823 0.00094125583 + 93410 -6244.3807 -6253.5876 9.2069376 3712.6407 639.93385 -10606.162 0 441.24811 0.0010531326 0.0010284182 + 93420 -6243.8434 -6253.0378 9.1943466 3714.4876 639.87114 -10607.396 0 440.64468 0.00099737054 0.00097832899 + 93430 -6243.373 -6252.6366 9.2636238 3717.3472 638.75201 -10608.736 0 443.96483 0.00082412117 0.00080312973 + 93440 -6242.9694 -6252.3902 9.4207921 3720.4386 636.83241 -10609.661 0 451.49722 0.00057510492 0.00054591777 + 93450 -6242.6908 -6252.2181 9.5273771 3722.8902 634.53557 -10609.644 0 456.60537 0.00030545802 0.00026943341 + 93460 -6242.5856 -6252.0751 9.4895387 3723.8731 632.33241 -10608.281 0 454.79194 7.6074762e-05 4.0737921e-05 + 93470 -6242.6354 -6252.0297 9.3943102 3722.7762 630.62075 -10605.427 0 450.22805 -5.7264775e-05 -8.5646929e-05 + 93480 -6242.7709 -6252.2134 9.4424943 3719.4547 629.63346 -10601.302 0 452.53731 -6.1143825e-05 -8.3354027e-05 + 93490 -6242.9408 -6252.692 9.7512191 3714.4269 629.39294 -10596.512 0 467.33313 5.8849488e-05 3.6077644e-05 + 93500 -6243.1624 -6253.3761 10.213751 3708.8504 629.72302 -10591.95 0 489.50024 0.00025413702 0.00022463013 + 93510 -6243.5085 -6254.0487 10.540146 3704.2047 630.32007 -10588.573 0 505.14292 0.00044886354 0.00041294797 + 93520 -6244.0367 -6254.4937 10.457082 3701.777 630.86503 -10587.136 0 501.16202 0.00057079202 0.00053527164 + 93530 -6244.7179 -6254.6319 9.914045 3702.1858 631.13792 -10587.956 0 475.13667 0.00058173576 0.00055359474 + 93540 -6245.4377 -6254.5547 9.1169955 3705.1967 631.09273 -10590.844 0 436.93758 0.00049012109 0.00046958907 + 93550 -6246.0748 -6254.4262 8.351423 3709.9187 630.86671 -10595.212 0 400.24705 0.00034012801 0.00031991465 + 93560 -6246.5835 -6254.3409 7.7574042 3715.2173 630.72255 -10600.281 0 371.77834 0.00018805618 0.00015989393 + 93570 -6247.0049 -6254.2703 7.2653941 3720.0691 630.94239 -10605.282 0 348.19845 8.2043703e-05 4.447816e-05 + 93580 -6247.4048 -6254.1419 6.7370954 3723.7113 631.70986 -10609.563 0 322.87941 5.2886793e-05 1.2936105e-05 + 93590 -6247.8054 -6253.9614 6.1560574 3725.6581 633.02472 -10612.644 0 295.03281 0.00011238503 7.9607017e-05 + 93600 -6248.1685 -6253.8489 5.6803427 3725.7331 634.68424 -10614.266 0 272.23389 0.00025245619 0.00023099884 + 93610 -6248.4365 -6253.9557 5.5191755 3724.1518 636.33689 -10614.444 0 264.50986 0.00044371181 0.00042922145 + 93620 -6248.5865 -6254.3421 5.7556183 3721.5476 637.58617 -10613.476 0 275.84152 0.00063813621 0.0006215804 + 93630 -6248.6555 -6254.9177 6.2622743 3718.8304 638.10907 -10611.857 0 300.12332 0.00078023561 0.00075505059 + 93640 -6248.7204 -6255.4863 6.7658979 3716.8797 637.75289 -10610.119 0 324.25979 0.00082518672 0.00079217044 + 93650 -6248.8482 -6255.8584 7.0101828 3716.2092 636.57846 -10608.646 0 335.96729 0.00075633106 0.00072281412 + 93660 -6249.0488 -6255.9553 6.9065105 3716.7739 634.83317 -10607.562 0 330.99873 0.00059252123 0.00056652428 + 93670 -6249.2681 -6255.8371 6.5690499 3718.0283 632.86489 -10606.73 0 314.82573 0.00038017183 0.00036392471 + 93680 -6249.431 -6255.6367 6.2057102 3719.2141 631.01654 -10605.867 0 297.41245 0.000173457 0.00016141538 + 93690 -6249.5024 -6255.4479 5.945489 3719.7199 629.54682 -10604.715 0 284.94119 1.3431882e-05 -3.2634605e-06 + 93700 -6249.515 -6255.2596 5.7445673 3719.3096 628.59934 -10603.169 0 275.3119 -8.2554278e-05 -0.00010855358 + 93710 -6249.5394 -6254.9968 5.4574099 3718.1066 628.2118 -10601.315 0 261.5497 -0.00011693445 -0.00014855912 + 93720 -6249.6195 -6254.6295 5.0099837 3716.4031 628.34362 -10599.376 0 240.10653 -9.9422541e-05 -0.00012778347 + 93730 -6249.7334 -6254.2425 4.5091198 3714.489 628.90572 -10597.637 0 216.10232 -3.7174227e-05 -5.5795313e-05 + 93740 -6249.8125 -6253.9971 4.1846836 3712.6345 629.78538 -10596.417 0 200.55352 6.5354473e-05 5.5169384e-05 + 93750 -6249.7974 -6254.0221 4.2246637 3711.1812 630.86222 -10596.066 0 202.46959 0.0001993768 0.0001897238 + 93760 -6249.6805 -6254.3285 4.647997 3710.5916 632.01444 -10596.935 0 222.75809 0.00034587375 0.00032842279 + 93770 -6249.5076 -6254.8095 5.3018638 3711.3504 633.12082 -10599.281 0 254.09506 0.00047707445 0.00044917514 + 93780 -6249.3454 -6255.3093 5.9638831 3713.7436 634.06751 -10603.12 0 285.82274 0.00056538939 0.00053185754 + 93790 -6249.2368 -6255.708 6.4712537 3717.6385 634.76427 -10608.111 0 310.13879 0.00059480883 0.00056440685 + 93800 -6249.1718 -6255.9691 6.7972284 3722.4019 635.16459 -10613.536 0 325.76132 0.00056817046 0.00054717867 + 93810 -6249.0961 -6256.1211 7.0249922 3727.0329 635.27932 -10618.433 0 336.67704 0.00050566638 0.00049303402 + 93820 -6248.9576 -6256.1872 7.2296522 3730.4781 635.1757 -10621.841 0 346.4855 0.00043490947 0.0004229615 + 93830 -6248.7576 -6256.12 7.3623983 3731.9769 634.95882 -10623.056 0 352.84744 0.00037866874 0.0003594076 + 93840 -6248.5563 -6255.8167 7.2604131 3731.2532 634.73764 -10621.808 0 347.95973 0.00034840195 0.00032028664 + 93850 -6248.4203 -6255.2224 6.8021142 3728.4855 634.58502 -10618.293 0 325.99548 0.00034653007 0.000315481 + 93860 -6248.3597 -6254.4255 6.0658741 3724.1572 634.5089 -10613.092 0 290.71072 0.00037200345 0.00034565015 + 93870 -6248.3175 -6253.6454 5.3279541 3718.9445 634.4491 -10607.039 0 255.34545 0.00042141312 0.00040214889 + 93880 -6248.2172 -6253.1128 4.8956026 3713.6835 634.29897 -10601.095 0 234.62474 0.00048445391 0.00046760789 + 93890 -6248.0162 -6252.9405 4.924233 3709.3263 633.93985 -10596.207 0 235.99688 0.00053997904 0.00051821043 + 93900 -6247.7232 -6253.0823 5.3590594 3706.7886 633.27737 -10593.148 0 256.83619 0.00055936168 0.00052908998 + 93910 -6247.3732 -6253.3969 6.0237229 3706.6888 632.27566 -10592.361 0 288.6906 0.00051815337 0.00048273523 + 93920 -6246.9852 -6253.7604 6.7751783 3709.0905 630.98665 -10593.838 0 324.70456 0.00041056654 0.00037772581 + 93930 -6246.5309 -6254.1404 7.6094969 3713.3979 629.56683 -10597.105 0 364.68979 0.00025825416 0.00023349875 + 93940 -6245.945 -6254.5781 8.6330379 3718.4976 628.2717 -10601.347 0 413.74362 0.00010669288 8.7688808e-05 + 93950 -6245.1858 -6255.083 9.8972506 3723.1234 627.42092 -10605.627 0 474.33178 8.681868e-06 -1.4202948e-05 + 93960 -6244.3137 -6255.5306 11.216863 3726.2819 627.33251 -10609.145 0 537.57502 2.7255775e-06 -3.3168902e-05 + 93970 -6243.5079 -6255.6766 12.168707 3727.5148 628.23093 -10611.422 0 583.19274 9.9231146e-05 5.0807591e-05 + 93980 -6242.9642 -6255.319 12.354797 3726.8826 630.14931 -10612.351 0 592.11118 0.00028261161 0.00023288886 + 93990 -6242.7496 -6254.4755 11.725861 3724.776 632.86801 -10612.12 0 561.96903 0.00052338103 0.00048492271 + 94000 -6242.7636 -6253.4006 10.637013 3721.7745 635.93401 -10611.109 0 509.78536 0.00078620345 0.00076164539 + 94010 -6242.8477 -6252.4168 9.5690547 3718.6278 638.76995 -10609.814 0 458.60279 0.0010289159 0.00100899 + 94020 -6242.9225 -6251.7138 8.791351 3716.2234 640.83227 -10608.769 0 421.33087 0.0012020874 0.0011745557 + 94030 -6243.0256 -6251.2912 8.2655374 3715.3797 641.75614 -10608.427 0 396.13093 0.0012601057 0.0012208036 + 94040 -6243.2398 -6251.0678 7.8279862 3716.4923 641.43848 -10608.999 0 375.16102 0.0011821189 0.0011380579 + 94050 -6243.596 -6251.0337 7.4376584 3719.2627 640.04123 -10610.338 0 356.45433 0.00098818743 0.00095053118 + 94060 -6244.0456 -6251.2882 7.2426857 3722.7485 637.92552 -10611.962 0 347.11014 0.00073575236 0.00070978663 + 94070 -6244.5187 -6251.9329 7.4141586 3725.755 635.54524 -10613.233 0 355.32808 0.00049563292 0.00047699543 + 94080 -6245.0028 -6252.9295 7.9266954 3727.3395 633.33336 -10613.602 0 379.89172 0.00032252853 0.00030232614 + 94090 -6245.5592 -6254.0647 8.5054939 3727.1406 631.60961 -10612.815 0 407.63099 0.0002377622 0.00021091536 + 94100 -6246.2619 -6255.0538 8.7919209 3725.3973 630.52818 -10610.979 0 421.35818 0.00023102483 0.00020011639 + 94110 -6247.1118 -6255.6942 8.582418 3722.7337 630.07237 -10608.5 0 411.31762 0.00027454936 0.00024648757 + 94120 -6248.0099 -6255.9504 7.9404943 3719.8837 630.09298 -10605.927 0 380.55304 0.00033778243 0.00031723 + 94130 -6248.8172 -6255.9242 7.1069635 3717.4963 630.37805 -10603.799 0 340.60557 0.00039528534 0.00038094453 + 94140 -6249.4402 -6255.7546 6.3144515 3716.0519 630.73235 -10602.539 0 302.62395 0.00042904412 0.00041532663 + 94150 -6249.8691 -6255.5361 5.6669654 3715.8314 631.04053 -10602.408 0 271.59278 0.00042998446 0.00041171829 + 94160 -6250.1551 -6255.3038 5.1487301 3716.879 631.29419 -10603.477 0 246.75604 0.00040050991 0.00037656651 + 94170 -6250.3608 -6255.073 4.7122594 3718.9668 631.57656 -10605.616 0 225.83791 0.00035570415 0.00032908606 + 94180 -6250.524 -6254.8798 4.3557259 3721.6201 632.01254 -10608.512 0 208.75082 0.0003198988 0.00029482989 + 94190 -6250.6498 -6254.7815 4.131663 3724.2419 632.70232 -10611.726 0 198.01247 0.00031792204 0.00029660253 + 94200 -6250.7261 -6254.8223 4.0962023 3726.3041 633.6619 -10614.788 0 196.313 0.00036431153 0.00034575768 + 94210 -6250.7452 -6254.9999 4.2547185 3727.513 634.79382 -10617.307 0 203.90998 0.00045585681 0.00043714813 + 94220 -6250.7146 -6255.2616 4.5470652 3727.8743 635.90373 -10619.04 0 217.92088 0.00057129438 0.00054980913 + 94230 -6250.6546 -6255.5266 4.871942 3727.6373 636.76055 -10619.924 0 233.4908 0.00067840974 0.00065352167 + 94240 -6250.5891 -6255.7191 5.1300214 3727.1516 637.17554 -10620.046 0 245.85941 0.00074583996 0.00071923648 + 94250 -6250.531 -6255.7992 5.2682081 3726.6968 637.06443 -10619.56 0 252.48209 0.00075506119 0.00072947248 + 94260 -6250.4741 -6255.7741 5.2999614 3726.3621 636.46807 -10618.604 0 254.00389 0.00070719794 0.00068429794 + 94270 -6250.4005 -6255.6778 5.2772369 3726.0411 635.53114 -10617.25 0 252.9148 0.00062102659 0.00060029107 + 94280 -6250.2993 -6255.532 5.2326541 3725.5348 634.45352 -10615.52 0 250.77815 0.00052355221 0.00050327395 + 94290 -6250.1774 -6255.3309 5.153504 3724.6849 633.43117 -10613.447 0 246.98483 0.00043905098 0.00041842075 + 94300 -6250.0481 -6255.0696 5.0214771 3723.4571 632.60163 -10611.128 0 240.65736 0.00038211802 0.00036192548 + 94310 -6249.9114 -6254.7853 4.8738239 3721.9598 632.01095 -10608.756 0 233.58099 0.000355988 0.00033704892 + 94320 -6249.7486 -6254.5573 4.8086508 3720.4287 631.61657 -10606.603 0 230.45753 0.00035409766 0.00033534781 + 94330 -6249.5409 -6254.4569 4.9159513 3719.1931 631.32794 -10604.978 0 235.59997 0.00036331642 0.00034218295 + 94340 -6249.2916 -6254.4947 5.2031031 3718.5976 631.06863 -10604.161 0 249.3619 0.0003693886 0.00034448243 + 94350 -6249.0246 -6254.6208 5.5962658 3718.8709 630.83268 -10604.324 0 268.20446 0.00036484135 0.00033804476 + 94360 -6248.7588 -6254.7762 6.017371 3720.0013 630.70937 -10605.487 0 288.38618 0.0003560321 0.00033127683 + 94370 -6248.4854 -6254.9368 6.4514444 3721.7201 630.86072 -10607.518 0 309.18941 0.00036321624 0.00034269094 + 94380 -6248.1743 -6255.1028 6.9285391 3723.6351 631.4533 -10610.191 0 332.05447 0.00041028749 0.00039174245 + 94390 -6247.8093 -6255.2472 7.4379075 3725.4321 632.56726 -10613.247 0 356.46626 0.0005085782 0.00048661245 + 94400 -6247.4181 -6255.2857 7.8675645 3727.0072 634.1243 -10616.417 0 377.05783 0.00064534339 0.00061586639 + 94410 -6247.0648 -6255.1102 8.0454148 3728.4373 635.87691 -10619.424 0 385.58142 0.00078609199 0.00075008771 + 94420 -6246.8049 -6254.6714 7.866523 3729.8119 637.47589 -10621.959 0 377.00792 0.00089078009 0.00085379229 + 94430 -6246.6399 -6254.0439 7.4039149 3731.0525 638.59102 -10623.687 0 354.83714 0.00093374679 0.00090106939 + 94440 -6246.5146 -6253.4088 6.8941682 3731.8595 639.02951 -10624.298 0 330.40722 0.00091451678 0.00088617499 + 94450 -6246.365 -6252.9492 6.5842111 3731.8434 638.79751 -10623.59 0 315.55234 0.00085388125 0.00082441119 + 94460 -6246.1765 -6252.7348 6.5582821 3730.7447 638.07806 -10621.558 0 314.30968 0.00078082036 0.00074481524 + 94470 -6245.9954 -6252.7047 6.7093278 3728.5731 637.13724 -10618.415 0 321.54863 0.00072091873 0.00067921799 + 94480 -6245.8758 -6252.7706 6.8947463 3725.5824 636.20346 -10614.556 0 330.43493 0.000691633 0.00065137135 + 94490 -6245.816 -6252.9319 7.1158463 3722.1769 635.38025 -10610.489 0 341.03128 0.00070058248 0.00066828871 + 94500 -6245.7541 -6253.2713 7.5171551 3718.8835 634.63398 -10606.789 0 360.26425 0.00074130484 0.00071598875 + 94510 -6245.6338 -6253.8311 8.1973391 3716.3791 633.85248 -10604.063 0 392.86249 0.00078878874 0.00076230917 + 94520 -6245.4743 -6254.5061 9.0317767 3715.4108 632.93331 -10602.85 0 432.85342 0.0008035853 0.00076806534 + 94530 -6245.3763 -6255.0665 9.690178 3716.519 631.8581 -10603.444 0 464.4077 0.00074893813 0.00070419294 + 94540 -6245.4553 -6255.2952 9.8399639 3719.6811 630.73077 -10605.707 0 471.58628 0.00061395668 0.00056833891 + 94550 -6245.7577 -6255.1268 9.3690668 3724.1351 629.77351 -10609.035 0 449.01825 0.00042823466 0.00039229762 + 94560 -6246.2285 -6254.6878 8.4592427 3728.5609 629.27811 -10612.527 0 405.41438 0.00025607246 0.00023419068 + 94570 -6246.7568 -6254.2141 7.4573616 3731.586 629.51569 -10615.316 0 357.39861 0.000169875 0.00015650938 + 94580 -6247.2624 -6253.898 6.6356302 3732.3805 630.62627 -10616.905 0 318.01663 0.00021530208 0.00019934165 + 94590 -6247.7486 -6253.7763 6.0276593 3731.0224 632.52902 -10617.328 0 288.87925 0.00038770772 0.00036179665 + 94600 -6248.2681 -6253.7547 5.4866333 3728.4133 634.89804 -10617.066 0 262.95025 0.00063425678 0.00060087285 + 94610 -6248.8396 -6253.7442 4.9045899 3725.803 637.22938 -10616.777 0 235.05547 0.00087923449 0.00084773491 + 94620 -6249.4115 -6253.7708 4.3592748 3724.2425 638.98573 -10616.999 0 208.92091 0.0010547022 0.0010325005 + 94630 -6249.9027 -6253.951 4.0483733 3724.2678 639.76456 -10617.983 0 194.02076 0.0011197966 0.0011061925 + 94640 -6250.2666 -6254.3697 4.1031021 3725.8736 639.42414 -10619.667 0 196.64368 0.0010655516 0.0010530693 + 94650 -6250.519 -6254.9792 4.4602341 3728.6316 638.12339 -10621.734 0 213.75944 0.00091148328 0.00089252789 + 94660 -6250.7203 -6255.6082 4.8878685 3731.8182 636.26469 -10623.691 0 234.25408 0.00069939599 0.00067235208 + 94670 -6250.9308 -6256.0656 5.1348274 3734.5327 634.3607 -10624.959 0 246.08974 0.00048501275 0.00045513707 + 94680 -6251.1682 -6256.2563 5.0881812 3735.8717 632.87305 -10625.001 0 243.85419 0.00032554994 0.00030039653 + 94690 -6251.3971 -6256.2228 4.8256833 3735.1858 632.08026 -10623.489 0 231.27382 0.00026355858 0.00024681581 + 94700 -6251.5585 -6256.0945 4.5360779 3732.3484 632.01696 -10620.46 0 217.3943 0.00031188759 0.00030034842 + 94710 -6251.615 -6255.9886 4.3736187 3727.9043 632.49548 -10616.388 0 209.60835 0.00044676707 0.00043259497 + 94720 -6251.5819 -6255.9306 4.348743 3722.9849 633.19244 -10612.108 0 208.41617 0.00061382303 0.00059052716 + 94730 -6251.5204 -6255.8513 4.3309101 3718.9723 633.76608 -10608.59 0 207.56151 0.00074691882 0.00071473898 + 94740 -6251.4967 -6255.6635 4.1668639 3717.0144 633.9665 -10606.644 0 199.6995 0.00079380268 0.00076021928 + 94750 -6251.531 -6255.3594 3.828401 3717.6024 633.70806 -10606.67 0 183.47846 0.00073761495 0.00071204896 + 94760 -6251.5791 -6255.0461 3.4670701 3720.4224 633.08757 -10608.556 0 166.16145 0.00060325425 0.00058970818 + 94770 -6251.5617 -6254.8807 3.3190258 3724.5537 632.34723 -10611.782 0 159.06634 0.00044478702 0.00043828134 + 94780 -6251.4227 -6254.9497 3.5270393 3728.8862 631.79379 -10615.63 0 169.03551 0.0003207724 0.00031075219 + 94790 -6251.1717 -6255.193 4.0212454 3732.5148 631.69574 -10619.404 0 192.72064 0.00027094475 0.00024930892 + 94800 -6250.879 -6255.439 4.5600476 3734.921 632.18954 -10622.55 0 218.54307 0.00030560522 0.0002730969 + 94810 -6250.6224 -6255.5292 4.9068181 3735.9271 633.22961 -10624.686 0 235.16225 0.00041019333 0.00037588697 + 94820 -6250.4255 -6255.4294 5.0038919 3735.5591 634.60488 -10625.593 0 239.81457 0.00055809904 0.00053214119 + 94830 -6250.238 -6255.2382 5.0002482 3733.9731 636.01508 -10625.226 0 239.63995 0.00072138843 0.0007067476 + 94840 -6249.9792 -6255.0862 5.1069552 3731.4923 637.17053 -10623.749 0 244.75395 0.00087392773 0.00086394056 + 94850 -6249.6119 -6255.0108 5.3989076 3728.664 637.87163 -10621.546 0 258.74594 0.0009898241 0.00097378 + 94860 -6249.1843 -6254.918 5.7337039 3726.1989 638.04121 -10619.158 0 274.79126 0.0010446467 0.0010170395 + 94870 -6248.7999 -6254.673 5.8731234 3724.7377 637.70934 -10617.12 0 281.47303 0.0010235484 0.00098911618 + 94880 -6248.5317 -6254.2505 5.7187979 3724.5604 636.97113 -10615.782 0 274.07688 0.00093175906 0.00090143863 + 94890 -6248.3556 -6253.8045 5.448909 3725.4517 635.94642 -10615.203 0 261.14229 0.00079715974 0.00077803414 + 94900 -6248.171 -6253.5795 5.4085201 3726.8493 634.76096 -10615.19 0 259.20663 0.00065910747 0.00064735133 + 94910 -6247.8915 -6253.7198 5.8282846 3728.1787 633.54816 -10615.447 0 279.3241 0.00054956285 0.00053314181 + 94920 -6247.5286 -6254.1398 6.6112539 3729.1208 632.45356 -10615.714 0 316.84838 0.00048023321 0.00044941854 + 94930 -6247.1921 -6254.5725 7.3804123 3729.6213 631.62555 -10615.819 0 353.71077 0.00044530454 0.00040181194 + 94940 -6247.0003 -6254.7611 7.7608441 3729.6878 631.19109 -10615.64 0 371.9432 0.00043665101 0.00039301322 + 94950 -6246.9768 -6254.6367 7.6599154 3729.2094 631.22862 -10615.075 0 367.10613 0.00045750418 0.0004268865 + 94960 -6247.0315 -6254.337 7.3055302 3728.0057 631.74953 -10614.092 0 350.122 0.00052154375 0.00050686911 + 94970 -6247.0413 -6254.0667 7.025409 3726.0823 632.6902 -10612.839 0 336.69702 0.00063744001 0.00062911275 + 94980 -6246.9511 -6253.925 6.9738573 3723.8699 633.91239 -10611.707 0 334.22637 0.00079193042 0.00077575176 + 94990 -6246.8115 -6253.844 7.0324487 3722.2089 635.21343 -10611.266 0 337.0344 0.00094613486 0.00091466836 + 95000 -6246.7278 -6253.6785 6.950709 3722.0211 636.35281 -10612.052 0 333.11698 0.0010500326 0.0010082398 + 95010 -6246.7663 -6253.3646 6.5983606 3723.8408 637.09985 -10614.305 0 316.23046 0.0010667631 0.0010275108 + 95020 -6246.8971 -6253.0083 6.1111683 3727.4932 637.29698 -10617.798 0 292.88147 0.00099107809 0.00096441691 + 95030 -6247.0201 -6252.8227 5.8025665 3732.1216 636.92002 -10621.864 0 278.09154 0.00085075942 0.0008359863 + 95040 -6247.0484 -6252.9633 5.9149132 3736.5295 636.10856 -10625.601 0 283.47583 0.00069249277 0.00067947833 + 95050 -6246.9791 -6253.4 6.4209213 3739.6117 635.14301 -10628.155 0 307.72658 0.00056338655 0.00054167318 + 95060 -6246.8932 -6253.9368 7.0436132 3740.643 634.36217 -10628.942 0 337.56946 0.00049866036 0.00046624428 + 95070 -6246.8855 -6254.3623 7.476729 3739.358 634.04424 -10627.764 0 358.3268 0.00051757731 0.00048176222 + 95080 -6246.9866 -6254.5947 7.6081097 3735.93 634.29899 -10624.824 0 364.62331 0.00062214401 0.00059224623 + 95090 -6247.1468 -6254.6983 7.5515289 3730.9634 635.02047 -10620.682 0 361.91164 0.00079381307 0.00077287325 + 95100 -6247.292 -6254.7783 7.4863596 3725.4797 635.92096 -10616.179 0 358.78836 0.00099088328 0.00097361879 + 95110 -6247.3908 -6254.8649 7.474133 3720.7817 636.63082 -10612.277 0 358.20239 0.0011538277 0.0011317335 + 95120 -6247.4765 -6254.8811 7.4046045 3718.1349 636.82629 -10609.842 0 354.8702 0.0012218513 0.0011906108 + 95130 -6247.6128 -6254.7092 7.0963799 3718.342 636.3414 -10609.393 0 340.09834 0.0011560657 0.0011193921 + 95140 -6247.8335 -6254.3028 6.4692402 3721.3903 635.22605 -10610.919 0 310.04229 0.00095907948 0.00092604151 + 95150 -6248.1047 -6253.7624 5.6577177 3726.3668 633.73283 -10613.862 0 271.14958 0.00068021452 0.00065788352 + 95160 -6248.3423 -6253.3064 4.9641199 3731.7375 632.24396 -10617.288 0 237.90848 0.00040101444 0.00038820771 + 95170 -6248.4762 -6253.1397 4.6635377 3735.9051 631.16796 -10620.213 0 223.50289 0.00020586446 0.00019356531 + 95180 -6248.5074 -6253.3134 4.8059315 3737.7829 630.83284 -10621.929 0 230.3272 0.00015139517 0.00013016225 + 95190 -6248.5114 -6253.6984 5.187039 3737.1074 631.39216 -10622.198 0 248.59201 0.00024915478 0.00021735704 + 95200 -6248.5769 -6254.1012 5.5243234 3734.3811 632.76299 -10621.245 0 264.75657 0.00046759413 0.0004329119 + 95210 -6248.7337 -6254.415 5.6813193 3730.5761 634.62549 -10619.617 0 272.2807 0.00074778248 0.00072041274 + 95220 -6248.9332 -6254.6673 5.7340351 3726.8168 636.50411 -10617.988 0 274.80713 0.0010216476 0.0010055157 + 95230 -6249.1011 -6254.9344 5.8333246 3724.1572 637.91209 -10617.004 0 279.56564 0.0012257234 0.0012156435 + 95240 -6249.2091 -6255.2218 6.0126898 3723.413 638.50462 -10617.139 0 288.16183 0.0013113446 0.0012982165 + 95250 -6249.3029 -6255.4284 6.12549 3724.9748 638.18031 -10618.584 0 293.56785 0.0012551176 0.0012341296 + 95260 -6249.4607 -6255.4277 5.9669434 3728.6199 637.09659 -10621.144 0 285.96941 0.0010691321 0.0010436944 + 95270 -6249.7199 -6255.1913 5.4713266 3733.4504 635.6013 -10624.243 0 262.21667 0.00080391918 0.00078201151 + 95280 -6250.04 -6254.8412 4.801177 3738.0897 634.11378 -10627.045 0 230.09934 0.00053634543 0.0005228076 + 95290 -6250.3391 -6254.5741 4.2349974 3741.1367 633.00283 -10628.714 0 202.96484 0.00034316575 0.00033523026 + 95300 -6250.5682 -6254.5192 3.9509148 3741.6805 632.49919 -10628.699 0 189.35001 0.00027266355 0.00026283864 + 95310 -6250.7479 -6254.6541 3.9061968 3739.6115 632.65566 -10626.921 0 187.20687 0.00032989168 0.00031309929 + 95320 -6250.9371 -6254.8514 3.9142393 3735.58 633.35033 -10623.782 0 187.59231 0.00048175557 0.00045974667 + 95330 -6251.1714 -6255.0007 3.8293956 3730.6828 634.32646 -10620.01 0 183.52612 0.00067531373 0.00065450482 + 95340 -6251.4307 -6255.0929 3.6622284 3726.0892 635.26501 -10616.447 0 175.51453 0.00085698428 0.00084234446 + 95350 -6251.6614 -6255.1987 3.5373193 3722.7779 635.87605 -10613.853 0 169.52819 0.00098457206 0.00097540645 + 95360 -6251.822 -6255.3824 3.5603624 3721.4084 635.98166 -10612.772 0 170.63254 0.001032086 0.0010230024 + 95370 -6251.9132 -6255.6352 3.7219365 3722.2597 635.5615 -10613.456 0 178.37608 0.00099138436 0.00097691767 + 95380 -6251.9716 -6255.8765 3.9049909 3725.1835 634.74808 -10615.808 0 187.14907 0.00087305125 0.00085192306 + 95390 -6252.0392 -6256.0116 3.9724286 3729.59 633.77834 -10619.38 0 190.38107 0.00070558888 0.00068153548 + 95400 -6252.1324 -6255.9959 3.8635417 3734.5221 632.92162 -10623.44 0 185.1626 0.00053072856 0.00050959577 + 95410 -6252.2299 -6255.863 3.633071 3738.8522 632.40756 -10627.123 0 174.11715 0.00039398419 0.00037935806 + 95420 -6252.2882 -6255.6965 3.4083512 3741.5727 632.373 -10629.642 0 163.34731 0.00033224046 0.00032283425 + 95430 -6252.2731 -6255.5694 3.2962997 3742.0873 632.83827 -10630.495 0 157.97717 0.00036252911 0.00035329644 + 95440 -6252.1842 -6255.4943 3.3100431 3740.3832 633.71236 -10629.59 0 158.63584 0.00047671925 0.00046290728 + 95450 -6252.0543 -6255.4283 3.3739886 3737.007 634.81921 -10627.254 0 161.70046 0.00064486356 0.0006258642 + 95460 -6251.9212 -6255.3272 3.4059324 3732.857 635.93573 -10624.12 0 163.23139 0.00082594586 0.0008057903 + 95470 -6251.7947 -6255.203 3.4082773 3728.9027 636.83512 -10620.941 0 163.34377 0.00098087998 0.00096484774 + 95480 -6251.6421 -6255.1289 3.4868094 3725.9582 637.33048 -10618.418 0 167.10747 0.0010816373 0.0010716921 + 95490 -6251.4072 -6255.1798 3.7726283 3724.5772 637.31235 -10617.069 0 180.80552 0.0011134925 0.0011063362 + 95500 -6251.0508 -6255.3532 4.3023985 3725.0317 636.77211 -10617.157 0 206.19508 0.0010723851 0.0010619136 + 95510 -6250.5869 -6255.5375 4.9506415 3727.2946 635.80616 -10618.638 0 237.26252 0.00096247178 0.00094491991 + 95520 -6250.0853 -6255.5669 5.4816015 3730.981 634.60004 -10621.148 0 262.7091 0.0007977901 0.00077538629 + 95530 -6249.6261 -6255.3317 5.7055917 3735.3034 633.39545 -10624.031 0 273.44397 0.0006069567 0.00058650081 + 95540 -6249.2394 -6254.8646 5.6251394 3739.1557 632.44635 -10626.467 0 269.58824 0.00043434992 0.00042118564 + 95550 -6248.8875 -6254.3223 5.4348281 3741.3974 631.97274 -10627.692 0 260.46746 0.00033101937 0.00032352016 + 95560 -6248.5136 -6253.8711 5.35747 3741.2612 632.11906 -10627.251 0 256.76002 0.00033613999 0.00032621141 + 95570 -6248.1092 -6253.5675 5.4583952 3738.6805 632.9209 -10625.169 0 261.59693 0.00045905725 0.00043898414 + 95580 -6247.7324 -6253.3432 5.6107938 3734.3377 634.2819 -10621.963 0 268.90072 0.00067370375 0.00064350616 + 95590 -6247.4563 -6253.106 5.6496853 3729.4007 635.96838 -10618.475 0 270.76462 0.00092916051 0.00089744339 + 95600 -6247.2934 -6252.8647 5.5713554 3725.1079 637.63491 -10615.608 0 267.01061 0.0011687612 0.0011455496 + 95610 -6247.1716 -6252.7504 5.5788346 3722.4407 638.89094 -10614.082 0 267.36906 0.0013451104 0.0013327518 + 95620 -6246.9906 -6252.9016 5.911042 3722.0024 639.40113 -10614.305 0 283.2903 0.0014246259 0.0014152009 + 95630 -6246.7099 -6253.314 6.6040712 3724.0208 638.99102 -10616.326 0 316.50415 0.0013868241 0.0013688412 + 95640 -6246.39 -6253.8036 7.4135466 3728.3067 637.71913 -10619.829 0 355.29875 0.0012283566 0.0011968257 + 95650 -6246.1426 -6254.1302 7.9876388 3734.1324 635.8841 -10624.147 0 382.81247 0.0009738758 0.00093448605 + 95660 -6246.0352 -6254.175 8.1398386 3740.195 633.9568 -10628.327 0 390.10674 0.00068300381 0.00064671498 + 95670 -6246.04 -6254.01 7.970075 3744.8627 632.45534 -10631.328 0 381.97071 0.00043999531 0.00041351818 + 95680 -6246.0727 -6253.8104 7.7377251 3746.6963 631.80205 -10632.309 0 370.8352 0.00032521622 0.00030620112 + 95690 -6246.0742 -6253.7016 7.6274235 3745.0056 632.20623 -10630.913 0 365.54893 0.00038285665 0.00036335003 + 95700 -6246.0559 -6253.6745 7.6185471 3740.1508 633.60478 -10627.43 0 365.12353 0.00060251862 0.00057667553 + 95710 -6246.0775 -6253.6234 7.5459469 3733.4449 635.67251 -10622.741 0 361.64412 0.00092298438 0.000892099 + 95720 -6246.1847 -6253.4596 7.2749362 3726.7144 637.89647 -10618.07 0 348.65576 0.0012541865 0.0012251221 + 95730 -6246.3639 -6253.1984 6.8344945 3721.7289 639.69813 -10614.625 0 327.54733 0.0015059118 0.0014847562 + 95740 -6246.5515 -6252.9523 6.4008332 3719.7241 640.58031 -10613.257 0 306.76384 0.001611853 0.0015984676 + 95750 -6246.6856 -6252.8414 6.1557992 3721.1509 640.26706 -10614.259 0 295.02044 0.0015435483 0.0015315945 + 95760 -6246.7555 -6252.9023 6.1468681 3725.6384 638.79727 -10617.338 0 294.59241 0.0013148813 0.0012970618 + 95770 -6246.8058 -6253.0689 6.2630399 3732.0997 636.53583 -10621.704 0 300.16001 0.00097941968 0.0009533733 + 95780 -6246.8984 -6253.2358 6.3374667 3738.9424 634.0853 -10626.264 0 303.72696 0.00062065089 0.00059062678 + 95790 -6247.0619 -6253.3454 6.2835203 3744.3993 632.11453 -10629.859 0 301.14155 0.0003336086 0.0003067614 + 95800 -6247.2729 -6253.4223 6.1493797 3746.9785 631.15552 -10631.556 0 294.71278 0.00019900373 0.0001796745 + 95810 -6247.4807 -6253.5364 6.0557216 3745.9287 631.4383 -10630.903 0 290.22416 0.00025690683 0.0002435981 + 95820 -6247.6497 -6253.7349 6.0851985 3741.5319 632.82343 -10628.09 0 291.63686 0.00049099204 0.00047795258 + 95830 -6247.7841 -6254.0028 6.218694 3735.0712 634.85661 -10623.931 0 298.03471 0.00083162474 0.0008131338 + 95840 -6247.9221 -6254.2752 6.3530754 3728.4511 636.92442 -10619.651 0 304.47502 0.0011778037 0.0011518267 + 95850 -6248.1091 -6254.4785 6.3693941 3723.6005 638.45277 -10616.532 0 305.25711 0.0014298533 0.0013989664 + 95860 -6248.3696 -6254.5729 6.2033049 3721.8662 639.07543 -10615.515 0 297.29718 0.0015210095 0.0014904517 + 95870 -6248.6927 -6254.5735 5.880783 3723.6081 638.71871 -10616.9 0 281.84012 0.0014368411 0.0014110833 + 95880 -6249.0412 -6254.5382 5.4970435 3728.1419 637.58707 -10620.267 0 263.44917 0.0012157897 0.0011959007 + 95890 -6249.378 -6254.5256 5.1476132 3734.036 636.07201 -10624.634 0 246.70251 0.00093149588 0.00091518553 + 95900 -6249.689 -6254.5535 4.8645007 3739.6183 634.62204 -10628.794 0 233.13417 0.00066550722 0.00064962332 + 95910 -6249.9826 -6254.598 4.6153973 3743.4784 633.61187 -10631.688 0 221.19574 0.000482317 0.00046533416 + 95920 -6250.2683 -6254.6301 4.3618885 3744.8018 633.24394 -10632.676 0 209.04617 0.00041486667 0.00039711708 + 95930 -6250.5411 -6254.6496 4.1084957 3743.4925 633.50936 -10631.651 0 196.90217 0.00046163108 0.00044368102 + 95940 -6250.788 -6254.6794 3.8913734 3740.112 634.21856 -10629.01 0 186.49645 0.00059238675 0.00057388464 + 95950 -6251.0038 -6254.7352 3.7313679 3735.677 635.08593 -10625.498 0 178.82809 0.00075980815 0.0007401093 + 95960 -6251.197 -6254.8095 3.6124732 3731.3616 635.83303 -10622.004 0 173.12999 0.00091438972 0.00089390591 + 95970 -6251.3789 -6254.8863 3.5074003 3728.1823 636.27165 -10619.34 0 168.0943 0.0010187701 0.00099921666 + 95980 -6251.5501 -6254.966 3.4158736 3726.7606 636.34138 -10618.068 0 163.70783 0.0010564715 0.0010395705 + 95990 -6251.6984 -6255.0694 3.3710816 3727.2345 636.097 -10618.401 0 161.56115 0.0010319696 0.0010178973 + 96000 -6251.8094 -6255.2159 3.4064691 3729.3188 635.66062 -10620.195 0 163.25711 0.00096335998 0.00095050761 + 96010 -6251.8801 -6255.3962 3.5161361 3732.4541 635.16437 -10623.015 0 168.51297 0.00087259253 0.0008589152 + 96020 -6251.9206 -6255.5695 3.6488914 3735.9669 634.70873 -10626.245 0 174.87535 0.00077859187 0.00076329575 + 96030 -6251.9443 -6255.6884 3.7441788 3739.1904 634.34996 -10629.229 0 179.44206 0.00069552037 0.00067951615 + 96040 -6251.9535 -6255.7316 3.7780514 3741.5492 634.1139 -10631.395 0 181.06542 0.00063447206 0.00061920289 + 96050 -6251.9357 -6255.7128 3.7771049 3742.6296 634.02018 -10632.363 0 181.02006 0.00060505601 0.00059086133 + 96060 -6251.8721 -6255.6602 3.7880466 3742.2476 634.0981 -10632.006 0 181.54445 0.00061465784 0.00060028857 + 96070 -6251.7518 -6255.584 3.8321909 3740.4941 634.38254 -10630.461 0 183.66009 0.00066593134 0.00064974828 + 96080 -6251.577 -6255.4655 3.8884772 3737.7245 634.89063 -10628.081 0 186.35765 0.00075462028 0.00073639081 + 96090 -6251.3551 -6255.2779 3.9227637 3734.4841 635.59041 -10625.352 0 188.00085 0.00086912686 0.000850664 + 96100 -6251.0832 -6255.0216 3.9383836 3731.3942 636.37822 -10622.794 0 188.74944 0.00099155703 0.00097535112 + 96110 -6250.739 -6254.7392 4.0001267 3729.0477 637.08076 -10620.868 0 191.70852 0.0010992019 0.0010859536 + 96120 -6250.2903 -6254.4906 4.2002374 3727.9397 637.48904 -10619.919 0 201.29894 0.0011663158 0.0011534545 + 96130 -6249.7227 -6254.3027 4.5799703 3728.4077 637.41985 -10620.13 0 219.49787 0.0011677202 0.0011505802 + 96140 -6249.0717 -6254.1376 5.0658865 3730.5321 636.78841 -10621.458 0 242.7857 0.0010864114 0.0010617762 + 96150 -6248.4253 -6253.9169 5.4915615 3733.993 635.66663 -10623.577 0 263.18644 0.00092508582 0.00089442656 + 96160 -6247.8762 -6253.5911 5.7149574 3737.9866 634.29856 -10625.876 0 273.89282 0.00071603913 0.00068520593 + 96170 -6247.459 -6253.197 5.7379322 3741.3411 633.05537 -10627.593 0 274.99391 0.00051991318 0.0004948602 + 96180 -6247.1349 -6252.8488 5.7139009 3742.8731 632.335 -10628.057 0 273.84219 0.00040813409 0.00039010334 + 96190 -6246.8329 -6252.6658 5.8329032 3741.8561 632.43436 -10626.956 0 279.54545 0.00043471915 0.00041902137 + 96200 -6246.5098 -6252.6885 6.1786713 3738.3799 633.43411 -10624.503 0 296.1166 0.00061084142 0.00059040386 + 96210 -6246.1797 -6252.8486 6.6689417 3733.4128 635.138 -10621.399 0 319.6131 0.00089514533 0.00086611023 + 96220 -6245.8953 -6253.0226 7.1273453 3728.5052 637.09929 -10618.627 0 341.58238 0.0012058116 0.0011705827 + 96230 -6245.6971 -6253.1297 7.4326659 3725.2432 638.74386 -10617.117 0 356.21505 0.0014499883 0.0014149212 + 96240 -6245.5746 -6253.1911 7.6165309 3724.6908 639.56206 -10617.444 0 365.0269 0.0015572762 0.0015268394 + 96250 -6245.479 -6253.2921 7.8131454 3727.0579 639.30203 -10619.652 0 374.44977 0.0015024681 0.0014752604 + 96260 -6245.3767 -6253.4775 8.1007617 3731.6923 638.08034 -10623.25 0 388.23396 0.0013101403 0.0012807707 + 96270 -6245.2905 -6253.6812 8.3906785 3737.3191 636.3507 -10627.351 0 402.1284 0.0010436344 0.0010087897 + 96280 -6245.2818 -6253.767 8.4852482 3742.39 634.73335 -10630.89 0 406.66071 0.00078540872 0.00074796367 + 96290 -6245.3881 -6253.6447 8.2566026 3745.4665 633.7776 -10632.889 0 395.70272 0.00061387033 0.0005806527 + 96300 -6245.5799 -6253.3487 7.7687962 3745.6106 633.76317 -10632.723 0 372.3243 0.00057997699 0.00055530129 + 96310 -6245.7815 -6253.0072 7.225679 3742.7117 634.6201 -10630.339 0 346.29508 0.00068922455 0.00067055937 + 96320 -6245.9333 -6252.7379 6.8045781 3737.5969 635.98222 -10626.317 0 326.11356 0.00089723168 0.00087703671 + 96330 -6246.035 -6252.568 6.5330504 3731.808 637.33452 -10621.711 0 313.10043 0.0011241442 0.0010960633 + 96340 -6246.1372 -6252.4404 6.3032381 3727.0795 638.19492 -10617.715 0 302.08654 0.0012845398 0.0012486964 + 96350 -6246.2949 -6252.2893 5.9944594 3724.7211 638.27258 -10615.283 0 287.28813 0.0013210054 0.001284333 + 96360 -6246.5201 -6252.1247 5.6046297 3725.1692 637.55381 -10614.848 0 268.6053 0.0012265922 0.0011978978 + 96370 -6246.7673 -6252.0598 5.2925453 3727.9053 636.28901 -10616.254 0 253.64847 0.0010456196 0.0010287732 + 96380 -6246.9644 -6252.2492 5.284802 3731.7686 634.89118 -10618.909 0 253.27737 0.00085208196 0.00084247376 + 96390 -6247.0706 -6252.7668 5.6961275 3735.5005 633.78826 -10622.056 0 272.99039 0.00071607141 0.00070365587 + 96400 -6247.1175 -6253.5185 6.4010001 3738.2307 633.28144 -10625.031 0 306.77184 0.00067514456 0.00065225426 + 96410 -6247.1955 -6254.2755 7.0800205 3739.6728 633.45497 -10627.403 0 339.31431 0.0007245336 0.00069211874 + 96420 -6247.3874 -6254.8108 7.4234293 3740.0018 634.16754 -10628.98 0 355.77238 0.00082847282 0.00079523986 + 96430 -6247.7026 -6255.0307 7.3280141 3739.5843 635.12784 -10629.743 0 351.19955 0.0009424121 0.0009174825 + 96440 -6248.0721 -6254.9963 6.9242233 3738.7711 636.01976 -10629.787 0 331.84763 0.0010315908 0.0010171282 + 96450 -6248.4074 -6254.8342 6.4267873 3737.8358 636.61879 -10629.289 0 308.00771 0.0010779755 0.0010680527 + 96460 -6248.6683 -6254.6256 5.9572676 3736.9955 636.85088 -10628.472 0 285.50569 0.0010780336 0.001064198 + 96470 -6248.8791 -6254.3697 5.4905906 3736.4092 636.78058 -10627.559 0 263.13991 0.0010385909 0.001016914 + 96480 -6249.0896 -6254.038 4.9484339 3736.1184 636.54947 -10626.706 0 237.15672 0.00097472241 0.00094843291 + 96490 -6249.3221 -6253.657 4.3349428 3735.996 636.30051 -10625.954 0 207.75478 0.00090785874 0.00088382461 + 96500 -6249.5515 -6253.3375 3.7859357 3735.7891 636.1209 -10625.247 0 181.44328 0.0008604135 0.00084291306 + 96510 -6249.7299 -6253.2165 3.4866588 3735.2709 636.02107 -10624.509 0 167.10025 0.00084673472 0.00083394854 + 96520 -6249.8303 -6253.3598 3.5295206 3734.4136 635.94933 -10623.723 0 169.15443 0.00086524596 0.00085128158 + 96530 -6249.8718 -6253.7065 3.8346791 3733.451 635.82742 -10622.985 0 183.77934 0.0008980391 0.00087846823 + 96540 -6249.9055 -6254.1087 4.2031426 3732.7672 635.58919 -10622.465 0 201.43818 0.00092004717 0.00089602112 + 96550 -6249.9731 -6254.4341 4.4609526 3732.6786 635.20984 -10622.323 0 213.79388 0.00091314373 0.00089051619 + 96560 -6250.0717 -6254.6479 4.5762839 3733.2589 634.72058 -10622.627 0 219.3212 0.00087633175 0.00086059792 + 96570 -6250.1551 -6254.8094 4.6542495 3734.3236 634.20636 -10623.339 0 223.05775 0.00082532071 0.00081678674 + 96580 -6250.1719 -6254.9902 4.8183125 3735.5691 633.78585 -10624.345 0 230.92057 0.0007821323 0.00077548598 + 96590 -6250.107 -6255.1894 5.0823799 3736.7467 633.57659 -10625.513 0 243.57616 0.00076231305 0.00075097314 + 96600 -6249.9931 -6255.3166 5.323475 3737.7429 633.65494 -10626.714 0 255.13079 0.00076841401 0.00074997455 + 96610 -6249.8816 -6255.2608 5.3791806 3738.5264 634.02642 -10627.814 0 257.80052 0.00079299144 0.00077113926 + 96620 -6249.7963 -6254.9845 5.1881812 3739.0357 634.62035 -10628.641 0 248.64675 0.00082699184 0.00080824529 + 96630 -6249.7104 -6254.5639 4.8535456 3739.1276 635.31316 -10629.005 0 232.60914 0.00086595603 0.00085401097 + 96640 -6249.5652 -6254.1387 4.5735084 3738.6459 635.97138 -10628.756 0 219.18819 0.00090965787 0.00090220357 + 96650 -6249.3139 -6253.8141 4.5002587 3737.5589 636.4962 -10627.869 0 215.67765 0.00095739232 0.00094805517 + 96660 -6248.9513 -6253.5992 4.6478589 3736.0472 636.85001 -10626.496 0 222.75148 0.0010047735 0.00098834695 + 96670 -6248.5104 -6253.4311 4.9207246 3734.4623 637.05399 -10624.947 0 235.82873 0.0010454094 0.0010218243 + 96680 -6248.0304 -6253.2555 5.2250872 3733.1889 637.15961 -10623.604 0 250.4155 0.0010752592 0.0010490985 + 96690 -6247.5262 -6253.0834 5.5572136 3732.5112 637.20948 -10622.804 0 266.33286 0.0010945767 0.0010708932 + 96700 -6246.9833 -6252.9728 5.9894732 3732.5645 637.20772 -10622.745 0 287.04916 0.0011048316 0.0010850674 + 96710 -6246.3856 -6252.9574 6.5717269 3733.3578 637.11553 -10623.431 0 314.95403 0.001103513 0.0010848875 + 96720 -6245.7499 -6252.9937 7.2438314 3734.7971 636.87644 -10624.667 0 347.16505 0.0010827803 0.0010612343 + 96730 -6245.1336 -6252.9743 7.840691 3736.6641 636.46041 -10626.099 0 375.7699 0.001034938 0.0010088128 + 96740 -6244.6076 -6252.7935 8.1859465 3738.5765 635.90246 -10627.272 0 392.31649 0.00096130511 0.00093282033 + 96750 -6244.2141 -6252.4204 8.2063024 3739.9959 635.30951 -10627.726 0 393.29206 0.00087777167 0.00085130136 + 96760 -6243.9414 -6251.9346 7.9931582 3740.3347 634.8276 -10627.097 0 383.07699 0.00081261496 0.0007909533 + 96770 -6243.7357 -6251.4992 7.7634775 3739.1653 634.58955 -10625.254 0 372.0694 0.00079663454 0.00077811328 + 96780 -6243.5449 -6251.2728 7.72792 3736.4636 634.67371 -10622.41 0 370.36529 0.00084950489 0.00082881136 + 96790 -6243.3616 -6251.3166 7.9550245 3732.7472 635.08591 -10619.15 0 381.24941 0.00096879171 0.00094144672 + 96800 -6243.2287 -6251.5708 8.3421466 3728.9868 635.75538 -10616.313 0 399.80247 0.0011277122 0.0010944295 + 96810 -6243.2002 -6251.9153 8.7151344 3726.2987 636.53588 -10614.75 0 417.67814 0.0012833069 0.0012500179 + 96820 -6243.2941 -6252.2563 8.9622275 3725.5709 637.2209 -10615.048 0 429.52023 0.0013908215 0.0013639769 + 96830 -6243.4786 -6252.5616 9.0830541 3727.1951 637.5894 -10617.346 0 435.31092 0.001417241 0.0013984279 + 96840 -6243.7045 -6252.8273 9.1227236 3730.9833 637.48258 -10621.293 0 437.2121 0.0013492637 0.0013338762 + 96850 -6243.95 -6253.0223 9.0723079 3736.2315 636.88562 -10626.139 0 434.7959 0.0011959967 0.0011770746 + 96860 -6244.2345 -6253.0762 8.8416852 3741.8605 635.97064 -10630.907 0 423.74317 0.00098892306 0.00096284707 + 96870 -6244.5902 -6252.9263 8.3361594 3746.601 635.06611 -10634.593 0 399.51553 0.0007791617 0.0007484482 + 96880 -6245.0174 -6252.5882 7.5707811 3749.2313 634.54931 -10636.369 0 362.83431 0.00062858915 0.00059949086 + 96890 -6245.468 -6252.1813 6.7133064 3748.8782 634.70058 -10635.76 0 321.73931 0.00059227485 0.00056935513 + 96900 -6245.8751 -6251.8747 5.9995966 3745.3314 635.58291 -10632.789 0 287.53433 0.00069605636 0.00067868094 + 96910 -6246.2015 -6251.7874 5.5858621 3739.243 636.99896 -10628.029 0 267.70585 0.00092014166 0.00090389926 + 96920 -6246.459 -6251.9298 5.4707544 3732.057 638.53906 -10622.526 0 262.18925 0.0011999308 0.0011809774 + 96930 -6246.6853 -6252.2337 5.5483345 3725.6272 639.69925 -10617.56 0 265.90732 0.0014464354 0.0014241504 + 96940 -6246.9074 -6252.6251 5.7176885 3721.6558 640.03344 -10614.314 0 274.02372 0.0015771989 0.001553111 + 96950 -6247.1281 -6253.0613 5.9332292 3721.1856 639.29887 -10613.546 0 284.35363 0.0015437237 0.0015189706 + 96960 -6247.3416 -6253.5108 6.1692041 3724.3214 637.55151 -10615.384 0 295.66288 0.0013458046 0.0013203519 + 96970 -6247.5524 -6253.9255 6.3731136 3730.2231 635.15531 -10619.304 0 305.43536 0.0010310336 0.0010049758 + 96980 -6247.7717 -6254.2488 6.4770673 3737.3332 632.69402 -10624.276 0 310.41741 0.00068206903 0.00065666719 + 96990 -6248.0015 -6254.4489 6.4473828 3743.7817 630.8096 -10629.04 0 308.99476 0.00039462424 0.00037148737 + 97000 -6248.2271 -6254.5304 6.3032526 3747.8947 630.0177 -10632.443 0 302.08723 0.00025010951 0.00022961851 + 97010 -6248.4296 -6254.5123 6.0826775 3748.6722 630.55588 -10633.74 0 291.51604 0.00029028079 0.00027126789 + 97020 -6248.6004 -6254.4027 5.8023279 3746.072 632.30815 -10632.783 0 278.08011 0.00050326408 0.00048425177 + 97030 -6248.7427 -6254.2 5.4573104 3740.9954 634.8299 -10630.025 0 261.54494 0.00082709715 0.00080764821 + 97040 -6248.8628 -6253.917 5.0541819 3734.9884 637.4721 -10626.378 0 242.22475 0.0011697418 0.0011506263 + 97050 -6248.9599 -6253.5987 4.6387649 3729.7688 639.57048 -10622.938 0 222.31564 0.0014378655 0.0014200681 + 97060 -6249.0261 -6253.3175 4.2914556 3726.7392 640.6376 -10620.694 0 205.67063 0.0015639337 0.0015475067 + 97070 -6249.0527 -6253.1443 4.0915217 3726.6287 640.49185 -10620.265 0 196.08868 0.0015230561 0.0015068767 + 97080 -6249.0394 -6253.1155 4.0760631 3729.3497 639.28306 -10621.748 0 195.34781 0.0013359809 0.0013186896 + 97090 -6248.996 -6253.2209 4.22486 3734.0745 637.41549 -10624.711 0 202.479 0.0010596249 0.0010409487 + 97100 -6248.9352 -6253.4185 4.4833098 3739.4833 635.40591 -10628.308 0 214.86536 0.00076944332 0.00075061574 + 97110 -6248.8601 -6253.6645 4.804464 3744.1097 633.73168 -10631.506 0 230.25687 0.00053885106 0.0005214765 + 97120 -6248.758 -6253.9295 5.1715312 3746.7113 632.71774 -10633.359 0 247.84879 0.00042071819 0.00040488712 + 97130 -6248.6107 -6254.1858 5.5750792 3746.5889 632.4876 -10633.262 0 267.18907 0.00043520662 0.00041873878 + 97140 -6248.4155 -6254.3806 5.9650919 3743.769 632.97511 -10631.125 0 285.88068 0.00056701397 0.00054703467 + 97150 -6248.1969 -6254.4338 6.2368375 3738.9774 633.97495 -10627.386 0 298.90425 0.00077302084 0.00074878194 + 97160 -6247.9929 -6254.2804 6.2875047 3733.3991 635.2081 -10622.888 0 301.3325 0.00099783398 0.00097203648 + 97170 -6247.824 -6253.9296 6.1055802 3728.3281 636.38702 -10618.645 0 292.61366 0.0011909245 0.0011679044 + 97180 -6247.6736 -6253.4822 5.8085567 3724.8518 637.27281 -10615.607 0 278.37863 0.0013181522 0.0013002939 + 97190 -6247.4988 -6253.0843 5.58551 3723.6682 637.71674 -10614.469 0 267.68898 0.0013642718 0.0013497777 + 97200 -6247.2589 -6252.8452 5.5863057 3725.0284 637.67785 -10615.551 0 267.72711 0.0013289114 0.0013128537 + 97210 -6246.9395 -6252.7795 5.8399391 3728.7412 637.2145 -10618.735 0 279.88265 0.0012216498 0.001199495 + 97220 -6246.5531 -6252.8081 6.2550313 3734.1921 636.4576 -10623.458 0 299.7762 0.001060285 0.0010312686 + 97230 -6246.1173 -6252.8164 6.6990984 3740.3818 635.57925 -10628.777 0 321.05838 0.00087237077 0.0008401835 + 97240 -6245.6221 -6252.7284 7.1063066 3746.0284 634.76797 -10633.525 0 340.57409 0.00069661906 0.00066656619 + 97250 -6245.0094 -6252.5461 7.5367421 3749.7781 634.21503 -10636.539 0 361.20297 0.00057966452 0.0005540911 + 97260 -6244.1883 -6252.317 8.1286344 3750.5227 634.10531 -10636.945 0 389.56977 0.00056592493 0.00054161605 + 97270 -6243.092 -6252.0545 8.9625336 3747.7443 634.59643 -10634.395 0 429.5349 0.00068286959 0.00065315627 + 97280 -6241.7522 -6251.6911 9.9389493 3741.7538 635.76729 -10629.212 0 476.33022 0.0009274034 0.00088796221 + 97290 -6240.3355 -6251.1252 10.789705 3733.711 637.53522 -10622.371 0 517.10322 0.0012595963 0.0012133364 + 97300 -6239.0713 -6250.3367 11.265335 3725.3863 639.58222 -10615.305 0 539.89807 0.0016085711 0.0015645871 + 97310 -6238.1047 -6249.4626 11.357824 3718.7189 641.36715 -10609.549 0 544.33063 0.0018899582 0.0018561703 + 97320 -6237.4275 -6248.7444 11.316932 3715.3234 642.27137 -10606.339 0 542.37089 0.0020272719 0.0020031724 + 97330 -6236.9546 -6248.3782 11.423557 3716.0999 641.83371 -10606.312 0 547.48096 0.0019705642 0.0019471971 + 97340 -6236.6418 -6248.3913 11.749484 3721.0004 639.96017 -10609.352 0 563.10119 0.0017114388 0.0016787657 + 97350 -6236.5244 -6248.643 12.118597 3728.9583 637.004 -10614.605 0 580.79116 0.0012930407 0.0012482272 + 97360 -6236.6654 -6248.941 12.275627 3738.0263 633.6804 -10620.648 0 588.31693 0.00080909862 0.00075897928 + 97370 -6237.0746 -6249.1819 12.107258 3745.7841 630.85603 -10625.822 0 580.24773 0.00038609134 0.00034196214 + 97380 -6237.6735 -6249.4153 11.741837 3749.9849 629.29658 -10628.697 0 562.7347 0.00014908153 0.00011774214 + 97390 -6238.3358 -6249.7843 11.448517 3749.2837 629.45373 -10628.522 0 548.67716 0.00018019521 0.00015818897 + 97400 -6238.9727 -6250.3769 11.404247 3743.7908 631.34189 -10625.51 0 546.55549 0.00048464406 0.00046074031 + 97410 -6239.5905 -6251.1057 11.515129 3735.1781 634.52386 -10620.808 0 551.86957 0.00098032224 0.00094487468 + 97420 -6240.2675 -6251.7307 11.463257 3726.1871 638.20916 -10616.127 0 549.38359 0.0015207853 0.0014742048 + 97430 -6241.0596 -6252.0261 10.966489 3719.6702 641.45586 -10613.152 0 525.5757 0.0019462265 0.0018987524 + 97440 -6241.9249 -6251.9506 10.025703 3717.5922 643.43495 -10612.978 0 480.48796 0.0021395751 0.0021023096 + 97450 -6242.7422 -6251.6694 8.9272845 3720.4574 643.67523 -10615.802 0 427.84557 0.0020604883 0.0020360904 + 97460 -6243.4043 -6251.4126 8.0083029 3727.3425 642.19709 -10620.952 0 383.80281 0.0017458146 0.0017273033 + 97470 -6243.8936 -6251.3117 7.418112 3736.3533 639.48499 -10627.15 0 355.51755 0.001286598 0.0012644662 + 97480 -6244.2759 -6251.3568 7.0808501 3745.1913 636.31578 -10632.864 0 339.35407 0.00079901199 0.0007693486 + 97490 -6244.6366 -6251.4817 6.8451289 3751.6593 633.51224 -10636.653 0 328.05698 0.00039836147 0.00036499508 + 97500 -6245.0179 -6251.667 6.6490687 3754.1006 631.70961 -10637.477 0 318.66068 0.00017594144 0.00014588646 + 97510 -6245.4047 -6251.9604 6.5557345 3751.7783 631.20415 -10634.943 0 314.18758 0.00017802806 0.00015506082 + 97520 -6245.758 -6252.4073 6.6492814 3745.1227 631.91439 -10629.444 0 318.67087 0.00039152949 0.00037344924 + 97530 -6246.0622 -6252.9629 6.9007565 3735.7167 633.44674 -10622.126 0 330.72297 0.0007442655 0.00072565965 + 97540 -6246.3431 -6253.4779 7.1348293 3725.9266 635.23358 -10614.638 0 341.94105 0.0011248846 0.0011023379 + 97550 -6246.6429 -6253.7779 7.1350817 3718.2352 636.70266 -10608.716 0 341.95315 0.0014182495 0.0013931439 + 97560 -6246.9779 -6253.7745 6.7966197 3714.5086 637.43482 -10605.718 0 325.73215 0.0015426275 0.0015194224 + 97570 -6247.3213 -6253.5195 6.1982442 3715.4868 637.26968 -10606.276 0 297.05464 0.0014731702 0.0014552421 + 97580 -6247.623 -6253.1699 5.5469131 3720.6693 636.33145 -10610.171 0 265.8392 0.0012437092 0.0012304903 + 97590 -6247.8477 -6252.8971 5.0493346 3728.5825 634.97269 -10616.452 0 241.99244 0.00092961847 0.00091715667 + 97600 -6247.9976 -6252.8013 4.8037231 3737.2619 633.6592 -10623.722 0 230.22136 0.00062131642 0.00060551013 + 97610 -6248.1072 -6252.8816 4.7743881 3744.7636 632.83177 -10630.477 0 228.81547 0.00039868844 0.00037853268 + 97620 -6248.2167 -6253.0681 4.8514133 3749.5737 632.78116 -10635.423 0 232.50695 0.00031319739 0.00029149219 + 97630 -6248.3433 -6253.2868 4.9435135 3750.8698 633.56735 -10637.724 0 236.9209 0.00037972003 0.00036065432 + 97640 -6248.4704 -6253.5029 5.0324817 3748.6351 635.00464 -10637.143 0 241.18476 0.00057668162 0.00056221869 + 97650 -6248.5645 -6253.7158 5.1512568 3743.6296 636.71783 -10634.063 0 246.87713 0.00085233047 0.00084038816 + 97660 -6248.6039 -6253.9189 5.3150523 3737.2116 638.2527 -10629.383 0 254.72713 0.0011362935 0.0011222288 + 97670 -6248.5976 -6254.0719 5.4743715 3731.0101 639.20627 -10624.288 0 262.3626 0.0013560225 0.0013361586 + 97680 -6248.5787 -6254.1117 5.5329205 3726.5057 639.33603 -10619.953 0 265.1686 0.0014555905 0.0014299738 + 97690 -6248.5795 -6253.9944 5.4148481 3724.634 638.61405 -10617.242 0 259.5099 0.0014112954 0.0013836514 + 97700 -6248.607 -6253.7356 5.1285879 3725.5477 637.21263 -10616.496 0 245.79071 0.0012379504 0.001212958 + 97710 -6248.6373 -6253.4157 4.7784264 3728.6271 635.43527 -10617.478 0 229.00901 0.00098286462 0.00096277887 + 97720 -6248.6324 -6253.1422 4.5098521 3732.7367 633.62769 -10619.507 0 216.13742 0.00070979111 0.00069294763 + 97730 -6248.5673 -6252.9899 4.4226159 3736.6174 632.1026 -10621.71 0 211.95657 0.00047956115 0.00046197833 + 97740 -6248.4461 -6252.962 4.515904 3739.2496 631.09278 -10623.304 0 216.42746 0.00033514539 0.00031400172 + 97750 -6248.2943 -6253.0047 4.7104502 3740.0601 630.72823 -10623.793 0 225.7512 0.00029577475 0.00027190216 + 97760 -6248.1329 -6253.0637 4.9308145 3738.9545 631.02968 -10623.048 0 236.3123 0.0003595406 0.00033678088 + 97770 -6247.9541 -6253.1337 5.1795629 3736.2472 631.9159 -10621.297 0 248.23372 0.00050988687 0.00049173155 + 97780 -6247.7195 -6253.2569 5.5374307 3732.5753 633.22509 -10619.057 0 265.38475 0.00072077989 0.00070706922 + 97790 -6247.3856 -6253.4663 6.0807641 3728.8189 634.74685 -10617.032 0 291.42434 0.00095831559 0.00094493051 + 97800 -6246.9404 -6253.7187 6.7782891 3725.9842 636.25735 -10615.96 0 324.85365 0.0011811539 0.001163284 + 97810 -6246.4236 -6253.8801 7.4564277 3724.9919 637.55082 -10616.423 0 357.35385 0.0013447468 0.0013212287 + 97820 -6245.9078 -6253.7881 7.8802561 3726.3879 638.46413 -10618.64 0 377.66609 0.0014120798 0.0013869623 + 97830 -6245.4485 -6253.3564 7.9079128 3730.0867 638.89494 -10622.338 0 378.99155 0.0013675299 0.0013468322 + 97840 -6245.0429 -6252.6408 7.597917 3735.3055 638.81619 -10626.762 0 364.13482 0.0012253376 0.0012111739 + 97850 -6244.6416 -6251.8053 7.1637071 3740.7688 638.28998 -10630.864 0 343.32504 0.0010259139 0.0010133999 + 97860 -6244.2075 -6251.0127 6.8052019 3745.1031 637.47591 -10633.592 0 326.14346 0.0008219939 0.00080265048 + 97870 -6243.7619 -6250.3419 6.5799791 3747.2168 636.61573 -10634.174 0 315.34952 0.00066400477 0.00063320198 + 97880 -6243.3672 -6249.8097 6.4424772 3746.5114 635.97593 -10632.297 0 308.75966 0.00059161778 0.00055309406 + 97890 -6243.0627 -6249.4626 6.3999394 3742.9308 635.7536 -10628.147 0 306.721 0.00062953649 0.00059237938 + 97900 -6242.8167 -6249.4214 6.6046594 3736.9632 635.98338 -10622.368 0 316.53234 0.00078120337 0.00075187165 + 97910 -6242.5468 -6249.8099 7.2630891 3729.6524 636.49572 -10615.958 0 348.08798 0.0010194409 0.00099619853 + 97920 -6242.1937 -6250.6236 8.4299174 3722.5348 636.95617 -10610.115 0 404.00894 0.0012819364 0.0012566196 + 97930 -6241.7877 -6251.6631 9.8753391 3717.3628 636.97798 -10606.004 0 473.28166 0.0014817669 0.001446866 + 97940 -6241.4485 -6252.6002 11.1517 3715.5929 636.27054 -10604.464 0 534.45205 0.00153519 0.001489887 + 97950 -6241.3134 -6253.1336 11.820165 3717.8201 634.77067 -10605.724 0 566.48861 0.0013967322 0.0013472416 + 97960 -6241.4463 -6253.1301 11.683752 3723.4401 632.70637 -10609.277 0 559.95096 0.0010845876 0.0010390955 + 97970 -6241.7984 -6252.6728 10.87444 3730.7504 630.56441 -10613.988 0 521.1642 0.000682131 0.00064454636 + 97980 -6242.2526 -6251.9909 9.7383139 3737.5013 628.9685 -10618.461 0 466.71464 0.00031216416 0.00027966946 + 97990 -6242.71 -6251.3191 8.6091456 3741.6834 628.50166 -10621.504 0 412.59856 9.400455e-05 6.036758e-05 + 98000 -6243.141 -6250.7887 7.647692 3742.2068 629.5188 -10622.514 0 366.52031 0.00010183588 6.3482713e-05 + 98010 -6243.5684 -6250.4196 6.8512164 3739.2022 632.00161 -10621.623 0 328.34873 0.00034052461 0.00030003917 + 98020 -6244.0132 -6250.1962 6.1830111 3733.8867 635.50825 -10619.591 0 296.32459 0.00074574538 0.00070991369 + 98030 -6244.4575 -6250.1473 5.6897682 3728.1125 639.25298 -10617.513 0 272.68562 0.0012056723 0.0011797507 + 98040 -6244.8511 -6250.3564 5.5053323 3723.8005 642.31177 -10616.469 0 263.84641 0.0015948568 0.0015777257 + 98050 -6245.1516 -6250.8888 5.7372016 3722.4266 643.89891 -10617.214 0 274.95889 0.0018088399 0.0017931381 + 98060 -6245.3643 -6251.6963 6.3319651 3724.649 643.62017 -10619.965 0 303.46329 0.0017909793 0.0017684858 + 98070 -6245.5482 -6252.5918 7.043544 3730.104 641.60529 -10624.301 0 337.56615 0.0015472644 0.001515451 + 98080 -6245.776 -6253.3303 7.5543339 3737.4161 638.46244 -10629.209 0 362.04607 0.0011465101 0.0011108017 + 98090 -6246.0741 -6253.7466 7.6724321 3744.4877 635.06836 -10633.303 0 367.70599 0.00070338163 0.00067275332 + 98100 -6246.3944 -6253.8406 7.4461943 3749.0777 632.27914 -10635.197 0 356.86341 0.00034488837 0.00032406821 + 98110 -6246.6489 -6253.7397 7.0907512 3749.5356 630.67778 -10633.953 0 339.82858 0.00016884272 0.00015383313 + 98120 -6246.7821 -6253.5706 6.7885208 3745.4154 630.44143 -10629.427 0 325.34401 0.00021015382 0.00019125096 + 98130 -6246.8149 -6253.3599 6.5449471 3737.68 631.34627 -10622.386 0 313.67059 0.00043029181 0.00040013898 + 98140 -6246.825 -6253.0488 6.2237286 3728.379 632.88105 -10614.309 0 298.27599 0.00073525675 0.00069499043 + 98150 -6246.8825 -6252.5976 5.7151565 3719.9401 634.42454 -10606.962 0 273.90237 0.0010136609 0.00097205748 + 98160 -6246.9968 -6252.0757 5.0789084 3714.3967 635.43701 -10601.909 0 243.40979 0.0011773098 0.0011439468 + 98170 -6247.1148 -6251.6572 4.542397 3712.8579 635.61426 -10600.129 0 217.69715 0.0011873428 0.001165418 + 98180 -6247.1635 -6251.5269 4.3633696 3715.3596 634.96292 -10601.849 0 209.11715 0.0010583136 0.0010424701 + 98190 -6247.1043 -6251.7639 4.6596653 3721.0429 633.77973 -10606.587 0 223.31731 0.00084378571 0.0008243046 + 98200 -6246.9622 -6252.283 5.3208367 3728.496 632.54494 -10613.324 0 255.00435 0.00061367196 0.00058393849 + 98210 -6246.8128 -6252.8779 6.0650149 3736.1035 631.7619 -10620.743 0 290.66954 0.00043354958 0.00039529647 + 98220 -6246.7287 -6253.3431 6.6143928 3742.3315 631.79166 -10627.466 0 316.99882 0.0003513296 0.00031332596 + 98230 -6246.7219 -6253.5881 6.866258 3745.9708 632.73982 -10632.299 0 329.06961 0.0003905996 0.00036131714 + 98240 -6246.7365 -6253.6497 6.9131408 3746.3816 634.43858 -10634.47 0 331.3165 0.00054695874 0.00052733798 + 98250 -6246.7061 -6253.595 6.8889373 3743.6981 636.52405 -10633.817 0 330.15653 0.00078654987 0.00076964774 + 98260 -6246.6196 -6253.4204 6.80075 3738.8499 638.56292 -10630.833 0 325.9301 0.0010513987 0.0010292871 + 98270 -6246.5286 -6253.0574 6.5288098 3733.2877 640.16891 -10626.514 0 312.8972 0.0012755024 0.0012465711 + 98280 -6246.4905 -6252.4804 5.9898235 3728.4995 641.07292 -10622.053 0 287.06595 0.0014067802 0.0013766003 + 98290 -6246.5112 -6251.7969 5.2856543 3725.5554 641.14334 -10618.496 0 253.31821 0.001422725 0.001398378 + 98300 -6246.5395 -6251.2294 4.689892 3724.8849 640.37279 -10616.487 0 224.76594 0.0013311571 0.0013147639 + 98310 -6246.5084 -6250.9985 4.4901007 3726.3161 638.85378 -10616.168 0 215.19082 0.0011586581 0.0011455806 + 98320 -6246.3815 -6251.1975 4.815961 3729.261 636.7612 -10617.22 0 230.80787 0.00093701544 0.00091960827 + 98330 -6246.1735 -6251.7412 5.5677134 3732.9052 634.3457 -10618.992 0 266.83607 0.00069637325 0.00066996595 + 98340 -6245.9382 -6252.4164 6.4782615 3736.3302 631.92532 -10620.672 0 310.47464 0.00046643741 0.00043301155 + 98350 -6245.7304 -6252.9978 7.2674253 3738.5928 629.85635 -10621.447 0 348.2958 0.00028073073 0.00024739857 + 98360 -6245.5651 -6253.3563 7.7911667 3738.8487 628.47697 -10620.682 0 373.39642 0.00017673579 0.00014980825 + 98370 -6245.4091 -6253.485 8.0758336 3736.5901 628.03726 -10618.112 0 387.03926 0.00018722942 0.0001665568 + 98380 -6245.2201 -6253.4317 8.2115712 3731.9422 628.63935 -10614.013 0 393.54457 0.00032479469 0.00030351783 + 98390 -6244.9973 -6253.2128 8.2154671 3725.8306 630.20342 -10609.247 0 393.73128 0.00056866108 0.00053884631 + 98400 -6244.7916 -6252.7978 8.0061916 3719.8307 632.46582 -10605.094 0 383.70163 0.00086401597 0.00082313438 + 98410 -6244.6635 -6252.1702 7.5066072 3715.702 635.0144 -10602.887 0 359.75874 0.0011367127 0.0010894804 + 98420 -6244.6344 -6251.3949 6.7604681 3714.8072 637.36596 -10603.568 0 323.99956 0.0013170016 0.0012717226 + 98430 -6244.6708 -6250.6281 5.9573071 3717.6649 639.07816 -10607.371 0 285.50758 0.001361881 0.0013247423 + 98440 -6244.7067 -6250.0641 5.357417 3723.7873 639.86885 -10613.72 0 256.75748 0.001267899 0.0012392197 + 98450 -6244.6817 -6249.8526 5.1709119 3731.826 639.70388 -10621.383 0 247.81911 0.0010709933 0.0010455571 + 98460 -6244.5735 -6250.026 5.452434 3739.9496 638.81603 -10628.792 0 261.31123 0.00083458745 0.00080590368 + 98470 -6244.4096 -6250.4843 6.0746468 3746.3116 637.63279 -10634.429 0 291.13116 0.00063092884 0.00059674497 + 98480 -6244.2431 -6251.0665 6.8233572 3749.4602 636.62298 -10637.15 0 327.01356 0.00052219871 0.00048670275 + 98490 -6244.1034 -6251.6661 7.5626503 3748.6173 636.11725 -10636.401 0 362.44464 0.00054565551 0.00051553001 + 98500 -6243.9673 -6252.2798 8.3124896 3743.8556 636.18566 -10632.321 0 398.38114 0.00070301345 0.00068040873 + 98510 -6243.794 -6252.9266 9.1325282 3736.183 636.63114 -10625.741 0 437.682 0.00095422836 0.00093392263 + 98520 -6243.5968 -6253.5181 9.9213222 3727.4305 637.09034 -10618.039 0 475.48543 0.0012209681 0.0011952778 + 98530 -6243.468 -6253.8344 10.366372 3719.8176 637.1812 -10610.833 0 496.81471 0.0014067875 0.0013734268 + 98540 -6243.5157 -6253.6525 10.13682 3715.2549 636.63513 -10605.543 0 485.81329 0.0014320032 0.0013967601 + 98550 -6243.7647 -6252.9165 9.1518579 3714.6834 635.38063 -10602.981 0 438.60838 0.0012674834 0.0012390452 + 98560 -6244.1252 -6251.802 7.6768048 3717.7909 633.56905 -10603.162 0 367.91556 0.00094787351 0.00092998681 + 98570 -6244.4606 -6250.633 6.1724175 3723.2288 631.54415 -10605.406 0 295.81688 0.00055736945 0.0005454802 + 98580 -6244.6844 -6249.7267 5.042246 3729.1726 629.76352 -10608.663 0 241.65272 0.00019849091 0.00018322485 + 98590 -6244.8043 -6249.2728 4.4685091 3733.9378 628.68821 -10611.899 0 214.15603 -3.9296487e-05 -6.520122e-05 + 98600 -6244.8945 -6249.3049 4.4103782 3736.4133 628.66256 -10614.381 0 211.37007 -0.000100499 -0.00013711694 + 98610 -6245.0359 -6249.7481 4.712207 3736.2315 629.81095 -10615.791 0 225.8354 2.765156e-05 -1.2616653e-05 + 98620 -6245.2663 -6250.4898 5.2234925 3733.7232 631.98076 -10616.194 0 250.33907 0.0003159609 0.00028142732 + 98630 -6245.5666 -6251.4237 5.8570569 3729.757 634.75515 -10615.936 0 280.70303 0.00070075516 0.00067735123 + 98640 -6245.8861 -6252.45 6.5639575 3725.5386 637.54326 -10615.532 0 314.58167 0.0010962985 0.0010817813 + 98650 -6246.1882 -6253.4445 7.2562645 3722.3824 639.73044 -10615.557 0 347.76091 0.0014111338 0.001397307 + 98660 -6246.4859 -6254.24 7.7541064 3721.422 640.8465 -10616.509 0 371.62029 0.0015678816 0.0015467152 + 98670 -6246.8296 -6254.6641 7.8345347 3723.2575 640.69764 -10618.619 0 375.47486 0.0015247966 0.0014943819 + 98680 -6247.2544 -6254.6262 7.3717785 3727.654 639.41603 -10621.696 0 353.29699 0.0012926673 0.0012581876 + 98690 -6247.7353 -6254.1856 6.4503119 3733.4873 637.40982 -10625.083 0 309.13514 0.00093681089 0.00090601046 + 98700 -6248.1964 -6253.5383 5.3418654 3739.0441 635.23265 -10627.815 0 256.01217 0.00055842076 0.00053571241 + 98710 -6248.5626 -6252.9234 4.3607258 3742.5844 633.41984 -10628.928 0 208.99045 0.00026107701 0.00024498156 + 98720 -6248.8055 -6252.5128 3.7073327 3742.9275 632.34474 -10627.785 0 177.67618 0.00011684963 0.00010219215 + 98730 -6248.9505 -6252.3519 3.4014131 3739.8258 632.13214 -10624.31 0 163.0148 0.00014579396 0.00012834664 + 98740 -6249.0508 -6252.3831 3.3322548 3734.0049 632.64261 -10619.031 0 159.70035 0.00031515081 0.0002948839 + 98750 -6249.1481 -6252.5247 3.3765826 3726.8943 633.5258 -10612.945 0 161.82478 0.00055568532 0.00053616708 + 98760 -6249.2469 -6252.7405 3.4936006 3720.1892 634.33067 -10607.26 0 167.43295 0.00078640138 0.000771077 + 98770 -6249.3178 -6253.0454 3.7275789 3715.4149 634.6478 -10603.108 0 178.6465 0.00093773677 0.00092641342 + 98780 -6249.3275 -6253.4513 4.12382 3713.6071 634.24458 -10601.303 0 197.63659 0.00096715458 0.00095583168 + 98790 -6249.2699 -6253.9084 4.6384942 3715.1308 633.14839 -10602.188 0 222.30267 0.00086635178 0.00085054602 + 98800 -6249.1736 -6254.3021 5.1284608 3719.6122 631.6446 -10605.559 0 245.78462 0.00066176554 0.0006403017 + 98810 -6249.0785 -6254.5109 5.432357 3725.99 630.18724 -10610.688 0 260.34903 0.00040880608 0.00038470146 + 98820 -6249.0034 -6254.4738 5.4703375 3732.7264 629.25471 -10616.455 0 262.16927 0.00017888681 0.0001567327 + 98830 -6248.9333 -6254.214 5.2806367 3738.1803 629.20375 -10621.598 0 253.07774 4.0347607e-05 2.2623997e-05 + 98840 -6248.8333 -6253.8104 4.9771559 3741.052 630.16973 -10625.032 0 238.53324 3.8531975e-05 2.3776945e-05 + 98850 -6248.6744 -6253.3502 4.6758559 3740.7429 632.03819 -10626.131 0 224.09325 0.00018220974 0.00016607861 + 98860 -6248.4512 -6252.8945 4.4433436 3737.507 634.48483 -10624.886 0 212.94995 0.00044121637 0.0004194266 + 98870 -6248.1831 -6252.4735 4.2904675 3732.3441 637.06118 -10621.879 0 205.62328 0.00075574031 0.0007270354 + 98880 -6247.8983 -6252.1075 4.2092008 3726.6798 639.29557 -10618.083 0 201.72852 0.0010539268 0.0010212401 + 98890 -6247.6079 -6251.8402 4.2323442 3721.9416 640.78267 -10614.564 0 202.83768 0.0012719955 0.0012407516 + 98900 -6247.2824 -6251.7515 4.4690672 3719.1818 641.24827 -10612.182 0 214.18278 0.0013698853 0.0013441632 + 98910 -6246.8554 -6251.9176 5.0621828 3718.8764 640.5902 -10611.384 0 242.6082 0.0013369646 0.0013163007 + 98920 -6246.2652 -6252.3291 6.0639078 3720.9236 638.89933 -10612.152 0 290.61649 0.0011873938 0.001167149 + 98930 -6245.52 -6252.8355 7.3155488 3724.7538 636.4546 -10614.044 0 350.60214 0.00095049812 0.00092591458 + 98940 -6244.7269 -6253.1869 8.4600642 3729.4482 633.67543 -10616.311 0 405.45375 0.00066335446 0.00063375668 + 98950 -6244.0351 -6253.1637 9.1286265 3733.8582 631.02746 -10618.049 0 437.495 0.00036852416 0.00033753738 + 98960 -6243.5358 -6252.6966 9.1608405 3736.7941 628.9143 -10618.405 0 439.03888 0.00011296324 8.4657448e-05 + 98970 -6243.221 -6251.8857 8.6647355 3737.3007 627.60969 -10616.796 0 415.26274 -5.7438332e-05 -8.2229039e-05 + 98980 -6243.0272 -6250.9227 7.8954896 3734.9336 627.25365 -10613.11 0 378.39616 -0.00010741162 -0.00013109217 + 98990 -6242.8986 -6249.9979 7.0992455 3729.9186 627.88175 -10607.798 0 340.23568 -2.0924563e-05 -4.6290554e-05 + 99000 -6242.8104 -6249.2516 6.4412673 3723.1377 629.43656 -10601.826 0 308.70167 0.00019426336 0.000166542 + 99010 -6242.7561 -6248.7743 6.018258 3715.9636 631.73897 -10596.477 0 288.42869 0.00050548583 0.00047708791 + 99020 -6242.7268 -6248.6235 5.8966697 3709.9888 634.44567 -10593.058 0 282.6015 0.00085694041 0.00083009041 + 99030 -6242.7017 -6248.8325 6.1307317 3706.6987 637.05032 -10592.581 0 293.81906 0.0011763066 0.0011514494 + 99040 -6242.6569 -6249.3976 6.7407164 3707.1425 638.97537 -10595.516 0 323.05295 0.0013884634 0.0013631605 + 99050 -6242.587 -6250.2496 7.6625917 3711.6567 639.74754 -10601.654 0 367.23439 0.0014352206 0.0014053336 + 99060 -6242.5241 -6251.2383 8.7142787 3719.6877 639.18555 -10610.112 0 417.63713 0.001295575 0.0012581265 + 99070 -6242.5322 -6252.1592 9.6270082 3729.7714 637.50386 -10619.434 0 461.38025 0.00099863021 0.00095419065 + 99080 -6242.6747 -6252.8204 10.145667 3739.7392 635.27097 -10627.831 0 486.23729 0.00062243086 0.0005750006 + 99090 -6242.9729 -6253.116 10.143088 3747.1833 633.23169 -10633.531 0 486.1137 0.00027600415 0.00023025023 + 99100 -6243.3895 -6253.0573 9.6677933 3750.1047 632.0627 -10635.225 0 463.3349 6.7383749e-05 2.5354767e-05 + 99110 -6243.8533 -6252.7396 8.8863849 3747.5457 632.15177 -10632.437 0 425.88542 6.6611587e-05 2.6729706e-05 + 99120 -6244.3022 -6252.2734 7.9711364 3739.9589 633.4724 -10625.705 0 382.02158 0.00027792727 0.00023710175 + 99130 -6244.7089 -6251.7379 7.0290072 3729.1412 635.58769 -10616.467 0 336.86946 0.0006345366 0.00059136503 + 99140 -6245.0726 -6251.1879 6.1152219 3717.7354 637.77784 -10606.701 0 293.07575 0.0010198743 0.00097610006 + 99150 -6245.398 -6250.6876 5.2896305 3708.4747 639.25396 -10598.416 0 253.50877 0.0013066772 0.0012659236 + 99160 -6245.6812 -6250.3296 4.6484695 3703.4335 639.3975 -10593.161 0 222.78074 0.0013980659 0.0013631939 + 99170 -6245.9121 -6250.2147 4.3026464 3703.5162 637.95622 -10591.687 0 206.20696 0.0012563562 0.0012276007 + 99180 -6246.0851 -6250.4088 4.3237676 3708.3089 635.13614 -10593.854 0 207.2192 0.00091215316 0.00088727491 + 99190 -6246.2071 -6250.9077 4.7005579 3716.287 631.55697 -10598.752 0 225.27711 0.0004534576 0.00042951899 + 99200 -6246.2989 -6251.6328 5.3339191 3725.2775 628.07953 -10604.99 0 255.63133 -5.2988626e-07 -2.5221087e-05 + 99210 -6246.387 -6252.4561 6.0690598 3733.0365 625.55802 -10611.051 0 290.8634 -0.000333201 -0.00035831531 + 99220 -6246.4939 -6253.2372 6.7432889 3737.8045 624.59807 -10615.64 0 323.17624 -0.00046253398 -0.00048648746 + 99230 -6246.6287 -6253.8542 7.2254176 3738.7176 625.39892 -10617.971 0 346.28255 -0.00036233866 -0.00038389938 + 99240 -6246.7868 -6254.2201 7.4333601 3735.9794 627.72408 -10617.924 0 356.24833 -6.7069461e-05 -8.6571303e-05 + 99250 -6246.9552 -6254.2887 7.3335654 3730.7441 630.99609 -10616.029 0 351.4656 0.00034042459 0.00032110668 + 99260 -6247.1212 -6254.0555 6.9342439 3724.7368 634.47256 -10613.265 0 332.32787 0.00075388901 0.00073254803 + 99270 -6247.2785 -6253.558 6.2794858 3719.7271 637.44508 -10610.73 0 300.94819 0.0010737176 0.0010494592 + 99280 -6247.4271 -6252.8757 5.4486155 3717.0199 639.40561 -10609.301 0 261.12823 0.0012334734 0.0012077083 + 99290 -6247.5665 -6252.1311 4.5645874 3717.1151 640.13985 -10609.386 0 218.76064 0.0012155983 0.0011913433 + 99300 -6247.6848 -6251.4838 3.79899 3719.6328 639.73051 -10610.847 0 182.06891 0.0010518428 0.0010312663 + 99310 -6247.7569 -6251.0988 3.3418625 3723.5236 638.48152 -10613.104 0 160.1608 0.00080811237 0.00079003684 + 99320 -6247.7595 -6251.0827 3.3231808 3727.4819 636.79637 -10615.361 0 159.26547 0.00055898464 0.00053887873 + 99330 -6247.6918 -6251.4227 3.7308274 3730.3907 635.05242 -10616.866 0 178.80218 0.00036220917 0.00033544039 + 99340 -6247.5818 -6251.9849 4.403089 3731.6085 633.50879 -10617.102 0 211.02073 0.00024419097 0.00021004895 + 99350 -6247.4648 -6252.5885 5.1237828 3731.0106 632.27209 -10615.871 0 245.56042 0.00020146742 0.00016415467 + 99360 -6247.3508 -6253.1007 5.7499121 3728.8513 631.32427 -10613.276 0 275.56805 0.00021372486 0.00017909887 + 99370 -6247.2106 -6253.4754 6.2648139 3725.5912 630.59389 -10609.66 0 300.24503 0.00025827656 0.00022917933 + 99380 -6246.9953 -6253.718 6.7227517 3721.7915 630.03381 -10605.543 0 322.19198 0.0003182388 0.00029246624 + 99390 -6246.6715 -6253.8212 7.149721 3718.0724 629.6671 -10601.561 0 342.65475 0.00038329798 0.00035569325 + 99400 -6246.2448 -6253.7326 7.4877981 3715.0719 629.58034 -10598.385 0 358.8573 0.00044662921 0.00041342882 + 99410 -6245.7558 -6253.3771 7.621337 3713.3612 629.87075 -10596.609 0 365.25723 0.00050206579 0.0004642178 + 99420 -6245.2529 -6252.7184 7.4655108 3713.3131 630.57671 -10596.608 0 357.78917 0.00054368987 0.00050666204 + 99430 -6244.7579 -6251.8155 7.0575571 3714.9828 631.63034 -10598.429 0 338.23773 0.00056735118 0.00053723864 + 99440 -6244.2499 -6250.8271 6.5772631 3718.0775 632.8609 -10601.766 0 315.21935 0.0005718305 0.00055039383 + 99450 -6243.6833 -6249.9447 6.2614411 3722.0496 634.05186 -10606.046 0 300.08339 0.00055823254 0.00054092369 + 99460 -6243.0321 -6249.2941 6.2620039 3726.2552 635.02514 -10610.575 0 300.11036 0.00052921184 0.00050844863 + 99470 -6242.3257 -6248.8871 6.5614004 3730.0638 635.7122 -10614.663 0 314.45912 0.00049124786 0.00046281535 + 99480 -6241.6389 -6248.6684 7.0294694 3732.8678 636.17654 -10617.713 0 336.89161 0.00046027696 0.00042728458 + 99490 -6241.0353 -6248.6153 7.5799586 3734.0728 636.5748 -10619.263 0 363.27414 0.00046493464 0.00043511281 + 99500 -6240.5143 -6248.7846 8.2703226 3733.2047 637.07204 -10619.061 0 396.36026 0.00053904823 0.0005172283 + 99510 -6240.0244 -6249.2507 9.2262316 3730.1676 637.7476 -10617.166 0 442.17278 0.00070172346 0.00068435817 + 99520 -6239.538 -6249.9848 10.446889 3725.4945 638.53114 -10614.011 0 500.67355 0.00093545194 0.0009124982 + 99530 -6239.1155 -6250.7902 11.674649 3720.3626 639.19504 -10610.348 0 559.51468 0.0011786697 0.0011415733 + 99540 -6238.892 -6251.3645 12.472492 3716.249 639.41217 -10607.026 0 597.75182 0.0013429753 0.0012920089 + 99550 -6238.9792 -6251.4637 12.484446 3714.3382 638.8705 -10604.672 0 598.32469 0.0013503136 0.0012947354 + 99560 -6239.3665 -6251.0497 11.683138 3714.9827 637.4132 -10603.446 0 559.92154 0.001170988 0.0011215806 + 99570 -6239.9157 -6250.3093 10.393537 3717.5402 635.14784 -10602.997 0 498.11659 0.00084035202 0.00080087181 + 99580 -6240.4597 -6249.5288 9.069114 3720.6889 632.46396 -10602.682 0 434.64283 0.00044487714 0.00041007444 + 99590 -6240.9114 -6248.9268 8.015459 3723.0229 629.93485 -10601.885 0 384.14577 8.7612426e-05 4.9329995e-05 + 99600 -6241.2891 -6248.58 7.2909285 3723.5831 628.13605 -10600.299 0 349.4222 -0.0001466835 -0.0001915084 + 99610 -6241.6543 -6248.4845 6.8301879 3722.0957 627.45375 -10598.034 0 327.34093 -0.00021214564 -0.00025929822 + 99620 -6242.0375 -6248.6549 6.6174223 3718.9413 627.9609 -10595.557 0 317.144 -0.00010723598 -0.00015020643 + 99630 -6242.42 -6249.1393 6.71934 3714.9993 629.40859 -10593.547 0 322.02848 0.00012879766 9.2453862e-05 + 99640 -6242.7715 -6249.9447 7.1731482 3711.4414 631.32742 -10592.714 0 343.77751 0.00042557191 0.00039250899 + 99650 -6243.0947 -6250.962 7.867254 3709.4603 633.19067 -10593.613 0 377.04296 0.0006984679 0.00066327244 + 99660 -6243.4373 -6251.9684 8.5311521 3709.9355 634.57642 -10596.48 0 408.86068 0.00087197539 0.00083271096 + 99670 -6243.8593 -6252.7182 8.8588969 3713.1057 635.27638 -10601.1 0 424.56805 0.00090384839 0.00086465398 + 99680 -6244.376 -6253.0726 8.6965185 3718.384 635.3244 -10606.781 0 416.78596 0.00080073185 0.00076875191 + 99690 -6244.9277 -6253.0747 8.1470383 3724.4602 634.94873 -10612.484 0 390.45179 0.00061580664 0.00059455104 + 99700 -6245.4168 -6252.8956 7.478784 3729.7308 634.47537 -10617.102 0 358.42529 0.00042593271 0.00041130878 + 99710 -6245.7838 -6252.6856 6.9017545 3732.8869 634.21353 -10619.786 0 330.7708 0.00029837142 0.00028181533 + 99720 -6246.0467 -6252.4701 6.4233965 3733.35 634.3481 -10620.168 0 307.8452 0.00026498778 0.0002409873 + 99730 -6246.2693 -6252.1852 5.9158517 3731.3418 634.86554 -10618.393 0 283.52081 0.0003163149 0.0002869638 + 99740 -6246.4952 -6251.7997 5.3044542 3727.6332 635.54537 -10614.978 0 254.21921 0.00041390657 0.00038631613 + 99750 -6246.7126 -6251.3914 4.6788554 3723.1934 636.035 -10610.62 0 224.237 0.00050972726 0.00048927885 + 99760 -6246.8746 -6251.1076 4.2330037 3718.9218 635.9878 -10606.017 0 202.86929 0.00056234444 0.00054816721 + 99770 -6246.9468 -6251.0576 4.1108297 3715.5069 635.20741 -10601.772 0 197.01403 0.00054667327 0.00053289531 + 99780 -6246.9385 -6251.2392 4.3006349 3713.3539 633.7343 -10598.327 0 206.11055 0.00045888538 0.00043992129 + 99790 -6246.895 -6251.5571 4.6620088 3712.5375 631.83786 -10595.932 0 223.42962 0.00031783576 0.00029282579 + 99800 -6246.8593 -6251.9136 5.0542594 3712.799 629.92167 -10594.634 0 242.22847 0.00016150332 0.00013407411 + 99810 -6246.8373 -6252.2835 5.4461488 3713.6458 628.38905 -10594.318 0 261.01001 3.6007926e-05 9.900164e-06 + 99820 -6246.7994 -6252.7025 5.9031032 3714.5693 627.5273 -10594.799 0 282.90983 -2.1343288e-05 -4.6371356e-05 + 99830 -6246.7167 -6253.1865 6.4697824 3715.2835 627.4478 -10595.918 0 310.06827 2.4944507e-06 -2.5615134e-05 + 99840 -6246.5985 -6253.6628 7.064309 3715.8416 628.08693 -10597.591 0 338.56133 9.111933e-05 5.5863119e-05 + 99850 -6246.497 -6253.975 7.4780206 3716.5545 629.25378 -10599.783 0 358.38871 0.00020691266 0.0001650141 + 99860 -6246.4742 -6253.9608 7.486631 3717.7562 630.70227 -10602.419 0 358.80137 0.00030861396 0.00026634799 + 99870 -6246.5514 -6253.5555 7.0041162 3719.5462 632.20199 -10605.304 0 335.67655 0.00036985497 0.00033569013 + 99880 -6246.6827 -6252.8523 6.1695895 3721.6612 633.58574 -10608.099 0 295.68135 0.00038937473 0.00036771406 + 99890 -6246.7805 -6252.0655 5.2850372 3723.5685 634.76453 -10610.399 0 253.28864 0.00038723393 0.00037435001 + 99900 -6246.7773 -6251.4111 4.6338357 3724.7304 635.71259 -10611.854 0 222.07941 0.00038953815 0.00037558349 + 99910 -6246.674 -6250.9912 4.3172236 3724.8654 636.43224 -10612.289 0 206.90558 0.00041174113 0.00038794238 + 99920 -6246.535 -6250.7736 4.238558 3724.0345 636.91252 -10611.721 0 203.13548 0.0004510889 0.00041663899 + 99930 -6246.4331 -6250.6784 4.2452905 3722.5157 637.10086 -10610.295 0 203.45814 0.00049169983 0.00045458848 + 99940 -6246.3847 -6250.6923 4.3075304 3720.5946 636.90482 -10608.192 0 206.44102 0.00051671203 0.00048736122 + 99950 -6246.3243 -6250.8993 4.5749298 3718.4516 636.22862 -10605.579 0 219.2563 0.00051748442 0.00050010477 + 99960 -6246.141 -6251.3897 5.2486672 3716.2256 635.0302 -10602.646 0 251.54558 0.00049340059 0.00048233815 + 99970 -6245.7531 -6252.1197 6.3665919 3714.1644 633.37176 -10599.656 0 305.12281 0.00044478053 0.00042924662 + 99980 -6245.1676 -6252.8584 7.6907513 3712.6704 631.43715 -10596.966 0 368.58395 0.00036805139 0.00034140669 + 99990 -6244.4769 -6253.2964 8.8194522 3712.1446 629.50384 -10594.945 0 422.67764 0.00026029982 0.00022568581 + 100000 -6243.7864 -6253.246 9.4595526 3712.7203 627.87871 -10593.845 0 453.35484 0.00013060594 9.7414511e-05 + 100010 -6243.1315 -6252.7628 9.6313326 3714.1139 626.82588 -10593.703 0 461.5875 6.4897217e-06 -1.9550191e-05 + 100020 -6242.4699 -6252.0753 9.6053852 3715.7396 626.51759 -10594.333 0 460.34395 -7.4490418e-05 -9.8145944e-05 + 100030 -6241.7644 -6251.3759 9.6114329 3717.0178 627.02155 -10595.415 0 460.63379 -8.4364442e-05 -0.00011719557 + 100040 -6241.0692 -6250.6619 9.5926199 3717.6279 628.31223 -10596.602 0 459.73217 -1.9548529e-05 -6.8012484e-05 + 100050 -6240.5161 -6249.7846 9.268447 3717.5111 630.27913 -10597.575 0 444.19598 0.00010277037 4.6036315e-05 + 100060 -6240.1897 -6248.6832 8.4935255 3716.6629 632.71631 -10598.062 0 407.0574 0.00026316294 0.00021434156 + 100070 -6240.0169 -6247.5712 7.5542785 3715.0072 635.31052 -10597.889 0 362.04341 0.00045271597 0.00042077556 + 100080 -6239.8149 -6246.8354 7.0204889 3712.5965 637.66689 -10597.099 0 336.46122 0.00066290286 0.00063925658 + 100090 -6239.4602 -6246.7192 7.2590578 3709.9668 639.38436 -10596.07 0 347.89478 0.00086367242 0.00082989861 + 100100 -6238.9927 -6247.1449 8.1521935 3708.1603 640.15111 -10595.456 0 390.69885 0.0010003081 0.00094558352 + 100110 -6238.5603 -6247.8419 9.2816919 3708.2349 639.82742 -10595.904 0 444.83076 0.0010196906 0.00094978279 + 100120 -6238.2915 -6248.5785 10.286956 3710.6333 638.49814 -10597.71 0 493.00867 0.00090351375 0.00083489753 + 100130 -6238.2207 -6249.2681 11.047337 3714.8677 636.4696 -10600.605 0 529.45036 0.00068181405 0.00062856812 + 100140 -6238.3032 -6249.9263 11.623087 3719.6794 634.19148 -10603.797 0 557.04353 0.00041986072 0.00038389062 + 100150 -6238.4971 -6250.5556 12.05856 3723.5496 632.12755 -10606.233 0 577.91387 0.00018855649 0.00015953217 + 100160 -6238.8442 -6251.0509 12.206784 3725.2953 630.63222 -10606.978 0 585.0176 3.5347816e-05 2.500924e-07 + 100170 -6239.4631 -6251.2192 11.75609 3724.4509 629.87688 -10605.547 0 563.4178 -2.8489598e-05 -7.3678304e-05 + 100180 -6240.4223 -6250.9345 10.512212 3721.2774 629.8351 -10602.047 0 503.80418 -1.8598774e-05 -6.5639764e-05 + 100190 -6241.6051 -6250.3018 8.696676 3716.4952 630.31751 -10597.114 0 416.79351 4.2417339e-05 5.3530278e-06 + 100200 -6242.7505 -6249.6495 6.8989919 3711.0025 631.04488 -10591.697 0 330.6384 0.0001360248 0.00011287688 + 100210 -6243.6523 -6249.3329 5.6806836 3705.7434 631.73739 -10586.814 0 272.25023 0.00024369357 0.00022788057 + 100220 -6244.2795 -6249.5247 5.2451369 3701.6684 632.18538 -10583.378 0 251.37639 0.00034048935 0.00032172982 + 100230 -6244.7244 -6250.1502 5.4258016 3699.6405 632.28066 -10582.071 0 260.03485 0.00039717608 0.00036981482 + 100240 -6245.1006 -6250.9739 5.8732929 3700.2326 632.01467 -10583.221 0 281.48115 0.000389251 0.00035583558 + 100250 -6245.4791 -6251.7495 6.2704236 3703.4916 631.45831 -10586.699 0 300.51388 0.00030740082 0.00027594891 + 100260 -6245.8636 -6252.3437 6.4801693 3708.8183 630.73478 -10591.897 0 310.56607 0.00016419126 0.00014139733 + 100270 -6246.2036 -6252.7628 6.5592032 3715.0689 629.99556 -10597.827 0 314.35382 -7.4724139e-06 -2.2089874e-05 + 100280 -6246.4453 -6253.0786 6.6332607 3720.8672 629.40611 -10603.352 0 317.90307 -0.00016453666 -0.00017882192 + 100290 -6246.5853 -6253.3197 6.7344269 3724.9859 629.13677 -10607.442 0 322.75153 -0.00026742076 -0.00029055093 + 100300 -6246.6834 -6253.4228 6.7394232 3726.6309 629.34452 -10609.398 0 322.99097 -0.00028990171 -0.00032474998 + 100310 -6246.8195 -6253.2872 6.4677396 3725.5404 630.13323 -10608.961 0 309.97037 -0.00022188267 -0.00026214264 + 100320 -6247.0274 -6252.8851 5.8577524 3721.9407 631.49539 -10606.321 0 280.73636 -6.7925776e-05 -0.0001027655 + 100330 -6247.2639 -6252.3239 5.060005 3716.4718 633.26002 -10602.056 0 242.50383 0.00015262784 0.00013000955 + 100340 -6247.4433 -6251.7974 4.3541271 3710.1494 635.0819 -10597.029 0 208.6742 0.00040196801 0.00038907806 + 100350 -6247.506 -6251.4635 3.9574287 3704.3097 636.49689 -10592.27 0 189.66219 0.00062201424 0.00060947307 + 100360 -6247.4624 -6251.354 3.8916345 3700.409 637.03794 -10588.801 0 186.50896 0.00074306737 0.00072239809 + 100370 -6247.3786 -6251.3942 4.0156 3699.6265 636.37852 -10587.399 0 192.45009 0.00070569159 0.00067583656 + 100380 -6247.3216 -6251.5037 4.1821157 3702.3944 634.456 -10588.354 0 200.43045 0.00048785828 0.00045530393 + 100390 -6247.307 -6251.6843 4.3772849 3708.1028 631.53117 -10591.318 0 209.78405 0.00012267298 9.5594948e-05 + 100400 -6247.2889 -6252.0153 4.7263792 3715.1785 628.15785 -10595.352 0 226.51461 -0.000304752 -0.00032324643 + 100410 -6247.1982 -6252.56 5.3617565 3721.548 625.06564 -10599.174 0 256.96546 -0.00068182365 -0.00069589588 + 100420 -6247.0017 -6253.2584 6.2567045 3725.2975 622.98504 -10601.541 0 299.85638 -0.00090419088 -0.00092125683 + 100430 -6246.7363 -6253.9005 7.1641128 3725.2607 622.45815 -10601.619 0 343.34448 -0.00090815839 -0.00093211157 + 100440 -6246.4868 -6254.2181 7.7313214 3721.331 623.68098 -10599.23 0 370.5283 -0.00068848418 -0.00071611914 + 100450 -6246.3176 -6254.0389 7.7213206 3714.4458 626.42197 -10594.907 0 370.04901 -0.00029790704 -0.00032192156 + 100460 -6246.2199 -6253.3862 7.1663225 3706.318 630.05341 -10589.758 0 343.45039 0.00016800541 0.00015201328 + 100470 -6246.1245 -6252.4532 6.3287292 3699.0262 633.70488 -10585.184 0 303.30822 0.00059429434 0.00058321565 + 100480 -6245.9682 -6251.4806 5.5124334 3694.5406 636.50478 -10582.526 0 264.18674 0.0008733477 0.00085860006 + 100490 -6245.7495 -6250.6348 4.8853185 3694.2359 637.83473 -10582.705 0 234.13187 0.00093156752 0.00090624915 + 100500 -6245.5273 -6249.9727 4.445386 3698.4694 637.50775 -10585.95 0 213.04784 0.0007516644 0.00071697766 + 100510 -6245.3653 -6249.5066 4.1412836 3706.3493 635.80458 -10591.66 0 198.47355 0.00038372641 0.00034902474 + 100520 -6245.2623 -6249.2976 4.0353344 3715.8446 633.35629 -10598.499 0 193.39587 -6.2856288e-05 -8.7393687e-05 + 100530 -6245.1262 -6249.4728 4.3465711 3724.3118 630.92498 -10604.71 0 208.31207 -0.00045031897 -0.00046299849 + 100540 -6244.8225 -6250.1166 5.2940606 3729.3273 629.16983 -10608.614 0 253.72109 -0.00065919941 -0.0006698146 + 100550 -6244.2764 -6251.1253 6.8488954 3729.5032 628.47282 -10609.101 0 328.2375 -0.00063201386 -0.00065478598 + 100560 -6243.5535 -6252.1813 8.6278005 3724.9107 628.85813 -10605.95 0 413.49261 -0.00039276966 -0.00043457759 + 100570 -6242.8379 -6252.9061 10.068219 3716.9317 630.01421 -10599.852 0 482.52552 -3.2243368e-05 -8.6498703e-05 + 100580 -6242.3078 -6253.0758 10.768052 3707.669 631.4162 -10592.161 0 516.06549 0.00033234925 0.00028058199 + 100590 -6242.0162 -6252.7209 10.704713 3699.2457 632.51746 -10584.484 0 513.0299 0.0006008829 0.00056323158 + 100600 -6241.8876 -6252.051 10.163426 3693.2891 632.93887 -10578.279 0 487.0884 0.000716693 0.00069343523 + 100610 -6241.8144 -6251.2897 9.4753388 3690.7069 632.57897 -10574.576 0 454.1114 0.00067039265 0.00065199638 + 100620 -6241.7491 -6250.5501 8.8010373 3691.6862 631.60828 -10573.845 0 421.79509 0.00048903741 0.00046485055 + 100630 -6241.7196 -6249.8303 8.1107162 3695.7815 630.36582 -10575.978 0 388.71103 0.00022141593 0.00018798037 + 100640 -6241.7741 -6249.1093 7.3351964 3702.0186 629.21437 -10580.342 0 351.54377 -7.4400737e-05 -0.00011175952 + 100650 -6241.9169 -6248.4514 6.5344756 3709.0407 628.4212 -10585.913 0 313.16873 -0.00034067703 -0.00037358238 + 100660 -6242.0925 -6248.0227 5.9301681 3715.3531 628.10923 -10591.485 0 284.20693 -0.00052855325 -0.00055332727 + 100670 -6242.2294 -6247.9981 5.7687472 3719.6585 628.28175 -10595.938 0 276.47074 -0.00060591162 -0.00062658273 + 100680 -6242.302 -6248.4303 6.1282646 3721.1745 628.88614 -10598.491 0 293.70082 -0.00056239641 -0.00058645767 + 100690 -6242.3599 -6249.1936 6.8337448 3719.7889 629.86873 -10598.851 0 327.5114 -0.00040888863 -0.00043976068 + 100700 -6242.4955 -6250.0561 7.5606503 3715.9959 631.18504 -10597.237 0 362.34878 -0.00017167113 -0.0002049122 + 100710 -6242.777 -6250.8217 8.0446963 3710.6964 632.75911 -10594.277 0 385.54698 0.00011417043 8.71837e-05 + 100720 -6243.2038 -6251.4226 8.2188848 3705.0077 634.42058 -10590.851 0 393.89508 0.00040677595 0.0003909936 + 100730 -6243.7261 -6251.896 8.1698741 3700.1354 635.87063 -10587.902 0 391.54621 0.00065527608 0.00064720168 + 100740 -6244.3046 -6252.2864 7.9818279 3697.2363 636.72305 -10586.246 0 382.53398 0.00080109093 0.00079133732 + 100750 -6244.9439 -6252.5762 7.6322407 3697.172 636.62752 -10586.376 0 365.7798 0.00079092382 0.000771684 + 100760 -6245.6634 -6252.6973 7.0338986 3700.1825 635.42698 -10588.307 0 337.10389 0.00059999771 0.00057102703 + 100770 -6246.4384 -6252.6061 6.1677068 3705.6534 633.2619 -10591.521 0 295.59112 0.00025217484 0.00022053099 + 100780 -6247.1844 -6252.351 5.166608 3712.1692 630.55432 -10595.075 0 247.61284 -0.00017862511 -0.00020436627 + 100790 -6247.8056 -6252.0765 4.2709582 3717.8881 627.88112 -10597.846 0 204.68828 -0.00058924957 -0.00060521825 + 100800 -6248.249 -6251.9536 3.7045994 3721.0949 625.80929 -10598.858 0 177.54519 -0.00087919091 -0.00088833747 + 100810 -6248.5194 -6252.0839 3.5644766 3720.7253 624.75761 -10597.567 0 170.82972 -0.00097972231 -0.00098903677 + 100820 -6248.6638 -6252.4439 3.7800688 3716.696 624.90569 -10594.046 0 181.16211 -0.00087238051 -0.00088770955 + 100830 -6248.7469 -6252.9102 4.1633156 3709.9403 626.15313 -10589.004 0 199.52944 -0.00059296245 -0.00061525768 + 100840 -6248.8205 -6253.3416 4.5210251 3702.1456 628.13654 -10583.624 0 216.67289 -0.00022039627 -0.0002460001 + 100850 -6248.9014 -6253.651 4.7495809 3695.2936 630.31232 -10579.257 0 227.62657 0.00014534201 0.00012110147 + 100860 -6248.9733 -6253.8185 4.8451986 3691.1533 632.09567 -10577.068 0 232.2091 0.00040890778 0.00038816324 + 100870 -6249.0118 -6253.8536 4.8417958 3690.8517 633.02147 -10577.727 0 232.04602 0.0005023582 0.0004839922 + 100880 -6249.0082 -6253.757 4.7487675 3694.5956 632.8783 -10581.231 0 227.58759 0.00040123536 0.00038294356 + 100890 -6248.9752 -6253.521 4.5458256 3701.5933 631.7719 -10586.886 0 217.86147 0.00013164582 0.00011243948 + 100900 -6248.9313 -6253.1605 4.2292455 3710.2084 630.09553 -10593.464 0 202.68917 -0.0002339747 -0.00025304701 + 100910 -6248.8835 -6252.7408 3.8572578 3718.3382 628.41422 -10599.493 0 184.86144 -0.00059379277 -0.00061102242 + 100920 -6248.8212 -6252.3682 3.5470057 3723.9422 627.29627 -10603.607 0 169.99242 -0.00084398971 -0.00085894775 + 100930 -6248.7255 -6252.1455 3.4199458 3725.5847 627.14183 -10604.872 0 163.90299 -0.00090936802 -0.00092352337 + 100940 -6248.5845 -6252.1226 3.5380512 3722.8313 628.05885 -10603.013 0 169.56326 -0.00076673869 -0.00078220761 + 100950 -6248.3989 -6252.2811 3.8821734 3716.3749 629.82295 -10598.479 0 186.05553 -0.00045232587 -0.00047004667 + 100960 -6248.1747 -6252.5602 4.3854287 3707.8488 631.93529 -10592.344 0 210.17435 -5.0684465e-05 -6.989307e-05 + 100970 -6247.9122 -6252.8922 4.980068 3699.3912 633.76589 -10586.049 0 238.6728 0.0003299808 0.00031053845 + 100980 -6247.6068 -6253.2108 5.6039892 3693.0945 634.74242 -10581.048 0 268.5746 0.00058722269 0.00056794474 + 100990 -6247.2655 -6253.4327 6.1671633 3690.4793 634.52581 -10578.438 0 295.56507 0.00065068566 0.00063138781 + 101000 -6246.9155 -6253.4583 6.5427939 3692.1022 633.11289 -10578.673 0 313.56739 0.00050061458 0.00048189344 + 101010 -6246.5877 -6253.2206 6.6328903 3697.3872 630.83187 -10581.44 0 317.88532 0.00017473283 0.00015795679 + 101020 -6246.2876 -6252.7439 6.4562983 3704.7705 628.23942 -10585.754 0 309.42204 -0.00024072919 -0.00025570426 + 101030 -6245.9931 -6252.1387 6.145568 3712.1693 625.96476 -10590.273 0 294.5301 -0.00063656124 -0.00065312463 + 101040 -6245.6894 -6251.5222 5.8328115 3717.6223 624.55231 -10593.697 0 279.54106 -0.00091435336 -0.00093704213 + 101050 -6245.3975 -6250.9501 5.5526592 3719.8261 624.33617 -10595.112 0 266.11459 -0.0010135943 -0.0010435118 + 101060 -6245.1575 -6250.4335 5.2759548 3718.3762 625.36578 -10594.175 0 252.85336 -0.00092164981 -0.00095446349 + 101070 -6244.9843 -6250.0064 5.0221308 3713.7274 627.39956 -10591.133 0 240.68869 -0.00066808417 -0.0006971398 + 101080 -6244.8442 -6249.7585 4.9143677 3707.0083 629.97182 -10586.739 0 235.52407 -0.00031187034 -0.00033361744 + 101090 -6244.6724 -6249.7973 5.124845 3699.7787 632.51425 -10582.09 0 245.61133 7.2042727e-05 5.4884978e-05 + 101100 -6244.4146 -6250.1758 5.7612546 3693.7414 634.49463 -10578.412 0 276.11164 0.00040532436 0.00038507611 + 101110 -6244.0669 -6250.8331 6.7662143 3690.4078 635.53758 -10576.778 0 324.27495 0.00061892393 0.00058799129 + 101120 -6243.696 -6251.5834 7.8874136 3690.7373 635.50251 -10577.823 0 378.00912 0.00066665196 0.00062350851 + 101130 -6243.4116 -6252.1812 8.7695842 3694.8137 634.50283 -10581.498 0 420.28768 0.00053884902 0.00049060968 + 101140 -6243.2909 -6252.4493 9.1584356 3701.6779 632.85922 -10586.986 0 438.92362 0.00027117053 0.00022916124 + 101150 -6243.3113 -6252.3809 9.0696438 3709.4918 631.00125 -10592.874 0 434.66822 -6.0615825e-05 -9.0322014e-05 + 101160 -6243.3733 -6252.1065 8.7331898 3716.1043 629.35454 -10597.565 0 418.54346 -0.00036506745 -0.00038747956 + 101170 -6243.4017 -6251.7409 8.339219 3719.8128 628.2494 -10599.803 0 399.66216 -0.00056933715 -0.00059576296 + 101180 -6243.4146 -6251.2849 7.8703336 3719.891 627.86148 -10599.037 0 377.19055 -0.00064227389 -0.00067920398 + 101190 -6243.4821 -6250.6958 7.2136758 3716.6133 628.18287 -10595.492 0 345.71982 -0.00059343796 -0.00063672426 + 101200 -6243.6359 -6250.0295 6.3936213 3710.9157 629.03242 -10589.978 0 306.41821 -0.0004557449 -0.00049529755 + 101210 -6243.8331 -6249.4774 5.6443879 3704.0248 630.1136 -10583.616 0 270.51074 -0.00026887375 -0.00029785742 + 101220 -6243.9964 -6249.2642 5.2677359 3697.2291 631.10359 -10577.597 0 252.45946 -7.202329e-05 -9.1905582e-05 + 101230 -6244.0735 -6249.507 5.4334556 3691.7527 631.73821 -10572.998 0 260.40168 9.7002762e-05 7.8440774e-05 + 101240 -6244.0707 -6250.1395 6.0687772 3688.6256 631.86509 -10570.63 0 290.84986 0.00020271738 0.00017768918 + 101250 -6244.0512 -6250.9354 6.8842653 3688.505 631.45832 -10570.899 0 329.93262 0.00021675217 0.000183473 + 101260 -6244.0962 -6251.6219 7.5256568 3691.4679 630.60193 -10573.692 0 360.6717 0.00012684289 9.098851e-05 + 101270 -6244.2446 -6252.026 7.7813721 3696.8764 629.456 -10578.358 0 372.92701 -5.40612e-05 -8.4180664e-05 + 101280 -6244.4574 -6252.1571 7.6997455 3703.4511 628.2228 -10583.831 0 369.01501 -0.00028606914 -0.00030729324 + 101290 -6244.6532 -6252.1517 7.4984876 3709.6202 627.12618 -10588.898 0 359.3696 -0.00051287804 -0.00053077676 + 101300 -6244.7886 -6252.124 7.3353904 3714.0123 626.39951 -10592.536 0 351.55306 -0.00068031194 -0.00070435479 + 101310 -6244.8998 -6252.0674 7.1675513 3715.8272 626.2598 -10594.154 0 343.50927 -0.00075177965 -0.00078630568 + 101320 -6245.0609 -6251.9001 6.8391841 3714.9143 626.85146 -10593.666 0 327.77207 -0.00071324578 -0.00075315647 + 101330 -6245.3044 -6251.5921 6.2877212 3711.6366 628.17424 -10591.403 0 301.34288 -0.00057056246 -0.0006058172 + 101340 -6245.5871 -6251.2331 5.6459706 3706.7165 630.03649 -10587.986 0 270.58659 -0.0003468862 -0.00037111628 + 101350 -6245.8268 -6250.9819 5.1550618 3701.1504 632.06874 -10584.201 0 247.05949 -8.2969411e-05 -9.8451721e-05 + 101360 -6245.9664 -6250.9574 4.9909972 3696.1257 633.80243 -10580.886 0 239.19659 0.00016413856 0.00014857733 + 101370 -6246.0117 -6251.1635 5.1517818 3692.837 634.791 -10578.792 0 246.90229 0.00032994651 0.00030562003 + 101380 -6246.0241 -6251.4963 5.4721531 3692.1796 634.73821 -10578.414 0 262.25628 0.00036025449 0.00032479551 + 101390 -6246.0788 -6251.8207 5.7418779 3694.4095 633.59539 -10579.826 0 275.183 0.00023248408 0.00019137823 + 101400 -6246.2144 -6252.0642 5.8498062 3698.9333 631.59288 -10582.59 0 280.35554 -2.9349314e-05 -6.6950884e-05 + 101410 -6246.4075 -6252.2612 5.8537011 3704.3859 629.18802 -10585.835 0 280.5422 -0.00035598751 -0.00038433881 + 101420 -6246.5976 -6252.5027 5.905046 3709.0506 626.94402 -10588.497 0 283.00294 -0.00065431164 -0.00067538459 + 101430 -6246.7504 -6252.821 6.070561 3711.4819 625.37945 -10589.682 0 290.93535 -0.000841441 -0.00086235165 + 101440 -6246.9019 -6253.1196 6.2176558 3711.0285 624.82878 -10588.977 0 297.98495 -0.00087516645 -0.00090089655 + 101450 -6247.1333 -6253.2348 6.1014992 3707.9975 625.34462 -10586.577 0 292.41808 -0.00076569205 -0.00079443033 + 101460 -6247.4941 -6253.0801 5.5860442 3703.4388 626.6722 -10583.191 0 267.71458 -0.00056568729 -0.00059146489 + 101470 -6247.9485 -6252.7293 4.7808911 3698.7331 628.32368 -10579.786 0 229.12713 -0.00034757469 -0.00036690901 + 101480 -6248.4031 -6252.364 3.9608884 3695.1734 629.7465 -10577.284 0 189.828 -0.00017970012 -0.00019496021 + 101490 -6248.7887 -6252.1467 3.357992 3693.6378 630.52198 -10576.306 0 160.93382 -0.00010832344 -0.00012476426 + 101500 -6249.1059 -6252.1367 3.0308501 3694.3965 630.50181 -10577.035 0 145.25534 -0.00014719903 -0.00016748976 + 101510 -6249.3969 -6252.3016 2.904768 3697.0756 629.82632 -10579.204 0 139.21278 -0.00027520062 -0.00029697511 + 101520 -6249.691 -6252.5887 2.8976691 3700.78 628.83643 -10582.205 0 138.87256 -0.00044313129 -0.00046136064 + 101530 -6249.9772 -6252.9794 3.0021805 3704.3637 627.93057 -10585.274 0 143.88133 -0.00058981127 -0.00060158504 + 101540 -6250.2176 -6253.4791 3.2615184 3706.7996 627.42289 -10587.702 0 156.31026 -0.00066402515 -0.00067158187 + 101550 -6250.3845 -6254.0567 3.6722172 3707.5345 627.44781 -10589.039 0 175.99325 -0.00064443327 -0.00065368662 + 101560 -6250.488 -6254.6031 4.1151134 3706.6669 627.93647 -10589.206 0 197.21932 -0.00054766553 -0.00056334403 + 101570 -6250.5695 -6254.9674 4.3978934 3704.8425 628.66446 -10588.474 0 210.77173 -0.00041933904 -0.00044111259 + 101580 -6250.6639 -6255.0471 4.3831561 3702.92 629.3463 -10587.313 0 210.06544 -0.00031250453 -0.00033562019 + 101590 -6250.77 -6254.8535 4.0834595 3701.5968 629.73996 -10586.19 0 195.70229 -0.00026555995 -0.00028509873 + 101600 -6250.8555 -6254.4938 3.638311 3701.1819 629.72573 -10585.401 0 174.36828 -0.00029033657 -0.00030493449 + 101610 -6250.889 -6254.0958 3.2068546 3701.5727 629.33524 -10585.004 0 153.69047 -0.00037286861 -0.00038486142 + 101620 -6250.8645 -6253.7426 2.8780252 3702.3759 628.72588 -10584.844 0 137.93111 -0.00048231595 -0.00049495412 + 101630 -6250.8 -6253.4617 2.6616829 3703.0797 628.11461 -10584.656 0 127.56278 -0.00058228686 -0.00059699735 + 101640 -6250.7161 -6253.2579 2.5417223 3703.2211 627.6969 -10584.176 0 121.81359 -0.00064140214 -0.00065735493 + 101650 -6250.6167 -6253.143 2.5262792 3702.5307 627.57853 -10583.252 0 121.07347 -0.00064209978 -0.00065787561 + 101660 -6250.4859 -6253.1351 2.6491854 3701.0352 627.74128 -10581.912 0 126.96383 -0.00058646655 -0.00060184466 + 101670 -6250.3015 -6253.2324 2.9309473 3699.0819 628.05246 -10580.367 0 140.46744 -0.00049668576 -0.00051285813 + 101680 -6250.0523 -6253.3944 3.3421247 3697.2526 628.31637 -10578.963 0 160.17337 -0.00040820172 -0.00042638868 + 101690 -6249.7475 -6253.5501 3.8025828 3696.1756 628.354 -10578.08 0 182.2411 -0.00035671807 -0.00037652505 + 101700 -6249.4121 -6253.6318 4.2196369 3696.2964 628.08415 -10578.012 0 202.22868 -0.00036366841 -0.00038271654 + 101710 -6249.0688 -6253.6105 4.5417225 3697.6975 627.5708 -10578.879 0 217.66482 -0.00042647888 -0.00044196723 + 101720 -6248.7217 -6253.5087 4.7870416 3700.051 627.00975 -10580.569 0 229.42189 -0.00051880016 -0.00053006918 + 101730 -6248.3585 -6253.3731 5.0146677 3702.7379 626.65469 -10582.766 0 240.33101 -0.00060170622 -0.00061157262 + 101740 -6247.9733 -6253.2271 5.2538571 3705.079 626.71436 -10585.021 0 251.79431 -0.0006408435 -0.00065404182 + 101750 -6247.587 -6253.0443 5.4573228 3706.5581 627.2677 -10586.87 0 261.54553 -0.00062048658 -0.00064008739 + 101760 -6247.2415 -6252.7737 5.532196 3706.9278 628.23401 -10587.935 0 265.13387 -0.00054717452 -0.0005720126 + 101770 -6246.9689 -6252.3972 5.4282956 3706.1842 629.40792 -10587.989 0 260.15438 -0.0004424335 -0.000467962 + 101780 -6246.7647 -6251.9664 5.2016958 3704.4802 630.5378 -10586.984 0 249.29445 -0.00033092175 -0.0003528532 + 101790 -6246.5903 -6251.5806 4.990334 3702.0676 631.40795 -10585.056 0 239.16481 -0.00023189276 -0.00024944651 + 101800 -6246.402 -6251.3248 4.9228113 3699.2941 631.88816 -10582.507 0 235.92874 -0.00015743022 -0.00017353463 + 101810 -6246.1788 -6251.2217 5.0429896 3696.6093 631.93832 -10579.769 0 241.68836 -0.00011509016 -0.00013382145 + 101820 -6245.9276 -6251.2365 5.3089977 3694.5231 631.58258 -10577.342 0 254.43696 -0.00011051561 -0.00013430447 + 101830 -6245.6677 -6251.3193 5.6515209 3693.5034 630.87869 -10575.701 0 270.85259 -0.00014765538 -0.00017644263 + 101840 -6245.4121 -6251.4423 6.0301933 3693.843 629.90139 -10575.187 0 289.0007 -0.00022704787 -0.00025950285 + 101850 -6245.161 -6251.6012 6.4402123 3695.5473 628.74393 -10575.892 0 308.65111 -0.00034360093 -0.00037879671 + 101860 -6244.9128 -6251.7831 6.8703129 3698.2841 627.53113 -10577.598 0 329.26395 -0.00048468378 -0.0005225127 + 101870 -6244.6789 -6251.9347 7.2557868 3701.4152 626.43069 -10579.781 0 347.73802 -0.00062898198 -0.00066891825 + 101880 -6244.4869 -6251.9664 7.4794452 3704.1075 625.64697 -10581.721 0 358.45698 -0.00074711141 -0.00078663362 + 101890 -6244.3614 -6251.8049 7.4435221 3705.5088 625.38536 -10582.699 0 356.73534 -0.00080540269 -0.00084024804 + 101900 -6244.2941 -6251.4647 7.1705364 3704.9693 625.78948 -10582.223 0 343.65234 -0.00077396584 -0.00080118882 + 101910 -6244.2375 -6251.0695 6.83203 3702.2911 626.87132 -10580.232 0 327.42921 -0.00063904101 -0.00066062489 + 101920 -6244.1391 -6250.7821 6.6430789 3697.9349 628.46519 -10577.182 0 318.37362 -0.00041617175 -0.00043898106 + 101930 -6243.9903 -6250.6939 6.7036914 3693.039 630.23278 -10573.966 0 321.2785 -0.00015558964 -0.000186432 + 101940 -6243.8383 -6250.7772 6.9389236 3689.1318 631.73423 -10571.643 0 332.55215 6.8526449e-05 2.8666948e-05 + 101950 -6243.7496 -6250.9313 7.1816969 3687.6005 632.55764 -10571.089 0 344.18721 0.00018380779 0.00014119208 + 101960 -6243.758 -6251.066 7.3079768 3689.1549 632.4656 -10572.687 0 350.23925 0.00014875391 0.00011270252 + 101970 -6243.8381 -6251.1554 7.3173297 3693.5397 631.49197 -10576.187 0 350.6875 -2.9458287e-05 -5.3293417e-05 + 101980 -6243.922 -6251.2323 7.310305 3699.6191 629.93595 -10580.787 0 350.35084 -0.00029748812 -0.00031162534 + 101990 -6243.9507 -6251.3313 7.3805721 3705.7827 628.25414 -10585.368 0 353.71843 -0.00057750301 -0.00059137727 + 102000 -6243.924 -6251.4286 7.5046184 3710.4729 626.90437 -10588.806 0 359.66342 -0.00079647359 -0.00081975635 + 102010 -6243.9056 -6251.4427 7.5370453 3712.5982 626.21116 -10590.252 0 361.2175 -0.00090763972 -0.00094308139 + 102020 -6243.9708 -6251.312 7.3412039 3711.6997 626.29828 -10589.31 0 351.83168 -0.00089559815 -0.00093758737 + 102030 -6244.1403 -6251.0787 6.9384434 3707.9236 627.09457 -10586.097 0 332.52914 -0.00076956285 -0.00080980406 + 102040 -6244.369 -6250.8787 6.5096705 3701.9454 628.38699 -10581.211 0 311.97994 -0.00055644535 -0.00059110654 + 102050 -6244.6 -6250.8307 6.2306717 3694.9068 629.88394 -10575.621 0 298.60875 -0.00029928936 -0.00033056777 + 102060 -6244.8215 -6250.9369 6.1153951 3688.2746 631.2638 -10570.475 0 293.08405 -5.522185e-05 -8.668876e-05 + 102070 -6245.0663 -6251.1024 6.0361376 3683.5322 632.21019 -10566.845 0 289.28558 0.00011513024 8.3286108e-05 + 102080 -6245.3605 -6251.248 5.8874204 3681.7686 632.4551 -10565.472 0 282.15822 0.00016543439 0.00013584698 + 102090 -6245.6873 -6251.393 5.7056452 3683.369 631.84329 -10566.605 0 273.44653 7.8333424e-05 5.1852222e-05 + 102100 -6246.0055 -6251.6248 5.6192528 3687.9514 630.40194 -10569.978 0 269.30612 -0.00013134002 -0.00015842332 + 102110 -6246.3005 -6251.9952 5.6947273 3694.5223 628.37543 -10574.893 0 272.92329 -0.00042331021 -0.00045662143 + 102120 -6246.6073 -6252.454 5.8466534 3701.7159 626.19108 -10580.361 0 280.20444 -0.00074105748 -0.00078257385 + 102130 -6246.9809 -6252.8809 5.9000394 3708.0249 624.3559 -10585.262 0 282.76299 -0.0010194512 -0.0010646188 + 102140 -6247.4418 -6253.177 5.7351749 3712.0415 623.3217 -10588.54 0 274.86176 -0.0011936211 -0.0012340407 + 102150 -6247.9509 -6253.3268 5.3759166 3712.754 623.36763 -10589.448 0 257.64409 -0.0012130494 -0.0012423431 + 102160 -6248.4326 -6253.3866 4.9539283 3709.8619 624.53011 -10587.779 0 237.42004 -0.001059164 -0.0010771166 + 102170 -6248.8234 -6253.4224 4.5989467 3703.9779 626.58445 -10583.985 0 220.40733 -0.00075857139 -0.00077063276 + 102180 -6249.104 -6253.458 4.354021 3696.5828 629.07512 -10579.116 0 208.66912 -0.00038329059 -0.0003964331 + 102190 -6249.298 -6253.4723 4.1743146 3689.6778 631.39908 -10574.549 0 200.05658 -3.4272932e-05 -5.2626376e-05 + 102200 -6249.4462 -6253.4376 3.9914169 3685.2182 632.94472 -10571.601 0 191.29109 0.00018781243 0.00016464636 + 102210 -6249.5786 -6253.3569 3.7782988 3684.5187 633.26489 -10571.14 0 181.07728 0.00021416699 0.0001896966 + 102220 -6249.7021 -6253.269 3.5669482 3687.8421 632.22945 -10573.341 0 170.94817 3.0239556e-05 8.2252005e-06 + 102230 -6249.8041 -6253.2248 3.4207357 3694.3082 630.0922 -10577.625 0 163.94085 -0.00031852989 -0.00033639563 + 102240 -6249.865 -6253.2564 3.3914033 3702.144 627.4337 -10582.834 0 162.53507 -0.00073896655 -0.00075374203 + 102250 -6249.8718 -6253.3579 3.4860716 3709.1873 624.99151 -10587.537 0 167.07211 -0.0011166396 -0.001131098 + 102260 -6249.8266 -6253.4858 3.6592283 3713.4859 623.43603 -10590.408 0 175.37075 -0.0013488018 -0.001365452 + 102270 -6249.7443 -6253.5819 3.837583 3713.8172 623.17039 -10590.57 0 183.91851 -0.0013735976 -0.00139314 + 102280 -6249.6402 -6253.6099 3.9697036 3709.9952 624.22091 -10587.826 0 190.25047 -0.0011862906 -0.0012077211 + 102290 -6249.5148 -6253.5834 4.0686208 3702.905 626.24654 -10582.735 0 194.99114 -0.0008382995 -0.00086066176 + 102300 -6249.3514 -6253.5595 4.2081196 3694.2803 628.65357 -10576.493 0 201.6767 -0.00042141013 -0.00044564964 + 102310 -6249.1308 -6253.5923 4.4615292 3686.2872 630.77271 -10570.652 0 213.82151 -4.3527184e-05 -7.2427565e-05 + 102320 -6248.8551 -6253.6768 4.8216877 3680.9971 632.04575 -10566.72 0 231.08233 0.00019785278 0.0001622852 + 102330 -6248.5591 -6253.7309 5.1717708 3679.8454 632.17215 -10565.748 0 247.86027 0.00024016102 0.00020001048 + 102340 -6248.2908 -6253.6449 5.3540856 3683.1981 631.17722 -10568.02 0 256.59782 7.4045265e-05 3.6058229e-05 + 102350 -6248.0687 -6253.3729 5.3041967 3690.1827 629.38435 -10572.94 0 254.20687 -0.00025092738 -0.00027957581 + 102360 -6247.853 -6252.9847 5.1317309 3698.9089 627.30527 -10579.199 0 245.94134 -0.00063963416 -0.00065797643 + 102370 -6247.5713 -6252.6118 5.0405685 3707.0676 625.49028 -10585.17 0 241.57232 -0.00098337662 -0.00099942979 + 102380 -6247.191 -6252.3252 5.1341707 3712.6752 624.38551 -10589.386 0 246.05827 -0.0011977316 -0.0012231685 + 102390 -6246.7683 -6252.0718 5.3035127 3714.6106 624.22986 -10590.912 0 254.17408 -0.0012466683 -0.0012869091 + 102400 -6246.4145 -6251.7528 5.3383106 3712.7294 625.01256 -10589.495 0 255.8418 -0.0011413225 -0.0011901906 + 102410 -6246.2035 -6251.3653 5.16176 3707.6408 626.50498 -10585.511 0 247.3805 -0.00091995344 -0.00096437182 + 102420 -6246.1094 -6251.0514 4.9419747 3700.416 628.35609 -10579.823 0 236.84716 -0.00062762489 -0.00065812266 + 102430 -6246.0349 -6250.9952 4.9603223 3692.4144 630.20487 -10573.615 0 237.72647 -0.00030920373 -0.00032668482 + 102440 -6245.8982 -6251.2643 5.3660962 3685.1916 631.75283 -10568.209 0 257.17344 -1.3564115e-05 -2.7015819e-05 + 102450 -6245.6945 -6251.7403 6.0457183 3680.3269 632.77519 -10564.842 0 289.74474 0.00020378301 0.00018545729 + 102460 -6245.487 -6252.1984 6.7114105 3679.0838 633.09966 -10564.382 0 321.64845 0.00028939007 0.00026381669 + 102470 -6245.3426 -6252.4586 7.1160707 3682.0004 632.60493 -10567.064 0 341.04204 0.00020984228 0.00018102952 + 102480 -6245.2775 -6252.4862 7.2087328 3688.6178 631.26711 -10572.371 0 345.48293 -3.1968607e-05 -5.896585e-05 + 102490 -6245.2547 -6252.3739 7.1192088 3697.5068 629.2335 -10579.114 0 341.19243 -0.00039200738 -0.00041616211 + 102500 -6245.2276 -6252.2406 7.0129533 3706.6036 626.8667 -10585.711 0 336.10007 -0.0007933685 -0.00081811182 + 102510 -6245.1844 -6252.1397 6.9552842 3713.7217 624.70672 -10590.568 0 333.33625 -0.0011429695 -0.0011722302 + 102520 -6245.1516 -6252.0483 6.8966999 3717.0685 623.33968 -10592.456 0 330.52856 -0.0013516584 -0.0013857816 + 102530 -6245.1604 -6251.9263 6.7658949 3715.652 623.21413 -10590.792 0 324.25965 -0.0013554857 -0.0013909592 + 102540 -6245.2131 -6251.7713 6.5582159 3709.5415 624.47724 -10585.79 0 314.30651 -0.0011358301 -0.0011685847 + 102550 -6245.2811 -6251.6214 6.3403731 3699.9442 626.89479 -10578.46 0 303.86626 -0.00073206911 -0.00076093837 + 102560 -6245.3263 -6251.5236 6.197312 3689.0281 629.88305 -10570.435 0 297.00996 -0.00023867284 -0.00026641767 + 102570 -6245.3254 -6251.5078 6.1824371 3679.4619 632.64676 -10563.616 0 296.29707 0.00021609789 0.00018429451 + 102580 -6245.2837 -6251.5705 6.2868233 3673.7537 634.39342 -10559.718 0 301.29985 0.00050417008 0.00046381875 + 102590 -6245.2403 -6251.6638 6.4234384 3673.5618 634.57101 -10559.797 0 307.84721 0.00053420932 0.00048516957 + 102600 -6245.2527 -6251.7102 6.4575015 3679.1574 633.05402 -10563.922 0 309.4797 0.00028140065 0.00022986772 + 102610 -6245.3552 -6251.6648 6.3096156 3689.2085 630.20409 -10571.077 0 302.39218 -0.00019788694 -0.00024196699 + 102620 -6245.5183 -6251.5813 6.062991 3701.0304 626.77365 -10579.385 0 290.57255 -0.0007751217 -0.00080513494 + 102630 -6245.6583 -6251.5946 5.9363322 3711.3377 623.68653 -10586.619 0 284.50235 -0.0012862615 -0.0013049583 + 102640 -6245.7056 -6251.7988 6.0931542 3717.2891 621.77468 -10590.863 0 292.01814 -0.0015862754 -0.001604135 + 102650 -6245.6715 -6252.1374 6.4658647 3717.3876 621.54859 -10591.074 0 309.88052 -0.0015978778 -0.0016242303 + 102660 -6245.6395 -6252.4348 6.7952626 3711.8486 623.0561 -10587.339 0 325.66711 -0.0013319432 -0.0013671934 + 102670 -6245.6898 -6252.544 6.8542641 3702.364 625.8683 -10580.776 0 328.4948 -0.00087446073 -0.00091073173 + 102680 -6245.8312 -6252.4585 6.6272737 3691.4915 629.20808 -10573.158 0 317.61614 -0.00035279345 -0.00038156478 + 102690 -6246.0056 -6252.2912 6.2855807 3681.9548 632.18711 -10566.433 0 301.24029 0.00010126333 8.2218638e-05 + 102700 -6246.1472 -6252.1639 6.0167636 3676.0287 634.06687 -10562.26 0 288.35707 0.00038126096 0.00036736313 + 102710 -6246.2358 -6252.1185 5.8827264 3675.0723 634.45181 -10561.643 0 281.93326 0.00042682759 0.00041174976 + 102720 -6246.3003 -6252.119 5.8187491 3679.2422 633.36048 -10564.722 0 278.86711 0.00023563783 0.00021661235 + 102730 -6246.3802 -6252.1252 5.7450316 3687.4435 631.17269 -10570.741 0 275.33415 -0.00013598763 -0.00015719919 + 102740 -6246.486 -6252.1527 5.6666235 3697.5852 628.49117 -10578.229 0 271.57639 -0.00058770171 -0.00060820276 + 102750 -6246.5973 -6252.2559 5.6586118 3707.1249 625.97313 -10585.354 0 271.19243 -0.0010038123 -0.0010231891 + 102760 -6246.6943 -6252.4523 5.7579809 3713.7547 624.17835 -10590.385 0 275.95475 -0.001286451 -0.0013067564 + 102770 -6246.7848 -6252.6748 5.8900286 3715.9876 623.45723 -10592.12 0 282.28322 -0.0013800233 -0.0014027268 + 102780 -6246.8938 -6252.8126 5.918732 3713.4572 623.88704 -10590.157 0 283.65885 -0.0012793778 -0.0013033231 + 102790 -6247.0319 -6252.7981 5.7662318 3706.9039 625.2642 -10584.966 0 276.35018 -0.0010238745 -0.0010466508 + 102800 -6247.1801 -6252.6535 5.4734096 3697.9322 627.16029 -10577.746 0 262.3165 -0.00068424443 -0.00070508068 + 102810 -6247.3084 -6252.4609 5.152512 3688.6298 629.03548 -10570.126 0 246.93729 -0.00034655194 -0.0003673173 + 102820 -6247.4036 -6252.3025 4.8989406 3681.1041 630.38125 -10563.788 0 234.78472 -9.3850054e-05 -0.00011725321 + 102830 -6247.4772 -6252.2252 4.7480102 3677.0021 630.85211 -10560.079 0 227.55129 1.3231371e-05 -1.3804464e-05 + 102840 -6247.5514 -6252.2463 4.6949057 3677.1207 630.34913 -10559.716 0 225.00623 -4.7737185e-05 -7.6789908e-05 + 102850 -6247.6382 -6252.3742 4.7359995 3681.2255 629.03428 -10562.634 0 226.97567 -0.00025492219 -0.00028311242 + 102860 -6247.7303 -6252.6146 4.8842984 3688.143 627.27523 -10568.033 0 234.08298 -0.00054912912 -0.00057456879 + 102870 -6247.8102 -6252.9548 5.144631 3696.1028 625.54105 -10574.599 0 246.55958 -0.0008516714 -0.00087469132 + 102880 -6247.8672 -6253.3397 5.4725012 3703.2181 624.2806 -10580.838 0 262.27297 -0.001086807 -0.0011091438 + 102890 -6247.9098 -6253.6701 5.7603208 3707.9564 623.81537 -10585.442 0 276.06689 -0.0012010643 -0.0012237346 + 102900 -6247.9589 -6253.8392 5.8802807 3709.4647 624.26867 -10587.573 0 281.81605 -0.0011739382 -0.0011958104 + 102910 -6248.0266 -6253.7911 5.7644901 3707.6886 625.54218 -10587.022 0 276.26671 -0.0010186829 -0.0010373024 + 102920 -6248.0997 -6253.5576 5.457913 3703.3011 627.3432 -10584.202 0 261.57382 -0.00077575656 -0.00078984798 + 102930 -6248.1464 -6253.2391 5.0926621 3697.5016 629.25807 -10579.999 0 244.06894 -0.00050257208 -0.00051384678 + 102940 -6248.1415 -6252.9418 4.8002815 3691.7383 630.85463 -10575.535 0 230.05642 -0.00026174376 -0.00027413122 + 102950 -6248.0861 -6252.7178 4.6316775 3687.3883 631.78584 -10571.892 0 221.97598 -0.00010857551 -0.00012528256 + 102960 -6248.0067 -6252.5512 4.544484 3685.4347 631.86556 -10569.852 0 217.79717 -7.8828372e-05 -9.9551877e-05 + 102970 -6247.9328 -6252.3982 4.4653766 3686.2132 631.09772 -10569.709 0 214.0059 -0.00017921067 -0.00019993378 + 102980 -6247.8677 -6252.2491 4.3814511 3689.3128 629.65681 -10571.219 0 209.98372 -0.00038408831 -0.00040016294 + 102990 -6247.7747 -6252.1608 4.3861343 3693.7005 627.83267 -10573.694 0 210.20817 -0.00064143401 -0.00065199444 + 103000 -6247.5951 -6252.2207 4.6255849 3698.0556 625.96235 -10576.239 0 221.68398 -0.00088799953 -0.0008979574 + 103010 -6247.2906 -6252.4618 5.171163 3701.1937 624.36916 -10578.025 0 247.83115 -0.0010685222 -0.0010855957 + 103020 -6246.8791 -6252.8059 5.9268017 3702.3934 623.3176 -10578.517 0 284.04559 -0.0011501266 -0.0011785801 + 103030 -6246.4286 -6253.099 6.6703987 3701.4961 622.98071 -10577.576 0 319.68294 -0.001125476 -0.0011619071 + 103040 -6246.0076 -6253.216 7.2084135 3698.8022 623.4146 -10575.433 0 345.46762 -0.0010062055 -0.001041655 + 103050 -6245.6317 -6253.138 7.5062227 3694.9054 624.54311 -10572.586 0 359.74031 -0.00081488644 -0.00084200573 + 103060 -6245.2594 -6252.9315 7.6720598 3690.5871 626.16151 -10569.68 0 367.68815 -0.00058253914 -0.00060169655 + 103070 -6244.8429 -6252.6547 7.8118204 3686.7652 627.96719 -10567.387 0 374.38627 -0.00035059832 -0.00036946739 + 103080 -6244.3875 -6252.2847 7.897224 3684.3918 629.6162 -10566.293 0 378.47929 -0.0001693942 -0.00019624447 + 103090 -6243.9599 -6251.7431 7.7831988 3684.2181 630.79589 -10566.757 0 373.01456 -8.6518909e-05 -0.00012309387 + 103100 -6243.6321 -6251.0068 7.3747216 3686.4768 631.29857 -10568.782 0 353.43804 -0.00012740388 -0.00016788646 + 103110 -6243.4141 -6250.2031 6.7889638 3690.674 631.07753 -10571.955 0 325.36524 -0.00027974466 -0.00031678295 + 103120 -6243.2433 -6249.5812 6.3379513 3695.6774 630.26738 -10575.526 0 303.75019 -0.00049388499 -0.00052570182 + 103130 -6243.0412 -6249.3626 6.3213949 3700.1033 629.15698 -10578.623 0 302.95671 -0.00070063205 -0.00073209445 + 103140 -6242.7823 -6249.5928 6.8105524 3702.7925 628.11652 -10580.502 0 326.39988 -0.00083582939 -0.00087263247 + 103150 -6242.5109 -6250.1228 7.6119033 3703.1351 627.49457 -10580.753 0 364.80512 -0.00085905819 -0.0009011472 + 103160 -6242.2988 -6250.7234 8.4246018 3701.1603 627.50932 -10579.393 0 403.75419 -0.00076178708 -0.00080254559 + 103170 -6242.1838 -6251.2254 9.0416106 3697.4621 628.16241 -10576.85 0 433.32471 -0.00056782529 -0.00059969218 + 103180 -6242.1467 -6251.582 9.435323 3693.0536 629.20795 -10573.844 0 452.19362 -0.0003293263 -0.00035065449 + 103190 -6242.1424 -6251.8281 9.6857434 3689.1648 630.20604 -10571.199 0 464.19517 -0.00011768619 -0.00013483731 + 103200 -6242.1582 -6251.9927 9.8344628 3686.9616 630.66603 -10569.62 0 471.32264 -6.9162572e-06 -2.9630037e-05 + 103210 -6242.2442 -6252.0409 9.796718 3687.1934 630.24041 -10569.475 0 469.5137 -5.0084122e-05 -8.3561726e-05 + 103220 -6242.4809 -6251.8988 9.4179946 3689.8587 628.8905 -10570.648 0 451.36315 -0.00025530504 -0.00029548955 + 103230 -6242.9045 -6251.5457 8.6412446 3694.0565 626.93922 -10572.541 0 414.13693 -0.00057298839 -0.00060964809 + 103240 -6243.4565 -6251.0852 7.6286591 3698.193 624.97064 -10574.249 0 365.60815 -0.00090604669 -0.00093166007 + 103250 -6244.0184 -6250.7093 6.6908344 3700.5672 623.61267 -10574.889 0 320.66232 -0.0011449871 -0.0011613568 + 103260 -6244.5035 -6250.5698 6.0662637 3700.0968 623.30023 -10573.967 0 290.7294 -0.0012129367 -0.0012291326 + 103270 -6244.9132 -6250.6842 5.770997 3696.7908 624.12066 -10571.596 0 276.57856 -0.0010959745 -0.0011200978 + 103280 -6245.3078 -6250.969 5.6612863 3691.7159 625.79646 -10568.481 0 271.32061 -0.00084341393 -0.00087663771 + 103290 -6245.7355 -6251.3455 5.610048 3686.5346 627.79858 -10565.679 0 268.86498 -0.00054284527 -0.00058050651 + 103300 -6246.1969 -6251.7998 5.60288 3682.9059 629.53651 -10564.242 0 268.52145 -0.00028683654 -0.00032366287 + 103310 -6246.6609 -6252.3518 5.6908834 3681.9949 630.55041 -10564.897 0 272.73907 -0.00014550334 -0.00017934187 + 103320 -6247.0992 -6252.9875 5.8883172 3684.1936 630.64056 -10567.822 0 282.2012 -0.00015050386 -0.00018213146 + 103330 -6247.5039 -6253.6238 6.119823 3689.057 629.90131 -10572.582 0 293.29626 -0.00029058622 -0.00032116491 + 103340 -6247.8807 -6254.1309 6.2502453 3695.4318 628.66306 -10578.226 0 299.54682 -0.00051751676 -0.00054654991 + 103350 -6248.2297 -6254.3954 6.1657295 3701.7482 627.37167 -10583.515 0 295.49635 -0.00076077382 -0.00078633183 + 103360 -6248.5322 -6254.3799 5.8477812 3706.4187 626.44558 -10587.244 0 280.25849 -0.00094804873 -0.00096903714 + 103370 -6248.7552 -6254.1401 5.3848856 3708.2632 626.15119 -10588.554 0 258.07393 -0.0010268826 -0.0010452689 + 103380 -6248.8769 -6253.7821 4.9051602 3706.8512 626.52845 -10587.162 0 235.0828 -0.00098137161 -0.0010017937 + 103390 -6248.9119 -6253.3957 4.483795 3702.6376 627.38581 -10583.419 0 214.88861 -0.00083734097 -0.00086357711 + 103400 -6248.91 -6253.0257 4.1157067 3696.8055 628.36806 -10578.199 0 197.24776 -0.00065185554 -0.00068304895 + 103410 -6248.9226 -6252.7041 3.7814353 3690.859 629.07989 -10572.643 0 181.2276 -0.00049013596 -0.00052063978 + 103420 -6248.9639 -6252.4929 3.5290727 3686.1511 629.22516 -10567.869 0 169.13296 -0.00040092749 -0.00042440093 + 103430 -6249.0012 -6252.4786 3.4773419 3683.5576 628.70786 -10564.744 0 166.65374 -0.00040245814 -0.00041678556 + 103440 -6248.9817 -6252.7146 3.7329133 3683.3853 627.65173 -10563.752 0 178.90215 -0.0004836425 -0.00049267111 + 103450 -6248.8706 -6253.1666 4.296012 3685.4553 626.33467 -10564.957 0 205.889 -0.00061594872 -0.0006269113 + 103460 -6248.678 -6253.7055 5.0275192 3689.2405 625.07662 -10568.023 0 240.94693 -0.00076712649 -0.00078576543 + 103470 -6248.4553 -6254.1562 5.700869 3693.976 624.1395 -10572.272 0 273.21763 -0.00090958387 -0.000936319 + 103480 -6248.2631 -6254.3764 6.1132863 3698.7323 623.68219 -10576.791 0 292.98298 -0.0010210672 -0.0010508812 + 103490 -6248.1291 -6254.3227 6.1935874 3702.5052 623.77306 -10580.601 0 296.83146 -0.0010809447 -0.0011073128 + 103500 -6248.0296 -6254.0595 6.0299275 3704.3874 624.42597 -10582.873 0 288.98796 -0.0010688826 -0.0010889515 + 103510 -6247.9139 -6253.6988 5.7849527 3703.8275 625.61697 -10583.143 0 277.24739 -0.00097079141 -0.00098748248 + 103520 -6247.7529 -6253.3144 5.5614946 3700.8767 627.26409 -10581.455 0 266.53803 -0.0007897817 -0.00080875033 + 103530 -6247.5647 -6252.9069 5.3421697 3696.2632 629.18977 -10578.36 0 256.02675 -0.0005534176 -0.00057761011 + 103540 -6247.3914 -6252.4565 5.0651221 3691.2089 631.10455 -10574.77 0 242.74907 -0.00030977317 -0.00033695461 + 103550 -6247.2506 -6252.0069 4.7562744 3687.0609 632.64161 -10571.709 0 227.94736 -0.00011348513 -0.00013925659 + 103560 -6247.1109 -6251.6829 4.5719894 3684.9219 633.44199 -10570.047 0 219.11539 -1.0349191e-05 -3.3516695e-05 + 103570 -6246.9164 -6251.6139 4.6975163 3685.4119 633.26126 -10570.287 0 225.13134 -2.7623887e-05 -5.2387569e-05 + 103580 -6246.6369 -6251.8266 5.1897034 3688.5677 632.05693 -10572.451 0 248.71971 -0.00017018352 -0.00020270103 + 103590 -6246.3009 -6252.2038 5.9029488 3693.8141 630.02378 -10576.042 0 282.90243 -0.00041846556 -0.00046056192 + 103600 -6245.9811 -6252.554 6.5729467 3699.9835 627.56286 -10580.1 0 315.01249 -0.00072638238 -0.00077211353 + 103610 -6245.735 -6252.7435 7.0084298 3705.4471 625.19107 -10583.382 0 335.88328 -0.0010231198 -0.0010621472 + 103620 -6245.5509 -6252.784 7.2330606 3708.4642 623.41723 -10584.665 0 346.64885 -0.0012260032 -0.0012518786 + 103630 -6245.3562 -6252.7912 7.4350501 3707.7439 622.6183 -10583.153 0 356.32932 -0.0012668117 -0.0012829665 + 103640 -6245.0906 -6252.8466 7.7560599 3703.0203 622.94378 -10578.811 0 371.71391 -0.0011221364 -0.0011395584 + 103650 -6244.7726 -6252.8974 8.1247919 3695.3144 624.26729 -10572.479 0 389.38562 -0.00082990431 -0.00085815192 + 103660 -6244.4912 -6252.7987 8.3075293 3686.6743 626.20298 -10565.676 0 398.14342 -0.00047915474 -0.00051885943 + 103670 -6244.3297 -6252.4552 8.1254684 3679.4838 628.20023 -10560.139 0 389.41804 -0.00017661764 -0.00021998253 + 103680 -6244.2977 -6251.9194 7.621675 3675.6714 629.70518 -10557.296 0 365.27343 -8.1008944e-06 -4.604062e-05 + 103690 -6244.334 -6251.363 7.0289323 3676.1664 630.33897 -10557.868 0 336.86588 -1.3098818e-05 -4.2051554e-05 + 103700 -6244.3638 -6250.9579 6.5941004 3680.7438 630.02164 -10561.723 0 316.02629 -0.00017924874 -0.00020232239 + 103710 -6244.3521 -6250.7777 6.4255645 3688.2017 628.99005 -10567.969 0 307.9491 -0.00045187959 -0.0004747488 + 103720 -6244.3137 -6250.7883 6.474569 3696.7241 627.70382 -10575.216 0 310.29768 -0.00075103511 -0.00077705233 + 103730 -6244.2817 -6250.9182 6.6364385 3704.3149 626.67959 -10581.913 0 318.05537 -0.00099132305 -0.0010200705 + 103740 -6244.2709 -6251.1369 6.8659726 3709.2452 626.31927 -10586.701 0 329.05593 -0.0011025971 -0.0011325043 + 103750 -6244.27 -6251.4657 7.1956348 3710.4679 626.79347 -10588.727 0 344.85519 -0.0010490316 -0.001080666 + 103760 -6244.2728 -6251.9129 7.6400769 3707.9057 628.00883 -10587.827 0 366.15535 -0.00084155295 -0.00087751962 + 103770 -6244.3128 -6252.4071 8.0942735 3702.4781 629.65076 -10584.536 0 387.923 -0.00053715731 -0.00057842675 + 103780 -6244.4588 -6252.8064 8.3476492 3695.8023 631.27694 -10579.886 0 400.06619 -0.00022210555 -0.00026494236 + 103790 -6244.7691 -6252.9825 8.2133308 3689.6672 632.4377 -10575.087 0 393.6289 1.5927316e-05 -2.1362041e-05 + 103800 -6245.244 -6252.9033 7.6592449 3685.504 632.79554 -10571.203 0 367.07399 0.00011516064 8.8858206e-05 + 103810 -6245.8164 -6252.6559 6.8395028 3684.0442 632.20908 -10568.909 0 327.78735 5.5346051e-05 3.916975e-05 + 103820 -6246.3918 -6252.3956 6.0037732 3685.2517 630.75768 -10568.405 0 287.7345 -0.00014298651 -0.0001563674 + 103830 -6246.9107 -6252.2552 5.3445527 3688.4893 628.70917 -10569.454 0 256.14095 -0.00043180657 -0.00045114765 + 103840 -6247.3778 -6252.2795 4.9017163 3692.7868 626.45092 -10571.517 0 234.91775 -0.0007515653 -0.00078052906 + 103850 -6247.8336 -6252.4369 4.6032299 3697.0705 624.40484 -10573.912 0 220.61261 -0.0010421683 -0.0010767984 + 103860 -6248.3016 -6252.6872 4.385634 3700.3221 622.94385 -10575.953 0 210.18419 -0.001249384 -0.001281547 + 103870 -6248.7627 -6253.029 4.2662913 3701.7331 622.32469 -10577.087 0 204.46462 -0.0013317969 -0.0013553781 + 103880 -6249.1726 -6253.4793 4.3066972 3700.9022 622.64512 -10577.027 0 206.40109 -0.0012704897 -0.0012853186 + 103890 -6249.497 -6254.0132 4.5162117 3698.0148 623.82633 -10575.854 0 216.4422 -0.0010779769 -0.0010888796 + 103900 -6249.7363 -6254.5305 4.7942065 3693.8795 625.62069 -10574.031 0 229.76527 -0.00080011336 -0.00081251234 + 103910 -6249.921 -6254.8907 4.9697348 3689.7364 627.64885 -10572.276 0 238.17758 -0.00050677642 -0.00052270415 + 103920 -6250.0839 -6254.994 4.910086 3686.8805 629.47141 -10571.346 0 235.31887 -0.00027279505 -0.00029033549 + 103930 -6250.2336 -6254.8431 4.6095165 3686.2525 630.68935 -10571.785 0 220.91389 -0.00015613023 -0.00017215843 + 103940 -6250.3515 -6254.5405 4.1890112 3688.159 631.04958 -10573.749 0 200.76092 -0.00018183683 -0.00019533606 + 103950 -6250.4124 -6254.2243 3.8119239 3692.2069 630.52022 -10576.951 0 182.68878 -0.00033706529 -0.00035022007 + 103960 -6250.4089 -6253.9889 3.5799491 3697.44 629.30595 -10580.735 0 171.57125 -0.00057705076 -0.00059332369 + 103970 -6250.3621 -6253.8436 3.481454 3702.5966 627.79272 -10584.233 0 166.85081 -0.00083820872 -0.00085900095 + 103980 -6250.3079 -6253.7361 3.4282423 3706.3995 626.43333 -10586.569 0 164.30061 -0.0010536359 -0.0010764093 + 103990 -6250.2673 -6253.624 3.3566693 3707.821 625.6063 -10587.051 0 160.87043 -0.0011678341 -0.0011877799 + 104000 -6250.2224 -6253.5342 3.311711 3706.3123 625.4963 -10585.343 0 158.71577 -0.0011494241 -0.001163888 + 104010 -6250.1217 -6253.5515 3.4298318 3701.991 626.04214 -10581.585 0 164.37678 -0.0010008187 -0.0010127153 + 104020 -6249.9178 -6253.737 3.8192116 3695.7283 626.97179 -10576.437 0 183.03805 -0.00076173615 -0.00077829572 + 104030 -6249.6093 -6254.0502 4.4408543 3689.0251 627.90516 -10570.98 0 212.83066 -0.00050187695 -0.00052905458 + 104040 -6249.2483 -6254.354 5.1057176 3683.6226 628.4813 -10566.458 0 244.69463 -0.00030097716 -0.00033813286 + 104050 -6248.9046 -6254.5025 5.5979517 3680.9479 628.46788 -10563.918 0 268.28525 -0.0002217043 -0.0002613029 + 104060 -6248.6143 -6254.4347 5.8204154 3681.6323 627.82437 -10563.891 0 278.94696 -0.00028703004 -0.00031989446 + 104070 -6248.3546 -6254.1991 5.8444542 3685.3279 626.70571 -10566.233 0 280.09904 -0.00047307983 -0.00049514114 + 104080 -6248.0677 -6253.8973 5.8295673 3690.8887 625.41086 -10570.197 0 279.38558 -0.00072061273 -0.00073593378 + 104090 -6247.7145 -6253.5942 5.8796567 3696.8049 624.29784 -10574.697 0 281.78614 -0.00095846946 -0.00097611515 + 104100 -6247.3159 -6253.2671 5.9512576 3701.6739 623.69263 -10578.634 0 285.21766 -0.0011269263 -0.0011538632 + 104110 -6246.9446 -6252.8413 5.8966728 3704.5186 623.81103 -10581.171 0 282.60165 -0.0011909233 -0.0012264404 + 104120 -6246.6689 -6252.2884 5.6194135 3704.8909 624.70414 -10581.883 0 269.31383 -0.0011409132 -0.0011773013 + 104130 -6246.494 -6251.7054 5.21136 3702.8348 626.23897 -10580.779 0 249.75761 -0.00098701769 -0.0010162422 + 104140 -6246.354 -6251.2921 4.9380897 3698.8319 628.12698 -10578.251 0 236.66097 -0.00075416319 -0.00077494681 + 104150 -6246.1642 -6251.2263 5.0620673 3693.7733 630.00061 -10575 0 242.60267 -0.00048091751 -0.00049995201 + 104160 -6245.8927 -6251.5291 5.6364556 3688.8846 631.51358 -10571.927 0 270.13058 -0.00021811107 -0.00024400436 + 104170 -6245.5899 -6252.0334 6.4434714 3685.4863 632.42409 -10569.944 0 308.8073 -2.1148743e-05 -5.6263786e-05 + 104180 -6245.3478 -6252.4946 7.1467706 3684.5893 632.62869 -10569.713 0 342.51335 6.5379212e-05 2.7572395e-05 + 104190 -6245.2171 -6252.7576 7.5404504 3686.506 632.14472 -10571.408 0 361.38069 2.3757389e-05 -7.1369621e-06 + 104200 -6245.1627 -6252.8376 7.6749031 3690.7228 631.06864 -10574.629 0 367.82442 -0.00013103564 -0.00015142028 + 104210 -6245.1035 -6252.8551 7.7515992 3696.1206 629.54451 -10578.52 0 371.50013 -0.00036005738 -0.00037608944 + 104220 -6244.9949 -6252.8983 7.9033594 3701.3869 627.75918 -10582.044 0 378.77333 -0.00061638824 -0.00063892055 + 104230 -6244.8726 -6252.9437 8.0710912 3705.3721 625.95388 -10584.27 0 386.81198 -0.00085671168 -0.00089211735 + 104240 -6244.8207 -6252.8938 8.0730739 3707.2598 624.42172 -10584.575 0 386.907 -0.0010436454 -0.0010884768 + 104250 -6244.8966 -6252.6823 7.7857288 3706.5953 623.46297 -10582.741 0 373.13581 -0.0011439021 -0.0011876533 + 104260 -6245.0775 -6252.3524 7.2748931 3703.2998 623.2978 -10578.95 0 348.6537 -0.0011308783 -0.0011644602 + 104270 -6245.2736 -6252.0405 6.7668971 3697.7462 623.97492 -10573.762 0 324.30768 -0.00099528794 -0.0010183451 + 104280 -6245.3972 -6251.8745 6.4772583 3690.86 625.32918 -10568.064 0 310.42656 -0.00075852208 -0.00077952041 + 104290 -6245.4298 -6251.8701 6.4403354 3684.0959 627.01549 -10562.981 0 308.65701 -0.00047728279 -0.00050619516 + 104300 -6245.4296 -6251.9302 6.500601 3679.1423 628.60505 -10559.678 0 311.54527 -0.00023043057 -0.00027049394 + 104310 -6245.4725 -6251.9532 6.4807175 3677.3887 629.70665 -10559.049 0 310.59235 -9.0652344e-05 -0.00013660289 + 104320 -6245.5849 -6251.9415 6.3565113 3679.4096 630.07616 -10561.427 0 304.63969 -9.6057472e-05 -0.00013975044 + 104330 -6245.7336 -6251.9952 6.2615765 3684.7577 629.68509 -10566.438 0 300.08988 -0.00023775582 -0.00027492833 + 104340 -6245.871 -6252.2057 6.3346565 3692.142 628.72834 -10573.076 0 303.59228 -0.00046726344 -0.00049921009 + 104350 -6245.9821 -6252.5625 6.5804066 3699.8405 627.5684 -10579.971 0 315.37001 -0.00071508928 -0.00074521762 + 104360 -6246.0887 -6252.9571 6.8684112 3706.1514 626.63154 -10585.74 0 329.1728 -0.00091040581 -0.00094032537 + 104370 -6246.22 -6253.2592 7.039179 3709.7762 626.2814 -10589.317 0 337.35695 -0.00099801764 -0.0010267245 + 104380 -6246.3853 -6253.3919 7.0065896 3710.0985 626.69976 -10590.19 0 335.79509 -0.00095245567 -0.00097824411 + 104390 -6246.5693 -6253.3586 6.7893132 3707.3131 627.80921 -10588.481 0 325.38198 -0.00078672335 -0.0008093269 + 104400 -6246.7482 -6253.2247 6.4764802 3702.3568 629.27399 -10584.855 0 310.38927 -0.0005508169 -0.00057191682 + 104410 -6246.9093 -6253.075 6.1657215 3696.6403 630.59635 -10580.312 0 295.49597 -0.00031769558 -0.00033958565 + 104420 -6247.0604 -6252.9741 5.9137463 3691.647 631.28593 -10575.907 0 283.4199 -0.00016027762 -0.00018385178 + 104430 -6247.221 -6252.948 5.7269784 3688.5117 631.03764 -10572.497 0 274.46894 -0.00012765724 -0.00015146353 + 104440 -6247.4039 -6252.9931 5.5892157 3687.7159 629.84252 -10570.552 0 267.86658 -0.0002295083 -0.00025087943 + 104450 -6247.6025 -6253.0934 5.4909357 3689.0078 627.98514 -10570.086 0 263.15645 -0.00043460646 -0.00045204168 + 104460 -6247.7977 -6253.2255 5.4278627 3691.5761 625.93473 -10570.736 0 260.13364 -0.00068368262 -0.00069834549 + 104470 -6247.9769 -6253.3555 5.3786467 3694.3922 624.18385 -10571.932 0 257.77493 -0.00091060752 -0.00092560342 + 104480 -6248.146 -6253.4458 5.2998462 3696.5625 623.10281 -10573.111 0 253.99837 -0.0010627653 -0.0010810093 + 104490 -6248.3248 -6253.476 5.1512462 3697.5696 622.85859 -10573.904 0 246.87662 -0.0011135339 -0.0011360724 + 104500 -6248.5343 -6253.4586 4.9243393 3697.3541 623.40929 -10574.222 0 236.00197 -0.0010648411 -0.001090597 + 104510 -6248.7862 -6253.4337 4.6474971 3696.2524 624.55335 -10574.239 0 222.73414 -0.00094169175 -0.00096832135 + 104520 -6249.0794 -6253.4498 4.3703535 3694.831 626.00253 -10574.283 0 209.45186 -0.00078197744 -0.00080712402 + 104530 -6249.4028 -6253.5445 4.1416778 3693.6782 627.45569 -10574.678 0 198.49244 -0.00062505093 -0.00064737661 + 104540 -6249.741 -6253.7302 3.989261 3693.226 628.66205 -10575.618 0 191.18777 -0.00050218692 -0.00052169766 + 104550 -6250.08 -6253.9908 3.9107954 3693.6523 629.46572 -10577.109 0 187.42726 -0.00043091966 -0.00044856204 + 104560 -6250.4087 -6254.2918 3.8830628 3694.8713 629.82243 -10578.985 0 186.09816 -0.00041385025 -0.00043093591 + 104570 -6250.7167 -6254.596 3.8793162 3696.5958 629.78466 -10580.976 0 185.9186 -0.00044155736 -0.00045943901 + 104580 -6250.9961 -6254.8702 3.874055 3698.4434 629.46259 -10582.776 0 185.66645 -0.0004983641 -0.00051808401 + 104590 -6251.2467 -6255.0806 3.833866 3700.0483 628.97833 -10584.107 0 183.74037 -0.00056853012 -0.000590077 + 104600 -6251.475 -6255.1944 3.7193622 3701.1352 628.43099 -10584.761 0 178.25271 -0.00063999501 -0.00066169503 + 104610 -6251.6853 -6255.1988 3.513466 3701.5379 627.8825 -10584.619 0 168.385 -0.00070446963 -0.00072356567 + 104620 -6251.8698 -6255.1208 3.2510884 3701.1907 627.36387 -10583.675 0 155.8104 -0.00075560695 -0.00077008814 + 104630 -6252.0102 -6255.021 3.0108061 3700.1322 626.89248 -10582.046 0 144.29472 -0.00078823945 -0.00079845809 + 104640 -6252.0921 -6254.9578 2.8657494 3698.528 626.48731 -10579.973 0 137.34279 -0.00079985495 -0.00080836504 + 104650 -6252.1167 -6254.9514 2.8346786 3696.6756 626.17234 -10577.799 0 135.8537 -0.00079269306 -0.00080231817 + 104660 -6252.1017 -6254.9768 2.875128 3694.9537 625.96735 -10575.898 0 137.79227 -0.00077396737 -0.00078569203 + 104670 -6252.0681 -6254.9909 2.9228001 3693.7201 625.8756 -10574.587 0 140.07698 -0.00075327134 -0.00076567435 + 104680 -6252.0239 -6254.9685 2.9446106 3693.2039 625.87955 -10574.052 0 141.12226 -0.00073852022 -0.00074919675 + 104690 -6251.9569 -6254.9211 2.9642473 3693.4465 625.94986 -10574.318 0 142.06336 -0.00073295614 -0.00074081251 + 104700 -6251.8413 -6254.8809 3.0395686 3694.3184 626.06245 -10575.262 0 145.67318 -0.00073502013 -0.00074157433 + 104710 -6251.6571 -6254.8641 3.2070705 3695.5938 626.21235 -10576.67 0 153.70081 -0.00074075166 -0.00074919814 + 104720 -6251.4066 -6254.8456 3.4389984 3697.03 626.41563 -10578.291 0 164.8161 -0.00074633881 -0.00075891153 + 104730 -6251.1152 -6254.772 3.6568029 3698.4006 626.69813 -10579.871 0 175.25451 -0.00074838331 -0.00076424186 + 104740 -6250.8119 -6254.6113 3.7993833 3699.4841 627.07833 -10581.174 0 182.08777 -0.00074193772 -0.00075774601 + 104750 -6250.5041 -6254.3923 3.8882142 3700.0631 627.55419 -10582.01 0 186.34504 -0.00071936003 -0.00073249033 + 104760 -6250.1719 -6254.1938 4.0219512 3699.9867 628.10019 -10582.281 0 192.75447 -0.00067319421 -0.00068485811 + 104770 -6249.7915 -6254.0827 4.2911738 3699.2795 628.67238 -10582.035 0 205.65713 -0.00060263079 -0.00061780764 + 104780 -6249.3715 -6254.0539 4.6823743 3698.2058 629.21356 -10581.473 0 224.40565 -0.00051866685 -0.00054228541 + 104790 -6248.9644 -6254.0284 5.0640526 3697.1979 629.65452 -10580.881 0 242.69782 -0.00044242765 -0.00047482474 + 104800 -6248.6348 -6253.9163 5.2814854 3696.6547 629.91681 -10580.488 0 253.11842 -0.00039591366 -0.00043172374 + 104810 -6248.4109 -6253.6929 5.2820251 3696.7316 629.92829 -10580.353 0 253.14428 -0.00039095663 -0.00042272764 + 104820 -6248.263 -6253.4215 5.158489 3697.2663 629.65249 -10580.34 0 247.22374 -0.00042402501 -0.00044756975 + 104830 -6248.1289 -6253.2055 5.0766191 3697.8873 629.11473 -10580.207 0 243.30007 -0.00047979606 -0.00049687784 + 104840 -6247.959 -6253.1159 5.1568955 3698.2216 628.40236 -10579.74 0 247.14737 -0.00054003027 -0.00055657722 + 104850 -6247.7448 -6253.1499 5.4051338 3698.0688 627.63394 -10578.853 0 259.04434 -0.00059175938 -0.00061344198 + 104860 -6247.5158 -6253.2436 5.727788 3697.4568 626.91678 -10577.617 0 274.50774 -0.00063067871 -0.00065916388 + 104870 -6247.3146 -6253.3173 6.00272 3696.5812 626.32048 -10576.219 0 287.68403 -0.00065906685 -0.00069119793 + 104880 -6247.1665 -6253.3205 6.1540422 3695.6866 625.8792 -10574.886 0 294.93623 -0.00068039737 -0.00071049729 + 104890 -6247.0629 -6253.2526 6.1897126 3694.9633 625.61369 -10573.83 0 296.64576 -0.00069439051 -0.00071810191 + 104900 -6246.9678 -6253.1501 6.1822554 3694.5143 625.55214 -10573.217 0 296.28837 -0.00069592948 -0.0007130796 + 104910 -6246.8438 -6253.0488 6.2050086 3694.3943 625.73163 -10573.175 0 297.37883 -0.00067869016 -0.00069316038 + 104920 -6246.68 -6252.9514 6.2713312 3694.6677 626.17594 -10573.795 0 300.55738 -0.00064080257 -0.00065743603 + 104930 -6246.4982 -6252.8302 6.3320629 3695.4105 626.86268 -10575.103 0 303.46798 -0.0005879258 -0.00060894507 + 104940 -6246.3304 -6252.672 6.341599 3696.6377 627.70565 -10577.015 0 303.92501 -0.00053074482 -0.00055476834 + 104950 -6246.188 -6252.5186 6.3305562 3698.2179 628.57307 -10579.31 0 303.39577 -0.00047848965 -0.0005028827 + 104960 -6246.0539 -6252.456 6.4020596 3699.8682 629.3388 -10581.663 0 306.82262 -0.00043374843 -0.00045770373 + 104970 -6245.9049 -6252.5475 6.6426096 3701.2496 629.93597 -10583.733 0 318.35112 -0.00039263635 -0.00041774749 + 104980 -6245.7396 -6252.7725 7.0328077 3702.093 630.37596 -10585.241 0 337.05161 -0.00034943236 -0.00037743874 + 104990 -6245.5834 -6253.0299 7.4464782 3702.2756 630.71812 -10586.024 0 356.87702 -0.00030152075 -0.00033196397 + 105000 -6245.4653 -6253.2033 7.7380667 3701.8271 631.00824 -10586.039 0 370.85158 -0.00025176283 -0.00028216598 + 105010 -6245.3924 -6253.2315 7.8390823 3700.9024 631.22369 -10585.358 0 375.69281 -0.00020861119 -0.00023704269 + 105020 -6245.3456 -6253.1312 7.7855531 3699.7522 631.26095 -10584.144 0 373.12739 -0.00018536294 -0.00021289243 + 105030 -6245.3008 -6252.9612 7.6603413 3698.6874 630.97922 -10582.628 0 367.12654 -0.00019831135 -0.00022881597 + 105040 -6245.2586 -6252.7622 7.5036652 3698.0076 630.28184 -10581.052 0 359.61774 -0.00026179149 -0.00029870796 + 105050 -6245.2504 -6252.53 7.2795355 3697.8747 629.192 -10579.597 0 348.87619 -0.00037911128 -0.00042172366 + 105060 -6245.3101 -6252.2541 6.9439537 3698.1731 627.87816 -10578.305 0 332.79322 -0.00053293567 -0.00057609266 + 105070 -6245.4337 -6251.9813 6.5475144 3698.4749 626.61303 -10577.069 0 313.79363 -0.00068357239 -0.00072190538 + 105080 -6245.5777 -6251.8143 6.2365689 3698.2203 625.6874 -10575.722 0 298.89137 -0.00078198725 -0.00081445581 + 105090 -6245.7042 -6251.8285 6.1243316 3697.0593 625.31654 -10574.204 0 293.51233 -0.00079311596 -0.00082264465 + 105100 -6245.8184 -6252.0057 6.1872039 3695.1129 625.56859 -10572.687 0 296.52553 -0.00071365135 -0.00074264016 + 105110 -6245.9531 -6252.2722 6.3191099 3692.9552 626.33503 -10571.562 0 302.8472 -0.00057204401 -0.00059974652 + 105120 -6246.1254 -6252.5815 6.4560682 3691.3673 627.35928 -10571.308 0 309.41101 -0.00041436537 -0.00043889876 + 105130 -6246.3263 -6252.933 6.6067601 3691.0516 628.32118 -10572.306 0 316.63301 -0.00028812292 -0.00030961157 + 105140 -6246.5446 -6253.3237 6.7790442 3692.4201 628.94729 -10574.691 0 324.88983 -0.00023021993 -0.00025106938 + 105150 -6246.7904 -6253.7055 6.9150364 3695.4657 629.10506 -10578.276 0 331.40735 -0.00025794376 -0.00028039066 + 105160 -6247.0898 -6253.9973 6.9074317 3699.7155 628.8486 -10582.561 0 331.04288 -0.00036241201 -0.00038624653 + 105170 -6247.4583 -6254.134 6.6756477 3704.2966 628.39834 -10586.829 0 319.93449 -0.00050800506 -0.00053071023 + 105180 -6247.8783 -6254.1111 6.2327678 3708.137 628.05633 -10590.304 0 298.7092 -0.00064176697 -0.00066093913 + 105190 -6248.3026 -6253.9881 5.6854463 3710.2747 628.08531 -10592.348 0 272.47849 -0.00071197773 -0.00072783349 + 105200 -6248.6832 -6253.8482 5.16502 3710.1775 628.60101 -10592.627 0 247.53674 -0.0006887005 -0.00070433815 + 105210 -6248.9992 -6253.7489 4.7497379 3707.9388 629.52206 -10591.21 0 227.63409 -0.00057633592 -0.00059549543 + 105220 -6249.2613 -6253.7045 4.4432331 3704.2481 630.59507 -10588.548 0 212.94466 -0.00041186669 -0.00043625702 + 105230 -6249.4935 -6253.7071 4.2135385 3700.1443 631.4805 -10585.332 0 201.93641 -0.00025020178 -0.00027860889 + 105240 -6249.7132 -6253.7537 4.0405463 3696.6686 631.86551 -10582.288 0 193.64565 -0.00014417276 -0.00017361601 + 105250 -6249.9232 -6253.8526 3.929418 3694.5611 631.56343 -10579.977 0 188.31976 -0.00012755341 -0.000155126 + 105260 -6250.1161 -6254.0117 3.8955972 3694.0954 630.56731 -10578.674 0 186.69888 -0.00020623571 -0.00023040487 + 105270 -6250.2795 -6254.227 3.9474567 3695.0746 629.04475 -10578.346 0 189.18428 -0.0003589753 -0.00038004762 + 105280 -6250.4028 -6254.4786 4.0757899 3696.9656 627.2844 -10578.729 0 195.33472 -0.0005463708 -0.00056619512 + 105290 -6250.4824 -6254.7292 4.2467553 3699.1104 625.61826 -10579.458 0 203.52834 -0.00072438282 -0.00074532896 + 105300 -6250.5261 -6254.9298 4.4036513 3700.9316 624.34426 -10580.206 0 211.04768 -0.00085710336 -0.00088068367 + 105310 -6250.5488 -6255.036 4.4872939 3702.0614 623.6651 -10580.763 0 215.0563 -0.00092421904 -0.0009502011 + 105320 -6250.5628 -6255.0307 4.4678498 3702.3709 623.65398 -10581.056 0 214.12443 -0.0009217872 -0.00094845384 + 105330 -6250.5704 -6254.9342 4.3638047 3701.9312 624.25448 -10581.12 0 209.13801 -0.00085832918 -0.0008836545 + 105340 -6250.563 -6254.7932 4.2301499 3700.9532 625.31462 -10581.061 0 202.73252 -0.00074961291 -0.00077239971 + 105350 -6250.5287 -6254.6515 4.1227604 3699.7379 626.64186 -10581.031 0 197.58581 -0.00061455124 -0.00063469191 + 105360 -6250.4587 -6254.5264 4.0676336 3698.6321 628.05475 -10581.213 0 194.94382 -0.00047262851 -0.00049052789 + 105370 -6250.3474 -6254.4086 4.0612054 3697.9755 629.40946 -10581.793 0 194.63575 -0.00034198909 -0.00035801724 + 105380 -6250.1856 -6254.2835 4.0979713 3698.037 630.59628 -10582.917 0 196.39778 -0.0002377745 -0.00025246094 + 105390 -6249.9567 -6254.1501 4.1934307 3698.9642 631.52016 -10584.635 0 200.97273 -0.0001713185 -0.00018595223 + 105400 -6249.6418 -6254.0188 4.3769989 3700.7578 632.0871 -10586.864 0 209.77035 -0.00015044047 -0.0001670392 + 105410 -6249.2304 -6253.8938 4.6633734 3703.261 632.21243 -10589.367 0 223.49502 -0.00017945699 -0.00019960975 + 105420 -6248.7294 -6253.7638 5.0344355 3706.1422 631.85258 -10591.759 0 241.27839 -0.0002569264 -0.00028030642 + 105430 -6248.161 -6253.6152 5.4541818 3708.8735 631.0465 -10593.535 0 261.39499 -0.0003710941 -0.00039520454 + 105440 -6247.5512 -6253.4571 5.9059019 3710.7553 629.94057 -10594.153 0 283.04396 -0.00049643837 -0.00051849716 + 105450 -6246.917 -6253.3272 6.4102193 3711.0527 628.77025 -10593.15 0 307.21368 -0.00059666678 -0.00061658093 + 105460 -6246.272 -6253.2571 6.9850828 3709.2573 627.79179 -10590.306 0 334.76436 -0.00063698376 -0.00065853218 + 105470 -6245.6504 -6253.2193 7.5688845 3705.3708 627.19168 -10585.782 0 362.74341 -0.00060090246 -0.00062905132 + 105480 -6245.1156 -6253.1186 8.0030055 3700.0246 627.02288 -10580.166 0 383.54893 -0.00050004598 -0.00053641327 + 105490 -6244.7263 -6252.8619 8.1355404 3694.3232 627.20051 -10574.386 0 389.90074 -0.00036875138 -0.0004101079 + 105500 -6244.4898 -6252.446 7.9561666 3689.4945 627.5522 -10569.493 0 381.30414 -0.00024809534 -0.00028966229 + 105510 -6244.3591 -6251.9724 7.6132847 3686.5483 627.89076 -10566.411 0 364.87132 -0.0001713823 -0.00021106589 + 105520 -6244.2767 -6251.5769 7.3002833 3686.0688 628.07586 -10565.722 0 349.87054 -0.00015723121 -0.00019630774 + 105530 -6244.2154 -6251.3506 7.1352151 3688.131 628.04794 -10567.53 0 341.95955 -0.00020762272 -0.00024790156 + 105540 -6244.1824 -6251.3157 7.1333193 3692.2982 627.83746 -10571.451 0 341.86869 -0.0003074189 -0.00034845358 + 105550 -6244.1932 -6251.4512 7.2580298 3697.7056 627.55814 -10576.715 0 347.84551 -0.00042638404 -0.00046547598 + 105560 -6244.2493 -6251.7231 7.4738206 3703.2554 627.38226 -10582.361 0 358.18742 -0.00052664114 -0.00056114919 + 105570 -6244.3369 -6252.0924 7.7554776 3707.8946 627.48908 -10587.476 0 371.686 -0.00057492672 -0.00060447343 + 105580 -6244.4407 -6252.5109 8.0702257 3710.8766 627.99186 -10591.379 0 386.7705 -0.00055408161 -0.00058099411 + 105590 -6244.5588 -6252.9218 8.3630622 3711.9117 628.87866 -10593.712 0 400.80487 -0.0004678262 -0.00049574935 + 105600 -6244.7095 -6253.2614 8.551898 3711.1704 630.00908 -10594.441 0 409.85493 -0.00033736957 -0.00036878503 + 105610 -6244.9256 -6253.4641 8.5384161 3709.1631 631.17409 -10593.801 0 409.20881 -0.00019269943 -0.00022664926 + 105620 -6245.2325 -6253.484 8.2515053 3706.5422 632.17786 -10592.204 0 395.45843 -6.2560949e-05 -9.4442797e-05 + 105630 -6245.6196 -6253.3312 7.7116692 3703.9041 632.88749 -10590.123 0 369.58646 3.3143978e-05 8.6921565e-06 + 105640 -6246.0328 -6253.0907 7.0579152 3701.6754 633.22935 -10587.995 0 338.2549 8.5282678e-05 7.0018e-05 + 105650 -6246.4024 -6252.8881 6.4856085 3700.1198 633.15491 -10586.163 0 310.82675 9.0927595e-05 8.0831213e-05 + 105660 -6246.6895 -6252.8132 6.1236758 3699.4132 632.61929 -10584.846 0 293.4809 4.6523021e-05 3.4255806e-05 + 105670 -6246.9102 -6252.8644 5.9542461 3699.674 631.59924 -10584.138 0 285.36088 -5.3727402e-05 -7.3415513e-05 + 105680 -6247.1163 -6252.9674 5.8510451 3700.8851 630.14225 -10583.995 0 280.41491 -0.00021053821 -0.00023706509 + 105690 -6247.3499 -6253.0498 5.6998968 3702.7718 628.41072 -10584.232 0 273.17104 -0.00040843918 -0.00043644708 + 105700 -6247.6113 -6253.101 5.4896648 3704.7705 626.6825 -10584.554 0 263.09554 -0.00061121071 -0.00063517158 + 105710 -6247.8659 -6253.1672 5.301363 3706.1683 625.29204 -10584.628 0 254.07106 -0.00077012656 -0.00078840815 + 105720 -6248.0765 -6253.2979 5.2213245 3706.3685 624.53093 -10584.197 0 250.23517 -0.00084187749 -0.00085717793 + 105730 -6248.2334 -6253.4966 5.2631848 3705.1479 624.54955 -10583.194 0 252.24135 -0.00080636258 -0.00082275757 + 105740 -6248.3565 -6253.7211 5.364644 3702.7724 625.30267 -10581.796 0 257.10384 -0.00067491059 -0.00069445731 + 105750 -6248.4735 -6253.9281 5.4546034 3699.9161 626.56158 -10580.406 0 261.4152 -0.00048557911 -0.00050745042 + 105760 -6248.594 -6254.1152 5.5212475 3697.4355 627.98887 -10579.54 0 264.60916 -0.0002893391 -0.00031188962 + 105770 -6248.7059 -6254.3146 5.608705 3696.1111 629.24811 -10579.674 0 268.80062 -0.0001344445 -0.00015769787 + 105780 -6248.7973 -6254.5372 5.7399115 3696.4458 630.10821 -10581.091 0 275.08877 -5.4472654e-05 -8.0097645e-05 + 105790 -6248.8799 -6254.725 5.8450947 3698.5456 630.50494 -10583.776 0 280.12974 -6.131843e-05 -8.9878785e-05 + 105800 -6248.9849 -6254.7688 5.7838593 3702.0689 630.53904 -10587.377 0 277.19499 -0.0001424417 -0.00017095805 + 105810 -6249.1308 -6254.5923 5.4614615 3706.2618 630.415 -10591.269 0 261.74388 -0.00026324168 -0.00028631234 + 105820 -6249.2948 -6254.2295 4.9346342 3710.1285 630.34707 -10594.705 0 236.49536 -0.00037701059 -0.00039116404 + 105830 -6249.4229 -6253.8199 4.3969554 3712.7368 630.46953 -10597.026 0 210.72677 -0.00044205267 -0.00044925598 + 105840 -6249.4716 -6253.5209 4.0493042 3713.5442 630.78433 -10597.849 0 194.06538 -0.00043913148 -0.00044579715 + 105850 -6249.4417 -6253.4137 3.9719547 3712.5705 631.16313 -10597.147 0 190.35836 -0.00037923125 -0.00039134673 + 105860 -6249.3735 -6253.4754 4.1018711 3710.3154 631.40185 -10595.193 0 196.58468 -0.00029640014 -0.00031493032 + 105870 -6249.3106 -6253.6268 4.3162623 3707.4853 631.30685 -10592.419 0 206.85951 -0.000229678 -0.00024996452 + 105880 -6249.2602 -6253.8041 4.5438983 3704.6916 630.77726 -10589.273 0 217.7691 -0.00020446078 -0.00022003054 + 105890 -6249.1791 -6253.997 4.8179846 3702.285 629.84781 -10586.13 0 230.90486 -0.00022327265 -0.00023116206 + 105900 -6248.9931 -6254.2238 5.2307288 3700.3843 628.6772 -10583.285 0 250.68587 -0.00026979972 -0.00027329391 + 105910 -6248.6434 -6254.4657 5.8223825 3699.036 627.49357 -10580.995 0 279.04124 -0.00032195634 -0.00032835226 + 105920 -6248.1268 -6254.6244 6.4976076 3698.3555 626.52404 -10579.504 0 311.40182 -0.00036469567 -0.00037952363 + 105930 -6247.5034 -6254.5593 7.0558658 3698.5264 625.93327 -10579.019 0 338.15668 -0.00039470448 -0.00041708074 + 105940 -6246.856 -6254.1902 7.3342194 3699.6608 625.78767 -10579.639 0 351.49694 -0.00041579435 -0.00043924366 + 105950 -6246.2299 -6253.5801 7.3501515 3701.6509 626.05579 -10581.287 0 352.2605 -0.00043056922 -0.00044922012 + 105960 -6245.6074 -6252.9112 7.3037938 3704.1481 626.64614 -10583.705 0 350.03878 -0.00043575465 -0.00045056211 + 105970 -6244.9489 -6252.3598 7.4108653 3706.6876 627.4668 -10586.514 0 355.17025 -0.00042401794 -0.00044275721 + 105980 -6244.2644 -6251.9689 7.7044822 3708.8398 628.47532 -10589.284 0 369.24202 -0.00038837396 -0.00041842827 + 105990 -6243.6388 -6251.6362 7.9974393 3710.265 629.68787 -10591.589 0 383.28216 -0.00032316112 -0.00036327399 + 106000 -6243.172 -6251.2389 8.0668944 3710.668 631.13694 -10593.044 0 386.61084 -0.00022071123 -0.0002600628 + 106010 -6242.8822 -6250.7903 7.9080907 3709.789 632.79657 -10593.376 0 379.00008 -7.0648643e-05 -9.7674408e-05 + 106020 -6242.6742 -6250.4745 7.8003096 3707.5604 634.51519 -10592.55 0 373.8346 0.0001299275 0.0001163217 + 106030 -6242.4198 -6250.5026 8.0827997 3704.3799 635.99738 -10590.88 0 387.37311 0.00035792065 0.00034583245 + 106040 -6242.0802 -6250.9161 8.8359574 3701.2383 636.85749 -10589.012 0 423.46866 0.00055440748 0.00052853064 + 106050 -6241.7557 -6251.5296 9.773879 3699.4493 636.74136 -10587.72 0 468.41912 0.00064056138 0.00059556731 + 106060 -6241.6134 -6252.0609 10.447432 3700.0236 635.48109 -10587.566 0 500.69959 0.00055687619 0.0005026504 + 106070 -6241.755 -6252.3278 10.572809 3703.0556 633.21626 -10588.6 0 506.70835 0.00030177692 0.00025604356 + 106080 -6242.1381 -6252.3488 10.21068 3707.5424 630.40802 -10590.299 0 489.3531 -5.7351788e-05 -8.2660491e-05 + 106090 -6242.6187 -6252.2822 9.6634815 3711.7938 627.71835 -10591.794 0 463.12826 -0.00040993809 -0.00041725446 + 106100 -6243.0699 -6252.2687 9.1988579 3714.2107 625.79639 -10592.276 0 440.86088 -0.00065012749 -0.00065308763 + 106110 -6243.4676 -6252.317 8.8494246 3713.9782 625.05872 -10591.354 0 424.11408 -0.00071964063 -0.00073160721 + 106120 -6243.8742 -6252.3283 8.454025 3711.312 625.55251 -10589.193 0 405.16432 -0.00062428698 -0.0006485999 + 106130 -6244.3517 -6252.2243 7.8725203 3707.2093 626.95937 -10586.393 0 377.29535 -0.00042051584 -0.00044998713 + 106140 -6244.8938 -6252.0498 7.1559694 3702.9476 628.73746 -10583.735 0 342.9542 -0.00018487227 -0.00020941108 + 106150 -6245.4315 -6251.9575 6.5259804 3699.6337 630.33268 -10581.924 0 312.7616 1.5363645e-05 3.8658701e-07 + 106160 -6245.8912 -6252.0965 6.2053237 3697.9711 631.35997 -10581.428 0 297.39393 0.0001384058 0.00012952247 + 106170 -6246.2473 -6252.4963 6.2490407 3698.2319 631.68732 -10582.416 0 299.4891 0.00016990917 0.00015962339 + 106180 -6246.5343 -6253.0354 6.501128 3700.318 631.41497 -10584.768 0 311.57053 0.00011715998 0.00010065212 + 106190 -6246.8118 -6253.5221 6.7102903 3703.8113 630.78646 -10588.12 0 321.59476 2.9921365e-06 -1.8338985e-05 + 106200 -6247.1099 -6253.8301 6.7201481 3708.0142 630.08193 -10591.926 0 322.0672 -0.00013841431 -0.00015961053 + 106210 -6247.4024 -6253.9743 6.5718746 3712.0597 629.53597 -10595.57 0 314.96111 -0.00026756278 -0.00028621375 + 106220 -6247.6357 -6254.0592 6.4234756 3715.1322 629.29919 -10598.491 0 307.84899 -0.00035031652 -0.00036980307 + 106230 -6247.7875 -6254.1523 6.364755 3716.7122 629.4353 -10600.3 0 305.03477 -0.00036927029 -0.00039553674 + 106240 -6247.8962 -6254.2063 6.3101173 3716.692 629.93218 -10600.83 0 302.41622 -0.00032791162 -0.00036264958 + 106250 -6248.0301 -6254.1088 6.0786861 3715.2891 630.71186 -10600.11 0 291.32474 -0.00024382673 -0.00028089977 + 106260 -6248.2215 -6253.813 5.5915458 3712.8484 631.63915 -10598.301 0 267.97825 -0.00013620945 -0.00016556568 + 106270 -6248.4292 -6253.4203 4.99104 3709.7174 632.53665 -10595.674 0 239.19864 -1.8552261e-05 -3.464108e-05 + 106280 -6248.5706 -6253.122 4.551388 3706.2992 633.20916 -10592.63 0 218.12805 9.7126384e-05 9.0313247e-05 + 106290 -6248.5924 -6253.0538 4.4613998 3703.1828 633.4719 -10589.708 0 213.81531 0.00019029944 0.00018242178 + 106300 -6248.5136 -6253.2035 4.6899081 3701.1372 633.17903 -10587.52 0 224.76671 0.00022929592 0.00021197929 + 106310 -6248.4063 -6253.4519 5.0455403 3700.8715 632.25766 -10586.581 0 241.8106 0.00018286998 0.00015570163 + 106320 -6248.3383 -6253.6862 5.3478771 3702.6843 630.75041 -10587.121 0 256.30028 3.9446404e-05 9.2373292e-06 + 106330 -6248.327 -6253.8789 5.5518789 3706.2314 628.85033 -10588.961 0 266.07719 -0.00017955561 -0.00020466277 + 106340 -6248.336 -6254.0763 5.7403048 3710.5658 626.89819 -10591.54 0 275.10762 -0.00042171683 -0.00043827112 + 106350 -6248.3112 -6254.321 6.0097522 3714.447 625.32265 -10594.091 0 288.02104 -0.00062050102 -0.00063152026 + 106360 -6248.2279 -6254.5761 6.3481564 3716.7725 624.5301 -10595.879 0 304.23927 -0.00071863878 -0.00073025009 + 106370 -6248.1102 -6254.72 6.6097617 3716.9359 624.77689 -10596.433 0 316.77687 -0.00068717977 -0.00070330643 + 106380 -6248.0053 -6254.6259 6.6205126 3714.9712 626.07231 -10595.669 0 317.29211 -0.00053271735 -0.0005525991 + 106390 -6247.9372 -6254.2629 6.3256949 3711.4784 628.15869 -10593.9 0 303.16279 -0.00029225003 -0.00031275977 + 106400 -6247.887 -6253.7271 5.8400382 3707.4269 630.58558 -10591.74 0 279.8874 -2.0948985e-05 -4.0759797e-05 + 106410 -6247.8188 -6253.1757 5.3568882 3703.9215 632.84768 -10589.945 0 256.73214 0.00022152884 0.0002005189 + 106420 -6247.7181 -6252.7329 5.0148586 3701.9492 634.52576 -10589.208 0 240.34016 0.00038399803 0.00035920204 + 106430 -6247.6026 -6252.4461 4.8434274 3702.1213 635.37847 -10589.946 0 232.12422 0.00043548285 0.00040716336 + 106440 -6247.4996 -6252.3128 4.813198 3704.4745 635.3664 -10592.154 0 230.67545 0.00037355366 0.00034570028 + 106450 -6247.4115 -6252.336 4.9245263 3708.4274 634.61879 -10595.382 0 236.01093 0.00022536139 0.00020283449 + 106460 -6247.2999 -6252.547 5.247118 3712.9435 633.36872 -10598.859 0 251.47134 3.8775398e-05 2.2897962e-05 + 106470 -6247.1038 -6252.9709 5.8671036 3716.858 631.88573 -10601.715 0 281.18453 -0.00013439219 -0.00014806434 + 106480 -6246.7822 -6253.5595 6.777355 3719.2415 630.42606 -10603.227 0 324.80888 -0.00025588122 -0.00027528015 + 106490 -6246.3522 -6254.1573 7.8051144 3719.645 629.20471 -10603.007 0 374.06488 -0.00031058141 -0.0003415229 + 106500 -6245.8915 -6254.5465 8.6550483 3718.1327 628.38083 -10601.06 0 414.79848 -0.00030405667 -0.00034540904 + 106510 -6245.4926 -6254.5546 9.061939 3715.1257 628.04677 -10597.727 0 434.29896 -0.0002512097 -0.00029485256 + 106520 -6245.1991 -6254.1529 8.9537697 3711.1852 628.21876 -10593.557 0 429.11488 -0.00016465274 -0.00020085227 + 106530 -6244.9766 -6253.4719 8.4952616 3706.8827 628.8344 -10589.189 0 407.1406 -5.1208679e-05 -7.546526e-05 + 106540 -6244.7474 -6252.7119 7.9644425 3702.8203 629.76034 -10585.292 0 381.70077 8.1397156e-05 6.5759609e-05 + 106550 -6244.4548 -6252.0206 7.565819 3699.7035 630.80697 -10582.531 0 362.5965 0.0002145433 0.00020018155 + 106560 -6244.0942 -6251.4429 7.3486651 3698.3017 631.74536 -10581.49 0 352.18926 0.00031614347 0.00029798441 + 106570 -6243.6891 -6250.9741 7.285023 3699.2291 632.33431 -10582.538 0 349.13918 0.00035035956 0.00032849183 + 106580 -6243.2451 -6250.6402 7.3950729 3702.6624 632.37353 -10585.676 0 354.41339 0.00029422137 0.00027161477 + 106590 -6242.7311 -6250.5118 7.7806598 3708.1692 631.78419 -10590.465 0 372.89287 0.00015105522 0.00012939161 + 106600 -6242.101 -6250.6433 8.5423111 3714.7329 630.68757 -10596.064 0 409.39548 -4.5798866e-05 -6.8039261e-05 + 106610 -6241.3382 -6250.9995 9.6612979 3720.9518 629.43306 -10601.384 0 463.0236 -0.00023928638 -0.00026519359 + 106620 -6240.4927 -6251.4388 10.946113 3725.3477 628.53536 -10605.322 0 524.59916 -0.00036205879 -0.0003929838 + 106630 -6239.6779 -6251.775 12.097049 3726.7248 628.51324 -10607.013 0 579.75848 -0.00035425518 -0.00038802163 + 106640 -6239.0186 -6251.8774 12.858838 3724.5168 629.6743 -10606.069 0 616.26765 -0.00018338687 -0.00021603897 + 106650 -6238.5907 -6251.7342 13.143592 3719.045 631.94106 -10602.72 0 629.91466 0.00013771158 0.00010801178 + 106660 -6238.4096 -6251.4259 13.016284 3711.5815 634.81821 -10597.826 0 623.81336 0.00054301914 0.00051405772 + 106670 -6238.4651 -6251.0482 12.583096 3704.1082 637.53541 -10592.692 0 603.05256 0.00092545588 0.00089313193 + 106680 -6238.7459 -6250.6713 11.925396 3698.7448 639.3075 -10588.724 0 571.53187 0.001170943 0.0011327765 + 106690 -6239.2326 -6250.3506 11.118069 3697.0267 639.6023 -10586.98 0 532.84023 0.0012006697 0.0011571297 + 106700 -6239.8884 -6250.1355 10.247173 3699.3675 638.31393 -10587.817 0 491.10203 0.001000331 0.00095415027 + 106710 -6240.6644 -6250.0578 9.3933661 3704.9429 635.78166 -10590.782 0 450.18281 0.00062405619 0.00057924139 + 106720 -6241.5052 -6250.1313 8.6260686 3712.0078 632.65684 -10594.796 0 413.40961 0.00017469118 0.00013533321 + 106730 -6242.3503 -6250.3706 8.0202473 3718.4861 629.68233 -10598.539 0 384.37525 -0.0002299485 -0.00026148513 + 106740 -6243.1426 -6250.8013 7.6587172 3722.6133 627.47598 -10600.891 0 367.0487 -0.00049271955 -0.00051743934 + 106750 -6243.8438 -6251.4393 7.59547 3723.4362 626.38635 -10601.262 0 364.01754 -0.00056378534 -0.00058602432 + 106760 -6244.4499 -6252.2477 7.7977958 3721.0412 626.44331 -10599.732 0 373.71413 -0.00045153077 -0.00047651653 + 106770 -6244.992 -6253.1127 8.1207056 3716.4555 627.39374 -10596.962 0 389.18978 -0.00021543493 -0.00024571728 + 106780 -6245.5147 -6253.8731 8.3583739 3711.254 628.80426 -10593.931 0 400.58017 5.7061373e-05 2.3480888e-05 + 106790 -6246.0433 -6254.3907 8.3473343 3707.014 630.20787 -10591.612 0 400.0511 0.00028164674 0.000249727 + 106800 -6246.5651 -6254.6028 8.0377151 3704.8394 631.25463 -10590.697 0 385.21241 0.00040362367 0.00037761343 + 106810 -6247.0412 -6254.5232 7.4819878 3705.1213 631.81055 -10591.455 0 358.57884 0.00040964261 0.00039045664 + 106820 -6247.4342 -6254.2085 6.7742814 3707.5639 631.96168 -10593.734 0 324.66158 0.00032294945 0.00030831134 + 106830 -6247.7289 -6253.7335 6.0046089 3711.3927 631.92677 -10597.053 0 287.77455 0.00018796704 0.00017449643 + 106840 -6247.9346 -6253.188 5.2533429 3715.6312 631.92887 -10600.748 0 251.76967 5.2364827e-05 3.7716341e-05 + 106850 -6248.0748 -6252.6814 4.6066662 3719.3586 632.09127 -10604.131 0 220.77729 -4.7009748e-05 -6.3240036e-05 + 106860 -6248.1724 -6252.3373 4.1648671 3721.8913 632.40039 -10606.629 0 199.6038 -9.1185249e-05 -0.00010801108 + 106870 -6248.2398 -6252.2671 4.0273169 3722.8735 632.73872 -10607.879 0 193.01162 -7.9169409e-05 -9.5604776e-05 + 106880 -6248.2767 -6252.5287 4.251958 3722.287 632.95912 -10607.775 0 203.77768 -2.3447046e-05 -3.9595387e-05 + 106890 -6248.2796 -6253.0862 4.8065979 3720.4064 632.95958 -10606.452 0 230.35914 5.6265023e-05 3.9370724e-05 + 106900 -6248.2545 -6253.8035 5.5489891 3717.7148 632.72371 -10604.242 0 265.93869 0.00013903687 0.00012068215 + 106910 -6248.2199 -6254.4865 6.2665904 3714.7876 632.31319 -10601.587 0 300.33017 0.00020744684 0.00018825773 + 106920 -6248.1955 -6254.9602 6.764773 3712.1716 631.82345 -10598.955 0 324.20588 0.00025014568 0.00023167577 + 106930 -6248.1875 -6255.1347 6.9471894 3710.2959 631.33246 -10596.763 0 332.94829 0.00026170281 0.0002448453 + 106940 -6248.1857 -6255.0191 6.8334306 3709.4333 630.87207 -10595.324 0 327.49634 0.00024044015 0.0002242341 + 106950 -6248.1755 -6254.6872 6.5117276 3709.6912 630.43376 -10594.812 0 312.07852 0.0001864591 0.00016854361 + 106960 -6248.1527 -6254.227 6.0743279 3711.0016 629.99896 -10595.228 0 291.11588 0.00010201019 8.0427551e-05 + 106970 -6248.1269 -6253.7099 5.5829973 3713.1029 629.57347 -10596.386 0 267.56856 -5.6615921e-06 -3.0732958e-05 + 106980 -6248.1126 -6253.1889 5.0763646 3715.5448 629.20751 -10597.941 0 243.28788 -0.0001210954 -0.00014693528 + 106990 -6248.1145 -6252.7173 4.602822 3717.7443 628.99267 -10599.454 0 220.59305 -0.00021979829 -0.00024248413 + 107000 -6248.1165 -6252.3684 4.2519569 3719.1046 629.03666 -10600.51 0 203.77763 -0.00027184275 -0.00028885388 + 107010 -6248.0812 -6252.2313 4.150104 3719.1873 629.42491 -10600.844 0 198.89627 -0.00025050253 -0.00026304615 + 107020 -6247.9683 -6252.3673 4.3990096 3717.9 630.18177 -10600.449 0 210.82522 -0.00014413481 -0.00015702671 + 107030 -6247.7613 -6252.7541 4.992758 3715.6156 631.24276 -10599.612 0 239.28098 3.4079005e-05 1.5735168e-05 + 107040 -6247.4808 -6253.276 5.7952051 3713.1157 632.44687 -10598.838 0 277.73875 0.00024556356 0.00022051278 + 107050 -6247.1661 -6253.7838 6.6177456 3711.3321 633.55875 -10598.675 0 317.1595 0.00043787253 0.00040980321 + 107060 -6246.842 -6254.1743 7.3322926 3710.9978 634.32752 -10599.5 0 351.4046 0.00056324403 0.00053756741 + 107070 -6246.5023 -6254.4152 7.9128383 3712.382 634.57158 -10601.369 0 379.22761 0.00059448278 0.00057370166 + 107080 -6246.1281 -6254.5028 8.3746538 3715.2209 634.25512 -10603.979 0 401.3604 0.00053132035 0.00051315869 + 107090 -6245.722 -6254.4045 8.6824794 3718.828 633.51469 -10606.747 0 416.11313 0.00039713984 0.00037693672 + 107100 -6245.3248 -6254.048 8.7232325 3722.3019 632.6169 -10608.967 0 418.06625 0.00023041132 0.00020559708 + 107110 -6244.9942 -6253.3752 8.3810426 3724.7446 631.86394 -10609.984 0 401.66659 7.5276738e-05 4.8027792e-05 + 107120 -6244.7598 -6252.4264 7.6665745 3725.4491 631.48872 -10609.364 0 367.42527 -2.6950903e-05 -5.148414e-05 + 107130 -6244.5927 -6251.3825 6.7898413 3724.056 631.58139 -10607.02 0 325.40729 -4.6435328e-05 -6.5170465e-05 + 107140 -6244.4223 -6250.5095 6.0872637 3720.6893 632.06911 -10603.268 0 291.73583 2.5571945e-05 9.9691105e-06 + 107150 -6244.1886 -6250.0265 5.8379292 3716.0239 632.74592 -10598.796 0 279.78633 0.00016960235 0.00015032956 + 107160 -6243.8823 -6249.9986 6.1162777 3711.1894 633.33494 -10594.523 0 293.12635 0.00034002091 0.0003120057 + 107170 -6243.5405 -6250.3376 6.7971595 3707.4575 633.56402 -10591.359 0 325.75802 0.00047952331 0.00044429239 + 107180 -6243.2056 -6250.8967 7.6911316 3705.8087 633.24198 -10589.947 0 368.60218 0.00054115203 0.00050617623 + 107190 -6242.8836 -6251.5683 8.6847023 3706.5803 632.3234 -10590.472 0 416.21966 0.00050707341 0.00047974224 + 107200 -6242.5397 -6252.3065 9.7667201 3709.3786 630.94676 -10592.632 0 468.07603 0.0003943679 0.0003753295 + 107210 -6242.1448 -6253.0622 10.917411 3713.2958 629.42738 -10595.785 0 523.22361 0.0002451548 0.00022677344 + 107220 -6241.742 -6253.7006 11.958579 3717.2973 628.19045 -10599.188 0 573.12222 0.00010724732 7.931487e-05 + 107230 -6241.4684 -6253.9968 12.528449 3720.5568 627.64762 -10602.201 0 600.43355 1.6762925e-05 -2.4581005e-05 + 107240 -6241.4822 -6253.751 12.268815 3722.5884 628.05405 -10604.394 0 587.99044 -8.400543e-06 -5.6362315e-05 + 107250 -6241.8401 -6252.9496 11.109533 3723.2007 629.4089 -10605.559 0 532.43115 3.531467e-05 -6.7670925e-06 + 107260 -6242.4378 -6251.8297 9.3918912 3722.4266 631.45083 -10605.707 0 450.11213 0.00014251327 0.00011421879 + 107270 -6243.0853 -6250.7692 7.6838623 3720.5372 633.749 -10605.055 0 368.2538 0.00029812223 0.00028075895 + 107280 -6243.646 -6250.0771 6.4310372 3718.0888 635.83886 -10604.005 0 308.21139 0.00047294596 0.00045642266 + 107290 -6244.1097 -6249.8511 5.7414246 3715.8589 637.33886 -10603.049 0 275.16128 0.00062503774 0.00060139978 + 107300 -6244.5509 -6250.0041 5.453171 3714.6032 638.01333 -10602.621 0 261.34655 0.00071209295 0.0006819113 + 107310 -6245.036 -6250.406 5.3699161 3714.7419 637.78704 -10602.935 0 257.35651 0.00070923359 0.00067990751 + 107320 -6245.5652 -6251.005 5.4398926 3716.1733 636.73546 -10603.914 0 260.71017 0.00062055162 0.0005988831 + 107330 -6246.0839 -6251.8327 5.7488338 3718.3396 635.06564 -10605.238 0 275.51637 0.00047650744 0.00046223659 + 107340 -6246.5404 -6252.9002 6.3597548 3720.5105 633.08504 -10606.496 0 304.79513 0.00031869403 0.00030442506 + 107350 -6246.9383 -6254.0849 7.1466531 3722.1124 631.14829 -10607.346 0 342.50772 0.00018151483 0.00015923517 + 107360 -6247.3388 -6255.1218 7.7829332 3722.9017 629.58109 -10607.605 0 373.00183 8.1910866e-05 5.0592669e-05 + 107370 -6247.8031 -6255.7319 7.9287903 3722.9076 628.60084 -10607.24 0 379.99212 2.1794235e-05 -1.1015906e-05 + 107380 -6248.3216 -6255.7928 7.471201 3722.2582 628.26851 -10606.32 0 358.06187 -2.5443001e-06 -2.7089443e-05 + 107390 -6248.8057 -6255.4029 6.5971332 3721.0788 628.49698 -10604.979 0 316.17164 5.5247683e-06 -7.3735333e-06 + 107400 -6249.1536 -6254.7901 5.636503 3719.5363 629.10992 -10603.436 0 270.13285 4.1143876e-05 3.395076e-05 + 107410 -6249.3264 -6254.155 4.8286049 3717.9317 629.91773 -10602.004 0 231.41384 9.3552362e-05 8.1832298e-05 + 107420 -6249.3706 -6253.5795 4.2088547 3716.6871 630.77467 -10601.041 0 201.71193 0.00014666089 0.00012425047 + 107430 -6249.379 -6253.0573 3.6782654 3716.186 631.59962 -10600.843 0 176.28312 0.00018642529 0.00015608176 + 107440 -6249.4243 -6252.5941 3.169854 3716.5661 632.36336 -10601.524 0 151.91719 0.00020985264 0.00018101896 + 107450 -6249.5118 -6252.2842 2.7724466 3717.6217 633.05741 -10602.963 0 132.8712 0.00022814738 0.00020940589 + 107460 -6249.5787 -6252.2916 2.7128292 3718.91 633.66337 -10604.865 0 130.014 0.00025986621 0.00025174797 + 107470 -6249.5419 -6252.7358 3.193942 3720.0227 634.13768 -10606.896 0 153.07162 0.00031668554 0.00031062138 + 107480 -6249.3644 -6253.5633 4.1989119 3720.8472 634.41602 -10608.827 0 201.23542 0.00039072822 0.00037563095 + 107490 -6249.0948 -6254.5215 5.4266955 3721.6131 634.43232 -10610.567 0 260.0777 0.00045380206 0.0004253803 + 107500 -6248.8373 -6255.2825 6.4451419 3722.6591 634.14627 -10612.088 0 308.88736 0.00047214987 0.00043692853 + 107510 -6248.6698 -6255.63 6.9602256 3724.091 633.57441 -10613.295 0 333.57307 0.00042833219 0.00039839623 + 107520 -6248.58 -6255.5592 6.9792445 3725.6027 632.8138 -10613.976 0 334.48456 0.00033460214 0.00031737862 + 107530 -6248.485 -6255.2182 6.7331143 3726.6069 632.03954 -10613.865 0 322.68862 0.00022759924 0.00021962136 + 107540 -6248.314 -6254.7559 6.4418661 3726.5742 631.46357 -10612.794 0 308.73037 0.00014840252 0.00013842226 + 107550 -6248.0747 -6254.213 6.1383297 3725.3316 631.26202 -10610.807 0 294.1832 0.00012214136 0.00010078928 + 107560 -6247.8464 -6253.5418 5.6954236 3723.1259 631.4992 -10608.167 0 272.95666 0.00014959302 0.000117394 + 107570 -6247.7091 -6252.7275 5.0184064 3720.4498 632.08411 -10605.261 0 240.51019 0.00021299432 0.00018006199 + 107580 -6247.6704 -6251.8959 4.2254601 3717.7953 632.78588 -10602.477 0 202.50775 0.00028860604 0.00026617964 + 107590 -6247.6505 -6251.3 3.6494528 3715.5209 633.30982 -10600.131 0 174.90225 0.00035607118 0.00034681398 + 107600 -6247.5357 -6251.1744 3.6386295 3713.8977 633.40734 -10598.479 0 174.38354 0.00040005624 0.00039530952 + 107610 -6247.2592 -6251.5614 4.3022577 3713.2225 632.9749 -10597.759 0 206.18833 0.00040788452 0.00039456764 + 107620 -6246.8501 -6252.2578 5.4077181 3713.8093 632.09958 -10598.167 0 259.1682 0.00037065501 0.00034236627 + 107630 -6246.4124 -6252.9452 6.5327598 3715.7894 631.03191 -10599.766 0 313.0865 0.00029111222 0.00025386398 + 107640 -6246.0375 -6253.4086 7.3710491 3718.8684 630.09867 -10602.376 0 353.26203 0.00019244857 0.00015942015 + 107650 -6245.7248 -6253.6609 7.9361028 3722.293 629.59531 -10605.549 0 380.34258 0.00011670135 9.6031042e-05 + 107660 -6245.3938 -6253.8628 8.4689742 3725.1381 629.70297 -10608.704 0 405.88076 0.00010695452 9.3601053e-05 + 107670 -6244.9884 -6254.1089 9.1204745 3726.7554 630.45478 -10611.319 0 437.10432 0.00018198294 0.00016176872 + 107680 -6244.5697 -6254.2777 9.7079408 3727.064 631.74794 -10613.09 0 465.259 0.00032219181 0.00028513841 + 107690 -6244.2933 -6254.0964 9.8031452 3726.4591 633.38191 -10613.937 0 469.82172 0.00048025642 0.00043115963 + 107700 -6244.2717 -6253.3813 9.1095459 3725.4231 635.10474 -10613.909 0 436.58055 0.00061083945 0.0005665231 + 107710 -6244.4551 -6252.2461 7.7910196 3724.1696 636.65733 -10613.073 0 373.38938 0.00069638134 0.00067103693 + 107720 -6244.6586 -6251.079 6.4203915 3722.6343 637.81244 -10611.526 0 307.70118 0.00074780475 0.000739754 + 107730 -6244.717 -6250.2848 5.5677741 3720.8083 638.40681 -10609.5 0 266.83898 0.00078157574 0.00077433609 + 107740 -6244.6135 -6250.0186 5.4050749 3719.0642 638.35996 -10607.443 0 259.04152 0.00079641493 0.00077340261 + 107750 -6244.4711 -6250.1521 5.6809182 3718.1022 637.67223 -10605.926 0 272.26147 0.00077158621 0.00073061082 + 107760 -6244.4312 -6250.4764 6.0451735 3718.5187 636.40882 -10605.404 0 289.71864 0.00068658426 0.00064096909 + 107770 -6244.532 -6250.9127 6.3807708 3720.3663 634.68933 -10605.968 0 305.80234 0.0005426785 0.00050898463 + 107780 -6244.6901 -6251.5352 6.845019 3723.0623 632.69326 -10607.291 0 328.05172 0.00036785015 0.00035188496 + 107790 -6244.789 -6252.4144 7.625323 3725.6845 630.66953 -10608.768 0 365.44826 0.00020319357 0.00019598749 + 107800 -6244.7934 -6253.4468 8.6533896 3727.4116 628.92587 -10609.784 0 414.71899 8.3292554e-05 6.9395773e-05 + 107810 -6244.7957 -6254.3294 9.5337302 3727.8186 627.78102 -10609.929 0 456.90985 2.4947924e-05 -4.4118848e-06 + 107820 -6244.9492 -6254.7186 9.7693843 3726.8946 627.48401 -10609.097 0 468.20371 2.978503e-05 -1.0071455e-05 + 107830 -6245.3337 -6254.4597 9.1259279 3724.8711 628.12874 -10607.46 0 437.36567 9.4340094e-05 5.7744972e-05 + 107840 -6245.8774 -6253.7085 7.8310739 3722.0731 629.60373 -10605.385 0 375.309 0.00021514853 0.00019183409 + 107850 -6246.416 -6252.8379 6.4219135 3718.9345 631.60618 -10603.379 0 307.77413 0.00038222871 0.00036979039 + 107860 -6246.8329 -6252.1967 5.3638204 3716.1108 633.7192 -10602.027 0 257.06437 0.00056786594 0.00055453523 + 107870 -6247.1447 -6251.9167 4.7720185 3714.4659 635.52199 -10601.905 0 228.7019 0.0007252159 0.00070133005 + 107880 -6247.4625 -6251.9167 4.4542417 3714.7856 636.69131 -10603.394 0 213.47226 0.00080420535 0.00077092713 + 107890 -6247.8807 -6252.0635 4.1827413 3717.3499 637.06674 -10606.48 0 200.46043 0.00077645326 0.00074391883 + 107900 -6248.4007 -6252.3144 3.9137457 3721.6789 636.67198 -10610.665 0 187.56866 0.00065147571 0.00062913093 + 107910 -6248.949 -6252.7215 3.7725464 3726.6661 635.69525 -10615.083 0 180.80159 0.00047246201 0.0004611618 + 107920 -6249.4534 -6253.3267 3.8732192 3731.0176 634.43392 -10618.778 0 185.6264 0.00029557172 0.00028799311 + 107930 -6249.8936 -6254.0696 4.1760732 3733.721 633.21467 -10621.005 0 200.14086 0.00016736738 0.00015491832 + 107940 -6250.2898 -6254.7922 4.5023952 3734.3058 632.30967 -10621.408 0 215.78004 0.00011239805 9.1866592e-05 + 107950 -6250.6634 -6255.3258 4.6623619 3732.8437 631.87185 -10620.041 0 223.44654 0.00013264808 0.00010766229 + 107960 -6251.01 -6255.5866 4.5766076 3729.7988 631.90511 -10617.291 0 219.33672 0.00021328069 0.00019060458 + 107970 -6251.3001 -6255.6071 4.3069545 3725.8634 632.27548 -10613.746 0 206.41343 0.00032878863 0.00031300173 + 107980 -6251.4994 -6255.4881 3.9887857 3721.8435 632.75926 -10610.091 0 191.16499 0.00044732434 0.00043786928 + 107990 -6251.5937 -6255.3164 3.7226802 3718.5713 633.11509 -10607.003 0 178.41172 0.00053465514 0.00052709544 + 108000 -6251.6029 -6255.1116 3.5087117 3716.7817 633.1582 -10605.051 0 168.15715 0.00056044682 0.0005505312 + 108010 -6251.5707 -6254.8453 3.2745696 3716.9294 632.81356 -10604.588 0 156.93575 0.0005075091 0.00049450344 + 108020 -6251.5364 -6254.5066 2.9702655 3719.0096 632.13317 -10605.649 0 142.35179 0.00038059407 0.00036717643 + 108030 -6251.5098 -6254.1527 2.6428825 3722.4955 631.27827 -10607.926 0 126.66176 0.00020907121 0.00019825773 + 108040 -6251.471 -6253.8953 2.4242997 3726.4608 630.47786 -10610.834 0 116.18604 4.0108583e-05 3.222906e-05 + 108050 -6251.3916 -6253.8344 2.4427576 3729.8557 629.97595 -10613.666 0 117.07065 -7.5656031e-05 -8.3211989e-05 + 108060 -6251.2593 -6253.9915 2.7322007 3731.821 629.97508 -10615.788 0 130.94239 -9.9846652e-05 -0.00011002798 + 108070 -6251.0843 -6254.2967 3.2124383 3731.9155 630.58159 -10616.794 0 153.95807 -1.7283421e-05 -3.0442498e-05 + 108080 -6250.8841 -6254.6374 3.753333 3730.1969 631.76213 -10616.596 0 179.88078 0.00016071273 0.00014720577 + 108090 -6250.6606 -6254.9246 4.2640137 3727.1754 633.32652 -10615.427 0 204.35546 0.00039949691 0.00038853948 + 108100 -6250.3936 -6255.1194 4.7258905 3723.6937 634.95313 -10613.766 0 226.49119 0.00064799264 0.0006394392 + 108110 -6250.0607 -6255.2046 5.1439156 3720.7587 636.26238 -10612.226 0 246.5253 0.00084802672 0.00083807316 + 108120 -6249.6682 -6255.1419 5.4736689 3719.3142 636.92443 -10611.381 0 262.32893 0.00094681011 0.00093092812 + 108130 -6249.2607 -6254.8678 5.6070723 3719.959 636.76774 -10611.595 0 268.72236 0.00091226735 0.00088921365 + 108140 -6248.8974 -6254.3406 5.4431685 3722.6887 635.8453 -10612.875 0 260.86718 0.0007469141 0.00072024504 + 108150 -6248.6117 -6253.6013 4.9896449 3726.7903 634.42618 -10614.818 0 239.13178 0.00049289592 0.0004684558 + 108160 -6248.3873 -6252.7937 4.4064433 3730.9963 632.91082 -10616.701 0 211.18149 0.00022256926 0.00020383767 + 108170 -6248.172 -6252.1144 3.9424052 3733.8843 631.70356 -10617.702 0 188.94218 1.5768493e-05 9.5398268e-07 + 108180 -6247.9168 -6251.7183 3.8014805 3734.3778 631.09153 -10617.188 0 182.18828 -6.7448151e-05 -8.3918693e-05 + 108190 -6247.6091 -6251.6475 4.0384216 3732.1265 631.1684 -10614.942 0 193.54382 -6.619546e-06 -2.931422e-05 + 108200 -6247.273 -6251.8375 4.5645403 3727.6084 631.81938 -10611.265 0 218.75838 0.0001749268 0.00014635101 + 108210 -6246.9386 -6252.1878 5.2491422 3721.9419 632.766 -10606.896 0 251.56835 0.00042148516 0.00039176923 + 108220 -6246.6102 -6252.626 6.015765 3716.536 633.65721 -10602.819 0 288.30921 0.00066473784 0.00063865356 + 108230 -6246.266 -6253.1104 6.8444441 3712.7297 634.18131 -10600.021 0 328.02417 0.00084300789 0.00082131722 + 108240 -6245.891 -6253.5844 7.6933754 3711.5022 634.16466 -10599.251 0 368.70972 0.00091497308 0.00089434893 + 108250 -6245.5096 -6253.9434 8.4338245 3713.2649 633.62595 -10600.834 0 404.19619 0.00086729287 0.00084396954 + 108260 -6245.1831 -6254.0571 8.8740696 3717.7433 632.7682 -10604.569 0 425.29521 0.00071684914 0.00069052461 + 108270 -6244.9698 -6253.8361 8.8663839 3723.992 631.91018 -10609.738 0 424.92687 0.00050720697 0.00048163641 + 108280 -6244.879 -6253.2962 8.4172359 3730.5831 631.37979 -10615.259 0 403.40117 0.00029830666 0.00027786497 + 108290 -6244.8605 -6252.5658 7.7053096 3735.9641 631.40871 -10619.939 0 369.28167 0.0001500141 0.00013516441 + 108300 -6244.8432 -6251.8206 6.9774059 3738.8944 632.06726 -10622.782 0 334.39644 0.00010385818 8.9886587e-05 + 108310 -6244.7903 -6251.19 6.3997439 3738.7975 633.25829 -10623.246 0 306.71164 0.00017050953 0.0001512473 + 108320 -6244.7223 -6250.7141 5.99179 3735.8746 634.76166 -10621.35 0 287.1602 0.00032947529 0.00030294859 + 108330 -6244.687 -6250.3855 5.6985625 3730.9448 636.30301 -10617.633 0 273.10709 0.00054097994 0.00051164048 + 108340 -6244.7052 -6250.2286 5.5233335 3725.1347 637.61749 -10612.981 0 264.70913 0.00076219274 0.00073730372 + 108350 -6244.7448 -6250.3255 5.5806611 3719.6039 638.48944 -10608.419 0 267.45659 0.00095759731 0.00094090014 + 108360 -6244.7441 -6250.755 6.0108194 3715.4008 638.76554 -10604.921 0 288.07219 0.0010992716 0.0010875836 + 108370 -6244.6644 -6251.4997 6.8353193 3713.3927 638.35448 -10603.247 0 327.58685 0.001162024 0.0011474772 + 108380 -6244.5265 -6252.4087 7.8822257 3714.1527 637.23285 -10603.794 0 377.76048 0.0011223126 0.0010980028 + 108390 -6244.4077 -6253.2468 8.8391488 3717.7694 635.47011 -10606.486 0 423.62161 0.00096590221 0.00093050486 + 108400 -6244.3997 -6253.7947 9.3949933 3723.6624 633.26458 -10610.722 0 450.26079 0.00070149239 0.00065984444 + 108410 -6244.5547 -6253.9404 9.3857658 3730.5434 630.95896 -10615.443 0 449.81856 0.00037154351 0.00033112312 + 108420 -6244.8544 -6253.7168 8.8624163 3736.6354 629.0016 -10619.354 0 424.73672 5.05127e-05 1.6335323e-05 + 108430 -6245.2291 -6253.2639 8.0348155 3740.1553 627.84727 -10621.266 0 385.07344 -0.0001739683 -0.00020222791 + 108440 -6245.6111 -6252.7394 7.1282623 3739.9142 627.82851 -10620.482 0 341.62633 -0.00023119358 -0.00025748025 + 108450 -6245.9744 -6252.248 6.2736578 3735.7691 629.04255 -10617.06 0 300.66888 -9.4450987e-05 -0.00012187235 + 108460 -6246.3239 -6251.845 5.5211029 3728.7096 631.29026 -10611.845 0 264.60223 0.00020793194 0.0001795834 + 108470 -6246.6622 -6251.584 4.921829 3720.5685 634.09087 -10606.243 0 235.88166 0.000600329 0.00057294023 + 108480 -6246.9773 -6251.5322 4.5548865 3713.5159 636.78262 -10601.831 0 218.29572 0.00098056243 0.00095470999 + 108490 -6247.26 -6251.7315 4.4715553 3709.5033 638.6939 -10599.929 0 214.30202 0.0012468328 0.0012210627 + 108500 -6247.5204 -6252.1569 4.6364461 3709.763 639.33855 -10601.258 0 222.20451 0.0013254059 0.0012980871 + 108510 -6247.7851 -6252.7153 4.9302385 3714.4561 638.57089 -10605.742 0 236.28469 0.0011926944 0.0011641217 + 108520 -6248.0783 -6253.2855 5.2072389 3722.5736 636.64255 -10612.502 0 249.5601 0.00088447361 0.00085722765 + 108530 -6248.4043 -6253.7685 5.3642038 3732.1584 634.1335 -10620.06 0 257.08274 0.00048756911 0.00046487015 + 108540 -6248.7414 -6254.1215 5.3800677 3740.8153 631.77524 -10626.712 0 257.84303 0.00011501182 9.823373e-05 + 108550 -6249.0528 -6254.3559 5.3030947 3746.3742 630.22653 -10630.957 0 254.15405 -0.00012826054 -0.00014108741 + 108560 -6249.3102 -6254.5014 5.1911339 3747.5061 629.87897 -10631.886 0 248.78826 -0.00017796161 -0.00019119824 + 108570 -6249.5137 -6254.5651 5.0513564 3744.0889 630.75451 -10629.408 0 242.08934 -2.960403e-05 -4.6901139e-05 + 108580 -6249.6883 -6254.5269 4.8386223 3737.1917 632.51977 -10624.238 0 231.89393 0.00026302482 0.00024151015 + 108590 -6249.8587 -6254.3767 4.5180421 3728.6967 634.60336 -10617.677 0 216.52993 0.00060859267 0.00058607776 + 108600 -6250.0261 -6254.15 4.1238568 3720.7252 636.37304 -10611.248 0 197.63836 0.00090825082 0.0008884397 + 108610 -6250.1701 -6253.9191 3.7489531 3715.0863 637.31592 -10606.321 0 179.67087 0.0010829858 0.0010672339 + 108620 -6250.2687 -6253.7493 3.4806173 3712.891 637.16907 -10603.809 0 166.81071 0.0010912185 0.0010781134 + 108630 -6250.3141 -6253.6686 3.3544926 3714.3697 635.96974 -10604.008 0 160.76611 0.0009354942 0.0009224501 + 108640 -6250.3112 -6253.6757 3.3645092 3718.8894 634.02341 -10606.589 0 161.24616 0.00065923327 0.00064406874 + 108650 -6250.2669 -6253.7637 3.496791 3725.1581 631.81157 -10610.733 0 167.58584 0.00033442881 0.0003158664 + 108660 -6250.1842 -6253.925 3.7408189 3731.5732 629.8704 -10615.369 0 179.28103 4.273979e-05 2.0386094e-05 + 108670 -6250.0626 -6254.1397 4.0770493 3736.6176 628.66888 -10619.426 0 195.39508 -0.00014463624 -0.00017020688 + 108680 -6249.8956 -6254.3657 4.4701438 3739.1939 628.50918 -10622.069 0 214.23437 -0.00018245569 -0.00020976891 + 108690 -6249.6664 -6254.5416 4.8751902 3738.8327 629.46863 -10622.843 0 233.64647 -5.9419621e-05 -8.6561483e-05 + 108700 -6249.3493 -6254.5933 5.2440508 3735.7618 631.39345 -10621.749 0 251.32434 0.00020121232 0.00017613013 + 108710 -6248.9164 -6254.4503 5.5338727 3730.8344 633.93895 -10619.224 0 265.21423 0.00054739717 0.00052592819 + 108720 -6248.3471 -6254.0742 5.7270974 3725.3308 636.63789 -10616.043 0 274.47464 0.00090901646 0.00089170021 + 108730 -6247.6395 -6253.4871 5.8475919 3720.6859 638.9792 -10613.152 0 280.24941 0.0012110039 0.0011962115 + 108740 -6246.8248 -6252.769 5.9441548 3718.1987 640.49266 -10611.46 0 284.87725 0.0013866964 0.0013703048 + 108750 -6245.976 -6252.0205 6.0444839 3718.7392 640.84408 -10611.604 0 289.68558 0.0013913316 0.0013688972 + 108760 -6245.1953 -6251.3263 6.1309956 3722.4546 639.93244 -10613.713 0 293.83171 0.0012158738 0.0011866088 + 108770 -6244.569 -6250.7573 6.1883189 3728.5658 637.94859 -10617.272 0 296.57897 0.0008972046 0.00086572356 + 108780 -6244.1149 -6250.4 6.2850569 3735.4285 635.3502 -10621.179 0 301.21519 0.00051625457 0.00048903721 + 108790 -6243.7744 -6250.3498 6.5754037 3740.9639 632.74728 -10624.061 0 315.13024 0.00017804088 0.00015745541 + 108800 -6243.4648 -6250.6417 7.1768683 3743.3474 630.73824 -10624.727 0 343.9558 -2.2087384e-05 -4.008831e-05 + 108810 -6243.1487 -6251.179 8.0303473 3741.6531 629.75013 -10622.582 0 384.8593 -3.1462806e-05 -5.3689791e-05 + 108820 -6242.8608 -6251.7453 8.8845016 3736.1717 629.92831 -10617.845 0 425.79517 0.00014326775 0.00011318934 + 108830 -6242.6735 -6252.1099 9.4364352 3728.2929 631.10716 -10611.51 0 452.24692 0.00044280392 0.00040721567 + 108840 -6242.6309 -6252.1592 9.5282179 3720.0427 632.87227 -10605.074 0 456.64566 0.00077986611 0.00074429412 + 108850 -6242.7103 -6251.9523 9.241957 3713.4826 634.69607 -10600.131 0 442.92643 0.0010681292 0.0010356228 + 108860 -6242.848 -6251.6519 8.8038117 3710.1949 636.1016 -10597.948 0 421.92805 0.0012425928 0.0012109219 + 108870 -6243.005 -6251.3832 8.378212 3710.967 636.79808 -10599.148 0 401.53093 0.0012685852 0.0012335783 + 108880 -6243.1992 -6251.1528 7.9535634 3715.6507 636.74365 -10603.547 0 381.17939 0.0011455907 0.0011073129 + 108890 -6243.4676 -6250.9083 7.4407601 3723.1539 636.11893 -10610.181 0 356.60297 0.00091005736 0.00087453442 + 108900 -6243.7965 -6250.6716 6.8750793 3731.6244 635.23171 -10617.528 0 329.49238 0.00063157053 0.000604841 + 108910 -6244.1104 -6250.5799 6.4694693 3738.9278 634.40303 -10623.911 0 310.05327 0.00039365799 0.00037412026 + 108920 -6244.342 -6250.7642 6.4222162 3743.3335 633.88361 -10627.981 0 307.78864 0.00026267547 0.00024107905 + 108930 -6244.5068 -6251.2037 6.696861 3744.0686 633.81374 -10629.086 0 320.95115 0.00026367276 0.00023168599 + 108940 -6244.6917 -6251.7346 7.0428858 3741.4202 634.2109 -10627.366 0 337.5346 0.00037939842 0.0003374467 + 108950 -6244.9743 -6252.1955 7.2212019 3736.4224 634.97483 -10623.593 0 346.08051 0.00056816297 0.0005246617 + 108960 -6245.3623 -6252.5356 7.1733253 3730.4266 635.91398 -10618.876 0 343.786 0.00078284257 0.00074699238 + 108970 -6245.8026 -6252.8006 6.9979558 3724.7804 636.79025 -10614.371 0 335.38131 0.00098002678 0.00095559082 + 108980 -6246.2305 -6253.0529 6.8223604 3720.6291 637.3689 -10611.051 0 326.96579 0.001121789 0.001105956 + 108990 -6246.6081 -6253.309 6.7008441 3718.7772 637.46375 -10609.55 0 321.14205 0.0011772129 0.0011636128 + 109000 -6246.936 -6253.5243 6.5882907 3719.5763 636.97627 -10610.077 0 315.74786 0.0011269734 0.0011100559 + 109010 -6247.2403 -6253.6182 6.3779496 3722.8467 635.92519 -10612.39 0 305.66713 0.00096975901 0.00094806065 + 109020 -6247.5466 -6253.5273 5.9806542 3727.8598 634.457 -10615.844 0 286.62651 0.00072744861 0.00070399784 + 109030 -6247.8553 -6253.2599 5.4045325 3733.4248 632.82796 -10619.513 0 259.01552 0.00044555879 0.00042512245 + 109040 -6248.1371 -6252.9128 4.77568 3738.125 631.35874 -10622.397 0 228.87738 0.00018613409 0.00017128907 + 109050 -6248.3547 -6252.627 4.2723237 3740.683 630.3712 -10623.681 0 204.75373 1.3010791e-05 2.1939847e-06 + 109060 -6248.4916 -6252.5106 4.0190106 3740.3445 630.11816 -10622.973 0 192.61354 -2.6455221e-05 -3.7405658e-05 + 109070 -6248.5642 -6252.5875 4.0232363 3737.1267 630.71561 -10620.43 0 192.81606 8.3403301e-05 6.9046101e-05 + 109080 -6248.6079 -6252.8035 4.1955889 3731.8322 632.09149 -10616.727 0 201.07616 0.00032007419 0.00030234304 + 109090 -6248.6506 -6253.0785 4.4278898 3725.8362 633.97213 -10612.887 0 212.20933 0.00062751733 0.00060919733 + 109100 -6248.6926 -6253.361 4.6683938 3720.7267 635.92565 -10610.013 0 223.73562 0.00093050924 0.00091411097 + 109110 -6248.7074 -6253.6446 4.9371783 3717.9098 637.46546 -10609.02 0 236.61729 0.001153879 0.0011386699 + 109120 -6248.6669 -6253.9333 5.2663231 3718.2759 638.19151 -10610.401 0 252.39175 0.0012409114 0.0012228309 + 109130 -6248.5735 -6254.1885 5.6149821 3721.9789 637.92459 -10614.092 0 269.10145 0.0011673573 0.0011425046 + 109140 -6248.4688 -6254.3162 5.8474074 3728.3436 636.78163 -10619.441 0 280.24057 0.00094988917 0.00091889803 + 109150 -6248.404 -6254.2248 5.8208021 3735.9262 635.15378 -10625.305 0 278.9655 0.00064718857 0.00061614864 + 109160 -6248.3904 -6253.9117 5.5212507 3742.7828 633.58451 -10630.279 0 264.60931 0.00034927251 0.00032533137 + 109170 -6248.381 -6253.4897 5.1086791 3746.9766 632.58891 -10633.055 0 244.83657 0.00015185925 0.00013700263 + 109180 -6248.3074 -6253.109 4.8015365 3747.2124 632.48273 -10632.804 0 230.11657 0.0001214882 0.00011066973 + 109190 -6248.1364 -6252.8455 4.7090848 3743.3286 633.27997 -10629.454 0 225.68577 0.00026781048 0.00025348603 + 109200 -6247.8874 -6252.6726 4.7852383 3736.3753 634.68704 -10623.735 0 229.33547 0.00053935423 0.00051774737 + 109210 -6247.598 -6252.5309 4.93295 3728.237 636.19475 -10616.963 0 236.41464 0.0008450711 0.0008182429 + 109220 -6247.279 -6252.4047 5.1256508 3721.0089 637.24509 -10610.659 0 245.64995 0.0010887755 0.0010616209 + 109230 -6246.9006 -6252.3271 5.4264934 3716.4053 637.42064 -10606.153 0 260.06801 0.0011999787 0.001175954 + 109240 -6246.4139 -6252.3259 5.9120179 3715.3696 636.58924 -10604.285 0 283.33707 0.0011516169 0.0011309298 + 109250 -6245.7883 -6252.3721 6.5837807 3717.9213 634.95292 -10605.246 0 315.53171 0.0009636085 0.00094450181 + 109260 -6245.0406 -6252.3825 7.3419281 3723.2085 632.98732 -10608.578 0 351.86639 0.00069517192 0.0006762265 + 109270 -6244.2318 -6252.275 8.0431418 3729.7352 631.29221 -10613.302 0 385.47248 0.00042858813 0.0004093961 + 109280 -6243.4345 -6252.027 8.5925811 3735.758 630.39971 -10618.185 0 411.8047 0.00024593474 0.00022555706 + 109290 -6242.7047 -6251.6762 8.9714622 3739.7991 630.60565 -10622.081 0 429.96281 0.00020248949 0.00017832521 + 109300 -6242.0881 -6251.2629 9.1747914 3741.0949 631.88566 -10624.243 0 439.70748 0.00030691898 0.00027668202 + 109310 -6241.6293 -6250.7967 9.1673762 3739.7535 633.92318 -10624.473 0 439.35211 0.00052087873 0.00048590664 + 109320 -6241.3514 -6250.2931 8.9416686 3736.5491 636.23033 -10623.073 0 428.53493 0.0007799929 0.00074530449 + 109330 -6241.2274 -6249.8227 8.5952731 3732.5277 638.30783 -10620.658 0 411.93371 0.0010219457 0.00099215131 + 109340 -6241.1912 -6249.4944 8.303144 3728.6729 639.78085 -10617.948 0 397.93325 0.0012040585 0.001179417 + 109350 -6241.1834 -6249.3834 8.2000156 3725.7397 640.46752 -10615.591 0 392.99076 0.0013054282 0.0012820335 + 109360 -6241.1856 -6249.485 8.2994455 3724.2016 640.37363 -10614.06 0 397.75599 0.0013215931 0.0012948917 + 109370 -6241.2161 -6249.7371 8.5209907 3724.2228 639.63729 -10613.597 0 408.37369 0.0012602644 0.0012281035 + 109380 -6241.3019 -6250.0778 8.7759345 3725.6452 638.4589 -10614.182 0 420.59202 0.0011393313 0.0011021936 + 109390 -6241.4571 -6250.4766 9.0194491 3728.0262 637.04749 -10615.55 0 432.26261 0.00098392708 0.00094323059 + 109400 -6241.686 -6250.9137 9.22775 3730.7524 635.59757 -10617.264 0 442.24555 0.00082108157 0.00077806992 + 109410 -6241.9965 -6251.3388 9.3422501 3733.1927 634.28901 -10618.82 0 447.73304 0.0006744728 0.00063098306 + 109420 -6242.3988 -6251.6667 9.267958 3734.8219 633.2868 -10619.775 0 444.17255 0.00056290095 0.00052236311 + 109430 -6242.8806 -6251.8335 8.9529514 3735.2813 632.72337 -10619.838 0 429.07567 0.00050194997 0.00046805273 + 109440 -6243.3924 -6251.8508 8.4583757 3734.4295 632.6664 -10618.947 0 405.37282 0.00050326633 0.00047684253 + 109450 -6243.8726 -6251.7926 7.9200023 3732.4252 633.08976 -10617.308 0 379.57095 0.00056794375 0.00054582468 + 109460 -6244.2893 -6251.728 7.4386791 3729.7753 633.86387 -10615.367 0 356.50324 0.00067915711 0.00065695478 + 109470 -6244.6531 -6251.6828 7.0297544 3727.2328 634.77531 -10613.691 0 336.90528 0.00080336296 0.0007792958 + 109480 -6244.9879 -6251.665 6.6770918 3725.5441 635.57746 -10612.786 0 320.0037 0.00090236497 0.00087794373 + 109490 -6245.299 -6251.7015 6.4024619 3725.1853 636.06112 -10612.948 0 306.8419 0.00094826094 0.00092550161 + 109500 -6245.5716 -6251.8291 6.2574597 3726.2357 636.11913 -10614.184 0 299.89258 0.00093157113 0.00091022335 + 109510 -6245.7942 -6252.0479 6.2536281 3728.4125 635.7772 -10616.238 0 299.70895 0.00086020816 0.00083795409 + 109520 -6245.9774 -6252.297 6.3196039 3731.1905 635.17996 -10618.667 0 302.87088 0.00075412223 0.00072916779 + 109530 -6246.147 -6252.4869 6.339892 3733.929 634.5416 -10620.957 0 303.8432 0.0006406832 0.00061377769 + 109540 -6246.3212 -6252.5634 6.2421449 3735.9925 634.08164 -10622.638 0 299.15861 0.00055098154 0.00052479297 + 109550 -6246.4938 -6252.5466 6.0527071 3736.888 633.96481 -10623.399 0 290.07968 0.00051381155 0.00049035016 + 109560 -6246.6407 -6252.5136 5.8729207 3736.4105 634.25768 -10623.182 0 281.46331 0.00054612263 0.00052468037 + 109570 -6246.7417 -6252.5404 5.7987289 3734.7443 634.90866 -10622.193 0 277.90763 0.00064381516 0.00062130292 + 109580 -6246.8004 -6252.6488 5.848374 3732.4461 635.75575 -10620.851 0 280.2869 0.00077931708 0.00075278647 + 109590 -6246.8438 -6252.797 5.9531336 3730.2796 636.56373 -10619.64 0 285.30757 0.00090955371 0.00087880194 + 109600 -6246.9024 -6252.9188 6.0163357 3728.9412 637.08556 -10618.946 0 288.33656 0.00099167934 0.00095962144 + 109610 -6246.9857 -6252.9744 5.9887101 3728.7984 637.13382 -10618.907 0 287.01259 0.00099888032 0.0009692566 + 109620 -6247.0762 -6252.9689 5.8926468 3729.7675 636.64129 -10619.378 0 282.4087 0.00092859633 0.00090308128 + 109630 -6247.1472 -6252.927 5.7797924 3731.384 635.68943 -10620 0 277.00008 0.00080074408 0.00077806072 + 109640 -6247.1842 -6252.8631 5.6789114 3732.9986 634.49125 -10620.353 0 272.1653 0.00064951881 0.00062691713 + 109650 -6247.1886 -6252.7827 5.5941601 3733.993 633.32989 -10620.106 0 268.10354 0.00051373619 0.00048878875 + 109660 -6247.168 -6252.7034 5.5354868 3733.958 632.47367 -10619.135 0 265.29159 0.00042741332 0.00039864313 + 109670 -6247.1325 -6252.6505 5.5179977 3732.8195 632.09963 -10617.57 0 264.45341 0.00041048476 0.0003776578 + 109680 -6247.1 -6252.6302 5.530165 3730.8782 632.25122 -10615.76 0 265.03654 0.00046240136 0.0004273739 + 109690 -6247.0892 -6252.6248 5.5355617 3728.7104 632.83918 -10614.174 0 265.29518 0.00056327279 0.00053006352 + 109700 -6247.0992 -6252.6235 5.5242991 3726.9622 633.67985 -10613.266 0 264.75541 0.00068283683 0.00065533782 + 109710 -6247.1 -6252.6421 5.5420927 3726.1521 634.55636 -10613.351 0 265.60818 0.00079118713 0.00076993509 + 109720 -6247.0545 -6252.695 5.6404745 3726.5766 635.28121 -10614.553 0 270.32319 0.00086497334 0.00084651512 + 109730 -6246.9521 -6252.7532 5.8010957 3728.2923 635.73795 -10616.784 0 278.02106 0.0008890986 0.00086914556 + 109740 -6246.8164 -6252.7532 5.9368027 3731.0934 635.89188 -10619.739 0 284.5249 0.00085867104 0.00083592314 + 109750 -6246.6764 -6252.6592 5.9828627 3734.4762 635.7793 -10622.915 0 286.73235 0.00078309153 0.00075978959 + 109760 -6246.5329 -6252.5123 5.9793742 3737.6781 635.49235 -10625.683 0 286.56516 0.00068793592 0.00066683024 + 109770 -6246.3521 -6252.407 6.0549482 3739.8533 635.16415 -10627.425 0 290.18709 0.00060925434 0.00059024063 + 109780 -6246.0888 -6252.4125 6.3236938 3740.3418 634.94512 -10627.699 0 303.06689 0.0005804595 0.0005601221 + 109790 -6245.7188 -6252.4995 6.7807164 3738.9112 634.96326 -10626.374 0 324.96998 0.00061820064 0.00059279281 + 109800 -6245.2544 -6252.5373 7.2828566 3735.8523 635.27538 -10623.665 0 349.03535 0.00071529771 0.00068466321 + 109810 -6244.7297 -6252.3777 7.6479004 3731.8762 635.82815 -10620.082 0 366.5303 0.00084477251 0.0008133073 + 109820 -6244.1619 -6251.9719 7.8100546 3727.873 636.45124 -10616.296 0 374.30164 0.00097160754 0.00094430512 + 109830 -6243.526 -6251.4186 7.8925877 3724.6761 636.89889 -10612.994 0 378.25709 0.0010638441 0.0010403116 + 109840 -6242.7805 -6250.8836 8.1031436 3722.9388 636.93828 -10610.761 0 388.34811 0.0010973339 0.001070006 + 109850 -6241.9321 -6250.4581 8.5259743 3723.0805 636.45531 -10609.994 0 408.61253 0.0010569059 0.0010168872 + 109860 -6241.0767 -6250.0962 9.0194152 3725.1751 635.52757 -10610.799 0 432.26098 0.00094155279 0.00088776918 + 109870 -6240.3507 -6249.7058 9.3550744 3728.7577 634.42042 -10612.884 0 448.34766 0.00077522535 0.00071750645 + 109880 -6239.8226 -6249.3001 9.4774613 3732.7472 633.49949 -10615.547 0 454.21312 0.00061222706 0.00056366627 + 109890 -6239.4409 -6249.0289 9.5879441 3735.7335 633.0985 -10617.861 0 459.50808 0.00052227234 0.00048772359 + 109900 -6239.1058 -6249.0359 9.9301138 3736.5976 633.39784 -10619.031 0 475.90677 0.00055571613 0.00052827807 + 109910 -6238.7849 -6249.3008 10.515926 3735.0819 634.35136 -10618.734 0 503.98216 0.00071176883 0.00068021069 + 109920 -6238.5455 -6249.6458 11.100353 3731.9111 635.68272 -10617.24 0 531.99122 0.00093492014 0.00089327862 + 109930 -6238.4876 -6249.8818 11.394207 3728.4172 636.96898 -10615.268 0 546.07434 0.0011421547 0.0010927035 + 109940 -6238.6648 -6249.9276 11.262898 3725.9411 637.8018 -10613.671 0 539.78127 0.0012612538 0.0012108716 + 109950 -6239.0588 -6249.8208 10.761999 3725.3179 637.95864 -10613.097 0 515.7754 0.0012587517 0.0012138717 + 109960 -6239.6033 -6249.6649 10.061608 3726.6261 637.49007 -10613.781 0 482.2087 0.0011481219 0.0011117053 + 109970 -6240.2198 -6249.5758 9.3560218 3729.2532 636.67543 -10615.504 0 448.39306 0.00097928695 0.00095025174 + 109980 -6240.8486 -6249.6411 8.7925236 3732.2187 635.87924 -10617.739 0 421.38707 0.00081569513 0.00079035691 + 109990 -6241.4646 -6249.8936 8.4289323 3734.5856 635.3898 -10619.869 0 403.96173 0.00070881625 0.00068349292 + 110000 -6242.0695 -6250.3084 8.238916 3735.7685 635.316 -10621.393 0 394.85508 0.00068103559 0.00065407546 + 110010 -6242.6706 -6250.8229 8.1522452 3735.6413 635.57652 -10622.041 0 390.70133 0.0007228391 0.00069484898 + 110020 -6243.2656 -6251.3565 8.0908543 3734.4725 635.96791 -10621.797 0 387.75914 0.00080239532 0.00077516295 + 110030 -6243.8384 -6251.8295 7.9910564 3732.7611 636.26531 -10620.856 0 382.97626 0.00088115936 0.00085628306 + 110040 -6244.3641 -6252.1841 7.8200039 3731.0457 636.30738 -10619.537 0 374.77847 0.00092827395 0.00090606446 + 110050 -6244.8188 -6252.3952 7.5764035 3729.7546 636.03926 -10618.189 0 363.10377 0.00092841247 0.00090765584 + 110060 -6245.1937 -6252.4652 7.2714637 3729.1328 635.51283 -10617.111 0 348.48934 0.000882262 0.00086123343 + 110070 -6245.4982 -6252.4136 6.9153638 3729.2268 634.85687 -10616.497 0 331.42303 0.00080292152 0.00078088177 + 110080 -6245.75 -6252.2803 6.5303092 3729.8947 634.23103 -10616.406 0 312.96906 0.00071141316 0.00068902779 + 110090 -6245.9588 -6252.1286 6.1697714 3730.8455 633.77712 -10616.751 0 295.69006 0.00063152386 0.00060966062 + 110100 -6246.1234 -6252.0268 5.9034006 3731.7318 633.58175 -10617.34 0 282.92408 0.00058301442 0.00056133155 + 110110 -6246.2436 -6252.0102 5.7666029 3732.2784 633.6609 -10617.949 0 276.36797 0.00057479092 0.00055195447 + 110120 -6246.3329 -6252.0618 5.7288748 3732.3798 633.96671 -10618.408 0 274.55983 0.00060231769 0.00057771894 + 110130 -6246.4127 -6252.1384 5.7257278 3732.1014 634.40823 -10618.648 0 274.409 0.00065174449 0.00062659721 + 110140 -6246.4945 -6252.2192 5.7246841 3731.6027 634.8784 -10618.7 0 274.35898 0.00070783901 0.00068420866 + 110150 -6246.5722 -6252.3232 5.7509155 3731.0601 635.28234 -10618.666 0 275.61614 0.00075976658 0.00073863982 + 110160 -6246.6333 -6252.4774 5.844022 3730.6414 635.5608 -10618.68 0 280.07833 0.0008015163 0.00078217679 + 110170 -6246.6768 -6252.674 5.9971535 3730.5064 635.69949 -10618.88 0 287.41724 0.00082910301 0.00081044746 + 110180 -6246.7157 -6252.8638 6.1480474 3730.7835 635.71944 -10619.367 0 294.64893 0.00083889812 0.00082098599 + 110190 -6246.7615 -6252.9933 6.2317429 3731.5125 635.65445 -10620.16 0 298.66008 0.00082887547 0.00081273851 + 110200 -6246.8092 -6253.0448 6.2355438 3732.6021 635.53031 -10621.177 0 298.84225 0.00080061934 0.0007864711 + 110210 -6246.8415 -6253.0363 6.1947959 3733.8476 635.35796 -10622.242 0 296.88938 0.00075911913 0.00074515244 + 110220 -6246.849 -6252.9854 6.1364117 3734.9974 635.14275 -10623.126 0 294.09128 0.00071042321 0.00069389331 + 110230 -6246.8433 -6252.8807 6.0373243 3735.8112 634.90144 -10623.593 0 289.34246 0.00066022914 0.00063995907 + 110240 -6246.8479 -6252.6953 5.8473425 3736.0755 634.6753 -10623.446 0 280.23746 0.00061547218 0.00059321771 + 110250 -6246.8744 -6252.4278 5.5533797 3735.6062 634.5296 -10622.564 0 266.14912 0.0005868627 0.00056604569 + 110260 -6246.9093 -6252.1276 5.2183512 3734.2914 634.53464 -10620.954 0 250.09267 0.00058798171 0.00057089825 + 110270 -6246.9223 -6251.8792 4.9568735 3732.1837 634.73206 -10618.795 0 237.56119 0.00062907619 0.00061504387 + 110280 -6246.8875 -6251.7594 4.8718646 3729.5883 635.10028 -10616.448 0 233.48709 0.00070880392 0.0006946701 + 110290 -6246.7982 -6251.8021 5.0038849 3727.0677 635.53866 -10614.408 0 239.81424 0.00080976439 0.0007921457 + 110300 -6246.6668 -6251.9895 5.3226191 3725.3258 635.88421 -10613.199 0 255.08977 0.0009015246 0.00087902555 + 110310 -6246.5133 -6252.2685 5.7551935 3724.9942 635.96086 -10613.224 0 275.82117 0.00095043442 0.00092437446 + 110320 -6246.3496 -6252.5768 6.2272286 3726.3943 635.64567 -10614.617 0 298.44374 0.0009321582 0.00090542778 + 110330 -6246.1725 -6252.8606 6.6880285 3729.3742 634.92794 -10617.163 0 320.52785 0.00084178532 0.00081675864 + 110340 -6245.9696 -6253.0737 7.1041666 3733.295 633.93693 -10620.306 0 340.47153 0.00069759543 0.00067475297 + 110350 -6245.7333 -6253.1707 7.4373665 3737.1771 632.92373 -10623.271 0 356.44034 0.0005373941 0.0005156059 + 110360 -6245.4696 -6253.1105 7.6409047 3739.9536 632.19869 -10625.263 0 366.19503 0.00040899256 0.00038680126 + 110370 -6245.193 -6252.8764 7.6833895 3740.7568 632.04323 -10625.676 0 368.23114 0.00035731128 0.00033385839 + 110380 -6244.9165 -6252.4863 7.5698381 3739.1756 632.62251 -10624.284 0 362.78912 0.00041058322 0.00038576373 + 110390 -6244.6487 -6251.9843 7.3355855 3735.419 633.9217 -10621.325 0 351.56242 0.00056912058 0.00054354737 + 110400 -6244.3931 -6251.4246 7.0315538 3730.3179 635.72202 -10617.465 0 336.99151 0.00080136708 0.00077629067 + 110410 -6244.1435 -6250.8717 6.7282447 3725.1355 637.62888 -10613.636 0 322.45524 0.0010503747 0.0010269458 + 110420 -6243.8804 -6250.4025 6.5221577 3721.2423 639.15908 -10610.804 0 312.57839 0.0012490675 0.0012270787 + 110430 -6243.5793 -6250.0868 6.5074718 3719.7629 639.87521 -10609.725 0 311.87456 0.0013388711 0.0013164685 + 110440 -6243.2287 -6249.9528 6.7241713 3721.2744 639.52911 -10610.756 0 322.26002 0.0012866581 0.0012619327 + 110450 -6242.8373 -6249.9802 7.1429828 3725.599 638.16043 -10613.74 0 342.33182 0.0010970422 0.0010700085 + 110460 -6242.4203 -6250.1327 7.712468 3731.7478 636.10716 -10617.988 0 369.62474 0.00081672633 0.00078923695 + 110470 -6241.9826 -6250.3911 8.4084678 3738.1009 633.91745 -10622.409 0 402.98096 0.00052596738 0.00049945606 + 110480 -6241.5249 -6250.7368 9.2119583 3742.8497 632.18954 -10625.776 0 441.48873 0.00031503974 0.00028885097 + 110490 -6241.0691 -6251.1072 10.038108 3744.568 631.39118 -10627.066 0 481.08248 0.00025259452 0.0002249293 + 110500 -6240.6678 -6251.3896 10.721827 3742.6744 631.71678 -10625.781 0 513.85012 0.00036047857 0.00033033365 + 110510 -6240.3792 -6251.478 11.098838 3737.6121 633.02891 -10622.119 0 531.91857 0.00060672333 0.00057404049 + 110520 -6240.2378 -6251.3301 11.092297 3730.7206 634.90492 -10616.956 0 531.60512 0.00091743662 0.00088182651 + 110530 -6240.2517 -6250.973 10.721283 3723.8547 636.77279 -10611.601 0 513.82406 0.0012006085 0.0011612378 + 110540 -6240.4172 -6250.4779 10.06067 3718.8417 638.08951 -10607.409 0 482.16375 0.0013740692 0.001331265 + 110550 -6240.7238 -6249.9401 9.2163012 3716.9303 638.50472 -10605.375 0 441.69687 0.0013902996 0.001346843 + 110560 -6241.1487 -6249.4725 8.3237993 3718.4302 637.95872 -10605.861 0 398.92317 0.0012505571 0.0012109122 + 110570 -6241.651 -6249.1971 7.546068 3722.6684 636.6833 -10608.549 0 361.64992 0.001003027 0.00097057581 + 110580 -6242.1784 -6249.2248 7.0464161 3728.2651 635.10635 -10612.596 0 337.70379 0.00072496805 0.0006989617 + 110590 -6242.6899 -6249.6108 6.9209476 3733.6213 633.69926 -10616.931 0 331.69064 0.00049488443 0.00046985345 + 110600 -6243.1855 -6250.2996 7.1141045 3737.4412 632.82781 -10620.569 0 340.9478 0.0003657671 0.00033512058 + 110610 -6243.7111 -6251.1139 7.4028445 3739.0764 632.65789 -10622.848 0 354.78584 0.00035139124 0.0003131256 + 110620 -6244.3168 -6251.8324 7.5156613 3738.5607 633.13842 -10623.532 0 360.19266 0.00043119974 0.0003904327 + 110630 -6244.9983 -6252.3176 7.3193449 3736.3895 634.0529 -10622.76 0 350.78408 0.00056773275 0.0005328588 + 110640 -6245.6807 -6252.5853 6.9046825 3733.2493 635.11039 -10620.945 0 330.91113 0.00072325176 0.00069884543 + 110650 -6246.2675 -6252.7533 6.4857741 3729.8686 636.03856 -10618.66 0 310.83469 0.00086654422 0.00084963825 + 110660 -6246.7067 -6252.921 6.2142653 3726.9762 636.64767 -10616.545 0 297.82246 0.00097200919 0.00095491544 + 110670 -6247.0154 -6253.0933 6.0778997 3725.2416 636.85201 -10615.187 0 291.28706 0.0010189706 0.00099562338 + 110680 -6247.253 -6253.2019 5.9488671 3725.1238 636.65621 -10614.982 0 285.10309 0.00099550588 0.00096581653 + 110690 -6247.4739 -6253.1862 5.7123002 3726.6953 636.12659 -10616.008 0 273.76548 0.00090422143 0.00087344828 + 110700 -6247.6931 -6253.0566 5.3634385 3729.5639 635.36668 -10617.987 0 257.04607 0.00076455481 0.00073884413 + 110710 -6247.8847 -6252.8977 5.0129741 3732.9623 634.50301 -10620.363 0 240.24985 0.00060860241 0.00059019222 + 110720 -6248.0066 -6252.816 4.8094622 3735.981 633.67497 -10622.472 0 230.49642 0.00047165513 0.00045700648 + 110730 -6248.0371 -6252.8662 4.8290258 3737.8513 633.01982 -10623.737 0 231.43401 0.00038138216 0.00036366604 + 110740 -6248.0005 -6253.0047 5.0042035 3738.161 632.64979 -10623.815 0 239.82951 0.00035047411 0.00032505238 + 110750 -6247.9578 -6253.1168 5.1590596 3736.9091 632.62566 -10622.652 0 247.25108 0.00037636219 0.00034516919 + 110760 -6247.9624 -6253.1111 5.1487088 3734.4012 632.93637 -10620.449 0 246.75502 0.00044748111 0.00041811016 + 110770 -6248.0123 -6253.0064 4.9940868 3731.0951 633.49541 -10617.597 0 239.34466 0.00055033797 0.00052976492 + 110780 -6248.047 -6252.9242 4.8772266 3727.5285 634.1599 -10614.613 0 233.74407 0.00067088431 0.00065903606 + 110790 -6247.9972 -6252.9797 4.9824751 3724.3418 634.76747 -10612.089 0 238.78816 0.000789842 0.00077898348 + 110800 -6247.8461 -6253.1667 5.3205306 3722.2747 635.17584 -10610.617 0 254.98968 0.00087901994 0.00085987259 + 110810 -6247.6477 -6253.3415 5.6938058 3722.0097 635.29132 -10610.643 0 272.87912 0.00090636346 0.00087587706 + 110820 -6247.4866 -6253.3262 5.8395226 3723.8757 635.08414 -10612.286 0 279.86269 0.00085040734 0.00081463271 + 110830 -6247.4102 -6253.0494 5.6391366 3727.5833 634.59735 -10615.23 0 270.25907 0.00071597255 0.0006854742 + 110840 -6247.387 -6252.6141 5.2271631 3732.1934 633.95149 -10618.759 0 250.51498 0.00053964504 0.00052093891 + 110850 -6247.3289 -6252.2358 4.906935 3736.3957 633.33655 -10621.968 0 235.16786 0.00037898193 0.0003688798 + 110860 -6247.1604 -6252.0893 4.9288788 3738.9903 632.97896 -10624.059 0 236.21953 0.0002899277 0.00027773655 + 110870 -6246.8804 -6252.1818 5.3014093 3739.3232 633.07992 -10624.585 0 254.07328 0.00030481743 0.00028116858 + 110880 -6246.5653 -6252.3604 5.7951645 3737.4549 633.73746 -10623.553 0 277.7368 0.00042272656 0.00038786724 + 110890 -6246.3051 -6252.4556 6.1505103 3734.0134 634.88083 -10621.35 0 294.76696 0.0006150221 0.00057903801 + 110900 -6246.1213 -6252.432 6.3106786 3729.8985 636.25398 -10618.584 0 302.44313 0.00083853309 0.00081267574 + 110910 -6245.9427 -6252.4048 6.4621351 3726.0508 637.47188 -10615.927 0 309.70177 0.0010458264 0.0010323542 + 110920 -6245.6671 -6252.504 6.8368896 3723.3586 638.13905 -10614.002 0 327.66211 0.0011892251 0.0011788599 + 110930 -6245.2573 -6252.712 7.4546492 3722.5884 637.98541 -10613.286 0 357.26862 0.0012245956 0.0012040662 + 110940 -6244.7872 -6252.8291 8.0418234 3724.1929 636.96403 -10613.986 0 385.4093 0.0011225294 0.0010859246 + 110950 -6244.3929 -6252.6105 8.2176119 3728.0066 635.27499 -10615.892 0 393.83407 0.00088639945 0.0008406418 + 110960 -6244.1628 -6251.9713 7.8085069 3733.0418 633.31263 -10618.326 0 374.22746 0.00056586654 0.0005253197 + 110970 -6244.0621 -6251.0881 7.0260386 3737.6378 631.5605 -10620.286 0 336.72719 0.00025128184 0.00022573611 + 110980 -6243.9618 -6250.3073 6.3454307 3740.0198 630.46831 -10620.795 0 304.10864 4.4640389e-05 3.0827744e-05 + 110990 -6243.7431 -6249.9202 6.1771115 3739.0352 630.33988 -10619.295 0 296.04184 1.9250366e-05 3.1873608e-06 + 111000 -6243.3859 -6249.9782 6.5923578 3734.6854 631.25179 -10615.915 0 315.94278 0.00018906382 0.00015746707 + 111010 -6242.9777 -6250.2884 7.3106762 3728.1613 633.0176 -10611.467 0 350.36863 0.00050339635 0.00045492163 + 111020 -6242.6389 -6250.5866 7.9477695 3721.3724 635.21267 -10607.172 0 380.90171 0.00086866246 0.00081570226 + 111030 -6242.4197 -6250.7436 8.3238781 3716.235 637.26984 -10604.248 0 398.92694 0.0011847121 0.0011439143 + 111040 -6242.2512 -6250.8373 8.5860416 3714.0771 638.63518 -10603.55 0 411.49129 0.0013770248 0.0013558402 + 111050 -6241.9978 -6251.04 9.0422778 3715.3907 638.94125 -10605.372 0 433.35669 0.0014112976 0.0014014606 + 111060 -6241.5761 -6251.4127 9.8366016 3719.9066 638.13449 -10609.454 0 471.42514 0.0012904063 0.0012742092 + 111070 -6241.0486 -6251.7882 10.739612 3726.774 636.50181 -10615.064 0 514.70246 0.0010450842 0.0010100382 + 111080 -6240.6018 -6251.8689 11.267079 3734.6593 634.57815 -10621.106 0 539.98164 0.00072937535 0.00067905148 + 111090 -6240.4065 -6251.4743 11.067819 3741.8118 632.96779 -10626.254 0 530.43198 0.00041969304 0.00037062615 + 111100 -6240.4779 -6250.7171 10.23927 3746.3284 632.151 -10629.197 0 490.72329 0.00020453326 0.00017138388 + 111110 -6240.6795 -6249.9338 9.2543049 3746.7286 632.34845 -10629.011 0 443.51822 0.00015636957 0.00013910543 + 111120 -6240.8664 -6249.4278 8.5613767 3742.6144 633.47881 -10625.521 0 410.30921 0.00029686699 0.00028185101 + 111130 -6241.0161 -6249.2616 8.2454366 3734.9927 635.20267 -10619.457 0 395.16759 0.00057987502 0.00055302545 + 111140 -6241.2259 -6249.2773 8.0513814 3725.9866 637.02549 -10612.289 0 385.86737 0.00090781486 0.00086695417 + 111150 -6241.5976 -6249.3002 7.702598 3718.0497 638.43034 -10605.78 0 369.15171 0.001173684 0.001129214 + 111160 -6242.1329 -6249.3192 7.186259 3713.1043 639.01188 -10601.435 0 344.40585 0.0013032875 0.001267986 + 111170 -6242.7364 -6249.4906 6.7541673 3712.0251 638.58005 -10600.096 0 323.69759 0.0012747525 0.0012528418 + 111180 -6243.3049 -6249.9827 6.6778165 3714.6166 637.20563 -10601.805 0 320.03844 0.0011112316 0.0010959804 + 111190 -6243.8115 -6250.8081 6.9965828 3719.9278 635.19592 -10605.932 0 335.3155 0.0008602092 0.00084094501 + 111200 -6244.3131 -6251.7833 7.4701576 3726.6253 633.00807 -10611.417 0 358.01187 0.00057593506 0.00054750075 + 111210 -6244.8838 -6252.6474 7.7636051 3733.2524 631.12479 -10617.025 0 372.07552 0.00031185942 0.0002781471 + 111220 -6245.5365 -6253.2303 7.6937458 3738.4115 629.93099 -10621.573 0 368.72747 0.00011790951 8.7077502e-05 + 111230 -6246.2074 -6253.5235 7.3160495 3740.9946 629.63224 -10624.15 0 350.62614 3.3874726e-05 1.0795416e-05 + 111240 -6246.8099 -6253.6139 6.8040428 3740.4675 630.23382 -10624.315 0 326.08791 7.7819034e-05 6.1028555e-05 + 111250 -6247.296 -6253.5763 6.2802804 3737.0625 631.56838 -10622.207 0 300.98627 0.00023746347 0.00022213071 + 111260 -6247.6702 -6253.4337 5.7634675 3731.7362 633.34718 -10618.517 0 276.2177 0.00047211142 0.00045465513 + 111270 -6247.9604 -6253.1968 5.2364776 3725.8957 635.21751 -10614.31 0 250.96139 0.00072466005 0.00070457554 + 111280 -6248.1879 -6252.9133 4.725356 3721.0184 636.8216 -10610.753 0 226.46557 0.00093703376 0.0009155307 + 111290 -6248.361 -6252.6687 4.3077653 3718.3001 637.85621 -10608.825 0 206.45228 0.0010628908 0.0010408798 + 111300 -6248.4844 -6252.5469 4.0624723 3718.4018 638.12861 -10609.077 0 194.69647 0.0010757406 0.0010532459 + 111310 -6248.5692 -6252.5873 4.0181352 3721.316 637.59934 -10611.503 0 192.57158 0.00097337276 0.00095037316 + 111320 -6248.6313 -6252.7713 4.1400752 3726.3651 636.39957 -10615.536 0 198.41563 0.00077902579 0.00075646145 + 111330 -6248.683 -6253.0409 4.3579219 3732.3394 634.81108 -10620.191 0 208.85607 0.00053818069 0.00051791369 + 111340 -6248.722 -6253.3351 4.6131808 3737.7631 633.20405 -10624.302 0 221.08951 0.00030958199 0.00029293564 + 111350 -6248.7288 -6253.6161 4.8872812 3741.2534 631.94396 -10626.813 0 234.22594 0.00015059253 0.00013649839 + 111360 -6248.6825 -6253.8593 5.1767388 3741.8977 631.295 -10627.052 0 248.09837 0.00010007431 8.4928379e-05 + 111370 -6248.5842 -6254.0233 5.4390889 3739.5278 631.35132 -10624.902 0 260.67166 0.00016546082 0.00014564795 + 111380 -6248.4636 -6254.0464 5.5828282 3734.7612 632.01709 -10620.825 0 267.56045 0.00032085601 0.00029591736 + 111390 -6248.3567 -6253.8873 5.5305222 3728.7835 633.04101 -10615.712 0 265.05366 0.00051742313 0.00049067523 + 111400 -6248.276 -6253.5681 5.292096 3722.9824 634.09478 -10610.645 0 253.62694 0.00070018574 0.0006761129 + 111410 -6248.2017 -6253.1727 4.9710541 3718.5928 634.8705 -10606.636 0 238.2408 0.00082332708 0.00080423567 + 111420 -6248.0996 -6252.8019 4.7023108 3716.4507 635.16453 -10604.417 0 225.36112 0.0008597326 0.00084441628 + 111430 -6247.9432 -6252.5257 4.5824445 3716.8706 634.92337 -10604.32 0 219.61645 0.00080475527 0.00078969063 + 111440 -6247.7253 -6252.3653 4.6399803 3719.6284 634.24428 -10606.238 0 222.37389 0.0006754394 0.00065715973 + 111450 -6247.4561 -6252.3018 4.8456598 3724.0371 633.33912 -10609.678 0 232.23121 0.00050584336 0.00048299868 + 111460 -6247.1547 -6252.2983 5.1435927 3729.0986 632.47704 -10613.874 0 246.50982 0.00033926729 0.00031346507 + 111470 -6246.8344 -6252.3299 5.4954333 3733.7007 631.92027 -10617.951 0 263.372 0.00021931308 0.0001940579 + 111480 -6246.4858 -6252.4067 5.9209381 3736.8307 631.86565 -10621.103 0 283.76458 0.00018156489 0.00015928622 + 111490 -6246.0772 -6252.561 6.483724 3737.8026 632.40404 -10622.768 0 310.73643 0.00024575747 0.00022500195 + 111500 -6245.5886 -6252.7811 7.1924855 3736.4684 633.50471 -10622.754 0 344.70426 0.00040810624 0.00038428669 + 111510 -6245.0547 -6252.9523 7.897649 3733.3105 635.02017 -10621.283 0 378.49965 0.00063721106 0.00060748335 + 111520 -6244.565 -6252.8911 8.326078 3729.2993 636.70143 -10618.892 0 399.03238 0.00087963514 0.00084729378 + 111530 -6244.1993 -6252.4764 8.277102 3725.546 638.22373 -10616.246 0 396.68517 0.001076362 0.0010492515 + 111540 -6243.956 -6251.766 7.8099971 3722.9387 639.23558 -10613.94 0 374.29888 0.0011819014 0.0011651826 + 111550 -6243.753 -6250.985 7.231978 3721.9522 639.43718 -10612.374 0 346.59697 0.0011748894 0.0011648043 + 111560 -6243.5012 -6250.385 6.8838005 3722.6572 638.67298 -10611.715 0 329.91035 0.0010568681 0.0010418336 + 111570 -6243.1846 -6250.0852 6.9005466 3724.8094 637.00558 -10611.9 0 330.71291 0.00084596295 0.00081504989 + 111580 -6242.8807 -6250.0174 7.1367134 3727.8868 634.73736 -10612.642 0 342.03135 0.00057434939 0.00052685865 + 111590 -6242.7005 -6250.0217 7.321281 3731.0594 632.35775 -10613.439 0 350.87687 0.00029154664 0.00023948646 + 111600 -6242.6876 -6250.0225 7.3349257 3733.2128 630.41735 -10613.653 0 351.5308 6.559915e-05 2.5206652e-05 + 111610 -6242.7623 -6250.1235 7.3611305 3733.208 629.36545 -10612.697 0 352.78668 -3.0292033e-05 -5.2412688e-05 + 111620 -6242.785 -6250.4998 7.7148441 3730.4171 629.41581 -10610.333 0 369.73862 5.0831925e-05 3.7479294e-05 + 111630 -6242.695 -6251.1683 8.4733611 3725.2598 630.49171 -10606.92 0 406.09101 0.00029689187 0.00027523994 + 111640 -6242.5832 -6251.8955 9.3123777 3719.2726 632.25567 -10603.424 0 446.30139 0.00063040357 0.00059152042 + 111650 -6242.6101 -6252.369 9.7589338 3714.5208 634.20417 -10601.094 0 467.70286 0.00093976576 0.00088984927 + 111660 -6242.857 -6252.4472 9.5902087 3712.7032 635.80998 -10600.96 0 459.61661 0.0011282809 0.0010812235 + 111670 -6243.2667 -6252.235 8.9682729 3714.5029 636.6826 -10603.42 0 429.80996 0.0011494213 0.0011143118 + 111680 -6243.7146 -6251.9547 8.240118 3719.4538 636.6924 -10608.101 0 394.91269 0.0010139334 0.00098935296 + 111690 -6244.1117 -6251.7678 7.6560511 3726.2264 636.00613 -10614 0 366.92093 0.00077604323 0.00075387972 + 111700 -6244.448 -6251.6919 7.2438277 3733.0918 635.0183 -10619.802 0 347.16487 0.00051214892 0.0004853655 + 111710 -6244.7637 -6251.6397 6.8759914 3738.3858 634.20407 -10624.23 0 329.53609 0.00029957811 0.00026729647 + 111720 -6245.0946 -6251.5211 6.4264839 3740.8877 633.94492 -10626.354 0 307.99317 0.0001974982 0.00016453507 + 111730 -6245.4366 -6251.3291 5.8925271 3740.0736 634.38652 -10625.789 0 282.40296 0.00023177962 0.00020407125 + 111740 -6245.7479 -6251.1586 5.4106451 3736.2201 635.37982 -10622.759 0 259.30847 0.00038750138 0.0003671984 + 111750 -6245.9814 -6251.1502 5.1687175 3730.3422 636.53095 -10618.023 0 247.71394 0.0006124972 0.00059627958 + 111760 -6246.1196 -6251.3983 5.2787391 3723.963 637.34482 -10612.706 0 252.9868 0.00083218648 0.00081389938 + 111770 -6246.1888 -6251.8881 5.6993169 3718.7276 637.40785 -10608.024 0 273.14325 0.00097212696 0.00094759677 + 111780 -6246.2433 -6252.5019 6.2585079 3715.9336 636.53852 -10604.974 0 299.94281 0.00098175189 0.00095202399 + 111790 -6246.3319 -6253.0838 6.7518189 3716.1297 634.85056 -10604.064 0 323.58505 0.00085128815 0.00082191828 + 111800 -6246.4677 -6253.5111 7.0433995 3718.9528 632.71109 -10605.175 0 337.55922 0.00061517875 0.00059225911 + 111810 -6246.6218 -6253.7327 7.1108769 3723.2843 630.61644 -10607.633 0 340.79312 0.00034001527 0.00032576644 + 111820 -6246.7443 -6253.7622 7.0179565 3727.664 629.03741 -10610.464 0 336.33985 0.00010124573 9.2078108e-05 + 111830 -6246.7984 -6253.6383 6.8399415 3730.7923 628.29165 -10612.722 0 327.80837 -4.2273035e-05 -5.3859202e-05 + 111840 -6246.7882 -6253.383 6.5948434 3731.925 628.48155 -10613.79 0 316.0619 -6.5684445e-05 -8.629367e-05 + 111850 -6246.7579 -6252.9937 6.2357864 3731.0168 629.50483 -10613.515 0 298.85387 1.9377932e-05 -1.1307918e-05 + 111860 -6246.7606 -6252.4813 5.720692 3728.5856 631.11634 -10612.183 0 274.16766 0.00017704341 0.00014178737 + 111870 -6246.817 -6251.9229 5.1058804 3725.4103 633.00775 -10610.341 0 244.70244 0.00036622851 0.00033464793 + 111880 -6246.8974 -6251.4694 4.5719429 3722.252 634.87695 -10608.598 0 219.11316 0.00055497335 0.00053209339 + 111890 -6246.9438 -6251.2802 4.3364028 3719.7337 636.47301 -10607.487 0 207.82476 0.00072292179 0.00070722724 + 111900 -6246.9135 -6251.4265 4.5129174 3718.3592 637.61508 -10607.401 0 216.28433 0.00085441421 0.0008397942 + 111910 -6246.8069 -6251.8452 5.0383296 3718.5313 638.19 -10608.566 0 241.46502 0.00093175423 0.00091257506 + 111920 -6246.6579 -6252.387 5.7291197 3720.463 638.14116 -10610.991 0 274.57156 0.00093640528 0.00091100887 + 111930 -6246.5033 -6252.9067 6.4034072 3724.0221 637.4662 -10614.395 0 306.8872 0.00085747667 0.00082767329 + 111940 -6246.3624 -6253.3164 6.954062 3728.637 636.23342 -10618.187 0 333.27767 0.0007005922 0.00066895878 + 111950 -6246.242 -6253.5736 7.331597 3733.3506 634.60628 -10621.531 0 351.37127 0.00049118109 0.00045945555 + 111960 -6246.1515 -6253.6475 7.4959762 3737.0116 632.85093 -10623.51 0 359.24924 0.0002712109 0.00024079742 + 111970 -6246.1021 -6253.5159 7.4138497 3738.5369 631.30513 -10623.358 0 355.31327 9.1405263e-05 6.4145806e-05 + 111980 -6246.0908 -6253.1945 7.1036998 3737.1922 630.30526 -10620.692 0 340.44915 1.0165673e-07 -2.2584236e-05 + 111990 -6246.0928 -6252.7516 6.6587202 3732.85 630.08814 -10615.69 0 319.12324 2.8750803e-05 9.8876253e-06 + 112000 -6246.0773 -6252.2793 6.2019729 3726.1528 630.69791 -10609.13 0 297.23334 0.00017707971 0.00015891221 + 112010 -6246.0315 -6251.85 5.8184734 3718.4725 631.93685 -10602.259 0 278.85389 0.0004059532 0.00038505478 + 112020 -6245.9661 -6251.5014 5.5352275 3711.6084 633.39627 -10596.506 0 265.27916 0.0006453818 0.0006204647 + 112030 -6245.9004 -6251.2563 5.3559219 3707.2968 634.57692 -10593.13 0 256.68583 0.0008170159 0.00078957552 + 112040 -6245.8419 -6251.1442 5.3023049 3706.6997 635.0622 -10592.906 0 254.1162 0.00086184834 0.00083470636 + 112050 -6245.7792 -6251.2014 5.4221715 3710.0492 634.67355 -10595.924 0 259.86088 0.00076135633 0.00073642028 + 112060 -6245.6887 -6251.4465 5.7577583 3716.5645 633.54324 -10601.554 0 275.94408 0.00054413486 0.00052109602 + 112070 -6245.5534 -6251.8495 6.29605 3724.6629 632.07722 -10608.59 0 301.74204 0.00027664834 0.00025364409 + 112080 -6245.3789 -6252.321 6.942101 3732.385 630.82301 -10615.529 0 332.70443 4.2633982e-05 1.8323002e-05 + 112090 -6245.1906 -6252.7447 7.5540535 3737.897 630.28789 -10620.93 0 362.03263 -8.1330559e-05 -0.00010643142 + 112100 -6245.011 -6253.038 8.0270053 3739.9412 630.76819 -10623.747 0 384.69913 -4.7463187e-05 -7.220842e-05 + 112110 -6244.8415 -6253.1848 8.3432712 3738.1589 632.24948 -10623.593 0 399.85637 0.00014817643 0.0001229254 + 112120 -6244.677 -6253.2003 8.5232901 3733.2196 634.41123 -10620.831 0 408.48389 0.0004603421 0.00043125865 + 112130 -6244.5352 -6253.0693 8.5341201 3726.6658 636.72619 -10616.461 0 409.00292 0.00080365403 0.00076812014 + 112140 -6244.4597 -6252.7398 8.2800401 3720.4341 638.61207 -10611.786 0 396.82598 0.0010780995 0.0010378278 + 112150 -6244.4849 -6252.1853 7.700392 3716.2008 639.5887 -10607.975 0 369.04599 0.0012033242 0.001164309 + 112160 -6244.6001 -6251.469 6.8688685 3714.8408 639.40085 -10605.711 0 329.19472 0.0011459526 0.0011145481 + 112170 -6244.7511 -6250.7459 5.994859 3716.2373 638.07467 -10605.058 0 287.30728 0.00092721481 0.00090579876 + 112180 -6244.8728 -6250.2064 5.3336177 3719.4668 635.89199 -10605.565 0 255.61689 0.00060999363 0.0005954272 + 112190 -6244.924 -6250.0026 5.0785751 3723.2143 633.29811 -10606.515 0 243.39381 0.00027462147 0.00026006309 + 112200 -6244.903 -6250.1938 5.2908232 3726.2227 630.7831 -10607.2 0 253.56593 -5.1902232e-06 -2.6514713e-05 + 112210 -6244.8467 -6250.7265 5.8797666 3727.6298 628.77641 -10607.133 0 281.79141 -0.00017898891 -0.000209916 + 112220 -6244.8159 -6251.4545 6.6386138 3727.123 627.57446 -10606.152 0 318.15962 -0.00022632344 -0.0002636805 + 112230 -6244.8673 -6252.2022 7.3348859 3724.9075 627.30255 -10604.412 0 351.52889 -0.00015447062 -0.00019048261 + 112240 -6245.021 -6252.8395 7.8184451 3721.5609 627.90823 -10602.309 0 374.70376 9.3337011e-06 -1.7827552e-05 + 112250 -6245.2494 -6253.3183 8.0689006 3717.8738 629.18675 -10600.379 0 386.70699 0.00022610104 0.0002096947 + 112260 -6245.5045 -6253.6416 8.1370478 3714.7316 630.83523 -10599.208 0 389.97299 0.00045050672 0.0004397028 + 112270 -6245.7625 -6253.8008 8.0382506 3712.9983 632.52275 -10599.322 0 385.23807 0.00063520764 0.0006217613 + 112280 -6246.0396 -6253.7519 7.712288 3713.3314 633.95887 -10601.042 0 369.61611 0.00073861594 0.00071732764 + 112290 -6246.3648 -6253.4578 7.0930068 3715.9435 634.94851 -10604.35 0 339.93669 0.00073713196 0.00070910258 + 112300 -6246.7393 -6252.9528 6.2135691 3720.435 635.42452 -10608.812 0 297.7891 0.00063604678 0.00060686886 + 112310 -6247.1234 -6252.367 5.2436243 3725.8254 635.44854 -10613.641 0 251.3039 0.00047094534 0.00044590208 + 112320 -6247.4611 -6251.8855 4.4244042 3730.8102 635.1763 -10617.872 0 212.04227 0.00029636644 0.0002765754 + 112330 -6247.7165 -6251.6634 3.9469043 3734.1539 634.79847 -10620.616 0 189.1578 0.00016622557 0.00014848318 + 112340 -6247.8959 -6251.7491 3.853133 3735.0618 634.47853 -10621.289 0 184.66375 0.00011518602 9.5386364e-05 + 112350 -6248.0405 -6252.0718 4.0313168 3733.3829 634.30446 -10619.759 0 193.20332 0.00014935359 0.00012645709 + 112360 -6248.1922 -6252.5088 4.3166001 3729.5817 634.26257 -10616.353 0 206.8757 0.00024900661 0.00022581184 + 112370 -6248.3606 -6252.9765 4.6158396 3724.5428 634.24001 -10611.759 0 221.21693 0.00037884507 0.00035870099 + 112380 -6248.5191 -6253.4592 4.9401792 3719.3423 634.0622 -10606.864 0 236.76111 0.00049825483 0.00048111301 + 112390 -6248.6376 -6253.9574 5.3197441 3715.057 633.56008 -10602.575 0 254.95199 0.00056833402 0.00055040854 + 112400 -6248.7185 -6254.4214 5.7029561 3712.5816 632.6452 -10599.648 0 273.31766 0.00055861571 0.00053603026 + 112410 -6248.7969 -6254.751 5.9540906 3712.4119 631.36272 -10598.526 0 285.35343 0.00045640187 0.00042899563 + 112420 -6248.9088 -6254.8562 5.9473722 3714.4574 629.90091 -10599.214 0 285.03145 0.0002754672 0.00024709676 + 112430 -6249.0591 -6254.7171 5.6580196 3718.0117 628.55213 -10601.281 0 271.16404 5.6862118e-05 3.2331452e-05 + 112440 -6249.2192 -6254.3903 5.1710333 3721.9538 627.63653 -10603.981 0 247.82493 -0.00014194841 -0.00016024427 + 112450 -6249.3507 -6253.97 4.6192738 3725.1117 627.41111 -10606.493 0 221.38152 -0.00026576539 -0.00027888805 + 112460 -6249.4288 -6253.5453 4.1165106 3726.633 627.99239 -10608.171 0 197.28628 -0.00027964172 -0.00029076019 + 112470 -6249.451 -6253.181 3.7300082 3726.2252 629.3176 -10608.724 0 178.76292 -0.0001789433 -0.00019118035 + 112480 -6249.4297 -6252.919 3.4893083 3724.2002 631.15666 -10608.276 0 167.22723 1.1025518e-05 -3.9083354e-06 + 112490 -6249.3796 -6252.7867 3.4071127 3721.3364 633.16969 -10607.293 0 163.28796 0.00024405963 0.00022670004 + 112500 -6249.3062 -6252.8004 3.4942237 3718.619 634.99036 -10606.41 0 167.46281 0.00046673443 0.0004483782 + 112510 -6249.2008 -6252.9603 3.7595049 3716.9485 636.31024 -10606.219 0 180.17657 0.00063224248 0.00061444016 + 112520 -6249.0425 -6253.2379 4.1953771 3716.9029 636.94206 -10607.083 0 201.06601 0.00071076956 0.00069456095 + 112530 -6248.8061 -6253.5704 4.7642052 3718.6033 636.84684 -10609.021 0 228.32744 0.00069450008 0.00068040013 + 112540 -6248.4683 -6253.8736 5.405312 3721.6932 636.1214 -10611.688 0 259.05288 0.00059698049 0.00058499427 + 112550 -6248.0113 -6254.0713 6.0600165 3725.4237 634.95627 -10614.451 0 290.42999 0.00044755791 0.00043664163 + 112560 -6247.4299 -6254.114 6.6841117 3728.8352 633.58351 -10616.533 0 320.34014 0.00028241271 0.00026992191 + 112570 -6246.7461 -6253.9736 7.2275237 3731.0001 632.23201 -10617.206 0 346.38349 0.00013495652 0.00011742661 + 112580 -6246.0187 -6253.6284 7.6097544 3731.252 631.09596 -10615.976 0 364.70213 2.9228792e-05 4.716341e-06 + 112590 -6245.3301 -6253.071 7.740948 3729.3194 630.31378 -10612.704 0 370.98966 -2.1573476e-05 -5.1498937e-05 + 112600 -6244.7485 -6252.3351 7.5865664 3725.3469 629.95577 -10607.638 0 363.59083 -1.3094377e-05 -4.3866296e-05 + 112610 -6244.2961 -6251.5086 7.2125646 3719.8534 630.02152 -10601.384 0 345.66656 5.1665495e-05 2.4806311e-05 + 112620 -6243.9471 -6250.7153 6.7682725 3713.6669 630.4446 -10594.827 0 324.3736 0.00016147669 0.00014062127 + 112630 -6243.6515 -6250.0821 6.4305446 3707.827 631.0983 -10589.007 0 308.18778 0.0002955675 0.00027895364 + 112640 -6243.3626 -6249.7084 6.3457817 3703.4333 631.80462 -10584.946 0 304.12546 0.00042453403 0.0004074072 + 112650 -6243.0602 -6249.6385 6.5783296 3701.4473 632.35931 -10583.445 0 315.27047 0.00051460267 0.0004919025 + 112660 -6242.7631 -6249.8435 7.0803741 3702.4703 632.58265 -10584.896 0 339.33125 0.00053566833 0.00050549356 + 112670 -6242.5174 -6250.2376 7.7201894 3706.5277 632.38604 -10589.151 0 369.99479 0.00047266985 0.00043805771 + 112680 -6242.3619 -6250.7302 8.3683644 3712.9331 631.8269 -10595.49 0 401.05898 0.00033642259 0.00030325792 + 112690 -6242.2985 -6251.2661 8.9676369 3720.3497 631.12197 -10602.738 0 429.77948 0.00016654558 0.00013866954 + 112700 -6242.3006 -6251.8097 9.5091202 3727.1119 630.60219 -10609.524 0 455.73039 2.1181809e-05 -2.9575531e-06 + 112710 -6242.3529 -6252.2912 9.9382426 3731.7193 630.61344 -10614.624 0 476.29635 -4.3740252e-05 -6.9438929e-05 + 112720 -6242.4786 -6252.5847 10.106091 3733.2851 631.38958 -10617.259 0 484.3406 4.3138826e-06 -2.6685097e-05 + 112730 -6242.7177 -6252.563 9.8453061 3731.7455 632.9431 -10617.252 0 471.84231 0.00016292929 0.00012833903 + 112740 -6243.0768 -6252.192 9.1152629 3727.7824 635.02215 -10614.997 0 436.85455 0.00039644068 0.00036425513 + 112750 -6243.5023 -6251.5845 8.0821645 3722.5565 637.16057 -10611.302 0 387.34267 0.00064758371 0.0006230331 + 112760 -6243.9062 -6250.9648 7.0585767 3717.3839 638.80612 -10607.155 0 338.2866 0.00085290435 0.00083595442 + 112770 -6244.2194 -6250.5642 6.3447346 3713.4484 639.47891 -10603.491 0 304.07528 0.00095703859 0.00094212823 + 112780 -6244.4317 -6250.5102 6.078453 3711.5791 638.90783 -10600.997 0 291.31357 0.0009241797 0.00090446228 + 112790 -6244.5923 -6250.7792 6.1868695 3712.0777 637.10832 -10599.965 0 296.5095 0.0007471944 0.00072009898 + 112800 -6244.7729 -6251.2409 6.4680021 3714.606 634.38443 -10600.231 0 309.98295 0.00045368829 0.00042333932 + 112810 -6245.0161 -6251.759 6.7429173 3718.2015 631.2554 -10601.216 0 323.15843 0.00010498038 7.9143597e-05 + 112820 -6245.306 -6252.2676 6.9615494 3721.5085 628.32755 -10602.104 0 333.63651 -0.00021682525 -0.00023312508 + 112830 -6245.5859 -6252.7632 7.177354 3723.221 626.14891 -10602.133 0 343.97907 -0.00043321913 -0.00044206525 + 112840 -6245.8105 -6253.2329 7.4223907 3722.5797 625.086 -10600.899 0 355.72261 -0.00049620315 -0.00050521014 + 112850 -6245.9868 -6253.5992 7.6124186 3719.6794 625.24994 -10598.529 0 364.82981 -0.00040458108 -0.00042069468 + 112860 -6246.1635 -6253.747 7.5835371 3715.4188 626.48486 -10595.651 0 363.44565 -0.00020120727 -0.00022536527 + 112870 -6246.3825 -6253.6094 7.2268869 3711.1286 628.4225 -10593.161 0 346.35297 4.6343407e-05 1.9284124e-05 + 112880 -6246.6403 -6253.2312 6.5908511 3708.0884 630.5925 -10591.912 0 315.87057 0.00027061573 0.00024728368 + 112890 -6246.8915 -6252.7536 5.8621064 3707.149 632.55566 -10592.458 0 280.94503 0.00042333283 0.00040688432 + 112900 -6247.0844 -6252.3382 5.2537402 3708.566 634.01403 -10594.918 0 251.78871 0.00048369438 0.00047220023 + 112910 -6247.1952 -6252.0888 4.8936168 3712.0235 634.86179 -10598.974 0 234.52958 0.00045729105 0.00044593144 + 112920 -6247.2367 -6252.0198 4.7831633 3716.7731 635.16866 -10603.962 0 229.23602 0.00036948402 0.00035433401 + 112930 -6247.2446 -6252.0805 4.8359398 3721.8226 635.11239 -10609.016 0 231.76537 0.00025639835 0.00023701492 + 112940 -6247.2527 -6252.2099 4.9572361 3726.1376 634.8908 -10613.238 0 237.57857 0.00015526429 0.0001345255 + 112950 -6247.2723 -6252.3819 5.1095585 3728.8432 634.64518 -10615.87 0 244.87871 9.5243569e-05 7.6844331e-05 + 112960 -6247.2887 -6252.6127 5.3239995 3729.4045 634.41912 -10616.436 0 255.15593 9.0128905e-05 7.5637615e-05 + 112970 -6247.2758 -6252.9293 5.6534484 3727.7522 634.16218 -10614.844 0 270.94497 0.00013465314 0.00012226771 + 112980 -6247.2204 -6253.323 6.1026002 3724.31 633.77083 -10611.404 0 292.47084 0.00020598177 0.00019191324 + 112990 -6247.1374 -6253.7263 6.5889145 3719.8875 633.14653 -10606.76 0 315.77775 0.00027096072 0.00025239981 + 113000 -6247.0641 -6254.0331 6.9690103 3715.4499 632.2479 -10601.731 0 333.99408 0.000297639 0.00027497282 + 113010 -6247.0346 -6254.149 7.1143727 3711.8374 631.11971 -10597.106 0 340.96066 0.00026707474 0.00024360298 + 113020 -6247.0568 -6254.037 6.9801977 3709.5472 629.89124 -10593.475 0 334.53024 0.00018029892 0.00015975762 + 113030 -6247.1076 -6253.7268 6.6192148 3708.6638 628.74616 -10591.137 0 317.22991 5.7157088e-05 4.1072795e-05 + 113040 -6247.1509 -6253.2908 6.1398408 3708.9422 627.87499 -10590.108 0 294.25562 -7.2074554e-05 -8.5263094e-05 + 113050 -6247.1607 -6252.8094 5.6486372 3709.976 627.42681 -10590.212 0 270.71439 -0.00017772485 -0.00019140736 + 113060 -6247.1329 -6252.3497 5.2168313 3711.3641 627.47618 -10591.19 0 250.01983 -0.00023921937 -0.00025634221 + 113070 -6247.0823 -6251.9636 4.8813081 3712.8133 628.01354 -10592.79 0 233.93967 -0.00024823183 -0.00026950649 + 113080 -6247.0293 -6251.6959 4.6665783 3714.1608 628.95712 -10594.814 0 223.64862 -0.00020690665 -0.00023045882 + 113090 -6246.9846 -6251.5931 4.6085407 3715.3376 630.1772 -10597.108 0 220.86713 -0.00012362719 -0.00014626349 + 113100 -6246.9393 -6251.6996 4.7602768 3716.3187 631.52329 -10599.542 0 228.13917 -9.3235229e-06 -2.870797e-05 + 113110 -6246.8706 -6252.0339 5.1633442 3717.1047 632.84769 -10601.986 0 247.45643 0.00012357783 0.0001073673 + 113120 -6246.76 -6252.5541 5.7941131 3717.7399 634.02199 -10604.316 0 277.68641 0.00025981389 0.0002446949 + 113130 -6246.6126 -6253.1461 6.5334868 3718.3213 634.9442 -10606.412 0 313.12135 0.00038041349 0.0003642909 + 113140 -6246.456 -6253.6598 7.2037369 3718.9535 635.53799 -10608.151 0 345.24349 0.00046516545 0.00044745966 + 113150 -6246.3208 -6253.971 7.6502003 3719.6712 635.7508 -10609.393 0 366.64052 0.00049792713 0.00047926383 + 113160 -6246.2239 -6254.0208 7.7968687 3720.3893 635.55786 -10609.968 0 373.6697 0.00047132537 0.00045232264 + 113170 -6246.1688 -6253.8122 7.6433773 3720.9161 634.97163 -10609.7 0 366.31353 0.00038852003 0.00036940321 + 113180 -6246.1524 -6253.3919 7.2395732 3721.002 634.04958 -10608.444 0 346.96097 0.00026274351 0.00024391603 + 113190 -6246.1657 -6252.8419 6.6761615 3720.3962 632.89447 -10606.133 0 319.95912 0.00011583806 9.8158225e-05 + 113200 -6246.193 -6252.2741 6.0810756 3718.912 631.64561 -10602.832 0 291.43926 -2.4811825e-05 -4.0635656e-05 + 113210 -6246.2146 -6251.8091 5.5945502 3716.51 630.46063 -10598.78 0 268.12224 -0.00013203941 -0.00014620077 + 113220 -6246.2152 -6251.5407 5.3255723 3713.3703 629.48725 -10594.398 0 255.23131 -0.00018649662 -0.000200111 + 113230 -6246.1901 -6251.5063 5.3161714 3709.9145 628.82916 -10590.25 0 254.78076 -0.00018315735 -0.00019749951 + 113240 -6246.1458 -6251.6791 5.5333041 3706.7475 628.51785 -10586.944 0 265.18698 -0.00013350598 -0.00014906643 + 113250 -6246.0945 -6251.9861 5.8915747 3704.5255 628.50478 -10585.016 0 282.35732 -6.1794928e-05 -7.7883315e-05 + 113260 -6246.0463 -6252.3437 6.2974036 3703.781 628.68153 -10584.806 0 301.80692 3.5531554e-06 -1.1838786e-05 + 113270 -6246.0013 -6252.6906 6.6892312 3704.763 628.92383 -10586.377 0 320.58549 3.9737472e-05 2.5352218e-05 + 113280 -6245.9528 -6252.9925 7.0396922 3707.3534 629.14505 -10589.491 0 337.38155 3.6272813e-05 2.1353634e-05 + 113290 -6245.901 -6253.2168 7.315772 3711.0898 629.33794 -10593.645 0 350.61284 -3.2918551e-06 -2.1188337e-05 + 113300 -6245.8647 -6253.3121 7.4474294 3715.2666 629.58319 -10598.162 0 356.9226 -6.3097581e-05 -8.4953163e-05 + 113310 -6245.8692 -6253.2282 7.3589439 3719.0654 630.01464 -10602.308 0 352.68188 -0.00011807493 -0.00014204567 + 113320 -6245.9217 -6252.9651 7.0434693 3721.7039 630.75326 -10605.422 0 337.56257 -0.00013897776 -0.00016173424 + 113330 -6245.9988 -6252.5982 6.599336 3722.6156 631.83989 -10607.054 0 316.27721 -0.00010108521 -0.00012064942 + 113340 -6246.0636 -6252.247 6.1834093 3721.6304 633.19644 -10607.074 0 296.34367 4.8816784e-06 -1.2420985e-05 + 113350 -6246.0913 -6252.0161 5.9248519 3719.073 634.62771 -10605.717 0 283.95215 0.00016505855 0.00014713326 + 113360 -6246.0825 -6251.954 5.8714588 3715.7033 635.85898 -10603.516 0 281.39325 0.00034303881 0.00032189369 + 113370 -6246.0569 -6252.0489 5.9919582 3712.501 636.59741 -10601.147 0 287.16826 0.00048940573 0.00046441038 + 113380 -6246.0394 -6252.2483 6.2089726 3710.3695 636.60421 -10599.222 0 297.5688 0.00055661744 0.0005294751 + 113390 -6246.0483 -6252.4867 6.4383693 3709.8528 635.76185 -10598.101 0 308.56278 0.00051430606 0.00048824151 + 113400 -6246.0869 -6252.714 6.6270968 3710.9523 634.11898 -10597.785 0 317.60766 0.0003603979 0.00033842916 + 113410 -6246.1399 -6252.9126 6.7726879 3713.1124 631.89978 -10597.925 0 324.5852 0.00012407915 0.00010705378 + 113420 -6246.1846 -6253.0853 6.9007022 3715.4029 629.47226 -10597.96 0 330.72037 -0.0001415167 -0.00015569127 + 113430 -6246.2095 -6253.221 7.0114865 3716.842 627.27717 -10597.34 0 336.02977 -0.00037496848 -0.00038990685 + 113440 -6246.2261 -6253.2762 7.0501429 3716.7285 625.72707 -10595.732 0 337.88241 -0.0005246284 -0.00054278651 + 113450 -6246.2588 -6253.1961 6.9372855 3714.8556 625.09786 -10593.15 0 332.47365 -0.00056251035 -0.00058347258 + 113460 -6246.3243 -6252.9596 6.6353006 3711.5588 625.44865 -10589.967 0 318.00084 -0.00049017547 -0.00051121986 + 113470 -6246.4164 -6252.6094 6.1929806 3707.6105 626.60456 -10586.824 0 296.80238 -0.00033604938 -0.00035434068 + 113480 -6246.5091 -6252.2468 5.7376758 3704.0126 628.21475 -10584.474 0 274.98162 -0.0001458425 -0.00016062453 + 113490 -6246.5712 -6251.9931 5.4218675 3701.741 629.86668 -10583.601 0 259.84631 3.0653179e-05 1.7251393e-05 + 113500 -6246.5859 -6251.9344 5.3485551 3701.5073 631.21428 -10584.656 0 256.33277 0.00015242121 0.00013665534 + 113510 -6246.564 -6252.0763 5.5122882 3703.5809 632.07417 -10587.731 0 264.17978 0.00019682269 0.00017624582 + 113520 -6246.5413 -6252.3433 5.8020145 3707.6921 632.45739 -10592.493 0 278.06509 0.00016489658 0.00014090935 + 113530 -6246.5517 -6252.6353 6.0835953 3713.0339 632.52859 -10598.198 0 291.56002 8.1661e-05 5.9078102e-05 + 113540 -6246.5963 -6252.9019 6.3055854 3718.4098 632.5135 -10603.825 0 302.19903 -1.0601268e-05 -2.7506495e-05 + 113550 -6246.6388 -6253.1625 6.523646 3722.5525 632.59634 -10608.311 0 312.64972 -6.7558756e-05 -7.9299312e-05 + 113560 -6246.641 -6253.4459 6.8049642 3724.5372 632.84846 -10610.832 0 326.13207 -6.255628e-05 -7.453708e-05 + 113570 -6246.6055 -6253.7169 7.1114032 3724.0876 633.20895 -10611.013 0 340.81834 -1.1107608e-07 -1.8046653e-05 + 113580 -6246.5788 -6253.8745 7.2956579 3721.5978 633.51505 -10608.987 0 349.64886 8.6662118e-05 6.1572759e-05 + 113590 -6246.6104 -6253.8257 7.21534 3717.8796 633.5681 -10605.273 0 345.79958 0.0001537477 0.00012542024 + 113600 -6246.7128 -6253.5561 6.8433811 3713.8117 633.21271 -10600.581 0 327.97322 0.00016742522 0.00014140929 + 113610 -6246.8557 -6253.1366 6.280893 3710.0764 632.39977 -10595.613 0 301.01563 0.00011691061 9.6407157e-05 + 113620 -6246.9924 -6252.6803 5.68797 3707.0606 631.20827 -10590.949 0 272.59944 1.4339282e-05 -1.3521973e-06 + 113630 -6247.089 -6252.2904 5.201424 3704.897 629.82034 -10587.008 0 249.28142 -0.00011421831 -0.00012843036 + 113640 -6247.1391 -6252.0305 4.8913263 3703.5697 628.46452 -10584.065 0 234.4198 -0.00024005753 -0.00025614448 + 113650 -6247.1574 -6251.9275 4.7701486 3703.0088 627.35129 -10582.288 0 228.61229 -0.00034023233 -0.00035961659 + 113660 -6247.1615 -6251.9929 4.8313592 3703.1348 626.62259 -10581.75 0 231.54584 -0.00040131965 -0.00042336088 + 113670 -6247.1595 -6252.2333 5.0738026 3703.864 626.32984 -10582.427 0 243.16509 -0.00041970028 -0.00044290481 + 113680 -6247.1504 -6252.6371 5.4866373 3705.1039 626.4447 -10584.186 0 262.95045 -0.00039999546 -0.00042305501 + 113690 -6247.1345 -6253.1507 6.0162164 3706.7487 626.89382 -10586.793 0 288.33085 -0.00035219772 -0.00037402309 + 113700 -6247.1174 -6253.6779 6.5604472 3708.6643 627.59861 -10589.941 0 314.41344 -0.00028762892 -0.00030709419 + 113710 -6247.1047 -6254.1099 7.0051989 3710.671 628.49993 -10593.281 0 335.72844 -0.00021508199 -0.00023157481 + 113720 -6247.0946 -6254.3611 7.2665274 3712.5534 629.55801 -10596.473 0 348.25277 -0.00013953856 -0.00015400675 + 113730 -6247.0829 -6254.3822 7.2993659 3714.113 630.73212 -10599.227 0 349.82657 -6.4343406e-05 -7.9292537e-05 + 113740 -6247.0736 -6254.1568 7.0831996 3715.2275 631.95449 -10601.339 0 339.46667 5.5131568e-06 -1.22987e-05 + 113750 -6247.08 -6253.7056 6.625626 3715.8624 633.11489 -10602.683 0 317.53717 6.2531739e-05 4.1514797e-05 + 113760 -6247.1108 -6253.1021 5.9912523 3716.0268 634.06795 -10603.197 0 287.13443 9.9191691e-05 7.6868461e-05 + 113770 -6247.1582 -6252.4746 5.3164215 3715.7207 634.66397 -10602.859 0 254.79275 0.00011131466 9.0101797e-05 + 113780 -6247.1992 -6251.975 4.7757639 3714.926 634.79107 -10601.692 0 228.8814 9.9352159e-05 8.019571e-05 + 113790 -6247.2104 -6251.7245 4.5141421 3713.6438 634.40892 -10599.777 0 216.34302 6.7051596e-05 4.8896743e-05 + 113800 -6247.1801 -6251.7692 4.5890969 3711.9417 633.55853 -10597.269 0 219.93527 1.9225812e-05 2.1095808e-07 + 113810 -6247.1119 -6252.0694 4.9574499 3709.9733 632.34671 -10594.389 0 237.58882 -3.9576292e-05 -6.0323026e-05 + 113820 -6247.0179 -6252.5254 5.5075116 3707.9581 630.91663 -10591.4 0 263.95086 -0.0001051434 -0.00012654359 + 113830 -6246.9075 -6253.0234 6.1158989 3706.1356 629.41894 -10588.578 0 293.10819 -0.00017318306 -0.00019291251 + 113840 -6246.7778 -6253.476 6.6981205 3704.717 627.99194 -10586.185 0 321.01152 -0.00023932653 -0.0002558972 + 113850 -6246.6149 -6253.8345 7.2195911 3703.8564 626.75293 -10584.444 0 346.00331 -0.00030005726 -0.00031471779 + 113860 -6246.4102 -6254.0664 7.6562144 3703.6472 625.79938 -10583.513 0 366.92875 -0.00035400978 -0.00037051224 + 113870 -6246.1815 -6254.1246 7.9430388 3704.117 625.21483 -10583.456 0 380.67499 -0.00040177659 -0.00042358886 + 113880 -6245.9744 -6253.9479 7.973453 3705.1907 625.07119 -10584.21 0 382.13261 -0.00044273056 -0.00046976591 + 113890 -6245.8358 -6253.5038 7.6679697 3706.6362 625.42135 -10585.561 0 367.49213 -0.00047029593 -0.00049811799 + 113900 -6245.7785 -6252.839 7.0605195 3708.0589 626.28205 -10587.18 0 338.37971 -0.00046995717 -0.00049256522 + 113910 -6245.7665 -6252.0928 6.3262998 3708.9995 627.61363 -10588.706 0 303.19178 -0.00042360077 -0.00043795033 + 113920 -6245.735 -6251.4528 5.7178636 3709.1272 629.30514 -10589.885 0 274.03211 -0.00031951812 -0.00032837486 + 113930 -6245.6304 -6251.0734 5.4430169 3708.4367 631.17206 -10590.682 0 260.85991 -0.00016293497 -0.00017362725 + 113940 -6245.444 -6251.0056 5.5615638 3707.3269 632.97134 -10591.304 0 266.54134 1.9533594e-05 2.9170473e-08 + 113950 -6245.2164 -6251.1879 5.9714609 3706.4788 634.43551 -10592.102 0 286.18591 0.0001856278 0.00015594655 + 113960 -6245.0078 -6251.505 6.4971931 3706.5603 635.32331 -10593.389 0 311.38195 0.00029217631 0.00025815153 + 113970 -6244.8531 -6251.8718 7.0187213 3707.8994 635.47676 -10595.248 0 336.3765 0.00031212069 0.00028304053 + 113980 -6244.7335 -6252.2768 7.5433555 3710.301 634.86743 -10597.445 0 361.51992 0.00024492769 0.00022676679 + 113990 -6244.591 -6252.749 8.158025 3713.1089 633.61457 -10599.472 0 390.97833 0.00011464242 0.0001052235 + 114000 -6244.3833 -6253.2719 8.8885921 3715.4748 631.96536 -10600.712 0 425.99121 -4.2902647e-05 -5.2729483e-05 + 114010 -6244.1393 -6253.7185 9.5791788 3716.6762 630.2402 -10600.635 0 459.088 -0.00019532045 -0.00021467745 + 114020 -6243.9612 -6253.8806 9.9194134 3716.3089 628.75626 -10598.946 0 475.39395 -0.0003215588 -0.00035194678 + 114030 -6243.954 -6253.5988 9.6447216 3714.2905 627.75043 -10595.64 0 462.22917 -0.00040909809 -0.00044291784 + 114040 -6244.1358 -6252.897 8.7611989 3710.7665 627.32689 -10590.99 0 419.88581 -0.00044727157 -0.00047435047 + 114050 -6244.4184 -6251.9989 7.5805805 3706.076 627.44717 -10585.522 0 363.30395 -0.00042726072 -0.00044359793 + 114060 -6244.6817 -6251.1984 6.5167446 3700.8213 627.96101 -10579.981 0 312.31896 -0.00035097403 -0.0003616031 + 114070 -6244.8655 -6250.6937 5.8281829 3695.9132 628.65839 -10575.265 0 279.31922 -0.00023955721 -0.00025339311 + 114080 -6244.9971 -6250.517 5.5199369 3692.4397 629.32113 -10572.278 0 264.54635 -0.00013112206 -0.00015310084 + 114090 -6245.147 -6250.591 5.444007 3691.3442 629.76508 -10571.7 0 260.90736 -6.6580565e-05 -9.3920081e-05 + 114100 -6245.3645 -6250.8399 5.4753352 3693.0651 629.87344 -10573.778 0 262.40878 -7.1756805e-05 -9.6843554e-05 + 114110 -6245.6426 -6251.2578 5.6152379 3697.3328 629.62242 -10578.213 0 269.11371 -0.00014617257 -0.00016319387 + 114120 -6245.9334 -6251.8871 5.9537465 3703.2338 629.09478 -10584.216 0 285.33694 -0.00026431319 -0.00027421559 + 114130 -6246.1987 -6252.73 6.5312165 3709.5061 628.47283 -10590.709 0 313.01254 -0.00038762616 -0.00039746744 + 114140 -6246.4551 -6253.6724 7.2172958 3714.9131 628.00243 -10596.588 0 345.89331 -0.00047964026 -0.0004967573 + 114150 -6246.7711 -6254.4958 7.7246947 3718.5268 627.92632 -10600.949 0 370.21071 -0.00051601674 -0.00054175419 + 114160 -6247.2105 -6254.9851 7.7745309 3719.8438 628.40056 -10603.229 0 372.59914 -0.00048658126 -0.00051504478 + 114170 -6247.7663 -6255.0537 7.2873772 3718.7843 629.42474 -10603.263 0 349.252 -0.00039334838 -0.00041635331 + 114180 -6248.352 -6254.7843 6.4323064 3715.6715 630.81915 -10601.275 0 308.27222 -0.00025040564 -0.00026407202 + 114190 -6248.8606 -6254.3575 5.496855 3711.2138 632.26356 -10597.835 0 263.44014 -8.6050458e-05 -9.3281622e-05 + 114200 -6249.2331 -6253.9393 4.7062021 3706.4243 633.38418 -10593.748 0 225.54761 5.8419608e-05 5.0977807e-05 + 114210 -6249.4786 -6253.6148 4.1361471 3702.4154 633.85745 -10589.888 0 198.22738 0.0001377868 0.00012493515 + 114220 -6249.6476 -6253.3964 3.7487439 3700.0993 633.49831 -10586.994 0 179.66084 0.00011784647 9.902378e-05 + 114230 -6249.7897 -6253.2721 3.482443 3699.9062 632.30983 -10585.488 0 166.89821 -1.0741026e-05 -3.191937e-05 + 114240 -6249.9271 -6253.247 3.3199207 3701.6441 630.48336 -10585.375 0 159.10923 -0.00022644865 -0.00024522553 + 114250 -6250.0513 -6253.3494 3.2980458 3704.5631 628.35156 -10586.264 0 158.06086 -0.00048169179 -0.00049543715 + 114260 -6250.1374 -6253.6038 3.4663987 3707.6034 626.30988 -10587.517 0 166.12928 -0.00071672149 -0.00072637029 + 114270 -6250.1661 -6253.994 3.8279022 3709.7365 624.72865 -10588.459 0 183.45455 -0.00087734313 -0.0008862494 + 114280 -6250.1395 -6254.4457 4.3061775 3710.2761 623.87677 -10588.599 0 206.37619 -0.00092997185 -0.00094116797 + 114290 -6250.0794 -6254.8496 4.7701385 3709.0529 623.87056 -10587.773 0 228.6118 -0.00086905715 -0.0008830976 + 114300 -6250.009 -6255.1121 5.1031191 3706.4169 624.65537 -10586.184 0 244.5701 -0.00071561093 -0.00073071133 + 114310 -6249.935 -6255.1967 5.2617441 3703.1057 626.02342 -10584.326 0 252.1723 -0.00050936895 -0.00052349689 + 114320 -6249.8464 -6255.1232 5.27678 3700.0447 627.6664 -10582.834 0 252.8929 -0.00029846543 -0.00031128339 + 114330 -6249.7292 -6254.9333 5.2040737 3698.1308 629.25217 -10582.316 0 249.40841 -0.00012909547 -0.00014202161 + 114340 -6249.5816 -6254.6586 5.076996 3698.0203 630.50599 -10583.185 0 243.31814 -3.5950945e-05 -5.056286e-05 + 114350 -6249.4146 -6254.314 4.8993982 3699.952 631.27318 -10585.539 0 234.80665 -3.4290125e-05 -5.0721257e-05 + 114360 -6249.2413 -6253.9164 4.6750568 3703.6486 631.54475 -10589.11 0 224.05495 -0.00011562999 -0.00013236719 + 114370 -6249.0625 -6253.5041 4.4416058 3708.3453 631.43903 -10593.288 0 212.86667 -0.00024933438 -0.00026453054 + 114380 -6248.8616 -6253.1395 4.2779077 3712.9591 631.14632 -10597.245 0 205.02134 -0.0003909829 -0.0004041797 + 114390 -6248.6127 -6252.8866 4.273842 3716.3651 630.85647 -10600.108 0 204.82649 -0.00049579809 -0.00050855198 + 114400 -6248.2954 -6252.7761 4.4806498 3717.6977 630.69447 -10601.168 0 214.73788 -0.00053269034 -0.00054735597 + 114410 -6247.9064 -6252.7899 4.8835251 3716.5716 630.6841 -10600.046 0 234.04592 -0.00049329031 -0.00051089565 + 114420 -6247.4557 -6252.883 5.4273027 3713.1516 630.74825 -10596.783 0 260.1068 -0.00039233763 -0.00041172288 + 114430 -6246.952 -6253.0229 6.070906 3708.0782 630.74254 -10591.844 0 290.95188 -0.00026062616 -0.00028006277 + 114440 -6246.3983 -6253.1994 6.8011366 3702.3174 630.51121 -10586.028 0 325.94863 -0.00013555879 -0.00015524915 + 114450 -6245.8119 -6253.3872 7.575226 3696.9844 629.94812 -10580.32 0 363.04733 -5.3268993e-05 -7.5654168e-05 + 114460 -6245.2483 -6253.507 8.2586966 3693.1316 629.04255 -10575.681 0 395.80308 -4.1845027e-05 -6.8878061e-05 + 114470 -6244.7898 -6253.4445 8.6546467 3691.4939 627.89308 -10572.831 0 414.77923 -0.00011370546 -0.00014390437 + 114480 -6244.4965 -6253.1242 8.6276731 3692.2655 626.68518 -10572.075 0 413.4865 -0.00025885821 -0.00028759582 + 114490 -6244.3605 -6252.5777 8.2171651 3695.0281 625.64371 -10573.25 0 393.81266 -0.00044426138 -0.00046755084 + 114500 -6244.3113 -6251.9463 7.634943 3698.8959 624.97951 -10575.822 0 365.90931 -0.00062246901 -0.00064095273 + 114510 -6244.2679 -6251.4095 7.1416109 3702.8257 624.84752 -10579.083 0 342.26606 -0.0007467968 -0.00076614596 + 114520 -6244.1947 -6251.0881 6.893388 3705.9479 625.32269 -10582.359 0 330.36983 -0.00078589785 -0.0008126774 + 114530 -6244.1192 -6250.9919 6.8726531 3707.7726 626.39022 -10585.155 0 329.3761 -0.00073104563 -0.00076700542 + 114540 -6244.1005 -6251.0538 6.9533556 3708.205 627.9448 -10587.204 0 333.24382 -0.00059390314 -0.00063353718 + 114550 -6244.1729 -6251.2182 7.0453289 3707.4283 629.7975 -10588.444 0 337.65169 -0.00039844093 -0.00043250443 + 114560 -6244.3114 -6251.4988 7.1873924 3705.7837 631.69333 -10588.976 0 344.46017 -0.00017403971 -0.00019665483 + 114570 -6244.4507 -6251.9477 7.496997 3703.7348 633.34161 -10589.024 0 359.29816 4.5754661e-05 3.2331388e-05 + 114580 -6244.5448 -6252.5629 8.0180461 3701.8758 634.45938 -10588.898 0 384.26976 0.00022148372 0.00020865608 + 114590 -6244.6131 -6253.2254 8.6122902 3700.8633 634.82461 -10588.913 0 412.74927 0.00031059305 0.0002902891 + 114600 -6244.7294 -6253.7353 9.0059206 3701.2053 634.33111 -10589.272 0 431.61424 0.00027935336 0.00025008621 + 114610 -6244.9617 -6253.9228 8.9611417 3702.9909 633.03016 -10589.944 0 429.46819 0.00011942878 8.6694025e-05 + 114620 -6245.314 -6253.7451 8.4311171 3705.7435 631.13966 -10590.628 0 404.06644 -0.00014188315 -0.00017058221 + 114630 -6245.7216 -6253.3021 7.5804984 3708.5221 629.00759 -10590.832 0 363.30002 -0.00044606895 -0.0004670212 + 114640 -6246.0977 -6252.7717 6.6740687 3710.2439 627.03452 -10590.05 0 319.85882 -0.00072134096 -0.00073679748 + 114650 -6246.3896 -6252.3188 5.9291311 3710.0806 625.57877 -10587.978 0 284.15723 -0.00090523024 -0.00092088321 + 114660 -6246.6023 -6252.0321 5.429744 3707.754 624.87394 -10584.66 0 260.2238 -0.00096212152 -0.00098229392 + 114670 -6246.78 -6251.9224 5.1423338 3703.6229 624.97904 -10580.524 0 246.44949 -0.00089033252 -0.00091463077 + 114680 -6246.966 -6251.9681 5.0020587 3698.5572 625.76923 -10576.295 0 239.72672 -0.00071871085 -0.00074261088 + 114690 -6247.1701 -6252.1635 4.9934285 3693.6844 626.96748 -10572.815 0 239.31311 -0.00049650648 -0.00051527579 + 114700 -6247.3668 -6252.5249 5.1581699 3690.1208 628.21258 -10570.858 0 247.20845 -0.00028116234 -0.00029386734 + 114710 -6247.5229 -6253.0512 5.5282903 3688.7533 629.15071 -10570.955 0 264.94669 -0.00012677348 -0.00013713028 + 114720 -6247.6304 -6253.6794 6.0490083 3690.0708 629.52877 -10573.279 0 289.90242 -7.3526961e-05 -8.7049969e-05 + 114730 -6247.7182 -6254.2823 6.5641621 3694.0312 629.26469 -10577.578 0 314.59148 -0.00013807787 -0.00015795556 + 114740 -6247.8334 -6254.7162 6.8827658 3699.9868 628.47422 -10583.177 0 329.86076 -0.00030676269 -0.00033169232 + 114750 -6248.0073 -6254.8877 6.8804291 3706.7376 627.44357 -10589.069 0 329.74877 -0.00053540669 -0.00056088491 + 114760 -6248.2317 -6254.7952 6.5634262 3712.7609 626.55027 -10594.106 0 314.55621 -0.00075876329 -0.00078062123 + 114770 -6248.4661 -6254.5171 6.0510043 3716.5958 626.15074 -10597.264 0 289.99808 -0.0009089012 -0.00092622734 + 114780 -6248.6678 -6254.1605 5.4927008 3717.2673 626.4679 -10597.896 0 263.24104 -0.00093698197 -0.00095220618 + 114790 -6248.8197 -6253.8061 4.986387 3714.59 627.51538 -10595.911 0 238.97564 -0.00082998352 -0.00084632109 + 114800 -6248.9344 -6253.4914 4.5569954 3709.2317 629.08318 -10591.806 0 218.39679 -0.000615409 -0.00063404224 + 114810 -6249.0342 -6253.2336 4.1994046 3702.5134 630.78833 -10586.535 0 201.25903 -0.00035235908 -0.00037176117 + 114820 -6249.1281 -6253.0624 3.9343101 3696.0349 632.17489 -10581.272 0 188.55421 -0.00011323846 -0.0001309898 + 114830 -6249.2046 -6253.0257 3.8211088 3691.2649 632.8356 -10577.126 0 183.12897 3.6625927e-05 2.1385895e-05 + 114840 -6249.2443 -6253.16 3.9157394 3689.2102 632.523 -10574.893 0 187.6642 5.5156191e-05 4.0950007e-05 + 114850 -6249.2391 -6253.452 4.212927 3690.2214 631.22121 -10574.895 0 201.9071 -6.7457407e-05 -8.2835808e-05 + 114860 -6249.2004 -6253.8294 4.629007 3693.9353 629.15823 -10576.923 0 221.84799 -0.00030691102 -0.00032392192 + 114870 -6249.1465 -6254.1955 5.049026 3699.3501 626.75444 -10580.3 0 241.97766 -0.00060942917 -0.00062591801 + 114880 -6249.0802 -6254.4834 5.4032133 3705.0387 624.5208 -10584.043 0 258.9523 -0.00090295123 -0.00091601584 + 114890 -6248.9772 -6254.6808 5.7035467 3709.4955 622.93515 -10587.111 0 273.34596 -0.0011145518 -0.0011236174 + 114900 -6248.8006 -6254.8024 6.0018411 3711.5508 622.3301 -10588.683 0 287.6419 -0.0011907843 -0.0011988844 + 114910 -6248.5304 -6254.8379 6.3075462 3710.713 622.81998 -10588.371 0 302.29301 -0.0011139448 -0.0011256685 + 114920 -6248.1823 -6254.7306 6.5483159 3707.2969 624.28168 -10586.309 0 313.83204 -0.00090697028 -0.0009247185 + 114930 -6247.7973 -6254.4142 6.6168952 3702.2861 626.39188 -10583.092 0 317.11874 -0.00062450976 -0.00064638764 + 114940 -6247.4111 -6253.8757 6.4646335 3697.0041 628.71114 -10579.591 0 309.82151 -0.00033452427 -0.00035574301 + 114950 -6247.0285 -6253.189 6.1604491 3692.7411 630.79215 -10576.722 0 295.24329 -9.8712363e-05 -0.00011533564 + 114960 -6246.6235 -6252.4908 5.8672794 3690.4622 632.28073 -10575.234 0 281.19295 4.108247e-05 2.9041426e-05 + 114970 -6246.1616 -6251.9156 5.7540088 3690.6495 632.98148 -10575.547 0 275.76439 6.7833247e-05 5.6344631e-05 + 114980 -6245.63 -6251.5334 5.9034114 3693.2592 632.8758 -10577.668 0 282.9246 -1.2513158e-05 -2.8384914e-05 + 114990 -6245.0534 -6251.3313 6.2779059 3697.7491 632.09692 -10581.177 0 300.87247 -0.00017578289 -0.00019779158 + 115000 -6244.4817 -6251.2536 6.7718506 3703.1495 630.87714 -10585.28 0 324.54508 -0.00038422925 -0.00040921611 + 115010 -6243.9527 -6251.269 7.31626 3708.199 629.486 -10588.954 0 350.63623 -0.00059118993 -0.00061372571 + 115020 -6243.4629 -6251.4025 7.9396064 3711.5903 628.17658 -10591.169 0 380.51049 -0.00074861654 -0.00076623343 + 115030 -6242.9836 -6251.6885 8.7048658 3712.3203 627.15157 -10591.16 0 417.18601 -0.0008191145 -0.00083511762 + 115040 -6242.5166 -6252.0849 9.5682423 3710.0281 626.54766 -10588.661 0 458.56386 -0.00078845253 -0.00080889164 + 115050 -6242.1266 -6252.444 10.317377 3705.1404 626.42647 -10584.011 0 494.46657 -0.00067040621 -0.00069778758 + 115060 -6241.9059 -6252.593 10.68701 3698.7299 626.76255 -10578.085 0 512.1815 -0.00049982925 -0.00053007116 + 115070 -6241.8991 -6252.4549 10.555871 3692.1742 627.43379 -10572.063 0 505.89658 -0.0003192759 -0.00034515917 + 115080 -6242.0658 -6252.0991 10.033275 3686.8047 628.23044 -10567.134 0 480.85082 -0.0001685561 -0.000186068 + 115090 -6242.3172 -6251.6843 9.3670882 3683.6633 628.89468 -10564.242 0 448.92342 -8.0547575e-05 -9.2063531e-05 + 115100 -6242.5813 -6251.3589 8.77757 3683.3589 629.18843 -10563.906 0 420.6704 -7.8908106e-05 -9.0918052e-05 + 115110 -6242.8418 -6251.1931 8.3512663 3685.9774 628.97249 -10566.143 0 400.23954 -0.0001731695 -0.00019101843 + 115120 -6243.1291 -6251.1758 8.0466961 3691.0331 628.26808 -10570.477 0 385.64283 -0.00035199827 -0.0003758247 + 115130 -6243.48 -6251.2631 7.7830428 3697.4964 627.26963 -10576.029 0 373.00708 -0.00057944089 -0.00060423684 + 115140 -6243.8981 -6251.4346 7.5364304 3703.9559 626.29428 -10581.685 0 361.18803 -0.00079926155 -0.00081896005 + 115150 -6244.3467 -6251.7099 7.3632039 3708.937 625.6827 -10586.33 0 352.88604 -0.0009493908 -0.00096171561 + 115160 -6244.7778 -6252.1073 7.3294985 3711.3168 625.68877 -10589.113 0 351.27069 -0.00098278637 -0.00099083174 + 115170 -6245.1698 -6252.5877 7.4178284 3710.6756 626.39691 -10589.66 0 355.50396 -0.00088565362 -0.00089502021 + 115180 -6245.5384 -6253.048 7.5095822 3707.4196 627.69052 -10588.158 0 359.90132 -0.00068368611 -0.00069801474 + 115190 -6245.9113 -6253.3774 7.4660997 3702.6149 629.27798 -10585.27 0 357.81739 -0.00043320491 -0.0004520923 + 115200 -6246.2967 -6253.5268 7.2301702 3697.6214 630.76808 -10581.916 0 346.51033 -0.0002023092 -0.00022285526 + 115210 -6246.6742 -6253.5294 6.8552361 3693.694 631.77476 -10578.998 0 328.54138 -5.1001015e-05 -7.078113e-05 + 115220 -6247.0142 -6253.4625 6.4483583 3691.6811 632.02189 -10577.166 0 309.04151 -1.6873283e-05 -3.5416224e-05 + 115230 -6247.3012 -6253.3918 6.0905225 3691.8688 631.41767 -10576.678 0 291.89201 -0.00010819688 -0.00012613592 + 115240 -6247.5403 -6253.3431 5.8028177 3693.9636 630.07822 -10577.385 0 278.10359 -0.00030350759 -0.00032091521 + 115250 -6247.7436 -6253.3177 5.5740809 3697.195 628.29492 -10578.808 0 267.14123 -0.00055683239 -0.00057275904 + 115260 -6247.914 -6253.3234 5.4094209 3700.5238 626.45646 -10580.304 0 259.2498 -0.00080838625 -0.00082213388 + 115270 -6248.0415 -6253.3858 5.3442507 3702.9295 624.94901 -10581.264 0 256.12648 -0.00099971974 -0.0010123875 + 115280 -6248.1172 -6253.5242 5.4070206 3703.7055 624.06241 -10581.292 0 259.13477 -0.0010897011 -0.0011040363 + 115290 -6248.1507 -6253.7211 5.5703812 3702.6588 623.9261 -10580.306 0 266.96392 -0.0010656146 -0.0010838371 + 115300 -6248.1717 -6253.9185 5.7468827 3700.1345 624.48928 -10578.542 0 275.42286 -0.00094473059 -0.00096619672 + 115310 -6248.2106 -6254.0534 5.8427223 3696.865 625.548 -10576.466 0 280.01604 -0.00076608617 -0.00078713091 + 115320 -6248.2752 -6254.1002 5.8249447 3693.7255 626.8096 -10574.635 0 279.16403 -0.0005769708 -0.00059344335 + 115330 -6248.3423 -6254.0841 5.7417246 3691.5021 627.97389 -10573.56 0 275.17566 -0.00042030331 -0.00043087643 + 115340 -6248.3758 -6254.051 5.6751849 3690.7408 628.80687 -10573.599 0 271.9867 -0.00032685097 -0.0003343409 + 115350 -6248.3558 -6254.0198 5.6639904 3691.6781 629.18766 -10574.886 0 271.4502 -0.0003122774 -0.00032168292 + 115360 -6248.2967 -6253.9575 5.6608311 3694.2166 629.12061 -10577.295 0 271.29879 -0.0003765178 -0.00039110596 + 115370 -6248.2378 -6253.8047 5.5669081 3697.9177 628.71501 -10580.437 0 266.79747 -0.0005035468 -0.00052207561 + 115380 -6248.2111 -6253.5364 5.3252561 3702.0305 628.14296 -10583.71 0 255.21615 -0.00066225574 -0.00067983372 + 115390 -6248.2119 -6253.2104 4.9985242 3705.6058 627.58937 -10586.406 0 239.55733 -0.00081119717 -0.00082343161 + 115400 -6248.1979 -6252.9538 4.7558744 3707.7241 627.2078 -10587.886 0 227.92819 -0.00090889853 -0.00091598521 + 115410 -6248.1225 -6252.8863 4.7637909 3707.7827 627.08959 -10587.759 0 228.30759 -0.00092737485 -0.00093443349 + 115420 -6247.9732 -6253.0358 5.0625195 3705.715 627.24753 -10585.998 0 242.62434 -0.00086267084 -0.00087567179 + 115430 -6247.7852 -6253.3166 5.531422 3702.019 627.6133 -10582.949 0 265.09678 -0.00073641482 -0.00075697075 + 115440 -6247.6154 -6253.5929 5.977477 3697.5708 628.05107 -10579.215 0 286.47424 -0.00058699027 -0.00061055832 + 115450 -6247.496 -6253.7744 6.2784535 3693.3273 628.39016 -10575.492 0 300.89872 -0.00045496175 -0.00047432174 + 115460 -6247.406 -6253.8692 6.4632306 3690.0693 628.47361 -10572.412 0 309.75428 -0.00037054159 -0.00038193799 + 115470 -6247.2882 -6253.9492 6.6609839 3688.2863 628.209 -10570.444 0 319.23172 -0.00034867534 -0.00035554417 + 115480 -6247.1006 -6254.0601 6.9595729 3688.1863 627.60326 -10569.85 0 333.54178 -0.00039135154 -0.00040225728 + 115490 -6246.8602 -6254.1514 7.2912177 3689.7374 626.76765 -10570.656 0 349.43606 -0.00049183854 -0.00051380277 + 115500 -6246.6416 -6254.0908 7.4491687 3692.658 625.89032 -10572.639 0 357.00596 -0.00063563143 -0.00066794349 + 115510 -6246.523 -6253.7637 7.2407541 3696.3671 625.18553 -10575.316 0 347.01757 -0.00079772587 -0.00083151639 + 115520 -6246.5198 -6253.1841 6.6643809 3699.994 624.83677 -10578.015 0 319.39453 -0.00094139923 -0.00096602962 + 115530 -6246.5646 -6252.5214 5.9567893 3702.5547 624.95298 -10580.029 0 285.48277 -0.0010247333 -0.0010362211 + 115540 -6246.5559 -6252.0082 5.4523186 3703.2874 625.54849 -10580.844 0 261.3057 -0.0010154751 -0.00101987 + 115550 -6246.4327 -6251.7932 5.3604321 3701.9878 626.54452 -10580.325 0 256.90198 -0.00090676314 -0.00091534008 + 115560 -6246.2145 -6251.8592 5.6447635 3699.1324 627.78288 -10578.775 0 270.52874 -0.00072327796 -0.00074341552 + 115570 -6245.973 -6252.0728 6.0997636 3695.6898 629.04671 -10576.809 0 292.3349 -0.0005127111 -0.00054207378 + 115580 -6245.7626 -6252.3133 6.5506206 3692.724 630.09213 -10575.129 0 313.94249 -0.00032711932 -0.00035590992 + 115590 -6245.5628 -6252.5637 7.0009734 3691.0222 630.69501 -10574.281 0 335.52593 -0.00020520022 -0.00022438659 + 115600 -6245.2797 -6252.8868 7.6070982 3690.9256 630.70576 -10574.518 0 364.57483 -0.0001646349 -0.00017327235 + 115610 -6244.8055 -6253.3133 8.5078368 3692.3777 630.09457 -10575.786 0 407.74328 -0.00020529697 -0.00021122883 + 115620 -6244.0954 -6253.7433 9.6478695 3695.0598 628.97015 -10577.773 0 462.38004 -0.00031672857 -0.00033033753 + 115630 -6243.2183 -6253.9495 10.731291 3698.4703 627.56473 -10579.985 0 514.30368 -0.00048217029 -0.0005079295 + 115640 -6242.3337 -6253.6994 11.36577 3701.9096 626.18693 -10581.796 0 544.71147 -0.00067605617 -0.00070845174 + 115650 -6241.5918 -6252.9209 11.329096 3704.4667 625.15098 -10582.539 0 542.95383 -0.00085919986 -0.0008870087 + 115660 -6241.0305 -6251.7826 10.752127 3705.1605 624.70077 -10581.644 0 515.30225 -0.00098131095 -0.00099745866 + 115670 -6240.5741 -6250.606 10.031916 3703.2883 624.95295 -10578.847 0 480.7857 -0.00099686705 -0.0010051367 + 115680 -6240.1353 -6249.6693 9.5339547 3698.8278 625.87446 -10574.372 0 456.9206 -0.00088758554 -0.00089952889 + 115690 -6239.7088 -6249.0649 9.3560783 3692.6156 627.29156 -10568.972 0 448.39577 -0.00067571201 -0.00070039943 + 115700 -6239.3708 -6248.7255 9.3546825 3686.1348 628.91936 -10563.78 0 448.32888 -0.00041762049 -0.00045375206 + 115710 -6239.1977 -6248.5686 9.370929 3681.0057 630.40704 -10559.981 0 449.1075 -0.00018164353 -0.00021910499 + 115720 -6239.1929 -6248.6123 9.419402 3678.4597 631.4023 -10558.474 0 451.43059 -2.4416779e-05 -5.3443975e-05 + 115730 -6239.2916 -6248.9557 9.6640293 3679.0454 631.63299 -10559.634 0 463.15451 2.1720891e-05 2.2641532e-06 + 115740 -6239.4381 -6249.6561 10.218083 3682.6122 630.9884 -10563.257 0 489.70788 -5.1288206e-05 -6.8937539e-05 + 115750 -6239.6603 -6250.6221 10.961764 3688.4466 629.57132 -10568.64 0 525.34923 -0.00023172963 -0.00025673644 + 115760 -6240.071 -6251.6248 11.553766 3695.4175 627.69425 -10574.737 0 553.72127 -0.00048895109 -0.00052355212 + 115770 -6240.778 -6252.4275 11.649418 3702.1089 625.80994 -10580.346 0 558.30545 -0.00077122149 -0.00080909551 + 115780 -6241.7766 -6252.9216 11.145036 3707.0394 624.39141 -10584.352 0 534.13265 -0.0010102221 -0.0010427155 + 115790 -6242.9289 -6253.1523 10.223314 3709.0331 623.79858 -10585.984 0 489.95857 -0.0011398426 -0.0011634059 + 115800 -6244.0529 -6253.2239 9.1710429 3707.624 624.17575 -10585.024 0 439.52783 -0.0011229024 -0.0011404655 + 115810 -6245.0248 -6253.2001 8.175311 3703.2542 625.41022 -10581.864 0 391.80677 -0.00096833207 -0.00098473269 + 115820 -6245.8089 -6253.0907 7.2818138 3697.1308 627.1607 -10577.382 0 348.98538 -0.00072766603 -0.00074505593 + 115830 -6246.423 -6252.908 6.4850035 3690.8376 628.94561 -10572.691 0 310.79775 -0.00047538149 -0.00049261035 + 115840 -6246.8968 -6252.7092 5.8123877 3685.8904 630.27005 -10568.87 0 278.56223 -0.00028497509 -0.00029998313 + 115850 -6247.2538 -6252.5845 5.330605 3683.3798 630.76069 -10566.725 0 255.4725 -0.00020938746 -0.00022156288 + 115860 -6247.5136 -6252.6104 5.0967783 3683.7545 630.27004 -10566.635 0 244.26621 -0.00026912664 -0.00027977024 + 115870 -6247.6986 -6252.8112 5.1125672 3686.7612 628.91599 -10568.488 0 245.02291 -0.00044884462 -0.00045993189 + 115880 -6247.8366 -6253.1531 5.3165236 3691.5374 627.04244 -10571.733 0 254.79764 -0.00070234237 -0.0007149341 + 115890 -6247.9544 -6253.568 5.6136305 3696.833 625.11544 -10575.516 0 269.03667 -0.00096503451 -0.00097861948 + 115900 -6248.0689 -6253.9866 5.9176844 3701.3171 623.59164 -10578.895 0 283.60864 -0.0011711231 -0.0011843493 + 115910 -6248.1818 -6254.359 6.1772306 3703.9046 622.80194 -10581.066 0 296.04755 -0.0012710871 -0.0012832852 + 115920 -6248.2838 -6254.6515 6.3676447 3704.0285 622.8809 -10581.561 0 305.17326 -0.0012447392 -0.0012569157 + 115930 -6248.3685 -6254.8289 6.4603716 3701.782 623.7521 -10580.363 0 309.61726 -0.0011060923 -0.001120375 + 115940 -6248.4415 -6254.8468 6.4053148 3697.8759 625.16302 -10577.886 0 306.97863 -0.00089830451 -0.00091619057 + 115950 -6248.5175 -6254.6689 6.1514046 3693.411 626.75629 -10574.836 0 294.80982 -0.00068005805 -0.00070095331 + 115960 -6248.6074 -6254.298 5.6905867 3689.5428 628.16059 -10572.001 0 272.72485 -0.00050793352 -0.00052918377 + 115970 -6248.7075 -6253.7964 5.0889521 3687.162 629.08028 -10570.039 0 243.89114 -0.00042074673 -0.00043914091 + 115980 -6248.7983 -6253.2813 4.4830016 3686.689 629.35956 -10569.33 0 214.85059 -0.00043070299 -0.00044451828 + 115990 -6248.852 -6252.8924 4.0403498 3688.0334 629.00386 -10569.93 0 193.63623 -0.00052364231 -0.00053402023 + 116000 -6248.8463 -6252.742 3.8956345 3690.7028 628.15651 -10571.601 0 186.70067 -0.00066750939 -0.00067809045 + 116010 -6248.7775 -6252.8653 4.0877559 3693.9965 627.04409 -10573.906 0 195.9082 -0.0008249324 -0.00083952352 + 116020 -6248.6649 -6253.2057 4.5407997 3697.1918 625.91074 -10576.308 0 217.6206 -0.00096397303 -0.00098363445 + 116030 -6248.537 -6253.6509 5.1139095 3699.659 624.96162 -10578.272 0 245.08724 -0.001062822 -0.0010847953 + 116040 -6248.4088 -6254.0969 5.6880997 3700.9142 624.3302 -10579.341 0 272.60565 -0.0011089625 -0.0011287045 + 116050 -6248.268 -6254.4844 6.2164321 3700.6648 624.07477 -10579.224 0 297.92631 -0.0010970938 -0.0011118973 + 116060 -6248.0876 -6254.7821 6.6944506 3698.8818 624.1965 -10577.86 0 320.83563 -0.0010293649 -0.0010403883 + 116070 -6247.8553 -6254.943 7.0876626 3695.8646 624.66196 -10575.47 0 339.68056 -0.00091734031 -0.00092823044 + 116080 -6247.5913 -6254.8906 7.2992948 3692.2264 625.41319 -10572.53 0 349.82316 -0.00078214019 -0.00079560396 + 116090 -6247.3359 -6254.5594 7.2235185 3688.7653 626.36058 -10569.685 0 346.19154 -0.00065039407 -0.00066594144 + 116100 -6247.117 -6253.9595 6.8425145 3686.2598 627.36966 -10567.589 0 327.93169 -0.00054752713 -0.00056238441 + 116110 -6246.9278 -6253.2054 6.2776071 3685.2794 628.26227 -10566.747 0 300.85816 -0.00049225859 -0.00050440954 + 116120 -6246.7337 -6252.4775 5.7437614 3686.0746 628.84672 -10567.399 0 275.27327 -0.00049456787 -0.000505013 + 116130 -6246.5001 -6251.9401 5.4400781 3688.552 628.97355 -10569.466 0 260.71907 -0.00055580321 -0.00056799971 + 116140 -6246.2144 -6251.6713 5.4569153 3692.2947 628.59524 -10572.561 0 261.526 -0.00066804115 -0.00068501369 + 116150 -6245.8878 -6251.6492 5.7613987 3696.5993 627.80127 -10576.05 0 276.11855 -0.00081175323 -0.00083335715 + 116160 -6245.5363 -6251.798 6.2616719 3700.5408 626.80742 -10579.146 0 300.09445 -0.00095438065 -0.00097715566 + 116170 -6245.1593 -6252.0499 6.8905344 3703.1172 625.89676 -10581.064 0 330.23307 -0.0010543028 -0.0010742443 + 116180 -6244.7351 -6252.3705 7.6354201 3703.499 625.33074 -10581.2 0 365.93217 -0.0010725816 -0.00108859 + 116190 -6244.2423 -6252.7343 8.4920049 3701.3283 625.26194 -10579.325 0 406.98452 -0.00098931597 -0.0010043847 + 116200 -6243.6915 -6253.0841 9.3925399 3696.929 625.68031 -10575.693 0 450.14321 -0.00081643201 -0.00083560188 + 116210 -6243.1397 -6253.3227 10.18296 3691.2973 626.41339 -10571.033 0 488.02457 -0.00059881783 -0.00062562972 + 116220 -6242.6725 -6253.3453 10.672768 3685.8375 627.18326 -10566.366 0 511.49892 -0.00040141256 -0.0004354404 + 116230 -6242.3663 -6253.0883 10.721925 3681.9313 627.70216 -10562.722 0 513.85481 -0.0002869167 -0.000323777 + 116240 -6242.2513 -6252.5689 10.317598 3680.496 627.772 -10560.837 0 494.47721 -0.00029289608 -0.00032672468 + 116250 -6242.2963 -6251.8988 9.6024936 3681.7 627.35101 -10560.95 0 460.20537 -0.00041768141 -0.0004449298 + 116260 -6242.4321 -6251.248 8.8158857 3684.9583 626.56707 -10562.773 0 422.50671 -0.0006218717 -0.00064376026 + 116270 -6242.6024 -6250.7596 8.1572057 3689.2034 625.67781 -10565.641 0 390.93907 -0.00084487375 -0.00086578916 + 116280 -6242.802 -6250.4862 7.684289 3693.2722 624.98909 -10568.748 0 368.27425 -0.0010266446 -0.0010495228 + 116290 -6243.061 -6250.4152 7.3541613 3696.213 624.75318 -10571.381 0 352.45267 -0.0011233146 -0.001146972 + 116300 -6243.401 -6250.5467 7.1457094 3697.4579 625.08094 -10573.085 0 342.46249 -0.0011141723 -0.0011354718 + 116310 -6243.8167 -6250.917 7.1002629 3696.9164 625.90397 -10573.737 0 340.28444 -0.0010046214 -0.0010224264 + 116320 -6244.3023 -6251.5396 7.2373538 3695.0002 627.00073 -10573.541 0 346.8546 -0.0008266405 -0.00084284665 + 116330 -6244.8759 -6252.3416 7.4657507 3692.5133 628.07063 -10572.926 0 357.80066 -0.00063269139 -0.00064974904 + 116340 -6245.5671 -6253.1703 7.6032323 3690.3901 628.82496 -10572.385 0 364.38955 -0.00048069715 -0.0004988636 + 116350 -6246.3739 -6253.8649 7.4909174 3689.3706 629.06441 -10572.3 0 359.00679 -0.00041477725 -0.00043191418 + 116360 -6247.2338 -6254.3322 7.0983722 3689.7605 628.72241 -10572.815 0 340.19383 -0.00045103146 -0.00046484296 + 116370 -6248.0429 -6254.5755 6.5326159 3691.3736 627.8682 -10573.817 0 313.07961 -0.00057533195 -0.00058584137 + 116380 -6248.7101 -6254.6622 5.9520614 3693.6572 626.67869 -10574.998 0 285.25618 -0.00075255129 -0.00076268097 + 116390 -6249.1999 -6254.6604 5.4604747 3695.915 625.39503 -10575.97 0 261.69659 -0.00094035832 -0.00095405275 + 116400 -6249.5359 -6254.5944 5.0584804 3697.5193 624.27376 -10576.387 0 242.43076 -0.0011005583 -0.0011197525 + 116410 -6249.7726 -6254.4528 4.6802 3698.0394 623.53456 -10576.027 0 224.30144 -0.0012051257 -0.0012279526 + 116420 -6249.9577 -6254.2391 4.2814142 3697.2848 623.30927 -10574.833 0 205.18939 -0.0012381448 -0.0012601013 + 116430 -6250.1073 -6254.0117 3.9043263 3695.3128 623.60674 -10572.931 0 187.11722 -0.0011965833 -0.0012139358 + 116440 -6250.2091 -6253.8704 3.6613176 3692.4404 624.30993 -10570.621 0 175.47088 -0.0010915487 -0.001104154 + 116450 -6250.2452 -6253.8976 3.6524338 3689.2414 625.21005 -10568.349 0 175.04512 -0.00094864863 -0.00095985021 + 116460 -6250.2151 -6254.1036 3.8884369 3686.4697 626.06635 -10566.64 0 186.35572 -0.00080445068 -0.00081831872 + 116470 -6250.1409 -6254.4199 4.2789721 3684.8811 626.67104 -10565.972 0 205.07235 -0.00069772411 -0.00071602068 + 116480 -6250.0533 -6254.7398 4.6864867 3684.9982 626.90033 -10566.638 0 224.60274 -0.0006577384 -0.00067887673 + 116490 -6249.9723 -6254.9726 5.0002538 3686.9174 626.74009 -10568.63 0 239.64022 -0.00069438738 -0.00071486423 + 116500 -6249.8963 -6255.0782 5.1818703 3690.2448 626.28283 -10571.606 0 248.3443 -0.00079450202 -0.00081153481 + 116510 -6249.8054 -6255.0664 5.2610029 3694.1929 625.69944 -10574.959 0 252.13678 -0.00092595453 -0.00093946419 + 116520 -6249.6779 -6254.9686 5.2907752 3697.8054 625.19441 -10577.968 0 253.56363 -0.0010479439 -0.0010605777 + 116530 -6249.5079 -6254.8012 5.2933222 3700.228 624.95534 -10579.985 0 253.6857 -0.0011236935 -0.0011387903 + 116540 -6249.3139 -6254.5495 5.2355642 3700.9328 625.10544 -10580.588 0 250.91761 -0.0011311078 -0.0011499234 + 116550 -6249.1272 -6254.189 5.0618214 3699.8234 625.66571 -10579.678 0 242.59088 -0.0010678696 -0.0010882236 + 116560 -6248.9667 -6253.7324 4.7656777 3697.2104 626.53507 -10577.478 0 228.39801 -0.00095004187 -0.00096778786 + 116570 -6248.8203 -6253.2608 4.4404846 3693.7048 627.50016 -10574.466 0 212.81294 -0.00080623405 -0.00081868861 + 116580 -6248.6481 -6252.9047 4.2566614 3690.0872 628.2823 -10571.274 0 204.0031 -0.00067056551 -0.00067920202 + 116590 -6248.4066 -6252.7789 4.3722364 3687.1763 628.61517 -10568.57 0 209.5421 -0.00057633744 -0.00058642782 + 116600 -6248.0785 -6252.913 4.8344326 3685.6828 628.32994 -10566.926 0 231.69314 -0.00055023555 -0.00056733881 + 116610 -6247.6881 -6253.2261 5.5379637 3686.0345 627.41801 -10566.679 0 265.41029 -0.00060604573 -0.00063159453 + 116620 -6247.291 -6253.5679 6.27687 3688.2004 626.04603 -10567.814 0 300.82283 -0.00073806031 -0.00076739474 + 116630 -6246.9363 -6253.8074 6.8710834 3691.5977 624.51334 -10569.918 0 329.30087 -0.00091714721 -0.00094227076 + 116640 -6246.6267 -6253.9071 7.2804447 3695.1856 623.16458 -10572.257 0 348.91976 -0.0010946845 -0.0011105375 + 116650 -6246.3185 -6253.9186 7.6001061 3697.787 622.29208 -10573.998 0 364.23973 -0.001217396 -0.0012266836 + 116660 -6245.9715 -6253.8978 7.9263599 3698.5307 622.06592 -10574.494 0 379.87564 -0.0012483274 -0.0012601062 + 116670 -6245.6021 -6253.8251 8.223011 3697.1851 622.51055 -10573.521 0 394.09282 -0.001181915 -0.0012045393 + 116680 -6245.2828 -6253.6154 8.3326204 3694.1953 623.52235 -10571.333 0 399.34592 -0.0010431798 -0.0010777561 + 116690 -6245.0845 -6253.2087 8.1241214 3690.4351 624.91021 -10568.554 0 389.35348 -0.0008725544 -0.00091252925 + 116700 -6245.0204 -6252.6476 7.6271275 3686.8581 626.44241 -10565.948 0 365.53475 -0.00070789858 -0.00074448685 + 116710 -6245.0401 -6252.0719 7.0317623 3684.2369 627.88814 -10564.197 0 337.00151 -0.00057466134 -0.00060301646 + 116720 -6245.0714 -6251.6408 6.5693625 3683.0588 629.04867 -10563.748 0 314.84071 -0.00048633567 -0.0005077943 + 116730 -6245.0684 -6251.4474 6.3789369 3683.5277 629.77951 -10564.755 0 305.71445 -0.00044958322 -0.00046920417 + 116740 -6245.0305 -6251.4836 6.4530437 3685.5888 630.00662 -10567.079 0 309.26606 -0.0004671819 -0.00048932795 + 116750 -6244.9876 -6251.674 6.6863808 3688.9271 629.73577 -10570.337 0 320.44889 -0.0005362595 -0.00056187673 + 116760 -6244.9687 -6251.9418 6.9730947 3692.968 629.05003 -10573.96 0 334.18982 -0.00064480744 -0.00067207271 + 116770 -6244.9839 -6252.2489 7.2650043 3696.9421 628.09155 -10577.283 0 348.17977 -0.00077159883 -0.00079839641 + 116780 -6245.0315 -6252.5834 7.5518915 3700.0398 627.03014 -10579.653 0 361.92901 -0.00089127567 -0.00091664611 + 116790 -6245.1145 -6252.9283 7.8137664 3701.5994 626.02847 -10580.556 0 374.47953 -0.00098112456 -0.0010048256 + 116800 -6245.2428 -6253.2543 8.011463 3701.2541 625.21629 -10579.725 0 383.95426 -0.001025432 -0.0010472379 + 116810 -6245.4233 -6253.5328 8.1095207 3699.0099 624.67914 -10577.222 0 388.65373 -0.0010175597 -0.0010375342 + 116820 -6245.6568 -6253.7393 8.0824415 3695.2659 624.45492 -10573.46 0 387.35595 -0.00096206353 -0.00098099105 + 116830 -6245.9439 -6253.8438 7.8999501 3690.7649 624.52677 -10569.136 0 378.60993 -0.00087621255 -0.00089509443 + 116840 -6246.287 -6253.8179 7.5309452 3686.448 624.81318 -10565.079 0 360.92515 -0.00078754182 -0.00080665266 + 116850 -6246.6821 -6253.6601 6.9779954 3683.2289 625.1718 -10562.061 0 334.42469 -0.00072624458 -0.00074499219 + 116860 -6247.112 -6253.4168 6.3048522 3681.7613 625.43398 -10560.612 0 302.16389 -0.00071550581 -0.00073327942 + 116870 -6247.5509 -6253.1725 5.6215847 3682.2797 625.46699 -10560.919 0 269.41788 -0.00076416364 -0.00078116168 + 116880 -6247.9785 -6253.0155 5.0370352 3684.5601 625.23641 -10562.812 0 241.40299 -0.00086388626 -0.00088106425 + 116890 -6248.3887 -6253.0059 4.6171737 3687.9942 624.8335 -10565.834 0 221.28087 -0.0009907604 -0.0010090731 + 116900 -6248.7879 -6253.1612 4.3732789 3691.7515 624.44837 -10569.361 0 209.59206 -0.0011107808 -0.001130469 + 116910 -6249.1862 -6253.4595 4.2733334 3694.9882 624.29837 -10572.746 0 204.80211 -0.001188767 -0.0012091179 + 116920 -6249.5894 -6253.8498 4.260398 3697.054 624.54385 -10575.448 0 204.18218 -0.0011989095 -0.001218426 + 116930 -6249.9933 -6254.2662 4.2728978 3697.6407 625.22535 -10577.132 0 204.78124 -0.00113337 -0.0011502558 + 116940 -6250.3818 -6254.6489 4.2670808 3696.8331 626.24249 -10577.724 0 204.50245 -0.0010054927 -0.0010184884 + 116950 -6250.7293 -6254.9618 4.2324745 3695.0587 627.37658 -10577.397 0 202.84392 -0.00084661036 -0.00085595106 + 116960 -6251.0099 -6255.1963 4.1864216 3692.9622 628.34749 -10576.506 0 200.63681 -0.00069803923 -0.00070584572 + 116970 -6251.2093 -6255.3569 4.1475624 3691.236 628.88843 -10575.481 0 198.77446 -0.00060080156 -0.0006102788 + 116980 -6251.3339 -6255.4418 4.1078894 3690.4393 628.81992 -10574.701 0 196.87311 -0.00058522274 -0.00059881427 + 116990 -6251.4086 -6255.4371 4.0284908 3690.8348 628.1033 -10574.375 0 193.06788 -0.00066219321 -0.00067978352 + 117000 -6251.4638 -6255.3325 3.8686851 3692.2863 626.85825 -10574.477 0 185.4091 -0.00081817192 -0.00083674282 + 117010 -6251.5165 -6255.1473 3.6308127 3694.2642 625.33732 -10574.749 0 174.00892 -0.0010163021 -0.0010316808 + 117020 -6251.559 -6254.942 3.3829823 3695.988 623.86306 -10574.793 0 162.1315 -0.0012051373 -0.0012149185 + 117030 -6251.5657 -6254.7962 3.2304497 3696.6876 622.74478 -10574.229 0 154.82128 -0.001333828 -0.0013393354 + 117040 -6251.5142 -6254.7603 3.246156 3695.897 622.19821 -10572.856 0 155.57401 -0.0013690459 -0.0013745703 + 117050 -6251.4069 -6254.8203 3.413454 3693.6564 622.28949 -10570.766 0 163.59187 -0.0013066533 -0.0013162966 + 117060 -6251.2727 -6254.9072 3.6345135 3690.5204 622.9197 -10568.347 0 174.18628 -0.0011724717 -0.001187086 + 117070 -6251.1458 -6254.9493 3.8035358 3687.3679 623.85725 -10566.174 0 182.28678 -0.0010116674 -0.0010284571 + 117080 -6251.0396 -6254.9227 3.8831063 3685.1042 624.81231 -10564.839 0 186.10024 -0.00087213356 -0.0008871817 + 117090 -6250.9384 -6254.8573 3.9189741 3684.3888 625.53143 -10564.778 0 187.81923 -0.00078952593 -0.00080098954 + 117100 -6250.8132 -6254.7991 3.985958 3685.4751 625.87845 -10566.153 0 191.02947 -0.00077901595 -0.00078834457 + 117110 -6250.6466 -6254.7628 4.116173 3688.1771 625.87137 -10568.811 0 197.27011 -0.00083427963 -0.00084465426 + 117120 -6250.4467 -6254.7173 4.270665 3691.9324 625.66177 -10572.311 0 204.67423 -0.00093144183 -0.00094494617 + 117130 -6250.238 -6254.6145 4.3765012 3695.9231 625.46705 -10576.005 0 209.74649 -0.0010357824 -0.0010517668 + 117140 -6250.0399 -6254.4357 4.3958101 3699.2432 625.4838 -10579.163 0 210.67189 -0.0011103989 -0.0011263838 + 117150 -6249.8494 -6254.2137 4.3642903 3701.1045 625.81645 -10581.135 0 209.16128 -0.0011263389 -0.0011405115 + 117160 -6249.6456 -6254.0093 4.3636887 3701.0483 626.44495 -10581.503 0 209.13245 -0.001072082 -0.0010850038 + 117170 -6249.4101 -6253.8658 4.4556815 3699.0926 627.23609 -10580.194 0 213.54126 -0.00095842691 -0.00097243174 + 117180 -6249.1428 -6253.7828 4.6400046 3695.7384 627.9867 -10577.508 0 222.37506 -0.00081560217 -0.00083262504 + 117190 -6248.8605 -6253.7311 4.8705976 3691.8202 628.48098 -10574.032 0 233.42637 -0.0006831731 -0.00070306665 + 117200 -6248.5824 -6253.6883 5.1058998 3688.2585 628.54673 -10570.494 0 244.70337 -0.00059718179 -0.00061782494 + 117210 -6248.3155 -6253.6608 5.3452565 3685.813 628.09885 -10567.573 0 256.17468 -0.00057982644 -0.00059866506 + 117220 -6248.0514 -6253.6774 5.6259965 3684.9101 627.16198 -10565.75 0 269.62932 -0.00063479338 -0.00065053988 + 117230 -6247.7745 -6253.7635 5.9890378 3685.581 625.86799 -10565.213 0 287.02829 -0.00074847309 -0.00076188168 + 117240 -6247.4751 -6253.9116 6.4365118 3687.5024 624.42962 -10565.844 0 308.47376 -0.00089548433 -0.00090878905 + 117250 -6247.1613 -6254.0676 6.9062491 3690.1103 623.09619 -10567.274 0 330.98621 -0.0010461307 -0.0010614655 + 117260 -6246.8601 -6254.1433 7.2831762 3692.7416 622.10213 -10568.987 0 349.05067 -0.0011731371 -0.0011909444 + 117270 -6246.603 -6254.0539 7.450861 3694.7653 621.62139 -10570.441 0 357.08706 -0.001255595 -0.0012742638 + 117280 -6246.4059 -6253.7619 7.3560583 3695.6909 621.74037 -10571.193 0 352.54359 -0.0012798929 -0.0012970946 + 117290 -6246.2581 -6253.2977 7.0396095 3695.2587 622.45459 -10571.011 0 337.37759 -0.0012395016 -0.0012541989 + 117300 -6246.1331 -6252.7417 6.6086129 3693.5152 623.68309 -10569.94 0 316.72181 -0.0011357536 -0.0011490689 + 117310 -6246.0097 -6252.1859 6.1762507 3690.8433 625.2867 -10568.316 0 296.00059 -0.0009796802 -0.00099379595 + 117320 -6245.8841 -6251.7077 5.8235891 3687.9078 627.07881 -10566.694 0 279.09907 -0.00079277299 -0.00080896078 + 117330 -6245.7629 -6251.372 5.6091225 3685.5078 628.83056 -10565.71 0 268.82062 -0.00060466712 -0.00062238974 + 117340 -6245.6462 -6251.2444 5.5981373 3684.3753 630.28413 -10565.904 0 268.29415 -0.0004478953 -0.00046578705 + 117350 -6245.5203 -6251.3842 5.8639866 3684.9903 631.18866 -10567.563 0 281.03514 -0.00035156505 -0.00036921077 + 117360 -6245.3663 -6251.8114 6.4451547 3687.4574 631.35822 -10570.627 0 308.88798 -0.00033563363 -0.00035434186 + 117370 -6245.1809 -6252.4697 7.2887711 3691.4584 630.73335 -10574.661 0 349.31881 -0.00040635519 -0.00042810601 + 117380 -6244.9909 -6253.2208 8.2299636 3696.2758 629.41855 -10578.915 0 394.42603 -0.00055307397 -0.00057849233 + 117390 -6244.8468 -6253.8845 9.0376129 3700.8902 627.67457 -10582.449 0 433.13312 -0.00074718792 -0.00077441399 + 117400 -6244.7962 -6254.3088 9.5126309 3704.1611 625.86238 -10584.332 0 455.89865 -0.00094510799 -0.00097097753 + 117410 -6244.8534 -6254.429 9.5755639 3705.0941 624.35448 -10583.878 0 458.91475 -0.0010972894 -0.0011202183 + 117420 -6244.9977 -6254.2698 9.2721332 3703.1521 623.44107 -10580.863 0 444.37265 -0.0011632482 -0.0011850897 + 117430 -6245.2012 -6253.8958 8.6945699 3698.5033 623.25693 -10575.656 0 416.69258 -0.0011275353 -0.0011520478 + 117440 -6245.4565 -6253.3623 7.905866 3692.0626 623.74619 -10569.171 0 378.89346 -0.0010078415 -0.0010367704 + 117450 -6245.77 -6252.72 6.9499671 3685.2597 624.67438 -10562.654 0 333.08142 -0.00084913388 -0.00087980835 + 117460 -6246.1329 -6252.0583 5.9254801 3679.6139 625.69113 -10557.363 0 283.98226 -0.00070632426 -0.00073347388 + 117470 -6246.5067 -6251.5271 5.0203944 3676.308 626.43408 -10554.269 0 240.60547 -0.00062495276 -0.00064521566 + 117480 -6246.8445 -6251.2892 4.4447719 3675.9282 626.64445 -10553.862 0 213.01841 -0.00062878095 -0.00064364998 + 117490 -6247.1281 -6251.435 4.3069016 3678.4143 626.25293 -10556.102 0 206.41089 -0.00071682438 -0.00073128259 + 117500 -6247.3857 -6251.9258 4.5401265 3683.1506 625.4012 -10560.478 0 217.58834 -0.00086667538 -0.00088483683 + 117510 -6247.6737 -6252.6202 4.9465031 3689.1166 624.39049 -10566.127 0 237.06418 -0.0010402882 -0.001062035 + 117520 -6248.037 -6253.3591 5.3221106 3695.0762 623.57775 -10572.013 0 255.0654 -0.0011914727 -0.0012129598 + 117530 -6248.4792 -6254.0414 5.5622368 3699.8243 623.25937 -10577.125 0 266.57359 -0.0012763975 -0.001293663 + 117540 -6248.9656 -6254.6373 5.671682 3702.4739 623.58285 -10580.694 0 271.81883 -0.0012664927 -0.0012787996 + 117550 -6249.4518 -6255.1448 5.6930571 3702.6952 624.51163 -10582.352 0 272.84324 -0.0011593103 -0.0011694531 + 117560 -6249.9103 -6255.5397 5.6293861 3700.8 625.84593 -10582.186 0 269.79177 -0.00098154986 -0.00099320177 + 117570 -6250.3361 -6255.7639 5.4278544 3697.616 627.28422 -10580.664 0 260.13324 -0.00078150433 -0.0007960636 + 117580 -6250.7303 -6255.7618 5.0315424 3694.1948 628.50118 -10578.458 0 241.13974 -0.00061350861 -0.00062905805 + 117590 -6251.0819 -6255.5321 4.4501224 3691.4728 629.22112 -10576.226 0 213.27484 -0.00052096029 -0.00053409546 + 117600 -6251.3654 -6255.1528 3.7873705 3690.0207 629.2737 -10574.447 0 181.51205 -0.00052477654 -0.00053372656 + 117610 -6251.5553 -6254.7537 3.1983462 3689.9594 628.62673 -10573.34 0 153.28269 -0.00062077919 -0.00062719307 + 117620 -6251.6464 -6254.4524 2.8059378 3691.0304 627.39268 -10572.875 0 134.47629 -0.00078472457 -0.00079257528 + 117630 -6251.6618 -6254.3025 2.6406932 3692.738 625.80572 -10572.846 0 126.55684 -0.00098069133 -0.000993162 + 117640 -6251.6419 -6254.2904 2.6485057 3694.4872 624.16964 -10572.947 0 126.93126 -0.0011690543 -0.0011859765 + 117650 -6251.6217 -6254.3752 2.7534656 3695.6955 622.78688 -10572.858 0 131.96152 -0.0013130283 -0.0013309437 + 117660 -6251.61 -6254.5309 2.9209042 3695.9017 621.8875 -10572.32 0 139.98612 -0.0013847031 -0.0013994629 + 117670 -6251.5863 -6254.759 3.1726566 3694.8847 621.57932 -10571.223 0 152.05151 -0.0013709857 -0.0013809095 + 117680 -6251.516 -6255.0631 3.5471143 3692.7649 621.83393 -10569.662 0 169.99762 -0.0012780492 -0.0012853574 + 117690 -6251.3767 -6255.4121 4.0354366 3690.0325 622.51127 -10567.956 0 193.40076 -0.0011317339 -0.0011411857 + 117700 -6251.1786 -6255.7211 4.5424476 3687.4527 623.41334 -10566.587 0 217.69958 -0.00097183876 -0.00098739409 + 117710 -6250.9642 -6255.8737 4.9094315 3685.8465 624.34761 -10566.068 0 235.2875 -0.00084047069 -0.00086227077 + 117720 -6250.7829 -6255.7787 4.9958551 3685.8111 625.17815 -10566.768 0 239.42941 -0.00076796992 -0.00079194402 + 117730 -6250.658 -6255.4263 4.7683314 3687.4945 625.8486 -10568.769 0 228.52519 -0.00076252554 -0.00078313506 + 117740 -6250.5725 -6254.9022 4.3296692 3690.5356 626.37354 -10571.811 0 207.50204 -0.00080885137 -0.00082302053 + 117750 -6250.4847 -6254.3466 3.8618838 3694.2016 626.80767 -10575.356 0 185.08314 -0.0008766792 -0.0008858935 + 117760 -6250.361 -6253.8852 3.5242723 3697.6504 627.20812 -10578.744 0 168.9029 -0.00093434676 -0.00094329772 + 117770 -6250.1981 -6253.5799 3.3818378 3700.1889 627.60283 -10581.372 0 162.07664 -0.00096045607 -0.00097337741 + 117780 -6250.0198 -6253.4302 3.4104002 3701.4177 627.97264 -10582.821 0 163.44552 -0.00094880098 -0.00096641869 + 117790 -6249.853 -6253.413 3.5600521 3701.2455 628.25102 -10582.909 0 170.61767 -0.00090632695 -0.00092566902 + 117800 -6249.7032 -6253.5194 3.8161652 3699.8252 628.34228 -10581.687 0 182.89205 -0.00084736662 -0.00086430529 + 117810 -6249.5486 -6253.7579 4.209237 3697.4794 628.15424 -10579.392 0 201.73025 -0.00078796807 -0.00080040172 + 117820 -6249.3541 -6254.1251 4.7710487 3694.6446 627.63486 -10576.405 0 228.65542 -0.00074247506 -0.00075187109 + 117830 -6249.0974 -6254.5705 5.4730643 3691.8248 626.79929 -10573.195 0 262.29995 -0.00072238686 -0.00073272328 + 117840 -6248.79 -6254.9831 6.1931113 3689.5256 625.73619 -10570.245 0 296.80864 -0.00073610052 -0.00075096413 + 117850 -6248.4765 -6255.2183 6.7417292 3688.1531 624.58972 -10567.961 0 323.10149 -0.00078783657 -0.00080765463 + 117860 -6248.2101 -6255.1571 6.9470657 3687.8934 623.5236 -10566.574 0 332.94237 -0.00087504942 -0.00089656315 + 117870 -6248.0159 -6254.77 6.754109 3688.6288 622.68161 -10566.08 0 323.6948 -0.00098567849 -0.0010044157 + 117880 -6247.8737 -6254.14 6.2663179 3689.9551 622.16178 -10566.257 0 300.31711 -0.0010982332 -0.0011123066 + 117890 -6247.736 -6253.422 5.6859286 3691.3268 622.01375 -10566.763 0 272.5016 -0.0011867336 -0.0011986821 + 117900 -6247.5693 -6252.7625 5.1932363 3692.268 622.25331 -10567.284 0 248.88902 -0.001228777 -0.0012434957 + 117910 -6247.3781 -6252.2447 4.8665555 3692.5338 622.87579 -10567.654 0 233.23265 -0.0012119628 -0.0012324 + 117920 -6247.1932 -6251.8987 4.7055191 3692.1426 623.85292 -10567.894 0 225.51488 -0.0011352637 -0.0011598307 + 117930 -6247.0343 -6251.7513 4.7170684 3691.3067 625.11481 -10568.173 0 226.06839 -0.0010064884 -0.0010305341 + 117940 -6246.8845 -6251.8524 4.9679202 3690.3438 626.5334 -10568.73 0 238.09061 -0.00083989301 -0.0008598507 + 117950 -6246.698 -6252.244 5.5460739 3689.629 627.9243 -10569.797 0 265.79898 -0.00065657551 -0.00067310627 + 117960 -6246.4365 -6252.8945 6.4579313 3689.5675 629.07435 -10571.536 0 309.5003 -0.0004861031 -0.00050348312 + 117970 -6246.109 -6253.6589 7.5498815 3690.5267 629.78957 -10573.975 0 361.83268 -0.00036449369 -0.00038673082 + 117980 -6245.7772 -6254.3163 8.5390186 3692.6874 629.94847 -10576.952 0 409.23769 -0.00032469384 -0.00035187198 + 117990 -6245.5172 -6254.6705 9.1533315 3695.8675 629.5414 -10580.079 0 438.679 -0.00038195111 -0.00041028273 + 118000 -6245.3673 -6254.6426 9.275292 3699.4458 628.68075 -10582.769 0 444.52403 -0.00052317227 -0.00054867734 + 118010 -6245.3119 -6254.2815 8.9695756 3702.486 627.57768 -10584.345 0 429.87239 -0.00070876457 -0.00073079637 + 118020 -6245.3121 -6253.7003 8.3881682 3704.0343 626.49339 -10584.228 0 402.00809 -0.0008866053 -0.00090773597 + 118030 -6245.344 -6253.0052 7.6611904 3703.446 625.6778 -10582.129 0 367.16723 -0.0010095782 -0.0010323149 + 118040 -6245.4066 -6252.2784 6.8717961 3700.5967 625.3064 -10578.182 0 329.33503 -0.0010483568 -0.0010723099 + 118050 -6245.5002 -6251.6067 6.1064576 3695.9205 625.42556 -10572.953 0 292.65571 -0.00099719404 -0.0010194717 + 118060 -6245.6076 -6251.1047 5.4970524 3690.3101 625.92345 -10567.338 0 263.44959 -0.00087458012 -0.00089274068 + 118070 -6245.6971 -6250.893 5.1959306 3684.9361 626.5462 -10562.375 0 249.01815 -0.00071987977 -0.00073446201 + 118080 -6245.7441 -6251.044 5.2998936 3681.0145 626.96773 -10559.026 0 254.00064 -0.0005849867 -0.00059933216 + 118090 -6245.7507 -6251.535 5.7842581 3679.5357 626.89947 -10557.97 0 277.2141 -0.00052046506 -0.00053804367 + 118100 -6245.7492 -6252.2475 6.4983194 3680.9849 626.20439 -10559.437 0 311.43593 -0.00055862697 -0.00058013056 + 118110 -6245.7855 -6253.0148 7.2293129 3685.1341 624.97119 -10563.12 0 346.46924 -0.00069926643 -0.00072191505 + 118120 -6245.8947 -6253.689 7.7942844 3691.0148 623.51337 -10568.217 0 373.54584 -0.00090502375 -0.0009247807 + 118130 -6246.0858 -6254.1849 8.0990359 3697.1421 622.28421 -10573.611 0 388.15124 -0.0011109215 -0.0011259064 + 118140 -6246.3495 -6254.4796 8.1300961 3701.9571 621.7324 -10578.169 0 389.63982 -0.0012464718 -0.0012587493 + 118150 -6246.6788 -6254.5801 7.901342 3704.3291 622.14871 -10581.058 0 378.67664 -0.0012618831 -0.0012760265 + 118160 -6247.0804 -6254.4936 7.4132198 3703.9129 623.55927 -10581.966 0 355.28309 -0.0011468399 -0.0011662813 + 118170 -6247.5611 -6254.2291 6.6679916 3701.2101 625.70443 -10581.144 0 319.56757 -0.00093341363 -0.0009575403 + 118180 -6248.0999 -6253.8271 5.7271811 3697.3209 628.11098 -10579.259 0 274.47865 -0.00068248441 -0.00070702231 + 118190 -6248.6395 -6253.384 4.7444611 3693.5193 630.23152 -10577.135 0 227.38119 -0.00046133501 -0.00048173879 + 118200 -6249.114 -6253.0369 3.9228812 3690.854 631.59967 -10575.491 0 188.00648 -0.00032325602 -0.00033810676 + 118210 -6249.4857 -6252.9092 3.423537 3689.9149 631.94676 -10574.771 0 164.0751 -0.00029598513 -0.00030765893 + 118220 -6249.7585 -6253.0559 3.2974292 3690.7792 631.24968 -10575.085 0 158.03131 -0.00037931354 -0.00039185102 + 118230 -6249.9656 -6253.4453 3.4797205 3693.0749 629.71008 -10576.23 0 166.76773 -0.00054897251 -0.00056513019 + 118240 -6250.1467 -6253.9817 3.8350669 3696.105 627.68355 -10577.77 0 183.79792 -0.0007642265 -0.00078374928 + 118250 -6250.3297 -6254.5516 4.2218982 3699.0115 625.58264 -10579.146 0 202.33705 -0.00097757847 -0.00099759838 + 118260 -6250.5199 -6255.0644 4.5445441 3700.9672 623.77892 -10579.811 0 217.80005 -0.0011452066 -0.0011623589 + 118270 -6250.7003 -6255.47 4.769715 3701.3756 622.52821 -10579.374 0 228.59151 -0.0012365253 -0.001249364 + 118280 -6250.8449 -6255.7454 4.9004645 3700.0371 621.93604 -10577.719 0 234.85776 -0.0012410296 -0.0012510398 + 118290 -6250.9382 -6255.8673 4.9291092 3697.2287 621.96576 -10575.062 0 236.23057 -0.0011704538 -0.0011808138 + 118300 -6250.9863 -6255.7987 4.8124466 3693.6461 622.47685 -10571.922 0 230.63944 -0.0010547331 -0.0010677052 + 118310 -6251.0114 -6255.5112 4.4997854 3690.2076 623.2749 -10568.994 0 215.65496 -0.00093206729 -0.00094716173 + 118320 -6251.0313 -6255.0274 3.9960517 3687.7791 624.15907 -10566.965 0 191.51322 -0.00083632247 -0.00085084582 + 118330 -6251.0448 -6254.4472 3.4024472 3686.9335 624.96153 -10566.342 0 163.06436 -0.00078697699 -0.00079848585 + 118340 -6251.0331 -6253.9247 2.891542 3687.834 625.57671 -10567.335 0 138.57892 -0.00078560866 -0.00079411321 + 118350 -6250.9755 -6253.6057 2.6301628 3690.2566 625.97719 -10569.839 0 126.05216 -0.00081908992 -0.0008271749 + 118360 -6250.8617 -6253.566 2.7043375 3693.7004 626.21158 -10573.478 0 129.60703 -0.00086636153 -0.00087723214 + 118370 -6250.6941 -6253.7867 3.09253 3697.5194 626.38197 -10577.688 0 148.21139 -0.00090519981 -0.00092026387 + 118380 -6250.4803 -6254.1748 3.694514 3701.0365 626.60371 -10581.815 0 177.06184 -0.00091721334 -0.00093502156 + 118390 -6250.2226 -6254.6114 4.388808 3703.6419 626.95727 -10585.211 0 210.33631 -0.0008912685 -0.00090857598 + 118400 -6249.9133 -6254.9938 5.0805008 3704.8888 627.44834 -10587.331 0 243.4861 -0.00082611414 -0.00084035427 + 118410 -6249.5409 -6255.2536 5.7127197 3704.5876 627.99453 -10587.836 0 273.78558 -0.00073211047 -0.00074355731 + 118420 -6249.1052 -6255.3458 6.2406252 3702.8735 628.44973 -10586.669 0 299.08577 -0.00063070791 -0.00064262978 + 118430 -6248.6332 -6255.2301 6.5969311 3700.1965 628.66007 -10584.087 0 316.16195 -0.00054994335 -0.00056633985 + 118440 -6248.1788 -6254.8714 6.6926188 3697.2004 628.52654 -10580.598 0 320.74785 -0.00051565499 -0.00053814518 + 118450 -6247.7988 -6254.2686 6.4698032 3694.5109 628.04287 -10576.822 0 310.06927 -0.00054125266 -0.00056767183 + 118460 -6247.5207 -6253.4882 5.9674329 3692.5303 627.29126 -10573.31 0 285.99287 -0.00062144725 -0.00064738253 + 118470 -6247.3301 -6252.6669 5.3367979 3691.3471 626.40344 -10570.417 0 255.7693 -0.00073410556 -0.00075603363 + 118480 -6247.1841 -6251.9709 4.7867852 3690.7987 625.51233 -10568.282 0 229.40961 -0.00084937205 -0.00086687886 + 118490 -6247.0387 -6251.5379 4.4991326 3690.6285 624.71937 -10566.886 0 215.62368 -0.00094075071 -0.00095646266 + 118500 -6246.868 -6251.4346 4.5666041 3690.6386 624.08756 -10566.161 0 218.85729 -0.00099269954 -0.0010104241 + 118510 -6246.6704 -6251.6453 4.9749081 3690.7693 623.6545 -10566.069 0 238.42551 -0.0010024778 -0.0010248865 + 118520 -6246.4654 -6252.0871 5.6217073 3691.0895 623.4503 -10566.627 0 269.42376 -0.00097703907 -0.0010040497 + 118530 -6246.2819 -6252.645 6.3630436 3691.7206 623.50642 -10567.872 0 304.95275 -0.00092714562 -0.00095584214 + 118540 -6246.1418 -6253.2145 7.0727089 3692.7382 623.85036 -10569.803 0 338.96389 -0.00086155468 -0.000887974 + 118550 -6246.0466 -6253.7269 7.6802987 3694.1119 624.4914 -10572.33 0 368.08301 -0.00078447037 -0.00080632981 + 118560 -6245.9843 -6254.1399 8.1556355 3695.7232 625.4068 -10575.27 0 390.86381 -0.0006979182 -0.00071613967 + 118570 -6245.9485 -6254.4066 8.4581267 3697.4371 626.53349 -10578.377 0 405.36089 -0.00060686575 -0.00062445219 + 118580 -6245.9499 -6254.4656 8.515626 3699.1542 627.7647 -10581.385 0 408.11658 -0.00052222717 -0.00054157339 + 118590 -6246.0047 -6254.2706 8.265906 3700.7947 628.95302 -10584.018 0 396.1486 -0.00045884811 -0.00048005512 + 118600 -6246.1135 -6253.8311 7.7176453 3702.2427 629.92681 -10586.001 0 369.87287 -0.00043010001 -0.00045150291 + 118610 -6246.255 -6253.2236 6.9685887 3703.3124 630.52472 -10587.061 0 333.97387 -0.0004426537 -0.00046249894 + 118620 -6246.3976 -6252.5698 6.1721965 3703.7639 630.64054 -10586.974 0 295.80629 -0.00049346169 -0.00051114841 + 118630 -6246.5144 -6252.0029 5.4884562 3703.3627 630.26014 -10585.626 0 263.03762 -0.00056942424 -0.00058575838 + 118640 -6246.5921 -6251.6361 5.0440884 3701.9611 629.47186 -10583.069 0 241.74102 -0.00065017293 -0.00066682298 + 118650 -6246.6332 -6251.5368 4.9036366 3699.5829 628.44341 -10579.563 0 235.00978 -0.00071393155 -0.00073230212 + 118660 -6246.6534 -6251.7107 5.0572892 3696.4755 627.37127 -10575.557 0 242.37368 -0.00074458941 -0.00076462657 + 118670 -6246.6709 -6252.1101 5.4391949 3693.0962 626.41921 -10571.626 0 260.67674 -0.00073710322 -0.00075709754 + 118680 -6246.6936 -6252.6594 5.9657565 3690.0337 625.6685 -10568.362 0 285.91252 -0.00069966189 -0.00071759711 + 118690 -6246.7163 -6253.2734 6.5570928 3687.8997 625.1015 -10566.275 0 314.25268 -0.00065263265 -0.00066801453 + 118700 -6246.7322 -6253.8593 7.1270531 3687.2133 624.62849 -10565.701 0 341.56837 -0.00062394421 -0.00063837158 + 118710 -6246.7474 -6254.3186 7.5712263 3688.2736 624.14853 -10566.741 0 362.85564 -0.00064014199 -0.00065615884 + 118720 -6246.7823 -6254.5649 7.7825802 3691.0289 623.61932 -10569.213 0 372.98491 -0.00071468965 -0.00073399904 + 118730 -6246.8617 -6254.5488 7.6870975 3695.0012 623.10595 -10572.656 0 368.40884 -0.0008385079 -0.00086079864 + 118740 -6246.9999 -6254.2745 7.2745743 3699.3325 622.78383 -10576.391 0 348.63842 -0.00097821103 -0.001001149 + 118750 -6247.1913 -6253.8039 6.6125704 3702.9769 622.88712 -10579.668 0 316.91148 -0.001084327 -0.0011047184 + 118760 -6247.4093 -6253.2494 5.8401012 3704.9956 623.61571 -10581.861 0 279.89042 -0.0011075563 -0.0011232311 + 118770 -6247.6167 -6252.7507 5.1340344 3704.8649 625.03451 -10582.65 0 246.05173 -0.0010178599 -0.001029202 + 118780 -6247.7846 -6252.4348 4.6502359 3702.6911 627.00635 -10582.132 0 222.8654 -0.0008193258 -0.00082924685 + 118790 -6247.9074 -6252.3742 4.4667489 3699.2344 629.19018 -10580.799 0 214.07167 -0.00055406377 -0.00056624839 + 118800 -6248.0044 -6252.568 4.5635437 3695.7026 631.11417 -10579.385 0 218.71062 -0.00029193072 -0.00030858415 + 118810 -6248.1076 -6252.9534 4.8457831 3693.3647 632.3067 -10578.625 0 232.23712 -0.00010884599 -0.00012947639 + 118820 -6248.2462 -6253.4342 5.1879725 3693.1193 632.44506 -10578.999 0 248.63675 -6.1483331e-05 -8.3294956e-05 + 118830 -6248.4353 -6253.9115 5.4762282 3695.1736 631.46896 -10580.554 0 262.45158 -0.00016751025 -0.00018697871 + 118840 -6248.6707 -6254.3098 5.6391855 3698.9507 629.61295 -10582.873 0 270.26141 -0.00039852069 -0.00041334044 + 118850 -6248.932 -6254.5908 5.6587759 3703.2676 627.3402 -10585.199 0 271.20029 -0.00068876744 -0.00069921701 + 118860 -6249.1949 -6254.747 5.5520453 3706.7292 625.19983 -10586.676 0 266.08516 -0.00095728065 -0.00096604847 + 118870 -6249.446 -6254.7821 5.3361751 3708.1961 623.66058 -10586.639 0 255.73945 -0.0011350912 -0.0011453693 + 118880 -6249.688 -6254.7 5.0119802 3707.1441 622.98054 -10584.825 0 240.20221 -0.0011864258 -0.0011995427 + 118890 -6249.9295 -6254.5165 4.5870305 3703.7904 623.1541 -10581.461 0 219.83624 -0.0011158717 -0.0011304538 + 118900 -6250.1679 -6254.2811 4.113194 3698.9734 623.94572 -10577.2 0 197.12734 -0.00096107657 -0.00097452172 + 118910 -6250.3861 -6254.0758 3.6897235 3693.8793 624.98939 -10572.945 0 176.83225 -0.00077701846 -0.00078789471 + 118920 -6250.5643 -6253.9804 3.4160803 3689.7288 625.91442 -10569.624 0 163.71774 -0.00061909067 -0.00062821877 + 118930 -6250.697 -6254.0298 3.3328553 3687.4986 626.45565 -10567.984 0 159.72912 -0.0005292914 -0.00053864979 + 118940 -6250.7959 -6254.1994 3.4035031 3687.7114 626.51743 -10568.428 0 163.11497 -0.00052690623 -0.00053760937 + 118950 -6250.8792 -6254.4307 3.5515131 3690.3194 626.17962 -10570.93 0 170.20844 -0.00060454859 -0.00061588779 + 118960 -6250.9549 -6254.6733 3.7183945 3694.7171 625.65212 -10575.042 0 178.20633 -0.00073093447 -0.0007413075 + 118970 -6251.0139 -6254.9065 3.8925553 3699.9022 625.198 -10580.007 0 186.55309 -0.00086085319 -0.00086959106 + 118980 -6251.0383 -6255.1263 4.0879916 3704.7498 625.05055 -10584.927 0 195.9195 -0.00094993319 -0.00095822745 + 118990 -6251.017 -6255.3146 4.2975732 3708.3089 625.34653 -10588.97 0 205.96382 -0.00096893524 -0.00097893617 + 119000 -6250.9561 -6255.4246 4.4684901 3710.0191 626.09044 -10591.534 0 214.15512 -0.00091191847 -0.00092478545 + 119010 -6250.873 -6255.4003 4.5272715 3709.7812 627.15571 -10592.337 0 216.97225 -0.00079544722 -0.0008101371 + 119020 -6250.7802 -6255.216 4.4358819 3707.8922 628.32044 -10591.429 0 212.59235 -0.0006504091 -0.00066436357 + 119030 -6250.673 -6254.9025 4.2294964 3704.9054 629.32696 -10589.135 0 202.7012 -0.00051121702 -0.00052238642 + 119040 -6250.5322 -6254.5334 4.0011182 3701.4839 629.9476 -10585.965 0 191.75604 -0.0004071694 -0.00041559076 + 119050 -6250.3378 -6254.1844 3.846614 3698.2818 630.03686 -10582.503 0 184.35132 -0.00035794454 -0.00036556293 + 119060 -6250.081 -6253.8984 3.8174092 3695.8472 629.55602 -10579.302 0 182.95167 -0.0003722641 -0.00038132059 + 119070 -6249.7658 -6253.6805 3.9146293 3694.5379 628.56788 -10576.786 0 187.611 -0.00044796183 -0.00045940844 + 119080 -6249.4015 -6253.5203 4.1187965 3694.4582 627.2107 -10575.189 0 197.39584 -0.00057270308 -0.00058585431 + 119090 -6248.9931 -6253.4172 4.4241232 3695.438 625.66584 -10574.521 0 212.02881 -0.00072560711 -0.00073914843 + 119100 -6248.5392 -6253.3874 4.8481947 3697.0719 624.13144 -10574.591 0 232.35269 -0.00088015344 -0.00089362391 + 119110 -6248.0393 -6253.4447 5.4053981 3698.8201 622.807 -10575.072 0 259.05701 -0.0010083246 -0.0010227626 + 119120 -6247.5101 -6253.5701 6.0600081 3700.1484 621.8841 -10575.603 0 290.42959 -0.0010852924 -0.0011022183 + 119130 -6246.9934 -6253.697 6.7035944 3700.6642 621.53246 -10575.894 0 321.27386 -0.0010933934 -0.0011128198 + 119140 -6246.5411 -6253.7379 7.1967662 3700.2045 621.87194 -10575.814 0 344.90942 -0.0010245213 -0.0010441011 + 119150 -6246.1834 -6253.6385 7.4550939 3698.8686 622.93276 -10575.44 0 357.28993 -0.00088163653 -0.00089836047 + 119160 -6245.9098 -6253.4106 7.5008838 3697.0196 624.61974 -10575.05 0 359.48444 -0.0006807904 -0.00069389992 + 119170 -6245.6847 -6253.1153 7.430594 3695.2554 626.70167 -10575.072 0 356.11576 -0.00045286898 -0.00046505177 + 119180 -6245.4811 -6252.8158 7.3346842 3694.3062 628.83962 -10575.962 0 351.51922 -0.00024146521 -0.00025704176 + 119190 -6245.3002 -6252.5417 7.2415262 3694.8325 630.65558 -10578.03 0 347.05457 -9.4096461e-05 -0.00011566435 + 119200 -6245.1672 -6252.2855 7.1182574 3697.1686 631.82715 -10581.281 0 341.14684 -4.809628e-05 -7.4124379e-05 + 119210 -6245.1068 -6252.0283 6.9215535 3701.1105 632.17888 -10585.318 0 331.71968 -0.00011602633 -0.0001412271 + 119220 -6245.1141 -6251.7842 6.6701004 3705.8545 631.73451 -10589.373 0 319.66864 -0.00027688653 -0.00029574986 + 119230 -6245.1437 -6251.6244 6.4807056 3710.1599 630.70695 -10592.491 0 310.59178 -0.00047905392 -0.00049059215 + 119240 -6245.134 -6251.642 6.5080123 3712.7315 629.42942 -10593.803 0 311.90046 -0.00065703896 -0.00066671832 + 119250 -6245.0588 -6251.8683 6.8095455 3712.6888 628.2535 -10592.811 0 326.35163 -0.00075614015 -0.00077219698 + 119260 -6244.9586 -6252.2204 7.2617258 3709.8929 627.44628 -10589.56 0 348.02264 -0.00075235981 -0.00077877404 + 119270 -6244.9153 -6252.5509 7.6356425 3704.9654 627.11564 -10584.632 0 365.94283 -0.00065708655 -0.00068962527 + 119280 -6244.983 -6252.7647 7.7816419 3699.0281 627.18649 -10578.979 0 372.93994 -0.00050686805 -0.00053643426 + 119290 -6245.1439 -6252.8864 7.7425619 3693.3591 627.43844 -10573.684 0 371.06701 -0.00034820142 -0.00036861234 + 119300 -6245.331 -6253.0133 7.6822442 3689.1311 627.59333 -10569.738 0 368.17625 -0.0002265481 -0.00023946051 + 119310 -6245.4951 -6253.2027 7.7075591 3687.2458 627.41906 -10567.868 0 369.38948 -0.00018018755 -0.00019291633 + 119320 -6245.6474 -6253.4065 7.7591016 3688.1852 626.81152 -10568.403 0 371.85968 -0.00023372088 -0.00025244327 + 119330 -6245.8437 -6253.5078 7.6641366 3691.8494 625.83051 -10571.188 0 367.30843 -0.00038874167 -0.00041325177 + 119340 -6246.1274 -6253.4244 7.2969386 3697.4651 624.68456 -10575.574 0 349.71024 -0.00061610447 -0.0006404142 + 119350 -6246.484 -6253.1909 6.7069051 3703.6879 623.67492 -10580.554 0 321.43253 -0.00085774205 -0.00087575209 + 119360 -6246.8471 -6252.9492 6.1021251 3708.9508 623.11693 -10585.017 0 292.44808 -0.0010422711 -0.0010534671 + 119370 -6247.1521 -6252.8471 5.6949713 3711.9597 623.25856 -10588.065 0 272.93498 -0.0011098152 -0.001119874 + 119380 -6247.3883 -6252.9267 5.5383639 3712.1216 624.21064 -10589.259 0 265.42948 -0.0010343436 -0.0010500255 + 119390 -6247.6029 -6253.0984 5.4955168 3709.7007 625.90066 -10588.7 0 263.376 -0.00083240106 -0.0008553395 + 119400 -6247.8545 -6253.2247 5.370185 3705.6473 628.06355 -10586.936 0 257.3694 -0.00055509803 -0.00058018549 + 119410 -6248.1581 -6253.2389 5.080752 3701.2246 630.28328 -10584.747 0 243.49814 -0.00026957606 -0.00028941782 + 119420 -6248.4712 -6253.1962 4.7249366 3697.6345 632.08585 -10582.917 0 226.44547 -4.0103294e-05 -5.1435546e-05 + 119430 -6248.7313 -6253.22 4.4886395 3695.772 633.06213 -10582.054 0 215.12079 8.4695121e-05 7.8279207e-05 + 119440 -6248.9079 -6253.3999 4.49199 3696.1049 632.98162 -10582.486 0 215.28137 7.8619108e-05 6.9675645e-05 + 119450 -6249.0251 -6253.7275 4.702436 3698.6112 631.85925 -10584.198 0 225.36712 -5.818531e-05 -7.5036441e-05 + 119460 -6249.1429 -6254.1124 4.9694716 3702.7489 629.95394 -10586.815 0 238.16496 -0.0002972633 -0.00032125534 + 119470 -6249.3136 -6254.4526 5.1389805 3707.5016 627.69952 -10589.654 0 246.28878 -0.00058440524 -0.00060932432 + 119480 -6249.5456 -6254.7018 5.1562501 3711.5684 625.58909 -10591.859 0 247.11644 -0.00084996431 -0.00086894053 + 119490 -6249.8002 -6254.8818 5.0815799 3713.7079 624.04724 -10592.637 0 243.53782 -0.0010271212 -0.0010378062 + 119500 -6250.0247 -6255.0349 5.0101403 3713.148 623.3272 -10591.51 0 240.11404 -0.0010731433 -0.001079273 + 119510 -6250.1941 -6255.1603 4.966202 3709.8947 623.45975 -10588.515 0 238.00826 -0.00098485137 -0.00099303144 + 119520 -6250.3284 -6255.1951 4.8666512 3704.7779 624.2634 -10584.236 0 233.23723 -0.00080026484 -0.00081468263 + 119530 -6250.4713 -6255.0618 4.5904881 3699.1891 625.40905 -10579.66 0 220.00195 -0.00058439726 -0.00060381065 + 119540 -6250.6488 -6254.7446 4.095825 3694.6164 626.52036 -10575.881 0 196.29491 -0.00040528782 -0.00042457995 + 119550 -6250.8467 -6254.3279 3.481266 3692.1863 627.28258 -10573.797 0 166.8418 -0.00031127633 -0.00032593426 + 119560 -6251.0241 -6253.962 2.9379111 3692.3882 627.52903 -10573.879 0 140.80118 -0.00031878135 -0.00032838728 + 119570 -6251.1485 -6253.781 2.6324556 3695.0443 627.27901 -10576.104 0 126.16204 -0.00041306422 -0.00042110011 + 119580 -6251.2206 -6253.8336 2.6130238 3699.4584 626.71582 -10580.008 0 125.23076 -0.00055800854 -0.00056853307 + 119590 -6251.2704 -6254.0727 2.802327 3704.6388 626.11403 -10584.826 0 134.30323 -0.00070878536 -0.00072296623 + 119600 -6251.3311 -6254.4035 3.0724095 3709.5155 625.74248 -10589.661 0 147.2471 -0.00082313753 -0.00083848539 + 119610 -6251.4115 -6254.7485 3.3369875 3713.1371 625.77721 -10593.663 0 159.92717 -0.00087003025 -0.00088282553 + 119620 -6251.4887 -6255.0781 3.5893497 3714.8504 626.25302 -10596.182 0 172.02178 -0.00083595438 -0.00084467906 + 119630 -6251.526 -6255.3882 3.8622144 3714.4459 627.06575 -10596.9 0 185.09898 -0.00072847896 -0.00073524554 + 119640 -6251.5014 -6255.6553 4.1538749 3712.2115 628.01713 -10595.884 0 199.07699 -0.00057518194 -0.00058393357 + 119650 -6251.4238 -6255.817 4.3932264 3708.8457 628.88098 -10593.544 0 210.54806 -0.00041627643 -0.00042936502 + 119660 -6251.3222 -6255.8014 4.4791475 3705.2344 629.46646 -10590.502 0 214.66588 -0.00029207258 -0.00030820881 + 119670 -6251.2195 -6255.581 4.3614628 3702.1793 629.66026 -10587.421 0 209.02577 -0.00023009384 -0.0002454364 + 119680 -6251.1119 -6255.2043 4.0923542 3700.1937 629.4398 -10584.838 0 196.12857 -0.00023793705 -0.00024937067 + 119690 -6250.9718 -6254.7736 3.8018105 3699.444 628.86046 -10583.078 0 182.20409 -0.00030501338 -0.00031281895 + 119700 -6250.7701 -6254.3855 3.6154122 3699.8238 628.02852 -10582.238 0 173.27084 -0.00041090853 -0.0004185901 + 119710 -6250.4996 -6254.0799 3.5803031 3701.0779 627.07252 -10582.23 0 171.58821 -0.00053440796 -0.0005458473 + 119720 -6250.1801 -6253.8375 3.6573822 3702.8856 626.1216 -10582.845 0 175.28228 -0.00065796463 -0.00067429131 + 119730 -6249.8425 -6253.6264 3.7838246 3704.8777 625.29335 -10583.797 0 181.3421 -0.0007665722 -0.0007853971 + 119740 -6249.5021 -6253.4535 3.9514019 3706.6316 624.69046 -10584.776 0 189.37335 -0.00084433838 -0.00086204182 + 119750 -6249.1449 -6253.3726 4.2276845 3707.7161 624.40259 -10585.491 0 202.61436 -0.00087353957 -0.00088859201 + 119760 -6248.7431 -6253.435 4.6919468 3707.8121 624.50722 -10585.754 0 224.86442 -0.00083863935 -0.00085282638 + 119770 -6248.2883 -6253.6267 5.3384283 3706.8524 625.05974 -10585.539 0 255.84744 -0.00073343664 -0.00074971902 + 119780 -6247.8116 -6253.8532 6.0415989 3705.0885 626.06653 -10585.008 0 289.54732 -0.00056674283 -0.00058585086 + 119790 -6247.3654 -6253.9917 6.626304 3703.0351 627.44714 -10584.474 0 317.56967 -0.00036316441 -0.00038246344 + 119800 -6246.9836 -6253.9664 6.9828433 3701.3282 629.00756 -10584.302 0 334.65703 -0.00015917089 -0.00017509986 + 119810 -6246.6588 -6253.7824 7.123615 3700.5633 630.45206 -10584.798 0 341.4036 3.3659448e-06 -8.4229526e-06 + 119820 -6246.3584 -6253.4967 7.1382786 3701.1586 631.44826 -10586.103 0 342.10636 8.5065876e-05 7.3941327e-05 + 119830 -6246.0611 -6253.1562 7.0951151 3703.2432 631.73354 -10588.133 0 340.03773 5.8685272e-05 4.2895209e-05 + 119840 -6245.783 -6252.7592 6.9761849 3706.568 631.22373 -10590.551 0 334.33793 -8.0087856e-05 -0.000103094 + 119850 -6245.5672 -6252.2779 6.7107083 3710.4599 630.07098 -10592.809 0 321.61479 -0.00030394261 -0.00033090467 + 119860 -6245.4399 -6251.7352 6.2952575 3713.8762 628.63275 -10594.244 0 301.70406 -0.00055307391 -0.00057683766 + 119870 -6245.3717 -6251.2646 5.8928419 3715.6319 627.35584 -10594.252 0 282.41805 -0.0007478373 -0.00076355138 + 119880 -6245.2864 -6251.0714 5.7849778 3714.8103 626.62426 -10592.506 0 277.2486 -0.00081530937 -0.00082553652 + 119890 -6245.1184 -6251.2966 6.1782743 3711.2143 626.6329 -10589.144 0 296.09757 -0.00072029822 -0.00073368855 + 119900 -6244.8705 -6251.8976 7.0270848 3705.602 627.3271 -10584.827 0 336.77733 -0.00048463846 -0.00050873466 + 119910 -6244.6196 -6252.6571 8.0375317 3699.5168 628.42002 -10580.594 0 385.20362 -0.00018260839 -0.00021724257 + 119920 -6244.4618 -6253.3139 8.8520954 3694.7576 629.4827 -10577.554 0 424.24208 8.6659055e-05 4.9390023e-05 + 119930 -6244.4445 -6253.7019 9.2573557 3692.7418 630.08674 -10576.53 0 443.66443 0.00023637381 0.00020568192 + 119940 -6244.5401 -6253.7992 9.2590134 3694.0462 629.95654 -10577.802 0 443.74387 0.00022176351 0.00020087215 + 119950 -6244.6804 -6253.6769 8.996517 3698.2836 629.07463 -10581.035 0 431.16357 5.1116213e-05 3.4896449e-05 + 119960 -6244.8174 -6253.408 8.5906094 3704.3031 627.69743 -10585.409 0 411.71021 -0.00022253529 -0.00024332898 + 119970 -6244.9604 -6253.011 8.0506122 3710.5784 626.2743 -10589.864 0 385.83051 -0.00052159232 -0.00055274464 + 119980 -6245.1567 -6252.4726 7.3159708 3715.6141 625.29765 -10593.384 0 350.62237 -0.00076609125 -0.00080492817 + 119990 -6245.4349 -6251.8322 6.3972737 3718.2584 625.13485 -10595.225 0 306.59325 -0.00089162191 -0.00092893832 + 120000 -6245.7627 -6251.244 5.4813054 3717.9148 625.90173 -10595.06 0 262.69491 -0.00086226281 -0.00088996399 + 120010 -6246.0631 -6250.938 4.8749253 3714.6897 627.42543 -10593.053 0 233.63377 -0.00067996313 -0.00069790151 + 120020 -6246.2764 -6251.0824 4.8059708 3709.4553 629.30725 -10589.845 0 230.32909 -0.00038863188 -0.00040445226 + 120030 -6246.4119 -6251.6577 5.2458283 3703.721 631.05251 -10586.431 0 251.40953 -6.7324472e-05 -8.942148e-05 + 120040 -6246.5449 -6252.46 5.915065 3699.2301 632.21366 -10583.904 0 283.4831 0.00019128565 0.00016125512 + 120050 -6246.7594 -6253.2355 6.4761538 3697.3754 632.50378 -10583.115 0 310.37363 0.00031232636 0.00028063867 + 120060 -6247.0834 -6253.8349 6.7515035 3698.6963 631.85957 -10584.391 0 323.56993 0.00026601529 0.0002409882 + 120070 -6247.4736 -6254.2604 6.786793 3702.7193 630.44828 -10587.428 0 325.2612 7.6167963e-05 6.0813529e-05 + 120080 -6247.8609 -6254.5877 6.7268021 3708.2041 628.62061 -10591.412 0 322.3861 -0.00019395139 -0.00020419229 + 120090 -6248.2109 -6254.8491 6.6382629 3713.6284 626.82054 -10595.298 0 318.1428 -0.00046845087 -0.00048136882 + 120100 -6248.5425 -6254.9862 6.4436785 3717.6601 625.47319 -10598.119 0 308.81723 -0.00068305901 -0.00070302042 + 120110 -6248.8943 -6254.906 6.0116754 3719.4488 624.87773 -10599.233 0 288.11322 -0.00079771573 -0.00082247319 + 120120 -6249.2742 -6254.5816 5.3073191 3718.7175 625.1318 -10598.431 0 254.35651 -0.0007984804 -0.00082173753 + 120130 -6249.6424 -6254.1056 4.4632074 3715.7301 626.10986 -10595.946 0 213.90194 -0.00069488834 -0.00071192312 + 120140 -6249.9402 -6253.6526 3.7123391 3711.2071 627.50536 -10592.365 0 177.91612 -0.0005168199 -0.00052824644 + 120150 -6250.1348 -6253.3804 3.2456322 3706.205 628.92561 -10588.511 0 155.54891 -0.00030999503 -0.00032083786 + 120160 -6250.2392 -6253.351 3.1118542 3701.9251 630.00602 -10585.282 0 149.13751 -0.0001271332 -0.0001425758 + 120170 -6250.2975 -6253.5249 3.2274051 3699.4375 630.50425 -10583.467 0 154.67536 -1.4557308e-05 -3.6212035e-05 + 120180 -6250.352 -6253.8183 3.4662908 3699.3862 630.34745 -10583.552 0 166.1241 1.3947636e-06 -2.4088475e-05 + 120190 -6250.4186 -6254.1639 3.7452344 3701.7954 629.62758 -10585.587 0 179.49265 -7.8079651e-05 -0.0001035366 + 120200 -6250.4856 -6254.528 4.0424843 3706.0663 628.5571 -10589.151 0 193.73853 -0.00022623549 -0.00024922658 + 120210 -6250.5309 -6254.8877 4.3568282 3711.1619 627.40546 -10593.455 0 208.80365 -0.00040072523 -0.00042123124 + 120220 -6250.5407 -6255.2023 4.6615599 3715.8957 626.4362 -10597.534 0 223.40811 -0.00055643585 -0.00057585353 + 120230 -6250.5137 -6255.413 4.8992683 3719.2211 625.85793 -10600.492 0 234.80042 -0.00065638118 -0.00067606484 + 120240 -6250.4536 -6255.4674 5.0137795 3720.4559 625.79324 -10601.717 0 240.28845 -0.00067863831 -0.00069931403 + 120250 -6250.3612 -6255.3419 4.9807528 3719.4135 626.26242 -10601.018 0 238.70562 -0.00061968064 -0.00064160349 + 120260 -6250.234 -6255.0488 4.814774 3716.4234 627.17736 -10598.65 0 230.75099 -0.00049442604 -0.00051747295 + 120270 -6250.0671 -6254.6327 4.5656159 3712.229 628.34938 -10595.211 0 218.80993 -0.0003323266 -0.00035592813 + 120280 -6249.8499 -6254.1655 4.3156321 3707.79 629.52235 -10591.478 0 206.8293 -0.00016960725 -0.00019298647 + 120290 -6249.563 -6253.7305 4.1675311 3704.0578 630.43485 -10588.223 0 199.73147 -4.001335e-05 -6.2683291e-05 + 120300 -6249.1796 -6253.395 4.2154025 3701.7906 630.89342 -10586.079 0 202.02574 3.267826e-05 1.0709701e-05 + 120310 -6248.673 -6253.1862 4.5132452 3701.4306 630.82596 -10585.443 0 216.30003 3.8547836e-05 1.7000256e-05 + 120320 -6248.0317 -6253.0872 5.0554346 3703.0336 630.29461 -10586.415 0 242.28479 -1.8071951e-05 -3.9574836e-05 + 120330 -6247.2798 -6253.0505 5.7706943 3706.2489 629.46633 -10588.766 0 276.56405 -0.00012079936 -0.00014290222 + 120340 -6246.4834 -6253.0177 6.5343713 3710.3752 628.55174 -10591.945 0 313.16374 -0.0002454006 -0.00026905936 + 120350 -6245.7285 -6252.9366 7.2080113 3714.5155 627.7356 -10595.188 0 345.44835 -0.0003653301 -0.00039115137 + 120360 -6245.0829 -6252.7799 7.6969196 3717.7837 627.1356 -10597.699 0 368.87958 -0.00045678992 -0.00048437657 + 120370 -6244.5706 -6252.5608 7.9902192 3719.4855 626.81227 -10598.859 0 382.93614 -0.00050141868 -0.00052995464 + 120380 -6244.1771 -6252.3201 8.1429533 3719.2493 626.80969 -10598.379 0 390.25601 -0.00048730999 -0.0005167435 + 120390 -6243.8781 -6252.0874 8.2092882 3717.1103 627.17742 -10596.375 0 393.43515 -0.00041049607 -0.00044146202 + 120400 -6243.6611 -6251.8592 8.198096 3713.5171 627.9403 -10593.317 0 392.89876 -0.00027720878 -0.00030970069 + 120410 -6243.5236 -6251.6191 8.0954877 3709.2327 629.03445 -10589.886 0 387.9812 -0.00010561255 -0.00013828575 + 120420 -6243.4581 -6251.3732 7.9151085 3705.1698 630.26673 -10586.81 0 379.33641 7.4440445e-05 4.343734e-05 + 120430 -6243.4452 -6251.1669 7.721656 3702.2117 631.34229 -10584.721 0 370.06508 0.00022539766 0.00019688821 + 120440 -6243.4565 -6251.0769 7.6203533 3701.0384 631.95485 -10584.07 0 365.21009 0.00031067295 0.00028318413 + 120450 -6243.466 -6251.1849 7.7189317 3701.9773 631.89608 -10585.058 0 369.93452 0.00030553966 0.00027504126 + 120460 -6243.4705 -6251.5268 8.0563587 3704.9171 631.1378 -10587.582 0 386.10591 0.00020533104 0.00016707846 + 120470 -6243.5109 -6252.0397 8.5288352 3709.3121 629.85907 -10591.211 0 408.74964 2.8143914e-05 -1.9233485e-05 + 120480 -6243.6633 -6252.5639 8.9006017 3714.2547 628.40878 -10595.227 0 426.56678 -0.00018681972 -0.00023791218 + 120490 -6243.9848 -6252.9329 8.9481074 3718.6005 627.21109 -10598.744 0 428.84352 -0.0003841929 -0.00042859255 + 120500 -6244.4518 -6253.0886 8.6367582 3721.1915 626.63988 -10600.92 0 413.92191 -0.0005034207 -0.00053325891 + 120510 -6244.9625 -6253.1076 8.1450677 3721.216 626.90213 -10601.226 0 390.35735 -0.00049851461 -0.00051555029 + 120520 -6245.4146 -6253.1036 7.6889117 3718.5994 627.96698 -10599.67 0 368.49579 -0.00036094664 -0.00037581475 + 120530 -6245.7834 -6253.1077 7.3242792 3714.1712 629.56002 -10596.839 0 351.02056 -0.00013117887 -0.00015475641 + 120540 -6246.1224 -6253.0536 6.9312597 3709.4187 631.22836 -10593.701 0 332.18486 0.00011278374 7.8065105e-05 + 120550 -6246.4954 -6252.8727 6.3772906 3705.9089 632.4705 -10591.252 0 305.63555 0.00028669339 0.00024809525 + 120560 -6246.9125 -6252.595 5.6824805 3704.6871 632.89958 -10590.182 0 272.33635 0.00033446802 0.00030251224 + 120570 -6247.322 -6252.3616 5.0395835 3705.9512 632.37869 -10590.691 0 241.52512 0.00024779616 0.00022805493 + 120580 -6247.6531 -6252.3432 4.6901159 3709.107 631.06739 -10592.518 0 224.77667 6.3516544e-05 5.2773749e-05 + 120590 -6247.8671 -6252.6262 4.7591332 3713.1063 629.35969 -10595.092 0 228.08437 -0.00015609682 -0.00016712259 + 120600 -6247.9861 -6253.145 5.1588815 3716.8639 627.74462 -10597.754 0 247.24255 -0.00034823982 -0.00036788238 + 120610 -6248.0816 -6253.7111 5.6294128 3719.5648 626.64686 -10599.923 0 269.79305 -0.00046823206 -0.00049768992 + 120620 -6248.2249 -6254.1301 5.9052011 3720.7745 626.30288 -10601.207 0 283.01037 -0.00049640453 -0.00052924391 + 120630 -6248.4324 -6254.3249 5.8924544 3720.4081 626.70959 -10601.443 0 282.39948 -0.00043571852 -0.00046367766 + 120640 -6248.6559 -6254.3627 5.7067717 3718.6782 627.65602 -10600.697 0 273.50052 -0.000306928 -0.00032700192 + 120650 -6248.8284 -6254.3649 5.5364919 3716.0779 628.81692 -10599.26 0 265.33976 -0.00014490314 -0.00016133254 + 120660 -6248.9245 -6254.3893 5.4648737 3713.3307 629.86478 -10597.585 0 261.90741 6.6429844e-06 -1.3052487e-05 + 120670 -6248.9758 -6254.3922 5.4163446 3711.2176 630.5587 -10596.169 0 259.58163 0.00010597081 7.9889911e-05 + 120680 -6249.036 -6254.2956 5.2596118 3710.3049 630.78977 -10595.39 0 252.07011 0.00012785235 9.8480068e-05 + 120690 -6249.129 -6254.083 4.9540018 3710.7197 630.58445 -10595.387 0 237.42356 7.3911863e-05 4.7252662e-05 + 120700 -6249.2301 -6253.8328 4.6026341 3712.1215 630.07657 -10596.031 0 220.58405 -2.863464e-05 -4.9228277e-05 + 120710 -6249.2897 -6253.6651 4.3753624 3713.8913 629.4576 -10597.014 0 209.69191 -0.00013999094 -0.00015669827 + 120720 -6249.2745 -6253.6525 4.3779925 3715.4193 628.91639 -10597.988 0 209.81797 -0.00022505092 -0.00024364907 + 120730 -6249.1927 -6253.7677 4.5750276 3716.3311 628.58472 -10598.684 0 219.26099 -0.00026560111 -0.00029061802 + 120740 -6249.0859 -6253.9042 4.8182685 3716.5551 628.50755 -10598.967 0 230.91846 -0.00026243841 -0.00029329274 + 120750 -6248.9965 -6253.9519 4.9554585 3716.2401 628.64766 -10598.84 0 237.49338 -0.00022863908 -0.00025971446 + 120760 -6248.9321 -6253.8736 4.9415736 3715.6117 628.91797 -10598.403 0 236.82794 -0.00017957425 -0.0002042663 + 120770 -6248.8539 -6253.7258 4.871945 3714.8712 629.22297 -10597.82 0 233.49094 -0.00012598529 -0.00014173727 + 120780 -6248.6987 -6253.6093 4.910646 3714.1893 629.49061 -10597.289 0 235.34571 -7.3278844e-05 -8.3688837e-05 + 120790 -6248.4175 -6253.5869 5.1694267 3713.7563 629.68471 -10597.028 0 247.74793 -2.5243252e-05 -3.7518755e-05 + 120800 -6248.0023 -6253.6338 5.6315021 3713.7973 629.79871 -10597.23 0 269.89318 1.252649e-05 -7.1622784e-06 + 120810 -6247.4833 -6253.6582 6.1748959 3714.4961 629.8407 -10597.995 0 295.93566 3.3054575e-05 6.0425067e-06 + 120820 -6246.9021 -6253.573 6.6708865 3715.8587 629.82226 -10599.254 0 319.70631 3.2190583e-05 3.2643681e-06 + 120830 -6246.2809 -6253.3591 7.0781241 3717.6175 629.75896 -10600.735 0 339.22342 1.3317145e-05 -1.1219465e-05 + 120840 -6245.6118 -6253.0684 7.4565466 3719.2696 629.67856 -10602.017 0 357.35955 -1.1653287e-05 -2.980087e-05 + 120850 -6244.8803 -6252.7655 7.8852723 3720.26 629.62467 -10602.65 0 377.90649 -2.7157791e-05 -4.2993682e-05 + 120860 -6244.107 -6252.4588 8.3517593 3720.2157 629.64644 -10602.321 0 400.26317 -2.2392206e-05 -4.2658066e-05 + 120870 -6243.3675 -6252.0912 8.72371 3719.0959 629.77874 -10600.966 0 418.08913 3.1719849e-06 -2.507672e-05 + 120880 -6242.7545 -6251.6137 8.8592092 3717.1708 630.02666 -10598.811 0 424.58301 4.2456418e-05 8.5853071e-06 + 120890 -6242.3093 -6251.0783 8.7690381 3714.8728 630.3647 -10596.316 0 420.26151 8.9236424e-05 5.4532792e-05 + 120900 -6241.9925 -6250.6491 8.6566254 3712.6518 630.75038 -10594.051 0 414.87406 0.00014305593 0.00010843371 + 120910 -6241.7334 -6250.4901 8.7566454 3710.9321 631.14323 -10592.565 0 419.66758 0.00020443594 0.00016489769 + 120920 -6241.5136 -6250.6135 9.0998935 3710.1214 631.51734 -10592.252 0 436.11796 0.00026551223 0.0002156871 + 120930 -6241.399 -6250.8376 9.43863 3710.5386 631.8589 -10593.235 0 452.35211 0.00030820421 0.00025056872 + 120940 -6241.4743 -6250.9255 9.4511556 3712.2125 632.15004 -10595.288 0 452.95241 0.00031593764 0.00026232709 + 120950 -6241.7338 -6250.8031 9.06925 3714.7058 632.35318 -10597.862 0 434.64935 0.00028972334 0.00025203274 + 120960 -6242.0522 -6250.6389 8.5867699 3717.2173 632.41429 -10600.271 0 411.5262 0.00025049995 0.00022850003 + 120970 -6242.2896 -6250.6773 8.3876952 3719.005 632.28814 -10601.97 0 401.98542 0.00022118767 0.00020092888 + 120980 -6242.4262 -6250.9893 8.5631222 3719.8171 631.96465 -10602.771 0 410.39286 0.00020530386 0.00017149565 + 120990 -6242.5773 -6251.4163 8.8389606 3719.9338 631.47456 -10602.825 0 423.61259 0.00018565886 0.00013590813 + 121000 -6242.8746 -6251.754 8.8793505 3719.7965 630.87969 -10602.43 0 425.5483 0.00014542542 9.206942e-05 + 121010 -6243.3411 -6251.9568 8.6157334 3719.6031 630.267 -10601.827 0 412.91429 8.9528958e-05 4.820446e-05 + 121020 -6243.8802 -6252.1531 8.2729385 3719.225 629.74646 -10601.125 0 396.48563 4.4992792e-05 2.1737908e-05 + 121030 -6244.3698 -6252.4886 8.1187873 3718.4538 629.43408 -10600.376 0 389.09784 4.0829379e-05 2.8770321e-05 + 121040 -6244.7584 -6252.9642 8.2058473 3717.3152 629.41219 -10599.692 0 393.27025 8.554723e-05 7.2175716e-05 + 121050 -6245.0873 -6253.4081 8.3207363 3716.1815 629.68346 -10599.273 0 398.77637 0.00015930657 0.00013704648 + 121060 -6245.4363 -6253.597 8.1607212 3715.6013 630.14782 -10599.346 0 391.10755 0.00022493652 0.00019643756 + 121070 -6245.8411 -6253.4311 7.5899756 3715.9716 630.62465 -10600.027 0 363.75422 0.00024917046 0.00022359555 + 121080 -6246.2554 -6253.0249 6.769518 3717.2865 630.9211 -10601.233 0 324.43329 0.00021981005 0.00020369073 + 121090 -6246.5879 -6252.636 6.0481451 3719.1392 630.92043 -10602.696 0 289.86105 0.00014889018 0.00013968377 + 121100 -6246.7817 -6252.4795 5.6978781 3720.9593 630.64687 -10604.086 0 273.07429 6.2840434e-05 5.1011762e-05 + 121110 -6246.8641 -6252.5783 5.7141916 3722.2851 630.26712 -10605.131 0 273.85612 -1.0862811e-05 -3.3096315e-05 + 121120 -6246.9261 -6252.7744 5.84829 3722.8741 630.01845 -10605.667 0 280.28287 -5.1638967e-05 -8.2953081e-05 + 121130 -6247.0473 -6252.8835 5.8361307 3722.6432 630.09337 -10605.62 0 279.70013 -4.7127518e-05 -7.795789e-05 + 121140 -6247.2306 -6252.85 5.6193391 3721.5932 630.53865 -10604.982 0 269.31026 6.7527674e-06 -1.4139175e-05 + 121150 -6247.4026 -6252.776 5.3734774 3719.8442 631.22078 -10603.841 0 257.52719 0.00010257125 9.2508278e-05 + 121160 -6247.4764 -6252.8156 5.3392232 3717.7461 631.87534 -10602.437 0 255.88554 0.00021707991 0.00020873274 + 121170 -6247.4243 -6253.0346 5.6103394 3715.9122 632.21611 -10601.163 0 268.87894 0.00031252605 0.00029343114 + 121180 -6247.3045 -6253.3481 6.0435664 3715.0593 632.05581 -10600.463 0 289.64161 0.00034812878 0.00031215796 + 121190 -6247.2267 -6253.5807 6.3540501 3715.6796 631.38831 -10600.649 0 304.52173 0.00029929078 0.00025217231 + 121200 -6247.2719 -6253.6068 6.3348337 3717.7133 630.39814 -10601.718 0 303.60078 0.00017514813 0.00013118253 + 121210 -6247.4254 -6253.4674 6.0420331 3720.4497 629.39284 -10603.31 0 289.56813 2.2255906e-05 -6.2896989e-06 + 121220 -6247.5803 -6253.3561 5.7758288 3722.7941 628.68959 -10604.84 0 276.81012 -9.2986103e-05 -0.00010583682 + 121230 -6247.6252 -6253.4546 5.829398 3723.8204 628.50548 -10605.781 0 279.37746 -0.00011760151 -0.00012677 + 121240 -6247.5432 -6253.7526 6.2093861 3723.2775 628.88837 -10605.918 0 297.58862 -4.1697499e-05 -6.0864237e-05 + 121250 -6247.4285 -6254.0359 6.6073877 3721.6907 629.6999 -10605.427 0 316.66309 9.6134131e-05 6.3744925e-05 + 121260 -6247.3994 -6254.0712 6.6717952 3719.9903 630.65442 -10604.716 0 319.74986 0.00023194643 0.00019580597 + 121270 -6247.4904 -6253.8073 6.3168388 3718.9684 631.41391 -10604.19 0 302.73836 0.00031110034 0.00028412802 + 121280 -6247.6279 -6253.4047 5.7767449 3718.9424 631.71561 -10604.063 0 276.85403 0.00031125166 0.00029837808 + 121290 -6247.703 -6253.0875 5.3845571 3719.7655 631.4791 -10604.332 0 258.05819 0.00024351772 0.00023818987 + 121300 -6247.663 -6252.9622 5.2992739 3721.0512 630.84135 -10604.855 0 253.97094 0.00013882954 0.0001294232 + 121310 -6247.5458 -6252.952 5.4062756 3722.3891 630.10199 -10605.443 0 259.09906 3.2781104e-05 1.2654047e-05 + 121320 -6247.4384 -6252.8887 5.4503524 3723.4299 629.60224 -10605.921 0 261.21147 -4.3004398e-05 -7.029689e-05 + 121330 -6247.3966 -6252.6793 5.282726 3723.8724 629.58757 -10606.139 0 253.17787 -6.3919081e-05 -8.8444674e-05 + 121340 -6247.3917 -6252.4067 5.0150023 3723.4832 630.11067 -10606.001 0 240.34705 -1.5772029e-05 -3.070577e-05 + 121350 -6247.3297 -6252.272 4.9422359 3722.2236 631.01496 -10605.511 0 236.85967 9.8178968e-05 8.9867994e-05 + 121360 -6247.1264 -6252.4232 5.2968051 3720.4109 632.00153 -10604.836 0 253.85262 0.00025104268 0.00023888352 + 121370 -6246.7699 -6252.8208 6.0509105 3718.7274 632.74528 -10604.294 0 289.99358 0.00039585086 0.00037119757 + 121380 -6246.3216 -6253.2619 6.9402025 3717.9634 633.0094 -10604.235 0 332.61345 0.00048275142 0.00044677382 + 121390 -6245.8563 -6253.5373 7.6810604 3718.6021 632.71766 -10604.857 0 368.11951 0.00048277459 0.0004459092 + 121400 -6245.3918 -6253.5823 8.1905006 3720.5167 631.96834 -10606.067 0 392.53474 0.0004038377 0.00037687404 + 121410 -6244.8692 -6253.49 8.6208078 3723.0028 630.99498 -10607.488 0 413.15748 0.0002875953 0.0002717391 + 121420 -6244.2095 -6253.3829 9.1733149 3725.1413 630.09244 -10608.617 0 439.63672 0.00018742325 0.00017196665 + 121430 -6243.4104 -6253.2537 9.8433413 3726.2586 629.53034 -10609.043 0 471.74815 0.00014055617 0.00011103907 + 121440 -6242.596 -6252.9302 10.334198 3726.182 629.47551 -10608.588 0 495.27274 0.00015229342 0.00010310729 + 121450 -6241.9515 -6252.2175 10.265978 3725.1455 629.94504 -10607.308 0 492.00326 0.00020237915 0.00014272109 + 121460 -6241.58 -6251.1101 9.530082 3723.4798 630.80797 -10605.398 0 456.735 0.00026654448 0.00021343032 + 121470 -6241.42 -6249.8731 8.4531246 3721.3877 631.8369 -10603.098 0 405.12116 0.00033365763 0.00029777701 + 121480 -6241.3073 -6248.8985 7.5911746 3718.9945 632.78645 -10600.679 0 363.81168 0.00040483428 0.00038223134 + 121490 -6241.1157 -6248.4527 7.3369746 3716.575 633.46476 -10598.492 0 351.62899 0.00047960152 0.00045642157 + 121500 -6240.8449 -6248.5284 7.683454 3714.6818 633.77362 -10596.984 0 368.23423 0.00054536076 0.00051065543 + 121510 -6240.597 -6248.9148 8.3178054 3713.9947 633.70859 -10596.618 0 398.6359 0.00058081929 0.00053569203 + 121520 -6240.4755 -6249.4052 8.929679 3714.972 633.32756 -10597.705 0 427.96032 0.00057011968 0.00052547056 + 121530 -6240.5008 -6249.9493 9.4485529 3717.5665 632.71298 -10600.229 0 452.82767 0.00051477567 0.00048044074 + 121540 -6240.6177 -6250.625 10.007244 3721.2206 631.95418 -10603.8 0 479.60326 0.00043296468 0.00040865675 + 121550 -6240.7873 -6251.4757 10.688462 3725.1197 631.15559 -10607.751 0 512.25105 0.00034765521 0.00032397706 + 121560 -6241.068 -6252.3783 11.310287 3728.5015 630.4513 -10611.331 0 542.05241 0.0002748131 0.00024311394 + 121570 -6241.5933 -6253.0719 11.478597 3730.8172 629.99801 -10613.887 0 550.1188 0.00022173783 0.00018323722 + 121580 -6242.4399 -6253.3404 10.900588 3731.7112 629.93246 -10614.984 0 522.41733 0.00019491073 0.0001596975 + 121590 -6243.5111 -6253.1839 9.6727936 3730.98 630.30953 -10614.473 0 463.57454 0.00020563204 0.00018218297 + 121600 -6244.5796 -6252.8081 8.2285414 3728.6701 631.06123 -10612.539 0 394.35787 0.00026285915 0.00024936132 + 121610 -6245.4529 -6252.4484 6.9955295 3725.2441 632.00615 -10609.699 0 335.26503 0.00035892661 0.00034537572 + 121620 -6246.0822 -6252.2183 6.1361352 3721.5799 632.90373 -10606.702 0 294.07803 0.00046499353 0.00044236196 + 121630 -6246.5317 -6252.106 5.5743127 3718.7087 633.52479 -10604.339 0 267.15234 0.00054254243 0.00050941433 + 121640 -6246.8906 -6252.0655 5.174866 3717.4395 633.71233 -10603.217 0 248.00861 0.00056135134 0.00052372456 + 121650 -6247.2123 -6252.0947 4.8823962 3718.0758 633.4169 -10603.587 0 233.99182 0.00051218935 0.00047847204 + 121660 -6247.4985 -6252.2504 4.7518968 3720.3394 632.69915 -10605.289 0 227.73756 0.00040914764 0.00038432587 + 121670 -6247.7174 -6252.6038 4.8863653 3723.5125 631.70366 -10607.82 0 234.18204 0.000282189 0.00026461169 + 121680 -6247.8422 -6253.1671 5.3249303 3726.7206 630.61828 -10610.506 0 255.20054 0.00016401372 0.00014681092 + 121690 -6247.8873 -6253.8406 5.953344 3729.2234 629.6349 -10612.699 0 285.31765 7.7879743e-05 5.4362245e-05 + 121700 -6247.9125 -6254.434 6.5214583 3730.5774 628.91904 -10613.93 0 312.54487 3.3003305e-05 2.0849017e-06 + 121710 -6247.9814 -6254.7689 6.7874658 3730.6252 628.58793 -10613.982 0 325.29344 2.9220419e-05 -3.9980901e-06 + 121720 -6248.1078 -6254.7878 6.680032 3729.4072 628.6957 -10612.891 0 320.14462 6.4766999e-05 3.5406815e-05 + 121730 -6248.2463 -6254.5686 6.3223046 3727.1312 629.22635 -10610.926 0 303.00031 0.00013823351 0.00011407001 + 121740 -6248.3407 -6254.2349 5.8942186 3724.2275 630.09448 -10608.557 0 282.48403 0.00024270674 0.00021952356 + 121750 -6248.3767 -6253.8554 5.478787 3721.3659 631.15264 -10606.374 0 262.57421 0.00035952024 0.0003324173 + 121760 -6248.3896 -6253.4292 5.03958 3719.3233 632.20767 -10604.96 0 241.52495 0.00046002822 0.00042882803 + 121770 -6248.4244 -6252.9553 4.5308991 3718.7254 633.05044 -10604.731 0 217.14611 0.00051614926 0.00048617413 + 121780 -6248.4893 -6252.5105 4.0212756 3719.8088 633.49816 -10605.817 0 192.72209 0.0005126638 0.00049022253 + 121790 -6248.5421 -6252.2531 3.7109835 3722.3407 633.44073 -10608.035 0 177.85115 0.00045302465 0.00043956302 + 121800 -6248.5193 -6252.3378 3.8185004 3725.735 632.87778 -10610.951 0 183.00396 0.00035577488 0.0003457576 + 121810 -6248.3825 -6252.7995 4.4169993 3729.2724 631.93384 -10614.006 0 211.68739 0.00024558133 0.00023020331 + 121820 -6248.1519 -6253.4976 5.3457201 3732.289 630.84253 -10616.629 0 256.1969 0.00014581039 0.00011993425 + 121830 -6247.8977 -6254.174 6.2763096 3734.2492 629.8972 -10618.32 0 300.79597 7.6684328e-05 4.344955e-05 + 121840 -6247.6899 -6254.5947 6.904828 3734.7368 629.37478 -10618.706 0 330.9181 5.6997066e-05 2.5823648e-05 + 121850 -6247.5406 -6254.6714 7.1308019 3733.4816 629.45178 -10617.605 0 341.74804 0.00010300331 8.1994199e-05 + 121860 -6247.3963 -6254.4705 7.0742505 3730.4976 630.13974 -10615.108 0 339.03778 0.00021996429 0.00020902758 + 121870 -6247.1913 -6254.1109 6.9195935 3726.2654 631.26581 -10611.642 0 331.62575 0.00039015958 0.00038105306 + 121880 -6246.9123 -6253.6556 6.7433992 3721.7724 632.51011 -10607.938 0 323.18153 0.00056857801 0.00055178364 + 121890 -6246.609 -6253.0976 6.4885774 3718.2703 633.49409 -10604.862 0 310.96904 0.00069487158 0.00066702858 + 121900 -6246.3489 -6252.4343 6.0853821 3716.8186 633.89803 -10603.151 0 291.64565 0.00071823238 0.00068399849 + 121910 -6246.1595 -6251.7433 5.5837918 3717.8467 633.57055 -10603.16 0 267.60664 0.00062160026 0.00058919362 + 121920 -6246.0063 -6251.1851 5.178841 3720.9695 632.5876 -10604.742 0 248.19912 0.00043169979 0.00040625744 + 121930 -6245.8144 -6250.9298 5.1154288 3725.1415 631.23539 -10607.307 0 245.16005 0.0002101571 0.00018997054 + 121940 -6245.5148 -6251.0573 5.5425426 3729.0619 629.92398 -10610.043 0 265.62974 3.0886533e-05 9.0567808e-06 + 121950 -6245.085 -6251.5006 6.4155909 3731.6319 629.06242 -10612.195 0 307.47111 -4.5581679e-05 -7.5511582e-05 + 121960 -6244.561 -6252.0792 7.5181119 3732.2698 628.9326 -10613.282 0 360.31011 9.1749682e-06 -2.9759174e-05 + 121970 -6244.0112 -6252.6001 8.5889052 3731.0048 629.59644 -10613.201 0 411.62853 0.00018452163 0.00014173202 + 121980 -6243.4937 -6252.9481 9.454394 3728.3938 630.86766 -10612.21 0 453.10761 0.00043506241 0.00039539009 + 121990 -6243.0318 -6253.1031 10.071334 3725.3368 632.36499 -10610.805 0 482.67485 0.00069364801 0.00066061522 + 122000 -6242.6222 -6253.0969 10.474709 3722.8306 633.63758 -10609.565 0 502.00682 0.00089036193 0.00086158898 + 122010 -6242.2647 -6252.9539 10.689242 3721.6966 634.32467 -10608.975 0 512.28844 0.00097288654 0.00094190228 + 122020 -6241.9887 -6252.6531 10.66441 3722.3457 634.29177 -10609.291 0 511.09837 0.00092185231 0.00088308022 + 122030 -6241.8508 -6252.1367 10.285899 3724.6404 633.68359 -10610.461 0 492.958 0.00075683446 0.00071048479 + 122040 -6241.8946 -6251.3773 9.4826766 3727.8917 632.85984 -10612.129 0 454.46307 0.0005320039 0.00048477604 + 122050 -6242.1034 -6250.4583 8.3549415 3731.0221 632.23524 -10613.716 0 400.41568 0.0003212269 0.00028151824 + 122060 -6242.3968 -6249.5877 7.1909148 3732.9072 632.09961 -10614.595 0 344.62898 0.00019391639 0.00016534496 + 122070 -6242.6847 -6249.0117 6.3269546 3732.807 632.50534 -10614.324 0 303.22317 0.00018890318 0.00016797193 + 122080 -6242.9299 -6248.8939 5.9639442 3730.6898 633.26507 -10612.849 0 285.82567 0.00029905237 0.0002787701 + 122090 -6243.1661 -6249.2596 6.0934496 3727.2573 634.04256 -10610.559 0 292.03229 0.00047579653 0.00045128514 + 122100 -6243.4667 -6250.0262 6.5594715 3723.6539 634.48665 -10608.167 0 314.36668 0.00065081496 0.00062190671 + 122110 -6243.9041 -6251.0596 7.1555697 3721.0271 634.35789 -10606.445 0 342.93505 0.00076255604 0.00073239731 + 122120 -6244.5249 -6252.2032 7.6782965 3720.1437 633.6077 -10605.955 0 367.98705 0.00077586812 0.00074809083 + 122130 -6245.3354 -6253.2909 7.9554947 3721.1851 632.38688 -10606.863 0 381.27195 0.00068983682 0.00066662589 + 122140 -6246.2842 -6254.1755 7.8913142 3723.7538 630.98505 -10608.914 0 378.19605 0.00053415285 0.0005155551 + 122150 -6247.2629 -6254.7673 7.5043918 3727.0676 629.73135 -10611.566 0 359.65256 0.00035632789 0.00034036149 + 122160 -6248.1466 -6255.0484 6.9017294 3730.2561 628.89989 -10614.204 0 330.7696 0.00020424651 0.00018781347 + 122170 -6248.8535 -6255.0514 6.197924 3732.6319 628.65027 -10616.334 0 297.03929 0.0001111987 9.1789858e-05 + 122180 -6249.3714 -6254.8303 5.4589397 3733.8302 629.00745 -10617.668 0 261.62302 8.9409767e-05 6.6755088e-05 + 122190 -6249.7376 -6254.4522 4.7145868 3733.8048 629.87097 -10618.128 0 225.94945 0.00013249083 0.00010891977 + 122200 -6249.9994 -6254.0052 4.0057976 3732.7452 631.04675 -10617.797 0 191.9803 0.00022260251 0.00020168075 + 122210 -6250.1871 -6253.5994 3.4123699 3730.987 632.29593 -10616.882 0 163.53991 0.00033770788 0.00032195054 + 122220 -6250.3079 -6253.3478 3.0399568 3728.9511 633.38918 -10615.688 0 145.69179 0.00045632949 0.00044535681 + 122230 -6250.3555 -6253.3325 2.9770309 3727.1026 634.15039 -10614.585 0 142.67602 0.00055934947 0.00054958114 + 122240 -6250.3263 -6253.5688 3.2425058 3725.9074 634.47967 -10613.956 0 155.39907 0.0006299027 0.00061623533 + 122250 -6250.2357 -6253.9849 3.7491192 3725.7584 634.35572 -10614.099 0 179.67883 0.00065344007 0.0006324184 + 122260 -6250.1219 -6254.4366 4.3146801 3726.8593 633.82411 -10615.12 0 206.78368 0.00062017142 0.00059291551 + 122270 -6250.0277 -6254.7693 4.7416238 3729.0887 632.97932 -10616.837 0 227.24522 0.00053040893 0.00050278698 + 122280 -6249.9669 -6254.9005 4.9336293 3731.9237 631.94772 -10618.772 0 236.4472 0.00039987118 0.00037863689 + 122290 -6249.9041 -6254.8606 4.9565519 3734.5266 630.87578 -10620.263 0 237.54578 0.00025935003 0.00024648434 + 122300 -6249.7788 -6254.7457 4.9668417 3736.0227 629.92178 -10620.69 0 238.03892 0.00014538216 0.00013567612 + 122310 -6249.5598 -6254.6162 5.0563131 3735.8481 629.24086 -10619.705 0 242.32689 8.5981866e-05 7.0840725e-05 + 122320 -6249.2774 -6254.4435 5.1661372 3733.9575 628.95517 -10617.356 0 247.59028 9.0895349e-05 6.538112e-05 + 122330 -6249.0009 -6254.157 5.1560714 3730.7849 629.11713 -10614.059 0 247.10787 0.00015224581 0.00011908769 + 122340 -6248.784 -6253.7363 4.9523531 3727.0358 629.68794 -10610.46 0 237.34455 0.00025262979 0.00021996686 + 122350 -6248.6238 -6253.2601 4.6363094 3723.4679 630.54641 -10607.274 0 222.19796 0.00037323096 0.00034832436 + 122360 -6248.4641 -6252.8748 4.4106584 3720.7561 631.52281 -10605.154 0 211.3835 0.00049700802 0.00048080057 + 122370 -6248.2325 -6252.7087 4.4761961 3719.4473 632.44083 -10604.597 0 214.52443 0.00060708051 0.00059337154 + 122380 -6247.8912 -6252.7878 4.8966205 3719.9451 633.1536 -10605.886 0 234.67353 0.0006841328 0.00066411338 + 122390 -6247.4694 -6253.0066 5.5372325 3722.4497 633.56706 -10609.023 0 265.37525 0.00070778682 0.00067720191 + 122400 -6247.051 -6253.1936 6.1425656 3726.8106 633.64924 -10613.653 0 294.38621 0.00066487007 0.00062837565 + 122410 -6246.708 -6253.2408 6.5328734 3732.3593 633.42972 -10619.03 0 313.09195 0.0005617069 0.00052966897 + 122420 -6246.4319 -6253.1944 6.7625199 3737.9049 632.99929 -10624.099 0 324.0979 0.00043065961 0.00040972192 + 122430 -6246.1419 -6253.196 7.054013 3742.0466 632.51292 -10627.755 0 338.06789 0.00032121419 0.00030727161 + 122440 -6245.7765 -6253.3095 7.5330716 3743.7042 632.17787 -10629.192 0 361.02706 0.00027767625 0.00025911586 + 122450 -6245.3729 -6253.4153 8.0423789 3742.5319 632.19925 -10628.146 0 385.43592 0.0003187307 0.0002873289 + 122460 -6245.044 -6253.2952 8.2512004 3738.9518 632.68686 -10624.934 0 395.44382 0.00043277824 0.00039133597 + 122470 -6244.8756 -6252.826 7.9503401 3733.8767 633.57479 -10620.277 0 381.02491 0.00058830502 0.0005479831 + 122480 -6244.8534 -6252.095 7.2416412 3728.3772 634.61162 -10615.084 0 347.06008 0.00074773827 0.00071851911 + 122490 -6244.8795 -6251.3551 6.4756305 3723.4684 635.43445 -10610.258 0 310.34855 0.00087568351 0.00085856931 + 122500 -6244.8495 -6250.8734 6.0239033 3720.0149 635.69166 -10606.58 0 288.69924 0.00094135756 0.00092790063 + 122510 -6244.7223 -6250.7825 6.0602264 3718.6678 635.16592 -10604.616 0 290.44005 0.00092059912 0.00089943918 + 122520 -6244.5421 -6251.0234 6.4813845 3719.7525 633.8587 -10604.635 0 310.62431 0.00080222842 0.0007678291 + 122530 -6244.4017 -6251.4169 7.0151724 3723.0956 632.00856 -10606.521 0 336.20642 0.00059852053 0.00055555938 + 122540 -6244.3676 -6251.8139 7.4463471 3727.8931 630.03271 -10609.74 0 356.87073 0.00035283159 0.00031215924 + 122550 -6244.4247 -6252.198 7.7732551 3732.8065 628.412 -10613.416 0 372.538 0.00013407259 0.00010312168 + 122560 -6244.5015 -6252.6362 8.1347652 3736.3829 627.56412 -10616.583 0 389.86359 1.3965967e-05 -9.4761774e-06 + 122570 -6244.5553 -6253.134 8.5787443 3737.6333 627.74141 -10618.509 0 411.14156 3.6984017e-05 1.2519818e-05 + 122580 -6244.6242 -6253.5623 8.9380659 3736.4158 628.96393 -10618.942 0 428.36227 0.00020117456 0.00016976618 + 122590 -6244.7859 -6253.7469 8.9610611 3733.4047 630.9936 -10618.145 0 429.46433 0.00046047584 0.00042366693 + 122600 -6245.0746 -6253.6156 8.5409644 3729.7482 633.37176 -10616.736 0 409.33094 0.00074342192 0.00070697183 + 122610 -6245.4513 -6253.2454 7.7941053 3726.6668 635.5344 -10615.447 0 373.53726 0.00097573003 0.00094341325 + 122620 -6245.8459 -6252.7894 6.9435041 3725.1336 636.97676 -10614.9 0 332.77167 0.0010991109 0.0010702808 + 122630 -6246.2123 -6252.3819 6.1695436 3725.6418 637.40342 -10615.427 0 295.67914 0.0010851476 0.0010568987 + 122640 -6246.5433 -6252.1004 5.5570639 3728.0711 636.80712 -10616.979 0 266.32568 0.00094297674 0.00091325048 + 122650 -6246.8546 -6251.9761 5.1214711 3731.7184 635.45454 -10619.149 0 245.44963 0.00071703443 0.00068598487 + 122660 -6247.1651 -6252.0127 4.8476027 3735.5137 633.7889 -10621.315 0 232.32432 0.00047348072 0.00044303076 + 122670 -6247.4842 -6252.2029 4.7187368 3738.3471 632.281 -10622.831 0 226.14834 0.00027961187 0.00025194181 + 122680 -6247.8075 -6252.5386 4.73111 3739.3953 631.27886 -10623.213 0 226.74134 0.00018346651 0.00015926064 + 122690 -6248.1262 -6253.0017 4.8755397 3738.3645 630.91102 -10622.277 0 233.66322 0.00019971984 0.00017759932 + 122700 -6248.4434 -6253.5397 5.0963134 3735.5883 631.07617 -10620.204 0 244.24393 0.00030614525 0.00028420643 + 122710 -6248.7778 -6254.0643 5.2865042 3731.9176 631.51203 -10617.494 0 253.35894 0.00045294212 0.00043093086 + 122720 -6249.1445 -6254.4927 5.3482432 3728.4168 631.9086 -10614.818 0 256.31782 0.00058238198 0.00056186429 + 122730 -6249.5338 -6254.79 5.2561821 3726.0004 632.02553 -10612.816 0 251.90574 0.00065008952 0.00063234906 + 122740 -6249.9174 -6254.9672 5.0498264 3725.1797 631.77628 -10611.923 0 242.01602 0.00063826458 0.00062257491 + 122750 -6250.2713 -6255.0422 4.7708856 3725.9935 631.24937 -10612.285 0 228.64761 0.00055701339 0.00054137908 + 122760 -6250.5908 -6255.0166 4.4257782 3728.0791 630.65819 -10613.754 0 212.10813 0.00043669089 0.00042005401 + 122770 -6250.8817 -6254.8933 4.011599 3730.8101 630.24429 -10615.948 0 192.25833 0.00031634308 0.00029966926 + 122780 -6251.144 -6254.7087 3.5646735 3733.4685 630.18118 -10618.358 0 170.83916 0.00023191147 0.00021705305 + 122790 -6251.3666 -6254.5374 3.170784 3735.4324 630.51926 -10620.489 0 151.96176 0.00020642231 0.0001940515 + 122800 -6251.5366 -6254.4587 2.9221024 3736.3413 631.1846 -10621.985 0 140.04354 0.00024410935 0.00023277327 + 122810 -6251.6535 -6254.5109 2.8574206 3736.182 632.01774 -10622.711 0 136.94363 0.00033013414 0.00031727693 + 122820 -6251.7331 -6254.6669 2.9337568 3735.2534 632.82922 -10622.749 0 140.60209 0.00043629063 0.00042035969 + 122830 -6251.8007 -6254.852 3.0512088 3734.0247 633.45185 -10622.329 0 146.23105 0.00053104767 0.00051296559 + 122840 -6251.8749 -6254.9913 3.1163663 3732.9481 633.77752 -10621.717 0 149.35376 0.0005904046 0.00057313468 + 122850 -6251.9528 -6255.0569 3.1040729 3732.3045 633.77264 -10621.134 0 148.76459 0.0006052448 0.00059150787 + 122860 -6252.0081 -6255.0811 3.0729657 3732.1494 633.47284 -10620.703 0 147.27376 0.00058190463 0.00057160672 + 122870 -6252.0061 -6255.1214 3.1153226 3732.3714 632.96288 -10620.456 0 149.30374 0.00053578748 0.00052539272 + 122880 -6251.9267 -6255.2003 3.2736334 3732.8123 632.34974 -10620.362 0 156.89088 0.0004819637 0.00046690051 + 122890 -6251.7752 -6255.2727 3.4974222 3733.3529 631.73481 -10620.36 0 167.6161 0.00042892054 0.00040743515 + 122900 -6251.5685 -6255.2574 3.688864 3733.901 631.19122 -10620.35 0 176.79106 0.00037919314 0.00035425783 + 122910 -6251.31 -6255.1102 3.8001269 3734.3154 630.75336 -10620.179 0 182.1234 0.0003347653 0.0003120335 + 122920 -6250.9776 -6254.8677 3.8900981 3734.3693 630.42428 -10619.661 0 186.43533 0.00030140514 0.00028470869 + 122930 -6250.5336 -6254.6181 4.0844341 3733.8245 630.19883 -10618.641 0 195.749 0.00028796514 0.0002760005 + 122940 -6249.9564 -6254.4237 4.4673022 3732.583 630.09089 -10617.098 0 214.09819 0.00030158893 0.00028850919 + 122950 -6249.2743 -6254.2669 4.9926784 3730.8035 630.14808 -10615.218 0 239.27716 0.00034317439 0.00032281942 + 122960 -6248.5703 -6254.0645 5.4942639 3728.8914 630.44107 -10613.397 0 263.31595 0.00040687401 0.00037750696 + 122970 -6247.9421 -6253.7349 5.7927514 3727.3578 631.02655 -10612.119 0 277.62115 0.00048345748 0.00044938442 + 122980 -6247.4467 -6253.2662 5.8194773 3726.6321 631.8992 -10611.798 0 278.90201 0.00056407519 0.0005328865 + 122990 -6247.0703 -6252.7439 5.6736798 3726.9239 632.95916 -10612.627 0 271.91457 0.0006416231 0.00061882508 + 123000 -6246.7415 -6252.3169 5.5753899 3728.1978 634.02048 -10614.535 0 267.20397 0.00070933274 0.00069396609 + 123010 -6246.3815 -6252.1068 5.7253507 3730.2591 634.86709 -10617.233 0 274.39093 0.00075796726 0.00074279628 + 123020 -6245.9618 -6252.1137 6.1518977 3732.8661 635.3338 -10620.314 0 294.83345 0.0007748536 0.00075193265 + 123030 -6245.5275 -6252.2016 6.6741291 3735.7503 635.37024 -10623.322 0 319.86171 0.00074878261 0.00071639762 + 123040 -6245.1567 -6252.2004 7.0437077 3738.5149 635.05432 -10625.77 0 337.57399 0.00068077759 0.00064538701 + 123050 -6244.8871 -6252.0447 7.1576069 3740.5529 634.55315 -10627.151 0 343.03268 0.00059295056 0.00056370884 + 123060 -6244.6796 -6251.8241 7.1445485 3741.1598 634.05721 -10627.041 0 342.40685 0.00052495337 0.00050558034 + 123070 -6244.455 -6251.7009 7.245933 3739.8517 633.71784 -10625.271 0 347.26577 0.00051586925 0.00050126131 + 123080 -6244.1665 -6251.7752 7.6086877 3736.6924 633.60407 -10622.072 0 364.65101 0.00058186622 0.00056223939 + 123090 -6243.8426 -6252.0109 8.1682847 3732.3945 633.68328 -10618.089 0 391.47003 0.00070429298 0.00067309634 + 123100 -6243.5707 -6252.2714 8.7007663 3728.1057 633.82758 -10614.205 0 416.98954 0.0008360273 0.00079527912 + 123110 -6243.4343 -6252.4266 8.9922379 3724.9765 633.84785 -10611.251 0 430.9585 0.00092256034 0.00088152101 + 123120 -6243.4508 -6252.4497 8.998854 3723.7249 633.55376 -10609.728 0 431.27557 0.00092602336 0.00089397339 + 123130 -6243.5601 -6252.4279 8.867809 3724.4144 632.8311 -10609.673 0 424.99516 0.00083928884 0.00081790971 + 123140 -6243.6813 -6252.4667 8.7854453 3726.544 631.71615 -10610.727 0 421.04783 0.00068446785 0.00066642662 + 123150 -6243.7885 -6252.5721 8.7836241 3729.3412 630.43155 -10612.345 0 420.96055 0.00050110727 0.0004764484 + 123160 -6243.9289 -6252.6309 8.7020365 3732.0383 629.34621 -10614.015 0 417.05041 0.00033428505 0.00029877865 + 123170 -6244.1669 -6252.5155 8.3486042 3734.0086 628.85405 -10615.378 0 400.11196 0.00022679557 0.00018467279 + 123180 -6244.5169 -6252.2036 7.6867617 3734.8297 629.21735 -10616.251 0 368.39275 0.00021145546 0.00017112209 + 123190 -6244.9306 -6251.8028 6.87228 3734.3646 630.44914 -10616.617 0 329.35822 0.00030052895 0.00026830956 + 123200 -6245.3377 -6251.4816 6.1439843 3732.8437 632.29011 -10616.615 0 294.4542 0.00047700371 0.00045394004 + 123210 -6245.6885 -6251.3815 5.6929568 3730.8539 634.28828 -10616.524 0 272.83843 0.00069544804 0.00067794522 + 123220 -6245.9709 -6251.5614 5.5904893 3729.191 635.9454 -10616.698 0 267.92762 0.00089459394 0.00087714002 + 123230 -6246.2065 -6251.9815 5.7749203 3728.611 636.87269 -10617.465 0 276.76658 0.0010166583 0.00099501718 + 123240 -6246.4378 -6252.5246 6.0867821 3729.5597 636.89948 -10618.984 0 291.71275 0.0010261095 0.00099969053 + 123250 -6246.7039 -6253.0544 6.350476 3731.9686 636.10183 -10621.125 0 304.35044 0.00092191574 0.00089385107 + 123260 -6247.0164 -6253.4825 6.4660893 3735.2149 634.75463 -10623.452 0 309.89128 0.00073892354 0.00071347418 + 123270 -6247.3535 -6253.7966 6.4431254 3738.3059 633.23874 -10625.341 0 308.79072 0.00053644406 0.00051567284 + 123280 -6247.6794 -6254.03 6.3506048 3740.2344 631.9367 -10626.201 0 304.35662 0.00037717945 0.00035967188 + 123290 -6247.9719 -6254.2097 6.2378318 3740.3483 631.13685 -10625.695 0 298.9519 0.00030495942 0.00028740116 + 123300 -6248.2331 -6254.3296 6.0965323 3738.5719 630.95932 -10623.861 0 292.18003 0.00033060001 0.00031055928 + 123310 -6248.4807 -6254.3622 5.8815319 3735.4077 631.32366 -10621.094 0 281.87601 0.00043090261 0.00040866448 + 123320 -6248.7292 -6254.291 5.5617895 3731.7428 631.97711 -10618.011 0 266.55216 0.00055994134 0.00053827011 + 123330 -6248.9755 -6254.1398 5.1643073 3728.5475 632.58394 -10615.271 0 247.50258 0.00066711277 0.0006491148 + 123340 -6249.1961 -6253.9732 4.7770955 3726.5844 632.84776 -10613.405 0 228.94522 0.00071425722 0.00070079145 + 123350 -6249.3632 -6253.8624 4.4991933 3726.2311 632.62099 -10612.715 0 215.62659 0.00068576373 0.00067447115 + 123360 -6249.4652 -6253.8365 4.3712463 3727.4458 631.9581 -10613.24 0 209.49465 0.00059010831 0.00057705189 + 123370 -6249.517 -6253.8637 4.3466424 3729.8328 631.09178 -10614.788 0 208.31549 0.00045512455 0.00043779166 + 123380 -6249.5488 -6253.881 4.3322116 3732.7514 630.34278 -10616.975 0 207.62389 0.00031994383 0.00029910974 + 123390 -6249.5836 -6253.8482 4.2646318 3735.4527 630.00215 -10619.303 0 204.38509 0.00022516523 0.00020415954 + 123400 -6249.6219 -6253.7801 4.1581896 3737.2504 630.23375 -10621.264 0 199.28378 0.00020220676 0.00018438628 + 123410 -6249.6434 -6253.7352 4.0917983 3737.7101 631.02932 -10622.475 0 196.10193 0.00026388975 0.00025033193 + 123420 -6249.6197 -6253.7763 4.1566457 3736.7914 632.22007 -10622.788 0 199.20978 0.00039936499 0.00038815633 + 123430 -6249.529 -6253.9309 4.4018644 3734.8807 633.52962 -10622.341 0 210.96204 0.00057565572 0.00056296675 + 123440 -6249.3678 -6254.1685 4.8007452 3732.6857 634.64929 -10621.504 0 230.07865 0.00074603453 0.00072845412 + 123450 -6249.153 -6254.4075 5.2544831 3731.0113 635.31865 -10620.737 0 251.82431 0.00086365066 0.00084056157 + 123460 -6248.9101 -6254.5534 5.6432572 3730.477 635.39366 -10620.424 0 270.45655 0.00089689161 0.00087114376 + 123470 -6248.6515 -6254.5507 5.8991309 3731.281 634.88455 -10620.716 0 282.71945 0.00084077759 0.00081677691 + 123480 -6248.362 -6254.4072 6.045149 3733.1239 633.95126 -10621.482 0 289.71746 0.0007187598 0.00069920941 + 123490 -6248.0067 -6254.1737 6.1670064 3735.3298 632.85572 -10622.359 0 295.55755 0.00057340401 0.0005572684 + 123500 -6247.5556 -6253.8966 6.3410013 3737.1067 631.88314 -10622.886 0 303.89636 0.00045018769 0.00043354914 + 123510 -6247.0073 -6253.5851 6.5777951 3737.8208 631.25569 -10622.662 0 315.24485 0.00038183736 0.00036096366 + 123520 -6246.3932 -6253.2187 6.8255778 3737.1739 631.06705 -10621.46 0 327.11999 0.00037952033 0.00035368928 + 123530 -6245.7588 -6252.784 7.0252385 3735.2448 631.26337 -10619.292 0 336.68885 0.00043313387 0.00040499712 + 123540 -6245.1382 -6252.3061 7.1678777 3732.4208 631.68012 -10616.407 0 343.52492 0.00051862574 0.0004918846 + 123550 -6244.5391 -6251.8461 7.3069539 3729.2774 632.1193 -10613.243 0 350.19023 0.00060803732 0.00058426651 + 123560 -6243.9514 -6251.4675 7.516053 3726.4472 632.43303 -10610.348 0 360.21143 0.00067832392 0.0006554021 + 123570 -6243.3735 -6251.1954 7.821895 3724.504 632.58003 -10608.279 0 374.8691 0.00071682451 0.00069040497 + 123580 -6242.8362 -6250.9981 8.1619577 3723.8609 632.63582 -10607.495 0 391.16681 0.00072318075 0.00069052459 + 123590 -6242.3983 -6250.8114 8.4131153 3724.6724 632.75276 -10608.237 0 403.20369 0.00070858815 0.00067185176 + 123600 -6242.1078 -6250.6026 8.4947874 3726.757 633.08248 -10610.442 0 407.11788 0.00069280726 0.0006583811 + 123610 -6241.9574 -6250.4297 8.4722102 3729.6089 633.69205 -10613.731 0 406.03585 0.00069794505 0.00067129102 + 123620 -6241.8828 -6250.4272 8.544458 3732.5687 634.51477 -10617.511 0 409.49837 0.00073814301 0.00071831909 + 123630 -6241.8196 -6250.7037 8.8840303 3735.1066 635.36077 -10621.171 0 425.77258 0.00080835497 0.00078805789 + 123640 -6241.7691 -6251.2326 9.4635215 3737.0234 635.98096 -10624.237 0 453.54505 0.00088105966 0.00085303308 + 123650 -6241.8002 -6251.8556 10.055402 3738.3922 636.15861 -10626.406 0 481.91129 0.00091849745 0.000882059 + 123660 -6241.9858 -6252.3942 10.408477 3739.2953 635.80231 -10627.492 0 498.83261 0.00089578343 0.0008570229 + 123670 -6242.3377 -6252.7515 10.413865 3739.6117 635.00749 -10627.371 0 499.09085 0.00081868528 0.0007849481 + 123680 -6242.8008 -6252.9261 10.125263 3739.0355 634.04416 -10626.006 0 485.25941 0.00072288122 0.00069720236 + 123690 -6243.2934 -6252.9643 9.6709399 3737.2964 633.25269 -10623.513 0 463.48571 0.00065522795 0.00063479801 + 123700 -6243.7541 -6252.9079 9.1538382 3734.4227 632.88985 -10620.22 0 438.70329 0.00064840564 0.00062728247 + 123710 -6244.1664 -6252.7659 8.5995032 3730.8891 633.00773 -10616.663 0 412.13645 0.0007028903 0.0006767015 + 123720 -6244.5476 -6252.5302 7.982628 3727.54 633.42816 -10613.498 0 382.57232 0.00078596206 0.00075506728 + 123730 -6244.9129 -6252.2281 7.3151695 3725.2947 633.82124 -10611.344 0 350.58397 0.00084786339 0.00081619368 + 123740 -6245.2488 -6251.9536 6.7047511 3724.7882 633.85094 -10610.593 0 321.32929 0.00084512531 0.00081574915 + 123750 -6245.5255 -6251.8262 6.3007031 3726.1458 633.32758 -10611.3 0 301.96505 0.00075859398 0.00073066369 + 123760 -6245.7339 -6251.9022 6.1683108 3728.9692 632.30379 -10613.175 0 295.62006 0.00060018997 0.00057060844 + 123770 -6245.904 -6252.1323 6.228336 3732.4662 631.07053 -10615.669 0 298.49681 0.00040991496 0.00037769131 + 123780 -6246.0795 -6252.4178 6.338261 3735.6364 630.05237 -10618.107 0 303.76503 0.00024603598 0.00021404878 + 123790 -6246.2755 -6252.704 6.4284604 3737.5116 629.64782 -10619.863 0 308.08789 0.00016867975 0.00014063596 + 123800 -6246.469 -6253.0057 6.5367704 3737.4705 630.08144 -10620.558 0 313.27871 0.00021775954 0.00019405451 + 123810 -6246.6331 -6253.3447 6.711569 3735.5312 631.31788 -10620.194 0 321.65605 0.00039273854 0.00037012784 + 123820 -6246.7711 -6253.6865 6.9154657 3732.4247 633.05748 -10619.169 0 331.42792 0.0006463801 0.00062144716 + 123830 -6246.9121 -6253.9535 7.0413225 3729.3508 634.81382 -10618.118 0 337.45968 0.00089896978 0.00087119033 + 123840 -6247.0818 -6254.083 7.0012547 3727.5218 636.06057 -10617.665 0 335.53941 0.0010672551 0.0010389106 + 123850 -6247.2819 -6254.0674 6.785475 3727.7092 636.40889 -10618.186 0 325.19803 0.0010947252 0.0010686868 + 123860 -6247.4923 -6253.949 6.4566453 3729.9678 635.75017 -10619.667 0 309.43867 0.00097129435 0.00094889661 + 123870 -6247.6844 -6253.7953 6.1108839 3733.6135 634.30432 -10621.713 0 292.86784 0.00073642641 0.00071653239 + 123880 -6247.8369 -6253.6659 5.8289312 3737.461 632.552 -10623.679 0 279.35509 0.00046542681 0.00044507571 + 123890 -6247.9518 -6253.5792 5.6274707 3740.2374 631.07379 -10624.89 0 269.69997 0.00024363385 0.00022040356 + 123900 -6248.0557 -6253.5052 5.4495097 3741.0105 630.34973 -10624.865 0 261.17108 0.00013790206 0.00011259805 + 123910 -6248.1762 -6253.4095 5.2332954 3739.4593 630.58761 -10623.456 0 250.80888 0.00017614686 0.00015281259 + 123920 -6248.3081 -6253.3182 5.010062 3735.931 631.64684 -10620.896 0 240.11028 0.0003409881 0.00032307989 + 123930 -6248.4103 -6253.3204 4.9100776 3731.3436 633.0944 -10617.758 0 235.31847 0.00057641364 0.00056261481 + 123940 -6248.4442 -6253.4873 5.0431275 3726.9814 634.37087 -10614.84 0 241.69497 0.00080371838 0.00078819697 + 123950 -6248.4149 -6253.7878 5.3728509 3724.1651 634.99418 -10612.947 0 257.49716 0.0009442672 0.00092166131 + 123960 -6248.373 -6254.0907 5.7176408 3723.8183 634.72101 -10612.63 0 274.02143 0.00094543329 0.00091587994 + 123970 -6248.3744 -6254.2535 5.8790946 3726.088 633.61659 -10613.958 0 281.7592 0.00080145621 0.0007710381 + 123980 -6248.4336 -6254.2218 5.7882534 3730.2243 632.02126 -10616.467 0 277.40558 0.00055898736 0.00053508909 + 123990 -6248.5077 -6254.0652 5.5574931 3734.8223 630.43249 -10619.32 0 266.34625 0.00030191824 0.00028700736 + 124000 -6248.5245 -6253.9211 5.3966776 3738.3461 629.34361 -10621.611 0 258.63907 0.0001196735 0.00010838838 + 124010 -6248.4388 -6253.8837 5.444947 3739.7167 629.09115 -10622.692 0 260.95241 7.2034383e-05 5.4534203e-05 + 124020 -6248.2742 -6253.9191 5.6448817 3738.6965 629.7556 -10622.371 0 270.5344 0.00016674061 0.00013663325 + 124030 -6248.1111 -6253.8936 5.782476 3735.8873 631.14049 -10620.921 0 277.12869 0.00036095276 0.00032152574 + 124040 -6248.0178 -6253.7079 5.6900911 3732.3593 632.83463 -10618.902 0 272.70109 0.00058508967 0.00054762511 + 124050 -6247.9808 -6253.4203 5.4394941 3729.1572 634.344 -10616.921 0 260.69108 0.00077425039 0.00074871246 + 124060 -6247.9017 -6253.2263 5.324616 3726.9873 635.25602 -10615.47 0 255.18547 0.00088894723 0.0008750012 + 124070 -6247.6695 -6253.292 5.6225113 3726.1999 635.37795 -10614.87 0 269.46229 0.00091749919 0.00090437767 + 124080 -6247.2465 -6253.591 6.3444733 3726.9085 634.79187 -10615.291 0 304.06276 0.00086751577 0.00084325563 + 124090 -6246.6979 -6253.9037 7.2058391 3729.0174 633.80254 -10616.724 0 345.34424 0.00075886827 0.00072078498 + 124100 -6246.1412 -6253.9831 7.8418943 3732.114 632.8042 -10618.901 0 375.82757 0.00062248938 0.00057976261 + 124110 -6245.6559 -6253.7411 8.0851946 3735.4049 632.1291 -10621.275 0 387.48789 0.00049901382 0.0004652116 + 124120 -6245.2233 -6253.3001 8.0767682 3737.8801 631.94247 -10623.123 0 387.08405 0.00042960492 0.00041131633 + 124130 -6244.7533 -6252.8772 8.1238295 3738.6981 632.21775 -10623.793 0 389.33949 0.00043904955 0.00042986266 + 124140 -6244.1784 -6252.5959 8.4174788 3737.5869 632.78439 -10622.967 0 403.41281 0.00052049208 0.00050547419 + 124150 -6243.538 -6252.3754 8.8373913 3734.9993 633.4126 -10620.787 0 423.53738 0.00063392894 0.0006017301 + 124160 -6242.9734 -6251.9966 9.0232686 3731.88 633.89548 -10617.772 0 432.44566 0.00072431977 0.00067743625 + 124170 -6242.6205 -6251.3157 8.6952331 3729.1504 634.10254 -10614.569 0 416.72436 0.00075226558 0.00070609137 + 124180 -6242.4851 -6250.453 7.967884 3727.2448 633.9996 -10611.697 0 381.86571 0.0007179883 0.00068796785 + 124190 -6242.4262 -6249.7767 7.3505115 3726.0366 633.64579 -10609.459 0 352.27775 0.0006599173 0.00064740883 + 124200 -6242.2733 -6249.6559 7.3825377 3725.201 633.17599 -10608.033 0 353.81263 0.00062709901 0.00061717822 + 124210 -6241.9759 -6250.1767 8.2008108 3724.6832 632.76294 -10607.623 0 393.02887 0.00064560847 0.0006197446 + 124220 -6241.6561 -6251.0745 9.4184163 3724.8371 632.55165 -10608.463 0 451.38336 0.00070350386 0.00065606799 + 124230 -6241.5169 -6251.9419 10.42498 3726.1115 632.58668 -10610.64 0 499.62354 0.00076329722 0.00070680858 + 124240 -6241.679 -6252.5226 10.843585 3728.5846 632.78113 -10613.888 0 519.68544 0.0007895057 0.00074370787 + 124250 -6242.093 -6252.8372 10.744181 3731.7638 632.96313 -10617.564 0 514.92144 0.0007691356 0.00074395559 + 124260 -6242.6096 -6253.0641 10.454565 3734.7982 632.9802 -10620.843 0 501.04141 0.00071227001 0.00069995432 + 124270 -6243.1271 -6253.3158 10.188759 3736.9109 632.79691 -10623.024 0 488.30252 0.00063849035 0.00062117444 + 124280 -6243.6669 -6253.5195 9.8525393 3737.7196 632.5254 -10623.764 0 472.18896 0.00056479114 0.00052998915 + 124290 -6244.3118 -6253.4969 9.1851274 3737.2596 632.37136 -10623.128 0 440.20284 0.00050449358 0.00045495132 + 124300 -6245.082 -6253.1555 8.0735192 3735.777 632.52479 -10621.457 0 386.92834 0.00047270237 0.0004229787 + 124310 -6245.8836 -6252.6136 6.7299471 3733.5231 633.05193 -10619.189 0 322.53682 0.00048650248 0.00045049492 + 124320 -6246.5728 -6252.1535 5.580706 3730.7288 633.8426 -10616.725 0 267.45875 0.00055464688 0.00053514079 + 124330 -6247.0566 -6252.0418 4.9851893 3727.7515 634.63653 -10614.43 0 238.91824 0.0006639144 0.00065192598 + 124340 -6247.3423 -6252.3542 5.0119282 3725.2068 635.11277 -10612.674 0 240.19972 0.00077442878 0.00075753981 + 124350 -6247.5179 -6252.9414 5.423478 3723.8763 635.00204 -10611.82 0 259.9235 0.00083144681 0.00080372555 + 124360 -6247.6881 -6253.5571 5.8690718 3724.3578 634.18171 -10612.097 0 281.27885 0.00079062503 0.00075614587 + 124370 -6247.9066 -6254.0312 6.1246142 3726.6813 632.72866 -10613.441 0 293.52588 0.00064293286 0.00061088163 + 124380 -6248.1542 -6254.3419 6.1877544 3730.1809 630.91885 -10615.442 0 296.55191 0.00042340227 0.00040008053 + 124390 -6248.3729 -6254.5593 6.186427 3733.7255 629.17006 -10617.455 0 296.4883 0.00019840759 0.00018300304 + 124400 -6248.5199 -6254.7416 6.2216682 3736.1658 627.93533 -10618.843 0 298.17725 3.9458262e-05 2.5880445e-05 + 124410 -6248.5977 -6254.8767 6.2789551 3736.7607 627.57257 -10619.21 0 300.92276 -3.1904006e-06 -2.1087984e-05 + 124420 -6248.6462 -6254.8965 6.2503213 3735.4101 628.22934 -10618.536 0 299.55046 8.318839e-05 5.919121e-05 + 124430 -6248.7105 -6254.7399 6.0293939 3732.6365 629.78124 -10617.158 0 288.96238 0.0002718961 0.00024521188 + 124440 -6248.8068 -6254.4162 5.6094275 3729.3614 631.84884 -10615.626 0 268.83524 0.00050774697 0.00048391558 + 124450 -6248.9099 -6254.0234 5.1134774 3726.5921 633.89674 -10614.512 0 245.06653 0.0007250012 0.00070706459 + 124460 -6248.9742 -6253.6978 4.7235496 3725.1459 635.39228 -10614.236 0 226.379 0.00086543376 0.0008514869 + 124470 -6248.9718 -6253.5284 4.55652 3725.4738 635.97419 -10614.976 0 218.374 0.00089244318 0.00087753719 + 124480 -6248.9143 -6253.5089 4.5945646 3727.5649 635.56791 -10616.642 0 220.19731 0.00080037859 0.00078099446 + 124490 -6248.838 -6253.5723 4.734352 3730.9126 634.39993 -10618.885 0 226.89671 0.00061809799 0.00059489702 + 124500 -6248.7685 -6253.6681 4.8996007 3734.5861 632.90617 -10621.16 0 234.81636 0.00040340535 0.00037989062 + 124510 -6248.7009 -6253.801 5.1001137 3737.467 631.57398 -10622.842 0 244.42606 0.00022606621 0.00020507088 + 124520 -6248.6114 -6254.0005 5.3890922 3738.6102 630.77946 -10623.39 0 258.27554 0.00014349428 0.00012516433 + 124530 -6248.4828 -6254.264 5.7812485 3737.5791 630.67525 -10622.518 0 277.06987 0.00017943973 0.00016206054 + 124540 -6248.3172 -6254.5364 6.2191772 3734.6001 631.16091 -10620.297 0 298.05787 0.00031568334 0.00029759288 + 124550 -6248.1283 -6254.7337 6.6054057 3730.4816 631.93907 -10617.154 0 316.56811 0.00049988483 0.00048032722 + 124560 -6247.9297 -6254.781 6.851315 3726.3503 632.63347 -10613.765 0 328.35346 0.00066504154 0.00064379104 + 124570 -6247.7312 -6254.6338 6.9026018 3723.302 632.92533 -10610.861 0 330.81141 0.00075251569 0.00072946125 + 124580 -6247.5403 -6254.2867 6.7464143 3722.069 632.66194 -10609.018 0 323.32602 0.0007312983 0.00070658973 + 124590 -6247.3621 -6253.7782 6.4160589 3722.8079 631.90686 -10608.493 0 307.49354 0.00060815976 0.00058253136 + 124600 -6247.1976 -6253.1887 5.9910792 3725.0822 630.92046 -10609.191 0 287.12613 0.00042559132 0.00040040219 + 124610 -6247.0397 -6252.6298 5.5900911 3728.0417 630.07452 -10610.746 0 267.90853 0.00024789045 0.00022462618 + 124620 -6246.8686 -6252.2284 5.3597691 3730.7206 629.72173 -10612.671 0 256.87021 0.00013966452 0.00011879742 + 124630 -6246.6505 -6252.0981 5.4475912 3732.3578 630.06294 -10614.519 0 261.07913 0.00014349237 0.00012338384 + 124640 -6246.3488 -6252.292 5.9431888 3732.6499 631.06462 -10616.007 0 284.83096 0.00026407734 0.0002413897 + 124650 -6245.9453 -6252.7604 6.8150522 3731.8433 632.46101 -10617.065 0 326.61554 0.0004651547 0.00043724574 + 124660 -6245.4523 -6253.3552 7.9028324 3730.5998 633.84064 -10617.796 0 378.74807 0.00068183795 0.00064926029 + 124670 -6244.9046 -6253.8927 8.9880938 3729.6676 634.78889 -10618.349 0 430.75989 0.00084487526 0.00081130708 + 124680 -6244.3378 -6254.2277 9.8899064 3729.5204 635.04084 -10618.789 0 473.97981 0.00090708357 0.00087630855 + 124690 -6243.7771 -6254.2846 10.507442 3730.154 634.58873 -10619.027 0 503.5756 0.00086029796 0.00083296944 + 124700 -6243.2455 -6254.0397 10.79425 3731.1283 633.69258 -10618.861 0 517.32102 0.00073581474 0.00070906946 + 124710 -6242.7756 -6253.4991 10.72351 3731.7941 632.77647 -10618.07 0 513.93076 0.00058966775 0.00055974916 + 124720 -6242.4065 -6252.7007 10.294212 3731.5738 632.25107 -10616.526 0 493.35641 0.00048005991 0.00044549921 + 124730 -6242.1674 -6251.7291 9.5616685 3730.1963 632.344 -10614.269 0 458.2488 0.00044556033 0.00040869534 + 124740 -6242.0612 -6250.7221 8.6609195 3727.8124 633.00975 -10611.544 0 415.07986 0.00049189204 0.00045783718 + 124750 -6242.0531 -6249.869 7.8159135 3724.9485 633.94713 -10608.765 0 374.58243 0.00059236629 0.00056544968 + 124760 -6242.0764 -6249.3814 7.3050263 3722.334 634.71263 -10606.428 0 350.09785 0.00070048723 0.00068009523 + 124770 -6242.0681 -6249.4115 7.3434238 3720.699 634.89268 -10605.003 0 351.93807 0.00076746321 0.00074727085 + 124780 -6242.0225 -6249.9538 7.931344 3720.5925 634.2743 -10604.821 0 380.11451 0.00075814159 0.00073085953 + 124790 -6242.0155 -6250.8215 8.8060413 3722.2044 632.94432 -10605.97 0 422.03491 0.00066315078 0.00062740149 + 124800 -6242.1666 -6251.7486 9.5819795 3725.207 631.26951 -10608.225 0 459.22222 0.00050572056 0.00046833502 + 124810 -6242.557 -6252.5492 9.9922016 3728.7377 629.7613 -10611.048 0 478.88237 0.00033841473 0.00030890949 + 124820 -6243.1758 -6253.1977 10.02196 3731.6581 628.88201 -10613.738 0 480.30858 0.00022487956 0.00020675758 + 124830 -6243.9488 -6253.7627 9.8138252 3733.0444 628.8762 -10615.683 0 470.33357 0.00021052229 0.000198016 + 124840 -6244.8089 -6254.2737 9.4647868 3732.6321 629.69402 -10616.6 0 453.60569 0.00029827185 0.00028176922 + 124850 -6245.7208 -6254.6627 8.9419298 3730.9116 631.02889 -10616.603 0 428.54745 0.00044649962 0.00042088223 + 124860 -6246.6473 -6254.8228 8.1754923 3728.8226 632.44435 -10616.09 0 391.81546 0.00059082311 0.00055884607 + 124870 -6247.523 -6254.7097 7.1866944 3727.2719 633.53096 -10615.512 0 344.42672 0.00067456359 0.00064346797 + 124880 -6248.2713 -6254.3906 6.1193273 3726.7601 634.03051 -10615.181 0 293.2725 0.00067033626 0.0006458484 + 124890 -6248.8394 -6254.0157 5.1762056 3727.2682 633.89228 -10615.176 0 248.07281 0.0005854809 0.00056792302 + 124900 -6249.2171 -6253.7386 4.5214808 3728.3837 633.26102 -10615.383 0 216.69473 0.0004537788 0.00043840165 + 124910 -6249.4383 -6253.6392 4.2009024 3729.5482 632.41312 -10615.6 0 201.33081 0.00031984279 0.00030079615 + 124920 -6249.5696 -6253.6967 4.1271081 3730.2869 631.65959 -10615.643 0 197.79418 0.00022325838 0.00019839877 + 124930 -6249.6808 -6253.8365 4.1557362 3730.3249 631.23892 -10615.4 0 199.16619 0.0001880351 0.00016076665 + 124940 -6249.8067 -6254.0138 4.2071876 3729.5969 631.2318 -10614.843 0 201.63203 0.00021880038 0.00019504571 + 124950 -6249.9298 -6254.2548 4.3250117 3728.232 631.53204 -10614.019 0 207.27883 0.00030109735 0.00028385888 + 124960 -6250.006 -6254.6097 4.6037435 3726.5625 631.89066 -10613.063 0 220.63722 0.00040350192 0.0003901614 + 124970 -6250.0114 -6255.0655 5.0540567 3725.0999 632.01903 -10612.184 0 242.21876 0.00048359158 0.00046852297 + 124980 -6249.9672 -6255.513 5.5457947 3724.3866 631.71131 -10611.611 0 265.7856 0.00050117739 0.00048086988 + 124990 -6249.9203 -6255.8044 5.8840848 3724.7463 630.94007 -10611.491 0 281.99836 0.00043637925 0.00041215826 + 125000 -6249.9045 -6255.8434 5.938936 3726.0831 629.8877 -10611.814 0 284.62714 0.00030281643 0.00027921654 + 125010 -6249.9164 -6255.6339 5.7174267 3727.8776 628.89558 -10612.407 0 274.01117 0.00014622884 0.00012709993 + 125020 -6249.9238 -6255.2632 5.3393777 3729.3981 628.34307 -10613.004 0 255.89294 2.7072107e-05 1.2770302e-05 + 125030 -6249.8928 -6254.8459 4.9530702 3730.0222 628.50143 -10613.37 0 237.37892 -4.8772444e-06 -1.7318216e-05 + 125040 -6249.8124 -6254.4687 4.6563073 3729.5117 629.42282 -10613.403 0 223.15637 6.8407041e-05 5.4207623e-05 + 125050 -6249.697 -6254.1723 4.4753401 3728.114 630.9088 -10613.195 0 214.48341 0.00022611924 0.00020871986 + 125060 -6249.5668 -6253.9736 4.4067835 3726.4482 632.56905 -10612.991 0 211.19779 0.00041772181 0.00039842364 + 125070 -6249.424 -6253.8933 4.4693334 3725.2433 633.94722 -10613.084 0 214.19554 0.00058250075 0.00056335596 + 125080 -6249.2489 -6253.9499 4.7010249 3725.0601 634.66972 -10613.68 0 225.29949 0.00067027746 0.00065185082 + 125090 -6249.0196 -6254.1216 5.1019937 3726.1017 634.5667 -10614.79 0 244.51617 0.00065634475 0.00063766392 + 125100 -6248.7323 -6254.3294 5.5970643 3728.1389 633.72384 -10616.192 0 268.24273 0.00054834984 0.00052866584 + 125110 -6248.3987 -6254.4763 6.0775756 3730.5468 632.44769 -10617.471 0 291.27152 0.00038473156 0.00036435745 + 125120 -6248.0274 -6254.5076 6.4801999 3732.4687 631.15996 -10618.136 0 310.56754 0.00022347529 0.00020240844 + 125130 -6247.6192 -6254.4236 6.80447 3733.1055 630.26004 -10617.789 0 326.10838 0.00012171904 9.8257092e-05 + 125140 -6247.1853 -6254.2373 7.0520772 3732.0325 629.99905 -10616.269 0 337.97511 0.00011326784 8.5254836e-05 + 125150 -6246.7611 -6253.9435 7.1823653 3729.3737 630.40041 -10613.718 0 344.21924 0.00019565856 0.00016334046 + 125160 -6246.388 -6253.5431 7.155132 3725.7384 631.25165 -10610.533 0 342.91407 0.00033379022 0.00030067809 + 125170 -6246.0794 -6253.0895 7.0100952 3721.9814 632.17872 -10607.25 0 335.9631 0.00047663972 0.00044691016 + 125180 -6245.8086 -6252.6946 6.8859903 3718.932 632.78512 -10604.412 0 330.01529 0.00057718436 0.00055197971 + 125190 -6245.5298 -6252.4834 6.9536035 3717.1967 632.80543 -10602.486 0 333.2557 0.00060720716 0.00058318115 + 125200 -6245.214 -6252.5282 7.3141987 3717.0625 632.20994 -10601.801 0 350.53744 0.00056362923 0.00053502393 + 125210 -6244.8766 -6252.8051 7.9284844 3718.4828 631.21598 -10602.504 0 379.97746 0.00046665482 0.00042962664 + 125220 -6244.5775 -6253.1984 8.6209116 3721.1076 630.20009 -10604.506 0 413.16246 0.0003518001 0.00030807883 + 125230 -6244.3888 -6253.5583 9.1695523 3724.3414 629.54692 -10607.447 0 439.4564 0.00025860678 0.00021547168 + 125240 -6244.3459 -6253.7796 9.4336753 3727.4463 629.49925 -10610.725 0 452.11465 0.00021871389 0.00018446155 + 125250 -6244.4213 -6253.8481 9.4267349 3729.7225 630.0746 -10613.645 0 451.78203 0.00024569313 0.0002234048 + 125260 -6244.5467 -6253.819 9.2723669 3730.7393 631.07854 -10615.637 0 444.38385 0.00032930983 0.00031374617 + 125270 -6244.6703 -6253.7442 9.0739649 3730.5067 632.19608 -10616.447 0 434.87531 0.0004369594 0.00041760353 + 125280 -6244.8022 -6253.6086 8.8063895 3729.457 633.1109 -10616.176 0 422.0516 0.00052392122 0.00049258651 + 125290 -6245.0051 -6253.3381 8.3329692 3728.1987 633.60536 -10615.142 0 399.36264 0.00055115277 0.00050857702 + 125300 -6245.3335 -6252.8858 7.5523214 3727.1636 633.61625 -10613.666 0 361.94962 0.00050453143 0.00046040741 + 125310 -6245.7719 -6252.3285 6.5565315 3726.3684 633.23953 -10611.936 0 314.22578 0.00040520913 0.00037091391 + 125320 -6246.2318 -6251.8801 5.6482241 3725.4641 632.68595 -10610.03 0 270.69459 0.00030221783 0.00028169313 + 125330 -6246.6149 -6251.7851 5.1702312 3724.0604 632.19712 -10608.043 0 247.78649 0.00024794057 0.00023430458 + 125340 -6246.8921 -6252.1572 5.2651677 3722.111 631.94619 -10606.214 0 252.33638 0.00026902034 0.00025013301 + 125350 -6247.1332 -6252.8914 5.7582335 3720.0823 631.95998 -10604.934 0 275.96686 0.00035023432 0.00031890207 + 125360 -6247.4592 -6253.7323 6.273075 3718.7637 632.09902 -10604.595 0 300.64095 0.00044207392 0.00040223493 + 125370 -6247.9486 -6254.4502 6.5015766 3718.8278 632.11423 -10605.392 0 311.59203 0.00048784582 0.0004511303 + 125380 -6248.573 -6254.9778 6.4048824 3720.4381 631.76582 -10607.182 0 306.9579 0.00045307661 0.00042864557 + 125390 -6249.2236 -6255.3976 6.1740025 3723.1586 630.95398 -10609.51 0 295.89284 0.00033950618 0.00032634919 + 125400 -6249.8019 -6255.8042 6.00233 3726.187 629.79532 -10611.787 0 287.66533 0.00017897245 0.00016744099 + 125410 -6250.2848 -6256.1806 5.8958377 3728.7082 628.60136 -10613.49 0 282.56162 1.6700209e-05 -2.7205481e-06 + 125420 -6250.7116 -6256.4004 5.6888526 3730.1366 627.76513 -10614.302 0 272.64174 -0.00010379482 -0.00013271564 + 125430 -6251.12 -6256.3415 5.2214913 3730.1799 627.60753 -10614.129 0 250.24316 -0.00014977727 -0.00018146295 + 125440 -6251.5024 -6255.9998 4.4974064 3728.8169 628.25137 -10613.068 0 215.54095 -0.00010519333 -0.00013068869 + 125450 -6251.8128 -6255.5066 3.6937894 3726.2963 629.57033 -10611.373 0 177.02711 2.3938352e-05 8.9048446e-06 + 125460 -6252.0059 -6255.0502 3.0442953 3723.161 631.2233 -10609.435 0 145.89971 0.00020655466 0.0001989917 + 125470 -6252.0689 -6254.7705 2.7016038 3720.2219 632.75428 -10607.747 0 129.47601 0.00039035494 0.00038274558 + 125480 -6252.0311 -6254.6999 2.6687448 3718.3962 633.72568 -10606.822 0 127.90123 0.00051483575 0.00050061827 + 125490 -6251.9509 -6254.7786 2.8277103 3718.4128 633.84881 -10607.04 0 135.51975 0.00053145367 0.00050942067 + 125500 -6251.8849 -6254.9231 3.0382495 3720.4873 633.07447 -10608.485 0 145.60996 0.00042396524 0.00039872827 + 125510 -6251.8555 -6255.0959 3.2404346 3724.1337 631.61407 -10610.844 0 155.29981 0.00021938585 0.00019764952 + 125520 -6251.8375 -6255.3241 3.486557 3728.2492 629.88233 -10613.456 0 167.09537 -1.7713194e-05 -3.2344558e-05 + 125530 -6251.7793 -6255.651 3.8717438 3731.4802 628.37881 -10615.51 0 185.55569 -0.00020745024 -0.00021710197 + 125540 -6251.6452 -6256.0601 4.4148476 3732.7209 627.5424 -10616.323 0 211.58427 -0.00028456336 -0.00029500595 + 125550 -6251.4457 -6256.4414 4.9957226 3731.5154 627.61729 -10615.574 0 239.42306 -0.00022272414 -0.00023845036 + 125560 -6251.2271 -6256.6417 5.4145534 3728.1895 628.5686 -10613.4 0 259.49578 -4.2977087e-05 -6.3860911e-05 + 125570 -6251.0331 -6256.5577 5.524572 3723.6963 630.08069 -10610.335 0 264.76849 0.00019552304 0.00017327689 + 125580 -6250.8731 -6256.1931 5.3200894 3719.2884 631.65183 -10607.133 0 254.96853 0.0004165322 0.00039667509 + 125590 -6250.7258 -6255.6432 4.9173916 3716.1476 632.76058 -10604.551 0 235.66899 0.00055099584 0.0005344031 + 125600 -6250.5642 -6255.0363 4.4721761 3715.0678 633.04517 -10603.149 0 214.33177 0.00055767198 0.00054230603 + 125610 -6250.3746 -6254.4847 4.1101027 3716.253 632.42915 -10603.167 0 196.97918 0.00043524367 0.00041808081 + 125620 -6250.1604 -6254.0631 3.9027075 3719.2815 631.14726 -10604.492 0 187.03964 0.00022275646 0.0002018748 + 125630 -6249.9324 -6253.8106 3.8781191 3723.2404 629.66209 -10606.713 0 185.86123 -1.2103582e-05 -3.6501317e-05 + 125640 -6249.6966 -6253.7424 4.0458209 3726.988 628.49993 -10609.23 0 193.89844 -0.0001937626 -0.0002197779 + 125650 -6249.4448 -6253.8596 4.4147891 3729.4726 628.06523 -10611.397 0 211.58147 -0.00026243565 -0.00028796202 + 125660 -6249.1576 -6254.1434 4.9857907 3730.035 628.50309 -10612.681 0 238.94706 -0.00019347657 -0.00021760881 + 125670 -6248.82 -6254.5392 5.7192228 3728.6107 629.65945 -10612.809 0 274.09725 -6.0163396e-06 -2.9237382e-05 + 125680 -6248.4362 -6254.9512 6.5149823 3725.75 631.14685 -10611.848 0 312.23451 0.000242752 0.00021945283 + 125690 -6248.0298 -6255.2681 7.2383031 3722.4168 632.4845 -10610.169 0 346.9001 0.00047648859 0.00045221542 + 125700 -6247.6313 -6255.3989 7.7676211 3719.6467 633.26259 -10608.308 0 372.26799 0.00062503823 0.00059887997 + 125710 -6247.272 -6255.2875 8.0155048 3718.209 633.27807 -10606.775 0 384.14796 0.0006469184 0.00061835252 + 125720 -6246.9827 -6254.9176 7.9348656 3718.3808 632.59497 -10605.893 0 380.28328 0.00054221784 0.00051230231 + 125730 -6246.7797 -6254.3342 7.554547 3719.8718 631.50567 -10605.712 0 362.05628 0.00035251247 0.00032393559 + 125740 -6246.6484 -6253.6622 7.0137616 3721.9361 630.41072 -10606.009 0 336.13881 0.00014630803 0.00012132168 + 125750 -6246.5501 -6253.0714 6.5213083 3723.6673 629.66945 -10606.408 0 312.53769 -6.8156838e-06 -2.8413934e-05 + 125760 -6246.4493 -6252.7019 6.2525612 3724.367 629.47831 -10606.547 0 299.65782 -6.2649792e-05 -8.3167561e-05 + 125770 -6246.3324 -6252.6127 6.2803214 3723.8006 629.81427 -10606.228 0 300.98824 -1.6589965e-05 -3.8523615e-05 + 125780 -6246.2022 -6252.7871 6.584918 3722.2314 630.45768 -10605.476 0 315.58622 9.9679858e-05 7.4799023e-05 + 125790 -6246.0692 -6253.159 7.0898464 3720.2624 631.08742 -10604.509 0 339.78522 0.00023436283 0.00020600582 + 125800 -6245.9542 -6253.6241 7.6699205 3718.5901 631.41604 -10603.63 0 367.58563 0.00033595982 0.00030498872 + 125810 -6245.8909 -6254.0564 8.1654566 3717.7467 631.3095 -10603.113 0 391.3345 0.00037158773 0.00034094359 + 125820 -6245.9044 -6254.3604 8.4559576 3717.8977 630.83791 -10603.096 0 405.25693 0.00033885398 0.00031224948 + 125830 -6245.9831 -6254.5247 8.5415105 3718.793 630.23709 -10603.555 0 409.35711 0.00026585343 0.00024403875 + 125840 -6246.0898 -6254.601 8.5112538 3719.945 629.80445 -10604.35 0 407.90704 0.00019582288 0.00017453199 + 125850 -6246.211 -6254.6145 8.4035298 3720.9356 629.77469 -10605.325 0 402.7443 0.00016289104 0.00013633445 + 125860 -6246.3827 -6254.5149 8.1321693 3721.616 630.21898 -10606.35 0 389.73918 0.00017462793 0.00014170366 + 125870 -6246.6503 -6254.2414 7.5911159 3722.0614 631.00449 -10607.307 0 363.80887 0.00021265152 0.00017879544 + 125880 -6247.0074 -6253.8252 6.8178063 3722.3866 631.83786 -10608.05 0 326.74753 0.00024742257 0.0002196796 + 125890 -6247.3884 -6253.4099 6.0214784 3722.6158 632.3818 -10608.407 0 288.58303 0.00025417291 0.00023461312 + 125900 -6247.7202 -6253.1675 5.4472146 3722.6837 632.39384 -10608.245 0 261.06109 0.00022125344 0.00020512577 + 125910 -6247.9795 -6253.1921 5.2125651 3722.5031 631.82564 -10607.521 0 249.81537 0.00015146975 0.00013133719 + 125920 -6248.2059 -6253.457 5.2511262 3722.0136 630.84477 -10606.315 0 251.66343 6.0720775e-05 3.263173e-05 + 125930 -6248.4681 -6253.8571 5.3890118 3721.1828 629.77373 -10604.814 0 258.27169 -2.4533008e-05 -5.7890838e-05 + 125940 -6248.8124 -6254.2956 5.483153 3719.9937 628.96717 -10603.256 0 262.78346 -7.319484e-05 -0.00010473722 + 125950 -6249.2308 -6254.7432 5.5124186 3718.4717 628.67149 -10601.886 0 264.18603 -6.090405e-05 -8.4904185e-05 + 125960 -6249.6738 -6255.223 5.549208 3716.7725 628.92574 -10600.921 0 265.94918 1.5898854e-05 -6.3536074e-07 + 125970 -6250.0958 -6255.7379 5.6420269 3715.2699 629.55056 -10600.558 0 270.39759 0.00013151878 0.00011717985 + 125980 -6250.489 -6256.216 5.727018 3714.5247 630.22965 -10600.97 0 274.47084 0.00023660577 0.00021880567 + 125990 -6250.875 -6256.5322 5.6572166 3715.07 630.64401 -10602.246 0 271.12556 0.00027837662 0.00025556199 + 126000 -6251.2698 -6256.5856 5.3158346 3717.1037 630.60025 -10604.29 0 254.76462 0.00022555874 0.00020088631 + 126010 -6251.6581 -6256.3642 4.7061341 3720.2847 630.10404 -10606.753 0 225.54435 8.4360972e-05 6.2764579e-05 + 126020 -6252.0005 -6255.955 3.9544912 3723.7754 629.35502 -10609.085 0 189.52141 -0.00010236588 -0.00011780675 + 126030 -6252.258 -6255.5035 3.2455324 3726.5164 628.67005 -10610.69 0 155.54412 -0.00027113667 -0.00028110053 + 126040 -6252.413 -6255.1537 2.740685 3727.6082 628.36614 -10611.128 0 131.349 -0.00036127394 -0.00036960839 + 126050 -6252.4769 -6254.9947 2.517843 3726.6399 628.64397 -10610.279 0 120.66916 -0.00033687333 -0.00034808829 + 126060 -6252.4838 -6255.0363 2.5524344 3723.8463 629.50795 -10608.391 0 122.32698 -0.00020000748 -0.00021627387 + 126070 -6252.475 -6255.2244 2.749458 3720.0403 630.74575 -10606.01 0 131.76945 9.1621105e-06 -1.0376596e-05 + 126080 -6252.476 -6255.4899 3.0138645 3716.3479 631.97586 -10603.814 0 144.4413 0.0002253915 0.00020712142 + 126090 -6252.4799 -6255.7926 3.3127183 3713.8491 632.7561 -10602.398 0 158.76405 0.0003795161 0.00036628216 + 126100 -6252.4505 -6256.125 3.674563 3713.2601 632.72807 -10602.113 0 176.10568 0.00041978134 0.00041132306 + 126110 -6252.3511 -6256.4706 4.1195534 3714.7514 631.75471 -10602.977 0 197.43211 0.00032660162 0.00031854686 + 126120 -6252.1779 -6256.7622 4.5843727 3717.9196 629.99912 -10604.681 0 219.70886 0.00011815239 0.00010547411 + 126130 -6251.9692 -6256.8922 4.9230054 3721.8771 627.90431 -10606.674 0 235.93804 -0.00015282327 -0.00017168334 + 126140 -6251.7793 -6256.7764 4.9971024 3725.4412 626.06811 -10608.286 0 239.48919 -0.00041062803 -0.00043257699 + 126150 -6251.6393 -6256.4185 4.779234 3727.4246 625.05207 -10608.895 0 229.04771 -0.00057648243 -0.00059643414 + 126160 -6251.5397 -6255.9166 4.3768239 3726.9966 625.194 -10608.107 0 209.76196 -0.00059337195 -0.00060819921 + 126170 -6251.4469 -6255.41 3.9631426 3724.004 626.49273 -10605.907 0 189.93603 -0.00044753498 -0.00045807117 + 126180 -6251.3308 -6255.0127 3.6819097 3719.1098 628.60344 -10602.726 0 176.45777 -0.00017683454 -0.0001869029 + 126190 -6251.1831 -6254.7744 3.5912548 3713.6576 630.94207 -10599.374 0 172.11308 0.00013889966 0.00012516776 + 126200 -6251.0186 -6254.6802 3.6616009 3709.2833 632.86386 -10596.827 0 175.48446 0.000402869 0.00038363913 + 126210 -6250.8642 -6254.6768 3.8126484 3707.389 633.8594 -10595.925 0 182.7235 0.00053329752 0.00051024184 + 126220 -6250.7406 -6254.7128 3.9721981 3708.6558 633.70632 -10597.075 0 190.37002 0.00049165403 0.00046900132 + 126230 -6250.6444 -6254.7731 4.1287446 3712.7832 632.5296 -10600.086 0 197.87261 0.00029674433 0.00027843483 + 126240 -6250.5458 -6254.8834 4.3376522 3718.5765 630.75404 -10604.214 0 207.88463 1.8291922e-05 5.0434574e-06 + 126250 -6250.4075 -6255.0736 4.6660923 3724.3599 628.96599 -10608.4 0 223.62533 -0.00024849836 -0.00025983922 + 126260 -6250.2132 -6255.3317 5.1184526 3728.54 627.72606 -10611.598 0 245.30497 -0.00041731944 -0.00043139897 + 126270 -6249.9808 -6255.5906 5.6097781 3730.0883 627.38871 -10613.068 0 268.85204 -0.00044007329 -0.00045950954 + 126280 -6249.7492 -6255.7619 6.0127197 3728.7844 627.98721 -10612.533 0 288.16326 -0.00032028978 -0.00034387106 + 126290 -6249.5503 -6255.7865 6.2361819 3725.183 629.22825 -10610.198 0 298.87283 -0.00010752374 -0.00013136027 + 126300 -6249.3898 -6255.6622 6.2724142 3720.3658 630.60442 -10606.632 0 300.60928 0.00012295465 0.00010252578 + 126310 -6249.2474 -6255.4334 6.1860219 3715.5823 631.58582 -10602.602 0 296.46888 0.00029667748 0.00028064152 + 126320 -6249.0941 -6255.1578 6.0637463 3711.8972 631.81749 -10598.873 0 290.60875 0.00036357431 0.00034974601 + 126330 -6248.9126 -6254.8739 5.9613025 3709.9493 631.24464 -10596.068 0 285.69907 0.00031155062 0.00029620097 + 126340 -6248.7085 -6254.5894 5.8808966 3709.8645 630.11646 -10594.57 0 281.84556 0.00016682313 0.00014729745 + 126350 -6248.5032 -6254.2992 5.7959444 3711.3058 628.86947 -10594.474 0 277.77418 -1.7780214e-05 -4.1324801e-05 + 126360 -6248.3161 -6254.0181 5.7020239 3713.619 627.94511 -10595.582 0 273.27298 -0.0001819241 -0.0002068924 + 126370 -6248.1487 -6253.7948 5.646112 3716.0403 627.62487 -10597.46 0 270.59337 -0.00027774162 -0.00030105091 + 126380 -6247.9838 -6253.6937 5.7099395 3717.9204 627.95015 -10599.564 0 273.65234 -0.00028383601 -0.00030388036 + 126390 -6247.7948 -6253.7627 5.9678917 3718.8951 628.74584 -10601.404 0 286.01485 -0.00020876194 -0.00022637903 + 126400 -6247.5588 -6254.0045 6.4457108 3718.9457 629.71821 -10602.668 0 308.91463 -8.4218079e-05 -0.00010241693 + 126410 -6247.2728 -6254.3585 7.0856737 3718.341 630.57722 -10603.277 0 339.58524 4.7780456e-05 2.5511049e-05 + 126420 -6246.9676 -6254.7003 7.7326948 3717.4924 631.13599 -10603.329 0 370.59412 0.00014906375 0.00012154573 + 126430 -6246.7 -6254.8834 8.1833756 3716.7658 631.35577 -10603.005 0 392.19328 0.00019776491 0.00016801198 + 126440 -6246.514 -6254.8227 8.3087239 3716.3185 631.32691 -10602.468 0 398.20067 0.00019588814 0.00016938001 + 126450 -6246.4009 -6254.5619 8.1609849 3716.0558 631.20244 -10601.82 0 391.12019 0.00016708741 0.00014670838 + 126460 -6246.3069 -6254.2442 7.9372787 3715.7676 631.11899 -10601.131 0 380.39893 0.00014217392 0.00012457844 + 126470 -6246.1915 -6253.9954 7.8039607 3715.362 631.1375 -10600.495 0 374.00959 0.00013896037 0.00011699672 + 126480 -6246.0748 -6253.83 7.7551639 3714.9927 631.21985 -10600.042 0 371.67097 0.00015056933 0.00012016227 + 126490 -6246.0203 -6253.6759 7.6556352 3714.9497 631.24493 -10599.871 0 366.90099 0.00015165831 0.00011625654 + 126500 -6246.0707 -6253.4841 7.413315 3715.4013 631.06091 -10599.946 0 355.28765 0.00011754492 8.5549589e-05 + 126510 -6246.206 -6253.2999 7.0938587 3716.2101 630.55917 -10600.069 0 339.97751 4.133187e-05 1.9102463e-05 + 126520 -6246.3615 -6253.2338 6.8722885 3716.9675 629.74029 -10599.942 0 329.35862 -6.2004071e-05 -7.5095803e-05 + 126530 -6246.4829 -6253.3711 6.8882566 3717.2054 628.74023 -10599.317 0 330.12391 -0.00016391515 -0.00017463945 + 126540 -6246.5673 -6253.7062 7.1389152 3716.6336 627.80137 -10598.141 0 342.13687 -0.00023491922 -0.00025107914 + 126550 -6246.6646 -6254.1438 7.4791358 3715.2717 627.1955 -10596.611 0 358.44215 -0.00025474144 -0.00028002269 + 126560 -6246.8462 -6254.5528 7.7065561 3713.4334 627.12422 -10595.11 0 369.34141 -0.00021794035 -0.00024996877 + 126570 -6247.1625 -6254.8308 7.6683254 3711.5974 627.63294 -10594.061 0 367.50918 -0.00013545691 -0.00016772459 + 126580 -6247.6133 -6254.9474 7.3341568 3710.2406 628.57635 -10593.764 0 351.49395 -3.211946e-05 -5.825007e-05 + 126590 -6248.1473 -6254.9496 6.8023052 3709.7055 629.65822 -10594.313 0 326.00463 5.9954227e-05 4.2246146e-05 + 126600 -6248.6918 -6254.9264 6.2346039 3710.1401 630.53563 -10595.602 0 298.7972 0.00011049872 9.8204104e-05 + 126610 -6249.1924 -6254.9517 5.7592371 3711.4948 630.9444 -10597.391 0 276.01496 9.9907982e-05 8.6996831e-05 + 126620 -6249.6354 -6255.0416 5.4061127 3713.5369 630.79271 -10599.371 0 259.09126 2.5362709e-05 6.8808169e-06 + 126630 -6250.0386 -6255.1542 5.1155683 3715.8682 630.18808 -10601.21 0 245.16674 -9.6878311e-05 -0.00012170888 + 126640 -6250.4235 -6255.2311 4.8076416 3717.9677 629.3929 -10602.592 0 230.40916 -0.00023375806 -0.00026142594 + 126650 -6250.7915 -6255.251 4.4595132 3719.2862 628.7274 -10603.265 0 213.72489 -0.00034305841 -0.00036858247 + 126660 -6251.1204 -6255.253 4.1325485 3719.3991 628.45455 -10603.107 0 198.05491 -0.00038628666 -0.00040687031 + 126670 -6251.3817 -6255.3068 3.9251643 3718.1809 628.68626 -10602.174 0 188.1159 -0.00034384085 -0.00036056911 + 126680 -6251.5643 -6255.4533 3.8890561 3715.9199 629.34251 -10600.716 0 186.38539 -0.00022605149 -0.00024235516 + 126690 -6251.6849 -6255.6671 3.9822481 3713.2881 630.17524 -10599.13 0 190.85167 -7.3242105e-05 -9.1600355e-05 + 126700 -6251.7751 -6255.8769 4.1018385 3711.133 630.84795 -10597.858 0 196.58312 5.7499762e-05 3.7629754e-05 + 126710 -6251.8564 -6256.0228 4.1664493 3710.1654 631.04608 -10597.234 0 199.67963 0.00011384179 9.510507e-05 + 126720 -6251.9249 -6256.0981 4.1732132 3710.688 630.5851 -10597.371 0 200.00379 6.8088532e-05 5.2395449e-05 + 126730 -6251.9591 -6256.1397 4.1806329 3712.4913 629.48241 -10598.113 0 200.35939 -7.329959e-05 -8.6736162e-05 + 126740 -6251.9422 -6256.1825 4.2402422 3714.9449 627.96885 -10599.096 0 203.2162 -0.0002730257 -0.00028700499 + 126750 -6251.8786 -6256.2246 4.3459344 3717.215 626.43254 -10599.872 0 208.28156 -0.0004753873 -0.00049226917 + 126760 -6251.7882 -6256.2331 4.444887 3718.5102 625.30921 -10600.052 0 213.02393 -0.00062220321 -0.00064213627 + 126770 -6251.6891 -6256.1759 4.4867472 3718.2957 624.95107 -10599.423 0 215.0301 -0.00066846675 -0.00068968179 + 126780 -6251.5868 -6256.0419 4.455089 3716.4527 625.51455 -10598.009 0 213.51286 -0.00059547144 -0.00061578308 + 126790 -6251.4765 -6255.8378 4.361359 3713.3484 626.90149 -10596.088 0 209.0208 -0.00041829614 -0.00043621295 + 126800 -6251.3502 -6255.5807 4.2304643 3709.7754 628.77307 -10594.129 0 202.74759 -0.00018386129 -0.00019890311 + 126810 -6251.1982 -6255.3008 4.1026844 3706.7499 630.63674 -10592.687 0 196.62366 4.1661924e-05 2.8811544e-05 + 126820 -6251.0081 -6255.0462 4.0381299 3705.223 631.98649 -10592.256 0 193.52984 0.00019262678 0.00017995151 + 126830 -6250.7691 -6254.8699 4.1007416 3705.7945 632.45808 -10593.122 0 196.53054 0.00022429904 0.0002088584 + 126840 -6250.4803 -6254.8064 4.3260394 3708.5099 631.95001 -10595.266 0 207.32808 0.00012736389 0.00010661952 + 126850 -6250.1558 -6254.8526 4.6968523 3712.7954 630.66651 -10598.315 0 225.09952 -6.7823666e-05 -9.4339373e-05 + 126860 -6249.8228 -6254.9674 5.1446302 3717.5625 629.06044 -10601.59 0 246.55955 -0.00029883885 -0.00032858345 + 126870 -6249.5111 -6255.0909 5.5798342 3721.474 627.68603 -10604.251 0 267.41696 -0.0004891941 -0.00051731106 + 126880 -6249.2353 -6255.1786 5.9433269 3723.3149 627.00489 -10605.498 0 284.83757 -0.00057230214 -0.00059426568 + 126890 -6248.9808 -6255.228 6.2471465 3722.3778 627.21532 -10604.821 0 299.39831 -0.00051476643 -0.00052997976 + 126900 -6248.714 -6255.2669 6.5529001 3718.7526 628.17697 -10602.196 0 314.05174 -0.00033148906 -0.00034502654 + 126910 -6248.4194 -6255.3007 6.8812926 3713.3983 629.4676 -10598.167 0 329.79015 -8.5360392e-05 -0.00010516172 + 126920 -6248.1315 -6255.2749 7.143386 3707.8892 630.54791 -10593.712 0 342.35114 0.00013266409 0.0001019508 + 126930 -6247.918 -6255.1095 7.191439 3703.8546 630.96466 -10589.929 0 344.65411 0.00023871394 0.00019996634 + 126940 -6247.825 -6254.7812 6.9561825 3702.3456 630.51503 -10587.642 0 333.37929 0.00019126816 0.00015312976 + 126950 -6247.8367 -6254.3717 6.535059 3703.4563 629.31751 -10587.146 0 313.1967 8.6476782e-06 -2.078954e-05 + 126960 -6247.8847 -6254.0331 6.1484256 3706.3805 627.76859 -10588.182 0 294.66705 -0.00023982595 -0.0002587237 + 126970 -6247.8949 -6253.8963 6.001347 3709.8329 626.40207 -10590.131 0 287.61822 -0.00046366818 -0.00047736082 + 126980 -6247.8348 -6253.9871 6.1522982 3712.5972 625.70024 -10592.285 0 294.85265 -0.00058755724 -0.00060430006 + 126990 -6247.7319 -6254.2095 6.4776154 3713.9499 625.92213 -10594.081 0 310.44367 -0.00057836804 -0.00060311362 + 127000 -6247.6503 -6254.4103 6.7600171 3713.8122 627.00892 -10595.231 0 323.97795 -0.00045269814 -0.00048350655 + 127010 -6247.6398 -6254.4849 6.8451476 3712.6266 628.60252 -10595.714 0 328.05788 -0.00026434479 -0.00029423607 + 127020 -6247.6959 -6254.4464 6.7504612 3711.0723 630.17538 -10595.694 0 323.51998 -8.0245993e-05 -0.00010310884 + 127030 -6247.7654 -6254.402 6.6366687 3709.7806 631.22743 -10595.41 0 318.0664 4.3355957e-05 2.7658762e-05 + 127040 -6247.7937 -6254.4559 6.6622058 3709.1623 631.47492 -10595.093 0 319.29028 7.6530338e-05 6.2221536e-05 + 127050 -6247.7728 -6254.6183 6.8454972 3709.3514 630.95323 -10594.923 0 328.07464 2.1291957e-05 1.7796621e-06 + 127060 -6247.7463 -6254.8014 7.0550736 3710.2091 629.98662 -10594.997 0 338.11871 -9.1459551e-05 -0.00011807875 + 127070 -6247.7698 -6254.898 7.1281969 3711.3624 629.0355 -10595.296 0 341.62319 -0.00021301725 -0.00024281382 + 127080 -6247.8643 -6254.8658 7.0014093 3712.3132 628.4914 -10595.67 0 335.54682 -0.00029483349 -0.00032169971 + 127090 -6248.0047 -6254.7487 6.7439465 3712.6274 628.51537 -10595.891 0 323.20776 -0.00030804375 -0.00032851225 + 127100 -6248.1423 -6254.6354 6.4931224 3712.1305 628.98862 -10595.754 0 311.18686 -0.00025559783 -0.00027119138 + 127110 -6248.2385 -6254.6004 6.3619169 3711.0001 629.58589 -10595.186 0 304.89876 -0.00017071353 -0.00018685068 + 127120 -6248.2891 -6254.6607 6.3716163 3709.6963 629.92856 -10594.286 0 305.36361 -0.00010261817 -0.0001250417 + 127130 -6248.3289 -6254.762 6.4331827 3708.7529 629.74921 -10593.264 0 308.31421 -9.5779556e-05 -0.00012631705 + 127140 -6248.4129 -6254.8128 6.399873 3708.5088 629.00182 -10592.323 0 306.71782 -0.00016990929 -0.00020425172 + 127150 -6248.5745 -6254.7591 6.1846702 3708.901 627.87732 -10591.537 0 296.4041 -0.00030803419 -0.00033804896 + 127160 -6248.7901 -6254.6489 5.8588923 3709.4526 626.72542 -10590.827 0 280.79099 -0.00045969974 -0.0004796488 + 127170 -6248.9909 -6254.6107 5.6198464 3709.5225 625.9219 -10590.055 0 269.33457 -0.0005618446 -0.00057354694 + 127180 -6249.1201 -6254.7442 5.6240942 3708.7066 625.7349 -10589.186 0 269.53815 -0.00056943773 -0.00058117502 + 127190 -6249.1849 -6255.0207 5.8357148 3707.1314 626.23159 -10588.384 0 279.6802 -0.00047899545 -0.00049858181 + 127200 -6249.2515 -6255.2951 6.0436316 3705.4295 627.25005 -10587.975 0 289.64473 -0.00033054192 -0.00035884833 + 127210 -6249.3867 -6255.4213 6.0345472 3704.4098 628.44887 -10588.28 0 289.20936 -0.00018731007 -0.00021806532 + 127220 -6249.6031 -6255.3596 5.7564734 3704.6453 629.4271 -10589.432 0 275.8825 -0.0001062922 -0.00013177847 + 127230 -6249.8549 -6255.1881 5.3331196 3706.2168 629.87527 -10591.28 0 255.59302 -0.00011585357 -0.00013290967 + 127240 -6250.0832 -6255.0275 4.9443206 3708.7057 629.69547 -10593.429 0 236.95958 -0.00020864666 -0.00022007073 + 127250 -6250.2603 -6254.9582 4.6978832 3711.3789 629.03815 -10595.375 0 225.14892 -0.00034800616 -0.00035925254 + 127260 -6250.4009 -6254.9921 4.5911382 3713.4473 628.2398 -10596.679 0 220.0331 -0.00048191904 -0.00049668666 + 127270 -6250.5397 -6255.1 4.5602711 3714.3067 627.6862 -10597.093 0 218.55378 -0.00056003438 -0.00057819323 + 127280 -6250.7026 -6255.2536 4.5510294 3713.7094 627.65342 -10596.616 0 218.11086 -0.0005505042 -0.00056916292 + 127290 -6250.8916 -6255.4446 4.5530566 3711.8398 628.18894 -10595.473 0 218.20802 -0.00045234687 -0.00046851532 + 127300 -6251.0899 -6255.6762 4.5862909 3709.2746 629.08279 -10594.034 0 219.80079 -0.00029819721 -0.00031093461 + 127310 -6251.2765 -6255.9401 4.663614 3706.8281 629.94428 -10592.712 0 223.50655 -0.00014481438 -0.00015565612 + 127320 -6251.4401 -6256.2006 4.7605168 3705.3071 630.35485 -10591.863 0 228.15068 -5.385125e-05 -6.5572104e-05 + 127330 -6251.5852 -6256.396 4.8108131 3705.2389 630.03508 -10591.67 0 230.56116 -6.9685509e-05 -8.4324841e-05 + 127340 -6251.7262 -6256.4595 4.733343 3706.6589 628.95928 -10592.078 0 226.84836 -0.00020219113 -0.0002195938 + 127350 -6251.874 -6256.3538 4.4798155 3709.0472 627.37451 -10592.776 0 214.6979 -0.00042058876 -0.0004384705 + 127360 -6252.0243 -6256.101 4.0767158 3711.4659 625.7199 -10593.287 0 195.3791 -0.00066128007 -0.00067690415 + 127370 -6252.1556 -6255.7843 3.6287204 3712.8749 624.47984 -10593.139 0 173.90864 -0.00084820671 -0.000860545 + 127380 -6252.242 -6255.5149 3.2728751 3712.5202 624.02542 -10592.06 0 156.85454 -0.00091929174 -0.00093002013 + 127390 -6252.2698 -6255.3795 3.1097704 3710.246 624.49672 -10590.122 0 149.03765 -0.00084916164 -0.00086162669 + 127400 -6252.2453 -6255.4029 3.1575257 3706.5994 625.7591 -10587.761 0 151.32635 -0.0006591059 -0.0006759646 + 127410 -6252.1892 -6255.5477 3.3584693 3702.6775 627.4423 -10585.667 0 160.95669 -0.00041021369 -0.00043152184 + 127420 -6252.1196 -6255.7488 3.629271 3699.7674 629.05013 -10584.566 0 173.93503 -0.00018238621 -0.00020558061 + 127430 -6252.0373 -6255.9511 3.9138646 3698.9112 630.11156 -10584.974 0 187.57435 -4.7277825e-05 -6.8988873e-05 + 127440 -6251.9239 -6256.1251 4.2011415 3700.5545 630.33114 -10587.011 0 201.34228 -4.4878508e-05 -6.3103361e-05 + 127450 -6251.7525 -6256.2561 4.5036024 3704.394 629.69116 -10590.341 0 215.83789 -0.00017114931 -0.00018623184 + 127460 -6251.5025 -6256.3283 4.8257767 3709.4584 628.46715 -10594.254 0 231.2783 -0.00037973636 -0.00039378092 + 127470 -6251.1689 -6256.3203 5.1514815 3714.384 627.14385 -10597.848 0 246.8879 -0.00059666904 -0.00061220099 + 127480 -6250.7629 -6256.2142 5.4513285 3717.8012 626.25343 -10600.269 0 261.25825 -0.00074396092 -0.00076275023 + 127490 -6250.3098 -6256.0012 5.6914281 3718.7302 626.18783 -10600.919 0 272.76517 -0.00076559684 -0.00078785059 + 127500 -6249.8444 -6255.6816 5.8372505 3716.8735 627.05074 -10599.606 0 279.75379 -0.00064744143 -0.00067132941 + 127510 -6249.4001 -6255.271 5.870905 3712.7059 628.60512 -10596.582 0 281.36671 -0.00042306645 -0.00044520009 + 127520 -6248.99 -6254.8153 5.8253414 3707.3258 630.34164 -10592.483 0 279.18305 -0.00016254763 -0.00018007664 + 127530 -6248.5976 -6254.3902 5.7925723 3702.1305 631.65017 -10588.171 0 277.61257 5.0873778e-05 3.7657486e-05 + 127540 -6248.1948 -6254.0614 5.8666245 3698.4328 632.03405 -10584.528 0 281.16157 0.00014677415 0.00013405408 + 127550 -6247.7762 -6253.8379 6.0616879 3697.112 631.28629 -10582.236 0 290.5101 8.8537435e-05 7.1994829e-05 + 127560 -6247.3726 -6253.6716 6.2989604 3698.3587 629.56213 -10581.592 0 301.88152 -0.00011433288 -0.00013563735 + 127570 -6247.0254 -6253.5175 6.4920976 3701.584 627.32666 -10582.428 0 311.13774 -0.00040548143 -0.00042830818 + 127580 -6246.7477 -6253.3948 6.6470848 3705.5755 625.20455 -10584.175 0 318.5656 -0.00069587948 -0.00071602436 + 127590 -6246.5127 -6253.382 6.8692478 3708.9018 623.78791 -10586.072 0 329.2129 -0.00089216203 -0.00090851139 + 127600 -6246.2815 -6253.5502 7.2686663 3710.4308 623.46066 -10587.442 0 348.35528 -0.00093000529 -0.00094565968 + 127610 -6246.0403 -6253.8957 7.855351 3709.7398 624.28632 -10587.922 0 376.47249 -0.00079823612 -0.00081804155 + 127620 -6245.8168 -6254.3261 8.5092539 3707.2439 625.99077 -10587.561 0 407.81119 -0.00054280564 -0.00056961883 + 127630 -6245.666 -6254.7017 9.0357006 3703.998 628.052 -10586.752 0 433.04147 -0.00024904248 -0.00028146474 + 127640 -6245.6361 -6254.9026 9.2665698 3701.2561 629.87569 -10586.034 0 444.10602 -9.5632021e-06 -4.2630719e-05 + 127650 -6245.7351 -6254.8862 9.1510832 3699.9743 630.99779 -10585.858 0 438.57125 0.00010927007 8.072329e-05 + 127660 -6245.9228 -6254.7009 8.7781232 3700.48 631.23618 -10586.417 0 420.69692 8.876343e-05 6.6314113e-05 + 127670 -6246.1371 -6254.4486 8.3114936 3702.4425 630.72913 -10587.62 0 398.33341 -4.0931746e-05 -6.0610818e-05 + 127680 -6246.3344 -6254.2224 7.8879613 3705.1082 629.84575 -10589.176 0 378.03536 -0.00021852846 -0.00024142142 + 127690 -6246.5126 -6254.0635 7.5508829 3707.6371 629.01249 -10590.713 0 361.88068 -0.00037888377 -0.00040941316 + 127700 -6246.7038 -6253.9593 7.2554956 3709.3789 628.5369 -10591.875 0 347.72406 -0.00047745155 -0.00051514734 + 127710 -6246.9441 -6253.8806 6.9365354 3710.0016 628.5035 -10592.386 0 332.4377 -0.00050188866 -0.00054131002 + 127720 -6247.2393 -6253.8314 6.5921314 3709.481 628.7743 -10592.087 0 315.93192 -0.00046820512 -0.00050256292 + 127730 -6247.5546 -6253.8686 6.3140164 3708.0163 629.07735 -10590.962 0 302.60309 -0.00040751586 -0.00043363819 + 127740 -6247.839 -6254.0611 6.2221549 3705.9493 629.13537 -10589.146 0 298.20057 -0.0003526815 -0.00037332077 + 127750 -6248.0679 -6254.4146 6.3466224 3703.7066 628.7816 -10586.903 0 304.16575 -0.00032971366 -0.00035090682 + 127760 -6248.2665 -6254.8327 6.5661772 3701.7287 628.02389 -10584.585 0 314.68805 -0.00035246794 -0.00037799056 + 127770 -6248.4864 -6255.1666 6.6802779 3700.3526 627.03871 -10582.558 0 320.1564 -0.00041808995 -0.00044611862 + 127780 -6248.755 -6255.3198 6.5647593 3699.6964 626.1008 -10581.117 0 314.6201 -0.00050548632 -0.00053079415 + 127790 -6249.0469 -6255.3095 6.2625132 3699.6476 625.47751 -10580.435 0 300.13477 -0.00058233137 -0.00060174088 + 127800 -6249.3091 -6255.2277 5.9186416 3699.996 625.33012 -10580.554 0 283.65451 -0.00062094619 -0.00063631392 + 127810 -6249.5111 -6255.1478 5.6367214 3700.6124 625.65887 -10581.419 0 270.14332 -0.00061387437 -0.00062974169 + 127820 -6249.6668 -6255.0776 5.4107742 3701.5163 626.30939 -10582.903 0 259.31466 -0.00057753284 -0.00059642288 + 127830 -6249.8097 -6254.9975 5.1877329 3702.7787 627.03645 -10584.813 0 248.62527 -0.00054094218 -0.00056137885 + 127840 -6249.9548 -6254.9231 4.9682241 3704.3553 627.60277 -10586.881 0 238.10517 -0.00052785724 -0.00054666644 + 127850 -6250.0875 -6254.915 4.8274665 3705.9974 627.87517 -10588.788 0 231.35928 -0.00054414597 -0.00056000484 + 127860 -6250.1847 -6255.0269 4.8421154 3707.308 627.87717 -10590.212 0 232.06134 -0.00057639497 -0.00059090115 + 127870 -6250.2404 -6255.251 5.0105149 3707.892 627.77231 -10590.915 0 240.13199 -0.00059961384 -0.0006153514 + 127880 -6250.2696 -6255.5172 5.2476289 3707.5115 627.78353 -10590.812 0 251.49582 -0.0005885263 -0.00060666154 + 127890 -6250.2913 -6255.7407 5.4493344 3706.1886 628.0834 -10590.013 0 261.16268 -0.00052837697 -0.00054819036 + 127900 -6250.312 -6255.8697 5.5577032 3704.2356 628.70295 -10588.808 0 266.35632 -0.00042302548 -0.00044336109 + 127910 -6250.323 -6255.8982 5.5751586 3702.2055 629.49722 -10587.601 0 267.19288 -0.00029794133 -0.00031877183 + 127920 -6250.3124 -6255.8445 5.5321247 3700.7578 630.18344 -10586.786 0 265.13046 -0.0001954428 -0.00021803029 + 127930 -6250.2783 -6255.7245 5.4461671 3700.4546 630.44025 -10586.619 0 261.01088 -0.00016161392 -0.00018717133 + 127940 -6250.2316 -6255.5386 5.3070018 3701.5397 630.0334 -10587.112 0 254.34131 -0.0002282926 -0.00025628219 + 127950 -6250.1853 -6255.2864 5.1011049 3703.7744 628.91977 -10587.981 0 244.47357 -0.00039688628 -0.00042455213 + 127960 -6250.1339 -6254.9941 4.8601073 3706.4153 627.2873 -10588.697 0 232.92361 -0.0006315967 -0.0006556597 + 127970 -6250.0417 -6254.7296 4.6879684 3708.3936 625.51392 -10588.637 0 224.67375 -0.00086695367 -0.00088658242 + 127980 -6249.8506 -6254.5764 4.7257285 3708.6753 624.06112 -10587.313 0 226.48342 -0.0010285331 -0.0010470595 + 127990 -6249.5094 -6254.5743 5.0649787 3706.6762 623.33778 -10584.588 0 242.7422 -0.0010590975 -0.0010824182 + 128000 -6249.0025 -6254.6785 5.6759428 3702.5453 623.57184 -10580.796 0 272.02303 -0.00093967981 -0.00097195804 + 128010 -6248.3649 -6254.7784 6.4134867 3697.1872 624.72107 -10576.687 0 307.37027 -0.00069789471 -0.00073772249 + 128020 -6247.6662 -6254.7739 7.1077071 3692.0139 626.45515 -10573.243 0 340.64121 -0.00040079224 -0.00044116464 + 128030 -6246.9682 -6254.6489 7.6806613 3688.5238 628.23625 -10571.409 0 368.10039 -0.00013421127 -0.00016715988 + 128040 -6246.2853 -6254.4817 8.1963406 3687.8539 629.49486 -10571.83 0 392.81463 2.4658948e-05 1.7067224e-06 + 128050 -6245.592 -6254.3772 8.7851999 3690.4469 629.84303 -10574.667 0 421.03607 3.1378765e-05 1.2642467e-05 + 128060 -6244.8802 -6254.3674 9.4871503 3695.9205 629.23369 -10579.522 0 454.67748 -0.00011324738 -0.00013820321 + 128070 -6244.2125 -6254.3577 10.145161 3703.1431 627.99262 -10585.493 0 486.21303 -0.00036413653 -0.00040196231 + 128080 -6243.7096 -6254.1782 10.468607 3710.4642 626.70455 -10591.347 0 501.71441 -0.00064318963 -0.00069015261 + 128090 -6243.4641 -6253.7231 10.259015 3716.0495 625.99421 -10595.767 0 491.66958 -0.00085769776 -0.00090150292 + 128100 -6243.4519 -6253.0755 9.6235831 3718.306 626.28761 -10597.669 0 461.2161 -0.00092516396 -0.00095532628 + 128110 -6243.5374 -6252.4883 8.9509192 3716.3825 627.65068 -10596.522 0 428.97827 -0.00080261904 -0.00082071382 + 128120 -6243.587 -6252.1993 8.6123022 3710.6143 629.76545 -10592.579 0 412.74984 -0.00051123859 -0.00053044083 + 128130 -6243.5868 -6252.2377 8.6508794 3702.6195 632.03395 -10586.891 0 414.59868 -0.00014013732 -0.00017319197 + 128140 -6243.6448 -6252.4247 8.7798767 3694.808 633.7551 -10580.988 0 420.78096 0.00018185686 0.00013467528 + 128150 -6243.8749 -6252.5679 8.6929152 3689.4432 634.32492 -10576.336 0 416.61327 0.00033797364 0.00028898965 + 128160 -6244.2869 -6252.6429 8.3560116 3687.7733 633.42296 -10573.839 0 400.46696 0.00027148598 0.00023447538 + 128170 -6244.7848 -6252.7938 8.0089476 3689.6913 631.13391 -10573.619 0 383.8337 4.1608643e-06 -1.7001147e-05 + 128180 -6245.2565 -6253.1843 7.9278919 3693.9981 627.94774 -10575.13 0 379.94906 -0.00038007499 -0.00039380259 + 128190 -6245.6609 -6253.8449 8.1839814 3699.0092 624.62332 -10577.477 0 392.22231 -0.00077205313 -0.00079208687 + 128200 -6246.0522 -6254.6215 8.5692179 3703.176 621.9612 -10579.759 0 410.68501 -0.0010752441 -0.001110286 + 128210 -6246.5298 -6255.2529 8.7231491 3705.4875 620.56457 -10581.305 0 418.06225 -0.0012305208 -0.0012777411 + 128220 -6247.1492 -6255.5294 8.3801963 3705.5829 620.66711 -10581.779 0 401.62603 -0.0012230193 -0.0012701074 + 128230 -6247.86 -6255.4292 7.5691997 3703.6544 622.08535 -10581.169 0 362.75852 -0.0010753374 -0.0011099428 + 128240 -6248.5295 -6255.1303 6.6007212 3700.2979 624.31083 -10579.739 0 316.3436 -0.00083595081 -0.00085523866 + 128250 -6249.0365 -6254.8748 5.8383677 3696.4129 626.70058 -10577.988 0 279.80734 -0.00056859588 -0.00058097508 + 128260 -6249.352 -6254.7956 5.443672 3693.0957 628.68425 -10576.576 0 260.89131 -0.00034121729 -0.00035890888 + 128270 -6249.5449 -6254.85 5.3051712 3691.4028 629.91053 -10576.163 0 254.25357 -0.00021061971 -0.00023967611 + 128280 -6249.7176 -6254.9081 5.1904574 3691.9851 630.29695 -10577.19 0 248.75584 -0.00020451814 -0.00024070389 + 128290 -6249.9291 -6254.8968 4.967684 3694.7857 629.99151 -10579.674 0 238.07929 -0.00031014841 -0.00034345167 + 128300 -6250.1623 -6254.8665 4.7041889 3699.0178 629.27961 -10583.164 0 225.45113 -0.00047885513 -0.00050198862 + 128310 -6250.3543 -6254.9347 4.5804612 3703.47 628.47411 -10586.879 0 219.5214 -0.00064701247 -0.00066073039 + 128320 -6250.4536 -6255.1704 4.7167855 3706.9706 627.81981 -10589.961 0 226.05483 -0.00076286539 -0.00077452977 + 128330 -6250.4608 -6255.5208 5.0600417 3708.7736 627.43417 -10591.729 0 242.50559 -0.00080537612 -0.00082280138 + 128340 -6250.426 -6255.8358 5.4097429 3708.7053 627.29539 -10591.836 0 259.26523 -0.00078663187 -0.00081228486 + 128350 -6250.4114 -6255.9658 5.5544891 3707.0574 627.27587 -10590.299 0 266.20229 -0.00073893891 -0.00076864033 + 128360 -6250.4447 -6255.8617 5.4170309 3704.3415 627.20728 -10587.411 0 259.61451 -0.00069544063 -0.00072215458 + 128370 -6250.5007 -6255.6047 5.1039687 3701.064 626.95488 -10583.624 0 244.61082 -0.00067514872 -0.00069476382 + 128380 -6250.5236 -6255.3468 4.8231328 3697.6372 626.47728 -10579.461 0 231.15159 -0.0006790665 -0.0006936229 + 128390 -6250.473 -6255.2019 4.7289125 3694.426 625.85025 -10575.478 0 226.63602 -0.0006965397 -0.0007122821 + 128400 -6250.356 -6255.1729 4.81694 3691.8209 625.24078 -10572.235 0 230.85479 -0.00071514179 -0.00073702358 + 128410 -6250.2184 -6255.1738 4.955361 3690.2175 624.83519 -10570.226 0 237.48871 -0.00072721262 -0.00075468721 + 128420 -6250.1014 -6255.1224 5.0209743 3689.8965 624.75057 -10569.769 0 240.63326 -0.00073104843 -0.00075890216 + 128430 -6250.0044 -6255.0161 5.0117713 3690.9103 624.97635 -10570.903 0 240.1922 -0.00072951621 -0.00075277353 + 128440 -6249.8861 -6254.9227 5.0366608 3693.073 625.38119 -10573.377 0 241.38505 -0.00072897128 -0.00074723019 + 128450 -6249.7005 -6254.9071 5.2066474 3696.0369 625.78271 -10576.727 0 249.53176 -0.00073797995 -0.00075549574 + 128460 -6249.4322 -6254.968 5.5358453 3699.369 626.04321 -10580.38 0 265.30877 -0.00076345222 -0.00078538803 + 128470 -6249.1045 -6255.0376 5.9330798 3702.5718 626.14416 -10583.754 0 284.34647 -0.00080390111 -0.00083218106 + 128480 -6248.7588 -6255.037 6.2781637 3705.0824 626.20509 -10586.325 0 300.88483 -0.00084346386 -0.00087543071 + 128490 -6248.4222 -6254.9387 6.5164996 3706.3251 626.43641 -10587.7 0 312.30723 -0.00085222243 -0.00088287388 + 128500 -6248.0865 -6254.7876 6.7011038 3705.8579 627.04167 -10587.687 0 321.15449 -0.00079625824 -0.00082227358 + 128510 -6247.7163 -6254.6637 6.9473554 3703.5829 628.10763 -10586.354 0 332.95625 -0.000655473 -0.00067793038 + 128520 -6247.2817 -6254.6068 7.3251593 3699.9233 629.52937 -10584.059 0 351.06273 -0.00044122415 -0.00046462887 + 128530 -6246.7926 -6254.5664 7.7737298 3695.8364 631.00374 -10581.407 0 372.56075 -0.00020289893 -0.00023104098 + 128540 -6246.2999 -6254.4311 8.131168 3692.5725 632.09675 -10579.1 0 389.69119 -1.5954827e-05 -4.8409274e-05 + 128550 -6245.8533 -6254.1281 8.2747978 3691.2252 632.36793 -10577.721 0 396.57474 4.5923934e-05 1.2849833e-05 + 128560 -6245.4594 -6253.6964 8.2370256 3692.2847 631.521 -10577.502 0 394.76448 -5.8901856e-05 -9.0170464e-05 + 128570 -6245.088 -6253.255 8.1669864 3695.4247 629.53892 -10578.219 0 391.40781 -0.00032231833 -0.00035345137 + 128580 -6244.7191 -6252.9033 8.184143 3699.5974 626.75012 -10579.251 0 392.23005 -0.00068666249 -0.00072114965 + 128590 -6244.3696 -6252.6677 8.2980395 3703.3343 623.78218 -10579.784 0 397.68861 -0.0010585101 -0.0010972568 + 128600 -6244.0698 -6252.5386 8.4687925 3705.1472 621.3973 -10579.083 0 405.87206 -0.0013314785 -0.0013716688 + 128610 -6243.8278 -6252.5244 8.6966562 3703.9822 620.25591 -10576.763 0 416.79256 -0.001416696 -0.0014547315 + 128620 -6243.6272 -6252.6462 9.0189962 3699.6475 620.68815 -10572.982 0 432.2409 -0.0012753524 -0.001309883 + 128630 -6243.4538 -6252.8995 9.4456492 3693.0231 622.5568 -10568.479 0 452.68851 -0.00093929825 -0.00097157467 + 128640 -6243.3134 -6253.2432 9.9298122 3685.8959 625.27237 -10564.411 0 475.89232 -0.00050650763 -0.00053917531 + 128650 -6243.2358 -6253.6175 10.381713 3680.4392 627.97683 -10562.033 0 497.54994 -0.00011085836 -0.00014682442 + 128660 -6243.2789 -6253.9495 10.670653 3678.5174 629.8448 -10562.312 0 511.39757 0.0001218831 8.088668e-05 + 128670 -6243.5274 -6254.1529 10.625443 3681.0352 630.38815 -10565.576 0 509.23087 0.00011674355 7.2148159e-05 + 128680 -6244.0566 -6254.1615 10.104886 3687.5329 629.63209 -10571.326 0 484.28284 -0.00012185908 -0.00016502758 + 128690 -6244.862 -6253.9934 9.1314133 3696.2199 628.08064 -10578.294 0 437.62856 -0.00050705617 -0.00054334171 + 128700 -6245.8268 -6253.7689 7.9421193 3704.5518 626.48779 -10584.808 0 380.63092 -0.00089988338 -0.00092790213 + 128710 -6246.7859 -6253.6366 6.8506681 3710.1696 625.54649 -10589.353 0 328.32245 -0.001165225 -0.0011884976 + 128720 -6247.6269 -6253.6724 6.0454333 3711.7324 625.64013 -10591.045 0 289.73108 -0.0012248097 -0.0012480024 + 128730 -6248.3234 -6253.8531 5.5297043 3709.2372 626.74324 -10589.834 0 265.01446 -0.0010793184 -0.001104343 + 128740 -6248.897 -6254.1125 5.2154448 3703.8123 628.46641 -10586.391 0 249.95338 -0.00079644587 -0.00082200604 + 128750 -6249.3721 -6254.404 5.031925 3697.2335 630.19648 -10581.834 0 241.15808 -0.00048044149 -0.00050434642 + 128760 -6249.7601 -6254.7189 4.9588252 3691.3798 631.28769 -10577.386 0 237.65473 -0.00023789773 -0.0002594423 + 128770 -6250.0669 -6255.0585 4.9916258 3687.7428 631.2621 -10574.063 0 239.22671 -0.00014808344 -0.00016854708 + 128780 -6250.3063 -6255.3996 5.0933394 3687.0697 629.96687 -10572.436 0 244.1014 -0.00024279974 -0.000263963 + 128790 -6250.5026 -6255.686 5.1833409 3689.2103 627.63517 -10572.531 0 248.41478 -0.00049910039 -0.00052129024 + 128800 -6250.6797 -6255.8584 5.1787235 3693.201 624.82242 -10573.882 0 248.19349 -0.00084644134 -0.00086802549 + 128810 -6250.8436 -6255.8991 5.0554271 3697.5735 622.23314 -10575.706 0 242.28443 -0.0011874043 -0.0012064258 + 128820 -6250.9785 -6255.8482 4.8697899 3700.8155 620.49958 -10577.163 0 233.38766 -0.0014275054 -0.0014440316 + 128830 -6251.0623 -6255.7724 4.7100314 3701.8567 619.99407 -10577.623 0 225.73113 -0.0015052134 -0.0015219343 + 128840 -6251.0916 -6255.7095 4.6179016 3700.4099 620.73937 -10576.859 0 221.31576 -0.0014109418 -0.0014310721 + 128850 -6251.0874 -6255.6471 4.5597213 3697.0283 622.43579 -10575.111 0 218.52743 -0.0011868694 -0.0012112924 + 128860 -6251.0767 -6255.5538 4.4771281 3692.8573 624.58031 -10572.991 0 214.5691 -0.0009081039 -0.0009346889 + 128870 -6251.0681 -6255.4273 4.3592063 3689.2099 626.62985 -10571.267 0 208.91763 -0.00065475729 -0.00068048553 + 128880 -6251.0467 -6255.303 4.2563245 3687.158 628.15659 -10570.618 0 203.98695 -0.00048734293 -0.00051088979 + 128890 -6250.9919 -6255.2191 4.2272216 3687.2704 628.95112 -10571.441 0 202.59218 -0.00043319519 -0.00045540594 + 128900 -6250.8961 -6255.1803 4.2842395 3689.5243 629.04713 -10573.752 0 205.3248 -0.00048463865 -0.00050688944 + 128910 -6250.7656 -6255.1591 4.3934471 3693.3538 628.66835 -10577.181 0 210.55864 -0.00060604344 -0.00062862687 + 128920 -6250.6074 -6255.1261 4.5186538 3697.8135 628.12374 -10581.063 0 216.55925 -0.00074696436 -0.00076914203 + 128930 -6250.4184 -6255.074 4.6555606 3701.8321 627.69005 -10584.596 0 223.12059 -0.0008587141 -0.00087997076 + 128940 -6250.1878 -6255.0143 4.8264304 3704.5002 627.51836 -10587.033 0 231.30963 -0.00091004879 -0.00093097315 + 128950 -6249.9074 -6254.961 5.0535894 3705.298 627.59006 -10587.849 0 242.19636 -0.0008962704 -0.00091827544 + 128960 -6249.5792 -6254.9185 5.3392813 3704.1848 627.7367 -10586.84 0 255.88832 -0.00083793115 -0.00086218599 + 128970 -6249.2181 -6254.8759 5.6577855 3701.5359 627.72211 -10584.134 0 271.15283 -0.00076985401 -0.00079609795 + 128980 -6248.8481 -6254.8109 5.9627726 3697.9691 627.35905 -10580.139 0 285.76952 -0.0007251037 -0.00075110514 + 128990 -6248.4882 -6254.7067 6.2185673 3694.1324 626.60822 -10575.447 0 298.02864 -0.0007204447 -0.00074303459 + 129000 -6248.1364 -6254.5737 6.437295 3690.5477 625.60842 -10570.73 0 308.5113 -0.00074997958 -0.0007676368 + 129010 -6247.7705 -6254.4456 6.6751926 3687.5788 624.62082 -10566.645 0 319.91269 -0.00079087585 -0.00080587199 + 129020 -6247.3726 -6254.3445 6.9718989 3685.509 623.91535 -10563.769 0 334.13252 -0.00081861113 -0.00083617553 + 129030 -6246.9593 -6254.2471 7.2877906 3684.6191 623.65509 -10562.521 0 349.27182 -0.00082247722 -0.00084687251 + 129040 -6246.5816 -6254.0997 7.5181195 3685.1555 623.83422 -10563.089 0 360.31047 -0.00081102575 -0.00084183209 + 129050 -6246.2876 -6253.8783 7.5907059 3687.182 624.29857 -10565.359 0 363.78922 -0.00080399826 -0.00083640197 + 129060 -6246.0818 -6253.6351 7.5532936 3690.4315 624.83682 -10568.903 0 361.99621 -0.00081725545 -0.000846458 + 129070 -6245.9236 -6253.4733 7.5497834 3694.2908 625.29312 -10573.057 0 361.82798 -0.00085171114 -0.00087732103 + 129080 -6245.7683 -6253.4627 7.6943892 3697.9498 625.64122 -10577.054 0 368.7583 -0.00089251486 -0.00091866881 + 129090 -6245.6112 -6253.5721 7.9609583 3700.6272 625.98704 -10580.186 0 381.53379 -0.00091612063 -0.00094731582 + 129100 -6245.4904 -6253.6867 8.196291 3701.7654 626.50626 -10581.958 0 392.81225 -0.00089885862 -0.00093569166 + 129110 -6245.4481 -6253.6969 8.2487214 3701.1427 627.34965 -10582.189 0 395.32501 -0.00082374304 -0.00086271489 + 129120 -6245.4893 -6253.578 8.0886741 3698.9206 628.55353 -10581.052 0 387.65465 -0.00068706435 -0.0007243093 + 129130 -6245.5804 -6253.3903 7.8099029 3695.6468 629.98692 -10579.024 0 374.29437 -0.00050557695 -0.00054041091 + 129140 -6245.6844 -6253.2142 7.5297114 3692.1828 631.35694 -10576.754 0 360.86602 -0.00031952445 -0.00035438173 + 129150 -6245.7924 -6253.0913 7.2988849 3689.5129 632.27825 -10574.882 0 349.80352 -0.00018500142 -0.00022231221 + 129160 -6245.9239 -6253.0205 7.0966313 3688.4479 632.39065 -10573.859 0 340.11039 -0.00015527505 -0.00019452553 + 129170 -6246.1019 -6252.9971 6.8952418 3689.3216 631.48752 -10573.806 0 330.45868 -0.00025874951 -0.00029639232 + 129180 -6246.3267 -6253.0524 6.7257395 3691.8176 629.60914 -10574.479 0 322.33517 -0.00048423211 -0.00051656077 + 129190 -6246.5724 -6253.2513 6.6789526 3695.0327 627.06553 -10575.35 0 320.09289 -0.00078092338 -0.00080745928 + 129200 -6246.8112 -6253.6397 6.8284771 3697.7837 624.37527 -10575.799 0 327.25894 -0.0010737925 -0.0010980171 + 129210 -6247.0466 -6254.1834 7.136773 3699.0345 622.13104 -10575.349 0 342.03421 -0.001288096 -0.0013145217 + 129220 -6247.321 -6254.7575 7.4365435 3698.2524 620.8271 -10573.837 0 356.40089 -0.0013730861 -0.00140313 + 129230 -6247.6868 -6255.2075 7.5206741 3695.5581 620.705 -10571.471 0 360.4329 -0.0013162997 -0.0013467694 + 129240 -6248.1628 -6255.4364 7.2735305 3691.6548 621.67741 -10568.769 0 348.58839 -0.0011449406 -0.0011705831 + 129250 -6248.7134 -6255.4507 6.7373154 3687.6118 623.36367 -10566.426 0 322.88996 -0.00091607542 -0.00093392991 + 129260 -6249.2698 -6255.3374 6.0675776 3684.5778 625.2233 -10565.139 0 290.79236 -0.00069989396 -0.00071176052 + 129270 -6249.773 -6255.1959 5.4229024 3683.4849 626.73461 -10565.415 0 259.89591 -0.00056049326 -0.00057162222 + 129280 -6250.2041 -6255.0786 4.8744381 3684.7931 627.55288 -10567.425 0 233.61043 -0.00053829104 -0.00055342529 + 129290 -6250.5807 -6254.977 4.3963111 3688.3349 627.598 -10570.91 0 210.6959 -0.00063799801 -0.00065787488 + 129300 -6250.9273 -6254.8628 3.9355469 3693.3081 627.05074 -10575.222 0 188.61349 -0.00082579734 -0.0008469088 + 129310 -6251.246 -6254.7439 3.4979134 3698.4509 626.26865 -10579.463 0 167.63964 -0.0010381459 -0.0010560326 + 129320 -6251.5129 -6254.6827 3.1698099 3702.3846 625.65645 -10582.724 0 151.91508 -0.0012014816 -0.0012148038 + 129330 -6251.7008 -6254.7516 3.0508401 3704.04 625.53249 -10584.324 0 146.21338 -0.0012573713 -0.001269122 + 129340 -6251.807 -6254.965 3.1580725 3703.0114 626.02603 -10584.002 0 151.35255 -0.0011837239 -0.0011984224 + 129350 -6251.8608 -6255.258 3.3971344 3699.6839 627.02924 -10581.971 0 162.80974 -0.0010029324 -0.0010224158 + 129360 -6251.902 -6255.536 3.6340205 3695.0767 628.21903 -10578.832 0 174.16265 -0.00077337636 -0.00079518217 + 129370 -6251.9486 -6255.7498 3.8012017 3690.4896 629.15125 -10575.391 0 182.17491 -0.00056867605 -0.00058848786 + 129380 -6251.9844 -6255.9221 3.9376812 3687.1127 629.40582 -10572.441 0 188.71578 -0.00045406672 -0.00046981313 + 129390 -6251.976 -6256.1059 4.1299601 3685.7285 628.73628 -10570.571 0 197.93086 -0.00046822671 -0.00048208263 + 129400 -6251.9044 -6256.317 4.4126293 3686.5542 627.16912 -10570.04 0 211.47796 -0.00061422641 -0.00063089319 + 129410 -6251.786 -6256.4997 4.7136574 3689.217 625.01491 -10570.732 0 225.90491 -0.00085953953 -0.00088232742 + 129420 -6251.6655 -6256.551 4.8855312 3692.8503 622.78561 -10572.187 0 234.14207 -0.00114393 -0.0011717274 + 129430 -6251.5859 -6256.3874 4.8015061 3696.2974 621.04437 -10573.729 0 230.11511 -0.0013938476 -0.0014213966 + 129440 -6251.5557 -6256.0082 4.4525734 3698.4072 620.23788 -10574.653 0 213.3923 -0.0015411887 -0.0015628161 + 129450 -6251.54 -6255.5099 3.9699655 3698.3754 620.56694 -10574.452 0 190.26302 -0.0015429302 -0.0015571079 + 129460 -6251.4877 -6255.0287 3.5410506 3696.0499 621.93585 -10573.015 0 169.70702 -0.0013964682 -0.0014072755 + 129470 -6251.375 -6254.6545 3.2795508 3692.0674 623.98931 -10570.711 0 157.17448 -0.0011440008 -0.0011577616 + 129480 -6251.2244 -6254.3942 3.1697712 3687.6982 626.217 -10568.309 0 151.91322 -0.00086075309 -0.00088067774 + 129490 -6251.0809 -6254.2187 3.1377386 3684.4099 628.09331 -10566.722 0 150.37804 -0.00062895544 -0.00065275288 + 129500 -6250.968 -6254.1367 3.1686807 3683.3394 629.21948 -10566.696 0 151.86096 -0.00050851543 -0.00053097488 + 129510 -6250.8644 -6254.2125 3.348102 3684.9193 629.43263 -10568.564 0 160.45983 -0.0005179504 -0.00053576874 + 129520 -6250.7199 -6254.5086 3.7887137 3688.7956 628.84677 -10572.151 0 181.57642 -0.00063288907 -0.00064738262 + 129530 -6250.4952 -6255.0041 4.5088368 3694.0058 627.80629 -10576.816 0 216.08876 -0.00080008763 -0.00081565424 + 129540 -6250.1963 -6255.56 5.3636597 3699.2927 626.76191 -10581.615 0 257.05667 -0.00095874462 -0.00097853166 + 129550 -6249.8742 -6255.9699 6.0957099 3703.4239 626.10952 -10585.503 0 292.14062 -0.0010598967 -0.0010824902 + 129560 -6249.5855 -6256.0722 6.4867293 3705.4512 626.05019 -10587.574 0 310.88047 -0.0010779933 -0.0010984117 + 129570 -6249.3434 -6255.8443 6.5008826 3704.8928 626.52655 -10587.264 0 311.55877 -0.0010140674 -0.0010287321 + 129580 -6249.1089 -6255.4024 6.2934725 3701.8455 627.26152 -10584.509 0 301.61851 -0.00089329798 -0.0009045658 + 129590 -6248.8348 -6254.903 6.068148 3696.9956 627.88131 -10579.78 0 290.8197 -0.00075860865 -0.00077407322 + 129600 -6248.5208 -6254.4305 5.9097561 3691.472 628.06802 -10573.971 0 283.22867 -0.00065906152 -0.00068535933 + 129610 -6248.224 -6253.973 5.7490136 3686.5184 627.67767 -10568.169 0 275.52499 -0.00063275618 -0.00066909045 + 129620 -6248.0109 -6253.5019 5.491001 3683.0836 626.77922 -10563.365 0 263.15958 -0.00068977012 -0.00072732949 + 129630 -6247.8919 -6253.0716 5.1796306 3681.5285 625.60797 -10560.208 0 248.23696 -0.00080545505 -0.00083394263 + 129640 -6247.8006 -6252.8314 5.0307609 3681.6268 624.46367 -10558.922 0 241.10229 -0.00093119812 -0.00094720642 + 129650 -6247.6366 -6252.9248 5.2882268 3682.8508 623.6015 -10559.377 0 253.4415 -0.0010189133 -0.0010290444 + 129660 -6247.3388 -6253.3592 6.0203917 3684.7421 623.15601 -10561.257 0 288.53095 -0.0010456035 -0.0010617113 + 129670 -6246.9339 -6253.9617 7.0277543 3687.1143 623.11807 -10564.194 0 336.80942 -0.0010234504 -0.0010538754 + 129680 -6246.5234 -6254.464 7.9405698 3689.9718 623.36749 -10567.803 0 380.55666 -0.00098936085 -0.0010329617 + 129690 -6246.2157 -6254.6542 8.4384958 3693.2356 623.75053 -10571.64 0 404.42007 -0.00097990322 -0.0010271809 + 129700 -6246.053 -6254.4906 8.4375768 3696.5 624.17268 -10575.163 0 404.37602 -0.0010062109 -0.0010464405 + 129710 -6245.9888 -6254.1062 8.1174182 3699.0161 624.66192 -10577.784 0 389.03223 -0.0010439299 -0.0010730323 + 129720 -6245.9332 -6253.703 7.7697823 3699.9594 625.36486 -10579.027 0 372.37156 -0.0010450757 -0.0010683804 + 129730 -6245.8328 -6253.4039 7.5711415 3698.8512 626.46798 -10578.723 0 362.85158 -0.00096585406 -0.00099319394 + 129740 -6245.7173 -6253.1725 7.4552694 3695.8785 628.06938 -10577.12 0 357.29834 -0.0007941874 -0.00083071365 + 129750 -6245.6689 -6252.8829 7.2139531 3691.8848 630.05234 -10574.82 0 345.73311 -0.0005602433 -0.00060101074 + 129760 -6245.7342 -6252.4917 6.7575789 3688.0364 632.02967 -10572.558 0 323.8611 -0.00032496637 -0.00035916619 + 129770 -6245.8642 -6252.1454 6.2811691 3685.4004 633.41712 -10570.963 0 301.02887 -0.00015685991 -0.00017847395 + 129780 -6245.9511 -6252.0958 6.1446981 3684.6788 633.63381 -10570.408 0 294.48841 -0.00011174941 -0.00012632397 + 129790 -6245.9275 -6252.4892 6.5617048 3686.1319 632.3486 -10570.97 0 314.47371 -0.00022089214 -0.00024140281 + 129800 -6245.8375 -6253.222 7.3845329 3689.5419 629.65613 -10572.42 0 353.90825 -0.00048263858 -0.00051788341 + 129810 -6245.8138 -6253.9989 8.1851327 3694.1314 626.09843 -10574.229 0 392.27748 -0.00085412555 -0.00090024749 + 129820 -6245.9762 -6254.5437 8.5675573 3698.5539 622.51811 -10575.616 0 410.60542 -0.0012494709 -0.0012926142 + 129830 -6246.3358 -6254.7773 8.4415537 3701.1672 619.79873 -10575.743 0 404.56662 -0.0015566396 -0.0015846668 + 129840 -6246.7972 -6254.8145 8.0172711 3700.6346 618.589 -10574.038 0 384.23262 -0.0016763327 -0.0016889733 + 129850 -6247.2555 -6254.8031 7.5475882 3696.5989 619.10699 -10570.509 0 361.72277 -0.0015671203 -0.0015754187 + 129860 -6247.6857 -6254.7735 7.0878823 3690.0161 621.08382 -10565.873 0 339.69109 -0.0012696653 -0.0012859052 + 129870 -6248.1358 -6254.6367 6.5009251 3682.8905 623.8597 -10561.387 0 311.56081 -0.00089258452 -0.0009204106 + 129880 -6248.6445 -6254.3106 5.6660528 3677.5085 626.6009 -10558.42 0 271.54904 -0.00056664475 -0.00059973069 + 129890 -6249.1806 -6253.8372 4.6565646 3675.5665 628.56644 -10557.97 0 223.1687 -0.00039318076 -0.0004220095 + 129900 -6249.665 -6253.385 3.7199817 3677.6183 629.32936 -10560.333 0 178.2824 -0.00041223202 -0.00043179476 + 129910 -6250.0357 -6253.1505 3.1147363 3683.0239 628.87724 -10565.052 0 149.27564 -0.00059896219 -0.00061128708 + 129920 -6250.2844 -6253.2481 2.9637105 3690.2916 627.57277 -10571.112 0 142.03764 -0.00088075529 -0.00089190454 + 129930 -6250.4469 -6253.6646 3.2176352 3697.5792 626.00614 -10577.25 0 154.20713 -0.0011633715 -0.0011785435 + 129940 -6250.5733 -6254.2902 3.716975 3703.1759 624.7931 -10582.259 0 178.1383 -0.0013582944 -0.0013787908 + 129950 -6250.7001 -6254.9875 4.2874467 3705.8828 624.37837 -10585.249 0 205.4785 -0.0014065784 -0.0014300751 + 129960 -6250.8388 -6255.6432 4.8043345 3705.2621 624.90098 -10585.806 0 230.25067 -0.0012948347 -0.0013178081 + 129970 -6250.9794 -6256.1818 5.2023884 3701.716 626.16127 -10584.059 0 249.32764 -0.0010588207 -0.0010789791 + 129980 -6251.1026 -6256.5552 5.4525753 3696.3583 627.69831 -10580.612 0 261.318 -0.00077243014 -0.00078979533 + 129990 -6251.193 -6256.7275 5.5345175 3690.6944 628.95165 -10576.374 0 265.24513 -0.00052495885 -0.00054137628 + 130000 -6251.2476 -6256.6676 5.420006 3686.1959 629.45312 -10572.317 0 259.7571 -0.00039395153 -0.00041147243 + 130010 -6251.2771 -6256.3565 5.0794721 3683.893 628.98181 -10569.231 0 243.4368 -0.00042193011 -0.0004410812 + 130020 -6251.2953 -6255.812 4.5166527 3684.1 627.62807 -10567.54 0 216.46334 -0.00060364864 -0.00062296242 + 130030 -6251.3061 -6255.1149 3.8087816 3686.3602 625.74857 -10567.224 0 182.53818 -0.0008879012 -0.00090531585 + 130040 -6251.2979 -6254.406 3.1081031 3689.6355 623.83863 -10567.88 0 148.95774 -0.0011940666 -0.0012090529 + 130050 -6251.255 -6253.8395 2.5844618 3692.6833 622.37567 -10568.898 0 123.86191 -0.0014382355 -0.0014525109 + 130060 -6251.1737 -6253.5198 2.3460558 3694.4768 621.68708 -10569.684 0 112.43616 -0.0015592731 -0.0015751519 + 130070 -6251.0655 -6253.471 2.4055168 3694.5069 621.87473 -10569.853 0 115.28586 -0.0015350235 -0.001552929 + 130080 -6250.9417 -6253.6619 2.7202352 3692.8702 622.80587 -10569.338 0 130.36893 -0.0013839011 -0.0014017121 + 130090 -6250.7914 -6254.0519 3.2605398 3690.1645 624.16586 -10568.382 0 156.26336 -0.0011541969 -0.0011693952 + 130100 -6250.5796 -6254.6057 4.0261701 3687.2829 625.55923 -10567.448 0 192.95666 -0.00090780367 -0.00092037632 + 130110 -6250.2746 -6255.2594 4.9848084 3685.1829 626.63367 -10567.076 0 238.89999 -0.00070431983 -0.00071731776 + 130120 -6249.8863 -6255.8841 5.9978118 3684.6489 627.18964 -10567.723 0 287.4488 -0.0005877746 -0.00060472165 + 130130 -6249.4761 -6256.3035 6.8274444 3686.0633 627.23622 -10569.603 0 327.20945 -0.0005762921 -0.00059792793 + 130140 -6249.1222 -6256.3675 7.2453164 3689.2469 626.96914 -10572.584 0 347.23622 -0.00065688287 -0.00068043201 + 130150 -6248.8685 -6256.0276 7.1590773 3693.4674 626.67749 -10576.173 0 343.10315 -0.00078952452 -0.0008111107 + 130160 -6248.7031 -6255.3596 6.6564616 3697.6491 626.61783 -10579.627 0 319.01499 -0.000921826 -0.0009397297 + 130170 -6248.5797 -6254.5222 5.9424649 3700.7139 626.91074 -10582.147 0 284.79626 -0.0010089753 -0.0010249537 + 130180 -6248.4593 -6253.6853 5.2259208 3701.9136 627.50238 -10583.101 0 250.45545 -0.0010296134 -0.0010472577 + 130190 -6248.3353 -6252.9717 4.6364119 3701.0212 628.19965 -10582.193 0 222.20287 -0.000990206 -0.0010116483 + 130200 -6248.2261 -6252.451 4.2248881 3698.3142 628.75213 -10579.517 0 202.48034 -0.0009166214 -0.00094045788 + 130210 -6248.1435 -6252.176 4.0325251 3694.3943 628.94175 -10575.512 0 193.26123 -0.00083860171 -0.00086124248 + 130220 -6248.0665 -6252.2087 4.142167 3689.9785 628.651 -10570.838 0 198.51588 -0.00077677548 -0.0007962703 + 130230 -6247.951 -6252.5879 4.6368784 3685.7795 627.89673 -10566.264 0 222.22523 -0.00073918353 -0.00075773697 + 130240 -6247.7673 -6253.2602 5.4929697 3682.4735 626.82415 -10562.558 0 263.25393 -0.00072636773 -0.00074873915 + 130250 -6247.5339 -6254.052 6.5181592 3680.6535 625.65994 -10560.365 0 312.38676 -0.00073809945 -0.00076716342 + 130260 -6247.3125 -6254.725 7.4124819 3680.7018 624.63564 -10560.062 0 355.24772 -0.00077578111 -0.00080934341 + 130270 -6247.1657 -6255.0863 7.9206082 3682.6349 623.91055 -10561.632 0 379.59999 -0.00083983896 -0.00087168587 + 130280 -6247.1108 -6255.077 7.9661151 3686.0342 623.53008 -10564.641 0 381.78093 -0.00092559069 -0.00095008071 + 130290 -6247.1098 -6254.7796 7.669797 3690.1339 623.44024 -10568.354 0 367.57971 -0.001021529 -0.0010380474 + 130300 -6247.1038 -6254.3458 7.2420088 3694.0347 623.54974 -10571.93 0 347.07769 -0.0011112378 -0.0011248566 + 130310 -6247.0618 -6253.8971 6.8353322 3696.9425 623.80575 -10574.645 0 327.58747 -0.0011768369 -0.0011945125 + 130320 -6247.0006 -6253.4708 6.4702838 3698.3363 624.24082 -10576.048 0 310.09231 -0.0012011552 -0.0012263766 + 130330 -6246.9643 -6253.0479 6.0835508 3698.0262 624.96102 -10576.035 0 291.55789 -0.0011684662 -0.0011985898 + 130340 -6246.9806 -6252.6288 5.648242 3696.1357 626.07429 -10574.839 0 270.69545 -0.00106665 -0.0010951137 + 130350 -6247.0323 -6252.2885 5.2561997 3693.0685 627.59244 -10572.949 0 251.90658 -0.0008935152 -0.00091514746 + 130360 -6247.0684 -6252.153 5.0846446 3689.4919 629.3596 -10571.004 0 243.6847 -0.00066589751 -0.00068087871 + 130370 -6247.0429 -6252.3165 5.2735813 3686.3012 631.04989 -10569.668 0 252.73961 -0.00042521602 -0.00043847643 + 130380 -6246.9479 -6252.7693 5.8214065 3684.4829 632.24337 -10569.496 0 278.99446 -0.00023234326 -0.00024931448 + 130390 -6246.8147 -6253.3975 6.5827682 3684.8372 632.55517 -10570.79 0 315.48319 -0.00015001585 -0.00017268254 + 130400 -6246.6892 -6254.0427 7.3535412 3687.6434 631.77329 -10573.459 0 352.42296 -0.0002191155 -0.00024541344 + 130410 -6246.605 -6254.5657 7.9607008 3692.4348 629.95686 -10576.957 0 381.52145 -0.00043971688 -0.00046590446 + 130420 -6246.5746 -6254.8757 8.3010622 3698.0217 627.45612 -10580.353 0 397.83348 -0.00076559044 -0.00078907033 + 130430 -6246.5927 -6254.9319 8.3392265 3702.7867 624.83874 -10582.557 0 399.66252 -0.001114574 -0.0011353568 + 130440 -6246.6453 -6254.7389 8.093611 3705.1614 622.74033 -10582.641 0 387.89125 -0.001391748 -0.0014123197 + 130450 -6246.7203 -6254.3324 7.6120346 3704.1351 621.68539 -10580.153 0 364.81141 -0.001518908 -0.0015426626 + 130460 -6246.819 -6253.7581 6.9390738 3699.6214 621.93251 -10575.312 0 332.55935 -0.0014608811 -0.0014894465 + 130470 -6246.9555 -6253.0686 6.1130449 3692.5331 623.3861 -10568.988 0 292.97141 -0.0012380873 -0.0012692119 + 130480 -6247.1356 -6252.3537 5.2180467 3684.523 625.60235 -10562.479 0 250.07808 -0.00091933864 -0.00094781682 + 130490 -6247.3351 -6251.7712 4.436103 3677.5057 627.90015 -10557.177 0 212.60295 -0.00059864449 -0.00062047015 + 130500 -6247.5071 -6251.5148 4.0077145 3673.1608 629.55866 -10554.234 0 192.07217 -0.00036715572 -0.00038333738 + 130510 -6247.6187 -6251.7149 4.0962032 3672.5643 630.04489 -10554.324 0 196.31304 -0.00028999754 -0.00030604945 + 130520 -6247.6813 -6252.3489 4.6675818 3675.9671 629.1929 -10557.509 0 223.69671 -0.00039098936 -0.00041227316 + 130530 -6247.7464 -6253.2444 5.497953 3682.7021 627.2686 -10563.215 0 263.49276 -0.0006449556 -0.00067228032 + 130540 -6247.8696 -6254.1725 6.3029836 3691.258 624.89351 -10570.324 0 302.07434 -0.00098004823 -0.0010095983 + 130550 -6248.0746 -6254.9507 6.8760656 3699.5961 622.84861 -10577.395 0 329.53965 -0.00129478 -0.0013219926 + 130560 -6248.3488 -6255.4791 7.1303196 3705.6981 621.82146 -10582.999 0 341.72492 -0.0014895052 -0.0015127142 + 130570 -6248.6665 -6255.7172 7.05075 3708.1726 622.18301 -10586.073 0 337.9115 -0.0015016764 -0.00152218 + 130580 -6249.0082 -6255.6586 6.6504579 3706.6654 623.87141 -10586.195 0 318.72726 -0.0013282528 -0.0013477433 + 130590 -6249.3567 -6255.3428 5.9861284 3701.9085 626.42135 -10583.673 0 286.88886 -0.0010245643 -0.0010433782 + 130600 -6249.6859 -6254.8711 5.1851465 3695.4231 629.12291 -10579.417 0 248.50132 -0.00068238394 -0.00070012852 + 130610 -6249.9672 -6254.3834 4.4161739 3689.028 631.24683 -10574.658 0 211.64783 -0.00039929507 -0.00041621618 + 130620 -6250.1871 -6254.0006 3.8135147 3684.3298 632.25544 -10570.586 0 182.76502 -0.00025103989 -0.00026807962 + 130630 -6250.3547 -6253.7796 3.4249076 3682.3296 631.93598 -10568.045 0 164.14079 -0.00027307172 -0.00029066463 + 130640 -6250.4904 -6253.7168 3.2263789 3683.2199 630.4283 -10567.365 0 154.62618 -0.00045356015 -0.00047085696 + 130650 -6250.6061 -6253.7883 3.1822427 3686.4046 628.15295 -10568.346 0 152.51092 -0.00073876733 -0.00075450031 + 130660 -6250.6949 -6253.9839 3.2889741 3690.7271 625.6713 -10570.382 0 157.62609 -0.0010501703 -0.0010644811 + 130670 -6250.7403 -6254.2991 3.5588465 3694.8449 623.52597 -10572.67 0 170.55989 -0.001309006 -0.001324181 + 130680 -6250.7372 -6254.6981 3.9609625 3697.6314 622.10971 -10574.439 0 189.83155 -0.0014597314 -0.0014785439 + 130690 -6250.7043 -6255.0919 4.387682 3698.4619 621.59368 -10575.147 0 210.28234 -0.0014832091 -0.0015060367 + 130700 -6250.672 -6255.369 4.697077 3697.2946 621.92314 -10574.587 0 225.11029 -0.0013952501 -0.0014188435 + 130710 -6250.6539 -6255.4598 4.805924 3694.5631 622.87103 -10572.894 0 230.32684 -0.0012337924 -0.0012534211 + 130720 -6250.629 -6255.3779 4.748959 3690.985 624.12879 -10570.492 0 227.59676 -0.0010430627 -0.0010565352 + 130730 -6250.5535 -6255.1992 4.6456983 3687.393 625.40536 -10567.998 0 222.64793 -0.0008620885 -0.00087208385 + 130740 -6250.3949 -6254.999 4.6041218 3684.6136 626.50212 -10566.115 0 220.65535 -0.00071959478 -0.00073211066 + 130750 -6250.1554 -6254.8017 4.6463039 3683.3498 627.33955 -10565.491 0 222.67695 -0.00063286271 -0.00065297543 + 130760 -6249.8706 -6254.5811 4.7105555 3684.0348 627.93335 -10566.549 0 225.75625 -0.0006077107 -0.00063586927 + 130770 -6249.5852 -6254.3007 4.715504 3686.6881 628.34088 -10569.33 0 225.99341 -0.00063875825 -0.00067007587 + 130780 -6249.3238 -6253.9611 4.637241 3690.8476 628.60905 -10573.418 0 222.24261 -0.00071049528 -0.00073743328 + 130790 -6249.0698 -6253.6269 4.5570901 3695.6318 628.74703 -10578.006 0 218.40133 -0.00079988127 -0.00081701654 + 130800 -6248.7641 -6253.4106 4.6465598 3699.9465 628.73078 -10582.088 0 222.68922 -0.00088126025 -0.00088960347 + 130810 -6248.3346 -6253.4037 5.0690715 3702.7892 628.53145 -10584.724 0 242.93835 -0.00093379807 -0.00094145032 + 130820 -6247.7541 -6253.5871 5.8329889 3703.5463 628.15054 -10585.284 0 279.54956 -0.00094909316 -0.00096634713 + 130830 -6247.0874 -6253.7999 6.7124522 3702.1409 627.64179 -10583.583 0 321.69837 -0.00093349644 -0.0009647501 + 130840 -6246.4706 -6253.8275 7.3569326 3698.9492 627.10556 -10579.882 0 352.58549 -0.00090082273 -0.00094006971 + 130850 -6246.0113 -6253.5636 7.5522239 3694.5645 626.6569 -10574.785 0 361.94494 -0.00085937137 -0.00089472944 + 130860 -6245.7028 -6253.101 7.3982112 3689.6103 626.38393 -10569.095 0 354.56379 -0.00080565254 -0.00082997484 + 130870 -6245.446 -6252.6518 7.2057101 3684.7408 626.31493 -10563.707 0 345.33806 -0.00073343416 -0.00075095139 + 130880 -6245.1585 -6252.3607 7.2021331 3680.7366 626.40258 -10559.5 0 345.16663 -0.00065106778 -0.00067331544 + 130890 -6244.8544 -6252.192 7.3376039 3678.4694 626.5278 -10557.189 0 351.65915 -0.00058948298 -0.00062438401 + 130900 -6244.6217 -6251.9937 7.3719782 3678.6251 626.52896 -10557.148 0 353.30656 -0.00058990899 -0.00063438229 + 130910 -6244.5287 -6251.6722 7.1435295 3681.3273 626.26014 -10559.26 0 342.35801 -0.00067790336 -0.00072062074 + 130920 -6244.5527 -6251.3133 6.7605615 3685.9384 625.66586 -10562.918 0 324.00404 -0.00084238573 -0.00087379256 + 130930 -6244.5947 -6251.1428 6.5481252 3691.21 624.83968 -10567.192 0 313.8229 -0.0010347462 -0.0010554022 + 130940 -6244.5588 -6251.3624 6.8036274 3695.7293 624.0323 -10571.124 0 326.068 -0.0011882387 -0.0012086163 + 130950 -6244.4311 -6251.9906 7.5595158 3698.4269 623.59263 -10574.01 0 362.29441 -0.0012452617 -0.0012773914 + 130960 -6244.2979 -6252.8293 8.5314158 3698.8976 623.85085 -10575.578 0 408.87332 -0.0011780825 -0.0012257634 + 130970 -6244.29 -6253.5805 9.2904485 3697.4171 624.97839 -10575.976 0 445.25042 -0.00099531347 -0.0010506395 + 130980 -6244.487 -6254.021 9.5339631 3694.7144 626.88137 -10575.617 0 456.921 -0.00073552871 -0.00078455431 + 130990 -6244.857 -6254.1109 9.2538123 3691.6782 629.18499 -10574.974 0 443.49461 -0.00045498376 -0.00048810377 + 131000 -6245.2842 -6253.964 8.6798863 3689.1524 631.33096 -10574.447 0 415.98886 -0.0002160497 -0.00023479946 + 131010 -6245.6601 -6253.7171 8.0570552 3687.8455 632.75297 -10574.316 0 386.13929 -7.7920495e-05 -9.2699469e-05 + 131020 -6245.9567 -6253.4161 7.4594247 3688.2463 633.05627 -10574.719 0 357.49749 -8.5581925e-05 -0.00010656676 + 131030 -6246.2161 -6253.0267 6.8105356 3690.4451 632.13427 -10575.606 0 326.39908 -0.00025395409 -0.00028355022 + 131040 -6246.4832 -6252.5444 6.0611898 3693.9454 630.19483 -10576.685 0 290.48622 -0.00055352286 -0.00058663507 + 131050 -6246.7565 -6252.0712 5.3147291 3697.6788 627.70333 -10577.453 0 254.71164 -0.0009105219 -0.00094080339 + 131060 -6246.9996 -6251.7746 4.7750334 3700.3228 625.26221 -10577.36 0 228.84639 -0.0012277033 -0.0012529355 + 131070 -6247.1839 -6251.7772 4.5933087 3700.7905 623.45189 -10576.02 0 220.13712 -0.0014173268 -0.0014396371 + 131080 -6247.3143 -6252.0811 4.7667899 3698.6493 622.66894 -10573.399 0 228.45132 -0.0014308087 -0.0014531081 + 131090 -6247.4205 -6252.5827 5.1621911 3694.2916 623.00727 -10569.882 0 247.40116 -0.0012733606 -0.0012962297 + 131100 -6247.5287 -6253.1513 5.6226169 3688.8225 624.22482 -10566.199 0 269.46735 -0.0010003087 -0.0010221617 + 131110 -6247.6401 -6253.7025 6.062344 3683.7339 625.81707 -10563.253 0 290.54154 -0.0006986103 -0.00071855622 + 131120 -6247.7346 -6254.2096 6.4750224 3680.4852 627.18429 -10561.879 0 310.31941 -0.00046073228 -0.00048100384 + 131130 -6247.7999 -6254.6551 6.8551155 3680.1051 627.8417 -10562.602 0 328.5356 -0.00035849742 -0.00038351928 + 131140 -6247.8588 -6254.974 7.1151935 3682.896 627.59712 -10565.467 0 341 -0.00042254206 -0.00045482652 + 131150 -6247.9601 -6255.0622 7.1020417 3688.2916 626.62342 -10569.977 0 340.36969 -0.00063121522 -0.00066794937 + 131160 -6248.1335 -6254.8571 6.7236165 3694.9248 625.39155 -10575.173 0 322.23343 -0.000913142 -0.0009475831 + 131170 -6248.3512 -6254.4159 6.0646553 3700.9642 624.48973 -10579.87 0 290.65231 -0.0011674067 -0.0011945831 + 131180 -6248.5441 -6253.8984 5.3543066 3704.6891 624.40349 -10582.991 0 256.60841 -0.0012989117 -0.001320127 + 131190 -6248.6597 -6253.463 4.8032612 3705.0989 625.33931 -10583.901 0 230.19923 -0.0012555523 -0.0012769953 + 131200 -6248.7035 -6253.1764 4.4728975 3702.2688 627.14606 -10582.591 0 214.36635 -0.0010489839 -0.0010759031 + 131210 -6248.7231 -6253.0179 4.2947632 3697.2756 629.35177 -10579.645 0 205.82915 -0.00074881021 -0.00078107828 + 131220 -6248.7616 -6252.9526 4.190966 3691.758 631.30383 -10576.014 0 200.85461 -0.00045478634 -0.00048761547 + 131230 -6248.8231 -6252.9844 4.1613354 3687.3403 632.3742 -10572.699 0 199.43454 -0.00026115414 -0.00028943636 + 131240 -6248.8755 -6253.1467 4.2711811 3685.1483 632.16701 -10570.462 0 204.69896 -0.00022681439 -0.00024894325 + 131250 -6248.8763 -6253.4544 4.5781326 3685.5467 630.65813 -10569.659 0 219.4098 -0.00035932949 -0.00037787999 + 131260 -6248.7967 -6253.8642 5.0675493 3688.1307 628.21552 -10570.21 0 242.8654 -0.00061545291 -0.000634896 + 131270 -6248.6333 -6254.2683 5.6349958 3691.9304 625.48903 -10571.688 0 270.06061 -0.00091692555 -0.00094016774 + 131280 -6248.4045 -6254.5272 6.122685 3695.7378 623.20342 -10573.468 0 293.43342 -0.0011762153 -0.0012021098 + 131290 -6248.1322 -6254.5334 6.4011702 3698.4419 621.92419 -10574.899 0 306.77999 -0.001323373 -0.0013470542 + 131300 -6247.8177 -6254.2797 6.4620379 3699.2958 621.87941 -10575.455 0 309.69711 -0.0013251007 -0.0013416964 + 131310 -6247.4267 -6253.8784 6.451789 3698.0927 622.9043 -10574.875 0 309.20593 -0.0011914127 -0.001201071 + 131320 -6246.9069 -6253.494 6.5871774 3695.2431 624.53056 -10573.268 0 315.6945 -0.00097048118 -0.00098045872 + 131330 -6246.2378 -6253.2199 6.982058 3691.704 626.18381 -10571.108 0 334.6194 -0.00073422463 -0.00075492041 + 131340 -6245.4787 -6252.9966 7.5178442 3688.6975 627.40829 -10569.102 0 360.29728 -0.00055632488 -0.00059296393 + 131350 -6244.7607 -6252.656 7.8952311 3687.243 628.02757 -10567.927 0 378.38377 -0.00048536934 -0.00053193458 + 131360 -6244.2033 -6252.0777 7.8743914 3687.6957 628.17674 -10567.95 0 377.38502 -0.00052172314 -0.00056375821 + 131370 -6243.8137 -6251.3364 7.5226923 3689.5739 628.19734 -10569.108 0 360.52962 -0.0006128548 -0.00063896522 + 131380 -6243.4709 -6250.6968 7.2259396 3691.8463 628.45193 -10570.995 0 346.30757 -0.00067748056 -0.0006905416 + 131390 -6243.0285 -6250.4296 7.4011194 3693.5556 629.14921 -10573.134 0 354.70317 -0.00065079714 -0.00066803628 + 131400 -6242.453 -6250.5874 8.1344249 3694.3882 630.25123 -10575.227 0 389.84729 -0.00052456568 -0.00056438693 + 131410 -6241.8756 -6250.952 9.0764499 3694.7825 631.48452 -10577.219 0 434.99441 -0.00035431642 -0.00042013095 + 131420 -6241.4941 -6251.2218 9.7277036 3695.4781 632.43907 -10579.139 0 466.20614 -0.00022585057 -0.00030179066 + 131430 -6241.4011 -6251.2749 9.8737376 3696.842 632.72194 -10580.839 0 473.20491 -0.00020292339 -0.00026669932 + 131440 -6241.5096 -6251.243 9.7333123 3698.5151 632.12052 -10581.879 0 466.47494 -0.00029373564 -0.00033501315 + 131450 -6241.6597 -6251.3192 9.6595266 3699.6449 630.7158 -10581.68 0 462.93872 -0.00045670358 -0.00048326875 + 131460 -6241.7803 -6251.5203 9.7399996 3699.4497 628.88563 -10579.856 0 466.79543 -0.00063080064 -0.00065806123 + 131470 -6241.9294 -6251.674 9.7446703 3697.636 627.17348 -10576.484 0 467.01928 -0.00076193637 -0.00079867512 + 131480 -6242.1952 -6251.6178 9.4225907 3694.4661 626.06711 -10572.151 0 451.58342 -0.00081529182 -0.0008593962 + 131490 -6242.5978 -6251.361 8.7631607 3690.6188 625.79177 -10567.772 0 419.97983 -0.000782157 -0.0008263729 + 131500 -6243.0857 -6251.0672 7.9815406 3687.0047 626.22136 -10564.293 0 382.52021 -0.0006849448 -0.00072377521 + 131510 -6243.5918 -6250.9338 7.3419709 3684.558 626.94852 -10562.44 0 351.86844 -0.00057256908 -0.00060485821 + 131520 -6244.0767 -6251.0907 7.0140056 3683.9927 627.47701 -10562.56 0 336.1505 -0.00050203999 -0.00052996723 + 131530 -6244.5371 -6251.5548 7.0176981 3685.5853 627.44729 -10564.587 0 336.32747 -0.0005142766 -0.00054098103 + 131540 -6244.9953 -6252.2302 7.2349367 3689.059 626.79526 -10568.084 0 346.73876 -0.00061639175 -0.00064365275 + 131550 -6245.4775 -6252.9521 7.4745395 3693.6123 625.77773 -10572.342 0 358.22187 -0.00077766877 -0.00080494284 + 131560 -6245.9899 -6253.5563 7.5664309 3698.1107 624.86116 -10576.528 0 362.62582 -0.00093996151 -0.00096546659 + 131570 -6246.5085 -6253.9376 7.4291691 3701.4193 624.53001 -10579.887 0 356.04747 -0.0010386628 -0.0010614426 + 131580 -6246.9918 -6254.0681 7.0763235 3702.7762 625.09667 -10581.941 0 339.13713 -0.0010268751 -0.0010479419 + 131590 -6247.4036 -6253.984 6.5803912 3702.0506 626.58118 -10582.616 0 315.36927 -0.00089394378 -0.00091574157 + 131600 -6247.7292 -6253.7585 6.0293315 3699.7728 628.69465 -10582.226 0 288.9594 -0.00067158236 -0.0006964414 + 131610 -6247.9774 -6253.4727 5.4953503 3696.9332 630.9241 -10581.33 0 263.36802 -0.00042513518 -0.00045379978 + 131620 -6248.1708 -6253.1956 5.0247387 3694.6318 632.6865 -10580.514 0 240.81367 -0.00023236568 -0.00026346461 + 131630 -6248.3307 -6252.978 4.6472861 3693.6938 633.50191 -10580.174 0 222.72403 -0.00015686912 -0.00018768285 + 131640 -6248.4656 -6252.8553 4.3896746 3694.3813 633.13396 -10580.371 0 210.37784 -0.00022590548 -0.00025397574 + 131650 -6248.5702 -6252.8462 4.2759901 3696.3051 631.65874 -10580.81 0 204.92944 -0.00042090034 -0.00044541489 + 131660 -6248.6345 -6252.9488 4.3143086 3698.576 629.44484 -10580.97 0 206.76588 -0.00068368354 -0.00070573313 + 131670 -6248.6533 -6253.1393 4.485992 3700.1393 627.04866 -10580.327 0 214.99391 -0.00093568497 -0.00095740522 + 131680 -6248.6294 -6253.3832 4.7537422 3700.162 625.0505 -10578.596 0 227.826 -0.0011033577 -0.0011268318 + 131690 -6248.5712 -6253.652 5.0808004 3698.3358 623.87726 -10575.865 0 243.50046 -0.0011418423 -0.0011684959 + 131700 -6248.4901 -6253.926 5.4358882 3695.0068 623.67174 -10572.605 0 260.51826 -0.0010496116 -0.0010798882 + 131710 -6248.4033 -6254.1813 5.778043 3691.0937 624.26006 -10569.535 0 276.91624 -0.00086887702 -0.00090169317 + 131720 -6248.3317 -6254.3807 6.0489936 3687.8078 625.23448 -10567.423 0 289.90171 -0.00067045442 -0.00070285223 + 131730 -6248.2891 -6254.4847 6.1955544 3686.2507 626.12181 -10566.857 0 296.92573 -0.00052775537 -0.00055581121 + 131740 -6248.2685 -6254.4719 6.2034501 3687.0291 626.57098 -10568.072 0 297.30414 -0.00048993256 -0.00051101075 + 131750 -6248.2423 -6254.3462 6.1038925 3690.0444 626.48441 -10570.875 0 292.53278 -0.00056502561 -0.00057983349 + 131760 -6248.1801 -6254.1223 5.9422199 3694.5378 626.04286 -10574.703 0 284.78452 -0.00071917275 -0.000731781 + 131770 -6248.0698 -6253.8083 5.7384447 3699.3553 625.61929 -10578.783 0 275.01847 -0.00089070391 -0.00090622034 + 131780 -6247.926 -6253.403 5.4769076 3703.3066 625.62315 -10582.333 0 262.48414 -0.0010124249 -0.0010338583 + 131790 -6247.78 -6252.9138 5.133836 3705.487 626.34019 -10584.741 0 246.04223 -0.0010336328 -0.001060026 + 131800 -6247.6582 -6252.3802 4.7219971 3705.4802 627.8247 -10585.685 0 226.3046 -0.00093489995 -0.00096189978 + 131810 -6247.5625 -6251.8881 4.3256656 3703.4186 629.87026 -10585.177 0 207.31017 -0.00073218191 -0.00075485064 + 131820 -6247.4595 -6251.563 4.1034781 3699.9211 632.05407 -10583.538 0 196.6617 -0.00047115907 -0.00048763349 + 131830 -6247.2903 -6251.527 4.2366751 3695.9499 633.83642 -10581.313 0 203.04524 -0.0002158921 -0.00022947304 + 131840 -6247.0003 -6251.8244 4.824068 3692.6152 634.69781 -10579.137 0 231.19641 -3.5251219e-05 -5.2617855e-05 + 131850 -6246.5758 -6252.3652 5.7894815 3690.9166 634.29073 -10577.573 0 277.46444 1.3042945e-05 -1.288782e-05 + 131860 -6246.0549 -6252.955 6.9001447 3691.417 632.56672 -10576.939 0 330.69365 -9.8380891e-05 -0.00013122763 + 131870 -6245.4955 -6253.4094 7.9138788 3693.9483 629.83017 -10577.188 0 379.27748 -0.00034938981 -0.00038213867 + 131880 -6244.9249 -6253.6599 8.7349232 3697.5501 626.68432 -10577.894 0 418.62653 -0.00066954533 -0.00069649441 + 131890 -6244.3272 -6253.7483 9.4211106 3700.7829 623.87287 -10578.404 0 451.51248 -0.00095909501 -0.00098207127 + 131900 -6243.6934 -6253.7152 10.021825 3702.3197 622.06424 -10578.099 0 480.30211 -0.0011282559 -0.0011556245 + 131910 -6243.0825 -6253.5005 10.418028 3701.5002 621.65135 -10576.652 0 499.29036 -0.0011338634 -0.0011723344 + 131920 -6242.6108 -6252.9759 10.365127 3698.5376 622.63855 -10574.152 0 496.75506 -0.00099177543 -0.001038941 + 131930 -6242.3617 -6252.0902 9.7284787 3694.3168 624.65903 -10571.066 0 466.24328 -0.00076053034 -0.00080607464 + 131940 -6242.3095 -6250.9765 8.666951 3689.9946 627.11587 -10568.087 0 415.36892 -0.00051181926 -0.00054633785 + 131950 -6242.3416 -6249.9051 7.5634902 3686.6588 629.38644 -10565.95 0 362.48489 -0.00030721962 -0.0003297361 + 131960 -6242.3494 -6249.1297 6.7802689 3685.1331 631.00715 -10565.27 0 324.94853 -0.00018740931 -0.00020497266 + 131970 -6242.2944 -6248.769 6.4746474 3685.8632 631.78007 -10566.412 0 310.30143 -0.00016796646 -0.00018915657 + 131980 -6242.2057 -6248.8044 6.5987076 3688.8298 631.78621 -10569.42 0 316.24709 -0.00023697816 -0.00026579348 + 131990 -6242.1361 -6249.1526 7.0165665 3693.5171 631.31714 -10573.987 0 336.27324 -0.00035714285 -0.00039157366 + 132000 -6242.124 -6249.7307 7.6067063 3698.9981 630.74951 -10579.478 0 364.55605 -0.00047703991 -0.00051184965 + 132010 -6242.1881 -6250.4662 8.2781749 3704.1519 630.40033 -10585.018 0 396.73659 -0.00055029375 -0.00058077782 + 132020 -6242.3464 -6251.274 8.9276659 3707.9551 630.41208 -10589.641 0 427.86384 -0.00055406192 -0.00057822501 + 132030 -6242.6356 -6252.0461 9.4105774 3709.744 630.71109 -10592.501 0 451.00767 -0.00049713599 -0.00051594583 + 132040 -6243.105 -6252.6745 9.5694598 3709.3611 631.05733 -10593.093 0 458.62221 -0.00041381072 -0.00043031562 + 132050 -6243.782 -6253.0856 9.3035858 3707.1425 631.16729 -10591.395 0 445.88003 -0.000347081 -0.000364855 + 132060 -6244.6334 -6253.2591 8.6257402 3703.7582 630.85558 -10587.873 0 413.39387 -0.0003291648 -0.0003503773 + 132070 -6245.5621 -6253.2248 7.6627091 3699.9711 630.12382 -10583.32 0 367.24002 -0.00036813947 -0.00039224384 + 132080 -6246.4491 -6253.0533 6.6041559 3696.4202 629.15025 -10578.624 0 316.5082 -0.00044661681 -0.00047088485 + 132090 -6247.2069 -6252.8451 5.638258 3693.5183 628.19469 -10574.558 0 270.21696 -0.00053234994 -0.0005540179 + 132100 -6247.8032 -6252.7054 4.90221 3691.4863 627.47992 -10571.672 0 234.94141 -0.00059476383 -0.00061289132 + 132110 -6248.2511 -6252.7055 4.4543422 3690.4575 627.106 -10570.269 0 213.47707 -0.00061936742 -0.00063492861 + 132120 -6248.5847 -6252.859 4.2742598 3690.5503 627.02305 -10570.432 0 204.84651 -0.00061373369 -0.00062839229 + 132130 -6248.839 -6253.133 4.2939965 3691.8477 627.06382 -10572.045 0 205.79241 -0.00060272062 -0.00061780925 + 132140 -6249.0388 -6253.4757 4.4368945 3694.3044 627.02167 -10574.802 0 212.64088 -0.00061573049 -0.00063210968 + 132150 -6249.2004 -6253.8322 4.6318656 3697.6479 626.7467 -10578.227 0 221.98499 -0.00067217335 -0.00069025001 + 132160 -6249.3387 -6254.1439 4.80522 3701.3392 626.22487 -10581.708 0 230.29311 -0.00077082547 -0.00079002794 + 132170 -6249.4689 -6254.3555 4.886598 3704.6241 625.6081 -10584.588 0 234.1932 -0.00088629007 -0.00090467787 + 132180 -6249.595 -6254.4416 4.84654 3706.6834 625.17785 -10586.303 0 232.27339 -0.00097418084 -0.00098950545 + 132190 -6249.7002 -6254.427 4.7267582 3706.8726 625.24767 -10586.547 0 226.53278 -0.00098567224 -0.00099766264 + 132200 -6249.757 -6254.3654 4.6083693 3704.9961 626.03399 -10585.395 0 220.85891 -0.00088879768 -0.00090029158 + 132210 -6249.7547 -6254.2848 4.5300501 3701.4948 627.54086 -10583.32 0 217.10542 -0.00068803876 -0.00070299353 + 132220 -6249.7152 -6254.1582 4.4430204 3697.408 629.50656 -10581.073 0 212.93447 -0.00043063488 -0.00045038217 + 132230 -6249.6761 -6253.9398 4.2637393 3694.0641 631.44636 -10579.45 0 204.34231 -0.00019326234 -0.00021477373 + 132240 -6249.656 -6253.6325 3.9764629 3692.6169 632.7927 -10579.042 0 190.57441 -5.4100009e-05 -7.229291e-05 + 132250 -6249.6357 -6253.316 3.6803291 3693.6373 633.09031 -10580.044 0 176.38202 -6.3686503e-05 -7.578102e-05 + 132260 -6249.5712 -6253.1056 3.5343386 3696.9234 632.17094 -10582.2 0 169.38534 -0.00022707922 -0.00023512669 + 132270 -6249.4258 -6253.0758 3.6500785 3701.572 630.23585 -10584.884 0 174.93224 -0.00050224412 -0.00051172104 + 132280 -6249.1945 -6253.2132 4.0187209 3706.2467 627.81161 -10587.272 0 192.59965 -0.00081237494 -0.00082801002 + 132290 -6248.9058 -6253.4301 4.5243046 3709.5381 625.59273 -10588.561 0 216.83006 -0.0010668526 -0.0010889332 + 132300 -6248.5982 -6253.6293 5.031073 3710.327 624.22265 -10588.179 0 241.11725 -0.0011857482 -0.0012098114 + 132310 -6248.2887 -6253.7672 5.4784531 3708.0923 624.08531 -10585.945 0 262.55821 -0.0011232745 -0.0011436003 + 132320 -6247.9579 -6253.8656 5.9076941 3703.1181 625.17733 -10582.161 0 283.12985 -0.00088488983 -0.00089923355 + 132330 -6247.5674 -6253.9616 6.3941806 3696.5385 627.10579 -10577.606 0 306.44501 -0.00053191308 -0.00054374275 + 132340 -6247.1007 -6254.0365 6.9358243 3690.1418 629.21463 -10573.393 0 332.40362 -0.00016890533 -0.00018512867 + 132350 -6246.5948 -6253.9857 7.3909302 3685.8997 630.80079 -10570.686 0 354.21485 8.6204609e-05 6.0612297e-05 + 132360 -6246.1317 -6253.6634 7.5316379 3685.3098 631.35078 -10570.324 0 360.95835 0.00014224041 0.00010869956 + 132370 -6245.7883 -6252.9827 7.1944043 3688.79 630.71857 -10572.491 0 344.79622 -2.8662067e-05 -6.2479678e-05 + 132380 -6245.5805 -6252.0089 6.4283407 3695.4162 629.17978 -10576.605 0 308.08216 -0.00037429658 -0.00039973727 + 132390 -6245.4461 -6250.9746 5.5285448 3703.1774 627.33958 -10581.492 0 264.95889 -0.00077597951 -0.00079040071 + 132400 -6245.2836 -6250.1892 4.9056344 3709.6805 625.92733 -10585.797 0 235.10553 -0.0010901566 -0.0011002137 + 132410 -6245.023 -6249.8731 4.8500641 3713.0205 625.55134 -10588.445 0 232.44229 -0.001202087 -0.0012195713 + 132420 -6244.6809 -6250.0285 5.3475962 3712.4373 626.49142 -10588.957 0 256.28682 -0.0010687343 -0.001100743 + 132430 -6244.3512 -6250.462 6.1108481 3708.4772 628.58674 -10587.526 0 292.86613 -0.00073174733 -0.00077309547 + 132440 -6244.123 -6250.9611 6.8380457 3702.6331 631.25729 -10584.851 0 327.71752 -0.00029586229 -0.00033191876 + 132450 -6243.9896 -6251.463 7.4734259 3696.7275 633.67257 -10581.863 0 358.1685 0.00011311704 9.3864083e-05 + 132460 -6243.8485 -6252.0433 8.1948058 3692.3811 635.0315 -10579.456 0 392.74107 0.00038750008 0.00038236646 + 132470 -6243.6108 -6252.7352 9.1243662 3690.7164 634.8554 -10578.307 0 437.29083 0.0004603906 0.00045395332 + 132480 -6243.3123 -6253.3789 10.066669 3692.1966 633.17273 -10578.748 0 482.45128 0.00031522808 0.00029246319 + 132490 -6243.1077 -6253.6729 10.565215 3696.4826 630.51342 -10580.669 0 506.34439 -9.6812314e-06 -5.063322e-05 + 132500 -6243.1415 -6253.3933 10.251872 3702.3742 627.71258 -10583.48 0 491.32724 -0.0004236032 -0.00047050894 + 132510 -6243.4168 -6252.5863 9.1695475 3708.0327 625.60729 -10586.226 0 439.45617 -0.00080318204 -0.00084080984 + 132520 -6243.794 -6251.5657 7.771684 3711.5553 624.75515 -10587.876 0 372.4627 -0.0010322307 -0.001054907 + 132530 -6244.1094 -6250.7221 6.6127202 3711.7014 625.2821 -10587.706 0 316.91865 -0.0010460601 -0.001060997 + 132540 -6244.2924 -6250.2994 6.0069876 3708.4131 626.89312 -10585.606 0 287.88855 -0.00085653266 -0.00087644696 + 132550 -6244.3896 -6250.3005 5.9108813 3702.8419 629.00866 -10582.151 0 283.2826 -0.00054421408 -0.00057664829 + 132560 -6244.5018 -6250.5651 6.0632593 3696.8607 630.96214 -10578.388 0 290.58541 -0.00022270744 -0.00026485635 + 132570 -6244.7007 -6250.9245 6.2238132 3692.3163 632.19934 -10575.44 0 298.28005 6.2157778e-06 -3.5895135e-05 + 132580 -6244.9848 -6251.3023 6.3175467 3690.396 632.43069 -10574.129 0 302.77229 8.6368902e-05 5.3007617e-05 + 132590 -6245.2984 -6251.7102 6.4118007 3691.3585 631.69692 -10574.766 0 307.28947 1.8236131e-05 -4.702659e-06 + 132600 -6245.5838 -6252.1746 6.5907361 3694.6491 630.32918 -10577.153 0 315.86506 -0.00015209788 -0.00017014757 + 132610 -6245.8271 -6252.6697 6.8426196 3699.2403 628.81823 -10580.728 0 327.93673 -0.00035730208 -0.00037833775 + 132620 -6246.0663 -6253.1048 7.0384265 3704.0028 627.63981 -10584.747 0 337.32089 -0.00053492826 -0.00056317093 + 132630 -6246.3601 -6253.3711 7.0110574 3707.9748 627.09885 -10588.445 0 336.00921 -0.00064560933 -0.00067873361 + 132640 -6246.739 -6253.4165 6.6774584 3710.5007 627.24737 -10591.165 0 320.02128 -0.00067862843 -0.00070990595 + 132650 -6247.1789 -6253.2878 6.1088591 3711.2749 627.90164 -10592.464 0 292.7708 -0.00064657788 -0.00067022238 + 132660 -6247.6174 -6253.1052 5.4877793 3710.3392 628.74501 -10592.189 0 263.00517 -0.00057494409 -0.00059031181 + 132670 -6248.0003 -6252.9852 4.9848947 3708.0472 629.46855 -10590.501 0 238.90412 -0.00049183658 -0.00050326017 + 132680 -6248.3162 -6252.9736 4.657397 3704.9832 629.88894 -10587.846 0 223.2086 -0.00041990613 -0.0004327682 + 132690 -6248.5934 -6253.0395 4.4461317 3701.8269 629.99707 -10584.863 0 213.08358 -0.00037082369 -0.00038747046 + 132700 -6248.8688 -6253.1285 4.2596718 3699.195 629.92333 -10582.247 0 204.14737 -0.00034351833 -0.00036226403 + 132710 -6249.158 -6253.2205 4.0625654 3697.5222 629.8432 -10580.586 0 194.70093 -0.00032798841 -0.00034540913 + 132720 -6249.4511 -6253.3443 3.8932297 3697.0281 629.87272 -10580.245 0 186.58541 -0.00031414165 -0.00032808572 + 132730 -6249.7308 -6253.5421 3.8112934 3697.7546 630.00478 -10581.302 0 182.65857 -0.000300924 -0.00031167448 + 132740 -6249.9905 -6253.8268 3.8362669 3699.6107 630.11445 -10583.552 0 183.85544 -0.00029945789 -0.00030878482 + 132750 -6250.2369 -6254.1668 3.9298477 3702.3765 630.02691 -10586.57 0 188.34035 -0.00032750163 -0.00033719136 + 132760 -6250.4812 -6254.5004 4.0192471 3705.6756 629.61416 -10589.79 0 192.62488 -0.00039836893 -0.00040952301 + 132770 -6250.7313 -6254.7595 4.028213 3708.9661 628.87528 -10592.601 0 193.05457 -0.00051058401 -0.00052359282 + 132780 -6250.9908 -6254.8895 3.8986847 3711.5966 627.96367 -10594.45 0 186.84685 -0.00064342071 -0.00065797839 + 132790 -6251.2581 -6254.8673 3.6091962 3712.9352 627.147 -10594.949 0 172.97293 -0.00076045744 -0.00077557606 + 132800 -6251.5248 -6254.7152 3.1903583 3712.5442 626.71372 -10593.973 0 152.89987 -0.00082067145 -0.00083507167 + 132810 -6251.7768 -6254.4978 2.7209897 3710.3528 626.86204 -10591.713 0 130.40509 -0.00079410831 -0.0008069044 + 132820 -6252.0009 -6254.2985 2.2976502 3706.7569 627.6139 -10588.669 0 110.11629 -0.00067627839 -0.00068738707 + 132830 -6252.1921 -6254.1898 1.9977147 3702.5838 628.78657 -10585.56 0 95.741697 -0.00049425136 -0.00050427628 + 132840 -6252.3547 -6254.2152 1.860484 3698.9033 630.03488 -10583.153 0 89.164834 -0.0003004849 -0.00031039171 + 132850 -6252.4978 -6254.3845 1.8867654 3696.7358 630.95335 -10582.074 0 90.424386 -0.00015639053 -0.00016721207 + 132860 -6252.6327 -6254.6751 2.0423353 3696.7515 631.20751 -10582.634 0 97.880169 -0.00011210042 -0.00012450981 + 132870 -6252.7714 -6255.034 2.2626518 3699.0535 630.6512 -10584.739 0 108.43897 -0.00018942619 -0.00020313535 + 132880 -6252.9226 -6255.393 2.4704186 3703.1072 629.38918 -10587.889 0 118.39632 -0.00037299872 -0.00038651898 + 132890 -6253.0848 -6255.6928 2.6079092 3707.8463 627.76053 -10591.3 0 124.98564 -0.00061234992 -0.00062374511 + 132900 -6253.243 -6255.9045 2.6615201 3711.9522 626.24408 -10594.101 0 127.55498 -0.00083553639 -0.00084390175 + 132910 -6253.3746 -6256.0264 2.6518265 3714.2435 625.31309 -10595.583 0 127.09041 -0.00097161359 -0.00097796773 + 132920 -6253.4655 -6256.06 2.5945298 3714.0557 625.28397 -10595.4 0 124.34443 -0.00097496214 -0.00098146182 + 132930 -6253.5192 -6255.9926 2.4734742 3711.4629 626.2073 -10593.663 0 118.54276 -0.0008419438 -0.00084995066 + 132940 -6253.5511 -6255.81 2.2588489 3707.2523 627.83867 -10590.901 0 108.25671 -0.00061267365 -0.00062151901 + 132950 -6253.5726 -6255.5272 1.9545397 3702.6677 629.70429 -10587.899 0 93.672508 -0.00035737441 -0.00036508432 + 132960 -6253.5798 -6255.2042 1.6244235 3699.029 631.24392 -10585.477 0 77.851488 -0.00015354349 -0.00015884479 + 132970 -6253.5571 -6254.9247 1.3675618 3697.3647 631.98478 -10584.274 0 65.541237 -6.2775754e-05 -6.6467427e-05 + 132980 -6253.4899 -6254.7526 1.2627026 3698.1534 631.68733 -10584.593 0 60.515792 -0.0001140373 -0.00011847168 + 132990 -6253.3714 -6254.7014 1.3299963 3701.2188 630.41657 -10586.337 0 63.740886 -0.00029631853 -0.0003034889 + 133000 -6253.2003 -6254.7395 1.539264 3705.7707 628.52248 -10589.033 0 73.770169 -0.0005607261 -0.00057061649 + 133010 -6252.9724 -6254.8239 1.8514971 3710.5694 626.5447 -10591.938 0 88.734128 -0.00083096921 -0.00084153013 + 133020 -6252.6808 -6254.9336 2.2527658 3714.1964 625.0699 -10594.2 0 107.96518 -0.0010214902 -0.001030374 + 133030 -6252.3233 -6255.0715 2.7482619 3715.4401 624.56374 -10595.075 0 131.71213 -0.0010628089 -0.0010696853 + 133040 -6251.9129 -6255.2327 3.319797 3713.7513 625.20753 -10594.192 0 159.1033 -0.0009293633 -0.00093674566 + 133050 -6251.4817 -6255.3712 3.8894903 3709.5559 626.81063 -10591.738 0 186.4062 -0.00065569302 -0.00066710131 + 133060 -6251.0709 -6255.4056 4.3346851 3704.1728 628.8673 -10588.446 0 207.74243 -0.00032704892 -0.00034416599 + 133070 -6250.7151 -6255.26 4.5448358 3699.3316 630.74291 -10585.334 0 217.81403 -4.732462e-05 -6.8735572e-05 + 133080 -6250.4316 -6254.9036 4.4720167 3696.5411 631.90161 -10583.346 0 214.32413 9.893935e-05 7.6903464e-05 + 133090 -6250.2167 -6254.368 4.1512571 3696.5816 632.08278 -10583.032 0 198.95154 7.4802096e-05 5.6137821e-05 + 133100 -6250.047 -6253.7456 3.6985897 3699.2894 631.36789 -10584.403 0 177.25717 -9.8811376e-05 -0.0001119328 + 133110 -6249.8832 -6253.1703 3.287103 3703.6772 630.12604 -10586.974 0 157.53642 -0.00035272568 -0.00036159505 + 133120 -6249.6842 -6252.7712 3.0870006 3708.3249 628.86972 -10589.966 0 147.94639 -0.00059542759 -0.00060467784 + 133130 -6249.428 -6252.6096 3.1815931 3711.8821 628.0769 -10592.569 0 152.47979 -0.00074598497 -0.00076086158 + 133140 -6249.1265 -6252.6446 3.5180645 3713.4873 628.0363 -10594.168 0 168.60539 -0.00076115389 -0.00078345431 + 133150 -6248.8159 -6252.7665 3.9505526 3712.9553 628.75839 -10594.48 0 189.33265 -0.00064610758 -0.00067212772 + 133160 -6248.5218 -6252.8796 4.3577199 3710.7106 629.97767 -10593.568 0 208.84639 -0.00044630238 -0.00046928671 + 133170 -6248.2285 -6252.964 4.7355478 3707.5607 631.24971 -10591.774 0 226.95402 -0.000227023 -0.00024272773 + 133180 -6247.8855 -6253.0593 5.1738033 3704.4358 632.11712 -10589.612 0 247.95768 -5.1032094e-05 -6.162754e-05 + 133190 -6247.4547 -6253.1855 5.7307208 3702.1726 632.28741 -10587.645 0 274.6483 3.8318687e-05 2.5909641e-05 + 133200 -6246.9557 -6253.283 6.3272544 3701.3404 631.75046 -10586.374 0 303.23753 2.6866221e-05 7.1641717e-06 + 133210 -6246.4624 -6253.2409 6.7785926 3702.0952 630.77911 -10586.115 0 324.86819 -6.7091853e-05 -9.3011102e-05 + 133220 -6246.0454 -6252.9947 6.9493009 3704.1084 629.80485 -10586.908 0 333.04949 -0.0001978389 -0.00022334035 + 133230 -6245.7152 -6252.5959 6.8807753 3706.6634 629.22299 -10588.482 0 329.76536 -0.00030861532 -0.00032773391 + 133240 -6245.4208 -6252.1801 6.7592563 3708.94 629.22023 -10590.34 0 323.94149 -0.00035630207 -0.00036917074 + 133250 -6245.1025 -6251.8637 6.7611769 3710.3544 629.70502 -10591.923 0 324.03353 -0.00033208054 -0.00034476607 + 133260 -6244.7414 -6251.67 6.9285512 3710.7555 630.36713 -10592.793 0 332.05505 -0.0002645158 -0.00028415196 + 133270 -6244.3686 -6251.5382 7.1696538 3710.3648 630.83368 -10592.737 0 343.61004 -0.00020198684 -0.00023171504 + 133280 -6244.0375 -6251.3892 7.3517038 3709.527 630.84825 -10591.765 0 352.3349 -0.00018463996 -0.00022179383 + 133290 -6243.7882 -6251.1874 7.3991884 3708.4426 630.3914 -10590.021 0 354.61062 -0.00022162454 -0.00025960165 + 133300 -6243.6218 -6250.9677 7.3459017 3707.0524 629.6881 -10587.708 0 352.05683 -0.00028514113 -0.00031757083 + 133310 -6243.4977 -6250.8227 7.3249979 3705.148 629.10343 -10585.074 0 351.055 -0.00032394728 -0.0003490039 + 133320 -6243.3577 -6250.8488 7.4910892 3702.6548 628.97903 -10582.483 0 359.01503 -0.00029036106 -0.00031252576 + 133330 -6243.1689 -6251.0729 7.9039897 3699.9099 629.48122 -10580.464 0 378.80353 -0.00016819452 -0.00019569714 + 133340 -6242.9554 -6251.4092 8.453754 3697.7232 630.51896 -10579.651 0 405.15133 1.2933634e-05 -2.6259141e-05 + 133350 -6242.7927 -6251.6878 8.8950565 3697.1254 631.76402 -10580.577 0 426.30102 0.00018592905 0.00013538002 + 133360 -6242.7612 -6251.7422 8.9809141 3698.9017 632.77288 -10583.417 0 430.4158 0.00027494701 0.00022050281 + 133370 -6242.8915 -6251.5004 8.6088464 3703.1424 633.16746 -10587.81 0 412.58422 0.00023104524 0.00018298585 + 133380 -6243.1418 -6251.0262 7.8843786 3709.0483 632.79749 -10592.872 0 377.86366 5.6951267e-05 2.2273868e-05 + 133390 -6243.4228 -6250.4948 7.0719615 3715.1024 631.80998 -10597.407 0 338.92808 -0.00019101809 -0.00021268926 + 133400 -6243.6505 -6250.1186 6.4681548 3719.5657 630.59721 -10600.282 0 309.99027 -0.00042416541 -0.00044030392 + 133410 -6243.7945 -6250.0519 6.2574397 3721.1045 629.65033 -10600.807 0 299.89162 -0.00055579211 -0.0005762126 + 133420 -6243.8949 -6250.3226 6.4277367 3719.2819 629.37627 -10598.981 0 308.05321 -0.00053380942 -0.00056407827 + 133430 -6244.0329 -6250.8409 6.8080431 3714.6942 629.93914 -10595.474 0 326.27963 -0.00035853412 -0.00039625489 + 133440 -6244.2741 -6251.4741 7.2000888 3708.7275 631.18178 -10591.383 0 345.06865 -8.080919e-05 -0.0001178485 + 133450 -6244.6285 -6252.1189 7.4904392 3703.097 632.66426 -10587.88 0 358.98388 0.0002155145 0.00018674139 + 133460 -6245.0552 -6252.7174 7.6621861 3699.3688 633.81372 -10585.9 0 367.21495 0.00043894104 0.00042021836 + 133470 -6245.4997 -6253.2299 7.7301504 3698.5771 634.13114 -10585.938 0 370.47218 0.0005164663 0.00050313059 + 133480 -6245.9306 -6253.6053 7.6747076 3700.9795 633.37727 -10587.962 0 367.81505 0.00041466178 0.00039931814 + 133490 -6246.3497 -6253.7759 7.4262092 3705.9786 631.66987 -10591.424 0 355.90561 0.000150767 0.00012846722 + 133500 -6246.7744 -6253.685 6.910645 3712.2417 629.45808 -10595.385 0 331.19689 -0.00020939422 -0.00023797814 + 133510 -6247.2071 -6253.3361 6.1290317 3718.0159 627.38294 -10598.735 0 293.73759 -0.000567221 -0.00059678272 + 133520 -6247.6179 -6252.8273 5.2094047 3721.5888 626.07432 -10600.49 0 249.6639 -0.00081829664 -0.00084333819 + 133530 -6247.9575 -6252.3312 4.3737036 3721.794 625.95466 -10600.08 0 209.61242 -0.00088419023 -0.00090342314 + 133540 -6248.1911 -6252.0159 3.8248008 3718.4166 627.11034 -10597.543 0 183.30592 -0.00073933959 -0.00075638852 + 133550 -6248.3244 -6251.9591 3.634751 3712.341 629.26136 -10593.561 0 174.19766 -0.00042262947 -0.00044254166 + 133560 -6248.3991 -6252.1241 3.724925 3705.3348 631.83066 -10589.29 0 178.51931 -2.7450425e-05 -5.2280523e-05 + 133570 -6248.463 -6252.4142 3.9511848 3699.5104 634.09578 -10586.02 0 189.36295 0.00032763511 0.000300193 + 133580 -6248.5364 -6252.7502 4.2138235 3696.657 635.39113 -10584.798 0 201.95007 0.00053690655 0.00051095042 + 133590 -6248.605 -6253.1039 4.4989233 3697.6978 635.31013 -10586.112 0 215.61365 0.00054004308 0.00051770543 + 133600 -6248.6391 -6253.4743 4.8351576 3702.4423 633.84384 -10589.76 0 231.72788 0.00033886423 0.00031868371 + 133610 -6248.6207 -6253.8473 5.2265686 3709.6706 631.40206 -10594.92 0 250.48649 -4.8938887e-06 -2.6603175e-05 + 133620 -6248.5574 -6254.1788 5.6213997 3717.4847 628.70092 -10600.364 0 269.40902 -0.00038832212 -0.00041466326 + 133630 -6248.4783 -6254.4042 5.9259367 3723.8241 626.54922 -10604.778 0 284.00414 -0.00069717257 -0.00072838066 + 133640 -6248.4184 -6254.4615 6.0431787 3727.0153 625.60149 -10607.078 0 289.62303 -0.00083901586 -0.00087184592 + 133650 -6248.3975 -6254.3206 5.923116 3726.214 626.1549 -10606.69 0 283.86895 -0.0007702153 -0.0007995084 + 133660 -6248.4032 -6254.0099 5.6066528 3721.6265 628.05298 -10603.689 0 268.70226 -0.00050860015 -0.00053065822 + 133670 -6248.3921 -6253.6135 5.2213675 3714.4677 630.72811 -10598.809 0 250.23723 -0.00012873121 -0.00014442705 + 133680 -6248.3183 -6253.2253 4.9070199 3706.6733 633.37358 -10593.272 0 235.17193 0.00025823162 0.00024344576 + 133690 -6248.1668 -6252.8891 4.7223097 3700.407 635.19319 -10588.489 0 226.31958 0.0005354085 0.00051524661 + 133700 -6247.964 -6252.5825 4.6185348 3697.4488 635.64807 -10585.679 0 221.3461 0.00061518684 0.00058723505 + 133710 -6247.7533 -6252.2597 4.5064338 3698.632 634.62128 -10585.513 0 215.97359 0.00046866838 0.00043625154 + 133720 -6247.557 -6251.9161 4.3591632 3703.5432 632.4478 -10587.907 0 208.91556 0.00013858907 0.00010833931 + 133730 -6247.3508 -6251.6216 4.2708865 3710.6293 629.80226 -10592.053 0 204.68485 -0.00027129138 -0.00029435111 + 133740 -6247.0649 -6251.4941 4.4292793 3717.6953 627.48441 -10596.674 0 212.27592 -0.00062850516 -0.00064490393 + 133750 -6246.6109 -6251.6255 5.0146381 3722.6161 626.17643 -10600.418 0 240.3296 -0.00081514684 -0.00083117412 + 133760 -6245.9283 -6252.0023 6.074015 3724.0167 626.24629 -10602.265 0 291.10088 -0.00076734681 -0.00079102361 + 133770 -6245.0393 -6252.4787 7.4394063 3721.6901 627.64517 -10601.814 0 356.53809 -0.00049779212 -0.00053291817 + 133780 -6244.0695 -6252.8402 8.7707072 3716.6086 629.92154 -10599.37 0 420.3415 -9.2061555e-05 -0.00013498005 + 133790 -6243.1856 -6252.9266 9.7409418 3710.5181 632.36389 -10595.809 0 466.84059 0.00032332203 0.00028053683 + 133800 -6242.4921 -6252.7081 10.215914 3705.2973 634.25197 -10592.257 0 489.60394 0.00062879452 0.00059121965 + 133810 -6241.9999 -6252.2484 10.248595 3702.3705 635.12639 -10589.745 0 491.17018 0.00075232537 0.00071866833 + 133820 -6241.6792 -6251.6202 9.9410761 3702.365 634.94645 -10588.932 0 476.43214 0.00068694907 0.00065283047 + 133830 -6241.5063 -6250.8767 9.3703937 3705.0335 634.0579 -10589.968 0 449.08184 0.00048467466 0.00044791683 + 133840 -6241.4599 -6250.088 8.628071 3709.4068 632.99919 -10592.494 0 413.50557 0.00023266174 0.00019488816 + 133850 -6241.5022 -6249.3696 7.8674077 3714.1425 632.25303 -10595.765 0 377.05032 1.9653629e-05 -1.6227134e-05 + 133860 -6241.5823 -6248.8619 7.2796118 3717.9768 632.05924 -10598.898 0 348.87984 -9.5575531e-05 -0.00012860726 + 133870 -6241.657 -6248.674 7.0169419 3720.1171 632.35523 -10601.146 0 336.29123 -0.00010137162 -0.00013351295 + 133880 -6241.7114 -6248.8383 7.1268627 3720.4158 632.84558 -10602.1 0 341.55925 -2.9616917e-05 -6.4044374e-05 + 133890 -6241.7623 -6249.3061 7.543778 3719.2635 633.1574 -10601.727 0 361.54017 6.5479983e-05 2.6873336e-05 + 133900 -6241.846 -6249.9749 8.1288554 3717.2921 633.02027 -10600.287 0 389.58036 0.00013523036 9.319752e-05 + 133910 -6242.0024 -6250.7171 8.7146916 3715.0706 632.40405 -10598.192 0 417.65692 0.00015784058 0.00011558345 + 133920 -6242.2598 -6251.4011 9.1412606 3712.9386 631.55197 -10595.892 0 438.1005 0.00014488861 0.00010670146 + 133930 -6242.6202 -6251.9186 9.2984459 3711.015 630.87803 -10593.812 0 445.6337 0.00013157417 0.00010063035 + 133940 -6243.0528 -6252.2129 9.1600744 3709.3423 630.76225 -10592.317 0 439.00216 0.00015495939 0.00013125051 + 133950 -6243.5105 -6252.2838 8.773298 3708.0732 631.34182 -10591.699 0 420.46567 0.00022946014 0.00020970609 + 133960 -6243.9538 -6252.1714 8.2176361 3707.5684 632.41112 -10592.151 0 393.83523 0.0003329139 0.00031276366 + 133970 -6244.3624 -6251.9464 7.5840226 3708.3039 633.49193 -10593.742 0 363.46892 0.00041330559 0.00038966703 + 133980 -6244.7292 -6251.701 6.9718402 3710.6142 634.04798 -10596.363 0 334.1297 0.00041382485 0.00038555428 + 133990 -6245.0575 -6251.5193 6.4617985 3714.4156 633.74097 -10599.676 0 309.68564 0.0003025193 0.00027026627 + 134000 -6245.3625 -6251.4399 6.0773592 3719.0598 632.60078 -10603.1 0 291.26115 9.2050844e-05 5.845571e-05 + 134010 -6245.6627 -6251.4579 5.7951616 3723.4014 631.02712 -10605.886 0 277.73666 -0.00015824776 -0.0001888644 + 134020 -6245.9593 -6251.5685 5.6091338 3726.0915 629.62849 -10607.288 0 268.82116 -0.00035940306 -0.00038327266 + 134030 -6246.2272 -6251.798 5.5708214 3726.0437 628.98063 -10606.822 0 266.98502 -0.00042495072 -0.00044201984 + 134040 -6246.433 -6252.1768 5.743861 3722.9232 629.40792 -10604.508 0 275.27805 -0.00030761095 -0.00032258542 + 134050 -6246.567 -6252.6781 6.1110999 3717.43 630.86084 -10600.969 0 292.8782 -2.4793753e-05 -4.4434265e-05 + 134060 -6246.659 -6253.1912 6.53222 3711.1959 632.91858 -10597.306 0 313.06064 0.00034053218 0.00031199822 + 134070 -6246.7621 -6253.5632 6.801106 3706.2795 634.91416 -10594.757 0 325.94716 0.00066659529 0.0006303606 + 134080 -6246.917 -6253.6761 6.7591086 3704.4446 636.15182 -10594.273 0 323.93441 0.00083708843 0.00079894307 + 134090 -6247.1256 -6253.5055 6.3798924 3706.5065 636.15146 -10596.163 0 305.76024 0.00078461947 0.00075133106 + 134100 -6247.351 -6253.1287 5.7776474 3712.0053 634.83225 -10599.966 0 276.89728 0.0005160531 0.00049144935 + 134110 -6247.5394 -6252.6867 5.1473163 3719.3287 632.56178 -10604.577 0 246.68828 0.00011102417 9.3941085e-05 + 134120 -6247.65 -6252.322 4.6719906 3726.2392 630.04792 -10608.609 0 223.908 -0.00030464708 -0.0003195076 + 134130 -6247.6776 -6252.1163 4.438701 3730.6071 628.10837 -10610.832 0 212.72746 -0.00060072775 -0.00061930057 + 134140 -6247.6553 -6252.065 4.4096837 3731.0823 627.39326 -10610.541 0 211.33679 -0.00068496133 -0.00070961096 + 134150 -6247.6328 -6252.1111 4.4783759 3727.4755 628.15351 -10607.74 0 214.6289 -0.00053146949 -0.00055913764 + 134160 -6247.6381 -6252.2156 4.5774723 3720.7655 630.14036 -10603.121 0 219.37816 -0.00018631025 -0.00021093335 + 134170 -6247.6534 -6252.4019 4.748485 3712.7926 632.68165 -10597.876 0 227.57404 0.00024917455 0.00023145047 + 134180 -6247.6257 -6252.7274 5.1016551 3705.7736 634.91247 -10593.413 0 244.49994 0.00064892625 0.00063595993 + 134190 -6247.5107 -6253.199 5.6883316 3701.7512 636.07414 -10591.024 0 272.61677 0.00089666294 0.00088148876 + 134200 -6247.3169 -6253.7087 6.39186 3702.0603 635.77098 -10591.54 0 306.3338 0.0009171082 0.00089370737 + 134210 -6247.1123 -6254.058 6.9456773 3706.8987 634.09651 -10595.053 0 332.87583 0.00069902009 0.00066821546 + 134220 -6246.9759 -6254.0742 7.0983502 3715.1372 631.59149 -10600.803 0 340.19277 0.00030406153 0.00027405199 + 134230 -6246.9269 -6253.7391 6.8122139 3724.5222 629.05808 -10607.319 0 326.47951 -0.00014576707 -0.00016588006 + 134240 -6246.8984 -6253.2128 6.3143669 3732.3207 627.30486 -10612.838 0 302.61989 -0.00050476541 -0.00051354013 + 134250 -6246.7901 -6252.7125 5.9223545 3736.2378 626.91226 -10615.863 0 283.83246 -0.00065450618 -0.0006607554 + 134260 -6246.5541 -6252.3376 5.7835152 3735.2283 628.07974 -10615.646 0 277.1785 -0.00054754678 -0.00056363246 + 134270 -6246.2342 -6252.0055 5.7713276 3729.8139 630.5761 -10612.396 0 276.5944 -0.00022254783 -0.00025388683 + 134280 -6245.9202 -6251.5619 5.6416553 3721.7743 633.79396 -10607.13 0 270.37978 0.00021581617 0.00017555765 + 134290 -6245.6615 -6250.9642 5.3026848 3713.4224 636.9023 -10601.289 0 254.13441 0.00063960091 0.00060334056 + 134300 -6245.414 -6250.3675 4.9534746 3706.858 639.07079 -10596.296 0 237.3983 0.00094058138 0.00091738615 + 134310 -6245.0547 -6250.0426 4.9878634 3703.4982 639.70553 -10593.246 0 239.0464 0.0010566223 0.0010445177 + 134320 -6244.4382 -6250.1982 5.7599443 3703.9343 638.62473 -10592.757 0 276.04885 0.00097837003 0.00096515502 + 134330 -6243.4788 -6250.8328 7.3540549 3707.9735 636.12665 -10594.933 0 352.44757 0.00074251646 0.00071361264 + 134340 -6242.2489 -6251.7017 9.4528258 3714.7098 632.92857 -10599.34 0 453.03245 0.00041838095 0.00036734765 + 134350 -6241.0082 -6252.4271 11.418939 3722.6024 629.96208 -10604.992 0 547.25963 9.1982281e-05 2.681793e-05 + 134360 -6240.0551 -6252.7025 12.647426 3729.6865 628.05825 -10610.447 0 606.13562 -0.0001508176 -0.00021239844 + 134370 -6239.5141 -6252.4515 12.937371 3734.0322 627.6574 -10614.141 0 620.03141 -0.0002438576 -0.00028840577 + 134380 -6239.292 -6251.8123 12.520238 3734.3788 628.70104 -10614.892 0 600.04005 -0.00016209728 -0.0001914102 + 134390 -6239.2241 -6250.9723 11.748161 3730.6624 630.73801 -10612.373 0 563.03779 6.4976738e-05 3.6333608e-05 + 134400 -6239.2306 -6250.0217 10.791125 3724.1039 633.14214 -10607.268 0 517.17127 0.00036016579 0.00031844 + 134410 -6239.3401 -6248.9645 9.6244101 3716.7323 635.31706 -10601.014 0 461.25573 0.00062802553 0.00057258868 + 134420 -6239.5975 -6247.8649 8.2674003 3710.5653 636.82843 -10595.259 0 396.22021 0.0007949228 0.00073858782 + 134430 -6239.9725 -6246.965 6.9925094 3706.8953 637.46634 -10591.327 0 335.12028 0.00083808503 0.0007957708 + 134440 -6240.359 -6246.6275 6.2685315 3706.0457 637.25433 -10589.928 0 300.4232 0.0007864727 0.00076263134 + 134450 -6240.6514 -6247.1193 6.4679589 3707.6221 636.40805 -10591.149 0 309.98088 0.00069448317 0.00067975271 + 134460 -6240.8295 -6248.4003 7.57086 3710.9727 635.24681 -10594.62 0 362.83809 0.00060678573 0.00058588529 + 134470 -6240.9925 -6250.0865 9.0940229 3715.5179 634.07936 -10599.684 0 435.8366 0.00053609287 0.0005001953 + 134480 -6241.3059 -6251.636 10.330101 3720.7771 633.10367 -10605.517 0 495.07642 0.00046582543 0.00041935146 + 134490 -6241.8754 -6252.643 10.767657 3726.1753 632.36369 -10611.182 0 516.04653 0.00037314939 0.00032916857 + 134500 -6242.6509 -6253.0313 10.38046 3730.89 631.79054 -10615.712 0 497.48989 0.00025383655 0.0002220965 + 134510 -6243.4646 -6253.0052 9.5406001 3733.9586 631.31283 -10618.277 0 457.23909 0.00013048418 0.00010923897 + 134520 -6244.1682 -6252.8223 8.6541217 3734.6201 630.96895 -10618.411 0 414.75407 4.1455413e-05 2.0458673e-05 + 134530 -6244.726 -6252.6002 7.8741695 3732.6415 630.93836 -10616.18 0 377.37438 2.2989611e-05 -6.2309642e-06 + 134540 -6245.1899 -6252.3089 7.1189725 3728.4098 631.45509 -10612.174 0 341.18111 9.6391077e-05 5.9503379e-05 + 134550 -6245.613 -6251.9077 6.2947412 3722.7924 632.6447 -10607.345 0 301.67932 0.00026168896 0.00022498701 + 134560 -6245.996 -6251.4613 5.4653403 3716.9267 634.38036 -10602.768 0 261.92977 0.00049375068 0.00046476344 + 134570 -6246.2997 -6251.131 4.8312708 3712.0501 636.24746 -10599.429 0 231.5416 0.00074106099 0.00072087326 + 134580 -6246.4889 -6251.0733 4.584379 3709.3401 637.64969 -10598.063 0 219.70916 0.00093267275 0.00091562423 + 134590 -6246.5652 -6251.3426 4.7774415 3709.6833 638.01967 -10599.046 0 228.9618 0.00099682499 0.00097502444 + 134600 -6246.5725 -6251.8617 5.2891299 3713.3774 637.04914 -10602.288 0 253.48478 0.00088724204 0.00085614213 + 134610 -6246.577 -6252.4677 5.8906975 3719.8746 634.84201 -10607.184 0 282.31528 0.00060704341 0.00056843123 + 134620 -6246.6311 -6253.0035 6.3724471 3727.7263 631.92173 -10612.652 0 305.40342 0.00021879146 0.00017927702 + 134630 -6246.7426 -6253.3916 6.6489572 3734.8541 629.08507 -10617.331 0 318.65534 -0.00016743372 -0.00020140586 + 134640 -6246.8762 -6253.6383 6.7621654 3739.141 627.15878 -10619.938 0 324.08091 -0.00042778082 -0.00045453194 + 134650 -6246.9881 -6253.7696 6.7814946 3739.1587 626.74616 -10619.674 0 325.00727 -0.00046900477 -0.00049203652 + 134660 -6247.0653 -6253.7665 6.7011248 3734.7238 628.03769 -10616.528 0 321.1555 -0.00026508268 -0.00028921191 + 134670 -6247.1292 -6253.5695 6.4403836 3727.0293 630.73141 -10611.33 0 308.65932 0.00013001044 0.00010295817 + 134680 -6247.2045 -6253.1518 5.9472752 3718.2842 634.08911 -10605.525 0 285.0268 0.00059881958 0.00057076522 + 134690 -6247.2886 -6252.5844 5.2958203 3711.0208 637.13342 -10600.739 0 253.80542 0.00099894059 0.00097255101 + 134700 -6247.353 -6252.0234 4.6703974 3707.3356 638.94611 -10598.305 0 223.83165 0.001208165 0.0011837244 + 134710 -6247.3748 -6251.6225 4.2477514 3708.3016 638.97322 -10598.897 0 203.57608 0.0011611966 0.0011367732 + 134720 -6247.359 -6251.4531 4.0940739 3713.676 637.22058 -10602.35 0 196.211 0.00086912391 0.00084350377 + 134730 -6247.3281 -6251.5007 4.1726463 3721.9493 634.25934 -10607.709 0 199.97662 0.00041826972 0.00039295182 + 134740 -6247.2899 -6251.7264 4.4364574 3730.7433 631.03737 -10613.507 0 212.61993 -5.2493059e-05 -7.4827242e-05 + 134750 -6247.2194 -6252.1131 4.8937011 3737.4992 628.5674 -10618.18 0 234.53361 -0.00039312833 -0.00041218672 + 134760 -6247.0756 -6252.6471 5.5714527 3740.278 627.60387 -10620.529 0 267.01527 -0.00049185174 -0.00051138417 + 134770 -6246.8399 -6253.2599 6.4199401 3738.3951 628.41403 -10620.069 0 307.67955 -0.00031461511 -0.00034005777 + 134780 -6246.5408 -6253.8072 7.2664071 3732.6375 630.70982 -10617.154 0 348.247 8.228874e-05 4.8175162e-05 + 134790 -6246.2404 -6254.1165 7.8760449 3724.9699 633.7554 -10612.842 0 377.46426 0.00057253451 0.00053211974 + 134800 -6245.9944 -6254.0695 8.0750807 3717.8459 636.61434 -10608.53 0 387.00318 0.0010046182 0.00096389471 + 134810 -6245.816 -6253.6588 7.8427726 3713.385 638.45517 -10605.499 0 375.86967 0.0012531507 0.0012175478 + 134820 -6245.6726 -6252.9839 7.3113299 3712.7217 638.81217 -10604.518 0 350.39995 0.00125752 0.0012282266 + 134830 -6245.5141 -6252.1946 6.6805407 3715.7468 637.7136 -10605.655 0 320.16899 0.0010356825 0.0010091437 + 134840 -6245.3107 -6251.4204 6.1096667 3721.2819 635.63834 -10608.341 0 292.80951 0.00067134283 0.0006422802 + 134850 -6245.069 -6250.7325 5.6634705 3727.5448 633.32282 -10611.6 0 271.42529 0.00028215464 0.00024781801 + 134860 -6244.8161 -6250.1633 5.3471868 3732.6961 631.49296 -10614.352 0 256.26719 -1.8430345e-05 -5.6108132e-05 + 134870 -6244.5638 -6249.758 5.1942068 3735.3098 630.62134 -10615.689 0 248.93554 -0.0001530411 -0.00018915666 + 134880 -6244.2802 -6249.6086 5.3284369 3734.6981 630.79563 -10615.102 0 255.36859 -9.7436582e-05 -0.00012851476 + 134890 -6243.8883 -6249.8255 5.937162 3731.065 631.73594 -10612.626 0 284.54212 0.0001191882 9.1462982e-05 + 134900 -6243.3033 -6250.4489 7.1455918 3725.468 632.94037 -10608.857 0 342.45685 0.00042668097 0.00039566991 + 134910 -6242.5005 -6251.3562 8.8556845 3719.562 633.8978 -10604.816 0 424.41409 0.00073396965 0.00069298254 + 134920 -6241.5764 -6252.2483 10.671876 3715.1272 634.2904 -10601.666 0 511.45618 0.00095422626 0.00090308465 + 134930 -6240.7284 -6252.7654 12.036998 3713.476 634.10968 -10600.351 0 576.88048 0.0010333136 0.00098067834 + 134940 -6240.1279 -6252.6881 12.560207 3714.9621 633.63303 -10601.283 0 601.95558 0.00097249281 0.00092968255 + 134950 -6239.7949 -6252.0742 12.279283 3718.88 633.27044 -10604.225 0 588.49214 0.00082841375 0.00079830844 + 134960 -6239.6206 -6251.1872 11.566597 3723.8743 633.36793 -10608.429 0 554.33623 0.00068189606 0.00065417929 + 134970 -6239.5194 -6250.2596 10.740232 3728.6262 634.07095 -10612.957 0 514.73219 0.00059275839 0.00055300006 + 134980 -6239.5267 -6249.3414 9.8147186 3732.3327 635.28898 -10616.963 0 470.37638 0.00057427781 0.00051918975 + 134990 -6239.7217 -6248.4113 8.689596 3734.6851 636.73753 -10619.834 0 416.4542 0.00060444009 0.00054626874 + 135000 -6240.0856 -6247.599 7.513403 3735.562 638.02634 -10621.187 0 360.08443 0.00065566391 0.00060982693 + 135010 -6240.4865 -6247.2041 6.7175376 3734.8917 638.77895 -10620.875 0 321.9421 0.0007109814 0.00068087937 + 135020 -6240.8051 -6247.4669 6.6617529 3732.8089 638.75656 -10619.032 0 319.26858 0.00075882718 0.00073408013 + 135030 -6241.0402 -6248.3626 7.3223106 3729.8001 637.9392 -10616.102 0 350.92621 0.00078552306 0.00075288795 + 135040 -6241.2981 -6249.6219 8.3237913 3726.589 636.53219 -10612.743 0 398.92279 0.00077969389 0.00073378112 + 135050 -6241.7068 -6250.8991 9.1923299 3723.8529 634.89957 -10609.652 0 440.54802 0.00074186327 0.00068740548 + 135060 -6242.3358 -6251.9219 9.5861181 3722.0035 633.44588 -10607.371 0 459.42056 0.00068674287 0.00063384527 + 135070 -6243.1558 -6252.5644 9.4085492 3721.1343 632.47898 -10606.178 0 450.91047 0.00063568824 0.00059295559 + 135080 -6244.0503 -6252.8553 8.8049502 3721.1104 632.10405 -10606.07 0 421.98262 0.00060489039 0.00057427724 + 135090 -6244.8776 -6252.921 8.0433793 3721.7402 632.20251 -10606.864 0 385.48387 0.00059550055 0.00057162548 + 135100 -6245.5471 -6252.8821 7.3350187 3722.9326 632.51104 -10608.326 0 351.53525 0.00059094116 0.0005655316 + 135110 -6246.052 -6252.7825 6.7305312 3724.7126 632.75716 -10610.252 0 322.56482 0.0005651628 0.0005333407 + 135120 -6246.4394 -6252.6087 6.1693481 3727.0646 632.78162 -10612.455 0 295.66978 0.00049945714 0.00046281921 + 135130 -6246.758 -6252.3628 5.6048148 3729.7319 632.59971 -10614.694 0 268.61417 0.00039804763 0.00036262729 + 135140 -6247.0271 -6252.1069 5.0798265 3732.1602 632.38827 -10616.655 0 243.45379 0.0002923053 0.00026382601 + 135150 -6247.2365 -6251.9457 4.7091361 3733.6542 632.40829 -10618.008 0 225.68822 0.00023029181 0.00021035223 + 135160 -6247.3659 -6251.9703 4.6043441 3733.6735 632.89031 -10618.534 0 220.666 0.00025600889 0.00024128709 + 135170 -6247.4078 -6252.2025 4.7947881 3732.1186 633.92302 -10618.244 0 229.79315 0.00038736385 0.00037191937 + 135180 -6247.3828 -6252.5711 5.1883078 3729.4662 635.38868 -10617.426 0 248.65282 0.00060298775 0.00058218717 + 135190 -6247.3357 -6252.9394 5.6036912 3726.6679 636.9722 -10616.58 0 268.56033 0.00084516176 0.00081868074 + 135200 -6247.3088 -6253.1796 5.8707612 3724.827 638.24397 -10616.251 0 281.35982 0.001039052 0.0010106134 + 135210 -6247.3123 -6253.2464 5.9340941 3724.7788 638.79218 -10616.817 0 284.39509 0.0011200986 0.001093911 + 135220 -6247.3192 -6253.1918 5.8725245 3726.7681 638.3665 -10618.326 0 281.44433 0.0010573085 0.0010342057 + 135230 -6247.2945 -6253.1058 5.8113075 3730.3572 636.98846 -10620.451 0 278.51046 0.00086360613 0.00084047931 + 135240 -6247.2298 -6253.0365 5.8066423 3734.5675 634.98491 -10622.589 0 278.28688 0.00059193535 0.00056499117 + 135250 -6247.1516 -6252.9604 5.8088696 3738.1591 632.91582 -10624.035 0 278.39363 0.00032075995 0.00028938108 + 135260 -6247.0944 -6252.8214 5.727042 3739.9585 631.40314 -10624.183 0 274.47199 0.00013270774 0.00010027256 + 135270 -6247.0701 -6252.5891 5.5190079 3739.1904 630.91226 -10622.692 0 264.50183 8.9553349e-05 6.0799136e-05 + 135280 -6247.0592 -6252.2859 5.2266605 3735.7575 631.56835 -10619.612 0 250.4909 0.00020953693 0.00018714228 + 135290 -6247.0257 -6251.9781 4.9523793 3730.365 633.08598 -10615.429 0 237.3458 0.00045653423 0.00043941795 + 135300 -6246.9359 -6251.7546 4.818736 3724.3965 634.85131 -10611.002 0 230.94087 0.00074845005 0.00073217145 + 135310 -6246.7715 -6251.6975 4.9260407 3719.5415 636.13751 -10607.377 0 236.08351 0.00098358976 0.00096229466 + 135320 -6246.5403 -6251.8415 5.3012443 3717.2857 636.37861 -10605.506 0 254.06537 0.0010755503 0.0010450918 + 135330 -6246.2783 -6252.1447 5.8663648 3718.4108 635.39681 -10605.952 0 281.14912 0.00098484433 0.00094589675 + 135340 -6246.033 -6252.5065 6.4734926 3722.6629 633.49025 -10608.66 0 310.24609 0.0007370915 0.00069576172 + 135350 -6245.83 -6252.8261 6.9961324 3728.743 631.34296 -10612.912 0 335.29392 0.000419896 0.00038426502 + 135360 -6245.6517 -6253.047 7.3952182 3734.7005 629.78994 -10617.537 0 354.42035 0.00015522729 0.00012974296 + 135370 -6245.4526 -6253.1456 7.6929431 3738.6406 629.52467 -10621.311 0 368.689 5.392975e-05 3.6112778e-05 + 135380 -6245.2017 -6253.0881 7.8864228 3739.4611 630.85076 -10623.4 0 377.96163 0.00017013208 0.00015244102 + 135390 -6244.9131 -6252.8149 7.9017392 3737.2801 633.55875 -10623.654 0 378.69568 0.00047682413 0.0004520944 + 135400 -6244.6379 -6252.2813 7.6434273 3733.3491 636.97078 -10622.601 0 366.31592 0.00087490374 0.00084103016 + 135410 -6244.4266 -6251.5188 7.0921666 3729.5011 640.14791 -10621.168 0 339.89642 0.001231631 0.0011924181 + 135420 -6244.2973 -6250.6594 6.362139 3727.3905 642.19733 -10620.247 0 304.9094 0.0014310466 0.0013934049 + 135430 -6244.2259 -6249.9056 5.6797188 3727.8487 642.57023 -10620.325 0 272.204 0.0014155815 0.0013852648 + 135440 -6244.1557 -6249.4649 5.3092383 3730.6051 641.2381 -10621.308 0 254.44849 0.0012040816 0.001182145 + 135450 -6244.0173 -6249.4759 5.4586652 3734.4577 638.6848 -10622.618 0 261.60987 0.00088131999 0.00086296382 + 135460 -6243.7592 -6249.9393 6.1801434 3737.7973 635.72541 -10623.462 0 296.18715 0.00056395294 0.00054096981 + 135470 -6243.3818 -6250.6873 7.3054405 3739.24 633.22122 -10623.149 0 350.1177 0.00035654694 0.00032275683 + 135480 -6242.9471 -6251.44 8.4929024 3738.0986 631.78798 -10621.327 0 407.02753 0.00031560144 0.00027150671 + 135490 -6242.5396 -6251.9459 9.4063189 3734.5488 631.59827 -10618.093 0 450.80358 0.00043510107 0.00038721645 + 135500 -6242.207 -6252.1119 9.9049046 3729.5199 632.35563 -10613.987 0 474.69861 0.00065547548 0.00061023602 + 135510 -6241.939 -6252.0141 10.075136 3724.4147 633.45623 -10609.885 0 482.85705 0.00088788731 0.00084581777 + 135520 -6241.7094 -6251.7938 10.084391 3720.721 634.26865 -10606.783 0 483.30062 0.0010443178 0.0010001285 + 135530 -6241.5291 -6251.5398 10.010636 3719.5599 634.40867 -10605.508 0 479.76586 0.0010668394 0.001015091 + 135540 -6241.4563 -6251.25 9.7936961 3721.2855 633.8953 -10606.431 0 469.36887 0.00094930988 0.00089035947 + 135550 -6241.5552 -6250.8757 9.3204227 3725.3126 633.12966 -10609.318 0 446.68695 0.00074292414 0.00068424925 + 135560 -6241.8397 -6250.405 8.5653659 3730.2862 632.70677 -10613.398 0 410.50039 0.0005399722 0.00049156084 + 135570 -6242.2443 -6249.9247 7.6803419 3734.5674 633.1383 -10617.63 0 368.08508 0.00043833748 0.0004050282 + 135580 -6242.661 -6249.5966 6.9356128 3736.8848 634.60804 -10621.089 0 332.39348 0.00049848217 0.00047545154 + 135590 -6243.0198 -6249.5498 6.5300041 3736.8877 636.8678 -10623.305 0 312.95444 0.00071197949 0.00068816166 + 135600 -6243.3398 -6249.7893 6.4495192 3735.2874 639.31232 -10624.389 0 309.09715 0.0010007294 0.00096750898 + 135610 -6243.6982 -6250.2141 6.5158596 3733.4517 641.19875 -10624.865 0 312.27655 0.001251263 0.0012084429 + 135620 -6244.1592 -6250.7035 6.5443224 3732.6812 641.9282 -10625.313 0 313.64065 0.0013660888 0.0013208619 + 135630 -6244.7294 -6251.1789 6.4495036 3733.5844 641.27798 -10626.041 0 309.0964 0.0013046595 0.0012661794 + 135640 -6245.3601 -6251.6171 6.2570009 3735.8477 639.48281 -10626.948 0 299.87059 0.0010964879 0.0010704535 + 135650 -6245.9745 -6252.0397 6.0652052 3738.4509 637.13065 -10627.621 0 290.67866 0.00082474418 0.00081038017 + 135660 -6246.5043 -6252.484 5.979619 3740.182 634.92938 -10627.595 0 286.57689 0.00058967188 0.00058007327 + 135670 -6246.9227 -6252.9525 6.0298305 3740.2016 633.45114 -10626.605 0 288.98331 0.00046731799 0.00045340635 + 135680 -6247.2568 -6253.3778 6.121012 3738.3996 632.95118 -10624.729 0 293.35324 0.00048095954 0.00045733248 + 135690 -6247.5648 -6253.6497 6.0849145 3735.3903 633.31324 -10622.353 0 291.62325 0.0005974732 0.00056608975 + 135700 -6247.887 -6253.7019 5.8148793 3732.1845 634.12715 -10620.014 0 278.68164 0.00074835346 0.00071667256 + 135710 -6248.2115 -6253.5786 5.3670333 3729.7469 634.86524 -10618.191 0 257.21835 0.00086202025 0.00083677931 + 135720 -6248.4871 -6253.4096 4.9225596 3728.6708 635.09197 -10617.172 0 235.91668 0.00089042413 0.0008724165 + 135730 -6248.6696 -6253.3103 4.6407106 3729.0694 634.62823 -10617.008 0 222.40889 0.00082095897 0.00080522615 + 135740 -6248.7588 -6253.2992 4.5403911 3730.6302 633.61031 -10617.54 0 217.60102 0.00067545741 0.00065612907 + 135750 -6248.7931 -6253.3087 4.5155789 3732.7393 632.42667 -10618.475 0 216.41188 0.0005018982 0.00047680077 + 135760 -6248.8127 -6253.2687 4.4559927 3734.6433 631.56265 -10619.475 0 213.55617 0.00036116667 0.00033219981 + 135770 -6248.8287 -6253.174 4.3453192 3735.6698 631.4164 -10620.26 0 208.25208 0.00030846967 0.00027841276 + 135780 -6248.8271 -6253.0742 4.2470795 3735.4769 632.1549 -10620.706 0 203.54388 0.00037248742 0.00034225206 + 135790 -6248.7952 -6253.0128 4.2176396 3734.2238 633.65591 -10620.893 0 202.13296 0.00054138446 0.00051032069 + 135800 -6248.7368 -6252.9909 4.2541441 3732.5373 635.54671 -10621.075 0 203.88246 0.00076478297 0.00073271974 + 135810 -6248.6637 -6252.9848 4.3211444 3731.2651 637.32197 -10621.572 0 207.09349 0.00097235055 0.00094051349 + 135820 -6248.5795 -6252.9803 4.4007585 3731.1329 638.50443 -10622.618 0 210.90904 0.0010999411 0.001070001 + 135830 -6248.4767 -6252.9794 4.5027249 3732.4593 638.79876 -10624.237 0 215.79584 0.0011115461 0.0010843936 + 135840 -6248.345 -6252.9853 4.6402408 3735.0258 638.18641 -10626.197 0 222.38638 0.0010099878 0.00098552684 + 135850 -6248.1783 -6252.9933 4.815021 3738.1282 636.92732 -10628.049 0 230.76282 0.00083495667 0.00081254972 + 135860 -6247.9734 -6252.9974 5.0240154 3740.7937 635.46709 -10629.258 0 240.77901 0.00064978579 0.00062853656 + 135870 -6247.7291 -6252.9962 5.2670858 3742.1044 634.28153 -10629.382 0 252.4283 0.00052021863 0.00049905823 + 135880 -6247.4481 -6252.9901 5.5419592 3741.5205 633.71217 -10628.223 0 265.60178 0.00049135224 0.00046934868 + 135890 -6247.1403 -6252.9741 5.8337466 3739.0851 633.85179 -10625.911 0 279.58587 0.00057111052 0.00054807907 + 135900 -6246.8218 -6252.9359 6.1140865 3735.4346 634.52286 -10622.893 0 293.02133 0.00072732211 0.00070422859 + 135910 -6246.507 -6252.8625 6.3555541 3731.606 635.35654 -10619.825 0 304.59381 0.00090016059 0.00087865881 + 135920 -6246.2005 -6252.7478 6.547278 3728.7085 635.93944 -10617.396 0 313.7823 0.0010246566 0.0010057765 + 135930 -6245.8967 -6252.588 6.6913263 3727.5736 635.97033 -10616.132 0 320.6859 0.00105365 0.0010366196 + 135940 -6245.5891 -6252.3699 6.780749 3728.5003 635.3707 -10616.241 0 324.97154 0.00097284504 0.0009551498 + 135950 -6245.282 -6252.0675 6.7854549 3731.1682 634.31669 -10617.552 0 325.19707 0.00080469511 0.00078346605 + 135960 -6244.9914 -6251.6615 6.6700728 3734.7327 633.18732 -10619.582 0 319.66732 0.00060212049 0.00057573136 + 135970 -6244.7338 -6251.1699 6.4361145 3738.0642 632.44486 -10621.679 0 308.45472 0.00043422471 0.00040278788 + 135980 -6244.5148 -6250.6627 6.1479497 3740.0759 632.48006 -10623.219 0 294.64424 0.00036607206 0.00033069932 + 135990 -6244.3295 -6250.2384 5.908883 3740.0668 633.46819 -10623.773 0 283.18683 0.00043639939 0.00039842986 + 136000 -6244.1735 -6249.9781 5.8046536 3737.9776 635.28421 -10623.24 0 278.19157 0.00064075879 0.00060193159 + 136010 -6244.0472 -6249.9201 5.8729338 3734.4465 637.51029 -10621.877 0 281.46394 0.00092880348 0.00089160408 + 136020 -6243.9441 -6250.0757 6.1315904 3730.6101 639.54192 -10620.228 0 293.86022 0.0012194663 0.0011858795 + 136030 -6243.8378 -6250.4562 6.6184416 3727.7216 640.77002 -10618.948 0 317.19286 0.0014282803 0.0013969946 + 136040 -6243.6969 -6251.0545 7.3576372 3726.7581 640.78848 -10618.601 0 352.61926 0.0014944978 0.0014597491 + 136050 -6243.5279 -6251.7828 8.2548428 3728.152 639.55464 -10619.489 0 395.61838 0.0013982801 0.0013533642 + 136060 -6243.3992 -6252.4483 9.0491086 3731.6668 637.42987 -10621.545 0 433.68406 0.0011660599 0.0011096287 + 136070 -6243.4034 -6252.8293 9.4259271 3736.4001 635.06729 -10624.297 0 451.74332 0.00086528664 0.00080443282 + 136080 -6243.5816 -6252.804 9.2224223 3740.963 633.18426 -10626.951 0 441.99022 0.00058761408 0.00053405728 + 136090 -6243.882 -6252.4275 8.5455093 3743.8765 632.31399 -10628.618 0 409.54876 0.00042093433 0.00038303565 + 136100 -6244.1927 -6251.8932 7.7005075 3744.1027 632.63472 -10628.631 0 369.05152 0.00041777029 0.00039486333 + 136110 -6244.4178 -6251.4099 6.9920476 3741.4896 633.92935 -10626.829 0 335.09815 0.00057312232 0.00055657483 + 136120 -6244.5335 -6251.089 6.5555688 3736.8917 635.67185 -10623.653 0 314.17964 0.00082326551 0.0008031002 + 136130 -6244.5853 -6250.9223 6.3369847 3731.8642 637.20359 -10619.99 0 303.70386 0.0010687409 0.0010403943 + 136140 -6244.6412 -6250.8467 6.2054372 3728.0566 637.94993 -10616.853 0 297.39937 0.0012134344 0.0011797552 + 136150 -6244.7403 -6250.8256 6.0852223 3726.5875 637.61633 -10615.029 0 291.638 0.0012029077 0.001170721 + 136160 -6244.8716 -6250.8789 6.0073205 3727.674 636.29649 -10614.849 0 287.90451 0.0010448082 0.0010192125 + 136170 -6244.9907 -6251.0494 6.0586815 3730.6452 634.44464 -10616.139 0 290.36601 0.00080284618 0.00078346671 + 136180 -6245.0615 -6251.3357 6.2741818 3734.2965 632.71575 -10618.348 0 300.69399 0.00056837501 0.0005502936 + 136190 -6245.0907 -6251.6522 6.5615609 3737.3954 631.72932 -10620.777 0 314.46681 0.00042363602 0.00040223416 + 136200 -6245.1223 -6251.871 6.7486577 3739.1031 631.84149 -10622.816 0 323.43354 0.00041326912 0.00038844551 + 136210 -6245.1912 -6251.9301 6.7388514 3739.1656 633.01229 -10624.108 0 322.96357 0.00053407062 0.00050926929 + 136220 -6245.2831 -6251.9027 6.6195993 3737.8863 634.82795 -10624.617 0 317.24834 0.00074189275 0.00071885359 + 136230 -6245.3537 -6251.9367 6.5830307 3735.9761 636.67518 -10624.588 0 315.49577 0.00096825377 0.00094378951 + 136240 -6245.3872 -6252.1112 6.7240358 3734.321 637.98975 -10624.422 0 322.25353 0.0011413649 0.0011104883 + 136250 -6245.4246 -6252.3602 6.9355987 3733.6606 638.46532 -10624.486 0 332.3928 0.0012096233 0.0011716666 + 136260 -6245.5252 -6252.541 7.015771 3734.2563 638.13697 -10624.934 0 336.23511 0.0011621327 0.001122639 + 136270 -6245.705 -6252.5645 6.8594529 3735.75 637.32033 -10625.635 0 328.74347 0.0010345964 0.0010006711 + 136280 -6245.9209 -6252.4487 6.5278048 3737.3562 636.44865 -10626.254 0 312.84903 0.00089227585 0.00086656124 + 136290 -6246.1132 -6252.2688 6.1556064 3738.2882 635.88119 -10626.438 0 295.0112 0.0007969967 0.00077625283 + 136300 -6246.2519 -6252.0875 5.8356316 3738.1476 635.7589 -10625.994 0 279.67621 0.00077775136 0.00075622057 + 136310 -6246.3451 -6251.9359 5.5908567 3737.075 635.9623 -10624.973 0 267.94523 0.00082088805 0.0007943547 + 136320 -6246.4202 -6251.8313 5.4110946 3735.6344 636.18497 -10623.651 0 259.33001 0.00088165809 0.00084929545 + 136330 -6246.5031 -6251.7915 5.2883646 3734.5234 636.08641 -10622.401 0 253.44811 0.00090810709 0.00087205045 + 136340 -6246.6071 -6251.8356 5.2284881 3734.2354 635.45727 -10621.528 0 250.57849 0.00086580919 0.00082951283 + 136350 -6246.7305 -6251.9746 5.2440788 3734.8225 634.33226 -10621.129 0 251.32568 0.00075422357 0.00072064637 + 136360 -6246.8628 -6252.1989 5.3361205 3735.8726 633.00899 -10621.08 0 255.73684 0.00060924931 0.00057974708 + 136370 -6246.9934 -6252.4707 5.4773475 3736.7121 631.9595 -10621.142 0 262.50523 0.00049080841 0.00046509673 + 136380 -6247.1178 -6252.7302 5.6124262 3736.7338 631.65463 -10621.119 0 268.97896 0.00045887737 0.0004357262 + 136390 -6247.2386 -6252.9146 5.6759824 3735.6992 632.36052 -10620.974 0 272.02493 0.00054623649 0.00052433441 + 136400 -6247.3624 -6252.9805 5.6181342 3733.8927 633.99319 -10620.866 0 269.25251 0.00073967215 0.00071829702 + 136410 -6247.4944 -6252.9251 5.4307012 3732.0638 636.10558 -10621.094 0 260.26967 0.00097992539 0.00095907946 + 136420 -6247.632 -6252.797 5.165008 3731.1606 638.0275 -10621.985 0 247.53616 0.0011824265 0.0011621861 + 136430 -6247.7641 -6252.6822 4.9181298 3731.9448 639.10965 -10623.737 0 235.70438 0.0012699052 0.0012495422 + 136440 -6247.8828 -6252.6585 4.7756763 3734.6409 638.97473 -10626.274 0 228.8772 0.0012023877 0.001180555 + 136450 -6247.9965 -6252.7448 4.7483556 3738.7653 637.67246 -10629.183 0 227.56784 0.00099332971 0.00096969988 + 136460 -6248.1262 -6252.8951 4.7689473 3743.203 635.67239 -10631.77 0 228.55471 0.00070778545 0.00068441121 + 136470 -6248.2818 -6253.0493 4.7675129 3746.5146 633.69269 -10633.257 0 228.48597 0.00044340422 0.00042347945 + 136480 -6248.4416 -6253.191 4.7494443 3747.408 632.43312 -10633.032 0 227.62002 0.00029787836 0.00028224486 + 136490 -6248.5654 -6253.3441 4.7787713 3745.2484 632.32042 -10630.913 0 229.02553 0.00033143024 0.00031654124 + 136500 -6248.6339 -6253.5093 4.8754461 3740.4068 633.36248 -10627.279 0 233.65873 0.00053935946 0.00051975287 + 136510 -6248.672 -6253.6248 4.9527961 3734.2385 635.15379 -10623.017 0 237.36578 0.00084987342 0.0008232315 + 136520 -6248.7247 -6253.6089 4.8841795 3728.6348 637.01966 -10619.263 0 234.07729 0.0011510849 0.0011205953 + 136530 -6248.8122 -6253.4416 4.629381 3725.3369 638.24956 -10617.028 0 221.86592 0.0013345484 0.0013060944 + 136540 -6248.9115 -6253.1909 4.2793535 3725.336 638.34515 -10616.872 0 205.09063 0.0013344228 0.001311713 + 136550 -6248.9808 -6252.9616 3.9807996 3728.5919 637.1973 -10618.751 0 190.78225 0.0011472137 0.0011295498 + 136560 -6248.9925 -6252.8256 3.8331125 3734.107 635.12644 -10622.059 0 183.70426 0.00082935875 0.0008132296 + 136570 -6248.9448 -6252.7973 3.8524784 3740.2611 632.77263 -10625.831 0 184.63238 0.0004778196 0.00045983363 + 136580 -6248.8499 -6252.8525 4.0026019 3745.2841 630.87943 -10629.016 0 191.82714 0.00020044249 0.00017906591 + 136590 -6248.7214 -6252.9546 4.2332014 3747.7547 630.0502 -10630.759 0 202.87876 8.3375773e-05 5.9153012e-05 + 136600 -6248.568 -6253.0669 4.4988468 3746.9952 630.55694 -10630.619 0 215.60998 0.00016476156 0.0001397456 + 136610 -6248.3878 -6253.1652 4.7774173 3743.2475 632.25855 -10628.671 0 228.96064 0.00042370156 0.00040012483 + 136620 -6248.1622 -6253.2517 5.0894947 3737.5894 634.65142 -10625.493 0 243.91714 0.00078788429 0.00076610589 + 136630 -6247.8639 -6253.3406 5.4767359 3731.6482 637.03607 -10622.025 0 262.47591 0.0011555187 0.001132917 + 136640 -6247.4841 -6253.412 5.9279641 3727.1834 638.74538 -10619.341 0 284.1013 0.0014238531 0.0013967446 + 136650 -6247.0566 -6253.3869 6.3302748 3725.5976 639.35567 -10618.34 0 303.38229 0.0015182879 0.0014859711 + 136660 -6246.6424 -6253.1747 6.5323531 3727.4649 638.80929 -10619.449 0 313.06701 0.00141679 0.0013834631 + 136670 -6246.2785 -6252.7651 6.4865814 3732.2682 637.41353 -10622.447 0 310.87338 0.0011610302 0.0011325278 + 136680 -6245.9432 -6252.2646 6.321407 3738.5341 635.72529 -10626.524 0 302.95729 0.00084481224 0.00082262045 + 136690 -6245.5791 -6251.8233 6.2441711 3744.3687 634.36455 -10630.557 0 299.25571 0.00057932016 0.00055806248 + 136700 -6245.1581 -6251.511 6.3529142 3748.1477 633.81415 -10633.473 0 304.46729 0.00044956229 0.00042129066 + 136710 -6244.7199 -6251.2633 6.5434331 3749.0191 634.26432 -10634.547 0 313.59803 0.00048396229 0.00044573677 + 136720 -6244.3458 -6250.9561 6.6102672 3747.0246 635.55069 -10633.531 0 316.8011 0.00065148598 0.00060909007 + 136730 -6244.0867 -6250.5388 6.452148 3742.8844 637.2105 -10630.634 0 309.22313 0.00088369044 0.00084763572 + 136740 -6243.9115 -6250.1091 6.197594 3737.642 638.64288 -10626.394 0 297.02348 0.0011058276 0.0010826083 + 136750 -6243.7236 -6249.8606 6.1369853 3732.3737 639.3193 -10621.554 0 294.11877 0.0012603616 0.0012461403 + 136760 -6243.4359 -6249.9356 6.4997219 3728.0531 638.97234 -10616.961 0 311.50314 0.0013161391 0.0012986645 + 136770 -6243.0494 -6250.2988 7.2493729 3725.4967 637.6936 -10613.489 0 347.43063 0.001268033 0.001236169 + 136780 -6242.6629 -6250.7532 8.0902859 3725.2319 635.89488 -10611.88 0 387.73189 0.0011353694 0.0010883246 + 136790 -6242.3967 -6251.0965 8.6998466 3727.2757 634.13976 -10612.512 0 416.94546 0.00095981833 0.00090759895 + 136800 -6242.3005 -6251.263 8.9625569 3731.0236 632.92261 -10615.209 0 429.53601 0.00079562055 0.00075069831 + 136810 -6242.3324 -6251.325 8.9925206 3735.4322 632.50212 -10619.259 0 430.97204 0.00069036253 0.00065863284 + 136820 -6242.4122 -6251.3905 8.9782707 3739.4149 632.85677 -10623.662 0 430.28911 0.00066660418 0.00064443447 + 136830 -6242.4838 -6251.5104 9.0265904 3742.2111 633.75542 -10627.477 0 432.60486 0.00071596493 0.00069349848 + 136840 -6242.5472 -6251.6442 9.0970734 3743.5483 634.88795 -10630.081 0 435.9828 0.00080699513 0.0007744743 + 136850 -6242.6565 -6251.6734 9.0169124 3743.5785 635.99277 -10631.245 0 432.14103 0.00090059537 0.0008548065 + 136860 -6242.8849 -6251.4626 8.5777154 3742.6553 636.93361 -10631.052 0 411.09225 0.00096754733 0.00091511405 + 136870 -6243.2584 -6250.9744 7.7160221 3741.0651 637.70486 -10629.744 0 369.79507 0.0010035152 0.00095725351 + 136880 -6243.7082 -6250.3656 6.6574611 3738.8839 638.37714 -10627.627 0 319.06289 0.0010325644 0.0010014567 + 136890 -6244.1052 -6249.9385 5.8333781 3736.1096 639.01949 -10625.068 0 279.56821 0.0010905948 0.001071559 + 136900 -6244.3635 -6249.9353 5.5718578 3732.9993 639.63162 -10622.566 0 267.03469 0.0011945556 0.0011748083 + 136910 -6244.5129 -6250.3559 5.8429908 3730.2857 640.1026 -10620.744 0 280.02891 0.0013199574 0.0012885425 + 136920 -6244.6681 -6250.9834 6.3153558 3728.9864 640.2092 -10620.179 0 302.66729 0.0014066291 0.0013638475 + 136930 -6244.9263 -6251.5804 6.6540414 3729.885 639.67593 -10621.141 0 318.899 0.0013903857 0.0013463184 + 136940 -6245.2929 -6252.0487 6.7558058 3733.0497 638.30093 -10623.399 0 323.77612 0.0012384415 0.0012032089 + 136950 -6245.6956 -6252.4236 6.7279616 3737.7043 636.10313 -10626.231 0 322.44167 0.0009670877 0.00094271928 + 136960 -6246.0586 -6252.7562 6.6976635 3742.4866 633.40992 -10628.653 0 320.98962 0.00063654178 0.00061690659 + 136970 -6246.3589 -6253.0239 6.6649391 3745.9169 630.82126 -10629.762 0 319.42128 0.00033139052 0.00030846191 + 136980 -6246.6266 -6253.1398 6.5132073 3746.8622 629.04278 -10629.045 0 312.14944 0.0001363926 0.00010668122 + 136990 -6246.9026 -6253.0346 6.1319869 3744.8577 628.64299 -10626.535 0 293.87922 0.00011292399 7.9366785e-05 + 137000 -6247.1984 -6252.7311 5.5327174 3740.2325 629.82974 -10622.793 0 265.15886 0.00027959872 0.00024847536 + 137010 -6247.4868 -6252.3554 4.8686237 3734.0495 632.34215 -10618.747 0 233.33176 0.00060212423 0.00057807559 + 137020 -6247.7242 -6252.0779 4.3536907 3727.8934 635.50912 -10615.48 0 208.65329 0.0009977076 0.00098062431 + 137030 -6247.88 -6252.028 4.1479359 3723.5287 638.45453 -10614.011 0 198.79236 0.0013555972 0.0013410971 + 137040 -6247.9524 -6252.2382 4.2857346 3722.4528 640.37206 -10615.063 0 205.39645 0.0015691653 0.0015516078 + 137050 -6247.966 -6252.6401 4.6740713 3725.4231 640.77532 -10618.838 0 224.00772 0.0015697576 0.001545558 + 137060 -6247.9606 -6253.099 5.1383374 3732.1128 639.64694 -10624.859 0 246.25796 0.0013510722 0.0013207279 + 137070 -6247.9759 -6253.4673 5.4914228 3741.0518 637.44306 -10631.962 0 263.1798 0.0009756382 0.00094370559 + 137080 -6248.03 -6253.6455 5.6155233 3749.9284 634.94954 -10638.523 0 269.12739 0.00056008685 0.00053270141 + 137090 -6248.1036 -6253.6271 5.5235571 3756.2093 633.03123 -10642.868 0 264.71985 0.00024124266 0.00022193959 + 137100 -6248.1483 -6253.4896 5.3413175 3757.9229 632.35294 -10643.765 0 255.9859 0.00013092691 0.0001175892 + 137110 -6248.1244 -6253.3251 5.200697 3754.3536 633.16006 -10640.839 0 249.24658 0.00027395748 0.00025995636 + 137120 -6248.036 -6253.169 5.133061 3746.3656 635.1855 -10634.72 0 246.00509 0.00062715275 0.00060634395 + 137130 -6247.9287 -6252.9968 5.0680346 3736.1729 637.71514 -10626.885 0 242.88866 0.0010713107 0.0010426058 + 137140 -6247.8513 -6252.7817 4.9303986 3726.617 639.80651 -10619.205 0 236.29236 0.0014532317 0.0014208187 + 137150 -6247.8203 -6252.5421 4.7217724 3720.2433 640.60726 -10613.393 0 226.29383 0.0016400612 0.0016098163 + 137160 -6247.8175 -6252.3297 4.512167 3718.5332 639.6658 -10610.529 0 216.24836 0.0015641496 0.0015399046 + 137170 -6247.8093 -6252.1935 4.3842474 3721.5301 637.10892 -10610.833 0 210.11774 0.0012438947 0.0012258402 + 137180 -6247.7619 -6252.1632 4.4012616 3727.9321 633.60984 -10613.705 0 210.93315 0.00077606524 0.00076087652 + 137190 -6247.6528 -6252.2481 4.5952685 3735.5893 630.16212 -10617.999 0 220.23105 0.00030278116 0.00028491504 + 137200 -6247.4847 -6252.4239 4.9392444 3742.2301 627.75274 -10622.407 0 236.71631 -3.6200305e-05 -6.1599512e-05 + 137210 -6247.2947 -6252.6235 5.328855 3746.1483 627.05272 -10625.825 0 255.38863 -0.00014837402 -0.00018179698 + 137220 -6247.1344 -6252.7695 5.6350971 3746.6141 628.22327 -10627.607 0 270.06547 -1.3350708e-05 -4.9670468e-05 + 137230 -6247.0282 -6252.8375 5.8093219 3743.9315 630.89224 -10627.661 0 278.4153 0.00031910422 0.00028721428 + 137240 -6246.9486 -6252.88 5.9314636 3739.2231 634.30137 -10626.404 0 284.26902 0.00075156422 0.00072782024 + 137250 -6246.8384 -6252.9701 6.1316214 3734.0706 637.56744 -10624.608 0 293.8617 0.0011698409 0.0011513499 + 137260 -6246.6626 -6253.111 6.4484083 3730.0914 639.96153 -10623.164 0 309.04391 0.0014730989 0.0014530221 + 137270 -6246.4416 -6253.2002 6.758561 3728.5065 641.11039 -10622.817 0 323.90817 0.0015987069 0.0015722459 + 137280 -6246.2364 -6253.0869 6.8505419 3729.7872 641.05724 -10623.931 0 328.31641 0.001537839 0.0015063165 + 137290 -6246.0973 -6252.6855 6.5882074 3733.5067 640.1713 -10626.363 0 315.74386 0.0013359254 0.0013055458 + 137300 -6246.0222 -6252.0543 6.0321701 3738.4874 638.95185 -10629.494 0 289.09544 0.0010743106 0.001050834 + 137310 -6245.9584 -6251.3816 5.4231666 3743.2147 637.81574 -10632.412 0 259.90857 0.00083839835 0.00082225755 + 137320 -6245.843 -6250.889 5.0459904 3746.3551 636.95954 -10634.204 0 241.83217 0.00068647426 0.00067212984 + 137330 -6245.6446 -6250.7188 5.0741953 3747.1652 636.34393 -10634.228 0 243.18391 0.00063344018 0.00061326035 + 137340 -6245.3801 -6250.8695 5.4893694 3745.6307 635.78413 -10632.284 0 263.08138 0.00065482229 0.0006246323 + 137350 -6245.1015 -6251.2126 6.1110951 3742.3068 635.08709 -10628.607 0 292.87797 0.00070630117 0.00066878403 + 137360 -6244.8612 -6251.5726 6.7114212 3737.9793 634.16877 -10623.721 0 321.64896 0.00074828578 0.00071180016 + 137370 -6244.6756 -6251.8202 7.1445556 3733.3513 633.10661 -10618.278 0 342.40719 0.00076429819 0.00073756687 + 137380 -6244.5103 -6251.9268 7.4165283 3728.9233 632.11414 -10612.964 0 355.44165 0.00076519425 0.00075100505 + 137390 -6244.2988 -6251.9509 7.6520301 3725.0881 631.455 -10608.494 0 366.72822 0.00077754479 0.0007695341 + 137400 -6243.9937 -6251.9631 7.9694129 3722.3174 631.33438 -10605.615 0 381.93898 0.00082209597 0.00080744906 + 137410 -6243.6186 -6251.9564 8.337786 3721.2518 631.81232 -10605.021 0 399.59349 0.00089444562 0.00086218185 + 137420 -6243.28 -6251.8201 8.5400861 3722.5515 632.77307 -10607.145 0 409.28884 0.00096141544 0.00091145251 + 137430 -6243.1028 -6251.4321 8.329281 3726.5161 633.96152 -10611.91 0 399.18588 0.0009791813 0.00092450331 + 137440 -6243.1256 -6250.8174 7.6918052 3732.6854 635.07316 -10618.576 0 368.63447 0.00092357467 0.00088140694 + 137450 -6243.251 -6250.2151 6.9640538 3739.7421 635.86687 -10625.824 0 333.75653 0.00081052703 0.00078826334 + 137460 -6243.3164 -6249.9448 6.6284106 3745.8879 636.26257 -10632.095 0 317.67063 0.00069028841 0.00067863355 + 137470 -6243.2294 -6250.1577 6.9282855 3749.5235 636.38484 -10636.066 0 332.04232 0.00062060484 0.00060111035 + 137480 -6243.0481 -6250.7019 7.6537791 3749.8159 636.52137 -10637.039 0 366.81204 0.00064013513 0.00060088608 + 137490 -6242.9311 -6251.2428 8.3116604 3746.8552 636.99239 -10635.09 0 398.3414 0.00075839716 0.00070353202 + 137500 -6243.0029 -6251.527 8.5241171 3741.4524 637.97394 -10630.953 0 408.52352 0.00095983935 0.00090461593 + 137510 -6243.261 -6251.5391 8.278088 3734.8507 639.35945 -10625.749 0 396.73243 0.0012084049 0.0011657688 + 137520 -6243.6078 -6251.4355 7.827777 3728.511 640.74019 -10620.687 0 375.151 0.0014471331 0.0014187651 + 137530 -6243.9511 -6251.3713 7.4201991 3723.9028 641.53231 -10616.806 0 355.61757 0.0016024971 0.0015804769 + 137540 -6244.2687 -6251.3917 7.1229972 3722.1907 641.20722 -10614.79 0 341.374 0.0016037396 0.0015784742 + 137550 -6244.5993 -6251.4413 6.8419295 3723.8606 639.5299 -10614.832 0 327.90365 0.0014127023 0.0013798761 + 137560 -6244.9934 -6251.4377 6.4443022 3728.4554 636.69459 -10616.588 0 308.84712 0.0010479246 0.0010106093 + 137570 -6245.4658 -6251.3543 5.8885527 3734.5873 633.28862 -10619.23 0 282.21249 0.00058848646 0.0005541539 + 137580 -6245.9779 -6251.264 5.2861457 3740.2941 630.10211 -10621.66 0 253.34176 0.00015333977 0.00012807385 + 137590 -6246.4625 -6251.3129 4.8503741 3743.6672 627.87814 -10622.858 0 232.45714 -0.00013671736 -0.00015275855 + 137600 -6246.87 -6251.6297 4.7596249 3743.5279 627.10618 -10622.264 0 228.10793 -0.0001995932 -0.00021218623 + 137610 -6247.1995 -6252.2316 5.0321443 3739.8699 627.91043 -10620.012 0 241.16859 -1.966483e-05 -3.6175152e-05 + 137620 -6247.4945 -6252.995 5.5004753 3733.8812 630.03459 -10616.911 0 263.61364 0.00034667566 0.00032260047 + 137630 -6247.8107 -6253.712 5.9013545 3727.5391 632.90994 -10614.161 0 282.82602 0.00078911318 0.00075994427 + 137640 -6248.1746 -6254.1953 6.0206985 3722.9436 635.79595 -10612.935 0 288.54566 0.0011788619 0.0011511362 + 137650 -6248.5635 -6254.3639 5.8004175 3721.6404 637.97299 -10613.977 0 277.98855 0.0014089837 0.0013884811 + 137660 -6248.9172 -6254.2622 5.3450462 3724.1623 638.94248 -10617.367 0 256.1646 0.0014253032 0.0014129066 + 137670 -6249.1757 -6254.0119 4.8362353 3729.9197 638.57361 -10622.505 0 231.77953 0.0012383607 0.0012293186 + 137680 -6249.3145 -6253.7323 4.4177843 3737.4306 637.14464 -10628.308 0 211.72501 0.00091531131 0.00090229135 + 137690 -6249.3581 -6253.4822 4.1241065 3744.7696 635.25592 -10633.508 0 197.65032 0.00055749064 0.00053542655 + 137700 -6249.3625 -6253.2566 3.8941173 3750.0713 633.63192 -10636.96 0 186.62795 0.00027161863 0.00024112581 + 137710 -6249.3806 -6253.0342 3.6535667 3751.962 632.87147 -10637.868 0 175.09942 0.00014147314 0.0001084606 + 137720 -6249.4308 -6252.8282 3.3974117 3749.8654 633.23553 -10635.929 0 162.82303 0.00020538618 0.00017719275 + 137730 -6249.4899 -6252.6992 3.2092241 3744.1585 634.55524 -10631.413 0 153.80403 0.00044459186 0.00042539627 + 137740 -6249.5102 -6252.7231 3.2129645 3736.1409 636.29352 -10625.157 0 153.98328 0.0007866037 0.0007749508 + 137750 -6249.445 -6252.9438 3.4987194 3727.775 637.7311 -10618.45 0 167.67826 0.001124265 0.0011137974 + 137760 -6249.2741 -6253.3355 4.0614682 3721.2145 638.20784 -10612.758 0 194.64835 0.0013459615 0.0013288163 + 137770 -6249.0189 -6253.7933 4.7743828 3718.218 637.34381 -10609.355 0 228.81521 0.0013689332 0.0013403972 + 137780 -6248.7417 -6254.1614 5.4196528 3719.6043 635.1758 -10608.941 0 259.74017 0.0011669339 0.0011290839 + 137790 -6248.5131 -6254.3056 5.7924533 3724.9224 632.16711 -10611.395 0 277.60687 0.00078412366 0.00074557479 + 137800 -6248.3612 -6254.1967 5.8355407 3732.4919 629.08411 -10615.773 0 279.67185 0.00032823896 0.0002987242 + 137810 -6248.2426 -6253.9351 5.6925558 3739.886 626.77846 -10620.6 0 272.81921 -5.9771785e-05 -7.6976685e-05 + 137820 -6248.0739 -6253.6704 5.5964192 3744.7552 625.94507 -10624.371 0 268.21181 -0.00025312049 -0.0002645951 + 137830 -6247.8068 -6253.4665 5.6597148 3745.6812 626.9228 -10626.071 0 271.24529 -0.00018614564 -0.00020359254 + 137840 -6247.4782 -6253.2376 5.7594213 3742.6669 629.58209 -10625.487 0 276.02378 0.00012046038 8.9787506e-05 + 137850 -6247.1855 -6252.83 5.6444238 3737.0303 633.33047 -10623.191 0 270.51246 0.00056906338 0.00052845535 + 137860 -6247.0054 -6252.1848 5.179308 3730.7942 637.25808 -10620.237 0 248.2215 0.0010246115 0.00098511665 + 137870 -6246.9316 -6251.4326 4.5009902 3725.9157 640.40601 -10617.754 0 215.71271 0.0013643531 0.0013357774 + 137880 -6246.8828 -6250.8387 3.9559211 3723.702 642.07118 -10616.612 0 189.58994 0.0015153449 0.0014986557 + 137890 -6246.763 -6250.6462 3.8831583 3724.5732 642.02398 -10617.243 0 186.10273 0.001467925 0.0014545839 + 137900 -6246.5268 -6250.929 4.402169 3728.131 640.54892 -10619.609 0 210.97664 0.0012665549 0.0012448309 + 137910 -6246.2134 -6251.5435 5.3300703 3733.3884 638.29741 -10623.229 0 255.44688 0.00098696105 0.00095091577 + 137920 -6245.928 -6252.2139 6.2859202 3739.0305 636.01659 -10627.261 0 301.25657 0.00071017816 0.00066494312 + 137930 -6245.7633 -6252.7072 6.9438909 3743.6577 634.26801 -10630.633 0 332.79022 0.00050178322 0.00046009458 + 137940 -6245.7176 -6252.9741 7.2565065 3746.055 633.25906 -10632.288 0 347.77251 0.00039915451 0.0003705478 + 137950 -6245.695 -6253.1294 7.4343989 3745.5215 632.8555 -10631.506 0 356.29811 0.00040517868 0.00038692824 + 137960 -6245.6016 -6253.2825 7.6808863 3742.155 632.74312 -10628.181 0 368.11117 0.00048863275 0.00046742315 + 137970 -6245.4416 -6253.3856 7.9440344 3736.8713 632.6318 -10622.889 0 380.7227 0.00059569842 0.00055919359 + 137980 -6245.3164 -6253.2572 7.9407567 3731.0486 632.39736 -10616.703 0 380.56562 0.00067395313 0.00062184168 + 137990 -6245.3288 -6252.7596 7.4308151 3725.9638 632.11295 -10610.836 0 356.12635 0.00069906303 0.00064372176 + 138000 -6245.4854 -6251.9643 6.4789606 3722.3654 631.97919 -10606.309 0 310.50815 0.00068686996 0.000643371 + 138010 -6245.6878 -6251.1558 5.4680247 3720.4219 632.19825 -10603.776 0 262.05842 0.00068015314 0.00065443733 + 138020 -6245.8095 -6250.6682 4.8586794 3720.0076 632.85117 -10603.527 0 232.85518 0.00071693793 0.00070172535 + 138030 -6245.7846 -6250.6815 4.8969373 3721.0602 633.83103 -10605.573 0 234.68871 0.00080108603 0.00078200107 + 138040 -6245.6448 -6251.1277 5.4829264 3723.721 634.86104 -10609.71 0 262.7726 0.00089470079 0.00086107743 + 138050 -6245.4891 -6251.7598 6.2707362 3728.1424 635.59413 -10615.496 0 300.52887 0.00093775718 0.00088977121 + 138060 -6245.4127 -6252.3171 6.9044026 3734.096 635.75957 -10622.173 0 330.89771 0.00088364973 0.00083094781 + 138070 -6245.4453 -6252.6573 7.2120444 3740.6788 635.29976 -10628.636 0 345.64164 0.00072983776 0.0006836345 + 138080 -6245.5445 -6252.7741 7.2295363 3746.3796 634.4355 -10633.589 0 346.47995 0.00052602618 0.00049147568 + 138090 -6245.6436 -6252.7226 7.0790154 3749.5361 633.61718 -10635.876 0 339.26614 0.00035614848 0.00033057563 + 138100 -6245.7024 -6252.5496 6.8472035 3748.9648 633.36192 -10634.876 0 328.15641 0.00030435098 0.00028104364 + 138110 -6245.7203 -6252.2874 6.5671159 3744.4599 634.02982 -10630.777 0 314.73304 0.0004200149 0.00039300105 + 138120 -6245.7178 -6251.9838 6.2660421 3736.9664 635.63213 -10624.582 0 300.3039 0.0006939229 0.00066038315 + 138130 -6245.7184 -6251.7076 5.9891145 3728.3821 637.76308 -10617.853 0 287.03197 0.001053815 0.0010143322 + 138140 -6245.7417 -6251.5259 5.7842729 3721.041 639.69868 -10612.266 0 277.21481 0.0013836002 0.0013414093 + 138150 -6245.7949 -6251.4863 5.6913973 3717.0135 640.63597 -10609.136 0 272.76369 0.0015621863 0.0015215352 + 138160 -6245.8683 -6251.6101 5.7418101 3717.4439 639.98825 -10609.042 0 275.17975 0.0015075629 0.0014715132 + 138170 -6245.9418 -6251.8856 5.9437529 3722.1631 637.62605 -10611.675 0 284.85799 0.0012083415 0.0011774066 + 138180 -6245.9994 -6252.2622 6.2628128 3729.7088 633.97011 -10615.941 0 300.14913 0.00073141333 0.00070385145 + 138190 -6246.0372 -6252.6673 6.6301611 3737.7431 629.89611 -10620.307 0 317.75452 0.00020421762 0.00017709068 + 138200 -6246.0603 -6253.0338 6.9734802 3743.7456 626.48031 -10623.26 0 334.2083 -0.00022285186 -0.00025294306 + 138210 -6246.0832 -6253.3086 7.2253525 3745.7936 624.67002 -10623.772 0 346.27943 -0.00042372297 -0.00045974779 + 138220 -6246.1368 -6253.4353 7.2985215 3743.1868 624.98485 -10621.607 0 349.7861 -0.00033892695 -0.00038141056 + 138230 -6246.2629 -6253.3541 7.0912403 3736.6792 627.34326 -10617.377 0 339.85202 3.6389376e-06 -4.1544773e-05 + 138240 -6246.4813 -6253.0541 6.5727558 3728.212 631.07532 -10612.341 0 315.00334 0.00049938216 0.00045801502 + 138250 -6246.7568 -6252.6295 5.8727804 3720.2718 635.13089 -10608.032 0 281.45659 0.00100394 0.000970367 + 138260 -6247.0153 -6252.2501 5.2347182 3715.1553 638.42176 -10605.827 0 250.87707 0.0013785182 0.0013500306 + 138270 -6247.2083 -6252.0395 4.8312349 3714.3749 640.17178 -10606.586 0 231.53989 0.0015268597 0.0014963039 + 138280 -6247.3565 -6251.9816 4.6250576 3718.287 640.13852 -10610.407 0 221.65871 0.0014177808 0.0013808344 + 138290 -6247.5259 -6251.9612 4.43528 3725.9561 638.63074 -10616.548 0 212.56351 0.0010932749 0.0010534126 + 138300 -6247.7557 -6251.9103 4.1545655 3735.3257 636.33883 -10623.575 0 199.11009 0.00065937348 0.00062497409 + 138310 -6248.0134 -6251.9096 3.8961803 3743.7632 634.0676 -10629.74 0 186.72682 0.00025558642 0.00023159837 + 138320 -6248.2238 -6252.1361 3.9123488 3748.8845 632.4797 -10633.5 0 187.5017 7.7832071e-06 -9.8401316e-06 + 138330 -6248.3415 -6252.6962 4.3547329 3749.3529 631.92674 -10633.976 0 208.70323 -1.7165042e-05 -3.8597301e-05 + 138340 -6248.3996 -6253.5016 5.1020147 3745.294 632.39222 -10631.188 0 244.51717 0.00016671514 0.00013399565 + 138350 -6248.4898 -6254.3009 5.8111455 3738.1449 633.5357 -10625.982 0 278.5027 0.000476073 0.00043409093 + 138360 -6248.6902 -6254.8381 6.1479517 3730.0444 634.81648 -10619.699 0 294.64434 0.00079561605 0.00075467892 + 138370 -6248.9989 -6255.0051 6.0061906 3723.0765 635.66936 -10613.751 0 287.85036 0.0010218612 0.00099237324 + 138380 -6249.3322 -6254.8762 5.5439814 3718.6958 635.68914 -10609.261 0 265.6987 0.0010940317 0.0010782443 + 138390 -6249.5879 -6254.6148 5.0269081 3717.5049 634.76723 -10606.887 0 240.91764 0.0010034411 0.00099376757 + 138400 -6249.7187 -6254.342 4.6233852 3719.3322 633.12949 -10606.804 0 221.57856 0.00078518805 0.00077001628 + 138410 -6249.7567 -6254.0706 4.3139093 3723.4387 631.25726 -10608.766 0 206.74674 0.000501651 0.00047379676 + 138420 -6249.7794 -6253.7411 3.9616473 3728.724 629.71877 -10612.184 0 189.86437 0.00022506819 0.00018663875 + 138430 -6249.8504 -6253.3185 3.4680979 3733.9169 628.97556 -10616.211 0 166.21071 2.2023955e-05 -1.7411867e-05 + 138440 -6249.9757 -6252.8677 2.8919814 3737.799 629.23799 -10619.905 0 138.59997 -5.9639411e-05 -8.9961474e-05 + 138450 -6250.1031 -6252.55 2.446944 3739.4804 630.41897 -10622.449 0 117.27129 -9.3616506e-07 -1.8584118e-05 + 138460 -6250.1573 -6252.5356 2.3783018 3738.6665 632.18978 -10623.392 0 113.98157 0.00018273514 0.000172328 + 138470 -6250.087 -6252.8877 2.800605 3735.7908 634.10126 -10622.78 0 134.22071 0.00044333134 0.00042965401 + 138480 -6249.8951 -6253.5018 3.6066901 3731.905 635.71942 -10621.126 0 172.85283 0.0007115759 0.00068662239 + 138490 -6249.6332 -6254.1509 4.5176935 3728.3153 636.73427 -10619.2 0 216.51322 0.00091751601 0.00088163259 + 138500 -6249.3613 -6254.6146 5.2532978 3726.0979 637.01923 -10617.732 0 251.76751 0.0010143244 0.00097575124 + 138510 -6249.0958 -6254.8024 5.7065824 3725.72 636.63607 -10617.158 0 273.49145 0.0009945407 0.00096256018 + 138520 -6248.7916 -6254.7719 5.9803405 3726.9634 635.79273 -10617.528 0 286.61147 0.0008887693 0.00086582056 + 138530 -6248.3829 -6254.6267 6.2437424 3729.1665 634.76973 -10618.563 0 299.23517 0.00074636707 0.0007259734 + 138540 -6247.8528 -6254.3903 6.5374514 3731.591 633.83428 -10619.816 0 313.31135 0.00061011446 0.00058258156 + 138550 -6247.2657 -6253.9791 6.7133517 3733.6704 633.16432 -10620.814 0 321.74148 0.0005008362 0.00046167716 + 138560 -6246.7301 -6253.2972 6.567109 3735.0377 632.80639 -10621.141 0 314.73271 0.00041934138 0.00037312567 + 138570 -6246.3211 -6252.3649 6.0437948 3735.4228 632.68543 -10620.473 0 289.65256 0.00036005213 0.0003165989 + 138580 -6246.028 -6251.366 5.3380735 3734.5808 632.66444 -10618.611 0 255.83043 0.00032388537 0.00029015451 + 138590 -6245.7693 -6250.5711 4.8017588 3732.3588 632.62801 -10615.558 0 230.12722 0.00032097325 0.00029538776 + 138600 -6245.4595 -6250.1847 4.7251595 3728.8764 632.5497 -10611.611 0 226.45615 0.00036287496 0.00033675365 + 138610 -6245.0735 -6250.2308 5.1573253 3724.67 632.50647 -10607.407 0 247.16797 0.00045175523 0.00041668424 + 138620 -6244.6608 -6250.5626 5.9017855 3720.6419 632.62545 -10603.83 0 282.84668 0.00057502749 0.00052993969 + 138630 -6244.2987 -6250.9866 6.6878745 3717.7878 632.98544 -10601.76 0 320.52047 0.0007083768 0.00066010709 + 138640 -6244.0231 -6251.3929 7.3698727 3716.8568 633.53108 -10601.781 0 353.20565 0.00082305331 0.00077977761 + 138650 -6243.8058 -6251.7789 7.973165 3718.1512 634.06306 -10603.993 0 382.11881 0.0008911612 0.00085494102 + 138660 -6243.6026 -6252.1578 8.5552066 3721.5332 634.32361 -10608.015 0 410.0135 0.00088800997 0.00085368297 + 138670 -6243.415 -6252.4694 9.054467 3726.5057 634.13264 -10613.108 0 433.94086 0.00079759179 0.00075845818 + 138680 -6243.2926 -6252.5989 9.3063517 3732.2258 633.4997 -10618.324 0 446.01259 0.00062503684 0.00057884879 + 138690 -6243.2837 -6252.4722 9.188449 3737.5154 632.65858 -10622.646 0 440.36203 0.00040842464 0.00035838101 + 138700 -6243.3933 -6252.1187 8.7253224 3741.0358 632.00883 -10625.163 0 418.16641 0.00021671287 0.00016825212 + 138710 -6243.5815 -6251.6603 8.0788446 3741.6558 631.9785 -10625.295 0 387.18356 0.00012891203 8.5791575e-05 + 138720 -6243.7894 -6251.2538 7.4644102 3738.875 632.85056 -10622.979 0 357.73642 0.00020207116 0.00016414701 + 138730 -6243.973 -6251.017 7.0439934 3733.1247 634.61702 -10618.759 0 337.58769 0.00044219142 0.00040614662 + 138740 -6244.1274 -6250.9766 6.8491986 3725.79 636.92177 -10613.688 0 328.25203 0.00079234274 0.00075503533 + 138750 -6244.2804 -6251.0784 6.7979497 3718.8705 639.12436 -10609.073 0 325.79589 0.0011464368 0.0011079298 + 138760 -6244.4575 -6251.2594 6.8019328 3714.3503 640.47823 -10606.088 0 325.98679 0.0013851639 0.0013480996 + 138770 -6244.652 -6251.5077 6.8557412 3713.5289 640.3787 -10605.415 0 328.56559 0.0014185057 0.0013843147 + 138780 -6244.8367 -6251.84 7.0032945 3716.6002 638.60043 -10607.041 0 335.63717 0.0012166032 0.0011830879 + 138790 -6245.004 -6252.2259 7.2219117 3722.6166 635.42853 -10610.271 0 346.11453 0.00081942246 0.00078299126 + 138800 -6245.1841 -6252.5634 7.3793484 3729.7736 631.61223 -10613.949 0 353.65978 0.00032632834 0.00028635996 + 138810 -6245.4114 -6252.7495 7.3380921 3735.8908 628.14168 -10616.782 0 351.68255 -0.0001297189 -0.00016991292 + 138820 -6245.6822 -6252.7686 7.0863657 3739.0085 625.93269 -10617.71 0 339.61841 -0.0004194502 -0.00045633569 + 138830 -6245.9561 -6252.691 6.7349792 3738.0017 625.54314 -10616.236 0 322.77799 -0.0004584355 -0.00049195888 + 138840 -6246.1963 -6252.5936 6.3973624 3733.0031 627.01482 -10612.612 0 306.5975 -0.00023724807 -0.00027038714 + 138850 -6246.3978 -6252.5024 6.1046408 3725.415 629.87384 -10607.791 0 292.56864 0.00017365673 0.00013816134 + 138860 -6246.5772 -6252.4061 5.8289523 3717.4797 633.27706 -10603.163 0 279.3561 0.00064716605 0.00060901656 + 138870 -6246.7506 -6252.3009 5.5503596 3711.579 636.26252 -10600.142 0 266.00437 0.0010409156 0.0010019944 + 138880 -6246.9235 -6252.2122 5.2886999 3709.5128 638.03333 -10599.758 0 253.46417 0.0012416084 0.0012046287 + 138890 -6247.0927 -6252.1914 5.0986618 3711.9626 638.18631 -10602.34 0 244.35648 0.0011986697 0.0011659023 + 138900 -6247.2454 -6252.3045 5.059073 3718.2856 636.8128 -10607.403 0 242.45916 0.00093786189 0.00090978631 + 138910 -6247.3616 -6252.6089 5.2473881 3726.7179 634.44636 -10613.773 0 251.48428 0.00055043425 0.00052466078 + 138920 -6247.4294 -6253.1045 5.675068 3734.9407 631.88343 -10619.929 0 271.9811 0.00016070357 0.00013281043 + 138930 -6247.467 -6253.6906 6.2236135 3740.7992 629.9324 -10624.422 0 298.27048 -0.00011604857 -0.0001492557 + 138940 -6247.5203 -6254.1896 6.6692641 3742.8925 629.16136 -10626.243 0 319.62856 -0.0002088217 -0.00024631075 + 138950 -6247.6291 -6254.4387 6.8096222 3740.8609 629.72358 -10625.023 0 326.35531 -0.0001073983 -0.00014452028 + 138960 -6247.7927 -6254.376 6.583239 3735.3737 631.32773 -10621.077 0 315.50575 0.00014149917 0.0001091301 + 138970 -6247.9734 -6254.0488 6.0753453 3727.8983 633.36604 -10615.313 0 291.16463 0.00045273359 0.00042594986 + 138980 -6248.1289 -6253.5597 5.4307747 3720.3081 635.14142 -10609.009 0 260.2732 0.00072914848 0.00070531347 + 138990 -6248.2402 -6253.0149 4.7746994 3714.3891 636.09824 -10603.502 0 228.83038 0.00088965251 0.00086521089 + 139000 -6248.3141 -6252.5071 4.1930398 3711.378 635.97871 -10599.864 0 200.95399 0.00089198084 0.00086491823 + 139010 -6248.3705 -6252.1193 3.7488006 3711.6786 634.86856 -10598.666 0 179.66356 0.00074316671 0.00071394291 + 139020 -6248.4271 -6251.9259 3.4988464 3714.8371 633.13402 -10599.897 0 167.68435 0.00049438643 0.0004653062 + 139030 -6248.4874 -6251.9855 3.4981709 3719.7456 631.28185 -10603.013 0 167.65198 0.0002225009 0.00019603256 + 139040 -6248.5363 -6252.3222 3.7858837 3724.9958 629.79563 -10607.114 0 181.44079 4.9490117e-06 -1.8066536e-05 + 139050 -6248.5482 -6252.8999 4.3517305 3729.2831 629.00343 -10611.186 0 208.55934 -0.0001037572 -0.00012473171 + 139060 -6248.503 -6253.6084 5.1054119 3731.7501 629.01043 -10614.369 0 244.67998 -8.6582461e-05 -0.00010809005 + 139070 -6248.3991 -6254.2853 5.8861429 3732.158 629.7003 -10616.144 0 282.097 3.4702481e-05 1.0715973e-05 + 139080 -6248.2516 -6254.7729 6.5212858 3730.8378 630.79315 -10616.404 0 312.53661 0.00021098912 0.00018406277 + 139090 -6248.0815 -6254.9729 6.8914364 3728.4743 631.94542 -10615.393 0 330.2763 0.00038501166 0.00035573592 + 139100 -6247.9081 -6254.8608 6.9527067 3725.8371 632.86896 -10613.567 0 333.21272 0.00051087355 0.00048030931 + 139110 -6247.7464 -6254.4692 6.7227611 3723.5534 633.4286 -10611.451 0 322.19243 0.00056762593 0.00053722891 + 139120 -6247.6009 -6253.8737 6.2728019 3721.9704 633.67249 -10609.517 0 300.62786 0.00056306341 0.00053425545 + 139130 -6247.4588 -6253.1849 5.7261786 3721.1372 633.77754 -10608.1 0 274.43061 0.00052618504 0.00049908707 + 139140 -6247.2976 -6252.5218 5.2241658 3720.9136 633.93778 -10607.373 0 250.37134 0.00049056392 0.00046334098 + 139150 -6247.1058 -6251.9689 4.8630802 3721.141 634.25086 -10607.361 0 233.06609 0.00047639338 0.00044668575 + 139160 -6246.8923 -6251.5602 4.6679485 3721.7527 634.65488 -10607.968 0 223.71428 0.00048120685 0.0004484944 + 139170 -6246.6712 -6251.3086 4.6373798 3722.7505 634.94309 -10609.002 0 222.24926 0.00048411743 0.00045026432 + 139180 -6246.4382 -6251.2412 4.8030184 3724.0889 634.85402 -10610.184 0 230.18759 0.00045965236 0.00042688442 + 139190 -6246.167 -6251.3902 5.2231824 3725.5735 634.20401 -10611.168 0 250.32421 0.00039268565 0.00036138626 + 139200 -6245.8323 -6251.7442 5.9119173 3726.8428 633.0052 -10611.592 0 283.33225 0.00028819136 0.00025703571 + 139210 -6245.4339 -6252.2223 6.7884229 3727.4281 631.50991 -10611.16 0 325.33932 0.00017373829 0.00014161681 + 139220 -6244.997 -6252.7054 7.7084463 3726.8708 630.14924 -10609.725 0 369.432 9.3683283e-05 6.0653644e-05 + 139230 -6244.5548 -6253.0879 8.5330719 3724.9029 629.38093 -10607.372 0 408.95268 9.3454301e-05 5.9744732e-05 + 139240 -6244.1427 -6253.2906 9.1478108 3721.6606 629.50478 -10604.456 0 438.41442 0.00019643621 0.00016177562 + 139250 -6243.804 -6253.2458 9.4418553 3717.8 630.52128 -10601.567 0 452.50668 0.00038507546 0.00034997838 + 139260 -6243.5762 -6252.9187 9.3424686 3714.3676 632.0965 -10599.383 0 447.74352 0.00060083156 0.00056746546 + 139270 -6243.4574 -6252.3621 8.9046962 3712.4411 633.66245 -10598.466 0 426.76301 0.00076596861 0.00073588903 + 139280 -6243.4004 -6251.7205 8.3200852 3712.7422 634.62941 -10599.092 0 398.74517 0.000814173 0.00078528209 + 139290 -6243.3589 -6251.1422 7.7833436 3715.397 634.62742 -10601.167 0 373.0215 0.00071439621 0.00068200451 + 139300 -6243.3335 -6250.6916 7.3581226 3719.8634 633.66848 -10604.224 0 352.64252 0.0004826286 0.00044452437 + 139310 -6243.3606 -6250.3616 7.0009977 3724.9862 632.15496 -10607.503 0 335.52709 0.00018267769 0.00014236989 + 139320 -6243.459 -6250.1611 6.7021286 3729.2223 630.73241 -10610.116 0 321.20361 -8.6515007e-05 -0.00012252323 + 139330 -6243.5998 -6250.1609 6.5610626 3731.0917 630.04856 -10611.301 0 314.44293 -0.00022076322 -0.00024890743 + 139340 -6243.7327 -6250.4408 6.7080916 3729.7495 630.50767 -10610.698 0 321.48939 -0.0001516639 -0.00017431653 + 139350 -6243.8346 -6251.0006 7.1660488 3725.4145 632.10306 -10608.518 0 343.43727 0.00011959922 9.6552782e-05 + 139360 -6243.9322 -6251.7312 7.7989998 3719.404 634.38768 -10605.523 0 373.77183 0.00051475338 0.00048666305 + 139370 -6244.082 -6252.4668 8.3847117 3713.7207 636.60511 -10602.793 0 401.84243 0.00090335927 0.00086942463 + 139380 -6244.3327 -6253.0618 8.7290859 3710.3485 637.94916 -10601.359 0 418.34677 0.0011497177 0.0011121279 + 139390 -6244.7009 -6253.4299 8.7290878 3710.5323 637.86133 -10601.824 0 418.34687 0.0011617949 0.0011234674 + 139400 -6245.1717 -6253.5387 8.3670398 3714.3139 636.24763 -10604.1 0 400.9955 0.00092355688 0.00088692761 + 139410 -6245.7077 -6253.3971 7.6894017 3720.4905 633.52492 -10607.413 0 368.51927 0.00050081415 0.00046780785 + 139420 -6246.2541 -6253.0644 6.8102215 3727.0097 630.4793 -10610.553 0 326.38403 2.002659e-05 -8.4070069e-06 + 139430 -6246.7482 -6252.6555 5.9072581 3731.6613 627.99752 -10612.314 0 283.10895 -0.00037339283 -0.00039852876 + 139440 -6247.1444 -6252.3064 5.1620213 3732.8294 626.77617 -10611.912 0 247.39302 -0.00056415207 -0.000589622 + 139450 -6247.4389 -6252.1106 4.6716738 3730.0333 627.10672 -10609.251 0 223.89282 -0.00050566611 -0.00053511046 + 139460 -6247.6687 -6252.0866 4.4179341 3724.0623 628.79465 -10604.944 0 211.73219 -0.00023300538 -0.0002669023 + 139470 -6247.8811 -6252.2088 4.3277545 3716.6746 631.22848 -10600.112 0 207.41028 0.00015380411 0.0001189686 + 139480 -6248.0992 -6252.4639 4.3646329 3710.0013 633.57819 -10596.043 0 209.1777 0.00052718464 0.00049626795 + 139490 -6248.3105 -6252.8694 4.5588667 3705.8941 635.06626 -10593.83 0 218.48647 0.00077403271 0.00074933899 + 139500 -6248.4857 -6253.4341 4.948381 3705.4252 635.22557 -10594.085 0 237.15418 0.00082785747 0.0008074146 + 139510 -6248.6097 -6254.0995 5.4898528 3708.6547 634.05377 -10596.808 0 263.10455 0.00068363549 0.00066302745 + 139520 -6248.6986 -6254.7259 6.0273854 3714.671 632.00526 -10601.402 0 288.86613 0.00039470576 0.00037072439 + 139530 -6248.7884 -6255.1425 6.3541276 3721.8618 629.82078 -10606.825 0 304.52545 5.4429814e-05 2.7468897e-05 + 139540 -6248.9064 -6255.2297 6.3233027 3728.3458 628.25898 -10611.834 0 303.04814 -0.00023274859 -0.00025929761 + 139550 -6249.0486 -6254.9762 5.9276163 3732.4732 627.83458 -10615.284 0 284.08463 -0.00038336993 -0.00040592911 + 139560 -6249.183 -6254.4792 5.2962029 3733.2697 628.66153 -10616.41 0 253.82376 -0.00036012157 -0.00037763696 + 139570 -6249.2722 -6253.8936 4.6213157 3730.6919 630.44833 -10615.034 0 221.47938 -0.0001813102 -0.00019598241 + 139580 -6249.2971 -6253.3649 4.0678011 3725.6073 632.62669 -10611.599 0 194.95185 8.8251995e-05 7.2506565e-05 + 139590 -6249.2658 -6252.9813 3.7154596 3719.5002 634.55075 -10607.032 0 178.06567 0.00036066022 0.00034087721 + 139600 -6249.2062 -6252.7622 3.5560374 3714.0026 635.6938 -10602.459 0 170.42527 0.00055384312 0.00053010931 + 139610 -6249.1457 -6252.6838 3.5381154 3710.411 635.78491 -10598.88 0 169.56634 0.00061658478 0.00059217558 + 139620 -6249.0904 -6252.722 3.631624 3709.347 634.85502 -10596.924 0 174.0478 0.00054218091 0.00052134475 + 139630 -6249.0129 -6252.8818 3.8688957 3710.6673 633.19185 -10596.741 0 185.41919 0.00036663098 0.00035114286 + 139640 -6248.861 -6253.1857 4.3247093 3713.6337 631.22943 -10598.049 0 207.26434 0.00015207884 0.00013896032 + 139650 -6248.5874 -6253.6247 5.0372507 3717.2523 629.41409 -10600.291 0 241.41332 -3.8001524e-05 -5.5419974e-05 + 139660 -6248.1844 -6254.1105 5.9260535 3720.6229 628.08871 -10602.822 0 284.00973 -0.00016125438 -0.00018895898 + 139670 -6247.6984 -6254.4826 6.784154 3723.146 627.42473 -10605.053 0 325.13473 -0.00020665594 -0.00024517175 + 139680 -6247.2053 -6254.5818 7.3765477 3724.5284 627.41307 -10606.523 0 353.52555 -0.00018895963 -0.00023214397 + 139690 -6246.7589 -6254.3444 7.5854424 3724.6572 627.90953 -10606.911 0 363.53696 -0.00013266078 -0.00017168057 + 139700 -6246.3544 -6253.8393 7.4848945 3723.4902 628.71655 -10606.046 0 358.71814 -5.6321674e-05 -8.6045205e-05 + 139710 -6245.9394 -6253.2186 7.2791722 3721.0683 629.6705 -10603.957 0 348.85878 3.4027719e-05 1.1273251e-05 + 139720 -6245.4622 -6252.6226 7.1604467 3717.6283 630.69685 -10600.948 0 343.16878 0.0001413078 0.00011737805 + 139730 -6244.9123 -6252.1107 7.1984572 3713.6991 631.80643 -10597.616 0 344.99046 0.00026837435 0.00023482789 + 139740 -6244.331 -6251.6546 7.3236112 3710.0754 633.0333 -10594.763 0 350.98854 0.00040914416 0.00036291985 + 139750 -6243.7888 -6251.1853 7.3964392 3707.6421 634.34639 -10593.174 0 354.47887 0.00054428951 0.00049027495 + 139760 -6243.3409 -6250.6688 7.327917 3707.1007 635.58417 -10593.354 0 351.1949 0.00064450209 0.00059321049 + 139770 -6242.9823 -6250.1712 7.1889148 3708.7164 636.4569 -10595.345 0 344.53313 0.00068056096 0.00064148727 + 139780 -6242.6366 -6249.8556 7.2190184 3712.2166 636.6317 -10598.704 0 345.97587 0.0006344432 0.00060896391 + 139790 -6242.1994 -6249.8857 7.6862485 3716.8887 635.87458 -10602.649 0 368.36816 0.00050525915 0.00048464575 + 139800 -6241.6186 -6250.2906 8.6720109 3721.7963 634.191 -10606.278 0 415.61142 0.00030953075 0.00028078761 + 139810 -6240.9536 -6250.9034 9.9497645 3725.9638 631.89776 -10608.765 0 476.84854 8.0339192e-05 3.6320659e-05 + 139820 -6240.358 -6251.4434 11.085396 3728.4646 629.57561 -10609.484 0 531.27438 -0.00013247608 -0.00018675339 + 139830 -6239.9773 -6251.6949 11.717513 3728.4894 627.89628 -10608.081 0 561.56898 -0.00026614707 -0.00031719063 + 139840 -6239.8471 -6251.6393 11.792236 3725.5374 627.38191 -10604.559 0 565.1501 -0.0002612339 -0.00029846444 + 139850 -6239.8941 -6251.4225 11.528378 3719.7529 628.20157 -10599.377 0 552.50455 -9.0818681e-05 -0.00011539088 + 139860 -6240.0451 -6251.1934 11.148313 3712.2047 630.09335 -10593.491 0 534.28973 0.0002123752 0.0001896572 + 139870 -6240.3254 -6250.9821 10.656701 3704.8011 632.43763 -10588.221 0 510.7289 0.00055317323 0.00052226656 + 139880 -6240.8526 -6250.7315 9.8788927 3699.7133 634.45219 -10584.897 0 473.45197 0.00080551311 0.00076556975 + 139890 -6241.7294 -6250.4248 8.6953892 3698.518 635.45319 -10584.396 0 416.73184 0.00086612269 0.00082490878 + 139900 -6242.908 -6250.1624 7.2543312 3701.4954 635.10287 -10586.761 0 347.66825 0.00070324193 0.00066947389 + 139910 -6244.158 -6250.118 5.9600504 3707.503 633.53509 -10591.156 0 285.63906 0.00037123062 0.00034749018 + 139920 -6245.2324 -6250.4296 5.1971864 3714.5457 631.27234 -10596.248 0 249.07833 -2.126375e-05 -3.9074718e-05 + 139930 -6246.0417 -6251.1255 5.0837835 3720.6101 628.99706 -10600.733 0 243.64343 -0.00036149076 -0.00037987378 + 139940 -6246.6311 -6252.1164 5.4852384 3724.2192 627.3402 -10603.676 0 262.8834 -0.00056433421 -0.00058813374 + 139950 -6247.0883 -6253.2209 6.1325645 3724.6694 626.73657 -10604.627 0 293.9069 -0.00058661316 -0.00061672396 + 139960 -6247.4946 -6254.2172 6.7225983 3722.1021 627.31767 -10603.637 0 322.18463 -0.00043480054 -0.00046776759 + 139970 -6247.8994 -6254.9173 7.0179179 3717.4108 628.86456 -10601.193 0 336.338 -0.00016280595 -0.00019285123 + 139980 -6248.3049 -6255.2324 6.9275033 3711.9693 630.86467 -10598.066 0 332.00483 0.00014393695 0.00012115685 + 139990 -6248.6742 -6255.1878 6.5136035 3707.2577 632.6733 -10595.119 0 312.16843 0.00039361532 0.00037802204 + 140000 -6248.9645 -6254.8806 5.9160806 3704.4915 633.7261 -10593.098 0 283.53178 0.00051364337 0.00050092061 + 140010 -6249.1603 -6254.4173 5.2570434 3704.3306 633.72197 -10592.47 0 251.94702 0.00046962 0.00045448015 + 140020 -6249.2817 -6253.8832 4.601543 3706.7192 632.70915 -10593.312 0 220.53176 0.00027408528 0.00025392895 + 140030 -6249.3645 -6253.3529 3.9884233 3710.8951 631.04964 -10595.298 0 191.14762 -1.6599706e-05 -4.0457818e-05 + 140040 -6249.434 -6252.9123 3.4783604 3715.5944 629.28365 -10597.79 0 166.70255 -0.0003177723 -0.00034181251 + 140050 -6249.4934 -6252.6546 3.1612421 3719.4169 627.94734 -10600.019 0 151.50446 -0.00054169589 -0.0005629488 + 140060 -6249.5299 -6252.6458 3.1159702 3721.2486 627.4058 -10601.3 0 149.33477 -0.00062505027 -0.00064265927 + 140070 -6249.5277 -6252.8913 3.3635938 3720.5985 627.75041 -10601.24 0 161.20229 -0.00054882055 -0.00056374464 + 140080 -6249.4754 -6253.3309 3.8555008 3717.7386 628.78441 -10599.854 0 184.77723 -0.0003433019 -0.00035717619 + 140090 -6249.3661 -6253.8662 4.5000745 3713.6012 630.09447 -10597.562 0 215.66882 -7.7097596e-05 -9.1528244e-05 + 140100 -6249.1972 -6254.3934 5.19615 3709.4776 631.18588 -10595.057 0 249.02867 0.00016510662 0.0001486133 + 140110 -6248.9749 -6254.8187 5.8437447 3706.6172 631.64426 -10593.08 0 280.06503 0.00030837814 0.00028866673 + 140120 -6248.7209 -6255.0593 6.3383758 3705.8468 631.27611 -10592.182 0 303.77053 0.00030974932 0.00028694622 + 140130 -6248.4678 -6255.0525 6.5846078 3707.3145 630.1799 -10592.547 0 315.57135 0.00017134237 0.00014757578 + 140140 -6248.2398 -6254.7843 6.5444691 3710.4348 628.71739 -10593.937 0 313.64768 -5.9498472e-05 -8.1093308e-05 + 140150 -6248.0326 -6254.3109 6.2782397 3714.0724 627.39195 -10595.775 0 300.88847 -0.00030492039 -0.00032281414 + 140160 -6247.8187 -6253.7345 5.9157902 3716.9314 626.67916 -10597.345 0 283.51786 -0.00048323079 -0.00049926032 + 140170 -6247.5769 -6253.1416 5.5647223 3718.0149 626.87178 -10598.028 0 266.69271 -0.00053793104 -0.00055587608 + 140180 -6247.3166 -6252.5609 5.2443334 3716.9582 627.98838 -10597.507 0 251.33788 -0.00045635849 -0.00047826316 + 140190 -6247.0689 -6251.9876 4.9186835 3714.0984 629.76803 -10595.854 0 235.73091 -0.00027003365 -0.00029392194 + 140200 -6246.8534 -6251.4501 4.596611 3710.2881 631.74822 -10593.486 0 220.29539 -3.8817731e-05 -6.0260163e-05 + 140210 -6246.6522 -6251.0478 4.3956808 3706.5835 633.40258 -10591.034 0 210.66569 0.00017161963 0.00015543958 + 140220 -6246.4141 -6250.9199 4.5057954 3703.9508 634.29837 -10589.169 0 215.943 0.00030936413 0.00029672122 + 140230 -6246.0852 -6251.1652 5.0799304 3703.0619 634.22635 -10588.453 0 243.45877 0.00034797334 0.00033324465 + 140240 -6245.6433 -6251.771 6.127711 3704.1771 633.26191 -10589.21 0 293.67429 0.0002898124 0.00026721165 + 140250 -6245.1218 -6252.5931 7.4713815 3707.0946 631.73498 -10591.423 0 358.07052 0.00016198167 0.00012989662 + 140260 -6244.6063 -6253.3967 8.79043 3711.1675 630.11352 -10594.678 0 421.28673 6.3476659e-06 -3.0554904e-05 + 140270 -6244.1942 -6253.9479 9.753765 3715.4084 628.83702 -10598.193 0 467.45515 -0.00013333983 -0.00016627418 + 140280 -6243.9322 -6254.1168 10.184607 3718.7057 628.16403 -10600.987 0 488.10352 -0.00022347197 -0.00024571796 + 140290 -6243.7874 -6253.9233 10.135972 3720.1397 628.10014 -10602.163 0 485.77265 -0.00024957526 -0.00026264691 + 140300 -6243.6883 -6253.4791 9.7907708 3719.3072 628.43817 -10601.224 0 469.22867 -0.00022102489 -0.00023492562 + 140310 -6243.6028 -6252.8755 9.2726519 3716.4806 628.88473 -10598.241 0 444.39751 -0.000168039 -0.00019391396 + 140320 -6243.5685 -6252.1327 8.5641736 3712.4637 629.20582 -10593.802 0 410.44325 -0.00012765279 -0.00016857098 + 140330 -6243.6455 -6251.2605 7.6150024 3708.2056 629.32253 -10588.789 0 364.95364 -0.00012284962 -0.00017091128 + 140340 -6243.8427 -6250.3593 6.5165551 3704.4134 629.31949 -10584.092 0 312.30988 -0.00014765775 -0.00019009644 + 140350 -6244.0942 -6249.6493 5.5550779 3701.4042 629.37185 -10580.425 0 266.2305 -0.00017018117 -0.00019922978 + 140360 -6244.3016 -6249.3791 5.0775411 3699.2467 629.63225 -10578.258 0 243.34426 -0.00015378738 -0.00017216154 + 140370 -6244.4049 -6249.6769 5.2720125 3698.0368 630.13394 -10577.848 0 252.66442 -8.3516086e-05 -0.0001013829 + 140380 -6244.4255 -6250.458 6.0325863 3698.0632 630.75403 -10579.275 0 289.11538 1.9472368e-05 -6.809042e-06 + 140390 -6244.453 -6251.4683 7.0153622 3699.7092 631.25255 -10582.43 0 336.21552 0.00010545441 7.0192066e-05 + 140400 -6244.5829 -6252.4326 7.8496978 3703.1361 631.37207 -10586.941 0 376.20156 0.0001221409 8.5384399e-05 + 140410 -6244.8514 -6253.1939 8.3425373 3707.9736 630.95923 -10592.127 0 399.8212 4.3663306e-05 1.3802136e-05 + 140420 -6245.2232 -6253.7367 8.5135157 3713.2627 630.0575 -10597.057 0 408.01544 -0.000114763 -0.00013570748 + 140430 -6245.6432 -6254.0987 8.4555437 3717.7262 628.92689 -10600.752 0 405.2371 -0.00030338409 -0.0003205212 + 140440 -6246.0915 -6254.2777 8.1862852 3720.2105 627.97186 -10602.46 0 392.33272 -0.00045861987 -0.00047846 + 140450 -6246.583 -6254.2299 7.6469447 3720.0601 627.59594 -10601.886 0 366.4845 -0.00052563519 -0.00055010313 + 140460 -6247.1211 -6253.945 6.8238908 3717.2903 628.03696 -10599.272 0 327.03914 -0.00047540437 -0.00050108588 + 140470 -6247.6672 -6253.5032 5.8360049 3712.5649 629.25133 -10595.32 0 279.6941 -0.00031466688 -0.00033674517 + 140480 -6248.1602 -6253.0552 4.894989 3707.0383 630.89916 -10590.993 0 234.59534 -8.7352527e-05 -0.0001036598 + 140490 -6248.5562 -6252.7511 4.1949601 3702.094 632.43968 -10587.285 0 201.04603 0.00013521797 0.00012318297 + 140500 -6248.8487 -6252.6808 3.8321126 3699.0119 633.30269 -10584.995 0 183.65634 0.00027495864 0.00026372457 + 140510 -6249.0609 -6252.8513 3.7903883 3698.6256 633.07929 -10584.556 0 181.65668 0.00027252228 0.00025915034 + 140520 -6249.2276 -6253.2018 3.9742388 3701.0598 631.67086 -10585.932 0 190.46782 0.00010899205 9.2774326e-05 + 140530 -6249.376 -6253.64 4.2639176 3705.6347 629.34633 -10588.621 0 204.35086 -0.00018384582 -0.0002014313 + 140540 -6249.514 -6254.0819 4.5679041 3711.0011 626.68263 -10591.766 0 218.9196 -0.00052925798 -0.00054628213 + 140550 -6249.6301 -6254.4695 4.8393924 3715.5116 624.40132 -10594.382 0 231.93084 -0.00082755155 -0.00084359673 + 140560 -6249.7102 -6254.7562 5.045984 3717.7331 623.15076 -10595.64 0 241.83187 -0.00098833892 -0.0010047258 + 140570 -6249.7556 -6254.8898 5.1341609 3716.9176 623.30252 -10595.11 0 246.0578 -0.00096142018 -0.00097939987 + 140580 -6249.7825 -6254.8281 5.045567 3713.2421 624.82715 -10592.897 0 241.81188 -0.00075390345 -0.0007729201 + 140590 -6249.8028 -6254.5833 4.7805625 3707.7408 627.29333 -10589.617 0 229.11138 -0.0004273192 -0.00044553985 + 140600 -6249.8082 -6254.2434 4.4352307 3701.9831 629.99708 -10586.224 0 212.56114 -7.7455301e-05 -9.4089805e-05 + 140610 -6249.7785 -6253.9345 4.1559513 3697.6257 632.18244 -10583.743 0 199.17651 0.00019470825 0.00017800874 + 140620 -6249.7044 -6253.748 4.0435341 3695.9544 633.27939 -10582.982 0 193.78884 0.00031222123 0.00029268468 + 140630 -6249.6013 -6253.6943 4.0930186 3697.5123 633.0778 -10584.284 0 196.16042 0.00024475163 0.00022137827 + 140640 -6249.4983 -6253.7204 4.2220899 3701.9077 631.77944 -10587.408 0 202.34624 1.8962995e-05 -5.9528844e-06 + 140650 -6249.4126 -6253.7719 4.3592916 3707.8888 629.91296 -10591.574 0 208.92171 -0.00028797622 -0.00031049875 + 140660 -6249.3311 -6253.8383 4.5072683 3713.7069 628.14418 -10595.689 0 216.01359 -0.00057285307 -0.00059094086 + 140670 -6249.2222 -6253.942 4.7198561 3717.6765 627.04992 -10598.668 0 226.20199 -0.00074246148 -0.00075802306 + 140680 -6249.067 -6254.0863 5.0192955 3718.7273 626.93289 -10599.747 0 240.55281 -0.00074727303 -0.0007646147 + 140690 -6248.8814 -6254.2232 5.3418505 3716.7257 627.73709 -10598.686 0 256.01145 -0.00059779707 -0.00061978691 + 140700 -6248.7071 -6254.2756 5.5684898 3712.4446 629.08735 -10595.808 0 266.87328 -0.00035680955 -0.00038219523 + 140710 -6248.5802 -6254.1915 5.6113701 3707.2214 630.43527 -10591.848 0 268.92834 -0.00011254999 -0.00013668472 + 140720 -6248.504 -6253.9838 5.4797445 3702.4717 631.25758 -10587.713 0 262.6201 5.4162683e-05 3.588828e-05 + 140730 -6248.4473 -6253.7224 5.2750748 3699.262 631.23523 -10584.22 0 252.81118 9.571183e-05 8.4408336e-05 + 140740 -6248.3661 -6253.4898 5.1236756 3698.0823 630.35175 -10581.924 0 245.55528 8.4982055e-06 7.3555716e-07 + 140750 -6248.2335 -6253.3288 5.0953007 3698.8459 628.88199 -10581.057 0 244.1954 -0.0001722517 -0.00018238522 + 140760 -6248.0576 -6253.2171 5.1594796 3701.0425 627.28186 -10581.541 0 247.27121 -0.00038916702 -0.00040618162 + 140770 -6247.8777 -6253.0863 5.2086528 3703.9397 626.02385 -10583.05 0 249.62787 -0.00058315556 -0.00060689743 + 140780 -6247.7376 -6252.8807 5.1430888 3706.7593 625.4404 -10585.08 0 246.48567 -0.00070957573 -0.00073497311 + 140790 -6247.6508 -6252.6218 4.9710409 3708.8152 625.63165 -10587.069 0 238.24017 -0.00074559077 -0.00076619692 + 140800 -6247.582 -6252.4279 4.8458191 3709.635 626.46544 -10588.528 0 232.23884 -0.00068983813 -0.00070310738 + 140810 -6247.4671 -6252.4518 4.9847861 3709.0764 627.65866 -10589.187 0 238.89892 -0.00055904128 -0.00056916932 + 140820 -6247.2615 -6252.7669 5.5053559 3707.3976 628.89832 -10589.063 0 263.84754 -0.000384277 -0.00039958123 + 140830 -6246.9843 -6253.2848 6.3005524 3705.2066 629.95228 -10588.444 0 301.95782 -0.00020503818 -0.00023119054 + 140840 -6246.7143 -6253.7885 7.0741276 3703.2535 630.72924 -10587.771 0 339.03189 -5.8222519e-05 -9.284845e-05 + 140850 -6246.5313 -6254.07 7.5386653 3702.1368 631.26822 -10587.475 0 361.29514 3.545149e-05 1.3749501e-06 + 140860 -6246.4454 -6254.068 7.6225667 3702.0886 631.66744 -10587.824 0 365.31617 7.8167342e-05 5.2348706e-05 + 140870 -6246.3892 -6253.8795 7.4902528 3702.9846 631.99249 -10588.857 0 358.97494 8.6594655e-05 6.7969536e-05 + 140880 -6246.2885 -6253.6346 7.34612 3704.5522 632.21554 -10590.402 0 352.06729 7.2477488e-05 5.1863831e-05 + 140890 -6246.1406 -6253.36 7.2193865 3706.5738 632.21792 -10592.152 0 345.99351 2.8792858e-05 -2.3390924e-06 + 140900 -6246.0181 -6252.9759 6.9578109 3708.8802 631.85166 -10593.708 0 333.45734 -6.426435e-05 -0.00010531219 + 140910 -6245.9909 -6252.4325 6.4416121 3711.1482 631.02574 -10594.606 0 308.7182 -0.00021655185 -0.00025817718 + 140920 -6246.0492 -6251.8345 5.785292 3712.7431 629.77572 -10594.353 0 277.26365 -0.00040813196 -0.00044116661 + 140930 -6246.1109 -6251.4073 5.2963815 3712.8496 628.28615 -10592.543 0 253.83232 -0.00059065741 -0.00061424442 + 140940 -6246.1001 -6251.3283 5.2281773 3710.8608 626.85479 -10589.044 0 250.56359 -0.00070925242 -0.00073020408 + 140950 -6246.008 -6251.5989 5.5909299 3706.7459 625.80665 -10584.151 0 267.94873 -0.00072716786 -0.00075250175 + 140960 -6245.8801 -6252.0772 6.1970587 3701.1524 625.38554 -10578.615 0 296.99782 -0.0006378753 -0.00066913564 + 140970 -6245.7623 -6252.6031 6.8407688 3695.2395 625.66397 -10573.507 0 327.84803 -0.00046432263 -0.00049844489 + 140980 -6245.6698 -6253.0724 7.4026117 3690.3888 626.5076 -10569.969 0 354.77469 -0.00025308001 -0.00028658357 + 140990 -6245.6012 -6253.4214 7.8202289 3687.8887 627.60981 -10568.92 0 374.78925 -6.5907019e-05 -9.7110525e-05 + 141000 -6245.5614 -6253.5956 8.0341592 3688.6057 628.58837 -10570.79 0 385.04199 3.4968558e-05 6.6681659e-06 + 141010 -6245.5618 -6253.5612 7.9993448 3692.6861 629.11793 -10575.365 0 383.37349 8.0962443e-06 -1.6759238e-05 + 141020 -6245.6046 -6253.338 7.7334095 3699.4063 629.05607 -10581.8 0 370.62838 -0.00014791012 -0.00016922264 + 141030 -6245.6766 -6253.0066 7.3299426 3707.2776 628.51281 -10588.797 0 351.29198 -0.00038834161 -0.00040741379 + 141040 -6245.7601 -6252.6778 6.9177055 3714.4117 627.8268 -10594.916 0 331.53526 -0.00063456253 -0.00065418529 + 141050 -6245.8479 -6252.4454 6.5974972 3719.0379 627.44927 -10598.933 0 316.18908 -0.00079991006 -0.00082315103 + 141060 -6245.9527 -6252.3476 6.3948446 3720.013 627.77509 -10600.136 0 306.47683 -0.00081911736 -0.00084738407 + 141070 -6246.1022 -6252.36 6.2577703 3717.1542 628.97884 -10598.493 0 299.90747 -0.00067070581 -0.00070234398 + 141080 -6246.3191 -6252.4285 6.1093511 3711.2808 630.91249 -10594.622 0 292.79438 -0.00038531972 -0.00041620038 + 141090 -6246.5992 -6252.5191 5.9199298 3703.9644 633.10755 -10589.591 0 283.71625 -3.8268244e-05 -6.4579569e-05 + 141100 -6246.9082 -6252.6431 5.7348651 3697.0956 634.8969 -10584.636 0 274.84692 0.00027077441 0.00024946694 + 141110 -6247.2052 -6252.8347 5.6295418 3692.4021 635.62613 -10580.863 0 269.79923 0.00044526482 0.0004253463 + 141120 -6247.4728 -6253.1046 5.6318083 3691.019 634.88128 -10579.005 0 269.90785 0.00041968543 0.00039607218 + 141130 -6247.7291 -6253.4118 5.6826825 3693.1818 632.64707 -10579.241 0 272.34603 0.00018078051 0.00015088136 + 141140 -6248.0095 -6253.6827 5.6732545 3698.1217 629.33545 -10581.14 0 271.89419 -0.00022426455 -0.00025836067 + 141150 -6248.3336 -6253.8629 5.5293081 3704.2323 625.6763 -10583.771 0 264.99547 -0.00069701143 -0.00072995742 + 141160 -6248.6849 -6253.9565 5.2716394 3709.5174 622.51118 -10585.985 0 252.64654 -0.0011142071 -0.0011413432 + 141170 -6249.0197 -6254.0193 4.9995499 3712.2097 620.55956 -10586.789 0 239.60649 -0.0013647909 -0.0013854679 + 141180 -6249.2978 -6254.1094 4.8116327 3711.3505 620.22622 -10585.686 0 230.60044 -0.0013851368 -0.0014028612 + 141190 -6249.5079 -6254.2381 4.7301965 3707.1147 621.49886 -10582.852 0 226.69756 -0.0011794632 -0.0011989409 + 141200 -6249.6713 -6254.3607 4.6893625 3700.7593 623.96002 -10579.08 0 224.74056 -0.00081760395 -0.00084113755 + 141210 -6249.8211 -6254.4143 4.5932444 3694.2121 626.91081 -10575.537 0 220.13404 -0.00041105812 -0.00043706018 + 141220 -6249.9761 -6254.3713 4.3952404 3689.4529 629.57499 -10573.399 0 210.64458 -7.6498351e-05 -0.00010104649 + 141230 -6250.1283 -6254.2641 4.1357962 3687.908 631.32489 -10573.497 0 198.21056 9.989865e-05 7.9946275e-05 + 141240 -6250.2519 -6254.1663 3.9144099 3690.0593 631.85844 -10576.084 0 187.60049 8.5650001e-05 7.0436366e-05 + 141250 -6250.3226 -6254.1477 3.8250798 3695.3662 631.26946 -10580.783 0 183.31928 -9.3016769e-05 -0.00010627507 + 141260 -6250.3325 -6254.236 3.9034764 3702.4787 629.98894 -10586.704 0 187.07649 -0.00036370188 -0.00037878083 + 141270 -6250.2933 -6254.4055 4.1121763 3709.6437 628.61964 -10592.669 0 197.07856 -0.00063287302 -0.0006521752 + 141280 -6250.2283 -6254.5903 4.3620259 3715.1726 627.72238 -10597.485 0 209.05276 -0.00081558158 -0.00083866251 + 141290 -6250.1593 -6254.7167 4.557407 3717.8497 627.62754 -10600.194 0 218.41652 -0.00086066812 -0.00088444622 + 141300 -6250.0917 -6254.7409 4.6492529 3717.189 628.33402 -10600.264 0 222.81828 -0.00076363536 -0.00078440962 + 141310 -6250.0053 -6254.672 4.666647 3713.498 629.52516 -10597.695 0 223.65191 -0.00056422992 -0.00058055682 + 141320 -6249.8642 -6254.5579 4.6936649 3707.7575 630.6903 -10593.006 0 224.94676 -0.00033174371 -0.0003460974 + 141330 -6249.6421 -6254.4351 4.7930107 3701.3582 631.30701 -10587.1 0 229.70797 -0.00014406493 -0.00016141575 + 141340 -6249.3476 -6254.2833 4.9357029 3695.7419 631.0216 -10581.047 0 236.54658 -6.5571238e-05 -8.9316012e-05 + 141350 -6249.0241 -6254.0358 5.0116865 3692.0139 629.76781 -10575.817 0 240.18814 -0.00012755918 -0.00015600159 + 141360 -6248.7168 -6253.6503 4.9335253 3690.635 627.78459 -10572.07 0 236.44221 -0.00031616639 -0.00034309115 + 141370 -6248.4304 -6253.1823 4.7519294 3691.3258 625.52932 -10570.037 0 227.73912 -0.00057445745 -0.0005942039 + 141380 -6248.1148 -6252.7839 4.6691397 3693.2614 623.52302 -10569.568 0 223.77137 -0.00082216342 -0.00083531677 + 141390 -6247.6997 -6252.6098 4.9100901 3695.4877 622.19008 -10570.288 0 235.31907 -0.00098726636 -0.0010016526 + 141400 -6247.1573 -6252.6978 5.5404818 3697.3457 621.74979 -10571.793 0 265.53097 -0.001034421 -0.0010595404 + 141410 -6246.5436 -6252.9338 6.3902111 3698.6606 622.18788 -10573.782 0 306.25477 -0.0009744656 -0.0010134821 + 141420 -6245.9712 -6253.138 7.1667717 3699.6063 623.30636 -10576.051 0 343.47191 -0.00084967349 -0.00089609436 + 141430 -6245.5297 -6253.1966 7.6668576 3700.3882 624.82887 -10578.414 0 367.43883 -0.0007050528 -0.00074744659 + 141440 -6245.2261 -6253.1176 7.8914681 3701.0116 626.51951 -10580.649 0 378.20343 -0.00056501275 -0.00059554303 + 141450 -6245.0024 -6252.9773 7.9749016 3701.299 628.25922 -10582.535 0 382.20203 -0.00042875533 -0.00044806243 + 141460 -6244.7997 -6252.8302 8.0304885 3701.0964 630.03866 -10583.965 0 384.86607 -0.00028292456 -0.00029817742 + 141470 -6244.6025 -6252.6695 8.0670422 3700.4811 631.87115 -10585.022 0 386.61793 -0.00012025845 -0.00013938259 + 141480 -6244.4354 -6252.4556 8.0201452 3699.8243 633.67908 -10585.959 0 384.37036 4.6847782e-05 1.9911904e-05 + 141490 -6244.3329 -6252.1673 7.834423 3699.6742 635.22622 -10587.068 0 375.46951 0.00018406816 0.00015058964 + 141500 -6244.3106 -6251.8342 7.5236195 3700.5157 636.14689 -10588.497 0 360.57406 0.00024528633 0.00020980438 + 141510 -6244.3547 -6251.5331 7.1784012 3702.5101 636.07055 -10590.114 0 344.02926 0.00019128274 0.00015824898 + 141520 -6244.4307 -6251.353 6.9223361 3705.3287 634.7885 -10591.47 0 331.75719 8.9098444e-06 -1.994283e-05 + 141530 -6244.5064 -6251.3451 6.8387201 3708.165 632.38453 -10591.895 0 327.74984 -0.00027781917 -0.00030372018 + 141540 -6244.5716 -6251.4908 6.919222 3709.9318 629.26484 -10590.687 0 331.60794 -0.00060940616 -0.00063456589 + 141550 -6244.6375 -6251.7209 7.0833667 3709.5824 626.06483 -10587.368 0 339.47468 -0.0009049732 -0.0009305964 + 141560 -6244.7167 -6251.9723 7.2555722 3706.4673 623.46295 -10581.903 0 347.72773 -0.0010853229 -0.0011116898 + 141570 -6244.8088 -6252.2288 7.4200534 3700.6399 621.97083 -10574.84 0 355.61059 -0.0010993054 -0.0011273093 + 141580 -6244.9093 -6252.5054 7.5960621 3693.0118 621.77663 -10567.294 0 364.04592 -0.00094490979 -0.00097646972 + 141590 -6245.0296 -6252.8015 7.7719236 3685.2447 622.69479 -10560.741 0 372.47419 -0.00067515133 -0.00071140341 + 141600 -6245.1989 -6253.0816 7.8826624 3679.3384 624.23724 -10556.657 0 377.78141 -0.00038322492 -0.00042243228 + 141610 -6245.4426 -6253.299 7.8564775 3677.0201 625.78414 -10556.103 0 376.52648 -0.00017085797 -0.00020861364 + 141620 -6245.7577 -6253.4321 7.6744236 3679.163 626.80058 -10559.396 0 367.80144 -0.00011227275 -0.00014416475 + 141630 -6246.1117 -6253.4927 7.3810318 3685.462 627.02469 -10565.979 0 353.74046 -0.00022815299 -0.0002526156 + 141640 -6246.4618 -6253.5037 7.0418943 3694.4848 626.55643 -10574.545 0 337.48709 -0.00047899011 -0.00049806534 + 141650 -6246.7793 -6253.4719 6.6926038 3704.0716 625.81184 -10583.355 0 320.74712 -0.0007789749 -0.0007966271 + 141660 -6247.0591 -6253.3813 6.3222434 3711.9395 625.35945 -10590.68 0 302.99738 -0.0010244783 -0.0010439072 + 141670 -6247.3116 -6253.2137 5.9021123 3716.3012 625.69977 -10595.215 0 282.86234 -0.0011272237 -0.0011491079 + 141680 -6247.5469 -6252.9828 5.4359207 3716.3172 627.06731 -10596.367 0 260.51982 -0.0010418343 -0.0010645973 + 141690 -6247.7631 -6252.7525 4.9894428 3712.2743 629.32433 -10594.351 0 239.12209 -0.0007800442 -0.00080169187 + 141700 -6247.9486 -6252.6189 4.6703253 3705.4713 631.98211 -10590.072 0 223.82819 -0.00040819864 -0.0004280952 + 141710 -6248.0943 -6252.6626 4.5683035 3697.8588 634.34078 -10584.862 0 218.93874 -2.914686e-05 -4.8283717e-05 + 141720 -6248.2042 -6252.9031 4.6988617 3691.5196 635.69922 -10580.122 0 225.19582 0.00024659754 0.00022692256 + 141730 -6248.296 -6253.287 4.9910627 3688.1038 635.5667 -10576.958 0 239.19973 0.00033281561 0.00031263379 + 141740 -6248.3895 -6253.7178 5.3283612 3688.3627 633.81191 -10575.892 0 255.36497 0.00019370782 0.00017476518 + 141750 -6248.4915 -6254.1055 5.6140852 3691.928 630.70853 -10576.742 0 269.05846 -0.00014402571 -0.00015972742 + 141760 -6248.5881 -6254.4023 5.8142043 3697.4324 626.86969 -10578.704 0 278.64929 -0.00059785727 -0.00061035991 + 141770 -6248.6548 -6254.5995 5.9446692 3702.9507 623.09442 -10580.645 0 284.9019 -0.0010535448 -0.0010660312 + 141780 -6248.6795 -6254.6944 6.014823 3706.6162 620.16863 -10581.479 0 288.26407 -0.0013989302 -0.0014161537 + 141790 -6248.6801 -6254.6604 5.9802931 3707.1887 618.67033 -10580.519 0 286.6092 -0.0015559372 -0.0015806269 + 141800 -6248.6979 -6254.4573 5.7594125 3704.3867 618.82686 -10577.671 0 276.02336 -0.0015002148 -0.0015302056 + 141810 -6248.7666 -6254.0817 5.3150179 3698.8991 620.46307 -10573.444 0 254.72548 -0.0012630606 -0.0012919823 + 141820 -6248.8794 -6253.6143 4.7348644 3692.1296 623.05953 -10568.803 0 226.92127 -0.00091739664 -0.0009391068 + 141830 -6248.986 -6253.213 4.2270291 3685.8019 625.90868 -10564.924 0 202.58295 -0.00055503974 -0.00056857304 + 141840 -6249.0244 -6253.0368 4.0124451 3681.5536 628.32223 -10562.913 0 192.29888 -0.000263359 -0.00027425925 + 141850 -6248.9621 -6253.1501 4.1879133 3680.5891 629.82306 -10563.562 0 200.70831 -0.00010622986 -0.00012285049 + 141860 -6248.8159 -6253.4783 4.6624695 3683.4136 630.26133 -10567.153 0 223.4517 -0.00011081072 -0.00013817402 + 141870 -6248.6356 -6253.8517 5.2160572 3689.6682 629.82325 -10573.343 0 249.98273 -0.00026098129 -0.00029677623 + 141880 -6248.4657 -6254.1078 5.6420754 3698.1199 628.93817 -10581.166 0 270.39991 -0.00049963044 -0.00053550819 + 141890 -6248.3078 -6254.1827 5.8749393 3706.8739 628.12136 -10589.178 0 281.56005 -0.0007424476 -0.00076996151 + 141900 -6248.1143 -6254.1212 6.0069554 3713.8345 627.80558 -10595.761 0 287.88701 -0.00090299016 -0.00091982949 + 141910 -6247.8246 -6254.0013 6.1767545 3717.313 628.21044 -10599.525 0 296.02473 -0.00092267771 -0.00093416946 + 141920 -6247.4188 -6253.8409 6.4221143 3716.5569 629.27862 -10599.677 0 307.78375 -0.00079370166 -0.00080812794 + 141930 -6246.9436 -6253.5784 6.634731 3711.9563 630.68828 -10596.223 0 317.97354 -0.00056287502 -0.00058448806 + 141940 -6246.4812 -6253.1499 6.6686727 3704.8267 631.94129 -10589.918 0 319.60021 -0.00031257923 -0.00033842458 + 141950 -6246.0854 -6252.5884 6.502961 3696.9002 632.51655 -10582.005 0 311.65838 -0.00012747996 -0.00015071585 + 141960 -6245.7427 -6252.0416 6.2988953 3689.7888 632.0506 -10573.881 0 301.87841 -6.3706775e-05 -8.0154568e-05 + 141970 -6245.3912 -6251.6856 6.2944009 3684.6385 630.479 -10566.803 0 301.66301 -0.00013413667 -0.00014616878 + 141980 -6244.9776 -6251.6045 6.6268521 3682.0217 628.0735 -10561.7 0 317.59594 -0.0003124936 -0.00032710235 + 141990 -6244.5058 -6251.7332 7.2273958 3681.9836 625.35265 -10559.069 0 346.37736 -0.00054931884 -0.00057214611 + 142000 -6244.0385 -6251.9092 7.8707324 3684.1333 622.9023 -10558.945 0 377.20966 -0.00078976179 -0.00082012445 + 142010 -6243.6478 -6252.0008 8.3529988 3687.7355 621.1839 -10560.92 0 400.32257 -0.00098620906 -0.0010177135 + 142020 -6243.3537 -6252.0112 8.6574297 3691.8413 620.41455 -10564.267 0 414.91261 -0.0011050299 -0.0011318368 + 142030 -6243.1126 -6252.0586 8.94594 3695.5062 620.56558 -10568.13 0 428.73964 -0.0011307759 -0.0011538449 + 142040 -6242.8777 -6252.2402 9.3624437 3698.0513 621.46111 -10571.753 0 448.70084 -0.0010687288 -0.001095464 + 142050 -6242.6694 -6252.5039 9.8344663 3699.2243 622.90522 -10574.633 0 471.32281 -0.00094170588 -0.00097863153 + 142060 -6242.5773 -6252.6626 10.085318 3699.1492 624.76125 -10576.573 0 483.34503 -0.00077819227 -0.00082372922 + 142070 -6242.68 -6252.5474 9.8673686 3698.1203 626.94872 -10577.616 0 472.89967 -0.00059746101 -0.00064242155 + 142080 -6242.9627 -6252.1544 9.1916164 3696.4371 629.37853 -10577.97 0 440.51383 -0.00040420997 -0.00043989045 + 142090 -6243.3234 -6251.6445 8.3210263 3694.4238 631.87881 -10577.947 0 398.79027 -0.00019982693 -0.0002255112 + 142100 -6243.6589 -6251.21 7.5510779 3692.5611 634.15835 -10577.929 0 361.89002 -1.5020473e-06 -2.4170266e-05 + 142110 -6243.9365 -6250.9513 7.0148468 3691.5155 635.83033 -10578.297 0 336.19082 0.00014907773 0.00012152569 + 142120 -6244.1919 -6250.8651 6.673193 3691.9427 636.49761 -10579.305 0 319.81685 0.00019747795 0.00016253813 + 142130 -6244.4776 -6250.9155 6.4379712 3694.1529 635.88018 -10580.949 0 308.5437 0.00010234986 6.3900237e-05 + 142140 -6244.8165 -6251.1018 6.2852714 3697.8374 633.94127 -10582.88 0 301.22547 -0.00014011311 -0.00017565729 + 142150 -6245.1934 -6251.4654 6.2719913 3702.03 630.9578 -10584.453 0 300.58902 -0.00048631002 -0.00051485825 + 142160 -6245.5772 -6252.0411 6.4639394 3705.3578 627.49564 -10584.895 0 309.78825 -0.00085462586 -0.00087667862 + 142170 -6245.9523 -6252.7961 6.8438536 3706.4991 624.28344 -10583.579 0 327.99586 -0.0011500926 -0.001169286 + 142180 -6246.3329 -6253.6073 7.2744301 3704.6686 622.01454 -10580.29 0 348.63151 -0.0012950862 -0.0013146667 + 142190 -6246.7488 -6254.3001 7.5512419 3699.9394 621.13421 -10575.374 0 361.89788 -0.0012554116 -0.0012756287 + 142200 -6247.2138 -6254.7285 7.5147865 3693.2788 621.68675 -10569.694 0 360.15073 -0.0010527908 -0.0010712561 + 142210 -6247.7021 -6254.8434 7.1412757 3686.2971 623.2903 -10564.431 0 342.25 -0.0007591852 -0.00077368635 + 142220 -6248.1582 -6254.7021 6.5439467 3680.806 625.26513 -10560.773 0 313.62264 -0.00047464037 -0.00048580211 + 142230 -6248.5301 -6254.4185 5.8884343 3678.3237 626.87537 -10559.618 0 282.20681 -0.00029598793 -0.00030739779 + 142240 -6248.8011 -6254.0927 5.2916768 3679.649 627.5907 -10561.332 0 253.60684 -0.00028630938 -0.00030194401 + 142250 -6248.9942 -6253.7718 4.7775882 3684.6042 627.26694 -10565.643 0 228.96883 -0.00045410154 -0.00047509627 + 142260 -6249.1503 -6253.4639 4.3135868 3692.0194 626.18169 -10571.665 0 206.73128 -0.00074810005 -0.00077150009 + 142270 -6249.2959 -6253.1877 3.8917906 3699.9924 624.9187 -10578.099 0 186.51644 -0.0010702517 -0.0010910263 + 142280 -6249.4241 -6253.0072 3.5830326 3706.3964 624.14863 -10583.552 0 171.71903 -0.001305206 -0.0013202522 + 142290 -6249.5026 -6253.012 3.5093695 3709.5147 624.38591 -10586.913 0 168.18868 -0.0013590734 -0.0013700303 + 142300 -6249.5028 -6253.2532 3.7503696 3708.6027 625.80213 -10587.658 0 179.73875 -0.0011945512 -0.001206912 + 142310 -6249.427 -6253.6898 4.2627678 3704.1555 628.15193 -10585.997 0 204.29575 -0.00084807556 -0.00086714224 + 142320 -6249.3115 -6254.1968 4.8852603 3697.7539 630.83246 -10582.783 0 234.12909 -0.00042043975 -0.00044737745 + 142330 -6249.2032 -6254.6285 5.4252118 3691.5238 633.06188 -10579.214 0 260.00659 -4.3367888e-05 -7.4428525e-05 + 142340 -6249.1297 -6254.8869 5.7572113 3687.4116 634.12615 -10576.425 0 275.91787 0.00016510401 0.00013585986 + 142350 -6249.0843 -6254.949 5.8646879 3686.5477 633.61454 -10575.111 0 281.06875 0.00013944886 0.00011624619 + 142360 -6249.0372 -6254.848 5.8107355 3688.9228 631.56112 -10575.332 0 278.48305 -0.00011383032 -0.00013079887 + 142370 -6248.9584 -6254.6339 5.675461 3693.4653 628.44088 -10576.54 0 271.99994 -0.00052119077 -0.00053528095 + 142380 -6248.8372 -6254.3459 5.50872 3698.4517 625.02314 -10577.821 0 264.00877 -0.00096784231 -0.00098345812 + 142390 -6248.6857 -6254.0091 5.3233351 3702.0813 622.13528 -10578.226 0 255.12408 -0.0013342322 -0.0013541406 + 142400 -6248.5278 -6253.6481 5.1202726 3703.0223 620.41886 -10577.089 0 245.39219 -0.0015308364 -0.0015548323 + 142410 -6248.3829 -6253.3028 4.9198771 3700.7818 620.15699 -10574.242 0 235.78812 -0.0015208414 -0.001546271 + 142420 -6248.2529 -6253.0301 4.7772518 3695.8194 621.22321 -10570.073 0 228.95271 -0.0013254188 -0.0013490986 + 142430 -6248.1193 -6252.8896 4.7703699 3689.3996 623.15881 -10565.448 0 228.62289 -0.0010124876 -0.0010328782 + 142440 -6247.9526 -6252.9133 4.9606726 3683.2445 625.34427 -10561.502 0 237.74327 -0.00067446722 -0.00069269532 + 142450 -6247.7323 -6253.0763 5.3439466 3679.081 627.20328 -10559.361 0 256.11191 -0.00040200085 -0.00042085975 + 142460 -6247.4635 -6253.2913 5.8278725 3678.1847 628.37133 -10559.847 0 279.30435 -0.00025979185 -0.00028128587 + 142470 -6247.1761 -6253.4449 6.2687629 3681.0173 628.77664 -10563.239 0 300.43429 -0.00026965179 -0.00029310135 + 142480 -6246.9027 -6253.46 6.5572856 3687.0607 628.61375 -10569.134 0 314.26192 -0.00040548734 -0.00042811423 + 142490 -6246.653 -6253.3399 6.6868831 3694.9294 628.23195 -10576.501 0 320.47296 -0.00060351761 -0.00062318527 + 142500 -6246.413 -6253.1512 6.7381659 3702.7622 627.99041 -10583.904 0 322.93072 -0.00078597886 -0.00080336391 + 142510 -6246.1682 -6252.9627 6.7945594 3708.7613 628.13323 -10589.857 0 325.63341 -0.00088925428 -0.00090721919 + 142520 -6245.9234 -6252.8023 6.8789381 3711.6703 628.71693 -10593.19 0 329.67731 -0.00088406517 -0.00090515542 + 142530 -6245.6982 -6252.6644 6.9661622 3711.0342 629.60064 -10593.299 0 333.85758 -0.00078033111 -0.00080514846 + 142540 -6245.5099 -6252.5403 7.0304238 3707.2112 630.49718 -10590.249 0 336.93735 -0.00061823855 -0.00064576347 + 142550 -6245.3662 -6252.4301 7.0639406 3701.1939 631.07097 -10584.695 0 338.54367 -0.00045198553 -0.00048055639 + 142560 -6245.2684 -6252.3379 7.0694616 3694.3103 631.0529 -10577.701 0 338.80827 -0.00033196033 -0.00035984176 + 142570 -6245.2104 -6252.2763 7.0659556 3687.8843 630.3324 -10570.493 0 338.64024 -0.00028971609 -0.00031579484 + 142580 -6245.1744 -6252.2763 7.1019645 3682.959 628.99432 -10564.23 0 340.36599 -0.00033047823 -0.00035544823 + 142590 -6245.1393 -6252.3717 7.2323858 3680.1624 627.2887 -10559.823 0 346.61651 -0.00043651777 -0.00046320869 + 142600 -6245.1017 -6252.5591 7.4574295 3679.7088 625.54613 -10557.814 0 357.40187 -0.00057908504 -0.00061051354 + 142610 -6245.0865 -6252.7757 7.689225 3681.449 624.07264 -10558.297 0 368.51081 -0.0007309808 -0.00076719506 + 142620 -6245.1297 -6252.93 7.8002865 3684.9058 623.0673 -10560.903 0 373.8335 -0.00087235906 -0.00090920994 + 142630 -6245.2434 -6252.9643 7.7208776 3689.314 622.59524 -10564.874 0 370.02778 -0.00098895716 -0.0010206176 + 142640 -6245.3984 -6252.8914 7.4930249 3693.732 622.61906 -10569.242 0 359.10779 -0.0010681289 -0.0010915566 + 142650 -6245.5418 -6252.7708 7.2289257 3697.2431 623.06048 -10573.074 0 346.45068 -0.0010981593 -0.0011156299 + 142660 -6245.6363 -6252.651 7.0146708 3699.186 623.85252 -10575.69 0 336.18239 -0.001071427 -0.0010888821 + 142670 -6245.6854 -6252.5337 6.8483026 3699.3139 624.95648 -10576.804 0 328.20909 -0.00098778306 -0.0010103398 + 142680 -6245.726 -6252.3909 6.6648228 3697.8197 626.3417 -10576.552 0 319.4157 -0.00085493916 -0.00088319629 + 142690 -6245.7967 -6252.2176 6.4208152 3695.2359 627.94476 -10575.398 0 307.72149 -0.00068642932 -0.00071638579 + 142700 -6245.9073 -6252.0666 6.1592954 3692.2772 629.63226 -10573.976 0 295.18799 -0.00050039444 -0.00052674087 + 142710 -6246.0347 -6252.0318 5.9970327 3689.6934 631.18866 -10572.914 0 287.41146 -0.00032087195 -0.00034086321 + 142720 -6246.143 -6252.1917 6.0487223 3688.1565 632.34118 -10572.689 0 289.88871 -0.00017907469 -0.00019424682 + 142730 -6246.2087 -6252.5581 6.3493944 3688.1607 632.81994 -10573.539 0 304.29861 -0.00011024727 -0.00012526094 + 142740 -6246.2377 -6253.0594 6.8216777 3689.9091 632.43808 -10575.407 0 326.93307 -0.00014438401 -0.00016406405 + 142750 -6246.2659 -6253.5641 7.2981929 3693.1982 631.16722 -10577.93 0 349.77035 -0.00029351316 -0.00031980985 + 142760 -6246.3419 -6253.9312 7.5892848 3697.3476 629.18116 -10580.46 0 363.72111 -0.00054085037 -0.00057142966 + 142770 -6246.4983 -6254.0688 7.5704827 3701.2552 626.84729 -10582.171 0 362.82001 -0.00083739807 -0.00086690355 + 142780 -6246.728 -6253.9732 7.2452128 3703.6314 624.65685 -10582.261 0 347.23125 -0.0011101032 -0.0011336104 + 142790 -6246.9844 -6253.7245 6.7401119 3703.3885 623.10229 -10580.215 0 323.02398 -0.0012821011 -0.0012986233 + 142800 -6247.2104 -6253.4361 6.2256418 3700.0659 622.53107 -10576.033 0 298.36769 -0.00129994 -0.0013133395 + 142810 -6247.3768 -6253.1849 5.8080879 3694.1147 623.02422 -10570.324 0 278.35616 -0.0011571374 -0.0011732838 + 142820 -6247.4998 -6252.9754 5.4755759 3686.8844 624.34879 -10564.209 0 262.42032 -0.00090182937 -0.00092387145 + 142830 -6247.6215 -6252.7737 5.1522076 3680.2588 626.01226 -10559.045 0 246.9227 -0.00062202912 -0.00064781701 + 142840 -6247.7671 -6252.5833 4.8161608 3676.0614 627.41159 -10556.056 0 230.81745 -0.00041374638 -0.00043796006 + 142850 -6247.9211 -6252.4852 4.5641202 3675.4759 628.03374 -10555.995 0 218.73825 -0.00034683815 -0.00036599144 + 142860 -6248.0417 -6252.593 4.5513627 3678.7117 627.63939 -10558.944 0 218.12684 -0.00044309077 -0.00045877601 + 142870 -6248.1007 -6252.9592 4.8584166 3684.9917 626.36148 -10564.312 0 232.84258 -0.00067219626 -0.00068966488 + 142880 -6248.1116 -6253.5132 5.4016484 3692.7992 624.67739 -10570.99 0 258.8773 -0.00096272354 -0.00098619054 + 142890 -6248.1225 -6254.086 5.963461 3700.2641 623.25778 -10577.608 0 285.80251 -0.0012223938 -0.00125122 + 142900 -6248.1816 -6254.5003 6.3186534 3705.6048 622.7394 -10582.844 0 302.82533 -0.0013631244 -0.0013920898 + 142910 -6248.3006 -6254.6598 6.3592592 3707.5679 623.49907 -10585.727 0 304.77138 -0.0013268624 -0.0013501355 + 142920 -6248.4484 -6254.5776 6.1291853 3705.7842 625.50831 -10585.87 0 293.74495 -0.0011063202 -0.0011216965 + 142930 -6248.577 -6254.3391 5.7621232 3700.9205 628.31893 -10583.579 0 276.15328 -0.00075276764 -0.00076292185 + 142940 -6248.6548 -6254.0447 5.3898728 3694.5256 631.18454 -10579.755 0 258.31295 -0.00036499012 -0.00037528951 + 142950 -6248.6829 -6253.7703 5.0874014 3688.5721 633.28068 -10575.623 0 243.81682 -6.03364e-05 -7.5244814e-05 + 142960 -6248.6873 -6253.5574 4.8701076 3684.8308 633.95837 -10572.347 0 233.40288 6.3164189e-05 4.2695854e-05 + 142970 -6248.6989 -6253.4216 4.7227324 3684.2948 632.95197 -10570.668 0 226.33984 -3.9840394e-05 -6.2989775e-05 + 142980 -6248.7321 -6253.3677 4.6356612 3686.8593 630.47066 -10570.698 0 222.16689 -0.00034540883 -0.00036652631 + 142990 -6248.7729 -6253.4003 4.6274581 3691.3744 627.13821 -10571.913 0 221.77376 -0.0007668134 -0.00078253459 + 143000 -6248.7851 -6253.5199 4.7347316 3696.0602 623.80066 -10573.381 0 226.91491 -0.0011825017 -0.0011931957 + 143010 -6248.7324 -6253.7031 4.9706475 3699.1339 621.26943 -10574.106 0 238.22132 -0.0014759616 -0.0014855627 + 143020 -6248.6015 -6253.8893 5.2878317 3699.4181 620.08682 -10573.394 0 253.42256 -0.0015729968 -0.0015862978 + 143030 -6248.4087 -6253.9977 5.588908 3696.7093 620.38728 -10571.094 0 267.85183 -0.0014627338 -0.001482216 + 143040 -6248.1852 -6253.9716 5.786405 3691.7964 621.89223 -10567.66 0 277.317 -0.0011956986 -0.0012203028 + 143050 -6247.9527 -6253.816 5.8633282 3686.1612 624.03189 -10564.009 0 281.00359 -0.00086203921 -0.00088850631 + 143060 -6247.7111 -6253.5942 5.8831598 3681.4946 626.14747 -10561.236 0 281.95403 -0.00056004893 -0.00058540099 + 143070 -6247.4426 -6253.3864 5.9438001 3679.1977 627.70283 -10560.287 0 284.86025 -0.0003665138 -0.00038975252 + 143080 -6247.127 -6253.2399 6.1129567 3680.0068 628.43651 -10561.683 0 292.96718 -0.00031723762 -0.00033936345 + 143090 -6246.7558 -6253.1433 6.3874583 3683.8265 628.40954 -10565.379 0 306.12284 -0.00040155951 -0.00042429477 + 143100 -6246.3399 -6253.0366 6.696742 3689.7868 627.94107 -10570.765 0 320.94545 -0.00057066178 -0.00059490758 + 143110 -6245.9041 -6252.8517 6.94761 3696.4875 627.46004 -10576.799 0 332.96845 -0.00075604384 -0.00078114158 + 143120 -6245.4723 -6252.5624 7.0900829 3702.3583 627.32903 -10582.25 0 339.79655 -0.00089194646 -0.00091643239 + 143130 -6245.0503 -6252.2153 7.1649498 3706.0545 627.7059 -10585.976 0 343.3846 -0.00093498862 -0.00095850907 + 143140 -6244.6256 -6251.912 7.2864703 3706.7976 628.49421 -10587.204 0 349.20854 -0.0008760168 -0.00090064337 + 143150 -6244.1893 -6251.7448 7.5554512 3704.5647 629.39802 -10585.707 0 362.09961 -0.0007411696 -0.00077019364 + 143160 -6243.7609 -6251.7347 7.9737784 3700.0404 630.05455 -10581.83 0 382.1482 -0.0005806481 -0.00061533343 + 143170 -6243.384 -6251.8305 8.4464625 3694.3329 630.1885 -10576.352 0 404.80188 -0.00044741607 -0.00048497563 + 143180 -6243.0946 -6251.9603 8.8657181 3688.592 629.72472 -10570.277 0 424.89496 -0.00037486488 -0.0004102203 + 143190 -6242.896 -6252.0757 9.1797493 3683.7281 628.81164 -10564.615 0 439.9451 -0.0003661025 -0.00039596341 + 143200 -6242.7681 -6252.1458 9.3776794 3680.3346 627.74311 -10560.224 0 449.43101 -0.00040132713 -0.00042655298 + 143210 -6242.6989 -6252.1277 9.4287681 3678.7477 626.81413 -10557.689 0 451.87947 -0.00045707177 -0.00048111709 + 143220 -6242.7008 -6251.9661 9.2653025 3679.1079 626.18354 -10557.257 0 444.04528 -0.00052286679 -0.00054808499 + 143230 -6242.7933 -6251.641 8.847713 3681.3424 625.81655 -10558.8 0 424.03205 -0.00060398433 -0.00062963337 + 143240 -6242.9707 -6251.2245 8.2537829 3685.0942 625.53552 -10561.854 0 395.56759 -0.00071055214 -0.00073457284 + 143250 -6243.1937 -6250.8776 7.6838379 3689.6957 625.1474 -10565.721 0 368.25263 -0.00084351379 -0.0008659991 + 143260 -6243.4224 -6250.7625 7.340187 3694.2609 624.5785 -10569.602 0 351.78295 -0.00098781574 -0.0010118539 + 143270 -6243.6584 -6250.9337 7.2752558 3697.8717 623.94805 -10572.753 0 348.67108 -0.0011145196 -0.0011428082 + 143280 -6243.9488 -6251.3073 7.3585504 3699.7696 623.54307 -10574.62 0 352.66303 -0.0011870284 -0.0012178025 + 143290 -6244.3389 -6251.746 7.4071286 3699.4969 623.70087 -10574.944 0 354.99117 -0.0011687269 -0.0011961741 + 143300 -6244.8212 -6252.1733 7.3521082 3697.0148 624.64745 -10573.836 0 352.35428 -0.0010346902 -0.001054472 + 143310 -6245.3376 -6252.6023 7.264787 3692.8272 626.3636 -10571.793 0 348.16935 -0.00078868176 -0.00080297776 + 143320 -6245.8358 -6253.0587 7.2228118 3688.0301 628.5401 -10569.629 0 346.15767 -0.00047697797 -0.00049327184 + 143330 -6246.3156 -6253.5009 7.185254 3684.1278 630.64504 -10568.274 0 344.35769 -0.00018440962 -0.00020901352 + 143340 -6246.8123 -6253.8332 7.0208837 3682.5615 632.08485 -10568.48 0 336.48014 -6.8688098e-06 -3.973844e-05 + 143350 -6247.3453 -6253.9833 6.6379974 3684.1351 632.40666 -10570.525 0 318.13008 -1.2406985e-05 -4.7661331e-05 + 143360 -6247.8901 -6253.9559 6.0658231 3688.6397 631.46725 -10574.063 0 290.70828 -0.00021206286 -0.00024254305 + 143370 -6248.3931 -6253.8232 5.430094 3694.8656 629.49831 -10578.187 0 260.24057 -0.00055414368 -0.00057571935 + 143380 -6248.8033 -6253.6837 4.8803611 3700.9784 627.03938 -10581.701 0 233.89429 -0.00094161321 -0.00095489332 + 143390 -6249.0923 -6253.623 4.5306904 3705.0972 624.76739 -10583.488 0 217.13611 -0.001263529 -0.0012730845 + 143400 -6249.2609 -6253.6842 4.4232282 3705.8815 623.28667 -10582.852 0 211.98592 -0.0014297439 -0.0014416141 + 143410 -6249.3391 -6253.8495 4.5103859 3702.9495 622.94631 -10579.745 0 216.163 -0.0013988066 -0.0014171504 + 143420 -6249.3766 -6254.0493 4.672627 3696.9979 623.73516 -10574.782 0 223.9385 -0.0011904362 -0.0012149128 + 143430 -6249.4201 -6254.2038 4.7837627 3689.5814 625.28517 -10569.07 0 229.26475 -0.00087800213 -0.00090384115 + 143440 -6249.4866 -6254.2759 4.7893223 3682.6393 626.98895 -10563.904 0 229.5312 -0.00056365217 -0.00058489817 + 143450 -6249.5549 -6254.2879 4.7330085 3677.9425 628.20192 -10560.432 0 226.83232 -0.00034565066 -0.00035943538 + 143460 -6249.5841 -6254.2872 4.703095 3676.6393 628.4635 -10559.39 0 225.3987 -0.00028953702 -0.00029807302 + 143470 -6249.5475 -6254.292 4.7444601 3678.9994 627.65595 -10560.947 0 227.38115 -0.0004111611 -0.00041991719 + 143480 -6249.4534 -6254.2675 4.8141668 3684.3813 626.04181 -10564.691 0 230.72188 -0.00067421169 -0.00068783214 + 143490 -6249.3379 -6254.1559 4.8180698 3691.4034 624.1688 -10569.728 0 230.90894 -0.0010011469 -0.0010203198 + 143500 -6249.2377 -6253.9341 4.6964031 3698.2858 622.68208 -10574.902 0 225.07799 -0.0012945709 -0.0013160623 + 143510 -6249.1635 -6253.6529 4.4894667 3703.3003 622.11379 -10579.067 0 215.16044 -0.0014643289 -0.0014839013 + 143520 -6249.093 -6253.4257 4.3327094 3705.2271 622.72076 -10581.374 0 207.64775 -0.0014536186 -0.0014695306 + 143530 -6248.988 -6253.3682 4.3802314 3703.6997 624.41573 -10581.484 0 209.92527 -0.0012567539 -0.001271225 + 143540 -6248.8228 -6253.525 4.7021789 3699.3257 626.8023 -10579.653 0 225.3548 -0.00092284476 -0.00094028206 + 143550 -6248.6064 -6253.8302 5.2238095 3693.5188 629.29287 -10576.642 0 250.35426 -0.00054295489 -0.0005661076 + 143560 -6248.3796 -6254.1375 5.757828 3688.0553 631.27198 -10573.465 0 275.94742 -0.00022279686 -0.00024987701 + 143570 -6248.1848 -6254.3053 6.1205688 3684.4904 632.26164 -10571.057 0 293.332 -4.8744371e-05 -7.4252188e-05 + 143580 -6248.0294 -6254.2795 6.2501479 3683.6612 632.04743 -10569.988 0 299.54215 -5.9875757e-05 -7.8984914e-05 + 143590 -6247.8776 -6254.1084 6.230816 3685.486 630.73156 -10570.326 0 298.61566 -0.00023815793 -0.00025123094 + 143600 -6247.6807 -6253.8827 6.2019827 3689.1194 628.69554 -10571.698 0 297.23381 -0.00052050372 -0.00053374722 + 143610 -6247.4226 -6253.6523 6.2297198 3693.3356 626.48104 -10573.469 0 298.56313 -0.00082517438 -0.00084639807 + 143620 -6247.141 -6253.3918 6.2507899 3696.933 624.62579 -10574.951 0 299.57293 -0.001078964 -0.0011114368 + 143630 -6246.9042 -6253.0429 6.1386933 3699.0074 623.50891 -10575.559 0 294.20062 -0.0012342091 -0.0012734193 + 143640 -6246.7589 -6252.5986 5.8397616 3699.0656 623.25912 -10574.923 0 279.87414 -0.0012726504 -0.0013088526 + 143650 -6246.6899 -6252.1535 5.4636375 3697.0443 623.75499 -10572.953 0 261.84817 -0.0012006113 -0.0012256145 + 143660 -6246.6253 -6251.8663 5.2409789 3693.3053 624.70899 -10569.881 0 251.17712 -0.0010423672 -0.0010554626 + 143670 -6246.4852 -6251.8532 5.3679899 3688.6204 625.79195 -10566.265 0 257.2642 -0.00083533974 -0.00084366031 + 143680 -6246.2382 -6252.0957 5.8575791 3684.0859 626.74214 -10562.924 0 280.72806 -0.00062547857 -0.00063842015 + 143690 -6245.9222 -6252.446 6.5238295 3680.9041 627.41803 -10560.768 0 312.65851 -0.00045898811 -0.0004811882 + 143700 -6245.6122 -6252.7358 7.1236057 3680.0421 627.78811 -10560.566 0 341.40316 -0.00036985102 -0.0003984948 + 143710 -6245.3606 -6252.8996 7.5390058 3681.9028 627.88671 -10562.689 0 361.31146 -0.00036870313 -0.00039712296 + 143720 -6245.1647 -6253.0004 7.8357198 3686.179 627.77762 -10566.957 0 375.53166 -0.00044082733 -0.00046462773 + 143730 -6244.9906 -6253.1365 8.1459656 3691.9648 627.54685 -10572.648 0 390.40038 -0.00055523088 -0.00057514657 + 143740 -6244.8232 -6253.321 8.4978325 3698.0406 627.3099 -10578.672 0 407.26382 -0.0006780732 -0.00069756747 + 143750 -6244.6876 -6253.4491 8.7615273 3703.177 627.20077 -10583.827 0 419.90155 -0.00078162881 -0.00080265972 + 143760 -6244.6214 -6253.3804 8.7589985 3706.3586 627.32815 -10587.067 0 419.78035 -0.00084627954 -0.0008679539 + 143770 -6244.6334 -6253.0529 8.4194955 3706.9367 627.72253 -10587.712 0 403.50946 -0.00085990251 -0.00088086952 + 143780 -6244.696 -6252.5262 7.8302209 3704.7478 628.31656 -10585.591 0 375.26812 -0.00081901302 -0.00084008796 + 143790 -6244.7763 -6251.936 7.15969 3700.1764 628.97648 -10581.089 0 343.13252 -0.00073069599 -0.00075450449 + 143800 -6244.8643 -6251.4233 6.5589701 3694.0985 629.55889 -10575.081 0 314.34265 -0.00061180685 -0.00064030342 + 143810 -6244.9723 -6251.0945 6.122191 3687.6934 629.95098 -10568.739 0 293.40974 -0.00048537999 -0.00051821831 + 143820 -6245.1199 -6251.0083 5.8883869 3682.1931 630.07327 -10563.275 0 282.20454 -0.00037743168 -0.00041227577 + 143830 -6245.3258 -6251.1706 5.8447698 3678.6408 629.85816 -10559.67 0 280.11416 -0.00031508238 -0.00034876919 + 143840 -6245.6063 -6251.5431 5.9367528 3677.6852 629.23653 -10558.465 0 284.5225 -0.00032303282 -0.00035277329 + 143850 -6245.9708 -6252.0692 6.0984071 3679.4294 628.15851 -10559.657 0 292.26989 -0.00041619728 -0.00044095766 + 143860 -6246.4177 -6252.6951 6.2773967 3683.3857 626.64836 -10562.729 0 300.84807 -0.00059118891 -0.00061275922 + 143870 -6246.9412 -6253.3624 6.4211806 3688.5879 624.86242 -10566.813 0 307.739 -0.00082228714 -0.00084449136 + 143880 -6247.5369 -6253.9851 6.4481617 3693.8408 623.10391 -10570.93 0 309.03209 -0.0010649765 -0.0010906761 + 143890 -6248.1928 -6254.4594 6.2666386 3698.0116 621.76561 -10574.237 0 300.33249 -0.0012654653 -0.001293846 + 143900 -6248.8694 -6254.7162 5.8468407 3700.2662 621.2137 -10576.196 0 280.21341 -0.0013730543 -0.0014001493 + 143910 -6249.5014 -6254.7681 5.2666843 3700.2229 621.66359 -10576.655 0 252.40906 -0.0013534676 -0.0013755409 + 143920 -6250.0281 -6254.6984 4.6703299 3698.0396 623.09987 -10575.838 0 223.82842 -0.0012009921 -0.001217361 + 143930 -6250.4232 -6254.6003 4.1770475 3694.4174 625.26342 -10574.281 0 200.18755 -0.00094514241 -0.0009579709 + 143940 -6250.7 -6254.5243 3.8243186 3690.4713 627.70243 -10572.698 0 183.28281 -0.00064718427 -0.00065907103 + 143950 -6250.8926 -6254.4763 3.5836465 3687.4498 629.87362 -10571.8 0 171.74845 -0.00038509972 -0.00039706804 + 143960 -6251.0322 -6254.4495 3.4172693 3686.3729 631.27464 -10572.097 0 163.77472 -0.00023091513 -0.0002423805 + 143970 -6251.1334 -6254.4519 3.3184903 3687.7111 631.57831 -10573.741 0 159.04068 -0.0002283565 -0.00023850696 + 143980 -6251.196 -6254.5046 3.3085268 3691.2219 630.72994 -10576.456 0 158.56317 -0.00037889484 -0.00038790412 + 143990 -6251.2156 -6254.6216 3.4059638 3695.9933 628.97306 -10579.588 0 163.2329 -0.00064069038 -0.00064980728 + 144000 -6251.1919 -6254.7916 3.5997275 3700.686 626.78957 -10582.267 0 172.51914 -0.00094029968 -0.00095099842 + 144010 -6251.1313 -6254.9744 3.8431155 3703.9031 624.76795 -10583.645 0 184.18366 -0.0011934432 -0.0012064101 + 144020 -6251.0445 -6255.1133 4.0687802 3704.5883 623.43569 -10583.137 0 194.99878 -0.001329102 -0.0013437569 + 144030 -6250.9399 -6255.1553 4.215415 3702.3362 623.10483 -10580.596 0 202.02634 -0.0013103665 -0.0013252259 + 144040 -6250.8184 -6255.0717 4.2532813 3697.5296 623.77857 -10576.38 0 203.84111 -0.001145885 -0.0011595846 + 144050 -6250.6728 -6254.8684 4.195589 3691.2652 625.15171 -10571.285 0 201.07617 -0.00088797989 -0.00090031417 + 144060 -6250.4926 -6254.5825 4.0899711 3685.0871 626.7084 -10566.378 0 196.01437 -0.00061740852 -0.0006296465 + 144070 -6250.2722 -6254.2693 3.9971266 3680.5875 627.8878 -10562.745 0 191.56474 -0.00041905725 -0.00043325828 + 144080 -6250.0153 -6253.9854 3.9701367 3678.972 628.2653 -10561.223 0 190.27123 -0.00035584323 -0.00037360294 + 144090 -6249.7328 -6253.7749 4.0421243 3680.707 627.69322 -10562.175 0 193.72127 -0.00044871293 -0.00047009949 + 144100 -6249.4369 -6253.6594 4.2224609 3685.3608 626.35665 -10565.377 0 202.36402 -0.00066885842 -0.00069212864 + 144110 -6249.1345 -6253.6357 4.5012609 3691.6985 624.72319 -10570.057 0 215.72568 -0.00094493469 -0.00096727619 + 144120 -6248.8219 -6253.6822 4.8602713 3698.0173 623.39503 -10575.095 0 232.93147 -0.0011841424 -0.0012032559 + 144130 -6248.4874 -6253.7668 5.2794356 3702.6404 622.90656 -10579.314 0 253.02018 -0.001301987 -0.0013176688 + 144140 -6248.122 -6253.8495 5.7275172 3704.428 623.53564 -10581.813 0 274.49476 -0.001251672 -0.0012661181 + 144150 -6247.7348 -6253.8811 6.1463394 3703.1343 625.19834 -10582.214 0 294.56707 -0.0010420479 -0.0010582917 + 144160 -6247.3564 -6253.8148 6.4584108 3699.4614 627.4681 -10580.744 0 309.52328 -0.00073559929 -0.00075518997 + 144170 -6247.0234 -6253.6318 6.6084424 3694.7709 629.71535 -10578.118 0 316.71364 -0.00042598649 -0.00044791501 + 144180 -6246.7561 -6253.3606 6.6045117 3690.5727 631.31947 -10575.253 0 316.52526 -0.00020423058 -0.00022594167 + 144190 -6246.5492 -6253.0649 6.5157416 3688.0125 631.87771 -10572.955 0 312.2709 -0.00012753953 -0.00014690221 + 144200 -6246.381 -6252.8078 6.4267468 3687.5512 631.33387 -10571.693 0 308.00577 -0.00020248208 -0.00021903857 + 144210 -6246.2297 -6252.6182 6.3885096 3688.9218 629.97748 -10571.517 0 306.17323 -0.00038747002 -0.0004023247 + 144220 -6246.0841 -6252.4819 6.3977415 3691.3294 628.31545 -10572.127 0 306.61567 -0.00061210774 -0.00062687046 + 144230 -6245.9471 -6252.356 6.4089392 3693.7887 626.87076 -10573.015 0 307.15232 -0.0008048678 -0.00082036727 + 144240 -6245.8288 -6252.2024 6.3735685 3695.4642 625.99197 -10573.659 0 305.45717 -0.00091746972 -0.00093310183 + 144250 -6245.7328 -6252.0265 6.2936424 3695.9031 625.74906 -10573.679 0 301.62666 -0.00093666012 -0.00095119702 + 144260 -6245.645 -6251.8956 6.2505737 3695.1094 625.95123 -10572.956 0 299.56256 -0.00088134979 -0.00089488049 + 144270 -6245.5411 -6251.906 6.3648921 3693.475 626.26924 -10571.65 0 305.04134 -0.00078996697 -0.00080497974 + 144280 -6245.4124 -6252.1119 6.6994781 3691.6149 626.40172 -10570.128 0 321.07658 -0.00070455536 -0.0007243497 + 144290 -6245.284 -6252.4732 7.1892119 3690.1464 626.21131 -10568.831 0 344.54737 -0.0006558351 -0.0006811439 + 144300 -6245.2034 -6252.8778 7.6743733 3689.4682 625.7751 -10568.121 0 367.79903 -0.0006520597 -0.00067930794 + 144310 -6245.2013 -6253.2209 8.0196143 3689.625 625.33469 -10568.181 0 384.34491 -0.00067578162 -0.00069954644 + 144320 -6245.2635 -6253.4668 8.2033189 3690.3465 625.17551 -10568.989 0 393.14907 -0.00069286051 -0.00071085802 + 144330 -6245.3487 -6253.6286 8.2799251 3691.2605 625.49355 -10570.383 0 396.82047 -0.00067254725 -0.00068813599 + 144340 -6245.4357 -6253.6941 8.2584288 3692.1495 626.30653 -10572.15 0 395.79024 -0.00060807666 -0.00062723338 + 144350 -6245.5482 -6253.5956 8.0474875 3693.062 627.44004 -10574.098 0 385.68076 -0.00052338367 -0.00054893769 + 144360 -6245.7248 -6253.2704 7.5456399 3694.1953 628.58809 -10576.054 0 361.6294 -0.00046005495 -0.00048902809 + 144370 -6245.9706 -6252.752 6.7814353 3695.6514 629.42404 -10577.827 0 325.00443 -0.00045329902 -0.00047980834 + 144380 -6246.2438 -6252.1909 5.9470806 3697.2629 629.72294 -10579.177 0 285.01747 -0.00051290568 -0.00053331318 + 144390 -6246.4899 -6251.7775 5.2876424 3698.6061 629.45039 -10579.834 0 253.41349 -0.00061913583 -0.00063443832 + 144400 -6246.6834 -6251.6357 4.9523071 3699.1732 628.78174 -10579.591 0 237.34234 -0.00073214305 -0.00074602682 + 144410 -6246.8397 -6251.7709 4.9312218 3698.5895 628.03851 -10578.399 0 236.33182 -0.00080755051 -0.00082268408 + 144420 -6246.9938 -6252.1009 5.1070172 3696.7738 627.55896 -10576.434 0 244.75692 -0.00081199355 -0.00082807639 + 144430 -6247.1721 -6252.5278 5.355716 3694.004 627.54995 -10574.082 0 256.67596 -0.00073538897 -0.00075021353 + 144440 -6247.3782 -6252.9898 5.6115858 3690.8879 627.98358 -10571.861 0 268.93868 -0.00059733073 -0.00060931692 + 144450 -6247.6027 -6253.463 5.8602958 3688.2437 628.5932 -10570.3 0 280.85826 -0.00044439157 -0.00045415898 + 144460 -6247.8423 -6253.9305 6.0881972 3686.8952 628.98178 -10569.807 0 291.78057 -0.00033660698 -0.00034642239 + 144470 -6248.1109 -6254.3528 6.2418816 3687.4089 628.80045 -10570.562 0 299.14599 -0.00032596543 -0.00033779109 + 144480 -6248.4337 -6254.6686 6.2348837 3689.8513 627.91607 -10572.436 0 298.81061 -0.00043461331 -0.00044847061 + 144490 -6248.8263 -6254.8254 5.9991111 3693.6786 626.48803 -10574.992 0 287.51106 -0.00064231213 -0.00065630251 + 144500 -6249.2755 -6254.8169 5.5413641 3697.844 624.91851 -10577.579 0 265.57326 -0.00088998738 -0.00090195563 + 144510 -6249.7394 -6254.6944 4.95499 3701.1228 623.70196 -10579.519 0 237.47092 -0.001099621 -0.0011090436 + 144520 -6250.1697 -6254.5397 4.3699285 3702.5386 623.24407 -10580.322 0 209.43149 -0.0012028872 -0.0012112993 + 144530 -6250.5385 -6254.4184 3.8798493 3701.7076 623.72349 -10579.849 0 185.94415 -0.0011662115 -0.0011757896 + 144540 -6250.846 -6254.353 3.5069324 3698.9602 625.03816 -10578.351 0 168.07188 -0.0010018437 -0.0010135014 + 144550 -6251.1067 -6254.3332 3.2265283 3695.2052 626.84052 -10576.379 0 154.63334 -0.00076189246 -0.00077465957 + 144560 -6251.3303 -6254.3475 3.017248 3691.6213 628.64099 -10574.61 0 144.60345 -0.00051980436 -0.0005319421 + 144570 -6251.515 -6254.401 2.8860131 3689.2988 629.94845 -10573.648 0 138.31394 -0.00034726194 -0.0003579075 + 144580 -6251.6546 -6254.506 2.8514938 3688.9384 630.41102 -10573.855 0 136.65958 -0.00029370661 -0.00030347943 + 144590 -6251.7486 -6254.6609 2.9122978 3690.6702 629.91924 -10575.25 0 139.57365 -0.00037307597 -0.00038322575 + 144600 -6251.8062 -6254.8429 3.0366905 3694.0195 628.64099 -10577.503 0 145.53525 -0.00056008439 -0.00057118196 + 144610 -6251.8381 -6255.0224 3.1842515 3698.0296 626.97462 -10580.027 0 152.6072 -0.00079694341 -0.00080845205 + 144620 -6251.8474 -6255.1832 3.3357707 3701.5245 625.43033 -10582.138 0 159.86885 -0.0010097992 -0.0010208742 + 144630 -6251.8271 -6255.3261 3.4989778 3703.4557 624.47339 -10583.255 0 167.69065 -0.0011313967 -0.0011419586 + 144640 -6251.7687 -6255.452 3.6833171 3703.2318 624.37775 -10583.062 0 176.52522 -0.0011231997 -0.0011340467 + 144650 -6251.6716 -6255.5429 3.8712653 3700.9149 625.13866 -10581.596 0 185.53275 -0.00098873598 -0.0010005318 + 144660 -6251.5454 -6255.5644 4.0189575 3697.2044 626.47554 -10579.244 0 192.611 -0.0007724139 -0.00078466973 + 144670 -6251.3997 -6255.4874 4.0876786 3693.2097 627.92745 -10576.625 0 195.9045 -0.00054397517 -0.00055521812 + 144680 -6251.2342 -6255.3087 4.0745092 3690.0977 629.01047 -10574.417 0 195.27334 -0.00037479957 -0.00038388627 + 144690 -6251.0383 -6255.0501 4.0117958 3688.742 629.38242 -10573.175 0 192.26777 -0.00031496955 -0.0003223012 + 144700 -6250.8022 -6254.74 3.9377428 3689.4829 628.9562 -10573.179 0 188.71873 -0.00037850913 -0.00038595546 + 144710 -6250.5284 -6254.3967 3.8682454 3692.0555 627.92141 -10574.374 0 185.38802 -0.00054047234 -0.00054998114 + 144720 -6250.2353 -6254.0322 3.7968998 3695.6856 626.66778 -10576.386 0 181.96874 -0.00074583267 -0.00075783239 + 144730 -6249.948 -6253.6713 3.7232407 3699.3162 625.64051 -10578.628 0 178.43858 -0.00092718347 -0.00094006064 + 144740 -6249.6827 -6253.3672 3.684433 3701.9076 625.18233 -10580.457 0 176.5787 -0.0010259903 -0.0010371468 + 144750 -6249.4351 -6253.1952 3.7601326 3702.7392 625.42016 -10581.355 0 180.20665 -0.00101098 -0.0010188577 + 144760 -6249.1836 -6253.2184 4.0348223 3701.6316 626.23506 -10581.085 0 193.37133 -0.00088800713 -0.00089365097 + 144770 -6248.909 -6253.4403 4.5312835 3699.0147 627.32041 -10579.775 0 217.16453 -0.00069821819 -0.00070498352 + 144780 -6248.6172 -6253.7783 5.1610587 3695.7922 628.30052 -10577.871 0 247.34689 -0.00050449326 -0.00051571339 + 144790 -6248.3427 -6254.086 5.7433495 3693.0244 628.86324 -10575.974 0 275.25354 -0.00036958778 -0.00038583431 + 144800 -6248.126 -6254.2255 6.0994912 3691.54 628.86081 -10574.626 0 292.32184 -0.00033309494 -0.00035144265 + 144810 -6247.9813 -6254.1451 6.1638341 3691.6426 628.35015 -10574.138 0 295.40551 -0.00039651256 -0.00041282229 + 144820 -6247.8828 -6253.908 6.0251476 3693.0455 627.5658 -10574.519 0 288.75888 -0.00052365728 -0.00053620005 + 144830 -6247.7848 -6253.6419 5.8570553 3695.0624 626.83747 -10575.542 0 280.70296 -0.00065703089 -0.00066818107 + 144840 -6247.6593 -6253.4453 5.7859912 3696.9442 626.47653 -10576.866 0 277.29716 -0.00074262115 -0.00075670246 + 144850 -6247.5185 -6253.3267 5.8081175 3698.1817 626.66378 -10578.172 0 278.35758 -0.0007511008 -0.00077010847 + 144860 -6247.3979 -6253.2293 5.8313519 3698.6305 627.37548 -10579.235 0 279.4711 -0.00068594867 -0.00070737811 + 144870 -6247.3149 -6253.1134 5.7985055 3698.4491 628.38152 -10579.944 0 277.89692 -0.00057708311 -0.0005963484 + 144880 -6247.2458 -6253.0073 5.7615433 3697.9515 629.32889 -10580.288 0 276.12549 -0.00046610313 -0.00048127525 + 144890 -6247.1458 -6252.9758 5.8299558 3697.4727 629.88406 -10580.332 0 279.40419 -0.00039085376 -0.00040486167 + 144900 -6246.992 -6253.0455 6.0534832 3697.2716 629.87255 -10580.19 0 290.11688 -0.00037359002 -0.00039163279 + 144910 -6246.8062 -6253.1686 6.3623648 3697.4484 629.35113 -10579.968 0 304.92022 -0.00041398651 -0.00043869704 + 144920 -6246.6373 -6253.2567 6.6193909 3697.8879 628.57979 -10579.724 0 317.23835 -0.0004884487 -0.00051727885 + 144930 -6246.5216 -6253.2513 6.7297869 3698.2824 627.90554 -10579.439 0 322.52915 -0.00055791422 -0.00058492494 + 144940 -6246.4541 -6253.1659 6.711805 3698.267 627.60826 -10579.041 0 321.66736 -0.00058396475 -0.00060436646 + 144950 -6246.3951 -6253.0685 6.6734337 3697.6291 627.77576 -10578.473 0 319.82839 -0.00054781118 -0.0005615386 + 144960 -6246.3024 -6253.0223 6.719896 3696.4827 628.26318 -10577.768 0 322.05512 -0.00046266514 -0.00047430132 + 144970 -6246.1647 -6253.0318 6.8671186 3695.2889 628.75576 -10577.077 0 329.11085 -0.00037138183 -0.0003866583 + 144980 -6246.0102 -6253.0362 7.0260437 3694.668 628.90828 -10576.613 0 336.72744 -0.00032827128 -0.00034983437 + 144990 -6245.8858 -6252.9544 7.0685363 3695.0717 628.50308 -10576.529 0 338.76392 -0.0003725339 -0.0003980755 + 145000 -6245.822 -6252.7499 6.9279269 3696.4862 627.56127 -10576.797 0 332.02513 -0.00050590666 -0.00053001607 + 145010 -6245.8089 -6252.4687 6.659802 3698.3511 626.36094 -10577.181 0 319.17508 -0.00068615931 -0.00070448721 + 145020 -6245.805 -6252.2175 6.4124648 3699.7748 625.35145 -10577.344 0 307.32129 -0.00084125168 -0.00085369315 + 145030 -6245.7701 -6252.0969 6.3267854 3699.9506 624.99122 -10577.039 0 303.21505 -0.00089890558 -0.00090925312 + 145040 -6245.6951 -6252.1419 6.4467987 3698.5589 625.56537 -10576.266 0 308.96677 -0.00081817511 -0.00083073828 + 145050 -6245.6044 -6252.3151 6.7106734 3695.9533 627.05225 -10575.321 0 321.61312 -0.00060841353 -0.00062466685 + 145060 -6245.532 -6252.5492 7.0172059 3693.0596 629.0979 -10574.707 0 336.30388 -0.00032751934 -0.00034555333 + 145070 -6245.4947 -6252.7955 7.3007843 3691.0486 631.11982 -10574.964 0 349.89455 -6.1304026e-05 -7.8205442e-05 + 145080 -6245.4857 -6253.0357 7.5500348 3690.9192 632.508 -10576.463 0 361.84003 0.0001064261 9.1672568e-05 + 145090 -6245.4919 -6253.2553 7.7633734 3693.1355 632.84621 -10579.237 0 372.06441 0.00012167316 0.00010744405 + 145100 -6245.5168 -6253.4132 7.8963172 3697.4286 632.06592 -10582.908 0 378.43582 -2.212803e-05 -3.8150924e-05 + 145110 -6245.5841 -6253.4489 7.864813 3702.8155 630.47204 -10586.736 0 376.92597 -0.00028055245 -0.00029887077 + 145120 -6245.715 -6253.327 7.6119522 3707.8412 628.63066 -10589.799 0 364.80746 -0.00057016981 -0.00058907758 + 145130 -6245.9048 -6253.0763 7.1715352 3710.9997 627.16395 -10591.24 0 343.70021 -0.00079493056 -0.00081261084 + 145140 -6246.1242 -6252.7786 6.6543509 3711.2311 626.53196 -10590.542 0 318.91383 -0.00088021696 -0.00089680036 + 145150 -6246.3464 -6252.5147 6.1682326 3708.3208 626.87874 -10587.714 0 295.61632 -0.00080141575 -0.00081856665 + 145160 -6246.5657 -6252.3299 5.7642562 3703.0171 627.98845 -10583.335 0 276.2555 -0.00059338122 -0.00061221635 + 145170 -6246.7884 -6252.2515 5.4630631 3696.794 629.36132 -10578.407 0 261.82064 -0.00033605522 -0.00035627469 + 145180 -6247.0156 -6252.3179 5.3023382 3691.3629 630.38881 -10574.07 0 254.1178 -0.00012398821 -0.00014506759 + 145190 -6247.2439 -6252.5649 5.3210243 3688.1444 630.57669 -10571.286 0 255.01334 -3.3625876e-05 -5.5822027e-05 + 145200 -6247.4818 -6252.9769 5.4950656 3687.8727 629.73714 -10570.587 0 263.35438 -9.9137562e-05 -0.00012249709 + 145210 -6247.7514 -6253.47 5.7185425 3690.4114 628.07103 -10571.952 0 274.06464 -0.00030175657 -0.00032458217 + 145220 -6248.0664 -6253.9376 5.8711826 3694.818 626.10111 -10574.857 0 281.38001 -0.0005750322 -0.00059453472 + 145230 -6248.4105 -6254.3105 5.8999497 3699.6624 624.48171 -10578.455 0 282.75869 -0.00082683971 -0.00084192272 + 145240 -6248.7476 -6254.5686 5.8210528 3703.5261 623.76336 -10581.858 0 278.97751 -0.0009730951 -0.00098600284 + 145250 -6249.0533 -6254.7051 5.6517941 3705.4903 624.20423 -10584.4 0 270.86569 -0.0009695877 -0.00098405526 + 145260 -6249.332 -6254.7029 5.370884 3705.3907 625.69323 -10585.787 0 257.4029 -0.00082635419 -0.00084404884 + 145270 -6249.6 -6254.5594 4.9593494 3703.7444 627.8035 -10586.107 0 237.67985 -0.00059843546 -0.00061749896 + 145280 -6249.8601 -6254.3229 4.4628726 3701.4421 629.94912 -10585.714 0 213.8859 -0.00036049315 -0.00037745518 + 145290 -6250.0953 -6254.0889 3.9935763 3699.3853 631.58337 -10585.058 0 191.39458 -0.00017932026 -0.00019208903 + 145300 -6250.2848 -6253.9534 3.6685102 3698.2142 632.36463 -10584.532 0 175.81559 -9.4867484e-05 -0.00010402436 + 145310 -6250.4198 -6253.9667 3.5469261 3698.1801 632.2344 -10584.381 0 169.9886 -0.00011329704 -0.00012115765 + 145320 -6250.5066 -6254.1202 3.6135751 3699.1563 631.39072 -10584.667 0 173.18279 -0.00021094255 -0.00021976515 + 145330 -6250.5596 -6254.3638 3.8042576 3700.7504 630.18039 -10585.295 0 182.32137 -0.00034635598 -0.00035715804 + 145340 -6250.5915 -6254.6344 4.0428917 3702.4695 628.95885 -10586.063 0 193.75806 -0.00047643305 -0.00048888601 + 145350 -6250.6081 -6254.8755 4.2674309 3703.8771 627.97281 -10586.725 0 204.51923 -0.00057115251 -0.00058422706 + 145360 -6250.6069 -6255.0475 4.4406004 3704.6979 627.3062 -10587.052 0 212.81848 -0.00062140756 -0.00063424789 + 145370 -6250.5794 -6255.1279 4.548576 3704.8458 626.89996 -10586.874 0 217.99328 -0.00063727307 -0.00064981636 + 145380 -6250.517 -6255.1067 4.5897358 3704.3868 626.62496 -10586.119 0 219.96589 -0.0006386324 -0.00065153785 + 145390 -6250.4172 -6254.9789 4.5616968 3703.4584 626.36847 -10584.806 0 218.6221 -0.00064322822 -0.00065705792 + 145400 -6250.2845 -6254.7469 4.4624254 3702.1832 626.09749 -10583.028 0 213.86447 -0.00065725536 -0.00067158354 + 145410 -6250.1223 -6254.4333 4.3110066 3700.6209 625.8785 -10580.933 0 206.60763 -0.000671737 -0.00068518459 + 145420 -6249.9214 -6254.0916 4.1702161 3698.7899 625.85257 -10578.734 0 199.86015 -0.00066582364 -0.00067733062 + 145430 -6249.6544 -6253.7972 4.1427851 3696.7604 626.17731 -10576.735 0 198.54551 -0.00061623104 -0.00062667588 + 145440 -6249.2842 -6253.613 4.3287629 3694.7719 626.95358 -10575.338 0 207.45861 -0.00050999763 -0.00052261576 + 145450 -6248.7848 -6253.5462 4.7613295 3693.299 628.15934 -10575.004 0 228.18963 -0.0003557722 -0.00037438408 + 145460 -6248.1689 -6253.5333 5.3644111 3692.993 629.61476 -10576.141 0 257.09268 -0.0001877544 -0.0002134747 + 145470 -6247.4979 -6253.4786 5.9807144 3694.4617 631.00131 -10578.942 0 286.62939 -5.7373364e-05 -8.6341381e-05 + 145480 -6246.8532 -6253.3341 6.4809454 3697.9402 631.94892 -10583.223 0 310.60327 -1.2429993e-05 -3.7474075e-05 + 145490 -6246.2769 -6253.1533 6.8764167 3703.015 632.17974 -10588.348 0 329.55647 -7.2178444e-05 -8.845691e-05 + 145500 -6245.7498 -6253.0522 7.3023723 3708.6068 631.65473 -10593.314 0 349.97065 -0.00021362548 -0.00022352747 + 145510 -6245.2408 -6253.0871 7.8462836 3713.2854 630.63952 -10597.012 0 376.03793 -0.00037924325 -0.0003909035 + 145520 -6244.7736 -6253.165 8.3913667 3715.764 629.62623 -10598.555 0 402.16137 -0.00050125198 -0.0005210356 + 145530 -6244.4245 -6253.0964 8.6718777 3715.3119 629.12166 -10597.53 0 415.60504 -0.00052774997 -0.00055408269 + 145540 -6244.2464 -6252.7594 8.5130709 3711.9319 629.39982 -10594.091 0 407.99413 -0.00043960201 -0.00046475626 + 145550 -6244.2083 -6252.2158 8.0074695 3706.3349 630.35495 -10588.906 0 383.76287 -0.00025642351 -0.00027432917 + 145560 -6244.2199 -6251.6631 7.4432114 3699.795 631.53908 -10582.997 0 356.72045 -3.355146e-05 -4.5365351e-05 + 145570 -6244.2087 -6251.2801 7.071376 3693.8953 632.35811 -10577.533 0 338.90002 0.00015095142 0.00013873451 + 145580 -6244.1705 -6251.1139 6.9433759 3690.137 632.31884 -10573.57 0 332.76553 0.0002204114 0.00020265197 + 145590 -6244.1533 -6251.0969 6.9436198 3689.4697 631.21487 -10571.782 0 332.77722 0.00012937392 0.00010711327 + 145600 -6244.1999 -6251.1553 6.955439 3691.9242 629.19033 -10572.27 0 333.34366 -0.00011364277 -0.00013447326 + 145610 -6244.3027 -6251.3026 6.9999005 3696.5503 626.6848 -10574.538 0 335.47451 -0.00044350502 -0.00045814744 + 145620 -6244.4091 -6251.6323 7.2232164 3701.7447 624.3053 -10577.682 0 346.17706 -0.0007597668 -0.0007699901 + 145630 -6244.4734 -6252.2154 7.7419938 3705.8478 622.6731 -10580.736 0 371.03978 -0.00096284159 -0.00097662642 + 145640 -6244.512 -6252.9938 8.4818546 3707.7397 622.27215 -10583.006 0 406.49806 -0.00098876562 -0.0010141796 + 145650 -6244.6106 -6253.7659 9.1552976 3707.1726 623.31498 -10584.253 0 438.77323 -0.00082879865 -0.00086694745 + 145660 -6244.8697 -6254.2841 9.4144837 3704.733 625.65705 -10584.674 0 451.19488 -0.00052835342 -0.00057134491 + 145670 -6245.3224 -6254.3966 9.0742265 3701.517 628.80337 -10584.717 0 434.88785 -0.00016845075 -0.00020449341 + 145680 -6245.8965 -6254.1296 8.2330625 3698.7149 632.0314 -10584.876 0 394.57455 0.00016073092 0.00013888767 + 145690 -6246.4589 -6253.6526 7.1936826 3697.2824 634.60192 -10585.537 0 344.76163 0.00038349661 0.00037361933 + 145700 -6246.9046 -6253.1604 6.2558416 3697.7597 635.97953 -10586.9 0 299.81503 0.00045390729 0.00044667569 + 145710 -6247.213 -6252.7711 5.5580932 3700.1977 635.97787 -10588.947 0 266.37501 0.00036333312 0.00034960038 + 145720 -6247.4348 -6252.5104 5.0756562 3704.1399 634.78229 -10591.433 0 243.25392 0.00014193411 0.00011882385 + 145730 -6247.6371 -6252.3699 4.7328265 3708.6796 632.85572 -10593.905 0 226.8236 -0.00014729788 -0.00017561149 + 145740 -6247.8558 -6252.3662 4.5103577 3712.6421 630.77212 -10595.78 0 216.16165 -0.00042413588 -0.00045046699 + 145750 -6248.0837 -6252.5484 4.4646469 3714.8984 629.03746 -10596.484 0 213.97093 -0.00061445479 -0.00063372777 + 145760 -6248.2898 -6252.954 4.6642515 3714.724 627.95399 -10595.632 0 223.53711 -0.0006737455 -0.00068563881 + 145770 -6248.4487 -6253.5571 5.1084358 3712.064 627.56405 -10593.185 0 244.82491 -0.00060125385 -0.00060931691 + 145780 -6248.5599 -6254.2493 5.6894405 3707.5882 627.68192 -10589.519 0 272.66991 -0.00043870724 -0.00044733231 + 145790 -6248.6481 -6254.8682 6.220084 3702.4972 627.9947 -10585.36 0 298.10132 -0.00025409396 -0.0002656068 + 145800 -6248.7464 -6255.2563 6.5098165 3698.1422 628.1938 -10581.592 0 311.98693 -0.00011675577 -0.00013033452 + 145810 -6248.8732 -6255.3235 6.4503741 3695.5987 628.09073 -10579.013 0 309.13812 -7.3069967e-05 -8.5940703e-05 + 145820 -6249.0174 -6255.0832 6.0658281 3695.3587 627.67925 -10578.121 0 290.70852 -0.00013170942 -0.0001416807 + 145830 -6249.1461 -6254.6419 5.4957974 3697.2505 627.12646 -10579.019 0 263.38945 -0.00026380488 -0.00027127672 + 145840 -6249.2281 -6254.1465 4.9184067 3700.5894 626.70146 -10581.437 0 235.71765 -0.00041704644 -0.00042486346 + 145850 -6249.2571 -6253.7195 4.4624445 3704.4579 626.67107 -10584.849 0 213.86538 -0.00053656404 -0.00054766899 + 145860 -6249.254 -6253.4233 4.169336 3707.9823 627.19998 -10588.606 0 199.81797 -0.00058308512 -0.00059786236 + 145870 -6249.2464 -6253.2725 4.0261396 3710.5143 628.28819 -10592.075 0 192.9552 -0.00054200013 -0.00055773006 + 145880 -6249.241 -6253.2702 4.0291911 3711.7125 629.76392 -10594.747 0 193.10145 -0.00042302055 -0.00043617706 + 145890 -6249.2126 -6253.4246 4.2119571 3711.559 631.33169 -10596.315 0 201.86062 -0.00025431584 -0.00026384878 + 145900 -6249.119 -6253.7281 4.6091278 3710.3384 632.65854 -10596.725 0 220.89527 -7.4756722e-05 -8.3476858e-05 + 145910 -6248.9282 -6254.1235 5.1953319 3708.5672 633.47036 -10596.161 0 248.98946 7.4864441e-05 6.2058343e-05 + 145920 -6248.6361 -6254.4992 5.8630504 3706.8539 633.62894 -10594.982 0 280.99027 0.00016187656 0.00014148237 + 145930 -6248.2619 -6254.7276 6.4657259 3705.712 633.16599 -10593.606 0 309.87386 0.0001712625 0.00014366718 + 145940 -6247.8268 -6254.7201 6.8933383 3705.3922 632.26282 -10592.375 0 330.36745 0.00011056144 7.9876791e-05 + 145950 -6247.334 -6254.4607 7.1266818 3705.8113 631.18148 -10591.453 0 341.55058 6.7759421e-06 -2.1657738e-05 + 145960 -6246.7632 -6254.0029 7.2396783 3706.6099 630.1715 -10590.784 0 346.96601 -0.00010431302 -0.00012712958 + 145970 -6246.0831 -6253.4331 7.3499257 3707.3239 629.38862 -10590.146 0 352.24968 -0.00019231659 -0.0002101406 + 145980 -6245.2799 -6252.8186 7.5387283 3707.5949 628.85721 -10589.271 0 361.29816 -0.0002441758 -0.00026103844 + 145990 -6244.3867 -6252.1752 7.7884088 3707.3133 628.48878 -10587.977 0 373.26425 -0.00026815599 -0.00028837946 + 146000 -6243.4866 -6251.4865 7.9999619 3706.6002 628.14602 -10586.233 0 383.40306 -0.00028610638 -0.00031095687 + 146010 -6242.6726 -6250.7709 8.0982591 3705.6452 627.72869 -10584.145 0 388.11402 -0.00031617279 -0.0003432431 + 146020 -6241.9969 -6250.1275 8.1306548 3704.5352 627.25001 -10581.913 0 389.6666 -0.0003560734 -0.00038177323 + 146030 -6241.4544 -6249.7128 8.2583359 3703.2201 626.86833 -10579.801 0 395.78579 -0.00037859369 -0.00040109743 + 146040 -6241.0123 -6249.6641 8.6518469 3701.6347 626.84709 -10578.146 0 414.64505 -0.00034320118 -0.00036339951 + 146050 -6240.6495 -6250.0271 9.3775767 3699.8854 627.44454 -10577.357 0 449.42609 -0.00021822011 -0.00023846272 + 146060 -6240.3827 -6250.7223 10.339615 3698.3785 628.77264 -10577.873 0 495.53237 -2.8681216e-06 -2.4697908e-05 + 146070 -6240.2618 -6251.5685 11.306743 3697.7947 630.6897 -10580.053 0 541.88257 0.00026256115 0.00023986362 + 146080 -6240.3364 -6252.359 12.022613 3698.8717 632.79045 -10584.021 0 576.1911 0.00050592835 0.00048422513 + 146090 -6240.615 -6252.9414 12.326339 3702.0701 634.52537 -10589.537 0 590.74732 0.0006492301 0.00062837471 + 146100 -6241.061 -6253.2388 12.177853 3707.2902 635.41871 -10595.948 0 583.63105 0.00063910547 0.0006154964 + 146110 -6241.6246 -6253.2112 11.586647 3713.774 635.28742 -10602.273 0 555.29716 0.00046910587 0.00043875569 + 146120 -6242.2661 -6252.8361 10.570044 3720.2095 634.34079 -10607.386 0 506.57583 0.00018702701 0.00015040124 + 146130 -6242.9402 -6252.1582 9.218004 3724.9969 633.0974 -10610.252 0 441.77847 -0.00011533571 -0.0001525292 + 146140 -6243.5785 -6251.3464 7.767872 3726.6545 632.15891 -10610.16 0 372.28001 -0.00033044439 -0.00036195618 + 146150 -6244.1112 -6250.6616 6.5504046 3724.3178 631.95507 -10606.934 0 313.93214 -0.00037483331 -0.00039897713 + 146160 -6244.5085 -6250.334 5.8254767 3718.1626 632.57064 -10601.067 0 279.18953 -0.00022451428 -0.00024441155 + 146170 -6244.7954 -6250.4587 5.6633227 3709.5196 633.70778 -10593.686 0 271.4182 7.1660058e-05 5.1967499e-05 + 146180 -6245.0233 -6250.9931 5.9698235 3700.5602 634.78345 -10586.337 0 286.10744 0.00040794112 0.00038653152 + 146190 -6245.2325 -6251.8244 6.591914 3693.6575 635.13027 -10580.612 0 315.92151 0.00065921304 0.00063573023 + 146200 -6245.4421 -6252.8175 7.375414 3690.6746 634.24374 -10577.736 0 353.47122 0.00072361342 0.00069735293 + 146210 -6245.6716 -6253.8147 8.1430177 3692.4159 631.99524 -10578.226 0 390.2591 0.00055555024 0.00052568269 + 146220 -6245.9566 -6254.6358 8.6792703 3698.3721 628.72882 -10581.737 0 415.95933 0.00018167066 0.00014953754 + 146230 -6246.3287 -6255.1305 8.801786 3706.8148 625.19533 -10587.141 0 421.83097 -0.00030268998 -0.00033272768 + 146240 -6246.7775 -6255.251 8.4735162 3715.2567 622.33982 -10592.848 0 406.09844 -0.00075768006 -0.00078106409 + 146250 -6247.2424 -6255.0696 7.8271466 3721.2063 621.01522 -10597.291 0 375.12078 -0.0010413301 -0.0010572956 + 146260 -6247.6537 -6254.7083 7.0545377 3722.991 621.71763 -10599.417 0 338.09303 -0.0010585212 -0.001070717 + 146270 -6247.9797 -6254.2534 6.2736685 3720.3199 624.42202 -10598.995 0 300.6694 -0.00079641295 -0.00080934743 + 146280 -6248.2318 -6253.7416 5.5097764 3714.3438 628.56337 -10596.649 0 264.0594 -0.00032940439 -0.00034470796 + 146290 -6248.4328 -6253.2156 4.7828129 3707.2147 633.17544 -10593.606 0 229.21923 0.00020796891 0.0001917435 + 146300 -6248.5909 -6252.768 4.1771017 3701.3618 637.15776 -10591.288 0 200.19015 0.00066632078 0.00065102046 + 146310 -6248.7015 -6252.5158 3.8143235 3698.7538 639.5933 -10590.863 0 182.80379 0.00092624792 0.00091197896 + 146320 -6248.7639 -6252.5328 3.7689245 3700.3514 640.01183 -10592.896 0 180.62801 0.00092961237 0.00091515093 + 146330 -6248.7906 -6252.8056 4.014952 3705.8599 638.50973 -10597.175 0 192.41903 0.0006920561 0.00067677384 + 146340 -6248.7986 -6253.2485 4.4499675 3713.8182 635.68825 -10602.755 0 213.26741 0.0002960508 0.00028091335 + 146350 -6248.7932 -6253.7604 4.9671714 3722.0054 632.43575 -10608.202 0 238.05472 -0.00013419273 -0.00014780274 + 146360 -6248.7626 -6254.2683 5.5057606 3728.0775 629.63436 -10611.98 0 263.86694 -0.00047111363 -0.00048355771 + 146370 -6248.6908 -6254.7253 6.0345192 3730.2658 627.89681 -10612.888 0 289.20802 -0.00062458248 -0.00063861025 + 146380 -6248.5816 -6255.0785 6.4969172 3727.9129 627.41975 -10610.411 0 311.36873 -0.00056985979 -0.00058860104 + 146390 -6248.4653 -6255.2594 6.7941394 3721.6457 627.98663 -10604.892 0 325.61328 -0.00035076342 -0.00037485842 + 146400 -6248.3781 -6255.2189 6.840752 3713.1204 629.09736 -10597.437 0 327.84722 -5.7499765e-05 -8.4355259e-05 + 146410 -6248.333 -6254.9695 6.6364738 3704.4653 630.16854 -10589.603 0 318.05706 0.00020895984 0.00018301587 + 146420 -6248.3128 -6254.5863 6.2734605 3697.6645 630.73682 -10582.988 0 300.65943 0.00036982365 0.00034678174 + 146430 -6248.2891 -6254.1624 5.8733693 3694.0888 630.60228 -10578.853 0 281.48481 0.00038818543 0.00036755887 + 146440 -6248.2434 -6253.7646 5.5211936 3694.2574 629.86872 -10577.891 0 264.60658 0.00027333787 0.00025348718 + 146450 -6248.1727 -6253.4227 5.2500737 3697.8232 628.87538 -10580.121 0 251.61299 7.2327292e-05 5.2115202e-05 + 146460 -6248.0789 -6253.1478 5.068861 3703.7431 628.05559 -10584.947 0 242.92826 -0.00014724882 -0.00016792341 + 146470 -6247.9593 -6252.9498 4.9905473 3710.5863 627.78171 -10591.318 0 239.17503 -0.0003182461 -0.00033894352 + 146480 -6247.8032 -6252.8407 5.0375164 3716.9035 628.25097 -10597.995 0 241.42605 -0.00039272184 -0.00041305424 + 146490 -6247.5944 -6252.8288 5.2343479 3721.5552 629.4408 -10603.825 0 250.85932 -0.00035274608 -0.00037260412 + 146500 -6247.3111 -6252.9171 5.6060216 3723.9093 631.13484 -10607.961 0 268.67201 -0.00021056143 -0.00023024702 + 146510 -6246.9272 -6253.0996 6.1724192 3723.884 633.0042 -10609.988 0 295.81696 2.4673409e-08 -2.0251665e-05 + 146520 -6246.4235 -6253.3433 6.9197781 3721.8767 634.71642 -10609.936 0 331.63459 0.00023603705 0.00021459821 + 146530 -6245.8038 -6253.5738 7.769957 3718.6166 636.03337 -10608.224 0 372.37994 0.00045708149 0.00043529736 + 146540 -6245.0987 -6253.6956 8.5969289 3714.9714 636.85794 -10605.525 0 412.01307 0.00063391142 0.00061403049 + 146550 -6244.35 -6253.6397 9.2896786 3711.7591 637.21098 -10602.61 0 445.21352 0.00075146955 0.00073501349 + 146560 -6243.5966 -6253.3882 9.7916344 3709.6281 637.15606 -10600.172 0 469.27006 0.00080452034 0.00078993568 + 146570 -6242.8795 -6252.9538 10.074221 3709.0107 636.7192 -10598.684 0 482.81318 0.00078863777 0.00077196125 + 146580 -6242.2532 -6252.3564 10.103188 3710.0815 635.85498 -10598.293 0 484.20145 0.00069520705 0.00067361006 + 146590 -6241.7691 -6251.641 9.8719103 3712.6624 634.48479 -10598.788 0 473.11733 0.00051750031 0.00049181735 + 146600 -6241.4449 -6250.912 9.4671363 3716.1345 632.58996 -10599.636 0 453.71829 0.00026466257 0.00023822722 + 146610 -6241.2547 -6250.3238 9.0690582 3719.4715 630.30738 -10600.103 0 434.64015 -2.7557859e-05 -5.2057805e-05 + 146620 -6241.1539 -6250.0212 8.8672282 3721.4566 627.96902 -10599.447 0 424.96733 -0.00029811356 -0.00032052316 + 146630 -6241.1099 -6250.0766 8.9667312 3721.0363 626.05419 -10597.167 0 429.73607 -0.00047482618 -0.00049720411 + 146640 -6241.1189 -6250.4619 9.3430219 3717.7112 625.06344 -10593.237 0 447.77003 -0.00049687549 -0.00052198977 + 146650 -6241.209 -6251.0548 9.8458409 3711.8363 625.35168 -10588.243 0 471.86794 -0.00033872137 -0.00036825761 + 146660 -6241.4295 -6251.6766 10.247099 3704.6823 626.97317 -10583.332 0 491.09846 -2.6412506e-05 -5.9581967e-05 + 146670 -6241.8238 -6252.1598 10.335944 3698.1607 629.59984 -10579.92 0 495.35643 0.00036285994 0.00032919905 + 146680 -6242.3946 -6252.4203 10.025688 3694.2697 632.57025 -10579.26 0 480.48721 0.0007214179 0.00069063221 + 146690 -6243.0907 -6252.4881 9.3974643 3694.462 635.08372 -10582.034 0 450.37922 0.00094549357 0.00091848699 + 146700 -6243.8328 -6252.4701 8.6373066 3699.1743 636.4783 -10588.123 0 413.9482 0.0009695102 0.0009440198 + 146710 -6244.557 -6252.4708 7.9137867 3707.662 636.47337 -10596.606 0 379.27306 0.00078719732 0.00076008119 + 146720 -6245.2364 -6252.5366 7.3002428 3718.1602 635.26642 -10605.963 0 349.8686 0.00045392125 0.00042441067 + 146730 -6245.8664 -6252.6643 6.7978859 3728.2997 633.44709 -10614.411 0 325.79283 7.161487e-05 4.228497e-05 + 146740 -6246.4371 -6252.8483 6.4111486 3735.6799 631.77581 -10620.304 0 307.25822 -0.00023936503 -0.00026493207 + 146750 -6246.925 -6253.1065 6.1815139 3738.484 630.91981 -10622.51 0 296.25283 -0.00037562665 -0.00039616245 + 146760 -6247.3091 -6253.4526 6.1435443 3736.002 631.23397 -10620.689 0 294.43312 -0.0002847658 -0.00030235229 + 146770 -6247.5929 -6253.8498 6.2568733 3728.8974 632.6434 -10615.391 0 299.86448 1.3275087e-05 -4.6056647e-06 + 146780 -6247.8079 -6254.2051 6.3971557 3719.0888 634.65523 -10607.949 0 306.5876 0.00042763502 0.00040820253 + 146790 -6247.9918 -6254.4217 6.4299436 3709.2309 636.50192 -10600.155 0 308.15897 0.00082348095 0.00080415685 + 146800 -6248.1613 -6254.4642 6.3028608 3701.9464 637.38549 -10593.796 0 302.06845 0.0010658947 0.001049147 + 146810 -6248.3059 -6254.3735 6.0676819 3699.0694 636.75192 -10590.195 0 290.79736 0.0010640142 0.0010503473 + 146820 -6248.4078 -6254.2242 5.8163603 3701.1462 634.50132 -10589.872 0 278.75262 0.00079978663 0.00078725041 + 146830 -6248.4665 -6254.0698 5.6033552 3707.3221 631.05477 -10592.447 0 268.54422 0.00033386821 0.00032014235 + 146840 -6248.4996 -6253.9298 5.4302123 3715.6123 627.24961 -10596.792 0 260.24624 -0.00021075738 -0.0002261734 + 146850 -6248.5249 -6253.8152 5.2903257 3723.4752 624.09827 -10601.389 0 253.54209 -0.00068255346 -0.00069834915 + 146860 -6248.5433 -6253.7505 5.20716 3728.5466 622.4905 -10604.788 0 249.55632 -0.00094478751 -0.00095972582 + 146870 -6248.5425 -6253.76 5.2175184 3729.3442 622.93091 -10606.035 0 250.05276 -0.00091704237 -0.00093141899 + 146880 -6248.5138 -6253.8363 5.3224237 3725.7261 625.38621 -10604.949 0 255.08041 -0.0006014297 -0.00061655783 + 146890 -6248.4637 -6253.9303 5.4665978 3718.9388 629.28412 -10602.153 0 261.99004 -8.3319672e-05 -9.9834601e-05 + 146900 -6248.4068 -6253.9812 5.5744534 3711.2212 633.66816 -10598.871 0 267.15909 0.00049481928 0.00047781763 + 146910 -6248.3503 -6253.9588 5.6085635 3705.0969 637.47009 -10596.526 0 268.79383 0.00097754924 0.00096157854 + 146920 -6248.2861 -6253.8806 5.5945131 3702.5984 639.82079 -10596.3 0 268.12046 0.0012430845 0.001228624 + 146930 -6248.1985 -6253.7925 5.5940254 3704.6736 640.29843 -10598.765 0 268.09708 0.001237209 0.0012229925 + 146940 -6248.0777 -6253.7355 5.6578574 3710.9385 639.02899 -10603.703 0 271.15627 0.00098505761 0.0009688875 + 146950 -6247.9275 -6253.7246 5.7970674 3719.8158 636.60694 -10610.147 0 277.828 0.00057883116 0.00055914867 + 146960 -6247.7636 -6253.7474 5.9838842 3728.9902 633.87144 -10616.609 0 286.7813 0.00014647804 0.00012359332 + 146970 -6247.6038 -6253.7785 6.1747546 3736.0417 631.62353 -10621.444 0 295.92889 -0.00018803809 -0.00021183845 + 146980 -6247.4557 -6253.8001 6.344404 3739.0836 630.38466 -10623.268 0 304.05944 -0.00033998058 -0.00036178764 + 146990 -6247.3077 -6253.8153 6.5075721 3737.2517 630.27251 -10621.34 0 311.87937 -0.00028454049 -0.00030303563 + 147000 -6247.1367 -6253.8357 6.6990415 3730.929 631.02183 -10615.787 0 321.05566 -5.903858e-05 -7.5774528e-05 + 147010 -6246.9299 -6253.8487 6.9187766 3721.6411 632.12514 -10607.615 0 331.5866 0.00025219943 0.00023399297 + 147020 -6246.7019 -6253.8008 7.098848 3711.6312 633.03228 -10598.464 0 340.21663 0.0005460018 0.00052438952 + 147030 -6246.4871 -6253.6284 7.1413614 3703.2279 633.3383 -10590.195 0 342.25411 0.00073387818 0.00071023341 + 147040 -6246.3094 -6253.3167 7.0073626 3698.2162 632.90102 -10584.434 0 335.83213 0.00076963118 0.00074753481 + 147050 -6246.1585 -6252.9352 6.7767234 3697.4331 631.85656 -10582.225 0 324.77861 0.00065990611 0.00064168041 + 147060 -6245.9963 -6252.6084 6.6120517 3700.6995 630.54 -10583.848 0 316.88662 0.00045359909 0.00043776836 + 147070 -6245.7909 -6252.4357 6.644817 3707.0402 629.35307 -10588.829 0 318.45691 0.00021726856 0.00019968495 + 147080 -6245.545 -6252.4288 6.8837801 3715.0256 628.6348 -10596.089 0 329.90937 1.0949191e-05 -1.1280307e-05 + 147090 -6245.2907 -6252.5218 7.2310517 3723.0841 628.57866 -10604.185 0 346.55257 -0.00012424688 -0.00014995424 + 147100 -6245.0564 -6252.6381 7.581664 3729.7394 629.21479 -10611.592 0 363.35588 -0.00016598135 -0.00019111061 + 147110 -6244.8415 -6252.7405 7.8989669 3733.8175 630.44783 -10617.006 0 378.56282 -0.00010579516 -0.00012722812 + 147120 -6244.6243 -6252.8218 8.1975096 3734.6542 632.11911 -10619.595 0 392.87065 5.303151e-05 3.491458e-05 + 147130 -6244.3923 -6252.8674 8.4750964 3732.2586 634.05443 -10619.18 0 406.17417 0.00029392061 0.0002761561 + 147140 -6244.1598 -6252.8454 8.685514 3727.3503 636.07422 -10616.27 0 416.25857 0.00058575163 0.00056567475 + 147150 -6243.9577 -6252.7417 8.7840318 3721.2195 637.97235 -10611.934 0 420.98009 0.00088513172 0.00086211531 + 147160 -6243.8096 -6252.5939 8.7842382 3715.4346 639.49435 -10607.523 0 420.98998 0.0011415767 0.0011164388 + 147170 -6243.725 -6252.4733 8.7483039 3711.4761 640.34841 -10604.298 0 419.26781 0.0013037245 0.0012774676 + 147180 -6243.711 -6252.4299 8.718841 3710.3801 640.26334 -10603.073 0 417.85578 0.001327407 0.0013010873 + 147190 -6243.7794 -6252.4577 8.6782535 3712.4546 639.07954 -10603.992 0 415.9106 0.001187786 0.001162866 + 147200 -6243.9361 -6252.5157 8.5796511 3717.1443 636.83894 -10606.499 0 411.18502 0.00089308987 0.0008706216 + 147210 -6244.1711 -6252.5659 8.3947398 3723.1231 633.83372 -10609.523 0 402.32304 0.00049151464 0.00047064924 + 147220 -6244.4689 -6252.584 8.1151052 3728.6303 630.58324 -10611.798 0 388.92138 6.4286037e-05 4.2427826e-05 + 147230 -6244.8249 -6252.5521 7.7271738 3731.9573 627.73213 -10612.242 0 370.32953 -0.00029366063 -0.00031842888 + 147240 -6245.2438 -6252.4686 7.2248699 3731.9283 625.89216 -10610.289 0 346.25631 -0.00049758691 -0.00052432738 + 147250 -6245.7163 -6252.3788 6.6625113 3728.239 625.4737 -10606.092 0 319.30493 -0.00049453144 -0.00052026658 + 147260 -6246.209 -6252.3819 6.1729124 3721.5863 626.55964 -10600.528 0 295.8406 -0.00027925221 -0.00030213489 + 147270 -6246.682 -6252.58 5.8980736 3713.5632 628.86365 -10595.007 0 282.66878 9.8570197e-05 7.7243593e-05 + 147280 -6247.12 -6253.0024 5.8824809 3706.3183 631.79036 -10591.111 0 281.92149 0.00054101819 0.00051821476 + 147290 -6247.5403 -6253.571 6.0307881 3702.0106 634.58709 -10590.169 0 289.02921 0.00092584593 0.00090009454 + 147300 -6247.9708 -6254.1418 6.1709769 3702.1765 636.55113 -10592.869 0 295.74784 0.001143197 0.0011163555 + 147310 -6248.419 -6254.5862 6.1672399 3707.207 637.23452 -10599.028 0 295.56874 0.0011321765 0.0011079697 + 147320 -6248.8587 -6254.851 5.992309 3716.1438 636.57992 -10607.575 0 287.18507 0.00090203902 0.00088278157 + 147330 -6249.2459 -6254.9588 5.7129441 3726.9009 634.93836 -10616.798 0 273.79634 0.00052910018 0.00051355273 + 147340 -6249.5489 -6254.9633 5.414395 3736.8476 632.9589 -10624.77 0 259.48819 0.00013134644 0.0001155761 + 147350 -6249.7693 -6254.9026 5.1333552 3743.546 631.38345 -10629.832 0 246.01919 -0.00016867049 -0.00018814974 + 147360 -6249.9364 -6254.7896 4.8532015 3745.3957 630.80881 -10630.994 0 232.59265 -0.00027978308 -0.00030324059 + 147370 -6250.0836 -6254.6375 4.5538566 3742.0155 631.4897 -10628.143 0 218.24636 -0.00016723273 -0.00019154045 + 147380 -6250.2249 -6254.4858 4.2608804 3734.3038 633.24682 -10622.036 0 204.2053 0.00013831147 0.00011732358 + 147390 -6250.3493 -6254.3989 4.0496253 3724.2003 635.51232 -10614.112 0 194.08077 0.00054905302 0.00053360473 + 147400 -6250.4306 -6254.4354 4.0047572 3714.2151 637.50093 -10606.151 0 191.93044 0.00094365701 0.00093238601 + 147410 -6250.447 -6254.6092 4.1621499 3706.8218 638.45533 -10599.886 0 199.47358 0.0012004218 0.0011891069 + 147420 -6250.3989 -6254.864 4.4650506 3703.8426 637.89107 -10596.598 0 213.99028 0.0012316307 0.0012160138 + 147430 -6250.315 -6255.0835 4.7685213 3705.9616 635.7643 -10596.809 0 228.5343 0.0010103667 0.00098943717 + 147440 -6250.2362 -6255.1484 4.9121683 3712.4951 632.50552 -10600.149 0 235.41867 0.00058246455 0.0005596504 + 147450 -6250.1833 -6255.0132 4.8298707 3721.5194 628.90559 -10605.438 0 231.47451 5.8461794e-05 3.913084e-05 + 147460 -6250.135 -6254.7453 4.6102678 3730.3827 625.89291 -10611.021 0 220.9499 -0.00041537566 -0.00042862851 + 147470 -6250.0415 -6254.4797 4.4382385 3736.4945 624.2778 -10615.252 0 212.70529 -0.00070045498 -0.00071063547 + 147480 -6249.867 -6254.3172 4.4501714 3738.1389 624.53927 -10616.995 0 213.27718 -0.00070948486 -0.00072309492 + 147490 -6249.6226 -6254.2506 4.6280211 3735.0042 626.70102 -10615.956 0 221.80074 -0.00043401933 -0.00045543537 + 147500 -6249.3581 -6254.1905 4.8324579 3728.2278 630.31476 -10612.733 0 231.5985 5.4263709e-05 2.6916898e-05 + 147510 -6249.1179 -6254.0653 4.9473316 3719.9737 634.55593 -10608.595 0 237.10389 0.00062768631 0.00060125345 + 147520 -6248.8992 -6253.902 5.0027734 3712.7464 638.4239 -10605.072 0 239.76097 0.0011415363 0.001122112 + 147530 -6248.648 -6253.8153 5.1672363 3708.6968 641.00899 -10603.521 0 247.64296 0.001473796 0.0014614012 + 147540 -6248.298 -6253.9146 5.6166055 3709.0999 641.7527 -10604.767 0 269.17925 0.0015545805 0.0015425159 + 147550 -6247.8223 -6254.2021 6.3798866 3714.0727 640.61493 -10608.89 0 305.75997 0.0013799941 0.0013594327 + 147560 -6247.2684 -6254.5364 7.2680104 3722.5413 638.08457 -10615.162 0 348.32384 0.0010097935 0.00097657583 + 147570 -6246.7457 -6254.6937 7.9480513 3732.4463 635.01799 -10622.158 0 380.91521 0.00055102691 0.00050985427 + 147580 -6246.3573 -6254.5055 8.1481802 3741.1813 632.35098 -10628.038 0 390.50651 0.00013132468 9.3362125e-05 + 147590 -6246.1202 -6253.9841 7.8638982 3746.2376 630.78843 -10631.01 0 376.88212 -0.00013391283 -0.00015961026 + 147600 -6245.9516 -6253.3272 7.3755394 3745.9485 630.59608 -10629.872 0 353.47723 -0.00017494004 -0.00018959001 + 147610 -6245.7487 -6252.7707 7.0219613 3740.1064 631.5711 -10624.448 0 336.53179 7.8194652e-06 -7.0055536e-06 + 147620 -6245.4874 -6252.4135 6.9261342 3730.144 633.17681 -10615.734 0 331.93922 0.00034113 0.00031444835 + 147630 -6245.2413 -6252.1795 6.9382182 3718.699 634.762 -10605.641 0 332.51834 0.00070558773 0.00066524707 + 147640 -6245.1062 -6251.9464 6.8401876 3708.7068 635.77783 -10596.431 0 327.82017 0.00098292708 0.00093853636 + 147650 -6245.1067 -6251.7001 6.5933999 3702.4543 635.93038 -10590.085 0 315.99272 0.0011005664 0.0010647649 + 147660 -6245.1733 -6251.5655 6.3922073 3701.02 635.23297 -10587.818 0 306.35044 0.0010506669 0.0010286932 + 147670 -6245.2028 -6251.6981 6.4952726 3704.2399 633.95451 -10589.893 0 311.28991 0.00087788459 0.00086388234 + 147680 -6245.1426 -6252.143 7.0004131 3711.0406 632.4972 -10595.681 0 335.49908 0.00064899411 0.00063133598 + 147690 -6245.0298 -6252.7806 7.7508132 3719.8698 631.26077 -10603.911 0 371.46246 0.00042468604 0.00039530759 + 147700 -6244.9607 -6253.3994 8.4387366 3729.0359 630.54244 -10612.978 0 404.43161 0.00024682296 0.00020700202 + 147710 -6245.015 -6253.8317 8.8166743 3736.9256 630.49271 -10621.25 0 422.5445 0.00014087886 9.9296206e-05 + 147720 -6245.1983 -6254.0435 8.8451185 3742.1741 631.12043 -10627.338 0 423.90771 0.00012335978 8.8709955e-05 + 147730 -6245.4491 -6254.113 8.6638723 3743.8729 632.32992 -10630.316 0 415.22137 0.00020397472 0.00017866603 + 147740 -6245.6975 -6254.1275 8.4300079 3741.8055 633.96984 -10629.903 0 404.01328 0.00038051284 0.00036044453 + 147750 -6245.9165 -6254.1007 8.1842095 3736.5879 635.86884 -10626.557 0 392.23324 0.00063256032 0.00061197241 + 147760 -6246.119 -6253.9834 7.8643502 3729.5755 637.8368 -10621.396 0 376.90379 0.00092075739 0.00089671391 + 147770 -6246.3222 -6253.7391 7.416934 3722.5305 639.63685 -10615.906 0 355.46109 0.0011921576 0.0011650278 + 147780 -6246.5257 -6253.3898 6.8641306 3717.1818 640.9645 -10611.536 0 328.96765 0.0013882802 0.0013598105 + 147790 -6246.7216 -6252.9999 6.2782281 3714.816 641.47555 -10609.291 0 300.88792 0.0014552682 0.001427497 + 147800 -6246.9063 -6252.6483 5.7419639 3715.9679 640.8758 -10609.492 0 275.18713 0.0013581511 0.0013333599 + 147810 -6247.0737 -6252.4263 5.3526376 3720.2565 639.04582 -10611.729 0 256.52843 0.0010966952 0.0010764575 + 147820 -6247.2057 -6252.4309 5.2251216 3726.4418 636.14773 -10615.02 0 250.41714 0.00071402389 0.00069732265 + 147830 -6247.284 -6252.7182 5.4342667 3732.7374 632.6585 -10618.114 0 260.44055 0.0002904602 0.00027338475 + 147840 -6247.3144 -6253.2442 5.929814 3737.304 629.29591 -10619.844 0 284.18996 -7.6303995e-05 -9.7816521e-05 + 147850 -6247.3359 -6253.8596 6.5237802 3738.7498 626.84132 -10619.451 0 312.65615 -0.00029647198 -0.00032308297 + 147860 -6247.3947 -6254.3848 6.9901176 3736.4935 625.90805 -10616.786 0 335.00566 -0.00031095856 -0.00033931731 + 147870 -6247.509 -6254.702 7.192915 3730.9302 626.73793 -10612.37 0 344.72485 -0.00010816592 -0.00013399241 + 147880 -6247.6596 -6254.7888 7.12926 3723.3917 629.10675 -10607.287 0 341.67414 0.00026780222 0.00024613829 + 147890 -6247.812 -6254.6855 6.8735481 3715.8806 632.37776 -10602.944 0 329.41899 0.00072236986 0.00070305643 + 147900 -6247.9445 -6254.4491 6.5045112 3710.5797 635.68642 -10600.715 0 311.73268 0.0011330128 0.0011127988 + 147910 -6248.0561 -6254.1344 6.0782819 3709.2325 638.19615 -10601.563 0 291.30537 0.0013853043 0.0013620169 + 147920 -6248.1581 -6253.7993 5.6411861 3712.5824 639.34328 -10605.725 0 270.35729 0.0014101164 0.0013838961 + 147930 -6248.2616 -6253.5112 5.2495965 3720.0734 638.99218 -10612.577 0 251.59012 0.0012073278 0.001180228 + 147940 -6248.3682 -6253.3448 4.9765665 3729.938 637.4531 -10620.736 0 238.50499 0.00084667333 0.00082115094 + 147950 -6248.4684 -6253.3649 4.8964727 3739.6678 635.36484 -10628.398 0 234.66644 0.00044546812 0.00042272825 + 147960 -6248.5468 -6253.599 5.0521951 3746.7303 633.48716 -10633.816 0 242.12954 0.00013140987 0.00011056287 + 147970 -6248.5923 -6254.0162 5.4239292 3749.3016 632.467 -10635.785 0 259.94512 2.9628356e-06 -1.8589611e-05 + 147980 -6248.609 -6254.5216 5.9125737 3746.7887 632.64207 -10633.952 0 283.36371 9.8963338e-05 7.4001955e-05 + 147990 -6248.624 -6254.9692 6.3451561 3739.9893 633.93541 -10628.894 0 304.09548 0.00038598277 0.00035719404 + 148000 -6248.6782 -6255.2064 6.5281375 3730.8349 635.87394 -10621.915 0 312.86498 0.00076870683 0.00073944971 + 148010 -6248.7953 -6255.1497 6.354424 3721.7869 637.73445 -10614.671 0 304.53965 0.0011220358 0.0010978184 + 148020 -6248.9536 -6254.8418 5.8881824 3715.1005 638.78178 -10608.724 0 282.19474 0.0013332164 0.0013173091 + 148030 -6249.0965 -6254.428 5.3315179 3712.2253 638.52413 -10605.177 0 255.51625 0.0013366383 0.0013267737 + 148040 -6249.1767 -6254.0632 4.88651 3713.5139 636.892 -10604.469 0 234.18898 0.0011296719 0.0011192793 + 148050 -6249.1933 -6253.8268 4.6335214 3718.25 634.27128 -10606.348 0 222.06435 0.0007689798 0.00075214016 + 148060 -6249.1872 -6253.7098 4.5225465 3724.9106 631.37905 -10609.999 0 216.74581 0.00035289846 0.00032882782 + 148070 -6249.2056 -6253.6693 4.4637796 3731.5761 629.0307 -10614.276 0 213.92936 -4.6691049e-06 -3.1153185e-05 + 148080 -6249.2635 -6253.6906 4.4270627 3736.4193 627.88348 -10617.993 0 212.16969 -0.00020430841 -0.00022643995 + 148090 -6249.3334 -6253.8047 4.4712927 3738.1892 628.24315 -10620.237 0 214.28944 -0.0001889216 -0.00020284076 + 148100 -6249.3627 -6254.0547 4.6919868 3736.5717 629.99049 -10620.617 0 224.86634 3.8753192e-05 3.1339199e-05 + 148110 -6249.3068 -6254.4411 5.1343204 3732.3038 632.63853 -10619.383 0 246.06544 0.0004155819 0.00040849512 + 148120 -6249.1569 -6254.8909 5.7339907 3726.9686 635.49095 -10617.35 0 274.80501 0.00083598651 0.00082251546 + 148130 -6248.9465 -6255.2721 6.325623 3722.4971 637.84878 -10615.618 0 303.15935 0.0011837803 0.0011609013 + 148140 -6248.7331 -6255.4515 6.7183208 3720.5231 639.20653 -10615.181 0 321.97963 0.0013683167 0.0013385386 + 148150 -6248.5633 -6255.3602 6.796949 3721.8197 639.38307 -10616.563 0 325.74794 0.0013529048 0.0013225301 + 148160 -6248.4435 -6255.0295 6.5860087 3726.039 638.54922 -10619.618 0 315.63849 0.0011648198 0.0011397228 + 148170 -6248.3395 -6254.5703 6.2307393 3731.8582 637.14423 -10623.573 0 298.61199 0.00088252488 0.00086430763 + 148180 -6248.2034 -6254.1084 5.9049961 3737.4652 635.71142 -10627.285 0 283.00054 0.00060517495 0.00059038643 + 148190 -6248.0077 -6253.718 5.7102607 3741.1734 634.71186 -10629.603 0 273.66773 0.0004171503 0.00040002048 + 148200 -6247.7616 -6253.3987 5.6371519 3741.9319 634.37925 -10629.71 0 270.16395 0.00036167213 0.00033819247 + 148210 -6247.498 -6253.1078 5.6097847 3739.5698 634.66114 -10627.339 0 268.85236 0.00043218362 0.00040256171 + 148220 -6247.2481 -6252.8179 5.5698395 3734.7437 635.26075 -10622.822 0 266.93796 0.00058202432 0.00055009568 + 148230 -6247.0189 -6252.5566 5.5376693 3728.6559 635.76238 -10616.975 0 265.39619 0.00074638017 0.00071682711 + 148240 -6246.7888 -6252.406 5.6171731 3722.6753 635.79656 -10610.878 0 269.20645 0.00086742294 0.00084275193 + 148250 -6246.5178 -6252.4647 5.9468869 3717.9928 635.18837 -10605.646 0 285.00819 0.00091355633 0.00089253457 + 148260 -6246.1714 -6252.7884 6.6169705 3715.4083 634.03454 -10602.231 0 317.12235 0.00088626461 0.0008647473 + 148270 -6245.7482 -6253.3351 7.5869297 3715.2632 632.67585 -10601.274 0 363.60824 0.00081312623 0.0007870972 + 148280 -6245.2962 -6253.9543 8.658069 3717.4641 631.56713 -10602.986 0 414.94325 0.00073167513 0.0007007257 + 148290 -6244.8969 -6254.4403 9.5434243 3721.5397 631.09333 -10607.073 0 457.37444 0.00067267357 0.00064107372 + 148300 -6244.6172 -6254.6286 10.011385 3726.7236 631.41362 -10612.766 0 479.80176 0.00065028362 0.00062402085 + 148310 -6244.4667 -6254.4705 10.003794 3732.0938 632.41031 -10618.975 0 479.43792 0.00066141822 0.00064302704 + 148320 -6244.4007 -6254.0352 9.6344704 3736.7655 633.76558 -10624.566 0 461.73788 0.00069160629 0.00067719983 + 148330 -6244.369 -6253.4445 9.0754951 3740.0743 635.12083 -10628.64 0 434.94865 0.00072361132 0.00070518205 + 148340 -6244.3626 -6252.7989 8.4363023 3741.6659 636.23494 -10630.7 0 404.31494 0.00074653613 0.00071815314 + 148350 -6244.4162 -6252.1556 7.7394049 3741.4667 637.06618 -10630.689 0 370.91571 0.00076343303 0.00072638632 + 148360 -6244.5652 -6251.5692 7.0039629 3739.5919 637.74279 -10628.904 0 335.6692 0.00079348838 0.00075586305 + 148370 -6244.7996 -6251.1429 6.3433308 3736.29 638.44096 -10625.874 0 304.008 0.00086394644 0.00083457065 + 148380 -6245.0605 -6251.0206 5.9601468 3731.9926 639.2353 -10622.249 0 285.64368 0.00099152696 0.00097322014 + 148390 -6245.2829 -6251.3054 6.0225232 3727.4205 640.00257 -10618.728 0 288.6331 0.0011624532 0.0011501344 + 148400 -6245.4458 -6251.9762 6.530413 3723.5916 640.43234 -10616 0 312.97403 0.0013257274 0.0013103813 + 148410 -6245.5887 -6252.8766 7.287866 3721.6023 640.14689 -10614.626 0 349.27543 0.0014082421 0.001382925 + 148420 -6245.7895 -6253.7799 7.9904395 3722.2133 638.88196 -10614.875 0 382.94669 0.0013464341 0.0013100361 + 148430 -6246.1226 -6254.4765 8.3538951 3725.4408 636.64967 -10616.567 0 400.36553 0.0011188581 0.0010762126 + 148440 -6246.62 -6254.8394 8.2194174 3730.385 633.80491 -10619.029 0 393.9206 0.00076380878 0.00072308065 + 148450 -6247.2488 -6254.8614 7.6125941 3735.4283 630.97426 -10621.264 0 364.83823 0.00037341717 0.00034207274 + 148460 -6247.9182 -6254.6576 6.7394187 3738.763 628.86825 -10622.289 0 322.99076 6.5018575e-05 4.5744328e-05 + 148470 -6248.522 -6254.4168 5.8948807 3739.0586 628.05148 -10621.527 0 282.51576 -6.0745255e-05 -7.1947156e-05 + 148480 -6248.996 -6254.3018 5.3058233 3736.0083 628.75794 -10619.068 0 254.28483 4.0904166e-05 2.9456295e-05 + 148490 -6249.3479 -6254.3576 5.0097007 3730.5125 630.80904 -10615.679 0 240.09297 0.00033939913 0.00032083234 + 148500 -6249.6359 -6254.5075 4.8716659 3724.3974 633.65135 -10612.556 0 233.47757 0.00073843965 0.00071212967 + 148510 -6249.9146 -6254.6411 4.7264605 3719.7724 636.50461 -10610.918 0 226.51851 0.0011107383 0.0010820832 + 148520 -6250.1953 -6254.7111 4.5158675 3718.2991 638.58884 -10611.599 0 216.42571 0.0013424681 0.0013180501 + 148530 -6250.4475 -6254.7544 4.306878 3720.6626 639.36863 -10614.786 0 206.40976 0.0013694568 0.001352043 + 148540 -6250.6331 -6254.8326 4.1995089 3726.3984 638.7314 -10619.962 0 201.26403 0.0011939672 0.0011813089 + 148550 -6250.7379 -6254.9652 4.2273602 3734.0655 637.02815 -10626.059 0 202.59882 0.0008803963 0.00086789628 + 148560 -6250.7776 -6255.1119 4.3342539 3741.6659 634.95346 -10631.731 0 207.72176 0.00053397097 0.00051827329 + 148570 -6250.7829 -6255.2072 4.4242545 3747.1932 633.30303 -10635.703 0 212.0351 0.00026846344 0.00024925748 + 148580 -6250.7796 -6255.2071 4.4274367 3749.1827 632.69365 -10637.083 0 212.18761 0.00017081638 0.0001503335 + 148590 -6250.7774 -6255.1155 4.3380818 3747.1211 633.34579 -10635.582 0 207.90522 0.00027315146 0.00025433127 + 148600 -6250.7671 -6254.9858 4.2187078 3741.5898 635.00659 -10631.582 0 202.18415 0.00054218684 0.0005265775 + 148610 -6250.7265 -6254.8978 4.1712924 3734.1018 637.04156 -10626.041 0 199.91174 0.00089007471 0.00087645221 + 148620 -6250.6352 -6254.9117 4.2764684 3726.6817 638.66183 -10620.255 0 204.95236 0.0012024537 0.0011872598 + 148630 -6250.4939 -6255.0227 4.5287765 3721.2992 639.20435 -10615.526 0 217.04438 0.0013744196 0.001354276 + 148640 -6250.3308 -6255.1531 4.82237 3719.2939 638.36322 -10612.81 0 231.11503 0.0013441169 0.0013187965 + 148650 -6250.1846 -6255.2003 5.0156733 3720.9587 636.29133 -10612.45 0 240.37921 0.0011142588 0.0010874985 + 148660 -6250.0749 -6255.11 5.0350713 3725.4443 633.54196 -10614.096 0 241.30887 0.00075350501 0.00073047377 + 148670 -6249.9837 -6254.9171 4.9334043 3731.06 630.87993 -10616.857 0 236.43641 0.00037464811 0.0003578085 + 148680 -6249.8681 -6254.7189 4.8508141 3735.88 629.03664 -10619.636 0 232.47823 9.5792167e-05 8.2539024e-05 + 148690 -6249.6941 -6254.6031 4.9089198 3738.4159 628.49452 -10621.513 0 235.26298 -4.8075999e-07 -1.6372885e-05 + 148700 -6249.4639 -6254.5867 5.1228334 3738.092 629.36404 -10622.043 0 245.51492 0.00010666235 8.2500341e-05 + 148710 -6249.2166 -6254.6096 5.392977 3735.3585 631.37893 -10621.347 0 258.46172 0.00037408887 0.00034055863 + 148720 -6249.0051 -6254.5794 5.5742395 3731.4343 633.99862 -10620.012 0 267.14884 0.00071492048 0.00067649556 + 148730 -6248.863 -6254.4351 5.5721064 3727.8107 636.57977 -10618.826 0 267.04661 0.0010311801 0.00099545762 + 148740 -6248.7833 -6254.1902 5.4068799 3725.7229 638.56232 -10618.475 0 259.12802 0.0012458787 0.0012191465 + 148750 -6248.7213 -6253.9306 5.2092984 3725.791 639.61547 -10619.337 0 249.65881 0.001323645 0.0013070484 + 148760 -6248.6197 -6253.7678 5.148078 3727.9362 639.70323 -10621.407 0 246.72478 0.001274382 0.0012629722 + 148770 -6248.4432 -6253.7701 5.3268982 3731.5425 639.05409 -10624.367 0 255.29485 0.0011410878 0.0011265456 + 148780 -6248.2033 -6253.9136 5.7103646 3735.7309 638.04916 -10627.694 0 273.67271 0.00097880008 0.00095455558 + 148790 -6247.9565 -6254.0889 6.1323439 3739.6069 637.06986 -10630.766 0 293.89633 0.00083439509 0.00080015076 + 148800 -6247.7718 -6254.1704 6.3986868 3742.4099 636.36174 -10632.942 0 306.66097 0.00073517383 0.00069759238 + 148810 -6247.6807 -6254.1095 6.428803 3743.5837 635.96631 -10633.66 0 308.10431 0.00068838922 0.00065673638 + 148820 -6247.6505 -6253.9791 6.3286687 3742.8258 635.74639 -10632.551 0 303.30531 0.00068752605 0.00066680564 + 148830 -6247.6059 -6253.9219 6.3159929 3740.1557 635.49073 -10629.568 0 302.69782 0.00071894746 0.00070579233 + 148840 -6247.491 -6254.0273 6.5362147 3735.9768 635.04752 -10625.052 0 313.25208 0.0007659746 0.00075113927 + 148850 -6247.3197 -6254.2394 6.919769 3731.0495 634.42091 -10619.71 0 331.63416 0.0008123168 0.00078826472 + 148860 -6247.167 -6254.3856 7.2185318 3726.3204 633.7792 -10614.485 0 345.95255 0.00084726194 0.00081448354 + 148870 -6247.1046 -6254.3128 7.2082506 3722.6572 633.36674 -10610.337 0 345.45981 0.00087050278 0.000836789 + 148880 -6247.1349 -6254.0165 6.8815839 3720.6374 633.3665 -10608.02 0 329.80411 0.00089078826 0.0008640044 + 148890 -6247.1905 -6253.6459 6.455468 3720.506 633.79282 -10607.945 0 309.38225 0.00091612466 0.00089715329 + 148900 -6247.1949 -6253.3888 6.1938525 3722.2714 634.47634 -10610.137 0 296.84416 0.00094205141 0.00092418079 + 148910 -6247.1263 -6253.3376 6.2112621 3725.7931 635.14714 -10614.278 0 297.67853 0.00094882142 0.00092370233 + 148920 -6247.0305 -6253.4448 6.4142258 3730.745 635.56887 -10619.759 0 307.40569 0.00091258497 0.00087737096 + 148930 -6246.9803 -6253.5854 6.6050886 3736.4826 635.65449 -10625.722 0 316.55291 0.0008248674 0.00078469548 + 148940 -6247.0153 -6253.6653 6.6499891 3741.9686 635.50938 -10631.143 0 318.70479 0.0007073204 0.00067130914 + 148950 -6247.1113 -6253.6861 6.5748598 3745.9223 635.3853 -10634.994 0 315.10417 0.00060998809 0.00058409846 + 148960 -6247.2011 -6253.7193 6.5181989 3747.2158 635.56992 -10636.505 0 312.38867 0.0005910656 0.00057358555 + 148970 -6247.2292 -6253.8228 6.5935947 3745.3499 636.25945 -10635.432 0 316.00205 0.00068823319 0.00067125094 + 148980 -6247.1932 -6253.9789 6.7857426 3740.7502 637.45997 -10632.189 0 325.21086 0.00089698649 0.00087227645 + 148990 -6247.1436 -6254.0998 6.9562143 3734.7095 638.94978 -10627.759 0 333.38082 0.001166705 0.0011315098 + 149000 -6247.1481 -6254.0898 6.9417021 3728.9824 640.31921 -10623.391 0 332.68531 0.0014160426 0.0013749477 + 149010 -6247.244 -6253.9195 6.6754948 3725.1982 641.08407 -10620.202 0 319.92717 0.0015613664 0.001523186 + 149020 -6247.4118 -6253.6647 6.2529103 3724.3271 640.84385 -10618.836 0 299.67455 0.0015467477 0.0015184682 + 149030 -6247.589 -6253.4752 5.8861444 3726.4073 639.43334 -10619.316 0 282.09707 0.001363176 0.0013452004 + 149040 -6247.7171 -6253.4843 5.7672004 3730.6075 637.01288 -10621.105 0 276.3966 0.0010504032 0.0010366924 + 149050 -6247.7855 -6253.7229 5.9373161 3735.5466 634.06028 -10623.33 0 284.5495 0.00068383037 0.00066678312 + 149060 -6247.8388 -6254.1049 6.2660497 3739.7092 631.25889 -10625.073 0 300.30426 0.00035395384 0.00032991018 + 149070 -6247.9426 -6254.4939 6.551248 3741.8336 629.30915 -10625.637 0 313.97256 0.00014429548 0.00011518952 + 149080 -6248.1409 -6254.7851 6.6441688 3741.2264 628.71788 -10624.729 0 318.42585 0.00011014839 8.0668419e-05 + 149090 -6248.4395 -6254.937 6.4975316 3737.9758 629.63306 -10622.546 0 311.39817 0.00026102137 0.00023469551 + 149100 -6248.8177 -6254.9517 6.1340236 3732.985 631.78413 -10619.721 0 293.97683 0.00055362984 0.0005312504 + 149110 -6249.2437 -6254.8518 5.6080863 3727.7505 634.55817 -10617.16 0 268.77096 0.00090229921 0.0008828225 + 149120 -6249.6806 -6254.6798 4.9991148 3723.9083 637.19387 -10615.782 0 239.58563 0.0012058934 0.0011878112 + 149130 -6250.0926 -6254.4998 4.4072549 3722.7124 639.02477 -10616.237 0 211.22038 0.001380704 0.001362693 + 149140 -6250.4562 -6254.3807 3.9245533 3724.6473 639.67853 -10618.707 0 188.08662 0.0013857906 0.0013669773 + 149150 -6250.7681 -6254.3686 3.6004987 3729.3014 639.16267 -10622.833 0 172.5561 0.001232497 0.0012128192 + 149160 -6251.0398 -6254.4745 3.4347326 3735.51 637.82042 -10627.805 0 164.61166 0.00097747977 0.00095786935 + 149170 -6251.2829 -6254.6837 3.4007848 3741.6951 636.18878 -10632.568 0 162.98469 0.00070344071 0.00068530737 + 149180 -6251.4992 -6254.9746 3.4753244 3746.2994 634.81466 -10636.089 0 166.55704 0.00049361788 0.00047773019 + 149190 -6251.6811 -6255.3269 3.6458654 3748.2068 634.08811 -10637.622 0 174.73033 0.00040692288 0.0003925243 + 149200 -6251.8201 -6255.7123 3.8922119 3747.038 634.13953 -10636.89 0 186.53663 0.00046082069 0.00044584479 + 149210 -6251.9182 -6256.0797 4.1614246 3743.2359 634.8259 -10634.141 0 199.43882 0.00062744128 0.00060991443 + 149220 -6251.9909 -6256.3551 4.3641799 3737.9087 635.80254 -10630.066 0 209.15599 0.00084445735 0.0008241964 + 149230 -6252.0582 -6256.4656 4.4073691 3732.4756 636.65157 -10625.593 0 211.22586 0.001037157 0.0010164115 + 149240 -6252.1294 -6256.379 4.2495979 3728.2336 637.02255 -10621.635 0 203.66458 0.001143891 0.0011261142 + 149250 -6252.1919 -6256.1325 3.9405249 3726.0043 636.74137 -10618.878 0 188.85206 0.0011355366 0.001122849 + 149260 -6252.2161 -6255.8232 3.6071663 3725.9807 635.85708 -10617.661 0 172.87565 0.0010219665 0.0010131103 + 149270 -6252.1738 -6255.56 3.3861948 3727.8023 634.61757 -10617.98 0 162.28545 0.00084415794 0.00083469335 + 149280 -6252.0592 -6255.4022 3.3429772 3730.777 633.38588 -10619.565 0 160.21422 0.00065674474 0.0006417826 + 149290 -6251.896 -6255.3293 3.4332987 3734.1272 632.52461 -10621.981 0 164.54294 0.00050927087 0.00048712202 + 149300 -6251.7239 -6255.266 3.5420823 3737.1602 632.28397 -10624.71 0 169.75646 0.0004335865 0.00040761373 + 149310 -6251.5692 -6255.1508 3.5815616 3739.3447 632.72858 -10627.224 0 171.64853 0.00044037631 0.00041710525 + 149320 -6251.4183 -6254.9944 3.5761137 3740.3406 633.72767 -10629.063 0 171.38743 0.00052238424 0.00050666202 + 149330 -6251.219 -6254.8736 3.6546907 3740.0417 635.01202 -10629.927 0 175.15329 0.00065935921 0.00065019896 + 149340 -6250.9156 -6254.8587 3.9430908 3738.6317 636.27421 -10629.765 0 188.97503 0.00082205641 0.00081289854 + 149350 -6250.4953 -6254.939 4.443765 3736.5813 637.27092 -10628.791 0 212.97015 0.00097695887 0.00096061552 + 149360 -6250.0061 -6255.0216 5.0154487 3734.5202 637.88649 -10627.428 0 240.36845 0.0010944179 0.0010687086 + 149370 -6249.5274 -6255.0084 5.4810801 3733.0113 638.13669 -10626.156 0 262.68411 0.0011586233 0.0011277342 + 149380 -6249.1126 -6254.878 5.7653579 3732.3566 638.11982 -10625.354 0 276.3083 0.0011724826 0.0011429348 + 149390 -6248.7617 -6254.6886 5.9268884 3732.5583 637.94496 -10625.192 0 284.04975 0.0011516675 0.0011269829 + 149400 -6248.4438 -6254.5105 6.0667108 3733.4275 637.67312 -10625.611 0 290.75082 0.0011113389 0.0010902391 + 149410 -6248.1374 -6254.3653 6.2279015 3734.7206 637.29655 -10626.383 0 298.47598 0.0010565139 0.0010351679 + 149420 -6247.8459 -6254.2259 6.3800793 3736.1987 636.76322 -10627.188 0 305.7692 0.00098326241 0.00095847957 + 149430 -6247.5871 -6254.0527 6.4655815 3737.6105 636.03342 -10627.697 0 309.86694 0.00088781772 0.00085882196 + 149440 -6247.3803 -6253.8241 6.4437864 3738.6573 635.13861 -10627.62 0 308.8224 0.00077588901 0.00074456295 + 149450 -6247.2348 -6253.5539 6.3190603 3738.9868 634.20919 -10626.75 0 302.84482 0.00066707173 0.00063703338 + 149460 -6247.1406 -6253.3022 6.1615355 3738.2536 633.45316 -10625.009 0 295.29535 0.00059268106 0.00056721411 + 149470 -6247.0656 -6253.1679 6.1023042 3736.2592 633.09127 -10622.518 0 292.45666 0.00058650444 0.00056609891 + 149480 -6246.969 -6253.2466 6.2775565 3733.1349 633.27292 -10619.654 0 300.85573 0.00066986617 0.00065114957 + 149490 -6246.8289 -6253.5648 6.7358822 3729.4629 634.0052 -10617.033 0 322.82127 0.00083648496 0.00081393527 + 149500 -6246.6647 -6254.0324 7.3677125 3726.2254 635.12516 -10615.383 0 353.10212 0.0010458541 0.0010157516 + 149510 -6246.5348 -6254.4593 7.9245197 3724.5348 636.3332 -10615.327 0 379.78745 0.001232369 0.0011962628 + 149520 -6246.4997 -6254.6463 8.1465272 3725.2155 637.28259 -10617.144 0 390.42729 0.0013297463 0.0012942122 + 149530 -6246.5715 -6254.4972 7.9257637 3728.4206 637.69659 -10620.614 0 379.84707 0.0012997954 0.0012717726 + 149540 -6246.6973 -6254.0731 7.3758349 3733.4906 637.47026 -10625.034 0 353.4914 0.0011496443 0.0011307394 + 149550 -6246.799 -6253.5424 6.7434702 3739.146 636.7192 -10629.408 0 323.18493 0.00092831416 0.00091312449 + 149560 -6246.8336 -6253.0744 6.2408368 3743.9175 635.75496 -10632.747 0 299.09592 0.00070721547 0.0006874474 + 149570 -6246.8203 -6252.7676 5.9472654 3746.5932 634.98923 -10634.35 0 285.02633 0.00055688772 0.00052770151 + 149580 -6246.814 -6252.6551 5.8411716 3746.5164 634.79264 -10633.964 0 279.94172 0.00052850623 0.00049172856 + 149590 -6246.8578 -6252.7452 5.8873096 3743.7025 635.35335 -10631.801 0 282.15291 0.00064116141 0.00060339474 + 149600 -6246.958 -6253.037 6.078963 3738.8229 636.58682 -10628.447 0 291.33801 0.00087431123 0.00084233165 + 149610 -6247.0889 -6253.5066 6.4177266 3733.0734 638.13356 -10624.714 0 307.57347 0.0011683729 0.0011452637 + 149620 -6247.2152 -6254.0931 6.877903 3727.9205 639.4548 -10621.468 0 329.6277 0.0014374804 0.0014211878 + 149630 -6247.3151 -6254.7018 7.3866737 3724.7424 640.00531 -10619.45 0 354.01085 0.0015936054 0.0015780403 + 149640 -6247.3985 -6255.2145 7.8160113 3724.4446 639.43298 -10619.092 0 374.58712 0.0015747786 0.0015531365 + 149650 -6247.5116 -6255.5036 7.9919843 3727.1603 637.73335 -10620.397 0 383.02073 0.0013676486 0.0013368224 + 149660 -6247.7148 -6255.4681 7.7533354 3732.1367 635.28934 -10622.894 0 371.58334 0.0010167302 0.00098009248 + 149670 -6248.0352 -6255.0964 7.0612028 3737.8736 632.76397 -10625.734 0 338.41246 0.0006161501 0.000581784 + 149680 -6248.4322 -6254.511 6.0788652 3742.5336 630.88035 -10627.925 0 291.33333 0.00028327806 0.00025798112 + 149690 -6248.8174 -6253.9345 5.1170564 3744.5474 630.1792 -10628.661 0 245.23806 0.00011979759 0.00010362605 + 149700 -6249.1188 -6253.5719 4.4531512 3743.2042 630.84987 -10627.626 0 213.41999 0.00017420154 0.00016062417 + 149710 -6249.3304 -6253.5007 4.1703464 3738.9531 632.68517 -10625.139 0 199.8664 0.00042308219 0.00040464352 + 149720 -6249.5052 -6253.6572 4.1519655 3733.2468 635.15678 -10622.061 0 198.98548 0.00078085321 0.00075506924 + 149730 -6249.7049 -6253.9211 4.2161967 3727.9918 637.57816 -10619.491 0 202.0638 0.0011330107 0.0011035077 + 149740 -6249.9533 -6254.2114 4.2581115 3724.8662 639.30852 -10618.386 0 204.07259 0.0013770305 0.0013497732 + 149750 -6250.2306 -6254.5187 4.2880692 3724.7925 639.94015 -10619.251 0 205.50833 0.0014538666 0.0014324137 + 149760 -6250.4993 -6254.8679 4.3685296 3727.731 639.4097 -10622.009 0 209.36445 0.001360435 0.0013439924 + 149770 -6250.7359 -6255.2665 4.5306641 3732.7956 637.99608 -10626.058 0 217.13484 0.0011429976 0.0011278861 + 149780 -6250.9421 -6255.6804 4.7382289 3738.5867 636.20953 -10630.477 0 227.08252 0.00087736098 0.00085995179 + 149790 -6251.1381 -6256.0441 4.905944 3743.6147 634.61519 -10634.274 0 235.12036 0.00064354971 0.00062249082 + 149800 -6251.3455 -6256.2892 4.9437188 3746.6894 633.6531 -10636.632 0 236.93074 0.00050237225 0.00047908107 + 149810 -6251.5724 -6256.3718 4.7993584 3747.1879 633.51193 -10637.072 0 230.01218 0.00048012094 0.00045762671 + 149820 -6251.8071 -6256.2894 4.4823472 3745.1504 634.09353 -10635.533 0 214.81923 0.00056499438 0.00054594507 + 149830 -6252.0234 -6256.0818 4.0583909 3741.207 635.07377 -10632.363 0 194.50086 0.00071501632 0.00070006564 + 149840 -6252.1955 -6255.8139 3.6183494 3736.3744 636.03264 -10628.221 0 173.41161 0.0008738816 0.00086142545 + 149850 -6252.3112 -6255.5526 3.2413385 3731.7774 636.60424 -10623.934 0 155.34313 0.00098941556 0.00097671205 + 149860 -6252.3763 -6255.3488 2.9725037 3728.3683 636.59485 -10620.312 0 142.45906 0.0010291161 0.00101393 + 149870 -6252.4081 -6255.2292 2.821062 3726.716 636.03266 -10617.978 0 135.20112 0.00098828261 0.0009700594 + 149880 -6252.4254 -6255.1967 2.7713598 3726.9211 635.13711 -10617.255 0 132.81911 0.00088852549 0.00086861803 + 149890 -6252.4382 -6255.2381 2.7999022 3728.6667 634.2228 -10618.128 0 134.18702 0.0007677062 0.00074869478 + 149900 -6252.4412 -6255.3374 2.8962042 3731.3698 633.57637 -10620.284 0 138.80235 0.00066546253 0.00064978743 + 149910 -6252.41 -6255.4904 3.0803767 3734.3723 633.35601 -10623.219 0 147.62894 0.00060987891 0.00059817321 + 149920 -6252.3042 -6255.7036 3.3994097 3737.1184 633.55352 -10626.376 0 162.91879 0.00060983045 0.00059980836 + 149930 -6252.0807 -6255.9698 3.889146 3739.2695 634.03003 -10629.269 0 186.3897 0.00065489857 0.00064192922 + 149940 -6251.7148 -6256.2327 4.5179039 3740.7247 634.60207 -10631.56 0 216.52331 0.00072211629 0.00070188015 + 149950 -6251.2203 -6256.3769 5.1566241 3741.5321 635.13436 -10633.043 0 247.13436 0.00078706931 0.00075902871 + 149960 -6250.6522 -6256.2704 5.6182614 3741.7319 635.59767 -10633.6 0 269.25861 0.00083579836 0.00080484689 + 149970 -6250.0811 -6255.8477 5.7665808 3741.2309 636.06789 -10633.146 0 276.36691 0.00087282741 0.00084689143 + 149980 -6249.5462 -6255.1743 5.6281889 3739.822 636.66708 -10631.663 0 269.73439 0.000919876 0.00090401659 + 149990 -6249.0287 -6254.4325 5.4037933 3737.3862 637.47173 -10629.29 0 258.98009 0.0010021111 0.00099332868 + 150000 -6248.483 -6253.8179 5.3348576 3734.1703 638.4314 -10626.42 0 255.67631 0.0011265623 0.0011143891 + 150010 -6247.9024 -6253.421 5.5185806 3730.9255 639.34072 -10623.687 0 264.48135 0.001266331 0.0012401777 + 150020 -6247.3527 -6253.1894 5.8367669 3728.7313 639.8867 -10621.807 0 279.73062 0.0013647615 0.0013227914 + 150030 -6246.9304 -6253.0098 6.0794676 3728.5224 639.75958 -10621.292 0 291.3622 0.001361965 0.0013137906 + 150040 -6246.6759 -6252.8433 6.1673318 3730.5575 638.78586 -10622.187 0 295.57314 0.0012296761 0.0011894638 + 150050 -6246.5236 -6252.787 6.263399 3734.1694 637.03256 -10623.989 0 300.17722 0.0009923893 0.00096728379 + 150060 -6246.3466 -6252.9855 6.6388777 3737.9962 634.84146 -10625.823 0 318.17227 0.00072073094 0.0007046501 + 150070 -6246.0662 -6253.4541 7.3878603 3740.5776 632.77169 -10626.803 0 354.06772 0.0005017518 0.00048073497 + 150080 -6245.7283 -6253.9922 8.2638467 3740.9553 631.44828 -10626.396 0 396.0499 0.0004049904 0.00036971922 + 150090 -6245.4674 -6254.293 8.8255258 3738.957 631.34729 -10624.597 0 422.96871 0.00046146776 0.00041542655 + 150100 -6245.3873 -6254.1646 8.7773227 3735.1307 632.59318 -10621.888 0 420.65856 0.00065931592 0.00061525323 + 150110 -6245.4725 -6253.6652 8.1927737 3730.513 634.86796 -10619.046 0 392.64368 0.00094946372 0.00091815734 + 150120 -6245.6113 -6253.0512 7.4399757 3726.3844 637.49304 -10616.929 0 356.56538 0.0012561336 0.0012378131 + 150130 -6245.6916 -6252.6048 6.9131935 3724.0224 639.65989 -10616.287 0 331.31902 0.0014929183 0.0014777726 + 150140 -6245.6802 -6252.478 6.7977836 3724.3984 640.71504 -10617.591 0 325.78793 0.0015856535 0.0015617661 + 150150 -6245.6339 -6252.6422 7.0083455 3727.8384 640.38849 -10620.869 0 335.87924 0.0014979242 0.0014602206 + 150160 -6245.6513 -6252.9543 7.3029586 3733.765 638.88281 -10625.602 0 349.99875 0.0012499422 0.0012038967 + 150170 -6245.7987 -6253.2802 7.4814835 3740.69 636.7928 -10630.763 0 358.55467 0.00092035997 0.00087782642 + 150180 -6246.0612 -6253.5858 7.524644 3746.5771 634.8873 -10635.05 0 360.62316 0.00062449671 0.0005945757 + 150190 -6246.3596 -6253.922 7.5624403 3749.5294 633.83699 -10637.288 0 362.43457 0.00047239286 0.00045447278 + 150200 -6246.6215 -6254.3246 7.7031004 3748.5456 633.98757 -10636.858 0 369.17579 0.0005229771 0.00050764149 + 150210 -6246.8419 -6254.7315 7.889618 3743.97 635.25103 -10633.953 0 378.11476 0.00075697903 0.0007337068 + 150220 -6247.0795 -6255.0025 7.9230055 3737.3821 637.14374 -10629.528 0 379.71488 0.0010836667 0.0010485583 + 150230 -6247.3971 -6255.0199 7.622797 3730.9638 638.95882 -10624.943 0 365.3272 0.0013786364 0.0013361993 + 150240 -6247.8047 -6254.7737 6.9689836 3726.657 640.01889 -10621.45 0 333.9928 0.0015337111 0.0014925549 + 150250 -6248.2538 -6254.3649 6.1110374 3725.4962 639.91873 -10619.78 0 292.8752 0.0014959974 0.001462941 + 150260 -6248.6746 -6253.9436 5.2690837 3727.361 638.66226 -10619.967 0 252.52406 0.0012819429 0.0012587193 + 150270 -6249.0149 -6253.641 4.6260078 3731.1701 636.64251 -10621.454 0 221.70425 0.00096529392 0.00094879099 + 150280 -6249.2582 -6253.5291 4.2709111 3735.371 634.48427 -10623.384 0 204.68603 0.00064720585 0.00063192426 + 150290 -6249.4203 -6253.6137 4.193376 3738.5095 632.82103 -10624.944 0 200.97011 0.00042084809 0.00040196436 + 150300 -6249.5372 -6253.8481 4.3109648 3739.6807 632.08921 -10625.618 0 206.60562 0.00034280625 0.0003185415 + 150310 -6249.6473 -6254.1659 4.518598 3738.7349 632.40372 -10625.304 0 216.55657 0.00041979918 0.00039202914 + 150320 -6249.7734 -6254.516 4.7426351 3736.2191 633.5466 -10624.282 0 227.29369 0.0006127399 0.00058543143 + 150330 -6249.9124 -6254.8816 4.969139 3733.124 635.06535 -10623.071 0 238.14902 0.00085385913 0.00083022975 + 150340 -6250.0424 -6255.2659 5.2235209 3730.5489 636.4433 -10622.258 0 250.34043 0.0010694136 0.0010497889 + 150350 -6250.142 -6255.6582 5.5162048 3729.3862 637.28017 -10622.325 0 264.36749 0.0012010336 0.001182956 + 150360 -6250.2086 -6256.0097 5.8010985 3730.0836 637.41843 -10623.512 0 278.02119 0.0012209117 0.0012012439 + 150370 -6250.2598 -6256.2417 5.9818089 3732.5285 636.97355 -10625.744 0 286.68185 0.001137638 0.0011149188 + 150380 -6250.3204 -6256.2788 5.9583783 3736.0854 636.2637 -10628.628 0 285.55892 0.00099100194 0.00096642179 + 150390 -6250.4044 -6256.0852 5.6808463 3739.7871 635.67143 -10631.544 0 272.25803 0.00083701854 0.00081358191 + 150400 -6250.5042 -6255.686 5.1817919 3742.6259 635.49203 -10633.804 0 248.34054 0.00072821509 0.00070871346 + 150410 -6250.5921 -6255.1686 4.5764425 3743.851 635.82534 -10634.845 0 219.3288 0.00069625125 0.00068112656 + 150420 -6250.6326 -6254.6591 4.0264805 3743.1834 636.54848 -10634.391 0 192.97154 0.00074267726 0.00072901572 + 150430 -6250.6022 -6254.2744 3.6721422 3740.8852 637.37429 -10632.534 0 175.98966 0.0008402102 0.00082294673 + 150440 -6250.5062 -6254.0702 3.5639419 3737.6583 637.96646 -10629.695 0 170.80409 0.00094372786 0.00091899198 + 150450 -6250.3755 -6254.0244 3.648905 3734.3865 638.06367 -10626.475 0 174.876 0.0010079456 0.00097646044 + 150460 -6250.2393 -6254.0774 3.8381166 3731.8036 637.56841 -10623.449 0 183.94408 0.0010062799 0.00097380082 + 150470 -6250.0891 -6254.1974 4.1083175 3730.2353 636.57613 -10621.009 0 196.89363 0.00094311424 0.00091678785 + 150480 -6249.8608 -6254.4079 4.5470856 3729.5576 635.34289 -10619.308 0 217.92186 0.00085262071 0.00083558444 + 150490 -6249.4556 -6254.7453 5.2897563 3729.395 634.20602 -10618.346 0 253.5148 0.00078295936 0.00077126913 + 150500 -6248.7966 -6255.1762 6.3795768 3729.4376 633.47936 -10618.093 0 305.74512 0.00077211888 0.0007566832 + 150510 -6247.9012 -6255.5501 7.6489134 3729.6779 633.34844 -10618.576 0 366.57885 0.00082689702 0.0007996876 + 150520 -6246.9091 -6255.6479 8.7388024 3730.4106 633.79878 -10619.857 0 418.81244 0.0009175832 0.00087791072 + 150530 -6246.0146 -6255.312 9.2974265 3731.9788 634.6183 -10621.909 0 445.58485 0.00099462648 0.00095012887 + 150540 -6245.3409 -6254.5583 9.2174222 3734.4307 635.49639 -10624.485 0 441.75059 0.00101849 0.00097938326 + 150550 -6244.8809 -6253.5743 8.693375 3737.3336 636.18229 -10627.09 0 416.63531 0.00098250524 0.00095410817 + 150560 -6244.5475 -6252.6089 8.0613699 3739.8776 636.61341 -10629.1 0 386.34608 0.00091527644 0.00089525054 + 150570 -6244.2601 -6251.854 7.5938979 3741.2009 636.93423 -10629.989 0 363.9422 0.00086549789 0.00084704954 + 150580 -6243.9887 -6251.3996 7.4109853 3740.7511 637.39386 -10629.545 0 355.176 0.00087993705 0.00085706402 + 150590 -6243.7435 -6251.2574 7.5139352 3738.5232 638.18068 -10627.961 0 360.10993 0.00098316033 0.00095371185 + 150600 -6243.5471 -6251.3967 7.8496487 3735.1009 639.28372 -10625.781 0 376.19921 0.0011642963 0.0011297625 + 150610 -6243.4187 -6251.7523 8.3336214 3731.5066 640.45259 -10623.711 0 399.3939 0.0013753531 0.0013391076 + 150620 -6243.3731 -6252.2191 8.8460598 3728.9007 641.27488 -10622.395 0 423.95282 0.0015443809 0.0015100503 + 150630 -6243.4168 -6252.6776 9.2607337 3728.1951 641.33452 -10622.207 0 443.82632 0.0016014412 0.001571235 + 150640 -6243.539 -6253.0426 9.5036502 3729.7067 640.38548 -10623.135 0 455.46824 0.0015070736 0.0014798758 + 150650 -6243.7185 -6253.2826 9.5641141 3733.0096 638.47798 -10624.77 0 458.36601 0.0012694462 0.0012406148 + 150660 -6243.9529 -6253.3843 9.4313894 3737.0605 635.99133 -10626.436 0 452.0051 0.00094312186 0.00090796608 + 150670 -6244.2705 -6253.3208 9.0502675 3740.5184 633.54904 -10627.388 0 433.7396 0.00061319151 0.00057203051 + 150680 -6244.6969 -6253.087 8.3901634 3742.1161 631.82733 -10627.03 0 402.10371 0.00037257045 0.00033189522 + 150690 -6245.205 -6252.772 7.5669877 3741.0098 631.31898 -10625.101 0 362.65251 0.00029658105 0.00026382398 + 150700 -6245.7142 -6252.563 6.8487808 3737.0897 632.15005 -10621.803 0 328.23201 0.00041718252 0.00039374671 + 150710 -6246.1486 -6252.6404 6.4917872 3731.1731 634.0291 -10617.843 0 311.12287 0.00070475062 0.00068441598 + 150720 -6246.4952 -6253.0504 6.5551697 3724.9149 636.34453 -10614.31 0 314.16051 0.0010698469 0.0010440555 + 150730 -6246.8071 -6253.6719 6.8647849 3720.3404 638.36703 -10612.379 0 328.99901 0.0013907165 0.001355555 + 150740 -6247.1568 -6254.2968 7.1399975 3719.1267 639.48602 -10612.909 0 342.18874 0.0015575801 0.0015166152 + 150750 -6247.5803 -6254.7496 7.1692769 3721.9441 639.40322 -10616.097 0 343.59198 0.0015142702 0.0014756769 + 150760 -6248.052 -6254.9693 6.9173355 3728.16 638.21814 -10621.347 0 331.51753 0.0012785962 0.0012492547 + 150770 -6248.5016 -6255.014 6.5123938 3736.0401 636.37897 -10627.433 0 312.11045 0.00093335481 0.00091413795 + 150780 -6248.8604 -6254.9955 6.1351494 3743.3511 634.52431 -10632.871 0 294.03078 0.0005935646 0.00057891821 + 150790 -6249.1033 -6254.9913 5.8880255 3748.1049 633.27626 -10636.372 0 282.18722 0.00036504371 0.00034704794 + 150800 -6249.2601 -6254.9948 5.7346898 3749.1508 633.04914 -10637.195 0 274.83851 0.00031066324 0.00028468254 + 150810 -6249.39 -6254.938 5.5479816 3746.4318 633.92445 -10635.294 0 265.89041 0.00043470656 0.00040262164 + 150820 -6249.5387 -6254.7645 5.2257966 3740.8768 635.62417 -10631.265 0 250.4495 0.00068747048 0.00065618892 + 150830 -6249.7069 -6254.4936 4.7867437 3734.0395 637.59323 -10626.126 0 229.40762 0.00098528151 0.00096158507 + 150840 -6249.8529 -6254.2247 4.371845 3727.646 639.17269 -10621.043 0 209.52334 0.0012371694 0.0012226777 + 150850 -6249.9255 -6254.0755 4.1499443 3723.1872 639.81195 -10617.075 0 198.88862 0.0013695874 0.0013595853 + 150860 -6249.9031 -6254.1048 4.201652 3721.6166 639.24819 -10614.97 0 201.36674 0.0013439872 0.0013308937 + 150870 -6249.8093 -6254.2811 4.4717935 3723.1634 637.58998 -10615.035 0 214.31344 0.0011654359 0.0011441712 + 150880 -6249.6968 -6254.5178 4.8210342 3727.2743 635.27819 -10617.07 0 231.05101 0.0008815085 0.00085278719 + 150890 -6249.6118 -6254.7413 5.1294313 3732.7258 632.94195 -10620.409 0 245.83113 0.00057074033 0.00054010915 + 150900 -6249.5648 -6254.9363 5.3714834 3737.9286 631.20333 -10624.068 0 257.43162 0.00032163452 0.00029521993 + 150910 -6249.5267 -6255.1375 5.6108261 3741.3761 630.49763 -10627.011 0 268.90227 0.00020681894 0.00018690167 + 150920 -6249.4538 -6255.3755 5.9216067 3742.1123 630.96437 -10628.452 0 283.79662 0.00025999495 0.0002434831 + 150930 -6249.3243 -6255.6174 6.2930957 3740.0523 632.43366 -10628.103 0 301.60046 0.00046379291 0.00044468493 + 150940 -6249.1597 -6255.7528 6.5931104 3736.0109 634.49842 -10626.262 0 315.97885 0.00075435446 0.00072844771 + 150950 -6249.0116 -6255.6477 6.6360632 3731.393 636.64058 -10623.681 0 318.03738 0.0010432303 0.0010113962 + 150960 -6248.9208 -6255.2395 6.3187177 3727.6643 638.37361 -10621.277 0 302.82841 0.0012491727 0.0012164568 + 150970 -6248.8846 -6254.5985 5.7138503 3725.8426 639.36602 -10619.807 0 273.83977 0.0013258267 0.0012972613 + 150980 -6248.8629 -6253.9029 5.0400415 3726.2346 639.51473 -10619.652 0 241.54707 0.0012728477 0.0012497592 + 150990 -6248.812 -6253.3503 4.5383169 3728.476 638.94668 -10620.773 0 217.50161 0.0011279293 0.0011076533 + 151000 -6248.7123 -6253.0708 4.3585872 3731.7715 637.94938 -10622.792 0 208.88795 0.00094727029 0.00092582321 + 151010 -6248.57 -6253.0957 4.5257376 3735.185 636.85757 -10625.138 0 216.89874 0.00078493252 0.00075993542 + 151020 -6248.4008 -6253.3769 4.9760936 3737.8811 635.93908 -10627.197 0 238.48233 0.000678084 0.00064974985 + 151030 -6248.2155 -6253.8244 5.6088853 3739.2915 635.32003 -10628.436 0 268.80926 0.00064022914 0.00061036361 + 151040 -6248.0192 -6254.3286 6.3093637 3739.2001 634.97277 -10628.501 0 302.38011 0.00066170857 0.00063231295 + 151050 -6247.8211 -6254.7723 6.9511931 3737.7394 634.76583 -10627.278 0 333.14018 0.00071651117 0.00068921857 + 151060 -6247.6348 -6255.0548 7.4199629 3735.2936 634.55199 -10624.9 0 355.60626 0.00077434368 0.00075016212 + 151070 -6247.466 -6255.1293 7.6633013 3732.3515 634.25597 -10621.737 0 367.2684 0.00081410398 0.00079244305 + 151080 -6247.3066 -6255.0158 7.7091779 3729.3949 633.92201 -10618.333 0 369.46706 0.00083156371 0.00080938042 + 151090 -6247.1508 -6254.7631 7.6123053 3726.8629 633.6963 -10615.322 0 364.82438 0.00083632184 0.0008094904 + 151100 -6247.0174 -6254.3998 7.3823619 3725.1474 633.74784 -10613.295 0 353.8042 0.00084112154 0.00080810719 + 151110 -6246.9454 -6253.9312 6.9857964 3724.5451 634.16587 -10612.642 0 334.79856 0.00085235735 0.00081700945 + 151120 -6246.9571 -6253.395 6.4379869 3725.1635 634.89078 -10613.449 0 308.54446 0.0008681365 0.00083799736 + 151130 -6247.0203 -6252.9154 5.8951486 3726.8544 635.72061 -10615.49 0 282.5286 0.00088254473 0.00086267873 + 151140 -6247.0532 -6252.6796 5.6264237 3729.2574 636.3936 -10618.331 0 269.6498 0.00088967964 0.00087678409 + 151150 -6246.9795 -6252.8189 5.8393394 3731.9514 636.70647 -10621.477 0 279.85391 0.00088357833 0.00086640639 + 151160 -6246.7985 -6253.2798 6.4812707 3734.5982 636.61077 -10624.489 0 310.61886 0.00085736996 0.00082495682 + 151170 -6246.6063 -6253.8157 7.2093878 3736.9435 636.24163 -10627.001 0 345.51432 0.00080823628 0.00075999718 + 151180 -6246.5309 -6254.1451 7.6141888 3738.667 635.86446 -10628.677 0 364.91465 0.00074860632 0.00069684007 + 151190 -6246.6215 -6254.1653 7.5438071 3739.2647 635.76246 -10629.193 0 361.54156 0.00071287735 0.00067361563 + 151200 -6246.7983 -6254.0246 7.2262884 3738.1893 636.11468 -10628.329 0 346.32429 0.00074573337 0.00072507514 + 151210 -6246.9268 -6253.9681 7.0413211 3735.2642 636.91395 -10626.146 0 337.45962 0.00087170521 0.00086048531 + 151220 -6246.9495 -6254.0976 7.1480777 3731.0728 637.9484 -10623.119 0 342.57599 0.0010662503 0.0010485026 + 151230 -6246.9462 -6254.2824 7.3361181 3726.9337 638.84565 -10620.062 0 351.58794 0.0012541121 0.0012213002 + 151240 -6247.0667 -6254.3034 7.2367593 3724.3582 639.17553 -10617.837 0 346.82611 0.0013422969 0.001300083 + 151250 -6247.3995 -6254.0751 6.6756551 3724.3 638.60324 -10616.978 0 319.93485 0.0012686489 0.0012308506 + 151260 -6247.8967 -6253.7305 5.8337871 3726.6716 637.05191 -10617.454 0 279.58781 0.0010354347 0.0010118067 + 151270 -6248.4248 -6253.514 5.0892058 3730.4088 634.79335 -10618.716 0 243.9033 0.00070868465 0.00069768978 + 151280 -6248.8811 -6253.597 4.7158953 3733.9966 632.39766 -10619.991 0 226.01217 0.00038799221 0.00037967078 + 151290 -6249.2574 -6253.9701 4.7126595 3736.1152 630.54675 -10620.632 0 225.85709 0.00016740243 0.00015216819 + 151300 -6249.6119 -6254.4737 4.8618102 3736.0877 629.79084 -10620.352 0 233.00522 0.00010538784 8.103999e-05 + 151310 -6250.0008 -6254.9213 4.9204903 3734.007 630.3486 -10619.277 0 235.8175 0.00021111249 0.00018341461 + 151320 -6250.4299 -6255.2201 4.7902245 3730.5987 632.02819 -10617.847 0 229.57443 0.00044664715 0.00042403531 + 151330 -6250.851 -6255.4092 4.5582691 3726.9525 634.29766 -10616.659 0 218.45783 0.00074107483 0.00072788209 + 151340 -6251.1981 -6255.5969 4.3988279 3724.2315 636.47492 -10616.303 0 210.81651 0.0010107952 0.0010039961 + 151350 -6251.4348 -6255.8507 4.4159386 3723.4027 637.96146 -10617.215 0 211.63656 0.001180964 0.0011726587 + 151360 -6251.579 -6256.1258 4.5467897 3724.9891 638.43153 -10619.546 0 217.90768 0.0012047635 0.0011883745 + 151370 -6251.6892 -6256.2885 4.5992204 3728.8653 637.91311 -10623.067 0 220.42045 0.0010775499 0.0010529514 + 151380 -6251.8201 -6256.2182 4.3980677 3734.1769 636.74191 -10627.137 0 210.78008 0.00084131818 0.00081488764 + 151390 -6251.981 -6255.9084 3.9274722 3739.4887 635.41662 -10630.814 0 188.2265 0.00057449947 0.00055405018 + 151400 -6252.1309 -6255.4847 3.353718 3743.1925 634.41606 -10633.093 0 160.72898 0.0003666137 0.00035535245 + 151410 -6252.2142 -6255.1262 2.9119515 3744.0545 634.04392 -10633.225 0 139.55706 0.00028581305 0.00028016296 + 151420 -6252.2023 -6254.9566 2.7543404 3741.6757 634.34547 -10630.978 0 132.00345 0.00035330349 0.00034597408 + 151430 -6252.1104 -6254.9882 2.8778026 3736.6526 635.11062 -10626.751 0 137.92045 0.00053639714 0.000521804 + 151440 -6251.9803 -6255.1485 3.1681394 3730.3673 635.95386 -10621.47 0 151.83502 0.00076279458 0.00074058775 + 151450 -6251.8483 -6255.3518 3.5035122 3724.5097 636.4466 -10616.308 0 167.90796 0.00094886986 0.00092344494 + 151460 -6251.721 -6255.5532 3.8321764 3720.5349 636.26484 -10612.353 0 183.65939 0.0010296649 0.0010066886 + 151470 -6251.5731 -6255.7521 4.1789438 3719.2568 635.30792 -10610.317 0 200.27843 0.0009794773 0.00096214854 + 151480 -6251.3644 -6255.9562 4.5918821 3720.6941 633.74875 -10610.399 0 220.06876 0.00081723051 0.00080459121 + 151490 -6251.0663 -6256.1398 5.0734777 3724.1722 631.99558 -10612.308 0 243.14952 0.00059689571 0.00058492595 + 151500 -6250.6836 -6256.2269 5.5433192 3728.6016 630.57318 -10615.402 0 265.66696 0.00038786758 0.00037244333 + 151510 -6250.2567 -6256.118 5.8612397 3732.812 629.95778 -10618.888 0 280.90349 0.00025263093 0.00023235494 + 151520 -6249.8417 -6255.7448 5.9031198 3735.8463 630.41916 -10622.01 0 282.91062 0.00022895211 0.00020597722 + 151530 -6249.4792 -6255.1207 5.6414492 3737.1559 631.92557 -10624.202 0 270.3699 0.00032134418 0.00029973691 + 151540 -6249.1759 -6254.3522 5.1763077 3736.6785 634.14885 -10625.18 0 248.07771 0.00050300342 0.00048590403 + 151550 -6248.906 -6253.6057 4.6996486 3734.7943 636.56984 -10624.97 0 225.23353 0.00072633552 0.00071377496 + 151560 -6248.6307 -6253.0468 4.4160904 3732.1836 638.64608 -10623.876 0 211.64383 0.00093811328 0.00092675737 + 151570 -6248.3206 -6252.7782 4.4576162 3729.6315 639.98078 -10622.391 0 213.63398 0.0010944493 0.0010795131 + 151580 -6247.9729 -6252.8043 4.8313943 3727.8285 640.43014 -10621.063 0 231.54752 0.0011714678 0.0011498232 + 151590 -6247.6113 -6253.0439 5.4325863 3727.1977 640.10786 -10620.349 0 260.36002 0.0011692039 0.0011416074 + 151600 -6247.2681 -6253.3851 6.1169874 3727.7886 639.2884 -10620.462 0 293.16036 0.0011077534 0.0010783662 + 151610 -6246.961 -6253.7397 6.7786736 3729.2848 638.26005 -10621.285 0 324.87208 0.0010165526 0.0009899904 + 151620 -6246.6861 -6254.0614 7.3753374 3731.1391 637.20639 -10622.407 0 353.46755 0.00092096659 0.0008991634 + 151630 -6246.4288 -6254.3284 7.8995954 3732.7752 636.17437 -10623.278 0 378.59294 0.00083312933 0.00081415095 + 151640 -6246.1825 -6254.519 8.3365061 3733.7565 635.1311 -10623.407 0 399.53215 0.00075203187 0.0007312747 + 151650 -6245.9616 -6254.5966 8.6349307 3733.8588 634.05938 -10622.515 0 413.83433 0.00067150764 0.00064457564 + 151660 -6245.8032 -6254.5091 8.7058224 3733.0459 633.02725 -10620.582 0 417.23186 0.00059012571 0.00055610501 + 151670 -6245.7485 -6254.2168 8.4682594 3731.3918 632.1927 -10617.801 0 405.8465 0.00051757346 0.00048053415 + 151680 -6245.8092 -6253.744 7.9347412 3729.0098 631.74761 -10614.501 0 380.27732 0.00047465289 0.00044146219 + 151690 -6245.947 -6253.2091 7.2620919 3726.0558 631.83692 -10611.102 0 348.04019 0.00048577103 0.00046117048 + 151700 -6246.0917 -6252.7873 6.6956167 3722.8213 632.49285 -10608.102 0 320.89152 0.00056564411 0.00054853821 + 151710 -6246.1872 -6252.6187 6.4315923 3719.8353 633.60725 -10606.061 0 308.23799 0.00070640046 0.00069064044 + 151720 -6246.2266 -6252.7316 6.5050903 3717.8514 634.94658 -10605.53 0 311.76043 0.00087328729 0.00085231432 + 151730 -6246.2517 -6253.0363 6.7845838 3717.6568 636.20556 -10606.899 0 325.15532 0.0010135897 0.00098519894 + 151740 -6246.321 -6253.3864 7.0653978 3719.7544 637.08989 -10610.231 0 338.6135 0.0010762771 0.0010440451 + 151750 -6246.4691 -6253.662 7.1929567 3724.0657 637.40829 -10615.136 0 344.72685 0.0010339282 0.0010044906 + 151760 -6246.6842 -6253.8249 7.1407224 3729.8143 637.14384 -10620.783 0 342.22348 0.00089663028 0.00087479445 + 151770 -6246.9184 -6253.9161 6.9976564 3735.6832 636.47431 -10626.074 0 335.36696 0.00071068698 0.00069583829 + 151780 -6247.1249 -6254.0015 6.8766326 3740.214 635.72606 -10629.942 0 329.56682 0.00054209387 0.00052858487 + 151790 -6247.2937 -6254.1084 6.8146769 3742.2805 635.26853 -10631.657 0 326.59756 0.0004521157 0.00043343708 + 151800 -6247.4584 -6254.2026 6.7441727 3741.4334 635.37849 -10631.014 0 323.2186 0.00047534359 0.00044894187 + 151810 -6247.6677 -6254.2216 6.5538807 3737.9937 636.12072 -10628.336 0 314.09874 0.00060817868 0.0005773522 + 151820 -6247.9468 -6254.1343 6.1874919 3732.9022 637.29437 -10624.331 0 296.53933 0.00081058419 0.00078217569 + 151830 -6248.2757 -6253.9824 5.7067737 3727.4215 638.4762 -10619.88 0 273.50061 0.001019111 0.00099862515 + 151840 -6248.5994 -6253.8729 5.2734575 3722.8055 639.15434 -10615.833 0 252.73367 0.0011658302 0.001153278 + 151850 -6248.8664 -6253.9177 5.051342 3720.0262 638.90861 -10612.852 0 242.08865 0.0011969608 0.0011865089 + 151860 -6249.0677 -6254.1558 5.0881009 3719.5848 637.57316 -10611.314 0 243.85034 0.0010872221 0.001071342 + 151870 -6249.2477 -6254.5194 5.2716808 3721.4013 635.32061 -10611.241 0 252.64852 0.00084866755 0.00082386862 + 151880 -6249.4723 -6254.883 5.4106738 3724.7882 632.63228 -10612.303 0 259.30985 0.00053232057 0.000501752 + 151890 -6249.7784 -6255.1549 5.3764804 3728.576 630.15951 -10613.89 0 257.67111 0.00021868395 0.00018936089 + 151900 -6250.1488 -6255.3303 5.1814843 3731.4417 628.52282 -10615.295 0 248.3258 -4.9301758e-06 -2.7695367e-05 + 151910 -6250.5327 -6255.4643 4.9315613 3732.3686 628.12017 -10615.953 0 236.34809 -7.4439531e-05 -9.0530327e-05 + 151920 -6250.8879 -6255.602 4.714034 3731.0419 629.01064 -10615.654 0 225.92296 2.6728044e-05 1.3249205e-05 + 151930 -6251.2055 -6255.7338 4.5283285 3727.9798 630.90949 -10614.623 0 217.02291 0.00026124394 0.00024594862 + 151940 -6251.5014 -6255.8058 4.3043673 3724.3346 633.28998 -10613.43 0 206.28943 0.00055233032 0.00053361797 + 151950 -6251.7924 -6255.7644 3.9720231 3721.4577 635.5518 -10612.774 0 190.36163 0.00081180512 0.00079149432 + 151960 -6252.0782 -6255.6 3.5217762 3720.4179 637.19659 -10613.214 0 168.78327 0.00096956987 0.00095117439 + 151970 -6252.3408 -6255.3644 3.0236097 3721.6557 637.95352 -10614.974 0 144.90834 0.00099382697 0.00098000856 + 151980 -6252.5554 -6255.1569 2.6015454 3724.8827 637.82238 -10617.862 0 124.68065 0.00089644531 0.00088718926 + 151990 -6252.706 -6255.083 2.3769575 3729.2318 637.03416 -10621.349 0 113.91714 0.00072372541 0.00071628626 + 152000 -6252.7964 -6255.2025 2.4061364 3733.5702 635.95361 -10624.726 0 115.31556 0.00053753625 0.00052828802 + 152010 -6252.85 -6255.4981 2.6481481 3736.8412 634.95718 -10627.297 0 126.91412 0.00039435485 0.00038142206 + 152020 -6252.8975 -6255.8866 2.9890795 3738.3222 634.31966 -10628.528 0 143.25346 0.00032937055 0.00031409274 + 152030 -6252.9568 -6256.2674 3.3106718 3737.7491 634.1388 -10628.155 0 158.66597 0.00034966934 0.00033557499 + 152040 -6253.0185 -6256.5716 3.5531916 3735.3226 634.31992 -10626.214 0 170.28888 0.00043634103 0.00042625824 + 152050 -6253.0511 -6256.7754 3.7242816 3731.6308 634.62681 -10623.033 0 178.48847 0.00055264128 0.00054624726 + 152060 -6253.0222 -6256.8744 3.8522178 3727.5095 634.78198 -10619.166 0 184.61989 0.00065518731 0.00064906896 + 152070 -6252.9196 -6256.8512 3.9316026 3723.8506 634.57934 -10615.281 0 188.42446 0.00070622546 0.0006964574 + 152080 -6252.7561 -6256.6715 3.915453 3721.3813 633.96601 -10612.019 0 187.65048 0.00068508264 0.00067020175 + 152090 -6252.5529 -6256.3171 3.7641843 3720.4708 633.06197 -10609.85 0 180.40083 0.0005956166 0.00057752829 + 152100 -6252.3179 -6255.8257 3.5077448 3721.0447 632.1125 -10608.983 0 168.11081 0.00046587741 0.00044799646 + 152110 -6252.0362 -6255.2976 3.2614036 3722.6526 631.39712 -10609.347 0 156.30476 0.00033853849 0.00032283869 + 152120 -6251.6796 -6254.8539 3.1742594 3724.6669 631.1348 -10610.656 0 152.12832 0.00025532708 0.00024085058 + 152130 -6251.228 -6254.5729 3.3449185 3726.5169 631.41905 -10612.509 0 160.30726 0.00024202024 0.00022605193 + 152140 -6250.6928 -6254.4553 3.7624046 3727.8508 632.19657 -10614.503 0 180.31554 0.00030005816 0.0002808413 + 152150 -6250.1244 -6254.4418 4.3173933 3728.5723 633.29034 -10616.304 0 206.91371 0.00040814581 0.000386515 + 152160 -6249.5819 -6254.4642 4.8822797 3728.7706 634.46405 -10617.699 0 233.98624 0.00053356579 0.00051171642 + 152170 -6249.0937 -6254.4799 5.3862554 3728.6145 635.50876 -10618.603 0 258.13958 0.00064716313 0.00062593868 + 152180 -6248.6545 -6254.4698 5.8152679 3728.2755 636.31165 -10619.057 0 278.70027 0.00073327923 0.00071112567 + 152190 -6248.2549 -6254.42 6.1651073 3727.896 636.87231 -10619.188 0 295.46653 0.00079097616 0.00076558241 + 152200 -6247.9006 -6254.3171 6.4164412 3727.5821 637.26397 -10619.163 0 307.51186 0.00082883184 0.0007996343 + 152210 -6247.6072 -6254.1592 6.5519444 3727.3973 637.56526 -10619.122 0 314.00594 0.00085715318 0.00082640367 + 152220 -6247.3803 -6253.9701 6.5897687 3727.354 637.79773 -10619.122 0 315.81869 0.0008809704 0.000852458 + 152230 -6247.2025 -6253.8001 6.5975573 3727.4169 637.89812 -10619.115 0 316.19197 0.00089639072 0.0008727286 + 152240 -6247.0391 -6253.7035 6.6643808 3727.5284 637.73656 -10618.968 0 319.39452 0.0008914562 0.00087207177 + 152250 -6246.861 -6253.7024 6.8414491 3727.6404 637.17238 -10618.515 0 327.88063 0.00085102097 0.00083264792 + 152260 -6246.6665 -6253.7659 7.0993905 3727.7144 636.12627 -10617.607 0 340.24263 0.00076424163 0.00074363834 + 152270 -6246.4812 -6253.8283 7.3470108 3727.676 634.64256 -10616.147 0 352.10998 0.00063264284 0.00060916741 + 152280 -6246.3351 -6253.8383 7.5032485 3727.3623 632.91699 -10614.118 0 359.59777 0.00047562019 0.00045133927 + 152290 -6246.2361 -6253.7983 7.5621029 3726.5344 631.27254 -10611.605 0 362.4184 0.00032948372 0.00030673372 + 152300 -6246.1665 -6253.7575 7.5909991 3724.9878 630.08175 -10608.827 0 363.80327 0.00023755723 0.00021626778 + 152310 -6246.1048 -6253.7609 7.6561294 3722.722 629.65411 -10606.137 0 366.92468 0.00023321048 0.00021075853 + 152320 -6246.0555 -6253.793 7.7375263 3720.0648 630.12434 -10603.982 0 370.82567 0.00032326661 0.00029743303 + 152330 -6246.0522 -6253.7778 7.7255745 3717.6458 631.38455 -10602.808 0 370.25288 0.00048162901 0.00045381319 + 152340 -6246.1229 -6253.6488 7.5258572 3716.1922 633.09589 -10602.937 0 360.6813 0.0006582391 0.00063298332 + 152350 -6246.2508 -6253.4257 7.1748981 3716.25 634.79073 -10604.466 0 343.86138 0.00079860422 0.0007790137 + 152360 -6246.3798 -6253.2101 6.8302611 3717.9888 636.03685 -10607.236 0 327.34444 0.00086282355 0.00084652103 + 152370 -6246.4661 -6253.0926 6.6265189 3721.1658 636.59752 -10610.856 0 317.57997 0.00083641539 0.00081696815 + 152380 -6246.5228 -6253.0716 6.5488297 3725.196 636.51379 -10614.781 0 313.85667 0.00073318552 0.00070622124 + 152390 -6246.6059 -6253.0741 6.4681858 3729.2481 636.06897 -10618.391 0 309.99176 0.00059290814 0.00056068212 + 152400 -6246.7557 -6253.0602 6.3045062 3732.3729 635.65143 -10621.085 0 302.14731 0.00047252996 0.00044198529 + 152410 -6246.9554 -6253.0923 6.1369557 3733.7334 635.5794 -10622.405 0 294.11735 0.00042769873 0.00040395343 + 152420 -6247.1515 -6253.2896 6.1380885 3732.9194 635.96491 -10622.174 0 294.17164 0.00048803288 0.0004699853 + 152430 -6247.3097 -6253.7144 6.4046885 3730.1872 636.66881 -10620.57 0 306.94861 0.0006389106 0.00062095823 + 152440 -6247.4473 -6254.3046 6.8573048 3726.4356 637.35577 -10618.096 0 328.64052 0.00082279442 0.00080022837 + 152450 -6247.6185 -6254.9053 7.286838 3722.8817 637.62407 -10615.411 0 349.22617 0.00096184024 0.0009346657 + 152460 -6247.8698 -6255.3567 7.4869011 3720.584 637.16411 -10613.105 0 358.81431 0.00099072633 0.00096310356 + 152470 -6248.2044 -6255.5704 7.3660507 3720.0389 635.88989 -10611.499 0 353.02248 0.00088374055 0.00086014483 + 152480 -6248.5789 -6255.5502 6.9713217 3721.0332 633.99381 -10610.577 0 334.10485 0.00066426571 0.0006457065 + 152490 -6248.9352 -6255.3552 6.4199666 3722.8039 631.90243 -10610.061 0 307.68082 0.00039410275 0.0003774873 + 152500 -6249.2394 -6255.0431 5.8037137 3724.4022 630.14608 -10609.591 0 278.14652 0.00014952845 0.00013065131 + 152510 -6249.4954 -6254.6463 5.1509175 3725.0656 629.18644 -10608.898 0 246.86087 -4.5180228e-06 -2.7071833e-05 + 152520 -6249.7257 -6254.1975 4.4717133 3724.4483 629.26251 -10607.908 0 214.30959 -3.291687e-05 -5.6462336e-05 + 152530 -6249.9415 -6253.7695 3.8279592 3722.6758 630.31133 -10606.757 0 183.45728 6.2308921e-05 4.2222369e-05 + 152540 -6250.13 -6253.4819 3.3519276 3720.2731 631.99195 -10605.747 0 160.64318 0.00024542228 0.00023117146 + 152550 -6250.2653 -6253.4566 3.1913262 3718.0175 633.80165 -10605.276 0 152.94626 0.00045869896 0.00044843661 + 152560 -6250.3312 -6253.7521 3.420885 3716.7369 635.23982 -10605.729 0 163.94801 0.00063915416 0.00062799164 + 152570 -6250.3373 -6254.3208 3.9835389 3717.0706 635.96319 -10607.355 0 190.91354 0.00073654879 0.00072014392 + 152580 -6250.3181 -6255.0216 4.7034309 3719.235 635.88396 -10610.14 0 225.4148 0.00072860093 0.00070647409 + 152590 -6250.3133 -6255.6818 5.368571 3722.8794 635.18333 -10613.745 0 257.29204 0.00062898649 0.00060497224 + 152600 -6250.3393 -6256.1728 5.833464 3727.1173 634.23771 -10617.528 0 279.57233 0.00048402163 0.00046325527 + 152610 -6250.3771 -6256.4455 6.0683355 3730.7746 633.48114 -10620.701 0 290.82868 0.00035639797 0.00034110055 + 152620 -6250.3897 -6256.5061 6.1164615 3732.7944 633.24919 -10622.55 0 293.13515 0.00030002961 0.00028775822 + 152630 -6250.357 -6256.363 6.0060267 3732.6332 633.65734 -10622.654 0 287.8425 0.00033665241 0.00032271512 + 152640 -6250.2938 -6256.007 5.7131809 3730.4494 634.5567 -10621.013 0 273.80769 0.00044648988 0.0004282638 + 152650 -6250.2313 -6255.449 5.217633 3726.9907 635.58503 -10618.025 0 250.05825 0.00057842492 0.00055746465 + 152660 -6250.1842 -6254.7699 4.5857177 3723.2564 636.2986 -10614.325 0 219.77332 0.00067372615 0.00065390822 + 152670 -6250.1353 -6254.1186 3.9833162 3720.1258 636.33962 -10610.584 0 190.90286 0.00069036863 0.00067426002 + 152680 -6250.0497 -6253.6476 3.5979059 3718.1167 635.57501 -10607.339 0 172.43184 0.00061722851 0.00060419961 + 152690 -6249.8963 -6253.4383 3.5420466 3717.3277 634.15078 -10604.917 0 169.75475 0.0004751865 0.00046255554 + 152700 -6249.656 -6253.4758 3.8198177 3717.5159 632.44026 -10603.432 0 183.0671 0.00030814882 0.00029368114 + 152710 -6249.315 -6253.6834 4.368346 3718.2434 630.90888 -10602.836 0 209.35565 0.00016833619 0.00015166929 + 152720 -6248.8571 -6253.9784 5.1212867 3719.046 629.95077 -10602.975 0 245.44079 9.9569862e-05 8.1655276e-05 + 152730 -6248.2682 -6254.3047 6.0364848 3719.5935 629.75941 -10603.658 0 289.30222 0.0001225451 0.00010400044 + 152740 -6247.5538 -6254.625 7.0711403 3719.8034 630.27852 -10604.707 0 338.88872 0.00022687986 0.00020680978 + 152750 -6246.7579 -6254.8898 8.1318404 3719.8578 631.2505 -10605.998 0 389.72342 0.00037411477 0.00035049648 + 152760 -6245.9656 -6255.0163 9.0507027 3720.0914 632.34303 -10607.451 0 433.76046 0.00051261058 0.00048411767 + 152770 -6245.2779 -6254.9064 9.6284858 3720.7797 633.29768 -10608.984 0 461.45107 0.00059973267 0.00056746435 + 152780 -6244.7679 -6254.5008 9.7328549 3721.9352 634.02991 -10610.466 0 466.45302 0.0006214144 0.00058874353 + 152790 -6244.4476 -6253.8316 9.3839947 3723.243 634.63492 -10611.709 0 449.73368 0.00059848499 0.00056877001 + 152800 -6244.2697 -6253.0288 8.7591138 3724.1908 635.30341 -10612.523 0 419.78588 0.00057513358 0.00054901381 + 152810 -6244.1646 -6252.2685 8.1038362 3724.3355 636.19253 -10612.796 0 388.3813 0.00059454562 0.00056920849 + 152820 -6244.0854 -6251.6935 7.6080848 3723.5603 637.31114 -10612.565 0 364.62211 0.00067429432 0.00064573637 + 152830 -6244.0282 -6251.3643 7.3360811 3722.172 638.46841 -10612.005 0 351.58617 0.00079479391 0.00076143497 + 152840 -6244.017 -6251.2759 7.2588437 3720.7696 639.31193 -10611.357 0 347.88452 0.00090712245 0.00087149438 + 152850 -6244.0669 -6251.4131 7.3462153 3719.9496 639.44924 -10610.812 0 352.07185 0.00095573543 0.00092238994 + 152860 -6244.1645 -6251.7795 7.6150549 3720.0147 638.61117 -10610.405 0 364.95616 0.00090363328 0.00087512566 + 152870 -6244.2864 -6252.3613 8.0748791 3720.8383 636.79077 -10609.99 0 386.99351 0.00074783321 0.00072286715 + 152880 -6244.4336 -6253.07 8.6363859 3721.9228 634.29497 -10609.288 0 413.90407 0.00052080248 0.00049630544 + 152890 -6244.6396 -6253.7453 9.1056828 3722.5862 631.67769 -10608.009 0 436.39541 0.00028074364 0.00025515498 + 152900 -6244.9405 -6254.2272 9.286661 3722.2061 629.57183 -10606.005 0 445.0689 9.4300491e-05 6.8463095e-05 + 152910 -6245.3418 -6254.4278 9.0859836 3720.4762 628.47988 -10603.384 0 435.45132 1.4234821e-05 -1.0146255e-05 + 152920 -6245.8136 -6254.3499 8.5363187 3717.594 628.60163 -10600.545 0 409.10829 5.8638261e-05 3.6769944e-05 + 152930 -6246.3068 -6254.0689 7.7621354 3714.2648 629.76656 -10598.1 0 372.00508 0.00020233756 0.00018294444 + 152940 -6246.7721 -6253.7058 6.9337312 3711.4915 631.5014 -10596.699 0 332.3033 0.00038631954 0.00036828209 + 152950 -6247.177 -6253.3878 6.2107892 3710.2392 633.20943 -10596.836 0 297.65587 0.00054051815 0.00052208929 + 152960 -6247.5172 -6253.2023 5.6851446 3711.1029 634.38856 -10598.694 0 272.46403 0.00060955688 0.00058962887 + 152970 -6247.8114 -6253.1768 5.3653349 3714.0775 634.7988 -10602.053 0 257.13695 0.00057229533 0.00055163707 + 152980 -6248.0815 -6253.3005 5.2190088 3718.4997 634.51842 -10606.319 0 250.12418 0.00044934013 0.00043028723 + 152990 -6248.3322 -6253.5616 5.2293816 3723.212 633.87864 -10610.652 0 250.62131 0.00029565365 0.0002800735 + 153000 -6248.55 -6253.9585 5.4085426 3726.9243 633.31352 -10614.196 0 259.20771 0.00017965953 0.00016686784 + 153010 -6248.7188 -6254.4755 5.7566973 3728.6507 633.18636 -10616.313 0 275.89324 0.00015599157 0.0001425516 + 153020 -6248.8401 -6255.0478 6.2076263 3728.0475 633.65492 -10616.75 0 297.50428 0.00024288078 0.00022471961 + 153030 -6248.9408 -6255.5543 6.6134789 3725.5131 634.61761 -10615.685 0 316.95502 0.0004139467 0.00038936304 + 153040 -6249.0586 -6255.8547 6.7960552 3722.0132 635.7532 -10613.621 0 325.7051 0.00060811052 0.00057934676 + 153050 -6249.2135 -6255.8554 6.6419309 3718.7074 636.63569 -10611.198 0 318.3186 0.00075329196 0.00072515468 + 153060 -6249.3887 -6255.5623 6.1735747 3716.5333 636.884 -10608.98 0 295.87234 0.00079333001 0.00076967179 + 153070 -6249.5406 -6255.0755 5.5349542 3715.9191 636.29671 -10607.291 0 265.26606 0.00070685855 0.00068778515 + 153080 -6249.6316 -6254.5315 4.8999541 3716.7118 634.92795 -10606.171 0 234.8333 0.00051223186 0.00049447683 + 153090 -6249.6577 -6254.0388 4.3810886 3718.3021 633.07975 -10605.421 0 209.96635 0.00025977857 0.00023986991 + 153100 -6249.6463 -6253.6568 4.0104918 3719.8558 631.21189 -10604.724 0 192.20527 1.6474475e-05 -6.1925287e-06 + 153110 -6249.6292 -6253.4213 3.7920368 3720.5726 629.79728 -10603.791 0 181.73568 -0.00015231287 -0.00017515318 + 153120 -6249.6163 -6253.3752 3.758937 3719.929 629.1701 -10602.474 0 180.14935 -0.00020082922 -0.00022054656 + 153130 -6249.5888 -6253.564 3.9752044 3717.8675 629.41858 -10600.85 0 190.5141 -0.00011726654 -0.00013278681 + 153140 -6249.5172 -6253.9957 4.4785108 3714.8743 630.36064 -10599.231 0 214.63537 7.0232651e-05 5.6836087e-05 + 153150 -6249.3879 -6254.602 5.2141195 3711.8854 631.61298 -10598.1 0 249.88986 0.00029995429 0.00028516308 + 153160 -6249.2199 -6255.2355 6.0155494 3710.0062 632.73161 -10597.973 0 288.29888 0.00049567835 0.00047746714 + 153170 -6249.0583 -6255.716 6.657736 3710.1143 633.37477 -10599.205 0 319.07606 0.00059332462 0.00057304194 + 153180 -6248.9441 -6255.9079 6.9637954 3712.4913 633.42688 -10601.826 0 333.74415 0.00056555541 0.00054703378 + 153190 -6248.8827 -6255.7839 6.9011856 3716.6545 633.03393 -10605.472 0 330.74353 0.00043343644 0.00041961474 + 153200 -6248.8393 -6255.4298 6.5905205 3721.496 632.53749 -10609.463 0 315.85472 0.00025828445 0.00024802394 + 153210 -6248.7716 -6254.9796 6.2079668 3725.685 632.33685 -10613.001 0 297.5206 0.00011607566 0.00010436712 + 153220 -6248.6703 -6254.5298 5.8594764 3728.1425 632.73313 -10615.405 0 280.81899 6.6429914e-05 4.8443712e-05 + 153230 -6248.567 -6254.1079 5.5408835 3728.3645 633.80775 -10616.28 0 265.55023 0.00013101197 0.00010652762 + 153240 -6248.5009 -6253.7169 5.2160464 3726.4836 635.3729 -10615.573 0 249.98221 0.00028958671 0.00026344225 + 153250 -6248.4768 -6253.3986 4.921863 3723.1203 637.0123 -10613.531 0 235.88329 0.00049127423 0.00046912639 + 153260 -6248.4562 -6253.2362 4.7799797 3719.1584 638.20587 -10610.6 0 229.08345 0.0006723644 0.00065572859 + 153270 -6248.3909 -6253.2878 4.896874 3715.5255 638.50122 -10607.315 0 234.68568 0.00077388805 0.00075915664 + 153280 -6248.2654 -6253.5204 5.2549625 3712.9866 637.67314 -10604.18 0 251.84729 0.00075715338 0.00073930576 + 153290 -6248.1081 -6253.8171 5.7090049 3711.9434 635.81161 -10601.572 0 273.60755 0.0006165306 0.00059372015 + 153300 -6247.9623 -6254.0596 6.0972874 3712.3 633.30278 -10599.662 0 292.21622 0.00038513418 0.00035972926 + 153310 -6247.8466 -6254.2084 6.3617826 3713.4953 630.70848 -10598.412 0 304.89232 0.00012703212 0.00010245242 + 153320 -6247.7449 -6254.3059 6.5609668 3714.7437 628.59135 -10597.641 0 314.43834 -8.5052646e-05 -0.00010808044 + 153330 -6247.6344 -6254.4041 6.7697154 3715.3856 627.35223 -10597.142 0 324.44274 -0.00019747623 -0.00022128399 + 153340 -6247.518 -6254.4956 6.9775631 3715.1605 627.13462 -10596.791 0 334.40398 -0.00019439617 -0.00022128657 + 153350 -6247.4253 -6254.5156 7.0903647 3714.2589 627.81954 -10596.594 0 339.81006 -9.831361e-05 -0.00012761227 + 153360 -6247.3823 -6254.4063 7.0240433 3713.1592 629.10156 -10596.667 0 336.63157 4.5337776e-05 1.699557e-05 + 153370 -6247.3856 -6254.1741 6.7885622 3712.3754 630.61286 -10597.162 0 325.34599 0.00018931753 0.0001650147 + 153380 -6247.405 -6253.8904 6.4853584 3712.2539 632.04901 -10598.193 0 310.81477 0.00030123164 0.00028122008 + 153390 -6247.4096 -6253.644 6.2343906 3712.8904 633.25219 -10599.787 0 298.78698 0.00037077742 0.00035260635 + 153400 -6247.3903 -6253.4929 6.1026022 3714.1566 634.22432 -10601.874 0 292.47094 0.00040766872 0.00038854027 + 153410 -6247.3614 -6253.4473 6.0859705 3715.7899 635.06947 -10604.307 0 291.67386 0.00043274813 0.00041190156 + 153420 -6247.3443 -6253.489 6.1447186 3717.4984 635.89234 -10606.88 0 294.48939 0.00046576261 0.00044497312 + 153430 -6247.3477 -6253.6019 6.254236 3719.047 636.70021 -10609.349 0 299.73808 0.00051410665 0.00049596438 + 153440 -6247.3585 -6253.7859 6.4273482 3720.3084 637.35829 -10611.453 0 308.03459 0.000566981 0.00055230828 + 153450 -6247.3539 -6254.0383 6.6844152 3721.2675 637.62678 -10612.933 0 320.35468 0.00059781732 0.00058440675 + 153460 -6247.325 -6254.3157 6.9906983 3721.9721 637.26839 -10613.556 0 335.03349 0.00057485047 0.00055893863 + 153470 -6247.2941 -6254.5161 7.2219956 3722.4282 636.17701 -10613.121 0 346.11855 0.00047670917 0.00045633487 + 153480 -6247.3025 -6254.5171 7.2145902 3722.4769 634.46445 -10611.458 0 345.76364 0.00030735705 0.00028463957 + 153490 -6247.3746 -6254.2588 6.8842155 3721.7442 632.45987 -10608.463 0 329.93024 0.00010290593 8.2659192e-05 + 153500 -6247.4894 -6253.807 6.3176247 3719.7549 630.61627 -10604.178 0 302.77602 -7.6176378e-05 -9.0834853e-05 + 153510 -6247.5911 -6253.3341 5.74304 3716.2143 629.35996 -10598.908 0 275.2387 -0.0001677584 -0.00017893366 + 153520 -6247.6341 -6253.0217 5.3876876 3711.3232 628.94195 -10593.287 0 258.20822 -0.00013662859 -0.00015071694 + 153530 -6247.6228 -6252.9568 5.3340051 3705.9246 629.34654 -10588.228 0 255.63545 5.7559377e-06 -1.680049e-05 + 153540 -6247.6118 -6253.102 5.4901633 3701.3417 630.29155 -10584.735 0 263.11943 0.00020214064 0.0001715364 + 153550 -6247.6641 -6253.3589 5.6948234 3698.9375 631.32475 -10583.621 0 272.92789 0.00037226277 0.00034048504 + 153560 -6247.8006 -6253.6638 5.8632064 3699.5859 631.98892 -10585.239 0 280.99775 0.00044680143 0.00042201543 + 153570 -6247.9836 -6254.0272 6.0435762 3703.3115 631.99884 -10589.337 0 289.64208 0.00039547175 0.00038031055 + 153580 -6248.1536 -6254.4814 6.3277817 3709.2681 631.36203 -10595.112 0 303.2628 0.00023628195 0.00022532766 + 153590 -6248.2905 -6254.9865 6.6960435 3716.0361 630.39099 -10601.414 0 320.91198 2.4739657e-05 8.9799396e-06 + 153600 -6248.4401 -6255.397 6.9568703 3722.0596 629.59317 -10607.05 0 333.41226 -0.00016766262 -0.0001930466 + 153610 -6248.6723 -6255.5415 6.8691731 3726.031 629.47423 -10611.047 0 329.20932 -0.0002748801 -0.00030653174 + 153620 -6249.0077 -6255.3542 6.346515 3727.1503 630.3319 -10612.836 0 304.16061 -0.00025319772 -0.00028304207 + 153630 -6249.3902 -6254.9327 5.5424592 3725.2841 632.12772 -10612.344 0 265.62574 -9.3992909e-05 -0.00011638671 + 153640 -6249.7333 -6254.4713 4.7379614 3721.0294 634.48649 -10609.987 0 227.0697 0.00016940183 0.00015372367 + 153650 -6249.9857 -6254.1387 4.1529482 3715.6155 636.81201 -10606.566 0 199.03258 0.00046630798 0.0004522824 + 153660 -6250.1554 -6254.0031 3.8476879 3710.5919 638.46669 -10603.062 0 184.4028 0.00070779359 0.00069102913 + 153670 -6250.2849 -6254.0436 3.7586631 3707.3619 638.95655 -10600.362 0 180.13623 0.00081540693 0.00079545902 + 153680 -6250.4121 -6254.2079 3.7957437 3706.7297 638.07408 -10599.012 0 181.91333 0.00074849159 0.00072837413 + 153690 -6250.5463 -6254.4568 3.9105125 3708.6487 635.96238 -10599.068 0 187.4137 0.00051884284 0.00050206014 + 153700 -6250.6696 -6254.7704 4.1007405 3712.2675 633.07987 -10600.118 0 196.53049 0.00018693813 0.00017465451 + 153710 -6250.7555 -6255.1267 4.3712161 3716.2449 630.07232 -10601.444 0 209.4932 -0.0001583879 -0.00016817218 + 153720 -6250.7894 -6255.4791 4.6896975 3719.2069 627.59142 -10602.277 0 224.75662 -0.00042887902 -0.00043981042 + 153730 -6250.7807 -6255.7525 4.9718112 3720.1766 626.11829 -10602.047 0 238.27709 -0.00056374249 -0.00057837304 + 153740 -6250.756 -6255.8697 5.1137498 3718.8344 625.84654 -10600.551 0 245.07958 -0.00054503377 -0.00056290592 + 153750 -6250.7378 -6255.7951 5.057295 3715.5429 626.65778 -10597.996 0 242.37395 -0.00039732065 -0.00041548595 + 153760 -6250.726 -6255.5599 4.8339004 3711.1755 628.19131 -10594.927 0 231.66763 -0.00017447038 -0.00018999923 + 153770 -6250.7 -6255.244 4.5440118 3706.8479 629.97811 -10592.07 0 217.77454 5.9175624e-05 4.7000239e-05 + 153780 -6250.6374 -6254.9277 4.2903864 3703.6372 631.58835 -10590.153 0 205.61939 0.00024657615 0.00023621419 + 153790 -6250.5289 -6254.659 4.1300495 3702.3393 632.74232 -10589.741 0 197.93515 0.00035117549 0.00034042932 + 153800 -6250.3761 -6254.4583 4.0821672 3703.2956 633.35589 -10591.11 0 195.64036 0.00036379428 0.00035107694 + 153810 -6250.1793 -6254.3411 4.1617522 3706.3304 633.52004 -10594.192 0 199.45452 0.00030173423 0.00028603832 + 153820 -6249.9346 -6254.3184 4.3837694 3710.8231 633.43374 -10598.575 0 210.09483 0.00019989669 0.00018050092 + 153830 -6249.6436 -6254.3741 4.7304935 3715.8813 633.31688 -10603.572 0 226.71179 9.7220667e-05 7.4429429e-05 + 153840 -6249.3207 -6254.4563 5.1356018 3720.5349 633.32938 -10608.321 0 246.12685 2.458928e-05 8.3761752e-07 + 153850 -6248.9815 -6254.5092 5.5277143 3723.8979 633.51965 -10611.927 0 264.91908 -1.0821281e-06 -2.192303e-05 + 153860 -6248.6216 -6254.5189 5.8973777 3725.3012 633.81906 -10613.639 0 282.63543 2.3121581e-05 7.3346119e-06 + 153870 -6248.2125 -6254.5154 6.3028893 3724.427 634.08364 -10613.026 0 302.06982 8.8104967e-05 7.4736198e-05 + 153880 -6247.732 -6254.5181 6.7861187 3721.4185 634.16433 -10610.101 0 325.22889 0.0001745035 0.00015680067 + 153890 -6247.2034 -6254.4802 7.2767523 3716.8834 633.97411 -10605.338 0 348.7428 0.00025615808 0.00022812634 + 153900 -6246.7016 -6254.2968 7.5951669 3711.7332 633.52276 -10599.553 0 364.00302 0.00030808678 0.00026976821 + 153910 -6246.3097 -6253.8841 7.5744093 3706.9065 632.90619 -10593.697 0 363.00819 0.00031695225 0.00027536619 + 153920 -6246.0599 -6253.2638 7.2038909 3703.1104 632.25736 -10588.632 0 345.25087 0.00028697993 0.00025149829 + 153930 -6245.9091 -6252.5823 6.6731328 3700.7075 631.68248 -10584.972 0 319.81397 0.00023561443 0.00021115677 + 153940 -6245.769 -6252.045 6.2760666 3699.7784 631.21341 -10583.037 0 300.78432 0.00018068766 0.00016388932 + 153950 -6245.5678 -6251.806 6.2381643 3700.2816 630.80064 -10582.888 0 298.96784 0.00012766754 0.00010915369 + 153960 -6245.3016 -6251.8842 6.5825535 3702.1636 630.35139 -10584.399 0 315.4729 6.6339324e-05 3.7916228e-05 + 153970 -6245.036 -6252.1741 7.1380589 3705.3003 629.79456 -10587.269 0 342.09583 -1.8994568e-05 -5.7586896e-05 + 153980 -6244.8534 -6252.5463 7.6929594 3709.2966 629.14504 -10590.988 0 368.68978 -0.00013079152 -0.00017140058 + 153990 -6244.7863 -6252.9471 8.1607297 3713.3467 628.54301 -10594.837 0 391.10795 -0.00024413526 -0.00027676897 + 154000 -6244.799 -6253.3994 8.6004404 3716.366 628.24778 -10598.013 0 412.18136 -0.00030979492 -0.00033059897 + 154010 -6244.8321 -6253.9125 9.0804128 3717.3999 628.5693 -10599.882 0 435.18433 -0.00027599951 -0.00028988227 + 154020 -6244.867 -6254.3953 9.5283218 3716.0871 629.73959 -10600.222 0 456.65064 -0.00011748946 -0.00013363964 + 154030 -6244.9481 -6254.6629 9.7147647 3712.8983 631.76509 -10599.326 0 465.58603 0.00014474906 0.00012040443 + 154040 -6245.1436 -6254.5397 9.3960774 3709.002 634.33631 -10597.878 0 450.31275 0.0004449455 0.000414289 + 154050 -6245.4765 -6253.9878 8.5112976 3705.8144 636.86638 -10596.669 0 407.90914 0.00069563427 0.00066641631 + 154060 -6245.8902 -6253.1654 7.2752487 3704.4574 638.67019 -10596.293 0 348.67074 0.00082054262 0.00079966237 + 154070 -6246.2821 -6252.3624 6.0803633 3705.3789 639.21371 -10596.955 0 291.40513 0.00078077428 0.00076851054 + 154080 -6246.5751 -6251.8494 5.2742433 3708.2718 638.3178 -10598.439 0 252.77133 0.00058448389 0.00057454815 + 154090 -6246.7649 -6251.7471 4.9821836 3712.2437 636.22602 -10600.217 0 238.77419 0.00028123715 0.00026629918 + 154100 -6246.9091 -6252.0069 5.0977933 3716.096 633.51415 -10601.617 0 244.31486 -5.251059e-05 -7.4898701e-05 + 154110 -6247.0768 -6252.4969 5.4201186 3718.6157 630.88746 -10602 0 259.76249 -0.00033235476 -0.00035843523 + 154120 -6247.3017 -6253.1058 5.8041247 3718.8655 628.94978 -10600.921 0 278.16622 -0.00048761432 -0.00051122511 + 154130 -6247.5717 -6253.7774 6.205683 3716.4643 628.02916 -10598.271 0 297.41115 -0.00048256923 -0.00050020751 + 154140 -6247.8556 -6254.4733 6.6177188 3711.7783 628.11161 -10594.363 0 317.15822 -0.00033015041 -0.00034314542 + 154150 -6248.1357 -6255.1248 6.989112 3705.9051 628.88907 -10589.919 0 334.95746 -9.0397497e-05 -0.00010330099 + 154160 -6248.4206 -6255.6267 7.2060947 3700.3951 629.89188 -10585.914 0 345.35649 0.000148461 0.00013121117 + 154170 -6248.7336 -6255.8728 7.1391489 3696.7771 630.6588 -10583.309 0 342.14807 0.0003002374 0.0002770063 + 154180 -6249.0925 -6255.8034 6.7108886 3696.0563 630.89233 -10582.752 0 321.62344 0.00031095383 0.00028378512 + 154190 -6249.4918 -6255.4385 5.9467845 3698.3727 630.55168 -10584.363 0 285.00328 0.00017767357 0.00015114641 + 154200 -6249.8983 -6254.8863 4.9880487 3702.9551 629.85311 -10587.695 0 239.05528 -5.0971296e-05 -7.2429666e-05 + 154210 -6250.2644 -6254.3174 4.0530669 3708.3996 629.17904 -10591.896 0 194.24571 -0.00029298925 -0.00030790406 + 154220 -6250.5522 -6253.9052 3.353036 3713.1655 628.93016 -10596.001 0 160.6963 -0.00046331046 -0.000474135 + 154230 -6250.7556 -6253.7578 3.0021765 3716.0926 629.37335 -10599.224 0 143.88114 -0.00050441856 -0.00051577428 + 154240 -6250.9041 -6253.8809 2.9767805 3716.7362 630.53666 -10601.154 0 142.66402 -0.00040548516 -0.00042080843 + 154250 -6251.0461 -6254.1955 3.1493545 3715.4086 632.18591 -10601.79 0 150.93474 -0.00020329163 -0.00022235874 + 154260 -6251.2225 -6254.5965 3.3739632 3712.9522 633.89235 -10601.441 0 161.69925 3.3994911e-05 1.4771972e-05 + 154270 -6251.4459 -6255.0088 3.562923 3710.3701 635.17137 -10600.55 0 170.75526 0.00023230956 0.00021706636 + 154280 -6251.7011 -6255.4038 3.7027277 3708.4771 635.64559 -10599.527 0 177.45549 0.00033585781 0.00032620726 + 154290 -6251.9653 -6255.7732 3.8079001 3707.6883 635.17276 -10598.634 0 182.49594 0.00032183335 0.00031594954 + 154300 -6252.2305 -6256.0941 3.8635733 3707.9762 633.88992 -10597.96 0 185.16411 0.00020290578 0.00019728767 + 154310 -6252.5089 -6256.322 3.8131089 3708.9631 632.15669 -10597.442 0 182.74557 1.9226078e-05 1.1470617e-05 + 154320 -6252.8155 -6256.417 3.6015065 3710.092 630.42089 -10596.93 0 172.6044 -0.00017628247 -0.00018597753 + 154330 -6253.1461 -6256.3783 3.2322109 3710.8239 629.06181 -10596.264 0 154.90568 -0.00033492126 -0.00034448925 + 154340 -6253.4718 -6256.2552 2.7834217 3710.81 628.27619 -10595.341 0 133.39718 -0.0004264803 -0.00043401614 + 154350 -6253.7564 -6256.1255 2.3691209 3709.9927 628.04979 -10594.168 0 113.54156 -0.00044602871 -0.00045134431 + 154360 -6253.9783 -6256.0563 2.0779425 3708.603 628.21307 -10592.872 0 99.586663 -0.00041116356 -0.00041578348 + 154370 -6254.1392 -6256.0727 1.9335135 3707.0635 628.54138 -10591.678 0 92.664817 -0.00035180145 -0.00035762797 + 154380 -6254.257 -6256.1531 1.8961367 3705.8325 628.85098 -10590.837 0 90.873509 -0.0002972972 -0.00030505041 + 154390 -6254.3526 -6256.2519 1.8992608 3705.2439 629.0571 -10590.553 0 91.023232 -0.00026571292 -0.00027432152 + 154400 -6254.4368 -6256.3339 1.8971462 3705.4027 629.1825 -10590.919 0 90.921889 -0.00025867361 -0.00026611728 + 154410 -6254.5047 -6256.3975 1.8927969 3706.1764 629.3235 -10591.897 0 90.713448 -0.0002633664 -0.0002683765 + 154420 -6254.5408 -6256.4668 1.9259953 3707.2874 629.59279 -10593.347 0 92.3045 -0.00026072033 -0.00026398442 + 154430 -6254.5309 -6256.5613 2.0304788 3708.4551 630.06231 -10595.079 0 97.311935 -0.00023607329 -0.0002398941 + 154440 -6254.4734 -6256.6684 2.194962 3709.5132 630.72533 -10596.907 0 105.19489 -0.0001872572 -0.00019385946 + 154450 -6254.3811 -6256.7416 2.3604655 3710.4417 631.48857 -10598.672 0 113.12675 -0.00012624736 -0.00013606448 + 154460 -6254.2713 -6256.7283 2.4570232 3711.3075 632.1957 -10600.231 0 117.75434 -7.3828444e-05 -8.5146331e-05 + 154470 -6254.1538 -6256.6051 2.4513229 3712.1575 632.67475 -10601.437 0 117.48115 -5.0196041e-05 -6.0446421e-05 + 154480 -6254.0248 -6256.3935 2.3686678 3712.932 632.79528 -10602.121 0 113.51985 -6.6079414e-05 -7.3757697e-05 + 154490 -6253.872 -6256.1456 2.273604 3713.4438 632.51706 -10602.106 0 108.96386 -0.00011810959 -0.00012380266 + 154500 -6253.6875 -6255.9141 2.226617 3713.433 631.91269 -10601.26 0 106.71198 -0.00018968156 -0.00019542456 + 154510 -6253.477 -6255.7298 2.2528775 3712.6652 631.15178 -10599.547 0 107.97053 -0.00025628442 -0.00026384806 + 154520 -6253.2576 -6255.6046 2.3470243 3711.0332 630.4458 -10597.084 0 112.48258 -0.00029338848 -0.00030299705 + 154530 -6253.0455 -6255.5487 2.5032279 3708.6344 629.96892 -10594.152 0 119.96873 -0.00028508869 -0.00029564156 + 154540 -6252.8444 -6255.5776 2.7332087 3705.8055 629.78606 -10591.169 0 130.99069 -0.00023147964 -0.00024187042 + 154550 -6252.6471 -6255.6949 3.0478692 3703.0953 629.82359 -10588.614 0 146.07099 -0.00015176877 -0.00016183268 + 154560 -6252.4471 -6255.869 3.4218672 3701.1553 629.90183 -10586.926 0 163.99507 -8.0047305e-05 -9.0239807e-05 + 154570 -6252.2468 -6256.0297 3.7828943 3700.5499 629.81838 -10586.398 0 181.29752 -5.3318596e-05 -6.3732295e-05 + 154580 -6252.0533 -6256.0947 4.0414056 3701.5443 629.44679 -10587.086 0 193.68683 -9.5841271e-05 -0.00010579771 + 154590 -6251.8695 -6256.0065 4.1369738 3703.961 628.80852 -10588.776 0 198.267 -0.00020667832 -0.00021535812 + 154600 -6251.6891 -6255.7552 4.0660807 3707.1847 628.08832 -10591.028 0 194.8694 -0.0003564625 -0.00036391614 + 154610 -6251.5015 -6255.3765 3.8750397 3710.3309 627.58431 -10593.292 0 185.71365 -0.00049548099 -0.00050297152 + 154620 -6251.3016 -6254.9313 3.6296821 3712.5213 627.60732 -10595.06 0 173.95473 -0.00057032523 -0.00057952522 + 154630 -6251.0955 -6254.4853 3.3898012 3713.1617 628.36204 -10596.009 0 162.45829 -0.0005427468 -0.00055435602 + 154640 -6250.8941 -6254.1033 3.2091763 3712.1234 629.85153 -10596.078 0 153.80173 -0.00040362599 -0.0004166521 + 154650 -6250.6993 -6253.8542 3.1549544 3709.7749 631.84164 -10595.471 0 151.20312 -0.00017734221 -0.0001899122 + 154660 -6250.4917 -6253.8062 3.3145423 3706.8733 633.90483 -10594.584 0 158.85146 8.4133037e-05 7.290976e-05 + 154670 -6250.2362 -6253.9971 3.7608931 3704.358 635.53568 -10593.891 0 180.2431 0.00031480901 0.00030365348 + 154680 -6249.9053 -6254.3923 4.4869768 3703.0926 636.30383 -10593.789 0 215.04111 0.00045226804 0.00043868744 + 154690 -6249.5036 -6254.8703 5.3666733 3703.594 635.99316 -10594.457 0 257.2011 0.0004559316 0.00043876309 + 154700 -6249.0695 -6255.2666 6.197126 3705.8132 634.6768 -10595.757 0 297.00105 0.00032191422 0.00030292365 + 154710 -6248.6456 -6255.4537 6.8081226 3709.0692 632.69935 -10597.222 0 326.28344 8.8416254e-05 7.0891813e-05 + 154720 -6248.2478 -6255.3971 7.1492481 3712.2243 630.57258 -10598.194 0 342.63208 -0.00017390951 -0.0001886138 + 154730 -6247.8642 -6255.1392 7.274995 3714.0803 628.82276 -10598.042 0 348.65858 -0.00038606786 -0.0004005501 + 154740 -6247.4862 -6254.733 7.2467842 3713.835 627.83962 -10596.408 0 347.30656 -0.00048988783 -0.00050875528 + 154750 -6247.136 -6254.1936 7.0576121 3711.3826 627.76942 -10593.346 0 338.24037 -0.00046843273 -0.00049375473 + 154760 -6246.8561 -6253.5201 6.6640894 3707.3171 628.47979 -10589.317 0 319.38056 -0.00034811297 -0.00037657685 + 154770 -6246.6685 -6252.7662 6.0977596 3702.6678 629.6088 -10585.043 0 292.23885 -0.00018319748 -0.00020808433 + 154780 -6246.5442 -6252.0812 5.5370292 3698.5286 630.69078 -10581.301 0 265.36551 -3.2430895e-05 -4.9050441e-05 + 154790 -6246.4141 -6251.6646 5.2505307 3695.7623 631.32314 -10578.75 0 251.63489 6.0833335e-05 5.0987883e-05 + 154800 -6246.2132 -6251.6558 5.4425768 3694.8561 631.31535 -10577.827 0 260.83882 7.8871911e-05 6.8925679e-05 + 154810 -6245.9226 -6252.0412 6.1185997 3695.8969 630.76036 -10578.698 0 293.23763 3.0389083e-05 1.3229644e-05 + 154820 -6245.5818 -6252.6523 7.0705635 3698.5985 629.99408 -10581.245 0 338.86108 -5.5382479e-05 -8.1755263e-05 + 154830 -6245.2628 -6253.2545 7.9916523 3702.359 629.45241 -10585.066 0 383.00482 -0.00013905449 -0.00017011436 + 154840 -6245.0244 -6253.6654 8.6409886 3706.3781 629.48251 -10589.526 0 414.12466 -0.00018405734 -0.00021224856 + 154850 -6244.877 -6253.8273 8.9503293 3709.8493 630.19337 -10593.87 0 428.95 -0.0001691487 -0.00018958016 + 154860 -6244.7873 -6253.7955 9.008194 3712.1814 631.4175 -10597.394 0 431.7232 -9.6273565e-05 -0.00011034919 + 154870 -6244.7185 -6253.6588 8.9403524 3713.1581 632.79901 -10599.616 0 428.47185 9.5971517e-06 -4.5381366e-06 + 154880 -6244.6723 -6253.4552 8.7829454 3712.9469 633.95609 -10600.358 0 420.92802 0.00010975487 8.962814e-05 + 154890 -6244.6914 -6253.1558 8.4643944 3711.9333 634.63015 -10599.719 0 405.66128 0.00016830763 0.00014201766 + 154900 -6244.814 -6252.7391 7.9251572 3710.4595 634.75243 -10597.951 0 379.818 0.00016964425 0.00014284634 + 154910 -6245.0247 -6252.2795 7.2547831 3708.6486 634.41569 -10595.344 0 347.68991 0.00012640967 0.00010504184 + 154920 -6245.2593 -6251.944 6.6847166 3706.4522 633.79066 -10592.187 0 320.36913 7.07151e-05 5.5286304e-05 + 154930 -6245.46 -6251.8867 6.4266743 3703.8764 633.04062 -10588.804 0 308.00229 3.3077807e-05 1.8476678e-05 + 154940 -6245.6247 -6252.141 6.5162887 3701.1797 632.26597 -10585.587 0 312.29712 2.3507889e-05 4.1104823e-06 + 154950 -6245.8032 -6252.609 6.8057752 3698.87 631.48643 -10582.965 0 326.17094 2.6950116e-05 1.6520813e-06 + 154960 -6246.0521 -6253.143 7.0909011 3697.5068 630.65674 -10581.306 0 339.83577 1.3976954e-05 -1.339821e-05 + 154970 -6246.3913 -6253.6353 7.2440543 3697.4508 629.70975 -10580.796 0 347.17573 -4.2023158e-05 -6.6567815e-05 + 154980 -6246.7987 -6254.0483 7.249542 3698.709 628.61518 -10581.372 0 347.43873 -0.00015135865 -0.000171142 + 154990 -6247.2366 -6254.3818 7.1451686 3700.9264 627.43413 -10582.742 0 342.43657 -0.00030304846 -0.00032000599 + 155000 -6247.6794 -6254.6304 6.9510098 3703.4947 626.34479 -10584.47 0 333.13139 -0.00046722685 -0.00048493071 + 155010 -6248.119 -6254.7693 6.6502351 3705.7221 625.61971 -10586.111 0 318.71658 -0.00060231188 -0.0006231603 + 155020 -6248.5523 -6254.7714 6.2191528 3707.0188 625.55049 -10587.341 0 298.0567 -0.00066588374 -0.00068988859 + 155030 -6248.9678 -6254.6303 5.6624864 3707.0635 626.33832 -10588.032 0 271.37812 -0.00062833377 -0.00065369722 + 155040 -6249.3479 -6254.3706 5.0227154 3705.9105 627.98941 -10588.27 0 240.71671 -0.00048564885 -0.00050993466 + 155050 -6249.6769 -6254.0466 4.3697504 3703.9957 630.26136 -10588.304 0 209.42296 -0.00026532663 -0.00028628214 + 155060 -6249.9467 -6253.7411 3.7943906 3702.0233 632.69322 -10588.458 0 181.84849 -2.0967869e-05 -3.7148567e-05 + 155070 -6250.1526 -6253.56 3.4073691 3700.7537 634.72085 -10589.035 0 163.30025 0.00018343129 0.00017178315 + 155080 -6250.2895 -6253.607 3.317443 3700.7664 635.84444 -10590.218 0 158.99048 0.00029308641 0.00028341327 + 155090 -6250.3577 -6253.9322 3.574476 3702.2794 635.79027 -10592.002 0 171.30895 0.00027843801 0.00026672171 + 155100 -6250.3738 -6254.486 4.11226 3705.0713 634.6053 -10594.163 0 197.08257 0.00014322888 0.00012657095 + 155110 -6250.3718 -6255.1242 4.7524489 3708.507 632.64477 -10596.276 0 227.76402 -7.6104352e-05 -9.6987073e-05 + 155120 -6250.3855 -6255.6765 5.2910138 3711.6602 630.45355 -10597.79 0 253.57507 -0.00031925636 -0.00034016633 + 155130 -6250.4223 -6256.0304 5.6081204 3713.5366 628.58648 -10598.154 0 268.7726 -0.00051851306 -0.00053503456 + 155140 -6250.457 -6256.1637 5.7067613 3713.3767 627.43961 -10596.98 0 273.50002 -0.0006200606 -0.00063125579 + 155150 -6250.4552 -6256.1053 5.6500637 3710.9487 627.15358 -10594.208 0 270.78275 -0.00060298337 -0.00061205614 + 155160 -6250.4058 -6255.8757 5.4699016 3706.6901 627.61063 -10590.176 0 262.14838 -0.0004868319 -0.00049815967 + 155170 -6250.329 -6255.4705 5.1414745 3701.597 628.50706 -10585.575 0 246.40831 -0.00032305071 -0.00033843457 + 155180 -6250.2561 -6254.8963 4.6402075 3696.8958 629.46487 -10581.257 0 222.38478 -0.00017402852 -0.00019144353 + 155190 -6250.2023 -6254.2186 4.0163353 3693.6461 630.14845 -10578.013 0 192.48532 -8.9659451e-05 -0.00010524818 + 155200 -6250.1546 -6253.572 3.4173805 3692.4479 630.35789 -10576.378 0 163.78005 -9.1278692e-05 -0.00010268487 + 155210 -6250.0805 -6253.1209 3.0404231 3693.348 630.07771 -10576.547 0 145.71413 -0.00016804566 -0.00017649708 + 155220 -6249.9467 -6252.9916 3.0448927 3695.9376 629.4693 -10578.399 0 145.92834 -0.00028501361 -0.00029468774 + 155230 -6249.7365 -6253.2116 3.4751244 3699.5542 628.81023 -10581.576 0 166.54746 -0.00039798375 -0.00041301216 + 155240 -6249.4583 -6253.6943 4.2359902 3703.4814 628.39812 -10585.574 0 203.01242 -0.00046878276 -0.00048986547 + 155250 -6249.1393 -6254.2803 5.1410177 3707.0768 628.44688 -10589.804 0 246.38641 -0.00047574042 -0.00049899976 + 155260 -6248.8047 -6254.8152 6.0104273 3709.8279 629.00921 -10593.652 0 288.0534 -0.00041714276 -0.00043676186 + 155270 -6248.4578 -6255.2094 6.751557 3711.3844 629.95696 -10596.551 0 323.57249 -0.0003088332 -0.0003221303 + 155280 -6248.0841 -6255.4353 7.3511723 3711.6102 631.03479 -10598.08 0 352.30942 -0.00017883501 -0.00018959327 + 155290 -6247.6868 -6255.4701 7.7833411 3710.6336 631.96906 -10598.073 0 373.02138 -6.056288e-05 -7.6875245e-05 + 155300 -6247.3167 -6255.2534 7.9366991 3708.8186 632.58021 -10596.652 0 380.37115 1.6228954e-05 -1.1334887e-05 + 155310 -6247.0524 -6254.7208 7.6684373 3706.6111 632.84078 -10594.173 0 367.51454 3.675823e-05 4.6843605e-08 + 155320 -6246.9384 -6253.8974 6.9589425 3704.3345 632.85327 -10591.085 0 333.51157 9.6558299e-06 -2.752874e-05 + 155330 -6246.9438 -6252.954 6.0102517 3702.0926 632.76842 -10587.815 0 288.04498 -3.568754e-05 -6.5036293e-05 + 155340 -6246.9837 -6252.1546 5.1708642 3699.8717 632.69149 -10584.718 0 247.81682 -6.5409611e-05 -8.5213785e-05 + 155350 -6246.9807 -6251.721 4.7402732 3697.7623 632.61964 -10582.103 0 227.18049 -6.2626621e-05 -7.8009093e-05 + 155360 -6246.9103 -6251.7242 4.8139476 3696.1058 632.43292 -10580.263 0 230.71138 -3.9983193e-05 -5.7735356e-05 + 155370 -6246.8007 -6252.0795 5.2787786 3695.4218 631.94169 -10579.443 0 252.98869 -3.4282019e-05 -5.7412762e-05 + 155380 -6246.6973 -6252.6314 5.9340418 3696.1379 630.97782 -10579.747 0 284.39258 -8.5601604e-05 -0.00011206741 + 155390 -6246.6256 -6253.2454 6.6197999 3698.291 629.50139 -10581.038 0 317.25795 -0.0002128829 -0.00023861969 + 155400 -6246.5823 -6253.8379 7.2555768 3701.3893 627.67993 -10582.907 0 347.72795 -0.00039946341 -0.00042220087 + 155410 -6246.5556 -6254.3481 7.7924547 3704.5221 625.89534 -10584.766 0 373.45815 -0.00059549174 -0.00061597158 + 155420 -6246.5487 -6254.7056 8.1568847 3706.667 624.655 -10586.028 0 390.92368 -0.00073527823 -0.00075548347 + 155430 -6246.5825 -6254.8353 8.2527243 3707.0578 624.42387 -10586.317 0 395.51685 -0.00076181645 -0.00078243713 + 155440 -6246.6764 -6254.6974 8.0210766 3705.4686 625.43691 -10585.603 0 384.415 -0.00064902631 -0.00066863694 + 155450 -6246.8247 -6254.3253 7.5005428 3702.3151 627.57385 -10584.214 0 359.4681 -0.0004137735 -0.00043034589 + 155460 -6246.9949 -6253.8219 6.8269846 3698.5573 630.36138 -10582.741 0 327.18741 -0.00011360967 -0.0001267523 + 155470 -6247.1476 -6253.3137 6.1660598 3695.4355 633.11139 -10581.861 0 295.51218 0.0001690712 0.00015736372 + 155480 -6247.2616 -6252.8948 5.6332946 3694.1076 635.13983 -10582.142 0 269.97908 0.00035186443 0.00033865417 + 155490 -6247.3423 -6252.6063 5.2640062 3695.2713 635.97972 -10583.857 0 252.28072 0.00037898671 0.00036268727 + 155500 -6247.41 -6252.4574 5.0474482 3698.8876 635.51461 -10586.86 0 241.90204 0.00024122036 0.00022271031 + 155510 -6247.4789 -6252.4631 4.9842395 3704.1153 633.99661 -10590.575 0 238.87272 -1.8515827e-05 -3.6865376e-05 + 155520 -6247.5465 -6252.6557 5.1091686 3709.518 631.95267 -10594.126 0 244.86003 -0.00031758248 -0.00033397997 + 155530 -6247.5999 -6253.0571 5.4571308 3713.4965 630.01348 -10596.567 0 261.53633 -0.0005607861 -0.00057531631 + 155540 -6247.6311 -6253.6368 6.0056528 3714.7987 628.71668 -10597.152 0 287.82458 -0.00067270875 -0.000686916 + 155550 -6247.648 -6254.2962 6.6481159 3712.9239 628.3425 -10595.563 0 318.61502 -0.00062340587 -0.00063889238 + 155560 -6247.6717 -6254.8942 7.2224271 3708.2866 628.83329 -10592.014 0 346.13923 -0.00043828327 -0.00045575658 + 155570 -6247.7236 -6255.2978 7.5741831 3702.0884 629.82671 -10587.213 0 362.99735 -0.00018869875 -0.0002081575 + 155580 -6247.8144 -6255.4235 7.609119 3695.948 630.79654 -10582.168 0 364.67168 3.3238567e-05 1.1820706e-05 + 155590 -6247.9434 -6255.2492 7.3057757 3691.4092 631.25439 -10577.913 0 350.13376 0.00014655968 0.0001231989 + 155600 -6248.1044 -6254.8055 6.7011065 3689.4846 630.93678 -10575.227 0 321.15462 0.00010897359 8.4470281e-05 + 155610 -6248.2872 -6254.169 5.8817655 3690.3803 629.90296 -10574.452 0 281.88721 -6.9067246e-05 -9.2645384e-05 + 155620 -6248.474 -6253.4626 4.9885637 3693.4896 628.50472 -10575.457 0 239.07996 -0.00032855071 -0.0003487847 + 155630 -6248.6389 -6252.8457 4.2067617 3697.6562 627.24477 -10577.747 0 201.61163 -0.00058326511 -0.00059924307 + 155640 -6248.7579 -6252.4754 3.7175279 3701.6046 626.5855 -10580.665 0 178.16479 -0.00075086737 -0.00076420248 + 155650 -6248.8228 -6252.4498 3.6270293 3704.3705 626.78349 -10583.604 0 173.8276 -0.00078174329 -0.00079547482 + 155660 -6248.8471 -6252.7715 3.924352 3705.5666 627.80697 -10586.145 0 188.07697 -0.00067420608 -0.00069035697 + 155670 -6248.8546 -6253.3581 4.5034764 3705.3957 629.35822 -10588.112 0 215.83186 -0.00047068323 -0.00048873321 + 155680 -6248.8611 -6254.0876 5.2265134 3704.4467 630.98803 -10589.522 0 250.48385 -0.00023834011 -0.00025602986 + 155690 -6248.8659 -6254.8345 5.9685693 3703.3981 632.25962 -10590.492 0 286.04733 -4.3913917e-05 -5.9409714e-05 + 155700 -6248.862 -6255.4769 6.6149113 3702.7626 632.90045 -10591.14 0 317.02366 6.7070786e-05 5.3884933e-05 + 155710 -6248.8514 -6255.8945 7.0431305 3702.7473 632.88238 -10591.524 0 337.54633 8.080042e-05 6.8923324e-05 + 155720 -6248.848 -6255.9886 7.1405874 3703.2411 632.39917 -10591.629 0 342.21701 1.4263446e-05 2.972367e-06 + 155730 -6248.864 -6255.7239 6.8598989 3703.9084 631.75639 -10591.389 0 328.76485 -9.521692e-05 -0.00010585327 + 155740 -6248.8952 -6255.1565 6.2612568 3704.3501 631.22834 -10590.735 0 300.07456 -0.00020612506 -0.00021592145 + 155750 -6248.9234 -6254.4198 5.4963715 3704.2755 630.94843 -10589.644 0 263.41696 -0.00028862081 -0.00029802098 + 155760 -6248.9302 -6253.6765 4.7462697 3703.6123 630.8762 -10588.165 0 227.46788 -0.00033363425 -0.00034361294 + 155770 -6248.9077 -6253.069 4.1613563 3702.5094 630.84377 -10586.422 0 199.43554 -0.00035173193 -0.00036309932 + 155780 -6248.8568 -6252.6901 3.8332899 3701.2397 630.64906 -10584.579 0 183.71276 -0.00036358888 -0.00037641662 + 155790 -6248.7791 -6252.5755 3.7963284 3700.0612 630.15188 -10582.788 0 181.94136 -0.00038746007 -0.00040099695 + 155800 -6248.6682 -6252.7142 4.0459693 3699.1005 629.33774 -10581.152 0 193.90555 -0.00042913359 -0.00044227462 + 155810 -6248.5051 -6253.0653 4.5602694 3698.3129 628.33328 -10579.712 0 218.5537 -0.00047807284 -0.00049024813 + 155820 -6248.2624 -6253.5665 5.3040931 3697.5402 627.37457 -10578.481 0 254.2019 -0.00051127634 -0.00052317145 + 155830 -6247.9202 -6254.1285 6.2082675 3696.6449 626.73863 -10577.512 0 297.53502 -0.00050363989 -0.00051693362 + 155840 -6247.4845 -6254.6322 7.1477436 3695.6465 626.6538 -10576.933 0 342.55998 -0.0004405695 -0.00045663346 + 155850 -6246.9917 -6254.9512 7.959544 3694.7786 627.21185 -10576.942 0 381.46601 -0.00032702368 -0.00034580125 + 155860 -6246.4911 -6254.9995 8.5083951 3694.433 628.31398 -10577.747 0 407.77003 -0.00018866021 -0.00020910876 + 155870 -6246.0196 -6254.7673 8.7477473 3695.0253 629.68357 -10579.476 0 419.24113 -6.4705447e-05 -8.6457231e-05 + 155880 -6245.5948 -6254.3083 8.7134491 3696.8374 630.95685 -10582.103 0 417.59737 4.495682e-06 -1.9580025e-05 + 155890 -6245.2307 -6253.6916 8.4608442 3699.87 631.8232 -10585.385 0 405.49113 -8.203305e-06 -3.5427206e-05 + 155900 -6244.9465 -6252.9725 8.0259583 3703.7267 632.15423 -10588.853 0 384.64896 -0.00010365443 -0.0001323856 + 155910 -6244.7521 -6252.2114 7.4592635 3707.5909 632.05902 -10591.861 0 357.48976 -0.00024930582 -0.00027548079 + 155920 -6244.6256 -6251.5109 6.8852858 3710.3776 631.83523 -10593.724 0 329.98153 -0.00038450211 -0.00040478878 + 155930 -6244.513 -6251.0118 6.4988034 3711.0765 631.83403 -10593.922 0 311.45912 -0.00044128095 -0.00045660142 + 155940 -6244.3609 -6250.8281 6.4672228 3709.1777 632.29545 -10592.301 0 309.9456 -0.00037463285 -0.00039022374 + 155950 -6244.1579 -6250.9708 6.8128751 3704.9724 633.22194 -10589.165 0 326.5112 -0.00018738847 -0.0002085077 + 155960 -6243.9457 -6251.3367 7.3910189 3699.5442 634.34212 -10585.223 0 354.2191 6.5261011e-05 3.8360965e-05 + 155970 -6243.7838 -6251.7855 8.0016847 3694.4167 635.18519 -10581.387 0 383.48563 0.00029578566 0.00026852923 + 155980 -6243.6982 -6252.2368 8.5385458 3691.0156 635.24747 -10578.5 0 409.21502 0.00041842027 0.00039692283 + 155990 -6243.6664 -6252.6904 9.0239451 3690.2014 634.19535 -10577.087 0 432.47808 0.00037974051 0.00036477449 + 156000 -6243.6605 -6253.1488 9.4882763 3692.0518 632.0277 -10577.228 0 454.73144 0.00017390252 0.0001601371 + 156010 -6243.703 -6253.5353 9.8323351 3695.8992 629.1285 -10578.563 0 471.22067 -0.00015728376 -0.00017574618 + 156020 -6243.8645 -6253.7143 9.8497334 3700.5226 626.17655 -10580.413 0 472.05449 -0.00053390279 -0.0005576442 + 156030 -6244.1986 -6253.6035 9.4048808 3704.4418 623.9359 -10581.981 0 450.73466 -0.00085587598 -0.00088018342 + 156040 -6244.6846 -6253.2562 8.5716384 3706.3271 623.00492 -10582.588 0 410.80101 -0.0010309101 -0.0010510244 + 156050 -6245.2422 -6252.8296 7.5873931 3705.4573 623.62221 -10581.909 0 363.63045 -0.0010066849 -0.0010221742 + 156060 -6245.7922 -6252.4841 6.6918325 3702.0283 625.59742 -10580.11 0 320.71016 -0.00079226741 -0.00080660726 + 156070 -6246.2992 -6252.3128 6.0136727 3697.1284 628.37981 -10577.821 0 288.20894 -0.0004562275 -0.00047324976 + 156080 -6246.7685 -6252.3373 5.5687631 3692.3678 631.23023 -10575.935 0 266.88637 -0.00010208121 -0.00012301778 + 156090 -6247.2214 -6252.5392 5.3177921 3689.3233 633.43807 -10575.301 0 254.85844 0.00016712889 0.00014418982 + 156100 -6247.6715 -6252.891 5.2195511 3689.018 634.51858 -10576.428 0 250.15018 0.00028117037 0.00025978119 + 156110 -6248.114 -6253.3692 5.2552675 3691.6114 634.3356 -10579.316 0 251.86191 0.00022190468 0.00020484086 + 156120 -6248.5278 -6253.948 5.4202041 3696.3886 633.11675 -10583.453 0 259.76659 2.4754343e-05 1.2012272e-05 + 156130 -6248.8892 -6254.5752 5.6859667 3702.0343 631.35956 -10587.969 0 272.50343 -0.00023724783 -0.00024864829 + 156140 -6249.1904 -6255.1506 5.9601893 3707.0768 629.65928 -10591.887 0 285.64571 -0.00048082171 -0.00049472194 + 156150 -6249.446 -6255.5378 6.0918199 3710.3267 628.51375 -10594.378 0 291.95419 -0.00064064109 -0.00065872322 + 156160 -6249.6785 -6255.6225 5.9440443 3711.1599 628.16981 -10594.952 0 284.87196 -0.00068760163 -0.00070804276 + 156170 -6249.8951 -6255.3842 5.4891624 3709.589 628.56438 -10593.538 0 263.07146 -0.00063174138 -0.00065086095 + 156180 -6250.0782 -6254.9221 4.8438902 3706.162 629.38009 -10590.464 0 232.1464 -0.00051192926 -0.00052739453 + 156190 -6250.2011 -6254.409 4.2078834 3701.7614 630.18954 -10586.36 0 201.66538 -0.00037907314 -0.00039175689 + 156200 -6250.253 -6254.0033 3.750343 3697.371 630.62684 -10582.001 0 179.73748 -0.00027936846 -0.00029221085 + 156210 -6250.2505 -6253.7817 3.5311553 3693.8492 630.51744 -10578.148 0 169.23277 -0.00024132325 -0.00025630971 + 156220 -6250.2256 -6253.7377 3.5121621 3691.7437 629.91983 -10575.401 0 168.32251 -0.00026848105 -0.00028464476 + 156230 -6250.1974 -6253.8352 3.6377702 3691.1949 629.07176 -10574.102 0 174.34236 -0.00033989595 -0.00035441475 + 156240 -6250.1547 -6254.0568 3.9020928 3691.9776 628.27266 -10574.307 0 187.01018 -0.00042000472 -0.00043146038 + 156250 -6250.066 -6254.398 4.3319864 3693.6758 627.75756 -10575.831 0 207.6131 -0.00047573787 -0.00048616917 + 156260 -6249.9138 -6254.8181 4.9043002 3695.8999 627.61568 -10578.334 0 235.04158 -0.00049287442 -0.0005061876 + 156270 -6249.7179 -6255.2131 5.495265 3698.406 627.78196 -10581.401 0 263.36393 -0.00048160259 -0.00049972263 + 156280 -6249.5236 -6255.4568 5.9331517 3701.046 628.09559 -10584.598 0 284.34992 -0.00046714351 -0.00048792419 + 156290 -6249.3634 -6255.4744 6.1109906 3703.6147 628.39382 -10587.483 0 292.87296 -0.00047161587 -0.0004907603 + 156300 -6249.2325 -6255.2802 6.0476497 3705.7464 628.59805 -10589.625 0 289.83731 -0.00049916795 -0.0005141399 + 156310 -6249.1016 -6254.9465 5.8449804 3706.9597 628.75454 -10590.661 0 280.12426 -0.00053285867 -0.00054489318 + 156320 -6248.9484 -6254.5453 5.5968637 3706.8285 629.01177 -10590.386 0 268.23311 -0.00054321969 -0.0005558208 + 156330 -6248.7771 -6254.1149 5.3378033 3705.1758 629.54243 -10588.833 0 255.81749 -0.00050257638 -0.00051829362 + 156340 -6248.6097 -6253.6719 5.0622136 3702.1927 630.44144 -10586.306 0 242.60968 -0.00039856096 -0.00041696342 + 156350 -6248.4639 -6253.2438 4.7799553 3698.4394 631.64318 -10583.326 0 229.08228 -0.00024223726 -0.00026054695 + 156360 -6248.3353 -6252.8891 4.5538761 3694.7355 632.89744 -10580.522 0 218.2473 -6.8457613e-05 -8.4077787e-05 + 156370 -6248.1976 -6252.684 4.4863591 3691.9769 633.82247 -10578.483 0 215.0115 7.1881457e-05 5.9069483e-05 + 156380 -6248.0213 -6252.6818 4.6605237 3690.9192 634.02372 -10577.625 0 223.35844 0.00012609102 0.0001135829 + 156390 -6247.7961 -6252.8746 5.0785565 3691.9609 633.23974 -10578.075 0 243.39293 5.7313863e-05 4.2213667e-05 + 156400 -6247.5401 -6253.1902 5.6500659 3694.9624 631.46393 -10579.617 0 270.78286 -0.00013899808 -0.00015726145 + 156410 -6247.2863 -6253.5341 6.2478887 3699.1703 628.99555 -10581.7 0 299.43389 -0.00042575456 -0.00044481435 + 156420 -6247.0551 -6253.8419 6.7867972 3703.3379 626.39188 -10583.572 0 325.2614 -0.00072831898 -0.00074517177 + 156430 -6246.8431 -6254.0948 7.2516892 3706.0777 624.32469 -10584.497 0 347.54164 -0.00095485566 -0.00096896061 + 156440 -6246.6388 -6254.2875 7.6486602 3706.3532 623.3783 -10584.019 0 366.56672 -0.0010281357 -0.0010421248 + 156450 -6246.45 -6254.3863 7.9363172 3703.9027 623.85221 -10582.141 0 380.35285 -0.00091618282 -0.00093327202 + 156460 -6246.3086 -6254.3307 8.0221251 3699.3849 625.63977 -10579.355 0 384.46525 -0.00064723642 -0.00066788786 + 156470 -6246.2445 -6254.0849 7.8403536 3694.1719 628.23855 -10576.495 0 375.75374 -0.00030120952 -0.00032251696 + 156480 -6246.2537 -6253.6883 7.4346456 3689.8835 630.9052 -10574.477 0 356.30993 1.8498294e-05 -3.6621274e-08 + 156490 -6246.2953 -6253.2487 6.9534774 3687.8633 632.9059 -10574.018 0 333.24965 0.00021992215 0.0002046593 + 156500 -6246.3239 -6252.8753 6.5514154 3688.7807 633.76485 -10575.421 0 313.98059 0.00025050854 0.00023557571 + 156510 -6246.3248 -6252.6107 6.2858561 3692.4544 633.41065 -10578.476 0 301.2535 0.00011062835 9.2654847e-05 + 156520 -6246.3189 -6252.426 6.1070266 3697.9066 632.16767 -10582.5 0 292.68298 -0.00014833137 -0.00016961135 + 156530 -6246.3349 -6252.284 5.9491066 3703.6215 630.60815 -10586.514 0 285.11457 -0.0004394543 -0.00046074108 + 156540 -6246.3757 -6252.206 5.8303243 3707.9638 629.33308 -10589.503 0 279.42186 -0.00066653971 -0.00068412804 + 156550 -6246.4134 -6252.2716 5.8582759 3709.673 628.76683 -10590.711 0 280.76145 -0.00075546491 -0.00076889367 + 156560 -6246.4169 -6252.5463 6.1294067 3708.2833 629.03185 -10589.861 0 293.75556 -0.00068065272 -0.00069317985 + 156570 -6246.3851 -6253.0039 6.6187634 3704.2941 629.93253 -10587.231 0 317.20828 -0.00047515991 -0.00049063545 + 156580 -6246.3526 -6253.5192 7.1666648 3698.9943 631.04185 -10583.555 0 343.46679 -0.00021818133 -0.00023747204 + 156590 -6246.3629 -6253.9369 7.5740192 3693.9939 631.85883 -10579.79 0 362.9895 -4.2938642e-06 -2.4618051e-05 + 156600 -6246.4344 -6254.1554 7.7209607 3690.6632 631.98763 -10576.806 0 370.03176 9.2075421e-05 7.4567105e-05 + 156610 -6246.5491 -6254.1654 7.6163087 3689.7083 631.28028 -10575.154 0 365.01625 4.1860639e-05 2.8811863e-05 + 156620 -6246.6705 -6254.0256 7.3551093 3691.031 629.8926 -10574.949 0 352.49811 -0.00013255428 -0.00014286099 + 156630 -6246.7736 -6253.8075 7.0339101 3693.8796 628.2313 -10575.918 0 337.10444 -0.00036989401 -0.00038079483 + 156640 -6246.8596 -6253.5564 6.6967606 3697.1786 626.80931 -10577.544 0 320.94634 -0.00059378817 -0.00060726032 + 156650 -6246.9463 -6253.2952 6.3488727 3699.8923 626.06211 -10579.25 0 304.2736 -0.00073824208 -0.00075331394 + 156660 -6247.0447 -6253.0545 6.0098057 3701.3147 626.19487 -10580.564 0 288.02361 -0.0007669903 -0.00078083772 + 156670 -6247.1448 -6252.89 5.745249 3701.2348 627.11878 -10581.244 0 275.34457 -0.00068213856 -0.00069279945 + 156680 -6247.2213 -6252.8651 5.6438824 3699.9559 628.49774 -10581.319 0 270.48651 -0.00052066791 -0.00052906616 + 156690 -6247.2534 -6253.0092 5.7558218 3698.1629 629.88214 -10581.054 0 275.85128 -0.000340503 -0.00035012922 + 156700 -6247.2445 -6253.2828 6.038245 3696.6703 630.87556 -10580.829 0 289.38658 -0.00020052679 -0.00021485403 + 156710 -6247.226 -6253.5802 6.3542747 3696.1206 631.27192 -10580.973 0 304.5325 -0.00014038941 -0.00015984009 + 156720 -6247.2379 -6253.7822 6.5442921 3696.736 631.11264 -10581.631 0 313.6392 -0.00016641029 -0.00018745413 + 156730 -6247.2965 -6253.8298 6.5332492 3698.2279 630.64403 -10582.702 0 313.10996 -0.00024954922 -0.00026727026 + 156740 -6247.3771 -6253.7637 6.3865741 3699.9319 630.19529 -10583.891 0 306.08046 -0.00033871633 -0.00035109413 + 156750 -6247.4344 -6253.685 6.250597 3701.1331 630.03054 -10584.849 0 299.56368 -0.00038572742 -0.00039561967 + 156760 -6247.4449 -6253.6685 6.2235421 3701.4164 630.23715 -10585.322 0 298.26706 -0.00036965442 -0.00038222464 + 156770 -6247.4284 -6253.7126 6.2842142 3700.8346 630.69324 -10585.241 0 301.1748 -0.00030616775 -0.00032419154 + 156780 -6247.4258 -6253.7668 6.3410346 3699.8049 631.12641 -10584.698 0 303.89796 -0.00023656496 -0.00025823763 + 156790 -6247.4619 -6253.7901 6.3282212 3698.8349 631.23957 -10583.865 0 303.28387 -0.00020474933 -0.00022562402 + 156800 -6247.5297 -6253.7751 6.2453985 3698.2625 630.84925 -10582.887 0 299.31454 -0.00023626724 -0.00025279268 + 156810 -6247.6029 -6253.731 6.1281422 3698.1328 629.97327 -10581.837 0 293.69496 -0.0003285574 -0.00034009232 + 156820 -6247.6561 -6253.6645 6.0083919 3698.2274 628.82954 -10580.721 0 287.95585 -0.00045347675 -0.00046201866 + 156830 -6247.6771 -6253.5801 5.9030304 3698.2038 627.75251 -10579.536 0 282.90634 -0.00056875796 -0.00057744419 + 156840 -6247.6687 -6253.4872 5.8184882 3697.7773 627.0679 -10578.332 0 278.8546 -0.00063397551 -0.00064538055 + 156850 -6247.6466 -6253.3974 5.7508624 3696.8726 626.97659 -10577.247 0 275.61359 -0.00062583948 -0.00064053923 + 156860 -6247.6318 -6253.3206 5.6888719 3695.6768 627.48686 -10576.484 0 272.64266 -0.00054701677 -0.0005630335 + 156870 -6247.6356 -6253.2719 5.6363195 3694.5728 628.41357 -10576.258 0 270.12405 -0.00042455748 -0.00043851285 + 156880 -6247.6458 -6253.2844 5.638601 3693.9917 629.44204 -10576.718 0 270.2334 -0.0002990027 -0.00030878637 + 156890 -6247.6302 -6253.4006 5.7703598 3694.2636 630.23631 -10577.901 0 276.54802 -0.0002099338 -0.00021689497 + 156900 -6247.5605 -6253.6321 6.0716446 3695.52 630.55694 -10579.709 0 290.98728 -0.00018401 -0.00019235759 + 156910 -6247.4382 -6253.9221 6.483978 3697.6478 630.34819 -10581.918 0 310.74861 -0.00022791808 -0.00024126669 + 156920 -6247.2964 -6254.1546 6.8582585 3700.2767 629.76124 -10584.193 0 328.68623 -0.00032575998 -0.00034367312 + 156930 -6247.1704 -6254.2198 7.0493685 3702.8102 629.10056 -10586.131 0 337.84529 -0.00044117408 -0.00045910048 + 156940 -6247.061 -6254.0872 7.0262053 3704.5434 628.70767 -10587.338 0 336.73518 -0.00052654061 -0.00053972453 + 156950 -6246.9254 -6253.8224 6.897054 3704.887 628.82456 -10587.534 0 330.54553 -0.00054008936 -0.00054820477 + 156960 -6246.7088 -6253.5285 6.8197908 3703.6282 629.49122 -10586.648 0 326.84264 -0.00046557875 -0.0004737721 + 156970 -6246.3906 -6253.2636 6.8730262 3701.0873 630.52009 -10584.871 0 329.39398 -0.0003238729 -0.00033890598 + 156980 -6246.0052 -6253.0068 7.0015903 3698.0426 631.55881 -10582.608 0 335.55549 -0.00016752424 -0.0001920545 + 156990 -6245.6188 -6252.704 7.0852205 3695.4158 632.21769 -10580.338 0 339.56352 -5.8473849e-05 -8.8346229e-05 + 157000 -6245.2779 -6252.3505 7.0726176 3693.8655 632.21453 -10578.431 0 338.95952 -3.9424584e-05 -6.6592448e-05 + 157010 -6244.971 -6252.0308 7.0597777 3693.5167 631.48307 -10577.031 0 338.34416 -0.0001143262 -0.00013327981 + 157020 -6244.6396 -6251.8712 7.2315594 3693.9874 630.20543 -10576.064 0 346.5769 -0.00024850914 -0.0002608268 + 157030 -6244.2317 -6251.9396 7.7078839 3694.6772 628.75598 -10575.373 0 369.40504 -0.0003869666 -0.00040006611 + 157040 -6243.7532 -6252.1807 8.427434 3695.1184 627.5742 -10574.873 0 403.88992 -0.00047924208 -0.00050046342 + 157050 -6243.2752 -6252.4441 9.1689245 3695.1804 627.00956 -10574.634 0 439.42631 -0.00049830242 -0.00052931534 + 157060 -6242.8909 -6252.5806 9.689634 3695.056 627.19677 -10574.833 0 464.38163 -0.00044686925 -0.00048274141 + 157070 -6242.6578 -6252.5272 9.8694059 3695.0952 628.01439 -10575.637 0 472.99731 -0.00035163822 -0.00038485117 + 157080 -6242.5704 -6252.3264 9.7560731 3695.6078 629.148 -10577.082 0 467.56577 -0.00025005679 -0.00027598028 + 157090 -6242.5809 -6252.0751 9.4941331 3696.724 630.22953 -10579.029 0 455.01213 -0.00017567552 -0.00019529338 + 157100 -6242.6462 -6251.8538 9.2075464 3698.3439 630.98754 -10581.185 0 441.27729 -0.00014714254 -0.00016532397 + 157110 -6242.7583 -6251.6893 8.9310256 3700.1623 631.33883 -10583.19 0 428.02486 -0.00016361644 -0.00018472828 + 157120 -6242.9395 -6251.5728 8.6332532 3701.7455 631.38414 -10584.702 0 413.75394 -0.00020695311 -0.00023146179 + 157130 -6243.2101 -6251.5093 8.2992246 3702.6408 631.31977 -10585.47 0 397.74541 -0.00024925204 -0.00027401774 + 157140 -6243.5607 -6251.5489 7.9882468 3702.5096 631.31984 -10585.378 0 382.84161 -0.0002636843 -0.00028547824 + 157150 -6243.9581 -6251.7555 7.7973822 3701.273 631.45284 -10584.481 0 373.6943 -0.00023626628 -0.00025491551 + 157160 -6244.3785 -6252.1333 7.754815 3699.2109 631.66474 -10583.009 0 371.65425 -0.00017449461 -0.00019236375 + 157170 -6244.8281 -6252.5901 7.7619335 3696.9281 631.81546 -10581.334 0 371.99541 -0.00010704902 -0.00012574101 + 157180 -6245.3238 -6252.9883 7.6645336 3695.1462 631.73641 -10579.871 0 367.32745 -7.2136609e-05 -9.0532762e-05 + 157190 -6245.8572 -6253.2438 7.3866024 3694.4159 631.28874 -10578.948 0 354.00744 -0.00010002341 -0.00011591647 + 157200 -6246.3873 -6253.3741 6.986835 3694.9083 630.41743 -10578.7 0 334.84834 -0.00019972617 -0.00021279798 + 157210 -6246.8699 -6253.4597 6.5897961 3696.3776 629.19392 -10579.031 0 315.82 -0.00035565042 -0.00036814097 + 157220 -6247.2897 -6253.5692 6.27951 3698.2685 627.82971 -10579.667 0 300.94935 -0.00053248428 -0.00054696489 + 157230 -6247.6611 -6253.723 6.0619057 3699.8918 626.64141 -10580.256 0 290.52053 -0.00068414467 -0.0007011626 + 157240 -6248.0029 -6253.9086 5.9057649 3700.619 625.96466 -10580.492 0 283.03739 -0.0007652852 -0.00078341068 + 157250 -6248.3184 -6254.1085 5.7900875 3700.0826 626.03996 -10580.231 0 277.49348 -0.00074536783 -0.00076318049 + 157260 -6248.5982 -6254.3014 5.7032002 3698.3401 626.91294 -10579.554 0 273.32935 -0.00062217125 -0.00063971397 + 157270 -6248.8362 -6254.4495 5.6132757 3695.9189 628.39193 -10578.76 0 269.01967 -0.00042771245 -0.00044595409 + 157280 -6249.038 -6254.5027 5.4646956 3693.6816 630.08731 -10578.272 0 261.89887 -0.00022077951 -0.00024003734 + 157290 -6249.2146 -6254.4305 5.2159468 3692.534 631.52633 -10578.491 0 249.97744 -6.7291935e-05 -8.6487843e-05 + 157300 -6249.3702 -6254.2514 4.8812196 3693.0975 632.30597 -10579.655 0 233.93543 -1.6954134e-05 -3.4363922e-05 + 157310 -6249.4982 -6254.0346 4.53637 3695.4753 632.22659 -10581.737 0 217.4083 -8.6268441e-05 -0.00010094152 + 157320 -6249.5855 -6253.8743 4.2888656 3699.1965 631.35525 -10584.426 0 205.5465 -0.00025375152 -0.0002665408 + 157330 -6249.6194 -6253.8516 4.2322078 3703.3459 629.99779 -10587.195 0 202.83114 -0.00046767038 -0.00048126101 + 157340 -6249.5982 -6253.9964 4.3981968 3706.8335 628.59529 -10589.425 0 210.78627 -0.00066290197 -0.00068049762 + 157350 -6249.5393 -6254.264 4.7246408 3708.7124 627.58373 -10590.56 0 226.4313 -0.00078124459 -0.00080418298 + 157360 -6249.4762 -6254.5484 5.0722168 3708.4336 627.26073 -10590.243 0 243.08909 -0.00078839243 -0.00081429661 + 157370 -6249.437 -6254.7403 5.3033515 3705.9661 627.69706 -10588.403 0 254.16636 -0.00068229031 -0.00070589109 + 157380 -6249.4181 -6254.791 5.372897 3701.7843 628.71866 -10585.294 0 257.49937 -0.00049181586 -0.00050867874 + 157390 -6249.3811 -6254.7301 5.3490321 3696.7737 629.96503 -10581.469 0 256.35563 -0.00026857388 -0.00027893167 + 157400 -6249.281 -6254.6206 5.3396069 3692.0772 631.00465 -10577.702 0 255.90392 -7.495731e-05 -8.4094632e-05 + 157410 -6249.104 -6254.4955 5.3915265 3688.8667 631.46929 -10574.831 0 258.3922 3.0404307e-05 1.5969516e-05 + 157420 -6248.8802 -6254.3373 5.4570467 3688.0358 631.16662 -10573.54 0 261.5323 9.1302301e-06 -1.330571e-05 + 157430 -6248.6606 -6254.1169 5.456224 3689.8903 630.14037 -10574.147 0 261.49287 -0.00014203123 -0.00016920795 + 157440 -6248.4742 -6253.8514 5.3772663 3693.9734 628.66242 -10576.487 0 257.70877 -0.000384738 -0.00040999399 + 157450 -6248.3005 -6253.6232 5.3227317 3699.1442 627.15807 -10579.925 0 255.09517 -0.00064706506 -0.00066566571 + 157460 -6248.0792 -6253.5304 5.451197 3703.9211 626.08542 -10583.537 0 261.25195 -0.00084599893 -0.00085899237 + 157470 -6247.7514 -6253.5989 5.8474485 3706.9711 625.80352 -10586.374 0 280.24254 -0.00091653955 -0.00092984219 + 157480 -6247.3053 -6253.7278 6.4225028 3707.5414 626.46507 -10587.734 0 307.80237 -0.00083498124 -0.00085413281 + 157490 -6246.7879 -6253.7331 6.9451684 3705.6455 627.9612 -10587.34 0 332.85144 -0.00062569457 -0.00065070505 + 157500 -6246.2655 -6253.4778 7.2123612 3701.949 629.93704 -10585.364 0 345.65682 -0.00034864109 -0.00037397734 + 157510 -6245.764 -6252.9894 7.2254553 3697.4714 631.88616 -10582.347 0 346.28436 -7.5359829e-05 -9.5663944e-05 + 157520 -6245.2483 -6252.4486 7.2002932 3693.2968 633.30781 -10579.053 0 345.07845 0.0001332408 0.00011708409 + 157530 -6244.6662 -6252.0526 7.3863504 3690.3929 633.87408 -10576.32 0 353.99535 0.00023877973 0.00021946225 + 157540 -6244.0135 -6251.8747 7.8611602 3689.4812 633.53496 -10574.891 0 376.7509 0.00022841356 0.00019840103 + 157550 -6243.3573 -6251.8384 8.4811469 3690.8735 632.51089 -10575.223 0 406.46415 0.00011434097 7.2830616e-05 + 157560 -6242.7976 -6251.8098 9.0121839 3694.3093 631.17842 -10577.298 0 431.91442 -6.8875069e-05 -0.00011428746 + 157570 -6242.3997 -6251.7149 9.3151313 3698.9289 629.90935 -10580.553 0 446.43336 -0.00027185195 -0.00031016175 + 157580 -6242.1521 -6251.5922 9.4400701 3703.4768 628.94347 -10584.012 0 452.42113 -0.00044375098 -0.00046841936 + 157590 -6241.984 -6251.5503 9.566364 3706.6933 628.34846 -10586.592 0 458.47384 -0.00054756379 -0.00056154105 + 157600 -6241.8298 -6251.6687 9.8389086 3707.7286 628.06614 -10587.463 0 471.5357 -0.00057077196 -0.00058494227 + 157610 -6241.6899 -6251.9146 10.224739 3706.395 628.00071 -10586.31 0 490.02685 -0.0005262678 -0.00055209492 + 157620 -6241.639 -6252.1434 10.504439 3703.1519 628.09405 -10583.389 0 503.43164 -0.0004426119 -0.00048394596 + 157630 -6241.7701 -6252.1913 10.421142 3698.8494 628.35272 -10579.393 0 499.43958 -0.00034789383 -0.00039794198 + 157640 -6242.1126 -6251.9997 9.8870915 3694.3841 628.82091 -10575.205 0 473.8449 -0.00025593292 -0.0003020401 + 157650 -6242.5948 -6251.6768 9.0820206 3690.4617 629.52153 -10571.66 0 435.26139 -0.00016403052 -0.00019688514 + 157660 -6243.0879 -6251.4366 8.3487498 3687.5773 630.40069 -10569.415 0 400.11894 -6.4840247e-05 -8.4859485e-05 + 157670 -6243.4909 -6251.4551 7.9641798 3686.147 631.30425 -10568.906 0 381.68818 3.5971111e-05 1.9950618e-05 + 157680 -6243.7847 -6251.7564 7.9717189 3686.5957 631.99824 -10570.35 0 382.0495 0.00011047262 8.8422615e-05 + 157690 -6244.0195 -6252.2127 8.1932742 3689.2504 632.23226 -10573.695 0 392.66767 0.00011660585 8.4229399e-05 + 157700 -6244.2621 -6252.6426 8.3805422 3694.0713 631.83298 -10578.547 0 401.6426 2.0511843e-05 -1.8990634e-05 + 157710 -6244.5459 -6252.9226 8.3766968 3700.4094 630.79759 -10584.13 0 401.45831 -0.00017974396 -0.00021925369 + 157720 -6244.8543 -6253.0418 8.1874777 3706.9829 629.34308 -10589.368 0 392.38987 -0.00044290603 -0.00047698189 + 157730 -6245.141 -6253.0771 7.9360479 3712.1533 627.87826 -10593.109 0 380.33994 -0.00069297996 -0.00072147241 + 157740 -6245.3693 -6253.1126 7.743332 3714.4274 626.89634 -10594.436 0 371.10392 -0.00084487795 -0.00087220148 + 157750 -6245.5423 -6253.165 7.6227614 3712.9841 626.81603 -10592.965 0 365.3255 -0.00083652846 -0.00086733146 + 157760 -6245.7012 -6253.1743 7.4731639 3707.9995 627.81717 -10588.991 0 358.15595 -0.00065398267 -0.00068873319 + 157770 -6245.891 -6253.0695 7.1784713 3700.6376 629.72838 -10583.435 0 344.03262 -0.0003396531 -0.00037383066 + 157780 -6246.1207 -6252.8552 6.7344184 3692.727 632.02289 -10577.605 0 322.75112 1.8980114e-05 -8.8169598e-06 + 157790 -6246.3514 -6252.6438 6.2924206 3686.2617 633.95121 -10572.857 0 301.5681 0.00031535266 0.0002956728 + 157800 -6246.5264 -6252.5941 6.0677229 3682.8955 634.78461 -10570.274 0 290.79933 0.00045492359 0.00043867596 + 157810 -6246.6211 -6252.7944 6.173283 3683.5426 634.08586 -10570.423 0 295.85836 0.00038237088 0.00036161237 + 157820 -6246.6703 -6253.1875 6.5172419 3688.1253 631.89927 -10573.212 0 312.3428 9.960394e-05 6.9518281e-05 + 157830 -6246.7471 -6253.605 6.8578573 3695.5082 628.77549 -10577.889 0 328.667 -0.00032887837 -0.00036578011 + 157840 -6246.9079 -6253.8856 6.9776578 3703.6967 625.60876 -10583.191 0 334.40852 -0.00078761053 -0.00082323937 + 157850 -6247.1475 -6253.982 6.8345038 3710.3446 623.3413 -10587.668 0 327.54777 -0.0011411533 -0.0011682079 + 157860 -6247.4057 -6253.9708 6.5651328 3713.4732 622.64897 -10590.093 0 314.638 -0.0012782799 -0.0012958493 + 157870 -6247.6181 -6253.9666 6.3485276 3712.1548 623.72873 -10589.85 0 304.25706 -0.0011527441 -0.0011665708 + 157880 -6247.7643 -6254.0227 6.2584248 3706.863 626.2573 -10587.143 0 299.93883 -0.00080175718 -0.00081944412 + 157890 -6247.8745 -6254.0998 6.2252972 3699.3243 629.51647 -10582.941 0 298.35117 -0.00033318746 -0.00035870794 + 157900 -6247.9972 -6254.1118 6.1145409 3691.924 632.62709 -10578.663 0 293.04311 0.00011249699 8.0866143e-05 + 157910 -6248.1598 -6253.9973 5.8374707 3686.9079 634.81003 -10575.715 0 279.76435 0.00040933247 0.00037690759 + 157920 -6248.3518 -6253.7646 5.4127866 3685.6848 635.59497 -10575.044 0 259.4111 0.00048430607 0.00045597805 + 157930 -6248.5364 -6253.4886 4.9522302 3688.4645 634.92049 -10576.874 0 237.33866 0.00033482245 0.00031203601 + 157940 -6248.676 -6253.2708 4.594791 3694.3095 633.10871 -10580.689 0 220.20817 2.1826898e-05 2.2098286e-06 + 157950 -6248.755 -6253.1898 4.43482 3701.5196 630.73753 -10585.447 0 212.54146 -0.0003556936 -0.00037624788 + 157960 -6248.7854 -6253.2702 4.4847293 3708.1696 628.4582 -10589.898 0 214.93339 -0.00069351204 -0.00071791387 + 157970 -6248.7952 -6253.4855 4.6902896 3712.6185 626.81177 -10592.916 0 224.785 -0.00091085 -0.0009390471 + 157980 -6248.8069 -6253.7901 4.9831336 3713.8701 626.09244 -10593.753 0 238.81972 -0.00096775691 -0.00099732321 + 157990 -6248.8232 -6254.1488 5.3255603 3711.7425 626.29354 -10592.185 0 255.23073 -0.00086939033 -0.00089786518 + 158000 -6248.8298 -6254.5356 5.705809 3706.8537 627.15005 -10588.539 0 273.45438 -0.00065918049 -0.00068600855 + 158010 -6248.8149 -6254.907 6.0921095 3700.4417 628.2592 -10583.608 0 291.96807 -0.00040400705 -0.0004303405 + 158020 -6248.7835 -6255.1878 6.4042871 3694.0444 629.23144 -10578.464 0 306.92937 -0.00017463549 -0.00020155918 + 158030 -6248.7517 -6255.2966 6.5448553 3689.1066 629.81459 -10574.218 0 313.66619 -2.5990602e-05 -5.3352173e-05 + 158040 -6248.7289 -6255.19 6.4610714 3686.6297 629.94891 -10571.769 0 309.65079 1.6419603e-05 -1.0591134e-05 + 158050 -6248.7093 -6254.8826 6.1733645 3686.9787 629.74265 -10571.604 0 295.86227 -4.1135278e-05 -6.7617389e-05 + 158060 -6248.6817 -6254.4289 5.747268 3689.8835 629.39003 -10573.702 0 275.44133 -0.00016922332 -0.00019569859 + 158070 -6248.6429 -6253.8937 5.2508011 3694.5825 629.07586 -10577.552 0 251.64785 -0.00032887352 -0.00035535988 + 158080 -6248.5964 -6253.346 4.7496466 3700.0281 628.91118 -10582.285 0 227.62971 -0.00048285221 -0.00050813246 + 158090 -6248.536 -6252.8744 4.3384668 3705.0977 628.92154 -10586.894 0 207.92367 -0.00060110522 -0.00062395451 + 158100 -6248.4346 -6252.5867 4.1521337 3708.8008 629.07887 -10590.466 0 198.99355 -0.0006621579 -0.00068363717 + 158110 -6248.2539 -6252.5672 4.31333 3710.472 629.34724 -10592.386 0 206.71897 -0.00065412854 -0.0006782424 + 158120 -6247.9699 -6252.8148 4.8448996 3709.9069 629.71251 -10592.434 0 232.19477 -0.00057652426 -0.0006076381 + 158130 -6247.5937 -6253.2204 5.6266646 3707.383 630.18171 -10590.785 0 269.66134 -0.00044084151 -0.00047943043 + 158140 -6247.1662 -6253.6182 6.4520047 3703.5476 630.75664 -10587.922 0 309.21627 -0.00026787918 -0.0003084087 + 158150 -6246.7253 -6253.8866 7.1613056 3699.2248 631.39804 -10584.509 0 343.20994 -8.2538328e-05 -0.00011639858 + 158160 -6246.2652 -6254.0186 7.7534196 3695.2371 631.99934 -10581.255 0 371.58737 9.0073587e-05 6.7523317e-05 + 158170 -6245.735 -6254.0963 8.3613333 3692.3206 632.38781 -10578.805 0 400.72201 0.00022358631 0.00020723042 + 158180 -6245.0974 -6254.17 9.0726704 3691.12 632.36284 -10577.653 0 434.81327 0.00028597039 0.0002625961 + 158190 -6244.4056 -6254.1456 9.7400466 3692.1378 631.76652 -10578.05 0 466.79768 0.00024044648 0.00019864684 + 158200 -6243.8123 -6253.8087 9.9964344 3695.5117 630.5628 -10579.883 0 479.08523 6.0487335e-05 1.3853534e-06 + 158210 -6243.4692 -6253.0042 9.5350703 3700.6819 628.8925 -10582.579 0 456.97407 -0.00024408877 -0.00030556189 + 158220 -6243.3954 -6251.8348 8.4393695 3706.23 627.07679 -10585.142 0 404.46194 -0.00060827865 -0.00065462778 + 158230 -6243.4477 -6250.6892 7.2414935 3710.1821 625.56141 -10586.433 0 347.053 -0.00092099586 -0.00094720583 + 158240 -6243.4313 -6250.0278 6.59656 3710.7794 624.81389 -10585.621 0 316.14417 -0.0010658722 -0.0010845255 + 158250 -6243.2557 -6250.0676 6.8118748 3707.3385 625.19252 -10582.599 0 326.46326 -0.00097394889 -0.001004645 + 158260 -6243.0029 -6250.6365 7.6335962 3700.6665 626.80624 -10578.109 0 365.84476 -0.00065766582 -0.0007095981 + 158270 -6242.8514 -6251.3361 8.4847173 3692.7649 629.40682 -10573.508 0 406.63526 -0.00020657852 -0.00027025608 + 158280 -6242.9214 -6251.8612 8.9398408 3686.035 632.3839 -10570.28 0 428.44733 0.00025010583 0.000194258 + 158290 -6243.1765 -6252.1881 9.0116064 3682.4562 634.91441 -10569.559 0 431.88674 0.00058985975 0.00055406065 + 158300 -6243.4751 -6252.4938 9.0186769 3683.0895 636.23585 -10571.819 0 432.2256 0.00072874017 0.00070735964 + 158310 -6243.7186 -6252.912 9.1934575 3687.953 635.93366 -10576.799 0 440.60207 0.00063346753 0.00060849789 + 158320 -6243.955 -6253.3582 9.4031842 3696.1025 634.11703 -10583.578 0 450.65335 0.0003238617 0.00028131282 + 158330 -6244.3365 -6253.5833 9.2468136 3705.7704 631.40003 -10590.754 0 443.15919 -0.00012600821 -0.00018332065 + 158340 -6244.9609 -6253.4124 8.4515336 3714.6102 628.68181 -10596.704 0 405.04491 -0.00059428211 -0.00064923301 + 158350 -6245.7522 -6252.9419 7.1896307 3720.2037 626.81292 -10599.958 0 344.56745 -0.00093950107 -0.00097615418 + 158360 -6246.5139 -6252.5002 5.9862755 3720.8293 626.2988 -10599.628 0 286.89591 -0.0010508295 -0.0010680813 + 158370 -6247.0932 -6252.4012 5.307946 3716.1817 627.1631 -10595.746 0 254.38655 -0.00089622634 -0.00090729547 + 158380 -6247.4822 -6252.7214 5.239232 3707.6126 628.99119 -10589.325 0 251.0934 -0.0005383866 -0.00055857586 + 158390 -6247.7809 -6253.2882 5.5073617 3697.6974 631.09482 -10582.08 0 263.94367 -0.0001088621 -0.00014392458 + 158400 -6248.0951 -6253.8446 5.7494728 3689.3207 632.73073 -10575.896 0 275.547 0.0002439475 0.00020001565 + 158410 -6248.4642 -6254.2216 5.7574057 3684.7116 633.32087 -10572.254 0 275.92719 0.00040730394 0.00036596513 + 158420 -6248.8541 -6254.4007 5.5466465 3684.8098 632.62179 -10571.832 0 265.82642 0.00033740614 0.00030734708 + 158430 -6249.1957 -6254.4711 5.2754352 3689.1257 630.79275 -10574.39 0 252.82846 6.5992465e-05 4.8372652e-05 + 158440 -6249.4302 -6254.5435 5.1133016 3696.0533 628.34167 -10578.939 0 245.05811 -0.00031688662 -0.00032812555 + 158450 -6249.5399 -6254.6728 5.132917 3703.4667 625.97007 -10584.11 0 245.99818 -0.00069530161 -0.00070919823 + 158460 -6249.5561 -6254.823 5.2669031 3709.3792 624.36741 -10588.57 0 252.41955 -0.00096368353 -0.00098662317 + 158470 -6249.5416 -6254.8941 5.3524833 3712.455 624.01304 -10591.362 0 256.52103 -0.0010554568 -0.0010874002 + 158480 -6249.5533 -6254.7973 5.2439748 3712.2524 625.03889 -10592.089 0 251.3207 -0.0009565989 -0.00099162016 + 158490 -6249.6067 -6254.5253 4.9186878 3709.1998 627.19254 -10590.918 0 235.73112 -0.00070321449 -0.00073399656 + 158500 -6249.6707 -6254.168 4.4973279 3704.3865 629.91402 -10588.469 0 215.53719 -0.00036740439 -0.00039040216 + 158510 -6249.6952 -6253.8592 4.1639273 3699.2576 632.5041 -10585.621 0 199.55876 -3.7074964e-05 -5.4555786e-05 + 158520 -6249.6492 -6253.6983 4.0490275 3695.2676 634.33073 -10583.297 0 194.05212 0.00020596524 0.00018827908 + 158530 -6249.5404 -6253.7047 4.1642349 3693.5268 635.0075 -10582.239 0 199.5735 0.00030627239 0.00028378454 + 158540 -6249.404 -6253.8312 4.4271961 3694.5002 634.48835 -10582.82 0 212.17608 0.00024925539 0.00022163632 + 158550 -6249.2733 -6254.0144 4.7411134 3697.8614 633.05083 -10584.927 0 227.22076 6.4810304e-05 3.5576053e-05 + 158560 -6249.156 -6254.2149 5.0588938 3702.5861 631.17745 -10587.978 0 242.45058 -0.0001830863 -0.0002097412 + 158570 -6249.032 -6254.4209 5.3888851 3707.2766 629.38201 -10591.08 0 258.26561 -0.00041864931 -0.00044112332 + 158580 -6248.8723 -6254.6233 5.7509535 3710.6071 628.04793 -10593.278 0 275.61796 -0.00058030152 -0.00060068511 + 158590 -6248.6628 -6254.7874 6.1245261 3711.724 627.33793 -10593.849 0 293.52166 -0.00063981561 -0.00066232393 + 158600 -6248.418 -6254.8467 6.4286457 3710.4576 627.19912 -10592.503 0 308.09677 -0.00060685134 -0.00063483846 + 158610 -6248.1758 -6254.7249 6.5491217 3707.2808 627.44457 -10589.45 0 313.87066 -0.00051800937 -0.00055152347 + 158620 -6247.976 -6254.3763 6.4003525 3703.0592 627.86361 -10585.299 0 306.74081 -0.00041660594 -0.00045203964 + 158630 -6247.8352 -6253.8249 5.9897304 3698.723 628.30906 -10580.857 0 287.06149 -0.00033320392 -0.00036541546 + 158640 -6247.7346 -6253.1771 5.4424789 3695.0161 628.72988 -10576.923 0 260.83413 -0.00027598683 -0.00030166974 + 158650 -6247.6307 -6252.5919 4.9611933 3692.4132 629.14847 -10574.154 0 237.76822 -0.00023457643 -0.00025460093 + 158660 -6247.4787 -6252.221 4.742321 3691.1812 629.60548 -10573.008 0 227.27863 -0.00019333348 -0.00021250426 + 158670 -6247.2535 -6252.1547 4.9011896 3691.4768 630.1037 -10573.735 0 234.89251 -0.00014539972 -0.00016996254 + 158680 -6246.959 -6252.3921 5.4331013 3693.3817 630.58056 -10576.354 0 260.3847 -9.9685245e-05 -0.0001339661 + 158690 -6246.628 -6252.8407 6.2126533 3696.8422 630.92428 -10580.607 0 297.7452 -7.7351136e-05 -0.00012098551 + 158700 -6246.3103 -6253.3515 7.041224 3701.5348 631.02628 -10585.913 0 337.45496 -9.9094231e-05 -0.00014652442 + 158710 -6246.0454 -6253.7821 7.7366559 3706.7501 630.84433 -10591.376 0 370.78396 -0.00016958215 -0.000212931 + 158720 -6245.8385 -6254.0462 8.2077105 3711.4291 630.44748 -10595.923 0 393.35954 -0.0002686765 -0.00030260589 + 158730 -6245.6631 -6254.1205 8.4574033 3714.4214 630.01914 -10598.561 0 405.32622 -0.00035599902 -0.000381106 + 158740 -6245.4871 -6254.0181 8.5309854 3714.8787 629.80655 -10598.703 0 408.85269 -0.00038703653 -0.00040950581 + 158750 -6245.2987 -6253.7627 8.4640206 3712.5989 630.02512 -10596.387 0 405.64336 -0.00033283524 -0.00036091754 + 158760 -6245.1184 -6253.3757 8.2572529 3708.1585 630.75142 -10592.286 0 395.73389 -0.00019486565 -0.00023424268 + 158770 -6244.992 -6252.8717 7.8797165 3702.769 631.85421 -10587.495 0 377.64023 -8.8163272e-06 -5.8955344e-05 + 158780 -6244.9665 -6252.2752 7.3087049 3697.8972 633.00453 -10583.177 0 350.27415 0.00016580385 0.00011230734 + 158790 -6245.054 -6251.6612 6.6072003 3694.7805 633.77253 -10580.214 0 316.65411 0.00026784134 0.00022148947 + 158800 -6245.2062 -6251.1917 5.9855095 3694.0289 633.77726 -10578.998 0 286.8592 0.00025877265 0.00022596398 + 158810 -6245.3294 -6251.0766 5.7472503 3695.4966 632.83274 -10579.406 0 275.44048 0.00013606904 0.00011338372 + 158820 -6245.351 -6251.4403 6.0892541 3698.4692 631.03774 -10580.947 0 291.83122 -7.0628944e-05 -9.4735579e-05 + 158830 -6245.2881 -6252.189 6.9009187 3702 628.77615 -10582.965 0 330.73074 -0.00031362083 -0.00034950814 + 158840 -6245.2526 -6253.0281 7.7755882 3705.1611 626.61946 -10584.809 0 372.64982 -0.00053914639 -0.00058685915 + 158850 -6245.3757 -6253.6415 8.2657693 3707.1485 625.15558 -10585.946 0 396.14204 -0.00069378908 -0.00074274844 + 158860 -6245.7108 -6253.8874 8.1765878 3707.3816 624.79786 -10586.067 0 391.86797 -0.00073263307 -0.00077075103 + 158870 -6246.1978 -6253.8552 7.6574448 3705.6971 625.64184 -10585.194 0 366.98772 -0.0006348628 -0.00065902103 + 158880 -6246.7241 -6253.7531 7.0290033 3702.5553 627.42676 -10583.735 0 336.86928 -0.00042068783 -0.00043925569 + 158890 -6247.223 -6253.7309 6.5079418 3699.0455 629.62395 -10582.4 0 311.89709 -0.00015477582 -0.00018000234 + 158900 -6247.7109 -6253.7865 6.0755863 3696.5467 631.62065 -10581.954 0 291.17619 7.3894921e-05 3.6522025e-05 + 158910 -6248.2355 -6253.8179 5.5824128 3696.15 632.92405 -10582.892 0 267.54054 0.00018900513 0.00014503787 + 158920 -6248.8023 -6253.7526 4.9503397 3698.1547 633.30433 -10585.212 0 237.24806 0.00015983955 0.00012093285 + 158930 -6249.3539 -6253.6344 4.2804889 3701.9285 632.83032 -10588.393 0 205.14505 1.1831282e-05 -1.3467638e-05 + 158940 -6249.8073 -6253.6054 3.7981537 3706.1939 631.80403 -10591.603 0 182.02884 -0.00018854689 -0.00020114698 + 158950 -6250.1066 -6253.8013 3.6946245 3709.5787 630.63571 -10594.016 0 177.06714 -0.0003643553 -0.00037396533 + 158960 -6250.26 -6254.2388 3.9787438 3711.1564 629.70691 -10595.102 0 190.68373 -0.0004592143 -0.00047734388 + 158970 -6250.3398 -6254.7851 4.4453164 3710.7321 629.25707 -10594.774 0 213.04451 -0.00045578441 -0.00048729609 + 158980 -6250.4409 -6255.2388 4.7978933 3708.7766 629.31946 -10593.335 0 229.94197 -0.00037543972 -0.00041487198 + 158990 -6250.6185 -6255.4653 4.8467576 3706.1062 629.72407 -10591.296 0 232.28382 -0.00026241588 -0.00029806123 + 159000 -6250.8487 -6255.4798 4.631045 3703.5247 630.17005 -10589.174 0 221.94566 -0.00016313665 -0.00018590505 + 159010 -6251.0486 -6255.4146 4.3660782 3701.6057 630.34545 -10587.366 0 209.24697 -0.00011153827 -0.00012178187 + 159020 -6251.1393 -6255.3972 4.2578816 3700.6554 630.05152 -10586.104 0 204.06158 -0.0001241829 -0.00013127039 + 159030 -6251.1045 -6255.4389 4.3343501 3700.7601 629.28474 -10585.484 0 207.72638 -0.00020117399 -0.00021634034 + 159040 -6250.999 -6255.4252 4.4262177 3701.8053 628.24577 -10585.476 0 212.12919 -0.0003271093 -0.00035523095 + 159050 -6250.906 -6255.2155 4.3094931 3703.4433 627.2712 -10585.93 0 206.53509 -0.00047100739 -0.00050750805 + 159060 -6250.8757 -6254.7707 3.8950475 3705.0939 626.71275 -10586.577 0 186.67253 -0.00058952148 -0.00062443103 + 159070 -6250.8915 -6254.2096 3.3180972 3706.0775 626.80987 -10587.097 0 159.02184 -0.00063782282 -0.00066352119 + 159080 -6250.8879 -6253.7509 2.8629551 3705.8834 627.60376 -10587.238 0 137.20887 -0.00058675859 -0.00060341082 + 159090 -6250.7976 -6253.5835 2.7859187 3704.454 628.92228 -10586.96 0 133.51685 -0.00043839618 -0.00045328022 + 159100 -6250.5915 -6253.7581 3.1666785 3702.3111 630.43476 -10586.504 0 151.765 -0.00023061173 -0.00025235485 + 159110 -6250.2884 -6254.1704 3.8820197 3700.4115 631.75282 -10586.335 0 186.04817 -2.62316e-05 -5.8512025e-05 + 159120 -6249.9356 -6254.6364 4.7007967 3699.7635 632.54578 -10586.946 0 225.28855 0.00010997039 7.0773285e-05 + 159130 -6249.5739 -6254.9984 5.4245631 3700.9772 632.63963 -10588.615 0 259.9755 0.00013689708 9.8665826e-05 + 159140 -6249.209 -6255.1919 5.9828163 3703.9646 632.07108 -10591.228 0 286.73013 5.3979972e-05 2.2680584e-05 + 159150 -6248.8129 -6255.2368 6.4239034 3707.94 631.07798 -10594.255 0 307.86949 -9.8998591e-05 -0.00012412808 + 159160 -6248.3593 -6255.1671 6.807772 3711.723 630.02595 -10596.916 0 326.26663 -0.00025971296 -0.00028564184 + 159170 -6247.8698 -6254.9613 7.091538 3714.1824 629.29172 -10598.435 0 339.86629 -0.0003697492 -0.00040374933 + 159180 -6247.4172 -6254.5483 7.131108 3714.5948 629.13691 -10598.28 0 341.76271 -0.00039561065 -0.00043892887 + 159190 -6247.075 -6253.8943 6.8193562 3712.7864 629.61301 -10596.294 0 326.82181 -0.00033521911 -0.00038219147 + 159200 -6246.8583 -6253.081 6.2226768 3709.0976 630.53579 -10592.714 0 298.22559 -0.00021217468 -0.00025533596 + 159210 -6246.7195 -6252.2879 5.5684108 3704.2781 631.54565 -10588.112 0 266.86949 -6.5947135e-05 -0.00010179378 + 159220 -6246.5923 -6251.697 5.1046913 3699.3469 632.23351 -10583.277 0 244.64545 5.7971722e-05 2.7537107e-05 + 159230 -6246.4338 -6251.4137 4.9799011 3695.3887 632.28452 -10579.087 0 238.6648 0.00011943908 8.9675521e-05 + 159240 -6246.2317 -6251.4577 5.2259448 3693.2912 631.58861 -10576.337 0 250.4566 9.6378361e-05 6.2752811e-05 + 159250 -6245.9927 -6251.7918 5.7990981 3693.5111 630.28236 -10575.585 0 277.92532 -6.5974265e-06 -4.6925904e-05 + 159260 -6245.7369 -6252.3372 6.6003069 3695.9605 628.70897 -10577.007 0 316.32374 -0.00015949903 -0.00020705122 + 159270 -6245.503 -6252.9688 7.4657571 3700.0417 627.30831 -10580.319 0 357.80097 -0.00031810747 -0.00037023476 + 159280 -6245.343 -6253.5278 8.1848212 3704.7934 626.47487 -10584.796 0 392.26256 -0.00043847424 -0.00048910296 + 159290 -6245.2916 -6253.8786 8.5870213 3709.0988 626.43631 -10589.414 0 411.53824 -0.00048768391 -0.0005297251 + 159300 -6245.3295 -6253.9801 8.6505784 3711.9374 627.19688 -10593.114 0 414.58426 -0.00044920339 -0.00047985411 + 159310 -6245.3845 -6253.8999 8.5154066 3712.6725 628.56104 -10595.133 0 408.10607 -0.00032635225 -0.00035144716 + 159320 -6245.39 -6253.7332 8.3431867 3711.3036 630.21752 -10595.254 0 399.85232 -0.00014562898 -0.00017757949 + 159330 -6245.354 -6253.4967 8.1426853 3708.5257 631.84236 -10593.865 0 390.24317 4.573792e-05 -2.9833364e-06 + 159340 -6245.3601 -6253.1228 7.7626433 3705.4624 633.17972 -10591.765 0 372.02942 0.0001951533 0.00013109144 + 159350 -6245.49 -6252.5784 7.0884204 3703.1586 634.07964 -10589.817 0 339.71688 0.00026872196 0.00020208839 + 159360 -6245.7415 -6251.9814 6.2398878 3702.1453 634.49573 -10588.622 0 299.05044 0.00026719004 0.00021257795 + 159370 -6246.0246 -6251.5831 5.558503 3702.3534 634.45719 -10588.394 0 266.39465 0.00022017001 0.00018311313 + 159380 -6246.2292 -6251.6167 5.3874786 3703.3761 634.03048 -10589.023 0 258.1982 0.00016253185 0.00013601149 + 159390 -6246.3043 -6252.1339 5.8295284 3704.8349 633.28536 -10590.254 0 279.38371 0.00011060861 8.0954674e-05 + 159400 -6246.2921 -6252.955 6.6629953 3706.5698 632.27752 -10591.802 0 319.32812 5.4562286e-05 1.1613732e-05 + 159410 -6246.2993 -6253.7685 7.4691639 3708.5468 631.0553 -10593.371 0 357.96424 -2.9112936e-05 -8.5164368e-05 + 159420 -6246.4255 -6254.3041 7.8785727 3710.5986 629.68993 -10594.593 0 377.58541 -0.000154441 -0.00021404958 + 159430 -6246.6953 -6254.4627 7.7674087 3712.2424 628.31557 -10595.021 0 372.25781 -0.00030806437 -0.00035974966 + 159440 -6247.0467 -6254.3285 7.2817695 3712.7522 627.14962 -10594.23 0 348.98325 -0.00044831929 -0.00048674165 + 159450 -6247.3816 -6254.0785 6.696896 3711.4815 626.46296 -10592.023 0 320.95283 -0.00052208322 -0.00055116538 + 159460 -6247.6353 -6253.8582 6.222972 3708.2628 626.49355 -10588.615 0 298.23973 -0.00049037138 -0.00051966702 + 159470 -6247.8153 -6253.7051 5.8897994 3703.6463 627.33254 -10584.684 0 282.27223 -0.00034957592 -0.00038678562 + 159480 -6247.9837 -6253.5648 5.581143 3698.8186 628.83786 -10581.221 0 267.47969 -0.00013743868 -0.00018267415 + 159490 -6248.2009 -6253.3802 5.1793376 3695.2175 630.63108 -10579.229 0 248.22292 7.9638691e-05 3.3571517e-05 + 159500 -6248.476 -6253.1741 4.6981871 3694.0288 632.20171 -10579.405 0 225.16349 0.00023177467 0.00019343428 + 159510 -6248.761 -6253.0589 4.2979914 3695.7875 633.08717 -10581.934 0 205.98386 0.00027111975 0.0002434737 + 159520 -6248.9911 -6253.1634 4.1722929 3700.2316 633.05038 -10586.445 0 199.95969 0.0001868435 0.00016462486 + 159530 -6249.1414 -6253.5299 4.3884709 3706.416 632.175 -10592.121 0 210.32015 5.609477e-06 -2.0771599e-05 + 159540 -6249.2586 -6254.0598 4.8012287 3712.9875 630.83785 -10597.885 0 230.10182 -0.00021901049 -0.00025556176 + 159550 -6249.439 -6254.5642 5.1252114 3718.4896 629.57097 -10602.625 0 245.62889 -0.00042124656 -0.00046473845 + 159560 -6249.7571 -6254.8971 5.1399853 3721.6368 628.8679 -10605.402 0 246.33693 -0.0005376059 -0.00057762634 + 159570 -6250.2002 -6255.0633 4.8630762 3721.5914 629.00727 -10605.662 0 233.0659 -0.00052233798 -0.000550171 + 159580 -6250.679 -6255.1943 4.5152498 3718.2617 629.95737 -10603.413 0 216.3961 -0.00036560658 -0.00038200438 + 159590 -6251.1097 -6255.4029 4.2931633 3712.5021 631.39131 -10599.296 0 205.75247 -0.00010753923 -0.00012169671 + 159600 -6251.4796 -6255.6628 4.1831475 3705.991 632.79932 -10594.453 0 200.4799 0.00016649853 0.00014557433 + 159610 -6251.8277 -6255.8379 4.010208 3700.6948 633.6549 -10590.188 0 192.19167 0.00035600162 0.00032676207 + 159620 -6252.179 -6255.8183 3.6393262 3698.1389 633.58222 -10587.539 0 174.41693 0.00038674265 0.00035472512 + 159630 -6252.515 -6255.6158 3.1007818 3698.8753 632.47628 -10586.967 0 148.60686 0.00023958603 0.00021171456 + 159640 -6252.7958 -6255.3478 2.5519969 3702.3767 630.5412 -10588.266 0 122.30601 -4.5814814e-05 -6.6240912e-05 + 159650 -6252.993 -6255.1553 2.1622676 3707.3165 628.23678 -10590.709 0 103.628 -0.00038817234 -0.00040266398 + 159660 -6253.1031 -6255.1263 2.0232463 3712.0518 626.15115 -10593.329 0 96.965315 -0.00069161916 -0.0007045004 + 159670 -6253.1437 -6255.2656 2.1218636 3715.1295 624.83546 -10595.231 0 101.69161 -0.00087343643 -0.00088877514 + 159680 -6253.1432 -6255.51 2.3667673 3715.6823 624.64583 -10595.838 0 113.42877 -0.00088611394 -0.00090546104 + 159690 -6253.1272 -6255.771 2.6437622 3713.633 625.63724 -10595.041 0 126.70392 -0.00072914743 -0.0007511205 + 159700 -6253.1076 -6255.9788 2.8712241 3709.6742 627.54331 -10593.196 0 137.60517 -0.00044787718 -0.00046958 + 159710 -6253.0772 -6256.1063 3.0290888 3705.0465 629.85239 -10591.005 0 145.17093 -0.0001197857 -0.00013908424 + 159720 -6253.0155 -6256.1626 3.1470503 3701.1843 631.96008 -10589.307 0 150.82431 0.00016761401 0.00015046891 + 159730 -6252.9038 -6256.1639 3.2600882 3699.3268 633.35086 -10588.842 0 156.24172 0.00034076204 0.00032335971 + 159740 -6252.741 -6256.1059 3.3649078 3700.1839 633.74917 -10590.039 0 161.26526 0.0003595409 0.00033929809 + 159750 -6252.5472 -6255.9632 3.4159835 3703.7277 633.18946 -10592.88 0 163.71309 0.00022775236 0.00020410019 + 159760 -6252.3505 -6255.7193 3.3687835 3709.1618 631.98387 -10596.865 0 161.45101 -8.0287202e-06 -3.3127608e-05 + 159770 -6252.1668 -6255.4006 3.2337933 3715.1013 630.60391 -10601.106 0 154.98152 -0.0002717796 -0.00029549818 + 159780 -6251.9883 -6255.0807 3.0923925 3719.9427 629.52099 -10604.544 0 148.2048 -0.00048082575 -0.00050199152 + 159790 -6251.7909 -6254.8479 3.0569804 3722.3295 629.06041 -10606.238 0 146.50765 -0.00057157866 -0.0005920089 + 159800 -6251.5536 -6254.7546 3.2009877 3721.5651 629.31211 -10605.632 0 153.40929 -0.00051971464 -0.00054321258 + 159810 -6251.2793 -6254.7851 3.5057418 3717.8291 630.11933 -10602.733 0 168.01482 -0.00034755801 -0.00037707992 + 159820 -6250.9999 -6254.8639 3.8639696 3712.1109 631.14345 -10598.118 0 185.18311 -0.00011534908 -0.00015029524 + 159830 -6250.757 -6254.9041 4.1471406 3705.8746 631.98282 -10592.762 0 198.75425 0.00010118999 6.5291049e-05 + 159840 -6250.5694 -6254.864 4.2946123 3700.5873 632.30763 -10587.759 0 205.82192 0.0002382668 0.00020688257 + 159850 -6250.4151 -6254.768 4.3529552 3697.3109 631.96654 -10584.045 0 208.61804 0.00026436103 0.00023973304 + 159860 -6250.2471 -6254.6708 4.4236535 3696.5106 631.02869 -10582.21 0 212.0063 0.00018488054 0.00016396035 + 159870 -6250.0345 -6254.5906 4.556156 3698.0959 629.74835 -10582.435 0 218.35656 3.1652613e-05 8.4390645e-06 + 159880 -6249.7917 -6254.479 4.6872911 3701.5757 628.46768 -10584.522 0 224.64129 -0.00015364992 -0.00018295497 + 159890 -6249.5655 -6254.2694 4.7039213 3706.1939 627.49766 -10587.961 0 225.4383 -0.00033163094 -0.00036538932 + 159900 -6249.3864 -6253.9709 4.5844807 3711.0211 627.02784 -10592.02 0 219.71404 -0.00046914655 -0.0005023983 + 159910 -6249.2345 -6253.705 4.4705192 3715.0799 627.10228 -10595.887 0 214.25236 -0.00053975527 -0.0005696724 + 159920 -6249.0574 -6253.6285 4.571094 3717.5538 627.66167 -10598.844 0 219.07247 -0.00052648803 -0.00055533303 + 159930 -6248.8225 -6253.8009 4.9783878 3718.0075 628.61322 -10600.422 0 238.59228 -0.00042658802 -0.00045888012 + 159940 -6248.5495 -6254.1259 5.5763791 3716.4882 629.8797 -10600.494 0 267.25137 -0.00025282483 -0.00028979722 + 159950 -6248.2878 -6254.4244 6.136592 3713.459 631.39958 -10599.283 0 294.09992 -2.8686209e-05 -6.6276999e-05 + 159960 -6248.0618 -6254.569 6.5072125 3709.6505 633.08453 -10597.304 0 311.86213 0.000218053 0.00018507965 + 159970 -6247.8431 -6254.5528 6.709656 3705.9413 634.76615 -10595.26 0 321.56436 0.00045642697 0.0004282683 + 159980 -6247.5812 -6254.4388 6.8576076 3703.2798 636.17388 -10593.892 0 328.65503 0.00064777976 0.0006178057 + 159990 -6247.2631 -6254.2576 6.994481 3702.5565 636.97434 -10593.788 0 335.21477 0.00074440459 0.00070414282 + 160000 -6246.942 -6253.9596 7.0175904 3704.352 636.87264 -10595.184 0 336.32231 0.00070068487 0.00064753695 + 160010 -6246.7023 -6253.4742 6.7718996 3708.6054 635.73724 -10597.817 0 324.54743 0.00049635032 0.00043710541 + 160020 -6246.5858 -6252.8254 6.2395536 3714.3819 633.68693 -10600.894 0 299.03442 0.00015898281 0.00010520947 + 160030 -6246.5447 -6252.1892 5.6445514 3719.9615 631.0944 -10603.245 0 270.51857 -0.00023182663 -0.00027336095 + 160040 -6246.4712 -6251.8126 5.3414153 3723.3435 628.50516 -10603.661 0 255.99059 -0.00056705036 -0.0006005066 + 160050 -6246.2836 -6251.8374 5.5537767 3722.9945 626.50353 -10601.335 0 266.16814 -0.00074798986 -0.00078500224 + 160060 -6245.9929 -6252.1863 6.1933719 3718.4715 625.55991 -10596.218 0 296.82113 -0.00072198997 -0.00077130981 + 160070 -6245.6893 -6252.6285 6.9392353 3710.6054 625.888 -10589.122 0 332.56709 -0.00049713981 -0.00055705117 + 160080 -6245.4577 -6252.9712 7.5134446 3701.2136 627.35241 -10581.537 0 360.08642 -0.00013424602 -0.00019504133 + 160090 -6245.3049 -6253.1913 7.88641 3692.5736 629.47825 -10575.243 0 377.96102 0.00027306378 0.00021940422 + 160100 -6245.1722 -6253.3896 8.217454 3686.9029 631.58576 -10571.878 0 393.82651 0.00061948739 0.00057242861 + 160110 -6245.0147 -6253.6379 8.6232808 3685.899 633.01331 -10572.55 0 413.276 0.00080943321 0.00076201293 + 160120 -6244.8572 -6253.8833 9.0260378 3690.2946 633.34686 -10577.525 0 432.57837 0.00078211662 0.00072868422 + 160130 -6244.7774 -6253.9835 9.2061106 3699.5039 632.57268 -10586.06 0 441.20847 0.00053642907 0.00047824302 + 160140 -6244.8398 -6253.8189 8.9791055 3711.5734 631.09651 -10596.489 0 430.32912 0.00014226088 8.6586486e-05 + 160150 -6245.0406 -6253.3842 8.3435704 3723.5977 629.61254 -10606.594 0 399.87071 -0.0002739912 -0.00031989091 + 160160 -6245.3048 -6252.8043 7.4995106 3732.5363 628.85925 -10614.2 0 359.41863 -0.00056958244 -0.00060473247 + 160170 -6245.5373 -6252.2687 6.7313645 3736.1586 629.34927 -10617.777 0 322.60475 -0.00063647869 -0.00066793468 + 160180 -6245.691 -6251.9258 6.2348348 3733.7644 631.17489 -10616.865 0 298.80827 -0.00044183804 -0.00048011123 + 160190 -6245.7997 -6251.8099 6.0101201 3726.3972 633.95666 -10612.164 0 288.03868 -4.097055e-05 -9.2020376e-05 + 160200 -6245.952 -6251.8592 5.907173 3716.4508 636.94655 -10605.257 0 283.10487 0.00044239371 0.00038241056 + 160210 -6246.2189 -6252.0108 5.7918588 3706.8212 639.2506 -10598.083 0 277.57837 0.00086037053 0.00080273412 + 160220 -6246.5971 -6252.2815 5.6844319 3699.9623 640.10618 -10592.35 0 272.42987 0.0010912162 0.0010459651 + 160230 -6247.0185 -6252.7481 5.7296278 3697.2341 639.1287 -10589.111 0 274.59591 0.0010750662 0.0010432733 + 160240 -6247.418 -6253.4394 6.0213641 3698.7277 636.44138 -10588.608 0 288.57755 0.00082378124 0.00079739005 + 160250 -6247.7912 -6254.2535 6.4623028 3703.4756 632.63784 -10590.367 0 309.70981 0.00040791593 0.0003765786 + 160260 -6248.1881 -6254.9891 6.8010162 3709.8433 628.59397 -10593.426 0 325.94286 -6.8254548e-05 -0.0001098865 + 160270 -6248.6573 -6255.4584 6.8011292 3715.9738 625.20615 -10596.638 0 325.94827 -0.00049444885 -0.00054442765 + 160280 -6249.1968 -6255.5812 6.3844098 3720.2364 623.15129 -10598.969 0 305.97674 -0.00077977162 -0.00083161749 + 160290 -6249.7511 -6255.406 5.6548421 3721.6013 622.73897 -10599.746 0 271.01176 -0.00087168727 -0.00091900389 + 160300 -6250.2457 -6255.0713 4.8256055 3719.8473 623.88202 -10598.801 0 231.27009 -0.00076486228 -0.00080489354 + 160310 -6250.6264 -6254.735 4.1085864 3715.5715 626.17216 -10596.479 0 196.90651 -0.00049897389 -0.00053343166 + 160320 -6250.8837 -6254.5012 3.6174481 3710.0256 629.02035 -10593.547 0 173.36841 -0.00014725415 -0.00018003238 + 160330 -6251.0487 -6254.3864 3.3376224 3704.8009 631.81233 -10591 0 159.95759 0.00020225575 0.00016872027 + 160340 -6251.1654 -6254.3568 3.1914307 3701.4006 634.03858 -10589.796 0 152.95126 0.00046990069 0.00043628961 + 160350 -6251.256 -6254.3999 3.1438624 3700.8204 635.37739 -10590.598 0 150.67153 0.00060535006 0.00057349728 + 160360 -6251.3108 -6254.5515 3.240723 3703.3052 635.72827 -10593.585 0 155.31363 0.00059751243 0.0005671297 + 160370 -6251.3101 -6254.8456 3.5355007 3708.3613 635.20105 -10598.408 0 169.44103 0.00046985756 0.00043794125 + 160380 -6251.2575 -6255.244 3.9865366 3714.9496 634.06657 -10604.26 0 191.0572 0.00026667589 0.00023058682 + 160390 -6251.1853 -6255.631 4.4457007 3721.7233 632.6782 -10610.033 0 213.06292 3.9683199e-05 4.6420807e-07 + 160400 -6251.1256 -6255.8845 4.7588085 3727.2526 631.38184 -10614.519 0 228.0688 -0.00016060314 -0.00019865871 + 160410 -6251.0791 -6255.9482 4.8690811 3730.2767 630.43869 -10616.664 0 233.35369 -0.00029161811 -0.00032487303 + 160420 -6251.0181 -6255.8346 4.8165666 3730.0015 629.98017 -10615.816 0 230.8369 -0.00032722891 -0.00035583387 + 160430 -6250.9184 -6255.5758 4.6574368 3726.346 629.99929 -10611.921 0 223.21051 -0.000265464 -0.00029266627 + 160440 -6250.7815 -6255.1945 4.4130231 3719.9969 630.37239 -10605.564 0 211.49683 -0.00012922079 -0.00015828792 + 160450 -6250.6267 -6254.7231 4.0964093 3712.2368 630.90316 -10597.863 0 196.32292 4.2109493e-05 9.9188695e-06 + 160460 -6250.4703 -6254.2325 3.7622422 3704.6344 631.37867 -10590.246 0 180.30776 0.00020518978 0.00017024631 + 160470 -6250.3135 -6253.8277 3.5141423 3698.7135 631.62025 -10584.161 0 168.41742 0.00032274307 0.00028556282 + 160480 -6250.1474 -6253.6095 3.4621306 3695.666 631.51305 -10580.789 0 165.92472 0.00036831599 0.00032881759 + 160490 -6249.9639 -6253.63 3.6661328 3696.1319 631.0143 -10580.776 0 175.70166 0.00032796301 0.00028612038 + 160500 -6249.7647 -6253.8707 4.1059668 3700.0578 630.15545 -10584.084 0 196.78097 0.00020249477 0.00015954202 + 160510 -6249.5579 -6254.2559 4.6980446 3706.6582 629.05133 -10589.965 0 225.15666 1.1316666e-05 -3.0092462e-05 + 160520 -6249.3452 -6254.6916 5.3464392 3714.5176 627.91092 -10597.12 0 256.23137 -0.00020530169 -0.00024294022 + 160530 -6249.1129 -6255.0969 5.984061 3721.8678 627.02927 -10603.994 0 286.78978 -0.00039069419 -0.00042559288 + 160540 -6248.844 -6255.4021 6.5580567 3727.0242 626.74203 -10609.168 0 314.29887 -0.00048565489 -0.00052299693 + 160550 -6248.5489 -6255.5201 6.9711751 3728.8667 627.33925 -10611.726 0 334.09782 -0.00044802936 -0.00049391143 + 160560 -6248.2804 -6255.3483 7.0679458 3727.1705 628.95448 -10611.473 0 338.73562 -0.00026870637 -0.00032467303 + 160570 -6248.1019 -6254.8362 6.7342475 3722.6237 631.46777 -10608.928 0 322.74292 2.4445028e-05 -3.628017e-05 + 160580 -6248.0327 -6254.0678 6.0350439 3716.5547 634.47679 -10605.099 0 289.23317 0.00037494588 0.0003178617 + 160590 -6248.0288 -6253.259 5.2302645 3710.547 637.37211 -10601.178 0 250.66362 0.00071138939 0.00066299703 + 160600 -6248.0194 -6252.6496 4.6301565 3706.0957 639.49832 -10598.244 0 221.90308 0.00096089604 0.00091983719 + 160610 -6247.9557 -6252.3797 4.4239983 3704.3255 640.33545 -10597.041 0 212.02282 0.0010625808 0.001023227 + 160620 -6247.8294 -6252.4451 4.615668 3705.7451 639.63531 -10597.826 0 221.20871 0.00098208576 0.0009389489 + 160630 -6247.6648 -6252.7359 5.071065 3710.0771 637.48116 -10600.294 0 243.03389 0.00072403871 0.0006750779 + 160640 -6247.4991 -6253.1105 5.6114089 3716.245 634.27002 -10603.626 0 268.9302 0.00033687606 0.00028433396 + 160650 -6247.3598 -6253.468 6.1081616 3722.5689 630.62844 -10606.665 0 292.73738 -9.3642619e-05 -0.00014507311 + 160660 -6247.2445 -6253.7915 6.54704 3727.1593 627.27904 -10608.23 0 313.77089 -0.00046277907 -0.00050980321 + 160670 -6247.1221 -6254.1286 7.0064819 3728.4532 624.8841 -10607.466 0 335.78993 -0.00067473419 -0.00071868282 + 160680 -6246.9683 -6254.5056 7.5372906 3725.7505 623.89747 -10604.154 0 361.22926 -0.0006732072 -0.00071922468 + 160690 -6246.8047 -6254.8494 8.0447152 3719.5296 624.4533 -10598.832 0 385.54789 -0.00046243445 -0.00051452999 + 160700 -6246.6948 -6255.0022 8.3074534 3711.3558 626.3204 -10592.678 0 398.13978 -0.00010739807 -0.00016393498 + 160710 -6246.6917 -6254.8303 8.1385935 3703.3928 628.95076 -10587.174 0 390.04707 0.00028837174 0.00023399739 + 160720 -6246.7857 -6254.3298 7.5440451 3697.7342 631.6306 -10583.695 0 361.55297 0.00061720441 0.00057095645 + 160730 -6246.9049 -6253.6425 6.7375839 3695.8283 633.69487 -10583.166 0 322.90282 0.00079905393 0.00076069647 + 160740 -6246.9681 -6252.9766 6.0084795 3698.1674 634.72778 -10585.872 0 287.96005 0.00080025299 0.00076264067 + 160750 -6246.9418 -6252.4968 5.5549912 3704.2588 634.67503 -10591.431 0 266.22635 0.00063711775 0.00059096416 + 160760 -6246.8595 -6252.2614 5.4019002 3712.795 633.83298 -10598.889 0 258.88937 0.00036780544 0.00030840045 + 160770 -6246.7943 -6252.235 5.4406098 3721.943 632.72582 -10606.904 0 260.74455 7.6580272e-05 7.7285179e-06 + 160780 -6246.8079 -6252.3558 5.5479324 3729.7073 631.91522 -10613.978 0 265.88805 -0.00014661667 -0.00021429009 + 160790 -6246.9037 -6252.6047 5.7010076 3734.343 631.8058 -10618.753 0 273.22427 -0.00022855227 -0.00028438301 + 160800 -6247.0175 -6253.0189 6.0014113 3734.7817 632.51162 -10620.312 0 287.6213 -0.00013360363 -0.00017462749 + 160810 -6247.0611 -6253.6256 6.5644618 3730.9908 633.82777 -10618.444 0 314.60584 0.0001211965 8.7455097e-05 + 160820 -6246.9957 -6254.3412 7.3454608 3724.1098 635.30812 -10613.759 0 352.0357 0.0004634497 0.00042418762 + 160830 -6246.8763 -6254.9463 8.0700557 3716.1922 636.41157 -10607.55 0 386.76235 0.00078217361 0.00072894769 + 160840 -6246.8201 -6255.1899 8.3697671 3709.5374 636.66893 -10601.396 0 401.1262 0.00096473204 0.00089973854 + 160850 -6246.9191 -6254.952 8.0329389 3705.8644 635.83129 -10596.648 0 384.98351 0.0009412751 0.00087524384 + 160860 -6247.1703 -6254.3344 7.1641119 3705.7201 633.9631 -10594.018 0 343.34444 0.00071436164 0.00065818707 + 160870 -6247.486 -6253.6073 6.1212948 3708.4072 631.44363 -10593.458 0 293.36679 0.00035678251 0.00031388385 + 160880 -6247.7674 -6253.0553 5.2878685 3712.4232 628.86409 -10594.343 0 253.42433 -2.0486807e-05 -5.5387801e-05 + 160890 -6247.9744 -6252.8328 4.8583986 3716.1409 626.85058 -10595.824 0 232.84172 -0.00031134535 -0.00034699944 + 160900 -6248.1388 -6252.921 4.7822172 3718.3944 625.87361 -10597.189 0 229.19068 -0.00044798695 -0.00048979898 + 160910 -6248.3242 -6253.1948 4.8705563 3718.7673 626.10759 -10598.07 0 233.42439 -0.00041473246 -0.00046160048 + 160920 -6248.5728 -6253.5329 4.9601172 3717.5643 627.38808 -10598.485 0 237.71665 -0.0002434908 -0.00029000977 + 160930 -6248.8781 -6253.8878 5.0096959 3715.571 629.28407 -10598.743 0 240.09274 2.8848269e-06 -3.8624208e-05 + 160940 -6249.2007 -6254.2758 5.0751429 3713.7377 631.26057 -10599.274 0 243.22933 0.00025241007 0.00021627917 + 160950 -6249.5054 -6254.7135 5.2080862 3712.8885 632.86647 -10600.468 0 249.60071 0.0004447773 0.00041058601 + 160960 -6249.7868 -6255.1632 5.3764289 3713.5041 633.87087 -10602.538 0 257.66864 0.00054611853 0.00051004512 + 160970 -6250.0642 -6255.532 5.4678499 3715.6041 634.2964 -10605.432 0 262.05005 0.00055423659 0.0005152642 + 160980 -6250.357 -6255.7176 5.360608 3718.755 634.34709 -10608.82 0 256.91042 0.00049343478 0.00045399102 + 160990 -6250.6622 -6255.6655 5.0033394 3722.2086 634.27476 -10612.149 0 239.7881 0.00040163343 0.00036562609 + 161000 -6250.9497 -6255.405 4.4553138 3725.1288 634.24953 -10614.783 0 213.52363 0.00031521252 0.0002849958 + 161010 -6251.1769 -6255.0442 3.8673755 3726.8366 634.2911 -10616.172 0 185.34633 0.00025706541 0.0002312749 + 161020 -6251.3135 -6254.722 3.4084943 3726.9971 634.28387 -10616.003 0 163.35417 0.00023108 0.00020493079 + 161030 -6251.3632 -6254.5376 3.1743522 3725.6946 634.05857 -10614.291 0 152.13277 0.00022409746 0.00019246993 + 161040 -6251.3656 -6254.5085 3.1428551 3723.3549 633.49442 -10611.358 0 150.62325 0.00021502219 0.00017643626 + 161050 -6251.3712 -6254.5902 3.2189661 3720.5398 632.59172 -10607.722 0 154.27092 0.0001881852 0.00014637812 + 161060 -6251.4052 -6254.7384 3.3332049 3717.72 631.48481 -10603.943 0 159.74588 0.00014428132 0.00010563706 + 161070 -6251.448 -6254.9489 3.5009822 3715.1654 630.39577 -10600.51 0 167.78671 0.00010135496 7.008004e-05 + 161080 -6251.4507 -6255.2355 3.7847827 3713.0102 629.55337 -10597.799 0 181.38803 8.3698021e-05 5.8836022e-05 + 161090 -6251.3719 -6255.5725 4.2005876 3711.4116 629.11074 -10596.095 0 201.31573 0.00010522026 8.1874896e-05 + 161100 -6251.2037 -6255.8714 4.667721 3710.6465 629.09245 -10595.61 0 223.70338 0.00015847743 0.00013165494 + 161110 -6250.968 -6256.0201 5.0520998 3711.0545 629.39211 -10596.467 0 242.12497 0.00021669757 0.00018415439 + 161120 -6250.6934 -6255.9473 5.2538579 3712.8638 629.82511 -10598.636 0 251.79435 0.00024716085 0.00020941784 + 161130 -6250.3989 -6255.6533 5.2544383 3716.0113 630.21775 -10601.882 0 251.82217 0.00022774174 0.00018653654 + 161140 -6250.0952 -6255.1922 5.0970137 3720.0501 630.49343 -10605.736 0 244.2775 0.00015857119 0.00011591157 + 161150 -6249.7916 -6254.6388 4.847185 3724.1772 630.71533 -10609.531 0 232.3043 6.5203717e-05 2.3421264e-05 + 161160 -6249.493 -6254.0769 4.5838417 3727.3861 631.06531 -10612.528 0 219.68341 -6.8147454e-06 -4.5350442e-05 + 161170 -6249.1877 -6253.6009 4.4131705 3728.7352 631.76635 -10614.102 0 211.50389 -5.2910928e-06 -3.968529e-05 + 161180 -6248.8435 -6253.3025 4.4589412 3727.6843 632.97416 -10613.961 0 213.69748 0.00010883225 7.6276398e-05 + 161190 -6248.4252 -6253.2293 4.8040844 3724.3879 634.67193 -10612.289 0 230.23868 0.00034012278 0.00030402286 + 161200 -6247.9274 -6253.3429 5.4154603 3719.7935 636.60749 -10609.744 0 259.53924 0.00064516218 0.00060000064 + 161210 -6247.3988 -6253.5198 6.1210218 3715.4305 638.3117 -10607.262 0 293.35371 0.00093751706 0.00088195013 + 161220 -6246.9261 -6253.6167 6.6905806 3712.8908 639.21951 -10605.727 0 320.65016 0.0011155685 0.0010546547 + 161230 -6246.5759 -6253.5687 6.9927851 3713.1787 638.86997 -10605.617 0 335.1335 0.0011044806 0.0010469047 + 161240 -6246.3406 -6253.4468 7.1062783 3716.236 637.11237 -10606.795 0 340.57273 0.0008915632 0.00084284692 + 161250 -6246.1477 -6253.4047 7.2569469 3720.9215 634.22777 -10608.554 0 347.79362 0.00053497865 0.00049233954 + 161260 -6245.9343 -6253.5314 7.5970839 3725.4741 630.90117 -10609.907 0 364.09489 0.00014153158 9.605796e-05 + 161270 -6245.7162 -6253.7379 8.021761 3728.203 628.03053 -10609.971 0 384.4478 -0.00017273794 -0.00022744981 + 161280 -6245.5778 -6253.8038 8.2259893 3728.0486 626.42192 -10608.274 0 394.23557 -0.00031980309 -0.00038065326 + 161290 -6245.5828 -6253.567 7.9842003 3724.834 626.48466 -10604.886 0 382.64768 -0.00026289321 -0.00031955742 + 161300 -6245.6974 -6253.0831 7.3856532 3719.2633 628.06799 -10600.414 0 353.96194 -2.4117734e-05 -6.893747e-05 + 161310 -6245.8122 -6252.6008 6.788636 3712.778 630.52391 -10595.903 0 325.34953 0.00032154675 0.0002858061 + 161320 -6245.8339 -6252.3845 6.5506615 3707.2669 632.9652 -10592.617 0 313.94446 0.00066570396 0.00062738045 + 161330 -6245.7582 -6252.5371 6.7789548 3704.579 634.5997 -10591.716 0 324.88555 0.00089792238 0.00084554051 + 161340 -6245.675 -6252.9401 7.2651234 3705.9137 635.01009 -10593.864 0 348.18548 0.00094202577 0.00087393735 + 161350 -6245.7101 -6253.3368 7.6267859 3711.3002 634.28178 -10598.919 0 365.51837 0.00078624824 0.00071396168 + 161360 -6245.9291 -6253.5184 7.5893225 3719.4033 632.93363 -10605.855 0 363.72292 0.00049493689 0.00043632344 + 161370 -6246.2649 -6253.4928 7.2279356 3727.8376 631.68212 -10613.013 0 346.40323 0.00019069842 0.00015578471 + 161380 -6246.5488 -6253.4761 6.9273542 3734.0077 631.15015 -10618.634 0 331.99768 5.4663089e-06 -1.4272564e-05 + 161390 -6246.6511 -6253.6685 7.017492 3736.1817 631.6505 -10621.501 0 336.31759 1.9294027e-05 -8.0189684e-06 + 161400 -6246.6084 -6254.0197 7.4113111 3734.2248 633.10806 -10621.353 0 355.19161 0.00022176851 0.00016816568 + 161410 -6246.6024 -6254.2475 7.645123 3729.5085 635.10776 -10618.864 0 366.39719 0.00052197624 0.00044356972 + 161420 -6246.7955 -6254.1095 7.3139879 3724.0676 637.03374 -10615.211 0 350.52734 0.0008000144 0.00071712899 + 161430 -6247.1864 -6253.6415 6.4550651 3719.6085 638.26869 -10611.519 0 309.36294 0.00096405604 0.00089878804 + 161440 -6247.6269 -6253.1315 5.5045767 3716.973 638.39947 -10608.504 0 263.8102 0.00097919433 0.00093913113 + 161450 -6247.958 -6252.8897 4.9316516 3716.1866 637.35032 -10606.427 0 236.35242 0.0008625867 0.00083820883 + 161460 -6248.1187 -6253.045 4.9263212 3716.8037 635.38967 -10605.238 0 236.09696 0.0006620407 0.00063626557 + 161470 -6248.1572 -6253.5072 5.350041 3718.2336 633.01884 -10604.76 0 256.40398 0.00043471122 0.00039476723 + 161480 -6248.1805 -6254.0612 5.8807281 3719.9287 630.79855 -10604.788 0 281.83749 0.00023154734 0.00017569799 + 161490 -6248.2893 -6254.4951 6.2058419 3721.4552 629.17955 -10605.13 0 297.41877 8.7725973e-05 2.4856768e-05 + 161500 -6248.524 -6254.7052 6.1811469 3722.4881 628.38793 -10605.581 0 296.23524 1.9607063e-05 -3.7162096e-05 + 161510 -6248.8404 -6254.7403 5.8998972 3722.7941 628.39612 -10605.93 0 282.75618 2.7181397e-05 -1.5154675e-05 + 161520 -6249.1415 -6254.7506 5.6091176 3722.2834 628.98581 -10606.02 0 268.82039 9.7618556e-05 6.7460966e-05 + 161530 -6249.3532 -6254.851 5.4977479 3721.1304 629.87229 -10605.854 0 263.48293 0.00020704982 0.00017861668 + 161540 -6249.4841 -6255.0101 5.5260735 3719.8192 630.82732 -10605.657 0 264.84045 0.00032373968 0.00028746212 + 161550 -6249.6113 -6255.0733 5.4619948 3718.983 631.74135 -10605.798 0 261.76944 0.00041723091 0.00037238658 + 161560 -6249.8069 -6254.9053 5.0984706 3719.0938 632.60799 -10606.607 0 244.34732 0.00047130552 0.00042596764 + 161570 -6250.0717 -6254.524 4.4522775 3720.2246 633.45959 -10608.208 0 213.37812 0.00049144565 0.00045499308 + 161580 -6250.3384 -6254.1089 3.7704993 3722.0599 634.29958 -10610.468 0 180.70348 0.00049910045 0.00047427296 + 161590 -6250.5309 -6253.8876 3.3567733 3724.1261 635.06525 -10613.079 0 160.87541 0.00051521481 0.00049617073 + 161600 -6250.6236 -6253.9963 3.3726996 3726.0565 635.63341 -10615.686 0 161.63869 0.0005444509 0.00052151031 + 161610 -6250.6568 -6254.408 3.7511136 3727.7096 635.86455 -10617.982 0 179.77441 0.0005711379 0.00053796008 + 161620 -6250.7085 -6254.9605 4.2519799 3729.0905 635.66642 -10619.717 0 203.77873 0.00056971718 0.00052779923 + 161630 -6250.8436 -6255.4556 4.6119948 3730.1555 635.04594 -10620.657 0 221.03267 0.0005230886 0.00048063757 + 161640 -6251.0698 -6255.7674 4.6975455 3730.6596 634.12005 -10620.547 0 225.13274 0.00043689494 0.00040273186 + 161650 -6251.3311 -6255.8879 4.5568565 3730.1938 633.081 -10619.163 0 218.39013 0.00033948972 0.00031642586 + 161660 -6251.551 -6255.883 4.3319944 3728.4305 632.13732 -10616.451 0 207.61348 0.00026693511 0.00024997636 + 161670 -6251.6891 -6255.8113 4.1221747 3725.4145 631.45581 -10612.682 0 197.55774 0.00024362074 0.00022419981 + 161680 -6251.759 -6255.6897 3.9306939 3721.6752 631.11761 -10608.483 0 188.38091 0.00027116991 0.00024322214 + 161690 -6251.8038 -6255.5189 3.715046 3718.0848 631.09611 -10604.7 0 178.04585 0.00032982517 0.00029292728 + 161700 -6251.8618 -6255.3162 3.454471 3715.5611 631.26703 -10602.144 0 165.55763 0.00038814387 0.00034669849 + 161710 -6251.9487 -6255.1212 3.1725673 3714.767 631.45404 -10601.342 0 152.04723 0.00041546708 0.00037585635 + 161720 -6252.0557 -6254.9827 2.9269363 3715.9056 631.49726 -10602.386 0 140.27521 0.00039355118 0.00036109408 + 161730 -6252.1523 -6254.9499 2.7976266 3718.6576 631.31889 -10604.926 0 134.07796 0.00032429967 0.00030069359 + 161740 -6252.1929 -6255.0641 2.8712355 3722.2815 630.96149 -10608.307 0 137.60572 0.00023026471 0.00021213071 + 161750 -6252.136 -6255.3298 3.1938364 3725.8593 630.58559 -10611.775 0 153.06656 0.00014638645 0.00012629584 + 161760 -6251.9726 -6255.6754 3.7028145 3728.6005 630.42525 -10614.701 0 177.45965 0.00010614068 7.6890304e-05 + 161770 -6251.7412 -6255.9527 4.2114655 3730.0564 630.70781 -10616.717 0 201.83706 0.00012956336 8.9523876e-05 + 161780 -6251.5057 -6256.0134 4.5076989 3730.1492 631.55795 -10617.72 0 216.03422 0.0002193217 0.0001743043 + 161790 -6251.3048 -6255.8152 4.5104078 3729.0654 632.92424 -10617.805 0 216.16405 0.00036388143 0.00032309653 + 161800 -6251.1197 -6255.4601 4.3403432 3727.1585 634.56806 -10617.187 0 208.0136 0.00054142603 0.00051051438 + 161810 -6250.8882 -6255.1227 4.2345007 3724.929 636.12595 -10616.178 0 202.94103 0.00072085561 0.00069766777 + 161820 -6250.5504 -6254.9283 4.3778703 3723.0156 637.21833 -10615.162 0 209.81211 0.00086283693 0.00083896298 + 161830 -6250.0943 -6254.8706 4.7762585 3722.0897 637.56247 -10614.523 0 228.90511 0.00092609285 0.00089273529 + 161840 -6249.5745 -6254.8165 5.2420261 3722.6272 637.05607 -10614.5 0 251.2273 0.00088046317 0.00083485482 + 161850 -6249.0904 -6254.5956 5.5051728 3724.6384 635.80936 -10615.043 0 263.83877 0.00072292383 0.00067118367 + 161860 -6248.7227 -6254.1328 5.4100448 3727.5001 634.11392 -10615.747 0 259.2797 0.00048858225 0.00044215458 + 161870 -6248.4641 -6253.5441 5.0800727 3730.0441 632.35603 -10615.944 0 243.46559 0.00024731255 0.00021393798 + 161880 -6248.2124 -6253.1023 4.8898797 3730.9727 630.90914 -10614.984 0 234.35047 8.1187597e-05 5.6851936e-05 + 161890 -6247.8528 -6253.0508 5.1980849 3729.4774 630.04607 -10612.574 0 249.12139 4.9330847e-05 1.9362869e-05 + 161900 -6247.3678 -6253.3993 6.0314777 3725.7233 629.88643 -10609.009 0 289.06225 0.00015875893 0.00010946443 + 161910 -6246.8732 -6253.8921 7.0189102 3720.8457 630.37212 -10605.11 0 336.38556 0.00036054845 0.00029205666 + 161920 -6246.5291 -6254.1987 7.669618 3716.418 631.27501 -10601.892 0 367.57113 0.00057543114 0.00050347866 + 161930 -6246.4001 -6254.1536 7.7535065 3713.7419 632.25863 -10600.154 0 371.59154 0.00073227955 0.000676341 + 161940 -6246.3987 -6253.8437 7.4450257 3713.4041 632.99409 -10600.242 0 356.80741 0.00079521259 0.00076303948 + 161950 -6246.3593 -6253.4975 7.1382323 3715.2766 633.28453 -10602.059 0 342.10414 0.0007669216 0.00074811069 + 161960 -6246.1675 -6253.2941 7.1266361 3718.8073 633.13874 -10605.24 0 341.54839 0.00067431184 0.00064722621 + 161970 -6245.8439 -6253.2382 7.3942938 3723.3208 632.76443 -10609.323 0 354.37605 0.00055133408 0.00049803553 + 161980 -6245.5333 -6253.1734 7.6400148 3728.1432 632.48913 -10613.806 0 366.15238 0.00043016346 0.00034954173 + 161990 -6245.4072 -6252.9244 7.5171899 3732.5463 632.63546 -10618.106 0 360.26592 0.00034243441 0.00025260657 + 162000 -6245.532 -6252.4815 6.9495077 3735.6589 633.38888 -10621.529 0 333.0594 0.00032302858 0.00024976151 + 162010 -6245.8017 -6252.0839 6.2821905 3736.5699 634.70824 -10623.362 0 301.07782 0.00040474122 0.0003625186 + 162020 -6246.0051 -6252.0864 6.0812612 3734.7375 636.32277 -10623.147 0 291.44816 0.00059861691 0.00057884934 + 162030 -6245.9884 -6252.67 6.6816298 3730.5057 637.8171 -10620.993 0 320.22119 0.00087078679 0.00084794567 + 162040 -6245.7834 -6253.6481 7.8646535 3725.2712 638.75914 -10617.678 0 376.91832 0.0011379641 0.0010894234 + 162050 -6245.5931 -6254.5635 8.9703698 3720.9922 638.82213 -10614.378 0 429.91045 0.0012953957 0.0012186058 + 162060 -6245.6375 -6254.9992 9.3616588 3719.2542 637.87914 -10612.133 0 448.66322 0.0012667813 0.0011801624 + 162070 -6245.9842 -6254.8399 8.8557011 3720.4775 636.05698 -10611.374 0 424.41489 0.0010461277 0.00097424368 + 162080 -6246.5061 -6254.3044 7.7982598 3723.7548 633.72352 -10611.783 0 373.73637 0.00070417823 0.00065975889 + 162090 -6246.9914 -6253.7647 6.7733264 3727.3734 631.39357 -10612.532 0 324.61581 0.00035528363 0.00033123997 + 162100 -6247.2991 -6253.4955 6.1964393 3729.6828 629.58136 -10612.76 0 296.96814 0.0001051777 8.1107739e-05 + 162110 -6247.4445 -6253.5093 6.064831 3729.8257 628.65747 -10611.992 0 290.66073 8.7132532e-06 -3.3437682e-05 + 162120 -6247.5684 -6253.5825 6.0140782 3727.976 628.75487 -10610.313 0 288.22837 5.7877941e-05 -4.3706145e-06 + 162130 -6247.8147 -6253.4674 5.6526633 3725.0225 629.74229 -10608.232 0 270.90734 0.00020213792 0.00013498489 + 162140 -6248.2039 -6253.1373 4.9334151 3721.98 631.26933 -10606.387 0 236.43693 0.00038361225 0.00033082959 + 162150 -6248.6176 -6252.8458 4.2282297 3719.5749 632.88025 -10605.301 0 202.64049 0.00056108991 0.00052955989 + 162160 -6248.9117 -6252.9212 4.0095423 3718.2432 634.16584 -10605.33 0 192.15976 0.00071017243 0.0006895162 + 162170 -6249.044 -6253.4838 4.4398933 3718.3389 634.892 -10606.715 0 212.7846 0.0008112978 0.00078429465 + 162180 -6249.1008 -6254.3556 5.2548252 3720.1705 635.0481 -10609.574 0 251.84071 0.00084611125 0.00080342859 + 162190 -6249.217 -6255.2112 5.9941825 3723.7698 634.80512 -10613.786 0 287.27486 0.00080742259 0.00075365698 + 162200 -6249.474 -6255.7932 6.3191838 3728.6434 634.41825 -10618.855 0 302.85074 0.00071019753 0.00065840995 + 162210 -6249.8527 -6256.0199 6.1671536 3733.7782 634.12081 -10623.919 0 295.5646 0.00059038943 0.00055178071 + 162220 -6250.2596 -6255.9631 5.7034343 3737.9379 634.04648 -10627.947 0 273.34057 0.00049068842 0.00046729964 + 162230 -6250.5931 -6255.7613 5.1682158 3740.0941 634.20237 -10630.058 0 247.6899 0.00044234882 0.00042650357 + 162240 -6250.803 -6255.5296 4.7265771 3739.7861 634.4957 -10629.811 0 226.52409 0.00045324424 0.00043299263 + 162250 -6250.9137 -6255.3075 4.3937389 3737.2535 634.79315 -10627.354 0 210.57262 0.00050734626 0.00047430524 + 162260 -6251.0004 -6255.0707 4.0703035 3733.2877 634.97892 -10623.337 0 195.07178 0.00057499374 0.00052972793 + 162270 -6251.1333 -6254.7974 3.6641311 3728.882 634.98562 -10618.665 0 175.60572 0.00062847517 0.00057974645 + 162280 -6251.3294 -6254.5319 3.202534 3724.8745 634.79594 -10614.202 0 153.4834 0.00065434768 0.0006127553 + 162290 -6251.5483 -6254.3809 2.8326343 3721.7761 634.42913 -10610.586 0 135.75573 0.00065535917 0.00062633197 + 162300 -6251.7301 -6254.4416 2.7115417 3719.8251 633.9242 -10608.191 0 129.95229 0.00064193825 0.00062318083 + 162310 -6251.8374 -6254.7307 2.8933119 3719.1365 633.32265 -10607.19 0 138.66374 0.0006206093 0.00060476795 + 162320 -6251.871 -6255.1726 3.3016237 3719.7898 632.65466 -10607.617 0 158.23233 0.0005877367 0.00056720423 + 162330 -6251.8615 -6255.6415 3.7800157 3721.7983 631.93937 -10609.379 0 181.15956 0.00053212951 0.00050284395 + 162340 -6251.8513 -6256.0152 4.1638904 3724.9998 631.20508 -10612.22 0 199.55699 0.00044455361 0.00040752747 + 162350 -6251.8744 -6256.2161 4.3416778 3728.9465 630.51993 -10615.682 0 208.07756 0.00032896061 0.00028940072 + 162360 -6251.9382 -6256.2335 4.2953411 3732.8771 630.01198 -10619.123 0 205.85685 0.00020913007 0.00017347731 + 162370 -6252.0163 -6256.1201 4.1038485 3735.8415 629.86061 -10621.822 0 196.67945 0.00012569958 9.7876424e-05 + 162380 -6252.0613 -6255.9562 3.8949203 3736.9818 630.25352 -10623.192 0 186.66644 0.00012273649 0.00010184765 + 162390 -6252.0323 -6255.7978 3.7654538 3735.8729 631.31583 -10622.986 0 180.46167 0.00022864669 0.00020979669 + 162400 -6251.9177 -6255.6446 3.7268801 3732.7556 633.0288 -10621.429 0 178.61301 0.00044001585 0.00041765618 + 162410 -6251.7366 -6255.4545 3.7179892 3728.5344 635.16967 -10619.159 0 178.1869 0.00071626964 0.00068757961 + 162420 -6251.523 -6255.1916 3.6685867 3724.5279 637.31222 -10617.032 0 175.81926 0.0009881939 0.00095435409 + 162430 -6251.3057 -6254.8657 3.560031 3722.0699 638.91395 -10615.85 0 170.61666 0.0011776792 0.001142788 + 162440 -6251.092 -6254.5445 3.4525164 3722.0914 639.47543 -10616.111 0 165.46396 0.0012224945 0.0011909992 + 162450 -6250.8572 -6254.3383 3.4810228 3724.7983 638.71741 -10617.854 0 166.83015 0.0010983737 0.0010719136 + 162460 -6250.5468 -6254.3559 3.8090905 3729.5528 636.71004 -10620.619 0 182.55299 0.00083043895 0.00080560032 + 162470 -6250.108 -6254.6289 4.5209154 3735.0256 633.90395 -10623.558 0 216.66763 0.0004884826 0.0004579443 + 162480 -6249.5464 -6255.0431 5.4967802 3739.5767 631.03703 -10625.657 0 263.43655 0.00016695772 0.0001250828 + 162490 -6248.9538 -6255.3571 6.4032492 3741.7118 628.92219 -10625.991 0 306.87963 -4.2355434e-05 -9.3105163e-05 + 162500 -6248.4547 -6255.3422 6.8875265 3740.4606 628.17251 -10623.975 0 330.08891 -7.4875306e-05 -0.00012363293 + 162510 -6248.0982 -6254.9523 6.8541165 3735.6312 628.97292 -10619.556 0 328.48772 9.0205499e-05 5.4147063e-05 + 162520 -6247.8118 -6254.3629 6.5511397 3727.9747 631.00764 -10613.345 0 313.96737 0.00042070626 0.00039724194 + 162530 -6247.4735 -6253.8262 6.3527603 3719.2155 633.57626 -10606.618 0 304.45992 0.00083097882 0.00080706872 + 162540 -6247.0306 -6253.4732 6.4425681 3711.7759 635.83873 -10601.088 0 308.76401 0.0011976191 0.0011566862 + 162550 -6246.5517 -6253.2406 6.6889362 3708.0904 637.09203 -10598.423 0 320.57136 0.0013961922 0.0013313763 + 162560 -6246.1761 -6252.9677 6.7916082 3709.6917 636.99573 -10599.655 0 325.49197 0.0013498344 0.001270638 + 162570 -6246.006 -6252.5665 6.5604142 3716.4861 635.68119 -10604.734 0 314.41186 0.0010678654 0.00099507039 + 162580 -6246.0164 -6252.1441 6.1276934 3726.6095 633.7008 -10612.454 0 293.67345 0.0006523339 0.00060378979 + 162590 -6246.0492 -6251.9783 5.9291358 3737.0206 631.83113 -10620.83 0 284.15745 0.00026320971 0.00023972106 + 162600 -6245.9149 -6252.3185 6.4036289 3744.6487 630.81009 -10627.777 0 306.89783 5.3210848e-05 3.5892222e-05 + 162610 -6245.5447 -6253.1355 7.5907415 3747.5938 631.10049 -10631.83 0 363.79092 0.00010177456 6.5460147e-05 + 162620 -6245.0751 -6254.056 8.9809963 3745.7627 632.7371 -10632.556 0 430.41974 0.00038265657 0.00031631366 + 162630 -6244.7607 -6254.6008 9.8401385 3740.6124 635.29271 -10630.506 0 471.59465 0.00078387997 0.00070027878 + 162640 -6244.7625 -6254.5451 9.7826547 3734.2372 637.99957 -10626.782 0 468.8397 0.0011669528 0.0010916989 + 162650 -6245.0143 -6254.0662 9.0519373 3728.4481 640.02202 -10622.536 0 433.81962 0.0014262769 0.0013761459 + 162660 -6245.3091 -6253.5464 8.2373642 3724.3494 640.77804 -10618.674 0 394.78071 0.0015157046 0.0014865695 + 162670 -6245.4935 -6253.2438 7.7503733 3722.398 640.14931 -10615.791 0 371.44137 0.0014415656 0.0014151103 + 162680 -6245.5721 -6253.1326 7.5605216 3722.5976 638.47778 -10614.208 0 362.34262 0.001243391 0.0012037695 + 162690 -6245.6613 -6253.0072 7.3459134 3724.5862 636.37146 -10613.965 0 352.05739 0.0009781843 0.00092379331 + 162700 -6245.8676 -6252.7124 6.8448013 3727.6511 634.43242 -10614.796 0 328.04128 0.00070933503 0.00065194903 + 162710 -6246.1972 -6252.3073 6.1101731 3730.8217 633.03712 -10616.166 0 292.83378 0.00049521262 0.00044909176 + 162720 -6246.557 -6252.0525 5.4954483 3733.1187 632.25583 -10617.427 0 263.37272 0.00037570029 0.00034573609 + 162730 -6246.8344 -6252.2315 5.3970853 3733.8977 631.92308 -10618.052 0 258.65861 0.00036060482 0.00033843275 + 162740 -6246.9896 -6252.9316 5.9419503 3733.1145 631.79825 -10617.844 0 284.7716 0.00042674706 0.00039760319 + 162750 -6247.0961 -6253.9434 6.8473277 3731.3241 631.72223 -10616.99 0 328.16236 0.00052850987 0.00048346806 + 162760 -6247.2944 -6254.8695 7.575005 3729.3656 631.69277 -10615.928 0 363.03674 0.0006200758 0.00056378612 + 162770 -6247.681 -6255.3717 7.6906726 3727.907 631.83314 -10615.112 0 368.58018 0.00067875376 0.00062588683 + 162780 -6248.22 -6255.3722 7.1521643 3727.16 632.28838 -10614.821 0 342.77184 0.0007138687 0.00067704531 + 162790 -6248.7684 -6255.054 6.2856011 3726.9599 633.11707 -10615.131 0 301.24127 0.00075310416 0.00073296024 + 162800 -6249.1904 -6254.688 5.4976692 3727.1053 634.23499 -10616.028 0 263.47916 0.00081593631 0.00080154792 + 162810 -6249.4476 -6254.4528 5.0051751 3727.6405 635.42653 -10617.52 0 239.87608 0.00089470018 0.00087251242 + 162820 -6249.5981 -6254.3759 4.7777363 3728.8559 636.40966 -10619.641 0 228.97593 0.00095625471 0.000919279 + 162830 -6249.735 -6254.3884 4.6533436 3731.0341 636.92982 -10622.352 0 223.01434 0.00096099203 0.00091222872 + 162840 -6249.9241 -6254.4126 4.4884737 3734.1331 636.85151 -10625.397 0 215.11284 0.00088651627 0.00083599297 + 162850 -6250.1716 -6254.426 4.2544635 3737.6023 636.2132 -10628.242 0 203.89776 0.00074351901 0.00070166814 + 162860 -6250.428 -6254.4748 4.046814 3740.4573 635.22384 -10630.156 0 193.94603 0.00057610469 0.00054736658 + 162870 -6250.6243 -6254.6269 4.0025597 3741.6223 634.20305 -10630.452 0 191.82512 0.00044550339 0.00042601045 + 162880 -6250.7208 -6254.8961 4.1753304 3740.3992 633.48341 -10628.779 0 200.10526 0.00040412519 0.00038513322 + 162890 -6250.7332 -6255.2057 4.4725742 3736.8192 633.29828 -10625.323 0 214.35085 0.00047263086 0.00044710971 + 162900 -6250.7155 -6255.4376 4.7221552 3731.6853 633.68545 -10620.808 0 226.31217 0.00063113325 0.00059818502 + 162910 -6250.714 -6255.5239 4.8099046 3726.3075 634.44791 -10616.279 0 230.51762 0.00082706746 0.00079096907 + 162920 -6250.736 -6255.4912 4.7552081 3722.0916 635.20615 -10612.789 0 227.89625 0.00099365752 0.0009594135 + 162930 -6250.7566 -6255.4204 4.6637494 3720.1515 635.53783 -10611.11 0 223.51304 0.0010707491 0.0010405938 + 162940 -6250.7463 -6255.3714 4.6251288 3721.0277 635.15252 -10611.552 0 221.66212 0.0010229332 0.00099604624 + 162950 -6250.6885 -6255.3444 4.6559491 3724.5389 634.0276 -10613.911 0 223.13921 0.00085216353 0.00082639289 + 162960 -6250.5787 -6255.2934 4.7146958 3729.8024 632.44708 -10617.543 0 225.95468 0.00060116045 0.00057464594 + 162970 -6250.4169 -6255.1643 4.7474414 3735.4502 630.92351 -10621.538 0 227.52403 0.00034393115 0.00031585562 + 162980 -6250.201 -6254.9281 4.7271166 3739.9999 630.02791 -10624.956 0 226.54995 0.00016425046 0.00013493051 + 162990 -6249.9215 -6254.5999 4.6783828 3742.2635 630.18989 -10627.053 0 224.21436 0.00012927081 9.9706609e-05 + 163000 -6249.5563 -6254.2418 4.6855088 3741.6727 631.54361 -10627.458 0 224.55587 0.00026808103 0.00023902571 + 163010 -6249.0697 -6253.9454 4.8757378 3738.4403 633.87241 -10626.258 0 233.67271 0.00056199608 0.00053294762 + 163020 -6248.4203 -6253.7951 5.3747641 3733.5369 636.65954 -10623.992 0 257.58885 0.00094747303 0.00091616406 + 163030 -6247.5886 -6253.8217 6.2330676 3728.4892 639.21988 -10621.531 0 298.72357 0.0013288051 0.0012917676 + 163040 -6246.6225 -6253.9605 7.3379423 3724.999 640.88608 -10619.845 0 351.67537 0.0015993904 0.0015541033 + 163050 -6245.6591 -6254.046 8.3869057 3724.3921 641.21768 -10619.656 0 401.94758 0.0016729777 0.0016209612 + 163060 -6244.8659 -6253.8829 9.0169988 3727.0445 640.16126 -10621.089 0 432.14517 0.0015193751 0.0014673191 + 163070 -6244.3311 -6253.3795 9.0484074 3732.088 638.07289 -10623.54 0 433.65045 0.0011858706 0.0011417659 + 163080 -6244.0052 -6252.6472 8.642001 3737.6436 635.58401 -10625.875 0 414.17318 0.0007857593 0.00075148015 + 163090 -6243.7553 -6251.9534 8.1981454 3741.5548 633.38405 -10626.892 0 392.90113 0.00045394159 0.00042113825 + 163100 -6243.4863 -6251.5332 8.0469002 3742.2908 632.01515 -10625.839 0 385.65261 0.00029124269 0.00024656953 + 163110 -6243.2211 -6251.431 8.2098389 3739.5394 631.73261 -10622.703 0 393.46155 0.00032796682 0.00026456903 + 163120 -6243.0635 -6251.5307 8.4672368 3734.187 632.44856 -10618.166 0 405.7975 0.00052454772 0.00044881268 + 163130 -6243.0906 -6251.718 8.6273268 3727.8087 633.77435 -10613.301 0 413.46991 0.00080088204 0.00072776811 + 163140 -6243.2878 -6251.9764 8.6886471 3722.0654 635.16438 -10609.206 0 416.40872 0.0010705126 0.0010126336 + 163150 -6243.574 -6252.3485 8.7745314 3718.2868 636.11492 -10606.75 0 420.52478 0.0012639059 0.0012240475 + 163160 -6243.8684 -6252.8515 8.9830103 3717.2596 636.33388 -10606.445 0 430.51626 0.0013403939 0.0013113189 + 163170 -6244.137 -6253.434 9.2970473 3719.1558 635.81665 -10608.406 0 445.56667 0.0012924559 0.0012618646 + 163180 -6244.4062 -6253.9764 9.5701919 3723.5672 634.81504 -10612.359 0 458.65729 0.0011427372 0.0011002632 + 163190 -6244.7463 -6254.3181 9.5718662 3729.6218 633.72585 -10617.666 0 458.73754 0.00093458483 0.0008779927 + 163200 -6245.22 -6254.3249 9.1048718 3736.1358 632.94384 -10623.405 0 436.35654 0.00072037678 0.00065739492 + 163210 -6245.822 -6253.9834 8.1613563 3741.79 632.7309 -10628.504 0 391.13799 0.00055159953 0.000494977 + 163220 -6246.4607 -6253.4526 6.9918076 3745.3682 633.1476 -10631.968 0 335.08665 0.00046995128 0.00042832228 + 163230 -6247.0116 -6252.9984 5.986752 3746.0756 634.06534 -10633.139 0 286.91875 0.000497013 0.00046863458 + 163240 -6247.3991 -6252.8374 5.4383094 3743.8314 635.23703 -10631.906 0 260.6343 0.00062484148 0.00059942525 + 163250 -6247.6392 -6253.006 5.3668611 3739.3582 636.38299 -10628.747 0 257.2101 0.00081456732 0.00078160774 + 163260 -6247.8184 -6253.3599 5.5414317 3733.9627 637.25996 -10624.583 0 265.5765 0.0010079567 0.0009648183 + 163270 -6248.0288 -6253.7018 5.672972 3729.078 637.70254 -10620.482 0 271.88065 0.0011491534 0.0011025947 + 163280 -6248.3013 -6253.9388 5.6374982 3725.7872 637.63909 -10617.365 0 270.18055 0.0012059795 0.0011658878 + 163290 -6248.5873 -6254.1418 5.5545822 3724.5616 637.08835 -10615.792 0 266.20675 0.0011781652 0.0011486071 + 163300 -6248.8071 -6254.4527 5.6456391 3725.3128 636.14575 -10615.911 0 270.57071 0.0010876377 0.001063087 + 163310 -6248.9277 -6254.9155 5.9877604 3727.6394 634.96655 -10617.521 0 286.96708 0.00095973503 0.00093018186 + 163320 -6248.9991 -6255.3919 6.3928412 3731.0266 633.745 -10620.164 0 306.38082 0.00081153668 0.0007719611 + 163330 -6249.1122 -6255.6488 6.5366009 3734.8636 632.68534 -10623.198 0 313.27059 0.00065573228 0.00061109461 + 163340 -6249.3149 -6255.5407 6.2258074 3738.3765 631.96542 -10625.883 0 298.37562 0.00051251627 0.00047357649 + 163350 -6249.5649 -6255.1274 5.5625189 3740.6799 631.70236 -10627.51 0 266.58712 0.00041408935 0.00038792456 + 163360 -6249.7646 -6254.6294 4.864774 3741.0417 631.93328 -10627.604 0 233.14727 0.00039407988 0.00037786727 + 163370 -6249.8426 -6254.2694 4.4267945 3739.2349 632.61634 -10626.121 0 212.15683 0.00046900791 0.00045233778 + 163380 -6249.8059 -6254.1372 4.331264 3735.7354 633.64399 -10623.517 0 207.57847 0.00062613557 0.00059937553 + 163390 -6249.7259 -6254.177 4.4510547 3731.6052 634.85679 -10620.639 0 213.31952 0.00082621022 0.00078765659 + 163400 -6249.6795 -6254.2777 4.5981422 3728.1146 636.05593 -10618.448 0 220.36877 0.0010181681 0.00097466998 + 163410 -6249.6958 -6254.3717 4.6759576 3726.3051 637.02337 -10617.7 0 224.09812 0.0011563007 0.0011177647 + 163420 -6249.7405 -6254.4694 4.7288899 3726.6916 637.55617 -10618.717 0 226.63494 0.0012118453 0.0011841683 + 163430 -6249.7437 -6254.6205 4.8768641 3729.1884 637.51323 -10621.322 0 233.72669 0.0011763319 0.0011576164 + 163440 -6249.6478 -6254.8413 5.1934927 3733.2253 636.86364 -10624.93 0 248.90131 0.0010588603 0.0010412142 + 163450 -6249.4468 -6255.0658 5.6190403 3737.9377 635.71998 -10628.723 0 269.29594 0.00088198532 0.00085744529 + 163460 -6249.1872 -6255.1697 5.9824052 3742.3273 634.33765 -10631.835 0 286.71042 0.00067983644 0.0006459793 + 163470 -6248.9299 -6255.0559 6.1260197 3745.3764 633.06826 -10633.501 0 293.59324 0.00049744753 0.00045841448 + 163480 -6248.7002 -6254.7354 6.0352114 3746.1865 632.27164 -10633.194 0 289.24119 0.00038600398 0.00034835206 + 163490 -6248.4695 -6254.3288 5.8592606 3744.2018 632.21098 -10630.742 0 280.80864 0.00038994352 0.00035706074 + 163500 -6248.1803 -6253.9826 5.8023061 3739.4725 632.96592 -10626.421 0 278.07906 0.0005286756 0.00049854869 + 163510 -6247.7893 -6253.7678 5.9785009 3732.8135 634.3921 -10620.973 0 286.52331 0.00078224047 0.00075008803 + 163520 -6247.2919 -6253.6439 6.352022 3725.7174 636.13918 -10615.5 0 304.42454 0.0010903327 0.0010532352 + 163530 -6246.7139 -6253.5114 6.7974866 3719.9959 637.72578 -10611.233 0 325.7737 0.0013675379 0.0013268705 + 163540 -6246.0853 -6253.3007 7.2153562 3717.2638 638.6605 -10609.225 0 345.80035 0.0015296854 0.0014895613 + 163550 -6245.4185 -6253.0276 7.6090699 3718.4426 638.58559 -10610.056 0 364.66932 0.001521694 0.0014850008 + 163560 -6244.7076 -6252.7802 8.0725957 3723.4477 637.40584 -10613.634 0 386.88408 0.0013371092 0.0013024064 + 163570 -6243.9521 -6252.651 8.6989139 3731.1583 635.35864 -10619.168 0 416.90076 0.0010226159 0.00098448484 + 163580 -6243.1899 -6252.6619 9.4719937 3739.689 632.98997 -10625.341 0 453.95109 0.00066604855 0.00061903858 + 163590 -6242.5081 -6252.7374 10.229246 3746.8787 631.0243 -10630.64 0 490.24286 0.00037214471 0.00031549186 + 163600 -6242.009 -6252.7509 10.741948 3750.851 630.1522 -10633.754 0 514.8144 0.00023373045 0.00017281656 + 163610 -6241.7502 -6252.6084 10.858235 3750.5068 630.79748 -10633.913 0 520.38757 0.00030561834 0.00024863395 + 163620 -6241.7131 -6252.3012 10.588058 3745.8496 632.94751 -10631.098 0 507.43915 0.00058656181 0.00053918669 + 163630 -6241.8249 -6251.8948 10.069905 3738.0576 636.116 -10626.068 0 482.60634 0.0010140271 0.00097651355 + 163640 -6242.0074 -6251.4843 9.4769736 3729.2369 639.46091 -10620.182 0 454.18975 0.0014761208 0.0014443522 + 163650 -6242.2094 -6251.1649 8.9555094 3721.8626 642.0259 -10615.053 0 429.19826 0.0018412611 0.0018096777 + 163660 -6242.4106 -6251.0225 8.611982 3718.0564 643.03552 -10612.114 0 412.7345 0.0019984225 0.0019622917 + 163670 -6242.6158 -6251.1152 8.499397 3718.9425 642.15368 -10612.211 0 407.3388 0.0018939833 0.0018507499 + 163680 -6242.851 -6251.4408 8.5897873 3724.2932 639.61182 -10615.346 0 411.67081 0.0015513837 0.0015017742 + 163690 -6243.1508 -6251.928 8.7771768 3732.5648 636.14596 -10620.639 0 420.65156 0.001066337 0.0010146401 + 163700 -6243.5364 -6252.4667 8.930305 3741.324 632.75668 -10626.547 0 427.99032 0.00057841843 0.0005309318 + 163710 -6243.9972 -6252.9562 8.9589146 3747.9662 630.38402 -10631.306 0 429.36146 0.00022763912 0.0001896517 + 163720 -6244.4904 -6253.3431 8.8526814 3750.516 629.61906 -10633.478 0 424.27016 0.00011065951 8.3514168e-05 + 163730 -6244.9575 -6253.6313 8.6738332 3748.2458 630.54682 -10632.424 0 415.69875 0.00025165563 0.00023150069 + 163740 -6245.3539 -6253.8545 8.5006805 3741.904 632.75809 -10628.517 0 407.40031 0.00059666762 0.00057602786 + 163750 -6245.6747 -6254.0286 8.353979 3733.4781 635.51053 -10623.017 0 400.36955 0.0010322415 0.0010041648 + 163760 -6245.9559 -6254.1256 8.1696982 3725.5574 637.97672 -10617.66 0 391.53778 0.001422571 0.0013849761 + 163770 -6246.2466 -6254.0974 7.850716 3720.5019 639.49752 -10614.097 0 376.25036 0.0016536224 0.0016107095 + 163780 -6246.5704 -6253.93 7.3596681 3719.705 639.76241 -10613.397 0 352.71659 0.0016690381 0.0016284556 + 163790 -6246.9053 -6253.6827 6.7773807 3723.2136 638.86469 -10615.761 0 324.81011 0.0014844407 0.0014519592 + 163800 -6247.1992 -6253.47 6.2708142 3729.8278 637.22574 -10620.523 0 300.5326 0.0011751245 0.0011506464 + 163810 -6247.4096 -6253.3899 5.9802484 3737.602 635.42809 -10626.42 0 286.60706 0.00084368831 0.00082183095 + 163820 -6247.5394 -6253.453 5.9135635 3744.5049 634.01943 -10631.977 0 283.41114 0.00058287093 0.00055780422 + 163830 -6247.6332 -6253.583 5.9498151 3748.9654 633.34804 -10635.896 0 285.14852 0.0004493236 0.00041956807 + 163840 -6247.7374 -6253.6938 5.9564392 3750.159 633.47768 -10637.33 0 285.46599 0.00045568525 0.00042445953 + 163850 -6247.862 -6253.7652 5.9031817 3748.0591 634.20756 -10636.032 0 282.91359 0.00057758495 0.00054881261 + 163860 -6247.9809 -6253.8425 5.8616464 3743.3451 635.183 -10632.371 0 280.92299 0.00076743899 0.00074177603 + 163870 -6248.0648 -6253.9729 5.9081223 3737.2127 636.04397 -10627.23 0 283.15037 0.00096938827 0.00094395321 + 163880 -6248.1114 -6254.1484 6.0369949 3731.0971 636.54781 -10621.793 0 289.32667 0.0011332374 0.0011046653 + 163890 -6248.1479 -6254.3043 6.1564174 3726.3397 636.62375 -10617.268 0 295.05006 0.0012255578 0.0011933313 + 163900 -6248.2098 -6254.3648 6.1549612 3723.8807 636.34985 -10614.595 0 294.98028 0.0012353158 0.0012027849 + 163910 -6248.3135 -6254.3014 5.9879535 3724.064 635.87475 -10614.24 0 286.97633 0.0011725617 0.0011449255 + 163920 -6248.4383 -6254.1695 5.7311809 3726.6085 635.329 -10616.107 0 274.67035 0.0010612815 0.0010416102 + 163930 -6248.5347 -6254.0908 5.5561031 3730.7564 634.77439 -10619.622 0 266.27964 0.00092935385 0.00091533158 + 163940 -6248.5589 -6254.1762 5.6172434 3735.5412 634.21586 -10623.933 0 269.20982 0.0007995195 0.00078398885 + 163950 -6248.5116 -6254.4352 5.9236096 3740.0466 633.66024 -10628.142 0 283.89261 0.00068573895 0.00066157631 + 163960 -6248.4456 -6254.7538 6.3082249 3743.535 633.17777 -10631.467 0 302.32553 0.00059722674 0.00056295924 + 163970 -6248.4302 -6254.9642 6.5339661 3745.4422 632.92429 -10633.331 0 313.14432 0.0005467987 0.000508148 + 163980 -6248.4994 -6254.951 6.4516287 3745.3626 633.10501 -10633.419 0 309.19825 0.000555381 0.00052129887 + 163990 -6248.6261 -6254.7134 6.0873485 3743.1398 633.88774 -10631.741 0 291.7399 0.00064594854 0.00062231291 + 164000 -6248.7442 -6254.3482 5.6039942 3739.0461 635.29755 -10628.692 0 268.57484 0.00082754647 0.00081337254 + 164010 -6248.7964 -6253.9788 5.1824055 3733.9139 637.13998 -10625.033 0 248.36995 0.0010783954 0.0010671389 + 164020 -6248.7695 -6253.6911 4.9215828 3729.0689 638.99818 -10621.758 0 235.86987 0.0013404239 0.0013248944 + 164030 -6248.6925 -6253.5162 4.8237345 3726.0065 640.3257 -10619.848 0 231.18042 0.001532535 0.0015094942 + 164040 -6248.6067 -6253.4559 4.8491485 3725.9003 640.61685 -10619.973 0 232.3984 0.0015790989 0.0015505089 + 164050 -6248.5331 -6253.5114 4.9782353 3729.1327 639.59664 -10622.241 0 238.58497 0.0014411133 0.0014118371 + 164060 -6248.4576 -6253.6907 5.2330467 3735.0478 637.35408 -10626.093 0 250.79696 0.0011360287 0.0011100584 + 164070 -6248.3407 -6253.9894 5.6486845 3742.054 634.36196 -10630.405 0 270.71666 0.00073787879 0.00071577047 + 164080 -6248.1444 -6254.361 6.2166666 3748.0657 631.371 -10633.798 0 297.93755 0.00035759334 0.00033680801 + 164090 -6247.8582 -6254.7065 6.8483463 3751.1347 629.20805 -10635.049 0 328.21118 0.00011032028 8.7925545e-05 + 164100 -6247.5039 -6254.9054 7.4015373 3750.05 628.53329 -10633.489 0 354.7232 8.0106946e-05 5.5273503e-05 + 164110 -6247.1166 -6254.8725 7.7559205 3744.7316 629.62496 -10629.229 0 371.70723 0.00029214009 0.00026631439 + 164120 -6246.7221 -6254.5963 7.8741845 3736.329 632.26174 -10623.187 0 377.3751 0.00070080501 0.00067591129 + 164130 -6246.3272 -6254.1376 7.8103478 3726.9853 635.75359 -10616.876 0 374.31569 0.0011987779 0.001175261 + 164140 -6245.9235 -6253.5994 7.6759722 3719.2926 639.12895 -10612.021 0 367.87566 0.0016464241 0.0016223914 + 164150 -6245.5009 -6253.0837 7.5827976 3715.5645 641.43166 -10610.08 0 363.41021 0.0019129731 0.001884929 + 164160 -6245.0661 -6252.6434 7.577271 3717.1376 642.03543 -10611.816 0 363.14534 0.0019165712 0.0018818561 + 164170 -6244.652 -6252.2627 7.6106771 3723.9072 640.8632 -10617.033 0 364.74635 0.0016518571 0.0016116137 + 164180 -6244.2989 -6251.8984 7.5994915 3734.2355 638.41952 -10624.553 0 364.21027 0.0011974444 0.0011571099 + 164190 -6244.0126 -6251.5645 7.5518637 3745.3054 635.60925 -10632.479 0 361.92768 0.00069804518 0.00066325486 + 164200 -6243.745 -6251.3651 7.6201525 3753.9131 633.4105 -10638.689 0 365.20047 0.00032021118 0.00029105243 + 164210 -6243.437 -6251.4109 7.9738886 3757.5122 632.53733 -10641.46 0 382.15348 0.0001927402 0.00016299842 + 164220 -6243.0863 -6251.703 8.6167313 3755.1001 633.21627 -10640.019 0 412.96211 0.00035763007 0.00032080321 + 164230 -6242.7571 -6252.1352 9.3781477 3747.523 635.13384 -10634.792 0 449.45346 0.00075690316 0.00071205133 + 164240 -6242.5235 -6252.5967 10.073229 3737.1068 637.55563 -10627.259 0 482.76567 0.0012586029 0.0012096177 + 164250 -6242.4264 -6253.0276 10.601146 3726.8684 639.58202 -10619.478 0 508.06638 0.0017039725 0.0016549423 + 164260 -6242.4857 -6253.3772 10.891573 3719.617 640.46151 -10613.456 0 521.9853 0.001956496 0.0019095882 + 164270 -6242.723 -6253.5626 10.839599 3717.1586 639.84933 -10610.571 0 519.4944 0.0019417641 0.0018987732 + 164280 -6243.1484 -6253.503 10.354595 3719.7967 637.91327 -10611.213 0 496.25031 0.0016696397 0.001633272 + 164290 -6243.7241 -6253.1996 9.4754448 3726.3046 635.25047 -10614.755 0 454.11648 0.0012299007 0.0012019745 + 164300 -6244.36 -6252.7692 8.4092433 3734.4188 632.65902 -10619.847 0 403.01812 0.00075920818 0.00073761581 + 164310 -6244.9614 -6252.3863 7.4248651 3741.6744 630.86533 -10624.926 0 355.8412 0.00039122322 0.00036985203 + 164320 -6245.488 -6252.1797 6.6916392 3746.2195 630.30945 -10628.709 0 320.7009 0.00021237099 0.00018525909 + 164330 -6245.9629 -6252.178 6.2151274 3747.272 631.04852 -10630.499 0 297.86378 0.00024228045 0.0002083926 + 164340 -6246.4306 -6252.3425 5.9119283 3745.1147 632.78778 -10630.245 0 283.33278 0.00044208729 0.00040616181 + 164350 -6246.9096 -6252.6344 5.7248812 3740.7731 635.00996 -10628.418 0 274.36843 0.00073909346 0.0007079318 + 164360 -6247.3788 -6253.0472 5.6684345 3735.6073 637.14833 -10625.803 0 271.66318 0.0010529925 0.0010305411 + 164370 -6247.7982 -6253.5845 5.7862895 3730.9674 638.74223 -10623.294 0 277.31146 0.001314876 0.0012997624 + 164380 -6248.1391 -6254.2164 6.0773382 3727.9519 639.53209 -10621.7 0 291.26014 0.0014774376 0.0014641868 + 164390 -6248.4034 -6254.8539 6.4505016 3727.2473 639.4811 -10621.582 0 309.14423 0.0015184631 0.0015011727 + 164400 -6248.6231 -6255.3602 6.7370958 3729.0241 638.73533 -10623.12 0 322.87943 0.0014401502 0.0014163029 + 164410 -6248.8405 -6255.6007 6.7602892 3732.8921 637.54739 -10626.04 0 323.99099 0.0012660424 0.0012381474 + 164420 -6249.0758 -6255.5117 6.4359383 3737.9451 636.19285 -10629.65 0 308.44628 0.0010362398 0.0010099036 + 164430 -6249.3072 -6255.1507 5.8435632 3742.9344 634.90595 -10632.991 0 280.05633 0.00080013034 0.00077939458 + 164440 -6249.4827 -6254.6774 5.1946715 3746.5804 633.85086 -10635.109 0 248.95781 0.00060575805 0.00058931105 + 164450 -6249.5639 -6254.2613 4.6973672 3747.9407 633.12539 -10635.327 0 225.12419 0.00048791303 0.00046994327 + 164460 -6249.5621 -6253.9881 4.4259997 3746.6754 632.77794 -10633.441 0 212.11874 0.00046053179 0.00043596701 + 164470 -6249.5323 -6253.8449 4.3125855 3743.0832 632.81833 -10629.746 0 206.6833 0.00051759425 0.00048704141 + 164480 -6249.5299 -6253.7872 4.2573198 3737.9357 633.21652 -10624.939 0 204.03465 0.00064051884 0.00061034589 + 164490 -6249.5656 -6253.8137 4.2480703 3732.246 633.89493 -10619.955 0 203.59137 0.00080563384 0.00078298033 + 164500 -6249.5947 -6253.9797 4.3849427 3727.0885 634.72262 -10615.791 0 210.15106 0.00098670991 0.00097338356 + 164510 -6249.5486 -6254.3387 4.7900521 3723.4909 635.52099 -10613.351 0 229.56617 0.0011526933 0.0011427626 + 164520 -6249.3883 -6254.8564 5.4680966 3722.3371 636.08993 -10613.283 0 262.06187 0.0012656902 0.0012490175 + 164530 -6249.1454 -6255.3706 6.2251867 3724.2021 636.25823 -10615.831 0 298.34588 0.0012858705 0.0012556085 + 164540 -6248.9145 -6255.645 6.7304917 3729.0993 635.9483 -10620.693 0 322.56293 0.0011864382 0.0011451532 + 164550 -6248.7896 -6255.5043 6.7147499 3736.2393 635.22936 -10626.973 0 321.80849 0.00097374278 0.0009328176 + 164560 -6248.786 -6254.9646 6.1786185 3743.9934 634.32914 -10633.287 0 296.11406 0.0006996234 0.00067108801 + 164570 -6248.8205 -6254.2494 5.4289157 3750.2345 633.58907 -10638.073 0 260.1841 0.00045273762 0.00043941215 + 164580 -6248.7774 -6253.6488 4.8714538 3753.0322 633.37222 -10640.053 0 233.4674 0.00032706434 0.00031982248 + 164590 -6248.6053 -6253.3233 4.718038 3751.405 633.94689 -10638.675 0 226.11486 0.00038244619 0.00036783167 + 164600 -6248.353 -6253.2287 4.875745 3745.7188 635.37201 -10634.319 0 233.67306 0.00061928445 0.00059073295 + 164610 -6248.1151 -6253.2258 5.110642 3737.5331 637.42098 -10628.18 0 244.93064 0.0009793936 0.00094174294 + 164620 -6247.9452 -6253.2418 5.2966521 3729.0531 639.59037 -10621.885 0 253.84529 0.0013673557 0.0013314398 + 164630 -6247.8162 -6253.322 5.5057569 3722.4946 641.21793 -10617.034 0 263.86676 0.001678345 0.0016518053 + 164640 -6247.6533 -6253.5484 5.8951449 3719.5612 641.68321 -10614.793 0 282.52842 0.0018231364 0.0018054294 + 164650 -6247.3968 -6253.929 6.5322128 3721.0771 640.62214 -10615.628 0 313.06029 0.0017485568 0.0017329245 + 164660 -6247.0477 -6254.3554 7.3076465 3726.7741 638.07959 -10619.209 0 350.22342 0.00145329 0.0014328141 + 164670 -6246.6666 -6254.6556 7.9889337 3735.2704 634.54418 -10624.47 0 382.87453 0.0009955585 0.00096831222 + 164680 -6246.3303 -6254.6975 8.3671582 3744.3108 630.84445 -10629.853 0 401.00117 0.00048642775 0.00045610808 + 164690 -6246.0782 -6254.4678 8.3896784 3751.2959 627.92947 -10633.693 0 402.08046 6.4704942e-05 3.6637526e-05 + 164700 -6245.8912 -6254.067 8.1757918 3754.0173 626.59976 -10634.684 0 391.82982 -0.00014298501 -0.00016688654 + 164710 -6245.7238 -6253.6224 7.8985303 3751.3892 627.27381 -10632.285 0 378.54189 -6.4525406e-05 -8.7188797e-05 + 164720 -6245.5543 -6253.1922 7.6379104 3743.8978 629.85983 -10626.95 0 366.05152 0.00028976204 0.00026411513 + 164730 -6245.4014 -6252.7538 7.3523345 3733.538 633.76398 -10620.056 0 352.36512 0.00082675325 0.00079724882 + 164740 -6245.2909 -6252.285 6.9940639 3723.2199 638.03323 -10613.538 0 335.19478 0.0013992474 0.001368966 + 164750 -6245.2156 -6251.8426 6.6270047 3715.8837 641.60547 -10609.332 0 317.60325 0.0018517226 0.0018240146 + 164760 -6245.1367 -6251.5454 6.4086427 3713.6603 643.60762 -10608.813 0 307.13812 0.0020654327 0.0020406084 + 164770 -6245.0176 -6251.4864 6.4688003 3717.3105 643.61008 -10612.407 0 310.02121 0.0019899503 0.001965844 + 164780 -6244.8451 -6251.673 6.8279491 3726.0269 641.74725 -10619.447 0 327.23363 0.0016557611 0.001630611 + 164790 -6244.6176 -6252.0459 7.4283022 3737.6192 638.66146 -10628.326 0 356.00592 0.0011661916 0.0011398513 + 164800 -6244.3242 -6252.5349 8.2106959 3749.0647 635.29705 -10636.897 0 393.50262 0.00066874775 0.0006409012 + 164810 -6243.9508 -6253.076 9.1251836 3757.3321 632.61956 -10643.028 0 437.33 0.00031095751 0.00027917219 + 164820 -6243.5157 -6253.5766 10.060874 3760.2497 631.34279 -10645.169 0 482.17355 0.00019388495 0.00015482547 + 164830 -6243.0955 -6253.8971 10.801519 3757.1192 631.73006 -10642.746 0 517.66941 0.0003408835 0.00029407556 + 164840 -6242.8 -6253.8992 11.099219 3748.8608 633.52338 -10636.283 0 531.93684 0.00069391185 0.0006440119 + 164850 -6242.7067 -6253.5305 10.823792 3737.6724 636.03485 -10627.238 0 518.73685 0.0011372583 0.0010920728 + 164860 -6242.8114 -6252.875 10.063646 3726.3564 638.38151 -10617.613 0 482.30636 0.0015374865 0.0015029849 + 164870 -6243.0342 -6252.1356 9.1014917 3717.5472 639.77939 -10609.462 0 436.19455 0.0017841893 0.00176009 + 164880 -6243.2752 -6251.5543 8.2790319 3713.0764 639.78682 -10604.417 0 396.77766 0.0018182573 0.001797317 + 164890 -6243.4794 -6251.3048 7.8254279 3713.6325 638.41722 -10603.355 0 375.03841 0.0016409958 0.0016129742 + 164900 -6243.6696 -6251.4127 7.7430352 3718.7362 636.09869 -10606.248 0 371.08969 0.0013056226 0.0012640743 + 164910 -6243.9295 -6251.7504 7.8209635 3726.942 633.51141 -10612.204 0 374.82445 0.00089833585 0.00084608469 + 164920 -6244.34 -6252.1274 7.7874132 3736.1733 631.3676 -10619.668 0 373.21654 0.0005169661 0.00046577726 + 164930 -6244.9067 -6252.4253 7.5186298 3744.1551 630.21012 -10626.79 0 360.33493 0.00025156889 0.00021460909 + 164940 -6245.5373 -6252.6773 7.1400236 3748.9453 630.29028 -10631.913 0 342.18999 0.00016635624 0.00014805334 + 164950 -6246.1051 -6253.0058 6.9007002 3749.4992 631.54621 -10634.051 0 330.72027 0.00028197388 0.00027393004 + 164960 -6246.5492 -6253.4621 6.9129716 3746.0529 633.65834 -10633.173 0 331.30839 0.00056383379 0.00055148988 + 164970 -6246.9167 -6253.9348 7.0180957 3740.0613 636.14251 -10630.139 0 336.34653 0.00092803814 0.00090269819 + 164980 -6247.3043 -6254.232 6.9277265 3733.6316 638.45915 -10626.323 0 332.01553 0.0012697309 0.0012349786 + 164990 -6247.7603 -6254.2554 6.4950447 3728.7261 640.13306 -10623.115 0 311.27898 0.001501723 0.0014689315 + 165000 -6248.2428 -6254.0875 5.844717 3726.5488 640.86346 -10621.5 0 280.11163 0.0015816889 0.001559768 + 165010 -6248.6623 -6253.9243 5.2619373 3727.349 640.58517 -10621.858 0 252.18156 0.0015152169 0.0015038498 + 165020 -6248.9563 -6253.9254 4.9690596 3730.5927 639.45678 -10623.975 0 238.14522 0.0013396688 0.0013307415 + 165030 -6249.1323 -6254.1089 4.9765347 3735.2894 637.78812 -10627.186 0 238.50346 0.0011035308 0.0010884287 + 165040 -6249.2567 -6254.36 5.1033109 3740.2856 635.94186 -10630.588 0 244.57929 0.00085301686 0.00082960717 + 165050 -6249.4021 -6254.5392 5.1371212 3744.4477 634.24371 -10633.231 0 246.19967 0.00062851875 0.00060240355 + 165060 -6249.5911 -6254.6013 5.0101901 3746.7853 632.92487 -10634.311 0 240.11642 0.00046550881 0.00044463485 + 165070 -6249.7808 -6254.6262 4.8454257 3746.61 632.10715 -10633.343 0 232.21999 0.00039232234 0.00037957447 + 165080 -6249.9049 -6254.7317 4.8268584 3743.7542 631.82302 -10630.309 0 231.33014 0.00042221938 0.00041265484 + 165090 -6249.9347 -6254.9467 5.0119849 3738.7392 632.04566 -10625.732 0 240.20244 0.00054510105 0.00053029814 + 165100 -6249.9049 -6255.1696 5.2647287 3732.7228 632.7028 -10620.595 0 252.31534 0.00072705294 0.00070235136 + 165110 -6249.8821 -6255.2461 5.3640341 3727.1805 633.66987 -10616.097 0 257.07461 0.00092016886 0.00088835477 + 165120 -6249.912 -6255.0879 5.1758745 3723.4572 634.76211 -10613.307 0 248.05695 0.001077278 0.0010462489 + 165130 -6249.9881 -6254.7346 4.7465305 3722.395 635.74973 -10612.879 0 227.48038 0.0011641621 0.0011412081 + 165140 -6250.0602 -6254.3318 4.2715753 3724.1639 636.40384 -10614.899 0 204.71786 0.0011654995 0.0011524447 + 165150 -6250.0665 -6254.05 3.9835212 3728.3044 636.56151 -10618.916 0 190.91269 0.0010848658 0.0010768402 + 165160 -6249.9691 -6253.9938 4.0247068 3733.9146 636.18733 -10624.096 0 192.88653 0.00094113041 0.00092953846 + 165170 -6249.7756 -6254.1439 4.3683557 3739.8766 635.40757 -10629.428 0 209.35611 0.0007642108 0.00074231759 + 165180 -6249.5353 -6254.3727 4.8374428 3745.0408 634.49794 -10633.911 0 231.8374 0.0005923309 0.00056004582 + 165190 -6249.3062 -6254.5293 5.2231087 3748.3515 633.81856 -10636.699 0 250.32067 0.00046996758 0.0004342551 + 165200 -6249.1108 -6254.5389 5.4281212 3748.9777 633.70803 -10637.225 0 260.14603 0.00044234779 0.0004124334 + 165210 -6248.9151 -6254.4383 5.5231941 3746.5161 634.36663 -10635.321 0 264.70245 0.00054267589 0.00052342342 + 165220 -6248.6526 -6254.3181 5.6655522 3741.2405 635.76668 -10631.325 0 271.52505 0.00077406149 0.00076277435 + 165230 -6248.2757 -6254.2282 5.9524286 3734.248 637.62125 -10626.097 0 285.27378 0.0010955561 0.0010846362 + 165240 -6247.7915 -6254.1335 6.3419498 3727.3242 639.42748 -10620.885 0 303.94182 0.0014236992 0.0014065297 + 165250 -6247.254 -6253.9562 6.7021683 3722.4768 640.58631 -10617.019 0 321.20551 0.0016542773 0.0016293827 + 165260 -6246.7261 -6253.6537 6.9275656 3721.2778 640.58126 -10615.513 0 332.00781 0.0016979142 0.0016687182 + 165270 -6246.2435 -6253.2612 7.0177096 3724.2742 639.16987 -10616.705 0 336.32802 0.0015152431 0.0014866507 + 165280 -6245.8044 -6252.8724 7.0679903 3730.7045 636.51738 -10620.094 0 338.73775 0.0011371069 0.0011119889 + 165290 -6245.3864 -6252.5852 7.1988439 3738.6478 633.20845 -10624.441 0 345.00899 0.00066134661 0.00063911673 + 165300 -6244.9713 -6252.4491 7.4778316 3745.5786 630.11464 -10628.142 0 358.37965 0.00022617268 0.00020382659 + 165310 -6244.5663 -6252.4403 7.8740169 3749.16 628.1494 -10629.75 0 377.36707 -3.2218934e-05 -5.7498899e-05 + 165320 -6244.2067 -6252.4743 8.2675939 3748.0136 627.9805 -10628.468 0 396.22949 -2.439214e-05 -5.2724859e-05 + 165330 -6243.9351 -6252.4582 8.5230881 3742.1964 629.78672 -10624.441 0 408.4742 0.00026082471 0.00023239283 + 165340 -6243.7669 -6252.3566 8.5896933 3733.2208 633.14794 -10618.725 0 411.6663 0.0007498178 0.00072463076 + 165350 -6243.6756 -6252.2174 8.5417776 3723.633 637.13539 -10612.986 0 409.36991 0.001304921 0.0012830167 + 165360 -6243.6177 -6252.1262 8.5084787 3716.293 640.60128 -10609.02 0 407.77404 0.001765252 0.0017423964 + 165370 -6243.575 -6252.1301 8.5551501 3713.5412 642.57089 -10608.242 0 410.0108 0.0019956076 0.0019664462 + 165380 -6243.5724 -6252.2006 8.6281756 3716.4592 642.58132 -10611.241 0 413.51059 0.0019296581 0.0018923809 + 165390 -6243.655 -6252.2632 8.6082013 3724.4528 640.83002 -10617.546 0 412.55331 0.0015937944 0.0015522896 + 165400 -6243.8443 -6252.2677 8.4233748 3735.3465 638.07775 -10625.692 0 403.69539 0.0011016215 0.0010630913 + 165410 -6244.1127 -6252.2354 8.1227703 3746.0206 635.35221 -10633.608 0 389.28873 0.00061731882 0.0005871134 + 165420 -6244.3994 -6252.2378 7.8383699 3753.4134 633.57642 -10639.228 0 375.65867 0.00029824747 0.00027630205 + 165430 -6244.6546 -6252.3288 7.6742229 3755.5193 633.26345 -10641.112 0 367.79182 0.00023888073 0.00022060611 + 165440 -6244.8653 -6252.5053 7.6400476 3751.9971 634.37576 -10638.878 0 366.15395 0.0004401289 0.00042012452 + 165450 -6245.0467 -6252.729 7.6823067 3744.1808 636.37902 -10633.289 0 368.17924 0.00081568424 0.0007905488 + 165460 -6245.22 -6252.9669 7.7468729 3734.5508 638.45661 -10625.974 0 371.27362 0.001228582 0.0011974138 + 165470 -6245.403 -6253.1991 7.7960969 3725.8973 639.80312 -10618.9 0 373.63271 0.0015400858 0.0015040527 + 165480 -6245.612 -6253.3981 7.7860062 3720.4644 639.89409 -10613.757 0 373.14911 0.0016532693 0.0016155313 + 165490 -6245.86 -6253.52 7.6600644 3719.3302 638.64417 -10611.494 0 367.11327 0.0015397227 0.0015052176 + 165500 -6246.1431 -6253.5325 7.3894143 3722.1924 636.40778 -10612.133 0 354.1422 0.0012439216 0.0012176946 + 165510 -6246.4281 -6253.4559 7.0277939 3727.5986 633.83251 -10614.887 0 336.81132 0.00086480194 0.0008487294 + 165520 -6246.6596 -6253.3711 6.7115228 3733.5267 631.62755 -10618.525 0 321.65383 0.00051976085 0.00050983117 + 165530 -6246.7942 -6253.3635 6.5693075 3738.1101 630.33748 -10621.811 0 314.83808 0.00030313023 0.00029046413 + 165540 -6246.8408 -6253.4419 6.6011047 3740.2363 630.19812 -10623.876 0 316.36198 0.00025556393 0.00023202297 + 165550 -6246.8664 -6253.513 6.6465592 3739.7827 631.10876 -10624.404 0 318.54041 0.0003576169 0.00032238376 + 165560 -6246.9521 -6253.4574 6.5052932 3737.4235 632.71073 -10623.592 0 311.77015 0.0005491786 0.00051046812 + 165570 -6247.126 -6253.2508 6.1247841 3734.1723 634.53305 -10621.956 0 293.53402 0.00076229186 0.00073163321 + 165580 -6247.3357 -6253.0168 5.6810638 3730.9581 636.15121 -10620.126 0 272.26845 0.00094801718 0.00093122145 + 165590 -6247.4893 -6252.9471 5.4578161 3728.4509 637.30482 -10618.703 0 261.56917 0.0010844372 0.0010769612 + 165600 -6247.5311 -6253.1492 5.6180891 3727.11 637.93541 -10618.195 0 269.25035 0.0011678101 0.0011586406 + 165610 -6247.4866 -6253.5534 6.0667211 3727.2551 638.13905 -10618.947 0 290.75131 0.0011995405 0.0011802242 + 165620 -6247.4426 -6253.9603 6.5177173 3729.0095 638.0668 -10621.037 0 312.36558 0.0011802116 0.0011514226 + 165630 -6247.4779 -6254.1828 6.7049335 3732.1534 637.82968 -10624.166 0 321.33803 0.0011125487 0.0010830217 + 165640 -6247.6019 -6254.1701 6.5681429 3736.0476 637.45676 -10627.674 0 314.78226 0.0010072427 0.00098620383 + 165650 -6247.7482 -6254.0242 6.2759855 3739.7517 636.91938 -10630.695 0 300.78044 0.00088426882 0.00087349196 + 165660 -6247.8298 -6253.9024 6.0726161 3742.3187 636.1956 -10632.417 0 291.03384 0.00076709676 0.0007589991 + 165670 -6247.8123 -6253.8811 6.0687645 3743.1172 635.33046 -10632.329 0 290.84924 0.00067391813 0.00065753522 + 165680 -6247.746 -6253.894 6.147957 3742 634.45522 -10630.349 0 294.6446 0.00061325688 0.00058360676 + 165690 -6247.7263 -6253.8038 6.0774966 3739.24 633.75263 -10626.796 0 291.26774 0.00058771983 0.00055072294 + 165700 -6247.8103 -6253.5526 5.7423478 3735.3186 633.38433 -10622.256 0 275.20553 0.00060142135 0.0005695575 + 165710 -6247.9613 -6253.2526 5.2913169 3730.7622 633.41796 -10617.433 0 253.58959 0.00066140459 0.00064323324 + 165720 -6248.0757 -6253.1184 5.0427012 3726.1537 633.79266 -10613.065 0 241.67454 0.00076809974 0.00076074254 + 165730 -6248.0683 -6253.288 5.2196463 3722.2462 634.3373 -10609.871 0 250.15474 0.00090173635 0.0008930595 + 165740 -6247.9415 -6253.6929 5.7514009 3719.9597 634.82714 -10608.48 0 275.6394 0.0010186176 0.00099710525 + 165750 -6247.781 -6254.0957 6.3147722 3720.1198 635.0538 -10609.269 0 302.63932 0.0010653467 0.0010290867 + 165760 -6247.6861 -6254.2619 6.5758363 3723.0339 634.89101 -10612.187 0 315.15097 0.0010053397 0.00096290115 + 165770 -6247.6936 -6254.1224 6.4288236 3728.1812 634.34452 -10616.648 0 308.1053 0.0008417724 0.00080502676 + 165780 -6247.7566 -6253.8044 6.0477769 3734.2526 633.57346 -10621.63 0 289.8434 0.00062243912 0.0005977993 + 165790 -6247.7894 -6253.5254 5.7359774 3739.5606 632.86797 -10625.954 0 274.90022 0.00042350993 0.0004083406 + 165800 -6247.7304 -6253.4461 5.7156906 3742.6223 632.57646 -10628.645 0 273.92796 0.00032118549 0.00030700102 + 165810 -6247.5746 -6253.5848 6.0101751 3742.6557 632.99316 -10629.234 0 288.04131 0.00036413047 0.00034306047 + 165820 -6247.3648 -6253.8282 6.4634064 3739.811 634.23662 -10627.876 0 309.7627 0.00055602508 0.00052587016 + 165830 -6247.159 -6254.0109 6.8519051 3735.0889 636.16258 -10625.262 0 328.38174 0.00085276265 0.0008179437 + 165840 -6246.9925 -6254.0131 7.0206622 3729.9954 638.35365 -10622.362 0 336.46953 0.0011750543 0.0011432152 + 165850 -6246.8526 -6253.825 6.9723658 3726.0668 640.21069 -10620.103 0 334.15489 0.0014323779 0.0014086638 + 165860 -6246.6883 -6253.5308 6.8425179 3724.4381 641.13383 -10619.103 0 327.93185 0.0015492211 0.0015323108 + 165870 -6246.4553 -6253.2198 6.7644107 3725.5781 640.73571 -10619.534 0 324.18852 0.0014848152 0.0014683653 + 165880 -6246.1598 -6252.9073 6.747455 3729.1916 639.00035 -10621.099 0 323.37591 0.0012437318 0.0012223133 + 165890 -6245.8516 -6252.5547 6.7031486 3734.2396 636.31532 -10623.11 0 321.25249 0.00087866526 0.00085244394 + 165900 -6245.5728 -6252.1645 6.5916599 3739.1117 633.35986 -10624.636 0 315.90933 0.00048333031 0.00045686979 + 165910 -6245.3178 -6251.8331 6.5152749 3742.0314 630.89389 -10624.758 0 312.24853 0.00017043877 0.0001474666 + 165920 -6245.0451 -6251.6947 6.6495393 3741.6468 629.52603 -10622.867 0 318.68323 3.6348882e-05 1.6348111e-05 + 165930 -6244.7216 -6251.8143 7.0927123 3737.5717 629.53468 -10618.921 0 339.92257 0.00012548826 0.00010503129 + 165940 -6244.3511 -6252.1392 7.7881174 3730.617 630.79176 -10613.548 0 373.25029 0.00041144136 0.00038771103 + 165950 -6243.9674 -6252.5392 8.5717274 3722.601 632.80883 -10607.949 0 410.80527 0.00080383282 0.00077632986 + 165960 -6243.6109 -6252.8843 9.2733821 3715.8167 634.89392 -10603.595 0 444.4325 0.0011779968 0.001147476 + 165970 -6243.3136 -6253.0962 9.7825804 3712.3281 636.37372 -10601.798 0 468.83614 0.0014158963 0.0013826264 + 165980 -6243.1023 -6253.1516 10.049378 3713.3083 636.81367 -10603.274 0 481.62259 0.0014443232 0.0014079141 + 165990 -6243.0058 -6253.0541 10.048263 3718.6259 636.16798 -10607.848 0 481.56915 0.0012588028 0.0012198645 + 166000 -6243.0504 -6252.8146 9.7641763 3726.828 634.80632 -10614.449 0 467.95412 0.00092667297 0.00088821447 + 166010 -6243.2333 -6252.4714 9.2381731 3735.5434 633.39363 -10621.408 0 442.74509 0.00056773665 0.00053352906 + 166020 -6243.5031 -6252.1169 8.6137531 3742.2114 632.64958 -10626.978 0 412.81938 0.00031497867 0.00028527259 + 166030 -6243.789 -6251.8642 8.0752207 3744.9415 633.07103 -10629.877 0 387.00989 0.00026490191 0.00023442914 + 166040 -6244.0611 -6251.7595 7.6984389 3743.1876 634.72396 -10629.671 0 368.95239 0.00043723473 0.00039938352 + 166050 -6244.3569 -6251.7432 7.3862979 3737.908 637.18866 -10626.84 0 353.99284 0.00076596611 0.00071985552 + 166060 -6244.7354 -6251.723 6.9876108 3731.1061 639.68963 -10622.519 0 334.88552 0.0011287407 0.0010816664 + 166070 -6245.2069 -6251.6889 6.4819898 3724.9952 641.3719 -10618.056 0 310.65332 0.0013988415 0.0013609591 + 166080 -6245.7111 -6251.7483 6.0371434 3721.2175 641.61633 -10614.582 0 289.33379 0.0014922316 0.0014681309 + 166090 -6246.1638 -6252.042 5.87822 3720.4475 640.26228 -10612.752 0 281.71728 0.0013894222 0.0013741688 + 166100 -6246.5256 -6252.6108 6.0852845 3722.4278 637.65041 -10612.689 0 291.64098 0.0011296767 0.0011128293 + 166110 -6246.8332 -6253.3312 6.497941 3726.2524 634.48097 -10614.065 0 311.41779 0.00078885448 0.00076299909 + 166120 -6247.1665 -6253.9827 6.8161924 3730.6827 631.55753 -10616.223 0 326.67019 0.0004542103 0.00042069422 + 166130 -6247.5782 -6254.3924 6.8142428 3734.425 629.52504 -10618.342 0 326.57675 0.00020293797 0.0001701709 + 166140 -6248.0493 -6254.5346 6.4853124 3736.4097 628.70161 -10619.646 0 310.81256 8.5514059e-05 6.1862348e-05 + 166150 -6248.5044 -6254.5153 6.0108976 3736.0741 629.04757 -10619.637 0 288.07594 0.00011492912 0.00010238344 + 166160 -6248.8677 -6254.4738 5.6060916 3733.551 630.25046 -10618.275 0 268.67536 0.00026490651 0.00025811308 + 166170 -6249.1108 -6254.483 5.3721466 3729.6511 631.86848 -10616.003 0 257.46341 0.00047917292 0.00046977297 + 166180 -6249.2628 -6254.5138 5.2510762 3725.607 633.47595 -10613.597 0 251.66103 0.00069001681 0.00067271469 + 166190 -6249.3834 -6254.4791 5.0957101 3722.6587 634.77078 -10611.909 0 244.21502 0.00084054622 0.00081665675 + 166200 -6249.5194 -6254.3205 4.8011179 3721.6395 635.62253 -10611.583 0 230.09651 0.00090277797 0.00087883497 + 166210 -6249.6709 -6254.0777 4.4068561 3722.7311 636.05791 -10612.867 0 211.20127 0.00088395278 0.0008662794 + 166220 -6249.7925 -6253.8819 4.0894576 3725.4881 636.20089 -10615.571 0 195.98975 0.00081764861 0.00080690489 + 166230 -6249.831 -6253.8672 4.0362552 3729.102 636.19752 -10619.167 0 193.44 0.00074392334 0.00073415232 + 166240 -6249.7723 -6254.0642 4.2918894 3732.7419 636.15475 -10622.961 0 205.69142 0.00068952728 0.00067288022 + 166250 -6249.6585 -6254.3674 4.7088675 3735.7761 636.1096 -10626.253 0 225.67535 0.0006594563 0.00063280044 + 166260 -6249.5577 -6254.611 5.0532555 3737.7902 636.03226 -10628.433 0 242.18036 0.00064325176 0.00061088628 + 166270 -6249.5102 -6254.6856 5.1753659 3738.4914 635.85778 -10629.035 0 248.03257 0.00062900261 0.00059912945 + 166280 -6249.4996 -6254.5959 5.0963044 3737.6654 635.53192 -10627.793 0 244.2435 0.00061364611 0.0005919107 + 166290 -6249.4718 -6254.4235 4.9516556 3735.2571 635.04987 -10624.73 0 237.31112 0.00060337544 0.00058896455 + 166300 -6249.379 -6254.2489 4.8699177 3731.507 634.46834 -10620.224 0 233.39378 0.00060680949 0.00059353909 + 166310 -6249.2095 -6254.1039 4.8944103 3727.0161 633.88421 -10615.004 0 234.56761 0.0006273524 0.0006079541 + 166320 -6248.9919 -6253.9713 4.9793847 3722.672 633.39022 -10610.034 0 238.64005 0.00065869347 0.00062927019 + 166330 -6248.7801 -6253.8105 5.0304259 3719.4468 633.02884 -10606.286 0 241.08623 0.00068461331 0.00064730784 + 166340 -6248.6257 -6253.5978 4.9720877 3718.1159 632.76669 -10604.48 0 238.29034 0.00068409548 0.00064663532 + 166350 -6248.5422 -6253.3745 4.8322673 3718.9836 632.50628 -10604.864 0 231.58936 0.00064148465 0.00061274703 + 166360 -6248.4821 -6253.2619 4.7797485 3721.7456 632.14027 -10607.148 0 229.07237 0.00055680294 0.00054019408 + 166370 -6248.3622 -6253.3927 5.0305415 3725.5973 631.6322 -10610.622 0 241.09178 0.00044857121 0.00043850766 + 166380 -6248.1316 -6253.7838 5.6522381 3729.5439 631.08259 -10614.41 0 270.88696 0.00034657538 0.00033240803 + 166390 -6247.826 -6254.2731 6.4470675 3732.7109 630.73123 -10617.715 0 308.97965 0.00028097038 0.00025584609 + 166400 -6247.5462 -6254.6093 7.0630961 3734.4936 630.87476 -10619.978 0 338.5032 0.00027585415 0.00024231068 + 166410 -6247.3737 -6254.6258 7.2521253 3734.5776 631.73233 -10620.936 0 347.56254 0.00034743552 0.00031443768 + 166420 -6247.3078 -6254.34 7.032215 3732.968 633.32768 -10620.636 0 337.0232 0.00050024329 0.00047502112 + 166430 -6247.2822 -6253.9028 6.6205884 3730.0611 635.44529 -10619.409 0 317.29574 0.000718843 0.00070141254 + 166440 -6247.2327 -6253.4663 6.2335409 3726.6612 637.67651 -10617.804 0 298.74626 0.00096181838 0.00094639055 + 166450 -6247.1465 -6253.0901 5.9435776 3723.8286 639.53282 -10616.451 0 284.84959 0.0011674203 0.001148262 + 166460 -6247.0564 -6252.7486 5.6921961 3722.5554 640.58384 -10615.888 0 272.80197 0.0012729666 0.0012491232 + 166470 -6246.9984 -6252.4116 5.4131459 3723.3878 640.57395 -10616.373 0 259.42832 0.0012396165 0.001214775 + 166480 -6246.9732 -6252.1167 5.1435378 3726.1739 639.48381 -10617.774 0 246.50719 0.0010692169 0.0010474348 + 166490 -6246.9445 -6251.9681 5.0235317 3730.074 637.52844 -10619.571 0 240.75583 0.00080436576 0.00078586186 + 166500 -6246.8742 -6252.0607 5.1865433 3733.8429 635.10647 -10621.01 0 248.56826 0.00051318611 0.00049415463 + 166510 -6246.7576 -6252.4037 5.6460422 3736.2446 632.7173 -10621.366 0 270.59002 0.00026821679 0.00024458982 + 166520 -6246.6267 -6252.9137 6.2869231 3736.4173 630.8528 -10620.184 0 301.30463 0.00012818663 9.9265448e-05 + 166530 -6246.5208 -6253.4719 6.9511345 3734.0865 629.87419 -10617.433 0 333.13737 0.0001249272 9.341173e-05 + 166540 -6246.4604 -6253.9718 7.5114362 3729.6378 629.90682 -10613.516 0 359.99017 0.00025437232 0.00022368476 + 166550 -6246.4482 -6254.3247 7.8764992 3724.0609 630.79628 -10609.182 0 377.48603 0.0004740882 0.00044628391 + 166560 -6246.4803 -6254.4563 7.9760116 3718.7311 632.1524 -10605.34 0 382.25523 0.00071273843 0.00068832992 + 166570 -6246.5472 -6254.3301 7.7829025 3715.0336 633.47393 -10602.838 0 373.00036 0.00089221676 0.00087056006 + 166580 -6246.6271 -6253.9795 7.3523842 3713.9424 634.31568 -10602.238 0 352.3675 0.0009544407 0.00093346344 + 166590 -6246.691 -6253.5065 6.8155142 3715.7258 634.44342 -10603.676 0 326.63768 0.00088090165 0.00085692348 + 166600 -6246.722 -6253.0321 6.3100893 3719.8908 633.92129 -10606.844 0 302.41489 0.00069743694 0.00066658432 + 166610 -6246.733 -6252.6385 5.9055447 3725.3501 633.09363 -10611.082 0 283.02684 0.00046473713 0.00042579136 + 166620 -6246.7584 -6252.3529 5.5945393 3730.7093 632.45742 -10615.52 0 268.12171 0.00026011448 0.0002164073 + 166630 -6246.8253 -6252.1818 5.3564348 3734.5943 632.46746 -10619.244 0 256.71041 0.00015587542 0.00011398287 + 166640 -6246.9287 -6252.1481 5.2193831 3735.9905 633.3517 -10621.49 0 250.14212 0.00019791469 0.00016377605 + 166650 -6247.0334 -6252.2894 5.2559423 3734.5511 635.01145 -10621.852 0 251.89425 0.00038904964 0.00036449077 + 166660 -6247.0969 -6252.624 5.5271436 3730.7619 637.0404 -10620.426 0 264.89173 0.00068363821 0.00066546795 + 166670 -6247.0916 -6253.1208 6.0292397 3725.8486 638.85021 -10617.82 0 288.955 0.00099803045 0.00097964175 + 166680 -6247.0217 -6253.6872 6.6655355 3721.4216 639.86007 -10614.969 0 319.44986 0.0012349076 0.0012094843 + 166690 -6246.9308 -6254.1763 7.2455487 3718.9649 639.69024 -10612.831 0 347.24735 0.0013138175 0.0012782753 + 166700 -6246.8902 -6254.4261 7.5358584 3719.3273 638.29253 -10612.046 0 361.16062 0.0011985303 0.0011563746 + 166710 -6246.9586 -6254.3387 7.3800342 3722.3824 635.96773 -10612.689 0 353.69265 0.00091254877 0.00087286953 + 166720 -6247.1328 -6253.9613 6.8284908 3727.005 633.26647 -10614.233 0 327.25959 0.00053571585 0.00050733797 + 166730 -6247.3382 -6253.49 6.1518237 3731.4412 630.82118 -10615.752 0 294.82991 0.00017940704 0.00016379669 + 166740 -6247.4825 -6253.1545 5.6719844 3733.9823 629.17522 -10616.312 0 271.83332 -5.3065689e-05 -6.3722049e-05 + 166750 -6247.5321 -6253.0555 5.5233199 3733.6517 628.65221 -10615.359 0 264.70848 -0.00010455213 -0.00012124879 + 166760 -6247.5398 -6253.1019 5.5621028 3730.5536 629.27856 -10612.934 0 266.56718 1.7560481e-05 -1.0130032e-05 + 166770 -6247.5949 -6253.1159 5.5210723 3725.725 630.77111 -10609.612 0 264.60076 0.00025100202 0.00021728781 + 166780 -6247.7431 -6253.0067 5.2636229 3720.6397 632.61303 -10606.259 0 252.26234 0.00050888561 0.00047923572 + 166790 -6247.9505 -6252.8548 4.9042834 3716.6709 634.2202 -10603.746 0 235.04078 0.00071346688 0.00069435735 + 166800 -6248.137 -6252.8469 4.7098378 3714.7361 635.14608 -10602.729 0 225.72185 0.00081857335 0.0008076425 + 166810 -6248.2428 -6253.1275 4.8847017 3715.1749 635.23828 -10603.541 0 234.10231 0.00081551758 0.00080343014 + 166820 -6248.2751 -6253.6754 5.400334 3717.7946 634.67716 -10606.147 0 258.81431 0.00072603375 0.00070369423 + 166830 -6248.3102 -6254.2877 5.9774678 3721.9806 633.87991 -10610.148 0 286.4738 0.00058953943 0.00055562118 + 166840 -6248.442 -6254.6925 6.2505632 3726.8081 633.30855 -10614.809 0 299.56206 0.00045107135 0.00041410922 + 166850 -6248.7014 -6254.7318 6.0304394 3731.1696 633.26492 -10619.166 0 289.01249 0.00035193069 0.00032410098 + 166860 -6249.0153 -6254.4755 5.460194 3733.9979 633.77084 -10622.244 0 261.68313 0.00032063082 0.0003071934 + 166870 -6249.2584 -6254.1557 4.8973334 3734.6064 634.59245 -10623.355 0 234.7077 0.00036283702 0.00035664998 + 166880 -6249.3588 -6253.9709 4.6121565 3732.9903 635.38189 -10622.343 0 221.04042 0.00045594529 0.0004428601 + 166890 -6249.3538 -6253.9454 4.5915824 3729.8442 635.84457 -10619.634 0 220.05439 0.00055676323 0.00052723647 + 166900 -6249.3492 -6253.9649 4.6157213 3726.2201 635.84658 -10616.032 0 221.21126 0.00062220183 0.00057871839 + 166910 -6249.4289 -6253.9222 4.4933024 3723.0421 635.43193 -10612.396 0 215.34426 0.00063102145 0.00058564334 + 166920 -6249.5965 -6253.825 4.2285561 3720.785 634.76663 -10609.377 0 202.65613 0.00059241585 0.00055760738 + 166930 -6249.7818 -6253.7867 4.0048966 3719.4666 634.04734 -10607.301 0 191.93711 0.0005364155 0.00051664575 + 166940 -6249.8953 -6253.9302 4.0348935 3718.8784 633.41589 -10606.224 0 193.37473 0.00049312111 0.00048264925 + 166950 -6249.884 -6254.2835 4.3994456 3718.8615 632.91374 -10606.059 0 210.84612 0.00047384502 0.00046116133 + 166960 -6249.7617 -6254.7362 4.9744822 3719.45 632.4916 -10606.678 0 238.4051 0.00046484849 0.00044039252 + 166970 -6249.5998 -6255.0815 5.4817047 3720.8006 632.06403 -10607.946 0 262.71405 0.00043678901 0.00039922237 + 166980 -6249.4835 -6255.1251 5.6416148 3722.9549 631.57789 -10609.658 0 270.37784 0.00036484236 0.00032202923 + 166990 -6249.4535 -6254.8053 5.3518591 3725.5918 631.06041 -10611.458 0 256.49112 0.00024868879 0.00021236361 + 167000 -6249.4732 -6254.2465 4.7733497 3727.9715 630.62846 -10612.846 0 228.7657 0.00012032025 9.7660597e-05 + 167010 -6249.4542 -6253.695 4.2407663 3729.1778 630.46108 -10613.334 0 203.24132 3.3202255e-05 2.1514808e-05 + 167020 -6249.3204 -6253.3676 4.0471056 3728.5585 630.7461 -10612.672 0 193.96001 3.7539207e-05 2.6401163e-05 + 167030 -6249.0577 -6253.3267 4.269032 3726.0914 631.60882 -10611.027 0 204.59597 0.0001555174 0.00013459028 + 167040 -6248.7137 -6253.4717 4.7579527 3722.4519 633.03748 -10608.961 0 228.02779 0.00036949447 0.00033578108 + 167050 -6248.3602 -6253.6306 5.2704079 3718.7692 634.83528 -10607.235 0 252.58752 0.00062709906 0.00058673029 + 167060 -6248.0457 -6253.6742 5.6284484 3716.2207 636.63185 -10606.527 0 269.74683 0.00085901804 0.00082303769 + 167070 -6247.7625 -6253.5875 5.8250864 3715.6385 637.96677 -10607.193 0 279.17082 0.0010017804 0.00097861811 + 167080 -6247.4444 -6253.4694 6.0249955 3717.2661 638.42858 -10609.164 0 288.75159 0.001017097 0.0010059941 + 167090 -6247.0096 -6253.4468 6.4371922 3720.7367 637.81048 -10611.994 0 308.50637 0.00090113168 0.00089117725 + 167100 -6246.4334 -6253.5485 7.1151039 3725.2411 636.22833 -10615.018 0 340.9957 0.00068268181 0.00065968034 + 167110 -6245.7984 -6253.6408 7.8423357 3729.7498 634.13925 -10617.53 0 375.84873 0.0004152708 0.00037271633 + 167120 -6245.2583 -6253.5083 8.2499806 3733.1659 632.21929 -10618.893 0 395.38536 0.00016823275 0.00011347221 + 167130 -6244.9234 -6253.0345 8.1111203 3734.441 631.12134 -10618.597 0 388.73039 1.5261144e-05 -3.5666115e-05 + 167140 -6244.7718 -6252.3173 7.5455018 3732.7978 631.21435 -10616.329 0 361.62278 1.4735793e-05 -2.0374832e-05 + 167150 -6244.6769 -6251.6076 6.9306385 3728.0968 632.4307 -10612.135 0 332.15508 0.00018359169 0.00016318808 + 167160 -6244.5161 -6251.1364 6.6203038 3721.1424 634.2887 -10606.567 0 317.2821 0.00047925058 0.00046115239 + 167170 -6244.2528 -6250.9868 6.7340145 3713.6373 636.06808 -10600.692 0 322.73176 0.00080547795 0.00077549211 + 167180 -6243.9433 -6251.0861 7.1427684 3707.691 637.0644 -10595.842 0 342.32154 0.0010443572 0.00099581266 + 167190 -6243.6898 -6251.2807 7.5909546 3705.0687 636.83421 -10593.184 0 363.80114 0.0011012924 0.0010388383 + 167200 -6243.5758 -6251.4347 7.8589067 3706.5033 635.34618 -10593.284 0 376.6429 0.00094379022 0.00088040215 + 167210 -6243.6136 -6251.5121 7.8985412 3711.3751 632.98401 -10595.871 0 378.54241 0.00061731559 0.00056613675 + 167220 -6243.7321 -6251.5995 7.8674498 3717.9255 630.4099 -10599.935 0 377.05234 0.00022997319 0.00019544207 + 167230 -6243.8257 -6251.835 8.0092876 3723.9461 628.3549 -10604.136 0 383.85 -8.9020877e-05 -0.00011470794 + 167240 -6243.8374 -6252.2772 8.4398157 3727.6423 627.41231 -10607.332 0 404.48332 -0.00023916199 -0.00027087638 + 167250 -6243.8143 -6252.8165 9.0022473 3728.2645 627.88071 -10608.962 0 431.4382 -0.00018457008 -0.00023329417 + 167260 -6243.8851 -6253.2165 9.3314146 3726.2282 629.67942 -10609.124 0 447.21375 3.9058017e-05 -2.5044845e-05 + 167270 -6244.1614 -6253.2711 9.1097648 3722.7253 632.35921 -10608.356 0 436.59104 0.00034723574 0.00028129828 + 167280 -6244.6421 -6252.9591 8.31696 3719.1076 635.22768 -10607.294 0 398.59539 0.00064499557 0.00059277281 + 167290 -6245.2096 -6252.4677 7.2581194 3716.3975 637.5679 -10606.433 0 347.84981 0.0008600019 0.00082798512 + 167300 -6245.7162 -6252.0753 6.3591236 3715.1088 638.86868 -10606.053 0 304.76488 0.00095746949 0.00093920336 + 167310 -6246.0797 -6251.9885 5.9087352 3715.3213 638.9683 -10606.278 0 283.17974 0.00093769474 0.00091878722 + 167320 -6246.3216 -6252.2392 5.9175101 3716.8405 638.05992 -10607.14 0 283.60029 0.0008246932 0.00079240234 + 167330 -6246.54 -6252.6854 6.1453812 3719.3038 636.57267 -10608.562 0 294.52115 0.00065403371 0.00060541476 + 167340 -6246.8439 -6253.1074 6.2634175 3722.1991 634.98733 -10610.294 0 300.17811 0.00046420773 0.00040816707 + 167350 -6247.2804 -6253.3479 6.0675093 3724.8574 633.6628 -10611.868 0 290.78909 0.00029183435 0.00024346511 + 167360 -6247.7956 -6253.416 5.6204181 3726.5292 632.74036 -10612.686 0 269.36197 0.00016762386 0.00013769295 + 167370 -6248.2665 -6253.471 5.2045167 3726.6069 632.15604 -10612.234 0 249.42964 0.0001094719 9.6167495e-05 + 167380 -6248.588 -6253.6777 5.0896811 3724.9227 631.73792 -10610.338 0 243.92608 0.00011388507 0.00010365285 + 167390 -6248.7492 -6254.0442 5.2949817 3721.9144 631.32739 -10607.286 0 253.76523 0.00015373635 0.00013132673 + 167400 -6248.8374 -6254.3928 5.5553729 3718.4766 630.86344 -10603.733 0 266.24464 0.00018984828 0.00014980524 + 167410 -6248.9665 -6254.4949 5.5284626 3715.5389 630.4022 -10600.436 0 264.95495 0.00019311782 0.00014359142 + 167420 -6249.1884 -6254.2552 5.066811 3713.6408 630.07868 -10597.975 0 242.83001 0.00016273683 0.00011896222 + 167430 -6249.4576 -6253.797 4.3394163 3712.7786 630.03631 -10596.612 0 207.96918 0.00012657076 9.944978e-05 + 167440 -6249.6697 -6253.3923 3.7225933 3712.5988 630.35505 -10596.346 0 178.40756 0.00012229253 0.00011062851 + 167450 -6249.7367 -6253.2899 3.553223 3712.7777 631.00564 -10597.073 0 170.29038 0.00017145441 0.00016306339 + 167460 -6249.6455 -6253.5622 3.916714 3713.316 631.84638 -10598.725 0 187.71091 0.00026293994 0.00024341981 + 167470 -6249.4683 -6254.0698 4.6015247 3714.5451 632.66276 -10601.278 0 220.53088 0.00035591938 0.0003188253 + 167480 -6249.3212 -6254.5622 5.2409589 3716.8326 633.23787 -10604.633 0 251.17616 0.00040104531 0.00035246406 + 167490 -6249.2891 -6254.8358 5.546657 3720.1806 633.43223 -10608.449 0 265.82692 0.00036838947 0.00032271525 + 167500 -6249.3666 -6254.8463 5.4796393 3723.9915 633.2455 -10612.083 0 262.61506 0.00026647447 0.00023619157 + 167510 -6249.4605 -6254.7062 5.245734 3727.1863 632.83362 -10614.726 0 251.40501 0.00014134327 0.00012782175 + 167520 -6249.4567 -6254.5757 5.1190309 3728.6465 632.46801 -10615.69 0 245.33268 5.5513647e-05 4.7401355e-05 + 167530 -6249.306 -6254.52 5.2140296 3727.7502 632.44182 -10614.712 0 249.88556 5.749695e-05 3.8444117e-05 + 167540 -6249.0669 -6254.4441 5.3771183 3724.6904 632.94742 -10612.082 0 257.70168 0.0001579014 0.0001187065 + 167550 -6248.8683 -6254.1707 5.3023674 3720.3822 633.96676 -10608.52 0 254.1192 0.00032500123 0.00027116877 + 167560 -6248.8109 -6253.6143 4.8034077 3716.0291 635.22852 -10604.872 0 230.20625 0.00050124334 0.00044949723 + 167570 -6248.8855 -6252.9084 4.0228884 3712.6347 636.2707 -10601.814 0 192.79939 0.00062907453 0.00059482833 + 167580 -6248.9746 -6252.3649 3.3902785 3710.7443 636.59969 -10599.709 0 162.48117 0.00067005574 0.00065543062 + 167590 -6248.9362 -6252.2758 3.3396079 3710.4915 635.88462 -10598.652 0 160.05275 0.00060948221 0.00060142253 + 167600 -6248.7035 -6252.6986 3.9951105 3711.7821 634.10592 -10598.587 0 191.46811 0.00045183849 0.00043205517 + 167610 -6248.3336 -6253.3986 5.0650239 3714.3733 631.59699 -10599.369 0 242.74436 0.00021808518 0.00017724758 + 167620 -6247.9682 -6254.0023 6.0341712 3717.7701 628.95861 -10600.731 0 289.19134 -5.0828424e-05 -0.00010577533 + 167630 -6247.7262 -6254.2476 6.5214565 3721.1065 626.87257 -10602.227 0 312.54479 -0.00029176739 -0.00034314217 + 167640 -6247.6081 -6254.1386 6.5304624 3723.2547 625.88172 -10603.275 0 312.9764 -0.00043074736 -0.00046428001 + 167650 -6247.5002 -6253.8945 6.3942864 3723.2395 626.22145 -10603.355 0 306.45008 -0.00041070183 -0.00042686519 + 167660 -6247.2765 -6253.7421 6.4655714 3720.7688 627.76522 -10602.276 0 309.86646 -0.00022239841 -0.00023573635 + 167670 -6246.9098 -6253.7257 6.815932 3716.531 630.0915 -10600.348 0 326.65771 8.2436847e-05 5.5198518e-05 + 167680 -6246.4966 -6253.6877 7.1911903 3712.0001 632.63143 -10598.319 0 344.64219 0.00040799391 0.00036115967 + 167690 -6246.1793 -6253.4232 7.2439042 3708.7951 634.83954 -10597.058 0 347.16853 0.00065476842 0.00059765812 + 167700 -6246.0324 -6252.8686 6.8362466 3707.953 636.33677 -10597.158 0 327.63129 0.00076178271 0.00071086466 + 167710 -6246.0071 -6252.1717 6.1645792 3709.5369 636.98931 -10598.698 0 295.44122 0.00072773373 0.0006938104 + 167720 -6245.9761 -6251.5983 5.6221754 3712.7678 636.90522 -10601.271 0 269.44619 0.00060170981 0.00058230482 + 167730 -6245.829 -6251.3614 5.5324085 3716.525 636.35555 -10604.242 0 265.14406 0.00045250798 0.00043449643 + 167740 -6245.5402 -6251.5034 5.9632655 3719.8648 635.65152 -10607.02 0 285.79314 0.00033578967 0.00030505141 + 167750 -6245.1726 -6251.9006 6.7279332 3722.2827 635.02675 -10609.21 0 322.44031 0.00027509363 0.00022574418 + 167760 -6244.8333 -6252.3537 7.5203523 3723.6724 634.57177 -10610.598 0 360.41748 0.00026188391 0.000199584 + 167770 -6244.6105 -6252.6917 8.081199 3724.104 634.23971 -10611.035 0 387.2964 0.00027014592 0.00020833471 + 167780 -6244.5215 -6252.8419 8.3203842 3723.593 633.90467 -10610.34 0 398.7595 0.00027559728 0.00022689388 + 167790 -6244.503 -6252.8387 8.3356889 3722.0135 633.43842 -10608.291 0 399.49298 0.00026818073 0.00023592238 + 167800 -6244.4617 -6252.7549 8.2931376 3719.236 632.7796 -10604.77 0 397.45369 0.00025141348 0.00022749804 + 167810 -6244.3548 -6252.6058 8.2509833 3715.3835 631.97578 -10599.965 0 395.43342 0.0002327993 0.00020420443 + 167820 -6244.2242 -6252.328 8.1037921 3710.9689 631.17707 -10594.474 0 388.37919 0.00021638128 0.00017510673 + 167830 -6244.1515 -6251.8675 7.7160435 3706.7738 630.57464 -10589.216 0 369.7961 0.00020329935 0.00015115165 + 167840 -6244.1829 -6251.2821 7.0991224 3703.5763 630.31151 -10585.17 0 340.22978 0.00019546165 0.00014060417 + 167850 -6244.3011 -6250.7444 6.443294 3701.9378 630.41297 -10583.095 0 308.7988 0.00019493296 0.00014500866 + 167860 -6244.4557 -6250.4499 5.9941989 3702.1392 630.77124 -10583.36 0 287.27564 0.00019916656 0.00015723489 + 167870 -6244.6056 -6250.5238 5.9182575 3704.19 631.18896 -10585.903 0 283.6361 0.00019871728 0.00016335076 + 167880 -6244.7333 -6250.9922 6.258914 3707.8259 631.46439 -10590.283 0 299.96228 0.00018175702 0.00014867555 + 167890 -6244.8471 -6251.7914 6.9442812 3712.5049 631.49045 -10595.787 0 332.80892 0.00014240557 0.00010616034 + 167900 -6244.9922 -6252.7662 7.7739839 3717.4641 631.32761 -10601.558 0 372.57293 8.6572936e-05 4.335475e-05 + 167910 -6245.254 -6253.6806 8.4266191 3721.8359 631.20264 -10606.719 0 403.85087 3.2584195e-05 -1.6224108e-05 + 167920 -6245.7129 -6254.3006 8.5876878 3724.7758 631.41036 -10610.487 0 411.57018 7.6901497e-06 -3.9796348e-05 + 167930 -6246.3668 -6254.5176 8.1507619 3725.6174 632.15909 -10612.294 0 390.63024 4.0043994e-05 1.1005005e-06 + 167940 -6247.109 -6254.3975 7.2884334 3724.1001 633.44881 -10611.946 0 349.30262 0.00014474423 0.00011553107 + 167950 -6247.7992 -6254.1025 6.3033902 3720.5833 635.04639 -10609.732 0 302.09383 0.00030913852 0.00028398354 + 167960 -6248.3541 -6253.7729 5.4188529 3716.0482 636.55479 -10606.376 0 259.70184 0.00048893802 0.00046045393 + 167970 -6248.773 -6253.4717 4.698731 3711.8024 637.53251 -10602.807 0 225.18955 0.00062128397 0.00058601472 + 167980 -6249.1005 -6253.2078 4.1073088 3709.0215 637.62206 -10599.851 0 196.84528 0.00064868802 0.00060889288 + 167990 -6249.3812 -6252.9839 3.6026619 3708.3484 636.65729 -10597.99 0 172.65977 0.00054180053 0.00050341698 + 168000 -6249.635 -6252.8289 3.1939888 3709.7001 634.72213 -10597.251 0 153.07386 0.00031184087 0.00028079655 + 168010 -6249.8517 -6252.8088 2.9570633 3712.321 632.14102 -10597.271 0 141.71907 9.1728283e-06 -1.2186605e-05 + 168020 -6250.0002 -6253.0092 3.0090757 3715.0558 629.40294 -10597.468 0 144.21179 -0.00029117471 -0.00030617537 + 168030 -6250.0504 -6253.4834 3.4330353 3716.7666 627.04473 -10597.295 0 164.53031 -0.0005128645 -0.0005294975 + 168040 -6250.0056 -6254.1847 4.1790893 3716.7474 625.5261 -10596.458 0 200.28541 -0.00060274517 -0.0006289904 + 168050 -6249.9169 -6254.9454 5.028542 3714.9546 625.12211 -10595.022 0 240.99595 -0.00054682489 -0.00058487267 + 168060 -6249.8581 -6255.5429 5.68485 3711.9511 625.85462 -10593.349 0 272.44991 -0.00037127758 -0.00041536573 + 168070 -6249.874 -6255.8133 5.9393228 3708.6357 627.48552 -10591.935 0 284.64568 -0.00012988554 -0.00017011313 + 168080 -6249.9471 -6255.7237 5.7765765 3705.9365 629.58448 -10591.245 0 276.84596 0.00011417947 8.495311e-05 + 168090 -6250.0139 -6255.3562 5.3423765 3704.5956 631.65435 -10591.606 0 256.03666 0.00030436043 0.00028601021 + 168100 -6250.0125 -6254.8382 4.825642 3705.0523 633.27012 -10593.161 0 231.27184 0.00040151848 0.00038743623 + 168110 -6249.921 -6254.2796 4.3586204 3707.377 634.18564 -10595.842 0 208.88955 0.00039033839 0.00037202576 + 168120 -6249.7629 -6253.748 3.9850912 3711.2393 634.38199 -10599.369 0 190.98793 0.00028202634 0.0002541297 + 168130 -6249.5894 -6253.2732 3.6837509 3715.9335 634.05028 -10603.257 0 176.54601 0.0001124893 7.5721407e-05 + 168140 -6249.4483 -6252.8739 3.4256024 3720.4784 633.51328 -10606.866 0 164.17409 -6.4836067e-05 -0.00010420132 + 168150 -6249.3504 -6252.5972 3.2468619 3723.7908 633.10411 -10609.492 0 155.60784 -0.00019126729 -0.00022555484 + 168160 -6249.249 -6252.5348 3.2857995 3724.9335 633.04152 -10610.51 0 157.47395 -0.00021915588 -0.00024516834 + 168170 -6249.0583 -6252.7738 3.7155721 3723.4267 633.35224 -10609.553 0 178.07106 -0.00012938829 -0.00015156322 + 168180 -6248.7095 -6253.2973 4.5877825 3719.5138 633.87025 -10606.681 0 219.87228 5.6337668e-05 2.9042999e-05 + 168190 -6248.2089 -6253.9343 5.7253991 3714.188 634.30437 -10602.427 0 274.39325 0.00027738122 0.00023887152 + 168200 -6247.6421 -6254.4338 6.7916753 3708.8708 634.34321 -10597.648 0 325.49519 0.00045433502 0.00040635371 + 168210 -6247.1172 -6254.6047 7.4874611 3704.8821 633.76796 -10593.255 0 358.84115 0.00052024839 0.00047058812 + 168220 -6246.6964 -6254.4013 7.7049841 3702.9894 632.54414 -10589.935 0 369.26607 0.0004473776 0.00040363679 + 168230 -6246.3725 -6253.9111 7.538643 3703.2386 630.85618 -10588.006 0 361.29407 0.0002565942 0.00022091171 + 168240 -6246.0954 -6253.2894 7.193916 3705.0696 629.06086 -10587.42 0 344.77282 6.7355904e-06 -2.549076e-05 + 168250 -6245.8167 -6252.686 6.8693664 3707.6123 627.57609 -10587.874 0 329.21858 -0.00022960457 -0.00026706831 + 168260 -6245.529 -6252.18 6.6510067 3710.0313 626.7556 -10588.967 0 318.75356 -0.00039269927 -0.00044265884 + 168270 -6245.2806 -6251.7502 6.4695908 3711.7755 626.79493 -10590.321 0 310.05909 -0.00045311794 -0.00051539045 + 168280 -6245.1403 -6251.33 6.1897337 3712.6229 627.68464 -10591.638 0 296.64677 -0.00041292009 -0.0004781625 + 168290 -6245.1269 -6250.9281 5.8011658 3712.5432 629.21317 -10592.684 0 278.02442 -0.00029338806 -0.00034926737 + 168300 -6245.1688 -6250.6912 5.5223933 3711.5689 631.02737 -10593.287 0 264.66407 -0.00012124591 -0.00016280871 + 168310 -6245.1523 -6250.8061 5.6538339 3709.85 632.74759 -10593.404 0 270.96345 7.598963e-05 4.1656273e-05 + 168320 -6245.021 -6251.3158 6.2947857 3707.8083 634.09215 -10593.216 0 301.68145 0.00026740301 0.00022755454 + 168330 -6244.8243 -6252.0528 7.2285434 3706.1284 634.94478 -10593.126 0 346.43236 0.00041984658 0.00036702912 + 168340 -6244.6675 -6252.76 8.0925371 3705.4919 635.33598 -10593.588 0 387.83978 0.00050744164 0.00044418841 + 168350 -6244.626 -6253.2522 8.6261856 3706.2637 635.37113 -10594.887 0 413.41521 0.00052118544 0.00045582035 + 168360 -6244.7094 -6253.4667 8.7572746 3708.3669 635.15884 -10596.992 0 419.69773 0.00046913255 0.00040914939 + 168370 -6244.8839 -6253.4159 8.5319793 3711.3574 634.76738 -10599.541 0 408.90032 0.00036822692 0.00031720181 + 168380 -6245.1025 -6253.1479 8.0454173 3714.5697 634.2114 -10601.929 0 385.58154 0.00023642945 0.00019414178 + 168390 -6245.3153 -6252.7499 7.4345827 3717.2599 633.4682 -10603.478 0 356.30692 9.0265243e-05 5.3205087e-05 + 168400 -6245.481 -6252.3405 6.8594801 3718.763 632.52269 -10603.626 0 328.74477 -5.4470566e-05 -9.2243429e-05 + 168410 -6245.5901 -6252.0181 6.4279765 3718.658 631.42277 -10602.099 0 308.0647 -0.00018243392 -0.00022637764 + 168420 -6245.6744 -6251.8167 6.1423228 3716.8549 630.30894 -10598.981 0 294.37457 -0.00027848819 -0.00032972279 + 168430 -6245.7786 -6251.7276 5.9490318 3713.5516 629.39181 -10594.671 0 285.11099 -0.00032627822 -0.00038072554 + 168440 -6245.919 -6251.7556 5.8365704 3709.1408 628.88442 -10589.781 0 279.7212 -0.00030895287 -0.00036095146 + 168450 -6246.0743 -6251.928 5.8536314 3704.193 628.92058 -10585.042 0 280.53886 -0.00021703671 -0.00026381832 + 168460 -6246.2141 -6252.2455 6.0314381 3699.498 629.48884 -10581.232 0 289.06036 -6.1351104e-05 -0.00010412792 + 168470 -6246.3272 -6252.6496 6.3224055 3696.0218 630.40439 -10579.076 0 303.00515 0.00011963454 7.777393e-05 + 168480 -6246.4214 -6253.0503 6.6288702 3694.6876 631.34267 -10579.081 0 317.69265 0.00026734895 0.00022349241 + 168490 -6246.509 -6253.3761 6.8670736 3696.0631 631.94497 -10581.384 0 329.1087 0.00032425354 0.00027619044 + 168500 -6246.604 -6253.5845 6.9805465 3700.1107 631.96594 -10585.661 0 334.54696 0.00025772195 0.00020438716 + 168510 -6246.7302 -6253.6362 6.9060184 3706.1081 631.39286 -10591.137 0 330.97515 7.506418e-05 1.8117425e-05 + 168520 -6246.9142 -6253.4922 6.5779215 3712.7499 630.47033 -10596.712 0 315.25091 -0.00017528897 -0.00023055702 + 168530 -6247.1533 -6253.1685 6.0151459 3718.404 629.6139 -10601.186 0 288.27954 -0.0004154271 -0.00046293404 + 168540 -6247.3947 -6252.784 5.3892516 3721.5254 629.25476 -10603.564 0 258.28318 -0.00056072837 -0.00059919286 + 168550 -6247.5691 -6252.5103 4.9412651 3721.1732 629.6811 -10603.365 0 236.81315 -0.00055031263 -0.00058562976 + 168560 -6247.6527 -6252.4534 4.8006515 3717.4201 630.92549 -10600.799 0 230.07416 -0.00037390405 -0.00041466124 + 168570 -6247.6909 -6252.591 4.9000587 3711.3927 632.72642 -10596.71 0 234.83831 -8.0120643e-05 -0.00013023755 + 168580 -6247.7607 -6252.8219 5.0612686 3704.8902 634.58328 -10592.295 0 242.56439 0.00023961202 0.00018428522 + 168590 -6247.9126 -6253.0605 5.1479159 3699.7686 635.90261 -10588.732 0 246.71702 0.00048379666 0.00043238926 + 168600 -6248.1382 -6253.2934 5.1551266 3697.3549 636.19195 -10586.84 0 247.06259 0.00057563212 0.00053548107 + 168610 -6248.3805 -6253.5671 5.1866052 3698.0896 635.23029 -10586.887 0 248.57122 0.00048633748 0.00045743216 + 168620 -6248.5796 -6253.9247 5.3451 3701.4884 633.15391 -10588.567 0 256.16718 0.00023999151 0.00021446833 + 168630 -6248.7243 -6254.3323 5.6080778 3706.3935 630.43109 -10591.157 0 268.77056 -9.8699513e-05 -0.00013118699 + 168640 -6248.8725 -6254.6562 5.7837295 3711.3725 627.73267 -10593.761 0 277.18877 -0.00044588462 -0.00049006578 + 168650 -6249.1114 -6254.7297 5.6182551 3715.0921 625.73175 -10595.554 0 269.25831 -0.00072019658 -0.0007705882 + 168660 -6249.4747 -6254.4866 5.0118999 3716.5682 624.89261 -10595.947 0 240.19836 -0.00085955277 -0.00090432037 + 168670 -6249.895 -6254.0491 4.1540798 3715.3302 625.32927 -10594.709 0 199.08681 -0.00083387937 -0.00086486738 + 168680 -6250.2535 -6253.6637 3.4102002 3711.5716 626.79457 -10592.03 0 163.43593 -0.00065486386 -0.00067455276 + 168690 -6250.4782 -6253.526 3.0477429 3706.2246 628.79308 -10588.544 0 146.06494 -0.00037770919 -0.00039649936 + 168700 -6250.5897 -6253.6586 3.0689098 3700.7872 630.75183 -10585.198 0 147.07938 -8.751644e-05 -0.00011477741 + 168710 -6250.6645 -6253.9404 3.2758857 3696.8596 632.18235 -10582.982 0 156.99883 0.00012860157 9.1127483e-05 + 168720 -6250.7711 -6254.2227 3.4515962 3695.5872 632.79953 -10582.609 0 165.41986 0.0002118273 0.00016987528 + 168730 -6250.9297 -6254.4198 3.4901144 3697.282 632.57985 -10584.282 0 167.26586 0.00015060703 0.00011245181 + 168740 -6251.1115 -6254.5321 3.4206307 3701.3658 631.74475 -10587.643 0 163.93581 -1.8849254e-05 -4.7920568e-05 + 168750 -6251.2623 -6254.6165 3.3542131 3706.617 630.67134 -10591.905 0 160.75271 -0.0002292048 -0.00024993592 + 168760 -6251.3352 -6254.7313 3.3960196 3711.6052 629.76068 -10596.097 0 162.75631 -0.00040824088 -0.00042663958 + 168770 -6251.3188 -6254.8845 3.5656971 3715.1462 629.31029 -10599.341 0 170.88821 -0.00050419644 -0.0005274115 + 168780 -6251.2442 -6255.0193 3.7750481 3716.6147 629.43078 -10601.065 0 180.92149 -0.00050053497 -0.0005318268 + 168790 -6251.1649 -6255.0544 3.8895666 3716.01 630.02687 -10601.091 0 186.40985 -0.00041542315 -0.00045175197 + 168800 -6251.1161 -6254.9538 3.8377266 3713.7949 630.84321 -10599.592 0 183.92539 -0.00028849357 -0.00032280234 + 168810 -6251.0867 -6254.7659 3.6792424 3710.6389 631.55839 -10596.963 0 176.32994 -0.00016315388 -0.00018979936 + 168820 -6251.0259 -6254.5929 3.5669285 3707.2161 631.89648 -10593.705 0 170.94723 -7.3064003e-05 -9.2063075e-05 + 168830 -6250.8798 -6254.5121 3.632249 3704.1187 631.71665 -10590.347 0 174.07775 -3.6450886e-05 -5.3240798e-05 + 168840 -6250.6252 -6254.5198 3.894519 3701.8269 631.04915 -10587.396 0 186.6472 -5.6404341e-05 -7.779205e-05 + 168850 -6250.2796 -6254.5383 4.2587757 3700.6628 630.06957 -10585.271 0 204.10443 -0.00012379455 -0.00015352744 + 168860 -6249.888 -6254.4681 4.5800932 3700.7204 629.03057 -10584.219 0 219.50376 -0.00022109786 -0.00025779576 + 168870 -6249.5016 -6254.2407 4.7391627 3701.8189 628.18177 -10584.241 0 227.12727 -0.00032646178 -0.00036451165 + 168880 -6249.1521 -6253.8544 4.7022862 3703.5188 627.70351 -10585.077 0 225.35994 -0.00041722856 -0.00045008461 + 168890 -6248.8319 -6253.3854 4.5534729 3705.2202 627.66871 -10586.274 0 218.22797 -0.00047294786 -0.00049767669 + 168900 -6248.4947 -6252.9612 4.4664432 3706.3454 628.04017 -10587.347 0 214.05702 -0.00047939421 -0.00050000033 + 168910 -6248.0915 -6252.6852 4.593707 3706.5674 628.70398 -10587.957 0 220.15621 -0.00043427511 -0.00046049374 + 168920 -6247.6266 -6252.5561 4.9294894 3705.9712 629.52654 -10588.054 0 236.24879 -0.00035119739 -0.00039175762 + 168930 -6247.1787 -6252.46 5.2813701 3705.0092 630.40666 -10587.876 0 253.11289 -0.00025547804 -0.00031023691 + 168940 -6246.8476 -6252.2751 5.4275255 3704.2225 631.2946 -10587.792 0 260.11747 -0.00017007763 -0.00022855264 + 168950 -6246.6656 -6252.0026 5.3370745 3703.9135 632.17201 -10588.088 0 255.78256 -0.00010116945 -0.00015020838 + 168960 -6246.5641 -6251.7862 5.2220463 3704.0353 633.01283 -10588.834 0 250.26976 -3.7489018e-05 -7.1533765e-05 + 168970 -6246.4329 -6251.7921 5.3592205 3704.3719 633.75009 -10589.914 0 256.84392 3.3987303e-05 9.3306244e-06 + 168980 -6246.2044 -6252.0756 5.8712004 3704.8053 634.26251 -10591.143 0 281.38086 0.000109861 8.294857e-05 + 168990 -6245.8894 -6252.553 6.6635986 3705.4208 634.39052 -10592.364 0 319.35704 0.00016553554 0.0001266255 + 169000 -6245.5541 -6253.0695 7.5154439 3706.3939 633.9884 -10593.452 0 360.18224 0.00016707533 0.00011304182 + 169010 -6245.2786 -6253.4743 8.195671 3707.7779 633.00243 -10594.255 0 392.78254 9.0699118e-05 2.5352002e-05 + 169020 -6245.1259 -6253.655 8.5291229 3709.3364 631.53771 -10594.529 0 408.76343 -6.1465714e-05 -0.000129533 + 169030 -6245.1205 -6253.5538 8.4333213 3710.5084 629.87043 -10593.933 0 404.17208 -0.00025603227 -0.0003168027 + 169040 -6245.2319 -6253.1941 7.9622064 3710.5419 628.38735 -10592.123 0 381.59361 -0.00043510576 -0.00048176779 + 169050 -6245.3765 -6252.6964 7.3199117 3708.7978 627.47187 -10588.966 0 350.81124 -0.0005346655 -0.00056826215 + 169060 -6245.4603 -6252.2265 6.7662533 3705.1421 627.3772 -10584.746 0 324.27682 -0.00051145223 -0.00054156529 + 169070 -6245.4464 -6251.8841 6.437725 3700.2257 628.12577 -10580.236 0 308.5319 -0.00036811472 -0.00040675138 + 169080 -6245.3852 -6251.6381 6.2529501 3695.4061 629.46763 -10576.512 0 299.67645 -0.00016018633 -0.0002125285 + 169090 -6245.3698 -6251.3923 6.0224852 3692.2527 630.92978 -10574.575 0 288.63128 2.4825338e-05 -3.529098e-05 + 169100 -6245.4548 -6251.1142 5.6594427 3691.8791 631.96857 -10574.962 0 271.23225 0.00010709267 5.1626786e-05 + 169110 -6245.6122 -6250.8998 5.2875388 3694.4686 632.18065 -10577.549 0 253.40853 5.0368091e-05 9.0039845e-06 + 169120 -6245.7535 -6250.921 5.167506 3699.2106 631.47616 -10581.608 0 247.65588 -0.00012428234 -0.00015207044 + 169130 -6245.7913 -6251.3045 5.5132381 3704.6366 630.13106 -10586.072 0 264.22531 -0.00035046482 -0.00037508101 + 169140 -6245.7032 -6252.0189 6.3156795 3709.1724 628.6979 -10589.889 0 302.6828 -0.00054485929 -0.00057940495 + 169150 -6245.5616 -6252.8446 7.283014 3711.6606 627.8103 -10592.316 0 349.04289 -0.00063780182 -0.00068815224 + 169160 -6245.4988 -6253.4684 7.969632 3711.6469 627.9451 -10593.06 0 381.94948 -0.00059419752 -0.00065345694 + 169170 -6245.6112 -6253.6671 8.0559664 3709.3704 629.22326 -10592.261 0 386.08711 -0.00041996722 -0.00047287584 + 169180 -6245.8715 -6253.4546 7.5830872 3705.5761 631.33492 -10590.366 0 363.42409 -0.00015711129 -0.00019250543 + 169190 -6246.1427 -6253.0633 6.9205614 3701.3259 633.63569 -10588.025 0 331.67213 0.00012626157 0.00010501839 + 169200 -6246.2934 -6252.7591 6.4657293 3697.8589 635.38052 -10585.998 0 309.87403 0.00034856457 0.00032493762 + 169210 -6246.3105 -6252.6437 6.3332312 3696.3717 635.99239 -10585.008 0 303.52398 0.00043312171 0.00039020946 + 169220 -6246.3102 -6252.6102 6.3000465 3697.6142 635.25697 -10585.481 0 301.93358 0.00033373007 0.00026815016 + 169230 -6246.442 -6252.4777 6.0356783 3701.4322 633.3798 -10587.29 0 289.26357 5.9750186e-05 -1.459242e-05 + 169240 -6246.7665 -6252.1837 5.417259 3706.5761 630.8994 -10589.659 0 259.62545 -0.00031462886 -0.00037605574 + 169250 -6247.2034 -6251.8772 4.6737575 3711.0247 628.49637 -10591.398 0 223.99268 -0.00066964633 -0.00070447471 + 169260 -6247.5918 -6251.8304 4.238651 3712.7739 626.77172 -10591.376 0 203.13994 -0.00088546715 -0.0008981419 + 169270 -6247.8096 -6252.2309 4.421315 3710.7396 626.07165 -10589.042 0 211.89422 -0.00089350471 -0.00090351772 + 169280 -6247.8615 -6253.014 5.1524801 3705.3065 626.407 -10584.728 0 246.93576 -0.00070674151 -0.00073486094 + 169290 -6247.8763 -6253.8742 5.9978807 3698.2216 627.47819 -10579.574 0 287.4521 -0.00041311065 -0.00046712751 + 169300 -6248.0172 -6254.447 6.4297505 3691.8734 628.79091 -10575.111 0 308.14972 -0.00013572124 -0.00020567003 + 169310 -6248.3646 -6254.5267 6.1620472 3688.3144 629.82994 -10572.671 0 295.31988 1.9910917e-05 -4.5689659e-05 + 169320 -6248.8574 -6254.1766 5.3192137 3688.4954 630.23725 -10572.909 0 254.92657 6.3731288e-06 -3.8166072e-05 + 169330 -6249.3394 -6253.6747 4.3352254 3692.0423 629.93239 -10575.649 0 207.76833 -0.00015439156 -0.00017535094 + 169340 -6249.6692 -6253.3349 3.665681 3697.6055 629.13284 -10580.073 0 175.68 -0.00038975664 -0.00039931623 + 169350 -6249.8079 -6253.3168 3.5089432 3703.5161 628.26859 -10585.102 0 168.16825 -0.00061142825 -0.00062704308 + 169360 -6249.8303 -6253.5471 3.7167666 3708.3727 627.81965 -10589.739 0 178.12831 -0.00074849706 -0.00078046341 + 169370 -6249.8619 -6253.8087 3.9468039 3711.3217 628.1295 -10593.26 0 189.15299 -0.00076564194 -0.00081060896 + 169380 -6249.9881 -6253.9247 3.9366407 3712.0515 629.26349 -10595.24 0 188.66591 -0.00066444936 -0.0007092822 + 169390 -6250.1989 -6253.8879 3.6889632 3710.6816 630.97193 -10595.541 0 176.79582 -0.00047470039 -0.00050711698 + 169400 -6250.407 -6253.8458 3.4387525 3707.6869 632.77486 -10594.307 0 164.80432 -0.00024396572 -0.00026158632 + 169410 -6250.5167 -6253.9675 3.4507928 3703.8596 634.1307 -10591.958 0 165.38135 -2.8942402e-05 -4.041693e-05 + 169420 -6250.4911 -6254.2999 3.808897 3700.2199 634.61967 -10589.14 0 182.54372 0.00011350816 9.5413931e-05 + 169430 -6250.3744 -6254.717 4.3426915 3697.7929 634.07644 -10586.586 0 208.12614 0.00013891767 0.00010695243 + 169440 -6250.2588 -6254.9994 4.7405428 3697.2713 632.62975 -10584.9 0 227.19341 3.0768388e-05 -1.1450037e-05 + 169450 -6250.2139 -6254.9892 4.775285 3698.7042 630.64007 -10584.333 0 228.85845 -0.00018798164 -0.00022900668 + 169460 -6250.2285 -6254.7058 4.4772908 3701.4106 628.56513 -10584.682 0 214.5769 -0.00045748691 -0.00048740526 + 169470 -6250.2165 -6254.3254 4.1088743 3704.2312 626.81523 -10585.372 0 196.92031 -0.00070171369 -0.00072038063 + 169480 -6250.0824 -6254.0358 3.9534624 3706.0231 625.65828 -10585.717 0 189.4721 -0.00085835249 -0.0008756335 + 169490 -6249.79 -6253.8928 4.1028543 3706.1221 625.19515 -10585.21 0 196.6318 -0.00090090898 -0.0009289707 + 169500 -6249.3787 -6253.8005 4.421788 3704.514 625.38466 -10583.699 0 211.91689 -0.00084133395 -0.00088577549 + 169510 -6248.9254 -6253.6175 4.6921177 3701.6795 626.08792 -10581.385 0 224.87261 -0.00071550857 -0.00077218643 + 169520 -6248.492 -6253.2797 4.7876332 3698.2929 627.11566 -10578.688 0 229.45025 -0.00056351221 -0.00062222372 + 169530 -6248.096 -6252.8409 4.7449077 3694.9825 628.27386 -10576.097 0 227.4026 -0.00041552071 -0.00046657923 + 169540 -6247.7121 -6252.4277 4.7155225 3692.2401 629.40325 -10574.071 0 225.9943 -0.00028694449 -0.00032615269 + 169550 -6247.293 -6252.1653 4.8723281 3690.4374 630.40412 -10573.007 0 233.5093 -0.00018068519 -0.0002109855 + 169560 -6246.7935 -6252.1271 5.3335669 3689.8736 631.23914 -10573.24 0 255.61445 -9.3413117e-05 -0.00012379712 + 169570 -6246.1993 -6252.3061 6.1068816 3690.8092 631.91447 -10575.03 0 292.67603 -2.4090491e-05 -6.619931e-05 + 169580 -6245.557 -6252.5934 7.036401 3693.4594 632.44944 -10578.502 0 337.22381 1.8001187e-05 -4.4108566e-05 + 169590 -6244.9834 -6252.786 7.8025874 3697.8918 632.84726 -10583.525 0 373.94377 1.2276267e-05 -6.790398e-05 + 169600 -6244.6115 -6252.681 8.0694865 3703.7936 633.077 -10589.552 0 386.73507 -6.0769767e-05 -0.0001449969 + 169610 -6244.4888 -6252.2346 7.7457488 3710.2259 633.07891 -10595.539 0 371.21975 -0.00019824544 -0.00026829461 + 169620 -6244.5215 -6251.6427 7.1212111 3715.6489 632.80742 -10600.099 0 341.2884 -0.00036236045 -0.00040931112 + 169630 -6244.5377 -6251.2215 6.6837718 3718.3888 632.29965 -10601.91 0 320.32385 -0.00049179486 -0.00052335049 + 169640 -6244.4203 -6251.1692 6.7488412 3717.3476 631.71441 -10600.231 0 323.44234 -0.00053157491 -0.00056604562 + 169650 -6244.1873 -6251.4254 7.2380699 3712.5101 631.28534 -10595.221 0 346.88892 -0.00046048349 -0.000512735 + 169660 -6243.9633 -6251.7411 7.7777389 3704.9654 631.19332 -10587.9 0 372.75289 -0.00029985914 -0.00037087548 + 169670 -6243.8795 -6251.8737 7.9942202 3696.4979 631.43384 -10579.805 0 383.12789 -0.00010299016 -0.00018019227 + 169680 -6243.9802 -6251.746 7.7658646 3689.0093 631.76902 -10572.524 0 372.18381 6.5263914e-05 -1.415969e-06 + 169690 -6244.1986 -6251.4746 7.2760357 3684.0182 631.80375 -10567.297 0 348.70846 0.00014781681 0.00010117646 + 169700 -6244.4077 -6251.2791 6.8713944 3682.3714 631.15505 -10564.806 0 329.31578 0.00010799369 7.7596572e-05 + 169710 -6244.5038 -6251.3369 6.8330743 3684.1784 629.63916 -10565.154 0 327.47926 -6.4277406e-05 -9.3173487e-05 + 169720 -6244.4752 -6251.6616 7.1864364 3688.8926 627.39776 -10567.952 0 344.41436 -0.00035000264 -0.00039344732 + 169730 -6244.4172 -6252.0803 7.6630646 3695.4326 624.90593 -10572.419 0 367.25705 -0.00070051336 -0.00076455611 + 169740 -6244.4701 -6252.3451 7.875047 3702.2864 622.84544 -10577.477 0 377.41644 -0.0010397177 -0.0011156225 + 169750 -6244.7096 -6252.3161 7.6065451 3707.6823 621.88685 -10581.885 0 364.54832 -0.0012742468 -0.0013449671 + 169760 -6245.0841 -6252.0644 6.9803385 3709.9789 622.47091 -10584.514 0 334.53699 -0.0013168841 -0.0013700786 + 169770 -6245.4608 -6251.8048 6.3440143 3708.2611 624.66932 -10584.735 0 304.04076 -0.0011200454 -0.0011566442 + 169780 -6245.7322 -6251.7293 5.99706 3702.8545 628.14829 -10582.732 0 287.41277 -0.00070410643 -0.00073605212 + 169790 -6245.8842 -6251.8947 6.010493 3695.4076 632.22179 -10579.524 0 288.05655 -0.00016324285 -0.00020402871 + 169800 -6245.9848 -6252.229 6.2442004 3688.4187 635.9881 -10576.636 0 299.25712 0.00035777447 0.00030171769 + 169810 -6246.1294 -6252.6028 6.4734489 3684.3908 638.54796 -10575.542 0 310.24399 0.00070830685 0.00064061954 + 169820 -6246.3883 -6252.8951 6.5068484 3684.9504 639.26405 -10577.11 0 311.84468 0.00078191527 0.0007138189 + 169830 -6246.7706 -6253.0388 6.2682162 3690.2419 637.96866 -10581.249 0 300.40809 0.00055391359 0.00049803061 + 169840 -6247.2105 -6253.0619 5.8514347 3698.8119 635.02362 -10586.897 0 280.43358 9.19307e-05 5.4369372e-05 + 169850 -6247.5932 -6253.0839 5.4907083 3708.0719 631.20514 -10592.361 0 263.14555 -0.00046715262 -0.00049237775 + 169860 -6247.8317 -6253.2149 5.3831973 3715.2174 627.47029 -10595.903 0 257.99302 -0.00096689961 -0.00099526127 + 169870 -6247.9437 -6253.4224 5.4787048 3718.2043 624.69069 -10596.317 0 262.57027 -0.0012853161 -0.0013302151 + 169880 -6248.0442 -6253.5294 5.485262 3716.3057 623.41983 -10593.255 0 262.88453 -0.0013673417 -0.0014287307 + 169890 -6248.2442 -6253.3835 5.1393584 3710.0772 623.74995 -10587.211 0 246.30689 -0.0012261543 -0.0012903342 + 169900 -6248.5546 -6253.0221 4.4675218 3700.9742 625.31032 -10579.307 0 214.10871 -0.0009245682 -0.00097528537 + 169910 -6248.8875 -6252.6666 3.7791755 3690.9432 627.41508 -10571.025 0 181.11929 -0.00055276847 -0.00058315331 + 169920 -6249.1339 -6252.5699 3.4359997 3682.0837 629.3 -10563.954 0 164.67239 -0.00020886693 -0.00022506601 + 169930 -6249.2364 -6252.8568 3.6203543 3676.3151 630.35652 -10559.528 0 173.50769 1.9293737e-05 3.3875257e-06 + 169940 -6249.2141 -6253.4585 4.2443611 3675.0017 630.29412 -10558.754 0 203.4136 7.2210821e-05 4.4043888e-05 + 169950 -6249.148 -6254.1526 5.0046018 3678.5945 629.1997 -10561.947 0 239.8486 -6.6016291e-05 -0.0001101969 + 169960 -6249.1384 -6254.6735 5.5350404 3686.4128 627.4884 -10568.575 0 265.27019 -0.00036004758 -0.00041301012 + 169970 -6249.2459 -6254.8463 5.6003997 3696.6793 625.76149 -10577.287 0 268.40258 -0.0007279374 -0.00077604235 + 169980 -6249.4445 -6254.6818 5.2373635 3706.8857 624.61581 -10586.183 0 251.00385 -0.0010606329 -0.0010932602 + 169990 -6249.6316 -6254.3613 4.7296566 3714.4636 624.47124 -10593.296 0 226.67168 -0.0012542015 -0.0012719394 + 170000 -6249.7021 -6254.0955 4.3934004 3717.5829 625.47204 -10597.15 0 210.5564 -0.0012452675 -0.0012599374 + 170010 -6249.6303 -6253.9606 4.3303059 3715.7479 627.47406 -10597.183 0 207.53256 -0.0010342135 -0.0010597485 + 170020 -6249.4854 -6253.8598 4.3743313 3709.8796 630.09325 -10593.833 0 209.6425 -0.00068346487 -0.00072514913 + 170030 -6249.3667 -6253.645 4.2782468 3701.8595 632.79137 -10588.296 0 205.03759 -0.00029152967 -0.00034276949 + 170040 -6249.3227 -6253.2714 3.9486446 3693.8259 634.99091 -10582.088 0 189.2412 4.2458902e-05 -5.9498714e-06 + 170050 -6249.322 -6252.8461 3.5241098 3687.5786 636.20507 -10576.63 0 168.89512 0.0002464533 0.00020975715 + 170060 -6249.2808 -6252.5559 3.2751533 3684.2627 636.14766 -10572.966 0 156.96372 0.00028712812 0.00026192593 + 170070 -6249.1088 -6252.5483 3.4395362 3684.3028 634.78763 -10571.639 0 164.84187 0.0001673279 0.00014493258 + 170080 -6248.7475 -6252.8417 4.0942502 3687.4773 632.33988 -10572.659 0 196.21944 -8.3938903e-05 -0.00011525687 + 170090 -6248.1998 -6253.3028 5.1029354 3693.0278 629.20983 -10575.54 0 244.56129 -0.00042224117 -0.00047001614 + 170100 -6247.545 -6253.7015 6.1564363 3699.7549 625.91371 -10579.37 0 295.05097 -0.00079473538 -0.00085682613 + 170110 -6246.9077 -6253.8328 6.9250798 3706.1137 622.98651 -10582.933 0 331.88868 -0.0011422895 -0.001207132 + 170120 -6246.371 -6253.6476 7.2766451 3710.392 620.88832 -10584.928 0 348.73766 -0.0014002236 -0.0014548045 + 170130 -6245.9062 -6253.2915 7.3853379 3711.0687 619.93363 -10584.294 0 353.94683 -0.0015054727 -0.0015465707 + 170140 -6245.4129 -6252.9752 7.5623238 3707.358 620.2672 -10580.6 0 362.42899 -0.0014155494 -0.0014538311 + 170150 -6244.8483 -6252.7619 7.9135504 3699.7101 621.87333 -10574.345 0 379.26174 -0.0011322279 -0.0011830441 + 170160 -6244.3004 -6252.4971 8.1966744 3689.8752 624.57262 -10566.945 0 392.83063 -0.00071140922 -0.00078011838 + 170170 -6243.9083 -6251.9851 8.0768423 3680.3631 627.99176 -10560.34 0 387.0876 -0.00024730605 -0.00032435268 + 170180 -6243.7211 -6251.2241 7.5029953 3673.6015 631.56074 -10556.386 0 359.58563 0.00015925055 8.8749586e-05 + 170190 -6243.6553 -6250.4416 6.7863156 3671.2807 634.60277 -10556.325 0 325.23832 0.00042746847 0.00037051025 + 170200 -6243.5813 -6249.9146 6.333335 3674.0825 636.5113 -10560.508 0 303.52895 0.0005083987 0.00045995753 + 170210 -6243.429 -6249.7662 6.3371498 3681.6679 636.93804 -10568.372 0 303.71178 0.00038804472 0.00033766966 + 170220 -6243.2195 -6249.9177 6.6982453 3692.7392 635.90926 -10578.566 0 321.0175 9.091461e-05 3.1981724e-05 + 170230 -6243.0181 -6250.2035 7.1853568 3705.1653 633.82811 -10589.197 0 344.36262 -0.00031628392 -0.00038294935 + 170240 -6242.8735 -6250.5085 7.6350873 3716.3021 631.36464 -10598.175 0 365.91622 -0.00073089019 -0.00080005516 + 170250 -6242.7972 -6250.8059 8.0087095 3723.5691 629.26425 -10603.639 0 383.82229 -0.0010381118 -0.0011047104 + 170260 -6242.7805 -6251.1112 8.3307 3725.1209 628.12579 -10604.358 0 399.25389 -0.0011459795 -0.0012074493 + 170270 -6242.8101 -6251.4374 8.6273033 3720.3781 628.21988 -10600.035 0 413.46878 -0.0010161637 -0.001072946 + 170280 -6242.8799 -6251.7669 8.8870502 3710.2742 629.41385 -10591.455 0 425.91731 -0.00067948899 -0.0007342274 + 170290 -6243.0019 -6252.0387 9.0368247 3697.1271 631.22072 -10580.387 0 433.09535 -0.00023111981 -0.00028649964 + 170300 -6243.1972 -6252.1759 8.9786066 3684.0768 632.94101 -10569.194 0 430.3052 0.00019526883 0.0001381675 + 170310 -6243.4703 -6252.1441 8.6738752 3674.2152 633.85859 -10560.218 0 415.70077 0.00046728318 0.00040831455 + 170320 -6243.7997 -6251.9774 8.1776832 3669.7275 633.45566 -10555.161 0 391.92046 0.00049356352 0.00043208429 + 170330 -6244.162 -6251.7421 7.580167 3671.3466 631.59304 -10554.682 0 363.28414 0.0002504933 0.00018607109 + 170340 -6244.5543 -6251.4914 6.9370704 3678.2385 628.58479 -10558.315 0 332.46334 -0.00021038948 -0.00027544146 + 170350 -6244.9821 -6251.2722 6.2901257 3688.274 625.12189 -10564.668 0 301.45812 -0.00077461172 -0.0008348622 + 170360 -6245.4216 -6251.1763 5.7547169 3698.5953 622.06787 -10571.839 0 275.79832 -0.0012941905 -0.0013455159 + 170370 -6245.8152 -6251.34 5.5248234 3706.3982 620.21115 -10577.949 0 264.78054 -0.0016293669 -0.001674464 + 170380 -6246.1213 -6251.834 5.7126487 3709.7717 620.06038 -10581.666 0 273.78218 -0.0016919829 -0.0017397559 + 170390 -6246.3685 -6252.5488 6.1803571 3708.2689 621.721 -10582.539 0 296.19739 -0.0014735045 -0.0015312723 + 170400 -6246.6374 -6253.2311 6.5936841 3702.9156 624.85933 -10581.006 0 316.00634 -0.0010439679 -0.0011105706 + 170410 -6246.9849 -6253.6546 6.6696715 3695.6964 628.77066 -10578.122 0 319.64808 -0.00052381468 -0.00059093088 + 170420 -6247.3924 -6253.7517 6.3593009 3688.8499 632.56215 -10575.164 0 304.77338 -4.4648138e-05 -0.00010404565 + 170430 -6247.7889 -6253.6035 5.8145243 3684.267 635.40547 -10573.276 0 278.66463 0.00028508508 0.00023599302 + 170440 -6248.1087 -6253.3459 5.2371981 3683.0916 636.7626 -10573.2 0 250.99592 0.00040244781 0.00036049636 + 170450 -6248.3243 -6253.0972 4.772882 3685.5185 636.5018 -10575.117 0 228.74329 0.00029973907 0.00025916073 + 170460 -6248.443 -6252.9363 4.4933084 3690.8038 634.88188 -10578.622 0 215.34455 2.1640453e-05 -2.2977521e-05 + 170470 -6248.4928 -6252.8981 4.4053462 3697.5078 632.43577 -10582.842 0 211.12891 -0.00035024127 -0.00040201432 + 170480 -6248.5162 -6252.9596 4.4433961 3703.9118 629.80374 -10586.675 0 212.95247 -0.00072194362 -0.00077990334 + 170490 -6248.5613 -6253.0494 4.4881115 3708.4562 627.56156 -10589.067 0 215.09549 -0.0010121179 -0.0010703922 + 170500 -6248.6494 -6253.1122 4.4627883 3710.0477 626.08243 -10589.242 0 213.88185 -0.0011682267 -0.0012189223 + 170510 -6248.745 -6253.1814 4.4363655 3708.2245 625.46975 -10586.876 0 212.61553 -0.0011720003 -0.0012117196 + 170520 -6248.7739 -6253.3525 4.5785748 3703.2707 625.5821 -10582.205 0 219.431 -0.0010396141 -0.0010736759 + 170530 -6248.693 -6253.6561 4.963091 3696.2622 626.13102 -10576.049 0 237.85917 -0.00081950267 -0.00085804821 + 170540 -6248.5405 -6253.9797 5.4392464 3688.876 626.797 -10569.653 0 260.67921 -0.00058248115 -0.00063132982 + 170550 -6248.4051 -6254.1441 5.738967 3682.8957 627.31841 -10564.358 0 275.0435 -0.00040019046 -0.00045566508 + 170560 -6248.3484 -6254.053 5.7045725 3679.6381 627.54389 -10561.235 0 273.39512 -0.00031974349 -0.00037217096 + 170570 -6248.3577 -6253.766 5.4083531 3679.6038 627.45329 -10560.823 0 259.19863 -0.00034896424 -0.00039081841 + 170580 -6248.3627 -6253.4482 5.0854215 3682.4729 627.14376 -10563.065 0 243.72193 -0.00045997085 -0.00049175308 + 170590 -6248.2894 -6253.256 4.9666463 3687.3562 626.78197 -10567.394 0 238.02956 -0.0006070186 -0.00063724813 + 170600 -6248.1096 -6253.2369 5.1273671 3693.1379 626.54446 -10572.919 0 245.7322 -0.00074729023 -0.00078711653 + 170610 -6247.8651 -6253.2931 5.4279674 3698.7657 626.57533 -10578.634 0 260.13865 -0.00085364639 -0.00090920704 + 170620 -6247.6486 -6253.2387 5.5900311 3703.3942 626.96927 -10583.602 0 267.90566 -0.00091429238 -0.00098155221 + 170630 -6247.5406 -6252.9379 5.3972189 3706.3743 627.76258 -10587.075 0 258.66502 -0.00092280799 -0.00098945495 + 170640 -6247.5397 -6252.4363 4.8966159 3707.1986 628.91911 -10588.554 0 234.67331 -0.000869126 -0.00092375293 + 170650 -6247.5544 -6251.9616 4.4072104 3705.5763 630.3232 -10587.861 0 211.21825 -0.00074197758 -0.00078363081 + 170660 -6247.4789 -6251.7596 4.2807089 3701.6779 631.79645 -10585.234 0 205.15559 -0.00054302904 -0.00058205748 + 170670 -6247.2824 -6251.908 4.6255646 3696.3376 633.12806 -10581.374 0 221.68301 -0.00030026759 -0.00034930403 + 170680 -6247.0265 -6252.2882 5.2616851 3690.9323 634.09386 -10577.314 0 252.16947 -6.7184153e-05 -0.00013117538 + 170690 -6246.8013 -6252.7133 5.912035 3686.93 634.467 -10574.11 0 283.33789 9.3145262e-05 1.8968063e-05 + 170700 -6246.6567 -6253.0558 6.3990555 3685.3842 634.05069 -10572.491 0 306.67865 0.00012873128 5.3326923e-05 + 170710 -6246.5872 -6253.27 6.6828642 3686.6234 632.74574 -10572.639 0 320.28035 1.4638126e-05 -5.5118787e-05 + 170720 -6246.5596 -6253.3528 6.7932175 3690.186 630.62266 -10574.162 0 325.5691 -0.00023843034 -0.00030024156 + 170730 -6246.5393 -6253.3206 6.7812758 3694.9416 627.95268 -10576.215 0 324.99679 -0.00058290453 -0.00063861146 + 170740 -6246.4967 -6253.214 6.7172686 3699.3709 625.17662 -10577.762 0 321.9292 -0.00094236876 -0.00099689681 + 170750 -6246.4171 -6253.0812 6.66404 3702.0016 622.8245 -10577.907 0 319.37819 -0.001230684 -0.0012901334 + 170760 -6246.3194 -6252.9272 6.6078057 3701.8929 621.40513 -10576.225 0 316.68312 -0.0013777757 -0.0014455043 + 170770 -6246.2545 -6252.7027 6.4481509 3698.945 621.27655 -10572.924 0 309.03157 -0.0013503337 -0.0014234045 + 170780 -6246.2599 -6252.3791 6.1192233 3693.8744 622.51992 -10568.773 0 293.26752 -0.0011578679 -0.0012286846 + 170790 -6246.313 -6252.0313 5.7183155 3687.9454 624.87391 -10564.851 0 274.05376 -0.00084628525 -0.00090940858 + 170800 -6246.3476 -6251.8011 5.4534604 3682.6719 627.78524 -10562.258 0 261.36042 -0.00048782047 -0.00054481729 + 170810 -6246.3218 -6251.7674 5.4456433 3679.5551 630.56973 -10561.892 0 260.98578 -0.00016920757 -0.00022588072 + 170820 -6246.2537 -6251.8812 5.6275407 3679.7409 632.61382 -10564.236 0 269.70333 2.7824189e-05 -3.1893909e-05 + 170830 -6246.187 -6252.0411 5.8540988 3683.594 633.54193 -10569.177 0 280.56126 5.3401033e-05 -7.8598985e-06 + 170840 -6246.1364 -6252.1998 6.0633998 3690.4317 633.3084 -10575.94 0 290.59214 -8.9721389e-05 -0.00014979875 + 170850 -6246.0832 -6252.3688 6.2856403 3698.6552 632.19658 -10583.221 0 301.24315 -0.00034604715 -0.00040475952 + 170860 -6246.0171 -6252.5409 6.5238145 3706.243 630.7195 -10589.503 0 312.65779 -0.00062843356 -0.00068705245 + 170870 -6245.9581 -6252.6579 6.6997686 3711.3308 629.44226 -10593.431 0 321.0905 -0.0008474591 -0.00090534554 + 170880 -6245.9256 -6252.6745 6.7489146 3712.6601 628.78646 -10594.121 0 323.44586 -0.00093666078 -0.00099149543 + 170890 -6245.9016 -6252.6215 6.7198519 3709.8678 628.89671 -10591.386 0 322.05301 -0.0008702383 -0.0009221133 + 170900 -6245.8468 -6252.5704 6.7235954 3703.6329 629.61809 -10585.821 0 322.23242 -0.00067261991 -0.00072612282 + 170910 -6245.7499 -6252.5467 6.7968461 3695.5773 630.57323 -10578.697 0 325.743 -0.00041451037 -0.00047533912 + 170920 -6245.6465 -6252.5054 6.8588622 3687.814 631.29324 -10571.613 0 328.71516 -0.00019064214 -0.00026036842 + 170930 -6245.5903 -6252.3864 6.7961575 3682.2607 631.36649 -10566.014 0 325.71 -8.5297525e-05 -0.00015949266 + 170940 -6245.6137 -6252.1706 6.5569446 3680.0291 630.57903 -10562.779 0 314.24558 -0.00014092168 -0.00021140245 + 170950 -6245.7095 -6251.8963 6.1868152 3681.1382 629.00449 -10562.039 0 296.5069 -0.00034291271 -0.00040200633 + 170960 -6245.8256 -6251.6592 5.8335359 3684.6116 626.99569 -10563.266 0 279.57577 -0.00062523839 -0.00067069343 + 170970 -6245.878 -6251.5905 5.7124857 3688.9022 625.07189 -10565.565 0 273.77437 -0.00089505459 -0.00093366266 + 170980 -6245.7974 -6251.7765 5.9791233 3692.5149 623.75035 -10568.042 0 286.55314 -0.0010686045 -0.0011144931 + 170990 -6245.5948 -6252.1549 6.5600696 3694.5826 623.38766 -10570.125 0 314.39534 -0.0011034694 -0.001169171 + 171000 -6245.3828 -6252.5034 7.1205365 3695.0963 624.07617 -10571.676 0 341.25606 -0.0010107199 -0.0010963139 + 171010 -6245.3074 -6252.5834 7.2759214 3694.6657 625.61843 -10572.868 0 348.70298 -0.00084074956 -0.00093095006 + 171020 -6245.4269 -6252.341 6.9140565 3694.0013 627.59131 -10573.934 0 331.36038 -0.00065308634 -0.00072721877 + 171030 -6245.6489 -6251.9805 6.3315978 3693.5085 629.48999 -10574.979 0 303.44569 -0.00049050308 -0.00053861774 + 171040 -6245.7977 -6251.817 6.0193219 3693.2603 630.90416 -10575.981 0 288.47968 -0.00037203421 -0.00040341283 + 171050 -6245.7561 -6252.0213 6.2651269 3693.254 631.64915 -10576.924 0 300.26004 -0.00030232518 -0.00033869565 + 171060 -6245.5572 -6252.4769 6.9197554 3693.6161 631.79146 -10577.885 0 331.6335 -0.00028267693 -0.00034180535 + 171070 -6245.3588 -6252.8667 7.5078868 3694.5318 631.56648 -10578.965 0 359.82006 -0.0003126286 -0.00039535633 + 171080 -6245.327 -6252.9033 7.5763366 3695.9869 631.24323 -10580.133 0 363.10056 -0.00038303273 -0.00047303676 + 171090 -6245.5129 -6252.5297 7.0168125 3697.5816 631.00565 -10581.117 0 336.28503 -0.00047017832 -0.00054594439 + 171100 -6245.8175 -6251.9596 6.1420099 3698.6062 630.8949 -10581.461 0 294.35958 -0.00054032721 -0.00059044674 + 171110 -6246.0687 -6251.5381 5.4694218 3698.3824 630.82103 -10580.742 0 262.12538 -0.0005657988 -0.00059672596 + 171120 -6246.1452 -6251.5136 5.3683923 3696.6812 630.62567 -10578.821 0 257.28348 -0.00054314772 -0.00057409722 + 171130 -6246.0582 -6251.8725 5.8143279 3693.9422 630.16456 -10575.979 0 278.65522 -0.00049976692 -0.00054851935 + 171140 -6245.9405 -6252.3556 6.4151514 3691.1099 629.37638 -10572.842 0 307.45005 -0.00048137649 -0.00055109092 + 171150 -6245.9505 -6252.6474 6.6969936 3689.1472 628.31168 -10570.106 0 320.95751 -0.00052533584 -0.00060208375 + 171160 -6246.1502 -6252.6062 6.4560062 3688.5139 627.11445 -10568.235 0 309.40804 -0.00063584871 -0.00069927724 + 171170 -6246.4531 -6252.3598 5.9067173 3688.9604 625.97399 -10567.294 0 283.08303 -0.00077863123 -0.00081791702 + 171180 -6246.6941 -6252.1874 5.4932669 3689.7844 625.07709 -10567.049 0 263.26817 -0.00090013497 -0.00092235238 + 171190 -6246.7635 -6252.2838 5.5203458 3690.3542 624.57662 -10567.215 0 264.56595 -0.00095791377 -0.00098202904 + 171200 -6246.686 -6252.6096 5.9235453 3690.494 624.5692 -10567.673 0 283.88953 -0.0009410114 -0.00098305744 + 171210 -6246.5912 -6252.9444 6.3531632 3690.4771 625.07245 -10568.494 0 304.47923 -0.00086906953 -0.00093079462 + 171220 -6246.6092 -6253.0706 6.461432 3690.7095 626.00987 -10569.79 0 309.66807 -0.00077519633 -0.00084417451 + 171230 -6246.7791 -6252.9268 6.147773 3691.3947 627.21948 -10571.541 0 294.63578 -0.00068639314 -0.00074590805 + 171240 -6247.0313 -6252.6345 5.6031877 3692.4017 628.49028 -10573.527 0 268.5362 -0.00061311855 -0.00065379977 + 171250 -6247.2437 -6252.4075 5.1637754 3693.3829 629.61462 -10575.405 0 247.47709 -0.00055161352 -0.00057720511 + 171260 -6247.323 -6252.4134 5.0904101 3694.0347 630.43905 -10576.887 0 243.96101 -0.00049484455 -0.0005192153 + 171270 -6247.2613 -6252.6676 5.4063736 3694.3255 630.89885 -10577.892 0 259.10376 -0.0004435847 -0.00048137807 + 171280 -6247.1392 -6253.0229 5.8836955 3694.5317 631.02364 -10578.578 0 281.9797 -0.00040960408 -0.0004664696 + 171290 -6247.0738 -6253.2669 6.1930752 3695.0408 630.90701 -10579.215 0 296.80691 -0.00040837743 -0.0004771985 + 171300 -6247.1371 -6253.2676 6.1304955 3696.0443 630.64842 -10579.96 0 293.80774 -0.00044675613 -0.00051278932 + 171310 -6247.3039 -6253.0618 5.7579041 3697.3408 630.29762 -10580.7 0 275.95107 -0.00051592923 -0.00056738013 + 171320 -6247.4749 -6252.8137 5.3387303 3698.4108 629.83866 -10581.063 0 255.86191 -0.00059614724 -0.00063206966 + 171330 -6247.5543 -6252.6801 5.1257972 3698.7091 629.22578 -10580.615 0 245.65696 -0.00066886789 -0.00069855407 + 171340 -6247.5109 -6252.7081 5.1971587 3697.9468 628.44442 -10579.099 0 249.07701 -0.00072517418 -0.0007608998 + 171350 -6247.3803 -6252.837 5.4567609 3696.1795 627.55552 -10576.572 0 261.5186 -0.00076466356 -0.00081435756 + 171360 -6247.2301 -6252.9619 5.7318454 3693.7201 626.69878 -10573.381 0 274.70219 -0.00078928796 -0.00085318253 + 171370 -6247.1267 -6252.9846 5.8578748 3690.9962 626.05465 -10570.035 0 280.74223 -0.00079899642 -0.0008699862 + 171380 -6247.1097 -6252.8493 5.7395933 3688.4192 625.77948 -10567.048 0 275.07352 -0.00079079012 -0.00085750025 + 171390 -6247.1689 -6252.5816 5.4127239 3686.2935 625.93887 -10564.814 0 259.4081 -0.00075979247 -0.0008120834 + 171400 -6247.2365 -6252.3037 5.0671714 3684.8035 626.47037 -10563.578 0 242.84729 -0.00070259379 -0.00073777311 + 171410 -6247.2142 -6252.184 4.9697723 3684.1011 627.19761 -10563.483 0 238.17937 -0.00062347266 -0.00064934409 + 171420 -6247.0278 -6252.327 5.2991955 3684.4283 627.89362 -10564.649 0 253.96718 -0.00054060501 -0.00057216477 + 171430 -6246.68 -6252.6739 5.9938998 3686.1401 628.36656 -10567.181 0 287.26131 -0.00048608349 -0.00053651718 + 171440 -6246.2654 -6253.0032 6.7378211 3689.5192 628.53067 -10571.053 0 322.91419 -0.00049462901 -0.00056580947 + 171450 -6245.92 -6253.0618 7.1418046 3694.4234 628.43375 -10575.919 0 342.27535 -0.00058237897 -0.00066205982 + 171460 -6245.7246 -6252.7522 7.0276535 3699.9931 628.23591 -10580.981 0 336.80459 -0.00072693461 -0.00079630623 + 171470 -6245.6359 -6252.2268 6.5909758 3704.7146 628.15596 -10585.097 0 315.87654 -0.00086517813 -0.00091227606 + 171480 -6245.5146 -6251.7948 6.2802035 3706.9407 628.40657 -10587.142 0 300.98259 -0.00091717089 -0.00094584567 + 171490 -6245.229 -6251.6995 6.4705548 3705.6396 629.12863 -10586.468 0 310.10529 -0.00082594098 -0.00085315647 + 171500 -6244.7522 -6251.9399 7.1876875 3700.9498 630.32804 -10583.218 0 344.47432 -0.00059035536 -0.00063389176 + 171510 -6244.1852 -6252.2708 8.085581 3694.2221 631.8277 -10578.321 0 387.50641 -0.00027197729 -0.00033784524 + 171520 -6243.6895 -6252.3753 8.6857985 3687.5237 633.26346 -10573.162 0 416.2722 2.7721343e-05 -5.1013429e-05 + 171530 -6243.3758 -6252.0729 8.6970852 3682.8652 634.15417 -10569.092 0 416.81312 0.00020695153 0.00013287637 + 171540 -6243.2312 -6251.4194 8.1881304 3681.5171 634.04704 -10566.984 0 392.42115 0.00019985317 0.0001434506 + 171550 -6243.1375 -6250.6592 7.521727 3683.6688 632.69459 -10567.023 0 360.48336 -4.4747586e-06 -4.3716979e-05 + 171560 -6242.9571 -6250.085 7.127922 3688.4867 630.19397 -10568.766 0 341.61001 -0.00036201053 -0.00039831376 + 171570 -6242.6261 -6249.8744 7.2482504 3694.4724 627.02851 -10571.375 0 347.37683 -0.00078803809 -0.0008404867 + 171580 -6242.2065 -6249.9862 7.7796985 3699.9282 623.97887 -10573.893 0 372.84681 -0.0011792684 -0.0012583906 + 171590 -6241.8579 -6250.1962 8.3383124 3703.3325 621.90901 -10575.438 0 399.61872 -0.001437108 -0.0015355837 + 171600 -6241.7275 -6250.2732 8.5457878 3703.5665 621.48476 -10575.324 0 409.5621 -0.0014874352 -0.0015831881 + 171610 -6241.8304 -6250.1645 8.3341148 3700.1132 622.92973 -10573.207 0 399.41754 -0.0012969984 -0.0013682905 + 171620 -6242.0271 -6250.0346 8.0075093 3693.3215 625.92173 -10569.278 0 383.76477 -0.00088750491 -0.00092926169 + 171630 -6242.1231 -6250.1292 8.0061354 3684.6212 629.67223 -10564.423 0 383.69893 -0.00034306688 -0.00037211936 + 171640 -6242.0151 -6250.5749 8.559857 3676.4328 633.15873 -10560.166 0 410.23638 0.00019821637 0.00015293024 + 171650 -6241.7832 -6251.256 9.4727624 3671.5932 635.43562 -10558.285 0 453.98793 0.00057542477 0.00049168081 + 171660 -6241.673 -6251.8465 10.173463 3672.3668 635.93514 -10560.148 0 487.56943 0.00065647354 0.00053539405 + 171670 -6241.9523 -6251.9951 10.042782 3679.3896 634.65859 -10566.043 0 481.30648 0.00039570663 0.00026494427 + 171680 -6242.6987 -6251.5912 8.8925072 3691.0593 632.16493 -10574.815 0 426.17884 -0.00012927156 -0.00023176145 + 171690 -6243.6888 -6250.9425 7.2537585 3703.8442 629.34065 -10584.127 0 347.64081 -0.00073230165 -0.0007864315 + 171700 -6244.5509 -6250.6319 6.0809236 3713.6185 627.06711 -10591.318 0 291.43198 -0.0011951516 -0.0012160874 + 171710 -6245.0779 -6251.052 5.9740951 3717.4588 625.95208 -10594.463 0 286.31216 -0.0013696021 -0.0013955202 + 171720 -6245.3796 -6252.0454 6.665852 3714.8241 626.19567 -10593.065 0 319.46503 -0.0012391078 -0.0012989824 + 171730 -6245.7318 -6253.0537 7.321859 3707.4035 627.56816 -10588.025 0 350.90457 -0.00090323036 -0.00099542158 + 171740 -6246.3047 -6253.5975 7.2927725 3697.9653 629.49326 -10581.056 0 349.51058 -0.00050954909 -0.00060843996 + 171750 -6247.0422 -6253.5894 6.5471765 3689.1362 631.24365 -10573.969 0 313.77743 -0.00018688847 -0.00026578137 + 171760 -6247.7553 -6253.2775 5.5222635 3682.7184 632.18989 -10568.186 0 264.65785 -1.218512e-05 -6.0720138e-05 + 171770 -6248.2785 -6252.9954 4.7168908 3679.5627 631.99786 -10564.556 0 226.05987 -8.4253676e-06 -3.4872457e-05 + 171780 -6248.553 -6252.9448 4.3918015 3679.7341 630.70656 -10563.385 0 210.47977 -0.00015687369 -0.00017920293 + 171790 -6248.6268 -6253.116 4.4892182 3682.7367 628.68177 -10564.534 0 215.14852 -0.00041161883 -0.00044544575 + 171800 -6248.6125 -6253.3411 4.7285435 3687.6913 626.47883 -10567.511 0 226.61834 -0.00071228864 -0.00076229485 + 171810 -6248.6262 -6253.4261 4.7999078 3693.4646 624.66299 -10571.554 0 230.03852 -0.00099485497 -0.0010534801 + 171820 -6248.726 -6253.2855 4.5595276 3698.8059 623.64434 -10575.736 0 218.51815 -0.0012016172 -0.0012552293 + 171830 -6248.8838 -6253.0062 4.122465 3702.546 623.57995 -10579.132 0 197.57165 -0.001290918 -0.0013296264 + 171840 -6249.0078 -6252.7989 3.7911531 3703.8665 624.37134 -10581.037 0 181.69333 -0.0012456884 -0.0012705094 + 171850 -6249.0079 -6252.8606 3.8526554 3702.5695 625.74643 -10581.176 0 184.64086 -0.0010785427 -0.0011008913 + 171860 -6248.8603 -6253.2331 4.3727598 3699.2035 627.3802 -10579.817 0 209.56719 -0.00083035213 -0.00086387351 + 171870 -6248.6288 -6253.7641 5.1353545 3694.9137 628.9973 -10577.675 0 246.115 -0.00055990838 -0.00061040044 + 171880 -6248.4243 -6254.2026 5.778245 3691.0302 630.41917 -10575.652 0 276.92592 -0.00032601879 -0.00038693166 + 171890 -6248.3288 -6254.3565 6.0277097 3688.5893 631.55328 -10574.499 0 288.88167 -0.00016892865 -0.00022578292 + 171900 -6248.3359 -6254.2014 5.8655004 3688.0344 632.34935 -10574.585 0 281.10769 -0.0001004922 -0.00014102512 + 171910 -6248.3534 -6253.876 5.5226664 3689.2183 632.75521 -10575.85 0 264.67716 -0.00010861192 -0.00013172833 + 171920 -6248.2633 -6253.5777 5.3143617 3691.6518 632.69942 -10577.929 0 254.69403 -0.00017294536 -0.00019062047 + 171930 -6248.0013 -6253.4226 5.4213283 3694.8153 632.11397 -10580.352 0 259.82047 -0.00028134898 -0.00031194884 + 171940 -6247.6063 -6253.3589 5.75261 3698.3295 630.99014 -10582.679 0 275.69735 -0.00043526986 -0.0004917982 + 171950 -6247.21 -6253.1997 5.9896777 3701.8774 629.43825 -10584.515 0 287.05896 -0.0006387913 -0.00071920961 + 171960 -6246.9558 -6252.7721 5.8163151 3704.9511 627.71076 -10585.434 0 278.75046 -0.00087729343 -0.00096419412 + 171970 -6246.8928 -6252.0904 5.197653 3706.6593 626.16202 -10584.912 0 249.1007 -0.0011016309 -0.001173331 + 171980 -6246.9265 -6251.4038 4.4772732 3705.8682 625.15603 -10582.428 0 214.57605 -0.0012346324 -0.001280714 + 171990 -6246.8805 -6251.0424 4.1618923 3701.7459 624.96266 -10577.751 0 199.46123 -0.0012036598 -0.00123264 + 172000 -6246.6219 -6251.1659 4.5440175 3694.4327 625.67405 -10571.273 0 217.77481 -0.00098261764 -0.0010150387 + 172010 -6246.1493 -6251.6392 5.4899203 3685.3574 627.14854 -10564.145 0 263.10778 -0.00061652591 -0.00066943464 + 172020 -6245.5805 -6252.1529 6.5723544 3676.9125 628.99531 -10558.061 0 314.9841 -0.00021174486 -0.00028761453 + 172030 -6245.0572 -6252.4653 7.4081122 3671.6308 630.63776 -10554.734 0 355.0383 0.00010336099 1.5367827e-05 + 172040 -6244.6497 -6252.5452 7.8955119 3671.2905 631.48062 -10555.316 0 378.39723 0.00022607051 0.00013994669 + 172050 -6244.3407 -6252.5157 8.1749921 3676.3334 631.14103 -10559.99 0 391.79149 0.0001134399 3.7231199e-05 + 172060 -6244.082 -6252.4952 8.4131723 3685.7346 629.64119 -10567.871 0 403.20642 -0.0002059739 -0.00027188998 + 172070 -6243.8476 -6252.5013 8.6536972 3697.2618 627.46032 -10577.223 0 414.73372 -0.00063945761 -0.00069896575 + 172080 -6243.6355 -6252.4767 8.841207 3708.0322 625.40738 -10585.916 0 423.72025 -0.0010528247 -0.0011112211 + 172090 -6243.4533 -6252.3468 8.8935029 3715.3057 624.35649 -10592.009 0 426.22656 -0.0013088545 -0.0013714384 + 172100 -6243.3268 -6252.0296 8.7028327 3717.3241 624.93484 -10594.289 0 417.08857 -0.0013146963 -0.0013837269 + 172110 -6243.2993 -6251.4606 8.161271 3713.835 627.2626 -10592.558 0 391.1339 -0.001056867 -0.0011282704 + 172120 -6243.3844 -6250.6908 7.3064001 3706.0535 630.84447 -10587.589 0 350.16369 -0.00060433159 -0.00066993927 + 172130 -6243.5259 -6249.9526 6.4267056 3696.1933 634.68681 -10580.833 0 308.00379 -8.2115424e-05 -0.00013732287 + 172140 -6243.6312 -6249.5633 5.9320615 3686.863 637.62076 -10574.047 0 284.29767 0.00036655303 0.00031774573 + 172150 -6243.6471 -6249.7241 6.0769619 3680.4726 638.70099 -10568.898 0 291.24211 0.00061633493 0.00056449924 + 172160 -6243.6016 -6250.3883 6.7866892 3678.6517 637.51935 -10566.559 0 325.25622 0.00059079271 0.00052924517 + 172170 -6243.5834 -6251.2933 7.7099022 3681.7563 634.32923 -10567.379 0 369.50177 0.00028574023 0.00021628414 + 172180 -6243.6796 -6252.1112 8.4316843 3688.6712 629.95221 -10570.735 0 404.09362 -0.00022301414 -0.00029126219 + 172190 -6243.9136 -6252.6103 8.6966981 3697.0876 625.50552 -10575.203 0 416.79457 -0.00079675709 -0.00085424946 + 172200 -6244.2262 -6252.738 8.5118691 3704.2411 622.04982 -10579.029 0 407.93653 -0.0012762846 -0.0013205093 + 172210 -6244.5135 -6252.597 8.083511 3707.8459 620.28922 -10580.732 0 387.40721 -0.0015353146 -0.0015736293 + 172220 -6244.6984 -6252.342 7.6435891 3706.8625 620.42542 -10579.63 0 366.32368 -0.0015219326 -0.0015675528 + 172230 -6244.7842 -6252.0701 7.2858679 3701.8041 622.18617 -10576.06 0 349.17967 -0.001270408 -0.001333577 + 172240 -6244.8491 -6251.7868 6.9376537 3694.4595 624.97425 -10571.221 0 332.49129 -0.00088004098 -0.00096027676 + 172250 -6244.9811 -6251.4747 6.4936283 3687.156 628.06238 -10566.693 0 311.2111 -0.00047248446 -0.00055812902 + 172260 -6245.2073 -6251.1869 5.9796306 3681.9154 630.78129 -10563.884 0 286.57745 -0.00014817582 -0.00022400798 + 172270 -6245.4765 -6251.0576 5.5811669 3679.8963 632.6679 -10563.622 0 267.48083 3.9516649e-05 -1.7416039e-05 + 172280 -6245.7001 -6251.2168 5.5166943 3681.283 633.54332 -10566.043 0 264.39095 8.6165642e-05 4.6316987e-05 + 172290 -6245.8117 -6251.6903 5.8786754 3685.5046 633.49963 -10570.695 0 281.73911 2.0792488e-05 -1.2346142e-05 + 172300 -6245.8019 -6252.3697 6.5677933 3691.5555 632.8051 -10576.73 0 314.76551 -0.00011492196 -0.00015383697 + 172310 -6245.7184 -6253.0639 7.3454491 3698.2636 631.77457 -10583.102 0 352.03513 -0.00028283799 -0.00033601388 + 172320 -6245.6405 -6253.5779 7.9374634 3704.48 630.66542 -10588.723 0 380.40779 -0.00045575898 -0.00052424978 + 172330 -6245.6473 -6253.7699 8.1226127 3709.2114 629.63655 -10592.618 0 389.28118 -0.00061650874 -0.00069342043 + 172340 -6245.7833 -6253.5891 7.8058012 3711.6928 628.76549 -10594.047 0 374.09779 -0.00075148441 -0.00082470821 + 172350 -6246.027 -6253.1093 7.0822925 3711.4146 628.09055 -10592.614 0 339.4232 -0.00084364673 -0.0009021414 + 172360 -6246.2907 -6252.5199 6.2292202 3708.1854 627.6472 -10588.353 0 298.53918 -0.00087170166 -0.0009125923 + 172370 -6246.4704 -6252.0356 5.5651492 3702.2889 627.48132 -10581.806 0 266.71317 -0.00081910909 -0.00085003489 + 172380 -6246.5157 -6251.7686 5.2528617 3694.6431 627.63052 -10574.042 0 251.74661 -0.00068818889 -0.00072200746 + 172390 -6246.4602 -6251.6744 5.2141902 3686.7605 628.07592 -10566.511 0 249.89325 -0.00050860685 -0.00055426257 + 172400 -6246.3893 -6251.6247 5.2353701 3680.4082 628.69231 -10560.725 0 250.90831 -0.00033237109 -0.00038919885 + 172410 -6246.3749 -6251.5391 5.1641951 3677.0905 629.24225 -10557.872 0 247.49721 -0.00021657356 -0.00027595827 + 172420 -6246.4284 -6251.4639 5.0355017 3677.5954 629.44202 -10558.501 0 241.3295 -0.00020250133 -0.00025477688 + 172430 -6246.4986 -6251.5465 5.0478569 3681.7826 629.07853 -10562.408 0 241.92162 -0.00030081686 -0.00034224384 + 172440 -6246.509 -6251.931 5.4219277 3688.6589 628.12088 -10568.711 0 259.8492 -0.00048859846 -0.00052404192 + 172450 -6246.4136 -6252.6321 6.2185798 3696.6774 626.77419 -10576.084 0 298.02923 -0.00071809052 -0.00075749621 + 172460 -6246.2438 -6253.4652 7.2214041 3704.1346 625.45102 -10583.051 0 346.0902 -0.00093126775 -0.00098157517 + 172470 -6246.1044 -6254.107 8.0025842 3709.5194 624.66136 -10588.288 0 383.52874 -0.0010721315 -0.0011305322 + 172480 -6246.0934 -6254.288 8.1946299 3711.7404 624.84466 -10590.873 0 392.73264 -0.0010937191 -0.0011492207 + 172490 -6246.2079 -6253.9777 7.7697469 3710.2933 626.19761 -10590.469 0 372.36987 -0.00096599527 -0.001009559 + 172500 -6246.3419 -6253.3838 7.0419331 3705.4562 628.57055 -10587.411 0 337.48895 -0.00069139973 -0.00072516173 + 172510 -6246.3905 -6252.7632 6.3726901 3698.4329 631.48124 -10582.677 0 305.41507 -0.00032092949 -0.00035668231 + 172520 -6246.3453 -6252.2369 5.8916494 3691.1959 634.23861 -10577.671 0 282.3609 4.8101997e-05 -3.2363381e-07 + 172530 -6246.2856 -6251.7828 5.4972147 3685.9071 636.1317 -10573.822 0 263.45737 0.000302155 0.00024064479 + 172540 -6246.2929 -6251.3636 5.0706885 3684.1337 636.63181 -10572.129 0 243.01585 0.00035637021 0.00029122671 + 172550 -6246.3809 -6251.0317 4.6508072 3686.265 635.55312 -10572.85 0 222.89278 0.00018909164 0.00013153198 + 172560 -6246.4931 -6250.9149 4.4218943 3691.4176 633.11789 -10575.45 0 211.92199 -0.00015122042 -0.00019628721 + 172570 -6246.5512 -6251.1193 4.5680947 3697.8185 629.89725 -10578.835 0 218.92873 -0.00056622447 -0.00060243838 + 172580 -6246.5068 -6251.6427 5.1358988 3703.4427 626.64494 -10581.73 0 246.14109 -0.0009421752 -0.00097797663 + 172590 -6246.3619 -6252.3641 6.0022719 3706.6385 624.08099 -10583.084 0 287.66255 -0.001184151 -0.0012269886 + 172600 -6246.1592 -6253.1043 6.945102 3706.5608 622.69633 -10582.361 0 332.84826 -0.0012406857 -0.0012932867 + 172610 -6245.9559 -6253.6998 7.7438369 3703.3442 622.63745 -10579.681 0 371.12811 -0.0011147184 -0.0011748648 + 172620 -6245.7986 -6254.0454 8.2468072 3698.0069 623.70047 -10575.753 0 395.23327 -0.00085935652 -0.00092212733 + 172630 -6245.7081 -6254.1007 8.3925501 3692.1134 625.42818 -10571.642 0 402.21809 -0.00055929141 -0.00062005739 + 172640 -6245.6772 -6253.8742 8.1970154 3687.2971 627.27304 -10568.444 0 392.84697 -0.00030333071 -0.00035999225 + 172650 -6245.6835 -6253.4009 7.7174331 3684.7992 628.77188 -10566.972 0 369.86269 -0.000157625 -0.00021086625 + 172660 -6245.7083 -6252.7257 7.0173902 3685.1602 629.67578 -10567.562 0 336.31271 -0.00014829227 -0.00019975799 + 172670 -6245.7446 -6251.9134 6.1688155 3688.1229 629.9948 -10570.031 0 295.64425 -0.00025712904 -0.00030728519 + 172680 -6245.7858 -6251.081 5.2951609 3692.7436 629.95009 -10573.775 0 253.77382 -0.00042958764 -0.00047764522 + 172690 -6245.8093 -6250.414 4.6047222 3697.6799 629.86016 -10577.954 0 220.68412 -0.00059243386 -0.00063879385 + 172700 -6245.778 -6250.1226 4.3446861 3701.6072 630.00833 -10581.738 0 208.22174 -0.00067770712 -0.00072627248 + 172710 -6245.6678 -6250.333 4.6652246 3703.6537 630.53781 -10584.525 0 223.58374 -0.0006471287 -0.00070384944 + 172720 -6245.5001 -6250.9864 5.4862519 3703.6778 631.4025 -10586.067 0 262.93197 -0.00050758065 -0.00057485699 + 172730 -6245.3431 -6251.8474 6.5042899 3702.2301 632.38014 -10586.458 0 311.72207 -0.00030845731 -0.00038023326 + 172740 -6245.2621 -6252.6435 7.3814534 3700.2029 633.14097 -10585.987 0 353.76066 -0.00011960923 -0.00018343072 + 172750 -6245.2535 -6253.2266 7.9730437 3698.3881 633.35764 -10584.972 0 382.11299 -1.3241961e-06 -4.7881532e-05 + 172760 -6245.2376 -6253.6064 8.3687876 3697.2299 632.82847 -10583.665 0 401.07926 1.5662214e-05 -1.6533977e-05 + 172770 -6245.1356 -6253.8284 8.6927806 3696.8631 631.5673 -10582.259 0 416.60682 -6.9146666e-05 -0.00010130265 + 172780 -6244.9615 -6253.8376 8.8761692 3697.2624 629.81295 -10580.913 0 425.39583 -0.00023696745 -0.00028361704 + 172790 -6244.8265 -6253.4885 8.6619686 3698.2786 627.948 -10579.715 0 415.13014 -0.00045774551 -0.00052169144 + 172800 -6244.8444 -6252.7023 7.8579695 3699.5423 626.36792 -10578.613 0 376.59799 -0.00069014138 -0.00076035988 + 172810 -6245.0272 -6251.62 6.592804 3700.4188 625.3641 -10577.403 0 315.96416 -0.00088174847 -0.00094273777 + 172820 -6245.2738 -6250.5975 5.3237545 3700.1801 625.06376 -10575.841 0 255.14419 -0.00097959555 -0.0010238639 + 172830 -6245.4498 -6250.0281 4.5782962 3698.3668 625.4318 -10573.827 0 219.41764 -0.00095021708 -0.00098371413 + 172840 -6245.483 -6250.1142 4.6311813 3695.1335 626.31465 -10571.562 0 221.95219 -0.00079767072 -0.00083449471 + 172850 -6245.4061 -6250.7474 5.341331 3691.3404 627.49882 -10569.587 0 255.98655 -0.00056709144 -0.00061805208 + 172860 -6245.3324 -6251.5819 6.2495348 3688.2879 628.76071 -10568.631 0 299.51277 -0.0003292823 -0.00039304806 + 172870 -6245.3742 -6252.2592 6.8849266 3687.1856 629.8955 -10569.34 0 329.96431 -0.00015223998 -0.00021621162 + 172880 -6245.5516 -6252.6352 7.0836873 3688.6269 630.73299 -10571.995 0 339.49004 -7.4098312e-05 -0.00012525218 + 172890 -6245.7701 -6252.8346 7.0645284 3692.3737 631.16158 -10576.37 0 338.57184 -9.3219492e-05 -0.00013035178 + 172900 -6245.9089 -6253.08 7.1710546 3697.5607 631.16827 -10581.809 0 343.67717 -0.00018001923 -0.00021606509 + 172910 -6245.9418 -6253.446 7.504122 3703.1171 630.86851 -10587.432 0 359.63963 -0.00029851503 -0.00034984326 + 172920 -6245.9743 -6253.7649 7.7906104 3708.071 630.48557 -10592.321 0 373.36976 -0.00042006427 -0.00049185898 + 172930 -6246.1544 -6253.7664 7.6120033 3711.5995 630.26845 -10595.634 0 364.80991 -0.00052259019 -0.00060330754 + 172940 -6246.5356 -6253.3187 6.7831928 3712.981 630.38319 -10596.683 0 325.08866 -0.00058351005 -0.00065333835 + 172950 -6247.0204 -6252.5644 5.5439584 3711.676 630.834 -10595.074 0 265.69759 -0.00057973392 -0.00062574524 + 172960 -6247.4372 -6251.842 4.4048001 3707.5893 631.45351 -10590.885 0 211.10274 -0.00049980538 -0.00052516709 + 172970 -6247.6679 -6251.4702 3.802305 3701.339 631.96179 -10584.771 0 182.22779 -0.00035921092 -0.00037990058 + 172980 -6247.7162 -6251.5696 3.8533994 3694.283 632.06491 -10577.918 0 184.67652 -0.00020409774 -0.00023721416 + 172990 -6247.6836 -6252.0362 4.3525885 3688.193 631.55746 -10571.787 0 208.60046 -9.6851589e-05 -0.00014969724 + 173000 -6247.6984 -6252.6456 4.9472043 3684.69 630.39814 -10567.734 0 237.09779 -9.0209101e-05 -0.00015663665 + 173010 -6247.8444 -6253.1948 5.3504173 3684.6836 628.73239 -10566.611 0 256.42202 -0.00020355532 -0.00026859445 + 173020 -6248.1176 -6253.6017 5.4840836 3688.0528 626.85164 -10568.506 0 262.82806 -0.00041316728 -0.00046273044 + 173030 -6248.4322 -6253.916 5.4838005 3693.7087 625.10895 -10572.734 0 262.81449 -0.00066105134 -0.0006909879 + 173040 -6248.6807 -6254.2319 5.551262 3700.0267 623.8331 -10578.092 0 266.04762 -0.00087825935 -0.00089670733 + 173050 -6248.8118 -6254.5615 5.7497016 3705.444 623.27091 -10583.276 0 275.55796 -0.0010109205 -0.0010318512 + 173060 -6248.8646 -6254.7866 5.9220422 3708.914 623.55595 -10587.257 0 283.81749 -0.0010354188 -0.0010683029 + 173070 -6248.9263 -6254.7459 5.8195998 3710.0361 624.6892 -10589.471 0 278.90787 -0.00095685893 -0.0010008571 + 173080 -6249.0552 -6254.3737 5.318577 3708.9323 626.53257 -10589.839 0 254.89605 -0.00079710258 -0.00084367083 + 173090 -6249.2412 -6253.7641 4.5228791 3706.0733 628.82671 -10588.664 0 216.76174 -0.00058383769 -0.00062403599 + 173100 -6249.4276 -6253.1189 3.6913829 3702.1647 631.23391 -10586.518 0 176.91178 -0.00034662532 -0.00037683318 + 173110 -6249.5559 -6252.6447 3.0887933 3698.0728 633.39239 -10584.11 0 148.03231 -0.00011776137 -0.00014081461 + 173120 -6249.5964 -6252.4676 2.8712487 3694.7293 634.96994 -10582.167 0 137.60635 6.7017727e-05 4.4410604e-05 + 173130 -6249.5539 -6252.5949 3.0410079 3692.9916 635.71392 -10581.3 0 145.74216 0.0001712668 0.00014276767 + 173140 -6249.4612 -6252.926 3.4647792 3693.4595 635.49502 -10581.881 0 166.05166 0.00016512904 0.00012867807 + 173150 -6249.3587 -6253.3127 3.9539876 3696.27 634.33494 -10583.918 0 189.49727 3.6245391e-05 -4.5447282e-06 + 173160 -6249.2637 -6253.647 4.3833475 3700.9344 632.40656 -10586.988 0 210.07461 -0.00019993423 -0.00023842121 + 173170 -6249.1472 -6253.9168 4.7695871 3706.3359 630.00758 -10590.26 0 228.58537 -0.00049730398 -0.00052920851 + 173180 -6248.9446 -6254.1752 5.2306712 3710.9754 627.52095 -10592.672 0 250.68311 -0.00078835678 -0.00081561902 + 173190 -6248.5988 -6254.4473 5.8484938 3713.409 625.37083 -10593.227 0 280.29264 -0.0010027087 -0.0010323001 + 173200 -6248.1031 -6254.6649 6.561832 3712.6866 623.96634 -10591.318 0 314.47981 -0.0010861856 -0.0011250083 + 173210 -6247.5087 -6254.6902 7.1814772 3708.6221 623.62259 -10586.935 0 344.17668 -0.0010136846 -0.0010639709 + 173220 -6246.9005 -6254.3921 7.4916456 3701.854 624.46849 -10580.715 0 359.04169 -0.0007950204 -0.00085310481 + 173230 -6246.3601 -6253.7108 7.3506369 3693.7344 626.37282 -10573.818 0 352.28377 -0.00047484049 -0.00053290101 + 173240 -6245.9342 -6252.6924 6.7582367 3686.0592 628.92615 -10567.678 0 323.89262 -0.00012535036 -0.00017480063 + 173250 -6245.6124 -6251.5067 5.8943026 3680.6653 631.50336 -10563.675 0 282.48805 0.00016932453 0.00013344487 + 173260 -6245.3267 -6250.4292 5.1025407 3678.9925 633.40902 -10562.831 0 244.54238 0.00033387828 0.00030880985 + 173270 -6244.9806 -6249.7578 4.7772605 3681.7496 634.07935 -10565.587 0 228.95313 0.00032089588 0.00029526886 + 173280 -6244.5064 -6249.6731 5.1667133 3688.7589 633.28542 -10571.717 0 247.61789 0.0001229969 8.1798407e-05 + 173290 -6243.9238 -6250.1205 6.1967004 3698.9473 631.26296 -10580.331 0 296.98065 -0.00022269053 -0.00028828087 + 173300 -6243.3541 -6250.8212 7.4670925 3710.4147 628.69509 -10589.931 0 357.86497 -0.00063598073 -0.00072029445 + 173310 -6242.9465 -6251.4387 8.4921827 3720.6151 626.51734 -10598.571 0 406.99304 -0.0010022413 -0.0010866723 + 173320 -6242.758 -6251.7832 9.0252084 3726.8139 625.60089 -10604.198 0 432.53863 -0.001195047 -0.0012607472 + 173330 -6242.71 -6251.8746 9.1646396 3726.9068 626.44557 -10605.227 0 439.22095 -0.0011170447 -0.0011585822 + 173340 -6242.6725 -6251.8271 9.1545558 3720.3362 629.00351 -10601.167 0 438.73768 -0.00074636304 -0.00077426953 + 173350 -6242.5795 -6251.7112 9.1316782 3708.5765 632.67682 -10592.964 0 437.64126 -0.00016115785 -0.0001926272 + 173360 -6242.4613 -6251.5299 9.0686504 3694.8246 636.47366 -10582.828 0 434.62061 0.00047724166 0.00042993025 + 173370 -6242.3972 -6251.2769 8.8796241 3682.9948 639.28712 -10573.559 0 425.56141 0.00097742402 0.00091264647 + 173380 -6242.4568 -6250.974 8.5171244 3676.4519 640.23052 -10567.656 0 408.18839 0.0011832797 0.0011092063 + 173390 -6242.6671 -6250.6671 8.0000614 3676.9533 638.92039 -10566.541 0 383.40783 0.0010258162 0.00095572697 + 173400 -6242.998 -6250.4258 7.427787 3684.1286 635.59882 -10570.153 0 355.98123 0.00054486593 0.00049045153 + 173410 -6243.3642 -6250.3575 6.9933263 3695.6423 631.05447 -10577.054 0 335.15944 -0.0001245981 -0.00016026375 + 173420 -6243.6607 -6250.5785 6.9177233 3707.9988 626.3876 -10584.965 0 331.53611 -0.00079688759 -0.00082250699 + 173430 -6243.8351 -6251.1148 7.2796268 3717.711 622.70688 -10591.533 0 348.88056 -0.0012959631 -0.0013270135 + 173440 -6243.9386 -6251.8227 7.8840894 3722.3655 620.83662 -10595.025 0 377.8498 -0.0015089918 -0.0015565243 + 173450 -6244.0972 -6252.4423 8.345124 3721.1743 621.10091 -10594.718 0 399.94517 -0.0014125056 -0.0014746417 + 173460 -6244.4128 -6252.7609 8.3481246 3714.9205 623.2505 -10590.932 0 400.08897 -0.0010648961 -0.0011284277 + 173470 -6244.8811 -6252.7463 7.8651202 3705.5035 626.57078 -10584.821 0 376.94069 -0.0005755348 -0.00062602311 + 173480 -6245.3961 -6252.5493 7.1532122 3695.3504 630.13286 -10578.032 0 342.82207 -6.8119491e-05 -0.0001002512 + 173490 -6245.8249 -6252.3932 6.5683481 3686.8692 633.08167 -10572.344 0 314.7921 0.0003481164 0.00032694275 + 173500 -6246.0904 -6252.4307 6.3402288 3682.0177 634.85356 -10569.302 0 303.85934 0.00059488681 0.00056928569 + 173510 -6246.2132 -6252.6455 6.4322704 3681.9873 635.26967 -10569.902 0 308.27049 0.00063193168 0.00058854082 + 173520 -6246.2986 -6252.8536 6.5550773 3686.974 634.50758 -10574.335 0 314.15608 0.00045996078 0.00039714992 + 173530 -6246.4702 -6252.8245 6.3542867 3696.0382 632.98386 -10581.847 0 304.53307 0.00012229836 5.3015354e-05 + 173540 -6246.7758 -6252.4721 5.6962293 3707.147 631.19675 -10590.816 0 272.99527 -0.00029768366 -0.00035387074 + 173550 -6247.1354 -6251.9773 4.8418916 3717.5477 629.58651 -10599.111 0 232.05061 -0.00069083041 -0.00072260293 + 173560 -6247.3904 -6251.7005 4.3100754 3724.52 628.45945 -10604.68 0 206.563 -0.00095184232 -0.00096628679 + 173570 -6247.4264 -6251.9133 4.4869294 3726.2789 627.97826 -10606.17 0 215.03883 -0.0010151021 -0.0010334499 + 173580 -6247.2671 -6252.574 5.3069104 3722.5753 628.1795 -10603.329 0 254.33692 -0.00087757862 -0.00091910606 + 173590 -6247.0655 -6253.3519 6.2864112 3714.6672 628.98148 -10597.001 0 301.2801 -0.00059498773 -0.00066232141 + 173600 -6246.9956 -6253.8673 6.8716531 3704.7324 630.18413 -10588.784 0 329.32817 -0.00025451916 -0.00033193824 + 173610 -6247.1289 -6253.9368 6.8079429 3695.0997 631.48704 -10580.524 0 326.27482 5.8677568e-05 -6.3627008e-06 + 173620 -6247.3904 -6253.6553 6.2649091 3687.6613 632.53975 -10573.856 0 300.24959 0.00028360925 0.00024475685 + 173630 -6247.6212 -6253.2942 5.6730015 3683.6132 633.01537 -10569.923 0 271.88206 0.00038754989 0.00037148758 + 173640 -6247.6879 -6253.1097 5.4217857 3683.4655 632.69039 -10569.266 0 259.84239 0.00035837434 0.00034742755 + 173650 -6247.5636 -6253.1812 5.6176419 3687.1521 631.51493 -10571.848 0 269.22892 0.00019691429 0.00017085887 + 173660 -6247.3419 -6253.3727 6.0308098 3694.0827 629.6545 -10577.11 0 289.03024 -8.2460157e-05 -0.00013317191 + 173670 -6247.1783 -6253.4372 6.2588848 3703.0993 627.48053 -10584.017 0 299.96088 -0.00044325807 -0.00051095109 + 173680 -6247.1858 -6253.2057 6.0198948 3712.4484 625.49631 -10591.15 0 288.50713 -0.00081863587 -0.00088340628 + 173690 -6247.3496 -6252.733 5.383349 3719.9675 624.21404 -10596.915 0 258.00029 -0.0011153824 -0.0011591499 + 173700 -6247.5345 -6252.2831 4.7485998 3723.6067 624.02561 -10599.915 0 227.57955 -0.0012371099 -0.0012568847 + 173710 -6247.5839 -6252.1407 4.5567909 3722.1725 625.1074 -10599.421 0 218.38699 -0.0011210866 -0.0011310774 + 173720 -6247.4356 -6252.3905 4.9548792 3715.9325 627.37032 -10595.693 0 237.46562 -0.00077108207 -0.00079174418 + 173730 -6247.1644 -6252.8514 5.6870158 3706.689 630.44909 -10589.99 0 272.5537 -0.00026679068 -0.00030955863 + 173740 -6246.9234 -6253.2186 6.2951948 3697.208 633.73884 -10584.165 0 301.70106 0.00025849001 0.00019890484 + 173750 -6246.831 -6253.2825 6.4514867 3690.2603 636.50369 -10580.046 0 309.19144 0.00066302738 0.00060372173 + 173760 -6246.8899 -6253.0537 6.1638311 3687.7201 638.05802 -10578.832 0 295.40537 0.00084374564 0.00080086755 + 173770 -6246.9943 -6252.7277 5.7334281 3690.0721 637.96893 -10580.769 0 274.77805 0.00076494383 0.00074249942 + 173780 -6247.0093 -6252.5353 5.5259959 3696.4412 636.20308 -10585.18 0 264.83673 0.00046011371 0.00044747598 + 173790 -6246.8634 -6252.5806 5.7171361 3705.0234 633.16223 -10590.766 0 273.99724 1.2744048e-05 -7.9232906e-06 + 173800 -6246.5973 -6252.773 6.175799 3713.6564 629.59292 -10596.022 0 295.97894 -0.00047014173 -0.00051155352 + 173810 -6246.3362 -6252.9056 6.5693711 3720.3028 626.3892 -10599.598 0 314.84112 -0.00088070786 -0.00094169935 + 173820 -6246.2011 -6252.823 6.6218968 3723.3759 624.33893 -10600.538 0 317.35845 -0.0011273992 -0.0011940864 + 173830 -6246.2206 -6252.5498 6.3292321 3721.9768 623.89369 -10598.42 0 303.33232 -0.0011505643 -0.0012065175 + 173840 -6246.3165 -6252.2751 5.9586117 3716.1143 625.04652 -10593.436 0 285.57011 -0.00093830152 -0.00097588207 + 173850 -6246.3688 -6252.2077 5.8388942 3706.8648 627.35984 -10586.432 0 279.83257 -0.00053706098 -0.00056159013 + 173860 -6246.3011 -6252.4215 6.1204533 3696.3125 630.11922 -10578.853 0 293.32646 -4.7880782e-05 -7.2660912e-05 + 173870 -6246.1229 -6252.8081 6.6851999 3687.1357 632.54634 -10572.49 0 320.39229 0.00039665787 0.00035954564 + 173880 -6245.9133 -6253.153 7.2397123 3681.8797 634.00623 -10569.039 0 346.96764 0.00067030492 0.00061690883 + 173890 -6245.7678 -6253.2627 7.4948931 3682.1579 634.16422 -10569.585 0 359.19733 0.00069326274 0.0006290413 + 173900 -6245.7431 -6253.0615 7.3183506 3688.0891 633.06158 -10574.212 0 350.73643 0.00045956306 0.00039547684 + 173910 -6245.8289 -6252.6216 6.7926357 3698.1991 631.09204 -10581.913 0 325.54122 4.0722253e-05 -1.3205219e-05 + 173920 -6245.9585 -6252.1219 6.1634244 3709.8417 628.8858 -10590.849 0 295.38588 -0.00043642483 -0.00047657539 + 173930 -6246.0492 -6251.7629 5.713633 3719.9967 627.13475 -10598.894 0 273.82935 -0.00082961935 -0.00086050228 + 173940 -6246.0456 -6251.6776 5.6320615 3726.1642 626.40671 -10604.249 0 269.91999 -0.0010246141 -0.0010561979 + 173950 -6245.9471 -6251.8731 5.9260618 3727.0626 626.99395 -10605.93 0 284.01013 -0.0009686628 -0.0010105552 + 173960 -6245.8138 -6252.2211 6.4073609 3722.9194 628.82907 -10603.97 0 307.07668 -0.00068442134 -0.00073947537 + 173970 -6245.7353 -6252.5266 6.7913489 3715.2672 631.48741 -10599.281 0 325.47955 -0.00025895424 -0.00032050266 + 173980 -6245.7676 -6252.6562 6.8886762 3706.3429 634.2865 -10593.286 0 330.14402 0.00018863365 0.00013259189 + 173990 -6245.8872 -6252.6267 6.739496 3698.3835 636.47429 -10587.485 0 322.99446 0.00054592221 0.00050393807 + 174000 -6246.011 -6252.5693 6.5582373 3693.1056 637.45668 -10583.132 0 314.30753 0.00073537824 0.00070634272 + 174010 -6246.0645 -6252.6079 6.5434175 3691.4551 636.97961 -10581.043 0 313.59728 0.00072574096 0.00070012984 + 174020 -6246.0381 -6252.7606 6.7225235 3693.5429 635.19342 -10581.497 0 322.18105 0.00053081349 0.0004977813 + 174030 -6245.993 -6252.9336 6.9405561 3698.6769 632.58132 -10584.192 0 332.63039 0.00020169562 0.00015644349 + 174040 -6246.0183 -6252.9962 6.9779406 3705.4899 629.79031 -10588.276 0 334.42207 -0.00018494643 -0.00023838946 + 174050 -6246.1702 -6252.8755 6.7052825 3712.2126 627.43379 -10592.522 0 321.35476 -0.00054254711 -0.00059443427 + 174060 -6246.4351 -6252.6077 6.1725903 3717.0965 625.93531 -10595.639 0 295.82516 -0.00079352094 -0.00083491205 + 174070 -6246.7391 -6252.3242 5.5851662 3718.8854 625.45645 -10596.666 0 267.6725 -0.00088763242 -0.00091614829 + 174080 -6246.9951 -6252.1855 5.1904564 3717.175 625.91258 -10595.273 0 248.7558 -0.0008142955 -0.00083582108 + 174090 -6247.1556 -6252.2895 5.1338357 3712.5433 627.04987 -10591.883 0 246.04221 -0.00060480469 -0.00062994527 + 174100 -6247.2434 -6252.6027 5.359231 3706.4009 628.54316 -10587.547 0 256.84442 -0.00032313232 -0.00036001091 + 174110 -6247.3361 -6252.9754 5.6392899 3700.5649 630.07849 -10583.619 0 270.26641 -4.620941e-05 -9.440025e-05 + 174120 -6247.5077 -6253.2489 5.7411513 3696.6689 631.40288 -10581.321 0 275.14818 0.00016078076 0.0001101018 + 174130 -6247.7711 -6253.3682 5.5971172 3695.6561 632.3464 -10581.371 0 268.24526 0.00026333564 0.00022085359 + 174140 -6248.0713 -6253.4033 5.3320047 3697.5846 632.82975 -10583.818 0 255.53958 0.00026176503 0.00023253566 + 174150 -6248.3298 -6253.4722 5.142337 3701.7765 632.86214 -10588.111 0 246.44964 0.00018107245 0.00016169151 + 174160 -6248.4965 -6253.6461 5.1496516 3707.1534 632.52656 -10593.326 0 246.8002 5.5374536e-05 3.6801617e-05 + 174170 -6248.5718 -6253.905 5.3331885 3712.5688 631.9532 -10598.427 0 255.59632 -8.424997e-05 -0.00011114919 + 174180 -6248.6001 -6254.1531 5.5529986 3717.0348 631.28991 -10602.478 0 266.13085 -0.00021486738 -0.00025437951 + 174190 -6248.6454 -6254.2682 5.6228269 3719.8377 630.67971 -10604.786 0 269.47741 -0.00032073325 -0.00036982388 + 174200 -6248.7595 -6254.1648 5.4053422 3720.5659 630.2458 -10604.977 0 259.05433 -0.0003890467 -0.00043840986 + 174210 -6248.9468 -6253.8577 4.9108905 3719.0898 630.07654 -10603.024 0 235.35743 -0.00040605773 -0.00044522194 + 174220 -6249.1489 -6253.4875 4.3385708 3715.5549 630.2069 -10599.249 0 207.92866 -0.0003582208 -0.00038283595 + 174230 -6249.2741 -6253.2525 3.9783628 3710.4507 630.60399 -10594.307 0 190.66547 -0.00024141163 -0.00025736728 + 174240 -6249.2653 -6253.265 3.9997046 3704.7081 631.16385 -10589.137 0 191.68829 -7.4031886e-05 -9.3652726e-05 + 174250 -6249.1482 -6253.4553 4.3070537 3699.6444 631.71757 -10584.817 0 206.41818 9.7796003e-05 6.5405611e-05 + 174260 -6249.0111 -6253.6332 4.622078 3696.6226 632.04857 -10582.304 0 221.51591 0.00021247378 0.00016852554 + 174270 -6248.9308 -6253.6578 4.7269411 3696.5411 631.93676 -10582.136 0 226.54154 0.00021885688 0.00017314436 + 174280 -6248.9131 -6253.5514 4.6382891 3699.4564 631.23951 -10584.247 0 222.29284 0.00010051047 6.3058251e-05 + 174290 -6248.8956 -6253.4642 4.5686218 3704.549 629.98445 -10587.998 0 218.95399 -0.00011559377 -0.00014191825 + 174300 -6248.8 -6253.5396 4.7396659 3710.4187 628.42022 -10592.379 0 227.15138 -0.00036845587 -0.0003890388 + 174310 -6248.585 -6253.796 5.2109984 3715.5323 626.98296 -10596.311 0 249.74028 -0.00058334473 -0.00060707004 + 174320 -6248.2696 -6254.1026 5.8329455 3718.6518 626.17703 -10598.931 0 279.54748 -0.00069393425 -0.00072669017 + 174330 -6247.9198 -6254.2538 6.3339573 3719.1309 626.407 -10599.792 0 303.55878 -0.00066013178 -0.00070083084 + 174340 -6247.6072 -6254.0938 6.4865717 3717.0356 627.81733 -10598.947 0 310.87291 -0.00047847023 -0.00051993538 + 174350 -6247.3594 -6253.6195 6.2600953 3713.0812 630.19939 -10596.9 0 300.01889 -0.00018376398 -0.00021809373 + 174360 -6247.1391 -6252.9978 5.8587213 3708.4308 633.01232 -10594.441 0 280.7828 0.00015772693 0.00013272793 + 174370 -6246.872 -6252.47 5.5980954 3704.4301 635.52951 -10592.43 0 268.29214 0.0004622273 0.00044053592 + 174380 -6246.5087 -6252.2017 5.6929351 3702.3185 637.06923 -10591.589 0 272.83739 0.00064798986 0.00061949482 + 174390 -6246.069 -6252.1849 6.1159396 3702.8995 637.22424 -10592.309 0 293.11014 0.00065856979 0.0006171402 + 174400 -6245.6299 -6252.2728 6.6429582 3706.2004 636.00099 -10594.474 0 318.36783 0.00048492114 0.00043374213 + 174410 -6245.2642 -6252.31 7.0458576 3711.2799 633.81715 -10597.407 0 337.67703 0.00017683662 0.00012605307 + 174420 -6244.9792 -6252.2433 7.2640899 3716.4002 631.36265 -10600.006 0 348.13594 -0.00016650121 -0.00020816787 + 174430 -6244.7165 -6252.1192 7.4026568 3719.6194 629.37674 -10601.115 0 354.77685 -0.00042924637 -0.0004615375 + 174440 -6244.414 -6251.9879 7.5738838 3719.5706 628.41525 -10599.974 0 362.98301 -0.00052320065 -0.00055381244 + 174450 -6244.0669 -6251.8286 7.7616689 3716.031 628.67791 -10596.538 0 371.98272 -0.00042231428 -0.00046002073 + 174460 -6243.7271 -6251.5786 7.8514534 3710.003 629.94949 -10591.531 0 376.2857 -0.000170352 -0.00021868467 + 174470 -6243.4526 -6251.2245 7.7719173 3703.3306 631.68202 -10586.237 0 372.47388 0.00013949106 8.3062879e-05 + 174480 -6243.2659 -6250.8484 7.5825234 3698.0745 633.19666 -10582.12 0 363.39707 0.00040042295 0.00034112944 + 174490 -6243.1532 -6250.5909 7.4377334 3695.8718 633.92828 -10580.391 0 356.45792 0.00052818265 0.00047042071 + 174500 -6243.0837 -6250.5792 7.4954833 3697.4393 633.616 -10581.634 0 359.22562 0.00048702723 0.00043249452 + 174510 -6243.0297 -6250.8665 7.8367419 3702.36 632.3779 -10585.604 0 375.58064 0.00029915137 0.00024662854 + 174520 -6242.9896 -6251.3908 8.4012217 3709.2465 630.66281 -10591.3 0 402.63368 3.4594624e-05 -1.8189388e-05 + 174530 -6243.0018 -6251.9751 8.9732213 3716.2109 629.10178 -10597.288 0 430.04711 -0.00021417257 -0.0002671928 + 174540 -6243.1202 -6252.4158 9.2955996 3721.4204 628.29428 -10602.13 0 445.49729 -0.00036191844 -0.00041187058 + 174550 -6243.3556 -6252.6204 9.2647737 3723.5668 628.59075 -10604.778 0 444.01994 -0.00035534759 -0.0003998309 + 174560 -6243.6609 -6252.6537 8.9928475 3722.22 629.95873 -10604.832 0 430.98771 -0.00019025832 -0.00023272524 + 174570 -6243.9911 -6252.6315 8.6404086 3718.016 631.99422 -10602.642 0 414.09686 8.2241067e-05 3.4190274e-05 + 174580 -6244.3672 -6252.5888 8.2216092 3712.5071 634.06986 -10599.166 0 394.02564 0.00036883153 0.00031155032 + 174590 -6244.8532 -6252.4751 7.6219753 3707.5867 635.55498 -10595.617 0 365.28782 0.00056875995 0.00050818186 + 174600 -6245.4701 -6252.2667 6.7966276 3704.7202 636.02728 -10593.014 0 325.73253 0.0006161894 0.00056411899 + 174610 -6246.1474 -6252.0519 5.9045054 3704.4147 635.40523 -10591.872 0 282.97703 0.00050641814 0.00047067387 + 174620 -6246.7682 -6251.99 5.2217283 3706.2118 633.9551 -10592.157 0 250.25452 0.00029115732 0.0002690715 + 174630 -6247.2574 -6252.1844 4.9269811 3709.1131 632.17159 -10593.469 0 236.12858 4.8652948e-05 2.9601172e-05 + 174640 -6247.624 -6252.5948 4.9707346 3712.0986 630.58377 -10595.277 0 238.22549 -0.00015125367 -0.00017734035 + 174650 -6247.9349 -6253.0651 5.1301814 3714.4528 629.56962 -10597.088 0 245.86708 -0.0002691594 -0.00030470986 + 174660 -6248.2543 -6253.4346 5.1803117 3715.8349 629.25299 -10598.523 0 248.2696 -0.00029944324 -0.00033849335 + 174670 -6248.598 -6253.6434 5.0453222 3716.19 629.51162 -10599.345 0 241.80015 -0.00026006955 -0.00029352502 + 174680 -6248.9258 -6253.7608 4.8349317 3715.631 630.07285 -10599.465 0 231.71705 -0.00017855954 -0.00020137032 + 174690 -6249.171 -6253.9201 4.7491189 3714.3788 630.6435 -10598.942 0 227.60442 -8.2032635e-05 -9.7279523e-05 + 174700 -6249.2891 -6254.201 4.9118876 3712.7674 631.02198 -10597.99 0 235.40521 6.5502683e-06 -1.0342922e-05 + 174710 -6249.2963 -6254.5427 5.246393 3711.2447 631.15741 -10596.945 0 251.43659 6.9276791e-05 4.2413516e-05 + 174720 -6249.2675 -6254.764 5.4965041 3710.2818 631.14048 -10596.186 0 263.42332 9.5793933e-05 5.845058e-05 + 174730 -6249.2847 -6254.6919 5.4071366 3710.188 631.1333 -10596.013 0 259.14032 8.7921703e-05 4.8355467e-05 + 174740 -6249.3714 -6254.3087 4.9373037 3710.9482 631.27235 -10596.529 0 236.6233 6.1439812e-05 3.0085709e-05 + 174750 -6249.4701 -6253.7925 4.3224293 3712.2326 631.59424 -10597.619 0 207.15506 3.9563876e-05 1.9993823e-05 + 174760 -6249.4894 -6253.4071 3.9177495 3713.6113 632.01989 -10599.038 0 187.76054 3.9236666e-05 2.4434307e-05 + 174770 -6249.378 -6253.3268 3.9487848 3714.8212 632.39653 -10600.545 0 189.24793 5.9201281e-05 3.6464401e-05 + 174780 -6249.1655 -6253.5338 4.3683211 3715.8692 632.56886 -10601.972 0 209.35446 7.94714e-05 3.9944353e-05 + 174790 -6248.9428 -6253.8544 4.9115617 3716.8915 632.44719 -10603.193 0 235.38959 7.4099257e-05 1.9602177e-05 + 174800 -6248.8023 -6254.0876 5.2852638 3717.8905 632.05114 -10604.029 0 253.2995 2.989545e-05 -2.7687687e-05 + 174810 -6248.7753 -6254.1311 5.3557597 3718.5582 631.51429 -10604.204 0 256.67806 -4.0385136e-05 -8.6610495e-05 + 174820 -6248.8076 -6254.0295 5.2218659 3718.3366 631.04326 -10603.409 0 250.26111 -9.9466153e-05 -0.00012687649 + 174830 -6248.792 -6253.9207 5.1286918 3716.7178 630.84103 -10601.48 0 245.79569 -0.00010325918 -0.00011673462 + 174840 -6248.6395 -6253.9139 5.2743755 3713.6357 631.02247 -10598.572 0 252.77767 -2.6947071e-05 -4.0943098e-05 + 174850 -6248.3442 -6253.9875 5.6433133 3709.7111 631.55605 -10595.255 0 270.45924 0.00011530628 8.6297318e-05 + 174860 -6247.9935 -6253.9901 5.9966616 3706.1525 632.25702 -10592.4 0 287.39367 0.00027038302 0.00022182466 + 174870 -6247.712 -6253.7535 6.0415129 3704.3019 632.84124 -10590.897 0 289.5432 0.00036866061 0.00030927598 + 174880 -6247.5738 -6253.2343 5.660504 3705.0343 633.02712 -10591.296 0 271.28311 0.0003576531 0.00030339411 + 174890 -6247.5491 -6252.5771 5.0280345 3708.3289 632.65136 -10593.557 0 240.97163 0.00022824697 0.00019107749 + 174900 -6247.5261 -6252.0428 4.5167751 3713.2487 631.75414 -10597.046 0 216.46921 1.9776045e-05 -5.5961804e-07 + 174910 -6247.3905 -6251.8461 4.4555145 3718.3295 630.59763 -10600.773 0 213.53326 -0.00019654878 -0.00021169183 + 174920 -6247.101 -6252.0205 4.9195131 3722.1405 629.60216 -10603.763 0 235.77067 -0.00034477512 -0.00036877437 + 174930 -6246.7077 -6252.4185 5.7108439 3723.7295 629.20958 -10605.358 0 273.69568 -0.00036873055 -0.00040813049 + 174940 -6246.3092 -6252.8347 6.5255876 3722.8154 629.71439 -10605.364 0 312.74277 -0.00024698729 -0.00029727466 + 174950 -6245.9832 -6253.1404 7.1571784 3719.7751 631.12607 -10604.042 0 343.01215 2.0876608e-06 -4.78908e-05 + 174960 -6245.7426 -6253.3306 7.588076 3715.512 633.12427 -10601.967 0 363.66318 0.00032391959 0.00028399086 + 174970 -6245.5393 -6253.4791 7.9397365 3711.2405 635.13533 -10599.855 0 380.51672 0.00063950206 0.0006114873 + 174980 -6245.3073 -6253.6516 8.3442924 3708.2071 636.5115 -10598.37 0 399.90531 0.00086389815 0.000840391 + 174990 -6245.0171 -6253.8291 8.8119988 3707.3894 636.75621 -10597.975 0 422.32043 0.00092761226 0.0008963025 + 175000 -6244.7154 -6253.8735 9.1581332 3709.2254 635.71666 -10598.816 0 438.90913 0.00079647356 0.00074862453 + 175010 -6244.5124 -6253.5784 9.0659543 3713.4085 633.66404 -10600.651 0 434.4914 0.00048696982 0.00042505645 + 175020 -6244.5003 -6252.8187 8.3183831 3718.7991 631.21162 -10602.829 0 398.66359 7.2689625e-05 1.0193277e-05 + 175030 -6244.6593 -6251.7127 7.0533744 3723.588 629.09478 -10604.395 0 338.03728 -0.00032708217 -0.00037597117 + 175040 -6244.8556 -6250.6223 5.7667099 3725.8434 627.91719 -10604.383 0 276.37309 -0.00058347913 -0.00061595485 + 175050 -6244.9488 -6249.9417 4.9929291 3724.3185 627.9759 -10602.236 0 239.28918 -0.00060854761 -0.00063518793 + 175060 -6244.8957 -6249.8621 4.966455 3719.0814 629.20519 -10598.149 0 238.02039 -0.00039242217 -0.00042775595 + 175070 -6244.7545 -6250.3221 5.5675945 3711.5679 631.21591 -10593.106 0 266.83037 -5.8403357e-06 -5.7628252e-05 + 175080 -6244.6206 -6251.1202 6.4996209 3704.0639 633.40721 -10588.591 0 311.4983 0.00042906052 0.0003633729 + 175090 -6244.5719 -6252.031 7.459135 3698.9232 635.13805 -10586.092 0 357.4836 0.00078166278 0.00071185376 + 175100 -6244.6512 -6252.8578 8.2065994 3697.8174 635.92115 -10586.596 0 393.30629 0.00095346012 0.00089123449 + 175110 -6244.8624 -6253.4627 8.6002646 3701.2143 635.57378 -10590.251 0 412.17294 0.000906507 0.00086032321 + 175120 -6245.1698 -6253.8031 8.6332987 3708.233 634.26829 -10596.304 0 413.75612 0.00067261859 0.00064327786 + 175130 -6245.5151 -6253.9348 8.4196946 3716.9587 632.46744 -10603.361 0 403.51901 0.00033893938 0.00031794846 + 175140 -6245.8668 -6253.9479 8.0810535 3725.1287 630.77167 -10609.848 0 387.28942 1.3365883e-05 -1.2919307e-05 + 175150 -6246.261 -6253.8757 7.614715 3730.893 629.72583 -10614.495 0 364.93987 -0.00021550375 -0.00025652222 + 175160 -6246.774 -6253.6791 6.9050963 3733.2909 629.64053 -10616.611 0 330.93096 -0.00030424155 -0.00035752901 + 175170 -6247.4293 -6253.3331 5.9038337 3732.2852 630.49261 -10616.111 0 282.94484 -0.00025602519 -0.0003088426 + 175180 -6248.1442 -6252.9197 4.7755161 3728.5011 631.95524 -10613.376 0 228.86953 -0.00010509234 -0.00014445376 + 175190 -6248.7865 -6252.6158 3.8292831 3722.9299 633.54333 -10609.089 0 183.52073 0.00010031496 7.8528045e-05 + 175200 -6249.2674 -6252.5902 3.3227968 3716.734 634.78973 -10604.114 0 159.24707 0.00030885312 0.00029854838 + 175210 -6249.5757 -6252.9044 3.32864 3711.1166 635.37201 -10599.393 0 159.52711 0.00047275079 0.00046284154 + 175220 -6249.7578 -6253.4801 3.7222754 3707.1724 635.16669 -10595.819 0 178.39232 0.00055400066 0.00053540578 + 175230 -6249.8873 -6254.1416 4.2543003 3705.681 634.24659 -10594.069 0 203.88994 0.00053159505 0.00050217488 + 175240 -6250.0331 -6254.7 4.6668987 3706.8923 632.83828 -10594.431 0 223.66397 0.00040836506 0.00037363524 + 175250 -6250.2278 -6255.0403 4.8124797 3710.4033 631.25248 -10596.696 0 230.64103 0.00021344178 0.00018274884 + 175260 -6250.4497 -6255.1672 4.7174156 3715.2258 629.80469 -10600.198 0 226.08502 -3.6039924e-06 -2.3421967e-05 + 175270 -6250.635 -6255.1796 4.5446331 3720.0676 628.74879 -10603.996 0 217.80432 -0.00018728289 -0.00019683412 + 175280 -6250.721 -6255.1864 4.4653838 3723.7453 628.24024 -10607.172 0 214.00625 -0.00029438888 -0.0003016513 + 175290 -6250.6929 -6255.2166 4.5236846 3725.5492 628.32914 -10609.095 0 216.80035 -0.0003075174 -0.00032233657 + 175300 -6250.5975 -6255.1968 4.5992874 3725.3864 628.97021 -10609.553 0 220.42366 -0.00023709367 -0.00026403728 + 175310 -6250.5122 -6255.0177 4.505446 3723.6563 630.03937 -10608.713 0 215.92625 -0.00011148484 -0.00014642761 + 175320 -6250.4904 -6254.6362 4.145726 3720.9735 631.35621 -10606.966 0 198.68645 3.8083039e-05 5.0663077e-06 + 175330 -6250.5255 -6254.1316 3.606029 3717.9303 632.7142 -10604.776 0 172.82114 0.00018854581 0.00016625042 + 175340 -6250.5574 -6253.6754 3.1179677 3715.0122 633.91297 -10602.601 0 149.43051 0.00032664228 0.00031673457 + 175350 -6250.5099 -6253.4397 2.9297533 3712.6478 634.7828 -10600.87 0 140.41022 0.00044276987 0.00043849918 + 175360 -6250.3325 -6253.5034 3.1709493 3711.2825 635.1983 -10599.984 0 151.96968 0.00052336862 0.00051347698 + 175370 -6250.0265 -6253.8082 3.7817532 3711.3675 635.08689 -10600.263 0 181.24283 0.00054837776 0.00052384997 + 175380 -6249.6488 -6254.1859 4.5370646 3713.2167 634.44003 -10601.843 0 217.44159 0.00049704164 0.0004570137 + 175390 -6249.2858 -6254.4456 5.1598377 3716.7762 633.32718 -10604.549 0 247.28837 0.00036053907 0.00031380683 + 175400 -6249.0001 -6254.4808 5.480757 3721.4301 631.90459 -10607.815 0 262.66863 0.00015521017 0.00011547214 + 175410 -6248.7792 -6254.334 5.5548519 3726.0021 630.40895 -10610.745 0 266.21967 -7.2504112e-05 -9.5946921e-05 + 175420 -6248.533 -6254.1618 5.628849 3729.0578 629.13267 -10612.352 0 269.76603 -0.00025625878 -0.00026636225 + 175430 -6248.1638 -6254.0977 5.9339802 3729.4489 628.38076 -10611.927 0 284.38963 -0.0003340048 -0.00034535155 + 175440 -6247.6636 -6254.1114 6.4478584 3726.8332 628.40536 -10609.35 0 309.01755 -0.00027465418 -0.0003028704 + 175450 -6247.1469 -6254.0069 6.8599646 3721.8425 629.31787 -10605.167 0 328.76799 -9.129586e-05 -0.00014031258 + 175460 -6246.7705 -6253.5878 6.8173078 3715.7917 631.00606 -10600.386 0 326.72364 0.00016680079 0.0001084989 + 175470 -6246.6084 -6252.848 6.2395886 3710.151 633.11131 -10596.11 0 299.0361 0.00043593327 0.00038665283 + 175480 -6246.5976 -6252.0165 5.4188952 3706.1127 635.10483 -10593.234 0 259.70386 0.00065836217 0.00062967565 + 175490 -6246.5923 -6251.4311 4.8388215 3704.4151 636.44409 -10592.29 0 231.90348 0.00079231699 0.00078117298 + 175500 -6246.4636 -6251.3402 4.8765817 3705.361 636.74631 -10593.448 0 233.71316 0.00081336471 0.00080461063 + 175510 -6246.1772 -6251.7613 5.5841031 3708.8781 635.91509 -10596.555 0 267.62155 0.00071409149 0.00069090118 + 175520 -6245.8137 -6252.4708 6.6571103 3714.5106 634.18104 -10601.162 0 319.04608 0.00050714424 0.00046260579 + 175530 -6245.5222 -6253.1316 7.6093816 3721.3479 632.04266 -10606.522 0 364.68426 0.00023102753 0.00017339634 + 175540 -6245.418 -6253.4874 8.0693672 3728.0108 630.12046 -10611.619 0 386.72935 -4.8027431e-05 -0.00010076241 + 175550 -6245.4925 -6253.5015 8.0090566 3732.8532 628.97004 -10615.325 0 383.83893 -0.00024709309 -0.00028046461 + 175560 -6245.6195 -6253.3349 7.7153413 3734.4452 628.92212 -10616.702 0 369.76245 -0.00029345929 -0.00030762224 + 175570 -6245.6646 -6253.175 7.5104223 3732.1838 630.00224 -10615.361 0 359.94158 -0.00015763228 -0.00016678016 + 175580 -6245.5964 -6253.0686 7.472215 3726.6828 631.93773 -10611.689 0 358.11047 0.00012689359 0.00010648145 + 175590 -6245.4993 -6252.9163 7.4170274 3719.6306 634.2296 -10606.777 0 355.46557 0.0004721901 0.00043479481 + 175600 -6245.484 -6252.6194 7.1353809 3713.1407 636.27312 -10602.033 0 341.96749 0.00077046876 0.00072366574 + 175610 -6245.5916 -6252.2123 6.6206649 3708.9613 637.5177 -10598.691 0 317.29941 0.00093557344 0.00089251907 + 175620 -6245.7744 -6251.8558 6.0813905 3707.9486 637.63244 -10597.437 0 291.45435 0.00093044178 0.00089986135 + 175630 -6245.9466 -6251.7203 5.7736979 3709.9599 636.61367 -10598.294 0 276.708 0.0007718638 0.00075336851 + 175640 -6246.0447 -6251.8747 5.8300349 3714.0828 634.78193 -10600.739 0 279.40798 0.00051703192 0.00050313889 + 175650 -6246.0565 -6252.2584 6.2018664 3719.0196 632.66643 -10603.944 0 297.22824 0.00024135625 0.00022289245 + 175660 -6246.0178 -6252.7295 6.7116522 3723.4797 630.82748 -10607.037 0 321.66003 1.5586736e-05 -1.3304434e-05 + 175670 -6245.9903 -6253.1376 7.1473479 3726.4883 629.68813 -10609.314 0 342.54101 -0.00011213107 -0.00015136588 + 175680 -6246.0323 -6253.3813 7.3489752 3727.5531 629.43114 -10610.366 0 352.20413 -0.00012512583 -0.00016901451 + 175690 -6246.169 -6253.4409 7.2718507 3726.6696 629.98235 -10610.093 0 348.50789 -3.6271087e-05 -7.680102e-05 + 175700 -6246.3758 -6253.3827 7.0069038 3724.2127 631.07103 -10608.666 0 335.81014 0.00012191346 9.0113376e-05 + 175710 -6246.5942 -6253.3198 6.7255792 3720.8127 632.33906 -10606.471 0 322.32749 0.0003087944 0.00028495948 + 175720 -6246.7735 -6253.3388 6.5653347 3717.2622 633.45895 -10604.06 0 314.64768 0.00048415308 0.00046218935 + 175730 -6246.9057 -6253.4475 6.541831 3714.4085 634.21834 -10602.074 0 313.52125 0.00061391562 0.00058686712 + 175740 -6247.0253 -6253.5819 6.5565449 3712.978 634.54751 -10601.107 0 314.22642 0.00067512851 0.00063968225 + 175750 -6247.181 -6253.6572 6.4761988 3713.3728 634.49547 -10601.525 0 310.37579 0.0006600312 0.00061813312 + 175760 -6247.4056 -6253.6181 6.2124408 3715.5358 634.17922 -10603.333 0 297.73502 0.00057734379 0.00053475046 + 175770 -6247.7006 -6253.4647 5.7641467 3718.9532 633.72926 -10606.147 0 276.25025 0.00044976969 0.00041290922 + 175780 -6248.0346 -6253.2582 5.2235465 3722.7947 633.24708 -10609.3 0 250.34166 0.00030808861 0.00028061952 + 175790 -6248.3589 -6253.1025 4.7435641 3726.1468 632.7861 -10612.035 0 227.33821 0.00018284999 0.00016337923 + 175800 -6248.6353 -6253.0958 4.460572 3728.2727 632.36237 -10613.731 0 213.77564 9.5818905e-05 7.8423563e-05 + 175810 -6248.8647 -6253.2687 4.4039987 3728.8102 631.98696 -10614.066 0 211.06433 5.485781e-05 3.2886113e-05 + 175820 -6249.0928 -6253.559 4.466144 3727.8237 631.69559 -10613.078 0 214.04268 5.5420785e-05 2.633524e-05 + 175830 -6249.3771 -6253.8573 4.4801931 3725.6895 631.55076 -10611.098 0 214.71599 8.7930797e-05 5.5197031e-05 + 175840 -6249.7401 -6254.0917 4.3515969 3722.903 631.6125 -10608.607 0 208.55294 0.00014526209 0.00011539407 + 175850 -6250.152 -6254.2722 4.1202072 3719.9478 631.89853 -10606.118 0 197.46345 0.00022376897 0.00020125616 + 175860 -6250.558 -6254.4606 3.9025209 3717.2809 632.3583 -10604.1 0 187.0307 0.00031735039 0.00030198642 + 175870 -6250.9186 -6254.7082 3.7895762 3715.3587 632.87231 -10602.939 0 181.61776 0.00041105234 0.00039917317 + 175880 -6251.2244 -6255.0213 3.7968799 3714.6044 633.27698 -10602.903 0 181.96779 0.00048102498 0.00046847398 + 175890 -6251.4859 -6255.3665 3.8806014 3715.2995 633.41105 -10604.077 0 185.98019 0.00050186734 0.00048607306 + 175900 -6251.7178 -6255.6899 3.9720522 3717.4591 633.17349 -10606.322 0 190.36303 0.00045708305 0.00043762004 + 175910 -6251.9316 -6255.9288 3.9971564 3720.7627 632.57293 -10609.264 0 191.56616 0.00034742529 0.00032582115 + 175920 -6252.1335 -6256.0255 3.8919573 3724.5728 631.74526 -10612.344 0 186.52443 0.0001940298 0.00017320596 + 175930 -6252.3189 -6255.9525 3.6336333 3728.0436 630.92535 -10614.921 0 174.14409 3.5333158e-05 1.8266422e-05 + 175940 -6252.4686 -6255.7389 3.2703187 3730.3125 630.37909 -10616.43 0 156.73202 -8.230792e-05 -9.4632359e-05 + 175950 -6252.5567 -6255.4643 2.9075177 3730.7498 630.3187 -10616.533 0 139.34456 -0.00011908875 -0.00012894065 + 175960 -6252.5703 -6255.2139 2.6436341 3729.1944 630.82947 -10615.238 0 126.69778 -5.7072902e-05 -6.8815575e-05 + 175970 -6252.5236 -6255.0317 2.5081125 3726.0579 631.82966 -10612.919 0 120.20283 9.0607224e-05 7.368447e-05 + 175980 -6252.4519 -6254.9127 2.4607688 3722.222 633.07708 -10610.212 0 117.93385 0.00028217857 0.00026048686 + 175990 -6252.3876 -6254.8367 2.4491068 3718.7601 634.22649 -10607.823 0 117.37494 0.00046096536 0.00043846799 + 176000 -6252.3368 -6254.8045 2.467692 3716.6034 634.92694 -10606.335 0 118.26565 0.00057431307 0.00055570776 + 176010 -6252.273 -6254.8446 2.5716169 3716.2806 634.93053 -10606.056 0 123.24631 0.00058989191 0.00057718855 + 176020 -6252.1497 -6254.9878 2.8380845 3717.8031 634.17622 -10606.967 0 136.01694 0.00050409494 0.00049487392 + 176030 -6251.9273 -6255.2291 3.3017447 3720.7032 632.82132 -10608.754 0 158.23813 0.00034131533 0.00032984461 + 176040 -6251.6008 -6255.5019 3.9010937 3724.1863 631.21046 -10610.899 0 186.9623 0.00014603869 0.00012685099 + 176050 -6251.2153 -6255.6897 4.4744045 3727.334 629.78777 -10612.811 0 214.43857 -2.8964595e-05 -5.698297e-05 + 176060 -6250.8494 -6255.6789 4.8295293 3729.3058 628.97075 -10613.955 0 231.45814 -0.00013516832 -0.00016706948 + 176070 -6250.5674 -6255.4326 4.8652185 3729.5116 629.01948 -10613.964 0 233.16857 -0.0001393506 -0.00016687173 + 176080 -6250.3721 -6255.0301 4.657999 3727.7559 629.94657 -10612.733 0 223.23745 -3.2209832e-05 -4.9842196e-05 + 176090 -6250.2052 -6254.6281 4.422927 3724.35 631.50752 -10610.486 0 211.97148 0.00016632596 0.00015656568 + 176100 -6250.0006 -6254.3568 4.356157 3720.1371 633.27903 -10607.773 0 208.77149 0.00040764383 0.00039717111 + 176110 -6249.7432 -6254.2295 4.4862794 3716.3383 634.79362 -10605.361 0 215.00768 0.00062451683 0.0006046006 + 176120 -6249.481 -6254.1442 4.663208 3714.1856 635.67944 -10604.009 0 223.48709 0.00075136284 0.00071990561 + 176130 -6249.2833 -6253.9758 4.6925202 3714.4578 635.76056 -10604.194 0 224.8919 0.00074866067 0.00071191748 + 176140 -6249.1819 -6253.6868 4.5048706 3717.1432 635.09217 -10605.922 0 215.89867 0.00062035222 0.0005882971 + 176150 -6249.1415 -6253.3727 4.231253 3721.4146 633.92574 -10608.713 0 202.78539 0.00041432838 0.00039316912 + 176160 -6249.0798 -6253.2076 4.1278575 3725.9455 632.62015 -10611.773 0 197.83009 0.00020393349 0.00019129214 + 176170 -6248.9226 -6253.3212 4.3986444 3729.4223 631.5308 -10614.274 0 210.80772 5.8430878e-05 4.4847098e-05 + 176180 -6248.6556 -6253.6928 5.037188 3731.0099 630.91232 -10615.615 0 241.41031 1.6513336e-05 -7.5692718e-06 + 176190 -6248.3377 -6254.1432 5.8055136 3730.5635 630.86052 -10615.567 0 278.23279 7.537362e-05 3.8573495e-05 + 176200 -6248.0606 -6254.4401 6.3795278 3728.5247 631.30349 -10614.268 0 305.74277 0.00019932076 0.0001569784 + 176210 -6247.8785 -6254.4447 6.5661988 3725.6134 632.03921 -10612.097 0 314.68909 0.00034112391 0.00030441258 + 176220 -6247.7639 -6254.1912 6.4272393 3722.525 632.80843 -10609.525 0 308.02937 0.00046263701 0.00043780655 + 176230 -6247.6324 -6253.8374 6.2050298 3719.7955 633.38255 -10607.016 0 297.37984 0.00054375949 0.00052699287 + 176240 -6247.4173 -6253.5294 6.1120514 3717.8332 633.63789 -10605.001 0 292.9238 0.00057899884 0.00055958082 + 176250 -6247.1282 -6253.2974 6.1691243 3716.9715 633.58612 -10603.855 0 295.65905 0.00057013462 0.00053940565 + 176260 -6246.8416 -6253.0747 6.2330293 3717.4049 633.34727 -10603.827 0 298.72174 0.00052361734 0.00048208774 + 176270 -6246.6328 -6252.8097 6.1768322 3719.0353 633.08072 -10604.926 0 296.02846 0.00045336127 0.00041000961 + 176280 -6246.5111 -6252.5581 6.0469706 3721.3922 632.91182 -10606.862 0 289.80476 0.000382301 0.000346987 + 176290 -6246.413 -6252.4631 6.050068 3723.7609 632.88931 -10609.113 0 289.9532 0.00033661611 0.00031232152 + 176300 -6246.2562 -6252.6386 6.3823966 3725.4781 632.98604 -10611.103 0 305.88026 0.00033376011 0.00031498056 + 176310 -6246.0056 -6253.0587 7.0530445 3726.2096 633.131 -10612.399 0 338.02147 0.00037231456 0.00035020402 + 176320 -6245.699 -6253.5485 7.8495415 3726.034 633.25188 -10612.834 0 376.19407 0.00043197241 0.00040127434 + 176330 -6245.4173 -6253.8832 8.4659925 3725.3059 633.31162 -10612.501 0 405.73786 0.00048500642 0.00044717056 + 176340 -6245.2272 -6253.9124 8.685191 3724.4222 633.32772 -10611.662 0 416.24308 0.0005120369 0.00047289346 + 176350 -6245.1408 -6253.6265 8.4856819 3723.6422 633.36485 -10610.633 0 406.68149 0.00051183361 0.00047650291 + 176360 -6245.1193 -6253.1364 8.0171346 3723.0431 633.50108 -10609.681 0 384.22607 0.00049925806 0.00046845977 + 176370 -6245.1144 -6252.5918 7.4773724 3722.6017 633.78511 -10608.979 0 358.35764 0.00049356694 0.00046404939 + 176380 -6245.1086 -6252.0993 6.9907263 3722.3124 634.20665 -10608.618 0 335.03483 0.00050568521 0.00047410746 + 176390 -6245.1171 -6251.7062 6.5891892 3722.2312 634.68914 -10608.627 0 315.79092 0.00053312393 0.00049943177 + 176400 -6245.154 -6251.4515 6.2974176 3722.4145 635.10243 -10608.968 0 301.80759 0.00056424882 0.000530897 + 176410 -6245.204 -6251.4054 6.2014052 3722.8381 635.29429 -10609.538 0 297.20614 0.00058582482 0.00055385972 + 176420 -6245.2369 -6251.6331 6.3961358 3723.3976 635.13963 -10610.17 0 306.53872 0.00058731431 0.00055426254 + 176430 -6245.2514 -6252.1118 6.8603791 3723.9765 634.59576 -10610.684 0 328.78786 0.00056191941 0.00052449033 + 176440 -6245.2944 -6252.7043 7.4099266 3724.482 633.73914 -10610.926 0 355.12526 0.00050890461 0.00046770117 + 176450 -6245.4284 -6253.2358 7.807373 3724.7991 632.75962 -10610.795 0 374.17312 0.00043852154 0.00039905081 + 176460 -6245.6744 -6253.6096 7.9351952 3724.7436 631.90624 -10610.259 0 380.29908 0.0003739614 0.00034186604 + 176470 -6245.9939 -6253.8475 7.8536251 3724.1342 631.40367 -10609.385 0 376.38978 0.00034324782 0.00031834851 + 176480 -6246.3347 -6254.0133 7.6786373 3722.9823 631.3731 -10608.369 0 368.00338 0.00036231792 0.00033819279 + 176490 -6246.6896 -6254.1128 7.4231458 3721.6276 631.78629 -10607.527 0 355.7588 0.00042162313 0.00039171977 + 176500 -6247.0951 -6254.0861 6.9910536 3720.6448 632.46969 -10607.201 0 335.05052 0.00048894968 0.00045288264 + 176510 -6247.5735 -6253.8982 6.3246954 3720.5464 633.16406 -10607.609 0 303.11489 0.00052784751 0.00049146433 + 176520 -6248.0915 -6253.6152 5.5236991 3721.5003 633.62537 -10608.741 0 264.72665 0.00051776963 0.00048757475 + 176530 -6248.5792 -6253.3833 4.804097 3723.2532 633.72501 -10610.362 0 230.23928 0.00046258637 0.00044048531 + 176540 -6248.9834 -6253.3374 4.3540498 3725.2714 633.49949 -10612.108 0 208.6705 0.00038557357 0.00036828331 + 176550 -6249.2964 -6253.5219 4.2255409 3726.9735 633.12585 -10613.621 0 202.51163 0.00031773526 0.00030015147 + 176560 -6249.5478 -6253.8779 4.3301049 3727.9322 632.83892 -10614.649 0 207.52292 0.00028627168 0.00026534237 + 176570 -6249.7773 -6254.2881 4.5107989 3727.9856 632.82879 -10615.102 0 216.18279 0.00030605141 0.00028249795 + 176580 -6250.0101 -6254.6408 4.6306912 3727.2577 633.15804 -10615.057 0 221.92871 0.00037477207 0.00035209936 + 176590 -6250.2446 -6254.8787 4.6341114 3726.1037 633.72741 -10614.71 0 222.09262 0.00047253993 0.00045432145 + 176600 -6250.4554 -6255.014 4.5585659 3724.9993 634.30317 -10614.316 0 218.47206 0.00056656848 0.00055368816 + 176610 -6250.6099 -6255.1018 4.4919151 3724.4061 634.60094 -10614.109 0 215.27777 0.00062042122 0.00061004739 + 176620 -6250.6917 -6255.1872 4.495575 3724.6401 634.39878 -10614.226 0 215.45318 0.00060561229 0.00059289559 + 176630 -6250.7155 -6255.2616 4.5460734 3725.7575 633.63737 -10614.657 0 217.87335 0.00051256439 0.00049418909 + 176640 -6250.7202 -6255.2666 4.546392 3727.4778 632.46527 -10615.21 0 217.88861 0.00035764747 0.00033458992 + 176650 -6250.7405 -6255.1458 4.4053667 3729.1924 631.2068 -10615.545 0 211.12989 0.00018282673 0.00015990656 + 176660 -6250.7799 -6254.9012 4.1212555 3730.1143 630.26031 -10615.276 0 197.51369 4.543663e-05 2.77628e-05 + 176670 -6250.8077 -6254.6066 3.7988505 3729.5651 629.96149 -10614.133 0 182.06223 -8.3057766e-07 -1.1786027e-05 + 176680 -6250.7807 -6254.368 3.5873372 3727.2979 630.4594 -10612.125 0 171.92533 7.2490847e-05 6.4820891e-05 + 176690 -6250.6722 -6254.2632 3.5910414 3723.7039 631.64997 -10609.617 0 172.10285 0.00025385873 0.00024335941 + 176700 -6250.4871 -6254.3046 3.8175011 3719.78 633.19378 -10607.278 0 182.95607 0.00049142499 0.00047328307 + 176710 -6250.256 -6254.4435 4.1874763 3716.8425 634.61878 -10605.905 0 200.68736 0.00070888332 0.00068270288 + 176720 -6250.0152 -6254.6043 4.5890682 3716.0781 635.47749 -10606.16 0 219.9339 0.00083219803 0.00080245355 + 176730 -6249.7826 -6254.7271 4.9444691 3718.0909 635.50367 -10608.322 0 236.9667 0.00081735405 0.00079079734 + 176740 -6249.5405 -6254.796 5.2554225 3722.6201 634.7101 -10612.126 0 251.86933 0.00066821884 0.00064935946 + 176750 -6249.2413 -6254.8283 5.5869782 3728.5624 633.39203 -10616.783 0 267.75934 0.00043641866 0.00042389062 + 176760 -6248.8443 -6254.8212 5.9768896 3734.3164 632.03702 -10621.175 0 286.44608 0.00020231299 0.00018946488 + 176770 -6248.3616 -6254.7057 6.3440843 3738.3024 631.16943 -10624.177 0 304.04412 4.5711924e-05 2.5842359e-05 + 176780 -6247.8638 -6254.379 6.5152133 3739.4198 631.1724 -10624.971 0 312.24558 2.0046354e-05 -8.1558575e-06 + 176790 -6247.4302 -6253.8079 6.377705 3737.2997 632.14332 -10623.251 0 305.65541 0.00013896257 0.00010685895 + 176800 -6247.0904 -6253.0975 6.0070696 3732.3646 633.84116 -10619.303 0 287.89248 0.00037509982 0.00034455209 + 176810 -6246.8168 -6252.4488 5.6319809 3725.7485 635.75491 -10613.952 0 269.91613 0.00066725381 0.00064014508 + 176820 -6246.5655 -6252.0432 5.4777437 3719.0666 637.26968 -10608.38 0 262.52421 0.00093480283 0.00090912418 + 176830 -6246.3176 -6251.9533 5.6356587 3714.0182 637.8681 -10603.84 0 270.09238 0.0010993414 0.0010724105 + 176840 -6246.0874 -6252.1361 6.0487164 3711.9017 637.29831 -10601.336 0 289.88843 0.0011094901 0.0010809892 + 176850 -6245.9 -6252.4914 6.591464 3713.2133 635.65615 -10601.361 0 315.89994 0.0009598857 0.00093197741 + 176860 -6245.7648 -6252.9254 7.1605643 3717.5023 633.3558 -10603.784 0 343.17442 0.00069472828 0.00066952415 + 176870 -6245.6693 -6253.3735 7.7041576 3723.5465 630.99957 -10607.92 0 369.22646 0.00039220958 0.00036920804 + 176880 -6245.5978 -6253.7789 8.181027 3729.7647 629.19329 -10612.737 0 392.08072 0.00013610506 0.00011216775 + 176890 -6245.555 -6254.0623 8.5072925 3734.6879 628.37265 -10617.123 0 407.71719 -1.1964879e-05 -3.9860054e-05 + 176900 -6245.5677 -6254.1305 8.5627343 3737.314 628.69723 -10620.142 0 410.37427 -2.7268757e-05 -5.8942508e-05 + 176910 -6245.6585 -6253.9302 8.2717548 3737.2583 630.03822 -10621.227 0 396.4289 7.9910885e-05 4.8179132e-05 + 176920 -6245.815 -6253.5042 7.6891641 3734.7226 632.05049 -10620.277 0 368.50789 0.00027659115 0.0002489925 + 176930 -6245.9901 -6252.9862 6.9960863 3730.3762 634.29288 -10617.655 0 335.29171 0.00051997844 0.00049753136 + 176940 -6246.1351 -6252.528 6.3928878 3725.2218 636.35033 -10614.1 0 306.38305 0.00076547536 0.00074544114 + 176950 -6246.2346 -6252.2188 5.9842257 3720.437 637.91683 -10610.573 0 286.79767 0.00097129094 0.00095014971 + 176960 -6246.309 -6252.0689 5.7598508 3717.1528 638.81891 -10608.041 0 276.04437 0.0011033298 0.0010801621 + 176970 -6246.386 -6252.0614 5.6754372 3716.1868 638.98931 -10607.238 0 271.9988 0.0011407643 0.001117635 + 176980 -6246.4704 -6252.2119 5.7414277 3717.8261 638.4257 -10608.464 0 275.16143 0.001079367 0.0010584838 + 176990 -6246.5416 -6252.5694 6.027763 3721.7587 637.17308 -10611.501 0 288.88422 0.00093047472 0.00091108906 + 177000 -6246.5795 -6253.1571 6.5776148 3727.1694 635.34493 -10615.671 0 315.23621 0.00071703712 0.00069523986 + 177010 -6246.5959 -6253.905 7.3091322 3732.9321 633.16303 -10620 0 350.29463 0.00047024421 0.00044204996 + 177020 -6246.6411 -6254.6389 7.9977849 3737.8128 630.97269 -10623.424 0 383.29873 0.00022839873 0.00019348343 + 177030 -6246.7771 -6255.1446 8.3674456 3740.6577 629.19893 -10625.001 0 401.01494 3.5768377e-05 -1.3730174e-06 + 177040 -6247.0327 -6255.2656 8.2329625 3740.5999 628.24342 -10624.109 0 394.56976 -6.2865683e-05 -9.538986e-05 + 177050 -6247.3769 -6254.9781 7.6012648 3737.2969 628.35871 -10620.634 0 364.29526 -3.37855e-05 -5.6859327e-05 + 177060 -6247.7313 -6254.4032 6.6718858 3731.1338 629.55238 -10615.089 0 319.7542 0.00013135568 0.00011714899 + 177070 -6248.013 -6253.753 5.7399934 3723.2819 631.56178 -10608.597 0 275.09269 0.00040527976 0.00039356151 + 177080 -6248.1807 -6253.2344 5.0536304 3715.5351 633.91071 -10602.68 0 242.19832 0.00072489857 0.00070665405 + 177090 -6248.2564 -6252.9568 4.7003706 3709.9217 636.02962 -10598.908 0 225.26813 0.0010038566 0.00097282648 + 177100 -6248.3106 -6252.9005 4.5898342 3708.1545 637.40321 -10598.458 0 219.97061 0.0011564428 0.0011137514 + 177110 -6248.4189 -6252.9688 4.5499075 3711.0626 637.7062 -10601.738 0 218.05709 0.0011269192 0.001081523 + 177120 -6248.6099 -6253.0896 4.4796632 3718.2064 636.8925 -10608.189 0 214.6906 0.00091365727 0.00087721648 + 177130 -6248.8409 -6253.2853 4.4443719 3727.8784 635.21513 -10616.379 0 212.99924 0.0005759479 0.00055479155 + 177140 -6249.0244 -6253.6434 4.6189607 3737.5692 633.1706 -10624.383 0 221.36651 0.00021691794 0.00020700949 + 177150 -6249.0954 -6254.2022 5.1068333 3744.7545 631.37693 -10630.334 0 244.74811 -5.2074715e-05 -6.2540625e-05 + 177160 -6249.0667 -6254.8576 5.79095 3747.6755 630.40622 -10632.939 0 277.53482 -0.00014963778 -0.0001713997 + 177170 -6249.0253 -6255.3932 6.3679481 3745.7966 630.6069 -10631.797 0 305.1878 -4.8575532e-05 -8.3256196e-05 + 177180 -6249.0662 -6255.6188 6.5526231 3739.8263 631.97108 -10627.416 0 314.03847 0.00022093124 0.00018155093 + 177190 -6249.2198 -6255.4999 6.2800411 3731.4013 634.1078 -10621.009 0 300.97481 0.0005850842 0.00055225849 + 177200 -6249.4334 -6255.1727 5.739338 3722.6193 636.35077 -10614.143 0 275.06128 0.00094809721 0.00092761552 + 177210 -6249.6172 -6254.8433 5.2260288 3715.5604 637.97028 -10608.374 0 250.46062 0.0012146703 0.0012031109 + 177220 -6249.7119 -6254.6496 4.9377431 3711.866 638.41142 -10604.927 0 236.64436 0.0013104597 0.0012983914 + 177230 -6249.7259 -6254.5825 4.8565394 3712.3966 637.47229 -10604.451 0 232.75262 0.0011995337 0.0011789095 + 177240 -6249.724 -6254.5128 4.7887363 3717.0009 635.36325 -10606.877 0 229.50311 0.00089664799 0.00086704599 + 177250 -6249.7738 -6254.3097 4.5359606 3724.4645 632.63223 -10611.406 0 217.38868 0.00046990039 0.00043894972 + 177260 -6249.8883 -6253.969 4.0806669 3732.7288 629.98952 -10616.687 0 195.56846 2.8542779e-05 5.7939656e-06 + 177270 -6250.01 -6253.6466 3.6366126 3739.4227 628.10105 -10621.17 0 174.28688 -0.00030559181 -0.0003167727 + 177280 -6250.0522 -6253.559 3.5067992 3742.5936 627.42129 -10623.574 0 168.06549 -0.0004359898 -0.00044171611 + 177290 -6249.9629 -6253.8219 3.8590361 3741.3617 628.10269 -10623.286 0 184.94666 -0.0003238163 -0.00033525375 + 177300 -6249.7573 -6254.3589 4.6016227 3736.2059 629.98057 -10620.545 0 220.53558 -5.7352199e-07 -2.5497786e-05 + 177310 -6249.5027 -6254.9466 5.4439678 3728.7614 632.61921 -10616.327 0 260.90549 0.00044360795 0.00040655948 + 177320 -6249.27 -6255.3463 6.076329 3721.2441 635.41035 -10612.001 0 291.21178 0.00088987747 0.00085025366 + 177330 -6249.0867 -6255.4236 6.3369291 3715.7527 637.71407 -10608.89 0 303.7012 0.0012266626 0.0011956864 + 177340 -6248.9194 -6255.1912 6.2717665 3713.6961 639.01492 -10607.902 0 300.57824 0.0013794453 0.0013625426 + 177350 -6248.6971 -6254.7698 6.072683 3715.5003 639.05123 -10609.321 0 291.03705 0.0013260015 0.0013190397 + 177360 -6248.3584 -6254.3036 5.945271 3720.6256 637.87908 -10612.808 0 284.93075 0.0010951132 0.0010865066 + 177370 -6247.8963 -6253.8815 5.9851272 3727.8105 635.85348 -10617.545 0 286.84088 0.00075282949 0.00073038877 + 177380 -6247.3726 -6253.5052 6.1326484 3735.4071 633.53276 -10622.445 0 293.91092 0.00038355098 0.00034229406 + 177390 -6246.8878 -6253.1281 6.2402623 3741.6928 631.52857 -10626.349 0 299.06839 7.2381851e-05 1.8412368e-05 + 177400 -6246.5181 -6252.7372 6.2191672 3745.1334 630.33821 -10628.209 0 298.05739 -0.00010877263 -0.00016161923 + 177410 -6246.257 -6252.4136 6.1566449 3744.6485 630.20852 -10627.271 0 295.06097 -0.00011309586 -0.0001524335 + 177420 -6246.0141 -6252.2999 6.2857687 3739.9235 631.07817 -10623.302 0 301.2493 6.90429e-05 4.5605426e-05 + 177430 -6245.682 -6252.4855 6.8034975 3731.6866 632.61605 -10616.788 0 326.06178 0.00040040988 0.00038412948 + 177440 -6245.2205 -6252.9067 7.6862555 3721.7422 634.33242 -10608.981 0 368.36849 0.00079799372 0.00077604328 + 177450 -6244.6917 -6253.3633 8.6716657 3712.5906 635.71849 -10601.672 0 415.59488 0.0011520366 0.0011166739 + 177460 -6244.217 -6253.6383 9.4212746 3706.696 636.37727 -10596.712 0 451.52034 0.0013600571 0.0013128971 + 177470 -6243.8993 -6253.6174 9.7181865 3705.6951 636.12106 -10595.434 0 465.75003 0.0013616875 0.0013112126 + 177480 -6243.7696 -6253.3251 9.5554985 3709.8791 635.01444 -10598.219 0 457.9531 0.0011582484 0.0011138674 + 177490 -6243.787 -6252.8852 9.0982518 3718.1231 633.35096 -10604.359 0 436.03928 0.00080988049 0.00077663074 + 177500 -6243.8725 -6252.4567 8.5841689 3728.2531 631.57396 -10612.284 0 411.40154 0.00041423797 0.00039029048 + 177510 -6243.955 -6252.1664 8.2113422 3737.7047 630.17155 -10620.043 0 393.53359 7.6511459e-05 5.4332917e-05 + 177520 -6244.012 -6252.0523 8.0402924 3744.2553 629.57046 -10625.878 0 385.33592 -0.00011918565 -0.00014805461 + 177530 -6244.0814 -6252.047 7.9656446 3746.5786 630.03687 -10628.662 0 381.75839 -0.00012907408 -0.00016798777 + 177540 -6244.2293 -6252.0352 7.8058177 3744.456 631.5936 -10628.085 0 374.09858 4.4591247e-05 1.710326e-07 + 177550 -6244.492 -6251.9525 7.4604517 3738.6631 633.9831 -10624.599 0 357.54671 0.00035992279 0.00031926635 + 177560 -6244.8425 -6251.8465 7.0040013 3730.6841 636.71009 -10619.241 0 335.67104 0.0007482584 0.00071858832 + 177570 -6245.2096 -6251.8497 6.640084 3722.386 639.16343 -10613.399 0 318.23008 0.0011284257 0.0011097315 + 177580 -6245.528 -6252.0922 6.5642137 3715.6774 640.7748 -10608.544 0 314.59395 0.0014205564 0.0014053938 + 177590 -6245.7823 -6252.6138 6.8315179 3712.1478 641.15964 -10605.921 0 327.40467 0.001559298 0.0015373598 + 177600 -6246.0222 -6253.3208 7.2986681 3712.714 640.20349 -10606.238 0 349.79313 0.001506238 0.0014710372 + 177610 -6246.3386 -6254.0156 7.6769688 3717.3449 638.07956 -10609.44 0 367.92342 0.0012607484 0.0012145388 + 177620 -6246.8046 -6254.4977 7.6930552 3724.9562 635.19834 -10614.652 0 368.69437 0.00086648364 0.00081969023 + 177630 -6247.4116 -6254.6851 7.2734925 3733.5772 632.10575 -10620.368 0 348.58657 0.00040792529 0.00037227701 + 177640 -6248.0578 -6254.6667 6.6089514 3740.8346 629.36236 -10624.864 0 316.73804 -7.9238544e-06 -2.8264339e-05 + 177650 -6248.6122 -6254.6304 6.0181806 3744.6637 627.43999 -10626.734 0 288.42498 -0.00028218984 -0.00029437476 + 177660 -6249.005 -6254.709 5.7039803 3743.9905 626.65153 -10625.351 0 273.36674 -0.00035525396 -0.00037260859 + 177670 -6249.2679 -6254.8739 5.6060385 3739.0767 627.10527 -10621.056 0 268.67282 -0.00022391368 -0.00025564554 + 177680 -6249.4932 -6254.9724 5.4792244 3731.3623 628.67521 -10615.01 0 262.59518 6.2642235e-05 1.8391635e-05 + 177690 -6249.753 -6254.8731 5.1201618 3722.9199 631.00269 -10608.796 0 245.38688 0.00042344172 0.00037766318 + 177700 -6250.0471 -6254.5828 4.5356313 3715.819 633.55604 -10603.958 0 217.3729 0.00077072706 0.00073507393 + 177710 -6250.3157 -6254.2424 3.9267285 3711.6561 635.75031 -10601.649 0 188.19086 0.0010292009 0.0010081552 + 177720 -6250.4891 -6254.0296 3.5405502 3711.3154 637.09351 -10602.439 0 169.68303 0.0011472316 0.0011360541 + 177730 -6250.5323 -6254.0519 3.5195223 3714.8945 637.31354 -10606.26 0 168.67526 0.001102947 0.0010914999 + 177740 -6250.463 -6254.2945 3.8315128 3721.7218 636.43007 -10612.446 0 183.62759 0.00090768749 0.00088697403 + 177750 -6250.343 -6254.6393 4.296233 3730.4478 634.75249 -10619.84 0 205.89959 0.00060636792 0.00057403041 + 177760 -6250.248 -6254.937 4.6890021 3739.2337 632.79938 -10626.97 0 224.72329 0.00027236593 0.00023412435 + 177770 -6250.2226 -6255.0978 4.8752297 3746.0667 631.15561 -10632.32 0 233.64836 -5.4458636e-06 -3.9611529e-05 + 177780 -6250.2492 -6255.143 4.8937871 3749.2016 630.3067 -10634.651 0 234.53774 -0.00014400456 -0.00016693038 + 177790 -6250.2598 -6255.1739 4.9140537 3747.6647 630.5026 -10633.341 0 235.50903 -9.2117149e-05 -0.00010481645 + 177800 -6250.1894 -6255.2712 5.0817857 3741.6578 631.6902 -10628.619 0 243.54768 0.00014753246 0.00013669025 + 177810 -6250.0303 -6255.4091 5.3788663 3732.6488 633.52667 -10621.585 0 257.78545 0.00051179964 0.00049372876 + 177820 -6249.8388 -6255.4644 5.6255862 3723.0112 635.46539 -10613.941 0 269.60966 0.00089299367 0.00086487751 + 177830 -6249.6894 -6255.3146 5.6252228 3715.2964 636.89835 -10607.509 0 269.59224 0.0011736713 0.0011406145 + 177840 -6249.6168 -6254.9368 5.3200896 3711.4305 637.32842 -10603.696 0 254.96854 0.0012662659 0.0012368511 + 177850 -6249.5956 -6254.4292 4.8336523 3712.1644 636.52558 -10603.119 0 231.65574 0.0011410882 0.0011209639 + 177860 -6249.564 -6253.9528 4.3888475 3716.948 634.61227 -10605.513 0 210.3382 0.00083309185 0.00082128109 + 177870 -6249.4649 -6253.646 4.1811223 3724.2051 632.04345 -10609.895 0 200.38284 0.00042796221 0.00041773568 + 177880 -6249.2778 -6253.5617 4.2838523 3731.8561 629.48654 -10614.904 0 205.30624 3.5148611e-05 1.8371023e-05 + 177890 -6249.028 -6253.6523 4.6243608 3737.9028 627.63871 -10619.194 0 221.62532 -0.00024242918 -0.00027010447 + 177900 -6248.7716 -6253.8099 5.0383832 3740.9105 627.03255 -10621.753 0 241.46759 -0.0003336833 -0.00036981008 + 177910 -6248.5595 -6253.9383 5.3788015 3740.2946 627.88218 -10622.115 0 257.78235 -0.00021461998 -0.00025130599 + 177920 -6248.4005 -6254.0145 5.614052 3736.3933 630.01431 -10620.422 0 269.05687 8.7877169e-05 5.8673707e-05 + 177930 -6248.2509 -6254.094 5.8430866 3730.3603 632.91036 -10617.365 0 280.03349 0.00050282859 0.00048344163 + 177940 -6248.0447 -6254.2519 6.2072361 3723.9126 635.8524 -10614.017 0 297.48558 0.00093090694 0.00091580866 + 177950 -6247.7451 -6254.5038 6.7587124 3718.9473 638.13068 -10611.582 0 323.91542 0.0012672264 0.0012464513 + 177960 -6247.381 -6254.7653 7.3843634 3717.0519 639.24731 -10611.064 0 353.90013 0.0014278841 0.0013938508 + 177970 -6247.0372 -6254.8847 7.847548 3718.999 639.05129 -10612.935 0 376.09853 0.0013744002 0.0013273514 + 177980 -6246.8028 -6254.729 7.926181 3724.4071 637.76298 -10616.899 0 379.86707 0.0011279685 0.001076159 + 177990 -6246.7113 -6254.2692 7.5578892 3731.7515 635.88301 -10621.904 0 362.21646 0.00076631426 0.00072069263 + 178000 -6246.7162 -6253.6146 6.8983886 3738.7912 634.0192 -10626.425 0 330.60949 0.00040124024 0.00036802249 + 178010 -6246.7214 -6252.9675 6.2460658 3743.2938 632.6931 -10628.954 0 299.34652 0.00014245765 0.00011864366 + 178020 -6246.6481 -6252.5121 5.8640811 3743.8018 632.19158 -10628.506 0 281.03967 5.9937988e-05 3.5440286e-05 + 178030 -6246.4888 -6252.3104 5.8215368 3740.1311 632.50562 -10624.947 0 279.00071 0.00016039772 0.0001257696 + 178040 -6246.3056 -6252.2965 5.9908887 3733.3784 633.36322 -10619.038 0 287.117 0.00038962572 0.00034324061 + 178050 -6246.1718 -6252.375 6.2032103 3725.4597 634.33714 -10612.172 0 297.29264 0.00065912774 0.00060775571 + 178060 -6246.1123 -6252.5166 6.4043277 3718.4352 634.99213 -10605.944 0 306.93132 0.00088165021 0.0008345398 + 178070 -6246.0924 -6252.7648 6.6723839 3713.9267 635.02546 -10601.717 0 319.77808 0.00099812594 0.00096019512 + 178080 -6246.0558 -6253.1646 7.1087696 3712.7889 634.3564 -10600.31 0 340.69213 0.00098820851 0.00095759922 + 178090 -6245.9746 -6253.688 7.7134623 3715.04 633.14162 -10601.87 0 369.67239 0.00086697861 0.00083794072 + 178100 -6245.874 -6254.2189 8.3448449 3719.968 631.71898 -10605.906 0 399.93179 0.00067465903 0.00064270431 + 178110 -6245.8143 -6254.607 8.7926318 3726.331 630.50051 -10611.438 0 421.39225 0.0004647136 0.00042964577 + 178120 -6245.8459 -6254.7499 8.9039847 3732.6247 629.84854 -10617.223 0 426.72891 0.00029188624 0.00025648376 + 178130 -6245.9794 -6254.6334 8.6539812 3737.4212 629.97432 -10622.029 0 414.74734 0.00019961055 0.00016597247 + 178140 -6246.1971 -6254.304 8.1068791 3739.7338 630.89011 -10624.928 0 388.52713 0.00020837275 0.00017614707 + 178150 -6246.4839 -6253.8204 7.3364299 3739.2759 632.42162 -10625.518 0 351.60289 0.00031041342 0.000278529 + 178160 -6246.8347 -6253.2496 6.4149862 3736.4831 634.26507 -10623.998 0 307.44214 0.0004752408 0.0004442454 + 178170 -6247.2319 -6252.7057 5.4738558 3732.2986 636.06601 -10621.07 0 262.33789 0.00066306009 0.00063454839 + 178180 -6247.6369 -6252.3544 4.7175447 3727.863 637.50031 -10617.718 0 226.09121 0.00083677977 0.00081067765 + 178190 -6248.0187 -6252.3405 4.3218342 3724.2539 638.33838 -10614.933 0 207.12654 0.00096623354 0.00093997554 + 178200 -6248.3854 -6252.6952 4.3097252 3722.2989 638.47484 -10613.469 0 206.54621 0.0010277693 0.00099890488 + 178210 -6248.7747 -6253.3186 4.5438922 3722.4203 637.91978 -10613.659 0 217.76881 0.001006234 0.00097534663 + 178220 -6249.2116 -6254.0509 4.8392681 3724.5207 636.76931 -10615.341 0 231.92488 0.00090052191 0.00087094962 + 178230 -6249.6806 -6254.7584 5.0777983 3727.9884 635.18019 -10617.927 0 243.35659 0.00072736533 0.00070199692 + 178240 -6250.1346 -6255.3671 5.2324979 3731.8626 633.35823 -10620.588 0 250.77066 0.00051874078 0.00049712246 + 178250 -6250.5272 -6255.8388 5.3116105 3735.1072 631.55111 -10622.497 0 254.56218 0.00031373321 0.00029208428 + 178260 -6250.8395 -6256.136 5.2964869 3736.8833 630.02875 -10623.048 0 253.83737 0.00014937247 0.00012334225 + 178270 -6251.0846 -6256.2149 5.1303125 3736.7324 629.04306 -10621.99 0 245.87336 5.4043687e-05 2.1966635e-05 + 178280 -6251.2911 -6256.0508 4.7596927 3734.6448 628.7727 -10619.468 0 228.11118 4.3888127e-05 8.2465309e-06 + 178290 -6251.4813 -6255.6741 4.1927572 3731.03 629.26949 -10615.974 0 200.94045 0.00012075076 8.692465e-05 + 178300 -6251.6555 -6255.1891 3.5336179 3726.6214 630.42581 -10612.236 0 169.3508 0.00027080473 0.00024377766 + 178310 -6251.79 -6254.756 2.9660757 3722.3464 631.97997 -10609.082 0 142.15099 0.0004644408 0.00044534178 + 178320 -6251.8523 -6254.5324 2.6801179 3719.1847 633.56734 -10607.284 0 128.44629 0.00065883908 0.00064366966 + 178330 -6251.8246 -6254.5963 2.7717696 3718.0127 634.80971 -10607.419 0 132.83875 0.00080478382 0.00078665631 + 178340 -6251.7203 -6254.9026 3.182228 3719.4079 635.41858 -10609.729 0 152.51022 0.00085854716 0.00083225648 + 178350 -6251.581 -6255.309 3.7280029 3723.4227 635.28003 -10614.012 0 178.66681 0.00079705198 0.00076275859 + 178360 -6251.4511 -6255.6577 4.2065715 3729.4168 634.49468 -10619.569 0 201.60251 0.00063074294 0.00059404212 + 178370 -6251.3495 -6255.8552 4.5056903 3736.0785 633.35876 -10625.292 0 215.93796 0.00040693626 0.00037522342 + 178380 -6251.2547 -6255.9022 4.6474664 3741.7057 632.28698 -10629.895 0 222.73267 0.00019916184 0.00017670745 + 178390 -6251.1179 -6255.8614 4.7434477 3744.6952 631.69314 -10632.25 0 227.33263 8.3903407e-05 6.8867108e-05 + 178400 -6250.8967 -6255.7863 4.8896302 3744.0806 631.85962 -10631.726 0 234.33851 0.00011226783 9.7801961e-05 + 178410 -6250.5897 -6255.6623 5.0726756 3739.9063 632.83436 -10628.403 0 243.11108 0.00028795741 0.00026696184 + 178420 -6250.2452 -6255.4092 5.163991 3733.2692 634.3908 -10623.069 0 247.48743 0.00056212384 0.00053240645 + 178430 -6249.9317 -6254.9519 5.0201695 3725.9846 636.07217 -10617.009 0 240.59469 0.00084895549 0.0008147974 + 178440 -6249.6894 -6254.3073 4.617929 3720.005 637.31735 -10611.63 0 221.31707 0.0010557567 0.0010244062 + 178450 -6249.5015 -6253.6124 4.1109151 3716.8254 637.6353 -10608.073 0 197.01812 0.001114177 0.0010899183 + 178460 -6249.3103 -6253.062 3.751704 3717.0966 636.77335 -10606.932 0 179.8027 0.001000271 0.00098094213 + 178470 -6249.0646 -6252.7986 3.733994 3720.53 634.82139 -10608.15 0 178.95394 0.0007388914 0.00071786352 + 178480 -6248.7588 -6252.8408 4.0819884 3726.0374 632.21163 -10611.09 0 195.63179 0.00039558896 0.00036751474 + 178490 -6248.432 -6253.1086 4.6765188 3732.0063 629.605 -10614.72 0 224.12502 6.0993074e-05 2.6156148e-05 + 178500 -6248.1284 -6253.5109 5.3824393 3736.6718 627.69517 -10617.878 0 257.95669 -0.00017024797 -0.00020687374 + 178510 -6247.8593 -6254.0047 6.1453444 3738.5836 626.99554 -10619.584 0 294.51939 -0.00022506084 -0.00025881435 + 178520 -6247.6051 -6254.57 6.9648511 3737.0815 627.68375 -10619.335 0 333.79474 -7.6954214e-05 -0.00010754834 + 178530 -6247.3518 -6255.1428 7.790937 3732.5857 629.55403 -10617.283 0 373.38542 0.00024006267 0.00020890067 + 178540 -6247.1176 -6255.5885 8.4708524 3726.519 632.08733 -10614.195 0 405.97078 0.00063817798 0.00060223819 + 178550 -6246.9432 -6255.7491 8.8059126 3720.8488 634.61562 -10611.214 0 422.02874 0.0010034167 0.00096106611 + 178560 -6246.8612 -6255.5184 8.6571633 3717.4314 636.53043 -10609.48 0 414.89984 0.0012335914 0.0011865082 + 178570 -6246.8756 -6254.8924 8.0167574 3717.4084 637.46455 -10609.765 0 384.208 0.0012714587 0.0012235795 + 178580 -6246.9581 -6253.9836 7.025462 3720.8527 637.37779 -10612.214 0 336.69956 0.0011213253 0.0010767575 + 178590 -6247.0586 -6253.0015 5.9428307 3726.7647 636.5208 -10616.287 0 284.81379 0.0008440458 0.00080457484 + 178600 -6247.1278 -6252.1876 5.0598378 3733.4231 635.31098 -10620.922 0 242.49582 0.00053292589 0.0004968449 + 178610 -6247.1428 -6251.7229 4.580092 3738.9552 634.18264 -10624.861 0 219.50371 0.00028090404 0.00024466727 + 178620 -6247.113 -6251.6711 4.558116 3741.8876 633.45984 -10627.019 0 218.4505 0.00015302604 0.00011422771 + 178630 -6247.0583 -6251.9974 4.9391241 3741.4943 633.27728 -10626.769 0 236.71054 0.00017283474 0.00013129558 + 178640 -6246.9874 -6252.6129 5.625489 3737.9127 633.56259 -10624.088 0 269.605 0.0003217035 0.00027817438 + 178650 -6246.9045 -6253.3893 6.4848455 3732.0782 634.08126 -10619.549 0 310.79018 0.00054660696 0.0005017695 + 178660 -6246.8286 -6254.1564 7.3277238 3725.4841 634.52614 -10614.167 0 351.18564 0.00077488019 0.00073019644 + 178670 -6246.7953 -6254.7353 7.9399811 3719.7736 634.62081 -10609.13 0 380.52844 0.00093541648 0.0008940304 + 178680 -6246.8279 -6255.0095 8.1815937 3716.2656 634.2073 -10605.482 0 392.10788 0.00098106727 0.00094633206 + 178690 -6246.9111 -6254.9758 8.0647472 3715.5998 633.29673 -10603.872 0 386.50794 0.00090265332 0.00087483748 + 178700 -6247.0016 -6254.7253 7.7236924 3717.6511 632.07052 -10604.447 0 370.16268 0.00072763871 0.000702311 + 178710 -6247.0692 -6254.3658 7.2966409 3721.7007 630.82956 -10606.896 0 349.69597 0.0005056486 0.0004762874 + 178720 -6247.1253 -6253.9624 6.8371033 3726.7098 629.90347 -10610.576 0 327.67235 0.00029065201 0.00025369184 + 178730 -6247.2083 -6253.5457 6.337463 3731.5546 629.54926 -10614.65 0 303.72678 0.00012867154 8.638124e-05 + 178740 -6247.3434 -6253.1635 5.8201044 3735.2013 629.87852 -10618.243 0 278.93206 5.2461051e-05 1.10958e-05 + 178750 -6247.5194 -6252.9054 5.3860218 3736.8743 630.84049 -10620.62 0 258.12838 7.9119798e-05 4.4249067e-05 + 178760 -6247.6982 -6252.8709 5.1727246 3736.2333 632.25804 -10621.362 0 247.90599 0.00020753198 0.00018043619 + 178770 -6247.8425 -6253.1112 5.2687694 3733.4967 633.88825 -10620.496 0 252.50899 0.00041647871 0.00039374034 + 178780 -6247.938 -6253.5914 5.6533683 3729.4368 635.47724 -10618.505 0 270.94113 0.00066599847 0.0006417634 + 178790 -6248.0037 -6254.1893 6.1855993 3725.2187 636.79474 -10616.203 0 296.44862 0.00090327917 0.00087267118 + 178800 -6248.0883 -6254.7276 6.6393296 3722.1056 637.65141 -10614.485 0 318.19393 0.0010728782 0.0010351188 + 178810 -6248.2481 -6255.0361 6.7879791 3721.0859 637.9098 -10614.032 0 325.31805 0.0011304106 0.0010898603 + 178820 -6248.5079 -6255.0333 6.525429 3722.5248 637.50041 -10615.059 0 312.73517 0.001056849 0.0010203785 + 178830 -6248.8327 -6254.779 5.9462351 3725.9981 636.4471 -10617.224 0 284.97695 0.00086715341 0.00083881007 + 178840 -6249.1469 -6254.4419 5.294997 3730.4271 634.89238 -10619.761 0 253.76597 0.00060691962 0.000584131 + 178850 -6249.392 -6254.1913 4.7992862 3734.4716 633.09898 -10621.762 0 230.00872 0.00033721896 0.00031242599 + 178860 -6249.5723 -6254.0941 4.5217993 3736.9752 631.40682 -10622.476 0 216.70999 0.00011567471 8.2545852e-05 + 178870 -6249.7454 -6254.1024 4.3570073 3737.255 630.14855 -10621.506 0 208.81224 -1.6852291e-05 -5.7880936e-05 + 178880 -6249.9695 -6254.1337 4.1641674 3735.1771 629.55455 -10618.865 0 199.57027 -4.0622048e-05 -8.2270395e-05 + 178890 -6250.2538 -6254.166 3.9122243 3731.1022 629.68688 -10614.955 0 187.49574 4.4002072e-05 1.0398573e-05 + 178900 -6250.5517 -6254.2672 3.7155482 3725.8003 630.42507 -10610.493 0 178.06992 0.0002176743 0.00019557594 + 178910 -6250.7974 -6254.5389 3.7415401 3720.3636 631.50279 -10606.405 0 179.31559 0.00044198166 0.00042688052 + 178920 -6250.9535 -6255.022 4.0685005 3716.0702 632.58015 -10603.672 0 194.98537 0.00066169327 0.0006440201 + 178930 -6251.0393 -6255.6335 4.594173 3714.1415 633.33395 -10603.109 0 220.17855 0.00081395426 0.00078568527 + 178940 -6251.1231 -6256.1813 5.0581879 3715.3984 633.54726 -10605.127 0 242.41675 0.00084570371 0.00080639139 + 178950 -6251.2778 -6256.4596 5.1818065 3719.9041 633.17425 -10609.538 0 248.34124 0.00073489963 0.0006927893 + 178960 -6251.5224 -6256.3746 4.8522226 3726.7635 632.35773 -10615.496 0 232.54573 0.00050576322 0.00047234421 + 178970 -6251.7967 -6256.0125 4.2157039 3734.2527 631.39168 -10621.657 0 202.04019 0.00022717516 0.00020848176 + 178980 -6252.0004 -6255.5809 3.580545 3740.3271 630.64236 -10626.55 0 171.59981 -9.5926436e-06 -1.7988191e-05 + 178990 -6252.0686 -6255.2602 3.1915763 3743.3222 630.44924 -10629.032 0 152.95824 -0.00012484613 -0.00013451995 + 179000 -6252.0191 -6255.0899 3.070813 3742.51 631.02345 -10628.623 0 147.17059 -7.9061694e-05 -9.9749782e-05 + 179010 -6251.9306 -6254.9872 3.0566164 3738.2594 632.36346 -10625.61 0 146.49021 0.00011660375 8.4071198e-05 + 179020 -6251.88 -6254.8625 2.9825139 3731.8047 634.21817 -10620.885 0 142.9388 0.0004085616 0.00037208948 + 179030 -6251.8891 -6254.7192 2.8301777 3724.8116 636.12483 -10615.656 0 135.638 0.00071978791 0.00068966342 + 179040 -6251.9127 -6254.6613 2.7486664 3718.9385 637.52295 -10611.123 0 131.73152 0.00097067263 0.00095225968 + 179050 -6251.8656 -6254.8177 2.9520884 3715.5024 637.91281 -10608.233 0 141.48064 0.001096402 0.0010866428 + 179060 -6251.6637 -6255.2393 3.5755564 3715.2673 637.01067 -10607.517 0 171.36073 0.0010591667 0.0010485263 + 179070 -6251.2642 -6255.8303 4.5661557 3718.33 634.8563 -10609.017 0 218.8358 0.00085539651 0.00083388598 + 179080 -6250.6965 -6256.3567 5.6601786 3724.0686 631.84128 -10612.267 0 271.26752 0.00051867026 0.0004826861 + 179090 -6250.0624 -6256.5436 6.4811852 3731.1565 628.63973 -10616.34 0 310.61476 0.00011823294 7.3923581e-05 + 179100 -6249.4797 -6256.2285 6.7487467 3737.7095 626.04275 -10619.981 0 323.43781 -0.00024909865 -0.00028947914 + 179110 -6248.9963 -6255.4716 6.4752429 3741.6721 624.73588 -10621.88 0 310.32997 -0.00047813433 -0.00050584816 + 179120 -6248.561 -6254.5208 5.9598741 3741.4678 625.09767 -10621.086 0 285.63061 -0.00048718149 -0.00050508621 + 179130 -6248.0943 -6253.6395 5.5451629 3736.697 627.09368 -10617.43 0 265.75532 -0.00025291087 -0.00027395805 + 179140 -6247.5848 -6252.9458 5.3609665 3728.4842 630.28977 -10611.72 0 256.9276 0.00017150849 0.00013473807 + 179150 -6247.1074 -6252.4046 5.2971877 3719.1953 633.96433 -10605.564 0 253.87096 0.00066966444 0.00061505467 + 179160 -6246.7561 -6251.9489 5.1928431 3711.6173 637.28837 -10600.855 0 248.87018 0.001102755 0.0010400345 + 179170 -6246.5638 -6251.5962 5.0323437 3707.9994 639.53647 -10599.132 0 241.17815 0.0013583083 0.0013017564 + 179180 -6246.4761 -6251.4648 4.9887339 3709.3623 640.27295 -10601.1 0 239.08812 0.001385054 0.0013439236 + 179190 -6246.3839 -6251.7024 5.3184361 3715.2857 639.45412 -10606.442 0 254.8893 0.0012022744 0.0011750969 + 179200 -6246.1851 -6252.3823 6.1971809 3724.1599 637.41827 -10613.96 0 297.00368 0.0008844814 0.00085975271 + 179210 -6245.8479 -6253.4194 7.5714542 3733.7502 634.77879 -10621.948 0 362.86657 0.00053060219 0.00049340028 + 179220 -6245.4528 -6254.5441 9.0913663 3741.8483 632.25701 -10628.649 0 435.70929 0.00023085527 0.00017263752 + 179230 -6245.1685 -6255.3812 10.212633 3746.7756 630.48973 -10632.646 0 489.44669 4.4612842e-05 -2.9592345e-05 + 179240 -6245.145 -6255.6313 10.486228 3747.6044 629.85216 -10633.088 0 502.55889 -4.0020597e-06 -7.7583547e-05 + 179250 -6245.3917 -6255.2462 9.8544694 3744.1653 630.35605 -10629.768 0 472.28147 8.1534207e-05 2.5190928e-05 + 179260 -6245.7659 -6254.4455 8.679568 3737.0279 631.67717 -10623.151 0 415.9736 0.00027686511 0.00024230607 + 179270 -6246.0887 -6253.5519 7.4631364 3727.5162 633.3026 -10614.371 0 357.67537 0.00053710695 0.00051468369 + 179280 -6246.2692 -6252.7986 6.5294092 3717.5996 634.71663 -10605.115 0 312.92592 0.00079857781 0.00077295178 + 179290 -6246.3322 -6252.2656 5.9333577 3709.5064 635.5382 -10597.31 0 284.35979 0.00099084151 0.0009516266 + 179300 -6246.3623 -6251.941 5.5787583 3705.1307 635.57849 -10592.65 0 267.3654 0.0010571234 0.0010039899 + 179310 -6246.4379 -6251.8057 5.3678304 3705.4843 634.83754 -10592.128 0 257.25655 0.00097289305 0.00091407478 + 179320 -6246.5948 -6251.8692 5.2744369 3710.4024 633.47005 -10595.742 0 252.78061 0.00075418144 0.00070129554 + 179330 -6246.8148 -6252.1677 5.3529237 3718.5772 631.74043 -10602.485 0 256.54214 0.00045370076 0.00041546698 + 179340 -6247.0332 -6252.7422 5.7089722 3727.9067 629.97882 -10610.628 0 273.60598 0.00014689009 0.00012369844 + 179350 -6247.1741 -6253.5869 6.4128498 3736.0857 628.5435 -10618.216 0 307.33974 -8.8974268e-05 -0.00010660168 + 179360 -6247.2115 -6254.5744 7.3629079 3741.2808 627.78018 -10623.635 0 352.87186 -0.00019749449 -0.00022371102 + 179370 -6247.2142 -6255.4297 8.2155502 3742.622 627.95689 -10626.009 0 393.73526 -0.00015906675 -0.00020261665 + 179380 -6247.3126 -6255.832 8.5193788 3740.2955 629.17074 -10625.298 0 408.29643 8.0189024e-06 -4.8882852e-05 + 179390 -6247.5939 -6255.6063 8.0124124 3735.2569 631.26759 -10622.131 0 383.99976 0.0002606859 0.00020468971 + 179400 -6248.0195 -6254.856 6.8364514 3728.8184 633.83961 -10617.514 0 327.64111 0.00054782359 0.00050651799 + 179410 -6248.4511 -6253.9222 5.4710369 3722.3466 636.32514 -10612.594 0 262.20279 0.00081998611 0.00079651956 + 179420 -6248.7528 -6253.2011 4.4482907 3717.1153 638.16654 -10608.483 0 213.18705 0.0010308908 0.0010157678 + 179430 -6248.8767 -6252.9435 4.0668372 3714.2068 638.95597 -10606.106 0 194.90566 0.0011375244 0.0011153661 + 179440 -6248.8813 -6253.1471 4.2658223 3714.3519 638.52559 -10606.025 0 204.44214 0.0011056112 0.0010657959 + 179450 -6248.8916 -6253.5929 4.7013261 3717.6901 636.97205 -10608.255 0 225.31393 0.00092209871 0.00086660255 + 179460 -6249.0219 -6254.0059 4.9839827 3723.5397 634.62053 -10612.166 0 238.86041 0.00060994383 0.00055287 + 179470 -6249.2959 -6254.2473 4.9514464 3730.3605 631.94185 -10616.55 0 237.3011 0.00023492697 0.00019271794 + 179480 -6249.6212 -6254.4009 4.7796598 3736.0824 629.44946 -10619.933 0 229.06812 -0.000106206 -0.00012770346 + 179490 -6249.858 -6254.6678 4.8098178 3738.8002 627.60611 -10621.074 0 230.51346 -0.00031765767 -0.00032874802 + 179500 -6249.9366 -6255.1465 5.2098401 3737.5485 626.75065 -10619.446 0 249.68477 -0.00034269636 -0.00036218388 + 179510 -6249.9238 -6255.6994 5.7756467 3732.7171 627.03363 -10615.45 0 276.8014 -0.00018628161 -0.00022628626 + 179520 -6249.9725 -6256.0423 6.0697965 3725.8501 628.36114 -10610.254 0 290.8987 9.0750467e-05 3.4578702e-05 + 179530 -6250.195 -6255.97 5.7750621 3718.9779 630.38077 -10605.329 0 276.77338 0.0004001599 0.0003448942 + 179540 -6250.5709 -6255.5154 4.9445365 3713.888 632.55166 -10601.955 0 236.96993 0.00065899368 0.00062106451 + 179550 -6250.9694 -6254.9209 3.9515177 3711.6755 634.29779 -10600.894 0 189.3789 0.00081061752 0.00079411076 + 179560 -6251.2528 -6254.473 3.2201203 3712.6487 635.18829 -10602.31 0 154.32623 0.00083051727 0.00082536965 + 179570 -6251.3681 -6254.3309 2.9628556 3716.459 635.07059 -10605.861 0 141.99666 0.00072306507 0.00071295262 + 179580 -6251.3676 -6254.4556 3.0880213 3722.2825 634.10811 -10610.846 0 147.99531 0.00051656513 0.00049019944 + 179590 -6251.3651 -6254.6684 3.3033524 3728.9573 632.71354 -10616.339 0 158.31518 0.00025941178 0.00021788347 + 179600 -6251.4573 -6254.7962 3.3388731 3735.0974 631.40313 -10621.297 0 160.01753 1.5272395e-05 -2.9148323e-05 + 179610 -6251.6598 -6254.807 3.1472292 3739.2772 630.62382 -10624.708 0 150.83288 -0.00014719145 -0.00018006713 + 179620 -6251.8977 -6254.8353 2.9376255 3740.3572 630.61664 -10625.809 0 140.7875 -0.00017246839 -0.00018773171 + 179630 -6252.062 -6255.0686 3.0066309 3737.899 631.36216 -10624.33 0 144.09462 -4.0034439e-05 -4.422924e-05 + 179640 -6252.0873 -6255.5777 3.4903596 3732.4682 632.61226 -10620.658 0 167.27762 0.00022074791 0.00021367267 + 179650 -6251.9959 -6256.2281 4.2322263 3725.5946 633.97769 -10615.8 0 202.83203 0.00053342733 0.00051256629 + 179660 -6251.8768 -6256.7465 4.8697124 3719.3079 635.035 -10611.089 0 233.38394 0.00079795203 0.00076308141 + 179670 -6251.8191 -6256.8913 5.0721422 3715.4212 635.43039 -10607.743 0 243.08552 0.00092652678 0.0008875027 + 179680 -6251.8467 -6256.5979 4.7512601 3714.8924 634.96764 -10606.458 0 227.70705 0.00087574973 0.00084477522 + 179690 -6251.9046 -6256.0059 4.1013553 3717.5519 633.66524 -10607.223 0 196.55996 0.0006603964 0.00064322995 + 179700 -6251.902 -6255.365 3.4630251 3722.275 631.76594 -10609.406 0 165.96759 0.00034440243 0.00033649538 + 179710 -6251.7721 -6254.8913 3.1191879 3727.4619 629.69129 -10612.045 0 149.48899 1.6081288e-05 5.6669915e-06 + 179720 -6251.5102 -6254.6584 3.1481172 3731.5866 627.94798 -10614.193 0 150.87544 -0.00024013079 -0.00026427197 + 179730 -6251.1749 -6254.5811 3.4062088 3733.5994 627.00365 -10615.184 0 163.24464 -0.00036506664 -0.00040588143 + 179740 -6250.8541 -6254.5023 3.6482346 3733.0839 627.15584 -10614.742 0 174.84387 -0.00033445127 -0.00038386869 + 179750 -6250.6067 -6254.3303 3.7235556 3730.2045 628.42727 -10612.962 0 178.45368 -0.00015770542 -0.00020153105 + 179760 -6250.4103 -6254.1274 3.7171206 3725.5803 630.52907 -10610.237 0 178.14527 0.00012852771 0.00010036995 + 179770 -6250.1612 -6254.0641 3.9029227 3720.2115 632.92461 -10607.2 0 187.04995 0.00046616954 0.00045134638 + 179780 -6249.7487 -6254.2607 4.5119531 3715.4343 634.98876 -10604.684 0 216.23811 0.00078064638 0.00076524715 + 179790 -6249.1541 -6254.6519 5.4977765 3712.7358 636.20933 -10603.597 0 263.4843 0.00099187385 0.0009605747 + 179800 -6248.4882 -6255.0013 6.5130085 3713.3075 636.35188 -10604.661 0 312.13991 0.0010367768 0.00098452011 + 179810 -6247.9233 -6255.056 7.1326814 3717.4789 635.52247 -10608.057 0 341.83811 0.00089712189 0.00083307733 + 179820 -6247.5706 -6254.7178 7.1472312 3724.3714 634.10561 -10613.195 0 342.53542 0.00061570732 0.00055667599 + 179830 -6247.4088 -6254.1097 6.7008966 3732.0469 632.60974 -10618.766 0 321.14457 0.00028674751 0.00024530721 + 179840 -6247.3132 -6253.5009 6.1877442 3738.147 631.49129 -10623.139 0 296.55142 2.1563879e-05 -2.4520822e-06 + 179850 -6247.1495 -6253.1435 5.9940335 3740.7499 631.02696 -10624.92 0 287.26772 -9.4366164e-05 -0.00011347407 + 179860 -6246.8617 -6253.1242 6.2625078 3739.0688 631.2672 -10623.46 0 300.13451 -3.277021e-05 -6.3155581e-05 + 179870 -6246.5028 -6253.3246 6.8218443 3733.6927 632.06091 -10619.078 0 326.94106 0.00017083977 0.00012043235 + 179880 -6246.1953 -6253.5137 7.3184124 3726.2867 633.12028 -10612.921 0 350.73939 0.00043640566 0.00037083886 + 179890 -6246.0428 -6253.5102 7.467378 3718.9097 634.09926 -10606.519 0 357.87865 0.0006741928 0.00060870659 + 179900 -6246.0514 -6253.3063 7.2549009 3713.2867 634.67565 -10601.269 0 347.69556 0.00081849386 0.00076791663 + 179910 -6246.1236 -6253.0613 6.9376207 3710.3736 634.63307 -10598.068 0 332.48971 0.00084471542 0.00081285472 + 179920 -6246.1336 -6252.9672 6.8336769 3710.3381 633.92674 -10597.232 0 327.50814 0.00076499955 0.0007422218 + 179930 -6246.0208 -6253.0926 7.0717738 3712.8054 632.70473 -10598.603 0 338.91908 0.0006109413 0.0005815798 + 179940 -6245.8322 -6253.3264 7.4942014 3717.1028 631.26694 -10601.696 0 359.16418 0.0004176336 0.00037136206 + 179950 -6245.6831 -6253.4628 7.7796127 3722.3617 629.97312 -10605.798 0 372.84269 0.0002178775 0.00015665983 + 179960 -6245.6713 -6253.3562 7.6848474 3727.5354 629.13515 -10610.027 0 368.30101 4.4810129e-05 -1.9211367e-05 + 179970 -6245.8071 -6253.0293 7.2222269 3731.4863 628.9334 -10613.449 0 346.12964 -6.6126773e-05 -0.00011961724 + 179980 -6246.0131 -6252.6596 6.6465263 3733.2295 629.38433 -10615.273 0 318.53883 -8.3409574e-05 -0.00012079886 + 179990 -6246.1849 -6252.4651 6.2802598 3732.2687 630.36324 -10615.097 0 300.98529 7.5484422e-06 -1.8875782e-05 + 180000 -6246.2596 -6252.5758 6.3162721 3728.8518 631.66304 -10613.091 0 302.7112 0.00019349387 0.00016627653 + 180010 -6246.2503 -6252.9666 6.7162908 3723.9878 633.05857 -10610.013 0 321.88234 0.00043263247 0.00039402163 + 180020 -6246.237 -6253.4777 7.2407331 3719.1695 634.34878 -10606.996 0 347.01656 0.00066562107 0.00061291672 + 180030 -6246.3188 -6253.9043 7.5854931 3715.8759 635.36595 -10605.146 0 363.53939 0.00083384367 0.00077403021 + 180040 -6246.5525 -6254.109 7.5565764 3715.0506 635.96668 -10605.126 0 362.15354 0.00089767774 0.00084296719 + 180050 -6246.9135 -6254.0911 7.1776238 3716.7953 636.03438 -10606.921 0 343.992 0.00084737379 0.00080723918 + 180060 -6247.3135 -6253.9696 6.6560646 3720.4142 635.51098 -10609.895 0 318.99596 0.00070250266 0.00067757031 + 180070 -6247.6608 -6253.8956 6.2348154 3724.7463 634.44294 -10613.085 0 298.80734 0.00050170168 0.00048352798 + 180080 -6247.9175 -6253.9534 6.0359318 3728.5897 633.00638 -10615.549 0 289.27572 0.00028890639 0.00026549856 + 180090 -6248.1174 -6254.1122 5.9947826 3731.0282 631.48554 -10616.626 0 287.30362 0.00010253083 6.5930295e-05 + 180100 -6248.3377 -6254.2552 5.9175376 3731.5786 630.20441 -10616.038 0 283.6016 -2.9237269e-05 -7.7945048e-05 + 180110 -6248.6425 -6254.2677 5.6251523 3730.178 629.43358 -10613.879 0 269.58886 -8.8249493e-05 -0.00013963183 + 180120 -6249.0346 -6254.1299 5.0953766 3727.0939 629.3052 -10610.529 0 244.19904 -6.5618767e-05 -0.00010815179 + 180130 -6249.4482 -6253.9502 4.5020474 3722.8469 629.7686 -10606.566 0 215.76337 3.5680501e-05 7.7006852e-06 + 180140 -6249.7934 -6253.9026 4.109286 3718.1904 630.60623 -10602.699 0 196.94004 0.00019515166 0.00017760267 + 180150 -6250.018 -6254.1039 4.0858789 3714.0961 631.50448 -10599.704 0 195.81824 0.00037157213 0.00035355327 + 180160 -6250.1435 -6254.5204 4.3769007 3711.6311 632.15126 -10598.303 0 209.76564 0.00050908863 0.00048094678 + 180170 -6250.2474 -6254.9842 4.7367641 3711.655 632.32604 -10598.965 0 227.01231 0.0005547749 0.00051501019 + 180180 -6250.4053 -6255.3081 4.9027206 3714.432 631.95912 -10601.699 0 234.96588 0.00048143235 0.00043718637 + 180190 -6250.6361 -6255.4067 4.7706238 3719.3882 631.15193 -10605.947 0 228.63506 0.00030334395 0.00026447771 + 180200 -6250.8929 -6255.3323 4.4394727 3725.206 630.1566 -10610.695 0 212.76444 7.4898982e-05 4.6709622e-05 + 180210 -6251.1025 -6255.2149 4.1124066 3730.2462 629.31516 -10614.776 0 197.0896 -0.00012827148 -0.0001483272 + 180220 -6251.2161 -6255.1652 3.9491237 3733.1043 628.96528 -10617.235 0 189.26416 -0.00023669248 -0.00025664124 + 180230 -6251.2377 -6255.2075 3.9698373 3733.0654 629.334 -10617.607 0 190.25688 -0.00021137101 -0.0002389038 + 180240 -6251.2192 -6255.2748 4.0556869 3730.2961 630.45071 -10616.022 0 194.37127 -5.6408562e-05 -9.3372784e-05 + 180250 -6251.2261 -6255.2672 4.0410857 3725.728 632.11006 -10613.105 0 193.6715 0.00018384545 0.00014313975 + 180260 -6251.2917 -6255.1403 3.8486285 3720.7021 633.90432 -10609.747 0 184.44787 0.00044110943 0.00040619962 + 180270 -6251.387 -6254.9602 3.5732104 3716.5398 635.32583 -10606.826 0 171.24829 0.00064529561 0.00062251891 + 180280 -6251.4344 -6254.869 3.4346828 3714.2188 635.91668 -10605.005 0 164.60927 0.00074296825 0.00073019535 + 180290 -6251.3568 -6254.9744 3.6176619 3714.2321 635.41896 -10604.625 0 173.37866 0.0007071155 0.00069470029 + 180300 -6251.1256 -6255.2484 4.1228008 3716.57 633.87141 -10605.69 0 197.58775 0.00054001315 0.00051760589 + 180310 -6250.7713 -6255.5256 4.7542596 3720.7235 631.61438 -10607.863 0 227.8508 0.00027334902 0.00023738207 + 180320 -6250.3527 -6255.6074 5.2546914 3725.6915 629.20016 -10610.499 0 251.8343 -3.3828818e-05 -7.7681883e-05 + 180330 -6249.9126 -6255.3917 5.4790586 3730.084 627.24101 -10612.717 0 262.58723 -0.00030314129 -0.00034414128 + 180340 -6249.45 -6254.9292 5.4791548 3732.4144 626.24433 -10613.588 0 262.59184 -0.00045417895 -0.00048407373 + 180350 -6248.9254 -6254.3765 5.4511001 3731.5659 626.47932 -10612.422 0 261.2473 -0.00042907645 -0.00044789177 + 180360 -6248.2951 -6253.8867 5.5915343 3727.2799 627.90349 -10609.07 0 267.9777 -0.00021663735 -0.00023308917 + 180370 -6247.56 -6253.5135 5.953532 3720.4424 630.16557 -10604.122 0 285.32666 0.00013477239 0.00010870341 + 180380 -6246.7952 -6253.1919 6.3967073 3712.9625 632.69173 -10598.846 0 306.56611 0.00052551664 0.00048275094 + 180390 -6246.1234 -6252.8095 6.6861557 3707.1813 634.84118 -10594.832 0 320.4381 0.00083676774 0.00078033281 + 180400 -6245.6365 -6252.3247 6.6881955 3705.0122 636.08705 -10593.424 0 320.53585 0.0009750644 0.00091590541 + 180410 -6245.3318 -6251.8383 6.5065675 3707.2116 636.16439 -10595.214 0 311.83122 0.00090759186 0.00085632097 + 180420 -6245.1188 -6251.5525 6.4337775 3713.1318 635.14161 -10599.826 0 308.34272 0.00067092549 0.00063010231 + 180430 -6244.8901 -6251.6406 6.7505238 3721.0252 633.39872 -10606.065 0 323.52298 0.00035224738 0.00031516093 + 180440 -6244.596 -6252.1248 7.5288455 3728.6857 631.51791 -10612.328 0 360.82452 5.5593912e-05 1.1906344e-05 + 180450 -6244.2748 -6252.8495 8.5747452 3734.1219 630.1096 -10617.081 0 410.9499 -0.00013180707 -0.00018833538 + 180460 -6244.0246 -6253.5578 9.5332063 3736.0475 629.61933 -10619.225 0 456.88473 -0.00016285662 -0.00023017306 + 180470 -6243.9381 -6254.0152 10.07713 3734.1128 630.17944 -10618.307 0 482.95262 -3.8981983e-05 -0.00010857639 + 180480 -6244.0425 -6254.1068 10.064361 3728.8962 631.56679 -10614.57 0 482.34067 0.0001960512 0.00013308713 + 180490 -6244.2873 -6253.8618 9.5744647 3721.7109 633.28966 -10608.862 0 458.86207 0.00047213753 0.00041938019 + 180500 -6244.5844 -6253.404 8.8195673 3714.2863 634.76926 -10602.46 0 422.68315 0.00071226055 0.00066650903 + 180510 -6244.8641 -6252.8798 8.0156345 3708.3712 635.53771 -10596.789 0 384.15418 0.00085126339 0.0008056606 + 180520 -6245.1039 -6252.4101 7.3062294 3705.319 635.37441 -10593.104 0 350.15551 0.00085153518 0.00080028408 + 180530 -6245.3236 -6252.0739 6.7502396 3705.7571 634.34121 -10592.172 0 323.50936 0.00071190142 0.00065370539 + 180540 -6245.5632 -6251.9067 6.3434782 3709.4308 632.72276 -10594.06 0 304.01507 0.00046655659 0.00040554739 + 180550 -6245.8523 -6251.9174 6.065114 3715.2634 630.91063 -10598.091 0 290.6743 0.00017494591 0.00011860226 + 180560 -6246.1857 -6252.1158 5.9300735 3721.6289 629.28267 -10603.027 0 284.2024 -9.3740108e-05 -0.00013914703 + 180570 -6246.5225 -6252.5188 5.996327 3726.7992 628.12065 -10607.439 0 287.37764 -0.00027795099 -0.00031177956 + 180580 -6246.8147 -6253.1191 6.3044265 3729.4496 627.57894 -10610.148 0 302.14349 -0.00033955677 -0.00036779842 + 180590 -6247.0461 -6253.8422 6.7960392 3729.0456 627.68818 -10610.576 0 325.70433 -0.00027377007 -0.00030553479 + 180600 -6247.2509 -6254.5367 7.2858107 3725.9634 628.3716 -10608.872 0 349.17693 -0.00010942135 -0.00015104182 + 180610 -6247.495 -6255.0214 7.5264496 3721.3028 629.46558 -10605.79 0 360.7097 0.00010157004 5.0885133e-05 + 180620 -6247.8287 -6255.1703 7.3415287 3716.4756 630.74837 -10602.394 0 351.84725 0.00030231325 0.00025013375 + 180630 -6248.2441 -6254.9868 6.7426698 3712.7453 631.97888 -10599.711 0 323.14657 0.00044905758 0.00040461371 + 180640 -6248.6714 -6254.6143 5.9429063 3710.9015 632.94 -10598.456 0 284.81742 0.00052089911 0.00048855062 + 180650 -6249.0222 -6254.2635 5.2412872 3711.1706 633.47716 -10598.911 0 251.19189 0.00051757011 0.00049353319 + 180660 -6249.2468 -6254.0894 4.8425715 3713.3294 633.52573 -10600.944 0 232.0832 0.00044952406 0.00042457738 + 180670 -6249.3657 -6254.0999 4.7341378 3716.8788 633.1214 -10604.1 0 226.88645 0.00032943247 0.00029597286 + 180680 -6249.4506 -6254.1727 4.7220863 3721.1366 632.3885 -10607.698 0 226.30887 0.00017207739 0.00012999736 + 180690 -6249.5669 -6254.1746 4.6076466 3725.2396 631.50784 -10610.922 0 220.82428 9.1679232e-07 -4.2727638e-05 + 180700 -6249.7248 -6254.0778 4.353018 3728.1956 630.67611 -10612.95 0 208.62105 -0.00014824405 -0.0001853415 + 180710 -6249.8786 -6253.976 4.0974063 3729.0998 630.06918 -10613.145 0 196.3707 -0.00023424177 -0.0002620204 + 180720 -6249.9687 -6254.0015 4.0328275 3727.4635 629.8122 -10611.277 0 193.27572 -0.00022612203 -0.00024884345 + 180730 -6249.965 -6254.2241 4.2591457 3723.4752 629.95331 -10607.653 0 204.12216 -0.00011803198 -0.00014351068 + 180740 -6249.884 -6254.6025 4.7185275 3718.0389 630.44239 -10603.084 0 226.13831 6.4699986e-05 3.060551e-05 + 180750 -6249.7761 -6255.0081 5.2320079 3712.5489 631.12457 -10598.682 0 250.74718 0.00027097774 0.00022815921 + 180760 -6249.6938 -6255.2964 5.6026289 3708.4796 631.76135 -10595.537 0 268.50941 0.00043875755 0.00039276726 + 180770 -6249.6584 -6255.3819 5.7234474 3706.9396 632.08634 -10594.408 0 274.29971 0.00051424196 0.00047254702 + 180780 -6249.6453 -6255.2764 5.6311022 3708.3461 631.88803 -10595.511 0 269.87401 0.00046896708 0.00043584323 + 180790 -6249.596 -6255.0702 5.4742199 3712.3247 631.09491 -10598.49 0 262.35533 0.00030880044 0.00028200294 + 180800 -6249.4547 -6254.8631 5.4083426 3717.8519 629.83101 -10602.546 0 259.19812 7.1812058e-05 4.3479029e-05 + 180810 -6249.2077 -6254.6856 5.4779069 3723.5679 628.41491 -10606.668 0 262.53203 -0.00018316543 -0.00022123262 + 180820 -6248.8947 -6254.4758 5.5811597 3728.1144 627.28987 -10609.88 0 267.48049 -0.00039127133 -0.00044130311 + 180830 -6248.5755 -6254.1466 5.5710366 3730.3834 626.89613 -10611.426 0 266.99533 -0.00049414672 -0.00055028564 + 180840 -6248.2748 -6253.6909 5.4160694 3729.6797 627.52411 -10610.895 0 259.56844 -0.00045005117 -0.00050265074 + 180850 -6247.9508 -6253.2225 5.2716294 3725.8736 629.20144 -10608.298 0 252.64606 -0.00024456078 -0.00028744931 + 180860 -6247.513 -6252.9097 5.3967044 3719.5519 631.65358 -10604.115 0 258.64036 9.8581584e-05 6.3663316e-05 + 180870 -6246.8718 -6252.8565 5.9846567 3712.0713 634.34739 -10599.275 0 286.81833 0.00051208904 0.00047683217 + 180880 -6246.0021 -6253.0196 7.0175757 3705.3839 636.60757 -10595.011 0 336.3216 0.00089220249 0.00084755403 + 180890 -6244.9903 -6253.2212 8.2308848 3701.5566 637.79221 -10592.57 0 394.47018 0.0011232691 0.0010657813 + 180900 -6244.0127 -6253.2526 9.2398695 3702.0468 637.49854 -10592.798 0 442.82639 0.0011183967 0.0010525817 + 180910 -6243.2317 -6252.9996 9.7678987 3707.0353 635.72757 -10595.762 0 468.13251 0.00086016318 0.00079500272 + 180920 -6242.7034 -6252.5 9.7965896 3715.2057 632.91659 -10600.622 0 469.50754 0.00041589914 0.00035851832 + 180930 -6242.3766 -6251.9125 9.535874 3724.1239 629.80781 -10605.844 0 457.01259 -8.3917433e-05 -0.0001327653 + 180940 -6242.1581 -6251.4294 9.2712973 3731.0499 627.21625 -10609.696 0 444.33259 -0.00049179478 -0.00053796203 + 180950 -6241.9879 -6251.1743 9.1864099 3733.8559 625.79791 -10610.828 0 440.26431 -0.00069224238 -0.00074382247 + 180960 -6241.8766 -6251.1414 9.2648179 3731.6988 625.8828 -10608.723 0 444.02206 -0.00063603388 -0.00069684666 + 180970 -6241.8792 -6251.2338 9.3545874 3725.2029 627.39159 -10603.828 0 448.32432 -0.00035012974 -0.00041638056 + 180980 -6242.0312 -6251.3685 9.3373168 3716.1582 629.8486 -10597.375 0 447.49661 7.6288779e-05 1.2900724e-05 + 180990 -6242.3096 -6251.5448 9.2351813 3706.9483 632.50635 -10590.999 0 442.6017 0.00052124239 0.00046681305 + 181000 -6242.6523 -6251.8195 9.1672458 3699.9234 634.56571 -10586.309 0 439.34586 0.00086426176 0.00081825626 + 181010 -6243.0076 -6252.2278 9.2202056 3696.844 635.42508 -10584.497 0 441.88399 0.0010168021 0.00097300585 + 181020 -6243.3685 -6252.7259 9.3574557 3698.4711 634.86847 -10586.065 0 448.46178 0.0009428453 0.00089406646 + 181030 -6243.7657 -6253.1976 9.4319212 3704.3766 633.12506 -10590.699 0 452.03059 0.00066642072 0.00060910679 + 181040 -6244.2346 -6253.5128 9.2781704 3713.0436 630.78289 -10597.339 0 444.66198 0.00026472297 0.00020071773 + 181050 -6244.78 -6253.5967 8.8167401 3722.2535 628.58806 -10604.438 0 422.54765 -0.00015245673 -0.00021757355 + 181060 -6245.3613 -6253.4737 8.1124916 3729.6625 627.19917 -10610.335 0 388.79612 -0.00047297895 -0.00053384704 + 181070 -6245.9088 -6253.2587 7.34985 3733.4119 626.98718 -10613.658 0 352.24605 -0.00061444284 -0.00066971724 + 181080 -6246.3644 -6253.0877 6.7232778 3732.6213 627.95317 -10613.662 0 322.21719 -0.00054811139 -0.00060103203 + 181090 -6246.7184 -6253.0312 6.3127632 3727.6244 629.77607 -10610.432 0 302.54303 -0.0003058461 -0.00036060049 + 181100 -6247.0094 -6253.0664 6.0569554 3719.8384 631.94195 -10604.847 0 290.28329 3.348056e-05 -2.3678646e-05 + 181110 -6247.2835 -6253.1398 5.8562864 3711.2914 633.89251 -10598.324 0 280.66611 0.00037268353 0.0003168255 + 181120 -6247.551 -6253.2474 5.696358 3704.0156 635.15548 -10592.418 0 273.00144 0.00062678049 0.00057614252 + 181130 -6247.784 -6253.4406 5.6566211 3699.5659 635.44114 -10588.448 0 271.09702 0.00074231245 0.00069664313 + 181140 -6247.9549 -6253.753 5.7980991 3698.7781 634.69247 -10587.224 0 277.87744 0.00070152394 0.00065647028 + 181150 -6248.0751 -6254.1297 6.0545506 3701.7077 633.07926 -10588.917 0 290.16804 0.00051726424 0.00046895054 + 181160 -6248.1918 -6254.443 6.2511783 3707.6459 630.94019 -10593.029 0 299.59154 0.00022701835 0.00017639902 + 181170 -6248.3446 -6254.5926 6.2480695 3715.2047 628.6956 -10598.493 0 299.44255 -0.00011116277 -0.00015894659 + 181180 -6248.5244 -6254.5905 6.0661203 3722.5632 626.76147 -10603.915 0 290.72252 -0.00042559446 -0.00046640589 + 181190 -6248.6843 -6254.5404 5.856133 3727.9143 625.48281 -10607.938 0 280.65875 -0.00064600232 -0.00068085182 + 181200 -6248.7887 -6254.5321 5.7433471 3729.9757 625.08479 -10609.593 0 275.25342 -0.00072346962 -0.00075720873 + 181210 -6248.8469 -6254.5635 5.7165888 3728.3337 625.63544 -10608.533 0 273.97101 -0.00064473007 -0.0006810636 + 181220 -6248.8988 -6254.5619 5.6631245 3723.4954 627.02745 -10605.085 0 271.4087 -0.00043336807 -0.00047146308 + 181230 -6248.9737 -6254.4657 5.4920161 3716.6915 628.99213 -10600.149 0 263.20822 -0.00013975218 -0.00017541587 + 181240 -6249.0619 -6254.289 5.2271555 3709.5495 631.14634 -10594.985 0 250.51462 0.00017293464 0.00014287583 + 181250 -6249.12 -6254.118 4.9980487 3703.7381 633.06151 -10590.918 0 239.53454 0.00044042067 0.00041434771 + 181260 -6249.1057 -6254.0423 4.936592 3700.646 634.34486 -10589.033 0 236.58919 0.00060561424 0.0005773017 + 181270 -6249.0172 -6254.0739 5.0567021 3701.1137 634.72433 -10589.912 0 242.34554 0.00062647869 0.000589751 + 181280 -6248.9044 -6254.1252 5.2207826 3705.2165 634.12024 -10593.462 0 250.20919 0.00048673937 0.00044129229 + 181290 -6248.8327 -6254.0826 5.2499288 3712.119 632.67783 -10598.879 0 251.60605 0.0002079475 0.00016090332 + 181300 -6248.8201 -6253.9292 5.1091309 3720.1102 630.74186 -10604.781 0 244.85822 -0.00014517638 -0.00018486259 + 181310 -6248.8062 -6253.7903 4.9841054 3726.9569 628.77963 -10609.527 0 238.86629 -0.00047622958 -0.00050645209 + 181320 -6248.6971 -6253.8277 5.1305895 3730.5779 627.27687 -10611.682 0 245.88664 -0.00068711591 -0.00071571359 + 181330 -6248.4479 -6254.0729 5.6250177 3729.7731 626.6263 -10610.472 0 269.58241 -0.00071342876 -0.00075181956 + 181340 -6248.1001 -6254.3799 6.2797732 3724.6246 627.02047 -10606.025 0 300.96197 -0.00054617773 -0.00059963679 + 181350 -6247.7396 -6254.5432 6.8036174 3716.4073 628.3735 -10599.324 0 326.06752 -0.00023112843 -0.00029488127 + 181360 -6247.4233 -6254.4543 7.0310277 3707.1503 630.31188 -10591.916 0 336.9663 0.00014850408 8.4852602e-05 + 181370 -6247.1395 -6254.1591 7.0195509 3699.0862 632.25759 -10585.503 0 336.41627 0.0004953041 0.00043993015 + 181380 -6246.8244 -6253.7992 6.9747696 3694.1452 633.5869 -10581.531 0 334.2701 0.00071975705 0.00067358855 + 181390 -6246.4084 -6253.5037 7.0953187 3693.5575 633.81614 -10580.877 0 340.04748 0.00075883895 0.00071601181 + 181400 -6245.8586 -6253.3079 7.4492816 3697.5896 632.75906 -10583.657 0 357.01137 0.00059063908 0.00054313603 + 181410 -6245.1987 -6253.1415 7.9427594 3705.438 630.60952 -10589.189 0 380.6616 0.00024354471 0.00018675925 + 181420 -6244.4993 -6252.8856 8.3862868 3715.3157 627.91846 -10596.12 0 401.91792 -0.0002035767 -0.0002676092 + 181430 -6243.8391 -6252.4671 8.6279913 3724.7685 625.45693 -10602.693 0 413.50175 -0.00063422449 -0.00069810326 + 181440 -6243.2522 -6251.9358 8.6836695 3731.2212 623.9951 -10607.152 0 416.17017 -0.0009212991 -0.0009779805 + 181450 -6242.705 -6251.4583 8.7532781 3732.6875 624.06899 -10608.215 0 419.5062 -0.00096409934 -0.0010132488 + 181460 -6242.1405 -6251.201 9.0604846 3728.4751 625.81686 -10605.493 0 434.22926 -0.00072492132 -0.00077373675 + 181470 -6241.5567 -6251.1929 9.6362625 3719.5818 628.92985 -10599.705 0 461.82377 -0.00024999279 -0.00030658518 + 181480 -6241.0326 -6251.3087 10.276035 3708.4915 632.71548 -10592.516 0 492.48524 0.00033844894 0.00027277608 + 181490 -6240.6709 -6251.388 10.71716 3698.3818 636.25896 -10586.029 0 513.62643 0.00087917419 0.00081097318 + 181500 -6240.5208 -6251.3586 10.837832 3692.0982 638.66235 -10582.119 0 519.40974 0.001223484 0.0011613994 + 181510 -6240.5578 -6251.2609 10.703085 3691.3011 639.30664 -10581.869 0 512.95187 0.001281439 0.0012297185 + 181520 -6240.719 -6251.1951 10.476137 3696.0328 638.04399 -10585.272 0 502.07526 0.0010470127 0.0010030064 + 181530 -6240.9525 -6251.2502 10.297684 3704.7871 635.24134 -10591.279 0 493.52278 0.00059479302 0.00055091799 + 181540 -6241.2519 -6251.4476 10.195706 3715.0289 631.66418 -10598.141 0 488.63545 5.1673185e-05 2.4975673e-07 + 181550 -6241.6592 -6251.7215 10.062259 3723.9728 628.25009 -10603.944 0 482.23989 -0.0004432756 -0.00050470668 + 181560 -6242.2276 -6251.9647 9.737094 3729.3375 625.84071 -10607.143 0 466.65618 -0.00077505441 -0.00084159658 + 181570 -6242.9575 -6252.1265 9.1689999 3729.8558 624.94128 -10606.924 0 439.42992 -0.00087647142 -0.00093977033 + 181580 -6243.7698 -6252.2671 8.497348 3725.4931 625.58515 -10603.345 0 407.2406 -0.00074025298 -0.00079569706 + 181590 -6244.558 -6252.4852 7.9272287 3717.4327 627.36156 -10597.279 0 379.91728 -0.00042137486 -0.00047099207 + 181600 -6245.2632 -6252.7942 7.5309649 3707.8087 629.58819 -10590.191 0 360.9261 -2.438917e-05 -7.2447014e-05 + 181610 -6245.8817 -6253.1094 7.2276292 3699.1251 631.53943 -10583.774 0 346.38855 0.00032841797 0.00028073978 + 181620 -6246.4158 -6253.3566 6.9407324 3693.5147 632.64499 -10579.516 0 332.63884 0.00053727772 0.00049154279 + 181630 -6246.8468 -6253.5512 6.7044451 3692.1715 632.62052 -10578.343 0 321.31463 0.00055346699 0.00050980978 + 181640 -6247.1569 -6253.7582 6.6013054 3695.1682 631.5184 -10580.445 0 316.3716 0.00038529181 0.00034063573 + 181650 -6247.364 -6253.999 6.6350459 3701.5973 629.6927 -10585.289 0 317.98863 8.6067206e-05 3.7071553e-05 + 181660 -6247.5228 -6254.2157 6.6929191 3709.8587 627.68489 -10591.759 0 320.76224 -0.00026492432 -0.00031766234 + 181670 -6247.688 -6254.3291 6.6410367 3717.9917 626.06254 -10598.383 0 318.27574 -0.00058087293 -0.00063240612 + 181680 -6247.87 -6254.3224 6.4523464 3724.0614 625.26393 -10603.648 0 309.23265 -0.000784343 -0.00082982388 + 181690 -6248.0321 -6254.256 6.223818 3726.6168 625.49711 -10606.37 0 298.28028 -0.00082460828 -0.00086411634 + 181700 -6248.1348 -6254.1945 6.0596474 3725.1157 626.71028 -10606.02 0 290.4123 -0.00069307764 -0.00073155736 + 181710 -6248.1795 -6254.1339 5.9543763 3720.1033 628.62058 -10602.858 0 285.36712 -0.0004284543 -0.00047080813 + 181720 -6248.2074 -6254.0131 5.8056881 3713.02 630.78427 -10597.817 0 278.24115 -0.00010513179 -0.0001516001 + 181730 -6248.2589 -6253.7933 5.534382 3705.7197 632.69923 -10592.212 0 265.23864 0.00019162656 0.00014547044 + 181740 -6248.3375 -6253.5231 5.1855986 3699.9299 633.92396 -10587.377 0 248.52298 0.00039181411 0.00035089652 + 181750 -6248.407 -6253.33 4.9229552 3696.8505 634.18122 -10584.362 0 235.93564 0.0004568333 0.0004220717 + 181760 -6248.4206 -6253.3454 4.9247675 3696.9758 633.41564 -10583.737 0 236.02249 0.0003820175 0.00034908924 + 181770 -6248.3577 -6253.6144 5.2567121 3700.102 631.7947 -10585.511 0 251.93114 0.00018971614 0.00015210517 + 181780 -6248.2444 -6254.0519 5.8074902 3705.4382 629.66145 -10589.152 0 278.32751 -7.9844419e-05 -0.00012563045 + 181790 -6248.1411 -6254.4819 6.3407996 3711.7516 627.45328 -10593.687 0 303.88669 -0.00037528966 -0.00042636192 + 181800 -6248.0984 -6254.7404 6.6419715 3717.5482 625.60382 -10597.892 0 318.32054 -0.0006391384 -0.00068791691 + 181810 -6248.115 -6254.7674 6.6523857 3721.3387 624.45146 -10600.558 0 318.81965 -0.00081549947 -0.00085565263 + 181820 -6248.139 -6254.6136 6.4745838 3722.0122 624.17946 -10600.805 0 310.29838 -0.00086290567 -0.00089448392 + 181830 -6248.1153 -6254.3644 6.2491262 3719.215 624.79817 -10598.378 0 299.49319 -0.0007681971 -0.00079724042 + 181840 -6248.031 -6254.0696 6.0385998 3713.5376 626.15909 -10593.766 0 289.40359 -0.00055299115 -0.00058636758 + 181850 -6247.9157 -6253.744 5.8282625 3706.3805 627.98534 -10588.11 0 279.32304 -0.00026817428 -0.00030878879 + 181860 -6247.8079 -6253.4113 5.603404 3699.5576 629.91535 -10582.884 0 268.54656 2.0048165e-05 -2.5883932e-05 + 181870 -6247.7268 -6253.1249 5.3980939 3694.811 631.5633 -10579.499 0 258.70695 0.00024590134 0.00019916294 + 181880 -6247.667 -6252.95 5.2829985 3693.3799 632.59236 -10578.922 0 253.19093 0.00035799351 0.00031477732 + 181890 -6247.6033 -6252.9394 5.3361121 3695.7009 632.78685 -10581.427 0 255.73643 0.00033073835 0.00029307685 + 181900 -6247.4963 -6253.1248 5.6285397 3701.2933 632.10761 -10586.526 0 269.7512 0.00017167686 0.00013781516 + 181910 -6247.3049 -6253.5059 6.2009226 3708.8736 630.71826 -10593.098 0 297.183 -7.8897269e-05 -0.0001147127 + 181920 -6247.0155 -6254.0134 6.997902 3716.6892 628.97228 -10599.675 0 335.37873 -0.00035832791 -0.00040311051 + 181930 -6246.6733 -6254.4807 7.8074089 3722.9556 627.35031 -10604.787 0 374.17484 -0.00059846712 -0.00065495457 + 181940 -6246.3705 -6254.6961 8.3255947 3726.2275 626.34352 -10607.267 0 399.00921 -0.00074049749 -0.00080342982 + 181950 -6246.1746 -6254.5456 8.3709776 3725.6252 626.30499 -10606.476 0 401.18421 -0.00074308906 -0.00080275088 + 181960 -6246.0642 -6254.1108 8.0465974 3721.0045 627.32477 -10602.44 0 385.6381 -0.00058940815 -0.00064052917 + 181970 -6245.9567 -6253.598 7.6413208 3713.1395 629.18509 -10595.923 0 366.21497 -0.00029881975 -0.00034549505 + 181980 -6245.7966 -6253.168 7.3714382 3703.7543 631.41124 -10588.334 0 353.28068 6.4593031e-05 1.3217345e-05 + 181990 -6245.6029 -6252.8453 7.2423399 3695.1829 633.39494 -10581.423 0 347.09356 0.00040143985 0.00033960782 + 182000 -6245.4409 -6252.559 7.1180325 3689.6857 634.5566 -10576.801 0 341.13606 0.00060689615 0.00053694221 + 182010 -6245.363 -6252.2427 6.8796344 3688.711 634.50537 -10575.459 0 329.71068 0.00060817206 0.00053865634 + 182020 -6245.3645 -6251.9167 6.5522078 3692.4064 633.14705 -10577.47 0 314.01856 0.00039233589 0.000331561 + 182030 -6245.3813 -6251.7037 6.3224465 3699.5766 630.70938 -10581.99 0 303.00711 1.1905915e-05 -3.8591353e-05 + 182040 -6245.336 -6251.7494 6.4133689 3708.1067 627.69243 -10587.549 0 307.36462 -0.00043378337 -0.0004804957 + 182050 -6245.1995 -6252.1049 6.905397 3715.6486 624.76703 -10592.521 0 330.94537 -0.00083062456 -0.00088270587 + 182060 -6245.0136 -6252.6811 7.6674316 3720.2696 622.6333 -10595.584 0 367.46635 -0.0010800705 -0.0011421511 + 182070 -6244.8609 -6253.3039 8.4429598 3720.8831 621.8516 -10596.039 0 404.63401 -0.0011205727 -0.0011897279 + 182080 -6244.8154 -6253.8041 8.988696 3717.446 622.67849 -10593.929 0 430.78875 -0.00094068147 -0.0010088625 + 182090 -6244.9081 -6254.0791 9.1709695 3710.9378 624.96038 -10589.977 0 439.52432 -0.0005832134 -0.00064241229 + 182100 -6245.119 -6254.116 8.997063 3703.1212 628.13872 -10585.376 0 431.18974 -0.00013712786 -0.00018397115 + 182110 -6245.3954 -6253.9793 8.5839264 3696.1162 631.39153 -10581.487 0 411.38992 0.00028363649 0.00024616751 + 182120 -6245.6867 -6253.7663 8.079619 3691.8705 633.88012 -10579.517 0 387.22068 0.00056983869 0.00053435454 + 182130 -6245.9752 -6253.5519 7.5766974 3691.646 635.0139 -10580.212 0 363.11785 0.00064685138 0.00060617767 + 182140 -6246.2827 -6253.3535 7.070758 3695.651 634.62958 -10583.634 0 338.8704 0.00049606963 0.00044800273 + 182150 -6246.6444 -6253.1475 6.5031972 3702.9244 633.01467 -10589.087 0 311.6697 0.00016162799 0.00011058776 + 182160 -6247.0674 -6252.9317 5.8642968 3711.5348 630.77493 -10595.241 0 281.05001 -0.00026036028 -0.00030652133 + 182170 -6247.5111 -6252.7736 5.2625368 3719.0942 628.61152 -10600.479 0 252.21029 -0.00064906875 -0.00068513218 + 182180 -6247.9092 -6252.7927 4.8834815 3723.467 627.10045 -10603.36 0 234.04383 -0.00089611702 -0.00092380158 + 182190 -6248.2153 -6253.0783 4.8629481 3723.4417 626.54442 -10603.064 0 233.05976 -0.00094037703 -0.00096751475 + 182200 -6248.4354 -6253.6086 5.1731573 3719.1094 626.92408 -10599.642 0 247.92672 -0.00078728654 -0.00082241891 + 182210 -6248.6262 -6254.2376 5.6113924 3711.8022 627.94064 -10593.98 0 268.92941 -0.00050465282 -0.00055092626 + 182220 -6248.8562 -6254.7694 5.9131654 3703.608 629.12574 -10587.503 0 283.39207 -0.00019591895 -0.00024887341 + 182230 -6249.1558 -6255.072 5.9162415 3696.6627 629.989 -10581.724 0 283.53949 3.7981413e-05 -1.3093483e-05 + 182240 -6249.4942 -6255.1416 5.6473907 3692.5159 630.16726 -10577.825 0 270.65465 0.0001312783 8.8375286e-05 + 182250 -6249.8049 -6255.0724 5.267505 3691.8028 629.53364 -10576.409 0 252.44839 6.7957027e-05 3.3142298e-05 + 182260 -6250.0338 -6254.9708 4.9369971 3694.2592 628.23084 -10577.461 0 236.6086 -0.00012285742 -0.00015512007 + 182270 -6250.171 -6254.8868 4.715808 3698.9595 626.61831 -10580.465 0 226.00798 -0.00038308234 -0.00041927245 + 182280 -6250.2481 -6254.8073 4.5591765 3704.6257 625.15351 -10584.587 0 218.50132 -0.00064457918 -0.00068769186 + 182290 -6250.31 -6254.698 4.3879901 3709.9184 624.24906 -10588.865 0 210.29711 -0.00084542898 -0.00089348014 + 182300 -6250.3863 -6254.5542 4.1678925 3713.6885 624.15328 -10592.396 0 199.74879 -0.00094182535 -0.00098964978 + 182310 -6250.4779 -6254.4197 3.9417734 3715.187 624.89097 -10594.498 0 188.9119 -0.00091534281 -0.00095791229 + 182320 -6250.5619 -6254.3687 3.8067497 3714.2095 626.2763 -10594.855 0 182.44081 -0.00077518494 -0.00081029817 + 182330 -6250.6058 -6254.4694 3.8636387 3711.1355 627.98362 -10593.588 0 185.16725 -0.00055496575 -0.00058421827 + 182340 -6250.5816 -6254.7455 4.1638887 3706.8424 629.64553 -10591.233 0 199.55691 -0.00030471049 -0.0003325946 + 182350 -6250.4812 -6255.1467 4.6654861 3702.5101 630.94714 -10588.604 0 223.59627 -7.9947262e-05 -0.00011131263 + 182360 -6250.3246 -6255.5462 5.2215902 3699.3393 631.69108 -10586.577 0 250.2479 7.0276702e-05 3.3377204e-05 + 182370 -6250.1519 -6255.7826 5.630762 3698.231 631.81983 -10585.833 0 269.85771 0.00011467835 7.4734118e-05 + 182380 -6249.9971 -6255.7344 5.7373234 3699.5143 631.39702 -10586.646 0 274.96473 4.752987e-05 1.0297716e-05 + 182390 -6249.8618 -6255.3841 5.5223044 3702.8329 630.56364 -10588.781 0 264.65981 -0.00011018735 -0.00013956096 + 182400 -6249.708 -6254.8316 5.1236041 3707.2538 629.49154 -10591.577 0 245.55186 -0.00031743917 -0.00033851689 + 182410 -6249.4782 -6254.2448 4.7666411 3711.5636 628.35151 -10594.16 0 228.44419 -0.00052553169 -0.00054407153 + 182420 -6249.1301 -6253.7704 4.640335 3714.6368 627.30083 -10595.708 0 222.39089 -0.00069165904 -0.00071694703 + 182430 -6248.6659 -6253.4561 4.7901973 3715.7258 626.48192 -10595.664 0 229.57313 -0.00078836382 -0.00082732142 + 182440 -6248.1375 -6253.2399 5.1023853 3714.5688 626.01773 -10593.826 0 244.53493 -0.00080530004 -0.00085684074 + 182450 -6247.6169 -6253.0268 5.4099016 3711.3161 625.99299 -10590.336 0 259.27284 -0.00074363419 -0.00079781982 + 182460 -6247.139 -6252.8051 5.6661397 3706.3849 626.42148 -10585.612 0 271.55321 -0.00060863271 -0.00065310043 + 182470 -6246.6563 -6252.6945 6.0381492 3700.4055 627.21424 -10580.314 0 289.38199 -0.00040918667 -0.00043964192 + 182480 -6246.0687 -6252.8495 6.7808111 3694.3174 628.17225 -10575.339 0 324.97452 -0.0001686646 -0.00019468532 + 182490 -6245.3335 -6253.2817 7.9482422 3689.4516 629.01981 -10571.753 0 380.92436 6.1831523e-05 2.2701573e-05 + 182500 -6244.5573 -6253.7792 9.2218798 3687.3115 629.4758 -10570.566 0 441.96422 0.00020701299 0.00014344055 + 182510 -6243.9495 -6254.0276 10.07803 3688.9761 629.34311 -10572.347 0 482.99575 0.00019753965 0.00011433658 + 182520 -6243.6617 -6253.841 10.179257 3694.436 628.5886 -10576.866 0 487.84709 1.1350926e-05 -7.4221696e-05 + 182530 -6243.6703 -6253.3027 9.6324695 3702.3348 627.38574 -10583.023 0 461.64199 -0.00030394704 -0.00037616732 + 182540 -6243.8137 -6252.6951 8.8813567 3710.3609 626.09955 -10589.155 0 425.64444 -0.00064543031 -0.00070174825 + 182550 -6243.9324 -6252.2801 8.3476741 3716.1072 625.20576 -10593.593 0 400.06738 -0.00089686499 -0.00094757489 + 182560 -6243.9757 -6252.1264 8.1506777 3717.9379 625.15141 -10595.216 0 390.62621 -0.00097290307 -0.0010308131 + 182570 -6244.001 -6252.1175 8.1165008 3715.4719 626.18978 -10593.779 0 388.98826 -0.00084518452 -0.00091526087 + 182580 -6244.0977 -6252.0948 7.9971498 3709.59 628.24906 -10589.934 0 383.26829 -0.00054625131 -0.00062280506 + 182590 -6244.3117 -6251.996 7.6842301 3702.0803 630.89605 -10584.972 0 368.27142 -0.00015687709 -0.00022847467 + 182600 -6244.6132 -6251.9057 7.2924416 3695.076 633.42496 -10580.407 0 349.49472 0.0002173987 0.0001594742 + 182610 -6244.9173 -6252.0047 7.0873924 3690.4696 635.05884 -10577.533 0 339.66761 0.00047433426 0.0004294439 + 182620 -6245.1485 -6252.4317 7.2831868 3689.4831 635.20731 -10577.122 0 349.05118 0.00053965446 0.00049800459 + 182630 -6245.3088 -6253.142 7.8332885 3692.4438 633.68868 -10579.274 0 375.41514 0.00038371236 0.00033425752 + 182640 -6245.4885 -6253.8888 8.4002879 3698.6985 630.82159 -10583.409 0 402.58893 3.0801756e-05 -2.9083464e-05 + 182650 -6245.7962 -6254.3705 8.574312 3706.6498 627.33786 -10588.358 0 410.92914 -0.00043942849 -0.00050116179 + 182660 -6246.2572 -6254.4379 8.180659 3714.032 624.14671 -10592.617 0 392.06308 -0.0009048034 -0.00095583642 + 182670 -6246.7816 -6254.1839 7.4023236 3718.5183 622.04772 -10594.75 0 354.76088 -0.0012334602 -0.0012681763 + 182680 -6247.2371 -6253.8427 6.6055522 3718.5284 621.50297 -10593.874 0 316.57512 -0.0013297218 -0.0013539248 + 182690 -6247.5519 -6253.6049 6.053048 3713.8649 622.53282 -10590.003 0 290.09602 -0.0011715513 -0.0011971742 + 182700 -6247.7487 -6253.5198 5.771023 3705.834 624.742 -10584.096 0 276.5798 -0.00081897029 -0.00085495781 + 182710 -6247.903 -6253.533 5.6299739 3696.7918 627.45162 -10577.776 0 269.81994 -0.00038990362 -0.00043702244 + 182720 -6248.0802 -6253.5799 5.4996689 3689.3453 629.89863 -10572.824 0 263.57499 -1.7043427e-05 -6.9073099e-05 + 182730 -6248.301 -6253.6451 5.344092 3685.5346 631.44856 -10570.628 0 256.11887 0.00019526331 0.00014647095 + 182740 -6248.5409 -6253.7639 5.2230258 3686.263 631.76065 -10571.788 0 250.3167 0.00019944045 0.00015881324 + 182750 -6248.7559 -6253.9802 5.224255 3691.1296 630.86311 -10575.973 0 250.37561 1.1792448e-05 -2.1239414e-05 + 182760 -6248.9163 -6254.293 5.376701 3698.6649 629.12518 -10582.083 0 257.68168 -0.00029982152 -0.00032969837 + 182770 -6249.0237 -6254.6398 5.6160965 3706.8215 627.13694 -10588.598 0 269.15485 -0.00063982882 -0.00067120805 + 182780 -6249.0994 -6254.9359 5.8364616 3713.5317 625.52819 -10593.996 0 279.71599 -0.00091192281 -0.00094740088 + 182790 -6249.1612 -6255.1268 5.9656281 3717.2074 624.77918 -10597.113 0 285.90637 -0.0010441204 -0.0010845567 + 182800 -6249.2179 -6255.1949 5.9770172 3717.1125 625.08464 -10597.392 0 286.4522 -0.0010079077 -0.0010532402 + 182810 -6249.2815 -6255.1272 5.8456825 3713.5195 626.31266 -10594.959 0 280.15791 -0.00082540389 -0.00087400997 + 182820 -6249.3688 -6254.9078 5.5389484 3707.5672 628.0634 -10590.538 0 265.45748 -0.00055966139 -0.000607583 + 182830 -6249.4807 -6254.5581 5.0774148 3700.8598 629.8009 -10585.219 0 243.33821 -0.00029104693 -0.00033367461 + 182840 -6249.5862 -6254.173 4.5868376 3694.9886 631.01552 -10580.177 0 219.827 -9.0988672e-05 -0.00012679504 + 182850 -6249.6384 -6253.8877 4.249239 3691.1757 631.36881 -10576.432 0 203.64738 -4.7127241e-06 -3.7222274e-05 + 182860 -6249.6135 -6253.7912 4.1777083 3690.1027 630.77633 -10574.67 0 200.21922 -4.6431824e-05 -8.1628451e-05 + 182870 -6249.5319 -6253.8704 4.3385488 3691.8523 629.40388 -10575.127 0 207.9276 -0.00020220789 -0.00024330693 + 182880 -6249.4383 -6254.0412 4.6028135 3695.8956 627.58768 -10577.524 0 220.59265 -0.00043491637 -0.00047945752 + 182890 -6249.3573 -6254.2338 4.8765134 3701.1619 625.72102 -10581.117 0 233.70988 -0.00069074037 -0.00073285785 + 182900 -6249.2631 -6254.4475 5.1844474 3706.267 624.15549 -10584.87 0 248.46781 -0.0009098162 -0.00094567082 + 182910 -6249.0898 -6254.7254 5.635568 3709.8873 623.14372 -10587.756 0 270.08804 -0.0010410977 -0.0010727732 + 182920 -6248.771 -6255.076 6.3049894 3711.1459 622.82216 -10589.044 0 302.17047 -0.0010566985 -0.001091387 + 182930 -6248.2822 -6255.4074 7.1251247 3709.8457 623.21834 -10588.471 0 341.47595 -0.00095933212 -0.0010042699 + 182940 -6247.6644 -6255.5283 7.8638289 3706.4609 624.26734 -10586.256 0 376.8788 -0.00077921824 -0.00083569274 + 182950 -6247.0103 -6255.2307 8.2203263 3701.9092 625.82783 -10582.968 0 393.96416 -0.00056147696 -0.00062210496 + 182960 -6246.4106 -6254.423 8.0123656 3697.2132 627.69309 -10579.329 0 383.99752 -0.00034927914 -0.0004015547 + 182970 -6245.8846 -6253.237 7.3524956 3693.2116 629.60014 -10576.049 0 352.37284 -0.00017094608 -0.00020640714 + 182980 -6245.3547 -6252.0128 6.6580656 3690.4678 631.2511 -10573.732 0 319.09186 -3.8700999e-05 -6.1780839e-05 + 182990 -6244.7069 -6251.1248 6.4178778 3689.3943 632.36053 -10572.88 0 307.58071 4.037176e-05 1.2147595e-05 + 183000 -6243.9021 -6250.7535 6.8514249 3690.3992 632.72319 -10573.876 0 328.35872 5.1752755e-05 -7.0038286e-07 + 183010 -6243.0466 -6250.7889 7.7422503 3693.7812 632.27464 -10576.845 0 371.05207 -2.5698463e-05 -0.00010719675 + 183020 -6242.3413 -6250.962 8.6207351 3699.3309 631.11747 -10581.41 0 413.154 -0.00020044183 -0.00029500735 + 183030 -6241.9248 -6251.0926 9.1677771 3705.9536 629.5052 -10586.551 0 439.37132 -0.000443845 -0.00052509806 + 183040 -6241.7535 -6251.2338 9.4802983 3711.7471 627.79111 -10590.772 0 454.34909 -0.00068437869 -0.00073569794 + 183050 -6241.644 -6251.5906 9.9466125 3714.6664 626.35136 -10592.608 0 476.69748 -0.00083302192 -0.00086087717 + 183060 -6241.4447 -6252.2877 10.843006 3713.4573 625.49327 -10591.238 0 519.65768 -0.00082759247 -0.00085704763 + 183070 -6241.1858 -6253.1906 12.004838 3708.3095 625.36956 -10586.87 0 575.33918 -0.00066785006 -0.00072375808 + 183080 -6241.0793 -6253.929 12.849718 3700.8388 625.92876 -10580.697 0 615.8306 -0.00041839586 -0.00050641468 + 183090 -6241.3551 -6254.1183 12.763225 3693.3898 626.92405 -10574.432 0 611.68535 -0.00017651968 -0.00027825061 + 183100 -6242.0514 -6253.6347 11.583332 3688.0335 627.98029 -10569.649 0 555.13828 -2.4681691e-05 -0.00011147229 + 183110 -6242.9515 -6252.7391 9.7876389 3685.8178 628.70262 -10567.26 0 469.07858 1.7017174e-06 -5.3532796e-05 + 183120 -6243.7422 -6251.921 8.1788572 3686.6748 628.80252 -10567.398 0 391.97673 -8.6918954e-05 -0.00011831812 + 183130 -6244.2414 -6251.5593 7.3178812 3689.8853 628.20335 -10569.648 0 350.71393 -0.00025817189 -0.00028994773 + 183140 -6244.4916 -6251.684 7.1923606 3694.5841 627.07712 -10573.345 0 344.69827 -0.00047806725 -0.0005308108 + 183150 -6244.6776 -6252.0324 7.3548064 3699.9067 625.78779 -10577.727 0 352.48359 -0.0007131521 -0.00078873728 + 183160 -6244.9688 -6252.3107 7.3419501 3704.866 624.76612 -10581.943 0 351.86744 -0.0009219141 -0.0010041622 + 183170 -6245.4062 -6252.4211 7.0148123 3708.3137 624.37161 -10585.106 0 336.18917 -0.0010520977 -0.0011203164 + 183180 -6245.8982 -6252.4982 6.5999128 3709.1968 624.7897 -10586.485 0 316.30485 -0.0010532943 -0.0010972634 + 183190 -6246.3049 -6252.7702 6.4653357 3707.0167 625.98487 -10585.772 0 309.85517 -0.00090051737 -0.00092671645 + 183200 -6246.5403 -6253.3644 6.824076 3702.2143 627.70969 -10583.288 0 327.04801 -0.00061534156 -0.00064159213 + 183210 -6246.6319 -6254.1884 7.5564789 3696.2184 629.5622 -10579.969 0 362.14887 -0.00027080421 -0.00031377295 + 183220 -6246.7079 -6254.9573 8.249467 3691.0431 631.08162 -10577.082 0 395.36075 2.7048093e-05 -3.6559408e-05 + 183230 -6246.9153 -6255.354 8.4387033 3688.5442 631.86409 -10575.762 0 404.43001 0.00017727036 0.00010497774 + 183240 -6247.3098 -6255.2331 7.923313 3689.6416 631.66905 -10576.544 0 379.72962 0.00012597733 6.4526994e-05 + 183250 -6247.8019 -6254.7328 6.9309124 3693.9084 630.48703 -10579.128 0 332.16821 -0.00011034496 -0.00014852124 + 183260 -6248.2202 -6254.1873 5.9671537 3699.7877 628.55314 -10582.528 0 285.97949 -0.00045474628 -0.00047395958 + 183270 -6248.4444 -6253.8844 5.4400177 3705.3178 626.30266 -10585.505 0 260.71617 -0.00080615327 -0.00082361166 + 183280 -6248.4896 -6253.8696 5.3799102 3708.906 624.26855 -10587.044 0 257.83548 -0.0010781846 -0.0011099624 + 183290 -6248.4776 -6253.9703 5.4927024 3709.7336 622.93501 -10586.639 0 263.24112 -0.0012199601 -0.0012691282 + 183300 -6248.5322 -6253.9884 5.456194 3707.7471 622.59152 -10584.327 0 261.49143 -0.0012169729 -0.0012730688 + 183310 -6248.6928 -6253.8681 5.1753192 3703.4694 623.24608 -10580.584 0 248.03033 -0.0010833599 -0.0011316668 + 183320 -6248.9041 -6253.7205 4.8164247 3697.8252 624.63099 -10576.177 0 230.8301 -0.00085532742 -0.00088756769 + 183330 -6249.0676 -6253.7216 4.6539856 3692.0145 626.2935 -10572.03 0 223.04511 -0.00058691259 -0.00060615543 + 183340 -6249.1097 -6253.9788 4.8690455 3687.3689 627.73567 -10569.083 0 233.35198 -0.00034387058 -0.00036169203 + 183350 -6249.0266 -6254.4468 5.420205 3685.1243 628.56092 -10568.132 0 259.76664 -0.00019185057 -0.00022034253 + 183360 -6248.8882 -6254.9381 6.0499462 3686.099 628.58643 -10569.624 0 289.94737 -0.00017872288 -0.00022233562 + 183370 -6248.7957 -6255.2283 6.4325659 3690.3474 627.88751 -10573.463 0 308.28465 -0.00031553195 -0.00036806152 + 183380 -6248.8085 -6255.1996 6.3910789 3696.9542 626.75948 -10578.913 0 306.29636 -0.0005649086 -0.0006143681 + 183390 -6248.8961 -6254.9199 6.0238249 3704.1638 625.61547 -10584.699 0 288.69549 -0.00084706433 -0.00088528386 + 183400 -6248.9664 -6254.578 5.6115722 3709.9146 624.86293 -10589.355 0 268.93803 -0.0010666145 -0.0010954536 + 183410 -6248.947 -6254.327 5.3800272 3712.5751 624.79553 -10591.698 0 257.84109 -0.0011492898 -0.0011779751 + 183420 -6248.8384 -6254.1905 5.3521875 3711.5 625.51466 -10591.205 0 256.50686 -0.0010689014 -0.0011057975 + 183430 -6248.695 -6254.1035 5.4084972 3707.1531 626.89021 -10588.147 0 259.20553 -0.00085230405 -0.00089903922 + 183440 -6248.5714 -6254.0119 5.4404202 3700.843 628.5792 -10583.434 0 260.73546 -0.0005651337 -0.00061686061 + 183450 -6248.4851 -6253.9243 5.4391885 3694.268 630.11141 -10578.304 0 260.67643 -0.00028858274 -0.00033817653 + 183460 -6248.4115 -6253.8973 5.4857934 3689.0397 631.02149 -10573.958 0 262.91 -9.5973394e-05 -0.00013849359 + 183470 -6248.298 -6253.9899 5.6918292 3686.3014 630.98566 -10571.277 0 272.78439 -3.4743546e-05 -7.0080069e-05 + 183480 -6248.0871 -6254.2176 6.1304914 3686.5158 629.921 -10570.654 0 293.80755 -0.00011737147 -0.00015027786 + 183490 -6247.7432 -6254.518 6.7747294 3689.4462 628.01966 -10571.984 0 324.68305 -0.00032215958 -0.00035948615 + 183500 -6247.2773 -6254.7493 7.4720184 3694.2805 625.70701 -10574.737 0 358.10105 -0.00060139546 -0.00064756772 + 183510 -6246.7465 -6254.7441 7.9975975 3699.8154 623.53087 -10578.09 0 383.28975 -0.00089245029 -0.00094602366 + 183520 -6246.2206 -6254.403 8.1824381 3704.6639 622.01124 -10581.078 0 392.14834 -0.0011290054 -0.0011832529 + 183530 -6245.7362 -6253.7655 8.029343 3707.5167 621.49977 -10582.782 0 384.81117 -0.0012529988 -0.0013005171 + 183540 -6245.2769 -6252.9972 7.720302 3707.4733 622.09707 -10582.568 0 370.00019 -0.0012280359 -0.0012658811 + 183550 -6244.7926 -6252.3075 7.514849 3704.3559 623.64807 -10580.311 0 360.15373 -0.0010510959 -0.0010828583 + 183560 -6244.2365 -6251.8572 7.6206655 3698.8601 625.80338 -10576.521 0 365.22505 -0.00075700974 -0.00079099867 + 183570 -6243.5981 -6251.6987 8.1005971 3692.4461 628.11828 -10572.263 0 388.22606 -0.00041253145 -0.00045735822 + 183580 -6242.9224 -6251.7609 8.8384886 3686.97 630.16007 -10568.891 0 423.58997 -0.00010050552 -0.00015998102 + 183590 -6242.3038 -6251.8881 9.5842843 3684.1321 631.59768 -10567.618 0 459.33268 0.00010294792 3.3074864e-05 + 183600 -6241.8409 -6251.929 10.088096 3684.8934 632.25464 -10569.077 0 483.47817 0.00015255834 8.3214131e-05 + 183610 -6241.5726 -6251.8372 10.264572 3689.0903 632.12098 -10573.048 0 491.93587 5.0168986e-05 -7.7883508e-06 + 183620 -6241.449 -6251.7051 10.256173 3695.4613 631.33426 -10578.501 0 491.53334 -0.00015641767 -0.00020038971 + 183630 -6241.3792 -6251.6857 10.306477 3702.1274 630.1429 -10583.956 0 493.94419 -0.00039430284 -0.00043269568 + 183640 -6241.3221 -6251.8561 10.534046 3707.2902 628.85332 -10588 0 504.8506 -0.00059558876 -0.00064179639 + 183650 -6241.3329 -6252.1527 10.819881 3709.7776 627.75709 -10589.687 0 518.5494 -0.00071946424 -0.00078175653 + 183660 -6241.5225 -6252.4302 10.907648 3709.2286 627.05152 -10588.71 0 522.75567 -0.00075665415 -0.00083226039 + 183670 -6241.9698 -6252.5761 10.606339 3705.9825 626.78728 -10585.346 0 508.31526 -0.00072048837 -0.00079787564 + 183680 -6242.6582 -6252.5855 9.9272939 3700.8493 626.86958 -10580.304 0 475.77162 -0.00063498714 -0.00070177494 + 183690 -6243.4802 -6252.5597 9.0794129 3694.8835 627.10923 -10574.552 0 435.13641 -0.00052693777 -0.000577775 + 183700 -6244.2983 -6252.6421 8.3437188 3689.2086 627.29558 -10569.146 0 399.87782 -0.00042326637 -0.00046278175 + 183710 -6245.0205 -6252.9223 7.9017975 3684.8865 627.26147 -10565.07 0 378.69847 -0.00035136636 -0.00039038708 + 183720 -6245.6383 -6253.3606 7.7222825 3682.7878 626.92215 -10563.071 0 370.09511 -0.00033808912 -0.00038551396 + 183730 -6246.2049 -6253.7971 7.5921293 3683.4122 626.28413 -10563.493 0 363.85744 -0.00040351646 -0.00045951389 + 183740 -6246.7716 -6254.0581 7.2864501 3686.6793 625.43183 -10566.169 0 349.20757 -0.00055002384 -0.00060583976 + 183750 -6247.3328 -6254.0889 6.7561198 3691.8174 624.50657 -10570.413 0 323.79117 -0.00075323141 -0.000798201 + 183760 -6247.8223 -6254.0005 6.1782163 3697.498 623.68868 -10575.187 0 296.09479 -0.00096355414 -0.00099400503 + 183770 -6248.1632 -6253.9767 5.8134067 3702.2459 623.18088 -10579.403 0 278.61107 -0.0011216443 -0.0011442735 + 183780 -6248.3332 -6254.1162 5.7829747 3704.9474 623.17874 -10582.242 0 277.15259 -0.0011810436 -0.0012076729 + 183790 -6248.3902 -6254.351 5.9608556 3705.1888 623.81767 -10583.357 0 285.67764 -0.0011252006 -0.0011632725 + 183800 -6248.4366 -6254.5118 6.0752415 3703.2714 625.10835 -10582.892 0 291.15966 -0.00096986957 -0.0010166522 + 183810 -6248.549 -6254.4755 5.9264673 3699.9699 626.89395 -10581.339 0 284.02957 -0.00075252683 -0.00079749542 + 183820 -6248.7268 -6254.2685 5.5416971 3696.2233 628.85816 -10579.35 0 265.58922 -0.0005181683 -0.00055132054 + 183830 -6248.8983 -6254.0542 5.1559246 3692.9119 630.58916 -10577.555 0 247.10084 -0.00031015723 -0.00032985902 + 183840 -6248.9771 -6254.0167 5.0396304 3690.7684 631.68164 -10576.467 0 241.52737 -0.00016786904 -0.00018245835 + 183850 -6248.9287 -6254.2248 5.2961012 3690.3474 631.84776 -10576.42 0 253.81889 -0.00012568885 -0.00014753226 + 183860 -6248.7993 -6254.5794 5.7800935 3691.934 631.00398 -10577.517 0 277.01451 -0.00020625379 -0.00024264186 + 183870 -6248.6828 -6254.8926 6.2097891 3695.3511 629.30413 -10579.548 0 297.60794 -0.00040715931 -0.00045527215 + 183880 -6248.6489 -6255.0323 6.3834467 3699.8001 627.10575 -10581.938 0 305.93059 -0.00069010229 -0.00074008646 + 183890 -6248.6947 -6255.004 6.3093199 3703.944 624.88236 -10583.83 0 302.37801 -0.00098453504 -0.0010275477 + 183900 -6248.762 -6254.9034 6.141381 3706.3096 623.11072 -10584.324 0 294.32944 -0.0012090048 -0.001242923 + 183910 -6248.7939 -6254.8071 6.0132252 3705.8368 622.15883 -10582.803 0 288.18749 -0.0013000513 -0.0013288771 + 183920 -6248.7713 -6254.7165 5.9452528 3702.2926 622.19265 -10579.202 0 284.92987 -0.001234045 -0.001263552 + 183930 -6248.7074 -6254.5855 5.8780633 3696.3823 623.12316 -10574.091 0 281.70977 -0.0010342702 -0.0010684495 + 183940 -6248.627 -6254.3743 5.7473186 3689.5637 624.61942 -10568.558 0 275.44376 -0.00076376215 -0.00080359148 + 183950 -6248.553 -6254.0804 5.527321 3683.6487 626.19658 -10563.926 0 264.90024 -0.00050695937 -0.00055057399 + 183960 -6248.4985 -6253.7453 5.2467974 3680.2863 627.35797 -10561.39 0 251.45597 -0.00034411353 -0.00038784865 + 183970 -6248.4586 -6253.4521 4.9934476 3680.4685 627.74799 -10561.669 0 239.31402 -0.00032550887 -0.00036587387 + 183980 -6248.4079 -6253.304 4.8960993 3684.2258 627.26799 -10564.798 0 234.64855 -0.00045468722 -0.00049057228 + 183990 -6248.3108 -6253.3825 5.0716829 3690.6292 626.11724 -10570.129 0 243.0635 -0.00068737778 -0.00072093103 + 184000 -6248.1424 -6253.6965 5.5541181 3698.0851 624.74142 -10576.523 0 266.1845 -0.00094655848 -0.00098165158 + 184010 -6247.9067 -6254.16 6.2533139 3704.7936 623.69711 -10582.651 0 299.69389 -0.00114747 -0.0011865463 + 184020 -6247.635 -6254.6244 6.9893771 3709.2036 623.46818 -10587.296 0 334.97017 -0.0012229967 -0.0012648993 + 184030 -6247.3621 -6254.9524 7.5903216 3710.3588 624.29472 -10589.606 0 363.7708 -0.0011415901 -0.0011825489 + 184040 -6247.1009 -6255.0757 7.9748287 3708.1043 626.0809 -10589.261 0 382.19854 -0.00091491578 -0.00095192926 + 184050 -6246.8411 -6254.9942 8.153058 3703.1377 628.41935 -10586.551 0 390.74029 -0.00059561957 -0.00062906865 + 184060 -6246.5694 -6254.7368 8.1674445 3696.858 630.71846 -10582.313 0 391.42977 -0.00026532204 -0.00029868424 + 184070 -6246.2875 -6254.3325 8.0450905 3690.9984 632.38166 -10577.713 0 385.56588 -1.3418246e-05 -5.0777982e-05 + 184080 -6246.0152 -6253.8089 7.7937055 3687.1303 632.97898 -10573.918 0 373.5181 8.8812216e-05 4.5492498e-05 + 184090 -6245.7801 -6253.2065 7.426373 3686.1981 632.35944 -10571.764 0 355.91347 1.0444891e-05 -3.7211627e-05 + 184100 -6245.6002 -6252.597 6.9968356 3688.2354 630.67188 -10571.504 0 335.32762 -0.00022867858 -0.0002761564 + 184110 -6245.4657 -6252.0899 6.624184 3692.3581 628.29627 -10572.744 0 317.46806 -0.00056372603 -0.00060643564 + 184120 -6245.337 -6251.8098 6.4728298 3697.0565 625.7241 -10574.59 0 310.21432 -0.00090547643 -0.00094197905 + 184130 -6245.1619 -6251.8431 6.6811492 3700.7 623.43631 -10575.979 0 320.19816 -0.0011682586 -0.0012014778 + 184140 -6244.9033 -6252.1925 7.289177 3702.067 621.80679 -10576.066 0 349.33826 -0.0012945136 -0.0013302434 + 184150 -6244.5567 -6252.7721 8.2154061 3700.7047 621.03767 -10574.514 0 393.72836 -0.0012680935 -0.0013122021 + 184160 -6244.1593 -6253.4327 9.2733544 3697.0174 621.13215 -10571.582 0 444.43118 -0.0011145885 -0.0011702828 + 184170 -6243.7909 -6253.9915 10.20065 3692.0912 621.91695 -10568 0 488.8724 -0.00089059406 -0.0009561838 + 184180 -6243.5543 -6254.2715 10.717185 3687.3223 623.11552 -10564.709 0 513.62765 -0.00066442129 -0.00073249646 + 184190 -6243.5261 -6254.1671 10.641026 3683.9618 624.44667 -10562.576 0 509.97767 -0.00049266027 -0.00055258683 + 184200 -6243.6998 -6253.7198 10.020052 3682.7356 625.70485 -10562.16 0 480.21711 -0.00040130419 -0.00044564119 + 184210 -6243.9762 -6253.1303 9.1541001 3683.7112 626.78923 -10563.631 0 438.71584 -0.00038205737 -0.00041331561 + 184220 -6244.2362 -6252.6523 8.4160121 3686.4723 627.6803 -10566.805 0 403.34252 -0.00040789781 -0.00043890931 + 184230 -6244.4455 -6252.4167 7.9711946 3690.4523 628.38902 -10571.258 0 382.02437 -0.00045739657 -0.00050210478 + 184240 -6244.6874 -6252.3512 7.663777 3695.128 628.91035 -10576.39 0 367.2912 -0.00052721547 -0.00058836359 + 184250 -6245.0762 -6252.2985 7.2222889 3699.9261 629.20786 -10581.433 0 346.13261 -0.00062138213 -0.00068708803 + 184260 -6245.6312 -6252.2224 6.5911933 3704.0365 629.24026 -10585.499 0 315.88697 -0.00072962081 -0.00078338483 + 184270 -6246.249 -6252.2775 6.0285117 3706.4668 629.01123 -10587.755 0 288.92011 -0.00081949087 -0.00085434832 + 184280 -6246.8006 -6252.6635 5.8629426 3706.4303 628.60074 -10587.695 0 280.98511 -0.00085258297 -0.00087590582 + 184290 -6247.2418 -6253.4169 6.1751123 3703.7934 628.14529 -10585.356 0 295.94603 -0.00081022235 -0.00083583523 + 184300 -6247.6321 -6254.3468 6.7146418 3699.2277 627.7718 -10581.346 0 321.80331 -0.00070684557 -0.00074317265 + 184310 -6248.0652 -6255.1578 7.0925927 3693.9667 627.52414 -10576.649 0 339.91684 -0.00058311854 -0.0006276584 + 184320 -6248.583 -6255.6347 7.0516459 3689.3464 627.32743 -10572.309 0 337.95444 -0.00048706168 -0.00053012903 + 184330 -6249.1413 -6255.7492 6.6078108 3686.3831 627.01418 -10569.146 0 316.68337 -0.00045618076 -0.0004894375 + 184340 -6249.6437 -6255.6366 5.9928103 3685.5524 626.40375 -10567.593 0 287.20909 -0.00050835019 -0.00053129201 + 184350 -6250.0097 -6255.4755 5.4657857 3686.7934 625.40197 -10567.671 0 261.95112 -0.0006413852 -0.00066138061 + 184360 -6250.2261 -6255.3602 5.1341051 3689.6453 624.07589 -10569.081 0 246.05512 -0.00083649445 -0.00086276086 + 184370 -6250.3493 -6255.2558 4.9064979 3693.3874 622.66609 -10571.309 0 235.14691 -0.0010610956 -0.0010973252 + 184380 -6250.46 -6255.0666 4.6065554 3697.1253 621.52379 -10573.716 0 220.77198 -0.0012706181 -0.0013120405 + 184390 -6250.6043 -6254.7552 4.1509964 3699.8847 620.99626 -10575.636 0 198.93904 -0.0014132799 -0.0014504873 + 184400 -6250.7645 -6254.4081 3.6436381 3700.8088 621.3085 -10576.525 0 174.62358 -0.001441826 -0.001468147 + 184410 -6250.8806 -6254.1931 3.3124697 3699.4574 622.48684 -10576.137 0 158.75214 -0.0013307038 -0.0013472164 + 184420 -6250.8977 -6254.2494 3.3517489 3696.0741 624.34454 -10574.668 0 160.63461 -0.0010909487 -0.0011056269 + 184430 -6250.8026 -6254.5958 3.7931441 3691.6408 626.52359 -10572.76 0 181.78875 -0.00077402605 -0.00079624093 + 184440 -6250.6323 -6255.1156 4.4832464 3687.6354 628.57624 -10571.327 0 214.86233 -0.00046064335 -0.00049507569 + 184450 -6250.4534 -6255.6166 5.1631732 3685.554 630.06917 -10571.24 0 247.44823 -0.00023717561 -0.00028081288 + 184460 -6250.326 -6255.9256 5.5996138 3686.3702 630.68956 -10572.985 0 268.36491 -0.00016740417 -0.00021118444 + 184470 -6250.266 -6255.9708 5.7048172 3690.1405 630.32708 -10576.438 0 273.40685 -0.00026976457 -0.00030410582 + 184480 -6250.2301 -6255.8108 5.5807458 3695.9232 629.10764 -10580.842 0 267.46065 -0.00050965022 -0.00053095406 + 184490 -6250.1398 -6255.5826 5.4427441 3702.0744 627.3678 -10585.025 0 260.84683 -0.00081136799 -0.0008252251 + 184500 -6249.9391 -6255.3903 5.4511866 3706.8146 625.57471 -10587.78 0 261.25145 -0.0010855588 -0.0011035474 + 184510 -6249.6426 -6255.2165 5.5739128 3708.8131 624.20577 -10588.235 0 267.13318 -0.0012596417 -0.0012910867 + 184520 -6249.3324 -6254.9432 5.610742 3707.5303 623.61179 -10586.085 0 268.89824 -0.0012974638 -0.0013422843 + 184530 -6249.0964 -6254.4768 5.3804057 3703.2301 623.90246 -10581.609 0 257.85923 -0.0012020256 -0.0012507584 + 184540 -6248.9583 -6253.8701 4.9117979 3696.7823 624.90097 -10575.553 0 235.40091 -0.001006085 -0.001047308 + 184550 -6248.8598 -6253.3266 4.4667771 3689.4369 626.19594 -10568.959 0 214.07302 -0.00076049678 -0.00078948896 + 184560 -6248.7051 -6253.0782 4.3731264 3682.6486 627.27576 -10563.003 0 209.58475 -0.00052578883 -0.00054748941 + 184570 -6248.4262 -6253.2341 4.8078905 3677.8927 627.69418 -10558.821 0 230.42109 -0.00036438741 -0.00038892321 + 184580 -6248.0225 -6253.7142 5.6917541 3676.3796 627.21042 -10557.304 0 272.78079 -0.00032812582 -0.00036305967 + 184590 -6247.5562 -6254.3036 6.7474578 3678.685 625.86434 -10558.853 0 323.37604 -0.00044095643 -0.00048613838 + 184600 -6247.1127 -6254.7764 7.6636738 3684.4442 623.96863 -10563.189 0 367.28625 -0.00068433749 -0.00073268767 + 184610 -6246.7461 -6255.0057 8.2596063 3692.3017 622.02105 -10569.328 0 395.84668 -0.00099532148 -0.0010387447 + 184620 -6246.45 -6254.999 8.548989 3700.2231 620.56596 -10575.788 0 409.71552 -0.0012826062 -0.0013187072 + 184630 -6246.182 -6254.8379 8.6559119 3706.1126 620.05405 -10581.004 0 414.83987 -0.0014564075 -0.0014905632 + 184640 -6245.9231 -6254.576 8.6529111 3708.4962 620.73945 -10583.812 0 414.69605 -0.0014593793 -0.001499962 + 184650 -6245.7097 -6254.1926 8.4829391 3706.962 622.62309 -10583.778 0 406.55004 -0.0012841113 -0.0013348824 + 184660 -6245.5998 -6253.6499 8.0501288 3702.1757 625.43796 -10581.264 0 385.80734 -0.00097081999 -0.001027509 + 184670 -6245.6135 -6252.988 7.3744831 3695.555 628.68394 -10577.227 0 353.42661 -0.00059082051 -0.00064464127 + 184680 -6245.7104 -6252.3528 6.6423854 3688.825 631.72462 -10572.902 0 318.34038 -0.00022639545 -0.00027061193 + 184690 -6245.8179 -6251.9361 6.1182151 3683.6194 633.93329 -10569.489 0 293.2192 4.6708271e-05 1.2601932e-05 + 184700 -6245.8733 -6251.8867 6.0134613 3681.1703 634.8459 -10567.903 0 288.19881 0.00017326162 0.00014364932 + 184710 -6245.8494 -6252.2464 6.3970095 3682.0842 634.27432 -10568.605 0 306.58059 0.00012842404 9.470787e-05 + 184720 -6245.7664 -6252.924 7.1575931 3686.2252 632.35142 -10571.501 0 343.03202 -7.8560809e-05 -0.00012341337 + 184730 -6245.692 -6253.7086 8.0165769 3692.7265 629.49826 -10575.933 0 384.19934 -0.00040744857 -0.00046434281 + 184740 -6245.7152 -6254.3401 8.6249378 3700.1218 626.31738 -10580.779 0 413.35541 -0.00079419902 -0.00085589684 + 184750 -6245.8858 -6254.6384 8.7525377 3706.5829 623.43518 -10584.656 0 419.47072 -0.0011598132 -0.0012145749 + 184760 -6246.1631 -6254.6133 8.450222 3710.2885 621.34424 -10586.246 0 404.98205 -0.0014231995 -0.0014633443 + 184770 -6246.4371 -6254.4421 8.0049315 3709.9403 620.30628 -10584.689 0 383.64123 -0.0015219594 -0.0015504309 + 184780 -6246.6186 -6254.3073 7.6886996 3705.2816 620.34066 -10579.93 0 368.48562 -0.0014359787 -0.0014640349 + 184790 -6246.7088 -6254.2524 7.5435798 3697.3165 621.27044 -10572.839 0 361.53067 -0.0011986285 -0.0012363664 + 184800 -6246.7817 -6254.1912 7.4095306 3688.0332 622.78442 -10565.009 0 355.10628 -0.00088499383 -0.0009337071 + 184810 -6246.9076 -6254.0371 7.1295699 3679.7534 624.49998 -10558.29 0 341.68899 -0.00058334204 -0.00063607787 + 184820 -6247.0969 -6253.8031 6.7061863 3674.4431 626.03288 -10554.279 0 321.39807 -0.00036684229 -0.00041507043 + 184830 -6247.3062 -6253.5914 6.2851627 3673.2563 627.07349 -10553.921 0 301.22026 -0.00027790077 -0.00031764622 + 184840 -6247.4825 -6253.5114 6.0288955 3676.3738 627.45388 -10557.339 0 288.9385 -0.00032553396 -0.00035874028 + 184850 -6247.5998 -6253.608 6.0082484 3683.0637 627.18754 -10563.859 0 287.94898 -0.00048933716 -0.00052111788 + 184860 -6247.668 -6253.8455 6.1775069 3691.8822 626.46854 -10572.196 0 296.06079 -0.00072530647 -0.00076013811 + 184870 -6247.7201 -6254.1346 6.4145302 3700.9744 625.62456 -10580.734 0 307.42028 -0.00097353372 -0.001012718 + 184880 -6247.7925 -6254.3794 6.5868899 3708.4426 625.02748 -10587.849 0 315.68072 -0.001169371 -0.0012106539 + 184890 -6247.9041 -6254.5221 6.618031 3712.7275 624.98165 -10592.231 0 317.17318 -0.0012575409 -0.0012969327 + 184900 -6248.0443 -6254.5673 6.523003 3712.941 625.62643 -10593.135 0 312.6189 -0.0012063429 -0.0012411454 + 184910 -6248.1819 -6254.5659 6.3839683 3709.0942 626.88818 -10590.548 0 305.95558 -0.00101825 -0.0010491596 + 184920 -6248.2895 -6254.5686 6.279122 3702.1503 628.49534 -10585.214 0 300.93076 -0.00073316851 -0.00076375393 + 184930 -6248.3638 -6254.5866 6.2228286 3693.8353 630.04511 -10578.467 0 298.23286 -0.00042164804 -0.00045562871 + 184940 -6248.4264 -6254.5898 6.163384 3686.211 631.09956 -10571.9 0 295.38394 -0.00016804987 -0.00020655554 + 184950 -6248.5057 -6254.5382 6.0325115 3681.1196 631.29075 -10566.949 0 289.1118 -4.7515232e-05 -8.8293033e-05 + 184960 -6248.6163 -6254.4193 5.8030149 3679.68 630.41604 -10564.515 0 278.11304 -0.00010370162 -0.00014257621 + 184970 -6248.7492 -6254.2668 5.5176303 3682.0009 628.50328 -10564.771 0 264.4358 -0.00033469621 -0.00036818253 + 184980 -6248.8749 -6254.1557 5.2807277 3687.1894 625.82633 -10567.171 0 253.0821 -0.00069187668 -0.00071956225 + 184990 -6248.9576 -6254.1734 5.2158699 3693.6387 622.86205 -10570.674 0 249.97375 -0.0010923754 -0.0011178504 + 185000 -6248.977 -6254.369 5.3920112 3699.5086 620.1964 -10574.074 0 258.41543 -0.0014417046 -0.0014709227 + 185010 -6248.9507 -6254.7031 5.7524359 3703.2461 618.39842 -10576.348 0 275.68901 -0.0016592964 -0.0016964739 + 185020 -6248.9308 -6255.0525 6.1217196 3703.9686 617.88476 -10576.906 0 293.38715 -0.0016979298 -0.0017418371 + 185030 -6248.9674 -6255.2862 6.318808 3701.6042 618.80436 -10575.695 0 302.83273 -0.0015516345 -0.0015960733 + 185040 -6249.0674 -6255.3492 6.2818471 3696.8281 620.98184 -10573.159 0 301.06136 -0.0012538387 -0.0012924368 + 185050 -6249.1921 -6255.2757 6.0835806 3690.8942 623.94847 -10570.118 0 291.55931 -0.0008703485 -0.00090128581 + 185060 -6249.2938 -6255.1326 5.838798 3685.3883 627.05812 -10567.579 0 279.82796 -0.00048792325 -0.00051451926 + 185070 -6249.3512 -6254.963 5.6118203 3681.8804 629.65332 -10566.497 0 268.94992 -0.00019622075 -0.00022369745 + 185080 -6249.3751 -6254.777 5.4019076 3681.5061 631.23297 -10567.516 0 258.88972 -6.4378926e-05 -9.6196648e-05 + 185090 -6249.3898 -6254.578 5.1882693 3684.605 631.57503 -10570.758 0 248.65098 -0.00011985287 -0.00015624831 + 185100 -6249.4133 -6254.3844 4.9711196 3690.5694 630.77972 -10575.734 0 238.24394 -0.00033913803 -0.00037786517 + 185110 -6249.4504 -6254.2283 4.7778392 3697.98 629.22024 -10581.429 0 228.98086 -0.00065498714 -0.00069284087 + 185120 -6249.493 -6254.1474 4.6543362 3704.9777 627.4173 -10586.542 0 223.06191 -0.00097675658 -0.001011071 + 185130 -6249.5202 -6254.1824 4.6622226 3709.7501 625.88006 -10589.813 0 223.43987 -0.0012160463 -0.0012461487 + 185140 -6249.5035 -6254.3659 4.862414 3711.0131 624.96705 -10590.346 0 233.03416 -0.0013105294 -0.0013385193 + 185150 -6249.4233 -6254.6897 5.2663798 3708.3723 624.80699 -10587.869 0 252.39447 -0.0012407246 -0.0012703689 + 185160 -6249.2856 -6255.0772 5.7915881 3702.4487 625.29127 -10582.817 0 277.5654 -0.0010350427 -0.0010689838 + 185170 -6249.1216 -6255.3992 6.2776188 3694.7037 626.12617 -10576.229 0 300.85872 -0.00076050707 -0.00079796143 + 185180 -6248.9664 -6255.5327 6.5662954 3687.0162 626.92452 -10569.473 0 314.69372 -0.00050161743 -0.00053863859 + 185190 -6248.8338 -6255.4256 6.5917874 3681.1657 627.31532 -10563.907 0 315.91544 -0.00033473308 -0.00036703775 + 185200 -6248.7053 -6255.1239 6.4185911 3678.3927 627.04753 -10560.564 0 307.6149 -0.00030686855 -0.00033320953 + 185210 -6248.544 -6254.7442 6.2001526 3679.1538 626.06411 -10559.962 0 297.1461 -0.00042533944 -0.00044890036 + 185220 -6248.3237 -6254.4079 6.0841988 3683.0971 624.52778 -10562.033 0 291.58895 -0.0006596289 -0.00068622316 + 185230 -6248.0501 -6254.178 6.1279286 3689.2062 622.79046 -10566.175 0 293.68472 -0.00095206008 -0.00098618058 + 185240 -6247.7604 -6254.0396 6.27918 3696.0406 621.31115 -10571.391 0 300.93354 -0.0012320734 -0.0012734823 + 185250 -6247.4979 -6253.9345 6.4365533 3702.0219 620.53894 -10576.495 0 308.47575 -0.0014303226 -0.0014738126 + 185260 -6247.2774 -6253.8253 6.5478441 3705.7439 620.78813 -10580.357 0 313.80943 -0.0014915044 -0.0015305761 + 185270 -6247.0677 -6253.7351 6.6673998 3706.2899 622.14124 -10582.166 0 319.53921 -0.0013865068 -0.0014186973 + 185280 -6246.8119 -6253.7204 6.9085148 3703.5164 624.41492 -10581.652 0 331.09479 -0.0011232469 -0.0011527559 + 185290 -6246.4789 -6253.7957 7.3168234 3698.1937 627.20273 -10579.192 0 350.66323 -0.00075168847 -0.00078638589 + 185300 -6246.1005 -6253.8858 7.7853614 3691.8692 629.97775 -10575.733 0 373.1182 -0.00035605313 -0.00040082501 + 185310 -6245.7557 -6253.8711 8.1153221 3686.4108 632.21763 -10572.499 0 388.93177 -3.1464516e-05 -8.380226e-05 + 185320 -6245.5079 -6253.6931 8.1852328 3683.3856 633.51666 -10570.595 0 392.28228 0.0001471679 9.4974421e-05 + 185330 -6245.3537 -6253.4183 8.0645916 3683.5641 633.6628 -10570.645 0 386.50048 0.00014815985 0.00010218116 + 185340 -6245.2374 -6253.1869 7.9495528 3686.7698 632.67018 -10572.627 0 380.98717 -1.368207e-05 -5.3830289e-05 + 185350 -6245.1115 -6253.0974 7.9858839 3692.0628 630.76544 -10575.926 0 382.72836 -0.00029062992 -0.00033024571 + 185360 -6244.9784 -6253.1425 8.1641335 3698.0659 628.33241 -10579.541 0 391.27109 -0.00061939144 -0.00066334546 + 185370 -6244.8772 -6253.2479 8.3707157 3703.2823 625.82858 -10582.359 0 401.17167 -0.00093362236 -0.00098291723 + 185380 -6244.8472 -6253.3428 8.4955892 3706.3942 623.69299 -10583.43 0 407.1563 -0.001173508 -0.001225719 + 185390 -6244.9098 -6253.3898 8.4800338 3706.5535 622.26115 -10582.204 0 406.4108 -0.0012962858 -0.0013475157 + 185400 -6245.0677 -6253.3832 8.3154373 3703.5904 621.69789 -10578.671 0 398.52242 -0.001285368 -0.0013318529 + 185410 -6245.305 -6253.3537 8.0487644 3698.0578 621.96509 -10573.377 0 385.74195 -0.0011533138 -0.0011930451 + 185420 -6245.5897 -6253.3677 7.7780289 3691.1178 622.84298 -10567.329 0 372.76679 -0.00093813205 -0.00097233193 + 185430 -6245.8937 -6253.492 7.5983853 3684.3184 624.00323 -10561.814 0 364.15726 -0.00069543206 -0.00072826679 + 185440 -6246.2153 -6253.7426 7.5273739 3679.2781 625.10537 -10558.126 0 360.75399 -0.00048757535 -0.0005234735 + 185450 -6246.5828 -6254.0635 7.4806864 3677.2946 625.88193 -10557.24 0 358.51647 -0.00036964819 -0.00041004951 + 185460 -6247.0287 -6254.3579 7.3291969 3678.964 626.19302 -10559.515 0 351.25624 -0.00037400496 -0.00041625677 + 185470 -6247.5558 -6254.5498 6.9940429 3683.9586 626.04656 -10564.555 0 335.19378 -0.00049869054 -0.00053808917 + 185480 -6248.1242 -6254.6259 6.5016724 3691.0891 625.58647 -10571.301 0 311.59662 -0.00070617732 -0.00073943455 + 185490 -6248.6721 -6254.6313 5.9591252 3698.651 625.05164 -10578.334 0 285.59472 -0.00093478106 -0.00096211781 + 185500 -6249.1495 -6254.6317 5.4822161 3704.9131 624.71183 -10584.257 0 262.73855 -0.0011181779 -0.0011427591 + 185510 -6249.5388 -6254.6747 5.1358606 3708.5661 624.79377 -10588.035 0 246.13926 -0.0012047483 -0.0012303323 + 185520 -6249.8543 -6254.7694 4.91511 3709.0055 625.41568 -10589.191 0 235.55965 -0.0011704264 -0.0011988868 + 185530 -6250.1253 -6254.8925 4.7672366 3706.4072 626.54494 -10587.845 0 228.47273 -0.0010227673 -0.001052918 + 185540 -6250.3739 -6255.0173 4.6434098 3701.6089 627.98897 -10584.615 0 222.53825 -0.00079697239 -0.00082559395 + 185550 -6250.5988 -6255.1434 4.5446671 3695.8631 629.42586 -10580.432 0 217.80595 -0.00054662321 -0.00057122733 + 185560 -6250.779 -6255.2956 4.5166576 3690.5501 630.47586 -10576.322 0 216.46357 -0.00033241705 -0.00035357263 + 185570 -6250.8954 -6255.487 4.5915968 3686.9057 630.80036 -10573.193 0 220.05508 -0.00021054558 -0.00023161126 + 185580 -6250.9514 -6255.6856 4.7341646 3685.7724 630.20034 -10571.658 0 226.88773 -0.00022062358 -0.00024501349 + 185590 -6250.9739 -6255.8221 4.8482577 3687.3858 628.68248 -10571.89 0 232.35571 -0.00037404544 -0.00040243247 + 185600 -6250.9934 -6255.8353 4.8419573 3691.2587 626.47205 -10573.566 0 232.05376 -0.00064656384 -0.00067638963 + 185610 -6251.0223 -6255.7162 4.6938527 3696.2514 623.96961 -10575.937 0 224.95576 -0.0009800437 -0.001007562 + 185620 -6251.0486 -6255.5162 4.4675827 3700.8606 621.6642 -10578.041 0 214.11163 -0.0012954565 -0.0013184989 + 185630 -6251.0462 -6255.3175 4.2712581 3703.6539 620.024 -10578.995 0 204.70266 -0.0015139659 -0.0015334421 + 185640 -6250.9923 -6255.1895 4.1972181 3703.7054 619.38835 -10578.283 0 201.15424 -0.0015793162 -0.0015987205 + 185650 -6250.8812 -6255.1565 4.2753067 3700.8901 619.88501 -10575.932 0 204.89669 -0.0014745307 -0.0014978866 + 185660 -6250.7297 -6255.1871 4.4574124 3695.9452 621.39293 -10572.525 0 213.62421 -0.0012277709 -0.0012570382 + 185670 -6250.57 -6255.2165 4.6465151 3690.2685 623.56275 -10569.048 0 222.68707 -0.00090476418 -0.00093824367 + 185680 -6250.4295 -6255.1958 4.7663304 3685.5023 625.89621 -10566.594 0 228.4293 -0.00058920835 -0.00062243026 + 185690 -6250.308 -6255.1336 4.8256249 3683.0429 627.87207 -10566.049 0 231.27102 -0.00035777221 -0.00038674412 + 185700 -6250.1763 -6255.0903 4.914007 3683.6556 629.0892 -10567.835 0 235.50679 -0.00025917722 -0.00028354007 + 185710 -6250.001 -6255.1192 5.1181751 3687.3115 629.38237 -10571.813 0 245.29167 -0.00030416139 -0.00032734799 + 185720 -6249.7767 -6255.2061 5.4293887 3693.2395 628.86598 -10577.312 0 260.20677 -0.00046680958 -0.00049284525 + 185730 -6249.5336 -6255.2687 5.7351154 3700.1141 627.88331 -10583.266 0 274.85891 -0.00069333039 -0.00072326828 + 185740 -6249.311 -6255.2217 5.9107353 3706.3287 626.8786 -10588.429 0 283.2756 -0.0009150057 -0.00094650369 + 185750 -6249.1237 -6255.0441 5.9203429 3710.3508 626.24406 -10591.639 0 283.73605 -0.001064813 -0.0010950162 + 185760 -6248.9577 -6254.784 5.8263192 3711.1292 626.2002 -10592.113 0 279.22991 -0.0010964621 -0.0011248204 + 185770 -6248.7934 -6254.51 5.7166115 3708.424 626.74243 -10589.676 0 273.9721 -0.0009999401 -0.0010281664 + 185780 -6248.6268 -6254.2701 5.6433006 3702.8998 627.65607 -10584.826 0 270.45863 -0.00080574618 -0.00083570602 + 185790 -6248.4684 -6254.0903 5.6219092 3695.9307 628.58646 -10578.607 0 269.43343 -0.00057494981 -0.00060700807 + 185800 -6248.3303 -6253.9869 5.6565567 3689.2051 629.1459 -10572.338 0 271.09394 -0.00037939905 -0.000412263 + 185810 -6248.2193 -6253.9703 5.750979 3684.2697 629.03083 -10567.271 0 275.61918 -0.00027964197 -0.00031112145 + 185820 -6248.1324 -6254.0425 5.9101571 3682.1357 628.11586 -10564.294 0 283.24789 -0.00030729666 -0.00033550536 + 185830 -6248.0552 -6254.1984 6.1431476 3683.0474 626.49722 -10563.743 0 294.4141 -0.00045677005 -0.00048156727 + 185840 -6247.9683 -6254.42 6.4516848 3686.4843 624.47519 -10565.379 0 309.20094 -0.00068881569 -0.00071255997 + 185850 -6247.863 -6254.6613 6.7982623 3691.3855 622.48155 -10568.528 0 325.81088 -0.00094429457 -0.00097072488 + 185860 -6247.7545 -6254.8451 7.0905804 3696.4857 620.96874 -10572.3 0 339.8204 -0.0011621003 -0.0011937543 + 185870 -6247.6734 -6254.8944 7.2210318 3700.6271 620.28915 -10575.811 0 346.07236 -0.0012942093 -0.0013305877 + 185880 -6247.6427 -6254.7785 7.1358462 3702.9802 620.60362 -10578.362 0 341.98979 -0.0013142504 -0.0013522804 + 185890 -6247.6637 -6254.5306 6.8669175 3703.1786 621.85243 -10579.562 0 329.10122 -0.0012200065 -0.0012559522 + 185900 -6247.7195 -6254.2278 6.5083131 3701.3686 623.79291 -10579.389 0 311.91488 -0.0010312363 -0.0010624164 + 185910 -6247.7822 -6253.9627 6.1805113 3698.1522 626.07532 -10578.19 0 296.20478 -0.00078383799 -0.00080983716 + 185920 -6247.8196 -6253.8224 6.0027756 3694.4358 628.32178 -10576.58 0 287.68669 -0.00052243823 -0.00054591558 + 185930 -6247.8085 -6253.8561 6.047676 3691.2403 630.19009 -10575.287 0 289.83856 -0.00029389222 -0.00031987378 + 185940 -6247.7554 -6254.0393 6.2839438 3689.5024 631.42089 -10574.963 0 301.16185 -0.00014139539 -0.00017419364 + 185950 -6247.7009 -6254.2754 6.5744694 3689.8487 631.86875 -10575.993 0 315.08546 -9.6487242e-05 -0.00013614843 + 185960 -6247.6921 -6254.4582 6.7660729 3692.3669 631.51687 -10578.342 0 324.26818 -0.00016893074 -0.00021075713 + 185970 -6247.7433 -6254.5466 6.8032343 3696.4866 630.47623 -10581.509 0 326.04916 -0.00033987148 -0.00037811243 + 185980 -6247.8251 -6254.5795 6.7544804 3701.0948 628.97076 -10584.645 0 323.7126 -0.00056477717 -0.00059730062 + 185990 -6247.8937 -6254.6183 6.7245908 3704.8822 627.30355 -10586.804 0 322.28012 -0.00078696005 -0.00081655481 + 186000 -6247.9313 -6254.6761 6.7447963 3706.7619 625.7976 -10587.236 0 323.24848 -0.00095527739 -0.00098664608 + 186010 -6247.9577 -6254.7038 6.7460666 3706.1739 624.71868 -10585.596 0 323.30936 -0.0010377914 -0.0010733081 + 186020 -6248.0095 -6254.6344 6.6249103 3703.192 624.20659 -10582.033 0 317.50287 -0.0010272605 -0.0010650331 + 186030 -6248.1083 -6254.4419 6.3336117 3698.4564 624.24371 -10577.142 0 303.54221 -0.00093909216 -0.00097441257 + 186040 -6248.2424 -6254.1739 5.9315388 3692.9909 624.67053 -10571.835 0 284.27262 -0.00080453117 -0.00083345707 + 186050 -6248.37 -6253.9403 5.5703005 3687.9661 625.23859 -10567.145 0 266.96005 -0.00066221845 -0.00068494188 + 186060 -6248.4455 -6253.859 5.4134649 3684.4683 625.68489 -10564.012 0 259.44361 -0.0005506279 -0.00057215835 + 186070 -6248.4545 -6253.9813 5.52674 3683.3105 625.811 -10563.103 0 264.87239 -0.00050190852 -0.00052883961 + 186080 -6248.4328 -6254.2483 5.8154667 3684.8705 625.54586 -10564.665 0 278.7098 -0.00053540585 -0.00057045308 + 186090 -6248.447 -6254.5283 6.0813513 3688.9424 624.96996 -10568.441 0 291.45248 -0.00064957503 -0.00068837164 + 186100 -6248.5412 -6254.7201 6.1788318 3694.6583 624.29016 -10573.668 0 296.12429 -0.0008155478 -0.0008494392 + 186110 -6248.6951 -6254.8308 6.1357154 3700.6152 623.77687 -10579.223 0 294.05791 -0.000980036 -0.0010033598 + 186120 -6248.8401 -6254.9487 6.108637 3705.2758 623.68794 -10583.912 0 292.76016 -0.0010821873 -0.0010975084 + 186130 -6248.9241 -6255.1325 6.2084001 3707.5061 624.19829 -10586.837 0 297.54137 -0.0010782492 -0.0010944039 + 186140 -6248.9612 -6255.3345 6.3733223 3706.9693 625.34336 -10587.647 0 305.44536 -0.00096004972 -0.00098480761 + 186150 -6249.0189 -6255.4337 6.4147915 3704.174 626.98707 -10586.595 0 307.4328 -0.00075715916 -0.00079122409 + 186160 -6249.1594 -6255.3402 6.1808149 3700.1997 628.83219 -10584.372 0 296.21933 -0.00052378288 -0.00056093703 + 186170 -6249.3894 -6255.0722 5.6827352 3696.2847 630.48435 -10581.841 0 272.34856 -0.00031938484 -0.00035177995 + 186180 -6249.66 -6254.7468 5.0868416 3693.4609 631.55634 -10579.764 0 243.78999 -0.00019213258 -0.00021593171 + 186190 -6249.9058 -6254.5049 4.5991039 3692.3335 631.77705 -10578.615 0 220.41487 -0.00016939407 -0.0001867449 + 186200 -6250.0887 -6254.4309 4.3422115 3693.0149 631.06702 -10578.513 0 208.10314 -0.00025488629 -0.00027160204 + 186210 -6250.2141 -6254.5175 4.3033911 3695.1746 629.55744 -10579.249 0 206.24265 -0.00043031793 -0.00045147163 + 186220 -6250.3185 -6254.6907 4.3721661 3698.1497 627.55044 -10580.391 0 209.53873 -0.00065976362 -0.00068632394 + 186230 -6250.4386 -6254.8737 4.4351743 3701.085 625.4361 -10581.395 0 212.55844 -0.00089609579 -0.00092484676 + 186240 -6250.5829 -6255.0434 4.4604835 3703.1004 623.59479 -10581.739 0 213.7714 -0.0010897255 -0.0011163788 + 186250 -6250.7286 -6255.2343 4.5057146 3703.5024 622.31578 -10581.053 0 215.93913 -0.0011996469 -0.0012225071 + 186260 -6250.8441 -6255.4859 4.6417397 3702.0099 621.75205 -10579.248 0 222.45821 -0.0012047269 -0.0012257162 + 186270 -6250.9189 -6255.7803 4.861375 3698.8987 621.9121 -10576.591 0 232.98437 -0.0011107787 -0.0011330465 + 186280 -6250.9706 -6256.033 5.062375 3694.9631 622.67695 -10573.673 0 242.61742 -0.00094911348 -0.00097377238 + 186290 -6251.0243 -6256.1475 5.1231981 3691.2803 623.83212 -10571.26 0 245.5324 -0.00076623772 -0.00079150938 + 186300 -6251.0853 -6256.0813 4.9960014 3688.8799 625.11288 -10570.074 0 239.43642 -0.00060940967 -0.00063273561 + 186310 -6251.1356 -6255.8648 4.7292034 3688.4633 626.26191 -10570.59 0 226.64996 -0.00051428157 -0.00053483962 + 186320 -6251.153 -6255.5679 4.4149744 3690.2471 627.08928 -10572.904 0 211.59034 -0.00049773147 -0.0005168276 + 186330 -6251.1292 -6255.26 4.1308197 3693.9273 627.51646 -10576.704 0 197.97206 -0.00055535597 -0.00057485001 + 186340 -6251.0704 -6254.9963 3.9258825 3698.7433 627.58989 -10581.33 0 188.15032 -0.00066274602 -0.00068348733 + 186350 -6250.9853 -6254.8233 3.8379884 3703.6388 627.45945 -10585.922 0 183.93794 -0.00078104994 -0.00080259396 + 186360 -6250.8737 -6254.7791 3.9053599 3707.5036 627.32718 -10589.61 0 187.16676 -0.00086690839 -0.00088827605 + 186370 -6250.7234 -6254.8836 4.1602021 3709.4435 627.37758 -10591.705 0 199.38023 -0.00088474573 -0.00090542183 + 186380 -6250.5139 -6255.1226 4.608705 3709.0071 627.70842 -10591.838 0 220.875 -0.00081811352 -0.00083859306 + 186390 -6250.2289 -6255.434 5.205143 3706.3147 628.28532 -10590.034 0 249.45966 -0.0006767829 -0.00069818686 + 186400 -6249.8695 -6255.7092 5.8396784 3702.0509 628.94008 -10586.7 0 279.87016 -0.00049657717 -0.00051950249 + 186410 -6249.4579 -6255.8263 6.3683558 3697.297 629.41843 -10582.542 0 305.20734 -0.0003301358 -0.00035391398 + 186420 -6249.0217 -6255.7071 6.6853402 3693.2343 629.46374 -10578.405 0 320.39901 -0.00023037219 -0.0002539812 + 186430 -6248.5748 -6255.3583 6.7834818 3690.8139 628.90916 -10575.081 0 325.10251 -0.00023301417 -0.00025714763 + 186440 -6248.1178 -6254.8562 6.7384126 3690.5156 627.74622 -10573.118 0 322.94254 -0.00034585275 -0.0003736497 + 186450 -6247.662 -6254.2853 6.6233031 3692.2591 626.14579 -10572.69 0 317.42585 -0.00054779217 -0.00058233922 + 186460 -6247.2459 -6253.6947 6.4488135 3695.4407 624.42211 -10573.558 0 309.06333 -0.0007945765 -0.00083490306 + 186470 -6246.9128 -6253.1218 6.2090287 3699.0505 622.95057 -10575.123 0 297.57149 -0.0010268622 -0.001066956 + 186480 -6246.6643 -6252.6516 5.987244 3701.8847 622.06836 -10576.605 0 286.94233 -0.0011807803 -0.0012139876 + 186490 -6246.4412 -6252.4216 5.9804542 3702.8933 621.99179 -10577.307 0 286.61692 -0.0012040222 -0.0012293935 + 186500 -6246.1633 -6252.5361 6.372794 3701.5979 622.76893 -10576.903 0 305.42005 -0.0010758193 -0.0011000072 + 186510 -6245.8005 -6252.9601 7.159621 3698.3734 624.26634 -10575.6 0 343.12921 -0.00082111364 -0.00085323886 + 186520 -6245.408 -6253.508 8.0999695 3694.3802 626.18437 -10574.073 0 388.19599 -0.00050749568 -0.00055130574 + 186530 -6245.0912 -6253.9555 8.8642541 3691.1254 628.10983 -10573.191 0 424.82479 -0.00022218104 -0.00027264648 + 186540 -6244.9262 -6254.1825 9.2563572 3689.8665 629.6179 -10573.667 0 443.61658 -3.9311732e-05 -8.6654864e-05 + 186550 -6244.9088 -6254.2283 9.319576 3691.1609 630.40592 -10575.795 0 446.64637 5.6570017e-06 -3.1764395e-05 + 186560 -6244.9736 -6254.2247 9.2510571 3694.7416 630.40307 -10579.369 0 443.36256 -7.6936259e-05 -0.00010558882 + 186570 -6245.0572 -6254.2715 9.2142547 3699.7014 629.79526 -10583.768 0 441.59879 -0.00024219585 -0.00026985784 + 186580 -6245.1502 -6254.3491 9.1988461 3704.8413 628.9469 -10588.137 0 440.86032 -0.00043154309 -0.0004663033 + 186590 -6245.2998 -6254.3268 9.0270599 3709.0166 628.25369 -10591.597 0 432.62736 -0.00059249276 -0.0006360982 + 186600 -6245.5598 -6254.0693 8.5095305 3711.3647 627.99081 -10593.425 0 407.82445 -0.00068980668 -0.00073583605 + 186610 -6245.9275 -6253.5701 7.642623 3711.4009 628.21817 -10593.189 0 366.27738 -0.00070737355 -0.00074624689 + 186620 -6246.3265 -6253.0041 6.6776269 3709.061 628.77853 -10590.844 0 320.02935 -0.00064652734 -0.00067361831 + 186630 -6246.6575 -6252.6366 5.9790683 3704.7593 629.38095 -10586.777 0 286.5505 -0.00052606015 -0.00054584464 + 186640 -6246.8732 -6252.6507 5.777482 3699.4146 629.72287 -10581.788 0 276.88936 -0.00038238189 -0.00040473124 + 186650 -6247.0111 -6253.0317 6.0205787 3694.3138 629.59309 -10576.939 0 288.53991 -0.00026368574 -0.00029548402 + 186660 -6247.1605 -6253.5985 6.4379916 3690.7538 628.92059 -10573.273 0 308.54468 -0.00021545281 -0.00025489481 + 186670 -6247.3916 -6254.143 6.7513454 3689.5928 627.76965 -10571.505 0 323.56235 -0.00026283862 -0.00030119969 + 186680 -6247.7047 -6254.5561 6.8514201 3690.9527 626.30486 -10571.814 0 328.35849 -0.00040011369 -0.00042913368 + 186690 -6248.0351 -6254.8515 6.8164598 3694.2325 624.74974 -10573.834 0 326.683 -0.00059352326 -0.00061212307 + 186700 -6248.3065 -6255.0972 6.7907883 3698.3936 623.35019 -10576.841 0 325.45268 -0.00079519733 -0.00081051437 + 186710 -6248.4856 -6255.3246 6.8389383 3702.3402 622.34411 -10580.009 0 327.7603 -0.0009597573 -0.00098221482 + 186720 -6248.6027 -6255.4832 6.8804915 3705.2172 621.93394 -10582.634 0 329.75176 -0.0010556524 -0.0010917246 + 186730 -6248.7271 -6255.4691 6.7420085 3706.5405 622.25746 -10584.267 0 323.11488 -0.0010679158 -0.0011153611 + 186740 -6248.9157 -6255.2066 6.2909798 3706.1759 623.35449 -10584.737 0 301.49905 -0.00099438242 -0.0010431596 + 186750 -6249.1674 -6254.7338 5.5663746 3704.2575 625.13537 -10584.127 0 266.77191 -0.00084092239 -0.00087963976 + 186760 -6249.4166 -6254.2252 4.8086103 3701.1457 627.3668 -10582.738 0 230.45559 -0.00062118205 -0.00064514106 + 186770 -6249.5733 -6253.9143 4.3409493 3697.4681 629.69274 -10581.075 0 208.04265 -0.00036206403 -0.00037705884 + 186780 -6249.5875 -6253.9491 4.3615947 3694.1669 631.69618 -10579.812 0 209.03209 -0.00010952724 -0.00012784959 + 186790 -6249.4892 -6254.2906 4.8014479 3692.3855 632.98794 -10579.664 0 230.11233 7.478261e-05 4.365415e-05 + 186800 -6249.3714 -6254.7473 5.3759085 3693.1013 633.29741 -10581.146 0 257.6437 0.00013145256 8.8055561e-05 + 186810 -6249.3236 -6255.1188 5.7952543 3696.6396 632.54224 -10584.301 0 277.7411 2.9481238e-05 -1.6465605e-05 + 186820 -6249.3683 -6255.3225 5.9542057 3702.3703 630.85983 -10588.553 0 285.35895 -0.00021486382 -0.00025223917 + 186830 -6249.4535 -6255.4077 5.954172 3708.8079 628.58846 -10592.804 0 285.35733 -0.00053920755 -0.00056356242 + 186840 -6249.5002 -6255.4713 5.9710856 3714.0863 626.19685 -10595.754 0 286.16792 -0.00085618157 -0.00087221378 + 186850 -6249.4629 -6255.5559 6.0929872 3716.5834 624.17934 -10596.319 0 292.01013 -0.0010832088 -0.0011006817 + 186860 -6249.3598 -6255.6023 6.2425034 3715.4384 622.94493 -10593.986 0 299.17579 -0.001167441 -0.0011939599 + 186870 -6249.2573 -6255.4853 6.2279806 3710.7854 622.72396 -10588.995 0 298.47977 -0.0010974957 -0.0011330926 + 186880 -6249.2203 -6255.1115 5.891204 3703.6591 623.5068 -10582.277 0 282.33955 -0.00090101927 -0.00093824475 + 186890 -6249.2606 -6254.5165 5.2559307 3695.6591 625.02916 -10575.205 0 251.89369 -0.00063281299 -0.00066250661 + 186900 -6249.3236 -6253.8858 4.5621981 3688.5405 626.82322 -10569.25 0 218.64613 -0.00036015504 -0.00037881049 + 186910 -6249.3274 -6253.4683 4.1408719 3683.8764 628.34107 -10565.686 0 198.45382 -0.00014959713 -0.00016251847 + 186920 -6249.2217 -6253.4317 4.2100203 3682.8142 629.12302 -10565.369 0 201.76779 -5.5255022e-05 -7.274052e-05 + 186930 -6249.023 -6253.7669 4.7439321 3685.8593 628.95186 -10568.578 0 227.35584 -0.00010672174 -0.00013617892 + 186940 -6248.8013 -6254.3081 5.5067827 3692.6583 627.9323 -10574.899 0 263.91592 -0.00029738678 -0.00033760296 + 186950 -6248.6295 -6254.8438 6.2143528 3701.893 626.46233 -10583.199 0 297.82665 -0.00057858691 -0.00062057155 + 186960 -6248.5316 -6255.2315 6.6999178 3711.4516 625.10423 -10591.787 0 321.09765 -0.00086663782 -0.00090027503 + 186970 -6248.4686 -6255.4417 6.9730294 3718.9402 624.40047 -10598.782 0 334.1867 -0.0010654034 -0.0010868803 + 186980 -6248.3709 -6255.5203 7.149379 3722.3982 624.69946 -10602.618 0 342.63836 -0.0010985264 -0.0011132686 + 186990 -6248.1933 -6255.5127 7.3194357 3720.9454 626.04965 -10602.508 0 350.78843 -0.00093867679 -0.00095792269 + 187000 -6247.9541 -6255.4054 7.4513225 3715.0973 628.19016 -10598.693 0 357.10918 -0.00062094517 -0.00065418927 + 187010 -6247.7311 -6255.1276 7.396454 3706.6052 630.6289 -10592.362 0 354.47958 -0.00023335928 -0.00028145311 + 187020 -6247.6105 -6254.622 7.011502 3697.8582 632.77347 -10585.254 0 336.03052 0.00011340324 5.9508046e-05 + 187030 -6247.6189 -6253.9406 6.321717 3691.0835 634.07505 -10579.099 0 302.97215 0.00032484338 0.00027793438 + 187040 -6247.6962 -6253.2736 5.5773614 3687.6989 634.15754 -10575.13 0 267.29845 0.00035178055 0.00031901618 + 187050 -6247.7388 -6252.857 5.118221 3688.0781 632.91281 -10573.848 0 245.29387 0.00019744926 0.00017550834 + 187060 -6247.6748 -6252.8216 5.1468053 3691.7032 630.54002 -10575.065 0 246.66379 -9.4488883e-05 -0.00011576799 + 187070 -6247.5061 -6253.1177 5.6115746 3697.4681 627.50857 -10578.094 0 268.93814 -0.00045769628 -0.00048703172 + 187080 -6247.288 -6253.5769 6.288901 3703.9413 624.44516 -10581.963 0 301.39942 -0.00081699952 -0.00085616009 + 187090 -6247.078 -6254.0355 6.9574913 3709.5934 621.97746 -10585.606 0 333.44202 -0.0010990222 -0.0011435749 + 187100 -6246.9032 -6254.4047 7.5015393 3713.0776 620.58315 -10588.065 0 359.51585 -0.0012444275 -0.0012880205 + 187110 -6246.7633 -6254.6606 7.8973003 3713.55 620.48571 -10588.696 0 378.48294 -0.0012215862 -0.0012594082 + 187120 -6246.6455 -6254.8082 8.1626572 3710.9049 621.61949 -10587.333 0 391.20033 -0.001035711 -0.0010658871 + 187130 -6246.5308 -6254.8668 8.336003 3705.8215 623.66891 -10584.357 0 399.50804 -0.00072838462 -0.00075256617 + 187140 -6246.3996 -6254.8582 8.4585448 3699.6244 626.16909 -10580.652 0 405.38093 -0.0003680063 -0.00039126024 + 187150 -6246.2513 -6254.7734 8.5221738 3694.0016 628.63365 -10577.409 0 408.43038 -3.4918104e-05 -6.3404456e-05 + 187160 -6246.1213 -6254.5529 8.4316867 3690.5978 630.66268 -10575.813 0 404.09374 0.00019632626 0.00015959764 + 187170 -6246.0649 -6254.1256 8.0606757 3690.5313 631.99887 -10576.656 0 386.31281 0.00027582106 0.00023371284 + 187180 -6246.1138 -6253.492 7.3782216 3693.9971 632.53722 -10580.026 0 353.60578 0.00019341354 0.00015296294 + 187190 -6246.2462 -6252.7748 6.5286534 3700.1623 632.31598 -10585.253 0 312.8897 -1.7129086e-05 -4.9655012e-05 + 187200 -6246.399 -6252.1905 5.7915358 3707.4231 631.50357 -10591.117 0 277.56289 -0.00028830564 -0.00031184496 + 187210 -6246.5052 -6251.9606 5.4554297 3713.906 630.37195 -10596.239 0 261.4548 -0.00053987934 -0.00055975242 + 187220 -6246.5314 -6252.2061 5.6746911 3718.0163 629.2441 -10599.466 0 271.96304 -0.00070316188 -0.00072828756 + 187230 -6246.5045 -6252.8687 6.3641446 3718.8657 628.41826 -10600.153 0 305.00552 -0.00074085564 -0.00077783137 + 187240 -6246.5128 -6253.7115 7.1987257 3716.4569 628.08362 -10598.252 0 345.00333 -0.00065576083 -0.00070285226 + 187250 -6246.6592 -6254.4379 7.7786754 3711.5676 628.25069 -10594.256 0 372.79777 -0.00048463711 -0.00053094207 + 187260 -6246.9778 -6254.8763 7.8984437 3705.4094 628.729 -10589.015 0 378.53774 -0.0002807509 -0.00031374065 + 187270 -6247.3893 -6255.082 7.692639 3699.272 629.18404 -10583.538 0 368.67443 -9.6420196e-05 -0.00011321536 + 187280 -6247.7641 -6255.239 7.4748676 3694.3376 629.27017 -10578.847 0 358.2376 2.4503125e-05 1.2917527e-05 + 187290 -6248.0448 -6255.4417 7.3969026 3691.6217 628.77967 -10575.843 0 354.50108 4.6746512e-05 2.4125892e-05 + 187300 -6248.2968 -6255.5803 7.2834665 3691.8215 627.72609 -10575.128 0 349.06458 -5.1900627e-05 -9.2833932e-05 + 187310 -6248.6315 -6255.4509 6.8193596 3695.0041 626.32336 -10576.778 0 326.82198 -0.00026724131 -0.00031830079 + 187320 -6249.0854 -6254.9724 5.8869882 3700.3697 624.89188 -10580.234 0 282.1375 -0.00055725559 -0.00060164588 + 187330 -6249.5787 -6254.3017 4.7229406 3706.3716 623.75509 -10584.428 0 226.34981 -0.00084712027 -0.00087288933 + 187340 -6249.9794 -6253.7557 3.7763759 3711.226 623.16915 -10588.151 0 180.98512 -0.0010529816 -0.0010618503 + 187350 -6250.1991 -6253.6141 3.4150567 3713.567 623.28995 -10590.471 0 163.66868 -0.0011127796 -0.0011184154 + 187360 -6250.2472 -6253.943 3.6958442 3712.9346 624.15992 -10591.038 0 177.12559 -0.0010088758 -0.0010267381 + 187370 -6250.2233 -6254.5573 4.3339802 3709.8813 625.69859 -10590.137 0 207.70865 -0.00077278344 -0.00080876575 + 187380 -6250.2574 -6255.1468 4.8894074 3705.6717 627.695 -10588.513 0 234.32784 -0.00047066203 -0.00051645823 + 187390 -6250.4221 -6255.4877 5.0656535 3701.7377 629.81591 -10587.041 0 242.77454 -0.00017700726 -0.00021617794 + 187400 -6250.6743 -6255.5872 4.9128893 3699.1764 631.65147 -10586.415 0 235.45322 4.935311e-05 2.8371557e-05 + 187410 -6250.8853 -6255.6402 4.754873 3698.5365 632.80854 -10586.985 0 227.88019 0.00017458388 0.00016880254 + 187420 -6250.946 -6255.8242 4.8782175 3699.9111 633.02961 -10588.765 0 233.79155 0.00018449756 0.00017865679 + 187430 -6250.8582 -6256.1146 5.2564509 3703.1085 632.28537 -10591.509 0 251.91862 7.7274352e-05 5.6503816e-05 + 187440 -6250.731 -6256.2957 5.5646265 3707.6617 630.79168 -10594.749 0 266.68812 -0.00013403043 -0.00017217635 + 187450 -6250.6872 -6256.1513 5.464024 3712.7051 628.94041 -10597.797 0 261.86669 -0.00041184642 -0.00045608421 + 187460 -6250.7639 -6255.6551 4.8911848 3716.9665 627.17648 -10599.798 0 234.41302 -0.00069155488 -0.00072646399 + 187470 -6250.8916 -6255.0037 4.1120992 3719.0577 625.87215 -10599.934 0 197.07487 -0.0008963256 -0.00091415121 + 187480 -6250.9555 -6254.4874 3.5318118 3717.9853 625.23903 -10597.712 0 169.26424 -0.00096487155 -0.0009705342 + 187490 -6250.8749 -6254.3094 3.4344915 3713.6186 625.29559 -10593.224 0 164.6001 -0.00087702418 -0.00088382134 + 187500 -6250.6443 -6254.4777 3.8334522 3706.8633 625.8868 -10587.228 0 183.72054 -0.00066344162 -0.00068355602 + 187510 -6250.3248 -6254.8227 4.4979311 3699.4375 626.74156 -10581.002 0 215.5661 -0.00039512275 -0.00043149802 + 187520 -6249.9999 -6255.114 5.1140749 3693.3316 627.54898 -10575.995 0 245.09516 -0.00015783014 -0.00020230561 + 187530 -6249.7195 -6255.2014 5.4818354 3690.1627 628.03614 -10573.4 0 262.72031 -2.2014968e-05 -6.0798986e-05 + 187540 -6249.4587 -6255.096 5.6372647 3690.6782 628.03438 -10573.809 0 270.16935 -2.0012427e-05 -4.3339647e-05 + 187550 -6249.1241 -6254.9408 5.8167474 3694.6073 627.52693 -10577.075 0 278.77117 -0.00013921454 -0.00014899959 + 187560 -6248.6162 -6254.8796 6.2634553 3700.8868 626.67155 -10582.438 0 300.17992 -0.00033271345 -0.00034230998 + 187570 -6247.9167 -6254.9164 6.9997102 3708.0894 625.78443 -10588.79 0 335.46539 -0.00053998582 -0.00056505371 + 187580 -6247.1324 -6254.8881 7.7557528 3714.7906 625.27052 -10594.949 0 371.69919 -0.00070527436 -0.0007519134 + 187590 -6246.4418 -6254.5902 8.1483743 3719.7455 625.50425 -10599.84 0 390.51581 -0.00078545282 -0.00084510838 + 187600 -6245.9721 -6253.9516 7.9795678 3721.9705 626.69687 -10602.619 0 382.42566 -0.00075012771 -0.00080581691 + 187610 -6245.7126 -6253.1117 7.3991116 3720.8905 628.8022 -10602.804 0 354.60694 -0.0005839426 -0.00062276423 + 187620 -6245.5401 -6252.3444 6.8043713 3716.5767 631.49726 -10600.418 0 326.10365 -0.00029621647 -0.00031832797 + 187630 -6245.3177 -6251.8998 6.5820848 3709.9315 634.24403 -10596.075 0 315.45044 6.826148e-05 5.0179304e-05 + 187640 -6244.9885 -6251.8707 6.8821869 3702.6379 636.41736 -10590.926 0 329.83301 0.00042882948 0.00039847914 + 187650 -6244.6091 -6252.1561 7.5470293 3696.7755 637.46833 -10586.4 0 361.69599 0.0006862024 0.00063502331 + 187660 -6244.3111 -6252.541 8.2298231 3694.1577 637.07567 -10583.774 0 394.4193 0.00075525156 0.00068883652 + 187670 -6244.2058 -6252.8482 8.6423707 3695.618 635.23375 -10583.7 0 414.1909 0.00060079461 0.00053529718 + 187680 -6244.2973 -6253.0591 8.7617666 3700.6047 632.25012 -10585.914 0 419.91302 0.00025727161 0.00020756207 + 187690 -6244.4822 -6253.2963 8.8140512 3707.3601 628.66713 -10589.324 0 422.41879 -0.00018168318 -0.00021304325 + 187700 -6244.6427 -6253.6763 9.0336377 3713.6317 625.14398 -10592.452 0 432.9426 -0.00059989192 -0.00062369733 + 187710 -6244.7456 -6254.1652 9.4196368 3717.5295 622.32561 -10594.02 0 451.44185 -0.00090060519 -0.00093162145 + 187720 -6244.859 -6254.5761 9.7170758 3718.0938 620.71162 -10593.381 0 465.69679 -0.0010321806 -0.0010778942 + 187730 -6245.0783 -6254.7021 9.6238384 3715.4045 620.54608 -10590.653 0 461.22833 -0.00099065866 -0.0010471036 + 187740 -6245.4393 -6254.4589 9.0196298 3710.3541 621.76257 -10586.576 0 432.27127 -0.00080751821 -0.00086372612 + 187750 -6245.8922 -6253.9292 8.0369915 3704.2947 624.01006 -10582.234 0 385.17773 -0.00053452547 -0.00058044049 + 187760 -6246.3401 -6253.31 6.9698433 3698.695 626.75404 -10578.759 0 334.034 -0.00023170193 -0.00026389117 + 187770 -6246.6943 -6252.8212 6.1268619 3694.8625 629.41787 -10577.102 0 293.6336 4.1777406e-05 1.8842919e-05 + 187780 -6246.9114 -6252.6208 5.7093617 3693.7462 631.52178 -10577.889 0 273.62465 0.00023542586 0.00021215297 + 187790 -6247.0075 -6252.7439 5.7363575 3695.8059 632.78395 -10581.334 0 274.91844 0.00031470612 0.00028196486 + 187800 -6247.0507 -6253.0932 6.0424762 3700.9068 633.16008 -10587.16 0 289.58937 0.0002680513 0.00022300438 + 187810 -6247.1261 -6253.5029 6.3768222 3708.2318 632.81562 -10594.55 0 305.6131 0.00011297415 6.126463e-05 + 187820 -6247.2834 -6253.8438 6.5604171 3716.304 632.04793 -10602.196 0 314.412 -0.00010265802 -0.00015062069 + 187830 -6247.5058 -6254.0921 6.5862437 3723.252 631.19124 -10608.535 0 315.64975 -0.00030987582 -0.00034619343 + 187840 -6247.7264 -6254.3097 6.5832795 3727.3232 630.53054 -10612.163 0 315.50769 -0.00043963133 -0.0004643271 + 187850 -6247.8789 -6254.5652 6.6862972 3727.4636 630.23472 -10612.263 0 320.44488 -0.00044835174 -0.0004691766 + 187860 -6247.9431 -6254.8643 6.9212033 3723.6966 630.31577 -10608.877 0 331.7029 -0.00033588362 -0.00036317669 + 187870 -6247.9564 -6255.1347 7.1782575 3717.1266 630.62709 -10602.888 0 344.02238 -0.00014660329 -0.00018681426 + 187880 -6247.9911 -6255.2646 7.2735228 3709.566 630.91119 -10595.742 0 348.58802 4.739838e-05 -4.2205457e-06 + 187890 -6248.1094 -6255.1684 7.0589464 3702.9351 630.88834 -10588.992 0 338.30432 0.00017392152 0.00011978126 + 187900 -6248.3216 -6254.8488 6.5272036 3698.6628 630.35619 -10583.868 0 312.82022 0.0001872295 0.0001415762 + 187910 -6248.5719 -6254.4203 5.8484539 3697.3184 629.26419 -10581.003 0 280.29073 8.2320491e-05 5.1069139e-05 + 187920 -6248.769 -6254.0629 5.2939889 3698.6072 627.73917 -10580.409 0 253.71765 -0.00010846982 -0.0001289509 + 187930 -6248.8449 -6253.9171 5.0721825 3701.6809 626.05749 -10581.656 0 243.08744 -0.00033293698 -0.00035375392 + 187940 -6248.8042 -6253.9908 5.186525 3705.5493 624.57331 -10584.113 0 248.56738 -0.00053978067 -0.00057163414 + 187950 -6248.7233 -6254.1579 5.4345566 3709.3563 623.62313 -10587.137 0 260.45444 -0.00069154327 -0.00073665672 + 187960 -6248.6966 -6254.2598 5.563212 3712.4454 623.43682 -10590.142 0 266.62033 -0.00076580191 -0.00081601915 + 187970 -6248.7665 -6254.2293 5.4627732 3714.3213 624.08538 -10592.636 0 261.80674 -0.00075004186 -0.00079279437 + 187980 -6248.8918 -6254.1378 5.2460381 3714.6702 625.47881 -10594.287 0 251.41958 -0.00063932126 -0.00066696917 + 187990 -6248.9782 -6254.1328 5.1545705 3713.4894 627.40232 -10595.025 0 247.03594 -0.00044106853 -0.0004566449 + 188000 -6248.9468 -6254.3138 5.3669935 3711.2316 629.56723 -10595.113 0 257.21644 -0.00018295448 -0.00019818745 + 188010 -6248.7923 -6254.6403 5.8480251 3708.8027 631.66014 -10595.103 0 280.27017 8.4971831e-05 5.8025139e-05 + 188020 -6248.5929 -6254.9395 6.3466105 3707.3168 633.38677 -10595.643 0 304.16519 0.00030044238 0.00025844344 + 188030 -6248.4601 -6255.0192 6.5590952 3707.6545 634.51236 -10597.186 0 314.34865 0.00041023048 0.00036170182 + 188040 -6248.4552 -6254.8138 6.3586069 3710.0327 634.89692 -10599.743 0 304.74012 0.00039251577 0.00035203159 + 188050 -6248.5346 -6254.4531 5.9184839 3713.8369 634.51927 -10602.809 0 283.64696 0.00026671158 0.00024367927 + 188060 -6248.5765 -6254.1853 5.6088791 3717.8576 633.48428 -10605.527 0 268.80896 8.3277939e-05 7.3855433e-05 + 188070 -6248.4703 -6254.1921 5.7217836 3720.8183 632.00926 -10607.02 0 274.21998 -0.00010076928 -0.00011167398 + 188080 -6248.2018 -6254.4389 6.2370721 3721.8867 630.3854 -10606.711 0 298.91549 -0.00024512675 -0.00027272196 + 188090 -6247.8637 -6254.688 6.8243184 3720.8792 628.91362 -10604.481 0 327.05963 -0.0003347301 -0.00038264378 + 188100 -6247.585 -6254.6727 7.0877513 3718.1105 627.82783 -10600.611 0 339.68481 -0.00037190223 -0.00042915599 + 188110 -6247.4277 -6254.2945 6.8667998 3714.0924 627.23331 -10595.62 0 329.09558 -0.00036234202 -0.00041139037 + 188120 -6247.334 -6253.699 6.3650396 3709.3392 627.08635 -10590.125 0 305.04841 -0.00030798157 -0.00033766619 + 188130 -6247.1585 -6253.1792 6.0207011 3704.3952 627.22367 -10584.798 0 288.54578 -0.00021208998 -0.00022597233 + 188140 -6246.7559 -6252.9795 6.2235463 3699.9882 627.42758 -10580.395 0 298.26726 -9.0795096e-05 -0.00010517416 + 188150 -6246.063 -6253.1319 7.0688537 3697.0974 627.50207 -10577.731 0 338.77913 2.0491553e-05 -1.2622901e-05 + 188160 -6245.144 -6253.4319 8.2879209 3696.7586 627.33842 -10577.529 0 397.20367 7.4401136e-05 1.5172635e-05 + 188170 -6244.1766 -6253.5744 9.3977472 3699.5988 626.9573 -10580.13 0 450.39277 3.3578911e-05 -4.180881e-05 + 188180 -6243.3521 -6253.3655 10.013382 3705.3174 626.51813 -10585.201 0 479.89744 -0.00010156476 -0.00017149286 + 188190 -6242.7361 -6252.8638 10.127732 3712.4881 626.28813 -10591.64 0 485.37775 -0.00027780136 -0.0003248398 + 188200 -6242.2274 -6252.3294 10.10202 3718.963 626.57366 -10597.866 0 484.14548 -0.00040436403 -0.00042963451 + 188210 -6241.6798 -6252.0024 10.322671 3722.7775 627.62752 -10602.407 0 494.72031 -0.00039661203 -0.00041967425 + 188220 -6241.0734 -6251.8927 10.819357 3723.0499 629.54775 -10604.49 0 518.52431 -0.00022219461 -0.00026503419 + 188230 -6240.5635 -6251.7825 11.218979 3720.3101 632.18778 -10604.28 0 537.67644 8.0860008e-05 1.2478137e-05 + 188240 -6240.3502 -6251.4545 11.10425 3716.0761 635.12064 -10602.651 0 532.17797 0.00042493028 0.00034618151 + 188250 -6240.4967 -6250.9297 10.432971 3712.0339 637.712 -10600.676 0 500.00653 0.00071528272 0.00064918402 + 188260 -6240.8801 -6250.4846 9.604478 3709.3751 639.31045 -10599.17 0 460.30048 0.00088511003 0.00084414493 + 188270 -6241.3071 -6250.4407 9.1335815 3708.5846 639.47886 -10598.504 0 437.73247 0.00090741832 0.00088550444 + 188280 -6241.666 -6250.9239 9.2579068 3709.5738 638.15237 -10598.65 0 443.69084 0.00078904638 0.00076819112 + 188290 -6241.9919 -6251.7778 9.7859725 3711.8964 635.65284 -10599.327 0 468.99871 0.00055972889 0.00052399238 + 188300 -6242.4202 -6252.6647 10.244487 3714.8897 632.56746 -10600.122 0 490.97328 0.00026386331 0.000210205 + 188310 -6243.0707 -6253.2648 10.194114 3717.7454 629.55175 -10600.562 0 488.55915 -4.4502868e-05 -0.00010506674 + 188320 -6243.9396 -6253.4543 9.5146849 3719.5955 627.13537 -10600.185 0 455.99709 -0.00030722037 -0.00035829388 + 188330 -6244.8851 -6253.3622 8.4771295 3719.691 625.60042 -10598.654 0 406.27161 -0.00047270716 -0.00050477243 + 188340 -6245.7211 -6253.2666 7.5455144 3717.68 624.96727 -10595.914 0 361.62339 -0.00051184806 -0.0005290207 + 188350 -6246.338 -6253.3937 7.0556554 3713.8686 625.06946 -10592.332 0 338.14659 -0.00043139386 -0.00044771581 + 188360 -6246.753 -6253.7661 7.0131187 3709.2657 625.66024 -10588.692 0 336.108 -0.00027444351 -0.00030310308 + 188370 -6247.0706 -6254.211 7.1403582 3705.2871 626.49887 -10585.997 0 342.20603 -0.00010435055 -0.0001483773 + 188380 -6247.3997 -6254.5039 7.1042244 3703.219 627.39851 -10585.121 0 340.4743 2.1042516e-05 -2.9947193e-05 + 188390 -6247.7827 -6254.524 6.7412803 3703.7174 628.24404 -10586.485 0 323.07998 7.1649629e-05 2.683618e-05 + 188400 -6248.1808 -6254.3158 6.1350229 3706.6012 628.99178 -10589.909 0 294.02472 5.2922447e-05 2.3042354e-05 + 188410 -6248.5113 -6254.0399 5.5286039 3711.0051 629.65672 -10594.702 0 264.96172 -2.9260036e-06 -1.8885345e-05 + 188420 -6248.7067 -6253.8665 5.1598124 3715.7724 630.28851 -10599.927 0 247.28716 -5.5630511e-05 -6.7348481e-05 + 188430 -6248.7574 -6253.8788 5.1213976 3719.8787 630.94048 -10604.698 0 245.44611 -7.5504196e-05 -9.4966647e-05 + 188440 -6248.7205 -6254.0348 5.3142979 3722.7079 631.63913 -10608.382 0 254.69097 -5.3787632e-05 -8.7487559e-05 + 188450 -6248.6905 -6254.2097 5.5192564 3724.0879 632.36246 -10610.66 0 264.51374 -1.0390959e-06 -4.5475219e-05 + 188460 -6248.7409 -6254.2972 5.5562803 3724.1256 633.03402 -10611.457 0 266.28813 6.409161e-05 2.0188547e-05 + 188470 -6248.8726 -6254.2998 5.4271849 3722.9978 633.5365 -10610.834 0 260.10115 0.00012743274 9.495008e-05 + 188480 -6249.0122 -6254.3274 5.3151566 3720.874 633.7443 -10608.946 0 254.73213 0.00018368276 0.00016490096 + 188490 -6249.0706 -6254.4899 5.4193176 3718.0194 633.56486 -10606.074 0 259.72411 0.00022998843 0.0002170468 + 188500 -6249.0157 -6254.7776 5.7618146 3714.9321 632.96996 -10602.68 0 276.13849 0.0002563715 0.00023782227 + 188510 -6248.8965 -6255.0431 6.1466636 3712.3102 632.00102 -10599.354 0 294.58261 0.00024411566 0.00021389607 + 188520 -6248.7995 -6255.1096 6.31016 3710.7994 630.75067 -10596.66 0 302.41827 0.00017567741 0.00013703068 + 188530 -6248.7794 -6254.9036 6.1241752 3710.6814 629.33989 -10594.925 0 293.50484 4.8671881e-05 1.0541893e-05 + 188540 -6248.8226 -6254.5038 5.6811905 3711.727 627.90783 -10594.139 0 272.27452 -0.00011708265 -0.00014727397 + 188550 -6248.8669 -6254.0825 5.2156273 3713.3046 626.61314 -10594 0 249.96213 -0.00028436529 -0.0003057148 + 188560 -6248.85 -6253.7988 4.9488104 3714.6707 625.63068 -10594.1 0 237.17476 -0.0004116629 -0.00042960303 + 188570 -6248.7471 -6253.7178 4.9706926 3715.2792 625.13029 -10594.127 0 238.22348 -0.00046733102 -0.00048930274 + 188580 -6248.5805 -6253.7958 5.2152472 3714.9718 625.23748 -10594.005 0 249.94391 -0.00043885359 -0.00046905516 + 188590 -6248.3998 -6253.9257 5.5258812 3713.9855 625.98881 -10593.9 0 264.83123 -0.00033440796 -0.00037093415 + 188600 -6248.2455 -6254.0153 5.7697685 3712.8001 627.30062 -10594.116 0 276.51968 -0.00017731786 -0.00021362724 + 188610 -6248.1161 -6254.0466 5.930555 3711.9303 628.96993 -10594.947 0 284.22547 2.6724417e-06 -2.7273357e-05 + 188620 -6247.9653 -6254.0715 6.1062335 3711.7821 630.71706 -10596.571 0 292.64497 0.00017605831 0.00015334246 + 188630 -6247.7371 -6254.1436 6.4065018 3712.6172 632.25904 -10599.02 0 307.03551 0.00031611002 0.00029550127 + 188640 -6247.41 -6254.2498 6.8398598 3714.5546 633.38502 -10602.189 0 327.80446 0.0004003779 0.00037477134 + 188650 -6247.0133 -6254.3064 7.2931676 3717.5192 634.00404 -10605.83 0 349.52951 0.00041522156 0.00038072605 + 188660 -6246.6048 -6254.2184 7.6136327 3721.1448 634.15282 -10609.516 0 364.888 0.00036275362 0.00032102616 + 188670 -6246.2337 -6253.9443 7.7105307 3724.7363 633.96818 -10612.649 0 369.53189 0.00026477869 0.00022150607 + 188680 -6245.9171 -6253.5154 7.5983067 3727.3839 633.63564 -10614.535 0 364.15349 0.00015885489 0.00012036561 + 188690 -6245.6372 -6253.0177 7.3805314 3728.2155 633.32591 -10614.559 0 353.71648 8.6762272e-05 5.688215e-05 + 188700 -6245.3498 -6252.5658 7.2160189 3726.6956 633.134 -10612.395 0 345.83211 7.9865504e-05 5.7741362e-05 + 188710 -6245.0002 -6252.271 7.2707769 3722.8709 633.04203 -10608.184 0 348.45642 0.00014618968 0.00012577075 + 188720 -6244.554 -6252.1892 7.6352217 3717.4795 632.92406 -10602.593 0 365.92266 0.00026346085 0.00023604184 + 188730 -6244.0291 -6252.275 8.2459728 3711.8289 632.59461 -10596.699 0 395.19328 0.00038293014 0.0003425131 + 188740 -6243.4973 -6252.3973 8.899991 3707.4057 631.8833 -10591.686 0 426.53751 0.0004464832 0.00039435088 + 188750 -6243.0442 -6252.4213 9.3770936 3705.3359 630.71128 -10588.468 0 449.40294 0.00041169853 0.00035618513 + 188760 -6242.7165 -6252.2912 9.5747037 3705.9587 629.14665 -10587.397 0 458.87352 0.00027240757 0.0002237793 + 188770 -6242.4986 -6252.0544 9.5557971 3708.7294 627.41806 -10588.202 0 457.96741 6.3902981e-05 2.8050074e-05 + 188780 -6242.3302 -6251.8301 9.4999338 3712.4736 625.87353 -10590.177 0 455.29013 -0.00014924496 -0.00017456469 + 188790 -6242.1493 -6251.7467 9.5974228 3715.8569 624.89146 -10592.495 0 459.96235 -0.00029692317 -0.00032152484 + 188800 -6241.9428 -6251.8629 9.9201363 3717.8838 624.77203 -10594.519 0 475.42859 -0.00032961162 -0.00036568758 + 188810 -6241.7816 -6252.1088 10.32726 3718.2364 625.64468 -10595.99 0 494.94026 -0.00023674037 -0.00029068382 + 188820 -6241.8009 -6252.3095 10.508541 3717.3015 627.41897 -10597.03 0 503.62824 -4.8290748e-05 -0.00011465676 + 188830 -6242.1121 -6252.3131 10.201015 3715.8731 629.79365 -10597.98 0 488.88989 0.00018199503 0.00011823324 + 188840 -6242.7049 -6252.1331 9.4281986 3714.7272 632.32676 -10599.187 0 451.85218 0.00040128337 0.00035379895 + 188850 -6243.4433 -6251.9627 8.5193601 3714.3497 634.55229 -10600.865 0 408.29554 0.00057362032 0.00054366457 + 188860 -6244.1757 -6252.0217 7.84604 3714.9437 636.10589 -10603.071 0 376.02626 0.00067932879 0.00065504637 + 188870 -6244.8527 -6252.3653 7.5125823 3716.5687 636.80975 -10605.744 0 360.0451 0.0007063809 0.00067379129 + 188880 -6245.5306 -6252.8399 7.3093108 3719.1656 636.68446 -10608.69 0 350.30318 0.0006486981 0.00060400371 + 188890 -6246.2678 -6253.2299 6.9621249 3722.4163 635.89673 -10611.543 0 333.66409 0.00051488548 0.00046673744 + 188900 -6247.0395 -6253.4436 6.4040632 3725.6391 634.68406 -10613.767 0 306.91864 0.00033566579 0.00029661869 + 188910 -6247.7504 -6253.568 5.8176026 3727.9199 633.2928 -10614.781 0 278.81216 0.00015820843 0.00013423785 + 188920 -6248.307 -6253.7694 5.4623525 3728.4578 631.93902 -10614.166 0 261.78658 2.8540323e-05 1.5014631e-05 + 188930 -6248.6753 -6254.1398 5.4645319 3726.9298 630.78421 -10611.854 0 261.89103 -2.7307756e-05 -4.1488383e-05 + 188940 -6248.8964 -6254.6124 5.7160038 3723.6672 629.91928 -10608.199 0 273.94298 -1.3042013e-05 -3.7052022e-05 + 188950 -6249.0607 -6254.9987 5.9380159 3719.5451 629.35815 -10603.902 0 284.58304 4.2153754e-05 7.6672447e-06 + 188960 -6249.2513 -6255.1191 5.8677414 3715.6396 629.04476 -10599.803 0 281.21509 9.9428855e-05 6.2545756e-05 + 188970 -6249.4906 -6254.9327 5.4421292 3712.8332 628.87564 -10596.642 0 260.81737 0.00012860273 9.9784177e-05 + 188980 -6249.7287 -6254.5727 4.8439507 3711.5695 628.73678 -10594.879 0 232.1493 0.00011871705 0.00010265996 + 188990 -6249.8859 -6254.2579 4.37203 3711.8537 628.54815 -10594.66 0 209.53221 7.6452291e-05 6.8383365e-05 + 189000 -6249.9158 -6254.1483 4.2325307 3713.4241 628.30204 -10595.874 0 202.84662 1.6762301e-05 6.0261056e-06 + 189010 -6249.841 -6254.2492 4.4081652 3715.9263 628.07668 -10598.252 0 211.26401 -4.5586037e-05 -6.7487551e-05 + 189020 -6249.7368 -6254.4363 4.6994791 3718.9627 628.01363 -10601.413 0 225.22541 -9.7871382e-05 -0.00013112919 + 189030 -6249.6746 -6254.571 4.8963919 3722.0443 628.26481 -10604.88 0 234.66257 -0.0001261713 -0.00016317382 + 189040 -6249.6707 -6254.6057 4.9349833 3724.5787 628.93053 -10608.115 0 236.51209 -0.00011371373 -0.00014544933 + 189050 -6249.6806 -6254.5943 4.9136816 3726.0007 630.01343 -10610.608 0 235.49119 -4.6087436e-05 -6.8901098e-05 + 189060 -6249.6405 -6254.6138 4.9733243 3726.0037 631.40347 -10612.021 0 238.34961 7.8512845e-05 6.1115028e-05 + 189070 -6249.5168 -6254.6806 5.1638438 3724.7146 632.89632 -10612.292 0 247.48037 0.00024189382 0.00022292333 + 189080 -6249.3231 -6254.735 5.4119249 3722.6802 634.23881 -10611.654 0 259.36981 0.00040816753 0.000382419 + 189090 -6249.1013 -6254.6931 5.5918063 3720.6643 635.18993 -10610.547 0 267.99073 0.00053546559 0.00050233957 + 189100 -6248.8914 -6254.5077 5.6163612 3719.3666 635.58 -10609.454 0 269.16754 0.00059056407 0.00055349694 + 189110 -6248.7103 -6254.1951 5.4847903 3719.1816 635.34779 -10608.724 0 262.86192 0.00055965862 0.00052356232 + 189120 -6248.5467 -6253.8296 5.2829778 3720.0731 634.54422 -10608.447 0 253.18994 0.00045215095 0.00042044725 + 189130 -6248.367 -6253.5139 5.1468417 3721.6013 633.3108 -10608.426 0 246.66553 0.00029718493 0.00026978963 + 189140 -6248.1361 -6253.3295 5.193404 3723.1002 631.85044 -10608.28 0 248.89706 0.00013431653 0.00010792174 + 189150 -6247.8398 -6253.2927 5.4529274 3723.9258 630.39799 -10607.617 0 261.33488 1.6969215e-06 -2.7527489e-05 + 189160 -6247.4937 -6253.3513 5.8576092 3723.6594 629.1828 -10606.194 0 280.7295 -7.3766287e-05 -0.00010711361 + 189170 -6247.1283 -6253.4273 6.2990758 3722.2 628.37931 -10604.007 0 301.88706 -8.1499201e-05 -0.00011687608 + 189180 -6246.7664 -6253.4663 6.6998808 3719.7641 628.05927 -10601.29 0 321.09588 -2.7721442e-05 -6.1438753e-05 + 189190 -6246.4137 -6253.4529 7.0391949 3716.8376 628.17042 -10598.461 0 337.35772 6.7439624e-05 3.8119895e-05 + 189200 -6246.0643 -6253.3953 7.3310273 3714.0872 628.55878 -10596.041 0 351.34396 0.00017547054 0.00015091788 + 189210 -6245.7112 -6253.3061 7.5949398 3712.2174 629.03123 -10594.555 0 363.99213 0.00026702756 0.00024522332 + 189220 -6245.3531 -6253.1944 7.8412841 3711.7952 629.43516 -10594.425 0 375.79833 0.00031983414 0.00029717769 + 189230 -6245.0005 -6253.0609 8.0603485 3713.0974 629.72098 -10595.879 0 386.29713 0.00032447953 0.00029731099 + 189240 -6244.6802 -6252.8937 8.2134794 3716.0273 629.95667 -10598.878 0 393.63602 0.00028661008 0.0002533468 + 189250 -6244.4288 -6252.6804 8.2516468 3720.0995 630.28403 -10603.064 0 395.46521 0.00022568689 0.00018824639 + 189260 -6244.2704 -6252.4358 8.1653812 3724.4973 630.84033 -10607.773 0 391.33088 0.00017082573 0.00013365093 + 189270 -6244.1986 -6252.2132 8.0146317 3728.236 631.69278 -10612.142 0 384.10612 0.00015349065 0.00012056958 + 189280 -6244.1819 -6252.0766 7.8946773 3730.4327 632.81984 -10615.329 0 378.35723 0.00019765949 0.00017001697 + 189290 -6244.1865 -6252.0577 7.8712082 3730.5916 634.1303 -10616.78 0 377.23246 0.0003106104 0.00028592598 + 189300 -6244.1925 -6252.1417 7.9491805 3728.7762 635.48422 -10616.402 0 380.96933 0.00047817933 0.00045196157 + 189310 -6244.1994 -6252.2823 8.0829047 3725.6029 636.69691 -10614.582 0 387.37815 0.00066603193 0.00063340669 + 189320 -6244.2313 -6252.4188 8.1875354 3722.0713 637.54277 -10612.033 0 392.39264 0.00082642958 0.00078465318 + 189330 -6244.336 -6252.484 8.1479653 3719.2729 637.78857 -10609.545 0 390.49621 0.00091016516 0.00086145614 + 189340 -6244.5631 -6252.4344 7.8713116 3718.0273 637.2617 -10607.723 0 377.23742 0.00088289191 0.00083496353 + 189350 -6244.9192 -6252.3051 7.3859643 3718.5643 635.92637 -10606.796 0 353.97685 0.00074077105 0.00070246535 + 189360 -6245.3473 -6252.2316 6.8842581 3720.4278 633.92868 -10606.588 0 329.93228 0.0005156449 0.0004896706 + 189370 -6245.7687 -6252.3731 6.6043473 3722.7096 631.58479 -10606.667 0 316.51738 0.00026304689 0.00024255928 + 189380 -6246.1619 -6252.7772 6.61533 3724.4907 629.30865 -10606.577 0 317.04373 3.8626299e-05 1.226151e-05 + 189390 -6246.5974 -6253.316 6.7186653 3725.2037 627.49921 -10606.019 0 321.99614 -0.00012143371 -0.00015978278 + 189400 -6247.1779 -6253.7723 6.5943428 3724.7185 626.4296 -10604.92 0 316.03791 -0.00020434204 -0.00025005804 + 189410 -6247.9288 -6254.0026 6.0738705 3723.2128 626.18674 -10603.402 0 291.09396 -0.00021161809 -0.00025330319 + 189420 -6248.7492 -6254.0356 5.2863779 3721.0171 626.68327 -10601.736 0 253.35289 -0.00014968862 -0.00017860828 + 189430 -6249.4824 -6254.0326 4.5502058 3718.5542 627.72027 -10600.307 0 218.07139 -2.9259089e-05 -4.576217e-05 + 189440 -6250.0257 -6254.1606 4.1348172 3716.3555 629.05646 -10599.572 0 198.16364 0.00012928726 0.00011693229 + 189450 -6250.3739 -6254.4759 4.1019774 3715.0544 630.45469 -10599.985 0 196.58977 0.00029326246 0.00027536174 + 189460 -6250.592 -6254.8951 4.3030393 3715.2726 631.70663 -10601.874 0 206.22579 0.00042285004 0.0003950792 + 189470 -6250.7662 -6255.2594 4.4931971 3717.3882 632.65194 -10605.3 0 215.33922 0.00048352252 0.00044982556 + 189480 -6250.9538 -6255.4465 4.4927516 3721.2849 633.20098 -10609.932 0 215.31786 0.00046087729 0.00043050177 + 189490 -6251.1508 -6255.4512 4.3004921 3726.244 633.35593 -10615.051 0 206.10371 0.00036957925 0.00034993765 + 189500 -6251.3002 -6255.372 4.071815 3731.103 633.21648 -10619.691 0 195.14422 0.00024914371 0.00023974069 + 189510 -6251.3426 -6255.3115 3.9689056 3734.6458 632.95664 -10622.914 0 190.21223 0.00014705335 0.00013957562 + 189520 -6251.2711 -6255.2796 4.0085537 3736.0297 632.76882 -10624.078 0 192.11239 9.8677235e-05 8.3489057e-05 + 189530 -6251.1424 -6255.189 4.0465664 3735.024 632.78824 -10623.001 0 193.93417 0.0001154329 8.9149369e-05 + 189540 -6251.0355 -6254.9501 3.9145209 3731.9772 633.02904 -10619.956 0 187.6058 0.00018580577 0.00015366758 + 189550 -6250.9917 -6254.5749 3.5832367 3727.607 633.3672 -10615.549 0 171.72881 0.000284755 0.00025614685 + 189560 -6250.9873 -6254.1966 3.2092536 3722.7753 633.58417 -10610.556 0 153.80544 0.00038350301 0.00036464776 + 189570 -6250.9553 -6253.9878 3.0325198 3718.3447 633.45286 -10605.785 0 145.33537 0.00045515995 0.00044473497 + 189580 -6250.8318 -6254.0457 3.2139482 3715.0996 632.82626 -10601.972 0 154.03043 0.00047711021 0.00046759483 + 189590 -6250.5956 -6254.3257 3.7300714 3713.6635 631.69338 -10599.683 0 178.76595 0.00043351306 0.00041673231 + 189600 -6250.2794 -6254.6662 4.3867381 3714.3679 630.18732 -10599.221 0 210.2371 0.0003198531 0.00029266483 + 189610 -6249.9483 -6254.885 4.936777 3717.1005 628.55193 -10600.537 0 236.59806 0.00014846298 0.00011481474 + 189620 -6249.6554 -6254.8843 5.2288547 3721.221 627.08593 -10603.191 0 250.59606 -4.8429864e-05 -8.0419509e-05 + 189630 -6249.4054 -6254.6994 5.2940185 3725.6448 626.08476 -10606.429 0 253.71907 -0.00022202375 -0.00024602794 + 189640 -6249.1526 -6254.4618 5.3092033 3729.1278 625.79236 -10609.382 0 254.44681 -0.00031841355 -0.00033471302 + 189650 -6248.8402 -6254.2979 5.4577131 3730.6808 626.36266 -10611.341 0 261.56423 -0.00029588947 -0.0003113782 + 189660 -6248.4514 -6254.2354 5.784019 3729.9406 627.82384 -10612 0 277.20265 -0.00014170789 -0.00016479793 + 189670 -6248.0309 -6254.1838 6.1528484 3727.314 630.04502 -10611.543 0 294.87902 0.00011954509 8.5429115e-05 + 189680 -6247.6568 -6254.0083 6.3514605 3723.8114 632.72166 -10610.541 0 304.39762 0.00043127382 0.00039046622 + 189690 -6247.3813 -6253.642 6.2607095 3720.6536 635.40636 -10609.702 0 300.04833 0.00072261297 0.00068383951 + 189700 -6247.1905 -6253.1467 5.956219 3718.8515 637.59903 -10609.597 0 285.45544 0.0009304534 0.0009000053 + 189710 -6247.0182 -6252.6766 5.6584556 3718.9389 638.87684 -10610.492 0 271.18494 0.0010160234 0.00099299415 + 189720 -6246.7969 -6252.3787 5.5818826 3720.9065 639.0156 -10612.301 0 267.51513 0.00097123866 0.00094828432 + 189730 -6246.5036 -6252.3074 5.8038125 3724.2772 638.05494 -10614.639 0 278.15126 0.00081620114 0.00078477542 + 189740 -6246.1717 -6252.405 6.2332112 3728.2429 636.2834 -10616.931 0 298.73046 0.00059171852 0.00054793344 + 189750 -6245.8685 -6252.5504 6.6819305 3731.8208 634.14937 -10618.521 0 320.2356 0.00034996525 0.0002973813 + 189760 -6245.6511 -6252.6405 6.9893181 3734.0232 632.12631 -10618.79 0 334.96734 0.00014474068 9.2368279e-05 + 189770 -6245.5276 -6252.6557 7.128076 3734.0526 630.57634 -10617.285 0 341.6174 2.141106e-05 -2.2085767e-05 + 189780 -6245.4476 -6252.6707 7.2230964 3731.5244 629.66024 -10613.855 0 346.17131 6.4532532e-06 -2.5990355e-05 + 189790 -6245.3374 -6252.7922 7.4547891 3726.6785 629.32712 -10608.798 0 357.27532 9.8042177e-05 7.0218089e-05 + 189800 -6245.1613 -6253.055 7.8936643 3720.4788 629.38212 -10602.916 0 378.30869 0.00026178106 0.00022786049 + 189810 -6244.9626 -6253.3578 8.3952783 3714.4612 629.59271 -10597.412 0 402.34884 0.0004375633 0.00039089184 + 189820 -6244.839 -6253.5163 8.6772946 3710.2745 629.77952 -10593.57 0 415.86465 0.00056028753 0.00050380059 + 189830 -6244.8646 -6253.3995 8.5349856 3709.0811 629.85933 -10592.34 0 409.0444 0.00058675382 0.00053069664 + 189840 -6245.0321 -6253.026 7.9939165 3711.1409 629.84385 -10594.011 0 383.11333 0.00051302722 0.0004673121 + 189850 -6245.2657 -6252.5419 7.2762061 3715.7842 629.81466 -10598.141 0 348.71662 0.00037259779 0.00034047833 + 189860 -6245.4753 -6252.131 6.6556757 3721.7212 629.89167 -10603.744 0 318.97733 0.00021971717 0.00019642337 + 189870 -6245.6047 -6251.9272 6.3224407 3727.5002 630.20414 -10609.631 0 303.00683 0.00010854703 8.4290887e-05 + 189880 -6245.6573 -6251.955 6.2977425 3731.945 630.86433 -10614.764 0 301.82316 7.5777258e-05 4.1503426e-05 + 189890 -6245.6961 -6252.1199 6.4238568 3734.4249 631.93309 -10618.478 0 307.86726 0.00013139316 8.4925377e-05 + 189900 -6245.8069 -6252.2794 6.4724818 3734.8692 633.37196 -10620.521 0 310.19764 0.00026057303 0.00020894967 + 189910 -6246.0338 -6252.367 6.3331487 3733.5771 635.00345 -10620.948 0 303.52002 0.00043450208 0.00038933687 + 189920 -6246.3412 -6252.4622 6.120997 3731.0128 636.52229 -10619.997 0 293.35252 0.00062155142 0.00059008054 + 189930 -6246.6461 -6252.7226 6.0764328 3727.7444 637.57975 -10618.047 0 291.21675 0.00079118706 0.00077058962 + 189940 -6246.8958 -6253.2294 6.3336464 3724.4831 637.90682 -10615.619 0 303.54387 0.0009121133 0.00089215271 + 189950 -6247.1176 -6253.8921 6.7745675 3722.0373 637.407 -10613.336 0 324.67529 0.00095309396 0.00092436206 + 189960 -6247.3996 -6254.4924 7.092847 3721.0863 636.1723 -10611.751 0 339.92902 0.00089145327 0.00085207159 + 189970 -6247.8215 -6254.819 6.9974266 3721.8818 634.43047 -10611.131 0 335.35594 0.00072533621 0.00068150942 + 189980 -6248.3895 -6254.7869 6.3973973 3724.0768 632.46767 -10611.331 0 306.59918 0.00048121474 0.00044228169 + 189990 -6249.0219 -6254.4774 5.4554947 3726.8038 630.5665 -10611.848 0 261.45792 0.00021045926 0.00018232848 + 190000 -6249.5975 -6254.0854 4.4878907 3728.9874 628.97343 -10612.046 0 215.0849 -2.5334547e-05 -4.4052335e-05 + 190010 -6250.0318 -6253.8099 3.7780972 3729.7605 627.88537 -10611.456 0 181.06762 -0.00017433964 -0.00019103322 + 190020 -6250.3199 -6253.7488 3.4288728 3728.7933 627.43668 -10609.979 0 164.33082 -0.00021051949 -0.00023309328 + 190030 -6250.5212 -6253.8668 3.3456744 3726.386 627.67556 -10607.928 0 160.34349 -0.000138751 -0.00016990216 + 190040 -6250.7081 -6254.0556 3.3475002 3723.3004 628.53605 -10605.892 0 160.43099 1.15086e-05 -2.3894422e-05 + 190050 -6250.9181 -6254.2331 3.3149924 3720.449 629.82794 -10604.51 0 158.87303 0.00019889396 0.00016720955 + 190060 -6251.1353 -6254.4027 3.2673559 3718.6137 631.26654 -10604.283 0 156.59003 0.00038214924 0.00035984351 + 190070 -6251.3095 -6254.6304 3.3208835 3718.3002 632.54273 -10605.473 0 159.15537 0.0005271246 0.00051345458 + 190080 -6251.3938 -6254.9684 3.5745296 3719.7166 633.40855 -10608.094 0 171.31151 0.00060924364 0.00059758181 + 190090 -6251.3779 -6255.3903 4.0123597 3722.7878 633.74447 -10611.923 0 192.29479 0.0006148307 0.00059711999 + 190100 -6251.2969 -6255.7825 4.4855541 3727.1444 633.58551 -10616.512 0 214.97292 0.00054374249 0.00051583997 + 190110 -6251.2132 -6255.9952 4.7820868 3732.1 633.10114 -10621.196 0 229.18443 0.00041276978 0.00037734679 + 190120 -6251.1783 -6255.9255 4.7472782 3736.6773 632.53754 -10625.14 0 227.51621 0.00025676311 0.00022180398 + 190130 -6251.1973 -6255.5842 4.3869195 3739.7551 632.14089 -10627.48 0 210.2458 0.00012370056 9.7157557e-05 + 190140 -6251.2223 -6255.1013 3.8790646 3740.3556 632.08566 -10627.543 0 185.90654 6.1793109e-05 4.5716572e-05 + 190150 -6251.1847 -6254.6528 3.4680942 3738.008 632.4288 -10625.09 0 166.21053 0.00010133797 8.9858326e-05 + 190160 -6251.0475 -6254.3509 3.3033689 3733.0325 633.09722 -10620.481 0 158.31597 0.00023912964 0.00022239864 + 190170 -6250.8364 -6254.1804 3.3440709 3726.562 633.90291 -10614.645 0 160.26664 0.0004347095 0.00040631568 + 190180 -6250.6249 -6254.0392 3.4143676 3720.2273 634.57827 -10608.845 0 163.63565 0.00062299123 0.0005851141 + 190190 -6250.4794 -6253.8511 3.3717307 3715.6163 634.83224 -10604.3 0 161.59225 0.00073868898 0.00070062681 + 190200 -6250.4061 -6253.6546 3.2485484 3713.7642 634.42835 -10601.847 0 155.68867 0.0007405956 0.00071164014 + 190210 -6250.3434 -6253.5891 3.2456496 3714.902 633.27175 -10601.763 0 155.54974 0.00062414497 0.00060642678 + 190220 -6250.2058 -6253.7871 3.5812741 3718.5164 631.47493 -10603.778 0 171.63475 0.0004186668 0.00040546174 + 190230 -6249.9465 -6254.2568 4.3102911 3723.6093 629.36855 -10607.235 0 206.57334 0.00017441128 0.0001550671 + 190240 -6249.598 -6254.8411 5.243078 3728.9917 627.43898 -10611.272 0 251.27772 -5.2452435e-05 -8.4545637e-05 + 190250 -6249.2583 -6255.2861 6.0277214 3733.511 626.19986 -10614.997 0 288.88223 -0.00021121268 -0.00025331618 + 190260 -6249.024 -6255.3819 6.3579475 3736.2048 626.03411 -10617.621 0 304.70852 -0.00026344504 -0.00030502854 + 190270 -6248.9156 -6255.0882 6.1725687 3736.4376 627.06519 -10618.591 0 295.82413 -0.0001880286 -0.0002186815 + 190280 -6248.8618 -6254.5522 5.6903791 3734.0673 629.11404 -10617.734 0 272.7149 1.2706672e-05 -5.2027518e-06 + 190290 -6248.7594 -6253.9959 5.2364281 3729.6128 631.76044 -10615.369 0 250.95902 0.00030674411 0.000292848 + 190300 -6248.5596 -6253.5558 4.9962237 3724.2803 634.47423 -10612.31 0 239.44708 0.0006322415 0.00060976751 + 190310 -6248.3036 -6253.2104 4.9068498 3719.6999 636.75392 -10609.664 0 235.16377 0.00091001673 0.00087245217 + 190320 -6248.0838 -6252.8529 4.7690804 3717.3864 638.22528 -10608.465 0 228.56109 0.0010680339 0.0010199735 + 190330 -6247.9659 -6252.4342 4.4682307 3718.1567 638.68961 -10609.281 0 214.14268 0.0010677895 0.001021288 + 190340 -6247.9363 -6252.0522 4.1159065 3721.8061 638.13507 -10611.993 0 197.25733 0.00091915611 0.00088463686 + 190350 -6247.9076 -6251.9182 4.0106186 3727.1997 636.72621 -10615.844 0 192.21135 0.00067598417 0.00065449692 + 190360 -6247.7733 -6252.2228 4.44954 3732.7192 634.77577 -10619.718 0 213.24692 0.0004147907 0.00039690809 + 190370 -6247.4777 -6252.9835 5.5057748 3736.8438 632.69429 -10622.522 0 263.86762 0.00020655862 0.0001788465 + 190380 -6247.0662 -6253.9773 6.9110933 3738.6067 630.91048 -10623.494 0 331.21837 9.4189439e-05 4.9297375e-05 + 190390 -6246.6709 -6254.8286 8.1577258 3737.7515 629.76539 -10622.346 0 390.96399 8.5280502e-05 2.8202006e-05 + 190400 -6246.4187 -6255.219 8.8002544 3734.5994 629.41008 -10619.228 0 421.75757 0.00016113662 0.00010558995 + 190410 -6246.3298 -6255.0642 8.7344033 3729.8169 629.76012 -10614.641 0 418.60162 0.00029180125 0.00024881965 + 190420 -6246.3132 -6254.5122 8.1989967 3724.2849 630.54469 -10609.342 0 392.94193 0.00044447373 0.00041343083 + 190430 -6246.2637 -6253.782 7.5182348 3719.0637 631.42922 -10604.275 0 360.316 0.0005839035 0.00055412249 + 190440 -6246.1527 -6253.0121 6.859471 3715.2812 632.14425 -10600.438 0 328.74434 0.00067433752 0.00063484677 + 190450 -6246.0319 -6252.2397 6.2078286 3713.8492 632.56069 -10598.65 0 297.51398 0.00068930017 0.00063756263 + 190460 -6245.9718 -6251.4821 5.5102601 3715.1289 632.69423 -10599.305 0 264.08258 0.00062437135 0.00056757072 + 190470 -6245.9983 -6250.822 4.8237819 3718.7511 632.65683 -10602.23 0 231.18269 0.00050315158 0.00045240618 + 190480 -6246.0701 -6250.4254 4.3553449 3723.7147 632.58805 -10606.728 0 208.73257 0.00037082737 0.0003331093 + 190490 -6246.1004 -6250.4776 4.3772201 3728.7302 632.59803 -10611.806 0 209.78095 0.00027739006 0.00025042099 + 190500 -6246.006 -6251.0697 5.0637318 3732.6692 632.74254 -10616.481 0 242.68244 0.00025785007 0.0002312284 + 190510 -6245.764 -6252.0969 6.3328969 3734.927 633.03025 -10620.054 0 303.50795 0.00031815746 0.00028056273 + 190520 -6245.444 -6253.2516 7.8075852 3735.525 633.44349 -10622.22 0 374.18329 0.00043407468 0.00038213302 + 190530 -6245.1764 -6254.1553 8.978855 3734.9008 633.95059 -10623.007 0 430.31711 0.00056529124 0.00050704212 + 190540 -6245.0607 -6254.5605 9.4997869 3733.5409 634.50427 -10622.606 0 455.28309 0.00067752012 0.00062653778 + 190550 -6245.0913 -6254.4689 9.3775828 3731.737 635.03775 -10621.244 0 449.42639 0.0007572203 0.00072175016 + 190560 -6245.1782 -6254.0729 8.8947219 3729.6252 635.46731 -10619.165 0 426.28498 0.00080813976 0.00078470566 + 190570 -6245.2365 -6253.5886 8.3521152 3727.3954 635.70022 -10616.684 0 400.28022 0.00083515808 0.00081167917 + 190580 -6245.2557 -6253.1265 7.8707903 3725.4235 635.64851 -10614.199 0 377.21244 0.00083177752 0.00079667067 + 190590 -6245.2969 -6252.676 7.379057 3724.1926 635.25438 -10612.123 0 353.64582 0.00078224482 0.00073228605 + 190600 -6245.4363 -6252.1817 6.7453953 3724.0473 634.52262 -10610.752 0 323.27719 0.00067584411 0.00061782008 + 190610 -6245.7009 -6251.647 5.9460916 3724.9463 633.53928 -10610.133 0 284.97007 0.00052193032 0.00046739217 + 190620 -6246.0419 -6251.1898 5.1479179 3726.3889 632.46035 -10610.039 0 246.71711 0.00035401237 0.00031073987 + 190630 -6246.3705 -6250.9975 4.6269381 3727.6135 631.47521 -10610.086 0 221.74884 0.00021831812 0.00018489041 + 190640 -6246.631 -6251.2013 4.5703365 3727.9823 630.76072 -10609.944 0 219.03617 0.00015300421 0.00012096854 + 190650 -6246.8449 -6251.7753 4.9303697 3727.3059 630.4371 -10609.518 0 236.29098 0.00017112027 0.00013272346 + 190660 -6247.0895 -6252.5524 5.4628813 3725.8979 630.53254 -10608.983 0 261.81193 0.00025737549 0.00021179785 + 190670 -6247.4316 -6253.3384 5.9068137 3724.3631 630.97043 -10608.672 0 283.08765 0.0003783445 0.00033124724 + 190680 -6247.8768 -6254.0125 6.1356871 3723.308 631.59238 -10608.913 0 294.05656 0.00049723184 0.00045509109 + 190690 -6248.3753 -6254.5401 6.1648077 3723.148 632.21216 -10609.9 0 295.45218 0.00058431368 0.00054937189 + 190700 -6248.8653 -6254.9196 6.0543091 3724.0476 632.67612 -10611.643 0 290.15646 0.00062095965 0.0005907346 + 190710 -6249.3082 -6255.1355 5.8273391 3725.9255 632.90623 -10613.967 0 279.27879 0.00060072223 0.00057113628 + 190720 -6249.6947 -6255.1595 5.464857 3728.476 632.9163 -10616.552 0 261.90661 0.00053037816 0.00049913561 + 190730 -6250.0301 -6254.9816 4.9515276 3731.2094 632.80204 -10618.993 0 237.30498 0.00043008389 0.00039797172 + 190740 -6250.3186 -6254.6413 4.3227445 3733.5343 632.70654 -10620.882 0 207.17017 0.00033015264 0.000299965 + 190750 -6250.5553 -6254.2361 3.6808 3734.885 632.7666 -10621.888 0 176.40459 0.00026340437 0.00023755424 + 190760 -6250.7295 -6253.8958 3.1663089 3734.8798 633.05704 -10621.833 0 151.74729 0.00025460895 0.00023318152 + 190770 -6250.8359 -6253.73 2.8940532 3733.4716 633.55546 -10620.757 0 138.69927 0.00031071593 0.000291492 + 190780 -6250.8834 -6253.7796 2.8961865 3731.0165 634.14127 -10618.937 0 138.80151 0.00041650916 0.00039688496 + 190790 -6250.8912 -6254.0119 3.1206726 3728.1975 634.6276 -10616.837 0 149.56014 0.00053872777 0.00051760676 + 190800 -6250.8734 -6254.3554 3.4820201 3725.8128 634.81642 -10614.985 0 166.87794 0.00063737796 0.00061521031 + 190810 -6250.8288 -6254.7367 3.9079399 3724.5237 634.56335 -10613.824 0 187.29041 0.00067898889 0.00065630733 + 190820 -6250.7475 -6255.0868 4.3392482 3724.6665 633.83333 -10613.587 0 207.96112 0.0006464436 0.00062288061 + 190830 -6250.627 -6255.3305 4.7034874 3726.174 632.72506 -10614.23 0 225.41751 0.00054315034 0.00051808602 + 190840 -6250.4791 -6255.3944 4.915333 3728.5967 631.45063 -10615.442 0 235.57034 0.00039204029 0.00036588549 + 190850 -6250.3188 -6255.2406 4.9218137 3731.208 630.27679 -10616.725 0 235.88093 0.000230265 0.00020452999 + 190860 -6250.1481 -6254.8991 4.7509901 3733.1865 629.45289 -10617.539 0 227.6941 0.00010005273 7.5758991e-05 + 190870 -6249.9517 -6254.4613 4.5095981 3733.8524 629.1526 -10617.466 0 216.12524 3.7185056e-05 1.316527e-05 + 190880 -6249.7102 -6254.0348 4.324563 3732.8878 629.44238 -10616.365 0 207.25732 6.0559959e-05 3.3447779e-05 + 190890 -6249.4174 -6253.6913 4.2739568 3730.4525 630.27466 -10614.418 0 204.83199 0.00016662838 0.0001328009 + 190900 -6249.0892 -6253.4404 4.3512297 3727.1483 631.49931 -10612.088 0 208.53534 0.00033029199 0.00028859456 + 190910 -6248.7603 -6253.24 4.4797416 3723.8471 632.89021 -10609.977 0 214.69435 0.00051171997 0.0004653149 + 190920 -6248.465 -6253.0443 4.5793316 3721.4292 634.1859 -10608.659 0 219.46727 0.00066790367 0.00062353537 + 190930 -6248.207 -6252.8644 4.6573715 3720.5111 635.14292 -10608.518 0 223.20737 0.00076633228 0.00073023412 + 190940 -6247.9412 -6252.7887 4.8474453 3721.2743 635.59662 -10609.66 0 232.31678 0.00079513276 0.00076755496 + 190950 -6247.5987 -6252.9195 5.3207487 3723.4822 635.51406 -10611.916 0 255.00013 0.00076345404 0.00073653751 + 190960 -6247.1554 -6253.2527 6.0972832 3726.6587 635.0126 -10614.924 0 292.21602 0.00069141541 0.00065420495 + 190970 -6246.688 -6253.6101 6.9220681 3730.2738 634.32052 -10618.204 0 331.74434 0.00059771762 0.00054613711 + 190980 -6246.3408 -6253.7305 7.3897163 3733.7803 633.6835 -10621.194 0 354.15667 0.00049618404 0.00043905406 + 190990 -6246.2015 -6253.4847 7.2832123 3736.5246 633.26148 -10623.271 0 349.0524 0.00040322093 0.00035641054 + 191000 -6246.2088 -6253.017 6.8082793 3737.7544 633.07994 -10623.851 0 326.29095 0.00034391999 0.00031609976 + 191010 -6246.2018 -6252.6438 6.442056 3736.8934 633.06587 -10622.603 0 308.73947 0.00034387818 0.00032756613 + 191020 -6246.0687 -6252.5794 6.510713 3733.9433 633.13199 -10619.655 0 312.0299 0.00041044049 0.00038797575 + 191030 -6245.8456 -6252.7479 6.9022933 3729.6571 633.2376 -10615.643 0 330.79663 0.00052121752 0.0004806124 + 191040 -6245.6785 -6252.8637 7.1851373 3725.2711 633.38186 -10611.517 0 344.35209 0.00063295331 0.00057891871 + 191050 -6245.6836 -6252.6993 7.0157623 3721.95 633.54663 -10608.196 0 336.23469 0.0007055977 0.00065555711 + 191060 -6245.8357 -6252.2984 6.4626957 3720.3299 633.64857 -10606.277 0 309.72864 0.00072255502 0.00069116627 + 191070 -6245.985 -6251.9473 5.9622984 3720.4362 633.55142 -10605.935 0 285.74679 0.00069160319 0.00067737113 + 191080 -6245.9824 -6251.9352 5.9527603 3721.9459 633.14151 -10607.023 0 285.28967 0.00062866939 0.00061416802 + 191090 -6245.8062 -6252.2992 6.4929771 3724.5086 632.4217 -10609.23 0 311.17989 0.00054154642 0.00050745986 + 191100 -6245.5902 -6252.771 7.1808406 3727.8302 631.56014 -10612.161 0 344.14617 0.00042983341 0.00037167556 + 191110 -6245.5197 -6252.9902 7.4705676 3731.4643 630.84894 -10615.303 0 358.03152 0.00030214674 0.00023509199 + 191120 -6245.6659 -6252.817 7.1511579 3734.5806 630.58224 -10617.98 0 342.72361 0.00019287165 0.00013904662 + 191130 -6245.9182 -6252.4534 6.5352314 3736.0834 630.92514 -10619.462 0 313.20496 0.00015573713 0.00012495417 + 191140 -6246.0921 -6252.2458 6.1536206 3735.156 631.85262 -10619.254 0 294.91603 0.00023196411 0.00021421968 + 191150 -6246.0958 -6252.3764 6.2805812 3731.8437 633.17568 -10617.396 0 301.00069 0.00041842304 0.00039411507 + 191160 -6245.9904 -6252.7441 6.7536658 3727.184 634.61127 -10614.539 0 323.67356 0.00066248301 0.00061892849 + 191170 -6245.9201 -6253.0916 7.1715652 3722.7789 635.85513 -10611.726 0 343.70165 0.00088552371 0.00082549816 + 191180 -6245.9962 -6253.2135 7.2173497 3720.1033 636.64465 -10609.961 0 345.89589 0.0010173077 0.00095519148 + 191190 -6246.2253 -6253.0833 6.8579224 3719.9363 636.80989 -10609.829 0 328.67012 0.0010223664 0.00097304081 + 191200 -6246.5176 -6252.8456 6.3280274 3722.1525 636.30711 -10611.305 0 303.27458 0.00090827504 0.00087715807 + 191210 -6246.7583 -6252.7039 5.9456659 3725.9016 635.23035 -10613.836 0 284.94967 0.00071584176 0.00069626821 + 191220 -6246.8877 -6252.778 5.8903557 3730.0246 633.79937 -10616.602 0 282.2989 0.00049938108 0.00047832286 + 191230 -6246.9371 -6253.0257 6.0885884 3733.4686 632.32164 -10618.816 0 291.79932 0.0003081407 0.00027589232 + 191240 -6246.9999 -6253.2809 6.2809797 3735.5224 631.12592 -10619.929 0 301.01979 0.00017638783 0.00013330442 + 191250 -6247.1592 -6253.3821 6.2228306 3735.8459 630.47409 -10619.702 0 298.23296 0.00012245458 7.7928482e-05 + 191260 -6247.4239 -6253.2921 5.8682238 3734.41 630.47682 -10618.179 0 281.23821 0.00015121647 0.0001158795 + 191270 -6247.7254 -6253.1197 5.3942565 3731.4771 631.0517 -10615.648 0 258.52304 0.00025419965 0.00023165822 + 191280 -6247.9766 -6253.0285 5.0519489 3727.6399 631.95118 -10612.62 0 242.11774 0.00040683578 0.00039143396 + 191290 -6248.1398 -6253.1135 4.9736918 3723.8118 632.85276 -10609.778 0 238.36722 0.00056823708 0.00055011488 + 191300 -6248.25 -6253.3403 5.0903514 3721.0473 633.47193 -10607.86 0 243.9582 0.00068938232 0.00066225993 + 191310 -6248.3808 -6253.5889 5.2080908 3720.2013 633.65105 -10607.441 0 249.60094 0.00072983664 0.00069533394 + 191320 -6248.5845 -6253.755 5.1704844 3721.5792 633.39334 -10608.727 0 247.79862 0.00067548968 0.0006409797 + 191330 -6248.8526 -6253.8286 4.975974 3724.7808 632.83742 -10611.447 0 238.47659 0.00054641374 0.00051851782 + 191340 -6249.127 -6253.8878 4.7607732 3728.8416 632.19433 -10614.924 0 228.16296 0.00038864075 0.00036776143 + 191350 -6249.351 -6254.0173 4.6663295 3732.6064 631.68083 -10618.305 0 223.63669 0.00025406712 0.00023435505 + 191360 -6249.5151 -6254.223 4.707922 3735.137 631.4711 -10620.831 0 225.63004 0.00018043943 0.00015498861 + 191370 -6249.6609 -6254.4201 4.7591617 3735.9581 631.66665 -10622.045 0 228.08573 0.00018181404 0.00014852023 + 191380 -6249.8405 -6254.5032 4.6627605 3735.0771 632.27481 -10621.855 0 223.46565 0.00025114368 0.00021431972 + 191390 -6250.0703 -6254.4359 4.3656494 3732.8553 633.19644 -10620.488 0 209.22641 0.00036869607 0.00033542548 + 191400 -6250.3187 -6254.2792 3.9605228 3729.8602 634.23541 -10618.375 0 189.81048 0.00050878575 0.00048349808 + 191410 -6250.534 -6254.1432 3.6091665 3726.7651 635.13839 -10616.047 0 172.97151 0.00064235557 0.00062412218 + 191420 -6250.683 -6254.1108 3.4277856 3724.2718 635.65734 -10614.04 0 164.27872 0.00073858463 0.00072266893 + 191430 -6250.7674 -6254.196 3.4285964 3722.9982 635.61503 -10612.809 0 164.31758 0.000769579 0.0007512017 + 191440 -6250.814 -6254.3574 3.5433914 3723.3227 634.95406 -10612.634 0 169.8192 0.00071848446 0.00069571884 + 191450 -6250.8514 -6254.5398 3.6883651 3725.2401 633.75678 -10613.537 0 176.76715 0.00058736873 0.00056154812 + 191460 -6250.8929 -6254.7084 3.8154767 3728.3057 632.23215 -10615.246 0 182.85905 0.00040027476 0.00037434757 + 191470 -6250.9322 -6254.8542 3.9219906 3731.7146 630.67358 -10617.242 0 187.9638 0.00019902576 0.00017542199 + 191480 -6250.9514 -6254.976 4.0245754 3734.5066 629.39821 -10618.881 0 192.88023 3.2718649e-05 1.2155012e-05 + 191490 -6250.9333 -6255.0591 4.1257299 3735.8384 628.68017 -10619.578 0 197.72813 -5.5673831e-05 -7.3975951e-05 + 191500 -6250.8693 -6255.0705 4.2011888 3735.2343 628.68852 -10618.993 0 201.34454 -4.1409745e-05 -5.8677465e-05 + 191510 -6250.7579 -6254.9774 4.2195438 3732.7362 629.43985 -10617.153 0 202.22421 7.4751401e-05 5.7621558e-05 + 191520 -6250.5972 -6254.7753 4.1781324 3728.9081 630.77891 -10614.462 0 200.23955 0.00026614946 0.00024841791 + 191530 -6250.3799 -6254.5006 4.1207275 3724.7011 632.40303 -10611.605 0 197.48839 0.00048670793 0.00046706729 + 191540 -6250.0969 -6254.2106 4.1137139 3721.223 633.93657 -10609.37 0 197.15225 0.0006824075 0.00065887821 + 191550 -6249.7489 -6253.9441 4.1952213 3719.4642 635.03855 -10608.447 0 201.05854 0.00080487635 0.00077603744 + 191560 -6249.3539 -6253.6962 4.3423041 3720.0285 635.50561 -10609.23 0 208.10758 0.00082427745 0.00079110377 + 191570 -6248.9426 -6253.4369 4.4942624 3722.9225 635.32842 -10611.688 0 215.39027 0.00073885336 0.00070527437 + 191580 -6248.5363 -6253.1617 4.6253915 3727.477 634.67779 -10615.316 0 221.67471 0.00057797007 0.0005486715 + 191590 -6248.1241 -6252.9284 4.8043806 3732.4775 633.8282 -10619.234 0 230.25287 0.00039520942 0.00037150742 + 191600 -6247.6678 -6252.8298 5.1620601 3736.5186 633.05663 -10622.405 0 247.39488 0.00025079976 0.00022811094 + 191610 -6247.1443 -6252.9076 5.7632817 3738.4707 632.56422 -10623.942 0 276.2088 0.00018941653 0.00015970862 + 191620 -6246.5903 -6253.0873 6.4970392 3737.8456 632.44538 -10623.378 0 311.37458 0.00022482107 0.00018306093 + 191630 -6246.0948 -6253.2093 7.1144797 3734.8862 632.69281 -10620.788 0 340.96579 0.00033944036 0.00028845261 + 191640 -6245.7367 -6253.1406 7.4039141 3730.3839 633.21081 -10616.735 0 354.83711 0.00049634776 0.00044529607 + 191650 -6245.5234 -6252.8746 7.3511891 3725.3772 633.82673 -10612.079 0 352.31023 0.00065407758 0.00061156089 + 191660 -6245.388 -6252.5367 7.1486807 3720.8926 634.31806 -10607.747 0 342.60489 0.00077703025 0.00074451743 + 191670 -6245.2453 -6252.2928 7.0475093 3717.7901 634.47479 -10604.558 0 337.75619 0.00084027349 0.00081121636 + 191680 -6245.059 -6252.2251 7.1660824 3716.6778 634.18572 -10603.089 0 343.43888 0.00083099189 0.0007964658 + 191690 -6244.8695 -6252.2708 7.4012465 3717.8218 633.50106 -10603.594 0 354.70926 0.00074942605 0.00070600871 + 191700 -6244.7562 -6252.2786 7.5223676 3721.0327 632.62298 -10605.934 0 360.51406 0.00061084365 0.00056414302 + 191710 -6244.7618 -6252.1476 7.3857684 3725.6017 631.818 -10609.567 0 353.96746 0.00044649556 0.0004066374 + 191720 -6244.8435 -6251.926 7.0824915 3730.4161 631.30039 -10613.642 0 339.43273 0.00029833883 0.00027071314 + 191730 -6244.9038 -6251.7736 6.8697875 3734.2906 631.15805 -10617.222 0 329.23876 0.00020535064 0.00018493863 + 191740 -6244.8754 -6251.8159 6.9404856 3736.3807 631.36034 -10619.557 0 332.62701 0.00018795171 0.00016283459 + 191750 -6244.7835 -6252.0284 7.2448858 3736.4352 631.82803 -10620.292 0 347.21558 0.00024159518 0.00020289238 + 191760 -6244.7278 -6252.2549 7.527121 3734.7497 632.50424 -10619.509 0 360.74187 0.00034446542 0.00029409232 + 191770 -6244.7996 -6252.3427 7.5431472 3731.8974 633.36964 -10617.61 0 361.50994 0.00047297091 0.00042239034 + 191780 -6245.0025 -6252.2735 7.2710066 3728.4554 634.39272 -10615.122 0 348.46743 0.00061240806 0.00057319768 + 191790 -6245.2493 -6252.1758 6.926449 3724.9163 635.46224 -10612.554 0 331.9543 0.0007542415 0.00072848165 + 191800 -6245.4378 -6252.2064 6.7685544 3721.7865 636.36611 -10610.359 0 324.3871 0.00088359407 0.0008623347 + 191810 -6245.5357 -6252.4118 6.8761167 3719.6848 636.84437 -10608.941 0 329.54209 0.00097067437 0.00094143026 + 191820 -6245.6008 -6252.6942 7.0933629 3719.2468 636.69039 -10608.631 0 339.95375 0.00097759781 0.0009340402 + 191830 -6245.7277 -6252.8999 7.1722685 3720.8278 635.84677 -10609.574 0 343.73535 0.00087875887 0.00082476035 + 191840 -6245.9709 -6252.9425 6.9715302 3724.1992 634.44774 -10611.589 0 334.11485 0.00068093529 0.00062662982 + 191850 -6246.3092 -6252.8592 6.5500327 3728.4758 632.78852 -10614.124 0 313.91432 0.00042852156 0.00038246436 + 191860 -6246.6722 -6252.7676 6.0954131 3732.3712 631.23826 -10616.377 0 292.1264 0.00018928011 0.00015324936 + 191870 -6247.0011 -6252.7688 5.7677077 3734.6675 630.13628 -10617.573 0 276.42092 2.877311e-05 -1.3071543e-06 + 191880 -6247.2833 -6252.8881 5.6048031 3734.6542 629.7055 -10617.248 0 268.61361 -1.2392426e-05 -4.1745931e-05 + 191890 -6247.5405 -6253.0947 5.5542498 3732.3425 629.99994 -10615.437 0 266.19081 7.0751531e-05 3.9217193e-05 + 191900 -6247.7965 -6253.3486 5.5520821 3728.4247 630.89281 -10612.666 0 266.08693 0.00024875213 0.00021464696 + 191910 -6248.0653 -6253.6134 5.5481019 3724.056 632.10798 -10609.777 0 265.89617 0.00046666503 0.00043107287 + 191920 -6248.355 -6253.8421 5.4871108 3720.5227 633.29005 -10607.655 0 262.97314 0.00065870164 0.00062381871 + 191930 -6248.6674 -6253.9849 5.3175695 3718.8639 634.09941 -10606.948 0 254.84777 0.00076729519 0.00073608466 + 191940 -6248.9881 -6254.0255 5.0374369 3719.5565 634.31078 -10607.893 0 241.42224 0.00076145783 0.00073613766 + 191950 -6249.2859 -6254.0026 4.7166467 3722.3872 633.88658 -10610.276 0 226.04818 0.00064658306 0.00062671411 + 191960 -6249.5302 -6253.986 4.4558689 3726.5596 632.99581 -10613.541 0 213.55024 0.00046107208 0.00044323708 + 191970 -6249.7124 -6254.0243 4.3119028 3730.9705 631.96408 -10616.959 0 206.65058 0.00026192399 0.00024181124 + 191980 -6249.8539 -6254.108 4.2541451 3734.5305 631.16673 -10619.805 0 203.8825 0.00010613394 8.1679051e-05 + 191990 -6249.9909 -6254.1817 4.1907498 3736.4259 630.90113 -10621.509 0 200.84424 3.4938836e-05 8.088744e-06 + 192000 -6250.1471 -6254.1972 4.0500959 3736.2738 631.28442 -10621.755 0 194.10332 6.5003247e-05 4.0398208e-05 + 192010 -6250.3116 -6254.1682 3.8565524 3734.1702 632.21484 -10620.553 0 184.82763 0.00018684474 0.00016790973 + 192020 -6250.4433 -6254.1723 3.7290668 3730.6586 633.41063 -10618.242 0 178.7178 0.00036823082 0.00035359754 + 192030 -6250.5031 -6254.287 3.7839079 3726.6345 634.51005 -10615.432 0 181.3461 0.00056062071 0.00054431614 + 192040 -6250.4919 -6254.5062 4.0143402 3723.1647 635.19138 -10612.862 0 192.38971 0.00070921316 0.00068530803 + 192050 -6250.4572 -6254.7207 4.2634586 3721.2 635.26704 -10611.188 0 204.32886 0.00076787723 0.00073604189 + 192060 -6250.4565 -6254.7964 4.3399066 3721.2364 634.72112 -10610.754 0 207.99267 0.00071627623 0.00068296939 + 192070 -6250.502 -6254.6924 4.1904071 3723.0917 633.68849 -10611.473 0 200.82782 0.00057059482 0.00054392031 + 192080 -6250.5399 -6254.5049 3.9650809 3725.9677 632.39914 -10612.872 0 190.02893 0.00037871532 0.00036108268 + 192090 -6250.4886 -6254.3852 3.8966036 3728.8118 631.11752 -10614.314 0 186.74711 0.00019961744 0.0001851224 + 192100 -6250.3008 -6254.4022 4.1013891 3730.769 630.09128 -10615.262 0 196.56158 7.8863604e-05 5.8066532e-05 + 192110 -6249.9923 -6254.4834 4.4911705 3731.4504 629.50723 -10615.441 0 215.24209 3.493791e-05 2.645405e-06 + 192120 -6249.6194 -6254.4816 4.8621638 3730.9133 629.45433 -10614.849 0 233.02217 6.1652735e-05 2.0979704e-05 + 192130 -6249.2333 -6254.2964 5.0631053 3729.4639 629.9054 -10613.666 0 242.65242 0.00014017944 0.00010008526 + 192140 -6248.8439 -6253.9496 5.1056898 3727.4651 630.73074 -10612.145 0 244.6933 0.00025065016 0.00021930565 + 192150 -6248.4138 -6253.5657 5.1518657 3725.2603 631.74399 -10610.57 0 246.90631 0.00037720452 0.00035589756 + 192160 -6247.8877 -6253.2784 5.3906725 3723.207 632.76483 -10609.25 0 258.35127 0.00050612003 0.00048786708 + 192170 -6247.248 -6253.1237 5.8756287 3721.7388 633.67226 -10608.535 0 281.5931 0.00062112666 0.00059558158 + 192180 -6246.5581 -6253.0012 6.4430266 3721.3339 634.42141 -10608.756 0 308.78599 0.00070215523 0.0006639821 + 192190 -6245.9384 -6252.7526 6.8142422 3722.3265 635.01265 -10610.092 0 326.57672 0.00073153759 0.00068539868 + 192200 -6245.4763 -6252.3096 6.8332892 3724.652 635.43649 -10612.398 0 327.48956 0.00070442983 0.00066124968 + 192210 -6245.1551 -6251.7762 6.6210951 3727.7453 635.64589 -10615.167 0 317.32003 0.00063425295 0.0006015068 + 192220 -6244.877 -6251.3574 6.4804639 3730.7311 635.588 -10617.676 0 310.58019 0.0005474318 0.00052264984 + 192230 -6244.5555 -6251.2004 6.6449695 3732.7937 635.26873 -10619.263 0 318.46422 0.00047162238 0.00044499195 + 192240 -6244.1834 -6251.2953 7.111896 3733.4628 634.78596 -10619.544 0 340.84196 0.00042597685 0.00038887776 + 192250 -6243.8277 -6251.5064 7.6787301 3732.6718 634.29383 -10618.472 0 368.00783 0.00041758971 0.00036939117 + 192260 -6243.5702 -6251.683 8.1128156 3730.6467 633.92138 -10616.251 0 388.81164 0.00044323942 0.00039147563 + 192270 -6243.4444 -6251.7599 8.3154559 3727.7595 633.70536 -10613.225 0 398.5233 0.00049400952 0.000448396 + 192280 -6243.4109 -6251.7876 8.376671 3724.4385 633.58129 -10609.807 0 401.45708 0.00055938558 0.00052403737 + 192290 -6243.3885 -6251.8751 8.4866337 3721.1623 633.43114 -10606.469 0 406.72711 0.00062720716 0.00059665842 + 192300 -6243.3261 -6252.0795 8.753321 3718.4982 633.15227 -10603.73 0 419.50826 0.00067968232 0.00064243039 + 192310 -6243.2611 -6252.3208 9.0596417 3717.0731 632.70758 -10602.101 0 434.18886 0.00069188917 0.00064005691 + 192320 -6243.3043 -6252.4186 9.1143001 3717.371 632.1329 -10601.922 0 436.8084 0.00064050798 0.00057806424 + 192330 -6243.5413 -6252.2539 8.7125768 3719.4008 631.50668 -10603.161 0 417.55557 0.00052169887 0.00046263877 + 192340 -6243.938 -6251.9155 7.9774959 3722.5037 630.91856 -10605.338 0 382.32637 0.00036393808 0.00032040389 + 192350 -6244.361 -6251.6581 7.2970635 3725.5683 630.47022 -10607.697 0 349.71622 0.000220219 0.00019178351 + 192360 -6244.6981 -6251.6833 6.9852246 3727.5859 630.29219 -10609.561 0 334.77116 0.00014124547 0.00011623754 + 192370 -6244.9484 -6251.9694 7.0210104 3728.1338 630.52377 -10610.627 0 336.48621 0.0001496218 0.00011632827 + 192380 -6245.197 -6252.3149 7.1178461 3727.4542 631.23759 -10611.007 0 341.12712 0.0002330535 0.00018904352 + 192390 -6245.5215 -6252.523 7.0015146 3726.1748 632.36083 -10611.059 0 335.55186 0.00035670249 0.00030875484 + 192400 -6245.9285 -6252.5414 6.6128697 3724.9447 633.66488 -10611.151 0 316.92582 0.00048200195 0.00043921463 + 192410 -6246.3616 -6252.4666 6.1049323 3724.1919 634.84279 -10611.501 0 292.58261 0.00058024577 0.00054726508 + 192420 -6246.7507 -6252.455 5.7042187 3724.0563 635.62954 -10612.141 0 273.37817 0.00063720475 0.00061190176 + 192430 -6247.0574 -6252.6169 5.5595563 3724.4577 635.89814 -10612.973 0 266.44513 0.00065105893 0.00062693324 + 192440 -6247.2935 -6252.9514 5.6579116 3725.2179 635.68586 -10613.855 0 271.15887 0.00062764107 0.00059882583 + 192450 -6247.5074 -6253.3539 5.8465266 3726.1461 635.14337 -10614.643 0 280.19836 0.00057633814 0.00054176735 + 192460 -6247.7448 -6253.6953 5.9505151 3727.0447 634.44083 -10615.181 0 285.18207 0.00050808463 0.00047162207 + 192470 -6248.0131 -6253.9076 5.8945619 3727.6936 633.6926 -10615.294 0 282.50048 0.00043429644 0.00040083416 + 192480 -6248.2798 -6254.0054 5.7255493 3727.893 632.94575 -10614.844 0 274.40045 0.00036511434 0.0003363534 + 192490 -6248.5035 -6254.0418 5.5383386 3727.5561 632.2219 -10613.82 0 265.42826 0.00030750099 0.00028088992 + 192500 -6248.6635 -6254.0546 5.3910908 3726.7646 631.56157 -10612.381 0 258.37132 0.00026450927 0.00023547423 + 192510 -6248.7711 -6254.04 5.2688936 3725.7366 631.03288 -10610.809 0 252.51494 0.00023558124 0.00020101514 + 192520 -6248.8611 -6253.9622 5.1011773 3724.7307 630.7048 -10609.398 0 244.47704 0.00021756861 0.00017846516 + 192530 -6248.969 -6253.7906 4.8215775 3723.9363 630.61017 -10608.337 0 231.07705 0.00020710519 0.00016871018 + 192540 -6249.1043 -6253.5504 4.4460535 3723.3934 630.72402 -10607.668 0 213.07983 0.00020403836 0.00017275614 + 192550 -6249.2332 -6253.3497 4.1165455 3722.9885 630.97068 -10607.309 0 197.28796 0.00021320455 0.0001914527 + 192560 -6249.2928 -6253.3371 4.0442619 3722.5609 631.25841 -10607.156 0 193.82372 0.00024111901 0.00022391158 + 192570 -6249.2401 -6253.5861 4.3460803 3722.0885 631.52451 -10607.199 0 208.28855 0.00028777061 0.00026524237 + 192580 -6249.1002 -6253.9977 4.8975503 3721.8048 631.76095 -10607.563 0 234.71809 0.00034024052 0.00030578666 + 192590 -6248.9607 -6254.3385 5.377827 3722.0899 631.9989 -10608.427 0 257.73565 0.0003767787 0.00033388078 + 192600 -6248.8983 -6254.4159 5.5175597 3723.172 632.26429 -10609.852 0 264.43242 0.00038131425 0.00034164484 + 192610 -6248.9051 -6254.2324 5.3273857 3724.8918 632.54585 -10611.67 0 255.31822 0.00035649912 0.00033007975 + 192620 -6248.8883 -6253.9702 5.0819341 3726.7494 632.80535 -10613.525 0 243.5548 0.00032290394 0.00030922433 + 192630 -6248.7457 -6253.8243 5.0785372 3728.1976 633.01762 -10615.039 0 243.392 0.00030465415 0.00029270932 + 192640 -6248.4427 -6253.8351 5.3924028 3728.9387 633.20202 -10615.976 0 258.4342 0.00031369696 0.00029070831 + 192650 -6248.0312 -6253.8565 5.8252948 3729.0101 633.41683 -10616.283 0 279.18081 0.00034480586 0.00030640118 + 192660 -6247.6018 -6253.6773 6.0755353 3728.6261 633.71621 -10616.02 0 291.17374 0.00038368452 0.00033759391 + 192670 -6247.2043 -6253.2032 5.9988826 3727.9274 634.09499 -10615.226 0 287.50011 0.00042030408 0.00038051479 + 192680 -6246.7921 -6252.5595 5.7673857 3726.8456 634.45816 -10613.863 0 276.40548 0.00045609502 0.00043131202 + 192690 -6246.2332 -6252.0246 5.7913556 3725.2096 634.64275 -10611.877 0 277.55426 0.00049872446 0.00048363279 + 192700 -6245.3951 -6251.8155 6.4203937 3723.0369 634.49044 -10609.343 0 307.70129 0.00054807657 0.00052510912 + 192710 -6244.2781 -6251.8861 7.6079682 3720.7616 633.93453 -10606.582 0 364.61652 0.00058518173 0.00053783862 + 192720 -6243.0977 -6251.9335 8.8357375 3719.1113 633.04641 -10604.091 0 423.45812 0.00057756415 0.00050611253 + 192730 -6242.1668 -6251.6574 9.4906014 3718.6161 632.00356 -10602.277 0 454.84287 0.00050433009 0.00042837655 + 192740 -6241.631 -6251.0489 9.4178862 3719.1515 631.00009 -10601.201 0 451.35795 0.00038137413 0.00032365154 + 192750 -6241.3626 -6250.4227 9.0600712 3719.9848 630.17276 -10600.58 0 434.20945 0.00025855783 0.00022470678 + 192760 -6241.1238 -6250.1621 9.0382908 3720.3173 629.5926 -10600.072 0 433.16561 0.00018802731 0.00016165584 + 192770 -6240.7947 -6250.4146 9.6198607 3719.8635 629.30268 -10599.581 0 461.0377 0.00019122573 0.00014755544 + 192780 -6240.4638 -6250.9779 10.514114 3719.0191 629.34956 -10599.347 0 503.89531 0.00024910742 0.0001750272 + 192790 -6240.3439 -6251.4441 11.100265 3718.5264 629.77789 -10599.748 0 531.98698 0.00031977525 0.00022495006 + 192800 -6240.5871 -6251.4921 10.904965 3718.8955 630.59508 -10600.983 0 522.62712 0.00037038131 0.0002810171 + 192810 -6241.1409 -6251.1258 9.9849281 3719.9966 631.73781 -10602.86 0 478.53378 0.00040096648 0.00034024671 + 192820 -6241.7715 -6250.6751 8.9035438 3721.1403 633.07182 -10604.887 0 426.70778 0.00044165183 0.0004117122 + 192830 -6242.2462 -6250.5306 8.2844224 3721.6267 634.42999 -10606.587 0 397.036 0.0005233548 0.00050393819 + 192840 -6242.5128 -6250.8125 8.2996809 3721.3589 635.65676 -10607.828 0 397.76728 0.00064439536 0.00061030305 + 192850 -6242.7216 -6251.2837 8.5620703 3720.9861 636.61818 -10608.888 0 410.34245 0.00076203116 0.00070436981 + 192860 -6243.0684 -6251.6015 8.5330205 3721.4144 637.18037 -10610.196 0 408.95022 0.00081852871 0.00075049104 + 192870 -6243.6133 -6251.6436 8.03028 3723.1105 637.20859 -10611.963 0 384.85607 0.00077994911 0.0007231646 + 192880 -6244.2447 -6251.5907 7.3459994 3725.7685 636.62112 -10613.98 0 352.06151 0.0006555441 0.00062136833 + 192890 -6244.7964 -6251.7318 6.9353943 3728.5199 635.46492 -10615.717 0 332.38301 0.00048691915 0.00046889487 + 192900 -6245.1848 -6252.2025 7.0176972 3730.4311 633.94835 -10616.582 0 336.32742 0.00032195297 0.00030324731 + 192910 -6245.4577 -6252.8697 7.4120675 3730.9131 632.39787 -10616.181 0 355.22786 0.00019434199 0.00016196429 + 192920 -6245.7381 -6253.4329 7.6947174 3729.8351 631.15268 -10614.421 0 368.77403 0.00011869759 7.2861535e-05 + 192930 -6246.1157 -6253.6487 7.533032 3727.3874 630.44475 -10611.481 0 361.02516 9.7434151e-05 4.9404904e-05 + 192940 -6246.5712 -6253.5014 6.930218 3723.9039 630.31949 -10607.725 0 332.13493 0.00012818154 8.9437309e-05 + 192950 -6247.0005 -6253.1883 6.1878494 3719.8188 630.63312 -10603.64 0 296.55646 0.00020300878 0.00017554866 + 192960 -6247.308 -6252.9487 5.6407016 3715.7521 631.12282 -10599.824 0 270.33407 0.00030138946 0.00027726407 + 192970 -6247.4801 -6252.8948 5.4146131 3712.5359 631.51148 -10596.942 0 259.49864 0.00038783273 0.00035704246 + 192980 -6247.5814 -6252.9817 5.4002483 3711.0267 631.60387 -10595.612 0 258.8102 0.00042248953 0.0003813498 + 192990 -6247.6939 -6253.1012 5.4073008 3711.7547 631.34722 -10596.203 0 259.14819 0.00038077436 0.00033408633 + 193000 -6247.8588 -6253.1887 5.3299054 3714.6309 630.84414 -10598.664 0 255.43897 0.00026900357 0.00022567035 + 193010 -6248.0561 -6253.2633 5.2071844 3718.9043 630.31378 -10602.481 0 249.55749 0.00012529404 9.1523896e-05 + 193020 -6248.2261 -6253.394 5.1679348 3723.4092 630.0122 -10606.815 0 247.67643 4.3282037e-06 -2.0818094e-05 + 193030 -6248.3159 -6253.625 5.309031 3726.9951 630.14106 -10610.761 0 254.43855 -4.6430058e-05 -7.0215755e-05 + 193040 -6248.3214 -6253.9142 5.5928564 3728.9319 630.77828 -10613.624 0 268.04106 -6.9534584e-06 -3.7375039e-05 + 193050 -6248.2921 -6254.1441 5.8520011 3729.0911 631.85077 -10615.086 0 280.46073 0.00010899327 6.9330371e-05 + 193060 -6248.2925 -6254.2049 5.9123101 3727.8407 633.15333 -10615.199 0 283.35107 0.00026365323 0.0002191879 + 193070 -6248.3511 -6254.08 5.7289545 3725.7745 634.40824 -10614.263 0 274.56365 0.00041380052 0.00037207278 + 193080 -6248.4442 -6253.8524 5.4082324 3723.4716 635.34923 -10612.673 0 259.19284 0.00052640879 0.00049245036 + 193090 -6248.5238 -6253.6313 5.1074785 3721.3893 635.79894 -10610.82 0 244.77903 0.00058462855 0.000558377 + 193100 -6248.5529 -6253.4784 4.9254855 3719.8533 635.70556 -10609.037 0 236.0569 0.00058550705 0.00056310725 + 193110 -6248.5196 -6253.3923 4.872642 3719.0693 635.12672 -10607.588 0 233.52435 0.00053473131 0.00051134363 + 193120 -6248.4324 -6253.3373 4.9048868 3719.1261 634.1809 -10606.644 0 235.0697 0.00044212319 0.00041420314 + 193130 -6248.3108 -6253.2784 4.9675101 3719.9869 633 -10606.265 0 238.07096 0.00031925963 0.00028579822 + 193140 -6248.1743 -6253.2041 5.0297913 3721.4663 631.70586 -10606.376 0 241.05582 0.00017941778 0.0001419153 + 193150 -6248.0292 -6253.1344 5.1052141 3723.2073 630.41346 -10606.755 0 244.67051 3.8816651e-05 -5.0450014e-08 + 193160 -6247.8651 -6253.1053 5.2401887 3724.7074 629.24817 -10607.061 0 251.13925 -8.2757731e-05 -0.0001207585 + 193170 -6247.6619 -6253.139 5.4771655 3725.4178 628.35686 -10606.914 0 262.4965 -0.00016314155 -0.00019915074 + 193180 -6247.3975 -6253.2296 5.8321388 3724.8869 627.89455 -10606.011 0 279.50882 -0.00018095218 -0.00021478554 + 193190 -6247.0481 -6253.3534 6.3053033 3722.9064 627.98394 -10604.244 0 302.18551 -0.00012092921 -0.00015340428 + 193200 -6246.5893 -6253.4803 6.8910076 3719.6338 628.66561 -10601.78 0 330.25575 1.8704894e-05 -1.4544754e-05 + 193210 -6246.0091 -6253.5637 7.554555 3715.6587 629.86613 -10599.088 0 362.05666 0.00021955151 0.00018263245 + 193220 -6245.3251 -6253.5298 8.2047406 3711.9455 631.40102 -10596.876 0 393.21721 0.00044222872 0.00039957087 + 193230 -6244.5856 -6253.2996 8.7140139 3709.6026 633.01127 -10595.913 0 417.62444 0.00063493402 0.00058639782 + 193240 -6243.8521 -6252.8291 8.9769508 3709.5331 634.42282 -10596.785 0 430.22585 0.00074893134 0.00069599491 + 193250 -6243.1809 -6252.1305 8.9496075 3712.1115 635.41491 -10599.657 0 428.91541 0.00075428913 0.00069944788 + 193260 -6242.6133 -6251.2728 8.6594682 3717.0007 635.87851 -10604.152 0 415.0103 0.0006506576 0.0005974323 + 193270 -6242.1614 -6250.3895 8.2280895 3723.1512 635.84518 -10609.386 0 394.33622 0.0004711643 0.00042317227 + 193280 -6241.7908 -6249.6779 7.887102 3729.0037 635.47765 -10614.159 0 377.99418 0.00027715493 0.00023504208 + 193290 -6241.4371 -6249.3278 7.8906865 3732.9158 635.02741 -10617.271 0 378.16597 0.0001406199 9.9904956e-05 + 193300 -6241.0653 -6249.3895 8.3242586 3733.7146 634.76317 -10617.867 0 398.94518 0.00011709651 7.1293269e-05 + 193310 -6240.7168 -6249.7129 8.9960608 3731.125 634.8695 -10615.707 0 431.14171 0.00022163126 0.00016909528 + 193320 -6240.4802 -6250.0605 9.5803044 3725.8446 635.33443 -10611.24 0 459.14194 0.00042193355 0.00036872594 + 193330 -6240.4016 -6250.3105 9.9088743 3719.2609 635.88902 -10605.46 0 474.88886 0.00065187263 0.00060589689 + 193340 -6240.4381 -6250.542 10.103899 3713.0138 636.07521 -10599.631 0 484.23555 0.00083490393 0.00079660882 + 193350 -6240.518 -6250.9054 10.387428 3708.6048 635.4517 -10594.962 0 497.82385 0.00090440195 0.00086454685 + 193360 -6240.6479 -6251.4049 10.756934 3707.0888 633.83976 -10592.333 0 515.53263 0.00081796051 0.0007664173 + 193370 -6240.9394 -6251.8242 10.884772 3708.7845 631.46025 -10592.069 0 521.65937 0.0005714216 0.00050907548 + 193380 -6241.4999 -6251.9016 10.40172 3713.0387 628.86829 -10593.809 0 498.50878 0.00021238975 0.00015311872 + 193390 -6242.2866 -6251.6039 9.3173073 3718.2661 626.72102 -10596.591 0 446.53764 -0.00016147204 -0.00020315706 + 193400 -6243.0988 -6251.209 8.1101846 3722.4741 625.52497 -10599.208 0 388.68555 -0.00043410614 -0.00045825599 + 193410 -6243.7429 -6251.0802 7.3373151 3724.133 625.50255 -10600.716 0 351.64531 -0.00052236114 -0.00054514016 + 193420 -6244.1868 -6251.3577 7.1709324 3722.8652 626.59758 -10600.82 0 343.67132 -0.00041258535 -0.00045217867 + 193430 -6244.5477 -6251.8818 7.334091 3719.4929 628.54713 -10599.922 0 351.49079 -0.00015805923 -0.00021942494 + 193440 -6244.96 -6252.3773 7.4172965 3715.4927 630.95991 -10598.83 0 355.47847 0.00015443384 8.2511438e-05 + 193450 -6245.4655 -6252.6754 7.20982 3712.2925 633.39161 -10598.36 0 345.53503 0.00044227355 0.00037790838 + 193460 -6246.0009 -6252.7969 6.79603 3710.8015 635.42125 -10599.02 0 325.70389 0.00064970636 0.00060553039 + 193470 -6246.4531 -6252.8917 6.4385677 3711.2827 636.72165 -10600.896 0 308.57229 0.0007524379 0.00072815747 + 193480 -6246.7295 -6253.1072 6.3776641 3713.492 637.11493 -10603.714 0 305.65345 0.00075022289 0.00073326275 + 193490 -6246.8138 -6253.4632 6.649381 3716.9277 636.60614 -10606.997 0 318.67565 0.0006554634 0.00062912559 + 193500 -6246.7876 -6253.8062 7.0186482 3721.0242 635.3818 -10610.212 0 336.37301 0.00048553852 0.00044046959 + 193510 -6246.7884 -6253.9004 7.112027 3725.1697 633.75846 -10612.829 0 340.84824 0.000263818 0.00020502432 + 193520 -6246.9131 -6253.6149 6.7018111 3728.602 632.08931 -10614.306 0 321.18839 2.6362931e-05 -3.0569635e-05 + 193530 -6247.1422 -6253.0562 5.9139787 3730.3928 630.66891 -10614.118 0 283.43104 -0.0001765781 -0.00021787278 + 193540 -6247.3621 -6252.5145 5.1524453 3729.6972 629.68045 -10611.892 0 246.93409 -0.00029284173 -0.00031709453 + 193550 -6247.4638 -6252.2571 4.7933616 3726.1846 629.19381 -10607.636 0 229.72478 -0.00029033827 -0.00030833117 + 193560 -6247.4268 -6252.3476 4.9208198 3720.3561 629.18465 -10601.888 0 235.8333 -0.00017455213 -0.00019941858 + 193570 -6247.3226 -6252.6359 5.3133114 3713.4973 629.54459 -10595.678 0 254.6437 1.0548335e-05 -2.6271982e-05 + 193580 -6247.2503 -6252.904 5.6537404 3707.2722 630.08462 -10590.261 0 270.95896 0.00019942358 0.0001564279 + 193590 -6247.2594 -6253.0318 5.772358 3703.1734 630.55914 -10586.764 0 276.64378 0.00033049471 0.00029205285 + 193600 -6247.317 -6253.0624 5.7453552 3702.0859 630.72958 -10585.878 0 275.34966 0.00036705748 0.00033957721 + 193610 -6247.3377 -6253.1369 5.7991719 3704.1179 630.4546 -10587.709 0 277.92886 0.0003044622 0.00028448469 + 193620 -6247.2538 -6253.3559 6.1020644 3708.7023 629.76658 -10591.825 0 292.44517 0.00016389442 0.00014041507 + 193630 -6247.0765 -6253.6718 6.5953015 3714.8401 628.89182 -10597.404 0 316.08386 -1.9000519e-05 -5.5717291e-05 + 193640 -6246.8979 -6253.9035 7.0056315 3721.319 628.19063 -10603.413 0 335.74917 -0.00020178949 -0.00025161211 + 193650 -6246.8194 -6253.8818 7.0623813 3726.8357 628.03094 -10608.748 0 338.46894 -0.00033736875 -0.00038979777 + 193660 -6246.8593 -6253.6027 6.7434185 3730.1305 628.65048 -10612.384 0 323.18245 -0.00037770991 -0.00042093985 + 193670 -6246.9377 -6253.2302 6.2924794 3730.2874 630.07452 -10613.592 0 301.57092 -0.00028770281 -0.00031878502 + 193680 -6246.9579 -6252.9346 5.9766683 3727.1523 632.11353 -10612.2 0 286.43548 -6.6054682e-05 -9.207375e-05 + 193690 -6246.8892 -6252.7533 5.864151 3721.5596 634.40907 -10608.722 0 281.04302 0.00024278648 0.00021223494 + 193700 -6246.7664 -6252.6192 5.8528767 3715.1261 636.49491 -10604.24 0 280.50269 0.00055836396 0.00051819349 + 193710 -6246.6368 -6252.4776 5.8407095 3709.7108 637.88216 -10600.07 0 279.91957 0.00079115156 0.00074183204 + 193720 -6246.5302 -6252.3362 5.8060116 3706.8271 638.18255 -10597.346 0 278.25665 0.00087191813 0.00081736981 + 193730 -6246.4616 -6252.2324 5.7708776 3707.2029 637.23788 -10596.673 0 276.57283 0.00077273419 0.0007187725 + 193740 -6246.4313 -6252.2017 5.7704334 3710.5633 635.19081 -10597.956 0 276.55155 0.00051588294 0.00046861043 + 193750 -6246.4121 -6252.2821 5.8700508 3715.7029 632.45744 -10600.442 0 281.32577 0.00016886793 0.00013152769 + 193760 -6246.3512 -6252.5068 6.1555874 3720.8819 629.61353 -10603.002 0 295.01029 -0.0001754908 -0.0002053432 + 193770 -6246.2048 -6252.8583 6.6535764 3724.4317 627.23768 -10604.528 0 318.87672 -0.00042961473 -0.00045916948 + 193780 -6245.9771 -6253.2315 7.2543384 3725.3115 625.75823 -10604.301 0 347.6686 -0.0005405801 -0.00057680531 + 193790 -6245.7254 -6253.4647 7.7392721 3723.3712 625.34736 -10602.183 0 370.90934 -0.00050446475 -0.00054909823 + 193800 -6245.5203 -6253.4324 7.9120571 3719.2639 625.89907 -10598.595 0 379.19017 -0.00035924313 -0.00040793509 + 193810 -6245.3965 -6253.1259 7.7293968 3714.1293 627.10112 -10594.356 0 370.43607 -0.00016240881 -0.00020846718 + 193820 -6245.3319 -6252.6635 7.3315739 3709.2212 628.56721 -10590.452 0 351.37016 3.2545739e-05 -7.1189889e-06 + 193830 -6245.2692 -6252.2216 6.9523455 3705.6046 629.96743 -10587.794 0 333.19541 0.00018903884 0.00015371721 + 193840 -6245.1641 -6251.9281 6.7639613 3703.9869 631.10822 -10587.023 0 324.16698 0.00028790061 0.0002509718 + 193850 -6245.0235 -6251.7881 6.7646421 3704.6578 631.94624 -10588.392 0 324.1996 0.0003228472 0.00028009873 + 193860 -6244.8981 -6251.7097 6.8115999 3707.4602 632.54561 -10591.716 0 326.45009 0.00029920862 0.00025262552 + 193870 -6244.8278 -6251.6212 6.7934666 3711.7653 633.00437 -10596.391 0 325.58104 0.00023643863 0.00019238721 + 193880 -6244.7879 -6251.5683 6.7804317 3716.5514 633.38818 -10601.508 0 324.95633 0.00016670483 0.00012848894 + 193890 -6244.7034 -6251.674 6.9705498 3720.6894 633.70718 -10606.071 0 334.06786 0.00012303155 8.5371226e-05 + 193900 -6244.53 -6251.9817 7.4517453 3723.3543 633.94044 -10609.277 0 357.12945 0.00012167157 7.4216964e-05 + 193910 -6244.3215 -6252.3513 8.0297704 3724.2897 634.07355 -10610.715 0 384.83165 0.0001530816 9.0832783e-05 + 193920 -6244.1996 -6252.5489 8.3493244 3723.716 634.10772 -10610.373 0 400.14647 0.00019181009 0.00012166053 + 193930 -6244.2398 -6252.4669 8.2271126 3721.9871 634.035 -10608.489 0 394.2894 0.00021843924 0.00015377529 + 193940 -6244.3976 -6252.2354 7.8378069 3719.3493 633.81668 -10605.401 0 375.63169 0.0002326337 0.00018101237 + 193950 -6244.5666 -6252.0896 7.5229938 3716.0237 633.39746 -10601.511 0 360.54408 0.00024394025 0.00020134104 + 193960 -6244.6965 -6252.1375 7.4409937 3712.4335 632.7418 -10597.313 0 356.61417 0.00025198735 0.00020926098 + 193970 -6244.8295 -6252.2871 7.4576716 3709.2312 631.85509 -10593.373 0 357.41347 0.00023966903 0.00019244104 + 193980 -6245.0317 -6252.3814 7.3496962 3707.0497 630.77964 -10590.211 0 352.23868 0.00018602359 0.00013717254 + 193990 -6245.3165 -6252.3562 7.0396618 3706.2223 629.58419 -10588.163 0 337.38009 8.3473098e-05 3.7770174e-05 + 194000 -6245.6396 -6252.2713 6.631639 3706.6936 628.36058 -10587.325 0 317.82535 -5.6616335e-05 -9.8164198e-05 + 194010 -6245.9519 -6252.2299 6.2780842 3708.123 627.22605 -10587.579 0 300.88102 -0.0002106792 -0.00025119521 + 194020 -6246.2443 -6252.2871 6.0427748 3710.0473 626.32657 -10588.661 0 289.60367 -0.00035200666 -0.0003946007 + 194030 -6246.547 -6252.4223 5.8753026 3711.9979 625.83382 -10590.254 0 281.57747 -0.00045474792 -0.00049853594 + 194040 -6246.89 -6252.5846 5.6945811 3713.5565 625.9212 -10592.062 0 272.91628 -0.00049438339 -0.00053460088 + 194050 -6247.2669 -6252.7538 5.4868555 3714.4073 626.7088 -10593.87 0 262.9609 -0.00045113831 -0.00048325442 + 194060 -6247.6343 -6252.957 5.3226562 3714.43 628.19089 -10595.578 0 255.09155 -0.00031923981 -0.00034326403 + 194070 -6247.9454 -6253.2301 5.2846946 3713.7998 630.18495 -10597.215 0 253.27222 -0.0001168826 -0.00013802217 + 194080 -6248.1864 -6253.5669 5.3805046 3713.0002 632.34392 -10598.911 0 257.86397 0.00011205768 8.6940326e-05 + 194090 -6248.3861 -6253.9031 5.5169955 3712.6759 634.24302 -10600.822 0 264.40538 0.00030922002 0.00027651547 + 194100 -6248.5925 -6254.1514 5.5589369 3713.3531 635.50858 -10603.013 0 266.41545 0.00042222239 0.00038401235 + 194110 -6248.8335 -6254.2614 5.4278376 3715.1549 635.93116 -10605.347 0 260.13243 0.00042465422 0.00038673308 + 194120 -6249.0945 -6254.2541 5.1596083 3717.6813 635.51533 -10607.451 0 247.27738 0.00032533614 0.00029245083 + 194130 -6249.3315 -6254.1982 4.8667081 3720.141 634.45317 -10608.792 0 233.23996 0.00016219211 0.00013457681 + 194140 -6249.5086 -6254.1474 4.6388538 3721.6684 633.04276 -10608.859 0 222.3199 -1.5006017e-05 -4.0993874e-05 + 194150 -6249.6226 -6254.1016 4.4790314 3721.6495 631.58912 -10607.34 0 214.66032 -0.00016299444 -0.00019129 + 194160 -6249.6967 -6254.0263 4.3295839 3719.9078 630.32249 -10604.257 0 207.49795 -0.00025639041 -0.00028826391 + 194170 -6249.7557 -6253.9029 4.1471873 3716.7202 629.35439 -10599.977 0 198.75649 -0.00029046161 -0.00032437774 + 194180 -6249.8074 -6253.7587 3.9513232 3712.7127 628.67605 -10595.147 0 189.36958 -0.0002778681 -0.00031146496 + 194190 -6249.8417 -6253.6573 3.8156937 3708.6926 628.19247 -10590.542 0 182.86945 -0.0002420821 -0.00027427126 + 194200 -6249.8413 -6253.6607 3.8194712 3705.4612 627.77992 -10586.902 0 183.05049 -0.0002093381 -0.00024100084 + 194210 -6249.7967 -6253.7872 3.9904955 3703.6423 627.35059 -10584.78 0 191.24693 -0.00020074577 -0.00023357226 + 194220 -6249.7141 -6253.9923 4.2781428 3703.5528 626.90254 -10584.448 0 205.03261 -0.00022581139 -0.000260177 + 194230 -6249.6086 -6254.193 4.5843991 3705.1243 626.53438 -10585.852 0 219.71013 -0.00027838345 -0.00031224826 + 194240 -6249.4837 -6254.3209 4.8371941 3707.9036 626.41642 -10588.641 0 231.82548 -0.00033675622 -0.00036704823 + 194250 -6249.3166 -6254.3593 5.0427464 3711.1665 626.72951 -10592.255 0 241.6767 -0.00036986658 -0.0003955005 + 194260 -6249.0664 -6254.3294 5.2630158 3714.1441 627.59535 -10596.069 0 252.23325 -0.0003491422 -0.00037284084 + 194270 -6248.7033 -6254.2384 5.5351379 3716.2839 629.02263 -10599.545 0 265.27487 -0.00026146171 -0.00028821661 + 194280 -6248.2345 -6254.0475 5.81304 3717.4154 630.88382 -10602.347 0 278.59349 -0.00011650727 -0.00014960063 + 194290 -6247.7026 -6253.6998 5.9972136 3717.73 632.92756 -10604.357 0 287.42013 5.5868324e-05 1.7767499e-05 + 194300 -6247.1545 -6253.1895 6.0349997 3717.6005 634.82495 -10605.615 0 289.23105 0.00021700494 0.00017873207 + 194310 -6246.6058 -6252.6036 5.9977607 3717.3624 636.24275 -10606.209 0 287.44634 0.00033321001 0.00029858445 + 194320 -6246.036 -6252.0831 6.0470818 3717.1853 636.92775 -10606.196 0 289.81009 0.00038477212 0.00035273679 + 194330 -6245.4242 -6251.7244 6.3002141 3717.0678 636.77657 -10605.569 0 301.94161 0.00036747067 0.00033285417 + 194340 -6244.7956 -6251.5103 6.7147861 3716.8869 635.86293 -10604.26 0 321.81023 0.00028992163 0.00024854814 + 194350 -6244.2244 -6251.3409 7.1164439 3716.4267 634.40725 -10602.175 0 341.05992 0.00017153336 0.00012484159 + 194360 -6243.7804 -6251.1447 7.3643677 3715.3959 632.69779 -10599.238 0 352.94182 4.1125931e-05 -4.6668078e-06 + 194370 -6243.4661 -6250.9689 7.5027748 3713.508 630.99665 -10595.474 0 359.57507 -6.8448954e-05 -0.00010852559 + 194380 -6243.2173 -6250.9504 7.7330495 3710.6632 629.47305 -10591.087 0 370.61112 -0.00013243342 -0.00016898093 + 194390 -6242.9727 -6251.1786 8.2059718 3707.1521 628.19135 -10586.522 0 393.27621 -0.0001478468 -0.00018883913 + 194400 -6242.7439 -6251.5785 8.8346217 3703.7011 627.14821 -10582.428 0 423.40464 -0.00013754815 -0.00018916712 + 194410 -6242.6106 -6251.9406 9.3299234 3701.2363 626.32717 -10579.504 0 447.14228 -0.00013787952 -0.00019799063 + 194420 -6242.6444 -6252.0753 9.4308516 3700.4677 625.73974 -10578.283 0 451.97933 -0.00017615491 -0.00023533206 + 194430 -6242.8374 -6251.9475 9.1100482 3701.5504 625.43905 -10578.937 0 436.60463 -0.00025304262 -0.00030217128 + 194440 -6243.1017 -6251.6857 8.5839656 3704.0279 625.50885 -10581.222 0 411.3918 -0.00034098501 -0.00037878558 + 194450 -6243.3357 -6251.4713 8.1356495 3707.0733 626.03912 -10584.584 0 389.90597 -0.00039870268 -0.00043291958 + 194460 -6243.5013 -6251.3946 7.8932627 3709.8704 627.09705 -10588.362 0 378.28944 -0.00039243448 -0.00043335843 + 194470 -6243.6487 -6251.3926 7.7439141 3711.9051 628.69224 -10591.99 0 371.13182 -0.0003110549 -0.00036233231 + 194480 -6243.8617 -6251.3365 7.4748081 3713.0143 630.73413 -10595.085 0 358.23475 -0.00016672817 -0.0002217634 + 194490 -6244.1688 -6251.1956 7.026872 3713.2526 632.99808 -10597.446 0 336.76713 1.5603822e-05 -3.2488939e-05 + 194500 -6244.509 -6251.1065 6.5974982 3712.7831 635.13563 -10599.025 0 316.18913 0.00020739411 0.00017079325 + 194510 -6244.7934 -6251.2583 6.4649324 3711.9098 636.74942 -10599.918 0 309.83584 0.00037666709 0.0003459924 + 194520 -6244.9935 -6251.7089 6.7153375 3711.1281 637.51088 -10600.348 0 321.83665 0.00048596447 0.00045157439 + 194530 -6245.1672 -6252.3216 7.1543121 3711.0042 637.26831 -10600.594 0 342.87478 0.00049995409 0.00045746766 + 194540 -6245.4018 -6252.8732 7.4714387 3711.8764 636.09837 -10600.848 0 358.07327 0.00040313513 0.00035695284 + 194550 -6245.7356 -6253.2152 7.4795927 3713.596 634.27903 -10601.09 0 358.46405 0.00021405152 0.00017264168 + 194560 -6246.129 -6253.3478 7.2188058 3715.5229 632.19536 -10601.066 0 345.96568 -1.7891682e-05 -4.9760708e-05 + 194570 -6246.5023 -6253.3701 6.8677963 3716.803 630.21908 -10600.392 0 329.14334 -0.00023334427 -0.00025850318 + 194580 -6246.8005 -6253.3708 6.5702457 3716.7557 628.61386 -10598.74 0 314.88304 -0.00038815446 -0.00041432001 + 194590 -6247.0276 -6253.3586 6.3309714 3715.1473 627.49819 -10596.004 0 303.41567 -0.00046722189 -0.00050063487 + 194600 -6247.2288 -6253.2831 6.0542989 3712.2246 626.86454 -10592.372 0 290.15598 -0.00048128243 -0.00052221783 + 194610 -6247.4444 -6253.1088 5.6643514 3708.5474 626.63109 -10588.287 0 271.4675 -0.00045286879 -0.00049620597 + 194620 -6247.6793 -6252.8657 5.1863807 3704.7683 626.69701 -10584.331 0 248.56046 -0.00040271769 -0.00044213132 + 194630 -6247.9073 -6252.6373 4.7299888 3701.4827 626.97818 -10581.098 0 226.6876 -0.0003439313 -0.00037586363 + 194640 -6248.0951 -6252.5101 4.4150093 3699.1775 627.41416 -10579.102 0 211.59202 -0.00028377625 -0.00030872068 + 194650 -6248.222 -6252.5342 4.3121876 3698.2262 627.95327 -10578.714 0 206.66422 -0.0002284629 -0.0002497986 + 194660 -6248.2849 -6252.7149 4.4300927 3698.873 628.53483 -10580.123 0 212.3149 -0.00018619007 -0.00020817061 + 194670 -6248.2942 -6253.0247 4.7304299 3701.183 629.08739 -10583.295 0 226.70874 -0.0001663587 -0.00019243368 + 194680 -6248.2701 -6253.4117 5.1416461 3704.975 629.54943 -10587.936 0 246.41653 -0.00017575518 -0.00020742804 + 194690 -6248.2389 -6253.8031 5.5642359 3709.7734 629.90085 -10593.477 0 266.66941 -0.00021393325 -0.00025006881 + 194700 -6248.2272 -6254.1128 5.8855899 3714.8134 630.18307 -10599.109 0 282.07049 -0.00026989735 -0.00030682613 + 194710 -6248.2489 -6254.2678 6.0189009 3719.1286 630.4906 -10603.887 0 288.4595 -0.0003217347 -0.00035475326 + 194720 -6248.2916 -6254.2426 5.9510291 3721.7359 630.93333 -10606.912 0 285.20671 -0.00034079168 -0.00036695212 + 194730 -6248.3182 -6254.0732 5.7550149 3721.9028 631.58525 -10607.561 0 275.81261 -0.00030134611 -0.00032190583 + 194740 -6248.2906 -6253.8276 5.5369144 3719.4291 632.43984 -10605.697 0 265.36001 -0.00019370869 -0.00021383903 + 194750 -6248.2007 -6253.555 5.3542245 3714.8126 633.38575 -10601.753 0 256.60448 -3.4208656e-05 -5.9367311e-05 + 194760 -6248.0766 -6253.2655 5.1889104 3709.1709 634.20911 -10596.645 0 248.6817 0.00013540257 0.00010368487 + 194770 -6247.9552 -6252.9606 5.0053793 3703.9146 634.62817 -10591.503 0 239.88586 0.00026074524 0.00022589709 + 194780 -6247.8452 -6252.6741 4.8289596 3700.3125 634.36304 -10587.35 0 231.43084 0.00029343297 0.00026081458 + 194790 -6247.7115 -6252.4738 4.7622927 3699.1365 633.22838 -10584.839 0 228.23579 0.00020661205 0.00017919642 + 194800 -6247.4899 -6252.417 4.9271518 3700.4975 631.21904 -10584.134 0 236.13676 2.57789e-06 -2.1153697e-05 + 194810 -6247.1135 -6252.503 5.389561 3703.8654 628.5546 -10584.923 0 258.298 -0.00028701651 -0.00031181732 + 194820 -6246.536 -6252.6634 6.1274175 3708.213 625.66227 -10586.539 0 293.66023 -0.00060604443 -0.00063687356 + 194830 -6245.7509 -6252.7927 7.0417837 3712.2311 623.10047 -10588.124 0 337.48178 -0.00088335718 -0.00092270406 + 194840 -6244.8116 -6252.7881 7.9764676 3714.6077 621.44024 -10588.836 0 382.27708 -0.0010476165 -0.001094023 + 194850 -6243.8297 -6252.5815 8.7517722 3714.3512 621.12492 -10588.058 0 419.43403 -0.0010456466 -0.0010939289 + 194860 -6242.9225 -6252.174 9.2515242 3711.0942 622.33811 -10585.606 0 443.38495 -0.00085818974 -0.00090261137 + 194870 -6242.1417 -6251.6537 9.5119679 3705.295 624.9276 -10581.876 0 455.86687 -0.00050784636 -0.00054749764 + 194880 -6241.469 -6251.1447 9.6756476 3698.2809 628.4257 -10577.851 0 463.71132 -5.9222458e-05 -0.00010040414 + 194890 -6240.8895 -6250.7014 9.8119738 3692.0518 632.16171 -10574.915 0 470.24484 0.0003889265 0.00033771542 + 194900 -6240.4479 -6250.2608 9.8129901 3688.7605 635.42291 -10574.444 0 470.29355 0.0007246607 0.00066145797 + 194910 -6240.2139 -6249.7255 9.5115634 3689.9514 637.61929 -10577.296 0 455.84749 0.00085793553 0.00079082685 + 194920 -6240.1991 -6249.1029 8.9038341 3695.8859 638.42086 -10583.41 0 426.72169 0.0007564803 0.00069778946 + 194930 -6240.3207 -6248.5607 8.2399586 3705.3261 637.83732 -10591.724 0 394.90505 0.00046142051 0.00041764172 + 194940 -6240.4524 -6248.34 7.8875739 3715.9081 636.20866 -10600.457 0 378.0168 7.1549985e-05 3.7855529e-05 + 194950 -6240.5148 -6248.5969 8.0820823 3724.9228 634.09795 -10607.618 0 387.33873 -0.00029531863 -0.00033140997 + 194960 -6240.5334 -6249.295 8.7615522 3730.1355 632.11573 -10611.546 0 419.90274 -0.00054300782 -0.00059184143 + 194970 -6240.6236 -6250.2276 9.6039191 3730.3368 630.7361 -10611.3 0 460.27369 -0.00062155871 -0.00068317737 + 194980 -6240.91 -6251.1438 10.233866 3725.513 630.16845 -10606.825 0 490.46428 -0.00053069122 -0.00059479671 + 194990 -6241.4352 -6251.8797 10.444488 3716.7107 630.32401 -10598.914 0 500.55848 -0.00030977926 -0.00036396497 + 195000 -6242.1342 -6252.3917 10.257481 3705.7596 630.87762 -10589.029 0 491.59606 -2.5743879e-05 -6.4807683e-05 + 195010 -6242.892 -6252.6892 9.797112 3694.9452 631.39144 -10579.026 0 469.53258 0.00023785291 0.00020962025 + 195020 -6243.6173 -6252.7679 9.1505813 3686.5839 631.45325 -10570.805 0 438.5472 0.00039674872 0.00037076911 + 195030 -6244.2651 -6252.6226 8.3574413 3682.4859 630.79223 -10565.901 0 400.53548 0.00038921329 0.00035897366 + 195040 -6244.8218 -6252.2952 7.4733794 3683.4643 629.35449 -10565.114 0 358.16627 0.0001970268 0.00016077661 + 195050 -6245.2904 -6251.8851 6.594699 3689.1062 627.33016 -10568.321 0 316.05498 -0.0001469596 -0.00018688248 + 195060 -6245.6847 -6251.5161 5.831454 3697.8872 625.12466 -10574.528 0 279.47599 -0.00056661582 -0.00060575047 + 195070 -6246.0192 -6251.3013 5.2820757 3707.5633 623.27272 -10582.137 0 253.1467 -0.00096066488 -0.00099475199 + 195080 -6246.2956 -6251.3253 5.0296633 3715.7246 622.30702 -10589.357 0 241.04969 -0.0012263181 -0.0012537654 + 195090 -6246.5012 -6251.6285 5.1273436 3720.4003 622.61148 -10594.64 0 245.73107 -0.0012854596 -0.0013088444 + 195100 -6246.6293 -6252.172 5.5427298 3720.5927 624.30084 -10597.066 0 265.63871 -0.0011089884 -0.0011336845 + 195110 -6246.7053 -6252.8111 6.1058032 3716.5771 627.16282 -10596.551 0 292.62435 -0.00073076968 -0.00076063368 + 195120 -6246.783 -6253.3416 6.55866 3709.8093 630.67951 -10593.83 0 314.32779 -0.00024180828 -0.00027564805 + 195130 -6246.9007 -6253.6173 6.7165388 3702.4398 634.12908 -10590.186 0 321.89423 0.00023651698 0.00020350161 + 195140 -6247.0444 -6253.6399 6.5954669 3696.6453 636.75638 -10587.042 0 316.09178 0.00058866183 0.00055943151 + 195150 -6247.1626 -6253.5317 6.3690751 3694.0474 637.97459 -10585.554 0 305.24182 0.00073472273 0.00070670486 + 195160 -6247.2215 -6253.4172 6.1956859 3695.36 637.5329 -10586.31 0 296.93203 0.00064570131 0.00061295819 + 195170 -6247.2421 -6253.3254 6.0832838 3700.2596 635.58703 -10589.172 0 291.54509 0.00034595943 0.00030534504 + 195180 -6247.2843 -6253.1979 5.9135838 3707.441 632.64547 -10593.284 0 283.41212 -9.2659476e-05 -0.00013729084 + 195190 -6247.388 -6252.9857 5.5977256 3714.8678 629.41297 -10597.266 0 268.27442 -0.00056432844 -0.00060440517 + 195200 -6247.5287 -6252.7379 5.2091636 3720.2562 626.59076 -10599.585 0 249.65235 -0.00095280648 -0.00098240471 + 195210 -6247.6322 -6252.5816 4.9494114 3721.7438 624.70237 -10599.028 0 237.20357 -0.0011637028 -0.0011852081 + 195220 -6247.6385 -6252.6088 4.970295 3718.5309 623.98948 -10595.129 0 238.20443 -0.001154815 -0.001177231 + 195230 -6247.5546 -6252.7862 5.2316344 3711.1966 624.38766 -10588.37 0 250.72928 -0.00094953126 -0.0009808671 + 195240 -6247.4474 -6252.9805 5.5331298 3701.5242 625.57374 -10580.078 0 265.17863 -0.00062566973 -0.00066632493 + 195250 -6247.3872 -6253.07 5.6827387 3691.9193 627.07159 -10572.061 0 272.34872 -0.00028556041 -0.00032827185 + 195260 -6247.3916 -6253.0387 5.6470621 3684.6884 628.39205 -10566.119 0 270.6389 -2.2075554e-05 -5.8021964e-05 + 195270 -6247.4145 -6252.9757 5.5612172 3681.455 629.16974 -10563.6 0 266.52473 0.000105357 7.9598574e-05 + 195280 -6247.3855 -6252.9863 5.6007408 3682.8682 629.25733 -10565.112 0 268.41892 7.8873865e-05 5.9017512e-05 + 195290 -6247.266 -6253.0903 5.8242627 3688.59 628.75125 -10570.432 0 279.13135 -8.239299e-05 -0.00010446564 + 195300 -6247.0786 -6253.1898 6.1111992 3697.4518 627.94374 -10578.585 0 292.88296 -0.00033239404 -0.00036177783 + 195310 -6246.8877 -6253.138 6.2503718 3707.6827 627.21863 -10588.039 0 299.55289 -0.00060840116 -0.00064290339 + 195320 -6246.7412 -6252.8659 6.1247561 3717.1876 626.92802 -10596.982 0 293.53268 -0.00084054959 -0.00087289503 + 195330 -6246.6215 -6252.4644 5.8428432 3723.9175 627.29577 -10603.678 0 280.02183 -0.00096321966 -0.00098825824 + 195340 -6246.4533 -6252.1353 5.6819939 3726.3438 628.37899 -10606.858 0 272.31303 -0.00093008136 -0.00095045675 + 195350 -6246.1652 -6252.036 5.8708087 3723.9126 630.08199 -10606.031 0 281.3621 -0.00072957902 -0.00075406767 + 195360 -6245.7485 -6252.1503 6.401805 3717.2615 632.1887 -10601.601 0 306.81042 -0.00039316554 -0.0004288011 + 195370 -6245.2613 -6252.3035 7.0421298 3708.0536 634.38555 -10594.743 0 337.49837 9.6524952e-06 -3.5506519e-05 + 195380 -6244.7766 -6252.3034 7.5267891 3698.4936 636.27651 -10587.074 0 360.72596 0.00038865202 0.00034386672 + 195390 -6244.3168 -6252.0879 7.7711359 3690.7384 637.41521 -10580.242 0 372.43644 0.00065589844 0.00062187741 + 195400 -6243.827 -6251.7626 7.9355621 3686.4074 637.37909 -10575.549 0 380.31666 0.00074580211 0.00072412691 + 195410 -6243.2152 -6251.5019 8.286638 3686.3052 635.88966 -10573.697 0 397.14219 0.00062631644 0.00060636707 + 195420 -6242.4403 -6251.3853 8.9450032 3690.3437 632.94971 -10574.679 0 428.69474 0.00030177857 0.00026705587 + 195430 -6241.5876 -6251.2981 9.7104823 3697.5717 628.93831 -10577.808 0 465.3808 -0.00018658585 -0.00024550429 + 195440 -6240.8511 -6251.0022 10.151112 3706.2404 624.59442 -10581.837 0 486.49825 -0.00075773073 -0.0008334014 + 195450 -6240.3936 -6250.3672 9.9735592 3713.9539 620.85309 -10585.174 0 477.98892 -0.0012902724 -0.0013624384 + 195460 -6240.1935 -6249.5675 9.3739544 3718.0984 618.58141 -10586.247 0 449.25249 -0.0016397862 -0.0016931082 + 195470 -6240.0628 -6248.9959 8.9330258 3716.6895 618.33496 -10584.02 0 428.12072 -0.0016845285 -0.0017233416 + 195480 -6239.8492 -6248.9064 9.0571608 3709.3711 620.22728 -10578.505 0 434.06997 -0.0013832649 -0.0014260671 + 195490 -6239.596 -6249.1772 9.581233 3697.8783 623.90514 -10570.961 0 459.18644 -0.0008054277 -0.00086456341 + 195500 -6239.477 -6249.4804 10.003344 3685.5055 628.5937 -10563.58 0 479.41639 -0.00010853537 -0.00017841914 + 195510 -6239.6047 -6249.6267 10.021991 3675.9041 633.23513 -10558.766 0 480.31004 0.00052080702 0.00045570128 + 195520 -6239.9413 -6249.6915 9.7502298 3671.9184 636.74924 -10558.359 0 467.28572 0.00092577494 0.00087526511 + 195530 -6240.3757 -6249.8657 9.4899897 3674.8605 638.35268 -10563.079 0 454.81355 0.0010165859 0.00097775661 + 195540 -6240.8434 -6250.2527 9.4093409 3684.2544 637.80697 -10572.314 0 450.94841 0.00078554386 0.0007477697 + 195550 -6241.3737 -6250.7851 9.4114076 3697.9854 635.49264 -10584.263 0 451.04746 0.00030495251 0.00025991438 + 195560 -6242.0445 -6251.282 9.2375089 3712.8127 632.27964 -10596.374 0 442.71326 -0.00029052199 -0.00034219528 + 195570 -6242.8892 -6251.584 8.6947977 3725.1728 629.23427 -10605.991 0 416.70349 -0.00083711308 -0.00088702698 + 195580 -6243.8348 -6251.6685 7.8336917 3732.0961 627.26401 -10611.029 0 375.43446 -0.0011868554 -0.0012263728 + 195590 -6244.734 -6251.6607 6.9267672 3731.9893 626.83586 -10610.486 0 331.96955 -0.0012521355 -0.0012796518 + 195600 -6245.4638 -6251.7281 6.2643239 3725.0475 627.87133 -10604.647 0 300.22155 -0.0010328223 -0.0010544791 + 195610 -6245.994 -6251.952 5.9579969 3713.1724 629.82827 -10594.953 0 285.54064 -0.0006140628 -0.0006379859 + 195620 -6246.3738 -6252.2934 5.9196466 3699.4169 631.90357 -10583.614 0 283.70268 -0.00013612661 -0.00016620063 + 195630 -6246.6715 -6252.6607 5.9891941 3687.1286 633.28006 -10573.069 0 287.03578 0.00025083874 0.00021637923 + 195640 -6246.9291 -6252.9872 6.0581055 3679.0693 633.3607 -10565.417 0 290.33841 0.00043061983 0.00039604337 + 195650 -6247.1553 -6253.2457 6.0904811 3676.7699 631.93754 -10561.953 0 291.89003 0.00035037223 0.00031880238 + 195660 -6247.3443 -6253.4209 6.0766043 3680.2531 629.24627 -10562.92 0 291.22497 3.0037451e-05 2.1780039e-06 + 195670 -6247.4915 -6253.4961 6.0046334 3688.134 625.88745 -10567.518 0 287.77573 -0.00044737422 -0.00047261554 + 195680 -6247.5947 -6253.4703 5.8756506 3698.0459 622.64706 -10574.163 0 281.59414 -0.00096018859 -0.00098494525 + 195690 -6247.653 -6253.3697 5.7166975 3707.2906 620.28574 -10580.946 0 273.97622 -0.0013807581 -0.0014077053 + 195700 -6247.6735 -6253.2292 5.5556688 3713.5565 619.36273 -10586.148 0 266.25882 -0.0016081097 -0.0016393407 + 195710 -6247.6767 -6253.0653 5.3885427 3715.4908 620.1269 -10588.683 0 258.2492 -0.0015914777 -0.0016268339 + 195720 -6247.6867 -6252.8792 5.1925088 3712.9609 622.47616 -10588.316 0 248.85416 -0.0013386553 -0.0013752599 + 195730 -6247.7115 -6252.6874 4.9759143 3706.9744 625.98027 -10585.642 0 238.47373 -0.00090952421 -0.00094361994 + 195740 -6247.7357 -6252.534 4.7982691 3699.3557 629.96673 -10581.856 0 229.95998 -0.00040005738 -0.00042961512 + 195750 -6247.7343 -6252.4683 4.7340073 3692.2919 633.66189 -10578.422 0 226.88019 7.8396933e-05 5.2683103e-05 + 195760 -6247.6894 -6252.5178 4.8283982 3687.8156 636.35898 -10576.692 0 231.40393 0.00042245522 0.00039807058 + 195770 -6247.595 -6252.6796 5.0845959 3687.2987 637.574 -10577.552 0 243.68237 0.00055976977 0.00053378254 + 195780 -6247.4573 -6252.9189 5.4615219 3691.0834 637.15274 -10581.155 0 261.74678 0.0004659074 0.00043624693 + 195790 -6247.2964 -6253.1628 5.8664196 3698.361 635.29996 -10586.824 0 281.15174 0.00016969996 0.00013649786 + 195800 -6247.1412 -6253.3165 6.175318 3707.3313 632.51628 -10593.164 0 295.95589 -0.00025386617 -0.00028766616 + 195810 -6247.0096 -6253.3131 6.3034939 3715.6106 629.45619 -10598.38 0 302.0988 -0.00070097143 -0.00073122644 + 195820 -6246.8885 -6253.1616 6.273115 3720.8245 626.7539 -10600.74 0 300.64287 -0.0010637525 -0.0010885987 + 195830 -6246.7402 -6252.9372 6.1970009 3721.2693 624.87632 -10599.083 0 296.99506 -0.0012584526 -0.0012805913 + 195840 -6246.5375 -6252.7148 6.1772768 3716.4475 624.04168 -10593.204 0 296.04977 -0.0012491058 -0.0012741115 + 195850 -6246.2921 -6252.5116 6.2195467 3707.2647 624.20533 -10583.982 0 298.07558 -0.0010571037 -0.001088826 + 195860 -6246.045 -6252.2997 6.2546958 3695.7829 625.09637 -10573.179 0 299.76012 -0.00075169243 -0.00078911403 + 195870 -6245.8281 -6252.0675 6.2393571 3684.6318 626.2949 -10562.994 0 299.025 -0.00042592457 -0.00046445968 + 195880 -6245.6366 -6251.8551 6.2185446 3676.3194 627.34381 -10555.518 0 298.02755 -0.00016924403 -0.00020484074 + 195890 -6245.4381 -6251.7253 6.2872437 3672.655 627.87473 -10552.255 0 301.32 -4.6271061e-05 -7.8227236e-05 + 195900 -6245.2021 -6251.7087 6.5065749 3674.3832 627.71254 -10553.804 0 311.83158 -8.4562933e-05 -0.00011513058 + 195910 -6244.9169 -6251.7836 6.8666852 3681.0473 626.92599 -10559.757 0 329.09009 -0.00026990184 -0.00030232843 + 195920 -6244.5874 -6251.8979 7.3104978 3691.1007 625.81153 -10568.81 0 350.36007 -0.00054915607 -0.00058637751 + 195930 -6244.2327 -6251.985 7.7523341 3702.28 624.81605 -10579.081 0 371.53535 -0.00084297915 -0.00088666774 + 195940 -6243.8924 -6251.9602 8.0678689 3712.1545 624.41517 -10588.53 0 386.65755 -0.0010668977 -0.0011156794 + 195950 -6243.6149 -6251.7497 8.1348686 3718.6692 624.97227 -10595.391 0 389.86855 -0.0011525387 -0.0012012609 + 195960 -6243.4153 -6251.3677 7.9524726 3720.5473 626.61851 -10598.534 0 381.12711 -0.0010617987 -0.0011049019 + 195970 -6243.252 -6250.949 7.6970596 3717.559 629.19801 -10597.706 0 368.88629 -0.00079516901 -0.00083204391 + 195980 -6243.0629 -6250.6672 7.6042985 3710.6407 632.29388 -10593.602 0 364.44065 -0.00039676222 -0.000433042 + 195990 -6242.8241 -6250.6126 7.7885663 3701.7355 635.31573 -10587.664 0 373.2718 4.8624396e-05 5.6223436e-06 + 196000 -6242.5726 -6250.7394 8.1668118 3693.29 637.62459 -10581.654 0 391.39944 0.00043236283 0.00037986434 + 196010 -6242.3844 -6250.9002 8.5157817 3687.5456 638.67797 -10577.124 0 408.12404 0.00065102946 0.00059407717 + 196020 -6242.3267 -6250.9391 8.612436 3685.8677 638.1636 -10574.97 0 412.75626 0.00063872975 0.00058830102 + 196030 -6242.4027 -6250.8041 8.4014411 3688.3299 636.07703 -10575.211 0 402.6442 0.0003906199 0.00035650028 + 196040 -6242.5302 -6250.608 8.0778175 3693.7167 632.72198 -10577.047 0 387.13434 -3.4113839e-05 -5.2154415e-05 + 196050 -6242.5957 -6250.5519 7.9562049 3699.9996 628.65302 -10579.204 0 381.30598 -0.00053367968 -0.00054875804 + 196060 -6242.5632 -6250.7395 8.1763693 3705.1018 624.58519 -10580.426 0 391.85749 -0.00099873076 -0.0010283745 + 196070 -6242.5369 -6251.0614 8.5245159 3707.5617 621.26758 -10579.891 0 408.54263 -0.0013416002 -0.0013930612 + 196080 -6242.6927 -6251.2894 8.5967786 3706.7868 619.31565 -10577.392 0 412.00587 -0.0015081659 -0.0015710227 + 196090 -6243.1242 -6251.2989 8.1747034 3702.9509 619.04255 -10573.292 0 391.77766 -0.0014775236 -0.0015317295 + 196100 -6243.7555 -6251.1886 7.4331082 3696.8276 620.36565 -10568.382 0 356.23625 -0.0012619961 -0.0012944462 + 196110 -6244.4102 -6251.1882 6.7779532 3689.7175 622.83822 -10563.744 0 324.83755 -0.00091120979 -0.000925753 + 196120 -6244.9573 -6251.4566 6.4992419 3683.3516 625.7893 -10560.597 0 311.48014 -0.00051124303 -0.00052439947 + 196130 -6245.3927 -6251.9569 6.5642195 3679.5736 628.51216 -10560.043 0 314.59423 -0.00016849283 -0.00019625178 + 196140 -6245.8069 -6252.4902 6.683388 3679.7928 630.44498 -10562.728 0 320.30545 2.1527727e-05 -2.5117384e-05 + 196150 -6246.2926 -6252.8386 6.5460298 3684.4179 631.30382 -10568.56 0 313.72248 8.595061e-06 -4.7510906e-05 + 196160 -6246.8675 -6252.9126 6.0451474 3692.5589 631.1355 -10576.607 0 289.71738 -0.00019087026 -0.0002406341 + 196170 -6247.4584 -6252.8165 5.3581084 3702.1804 630.2727 -10585.27 0 256.79062 -0.00049722715 -0.00052985161 + 196180 -6247.9491 -6252.7823 4.8332024 3710.708 629.20698 -10592.697 0 231.63418 -0.00079673966 -0.00081420981 + 196190 -6248.2607 -6252.9957 4.7350129 3715.8893 628.42729 -10597.312 0 226.92838 -0.00098535569 -0.0010006547 + 196200 -6248.4116 -6253.4294 5.0178221 3716.5537 628.27221 -10598.255 0 240.48219 -0.0010080108 -0.0010342875 + 196210 -6248.5097 -6253.8444 5.3346772 3712.9109 628.82684 -10595.582 0 255.66766 -0.00087465206 -0.00091398411 + 196220 -6248.6646 -6253.9844 5.3198157 3706.2763 629.88758 -10590.148 0 254.95542 -0.00064652852 -0.00068863192 + 196230 -6248.8951 -6253.7932 4.8981046 3698.4717 631.01884 -10583.284 0 234.74466 -0.00040510911 -0.00043725754 + 196240 -6249.1216 -6253.4456 4.3240081 3691.2807 631.7001 -10576.426 0 207.23073 -0.00022426333 -0.00024259315 + 196250 -6249.2472 -6253.1858 3.9386638 3686.1368 631.5129 -10570.836 0 188.76287 -0.00015603657 -0.00016796815 + 196260 -6249.2397 -6253.1408 3.9010343 3683.9644 630.29173 -10567.397 0 186.95945 -0.00022554702 -0.00024253954 + 196270 -6249.1494 -6253.263 4.1135992 3685.043 628.18383 -10566.49 0 197.14675 -0.00042732794 -0.00045531566 + 196280 -6249.0621 -6253.4163 4.3542021 3688.8971 625.60631 -10567.92 0 208.6778 -0.00072238315 -0.0007576011 + 196290 -6249.0326 -6253.5097 4.4771706 3694.3252 623.1236 -10570.959 0 214.57114 -0.0010415386 -0.0010742843 + 196300 -6249.0431 -6253.569 4.5259 3699.6713 621.28968 -10574.53 0 216.90652 -0.0013003096 -0.0013232192 + 196310 -6249.0191 -6253.693 4.6739195 3703.3197 620.50593 -10577.519 0 224.00045 -0.0014242153 -0.0014384083 + 196320 -6248.8908 -6253.9313 5.0404593 3704.2529 620.93422 -10579.118 0 241.56709 -0.0013756096 -0.0013896463 + 196330 -6248.6536 -6254.1921 5.5385127 3702.419 622.47659 -10579.088 0 265.4366 -0.0011690463 -0.0011915092 + 196340 -6248.3732 -6254.2794 5.9061658 3698.7105 624.80921 -10577.799 0 283.05661 -0.00086594359 -0.00089821459 + 196350 -6248.1293 -6254.0413 5.9119855 3694.56 627.45618 -10576.058 0 283.33552 -0.00055041551 -0.00058619507 + 196360 -6247.9471 -6253.4959 5.5487859 3691.3846 629.89623 -10574.777 0 265.92896 -0.00029933524 -0.00033095 + 196370 -6247.7856 -6252.8219 5.0363132 3690.1551 631.68849 -10574.665 0 241.36839 -0.00016134508 -0.00018646683 + 196380 -6247.584 -6252.2289 4.6448972 3691.2149 632.58258 -10576.026 0 222.60954 -0.0001505051 -0.00017320203 + 196390 -6247.3155 -6251.8304 4.5148799 3694.2905 632.57071 -10578.692 0 216.37838 -0.00025022652 -0.00027631654 + 196400 -6246.9965 -6251.6196 4.6230477 3698.5865 631.85998 -10582.066 0 221.56238 -0.00042089119 -0.00045279513 + 196410 -6246.6547 -6251.5434 4.8886824 3702.9393 630.77975 -10585.262 0 234.29309 -0.00060909629 -0.00064496474 + 196420 -6246.2954 -6251.5774 5.2820353 3706.0778 629.6656 -10587.321 0 253.14477 -0.00076030326 -0.0007971345 + 196430 -6245.9025 -6251.7276 5.825124 3706.9839 628.76174 -10587.473 0 279.17263 -0.00083440685 -0.00087097403 + 196440 -6245.4658 -6251.9833 6.5175075 3705.216 628.16553 -10585.365 0 312.35553 -0.00081825847 -0.00085515574 + 196450 -6245.0023 -6252.2906 7.2882442 3701.046 627.82397 -10581.161 0 349.29356 -0.00072862249 -0.00076658976 + 196460 -6244.5549 -6252.5612 8.0063157 3695.3769 627.58421 -10575.522 0 383.70757 -0.0006047408 -0.00064332867 + 196470 -6244.1753 -6252.6996 8.5243398 3689.4952 627.27904 -10569.474 0 408.53419 -0.00049433295 -0.00053165483 + 196480 -6243.8986 -6252.6427 8.7440851 3684.7247 626.80614 -10564.174 0 419.06562 -0.00043761832 -0.00047154234 + 196490 -6243.7205 -6252.3953 8.6748155 3682.0711 626.16583 -10560.632 0 415.74583 -0.00045466412 -0.000485182 + 196500 -6243.6049 -6252.0215 8.4165717 3681.9896 625.45302 -10559.464 0 403.36934 -0.00054152158 -0.00057196577 + 196510 -6243.5238 -6251.5829 8.0591051 3684.3438 624.82102 -10560.748 0 386.23754 -0.00067594758 -0.00071052022 + 196520 -6243.4867 -6251.0925 7.6057918 3688.4994 624.43473 -10564.027 0 364.51222 -0.00082660989 -0.00086564653 + 196530 -6243.5197 -6250.5538 7.0341046 3693.4525 624.4249 -10568.431 0 337.11376 -0.00095872783 -0.0009971152 + 196540 -6243.6114 -6250.0515 6.4401655 3697.992 624.85499 -10572.899 0 308.64887 -0.0010363641 -0.0010683585 + 196550 -6243.6977 -6249.7678 6.0701498 3700.9831 625.71016 -10576.461 0 290.91564 -0.0010285802 -0.0010545837 + 196560 -6243.7159 -6249.8593 6.1434275 3701.761 626.90608 -10578.526 0 294.42752 -0.00092271693 -0.00094981933 + 196570 -6243.6716 -6250.3152 6.6436111 3700.4099 628.30211 -10579.027 0 318.39912 -0.00073587146 -0.00077072695 + 196580 -6243.6378 -6250.9584 7.320644 3697.6988 629.71262 -10578.37 0 350.84634 -0.0005121037 -0.00055403977 + 196590 -6243.688 -6251.5832 7.8951353 3694.713 630.92878 -10577.225 0 378.37918 -0.0003051004 -0.0003468354 + 196600 -6243.8351 -6252.0766 8.2414809 3692.4443 631.75827 -10576.279 0 394.97801 -0.00015892432 -0.00019350773 + 196610 -6244.031 -6252.4319 8.4008831 3691.5361 632.06679 -10576.035 0 402.61746 -9.8617585e-05 -0.00012562434 + 196620 -6244.2164 -6252.6793 8.4628862 3692.2112 631.80053 -10576.691 0 405.58899 -0.00013186074 -0.00015777145 + 196630 -6244.3732 -6252.8111 8.4378605 3694.3061 630.99039 -10578.108 0 404.38962 -0.00025431794 -0.00028711087 + 196640 -6244.5387 -6252.7631 8.2243209 3697.3282 629.7515 -10579.843 0 394.1556 -0.00045071444 -0.00049292055 + 196650 -6244.7669 -6252.4727 7.7057678 3700.4928 628.27994 -10581.245 0 369.30363 -0.00069033303 -0.00073628189 + 196660 -6245.0687 -6251.9734 6.9046522 3702.7932 626.83371 -10581.6 0 330.90968 -0.00092395126 -0.00096412633 + 196670 -6245.3867 -6251.4296 6.0429451 3703.2067 625.68772 -10580.324 0 289.61184 -0.0010916151 -0.0011208188 + 196680 -6245.6362 -6251.0541 5.4178661 3701.0736 625.06859 -10577.196 0 259.65454 -0.0011433275 -0.0011650896 + 196690 -6245.776 -6250.9648 5.1887919 3696.4905 625.08476 -10572.54 0 248.67602 -0.0010626363 -0.0010855023 + 196700 -6245.8375 -6251.1252 5.2877604 3690.4398 625.6718 -10567.237 0 253.41915 -0.00087743644 -0.00090716914 + 196710 -6245.8871 -6251.4227 5.5355459 3684.51 626.58118 -10562.514 0 265.29442 -0.00065025241 -0.000685853 + 196720 -6245.9694 -6251.7822 5.812816 3680.3565 627.44129 -10559.58 0 278.58276 -0.00045477615 -0.00049101374 + 196730 -6246.0855 -6252.1932 6.1077283 3679.1836 627.8866 -10559.263 0 292.71661 -0.00035184521 -0.0003841267 + 196740 -6246.2143 -6252.6547 6.4403889 3681.4192 627.70129 -10561.775 0 308.65957 -0.00037312433 -0.00040006419 + 196750 -6246.3383 -6253.1216 6.7833371 3686.6192 626.90763 -10566.648 0 325.09557 -0.00051409478 -0.00053710281 + 196760 -6246.4545 -6253.5043 7.0498873 3693.5859 625.76047 -10572.851 0 337.87016 -0.00073594556 -0.00075757361 + 196770 -6246.5701 -6253.7062 7.1361474 3700.6717 624.65835 -10579.036 0 342.00422 -0.00097594927 -0.00099841148 + 196780 -6246.6932 -6253.6689 6.9756815 3706.1973 624.01393 -10583.88 0 334.3138 -0.0011643844 -0.001188806 + 196790 -6246.8247 -6253.3985 6.5737823 3708.8741 624.13095 -10586.404 0 315.05253 -0.0012437874 -0.0012702295 + 196800 -6246.9579 -6252.9605 6.0025955 3708.1263 625.11924 -10586.206 0 287.67806 -0.0011852263 -0.0012130548 + 196810 -6247.0841 -6252.4507 5.3666432 3704.2311 626.86015 -10583.542 0 257.19965 -0.00099686782 -0.0010249805 + 196820 -6247.1974 -6251.9696 4.7721732 3698.239 629.02372 -10579.232 0 228.70932 -0.00072229106 -0.00074932214 + 196830 -6247.292 -6251.6121 4.3200747 3691.6942 631.13387 -10574.44 0 207.04222 -0.00042929194 -0.00045426831 + 196840 -6247.358 -6251.4622 4.1042023 3686.2398 632.67347 -10570.375 0 196.6964 -0.00019283924 -0.00021607796 + 196850 -6247.3852 -6251.5723 4.1871402 3683.2169 633.21271 -10568.002 0 200.67125 -7.6739291e-05 -9.9921474e-05 + 196860 -6247.3726 -6251.9356 4.5629621 3683.348 632.53158 -10567.815 0 218.68275 -0.00011751315 -0.00014241458 + 196870 -6247.3299 -6252.4792 5.1493008 3686.5492 630.69821 -10569.727 0 246.78339 -0.0003131947 -0.00034021167 + 196880 -6247.267 -6253.0914 5.8243502 3691.9177 628.07164 -10573.081 0 279.13554 -0.00062053251 -0.00064863542 + 196890 -6247.1844 -6253.6545 6.4700923 3697.9348 625.22246 -10576.812 0 310.08312 -0.00096406902 -0.00099214704 + 196900 -6247.0759 -6254.0585 6.9826207 3702.8715 622.79253 -10579.723 0 334.64636 -0.001256585 -0.0012844856 + 196910 -6246.9399 -6254.2073 7.2674272 3705.2791 621.33216 -10580.819 0 348.29589 -0.0014241166 -0.0014523658 + 196920 -6246.7825 -6254.0431 7.2605786 3704.3962 621.15716 -10579.596 0 347.96766 -0.0014261681 -0.0014551875 + 196930 -6246.61 -6253.5781 6.9680887 3700.3534 622.26572 -10576.197 0 333.94991 -0.0012652302 -0.0012951129 + 196940 -6246.4238 -6252.9003 6.4765244 3694.1365 624.34207 -10571.379 0 310.39139 -0.00098486549 -0.0010155369 + 196950 -6246.2235 -6252.1414 5.9179337 3687.3305 626.84811 -10566.32 0 283.62059 -0.00065809297 -0.00068917113 + 196960 -6246.0103 -6251.4318 5.4214613 3681.7087 629.17387 -10562.314 0 259.82684 -0.00036850039 -0.00039891225 + 196970 -6245.7834 -6250.8733 5.089947 3678.7723 630.79883 -10560.444 0 243.93882 -0.00018796413 -0.00021606421 + 196980 -6245.5288 -6250.5381 5.009233 3679.3596 631.41717 -10561.315 0 240.07055 -0.00015689058 -0.00018163182 + 196990 -6245.2127 -6250.4772 5.264514 3683.4325 630.99715 -10564.907 0 252.30505 -0.0002734652 -0.00029621242 + 197000 -6244.7901 -6250.7119 5.9218236 3690.0977 629.76874 -10570.578 0 283.80701 -0.00049608613 -0.00052145024 + 197010 -6244.2394 -6251.1946 6.9551825 3697.8489 628.15366 -10577.197 0 333.33137 -0.0007580564 -0.00079181059 + 197020 -6243.6032 -6251.7729 8.1696657 3704.9341 626.65921 -10583.366 0 391.53622 -0.0009878134 -0.0010319916 + 197030 -6242.9911 -6252.2204 9.2292896 3709.7251 625.75489 -10587.7 0 442.31934 -0.0011256394 -0.0011747105 + 197040 -6242.5144 -6252.3525 9.8381368 3711.0175 625.7507 -10589.121 0 471.49872 -0.0011323979 -0.0011756652 + 197050 -6242.2005 -6252.1442 9.9437798 3708.2844 626.70421 -10587.133 0 476.56172 -0.0009944711 -0.0010246689 + 197060 -6241.9804 -6251.7298 9.7493611 3701.9071 628.38924 -10582.026 0 467.24409 -0.00073123772 -0.00075177928 + 197070 -6241.7713 -6251.2752 9.503879 3693.2757 630.34592 -10574.897 0 455.47921 -0.00040183394 -0.00042500359 + 197080 -6241.5651 -6250.85 9.2849796 3684.5618 632.00405 -10567.416 0 444.98832 -9.8472802e-05 -0.00013555557 + 197090 -6241.4345 -6250.4159 8.981306 3678.097 632.84643 -10561.359 0 430.43458 8.0846887e-05 2.8822009e-05 + 197100 -6241.4615 -6249.9247 8.4632523 3675.5698 632.56354 -10558.058 0 405.60654 7.0702522e-05 1.3926852e-05 + 197110 -6241.6562 -6249.4268 7.7706264 3677.4131 631.14877 -10557.989 0 372.41202 -0.00013286719 -0.00018085293 + 197120 -6241.9378 -6249.0923 7.1545393 3682.6847 628.9012 -10560.678 0 342.88567 -0.00046953377 -0.00050236743 + 197130 -6242.1912 -6249.1162 6.9249534 3689.4975 626.33912 -10564.953 0 331.88262 -0.00083976036 -0.00086314738 + 197140 -6242.3584 -6249.564 7.2055929 3695.775 624.05574 -10569.395 0 345.33244 -0.001144181 -0.001170871 + 197150 -6242.4888 -6250.2898 7.8009327 3699.9449 622.55831 -10572.793 0 373.86447 -0.0013168041 -0.0013555747 + 197160 -6242.7028 -6251.0183 8.3154531 3701.2775 622.13213 -10574.428 0 398.52317 -0.0013378071 -0.0013860158 + 197170 -6243.0897 -6251.5325 8.4427989 3699.8502 622.77002 -10574.153 0 404.6263 -0.0012262221 -0.0012725037 + 197180 -6243.6324 -6251.8074 8.175028 3696.3279 624.1944 -10572.33 0 391.79321 -0.0010239526 -0.0010583232 + 197190 -6244.2257 -6251.9831 7.757465 3691.7409 625.96684 -10569.691 0 371.78125 -0.00078241857 -0.00080460944 + 197200 -6244.7653 -6252.2192 7.4538852 3687.3036 627.64089 -10567.164 0 357.232 -0.00055469859 -0.00057395072 + 197210 -6245.2219 -6252.5562 7.3343295 3684.214 628.89391 -10565.664 0 351.50222 -0.0003891776 -0.00041645401 + 197220 -6245.6447 -6252.8853 7.2406033 3683.3856 629.58868 -10565.86 0 347.01033 -0.00032098864 -0.00036013425 + 197230 -6246.1032 -6253.0371 6.9339516 3685.1564 629.75468 -10567.948 0 332.31387 -0.00036216526 -0.00040669066 + 197240 -6246.616 -6252.9255 6.3095203 3689.105 629.51834 -10571.549 0 302.38762 -0.00049548009 -0.00053348321 + 197250 -6247.1227 -6252.6366 5.5138665 3694.1141 629.03057 -10575.781 0 264.25542 -0.00067766386 -0.0007013616 + 197260 -6247.5244 -6252.3838 4.8594113 3698.7308 628.4288 -10579.543 0 232.89026 -0.00085375891 -0.00086601151 + 197270 -6247.7587 -6252.3512 4.5924543 3701.6908 627.83477 -10581.877 0 220.09618 -0.00097715374 -0.00098933865 + 197280 -6247.8477 -6252.5571 4.7093916 3702.3395 627.35953 -10582.256 0 225.70047 -0.0010249561 -0.0010478793 + 197290 -6247.8818 -6252.8589 4.9770719 3700.7437 627.08883 -10580.691 0 238.52921 -0.0010009447 -0.0010364713 + 197300 -6247.9548 -6253.0837 5.1289583 3697.504 627.04986 -10577.638 0 245.80846 -0.00092675357 -0.00096684253 + 197310 -6248.0992 -6253.1652 5.0659513 3693.4495 627.1844 -10573.799 0 242.78881 -0.00082907903 -0.00086245473 + 197320 -6248.2704 -6253.1782 4.9077883 3689.3997 627.35457 -10569.933 0 235.20875 -0.00073137586 -0.00075224218 + 197330 -6248.3864 -6253.2565 4.8700169 3686.0694 627.38826 -10566.714 0 233.39854 -0.00065325427 -0.00066544134 + 197340 -6248.3935 -6253.4617 5.0681146 3684.0618 627.14656 -10564.67 0 242.89249 -0.00061397989 -0.00062759076 + 197350 -6248.3098 -6253.7091 5.3993707 3683.8369 626.58105 -10564.127 0 258.76814 -0.00063298897 -0.00065615313 + 197360 -6248.2132 -6253.8177 5.6044864 3685.5723 625.75304 -10565.143 0 268.59844 -0.00072278326 -0.00075501491 + 197370 -6248.1773 -6253.6574 5.4800574 3688.9687 624.80945 -10567.436 0 262.6351 -0.00087684917 -0.00090974886 + 197380 -6248.206 -6253.2772 5.0711414 3693.17 623.93661 -10570.384 0 243.03755 -0.0010622058 -0.0010872573 + 197390 -6248.231 -6252.8881 4.6570943 3696.9608 623.32239 -10573.171 0 223.19409 -0.0012257557 -0.0012421388 + 197400 -6248.1771 -6252.702 4.5248642 3699.2081 623.13797 -10575.048 0 216.85688 -0.0013137518 -0.0013286522 + 197410 -6248.03 -6252.7708 4.7408674 3699.2982 623.52162 -10575.591 0 227.20897 -0.001292857 -0.0013142706 + 197420 -6247.8405 -6252.9712 5.1307701 3697.32 624.54209 -10574.833 0 245.89529 -0.0011607435 -0.0011902307 + 197430 -6247.6716 -6253.1274 5.4557944 3693.9531 626.14395 -10573.224 0 261.47228 -0.00094375249 -0.00097582481 + 197440 -6247.5431 -6253.1426 5.5994912 3690.2042 628.10685 -10571.454 0 268.35904 -0.00068762645 -0.00071532934 + 197450 -6247.4206 -6253.0363 5.6157414 3687.1389 630.05673 -10570.232 0 269.13784 -0.00044747785 -0.00046848763 + 197460 -6247.2512 -6252.8893 5.6381113 3685.656 631.54585 -10570.091 0 270.20993 -0.00027835819 -0.00029660418 + 197470 -6247.0091 -6252.7605 5.7513754 3686.2993 632.18439 -10571.244 0 275.63818 -0.00022454773 -0.00024665348 + 197480 -6246.716 -6252.6458 5.9298323 3689.0983 631.77671 -10573.521 0 284.19084 -0.0003067556 -0.00033655146 + 197490 -6246.4215 -6252.507 6.0855328 3693.4696 630.4054 -10576.382 0 291.65288 -0.00051055049 -0.00054624818 + 197500 -6246.1572 -6252.3374 6.1802151 3698.2537 628.42249 -10579.014 0 296.19059 -0.0007831548 -0.00081968575 + 197510 -6245.9068 -6252.1925 6.28579 3701.9674 626.34639 -10580.506 0 301.25032 -0.001045288 -0.0010796354 + 197520 -6245.6264 -6252.1341 6.5077154 3703.2666 624.70308 -10580.104 0 311.88624 -0.0012177214 -0.0012515737 + 197530 -6245.2992 -6252.1374 6.838242 3701.4502 623.86733 -10577.455 0 327.72693 -0.0012513927 -0.0012878937 + 197540 -6244.9585 -6252.0859 7.1273735 3696.7374 623.95138 -10572.775 0 341.58373 -0.0011445855 -0.0011832265 + 197550 -6244.6449 -6251.8854 7.240541 3690.1784 624.77394 -10566.838 0 347.00735 -0.00093886607 -0.00097550112 + 197560 -6244.3497 -6251.5702 7.2205371 3683.3198 625.92629 -10560.816 0 346.04865 -0.00070082449 -0.0007332157 + 197570 -6244.0198 -6251.2712 7.2513967 3677.8234 626.91951 -10556.014 0 347.52762 -0.00050234961 -0.00053421346 + 197580 -6243.6167 -6251.0871 7.4704411 3675.1132 627.35664 -10553.557 0 358.02545 -0.00040453809 -0.00044280995 + 197590 -6243.1615 -6251.0003 7.838809 3676.0216 627.06184 -10554.084 0 375.67971 -0.00044298258 -0.0004907667 + 197600 -6242.7189 -6250.9128 8.1938717 3680.4794 626.12691 -10557.519 0 392.69631 -0.00061399127 -0.00066609347 + 197610 -6242.333 -6250.7621 8.4290856 3687.3929 624.87415 -10563.029 0 403.96908 -0.00086761404 -0.00091337315 + 197620 -6241.9667 -6250.6068 8.6401098 3694.8581 623.76095 -10569.226 0 414.08254 -0.0011159944 -0.0011480039 + 197630 -6241.5027 -6250.5934 9.0907295 3700.7327 623.25885 -10574.585 0 435.67876 -0.0012603597 -0.0012821177 + 197640 -6240.819 -6250.8044 9.9854103 3703.3873 623.73132 -10577.923 0 478.55689 -0.0012290486 -0.0012540828 + 197650 -6239.8962 -6251.1093 11.213095 3702.3035 625.32134 -10578.734 0 537.39441 -0.0010097774 -0.0010510136 + 197660 -6238.8705 -6251.1804 12.309909 3698.2052 627.86323 -10577.249 0 589.95993 -0.00065856395 -0.0007158503 + 197670 -6237.9586 -6250.7216 12.76299 3692.6455 630.85874 -10574.226 0 611.67412 -0.0002773988 -0.00033531206 + 197680 -6237.2838 -6249.7401 12.456294 3687.3022 633.5734 -10570.616 0 596.97551 2.8911397e-05 -1.1835008e-05 + 197690 -6236.775 -6248.5921 11.817109 3683.4236 635.26762 -10567.283 0 566.34218 0.00019034916 0.00016948673 + 197700 -6236.2667 -6247.7165 11.449805 3681.6802 635.48171 -10564.878 0 548.73891 0.00018315603 0.00016538685 + 197710 -6235.7011 -6247.2894 11.588235 3682.2753 634.22905 -10563.794 0 555.37326 2.0241667e-05 -1.6388282e-05 + 197720 -6235.2203 -6247.1203 11.900014 3684.987 631.98614 -10564.093 0 570.31543 -0.00025922509 -0.00032141954 + 197730 -6235.0545 -6246.8846 11.830127 3689.0453 629.47934 -10565.409 0 566.96608 -0.00059148575 -0.000663215 + 197740 -6235.3068 -6246.4791 11.172309 3693.0881 627.3803 -10566.947 0 535.43972 -0.00089108679 -0.00094693987 + 197750 -6235.8476 -6246.1752 10.327606 3695.4969 626.06964 -10567.742 0 494.95685 -0.0010706758 -0.0010987791 + 197760 -6236.4437 -6246.4125 9.9688796 3695.1182 625.57473 -10567.106 0 477.76465 -0.0010781893 -0.0010913132 + 197770 -6236.9963 -6247.4004 10.404125 3691.9624 625.66688 -10565.03 0 498.62406 -0.00092943878 -0.00095329592 + 197780 -6237.6454 -6248.9007 11.255355 3687.3304 626.01736 -10562.248 0 539.41977 -0.00070779063 -0.00075758738 + 197790 -6238.6214 -6250.398 11.776685 3683.1705 626.32311 -10559.892 0 564.40483 -0.00052280742 -0.000590486 + 197800 -6239.9825 -6251.4806 11.498148 3681.0684 626.37917 -10558.928 0 551.05579 -0.00045251479 -0.00051575788 + 197810 -6241.5175 -6252.0746 10.557131 3681.5591 626.11535 -10559.749 0 505.95696 -0.00050983703 -0.00055190191 + 197820 -6242.9143 -6252.3687 9.4543662 3684.1324 625.60773 -10562.109 0 453.10628 -0.00065240119 -0.00067361065 + 197830 -6243.9813 -6252.5704 8.5890399 3687.7384 625.05643 -10565.365 0 411.63498 -0.00081738671 -0.0008312234 + 197840 -6244.7141 -6252.7328 8.01864 3691.3378 624.72212 -10568.793 0 384.29822 -0.00095194115 -0.00097291699 + 197850 -6245.2265 -6252.7657 7.539228 3694.2037 624.83136 -10571.801 0 361.32211 -0.0010263238 -0.0010600088 + 197860 -6245.6447 -6252.5766 6.9318705 3695.9534 625.48245 -10574.012 0 332.21413 -0.0010326894 -0.0010740329 + 197870 -6246.0332 -6252.2015 6.168355 3696.4517 626.59464 -10575.248 0 295.62218 -0.00097789857 -0.0010173688 + 197880 -6246.3839 -6251.815 5.4311329 3695.7417 627.92848 -10575.485 0 260.29036 -0.00087784995 -0.00090937597 + 197890 -6246.6612 -6251.6182 4.9569811 3694.0541 629.16923 -10574.842 0 237.56635 -0.00075547663 -0.00077972773 + 197900 -6246.8525 -6251.709 4.8565344 3691.8293 630.03369 -10573.572 0 232.75238 -0.00063887205 -0.00066044432 + 197910 -6246.9825 -6252.0424 5.0599759 3689.6526 630.35345 -10572.048 0 242.50244 -0.0005556489 -0.00057820438 + 197920 -6247.0894 -6252.4919 5.4025329 3688.0911 630.10555 -10570.689 0 258.91969 -0.00052471595 -0.00054880981 + 197930 -6247.1963 -6252.9366 5.7403541 3687.5225 629.38841 -10569.848 0 275.10998 -0.00055099555 -0.00057543762 + 197940 -6247.3048 -6253.3016 5.9968137 3688.0483 628.36371 -10569.714 0 287.40096 -0.000626849 -0.00065089332 + 197950 -6247.409 -6253.5497 6.1406942 3689.5045 627.19411 -10570.248 0 294.29652 -0.0007381074 -0.00076205143 + 197960 -6247.5079 -6253.6668 6.1589116 3691.5247 626.00387 -10571.195 0 295.1696 -0.00086929613 -0.00089365201 + 197970 -6247.6046 -6253.6616 6.0570826 3693.6167 624.87593 -10572.154 0 290.28938 -0.0010048859 -0.0010296644 + 197980 -6247.6991 -6253.5677 5.8686543 3695.2469 623.88011 -10572.695 0 281.25884 -0.0011278404 -0.0011527293 + 197990 -6247.7852 -6253.4306 5.6453726 3695.9412 623.10927 -10572.481 0 270.55793 -0.0012188532 -0.0012438346 + 198000 -6247.8553 -6253.2839 5.4286068 3695.3943 622.69324 -10571.372 0 260.1693 -0.001258637 -0.0012842049 + 198010 -6247.9073 -6253.1292 5.22189 3693.5694 622.7708 -10569.469 0 250.26227 -0.0012332994 -0.0012598379 + 198020 -6247.9481 -6252.9399 4.9917408 3690.7517 623.42398 -10567.116 0 239.23223 -0.001140582 -0.0011673465 + 198030 -6247.9858 -6252.6993 4.7135312 3687.5186 624.60629 -10564.824 0 225.89886 -0.00099356306 -0.0010186036 + 198040 -6248.0139 -6252.4493 4.4354244 3684.6206 626.10976 -10563.18 0 212.57042 -0.00081967549 -0.0008415673 + 198050 -6248.0062 -6252.298 4.2917814 3682.8193 627.60083 -10562.718 0 205.68624 -0.00065567335 -0.00067579876 + 198060 -6247.9332 -6252.3621 4.4288757 3682.7324 628.7193 -10563.814 0 212.25657 -0.00054033122 -0.00056312348 + 198070 -6247.7873 -6252.6801 4.8928479 3684.6893 629.19978 -10566.569 0 234.49272 -0.00050557553 -0.00053567519 + 198080 -6247.5954 -6253.1691 5.5736916 3688.5889 628.96452 -10570.722 0 267.12257 -0.00056630246 -0.00060458802 + 198090 -6247.4061 -6253.6613 6.2551877 3693.7917 628.15173 -10575.605 0 299.78369 -0.00071118169 -0.00075304738 + 198100 -6247.2565 -6253.9937 6.7371536 3699.1407 627.07104 -10580.205 0 322.8822 -0.00089953528 -0.00093727192 + 198110 -6247.1436 -6254.0865 6.9428186 3703.1931 626.10531 -10583.385 0 332.73882 -0.0010693966 -0.0010973775 + 198120 -6247.0235 -6253.96 6.936496 3704.649 625.59423 -10584.203 0 332.43581 -0.0011572516 -0.0011763298 + 198130 -6246.8435 -6253.6839 6.8403541 3702.8382 625.7353 -10582.257 0 327.82815 -0.0011230299 -0.0011407284 + 198140 -6246.5876 -6253.2995 6.7119047 3698.054 626.52469 -10577.878 0 321.67213 -0.00096932407 -0.00099497931 + 198150 -6246.2981 -6252.7862 6.4881508 3691.5469 627.7468 -10572.08 0 310.94859 -0.00074445068 -0.00078234093 + 198160 -6246.0478 -6252.1137 6.0658722 3685.1263 629.0164 -10566.256 0 290.71063 -0.00052561212 -0.00057155165 + 198170 -6245.8815 -6251.3381 5.4566382 3680.5298 629.87578 -10561.744 0 261.51272 -0.00038924732 -0.00043377619 + 198180 -6245.7788 -6250.6414 4.8625752 3678.8586 629.93411 -10559.434 0 233.04189 -0.00038318326 -0.00041864462 + 198190 -6245.6677 -6250.2621 4.5944295 3680.3117 629.00817 -10559.582 0 220.19084 -0.00051242476 -0.00053809558 + 198200 -6245.466 -6250.369 4.9030132 3684.2476 627.20968 -10561.826 0 234.9799 -0.00074087496 -0.00076279751 + 198210 -6245.1214 -6250.9654 5.8440191 3689.4594 624.94115 -10565.366 0 280.07819 -0.0010043564 -0.0010309462 + 198220 -6244.6371 -6251.8731 7.2360067 3694.5311 622.79531 -10569.2 0 346.79004 -0.0012293407 -0.0012659938 + 198230 -6244.0812 -6252.7944 8.7132004 3698.1838 621.3839 -10572.362 0 417.58545 -0.0013528866 -0.0013984986 + 198240 -6243.5627 -6253.4269 9.8641723 3699.5547 621.14489 -10574.126 0 472.74648 -0.0013390149 -0.0013864234 + 198250 -6243.1697 -6253.591 10.421335 3698.3664 622.19479 -10574.152 0 499.44885 -0.0011869362 -0.0012278996 + 198260 -6242.9124 -6253.3004 10.387981 3694.9828 624.28785 -10572.571 0 497.85036 -0.00093020381 -0.00096223941 + 198270 -6242.7357 -6252.7128 9.977075 3690.3635 626.90287 -10569.979 0 478.15742 -0.00062963394 -0.00065880827 + 198280 -6242.5933 -6251.9948 9.4014689 3685.8855 629.41929 -10567.3 0 450.57114 -0.00036092251 -0.00039693742 + 198290 -6242.5014 -6251.2279 8.7265164 3682.968 631.30766 -10565.504 0 418.22363 -0.00019474577 -0.00024218629 + 198300 -6242.5146 -6250.4339 7.919298 3682.5624 632.26665 -10565.263 0 379.5372 -0.00017218435 -0.00022591115 + 198310 -6242.6606 -6249.6679 7.0072952 3684.7511 632.2691 -10566.688 0 335.8289 -0.00028726533 -0.0003358434 + 198320 -6242.8996 -6249.0768 6.1772317 3688.6996 631.51357 -10569.29 0 296.0476 -0.00048851701 -0.00052268726 + 198330 -6243.14 -6248.8699 5.7298835 3693.0067 630.31161 -10572.188 0 274.60817 -0.00070096184 -0.00072084517 + 198340 -6243.2964 -6249.2111 5.9146744 3696.2874 628.96763 -10574.466 0 283.46438 -0.00085801397 -0.00087388509 + 198350 -6243.3547 -6250.0958 6.7410936 3697.7097 627.70311 -10575.509 0 323.07103 -0.0009273116 -0.00095288374 + 198360 -6243.4044 -6251.3026 7.8982168 3697.2323 626.64091 -10575.176 0 378.52687 -0.00091813661 -0.00096051361 + 198370 -6243.6053 -6252.477 8.8716716 3695.4498 625.82742 -10573.754 0 425.18028 -0.00086837654 -0.00092200751 + 198380 -6244.0887 -6253.3089 9.220206 3693.1743 625.25989 -10571.743 0 441.88401 -0.00082004544 -0.00087005532 + 198390 -6244.8544 -6253.6879 8.8335092 3691.0297 624.90132 -10569.619 0 423.35132 -0.0007982823 -0.00083154824 + 198400 -6245.7589 -6253.7237 7.9648817 3689.2983 624.68967 -10567.712 0 381.72182 -0.00080589141 -0.00082109215 + 198410 -6246.6157 -6253.6186 7.0028541 3688.0491 624.55676 -10566.224 0 335.61606 -0.00083368094 -0.00084161582 + 198420 -6247.3168 -6253.5057 6.1889004 3687.3467 624.45856 -10565.311 0 296.60683 -0.00087413397 -0.00088843459 + 198430 -6247.8646 -6253.3871 5.5224376 3687.315 624.39896 -10565.101 0 264.6662 -0.0009254123 -0.00095230444 + 198440 -6248.3174 -6253.1984 4.8810162 3688.0167 624.42868 -10565.644 0 233.92568 -0.00098487007 -0.0010199508 + 198450 -6248.7198 -6252.9207 4.2008749 3689.2957 624.61705 -10566.833 0 201.3295 -0.0010413779 -0.0010742907 + 198460 -6249.0718 -6252.6427 3.5709269 3690.7469 625.0115 -10568.401 0 171.13885 -0.0010749103 -0.0010973724 + 198470 -6249.3384 -6252.5293 3.1909074 3691.8695 625.60527 -10570.004 0 152.92619 -0.0010649722 -0.0010765172 + 198480 -6249.4847 -6252.7164 3.2317604 3692.3276 626.32837 -10571.372 0 154.88409 -0.0010031078 -0.0010109161 + 198490 -6249.513 -6253.2106 3.6975364 3692.1523 627.06425 -10572.427 0 177.20669 -0.00090148251 -0.00091463806 + 198500 -6249.4748 -6253.8706 4.3957516 3691.7386 627.68237 -10573.291 0 210.66908 -0.00079085992 -0.00081341588 + 198510 -6249.4423 -6254.4898 5.0475331 3691.6194 628.0737 -10574.183 0 241.90611 -0.00070753949 -0.0007357935 + 198520 -6249.4596 -6254.914 5.4543872 3692.1581 628.17947 -10575.252 0 261.40484 -0.00067649905 -0.00070248733 + 198530 -6249.5138 -6255.1036 5.5898144 3693.3539 628.00724 -10576.465 0 267.89527 -0.00070103571 -0.00071911031 + 198540 -6249.5515 -6255.1054 5.5539088 3694.864 627.62996 -10577.599 0 266.17447 -0.00076452326 -0.00077558558 + 198550 -6249.5256 -6254.9738 5.448197 3696.1961 627.16643 -10578.336 0 261.10817 -0.00084138091 -0.00085170638 + 198560 -6249.4324 -6254.7156 5.2831474 3696.9288 626.74682 -10578.391 0 253.19807 -0.00090916194 -0.00092522103 + 198570 -6249.3114 -6254.2993 4.9879514 3696.8391 626.47268 -10577.611 0 239.05062 -0.00095504517 -0.00097854717 + 198580 -6249.2124 -6253.7175 4.5051183 3695.9036 626.38381 -10576.005 0 215.91055 -0.00097535382 -0.0010022043 + 198590 -6249.1569 -6253.0454 3.8884674 3694.2289 626.44362 -10573.718 0 186.35717 -0.00097153795 -0.00099527395 + 198600 -6249.1222 -6252.4432 3.3210373 3692.0009 626.55028 -10570.994 0 159.16274 -0.0009473774 -0.0009642114 + 198610 -6249.0587 -6252.0906 3.0318818 3689.4978 626.57143 -10568.16 0 145.30479 -0.00090957966 -0.00092104222 + 198620 -6248.9223 -6252.0952 3.1728852 3687.1294 626.39007 -10565.615 0 152.06246 -0.00086978158 -0.00088112103 + 198630 -6248.6954 -6252.4421 3.7466738 3685.4152 625.94453 -10563.802 0 179.56163 -0.00084399596 -0.00086007576 + 198640 -6248.3877 -6253.0137 4.625961 3684.8539 625.25113 -10563.119 0 221.70201 -0.00084761632 -0.00086979016 + 198650 -6248.0233 -6253.6497 5.626442 3685.7283 624.40843 -10563.786 0 269.65067 -0.00088808188 -0.00091410042 + 198660 -6247.6288 -6254.1961 6.5672844 3687.9502 623.58602 -10565.732 0 314.74112 -0.00095948502 -0.00098568264 + 198670 -6247.2312 -6254.5247 7.2935223 3691.0283 622.99722 -10568.55 0 349.54651 -0.0010422675 -0.0010658576 + 198680 -6246.8558 -6254.5441 7.6882331 3694.1798 622.85282 -10571.577 0 368.46327 -0.0011082605 -0.001128438 + 198690 -6246.5198 -6254.223 7.7032212 3696.5491 623.301 -10574.073 0 369.18158 -0.0011291408 -0.0011472028 + 198700 -6246.225 -6253.6126 7.3875629 3697.4713 624.37374 -10575.458 0 354.05347 -0.0010856804 -0.0011045782 + 198710 -6245.9644 -6252.8356 6.8711702 3696.6937 625.96486 -10575.494 0 329.30503 -0.00097487363 -0.00099794895 + 198720 -6245.7361 -6252.0424 6.3063366 3694.4656 627.85053 -10574.359 0 302.23503 -0.00081196142 -0.00084096536 + 198730 -6245.5488 -6251.3646 5.8158291 3691.4508 629.74154 -10572.557 0 278.72716 -0.00062624305 -0.00065986538 + 198740 -6245.4117 -6250.8907 5.4790286 3688.5119 631.34348 -10570.746 0 262.58579 -0.00045294485 -0.00048709977 + 198750 -6245.3197 -6250.6682 5.3485376 3686.4672 632.40351 -10569.539 0 256.33193 -0.00032489592 -0.00035483091 + 198760 -6245.245 -6250.7206 5.4755799 3685.8969 632.7361 -10569.354 0 262.42051 -0.00026638502 -0.00028969281 + 198770 -6245.1418 -6251.058 5.9162114 3687.0296 632.23755 -10570.325 0 283.53805 -0.00028995721 -0.00030899125 + 198780 -6244.9713 -6251.6575 6.6862554 3689.7154 630.90705 -10572.28 0 320.44287 -0.00039616517 -0.00041781536 + 198790 -6244.7414 -6252.4126 7.6711986 3693.4691 628.87891 -10574.761 0 367.64688 -0.00057488094 -0.00060628434 + 198800 -6244.5305 -6253.1102 8.5797279 3697.5363 626.44374 -10577.09 0 411.1887 -0.00080496497 -0.00084698206 + 198810 -6244.4491 -6253.5053 9.0562064 3700.9468 624.02021 -10578.472 0 434.02423 -0.0010505903 -0.0010949008 + 198820 -6244.5468 -6253.4768 8.929953 3702.6071 622.06147 -10578.145 0 427.97346 -0.001259163 -0.0012939024 + 198830 -6244.7537 -6253.1259 8.3722034 3701.5596 620.93013 -10575.616 0 401.24296 -0.0013709248 -0.0013914829 + 198840 -6244.9356 -6252.69 7.7543423 3697.4318 620.80237 -10570.924 0 371.63159 -0.0013433361 -0.0013575946 + 198850 -6245.0159 -6252.3384 7.3224187 3690.8323 621.63523 -10564.806 0 350.93139 -0.0011768358 -0.0011985479 + 198860 -6245.0341 -6252.0594 7.0253042 3683.3485 623.18781 -10558.596 0 336.69199 -0.00092169387 -0.00095817368 + 198870 -6245.0908 -6251.7426 6.6517646 3677.0446 625.07673 -10553.864 0 318.78988 -0.00065875444 -0.00070463994 + 198880 -6245.247 -6251.3477 6.1006961 3673.7254 626.85999 -10551.933 0 292.37959 -0.00046622958 -0.00050829756 + 198890 -6245.4718 -6250.9933 5.5214773 3674.352 628.14253 -10553.488 0 264.62017 -0.00039191879 -0.00041987301 + 198900 -6245.6694 -6250.8981 5.2286597 3678.8331 628.68044 -10558.412 0 250.58671 -0.00044276089 -0.00045719443 + 198910 -6245.752 -6251.2285 5.4764991 3686.1812 628.45209 -10565.862 0 262.46457 -0.0005913743 -0.00060333005 + 198920 -6245.7087 -6251.9573 6.248623 3694.8679 627.67204 -10574.497 0 299.46907 -0.00079103183 -0.00081350883 + 198930 -6245.6264 -6252.838 7.2115356 3703.1841 626.73607 -10582.758 0 345.61725 -0.00098895716 -0.0010263157 + 198940 -6245.6346 -6253.5408 7.906194 3709.4942 626.10164 -10589.137 0 378.90918 -0.0011326835 -0.0011766076 + 198950 -6245.798 -6253.8673 8.0693705 3712.4312 626.13417 -10592.433 0 386.72951 -0.0011735562 -0.0012101592 + 198960 -6246.0568 -6253.8602 7.8033685 3711.1709 626.97507 -10592.006 0 373.9812 -0.0010773633 -0.0010996942 + 198970 -6246.2866 -6253.7018 7.4152543 3705.7983 628.48441 -10587.985 0 355.38059 -0.00084447881 -0.00085831102 + 198980 -6246.4149 -6253.5144 7.0995088 3697.533 630.27418 -10581.322 0 340.2483 -0.00052562937 -0.00054308517 + 198990 -6246.4714 -6253.2745 6.8031388 3688.5202 631.81016 -10573.605 0 326.04458 -0.00021491064 -0.0002431757 + 199000 -6246.5345 -6252.9077 6.3732011 3681.164 632.55167 -10566.623 0 305.43956 -1.7470392e-05 -5.3623096e-05 + 199010 -6246.6484 -6252.4279 5.7795443 3677.3183 632.10259 -10561.849 0 276.98819 -8.8997963e-06 -4.4112726e-05 + 199020 -6246.7905 -6251.976 5.1854257 3677.7236 630.34011 -10560.04 0 248.5147 -0.00020786972 -0.00023546885 + 199030 -6246.9014 -6251.7371 4.8356861 3681.885 627.48008 -10561.102 0 231.75321 -0.00057238351 -0.00059265508 + 199040 -6246.9357 -6251.8188 4.8830815 3688.3449 624.05092 -10564.215 0 234.02467 -0.0010159923 -0.0010348082 + 199050 -6246.8966 -6252.1815 5.2848358 3695.1717 620.77698 -10568.13 0 253.27899 -0.0014334405 -0.0014567116 + 199060 -6246.8322 -6252.669 5.8367576 3700.4777 618.399 -10571.546 0 279.73017 -0.0017262818 -0.0017550078 + 199070 -6246.7971 -6253.1144 6.3172582 3702.8496 617.47859 -10573.443 0 302.75846 -0.001823851 -0.0018538007 + 199080 -6246.8105 -6253.4348 6.6242922 3701.6605 618.24432 -10573.34 0 317.47325 -0.0016987601 -0.0017246809 + 199090 -6246.8493 -6253.6407 6.7914443 3697.246 620.52895 -10571.416 0 325.48412 -0.001375695 -0.001395828 + 199100 -6246.8786 -6253.7686 6.8899611 3690.8809 623.81666 -10568.466 0 330.2056 -0.00092944894 -0.00094635253 + 199110 -6246.8852 -6253.8165 6.9313383 3684.4888 627.38276 -10565.688 0 332.18862 -0.00046845493 -0.00048622322 + 199120 -6246.8821 -6253.7412 6.8590659 3680.1092 630.48203 -10564.332 0 328.72492 -0.00010589958 -0.00012694689 + 199130 -6246.89 -6253.5031 6.6131033 3679.2801 632.53304 -10565.316 0 316.93702 7.2577942e-05 4.8635894e-05 + 199140 -6246.9177 -6253.1123 6.194595 3682.5532 633.25037 -10568.916 0 296.87975 3.3195604e-05 8.4974504e-06 + 199150 -6246.9568 -6252.6409 5.684011 3689.3057 632.69288 -10574.639 0 272.4097 -0.00019771134 -0.00022109195 + 199160 -6246.9889 -6252.2024 5.2135331 3697.9029 631.21971 -10581.325 0 249.86176 -0.00054327451 -0.00056464347 + 199170 -6246.9965 -6251.9119 4.9154067 3706.1518 629.37007 -10587.434 0 235.57387 -0.00089962907 -0.0009198242 + 199180 -6246.9732 -6251.8444 4.8711985 3711.9058 627.70103 -10591.451 0 233.45517 -0.0011660216 -0.0011864056 + 199190 -6246.9244 -6252.0151 5.0907039 3713.6401 626.62666 -10592.282 0 243.9751 -0.0012727847 -0.0012939918 + 199200 -6246.8583 -6252.3915 5.5332562 3710.8385 626.30343 -10589.534 0 265.18469 -0.0011994597 -0.0012212402 + 199210 -6246.7764 -6252.916 6.1395846 3704.1129 626.59902 -10583.628 0 294.24335 -0.00097874262 -0.0010010329 + 199220 -6246.6786 -6253.5087 6.8300811 3695.0498 627.15802 -10575.716 0 327.33581 -0.00068597482 -0.00070964947 + 199230 -6246.5763 -6254.0563 7.4800207 3685.8135 627.54168 -10567.412 0 358.48456 -0.00041690377 -0.00044307608 + 199240 -6246.4973 -6254.42 7.9227347 3678.5763 627.38985 -10560.386 0 379.7019 -0.00025931399 -0.00028793932 + 199250 -6246.4725 -6254.472 7.999546 3674.9313 626.54733 -10555.951 0 383.38313 -0.00026687449 -0.00029606601 + 199260 -6246.5158 -6254.1467 7.6309023 3675.4774 625.11287 -10554.737 0 365.71565 -0.00044351771 -0.0004701863 + 199270 -6246.6104 -6253.4841 6.8737194 3679.7065 623.39981 -10556.59 0 329.4272 -0.00074313054 -0.00076478303 + 199280 -6246.7114 -6252.6431 5.9317529 3686.2184 621.83178 -10560.693 0 284.28288 -0.0010843805 -0.0011012893 + 199290 -6246.7673 -6251.8601 5.0927561 3693.1818 620.81927 -10565.861 0 244.07345 -0.0013756881 -0.0013918537 + 199300 -6246.7514 -6251.3547 4.6033223 3698.8848 620.66086 -10570.9 0 220.61703 -0.0015417633 -0.0015630773 + 199310 -6246.6811 -6251.2314 4.5503088 3702.1828 621.48914 -10574.903 0 218.07633 -0.0015425035 -0.0015724075 + 199320 -6246.6077 -6251.4473 4.839635 3702.6981 623.25626 -10577.402 0 231.94247 -0.0013784685 -0.0014142598 + 199330 -6246.5748 -6251.8764 5.3015931 3700.7499 625.74533 -10578.372 0 254.08209 -0.0010835352 -0.0011172178 + 199340 -6246.575 -6252.4121 5.8370887 3697.1371 628.60175 -10578.151 0 279.74604 -0.00071150507 -0.00073566587 + 199350 -6246.5453 -6253.0124 6.4671207 3692.9346 631.38709 -10577.334 0 309.94071 -0.00032496282 -0.00033910274 + 199360 -6246.4131 -6253.6518 7.238735 3689.3523 633.65281 -10576.657 0 346.9208 1.0475918e-05 -1.1351543e-06 + 199370 -6246.158 -6254.2432 8.0852198 3687.5705 635.0207 -10576.834 0 387.4891 0.00023076005 0.0002116373 + 199380 -6245.84 -6254.617 8.7769869 3688.4628 635.25431 -10578.334 0 420.64246 0.00028321434 0.00025179869 + 199390 -6245.569 -6254.5874 9.0184651 3692.2451 634.30955 -10581.142 0 432.21545 0.00014297731 0.00010399698 + 199400 -6245.4291 -6254.0711 8.6419405 3698.217 632.35301 -10584.641 0 414.17028 -0.00017044562 -0.00020571574 + 199410 -6245.4098 -6253.1785 7.768679 3704.7871 629.73563 -10587.701 0 372.31869 -0.00058837442 -0.00061103769 + 199420 -6245.4067 -6252.1947 6.7879556 3709.888 626.92337 -10589.006 0 325.31692 -0.001008884 -0.0010207373 + 199430 -6245.3055 -6251.4253 6.1198142 3711.6766 624.40556 -10587.507 0 293.29584 -0.001329907 -0.0013434437 + 199440 -6245.0791 -6251.0101 5.93097 3709.2078 622.60401 -10582.822 0 284.24536 -0.0014828217 -0.0015114255 + 199450 -6244.8113 -6250.8663 6.0550189 3702.738 621.79199 -10575.396 0 290.19048 -0.0014488871 -0.0014949761 + 199460 -6244.6218 -6250.8238 6.2019612 3693.5449 622.02896 -10566.398 0 297.23278 -0.0012536318 -0.0013056289 + 199470 -6244.5561 -6250.8211 6.2649923 3683.4659 623.13202 -10557.419 0 300.25359 -0.00094951986 -0.00099110853 + 199480 -6244.5397 -6250.9685 6.4288238 3674.4736 624.71165 -10550.154 0 308.10531 -0.00060185078 -0.00062552949 + 199490 -6244.4395 -6251.4226 6.9831272 3668.4269 626.27482 -10546.124 0 334.67064 -0.00028331697 -0.00029655442 + 199500 -6244.1745 -6252.2016 8.0271043 3666.8776 627.36401 -10546.443 0 384.70388 -6.9619488e-05 -8.9152851e-05 + 199510 -6243.7929 -6253.106 9.3130441 3670.7573 627.69024 -10551.554 0 446.33333 -2.5991896e-05 -6.5318714e-05 + 199520 -6243.4629 -6253.7948 10.331908 3679.9515 627.22705 -10560.973 0 495.16299 -0.00018338038 -0.00024232386 + 199530 -6243.3712 -6253.9665 10.595265 3692.9706 626.23766 -10573.175 0 507.78455 -0.00051407739 -0.00057767196 + 199540 -6243.584 -6253.5462 9.9622055 3707.002 625.21254 -10585.761 0 477.44479 -0.00092299872 -0.00097173427 + 199550 -6243.9832 -6252.7586 8.7753687 3718.5347 624.7229 -10596.016 0 420.56491 -0.0012686939 -0.001293811 + 199560 -6244.3575 -6251.9956 7.6380186 3724.4695 625.23641 -10601.701 0 366.05671 -0.0014140862 -0.0014252853 + 199570 -6244.5771 -6251.5408 6.9637015 3723.2823 626.95345 -10601.777 0 333.73965 -0.0012858051 -0.0013031342 + 199580 -6244.6893 -6251.3863 6.6970484 3715.626 629.70195 -10596.714 0 320.96014 -0.00090936405 -0.00094554253 + 199590 -6244.8467 -6251.3272 6.4805141 3704.0159 632.9186 -10588.262 0 310.5826 -0.00039880325 -0.00044854652 + 199600 -6245.1476 -6251.2328 6.0852169 3691.8112 635.75396 -10578.798 0 291.63774 9.1578458e-05 4.5297872e-05 + 199610 -6245.5508 -6251.2006 5.6497546 3682.0949 637.31198 -10570.607 0 270.76794 0.00042296954 0.00039297575 + 199620 -6245.9331 -6251.4515 5.51838 3676.9351 636.95186 -10565.338 0 264.47173 0.00050845189 0.00049313958 + 199630 -6246.2075 -6252.1021 5.8945788 3677.1093 634.5231 -10563.735 0 282.50129 0.00032478404 0.00031116025 + 199640 -6246.3943 -6253.029 6.6347164 3682.1292 630.43567 -10565.594 0 317.97284 -9.0896123e-05 -0.00011551431 + 199650 -6246.6015 -6253.9242 7.3226771 3690.419 625.54585 -10569.889 0 350.94377 -0.00065073574 -0.00068844133 + 199660 -6246.9357 -6254.4894 7.5536739 3699.6295 620.90649 -10575.025 0 362.01444 -0.0012312433 -0.0012724891 + 199670 -6247.4075 -6254.6236 7.2161247 3707.1392 617.47334 -10579.236 0 345.83719 -0.0016974577 -0.0017297729 + 199680 -6247.9167 -6254.4638 6.547119 3710.7352 615.87137 -10581.07 0 313.77468 -0.00193664 -0.0019556229 + 199690 -6248.3346 -6254.2467 5.9120929 3709.3155 616.28829 -10579.851 0 283.34067 -0.0018928014 -0.0019057309 + 199700 -6248.6057 -6254.111 5.5052265 3703.3203 618.49321 -10575.924 0 263.84134 -0.0015870022 -0.0016060352 + 199710 -6248.7775 -6254.0137 5.2362403 3694.6373 621.93011 -10570.581 0 250.95002 -0.0011117536 -0.0011432082 + 199720 -6248.9411 -6253.8271 4.8860547 3685.9586 625.84366 -10565.629 0 234.16716 -0.00059972263 -0.00063919045 + 199730 -6249.1465 -6253.5075 4.3609863 3679.8702 629.42856 -10562.806 0 209.00293 -0.00018014572 -0.00021715822 + 199740 -6249.3688 -6253.1719 3.8030923 3678.083 632.0003 -10563.255 0 182.26552 5.7980685e-05 3.0874908e-05 + 199750 -6249.5421 -6253.0205 3.4784164 3681.071 633.15649 -10567.248 0 166.70523 8.3175552e-05 6.5024438e-05 + 199760 -6249.6191 -6253.1861 3.5669811 3688.1185 632.87357 -10574.178 0 170.94975 -8.1093097e-05 -9.7688931e-05 + 199770 -6249.6062 -6253.6361 4.0299157 3697.6184 631.49643 -10582.751 0 193.13617 -0.00037088015 -0.00039313431 + 199780 -6249.5541 -6254.1957 4.6416973 3707.4657 629.61666 -10591.278 0 222.45618 -0.00070019354 -0.00072957407 + 199790 -6249.5171 -6254.6657 5.1485751 3715.4773 627.87702 -10598.02 0 246.74861 -0.0009800719 -0.0010120472 + 199800 -6249.5121 -6254.9355 5.4233839 3719.8335 626.769 -10601.538 0 259.91899 -0.001138304 -0.0011669472 + 199810 -6249.5123 -6255.0107 5.4984009 3719.505 626.49631 -10601.012 0 263.51422 -0.0011380489 -0.001161001 + 199820 -6249.477 -6254.9535 5.4765256 3714.547 626.94831 -10596.449 0 262.46583 -0.00098909533 -0.0010087469 + 199830 -6249.3871 -6254.8119 5.4248222 3706.1202 627.77886 -10588.711 0 259.98792 -0.00074507725 -0.00076580922 + 199840 -6249.2552 -6254.5927 5.3374532 3696.1953 628.54608 -10579.334 0 255.80071 -0.00048615129 -0.00051056881 + 199850 -6249.1101 -6254.2838 5.173699 3687.0252 628.85584 -10570.165 0 247.95269 -0.00029375551 -0.00032084651 + 199860 -6248.97 -6253.8959 4.9258538 3680.5575 628.46518 -10562.919 0 236.07455 -0.00022671839 -0.00025301602 + 199870 -6248.825 -6253.4869 4.6618548 3677.9716 627.32896 -10558.787 0 223.42224 -0.00030637438 -0.00032902611 + 199880 -6248.6385 -6253.1464 4.5079653 3679.4749 625.59652 -10558.218 0 216.04699 -0.00051421488 -0.00053350958 + 199890 -6248.3656 -6252.9488 4.583191 3684.3746 623.57497 -10560.898 0 219.65223 -0.00080041104 -0.00081981094 + 199900 -6247.9739 -6252.9102 4.9363054 3691.339 621.6726 -10565.922 0 236.57545 -0.001097829 -0.00112161 + 199910 -6247.4515 -6252.9832 5.5317163 3698.7243 620.32921 -10572.037 0 265.11088 -0.0013361404 -0.001366637 + 199920 -6246.8064 -6253.0903 6.2838142 3704.893 619.93699 -10577.92 0 301.15563 -0.001453819 -0.0014903477 + 199930 -6246.0659 -6253.1603 7.0944071 3708.5138 620.75724 -10582.431 0 340.0038 -0.001409045 -0.0014487903 + 199940 -6245.2807 -6253.1402 7.859451 3708.8512 622.84355 -10584.835 0 376.66899 -0.0011902637 -0.0012297699 + 199950 -6244.5197 -6252.9958 8.4761135 3705.9812 625.98968 -10584.967 0 406.22292 -0.00082330917 -0.00085981919 + 199960 -6243.8402 -6252.7316 8.8914542 3700.8253 629.72938 -10583.286 0 426.12838 -0.00037017715 -0.00040339205 + 199970 -6243.2633 -6252.4009 9.1375475 3694.9623 633.4118 -10580.775 0 437.92255 8.1400629e-05 4.8044744e-05 + 199980 -6242.7913 -6252.0679 9.2766797 3690.2573 636.34672 -10578.672 0 444.59054 0.00043506731 0.00039625189 + 199990 -6242.4395 -6251.7603 9.3207732 3688.3424 637.97364 -10578.076 0 446.70375 0.00060854895 0.00056152697 + 200000 -6242.2346 -6251.4698 9.2352077 3690.0557 637.99801 -10579.524 0 442.60297 0.00055836575 0.00050561325 + 200010 -6242.1842 -6251.1903 9.0060714 3695.0746 636.45737 -10582.722 0 431.62147 0.00029616242 0.00024373559 + 200020 -6242.2607 -6250.9404 8.6796407 3701.9552 633.70636 -10586.602 0 415.97708 -0.00011272172 -0.00015912056 + 200030 -6242.4122 -6250.7608 8.3485296 3708.574 630.32801 -10589.663 0 400.10838 -0.00056784496 -0.00060592137 + 200040 -6242.5839 -6250.7045 8.1206564 3712.7842 626.99451 -10590.483 0 389.18742 -0.0009609137 -0.00099278252 + 200050 -6242.7365 -6250.8208 8.0842937 3713.0595 624.31086 -10588.191 0 387.44471 -0.0012034596 -0.0012347267 + 200060 -6242.8663 -6251.1145 8.2482176 3708.9647 622.681 -10582.76 0 395.30087 -0.0012498886 -0.0012864779 +Loop time of 2.92876 on 1 procs for 200000 steps with 22 atoms + +Performance: 5.900 ns/day, 4.068 hours/ns, 68288.229 timesteps/s, 1.502 Matom-step/s +99.1% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 2.6387 | 2.6387 | 2.6387 | 0.0 | 90.10 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.012135 | 0.012135 | 0.012135 | 0.0 | 0.41 +Output | 0.12708 | 0.12708 | 0.12708 | 0.0 | 4.34 +Modify | 0.1222 | 0.1222 | 0.1222 | 0.0 | 4.17 +Other | | 0.0286 | | | 0.98 + +Nlocal: 22 ave 22 max 22 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 231 ave 231 max 231 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 231 +Ave neighs/atom = 10.5 +Neighbor list builds = 0 +Dangerous builds = 0 + + +Total wall time: 0:00:02 diff --git a/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.ang.g++.4 b/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.ang.g++.4 new file mode 100644 index 0000000000..5ddab1bd37 --- /dev/null +++ b/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.ang.g++.4 @@ -0,0 +1,20189 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task + +# Created 2011-01-07 + +# General parameters + +variable sname index Si2H6.ang + +units real +newton on +boundary f f f + +atom_style electron + +read_data data.${sname} +read_data data.Si2H6.ang +Reading data file ... + orthogonal box = (-529.17725 -529.17725 -529.17725) to (529.17725 529.17725 529.17725) + 2 by 1 by 2 MPI processor grid + reading atoms ... + 22 atoms + read_data CPU = 0.002 seconds + +pair_style eff/cut 529.177249 ecp 1 Si +pair_coeff * * + +compute energies all pair eff/cut +variable eke equal c_energies[1] +variable epauli equal c_energies[2] +variable estatics equal c_energies[3] +variable errestrain equal c_energies[4] + +comm_modify vel yes + +compute peratom all stress/atom NULL +compute p all reduce sum c_peratom[1] c_peratom[2] c_peratom[3] +variable press equal -(c_p[1]+c_p[2]+c_p[3])/(3*vol) + +compute effTemp all temp/eff +compute effPress all pressure effTemp + +thermo 10 +thermo_style custom step etotal pe ke v_eke v_epauli v_estatics v_errestrain temp press v_press +thermo_modify temp effTemp press effPress + +# Minimization + +min_style cg +#dump 1 all xyz 10 ${sname}.min.xyz +compute 1 all property/atom spin eradius erforce +#dump 2 all custom 10 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +min_modify line quadratic +minimize 0 1.0e-6 2000 10000 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- EFF package: doi:10.1002/jcc.21637 + +@Article{Jaramillo-Botero11, + author = {A. Jaramillo-Botero and J. Su and A. Qi and Goddard, III, W. A.}, + title = {Large-Scale, Long-Term Nonadiabatic Electron Molecular Dynamics for Describing Material Properties and Phenomena in Extreme Environments}, + journal = {J.~Comp.\ Chem.}, + year = 2011, + volume = 32, + number = 3, + pages = {497--512} +} + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 531.17725 + ghost atom cutoff = 531.17725 + binsize = 265.58862, bins = 4 4 4 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair eff/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 6.113 | 6.113 | 6.113 Mbytes + Step TotEng PotEng KinEng v_eke v_epauli v_estatics v_errestrain Temp Press v_press + 0 -5050.1521 -5050.1521 0 3444.1415 1317.4784 -9811.772 0 0 0.048396025 0.048396025 + 10 -6181.4654 -6181.4654 0 3753.15 830.37457 -10764.99 0 0 0.0242879 0.0242879 + 20 -6254.9729 -6254.9729 0 3871.4029 665.15453 -10791.53 0 0 0.0053673679 0.0053673679 + 30 -6259.1457 -6259.1457 0 3724.221 630.24895 -10613.616 0 0 6.0271678e-06 6.0271678e-06 + 40 -6259.1461 -6259.1461 0 3723.6439 630.2123 -10613.002 0 0 -3.1221983e-07 -3.1221983e-07 + 50 -6259.1461 -6259.1461 0 3723.6503 630.21469 -10613.011 0 0 2.7210563e-09 2.7210564e-09 + 60 -6259.1461 -6259.1461 0 3723.6503 630.21467 -10613.011 0 0 -5.7152597e-12 -5.7152678e-12 +Loop time of 0.00152986 on 4 procs for 60 steps with 22 atoms + +56.2% CPU use with 4 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = force tolerance + Energy initial, next-to-last, final = + -5050.15207998895 -6259.14612629924 -6259.14612629924 + Force two-norm initial, final = 3250.3463 6.3011213e-07 + Force max component initial, final = 1943.1659 2.7170119e-07 + Final line search alpha, max atom move = 1 2.7170119e-07 + Iterations, force evaluations = 60 98 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.00011262 | 0.00038723 | 0.00077742 | 0.0 | 25.31 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.00032644 | 0.00072576 | 0.0010031 | 0.0 | 47.44 +Output | 5.8853e-05 | 8.1959e-05 | 0.00014648 | 0.0 | 5.36 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.0003349 | | | 21.89 + +Nlocal: 5.5 ave 9 max 3 min +Histogram: 2 0 0 0 0 0 1 0 0 1 +Nghost: 16.5 ave 19 max 13 min +Histogram: 1 0 0 1 0 0 0 0 0 2 +Neighs: 57.75 ave 114 max 17 min +Histogram: 1 0 0 2 0 0 0 0 0 1 + +Total # of neighbors = 231 +Ave neighs/atom = 10.5 +Neighbor list builds = 0 +Dangerous builds = 0 + +#undump 1 +#undump 2 + +# Equilibrate at 300K +velocity all create 300.0 4928459 rot yes mom yes dist gaussian + +timestep 0.001 + +#dump 1 all custom 1000 ${sname}.nvt.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +#fix 0 all langevin/eff 300.0 300.0 0.1 +fix 1 all nvt/eff temp 300.0 300.0 0.1 + +run 200000 +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Per MPI rank memory allocation (min/avg/max) = 5.363 | 5.363 | 5.363 Mbytes + Step TotEng PotEng KinEng v_eke v_epauli v_estatics v_errestrain Temp Press v_press + 60 -6240.367 -6259.1461 18.779103 3723.6503 630.21467 -10613.011 0 900 0.00072412613 0.00072412613 + 70 -6240.7299 -6258.653 17.923108 3723.5208 625.73203 -10607.906 0 858.9759 0.0002899618 0.00028992461 + 80 -6241.6799 -6257.332 15.652041 3722.6624 622.43019 -10602.425 0 750.13365 -9.9883131e-05 -0.0001003931 + 90 -6242.8888 -6255.5793 12.690418 3720.6401 620.6936 -10596.913 0 608.19604 -0.00036377688 -0.00036568571 + 100 -6244.0325 -6253.8573 9.8248014 3717.5147 620.55349 -10591.925 0 470.85961 -0.00045876614 -0.00046268137 + 110 -6244.9404 -6252.5381 7.5976559 3713.8348 621.76484 -10588.138 0 364.1223 -0.0003881341 -0.00039356452 + 120 -6245.6062 -6251.8308 6.2245584 3710.4587 623.92825 -10586.218 0 298.31576 -0.0001912229 -0.00019671566 + 130 -6246.0999 -6251.7848 5.6849089 3708.3118 626.60075 -10586.697 0 272.45273 7.4947052e-05 7.0865972e-05 + 140 -6246.4893 -6252.3272 5.8379103 3708.162 629.37458 -10589.864 0 279.78542 0.00035230177 0.00035008811 + 150 -6246.815 -6253.3013 6.4862705 3710.4421 631.92845 -10595.672 0 310.85848 0.00059290828 0.0005915255 + 160 -6247.1032 -6254.5025 7.3993388 3715.1393 634.05778 -10603.7 0 354.61783 0.00076540359 0.00076273176 + 170 -6247.3822 -6255.713 8.3307518 3721.7637 635.68333 -10613.16 0 399.25637 0.00085770272 0.00085166839 + 180 -6247.6872 -6256.737 9.0498072 3729.4081 636.8354 -10622.98 0 433.71754 0.00087629694 0.00086613407 + 190 -6248.0491 -6257.4346 9.3855165 3736.8944 637.61516 -10631.944 0 449.80661 0.00084233102 0.00082922308 + 200 -6248.478 -6257.746 9.267972 3742.9876 638.14211 -10638.876 0 444.17322 0.00078505975 0.00077165932 + 210 -6248.9527 -6257.6976 8.7448332 3746.6401 638.50216 -10642.84 0 419.10147 0.000733734 0.00072270913 + 220 -6249.4285 -6257.3848 7.9562423 3747.2184 638.7128 -10643.316 0 381.30778 0.00070936278 0.00070187313 + 230 -6249.8583 -6256.9318 7.0734683 3744.6582 638.71681 -10640.307 0 339.00029 0.00071832641 0.00071354297 + 240 -6250.2142 -6256.4476 6.233418 3739.4969 638.40525 -10634.35 0 298.74037 0.00075016514 0.00074620802 + 250 -6250.4942 -6256.0015 5.5073013 3732.7619 637.66008 -10626.423 0 263.94078 0.00078108959 0.00077658873 + 260 -6250.7134 -6255.6297 4.9162661 3725.7364 636.40074 -10617.767 0 235.61505 0.00078249223 0.00077747439 + 270 -6250.888 -6255.3589 4.4709432 3719.6722 634.62066 -10609.652 0 214.27269 0.00073119647 0.00072666878 + 280 -6251.0254 -6255.223 4.197644 3715.5343 632.40563 -10603.163 0 201.17466 0.00061730869 0.00061408478 + 290 -6251.1256 -6255.2572 4.1315259 3713.84 629.93219 -10599.029 0 198.0059 0.00044711581 0.00044501328 + 300 -6251.1885 -6255.476 4.2874726 3714.6096 627.44993 -10597.536 0 205.47974 0.00024126791 0.00023933584 + 310 -6251.2195 -6255.8555 4.6359554 3717.4109 625.25299 -10598.519 0 222.18099 3.0379684e-05 2.7821141e-05 + 320 -6251.2289 -6256.3318 5.1028874 3721.4719 623.64514 -10601.449 0 244.559 -0.00014994926 -0.00015308246 + 330 -6251.2265 -6256.8171 5.590656 3725.8427 622.90055 -10605.56 0 267.9356 -0.00026416325 -0.00026712524 + 340 -6251.217 -6257.2198 6.0028895 3729.5937 623.2212 -10610.035 0 287.69215 -0.00028241347 -0.00028455119 + 350 -6251.2003 -6257.4598 6.2595819 3732.0249 624.6939 -10614.179 0 299.99429 -0.00018708708 -0.00018847888 + 360 -6251.1756 -6257.4801 6.3045769 3732.8365 627.25374 -10617.57 0 302.1507 2.1038762e-05 1.9656007e-05 + 370 -6251.1438 -6257.2599 6.1160622 3732.2074 630.66502 -10620.132 0 293.11602 0.00031945097 0.00031730043 + 380 -6251.1063 -6256.8289 5.7225932 3730.7425 634.53125 -10622.103 0 274.25877 0.00066551248 0.0006622944 + 390 -6251.0613 -6256.273 5.2117299 3729.2989 638.34172 -10623.914 0 249.77534 0.0010034781 0.00099936821 + 400 -6251.0035 -6255.719 4.7154288 3728.7356 641.55202 -10626.007 0 225.98981 0.001275416 0.0012707475 + 410 -6250.9268 -6255.2996 4.3727129 3729.6592 643.68366 -10628.642 0 209.56494 0.0014334667 0.0014285689 + 420 -6250.825 -6255.1144 4.2893654 3732.2287 644.41944 -10631.763 0 205.57046 0.0014507241 0.0014460413 + 430 -6250.6886 -6255.2041 4.5154747 3736.0684 643.66923 -10634.942 0 216.40688 0.0013281912 0.001324325 + 440 -6250.5007 -6255.5448 5.0441103 3740.3158 641.58887 -10637.449 0 241.74207 0.001095604 0.0010929445 + 450 -6250.2381 -6256.0558 5.8176934 3743.8092 638.54703 -10638.412 0 278.81651 0.00080500951 0.0008031458 + 460 -6249.8832 -6256.6131 6.7299234 3745.3813 635.04867 -10637.043 0 322.53569 0.00051812052 0.00051566722 + 470 -6249.4399 -6257.0682 7.6282808 3744.1876 631.63261 -10632.888 0 365.59002 0.00029092186 0.00028620163 + 480 -6248.942 -6257.2779 8.3359026 3739.9756 628.76595 -10626.019 0 399.50323 0.00016033735 0.00015260002 + 490 -6248.4435 -6257.1466 8.7030723 3733.2093 626.75862 -10617.115 0 417.10006 0.0001369963 0.00012721437 + 500 -6247.9933 -6256.6632 8.6698909 3725.0067 625.71852 -10607.388 0 415.50982 0.00020557311 0.00019603227 + 510 -6247.6123 -6255.913 8.3007253 3716.9087 625.55866 -10598.38 0 397.81733 0.00033140156 0.00032426108 + 520 -6247.2893 -6255.0531 7.7638554 3710.547 626.05303 -10591.653 0 372.08751 0.00047071254 0.00046658518 + 530 -6246.9952 -6254.2624 7.2671863 3707.2928 626.92293 -10588.478 0 348.28434 0.00058207333 0.00057965989 + 540 -6246.7028 -6253.69 6.987287 3707.9609 627.92793 -10589.579 0 334.87 0.0006371974 0.00063419233 + 550 -6246.398 -6253.4226 7.0246706 3712.6187 628.93676 -10594.978 0 336.66163 0.00062928572 0.00062389277 + 560 -6246.0807 -6253.4761 7.3954139 3720.5379 629.96003 -10603.974 0 354.42973 0.00057670475 0.00056875704 + 570 -6245.7593 -6253.808 8.048785 3730.3077 631.13523 -10615.251 0 385.74294 0.00051992738 0.00051089833 + 580 -6245.4453 -6254.3369 8.891584 3740.1128 632.66439 -10627.114 0 426.13459 0.00051080389 0.00050272479 + 590 -6245.1556 -6254.9587 9.8030535 3748.1395 634.71647 -10637.815 0 469.81733 0.00059551636 0.00058959227 + 600 -6244.9191 -6255.5578 10.63864 3753.0206 637.32022 -10645.899 0 509.86331 0.00079566913 0.00079164562 + 610 -6244.7823 -6256.0208 11.238531 3754.186 640.28478 -10650.492 0 538.61346 0.0010946215 0.0010913389 + 620 -6244.8021 -6256.2612 11.459104 3751.9884 643.18779 -10651.437 0 549.18455 0.0014361755 0.0014326814 + 630 -6245.0254 -6256.2476 11.222176 3747.5458 645.45534 -10649.249 0 537.82962 0.0017385765 0.0017347117 + 640 -6245.4664 -6256.0162 10.549781 3742.3512 646.52369 -10644.891 0 505.60472 0.0019198602 0.0019159225 + 650 -6246.0977 -6255.6537 9.5560329 3737.7954 646.02935 -10639.478 0 457.97871 0.0019249579 0.0019210789 + 660 -6246.8573 -6255.26 8.4027196 3734.7722 643.94836 -10633.981 0 402.70547 0.0017439985 0.0017400335 + 670 -6247.6655 -6254.917 7.2514472 3733.4922 640.619 -10629.028 0 347.53004 0.0014149847 0.0014109263 + 680 -6248.4449 -6254.6802 6.235316 3733.5457 636.63591 -10624.862 0 298.83133 0.0010104205 0.0010066804 + 690 -6249.1388 -6254.5872 5.4484175 3734.1623 632.66956 -10621.419 0 261.11874 0.00061413384 0.00061128015 + 700 -6249.7209 -6254.6639 4.9429926 3734.5424 629.2955 -10618.502 0 236.89594 0.0002981631 0.00029638091 + 710 -6250.1918 -6254.9207 4.7289474 3734.1389 626.89216 -10615.952 0 226.63769 0.00010743254 0.00010623961 + 720 -6250.5669 -6255.3405 4.773546 3732.8148 625.61494 -10613.77 0 228.77511 5.4380774e-05 5.2849305e-05 + 730 -6250.8673 -6255.8702 5.0029134 3730.8584 625.42402 -10612.153 0 239.76768 0.00012193376 0.00011927184 + 740 -6251.1138 -6256.426 5.3121403 3728.8732 626.1412 -10611.44 0 254.58757 0.00027243132 0.0002685263 + 750 -6251.3239 -6256.9124 5.5884954 3727.578 627.51749 -10612.008 0 267.83206 0.00045996608 0.00045549078 + 760 -6251.5077 -6257.2497 5.741962 3727.5821 629.29685 -10614.129 0 275.18704 0.00064296348 0.00063891912 + 770 -6251.6663 -6257.395 5.7287671 3729.2038 631.26332 -10617.862 0 274.55466 0.00079354303 0.00079052186 + 780 -6251.7938 -6257.3492 5.5553857 3732.3836 633.2633 -10622.996 0 266.24525 0.00090117144 0.00089887962 + 790 -6251.8843 -6257.1469 5.2625516 3736.7084 635.2015 -10629.057 0 252.211 0.00097028585 0.00096773259 + 800 -6251.938 -6256.8402 4.9022089 3741.5209 637.01712 -10635.378 0 234.94136 0.0010139001 0.0010101645 + 810 -6251.9619 -6256.4856 4.5237175 3746.0685 638.65304 -10641.207 0 216.80193 0.0010464076 0.0010413981 + 820 -6251.9651 -6256.1402 4.1751279 3749.6493 640.03204 -10645.822 0 200.09556 0.0010782583 0.0010728278 + 830 -6251.9514 -6255.8614 3.9099639 3751.7299 641.05059 -10648.642 0 187.38741 0.001113527 0.0011088083 + 840 -6251.9158 -6255.7001 3.7842457 3752.0264 641.59297 -10649.319 0 181.36229 0.0011498819 0.0011463742 + 850 -6251.8478 -6255.686 3.8382304 3750.5462 641.56018 -10647.792 0 183.94953 0.0011799794 0.0011771474 + 860 -6251.7382 -6255.8119 4.0736376 3747.5832 640.90176 -10644.297 0 195.23157 0.0011936552 0.0011903872 + 870 -6251.5853 -6256.0301 4.4448192 3743.6619 639.63796 -10639.33 0 213.02068 0.0011806689 0.0011762153 + 880 -6251.3945 -6256.2683 4.8738212 3739.434 637.86396 -10633.566 0 233.58086 0.0011336261 0.0011282423 + 890 -6251.1744 -6256.4559 5.281487 3735.5519 635.73586 -10627.744 0 253.11849 0.0010502934 0.0010450819 + 900 -6250.9309 -6256.5462 5.6153448 3732.5511 633.44516 -10622.542 0 269.11883 0.00093451786 0.00093062919 + 910 -6250.6655 -6256.525 5.8595282 3730.7703 631.19266 -10618.488 0 280.82147 0.00079564337 0.00079346447 + 920 -6250.3779 -6256.4042 6.0262776 3730.3173 629.17029 -10615.892 0 288.81304 0.000647154 0.00064603532 + 930 -6250.07 -6256.209 6.1390422 3731.077 627.55428 -10614.84 0 294.21735 0.00050548864 0.00050413861 + 940 -6249.7489 -6255.9671 6.2181836 3732.7494 626.50565 -10615.222 0 298.01025 0.00038939638 0.00038667168 + 950 -6249.4264 -6255.7024 6.2759907 3734.9092 626.16974 -10616.781 0 300.78069 0.00031937207 0.00031499857 + 960 -6249.1148 -6255.4372 6.3223264 3737.0848 626.66595 -10619.188 0 303.00135 0.00031619805 0.00031097907 + 970 -6248.8213 -6255.1973 6.3760186 3738.8558 628.06382 -10622.117 0 305.57459 0.00039765145 0.0003929688 + 980 -6248.543 -6255.0147 6.471658 3739.9623 630.34821 -10625.325 0 310.15816 0.00057306988 0.00056991761 + 990 -6248.27 -6254.922 6.6519158 3740.4008 633.38391 -10628.707 0 318.79713 0.00083670964 0.00083489192 + 1000 -6247.9928 -6254.9378 6.9450309 3740.4664 636.89461 -10632.299 0 332.84485 0.0011624105 0.001160537 + 1010 -6247.7124 -6255.053 7.3405499 3740.6994 640.47229 -10636.225 0 351.80034 0.0015031278 0.0014995145 + 1020 -6247.4453 -6255.227 7.7817312 3741.7172 643.62844 -10640.573 0 372.94422 0.0017981833 0.0017920459 + 1030 -6247.2173 -6255.4 8.1827526 3743.9679 645.88634 -10645.254 0 392.16342 0.0019880776 0.0019801121 + 1040 -6247.0517 -6255.5124 8.4606515 3747.4904 646.89491 -10649.898 0 405.48189 0.0020325608 0.0020244618 + 1050 -6246.9588 -6255.5215 8.562743 3751.7867 646.52754 -10653.836 0 410.37469 0.001924928 0.0019182234 + 1060 -6246.933 -6255.4104 8.4774161 3755.8822 644.92549 -10656.218 0 406.28534 0.001696206 0.0016912742 + 1070 -6246.9591 -6255.189 8.2298435 3758.5776 642.46207 -10656.229 0 394.42028 0.0014068507 0.00140278 + 1080 -6247.0217 -6254.8928 7.8711012 3758.8152 639.6353 -10653.343 0 377.22733 0.0011286227 0.001123938 + 1090 -6247.1112 -6254.5784 7.4672291 3756.0359 636.92631 -10647.541 0 357.87152 0.0009230458 0.00091676401 + 1100 -6247.2252 -6254.3153 7.0900257 3750.4031 634.67379 -10639.392 0 339.79381 0.00082388369 0.0008161946 + 1110 -6247.3647 -6254.1731 6.8084052 3742.8194 633.00714 -10630 0 326.29698 0.00082928892 0.00082141699 + 1120 -6247.5286 -6254.2064 6.6777698 3734.7342 631.8565 -10620.797 0 320.0362 0.00090560486 0.00089892772 + 1130 -6247.7133 -6254.4381 6.72476 3727.8023 631.0302 -10613.271 0 322.28823 0.0010007703 0.00099577918 + 1140 -6247.9176 -6254.8461 6.9285073 3723.4883 630.32763 -10608.662 0 332.05294 0.0010624672 0.0010583371 + 1150 -6248.1506 -6255.3584 7.2078369 3722.7132 629.64551 -10607.717 0 345.43999 0.0010553729 0.0010505511 + 1160 -6248.4365 -6255.8665 7.4300442 3725.6239 629.03932 -10610.53 0 356.08941 0.00097280333 0.00096625772 + 1170 -6248.8073 -6256.2579 7.4505174 3731.5449 628.71749 -10616.52 0 357.0706 0.00083968996 0.00083183867 + 1180 -6249.2862 -6256.4579 7.1717243 3739.1354 628.96865 -10624.562 0 343.70927 0.00070563257 0.00069811411 + 1190 -6249.8692 -6256.4589 6.5897238 3746.7359 630.04576 -10633.241 0 315.81654 0.00062901047 0.00062340796 + 1200 -6250.5195 -6256.3174 5.7979153 3752.8217 632.04795 -10641.187 0 277.86863 0.00065625425 0.00065287566 + 1210 -6251.1772 -6256.1221 4.9448785 3756.4226 634.84529 -10647.39 0 236.98632 0.00080358976 0.00080139123 + 1220 -6251.7816 -6255.955 4.173352 3757.3491 638.08034 -10651.384 0 200.01045 0.0010493246 0.0010469356 + 1230 -6252.2932 -6255.8692 3.5760469 3756.1332 641.24836 -10653.251 0 171.38423 0.0013405673 0.0013373349 + 1240 -6252.7011 -6255.8879 3.1868583 3753.7381 643.8202 -10653.446 0 152.73213 0.0016105847 0.0016067728 + 1250 -6253.0148 -6256.0127 2.9979324 3751.1948 645.35959 -10652.567 0 143.67774 0.001798199 0.001794478 + 1260 -6253.2495 -6256.2283 2.9788774 3749.3086 645.60823 -10651.145 0 142.76452 0.001862597 0.0018594534 + 1270 -6253.4177 -6256.5031 3.0853542 3748.4854 644.53316 -10649.522 0 147.86748 0.0017913922 0.0017888662 + 1280 -6253.5289 -6256.7909 3.2620705 3748.6831 642.33163 -10647.806 0 156.33672 0.0016018506 0.0015996212 + 1290 -6253.5909 -6257.0407 3.4497761 3749.4779 639.38798 -10645.907 0 165.33263 0.0013355452 0.0013331688 + 1300 -6253.6118 -6257.2098 3.5980204 3750.2258 636.18837 -10643.624 0 172.43733 0.0010475719 0.0010446767 + 1310 -6253.5989 -6257.276 3.6771284 3750.2791 633.2158 -10640.771 0 176.22863 0.00079299443 0.0007893701 + 1320 -6253.559 -6257.2412 3.6822685 3749.1975 630.85599 -10637.295 0 176.47497 0.00061425798 0.00060989341 + 1330 -6253.4978 -6257.1262 3.6284241 3746.8935 629.33926 -10633.359 0 173.89444 0.00053302683 0.00052813527 + 1340 -6253.4196 -6256.9604 3.5408253 3743.6742 628.72844 -10629.363 0 169.69622 0.00054826424 0.00054325711 + 1350 -6253.3262 -6256.7726 3.4463298 3740.1711 628.94653 -10625.89 0 165.16746 0.00064020958 0.0006355602 + 1360 -6253.2168 -6256.585 3.3682702 3737.1867 629.82775 -10623.6 0 161.42641 0.00077820681 0.00077422952 + 1370 -6253.0877 -6256.4118 3.3241837 3735.5012 631.17302 -10623.086 0 159.31353 0.00092966024 0.00092633494 + 1380 -6252.9349 -6256.26 3.3251309 3735.6875 632.79477 -10624.742 0 159.35893 0.0010677006 0.0010646819 + 1390 -6252.7559 -6256.1325 3.3765353 3737.975 634.54279 -10628.65 0 161.82252 0.0011760285 0.0011728587 + 1400 -6252.5505 -6256.0318 3.4813051 3742.184 636.30976 -10634.526 0 166.84367 0.0012504106 0.0012467892 + 1410 -6252.3196 -6255.9642 3.6445871 3747.7426 638.02113 -10641.728 0 174.66906 0.0012971233 0.0012930161 + 1420 -6252.0631 -6255.9395 3.8764215 3753.7825 639.61809 -10649.34 0 185.77987 0.0013291562 0.0013246492 + 1430 -6251.7794 -6255.9666 4.1872144 3759.2993 641.04229 -10656.308 0 200.67481 0.0013612577 0.0013563014 + 1440 -6251.4675 -6256.0424 4.5749086 3763.3468 642.22813 -10661.617 0 219.25529 0.001405032 0.0013993767 + 1450 -6251.1322 -6256.1432 5.0110761 3765.2256 643.1038 -10664.473 0 240.15889 0.0014652894 0.0014587677 + 1460 -6250.7858 -6256.2245 5.4386954 3764.6226 643.59794 -10664.445 0 260.6528 0.0015385361 0.0015314765 + 1470 -6250.4458 -6256.2351 5.7893157 3761.6703 643.6479 -10661.553 0 277.45649 0.0016137714 0.0016070763 + 1480 -6250.1255 -6256.138 6.0125578 3756.918 643.20687 -10656.263 0 288.15551 0.0016749263 0.0016695456 + 1490 -6249.8284 -6255.9269 6.0984857 3751.2263 642.24975 -10649.403 0 292.27366 0.001703912 0.0017000185 + 1500 -6249.5494 -6255.6259 6.076532 3745.6068 640.78012 -10642.013 0 291.22151 0.0016836746 0.0016802779 + 1510 -6249.2824 -6255.2759 5.9934469 3741.0325 638.84073 -10635.149 0 287.23961 0.0016014733 0.0015969891 + 1520 -6249.0291 -6254.9199 5.89086 3738.2437 636.52738 -10629.691 0 282.32306 0.0014529028 0.0014463892 + 1530 -6248.7971 -6254.5995 5.8024011 3737.5831 634.00224 -10626.185 0 278.08362 0.0012463819 0.0012384579 + 1540 -6248.5916 -6254.3615 5.7698362 3738.9054 631.49927 -10624.766 0 276.52293 0.0010063718 0.00099893728 + 1550 -6248.4056 -6254.2613 5.8556834 3741.6062 629.31435 -10625.182 0 280.63721 0.00077272629 0.00076753949 + 1560 -6248.2195 -6254.3473 6.1277183 3744.7866 627.77526 -10626.909 0 293.67465 0.00059436772 0.00059156901 + 1570 -6248.0144 -6254.6283 6.6138572 3747.5175 627.1915 -10629.337 0 316.97315 0.00051786388 0.00051572389 + 1580 -6247.7888 -6255.0458 7.2569817 3749.1243 627.78873 -10631.959 0 347.79528 0.0005741417 0.00057036703 + 1590 -6247.5666 -6255.4774 7.9108411 3749.3894 629.63942 -10634.506 0 379.1319 0.00076792291 0.00076148458 + 1600 -6247.3859 -6255.7806 8.394659 3748.6051 632.60827 -10636.994 0 402.31916 0.0010737247 0.0010656013 + 1610 -6247.2751 -6255.8537 8.578515 3747.4655 636.33653 -10639.656 0 411.13057 0.0014398853 0.0014319944 + 1620 -6247.2355 -6255.6773 8.441861 3746.8416 640.28495 -10642.804 0 404.58134 0.0017993964 0.0017926603 + 1630 -6247.2456 -6255.3109 8.0652603 3747.5112 643.83788 -10646.66 0 386.53253 0.0020846907 0.0020780772 + 1640 -6247.283 -6254.8524 7.5693085 3749.9084 646.4446 -10651.205 0 362.76374 0.0022432091 0.0022347516 + 1650 -6247.3409 -6254.3959 7.0549893 3753.9454 647.75314 -10656.094 0 338.11467 0.0022506559 0.0022395861 + 1660 -6247.4263 -6254.0155 6.5891893 3758.9552 647.68931 -10660.66 0 315.79092 0.0021185434 0.0021065217 + 1670 -6247.5426 -6253.773 6.2303813 3763.7954 646.45337 -10664.022 0 298.59483 0.0018925665 0.0018826771 + 1680 -6247.6769 -6253.7264 6.0495706 3767.1275 644.43878 -10665.293 0 289.92937 0.0016400885 0.0016342697 + 1690 -6247.804 -6253.912 6.1079606 3767.8155 642.10584 -10663.833 0 292.72774 0.0014291716 0.0014263133 + 1700 -6247.9088 -6254.3093 6.4004949 3765.3198 639.85536 -10659.484 0 306.74763 0.0013063335 0.0013028684 + 1710 -6248.0043 -6254.8225 6.8182742 3759.9266 637.93982 -10652.689 0 326.76996 0.0012821312 0.0012748082 + 1720 -6248.1299 -6255.3078 7.1778181 3752.7083 636.43168 -10644.448 0 344.00132 0.0013307302 0.0013192668 + 1730 -6248.3268 -6255.6377 7.3108204 3745.2207 635.25051 -10636.109 0 350.37554 0.0014031076 0.0013904441 + 1740 -6248.6088 -6255.7612 7.1524151 3739.0568 634.23631 -10629.054 0 342.78386 0.0014473347 0.0014372961 + 1750 -6248.9543 -6255.7169 6.7626203 3735.4254 633.24454 -10624.387 0 324.10271 0.0014271694 0.0014215681 + 1760 -6249.3252 -6255.5952 6.270078 3734.8848 632.23024 -10622.71 0 300.49732 0.0013327402 0.0013302948 + 1770 -6249.6932 -6255.4813 5.7880199 3737.2762 631.29003 -10624.048 0 277.39439 0.0011818191 0.0011795457 + 1780 -6250.0534 -6255.4185 5.3651021 3741.8351 630.64476 -10627.898 0 257.12579 0.0010135594 0.001009222 + 1790 -6250.4151 -6255.4099 4.9948444 3747.4205 630.56777 -10633.398 0 239.38097 0.00087741636 0.00087099313 + 1800 -6250.784 -6255.4422 4.6581931 3752.8056 631.28492 -10639.533 0 223.24675 0.00081965042 0.00081287234 + 1810 -6251.152 -6255.5076 4.3555673 3756.9716 632.88268 -10645.362 0 208.74323 0.00087000244 0.00086469012 + 1820 -6251.5005 -6255.6063 4.1057916 3759.3385 635.25614 -10650.201 0 196.77257 0.0010318924 0.0010285962 + 1830 -6251.812 -6255.7355 3.9234696 3759.8729 638.11258 -10653.721 0 188.03468 0.001279495 0.0012773765 + 1840 -6252.0795 -6255.881 3.8015014 3759.0374 641.02753 -10655.946 0 182.18928 0.0015633259 0.0015610695 + 1850 -6252.3058 -6256.0198 3.7140127 3757.5987 643.53606 -10657.155 0 177.99633 0.0018230607 0.0018199164 + 1860 -6252.4985 -6256.133 3.6345086 3756.3565 645.23511 -10657.725 0 174.18605 0.0020036735 0.0019998741 + 1870 -6252.6628 -6256.2163 3.5535023 3755.8852 645.87069 -10657.972 0 170.30377 0.0020698234 0.0020662195 + 1880 -6252.7985 -6256.2818 3.4832518 3756.3677 645.38806 -10658.038 0 166.93697 0.0020141123 0.0020114016 + 1890 -6252.9011 -6256.3483 3.4472796 3757.5696 643.93266 -10657.851 0 165.21298 0.0018570094 0.0018551294 + 1900 -6252.9653 -6256.4267 3.4614667 3758.9468 641.80394 -10657.177 0 165.89291 0.0016390661 0.0016371687 + 1910 -6252.9903 -6256.5089 3.5185827 3759.8412 639.37741 -10655.728 0 168.63023 0.0014085254 0.0014055583 + 1920 -6252.9809 -6256.5683 3.5874293 3759.6938 637.01836 -10653.28 0 171.92974 0.0012086416 0.0012041283 + 1930 -6252.9446 -6256.5741 3.6295633 3758.2098 635.011 -10649.795 0 173.94904 0.0010685226 0.0010629471 + 1940 -6252.8855 -6256.5094 3.6238717 3755.4404 633.52008 -10645.47 0 173.67627 0.00099941491 0.00099389492 + 1950 -6252.8005 -6256.3827 3.5821577 3751.7734 632.59066 -10640.747 0 171.6771 0.00099615653 0.00099164633 + 1960 -6252.6788 -6256.224 3.5452409 3747.8499 632.17887 -10636.253 0 169.90783 0.0010420948 0.0010387267 + 1970 -6252.5061 -6256.07 3.5639169 3744.4325 632.19782 -10632.7 0 170.80289 0.0011154574 0.001112484 + 1980 -6252.2682 -6255.947 3.6787807 3742.2509 632.56075 -10630.759 0 176.30781 0.0011955313 0.0011918445 + 1990 -6251.9527 -6255.8625 3.9097902 3741.8539 633.20848 -10630.925 0 187.37908 0.0012674737 0.0012622938 + 2000 -6251.5492 -6255.8048 4.2555549 3743.4926 634.11675 -10633.414 0 203.95007 0.001324965 0.0013182645 + 2010 -6251.0535 -6255.7478 4.6943387 3747.0526 635.28586 -10638.086 0 224.97905 0.0013703299 0.001362799 + 2020 -6250.4769 -6255.6576 5.1807163 3752.0459 636.71888 -10644.422 0 248.28899 0.0014122997 0.001404921 + 2030 -6249.855 -6255.4979 5.6429239 3757.67 638.39541 -10651.563 0 270.44057 0.0014621839 0.0014556476 + 2040 -6249.2447 -6255.2401 5.9953905 3762.9469 640.24904 -10658.436 0 287.33275 0.0015296568 0.001523946 + 2050 -6248.7039 -6254.8771 6.1731939 3766.932 642.1564 -10663.965 0 295.85409 0.0016193975 0.0016138429 + 2060 -6248.2665 -6254.4385 6.1719364 3768.9398 643.94343 -10667.322 0 295.79382 0.0017293608 0.0017231244 + 2070 -6247.934 -6253.9976 6.0636461 3768.7028 645.40753 -10668.108 0 290.60394 0.0018507233 0.0018432855 + 2080 -6247.6851 -6253.6583 5.9731387 3766.4124 646.34951 -10666.42 0 286.26632 0.0019689928 0.0019603217 + 2090 -6247.4942 -6253.5205 6.0262613 3762.6466 646.60713 -10662.774 0 288.81226 0.0020657969 0.0020563059 + 2100 -6247.3419 -6253.64 6.2981589 3758.2219 646.08321 -10657.945 0 301.84311 0.0021213677 0.0021118318 + 2110 -6247.2178 -6254.0032 6.7854008 3754.0071 644.76398 -10652.774 0 325.19448 0.0021179423 0.0021092865 + 2120 -6247.1197 -6254.527 7.4073372 3750.7371 642.72702 -10647.991 0 355.00116 0.0020437869 0.0020366638 + 2130 -6247.0515 -6255.0791 8.027586 3748.8682 640.1405 -10644.088 0 384.72696 0.001896904 0.0018913092 + 2140 -6247.0235 -6255.5108 8.4873428 3748.5023 637.25419 -10641.267 0 406.76109 0.0016874684 0.0016827586 + 2150 -6247.0475 -6255.6958 8.6483398 3749.3899 634.37973 -10639.465 0 414.47697 0.0014384767 0.001433819 + 2160 -6247.1289 -6255.5685 8.4395721 3751.0076 631.85806 -10638.434 0 404.47165 0.0011842913 0.0011791688 + 2170 -6247.2593 -6255.1501 7.8907437 3752.6942 630.01556 -10637.86 0 378.16871 0.00096661682 0.00096098081 + 2180 -6247.4169 -6254.5493 7.1323579 3753.8245 629.11506 -10637.489 0 341.82261 0.00082758779 0.00082158805 + 2190 -6247.5759 -6253.9314 6.3554542 3753.9857 629.31072 -10637.228 0 304.58903 0.00080054242 0.0007941586 + 2200 -6247.7186 -6253.464 5.7453845 3753.1114 630.6145 -10637.19 0 275.35106 0.00090045614 0.00089345629 + 2210 -6247.8418 -6253.2613 5.4194745 3751.5304 632.88014 -10637.672 0 259.73163 0.0011171083 0.0011094523 + 2220 -6247.9538 -6253.3518 5.3980377 3749.9006 635.80975 -10639.062 0 258.70425 0.0014140702 0.0014063496 + 2230 -6248.0649 -6253.6848 5.6199206 3749.0314 638.98795 -10641.704 0 269.33813 0.0017351293 0.0017284053 + 2240 -6248.1785 -6254.1646 5.9860904 3749.6399 641.94667 -10645.751 0 286.88704 0.0020171335 0.002012004 + 2250 -6248.2904 -6254.6883 6.3979011 3752.1136 644.25567 -10651.058 0 306.62332 0.0022056656 0.0022012874 + 2260 -6248.3969 -6255.165 6.7680892 3756.3545 645.62028 -10657.14 0 324.36481 0.0022689075 0.0022630638 + 2270 -6248.5058 -6255.5199 7.0141266 3761.7461 645.95513 -10663.221 0 336.1563 0.0022058713 0.0021964005 + 2280 -6248.6364 -6255.699 7.0626202 3767.2527 645.40248 -10668.354 0 338.48039 0.0020468578 0.0020334301 + 2290 -6248.8073 -6255.6848 6.8775073 3771.6351 644.27955 -10671.6 0 329.60874 0.0018455401 0.0018302445 + 2300 -6249.0203 -6255.511 6.4907049 3773.7485 642.96838 -10672.228 0 311.071 0.0016637205 0.0016498487 + 2310 -6249.2555 -6255.2565 6.0009972 3772.8622 641.78737 -10669.906 0 287.60146 0.0015522577 0.0015422055 + 2320 -6249.4824 -6255.0138 5.5313943 3768.9114 640.89302 -10664.818 0 265.09545 0.0015342011 0.0015280967 + 2330 -6249.6772 -6254.8488 5.1716405 3762.5852 640.2472 -10657.681 0 247.85403 0.0015967283 0.0015926808 + 2340 -6249.8324 -6254.7771 4.9447404 3755.1968 639.65824 -10649.632 0 236.97971 0.0016957533 0.0016912964 + 2350 -6249.9557 -6254.7713 4.8156681 3748.3559 638.87681 -10642.004 0 230.79383 0.0017720561 0.0017656258 + 2360 -6250.0605 -6254.7898 4.7293042 3743.5376 637.71121 -10636.039 0 226.65479 0.001773068 0.0017646295 + 2370 -6250.1571 -6254.8066 4.6494943 3741.6854 636.12256 -10632.615 0 222.82986 0.0016723572 0.0016630678 + 2380 -6250.2479 -6254.826 4.578083 3742.9739 634.26905 -10632.069 0 219.40743 0.0014800751 0.0014714286 + 2390 -6250.3283 -6254.8771 4.548789 3746.7983 632.48524 -10634.161 0 218.00349 0.0012411678 0.0012341652 + 2400 -6250.3902 -6254.9928 4.6025865 3751.9852 631.20262 -10638.181 0 220.58177 0.0010222998 0.0010170374 + 2410 -6250.4269 -6255.1841 4.7571486 3757.1531 630.83396 -10643.171 0 227.98925 0.00089180368 0.00088764068 + 2420 -6250.4366 -6255.4225 4.985973 3761.1072 631.65286 -10648.183 0 238.9558 0.00089884527 0.00089500755 + 2430 -6250.4227 -6255.6437 5.221012 3763.1534 633.70029 -10652.497 0 250.22019 0.0010580804 0.0010542598 + 2440 -6250.3899 -6255.7713 5.3814874 3763.2451 636.74513 -10655.762 0 257.91107 0.0013443837 0.0013408441 + 2450 -6250.3383 -6255.7526 5.4143233 3761.932 640.31499 -10658 0 259.48475 0.0016991272 0.0016961961 + 2460 -6250.2613 -6255.5825 5.3212132 3760.1412 643.79592 -10659.52 0 255.02239 0.0020459057 0.0020432965 + 2470 -6250.1492 -6255.3045 5.1552132 3758.8632 646.57796 -10660.746 0 247.06674 0.0023108379 0.0023074944 + 2480 -6249.9968 -6254.9888 4.9920381 3758.8364 648.20409 -10662.029 0 239.24648 0.0024415889 0.0024363633 + 2490 -6249.806 -6254.7053 4.899324 3760.3127 648.47537 -10663.493 0 234.8031 0.0024201048 0.0024128268 + 2500 -6249.5815 -6254.5066 4.9250298 3762.966 647.47897 -10664.952 0 236.03506 0.0022659647 0.0022579743 + 2510 -6249.3197 -6254.4256 5.1058988 3765.9699 645.53377 -10665.929 0 244.70332 0.0020295226 0.0020230103 + 2520 -6249.0007 -6254.4768 5.4761063 3768.2329 643.07841 -10665.788 0 262.44574 0.0017764496 0.001772856 + 2530 -6248.5934 -6254.647 6.0536481 3768.7369 640.54486 -10663.929 0 290.12478 0.0015678192 0.0015664282 + 2540 -6248.075 -6254.8782 6.8032281 3766.8809 638.26018 -10660.019 0 326.04887 0.0014419208 0.001439866 + 2550 -6247.456 -6255.0611 7.6050258 3762.7114 636.40184 -10654.174 0 364.47551 0.0014043728 0.0013983222 + 2560 -6246.791 -6255.0613 8.2702804 3756.9429 635.00965 -10647.014 0 396.35824 0.0014307761 0.0014192076 + 2570 -6246.1591 -6254.7756 8.6164979 3750.7511 634.03885 -10639.565 0 412.95092 0.0014810666 0.0014654294 + 2580 -6245.6256 -6254.1884 8.562837 3745.417 633.42835 -10633.034 0 410.3792 0.0015189424 0.0015027993 + 2590 -6245.2126 -6253.3928 8.1801839 3741.9713 633.15573 -10628.52 0 392.04031 0.0015270594 0.0015138871 + 2600 -6244.8989 -6252.5603 7.6613681 3740.9676 633.25787 -10626.786 0 367.17575 0.0015114911 0.0015027693 + 2610 -6244.6438 -6251.8786 7.2348025 3742.4375 633.8113 -10628.127 0 346.73233 0.0014951834 0.0014899947 + 2620 -6244.4131 -6251.4898 7.0767327 3745.9905 634.88322 -10632.364 0 339.15674 0.0015053515 0.0015014749 + 2630 -6244.1917 -6251.4571 7.2653056 3750.9797 636.47561 -10638.912 0 348.19421 0.0015612636 0.0015567233 + 2640 -6243.983 -6251.7664 7.7833016 3756.6599 638.48705 -10646.913 0 373.01948 0.0016670363 0.0016609632 + 2650 -6243.8028 -6252.3479 8.5450622 3762.3037 640.7114 -10655.363 0 409.52733 0.0018109348 0.0018033926 + 2660 -6243.6772 -6253.0955 9.4183847 3767.2725 642.87935 -10663.247 0 451.38184 0.0019701094 0.0019614859 + 2670 -6243.6436 -6253.8788 10.235156 3771.0558 644.73091 -10669.665 0 490.5261 0.0021184983 0.002109254 + 2680 -6243.7466 -6254.5568 10.810176 3773.2937 646.089 -10673.94 0 518.08429 0.0022352304 0.0022260941 + 2690 -6244.0209 -6255.006 10.985135 3773.7961 646.89861 -10675.701 0 526.46929 0.0023104806 0.002302494 + 2700 -6244.4693 -6255.1535 10.684154 3772.5712 647.20927 -10674.934 0 512.04459 0.0023458965 0.0023399129 + 2710 -6245.0524 -6254.997 9.9445784 3769.8584 647.10985 -10671.965 0 476.59999 0.0023489129 0.0023449571 + 2720 -6245.699 -6254.5998 8.900862 3766.1341 646.65401 -10667.388 0 426.57925 0.0023242359 0.002321426 + 2730 -6246.3322 -6254.0671 7.7349439 3762.0536 645.82179 -10661.943 0 370.70191 0.0022683347 0.0022654543 + 2740 -6246.8941 -6253.5186 6.6245407 3758.3187 644.54049 -10656.378 0 317.48516 0.0021709841 0.0021671229 + 2750 -6247.3573 -6253.0666 5.7092777 3755.5077 642.75225 -10651.326 0 273.62062 0.0020229867 0.0020177761 + 2760 -6247.7225 -6252.7982 5.075687 3753.9313 640.49089 -10647.22 0 243.2554 0.0018254099 0.0018189478 + 2770 -6248.0081 -6252.7632 4.7550825 3753.566 637.92989 -10644.259 0 227.89023 0.0015954553 0.0015882422 + 2780 -6248.237 -6252.9678 4.7307819 3754.0833 635.37894 -10642.43 0 226.72561 0.0013663152 0.0013592426 + 2790 -6248.4276 -6253.38 4.9523932 3754.9656 633.2281 -10641.574 0 237.34647 0.0011807959 0.0011749354 + 2800 -6248.5891 -6253.9404 5.351293 3755.6817 631.85573 -10641.478 0 256.46399 0.0010802127 0.0010762787 + 2810 -6248.7228 -6254.5718 5.8489836 3755.8752 631.5278 -10641.975 0 280.31611 0.0010914407 0.0010892223 + 2820 -6248.829 -6255.1852 6.3562559 3755.5078 632.31965 -10643.013 0 304.62745 0.0012162591 0.0012145409 + 2830 -6248.9127 -6255.6857 6.7729864 3754.8961 634.08602 -10644.668 0 324.59951 0.0014275176 0.0014246843 + 2840 -6248.9849 -6255.9865 7.0015983 3754.6088 636.49201 -10647.087 0 335.55588 0.0016749874 0.0016699073 + 2850 -6249.057 -6256.0312 6.9742121 3755.2492 639.09906 -10650.379 0 334.24337 0.00189995 0.0018925198 + 2860 -6249.134 -6255.8118 6.6778117 3757.1976 641.48115 -10654.491 0 320.0382 0.0020535134 0.0020446023 + 2870 -6249.2127 -6255.3746 6.161885 3760.4177 643.33352 -10659.126 0 295.3121 0.0021118008 0.0021027851 + 2880 -6249.2842 -6254.8109 5.5267113 3764.4023 644.53661 -10663.75 0 264.87102 0.0020824735 0.0020746539 + 2890 -6249.3376 -6254.2376 4.8999774 3768.2867 645.15393 -10667.678 0 234.83441 0.0020004073 0.0019944886 + 2900 -6249.3635 -6253.7715 4.4079994 3771.097 645.36723 -10670.236 0 211.25606 0.0019140757 0.0019098765 + 2910 -6249.3561 -6253.5015 4.1454227 3772.0534 645.37546 -10670.93 0 198.67191 0.001867243 0.001863846 + 2920 -6249.3146 -6253.4657 4.1511058 3770.8269 645.29588 -10669.589 0 198.94428 0.0018823038 0.0018786687 + 2930 -6249.243 -6253.6444 4.4014032 3767.6582 645.10488 -10666.407 0 210.93994 0.0019513613 0.0019470312 + 2940 -6249.1466 -6253.9723 4.8256989 3763.2967 644.64263 -10661.912 0 231.27457 0.0020385985 0.00203394 + 2950 -6249.029 -6254.3639 5.3348618 3758.779 643.68363 -10656.827 0 255.67651 0.0020933229 0.0020890669 + 2960 -6248.8909 -6254.7356 5.8447452 3755.1211 642.05051 -10651.907 0 280.11299 0.0020689727 0.0020654569 + 2970 -6248.7336 -6255.0178 6.2841698 3753.0248 639.72773 -10647.77 0 301.17267 0.0019412361 0.0019380674 + 2980 -6248.5645 -6255.1584 6.5938816 3752.6882 636.9277 -10644.774 0 316.01581 0.0017190543 0.0017155278 + 2990 -6248.3968 -6255.1285 6.7316256 3753.7734 634.07649 -10642.978 0 322.61727 0.0014449238 0.0014407833 + 3000 -6248.2438 -6254.9323 6.6885482 3755.5418 631.71779 -10642.192 0 320.55276 0.0011842595 0.0011800161 + 3010 -6248.1094 -6254.6135 6.5040751 3757.1154 630.36606 -10642.095 0 311.71177 0.0010067575 0.0010031934 + 3020 -6247.9856 -6254.2461 6.2605262 3757.7875 630.35968 -10642.393 0 300.03954 0.00096526728 0.00096254732 + 3030 -6247.8576 -6253.9105 6.0529162 3757.283 631.76291 -10642.956 0 290.08971 0.0010789251 0.0010761473 + 3040 -6247.7135 -6253.6639 5.9503578 3755.8728 634.34534 -10643.882 0 285.17453 0.0013263533 0.0013220054 + 3050 -6247.5516 -6253.5248 5.9732208 3754.295 637.64106 -10645.461 0 286.27026 0.0016515094 0.0016445282 + 3060 -6247.3791 -6253.4776 6.0985361 3753.4985 641.06703 -10648.043 0 292.27607 0.0019804028 0.0019710468 + 3070 -6247.2055 -6253.4923 6.2867967 3754.2943 644.06606 -10651.853 0 301.29857 0.0022431016 0.0022329847 + 3080 -6247.034 -6253.5455 6.5115044 3757.0406 646.23441 -10656.821 0 312.06783 0.00239362 0.0023848197 + 3090 -6246.8574 -6253.6307 6.7732909 3761.4753 647.39782 -10662.504 0 324.61411 0.0024210216 0.0024147644 + 3100 -6246.6609 -6253.7502 7.08927 3766.7574 647.61574 -10668.123 0 339.7576 0.0023482272 0.0023439857 + 3110 -6246.4324 -6253.8948 7.4623367 3771.7002 647.11683 -10672.712 0 357.63705 0.0022196495 0.0022153574 + 3120 -6246.1742 -6254.0255 7.8512723 3775.109 646.19308 -10675.328 0 376.27702 0.0020831684 0.0020765777 + 3130 -6245.9057 -6254.0749 8.1691572 3776.1018 645.09243 -10675.269 0 391.51185 0.0019739734 0.0019642522 + 3140 -6245.6535 -6253.9749 8.3213511 3774.3193 643.94804 -10672.242 0 398.80584 0.0019061597 0.0018944682 + 3150 -6245.4348 -6253.6963 8.2614837 3769.9804 642.76629 -10666.443 0 395.93665 0.0018736236 0.0018621583 + 3160 -6245.2467 -6253.2714 8.0246945 3763.8029 641.47141 -10658.546 0 384.58839 0.0018575817 0.0018479055 + 3170 -6245.0713 -6252.7861 7.7148875 3756.8335 639.98251 -10649.602 0 369.74069 0.0018363873 0.0018284584 + 3180 -6244.8894 -6252.3502 7.4607896 3750.2324 638.28684 -10640.869 0 357.5629 0.001794179 0.0017867448 + 3190 -6244.6908 -6252.0649 7.3741579 3745.0548 636.47893 -10633.599 0 353.41102 0.0017263705 0.0017181464 + 3200 -6244.4743 -6252.0021 7.5277862 3742.0678 634.75257 -10628.822 0 360.77376 0.0016408804 0.0016314513 + 3210 -6244.2443 -6252.1901 7.9457803 3741.6358 633.35388 -10627.18 0 380.80637 0.0015548489 0.0015447545 + 3220 -6244.0098 -6252.6024 8.5926191 3743.6896 632.51698 -10628.809 0 411.80652 0.001488068 0.0014782963 + 3230 -6243.7891 -6253.1515 9.362394 3747.7712 632.40621 -10633.329 0 448.69845 0.0014559347 0.0014473079 + 3240 -6243.6146 -6253.6993 10.084763 3753.1317 633.08215 -10639.913 0 483.31842 0.0014651167 0.0014578421 + 3250 -6243.5286 -6254.0896 10.560931 3758.8645 634.49688 -10647.451 0 506.13907 0.0015136116 0.0015071031 + 3260 -6243.5708 -6254.1939 10.623176 3764.0565 636.51335 -10654.764 0 509.12218 0.0015943391 0.0015874817 + 3270 -6243.7601 -6253.9549 10.194847 3767.9417 638.9363 -10660.833 0 488.59429 0.0016996238 0.0016915606 + 3280 -6244.0839 -6253.4116 9.3276413 3770.0259 641.54187 -10664.979 0 447.03291 0.0018239988 0.0018149576 + 3290 -6244.499 -6252.6998 8.2008477 3770.1583 644.09787 -10666.956 0 393.03064 0.0019640028 0.0019552933 + 3300 -6244.9465 -6252.021 7.0744976 3768.5422 646.37428 -10666.938 0 339.04962 0.00211495 0.0021078788 + 3310 -6245.3767 -6251.5805 6.2038684 3765.6936 648.14898 -10665.423 0 297.32419 0.0022660131 0.0022606488 + 3320 -6245.7673 -6251.5156 5.7483344 3762.3522 649.21592 -10663.084 0 275.49244 0.0023964957 0.0023915215 + 3330 -6246.127 -6251.8465 5.7194151 3759.3396 649.40256 -10660.589 0 274.10646 0.0024767172 0.002470575 + 3340 -6246.4832 -6252.477 5.9938196 3757.3701 648.60041 -10658.447 0 287.25747 0.0024752169 0.0024674894 + 3350 -6246.8625 -6253.243 6.3805011 3756.851 646.80551 -10656.899 0 305.78941 0.0023704641 0.0023622459 + 3360 -6247.2755 -6253.978 6.7025296 3757.7451 644.15557 -10655.879 0 321.22283 0.0021620887 0.0021550574 + 3370 -6247.7115 -6254.5637 6.8522412 3759.5611 640.94409 -10655.069 0 328.39785 0.0018760899 0.0018711285 + 3380 -6248.1461 -6254.9473 6.8011625 3761.4947 637.59505 -10654.037 0 325.94987 0.0015610865 0.0015576159 + 3390 -6248.5547 -6255.131 6.5763084 3762.68 634.59437 -10652.405 0 315.1736 0.0012767182 0.0012731974 + 3400 -6248.9222 -6255.1512 6.2289115 3762.4635 632.39189 -10650.007 0 298.52439 0.001078258 0.0010733335 + 3410 -6249.2453 -6255.059 5.813726 3760.612 631.30053 -10646.971 0 278.62637 0.0010022294 0.00099561165 + 3420 -6249.5265 -6254.907 5.380425 3757.3961 631.42315 -10643.726 0 257.86016 0.0010569306 0.00104945 + 3430 -6249.7687 -6254.7388 4.9700914 3753.5339 632.63011 -10640.903 0 238.19467 0.0012202791 0.0012132289 + 3440 -6249.9709 -6254.5832 4.6122277 3750.0156 634.59567 -10639.194 0 221.04383 0.001445638 0.0014399193 + 3450 -6250.1294 -6254.452 4.3225521 3747.8531 636.88352 -10639.189 0 207.16095 0.0016742927 0.0016698768 + 3460 -6250.241 -6254.3443 4.1032842 3747.8128 639.05809 -10641.215 0 196.6524 0.0018513393 0.0018473209 + 3470 -6250.3068 -6254.2539 3.9470967 3750.1959 640.7906 -10645.24 0 189.16702 0.0019406124 0.001935801 + 3480 -6250.3339 -6254.1792 3.845292 3754.7239 641.93017 -10650.833 0 184.28797 0.0019343893 0.0019280769 + 3490 -6250.3322 -6254.1309 3.7987109 3760.5661 642.51964 -10657.217 0 182.05554 0.0018549234 0.0018473334 + 3500 -6250.3094 -6254.1352 3.8258218 3766.5154 642.75188 -10663.402 0 183.35485 0.0017470155 0.0017391157 + 3510 -6250.2652 -6254.2251 3.9599068 3771.2754 642.8806 -10668.381 0 189.78095 0.0016633641 0.0016561678 + 3520 -6250.1914 -6254.4224 4.2310158 3773.7897 643.1146 -10671.327 0 202.77402 0.0016467899 0.0016406677 + 3530 -6250.0767 -6254.7154 4.6387471 3773.5231 643.53056 -10671.769 0 222.31479 0.0017148795 0.0017094197 + 3540 -6249.9143 -6255.0466 5.1322922 3770.609 644.03415 -10669.69 0 245.96824 0.0018524182 0.001846926 + 3550 -6249.707 -6255.3216 5.6145457 3765.8107 644.3843 -10665.517 0 269.08053 0.0020148189 0.0020089895 + 3560 -6249.4656 -6255.439 5.9734598 3760.301 644.27425 -10660.014 0 286.28171 0.0021420091 0.0021361703 + 3570 -6249.202 -6255.3274 6.1253646 3755.3267 643.44404 -10654.098 0 293.56184 0.0021782787 0.0021730284 + 3580 -6248.9244 -6254.9721 6.0476418 3751.8647 641.78654 -10648.623 0 289.83693 0.0020912429 0.0020868694 + 3590 -6248.6353 -6254.4229 5.7875805 3750.3784 639.41018 -10644.211 0 277.37333 0.0018835075 0.001879711 + 3600 -6248.3339 -6253.783 5.4491195 3750.7393 636.63659 -10641.159 0 261.15238 0.0015934854 0.0015895654 + 3610 -6248.0175 -6253.1835 5.165961 3752.3254 633.93458 -10639.443 0 247.58183 0.0012856 0.0012808889 + 3620 -6247.6809 -6252.749 5.0680852 3754.2529 631.81282 -10638.815 0 242.89108 0.0010332534 0.0010275011 + 3630 -6247.315 -6252.5623 5.2473407 3755.6657 630.70237 -10638.93 0 251.48201 0.00089957308 0.00089311157 + 3640 -6246.9076 -6252.637 5.7293409 3756.002 630.85773 -10639.497 0 274.58216 0.0009209456 0.00091455965 + 3650 -6246.4504 -6252.9101 6.4596777 3755.1658 632.29667 -10640.373 0 309.584 0.0010972215 0.0010917106 + 3660 -6245.9484 -6253.2592 7.3107712 3753.5605 634.79125 -10641.611 0 350.37317 0.0013909951 0.0013865778 + 3670 -6245.4273 -6253.5397 8.1123691 3751.9689 637.91587 -10643.424 0 388.79024 0.0017368001 0.001732729 + 3680 -6244.9305 -6253.632 8.7015579 3751.3015 641.14731 -10646.081 0 417.02748 0.0020588103 0.0020535824 + 3690 -6244.5048 -6253.4811 8.9763006 3752.2805 643.99384 -10649.755 0 430.19469 0.0022924405 0.002284622 + 3700 -6244.1846 -6253.1137 8.929069 3755.1618 646.1127 -10654.388 0 427.93109 0.0024026026 0.0023917882 + 3710 -6243.9814 -6252.6261 8.6446884 3759.5954 647.37288 -10659.594 0 414.30197 0.0023917421 0.0023789791 + 3720 -6243.8848 -6252.1502 8.2653736 3764.6835 647.84061 -10664.674 0 396.12308 0.0022947491 0.0022820904 + 3730 -6243.8698 -6251.8109 7.9410913 3769.2222 647.69948 -10668.733 0 380.58165 0.0021632836 0.0021526964 + 3740 -6243.9062 -6251.691 7.7847331 3772.048 647.14494 -10670.884 0 373.08809 0.0020459631 0.0020382082 + 3750 -6243.9683 -6251.8107 7.8424004 3772.3777 646.30039 -10670.489 0 375.85183 0.0019717581 0.0019659004 + 3760 -6244.0429 -6252.1243 8.0814824 3770.0317 645.18774 -10667.344 0 387.30998 0.0019422261 0.001936158 + 3770 -6244.1337 -6252.534 8.4002713 3765.4696 643.75931 -10661.763 0 402.58813 0.0019349675 0.001926746 + 3780 -6244.2575 -6252.9216 8.664072 3759.63 641.97079 -10654.522 0 415.23095 0.0019166044 0.0019057609 + 3790 -6244.4302 -6253.1911 8.7609544 3753.6394 639.85769 -10646.688 0 419.87409 0.001859608 0.0018474488 + 3800 -6244.6531 -6253.3039 8.6507687 3748.5072 637.57685 -10639.388 0 414.59337 0.0017553056 0.0017439301 + 3810 -6244.9093 -6253.2862 8.3768505 3744.917 635.39184 -10633.595 0 401.46568 0.0016172021 0.0016080064 + 3820 -6245.1731 -6253.2054 8.032313 3743.1659 633.60842 -10629.98 0 384.95351 0.0014738719 0.0014667259 + 3830 -6245.4249 -6253.1297 7.7048446 3743.2222 632.48888 -10628.841 0 369.25938 0.0013560897 0.0013497503 + 3840 -6245.6592 -6253.0965 7.4373425 3744.8329 632.18129 -10630.111 0 356.43918 0.0012852138 0.0012784485 + 3850 -6245.8809 -6253.1059 7.2250112 3747.6158 632.68979 -10633.412 0 346.26308 0.0012679941 0.0012603708 + 3860 -6246.096 -6253.1349 7.038914 3751.1162 633.89237 -10638.143 0 337.34425 0.001298667 0.001290471 + 3870 -6246.3052 -6253.1555 6.8503294 3754.8418 635.59305 -10643.59 0 328.30622 0.0013654468 0.0013571095 + 3880 -6246.5055 -6253.1469 6.641361 3758.3003 637.58311 -10649.03 0 318.29128 0.001457288 0.0014490463 + 3890 -6246.6941 -6253.1015 6.4074127 3761.0513 639.68564 -10653.839 0 307.07917 0.0015678326 0.0015598429 + 3900 -6246.8693 -6253.0314 6.1620947 3762.7718 641.768 -10657.571 0 295.32215 0.0016952998 0.0016878033 + 3910 -6247.0286 -6252.9713 5.9426591 3763.3225 643.72307 -10660.017 0 284.80557 0.0018386649 0.0018318029 + 3920 -6247.1682 -6252.9715 5.8032581 3762.797 645.43442 -10661.203 0 278.12469 0.0019917887 0.0019852288 + 3930 -6247.286 -6253.076 5.7900037 3761.5255 646.74836 -10661.35 0 277.48946 0.0021383593 0.0021312877 + 3940 -6247.3868 -6253.2975 5.9107487 3760.0097 647.47371 -10660.781 0 283.27624 0.0022510476 0.0022427761 + 3950 -6247.4832 -6253.6064 6.1231791 3758.7833 647.41834 -10659.808 0 293.4571 0.0022971133 0.0022878114 + 3960 -6247.5888 -6253.9417 6.3528435 3758.2316 646.45475 -10658.628 0 304.4639 0.0022495767 0.0022403228 + 3970 -6247.7095 -6254.2368 6.5272351 3758.4376 644.59055 -10657.265 0 312.82173 0.0020995052 0.0020914354 + 3980 -6247.8405 -6254.4397 6.5991701 3759.1272 642.01275 -10655.58 0 316.26926 0.0018635291 0.0018568129 + 3990 -6247.972 -6254.5189 6.5468903 3759.7507 639.08128 -10653.351 0 313.76372 0.001582689 0.0015763304 + 4000 -6248.0983 -6254.4616 6.363313 3759.6733 636.2646 -10650.4 0 304.96566 0.0013127431 0.0013054391 + 4010 -6248.2207 -6254.2749 6.0542063 3758.4061 634.03235 -10646.713 0 290.15154 0.0011093856 0.001100669 + 4020 -6248.3426 -6253.9914 5.6488558 3755.7977 632.73698 -10642.526 0 270.72487 0.0010130403 0.0010037047 + 4030 -6248.4628 -6253.6713 5.2084947 3752.1289 632.52235 -10638.323 0 249.62029 0.0010375154 0.0010290081 + 4040 -6248.5728 -6253.3904 4.817661 3748.0861 633.28938 -10634.766 0 230.88934 0.0011657537 0.001159081 + 4050 -6248.6603 -6253.2189 4.5586437 3744.614 634.7314 -10632.564 0 218.47578 0.0013543069 0.0013492858 + 4060 -6248.7156 -6253.1976 4.4820551 3742.68 636.42939 -10632.307 0 214.80523 0.0015458231 0.0015411741 + 4070 -6248.7367 -6253.3245 4.5878559 3743.0022 637.97872 -10634.305 0 219.87579 0.0016862372 0.0016804302 + 4080 -6248.7301 -6253.5556 4.8254935 3745.8132 639.10783 -10638.477 0 231.26472 0.0017415245 0.0017338376 + 4090 -6248.7065 -6253.8218 5.115297 3750.7315 639.75053 -10644.304 0 245.15374 0.0017086537 0.0016997175 + 4100 -6248.6723 -6254.0565 5.3842557 3756.7971 640.04702 -10650.901 0 258.04375 0.0016168071 0.0016081341 + 4110 -6248.6223 -6254.2198 5.5975003 3762.6863 640.27303 -10657.179 0 268.26362 0.0015176554 0.0015103531 + 4120 -6248.5406 -6254.3043 5.7637009 3767.0619 640.72168 -10662.088 0 276.22889 0.0014670647 0.0014607186 + 4130 -6248.4108 -6254.3205 5.9097711 3768.9534 641.58002 -10664.854 0 283.22939 0.0015042311 0.0014970181 + 4140 -6248.228 -6254.2754 6.0474367 3768.0359 642.84253 -10665.154 0 289.8271 0.0016361372 0.0016262698 + 4150 -6248.002 -6254.1653 6.1633264 3764.7029 644.29032 -10663.158 0 295.38119 0.0018336836 0.0018210374 + 4160 -6247.747 -6253.9889 6.2418379 3759.9135 645.54325 -10659.446 0 299.1439 0.0020409996 0.0020274698 + 4170 -6247.4677 -6253.7643 6.2965973 3754.883 646.16961 -10654.817 0 301.76827 0.0021938058 0.0021819837 + 4180 -6247.1522 -6253.5284 6.3761101 3750.7363 645.82092 -10650.086 0 305.57897 0.0022395046 0.0022307313 + 4190 -6246.781 -6253.3144 6.5334557 3748.233 644.35022 -10645.898 0 313.11985 0.0021523166 0.0021457109 + 4200 -6246.3428 -6253.1272 6.7843528 3747.6199 641.87614 -10642.623 0 325.14425 0.0019399504 0.0019331575 + 4210 -6245.848 -6252.9374 7.0893236 3748.6188 638.77061 -10640.327 0 339.76017 0.0016414229 0.0016324431 + 4220 -6245.3273 -6252.7036 7.3762775 3750.5332 635.57194 -10638.809 0 353.51261 0.001317449 0.0013061364 + 4230 -6244.8171 -6252.4067 7.5895669 3752.4457 632.84979 -10637.702 0 363.73463 0.0010358342 0.0010239512 + 4240 -6244.3407 -6252.0733 7.7325266 3753.4745 631.06549 -10636.613 0 370.58606 0.00085522481 0.00084498568 + 4250 -6243.8989 -6251.771 7.8720412 3753.0334 630.4721 -10635.276 0 377.27238 0.00081113856 0.00080330729 + 4260 -6243.4788 -6251.575 8.0961258 3751.0282 631.08086 -10633.684 0 388.01177 0.00090783318 0.00090091106 + 4270 -6243.0748 -6251.5244 8.4495737 3747.9184 632.69372 -10632.136 0 404.95098 0.0011182904 0.0011096111 + 4280 -6242.7043 -6251.599 8.8946696 3744.6003 634.97931 -10631.179 0 426.28248 0.0013926607 0.0013806234 + 4290 -6242.4042 -6251.7342 9.3299959 3742.1324 637.56255 -10631.429 0 447.14575 0.0016729796 0.0016585059 + 4300 -6242.2092 -6251.8639 9.6547372 3741.3977 640.10293 -10633.365 0 462.70918 0.0019093445 0.0018951437 + 4310 -6242.1314 -6251.9578 9.826335 3742.8332 642.34656 -10637.137 0 470.93311 0.002071564 0.0020597206 + 4320 -6242.1596 -6252.0242 9.8646256 3746.3238 644.14515 -10642.493 0 472.76821 0.0021521361 0.0021421707 + 4330 -6242.2786 -6252.0832 9.8046037 3751.2711 645.4432 -10648.798 0 469.89162 0.0021608941 0.0021501594 + 4340 -6242.4894 -6252.1372 9.6478369 3756.7716 646.24348 -10655.152 0 462.37848 0.0021159452 0.0021021192 + 4350 -6242.8071 -6252.17 9.3629667 3761.8186 646.56818 -10660.557 0 448.7259 0.0020364479 0.0020198563 + 4360 -6243.2387 -6252.1743 8.9356273 3765.4772 646.43306 -10664.085 0 428.2454 0.0019396551 0.0019231879 + 4370 -6243.7629 -6252.1771 8.4141259 3767.0326 645.84469 -10665.054 0 403.25212 0.0018403998 0.0018270391 + 4380 -6244.3335 -6252.2306 7.8970698 3766.1233 644.81796 -10663.172 0 378.4719 0.0017499248 0.0017402476 + 4390 -6244.9047 -6252.3744 7.4696395 3762.8384 643.40051 -10658.613 0 357.98704 0.0016736006 0.0016655703 + 4400 -6245.4525 -6252.6034 7.1509201 3757.7256 641.68719 -10652.016 0 342.71221 0.0016099271 0.001600877 + 4410 -6245.973 -6252.8729 6.8999189 3751.6775 639.81412 -10644.365 0 330.68283 0.0015525172 0.0015411994 + 4420 -6246.467 -6253.1305 6.6634969 3745.7273 637.93503 -10636.793 0 319.35216 0.0014937114 0.0014807154 + 4430 -6246.9281 -6253.3425 6.4144688 3740.8305 636.19256 -10630.366 0 307.41734 0.0014272502 0.0014140146 + 4440 -6247.3438 -6253.4979 6.1541099 3737.6956 634.69841 -10625.892 0 294.93948 0.0013492659 0.0013369814 + 4450 -6247.7031 -6253.5986 5.8954752 3736.6851 633.5292 -10623.813 0 282.54425 0.0012589685 0.0012481509 + 4460 -6248.0007 -6253.6536 5.6528947 3737.7799 632.73658 -10624.17 0 270.91843 0.0011602199 0.00115079 + 4470 -6248.2367 -6253.6787 5.4420036 3740.6026 632.3641 -10626.645 0 260.81135 0.0010633599 0.0010548306 + 4480 -6248.416 -6253.6945 5.2785629 3744.4967 632.46108 -10630.652 0 252.97835 0.00098547816 0.00097719907 + 4490 -6248.5479 -6253.7187 5.1707917 3748.6579 633.08421 -10635.461 0 247.81335 0.00094794146 0.00093950413 + 4500 -6248.6448 -6253.7592 5.1144144 3752.2945 634.2809 -10640.335 0 245.11144 0.00097145553 0.00096305457 + 4510 -6248.7169 -6253.8163 5.0994267 3754.7871 636.05523 -10644.659 0 244.39314 0.0010698323 0.0010621407 + 4520 -6248.7677 -6253.8895 5.121747 3755.8201 638.32659 -10648.036 0 245.46285 0.0012437025 0.0012371983 + 4530 -6248.7941 -6253.9778 5.1836864 3755.4566 640.89783 -10650.332 0 248.43134 0.0014756419 0.0014699912 + 4540 -6248.7934 -6254.0731 5.2796969 3754.1263 643.45208 -10651.651 0 253.0327 0.0017290145 0.0017232072 + 4550 -6248.7695 -6254.1531 5.383642 3752.5049 645.59099 -10652.249 0 258.01433 0.0019530504 0.0019462541 + 4560 -6248.7329 -6254.188 5.4550901 3751.3012 646.91393 -10652.403 0 261.43852 0.002094734 0.0020870564 + 4570 -6248.6931 -6254.1555 5.4624367 3751.0125 647.11969 -10652.288 0 261.79062 0.0021143969 0.0021068082 + 4580 -6248.6512 -6254.0546 5.4033866 3751.7404 646.09796 -10651.893 0 258.9606 0.0019991075 0.0019925698 + 4590 -6248.5992 -6253.9057 5.3065359 3753.1377 643.97644 -10651.02 0 254.31898 0.0017683202 0.0017628641 + 4600 -6248.5261 -6253.7405 5.2144076 3754.5123 641.10392 -10649.357 0 249.90367 0.0014695646 0.0014640496 + 4610 -6248.4257 -6253.5864 5.1607264 3755.0501 637.97363 -10646.61 0 247.33096 0.001165942 0.001158692 + 4620 -6248.3014 -6253.4574 5.1560611 3754.083 635.11001 -10642.65 0 247.10738 0.00091975531 0.00090964475 + 4630 -6248.1636 -6253.3532 5.1895429 3751.3165 632.95081 -10637.621 0 248.71201 0.00077709282 0.00076435447 + 4640 -6248.0234 -6253.2675 5.244085 3746.9516 631.7541 -10631.973 0 251.32598 0.00075718453 0.00074338197 + 4650 -6247.8845 -6253.198 5.3135312 3741.6741 631.5528 -10626.425 0 254.65423 0.00084876379 0.00083594041 + 4660 -6247.7407 -6253.1505 5.4098405 3736.5186 632.16788 -10621.837 0 259.26991 0.0010141096 0.0010036714 + 4670 -6247.5794 -6253.1365 5.557138 3732.6392 633.27669 -10619.052 0 266.32924 0.0011998932 0.001191891 + 4680 -6247.3881 -6253.1661 5.7779473 3731.0304 634.51725 -10618.714 0 276.91165 0.0013522509 0.0013454126 + 4690 -6247.1615 -6253.2404 6.0789081 3732.2624 635.59829 -10621.101 0 291.33539 0.0014320789 0.0014245282 + 4700 -6246.9049 -6253.3469 6.442016 3736.2974 636.38235 -10626.027 0 308.73755 0.0014262145 0.0014165051 + 4710 -6246.6337 -6253.4602 6.8264119 3742.4444 636.91619 -10632.821 0 327.15996 0.0013512455 0.0013391614 + 4720 -6246.3669 -6253.5488 7.1819696 3749.4793 637.39867 -10640.427 0 344.20028 0.001248657 0.0012352724 + 4730 -6246.1184 -6253.5854 7.4670489 3755.9154 638.09533 -10647.596 0 357.86288 0.0011722006 0.0011591055 + 4740 -6245.8932 -6253.5496 7.6564375 3760.3674 639.22669 -10653.144 0 366.93945 0.0011704561 0.0011587175 + 4750 -6245.6905 -6253.4241 7.7335558 3761.9138 640.86568 -10656.204 0 370.63538 0.0012694595 0.0012591869 + 4760 -6245.5104 -6253.1912 7.6807776 3760.3476 642.87701 -10656.416 0 368.10596 0.0014613337 0.0014521682 + 4770 -6245.3553 -6252.845 7.4897066 3756.2219 644.91962 -10653.987 0 358.94876 0.001703837 0.0016956792 + 4780 -6245.2231 -6252.4144 7.1912944 3750.6715 646.51787 -10649.604 0 344.64718 0.0019319696 0.0019249687 + 4790 -6245.1007 -6251.9744 6.8736557 3745.0743 647.18852 -10644.237 0 329.42415 0.0020776934 0.0020714604 + 4800 -6244.9681 -6251.6247 6.656564 3740.6728 646.58988 -10638.887 0 319.0199 0.0020905501 0.0020836669 + 4810 -6244.8101 -6251.4435 6.6334209 3738.2651 644.64307 -10634.352 0 317.91075 0.0019524694 0.0019432005 + 4820 -6244.6238 -6251.4509 6.8270915 3738.0333 641.57833 -10631.062 0 327.19253 0.0016831209 0.0016709029 + 4830 -6244.414 -6251.6084 7.1943409 3739.5333 637.88557 -10629.027 0 344.79318 0.0013352061 0.0013215181 + 4840 -6244.1809 -6251.8512 7.6703559 3741.8474 634.18687 -10627.886 0 367.60649 0.00098116906 0.00096879412 + 4850 -6243.91 -6252.124 8.2139977 3743.8667 631.07912 -10627.07 0 393.66086 0.00069457542 0.0006855566 + 4860 -6243.5782 -6252.3953 8.8170831 3744.635 629.00102 -10626.031 0 422.5641 0.00053098621 0.00052469395 + 4870 -6243.1728 -6252.6417 9.4689028 3743.6588 628.16138 -10624.462 0 453.80295 0.00051375247 0.00050667072 + 4880 -6242.7167 -6252.8204 10.103765 3741.076 628.53673 -10622.433 0 484.22909 0.00062927532 0.00061715297 + 4890 -6242.2772 -6252.8615 10.584259 3737.6099 629.92316 -10620.395 0 507.25708 0.00083396568 0.0008151403 + 4900 -6241.9432 -6252.7013 10.758093 3734.3042 632.01612 -10619.022 0 515.58817 0.0010712316 0.0010484505 + 4910 -6241.7763 -6252.3389 10.562617 3732.1467 634.4917 -10618.977 0 506.21986 0.001291815 0.0012705283 + 4920 -6241.7761 -6251.8648 10.088764 3731.7535 637.06785 -10620.686 0 483.51018 0.0014677902 0.0014518784 + 4930 -6241.8917 -6251.4246 9.5329108 3733.2535 639.53195 -10624.21 0 456.87058 0.0015935138 0.0015821112 + 4940 -6242.0709 -6251.1352 9.0643602 3736.3707 641.73345 -10629.239 0 434.415 0.0016752933 0.0016637207 + 4950 -6242.3011 -6251.0209 8.7198202 3740.5879 643.5551 -10635.164 0 417.90271 0.001718999 0.0017030981 + 4960 -6242.6071 -6251.022 8.4149231 3745.2665 644.88636 -10641.175 0 403.29033 0.0017248208 0.0017047681 + 4970 -6243.0121 -6251.0677 8.0556373 3749.6962 645.6193 -10646.383 0 386.07134 0.0016910894 0.0016712344 + 4980 -6243.5017 -6251.1441 7.6424473 3753.1395 645.67184 -10649.956 0 366.26896 0.0016212837 0.0016062782 + 4990 -6244.0268 -6251.2999 7.2730813 3754.9408 645.02515 -10651.266 0 348.56687 0.0015268316 0.0015176898 + 5000 -6244.5383 -6251.5886 7.0503345 3754.69 643.7523 -10650.031 0 337.89159 0.0014235317 0.0014170696 + 5010 -6245.0193 -6252.0065 6.9871344 3752.36 642.01914 -10646.386 0 334.86268 0.0013253451 0.0013171551 + 5020 -6245.4869 -6252.4791 6.9922003 3748.333 640.0516 -10640.864 0 335.10547 0.0012403906 0.0012284903 + 5030 -6245.9661 -6252.9061 6.9400174 3743.3003 638.07975 -10634.286 0 332.60457 0.0011706525 0.0011567873 + 5040 -6246.4622 -6253.2223 6.7601387 3738.0883 636.2807 -10627.591 0 323.98378 0.0011135549 0.0011014427 + 5050 -6246.9521 -6253.4283 6.4761947 3733.4912 634.74463 -10621.664 0 310.37559 0.0010631836 0.0010554608 + 5060 -6247.3997 -6253.5745 6.1747035 3730.1543 633.47828 -10617.207 0 295.92644 0.0010109522 0.0010072613 + 5070 -6247.7789 -6253.7168 5.937893 3728.5054 632.44286 -10614.665 0 284.57715 0.00094727532 0.00094469242 + 5080 -6248.0872 -6253.8788 5.7915698 3728.7077 631.60869 -10614.195 0 277.56452 0.00086547754 0.00086065832 + 5090 -6248.3441 -6254.0414 5.6973595 3730.6211 631.00209 -10615.665 0 273.04944 0.00076716711 0.00075857545 + 5100 -6248.5758 -6254.1612 5.5854798 3733.7921 630.72412 -10618.677 0 267.68753 0.00066638966 0.00065516725 + 5110 -6248.7987 -6254.2011 5.4024639 3737.5088 630.93093 -10622.641 0 258.91638 0.00058945307 0.0005784798 + 5120 -6249.01 -6254.154 5.1440038 3740.9448 631.77942 -10626.878 0 246.52953 0.00056869015 0.00056052026 + 5130 -6249.191 -6254.045 4.8540063 3743.3727 633.355 -10630.773 0 232.63122 0.00063108767 0.00062614568 + 5140 -6249.3209 -6253.9132 4.5923699 3744.385 635.60654 -10633.905 0 220.09213 0.00078560317 0.00078187701 + 5150 -6249.392 -6253.7874 4.3953974 3744.0309 638.31326 -10636.132 0 210.65211 0.0010146836 0.0010091583 + 5160 -6249.416 -6253.6747 4.2587735 3742.7995 641.10001 -10637.574 0 204.10432 0.0012747191 0.001265549 + 5170 -6249.4161 -6253.5719 4.1558128 3741.4352 643.50345 -10638.511 0 199.16987 0.0015067233 0.0014945619 + 5180 -6249.4113 -6253.4858 4.0744943 3740.6515 645.07564 -10639.213 0 195.27263 0.0016538756 0.0016413908 + 5190 -6249.4031 -6253.4434 4.0402835 3740.8574 645.49758 -10639.798 0 193.63306 0.0016792118 0.0016691859 + 5200 -6249.375 -6253.4786 4.1035908 3742.006 644.66798 -10640.153 0 196.6671 0.0015767127 0.0015701603 + 5210 -6249.3036 -6253.6046 4.3009226 3743.6165 642.73717 -10639.958 0 206.12435 0.0013722105 0.0013678403 + 5220 -6249.1731 -6253.794 4.6208845 3744.9456 640.07231 -10638.812 0 221.45871 0.001114816 0.0011100832 + 5230 -6248.9835 -6253.9858 5.0022221 3745.2356 637.1622 -10636.384 0 239.73455 0.00086257943 0.00085544077 + 5240 -6248.7487 -6254.1148 5.3661125 3743.9559 634.49038 -10632.561 0 257.17422 0.00066696794 0.00065709387 + 5250 -6248.4857 -6254.1457 5.6599877 3740.9748 632.41681 -10627.537 0 271.25837 0.00056017869 0.00054891454 + 5260 -6248.2038 -6254.0873 5.8834259 3736.6239 631.10633 -10621.817 0 281.96678 0.00054825868 0.00053752967 + 5270 -6247.9004 -6253.9804 6.0800278 3731.6436 630.52537 -10616.149 0 291.38905 0.00061166047 0.00060265047 + 5280 -6247.5655 -6253.8666 6.3011047 3727.0215 630.50283 -10611.391 0 301.98429 0.00071305847 0.00070554055 + 5290 -6247.1921 -6253.7559 6.5637721 3723.757 630.82773 -10608.341 0 314.57279 0.00081022046 0.00080293158 + 5300 -6246.7859 -6253.6154 6.8295444 3722.6046 631.34422 -10607.564 0 327.31009 0.00087013543 0.00086187859 + 5310 -6246.3661 -6253.3846 7.0185196 3723.8636 632.00889 -10609.257 0 336.36684 0.00088000023 0.00087065187 + 5320 -6245.9571 -6253.0108 7.0537225 3727.28 632.89157 -10613.182 0 338.05396 0.00085132395 0.0008419686 + 5330 -6245.5749 -6252.4858 6.910905 3732.1016 634.12278 -10618.71 0 331.20935 0.00081538266 0.00080741956 + 5340 -6245.2188 -6251.8631 6.6442532 3737.2827 635.81054 -10624.956 0 318.4299 0.00081124152 0.00080509685 + 5350 -6244.8745 -6251.2475 6.3729863 3741.7758 637.95939 -10630.983 0 305.42926 0.00087050213 0.00086493473 + 5360 -6244.5252 -6250.7621 6.2368733 3744.8122 640.42225 -10635.997 0 298.90596 0.0010043543 0.00099699395 + 5370 -6244.1646 -6250.5087 6.3440623 3746.0777 642.90363 -10639.49 0 304.04306 0.0011976983 0.001186644 + 5380 -6243.8014 -6250.5379 6.7365067 3745.7238 645.01528 -10641.277 0 322.8512 0.0014126133 0.0013980913 + 5390 -6243.4543 -6250.8418 7.3874885 3744.2232 646.36902 -10641.434 0 354.0499 0.001600162 0.0015849015 + 5400 -6243.1407 -6251.3642 8.2235124 3742.1417 646.67871 -10640.185 0 394.11685 0.0017161004 0.0017037507 + 5410 -6242.8708 -6252.0145 9.1436537 3739.936 645.83895 -10637.789 0 438.21519 0.0017339277 0.0017264134 + 5420 -6242.6551 -6252.6737 10.0186 3737.8629 643.95362 -10634.49 0 480.14753 0.0016499882 0.0016458745 + 5430 -6242.5169 -6253.2034 10.68646 3736.0037 641.30493 -10630.512 0 512.15512 0.0014800906 0.0014754204 + 5440 -6242.4939 -6253.4735 10.979596 3734.3417 638.27689 -10626.092 0 526.20384 0.0012517673 0.0012428037 + 5450 -6242.619 -6253.4072 10.788127 3732.8239 635.26424 -10621.495 0 517.02757 0.00099707558 0.00098284962 + 5460 -6242.8943 -6253.0167 10.122457 3731.3797 632.59918 -10616.996 0 485.12492 0.00074800705 0.00073085122 + 5470 -6243.2797 -6252.4077 9.1280237 3729.9226 630.51335 -10612.844 0 437.46611 0.00053365001 0.0005175225 + 5480 -6243.7076 -6251.7451 8.0374623 3728.3674 629.13421 -10609.247 0 385.20029 0.00037761327 0.00036558556 + 5490 -6244.1118 -6251.1989 7.0870871 3726.6784 628.50254 -10606.38 0 339.65298 0.00029534681 0.00028799069 + 5500 -6244.451 -6250.894 6.4429657 3724.9279 628.59568 -10604.418 0 308.78307 0.00029206976 0.00028755989 + 5510 -6244.7144 -6250.8818 6.1673441 3723.3302 629.3458 -10603.558 0 295.57373 0.00036211512 0.00035758709 + 5520 -6244.9138 -6251.1404 6.2265852 3722.2242 630.65003 -10604.015 0 298.4129 0.0004899778 0.00048306319 + 5530 -6245.0705 -6251.5926 6.5220543 3722.0001 632.37494 -10605.968 0 312.57344 0.00065285599 0.00064257825 + 5540 -6245.2064 -6252.1311 6.9247417 3722.9887 634.35978 -10609.48 0 331.87248 0.00082423162 0.00081110013 + 5550 -6245.3394 -6252.6447 7.3053542 3725.3431 636.42245 -10614.41 0 350.11356 0.00097802111 0.00096361142 + 5560 -6245.4809 -6253.0424 7.5615219 3728.947 638.37133 -10620.361 0 362.39056 0.0010929232 0.0010792321 + 5570 -6245.6332 -6253.2761 7.6428506 3733.3801 640.02443 -10626.681 0 366.28828 0.0011564419 0.0011451047 + 5580 -6245.7891 -6253.3526 7.5634763 3737.9619 641.23417 -10632.549 0 362.48422 0.0011674746 0.001158986 + 5590 -6245.936 -6253.3226 7.3866306 3741.8773 641.91186 -10637.112 0 354.00879 0.0011359945 0.0011294041 + 5600 -6246.0658 -6253.2477 7.1819468 3744.355 642.04233 -10639.645 0 344.19919 0.001079257 0.0010728024 + 5610 -6246.1819 -6253.1648 6.9828923 3744.8459 641.68046 -10639.691 0 334.65938 0.0010158832 0.0010083184 + 5620 -6246.2966 -6253.0742 6.7776616 3743.1474 640.92777 -10637.149 0 324.82357 0.00096036089 0.00095193197 + 5630 -6246.4189 -6252.9585 6.539544 3739.4489 639.89628 -10632.304 0 313.41164 0.00091972257 0.00091184235 + 5640 -6246.5445 -6252.8116 6.2670528 3734.3015 638.67355 -10625.787 0 300.35233 0.00089236837 0.00088617115 + 5650 -6246.6573 -6252.6536 5.9963365 3728.5283 637.30328 -10618.485 0 287.37809 0.00086827387 0.00086335833 + 5660 -6246.7427 -6252.5198 5.7771269 3723.0871 635.79005 -10611.397 0 276.87234 0.00083079073 0.00082539257 + 5670 -6246.8008 -6252.4402 5.6393226 3718.89 634.12743 -10605.458 0 270.26798 0.00076124587 0.0007537857 + 5680 -6246.8466 -6252.4304 5.5838276 3716.5988 632.3388 -10601.368 0 267.60835 0.00064661573 0.00063725376 + 5690 -6246.8972 -6252.5009 5.6036653 3716.4498 630.51466 -10599.465 0 268.55908 0.00048791944 0.00047866537 + 5700 -6246.9574 -6252.6663 5.708887 3718.1771 628.82979 -10599.673 0 273.6019 0.00030498373 0.00029814488 + 5710 -6247.0158 -6252.9388 5.9230125 3721.0856 627.53044 -10601.555 0 283.86399 0.00013399002 0.00013020597 + 5720 -6247.0558 -6253.3013 6.2455208 3724.2656 626.8904 -10604.457 0 299.3204 1.7625539e-05 1.515206e-05 + 5730 -6247.0727 -6253.6836 6.6109391 3726.8742 627.14456 -10607.702 0 316.8333 -8.4707816e-06 -1.2584033e-05 + 5740 -6247.0818 -6253.9685 6.8866846 3728.3751 628.41567 -10610.759 0 330.04857 7.252141e-05 6.4759376e-05 + 5750 -6247.1097 -6254.0348 6.9251528 3728.6568 630.65514 -10613.347 0 331.89218 0.00025291544 0.00024188691 + 5760 -6247.1744 -6253.8171 6.6426889 3728.0049 633.61906 -10615.441 0 318.35492 0.00050223166 0.00049043235 + 5770 -6247.2709 -6253.347 6.0760969 3726.964 636.89367 -10617.205 0 291.20066 0.000774851 0.00076517742 + 5780 -6247.3731 -6252.7548 5.381654 3726.1488 639.97002 -10618.874 0 257.91906 0.0010206854 0.0010145112 + 5790 -6247.449 -6252.2257 4.7766935 3726.065 642.35032 -10620.641 0 228.92596 0.0011958354 0.0011921292 + 5800 -6247.4781 -6251.9324 4.454314 3726.9788 643.65716 -10622.568 0 213.47572 0.0012710145 0.0012670338 + 5810 -6247.4594 -6251.9717 4.5122471 3728.8459 643.715 -10624.533 0 216.2522 0.0012366403 0.0012297413 + 5820 -6247.4073 -6252.3332 4.9258775 3731.3026 642.58221 -10626.218 0 236.07569 0.0011042618 0.0010936383 + 5830 -6247.3409 -6252.912 5.5710987 3733.7194 640.52605 -10627.157 0 266.99831 0.00090412164 0.00089130387 + 5840 -6247.2735 -6253.5518 6.2782573 3735.3275 637.94906 -10626.828 0 300.88932 0.0006786342 0.00066640116 + 5850 -6247.2082 -6254.0953 6.8870784 3735.4119 635.28857 -10624.796 0 330.06744 0.00047225423 0.00046273566 + 5860 -6247.141 -6254.4213 7.2802917 3733.5336 632.91779 -10620.873 0 348.91243 0.00031985275 0.00031318053 + 5870 -6247.0687 -6254.4621 7.3933762 3729.7061 631.07518 -10615.243 0 354.33207 0.00023734582 0.00023177758 + 5880 -6246.9949 -6254.2079 7.2130085 3724.4495 629.83886 -10608.496 0 345.68784 0.00021841023 0.00021173852 + 5890 -6246.9284 -6253.7049 6.7765686 3718.6843 629.14826 -10601.537 0 324.77119 0.00023902412 0.00023018101 + 5900 -6246.8769 -6253.05 6.1731856 3713.4916 628.86127 -10595.403 0 295.85369 0.00026821248 0.00025794067 + 5910 -6246.8395 -6252.3758 5.5363136 3709.8261 628.82617 -10591.028 0 265.33121 0.00028061878 0.00027084737 + 5920 -6246.8043 -6251.8234 5.0191542 3708.282 628.94481 -10589.05 0 240.54603 0.00026588542 0.00025836787 + 5930 -6246.7503 -6251.5065 4.7561272 3708.9853 629.20729 -10589.699 0 227.9403 0.00023151745 0.00022668193 + 5940 -6246.6538 -6251.4784 4.8245921 3711.6264 629.68759 -10592.792 0 231.22152 0.00019878694 0.0001954667 + 5950 -6246.4945 -6251.7167 5.2222009 3715.5955 630.50225 -10597.814 0 250.27717 0.00019380949 0.00018992678 + 5960 -6246.2628 -6252.1314 5.8686032 3720.1588 631.74675 -10604.037 0 281.25639 0.00023732951 0.00023110888 + 5970 -6245.9645 -6252.597 6.632438 3724.6156 633.43276 -10610.645 0 317.86364 0.0003368699 0.00032790164 + 5980 -6245.6195 -6252.9964 7.376904 3728.4013 635.45017 -10616.848 0 353.54263 0.00048384901 0.00047333734 + 5990 -6245.2527 -6253.2595 8.0067837 3731.132 637.57107 -10621.963 0 383.73 0.0006562435 0.00064616056 + 6000 -6244.8839 -6253.3752 8.4913544 3732.6071 639.49781 -10625.48 0 406.95335 0.00082508859 0.00081670068 + 6010 -6244.5246 -6253.3707 8.84611 3732.7941 640.93967 -10627.104 0 423.95523 0.00096186099 0.0009547074 + 6020 -6244.1859 -6253.2716 9.0857027 3731.8055 641.68909 -10626.766 0 435.43785 0.0010443737 0.0010365706 + 6030 -6243.8867 -6253.0735 9.1867311 3729.8645 641.66771 -10624.606 0 440.2797 0.0010603739 0.0010500803 + 6040 -6243.6534 -6252.7461 9.0927832 3727.2543 640.92638 -10620.927 0 435.77719 0.0010089429 0.00099586376 + 6050 -6243.5067 -6252.2662 8.7594288 3724.2622 639.60493 -10616.133 0 419.80098 0.00089967305 0.00088543493 + 6060 -6243.4477 -6251.6537 8.2059854 3721.1375 637.87447 -10610.666 0 393.27687 0.00074952203 0.00073659789 + 6070 -6243.4523 -6250.9889 7.536594 3718.0813 635.89045 -10604.961 0 361.19587 0.00057800377 0.00056791501 + 6080 -6243.4827 -6250.3964 6.9137141 3715.2652 633.77508 -10599.437 0 331.34397 0.00040243732 0.00039454121 + 6090 -6243.5073 -6250.0055 6.4981978 3712.8571 631.63037 -10594.493 0 311.4301 0.00023533385 0.00022715932 + 6100 -6243.5164 -6249.9078 6.3913827 3711.0242 629.56683 -10590.499 0 306.31092 8.5087644e-05 7.404847e-05 + 6110 -6243.5247 -6250.1341 6.6093946 3709.8968 627.72782 -10587.759 0 316.75928 -4.076463e-05 -5.5515776e-05 + 6120 -6243.561 -6250.6542 7.0931841 3709.5132 626.2941 -10586.462 0 339.94518 -0.00013222303 -0.00014914571 + 6130 -6243.655 -6251.3896 7.7346247 3709.7868 625.46381 -10586.64 0 370.68662 -0.00017629427 -0.00019246364 + 6140 -6243.8296 -6252.2273 8.3977456 3710.5301 625.41095 -10588.168 0 402.46709 -0.00016058327 -0.00017362607 + 6150 -6244.1006 -6253.0317 8.9310428 3711.5355 626.23284 -10590.8 0 428.02568 -7.9745918e-05 -8.9373328e-05 + 6160 -6244.4792 -6253.6628 9.1835506 3712.6712 627.90186 -10594.236 0 440.12727 5.8589087e-05 5.0501176e-05 + 6170 -6244.9683 -6254.0063 9.0379546 3713.9385 630.2405 -10598.185 0 433.1495 0.00023214228 0.00022298693 + 6180 -6245.5519 -6254.0085 8.4565727 3715.4486 632.93584 -10602.393 0 405.28642 0.0004083946 0.00039675922 + 6190 -6246.1866 -6253.7013 7.5146738 3717.3202 635.59774 -10606.619 0 360.14533 0.00055377811 0.00054042523 + 6200 -6246.8092 -6253.2008 6.391602 3719.5523 637.84633 -10610.599 0 306.32143 0.00064370387 0.00063088184 + 6210 -6247.3598 -6252.6737 5.3139068 3721.9442 639.39872 -10614.017 0 254.67223 0.00066910111 0.00065882487 + 6220 -6247.8052 -6252.2841 4.4788429 3724.1123 640.12363 -10616.52 0 214.65128 0.00063722852 0.00062994239 + 6230 -6248.1449 -6252.1427 3.9978091 3725.5955 640.04765 -10617.786 0 191.59744 0.00056730104 0.00056182938 + 6240 -6248.3998 -6252.2799 3.8800701 3725.9967 639.31713 -10617.594 0 185.95473 0.00048309025 0.00047765949 + 6250 -6248.5979 -6252.6503 4.0523863 3725.108 638.13393 -10615.892 0 194.21309 0.00040498719 0.00039841315 + 6260 -6248.763 -6253.1606 4.397655 3722.9811 636.68903 -10612.831 0 210.7603 0.00034379095 0.00033603163 + 6270 -6248.9095 -6253.7035 4.7939856 3719.9291 635.11625 -10608.749 0 229.75469 0.0002979468 0.00028981506 + 6280 -6249.0421 -6254.1832 5.1411796 3716.4627 633.47983 -10604.126 0 246.39417 0.00025504759 0.00024744517 + 6290 -6249.1578 -6254.529 5.3711699 3713.1729 631.79655 -10599.498 0 257.4166 0.00019723332 0.00019048081 + 6300 -6249.2516 -6254.6985 5.4469073 3710.5891 630.08038 -10595.368 0 261.04636 0.0001089573 0.00010264132 + 6310 -6249.3201 -6254.6776 5.3574601 3709.0496 628.3895 -10592.117 0 256.75955 -1.5236732e-05 -2.1848728e-05 + 6320 -6249.3645 -6254.4808 5.1163641 3708.6201 626.85465 -10589.956 0 245.20487 -0.00016552441 -0.00017286295 + 6330 -6249.3875 -6254.1524 4.7648713 3709.0867 625.67475 -10588.914 0 228.35937 -0.0003163719 -0.00032427984 + 6340 -6249.3902 -6253.763 4.3728169 3710.0332 625.07813 -10588.874 0 209.56992 -0.00043189107 -0.00043991963 + 6350 -6249.3699 -6253.3963 4.0264309 3710.9871 625.26036 -10589.644 0 192.96916 -0.00047609146 -0.00048403911 + 6360 -6249.3222 -6253.1249 3.8027002 3711.591 626.31842 -10591.034 0 182.24673 -0.00042493989 -0.00043304176 + 6370 -6249.2447 -6252.9904 3.7456635 3711.7375 628.20174 -10592.93 0 179.51321 -0.00027581537 -0.00028441551 + 6380 -6249.1359 -6252.9979 3.8620139 3711.6104 630.69703 -10595.305 0 185.08938 -5.0601313e-05 -5.9778606e-05 + 6390 -6248.9914 -6253.1269 4.1354681 3711.6158 633.45581 -10598.198 0 198.19484 0.00020881892 0.00019915006 + 6400 -6248.8024 -6253.3427 4.5403356 3712.2293 636.06258 -10601.635 0 217.59836 0.00045099078 0.0004406379 + 6410 -6248.5602 -6253.5986 5.0384263 3713.8126 638.12836 -10605.54 0 241.46966 0.00062793875 0.0006163212 + 6420 -6248.2654 -6253.8333 5.5679359 3716.4491 639.38245 -10609.665 0 266.84673 0.00070750835 0.00069420865 + 6430 -6247.9312 -6253.9795 6.0483434 3719.8427 639.73281 -10613.555 0 289.87055 0.00068214549 0.00066756031 + 6440 -6247.577 -6253.9864 6.4093111 3723.3216 639.27418 -10616.582 0 307.17015 0.00057138563 0.00055662963 + 6450 -6247.2186 -6253.8398 6.6212398 3725.9767 638.24164 -10618.058 0 317.32696 0.00041596283 0.0004019783 + 6460 -6246.8632 -6253.5623 6.6991025 3726.9145 636.92537 -10617.402 0 321.05858 0.00026406946 0.00025084613 + 6470 -6246.5153 -6253.194 6.6786898 3725.548 635.57554 -10614.317 0 320.08029 0.00015434386 0.00014107076 + 6480 -6246.1823 -6252.7742 6.5918357 3721.8105 634.32935 -10608.914 0 315.91775 0.0001026788 8.8641386e-05 + 6490 -6245.874 -6252.3372 6.4632073 3716.2127 633.18572 -10601.736 0 309.75316 9.8514792e-05 8.3806828e-05 + 6500 -6245.5964 -6251.9207 6.324249 3709.7217 632.03699 -10593.679 0 303.0935 0.00011162666 9.7032941e-05 + 6510 -6245.3474 -6251.5693 6.2219416 3703.5122 630.74533 -10585.827 0 298.19035 0.00010568792 9.1978144e-05 + 6520 -6245.1188 -6251.3273 6.2085406 3698.6724 629.23379 -10579.234 0 297.5481 5.2873379e-05 4.0245859e-05 + 6530 -6244.9033 -6251.2234 6.3201789 3695.9477 627.55591 -10574.727 0 302.89844 -5.5333282e-05 -6.7230068e-05 + 6540 -6244.6995 -6251.2616 6.5620885 3695.5894 625.91663 -10572.768 0 314.4921 -0.00020391609 -0.00021558499 + 6550 -6244.5128 -6251.4218 6.9089921 3697.3392 624.63482 -10573.396 0 331.11767 -0.00035769476 -0.00036946887 + 6560 -6244.3528 -6251.6682 7.315416 3700.5462 624.05811 -10576.273 0 350.59578 -0.00047158061 -0.00048359258 + 6570 -6244.2304 -6251.9569 7.7264924 3704.3763 624.45711 -10580.79 0 370.29687 -0.00050486654 -0.00051717223 + 6580 -6244.1555 -6252.2407 8.085217 3708.0468 625.9341 -10586.222 0 387.48896 -0.00043479857 -0.00044741069 + 6590 -6244.135 -6252.4745 8.339569 3711.0175 628.37694 -10591.869 0 399.67894 -0.00026449427 -0.00027727716 + 6600 -6244.1694 -6252.6244 8.4549363 3713.0789 631.47239 -10597.176 0 405.20799 -2.2429755e-05 -3.5104952e-05 + 6610 -6244.2501 -6252.6784 8.4283691 3714.3227 634.77269 -10601.774 0 403.93474 0.00024576863 0.00023328184 + 6620 -6244.3607 -6252.6498 8.2891565 3715.0223 637.79435 -10605.467 0 397.26289 0.00048963115 0.00047683416 + 6630 -6244.486 -6252.5632 8.0772152 3715.4837 640.12129 -10608.168 0 387.10547 0.00066605524 0.00065208229 + 6640 -6244.62 -6252.4373 7.8173759 3715.9137 641.48437 -10609.835 0 374.65252 0.00074852376 0.00073300172 + 6650 -6244.7643 -6252.282 7.5177614 3716.3363 641.79568 -10610.414 0 360.29331 0.0007317258 0.00071540106 + 6660 -6244.9191 -6252.1123 7.1932547 3716.5775 641.13092 -10609.821 0 344.74112 0.00063046649 0.00061476802 + 6670 -6245.0759 -6251.9595 6.8836158 3716.3331 639.67288 -10607.966 0 329.90149 0.00047274991 0.00045860541 + 6680 -6245.2217 -6251.8635 6.6418783 3715.2997 637.64298 -10604.806 0 318.31607 0.00028933288 0.00027640065 + 6690 -6245.3481 -6251.8514 6.5033408 3713.311 635.24927 -10600.412 0 311.67658 0.00010430011 9.1313571e-05 + 6700 -6245.4579 -6251.9226 6.4647324 3710.4178 632.66735 -10595.008 0 309.82625 -6.9124438e-05 -8.332111e-05 + 6710 -6245.5618 -6252.0503 6.4884221 3706.8795 630.05323 -10588.983 0 310.96159 -0.00022646195 -0.00024208639 + 6720 -6245.6723 -6252.1955 6.5232275 3703.0896 627.57109 -10582.856 0 312.62967 -0.00036605747 -0.00038225494 + 6730 -6245.7963 -6252.3244 6.5280963 3699.4786 625.41165 -10577.215 0 312.863 -0.00048339751 -0.00049875687 + 6740 -6245.9321 -6252.4223 6.4901967 3696.4343 623.78344 -10572.64 0 311.04664 -0.00056892349 -0.00058237733 + 6750 -6246.0696 -6252.498 6.4283934 3694.2646 622.87602 -10569.639 0 308.08468 -0.00061054977 -0.00062218019 + 6760 -6246.1978 -6252.5732 6.3754087 3693.2013 622.81096 -10568.585 0 305.54536 -0.0005996003 -0.00061069203 + 6770 -6246.3145 -6252.6636 6.3491441 3693.4138 623.60238 -10569.68 0 304.28661 -0.00053673456 -0.00054881272 + 6780 -6246.4291 -6252.7679 6.3388207 3694.9936 625.14357 -10572.905 0 303.79185 -0.00043403936 -0.00044756437 + 6790 -6246.5558 -6252.8763 6.3205014 3697.8952 627.22508 -10577.997 0 302.91389 -0.00031160607 -0.00032551079 + 6800 -6246.7007 -6252.9868 6.286053 3701.8694 629.57886 -10584.435 0 301.26293 -0.00019036661 -0.00020297133 + 6810 -6246.8569 -6253.1101 6.2531319 3706.4409 631.93462 -10591.486 0 299.68517 -8.5200599e-05 -9.5739128e-05 + 6820 -6247.011 -6253.2529 6.2419518 3710.9668 634.07108 -10598.291 0 299.14935 -1.7251539e-06 -1.1073864e-05 + 6830 -6247.1559 -6253.3961 6.2402197 3714.7611 635.84612 -10604.003 0 299.06634 6.2516183e-05 5.2593604e-05 + 6840 -6247.2974 -6253.4907 6.1932689 3717.2389 637.19703 -10607.927 0 296.8162 0.00011416331 0.00010255442 + 6850 -6247.4473 -6253.4821 6.0348008 3718.0328 638.11323 -10609.628 0 289.22152 0.0001595888 0.00014675915 + 6860 -6247.6103 -6253.3462 5.7358596 3717.0622 638.59407 -10609.002 0 274.89458 0.00020099592 0.0001885323 + 6870 -6247.7776 -6253.1099 5.3323744 3714.5491 638.61127 -10606.27 0 255.5573 0.0002334533 0.00022271997 + 6880 -6247.9312 -6252.8414 4.9102075 3710.9806 638.09525 -10601.917 0 235.3247 0.00024372412 0.00023483427 + 6890 -6248.0564 -6252.6184 4.5619602 3707.0155 636.95601 -10596.59 0 218.63473 0.00021241868 0.00020430225 + 6900 -6248.1497 -6252.4985 4.3487667 3703.3399 635.13338 -10590.972 0 208.4173 0.00012028038 0.00011161133 + 6910 -6248.2176 -6252.5065 4.2888676 3700.4996 632.65688 -10585.663 0 205.5466 -4.2867721e-05 -5.2748453e-05 + 6920 -6248.2695 -6252.6387 4.3692256 3698.7583 629.68943 -10581.086 0 209.39781 -0.00027017332 -0.00028099396 + 6930 -6248.3108 -6252.873 4.562174 3698.0363 626.53429 -10577.444 0 218.64497 -0.00053470692 -0.00054566624 + 6940 -6248.341 -6253.1747 4.8336977 3697.9578 623.59833 -10574.731 0 231.65792 -0.00079328473 -0.00080366805 + 6950 -6248.3554 -6253.4983 5.1428969 3697.9983 621.31909 -10572.816 0 246.47648 -0.00099631088 -0.0010058695 + 6960 -6248.3496 -6253.7908 5.4411602 3697.6829 620.07393 -10571.548 0 260.77093 -0.0011005917 -0.0011095472 + 6970 -6248.321 -6253.9999 5.6789476 3696.7719 620.0934 -10570.865 0 272.16703 -0.0010812527 -0.0010900987 + 6980 -6248.2689 -6254.0882 5.8193564 3695.3704 621.40065 -10570.859 0 278.89621 -0.00093934906 -0.00094866844 + 6990 -6248.1933 -6254.0428 5.8494907 3693.9246 623.79477 -10571.762 0 280.34042 -0.0007029773 -0.0007132981 + 7000 -6248.0953 -6253.8773 5.7820097 3693.1018 626.88694 -10573.866 0 277.10635 -0.00042123365 -0.00043281945 + 7010 -6247.977 -6253.6252 5.648222 3693.5803 630.1843 -10577.39 0 270.69449 -0.0001521482 -0.00016475712 + 7020 -6247.8397 -6253.3295 5.4897787 3695.8076 633.20091 -10582.338 0 263.101 5.2392091e-05 3.9536469e-05 + 7030 -6247.6811 -6253.0339 5.3527551 3699.8027 635.56462 -10588.401 0 256.53406 0.00016033411 0.00014816807 + 7040 -6247.4925 -6252.774 5.2814651 3705.073 637.08802 -10594.935 0 253.11744 0.00016732963 0.00015632273 + 7050 -6247.2611 -6252.5693 5.3082469 3710.6809 637.78257 -10601.033 0 254.40098 9.6056599e-05 8.5798347e-05 + 7060 -6246.976 -6252.4175 5.4414958 3715.4487 637.81322 -10605.679 0 260.78701 -1.2792545e-05 -2.3389098e-05 + 7070 -6246.635 -6252.2961 5.6611455 3718.2415 637.41041 -10607.948 0 271.31386 -0.00011468036 -0.0001266175 + 7080 -6246.2464 -6252.1763 5.9298911 3718.2501 636.77042 -10607.197 0 284.19366 -0.00017573666 -0.00018917227 + 7090 -6245.8249 -6252.0422 6.2172793 3715.2009 635.9794 -10603.222 0 297.96691 -0.00018307645 -0.00019719376 + 7100 -6245.3834 -6251.9042 6.5208566 3709.445 634.98894 -10596.338 0 312.51604 -0.00014812044 -0.00016177279 + 7110 -6244.9282 -6251.7949 6.8667109 3701.9035 633.65348 -10587.352 0 329.09131 -0.00010230448 -0.00011492936 + 7120 -6244.4621 -6251.7477 7.2856336 3693.8777 631.81659 -10577.442 0 349.16844 -8.6488303e-05 -9.8540607e-05 + 7130 -6243.9926 -6251.7732 7.7805355 3686.7617 629.41325 -10567.948 0 372.88692 -0.00013691782 -0.00014946628 + 7140 -6243.5389 -6251.8474 8.3084473 3681.7253 626.54718 -10560.12 0 398.18741 -0.00027182243 -0.00028563005 + 7150 -6243.1306 -6251.9206 8.7899702 3679.4509 623.51068 -10554.882 0 421.26469 -0.0004831687 -0.00049795848 + 7160 -6242.7986 -6251.9396 9.1409803 3679.9985 620.73576 -10552.674 0 438.08706 -0.00073683456 -0.00075128963 + 7170 -6242.5628 -6251.8727 9.3098644 3682.8342 618.69321 -10553.4 0 446.18094 -0.00098135821 -0.00099394021 + 7180 -6242.4239 -6251.7256 9.3017008 3687.0112 617.77652 -10556.513 0 445.7897 -0.0011619506 -0.0011721294 + 7190 -6242.3657 -6251.5395 9.1737918 3691.449 618.21065 -10561.199 0 439.65958 -0.0012348494 -0.0012439335 + 7200 -6242.3697 -6251.3674 8.9976634 3695.2252 620.00979 -10566.602 0 431.21852 -0.0011780028 -0.0011886725 + 7210 -6242.4317 -6251.24 8.8082568 3697.7915 622.98358 -10572.015 0 422.14109 -0.00099590594 -0.0010102944 + 7220 -6242.5659 -6251.1496 8.583656 3699.0426 626.77602 -10576.968 0 411.37696 -0.00071772945 -0.00073534652 + 7230 -6242.7887 -6251.07 8.2812411 3699.2342 630.92215 -10581.226 0 396.88354 -0.0003893036 -0.00040680492 + 7240 -6243.0943 -6250.9962 7.9018743 3698.8171 634.91552 -10584.729 0 378.70215 -6.1805207e-05 -7.5346951e-05 + 7250 -6243.4472 -6250.9667 7.5195168 3698.2765 638.28098 -10587.524 0 360.37744 0.00021831679 0.0002097636 + 7260 -6243.8014 -6251.0414 7.239988 3698.0316 640.64142 -10589.714 0 346.98085 0.00041474594 0.00040794901 + 7270 -6244.1333 -6251.2494 7.1161064 3698.3832 641.76418 -10591.397 0 341.04375 0.00050234554 0.00049184238 + 7280 -6244.4601 -6251.5517 7.0915909 3699.4648 641.57912 -10592.596 0 339.86882 0.00046754414 0.00044993465 + 7290 -6244.8248 -6251.8577 7.0328602 3701.1692 640.16959 -10593.197 0 337.05412 0.00031142889 0.00028848159 + 7300 -6245.2559 -6252.0921 6.8361995 3703.0851 637.74521 -10592.922 0 327.62904 5.4523874e-05 3.215243e-05 + 7310 -6245.7355 -6252.2558 6.5202177 3704.5258 634.60748 -10591.389 0 312.48542 -0.00026224283 -0.00027863841 + 7320 -6246.2088 -6252.4208 6.2120409 3704.7092 631.1167 -10588.247 0 297.71585 -0.00058513474 -0.00059494952 + 7330 -6246.6256 -6252.6586 6.0330119 3703.0445 627.65921 -10583.362 0 289.13578 -0.00086209118 -0.00086954227 + 7340 -6246.9763 -6252.9679 5.9916037 3699.3857 624.60687 -10576.96 0 287.15127 -0.0010565671 -0.0010666087 + 7350 -6247.289 -6253.272 5.9830169 3694.1177 622.26436 -10569.654 0 286.73974 -0.0011539785 -0.0011680363 + 7360 -6247.596 -6253.4826 5.8865867 3688.0544 620.81488 -10562.352 0 282.11826 -0.001160054 -0.0011752726 + 7370 -6247.9026 -6253.5667 5.66418 3682.228 620.28733 -10556.082 0 271.45929 -0.0010952103 -0.0011073431 + 7380 -6248.1837 -6253.5618 5.3781836 3677.6724 620.56353 -10551.798 0 257.75274 -0.00098886277 -0.00099589394 + 7390 -6248.4056 -6253.5359 5.1302447 3675.2491 621.42622 -10550.211 0 245.87011 -0.00087437835 -0.00087796745 + 7400 -6248.551 -6253.5325 4.9815788 3675.5099 622.63066 -10551.673 0 238.74521 -0.00078328384 -0.0007873267 + 7410 -6248.6292 -6253.5421 4.9129416 3678.5828 623.97534 -10556.1 0 235.45573 -0.00073800689 -0.00074571377 + 7420 -6248.6698 -6253.514 4.8441583 3684.0924 625.34965 -10562.956 0 232.15925 -0.00074456169 -0.00075617822 + 7430 -6248.7033 -6253.3991 4.6958323 3691.1536 626.74525 -10571.298 0 225.05063 -0.00078826632 -0.00080095267 + 7440 -6248.7414 -6253.1944 4.453007 3698.4875 628.22903 -10579.911 0 213.41308 -0.00083567925 -0.00084563825 + 7450 -6248.7706 -6252.9583 4.1876839 3704.6762 629.88789 -10587.522 0 200.69731 -0.00084415134 -0.00084955329 + 7460 -6248.7628 -6252.7839 4.0211607 3708.5126 631.76304 -10593.06 0 192.71658 -0.00077713998 -0.00077970537 + 7470 -6248.6975 -6252.7467 4.0492056 3709.3377 633.79329 -10595.878 0 194.06065 -0.00062015016 -0.00062410742 + 7480 -6248.5791 -6252.861 4.2819036 3707.2336 635.7843 -10595.879 0 205.21285 -0.00039075716 -0.000399826 + 7490 -6248.437 -6253.0769 4.6399081 3702.985 637.41714 -10593.479 0 222.37043 -0.00013774001 -0.00015233527 + 7500 -6248.3073 -6253.3142 5.0069514 3697.8181 638.30366 -10589.436 0 239.9612 7.1510487e-05 5.4749325e-05 + 7510 -6248.209 -6253.507 5.2980153 3693.0151 638.08304 -10584.605 0 253.91062 0.00017120796 0.00015715333 + 7520 -6248.1321 -6253.6265 5.4943482 3689.5482 636.53606 -10579.711 0 263.31999 0.00011759768 0.00010925162 + 7530 -6248.047 -6253.6725 5.6255754 3687.8496 633.67987 -10575.202 0 269.60914 -9.7615095e-05 -0.00010119989 + 7540 -6247.9272 -6253.6481 5.7209004 3687.7658 629.80741 -10571.221 0 274.17765 -0.00044453016 -0.00044758589 + 7550 -6247.7705 -6253.5431 5.7726703 3688.6768 625.453 -10567.673 0 276.65875 -0.00086230169 -0.00086946575 + 7560 -6247.6001 -6253.3426 5.7424457 3689.7154 621.2898 -10564.348 0 275.21022 -0.0012729561 -0.0012862207 + 7570 -6247.4489 -6253.0533 5.6043962 3690.0214 617.98612 -10561.061 0 268.59411 -0.0015980247 -0.0016156053 + 7580 -6247.3357 -6252.7253 5.3895688 3688.9788 616.06004 -10557.764 0 258.29838 -0.0017750249 -0.0017928121 + 7590 -6247.2527 -6252.4442 5.1914551 3686.4035 615.77196 -10554.62 0 248.80366 -0.0017712175 -0.0017856272 + 7600 -6247.1719 -6252.2943 5.1223647 3682.6461 617.08215 -10552.023 0 245.49246 -0.0015918093 -0.001601967 + 7610 -6247.0634 -6252.3113 5.2479299 3678.57 619.67964 -10550.561 0 251.51025 -0.0012798881 -0.0012877613 + 7620 -6246.9141 -6252.4572 5.5430606 3675.3766 623.06865 -10550.902 0 265.65457 -0.00090683503 -0.00091547916 + 7630 -6246.735 -6252.6328 5.8978537 3674.2883 626.68644 -10553.608 0 282.65824 -0.00055461983 -0.00056590224 + 7640 -6246.5529 -6252.7243 6.171398 3676.1649 630.0228 -10558.912 0 295.76802 -0.00029426068 -0.00030758886 + 7650 -6246.3928 -6252.6581 6.2652975 3681.1774 632.71404 -10566.55 0 300.26821 -0.00016673101 -0.00017955459 + 7660 -6246.2608 -6252.4393 6.1784364 3688.6649 634.591 -10575.695 0 296.10534 -0.00017274925 -0.00018249587 + 7670 -6246.1402 -6252.152 6.0118376 3697.2442 635.67276 -10585.069 0 288.12099 -0.0002755135 -0.00028169496 + 7680 -6246.0028 -6251.9185 5.9156735 3705.1511 636.11264 -10593.182 0 283.51227 -0.00041582104 -0.00042076218 + 7690 -6245.8312 -6251.8358 6.0046066 3710.7013 636.11544 -10598.653 0 287.77444 -0.00053391272 -0.00054131047 + 7700 -6245.6329 -6251.9274 6.29449 3712.7143 635.85059 -10600.492 0 301.66728 -0.00058952335 -0.00060169929 + 7710 -6245.4363 -6252.141 6.7046653 3710.7691 635.38614 -10598.296 0 321.32518 -0.00057288594 -0.00058893597 + 7720 -6245.2692 -6252.3892 7.1199442 3705.2434 634.66619 -10592.299 0 341.22768 -0.00050414216 -0.00052069503 + 7730 -6245.1392 -6252.5957 7.4565709 3697.174 633.54494 -10583.315 0 357.36072 -0.0004236514 -0.00043768422 + 7740 -6245.033 -6252.7132 7.6802166 3688.0094 631.87 -10572.593 0 368.07907 -0.00037802926 -0.00038928382 + 7750 -6244.9352 -6252.7136 7.7784559 3679.3156 629.5819 -10561.611 0 372.78725 -0.00040609988 -0.00041707098 + 7760 -6244.8451 -6252.5786 7.7334899 3672.475 626.78444 -10551.838 0 370.63223 -0.00052753536 -0.00054124127 + 7770 -6244.7792 -6252.3089 7.5296797 3668.4224 623.75267 -10544.484 0 360.8645 -0.00073642796 -0.00075395045 + 7780 -6244.7562 -6251.9435 7.1873363 3667.4779 620.87575 -10540.297 0 344.45748 -0.0010016892 -0.0010213808 + 7790 -6244.7807 -6251.5675 6.7867902 3669.3254 618.56215 -10539.455 0 325.26107 -0.001274637 -0.0012934156 + 7800 -6244.838 -6251.2913 6.4533671 3673.1482 617.14743 -10541.587 0 309.28156 -0.0015016209 -0.0015172243 + 7810 -6244.9035 -6251.2056 6.3021655 3677.8798 616.83599 -10545.921 0 302.03513 -0.0016375944 -0.0016500554 + 7820 -6244.9605 -6251.3327 6.3721942 3682.4881 617.68429 -10551.505 0 305.3913 -0.0016563381 -0.0016676097 + 7830 -6245.0137 -6251.6081 6.5944315 3686.2033 619.61272 -10557.424 0 316.04216 -0.001554556 -0.0015667182 + 7840 -6245.0873 -6251.9094 6.8220734 3688.6279 622.42733 -10562.965 0 326.95204 -0.001349609 -0.0013632358 + 7850 -6245.2106 -6252.1182 6.9075788 3689.7325 625.84148 -10567.692 0 331.04993 -0.0010731789 -0.0010871546 + 7860 -6245.4004 -6252.1767 6.7763442 3689.781 629.49903 -10571.457 0 324.76044 -0.00076424259 -0.00077689746 + 7870 -6245.6535 -6252.1084 6.4549758 3689.2286 633.00464 -10574.342 0 309.35866 -0.00046359615 -0.00047402222 + 7880 -6245.9512 -6251.9998 6.0485476 3688.6094 635.96302 -10576.572 0 289.88034 -0.00021006582 -0.00021870052 + 7890 -6246.2722 -6251.9587 5.6865612 3688.4149 638.02448 -10578.398 0 272.53192 -3.7437283e-05 -4.575009e-05 + 7900 -6246.6045 -6252.068 5.4635099 3688.9757 638.9319 -10579.976 0 261.84205 2.8796735e-05 1.9234294e-05 + 7910 -6246.9504 -6252.3509 5.4004912 3690.3639 638.56381 -10581.279 0 258.82184 -2.460752e-05 -3.6063418e-05 + 7920 -6247.3193 -6252.7655 5.4462342 3692.338 636.96515 -10582.069 0 261.0141 -0.00019424414 -0.0002068547 + 7930 -6247.7143 -6253.2273 5.5129579 3694.3558 634.35528 -10581.938 0 264.21188 -0.00045693537 -0.00046910456 + 7940 -6248.1237 -6253.6441 5.5203468 3695.6783 631.104 -10580.426 0 264.56599 -0.00077067581 -0.00078111543 + 7950 -6248.5231 -6253.9439 5.4208335 3695.5619 627.67389 -10577.18 0 259.79676 -0.0010815748 -0.0010901999 + 7960 -6248.8864 -6254.0866 5.2002707 3693.4923 624.53682 -10572.116 0 249.22615 -0.0013359613 -0.0013438285 + 7970 -6249.1963 -6254.0645 4.8681688 3689.3828 622.08273 -10565.53 0 233.30996 -0.0014939312 -0.0015023585 + 7980 -6249.4482 -6253.9013 4.4530997 3683.6651 620.54305 -10558.109 0 213.41752 -0.0015395852 -0.0015492327 + 7990 -6249.646 -6253.6512 4.0051307 3677.2375 619.95069 -10550.839 0 191.94834 -0.0014845199 -0.0014951403 + 8000 -6249.796 -6253.3911 3.5951355 3671.286 620.14952 -10544.827 0 172.29907 -0.0013637134 -0.0013746569 + 8010 -6249.9026 -6253.2037 3.3010495 3667.0255 620.85357 -10541.083 0 158.20482 -0.0012253219 -0.0012362724 + 8020 -6249.9689 -6253.1505 3.1815676 3665.4204 621.74098 -10540.312 0 152.47857 -0.0011172395 -0.001128513 + 8030 -6249.9988 -6253.2487 3.2498609 3666.9474 622.55643 -10542.752 0 155.75157 -0.0010736182 -0.0010857558 + 8040 -6249.9988 -6253.4632 3.4643959 3671.448 623.19116 -10548.102 0 166.03329 -0.001104437 -0.0011174601 + 8050 -6249.9754 -6253.7214 3.7460034 3678.1148 623.71397 -10555.55 0 179.5295 -0.0011910166 -0.0012040697 + 8060 -6249.9298 -6253.9433 4.0135563 3685.6333 624.33926 -10563.916 0 192.35214 -0.0012897905 -0.0013016264 + 8070 -6249.8552 -6254.0717 4.2165697 3692.4705 625.33793 -10571.88 0 202.08168 -0.001344925 -0.0013549263 + 8080 -6249.7402 -6254.0849 4.3446775 3697.253 626.91743 -10578.255 0 208.22132 -0.0013072414 -0.00131606 + 8090 -6249.578 -6253.9916 4.4135796 3699.1272 629.1105 -10582.229 0 211.5235 -0.0011534141 -0.0011625279 + 8100 -6249.3724 -6253.8203 4.4479276 3697.9819 631.71262 -10583.515 0 213.16965 -0.00089786111 -0.00090835494 + 8110 -6249.1343 -6253.6141 4.4798533 3694.4495 634.2947 -10582.358 0 214.69971 -0.00059193386 -0.00060364772 + 8120 -6248.8707 -6253.4268 4.5561176 3689.6897 636.29503 -10579.412 0 218.35472 -0.00031032453 -0.00032217048 + 8130 -6248.5776 -6253.3058 4.7282597 3685.0356 637.16893 -10575.51 0 226.60473 -0.00012983592 -0.00014084641 + 8140 -6248.245 -6253.2617 5.0166741 3681.6176 636.5519 -10571.431 0 240.42717 -0.00010767831 -0.00011760849 + 8150 -6247.8703 -6253.2466 5.3763283 3680.0628 634.38284 -10567.692 0 257.66382 -0.00026511393 -0.00027406808 + 8160 -6247.4659 -6253.1706 5.7047096 3680.3361 630.94279 -10564.449 0 273.40169 -0.00058001068 -0.00058782103 + 8170 -6247.0533 -6252.9532 5.8998779 3681.7683 626.79306 -10561.515 0 282.75525 -0.00099043238 -0.00099684175 + 8180 -6246.6493 -6252.5761 5.9268211 3683.2833 622.63328 -10558.493 0 284.04652 -0.0014097676 -0.0014153822 + 8190 -6246.2598 -6252.0973 5.8375379 3683.7717 619.12885 -10554.998 0 279.76757 -0.001750269 -0.0017570416 + 8200 -6245.8877 -6251.6208 5.733144 3682.4859 616.76419 -10550.871 0 274.76443 -0.0019473152 -0.001957592 + 8210 -6245.5418 -6251.2498 5.7080425 3679.3044 615.76105 -10546.315 0 273.56142 -0.001975229 -0.0019899757 + 8220 -6245.2348 -6251.0548 5.8200023 3674.7733 616.07423 -10541.902 0 278.92716 -0.0018493836 -0.0018672505 + 8230 -6244.9726 -6251.0638 6.091244 3669.9328 617.45238 -10538.449 0 291.92659 -0.0016159751 -0.0016341684 + 8240 -6244.7473 -6251.2627 6.5154363 3666.0144 619.53609 -10536.813 0 312.25627 -0.0013354917 -0.0013517797 + 8250 -6244.5435 -6251.5958 7.0522661 3664.1135 621.95982 -10537.669 0 337.98416 -0.0010662822 -0.0010805361 + 8260 -6244.3521 -6251.9701 7.6180417 3664.9197 624.42957 -10541.319 0 365.0993 -0.00085213645 -0.000866328 + 8270 -6244.1797 -6252.2738 8.0941116 3668.5524 626.76056 -10547.587 0 387.91524 -0.0007152994 -0.0007321556 + 8280 -6244.0466 -6252.4069 8.3602671 3674.5274 628.87357 -10555.808 0 400.67091 -0.00065532055 -0.0006766271 + 8290 -6243.9758 -6252.3135 8.337703 3681.8586 630.75968 -10564.932 0 399.58951 -0.00065357559 -0.00067900492 + 8300 -6243.9804 -6252.0042 8.0238246 3689.2649 632.42836 -10573.697 0 384.5467 -0.00068178686 -0.0007087814 + 8310 -6244.0533 -6251.5642 7.510928 3695.4296 633.85655 -10580.85 0 359.96581 -0.00071138951 -0.00073640879 + 8320 -6244.1665 -6251.1416 6.9750234 3699.2575 634.95792 -10585.357 0 334.28226 -0.00072119583 -0.00074189766 + 8330 -6244.2831 -6250.899 6.6159757 3700.0929 635.58806 -10586.58 0 317.07468 -0.00070267455 -0.00071945622 + 8340 -6244.379 -6250.9422 6.5631983 3697.8567 635.58679 -10584.386 0 314.54529 -0.00066247739 -0.00067787714 + 8350 -6244.4587 -6251.2655 6.8068156 3693.0544 634.83875 -10579.159 0 326.22079 -0.00062079055 -0.00063715174 + 8360 -6244.5489 -6251.7561 7.2071845 3686.6361 633.32345 -10571.716 0 345.40872 -0.00060474157 -0.00062228255 + 8370 -6244.6784 -6252.2525 7.5740981 3679.7558 631.13169 -10563.14 0 362.99328 -0.00063907211 -0.00065603793 + 8380 -6244.8577 -6252.6144 7.7567404 3673.5153 628.44473 -10554.575 0 371.74652 -0.00073838306 -0.00075288059 + 8390 -6245.0755 -6252.7669 7.6913362 3668.7649 625.49246 -10547.024 0 368.61199 -0.00090389544 -0.0009155951 + 8400 -6245.309 -6252.7058 7.3967914 3665.9888 622.51629 -10541.211 0 354.49575 -0.0011242098 -0.0011345485 + 8410 -6245.5383 -6252.4814 6.943056 3665.2689 619.7536 -10537.504 0 332.7502 -0.0013774821 -0.001388496 + 8420 -6245.7544 -6252.1735 6.4191348 3666.3151 617.44094 -10535.93 0 307.64096 -0.0016333512 -0.0016462526 + 8430 -6245.9577 -6251.8692 5.9114923 3668.5499 615.81764 -10536.237 0 283.31188 -0.001855159 -0.0018696471 + 8440 -6246.1522 -6251.6439 5.4917187 3671.2399 615.11132 -10537.995 0 263.19398 -0.0020040184 -0.0020186086 + 8450 -6246.3386 -6251.5482 5.2095917 3673.6601 615.49944 -10540.708 0 249.67286 -0.0020455044 -0.0020585268 + 8460 -6246.5128 -6251.6013 5.0885723 3675.2692 617.05642 -10543.927 0 243.87294 -0.0019581525 -0.0019687764 + 8470 -6246.6675 -6251.791 5.1234389 3675.86 619.70497 -10547.356 0 245.54394 -0.001741569 -0.0017503015 + 8480 -6246.7979 -6252.0801 5.2821915 3675.6326 623.19041 -10550.903 0 253.15225 -0.0014213046 -0.001429773 + 8490 -6246.9059 -6252.4184 5.5124835 3675.1511 627.0922 -10554.662 0 264.18914 -0.0010479385 -0.0010581011 + 8500 -6247.0027 -6252.7522 5.7495871 3675.1731 630.87905 -10558.804 0 275.55247 -0.00068902618 -0.00070210959 + 8510 -6247.1075 -6253.0334 5.9258636 3676.3881 634.00267 -10563.424 0 284.00063 -0.00041451401 -0.00043010741 + 8520 -6247.2404 -6253.2277 5.987287 3679.1395 636.01081 -10568.378 0 286.94439 -0.00027871982 -0.00029465727 + 8530 -6247.4105 -6253.3276 5.9170975 3683.2237 636.64848 -10573.2 0 283.58051 -0.0003044156 -0.00031793022 + 8540 -6247.608 -6253.3576 5.7496436 3687.8613 635.91511 -10577.134 0 275.55518 -0.00047540491 -0.0004851674 + 8550 -6247.8103 -6253.3614 5.5510873 3691.8784 634.05833 -10579.298 0 266.03925 -0.0007416273 -0.0007491899 + 8560 -6248.0015 -6253.3693 5.3677499 3694.0568 631.50529 -10578.931 0 257.25269 -0.00103545 -0.0010445669 + 8570 -6248.1892 -6253.3711 5.1819765 3693.5219 628.75138 -10575.644 0 248.34939 -0.0012924042 -0.0013063012 + 8580 -6248.4016 -6253.3246 4.9230461 3690.0182 626.23708 -10569.58 0 235.93999 -0.0014680334 -0.0014867205 + 8590 -6248.6629 -6253.1966 4.5336778 3683.9834 624.24814 -10561.428 0 217.27928 -0.001545868 -0.0015658493 + 8600 -6248.9687 -6253.0033 4.0345973 3676.4313 622.86848 -10552.303 0 193.36054 -0.0015367165 -0.001553395 + 8610 -6249.2855 -6252.814 3.5285214 3668.7119 621.99889 -10543.525 0 169.10654 -0.0014722587 -0.0014830119 + 8620 -6249.5729 -6252.7164 3.1434409 3662.2265 621.43 -10536.373 0 150.65133 -0.0013954296 -0.0014010518 + 8630 -6249.8076 -6252.772 2.9643954 3658.1528 620.93993 -10531.865 0 142.07046 -0.0013489468 -0.0013527697 + 8640 -6249.9917 -6252.9894 2.9977154 3657.2152 620.38388 -10530.589 0 143.66734 -0.001363555 -0.0013691935 + 8650 -6250.146 -6253.3242 3.1782046 3659.5339 619.75078 -10532.609 0 152.3174 -0.0014485185 -0.0014577255 + 8660 -6250.2958 -6253.7028 3.4070425 3664.579 619.1737 -10537.456 0 163.28459 -0.001587164 -0.0015989657 + 8670 -6250.4556 -6254.0555 3.5998442 3671.2592 618.89252 -10544.207 0 172.52473 -0.001739511 -0.0017510647 + 8680 -6250.6209 -6254.3413 3.7203949 3678.1503 619.17929 -10551.671 0 178.3022 -0.0018524275 -0.0018610682 + 8690 -6250.7707 -6254.551 3.7803364 3683.8341 620.24732 -10558.632 0 181.17493 -0.0018754638 -0.0018805786 + 8700 -6250.8812 -6254.6873 3.8061861 3687.2611 622.16866 -10564.117 0 182.41379 -0.0017779868 -0.0017813738 + 8710 -6250.9412 -6254.7425 3.8012843 3688.02 624.82217 -10567.585 0 182.17887 -0.0015616752 -0.0015661273 + 8720 -6250.9579 -6254.6941 3.7361828 3686.415 627.88749 -10568.997 0 179.05884 -0.001263209 -0.0012704422 + 8730 -6250.9489 -6254.5257 3.5767772 3683.3207 630.89204 -10568.738 0 171.41923 -0.00094539882 -0.00095492921 + 8740 -6250.9277 -6254.254 3.3262471 3679.8753 633.30622 -10567.435 0 159.41243 -0.0006796274 -0.00068938073 + 8750 -6250.8935 -6253.9387 3.0451264 3677.1277 634.66638 -10565.733 0 145.93954 -0.00052593325 -0.00053400736 + 8760 -6250.8316 -6253.6634 2.8318348 3675.7561 634.6906 -10564.11 0 135.71741 -0.00051757213 -0.00052376952 + 8770 -6250.722 -6253.4974 2.7754158 3675.9297 633.35024 -10562.777 0 133.0135 -0.00065441525 -0.0006604179 + 8780 -6250.5506 -6253.461 2.9103565 3677.3214 630.87392 -10561.656 0 139.48061 -0.00090572162 -0.00091377739 + 8790 -6250.3153 -6253.5167 3.2014645 3679.235 627.68406 -10560.436 0 153.43214 -0.0012197269 -0.0012307731 + 8800 -6250.0243 -6253.5932 3.5688702 3680.7927 624.28904 -10558.675 0 171.04029 -0.0015363119 -0.0015489524 + 8810 -6249.6884 -6253.6266 3.938214 3681.147 621.16646 -10555.94 0 188.74131 -0.0017996157 -0.001810922 + 8820 -6249.3116 -6253.593 4.281458 3679.6949 618.67287 -10551.961 0 205.19149 -0.0019687441 -0.0019765597 + 8830 -6248.8902 -6253.5057 4.6154462 3676.2744 617.00242 -10546.782 0 221.19808 -0.0020254236 -0.0020304747 + 8840 -6248.4263 -6253.3829 4.9566101 3671.2883 616.19681 -10540.868 0 237.54857 -0.0019770595 -0.0019829518 + 8850 -6247.9435 -6253.2162 5.2727467 3665.6761 616.18982 -10535.082 0 252.69961 -0.0018532449 -0.0018639755 + 8860 -6247.4882 -6252.9717 5.4834657 3660.6951 616.86063 -10530.527 0 262.79844 -0.0016952644 -0.0017121093 + 8870 -6247.1084 -6252.6266 5.518285 3657.5635 618.07514 -10528.265 0 264.46718 -0.0015417703 -0.0015621169 + 8880 -6246.8246 -6252.2102 5.385595 3657.1066 619.7073 -10529.024 0 258.10793 -0.0014167095 -0.0014358007 + 8890 -6246.6179 -6251.8129 5.1950179 3659.5426 621.64335 -10532.999 0 248.97441 -0.0013247146 -0.0013389607 + 8900 -6246.4412 -6251.5545 5.1133799 3664.4749 623.77679 -10539.806 0 245.06186 -0.0012550876 -0.0012645588 + 8910 -6246.2464 -6251.5248 5.2783849 3671.0566 626.00103 -10548.582 0 252.96982 -0.0011913465 -0.0011997239 + 8920 -6246.0124 -6251.7298 5.7173924 3678.2335 628.20392 -10558.167 0 274.00953 -0.001121238 -0.0011331443 + 8930 -6245.7568 -6252.0782 6.3213247 3684.9603 630.26473 -10567.303 0 302.95335 -0.0010423535 -0.0010597946 + 8940 -6245.5235 -6252.424 6.9005075 3690.3278 632.05392 -10574.806 0 330.71104 -0.00096091633 -0.00098152105 + 8950 -6245.3486 -6252.6434 7.294796 3693.617 633.43877 -10579.699 0 349.60756 -0.00088556238 -0.0009042915 + 8960 -6245.2329 -6252.6922 7.4592257 3694.3507 634.29829 -10581.341 0 357.48795 -0.00082163165 -0.00083483869 + 8970 -6245.1441 -6252.6026 7.4584395 3692.3889 634.5444 -10579.536 0 357.45027 -0.00077095369 -0.00077946995 + 8980 -6245.0473 -6252.4287 7.3814019 3688.0325 634.13838 -10574.6 0 353.7582 -0.00073697712 -0.00074556654 + 8990 -6244.9368 -6252.1933 7.2565518 3682.0384 633.09228 -10567.324 0 347.77468 -0.0007299775 -0.00074356193 + 9000 -6244.84 -6251.8805 7.0405618 3675.4798 631.45546 -10558.816 0 337.42323 -0.00076679776 -0.00078650268 + 9010 -6244.7922 -6251.4779 6.6856874 3669.4735 629.29812 -10550.249 0 320.41565 -0.00086404896 -0.00088620866 + 9020 -6244.8036 -6251.0283 6.224749 3664.8851 626.70714 -10542.621 0 298.3249 -0.0010287493 -0.0010476652 + 9030 -6244.845 -6250.644 5.7990741 3662.1392 623.80133 -10536.585 0 277.92417 -0.0012520378 -0.0012643958 + 9040 -6244.8647 -6250.4642 5.5994687 3661.1991 620.7602 -10532.424 0 268.35796 -0.001509126 -0.0015167232 + 9050 -6244.8224 -6250.5789 5.7565345 3661.6936 617.84789 -10530.12 0 275.88543 -0.0017645653 -0.0017732528 + 9060 -6244.717 -6250.9716 6.2545242 3663.0993 615.41092 -10529.482 0 299.75189 -0.0019794396 -0.0019949715 + 9070 -6244.5913 -6251.5203 6.928975 3664.8913 613.83524 -10530.247 0 332.07536 -0.0021175684 -0.0021413429 + 9080 -6244.5067 -6252.0608 7.5541021 3666.6297 613.46457 -10532.155 0 362.03496 -0.0021501509 -0.0021780417 + 9090 -6244.505 -6252.4687 7.9636752 3668.0071 614.50081 -10534.977 0 381.664 -0.0020603841 -0.0020856713 + 9100 -6244.5838 -6252.7059 8.1221233 3668.9047 616.92102 -10538.532 0 389.25772 -0.0018494475 -0.00186772 + 9110 -6244.706 -6252.8058 8.0997668 3669.4554 620.44473 -10542.706 0 388.18627 -0.0015424797 -0.001554804 + 9120 -6244.8352 -6252.8164 7.9812287 3670.0602 624.56978 -10547.446 0 382.50526 -0.0011900434 -0.0012020406 + 9130 -6244.9672 -6252.7508 7.7836038 3671.2849 628.67275 -10552.708 0 373.03397 -0.00086040896 -0.00087797293 + 9140 -6245.1321 -6252.5792 7.4470587 3673.6223 632.1486 -10558.35 0 356.90484 -0.00062185374 -0.00064666685 + 9150 -6245.3656 -6252.2703 6.9047137 3677.1961 634.54918 -10564.016 0 330.91262 -0.00052014926 -0.0005483487 + 9160 -6245.6708 -6251.8485 6.1777646 3681.5611 635.67643 -10569.086 0 296.07314 -0.00056116819 -0.00058632025 + 9170 -6246.0053 -6251.4189 5.4135778 3685.7442 635.59912 -10572.762 0 259.44902 -0.00070849112 -0.0007266896 + 9180 -6246.308 -6251.1278 4.8198264 3688.5574 634.59009 -10574.275 0 230.99313 -0.00089920267 -0.00091210709 + 9190 -6246.544 -6251.0794 4.5354331 3689.0526 633.0108 -10573.143 0 217.3634 -0.001070712 -0.0010838142 + 9200 -6246.7302 -6251.276 4.5458023 3686.8886 631.18688 -10569.351 0 217.86035 -0.0011846995 -0.001202321 + 9210 -6246.9176 -6251.6353 4.717713 3682.4347 629.31744 -10563.387 0 226.09928 -0.0012367983 -0.0012583917 + 9220 -6247.1483 -6252.0652 4.9169451 3676.603 627.44846 -10556.117 0 235.6476 -0.0012503284 -0.0012713256 + 9230 -6247.4248 -6252.5212 5.0964196 3670.5419 625.51713 -10548.58 0 244.24902 -0.0012611384 -0.001277214 + 9240 -6247.7169 -6252.9999 5.2830051 3665.3416 623.44472 -10541.786 0 253.19125 -0.0013023632 -0.001313065 + 9250 -6247.9935 -6253.4874 5.4938537 3661.8232 621.23387 -10536.544 0 263.29629 -0.001393904 -0.001402668 + 9260 -6248.249 -6253.9202 5.6711957 3660.4153 619.02536 -10533.361 0 271.79552 -0.0015370333 -0.0015480149 + 9270 -6248.503 -6254.2005 5.6974742 3661.0998 617.08979 -10532.39 0 273.05493 -0.0017131525 -0.0017278472 + 9280 -6248.775 -6254.2537 5.478707 3663.4325 615.75891 -10533.445 0 262.57038 -0.0018868291 -0.0019032989 + 9290 -6249.0597 -6254.0843 5.0246021 3666.6602 615.32666 -10536.071 0 240.80713 -0.0020140548 -0.0020291573 + 9300 -6249.3259 -6253.7807 4.4548054 3669.9342 615.95969 -10539.675 0 213.49927 -0.0020551424 -0.0020675285 + 9310 -6249.5402 -6253.464 3.9237755 3672.5687 617.64762 -10543.68 0 188.04934 -0.0019884263 -0.0019995283 + 9320 -6249.6928 -6253.2211 3.5283444 3674.2401 620.20071 -10547.662 0 169.09806 -0.0018189068 -0.0018311785 + 9330 -6249.801 -6253.0758 3.2747498 3675.0371 623.28497 -10551.398 0 156.94439 -0.0015775526 -0.0015918995 + 9340 -6249.8902 -6253.0135 3.1232199 3675.3438 626.48085 -10554.838 0 149.68222 -0.001311574 -0.0013265846 + 9350 -6249.9702 -6253.0259 3.0556975 3675.6336 629.35585 -10558.015 0 146.44617 -0.0010704788 -0.0010841016 + 9360 -6250.0287 -6253.1266 3.0979218 3676.2805 631.54222 -10560.949 0 148.46979 -0.00089392326 -0.00090574249 + 9370 -6250.0457 -6253.3275 3.281817 3677.4511 632.80385 -10563.582 0 157.28309 -0.00080480358 -0.00081663927 + 9380 -6250.0105 -6253.6052 3.5947324 3679.0748 633.07265 -10565.753 0 172.27975 -0.00080748885 -0.00082187782 + 9390 -6249.9284 -6253.895 3.9666614 3680.8623 632.44152 -10567.199 0 190.10467 -0.00088958874 -0.00090764227 + 9400 -6249.8117 -6254.1157 4.3040641 3682.3598 631.11732 -10567.593 0 206.2749 -0.0010262109 -0.0010466234 + 9410 -6249.6658 -6254.2072 4.5414254 3683.0418 629.35258 -10566.602 0 217.65059 -0.0011862396 -0.0012061052 + 9420 -6249.4787 -6254.1544 4.6756938 3682.4375 627.38044 -10563.972 0 224.08548 -0.0013397183 -0.00135653 + 9430 -6249.222 -6253.985 4.7630046 3680.2691 625.37392 -10559.628 0 228.2699 -0.0014646758 -0.001478166 + 9440 -6248.8639 -6253.7415 4.8776051 3676.5673 623.4387 -10553.748 0 233.76221 -0.0015515767 -0.0015640783 + 9450 -6248.3898 -6253.4458 5.0560142 3671.7244 621.6342 -10546.804 0 242.31257 -0.0016040327 -0.0016188681 + 9460 -6247.8192 -6253.085 5.2657961 3666.4509 620.0071 -10539.543 0 252.3665 -0.0016352582 -0.0016540744 + 9470 -6247.2054 -6252.6366 5.4312032 3661.6275 618.619 -10532.883 0 260.29373 -0.0016609593 -0.0016820695 + 9480 -6246.6083 -6252.1177 5.5094427 3658.0889 617.557 -10527.764 0 264.04341 -0.001691 -0.0017105458 + 9490 -6246.0567 -6251.6138 5.557095 3656.4219 616.92701 -10524.963 0 266.32717 -0.0017238578 -0.0017394203 + 9500 -6245.5365 -6251.246 5.7094576 3656.8638 616.83675 -10524.947 0 273.62925 -0.0017476337 -0.0017611634 + 9510 -6245.0232 -6251.0903 6.067115 3659.3202 617.37479 -10527.785 0 290.77019 -0.0017472875 -0.0017640341 + 9520 -6244.5268 -6251.117 6.5902202 3663.4298 618.58771 -10533.135 0 315.84033 -0.0017123989 -0.0017361649 + 9530 -6244.0977 -6251.2097 7.1119958 3668.6047 620.45781 -10540.272 0 340.84674 -0.0016392076 -0.0016682564 + 9540 -6243.7847 -6251.2551 7.4703806 3674.0524 622.8884 -10548.196 0 358.02255 -0.0015265632 -0.0015543761 + 9550 -6243.5871 -6251.2266 7.6394966 3678.8638 625.70428 -10555.795 0 366.12754 -0.0013719557 -0.0013926188 + 9560 -6243.4497 -6251.1912 7.7414313 3682.2211 628.66769 -10562.08 0 371.01283 -0.001174069 -0.0011877232 + 9570 -6243.3068 -6251.2359 7.9290506 3683.6673 631.50298 -10566.406 0 380.0046 -0.00094171277 -0.00095529189 + 9580 -6243.1371 -6251.3792 8.2420354 3683.295 633.92373 -10568.598 0 395.00458 -0.00070183054 -0.00072419995 + 9590 -6242.9856 -6251.5412 8.5556931 3681.7191 635.66116 -10568.922 0 410.03682 -0.00049828614 -0.0005333784 + 9600 -6242.9319 -6251.5977 8.6657813 3679.813 636.49452 -10567.905 0 415.31286 -0.00037911402 -0.00042232035 + 9610 -6243.0281 -6251.4769 8.4488264 3678.3204 636.28156 -10566.079 0 404.91517 -0.00037811464 -0.00041899092 + 9620 -6243.2519 -6251.2262 7.9742559 3677.5456 634.98502 -10563.757 0 382.17109 -0.00050119084 -0.00053083602 + 9630 -6243.5187 -6250.9889 7.470269 3677.286 632.69216 -10560.967 0 358.0172 -0.00072520267 -0.0007427237 + 9640 -6243.7427 -6250.9032 7.1604899 3677.0249 629.62294 -10557.551 0 343.17086 -0.0010087176 -0.0010215628 + 9650 -6243.8982 -6251.0029 7.1047134 3676.2334 626.118 -10553.354 0 340.49773 -0.0013063906 -0.001324327 + 9660 -6244.0294 -6251.2064 7.1769794 3674.5855 622.59723 -10548.389 0 343.96112 -0.0015783628 -0.001606163 + 9670 -6244.2069 -6251.397 7.1900493 3672.0125 619.49056 -10542.9 0 344.5875 -0.0017926086 -0.0018272066 + 9680 -6244.4707 -6251.5207 7.0500684 3668.6595 617.1583 -10537.339 0 337.87884 -0.0019246729 -0.0019583648 + 9690 -6244.8051 -6251.6207 6.8156213 3664.8518 615.82531 -10532.298 0 326.64281 -0.0019599007 -0.0019863294 + 9700 -6245.159 -6251.7908 6.6317909 3661.0983 615.54822 -10528.437 0 317.83263 -0.0018987482 -0.0019169986 + 9710 -6245.4872 -6252.0943 6.6070993 3658.0853 616.22233 -10526.402 0 316.64927 -0.0017612162 -0.0017755794 + 9720 -6245.7802 -6252.5048 6.7245676 3656.5904 617.62296 -10526.718 0 322.27901 -0.0015856084 -0.001601836 + 9730 -6246.0662 -6252.9066 6.8404247 3657.2933 619.4676 -10529.668 0 327.83153 -0.0014194727 -0.001440382 + 9740 -6246.3845 -6253.1544 6.7698823 3660.5232 621.47954 -10535.157 0 324.45075 -0.0013047129 -0.0013281699 + 9750 -6246.7486 -6253.1589 6.4102438 3666.043 623.43574 -10542.638 0 307.21485 -0.0012625864 -0.0012833548 + 9760 -6247.1261 -6252.9462 5.8201131 3672.9935 625.19175 -10551.131 0 278.93248 -0.001285786 -0.0013000144 + 9770 -6247.4558 -6252.6459 5.1900272 3680.0673 626.68809 -10559.401 0 248.73522 -0.001342204 -0.001351028 + 9780 -6247.6909 -6252.409 4.718119 3685.8687 627.94318 -10566.221 0 226.11874 -0.0013887772 -0.00139787 + 9790 -6247.832 -6252.319 4.487059 3689.3043 629.02939 -10570.653 0 215.04504 -0.0013882758 -0.0014035175 + 9800 -6247.9244 -6252.3623 4.4378773 3689.8417 630.02515 -10572.229 0 212.68798 -0.0013215855 -0.0013444215 + 9810 -6248.0235 -6252.4715 4.4480009 3687.5708 630.94937 -10570.992 0 213.17316 -0.0011924921 -0.0012187221 + 9820 -6248.1565 -6252.5941 4.437605 3683.112 631.70482 -10567.411 0 212.67493 -0.0010262851 -0.0010490673 + 9830 -6248.3069 -6252.7297 4.4228111 3677.45 632.06634 -10562.246 0 211.96592 -0.00086442378 -0.00087912798 + 9840 -6248.428 -6252.9157 4.4877619 3671.7426 631.73517 -10556.394 0 215.07873 -0.00075629516 -0.0007638331 + 9850 -6248.4751 -6253.1791 4.7039589 3667.1172 630.4504 -10550.747 0 225.4401 -0.00074831654 -0.00075481185 + 9860 -6248.4362 -6253.49 5.0538487 3664.4556 628.11714 -10546.063 0 242.20879 -0.00087117391 -0.00088415913 + 9870 -6248.3428 -6253.755 5.4122034 3664.1831 624.89748 -10542.836 0 259.38316 -0.0011274962 -0.0011509518 + 9880 -6248.2534 -6253.8605 5.6070616 3666.111 621.21999 -10541.191 0 268.72185 -0.0014839797 -0.0015154327 + 9890 -6248.2149 -6253.7456 5.5306883 3669.413 617.69563 -10540.854 0 265.06162 -0.0018727234 -0.0019045981 + 9900 -6248.2281 -6253.4534 5.2253153 3672.8057 614.96787 -10541.227 0 250.42643 -0.0022048314 -0.002229433 + 9910 -6248.2449 -6253.1168 4.8719375 3674.9354 613.55258 -10541.605 0 233.49058 -0.0023945715 -0.0024092324 + 9920 -6248.1986 -6252.8794 4.6808436 3674.862 613.71979 -10541.461 0 224.33229 -0.0023864702 -0.0023950739 + 9930 -6248.0429 -6252.8069 4.7640153 3672.4422 615.44205 -10540.691 0 228.31835 -0.0021747403 -0.0021846661 + 9940 -6247.7692 -6252.8508 5.0815833 3668.4324 618.40784 -10539.691 0 243.53798 -0.0018069853 -0.001823979 + 9950 -6247.3968 -6252.8867 5.4898877 3664.2577 622.08901 -10539.233 0 263.10622 -0.0013706286 -0.0013952564 + 9960 -6246.9486 -6252.7929 5.84437 3661.5422 625.851 -10540.186 0 280.095 -0.00096716748 -0.00099488595 + 9970 -6246.433 -6252.5189 6.0858509 3661.5819 629.08939 -10543.19 0 291.66812 -0.00068316608 -0.00070749147 + 9980 -6245.8404 -6252.1068 6.2663459 3664.934 631.36555 -10548.406 0 300.31846 -0.00056690888 -0.00058361052 + 9990 -6245.1521 -6251.6626 6.510479 3671.2274 632.50748 -10555.397 0 312.01868 -0.00061697729 -0.00062702238 + 10000 -6244.3622 -6251.2918 6.9295169 3679.2342 632.64326 -10563.169 0 332.10133 -0.0007857901 -0.00079516098 + 10010 -6243.5078 -6251.0323 7.5244478 3687.1836 632.14319 -10570.359 0 360.61376 -0.00099752221 -0.0010131451 + 10020 -6242.6823 -6250.8353 8.1530522 3693.2258 631.46968 -10575.531 0 390.74001 -0.0011743643 -0.001198325 + 10030 -6241.9962 -6250.6239 8.6276535 3695.8897 630.97899 -10577.493 0 413.48556 -0.0012605147 -0.0012877533 + 10040 -6241.504 -6250.3876 8.8835926 3694.4114 630.76538 -10575.564 0 425.7516 -0.0012357265 -0.001258476 + 10050 -6241.1695 -6250.211 9.041581 3688.9072 630.63465 -10569.753 0 433.32329 -0.0011177644 -0.0011330444 + 10060 -6240.9136 -6250.1926 9.2789875 3680.3922 630.2237 -10560.809 0 444.70115 -0.00095629675 -0.00096895622 + 10070 -6240.6963 -6250.3362 9.6399074 3670.597 629.19685 -10550.13 0 461.99845 -0.00081845887 -0.00083678671 + 10080 -6240.5508 -6250.5287 9.9778796 3661.5474 627.41378 -10539.49 0 478.19598 -0.00076680084 -0.00079513654 + 10090 -6240.5466 -6250.6255 10.078891 3655.0066 624.99457 -10530.627 0 483.037 -0.00083615553 -0.00087119565 + 10100 -6240.7224 -6250.5649 9.8425333 3652.0017 622.2693 -10524.836 0 471.70942 -0.0010203662 -0.0010538314 + 10110 -6241.0493 -6250.4168 9.3675394 3652.6283 619.65492 -10522.7 0 448.94505 -0.0012763628 -0.0013012581 + 10120 -6241.4495 -6250.3379 8.8884077 3656.1827 617.52701 -10524.048 0 425.98237 -0.0015431727 -0.0015587455 + 10130 -6241.8477 -6250.4728 8.6250496 3661.5101 616.14217 -10528.125 0 413.36077 -0.0017650065 -0.0017772665 + 10140 -6242.2153 -6250.8606 8.6452454 3667.3941 615.62777 -10533.882 0 414.32867 -0.0019070255 -0.0019247946 + 10150 -6242.5837 -6251.3987 8.8149566 3672.8342 616.01571 -10540.249 0 422.46218 -0.0019584569 -0.0019873963 + 10160 -6243.016 -6251.888 8.8719843 3677.1388 617.27863 -10546.305 0 425.19527 -0.0019247164 -0.0019632016 + 10170 -6243.5509 -6252.1445 8.5935996 3679.8734 619.34081 -10551.359 0 411.85351 -0.0018152096 -0.0018552605 + 10180 -6244.1606 -6252.1061 7.9455254 3680.7955 622.06616 -10554.968 0 380.79416 -0.0016356497 -0.0016684705 + 10190 -6244.7613 -6251.8565 7.0952655 3679.8905 625.24337 -10556.99 0 340.04494 -0.0013906773 -0.0014123988 + 10200 -6245.2684 -6251.5587 6.2903757 3677.4903 628.58227 -10557.631 0 301.4701 -0.001094485 -0.0011077526 + 10210 -6245.6445 -6251.3608 5.7163361 3674.3404 631.72294 -10557.424 0 273.9589 -0.00078049869 -0.0007915173 + 10220 -6245.907 -6251.3421 5.4350945 3671.4945 634.25959 -10557.096 0 260.48023 -0.00050178219 -0.00051587389 + 10230 -6246.1033 -6251.5137 5.4103338 3670.0359 635.78868 -10557.338 0 259.29355 -0.00032002819 -0.00033885676 + 10240 -6246.2806 -6251.8453 5.5647337 3670.7217 635.98776 -10558.555 0 266.69326 -0.00028722983 -0.00030879117 + 10250 -6246.4659 -6252.2871 5.8212192 3673.6889 634.71291 -10560.689 0 278.98548 -0.00042719946 -0.00044779544 + 10260 -6246.6625 -6252.777 6.114433 3678.3301 632.08109 -10563.188 0 293.03794 -0.00072387899 -0.00074055908 + 10270 -6246.8576 -6253.2408 6.3831572 3683.3972 628.49614 -10565.134 0 305.91671 -0.0011208923 -0.0011330268 + 10280 -6247.0353 -6253.5964 6.5611632 3687.3224 624.59093 -10565.51 0 314.44775 -0.0015332732 -0.0015425672 + 10290 -6247.1879 -6253.7685 6.5805603 3688.6701 621.08779 -10563.526 0 315.37737 -0.0018687199 -0.0018778482 + 10300 -6247.3187 -6253.7118 6.39318 3686.5848 618.61368 -10558.91 0 306.39706 -0.0020526465 -0.0020635091 + 10310 -6247.435 -6253.4357 6.000679 3681.0896 617.53066 -10552.056 0 287.58621 -0.0020495255 -0.0020623157 + 10320 -6247.5401 -6253.0111 5.4709657 3673.1452 617.84212 -10543.998 0 262.19937 -0.0018735711 -0.0018871297 + 10330 -6247.6295 -6252.5545 4.9249963 3664.4522 619.20835 -10536.215 0 236.03346 -0.0015849553 -0.0015979276 + 10340 -6247.6933 -6252.1931 4.4997882 3657.0517 621.0641 -10530.309 0 215.6551 -0.0012725039 -0.0012844637 + 10350 -6247.7206 -6252.0251 4.3045233 3652.8222 622.79674 -10527.644 0 206.29691 -0.0010282965 -0.0010402053 + 10360 -6247.7055 -6252.0876 4.3820741 3653.0003 623.92974 -10529.018 0 210.01358 -0.00092179048 -0.00093546902 + 10370 -6247.6526 -6252.34 4.6874591 3657.8391 624.25992 -10534.439 0 224.64934 -0.00098033468 -0.00099709655 + 10380 -6247.5776 -6252.6776 5.0999217 3666.4867 623.91093 -10543.075 0 244.41686 -0.0011805634 -0.0011998832 + 10390 -6247.499 -6252.9752 5.4761658 3677.1282 623.28698 -10553.39 0 262.44859 -0.0014529139 -0.0014723622 + 10400 -6247.4229 -6253.1442 5.7213678 3687.3859 622.93691 -10563.467 0 274.20005 -0.0016995486 -0.0017164479 + 10410 -6247.3364 -6253.1654 5.8290202 3694.9106 623.36659 -10571.443 0 279.35935 -0.0018229698 -0.0018366006 + 10420 -6247.2181 -6253.0763 5.8581658 3698.0177 624.8559 -10575.95 0 280.75617 -0.0017580466 -0.001770361 + 10430 -6247.0576 -6252.9304 5.872877 3696.1642 627.33749 -10576.432 0 281.46122 -0.0014963063 -0.0015103159 + 10440 -6246.8638 -6252.7676 5.9037729 3690.0901 630.37871 -10573.236 0 282.94192 -0.0010921874 -0.0011094995 + 10450 -6246.6537 -6252.6131 5.9594427 3681.574 633.27972 -10567.467 0 285.60993 -0.00064792175 -0.00066772804 + 10460 -6246.4328 -6252.4889 6.0561454 3672.9002 635.26524 -10560.654 0 290.24447 -0.00028291648 -0.00030311343 + 10470 -6246.1882 -6252.4098 6.2216428 3666.226 635.71234 -10554.348 0 298.17603 -9.8978887e-05 -0.0001180096 + 10480 -6245.8973 -6252.367 6.4697911 3663.033 634.33889 -10549.739 0 310.06869 -0.00015228647 -0.00016995649 + 10490 -6245.5417 -6252.3204 6.7786863 3663.7865 631.2903 -10547.397 0 324.87268 -0.00043898153 -0.00045583785 + 10500 -6245.1143 -6252.2154 7.1010582 3667.8665 627.10106 -10547.183 0 340.32255 -0.00089672876 -0.00091299317 + 10510 -6244.6139 -6252.0182 7.4042776 3673.7724 622.5532 -10548.344 0 354.85453 -0.0014208129 -0.0014361365 + 10520 -6244.0366 -6251.7432 7.7066022 3679.5524 618.4842 -10549.78 0 369.34362 -0.0018905224 -0.0019048528 + 10530 -6243.3747 -6251.4458 8.0711469 3683.3547 615.60261 -10550.403 0 386.81465 -0.0021995042 -0.0022140067 + 10540 -6242.6293 -6251.1813 8.5520576 3683.9552 614.3523 -10549.489 0 409.86259 -0.0022824771 -0.0022991436 + 10550 -6241.8277 -6250.9628 9.1351298 3681.1046 614.84276 -10546.91 0 437.80668 -0.0021308158 -0.0021507199 + 10560 -6241.026 -6250.7538 9.7277816 3675.5828 616.84882 -10543.185 0 466.20988 -0.0017921079 -0.0018139519 + 10570 -6240.2893 -6250.5008 10.211441 3668.9518 619.87966 -10539.332 0 489.38954 -0.0013538543 -0.0013745443 + 10580 -6239.6624 -6250.1753 10.512917 3663.098 623.30882 -10536.582 0 503.83797 -0.00091719774 -0.0009343626 + 10590 -6239.1564 -6249.7922 10.635808 3659.7174 626.53528 -10536.045 0 509.72761 -0.00056995063 -0.00058433569 + 10600 -6238.7632 -6249.3939 10.630663 3659.8893 629.12614 -10538.409 0 509.48103 -0.00036720973 -0.00038266677 + 10610 -6238.4832 -6249.0207 10.537517 3663.8312 630.89332 -10543.745 0 505.01695 -0.00032333121 -0.00034397935 + 10620 -6238.3382 -6248.6989 10.360722 3670.8593 631.88318 -10551.441 0 496.54391 -0.00041425477 -0.00044092768 + 10630 -6238.3554 -6248.4628 10.107468 3679.5402 632.29321 -10560.296 0 484.40659 -0.00058713569 -0.00061633116 + 10640 -6238.5374 -6248.3889 9.8515265 3688.012 632.35785 -10568.759 0 472.14043 -0.00077514986 -0.00080188767 + 10650 -6238.8545 -6248.5914 9.7369357 3694.4341 632.25331 -10575.279 0 466.64859 -0.00091609395 -0.00093838073 + 10660 -6239.2753 -6249.156 9.8806599 3697.4737 632.05591 -10578.686 0 473.53666 -0.00097108065 -0.00099168945 + 10670 -6239.8106 -6250.0552 10.244658 3696.6664 631.75699 -10578.479 0 490.98149 -0.00093603844 -0.00095968201 + 10680 -6240.5189 -6251.1238 10.604941 3692.499 631.30945 -10574.932 0 508.24829 -0.00083948541 -0.0008680794 + 10690 -6241.4538 -6252.1238 10.669981 3686.1811 630.67218 -10568.977 0 511.36535 -0.00072725427 -0.00075782545 + 10700 -6242.5886 -6252.853 10.264398 3679.2284 629.82924 -10561.911 0 491.92753 -0.00064309112 -0.00067008296 + 10710 -6243.788 -6253.219 9.4310192 3673.0445 628.78139 -10555.045 0 451.98736 -0.00061600133 -0.00063551718 + 10720 -6244.869 -6253.2447 8.3756774 3668.6484 627.5272 -10549.42 0 401.40946 -0.00065899153 -0.00067124153 + 10730 -6245.6997 -6253.0214 7.3216279 3666.5827 626.05786 -10545.662 0 350.89349 -0.00077456154 -0.0007831321 + 10740 -6246.2523 -6252.657 6.4046233 3666.9391 624.37898 -10543.975 0 306.94548 -0.00095837353 -0.00096766547 + 10750 -6246.5819 -6252.2461 5.6642028 3669.4072 622.55282 -10544.206 0 271.46038 -0.0011970947 -0.0012098298 + 10760 -6246.7738 -6251.8666 5.0928189 3673.3144 620.73704 -10545.918 0 244.07646 -0.0014633164 -0.0014792853 + 10770 -6246.8997 -6251.5873 4.6876478 3677.6967 619.19238 -10548.476 0 224.65839 -0.0017133844 -0.0017299218 + 10780 -6246.998 -6251.4731 4.4751274 3681.4569 618.2432 -10551.173 0 214.47321 -0.0018924826 -0.0019063619 + 10790 -6247.074 -6251.5747 4.5006919 3683.6216 618.19702 -10553.393 0 215.69841 -0.0019475504 -0.0019571405 + 10800 -6247.1145 -6251.9069 4.7923891 3683.6356 619.24668 -10554.789 0 229.67818 -0.0018446227 -0.0018509464 + 10810 -6247.1073 -6252.428 5.3207175 3681.5863 621.38624 -10555.4 0 254.99864 -0.0015843815 -0.0015904332 + 10820 -6247.0572 -6253.0385 5.9813856 3678.2492 624.36849 -10555.656 0 286.66156 -0.0012091577 -0.0012179703 + 10830 -6246.9892 -6253.6059 6.6166568 3674.9017 627.72454 -10556.232 0 317.10732 -0.00079682317 -0.00080956087 + 10840 -6246.9378 -6254.0062 7.0684135 3672.9362 630.85287 -10557.795 0 338.75804 -0.00044158016 -0.00045688772 + 10850 -6246.9278 -6254.1631 7.235258 3673.3947 633.16413 -10560.722 0 346.75416 -0.00022707209 -0.00024205089 + 10860 -6246.9617 -6254.0643 7.1026552 3676.5895 634.24247 -10564.896 0 340.39909 -0.00020104077 -0.00021313471 + 10870 -6247.0197 -6253.7534 6.7336934 3681.9514 633.96675 -10569.672 0 322.71637 -0.00036072852 -0.00036927543 + 10880 -6247.0731 -6253.3065 6.2333814 3688.1658 632.54256 -10574.015 0 298.73861 -0.00065417366 -0.00066074553 + 10890 -6247.0989 -6252.8094 5.7104463 3693.5459 630.42917 -10576.784 0 273.67663 -0.00099659776 -0.0010041064 + 10900 -6247.0894 -6252.3412 5.2518253 3696.5172 628.18916 -10577.048 0 251.69694 -0.0012959999 -0.0013071708 + 10910 -6247.0527 -6251.9638 4.9111846 3696.0633 626.31681 -10574.344 0 235.37152 -0.001479537 -0.0014954684 + 10920 -6247.0058 -6251.7156 4.7097908 3692.0077 625.10406 -10568.827 0 225.7196 -0.0015126384 -0.0015320692 + 10930 -6246.9628 -6251.6139 4.6510822 3685.0651 624.58083 -10561.26 0 222.90596 -0.0014057252 -0.0014255337 + 10940 -6246.9222 -6251.6649 4.7427585 3676.6643 624.53883 -10552.868 0 227.2996 -0.0012078877 -0.0012248851 + 10950 -6246.8624 -6251.868 5.0056166 3668.61 624.62406 -10545.102 0 239.89724 -0.00099098274 -0.0010040876 + 10960 -6246.7533 -6252.2048 5.4515176 3662.6749 624.46885 -10539.349 0 261.26731 -0.00082945107 -0.00084061752 + 10970 -6246.5782 -6252.6207 6.0425267 3660.2031 623.82556 -10536.649 0 289.59179 -0.00078053278 -0.00079341526 + 10980 -6246.3502 -6253.0222 6.6720059 3661.7876 622.6638 -10537.474 0 319.75996 -0.00086822733 -0.00088538464 + 10990 -6246.1076 -6253.3076 7.1999317 3667.0851 621.20091 -10541.594 0 345.06113 -0.0010741547 -0.0010950722 + 11000 -6245.8888 -6253.4146 7.5258149 3674.8454 619.85423 -10548.114 0 360.67928 -0.0013391186 -0.0013608109 + 11010 -6245.7082 -6253.3463 7.638054 3683.2062 619.1262 -10555.679 0 366.05841 -0.0015780466 -0.0015976335 + 11020 -6245.5564 -6253.1509 7.5944863 3690.2022 619.45386 -10562.807 0 363.97039 -0.0017059949 -0.0017227537 + 11030 -6245.4187 -6252.878 7.4592274 3694.3237 621.06462 -10568.266 0 357.48803 -0.0016662724 -0.0016814274 + 11040 -6245.2915 -6252.555 7.2635158 3694.919 623.88086 -10571.355 0 348.10843 -0.0014492689 -0.0014642706 + 11050 -6245.1794 -6252.1996 7.0202135 3692.3143 627.50674 -10572.021 0 336.44802 -0.0010951694 -0.0011104555 + 11060 -6245.0848 -6251.8425 6.7577751 3687.6491 631.3087 -10570.8 0 323.8705 -0.00068150835 -0.00069664149 + 11070 -6245.0021 -6251.5315 6.5294191 3682.5078 634.56907 -10568.608 0 312.9264 -0.00030153136 -0.00031602338 + 11080 -6244.9214 -6251.3142 6.3928909 3678.4649 636.66565 -10566.445 0 306.3832 -4.0085325e-05 -5.3910432e-05 + 11090 -6244.8341 -6251.2208 6.3866734 3676.6603 637.22172 -10565.103 0 306.08523 4.729954e-05 3.3755913e-05 + 11100 -6244.7359 -6251.2585 6.5225898 3677.5137 636.18466 -10564.957 0 312.5991 -5.2601566e-05 -6.6425542e-05 + 11110 -6244.6254 -6251.4169 6.7915479 3680.6431 633.81637 -10565.876 0 325.48908 -0.00030910463 -0.00032387387 + 11120 -6244.505 -6251.6709 7.1659209 3685.0047 630.60707 -10567.283 0 343.43114 -0.00065804153 -0.00067450564 + 11130 -6244.3842 -6251.9749 7.5906641 3689.2041 627.14556 -10568.325 0 363.78722 -0.0010207669 -0.0010394481 + 11140 -6244.2822 -6252.2588 7.97668 3691.8879 623.98623 -10568.133 0 382.28726 -0.0013250296 -0.0013456301 + 11150 -6244.2237 -6252.4416 8.2178989 3692.1041 621.54564 -10566.091 0 393.84783 -0.001520878 -0.0015419937 + 11160 -6244.2274 -6252.4607 8.2332828 3689.5423 620.04596 -10562.049 0 394.58511 -0.0015879915 -0.001607672 + 11170 -6244.2945 -6252.3027 8.0081741 3684.6022 619.50809 -10556.413 0 383.79664 -0.0015348333 -0.0015517853 + 11180 -6244.4081 -6252.0148 7.6066024 3678.2908 619.78714 -10550.093 0 364.55107 -0.0013921932 -0.001406788 + 11190 -6244.5438 -6251.6906 7.1468651 3671.987 620.63608 -10544.314 0 342.51788 -0.0012038045 -0.0012181491 + 11200 -6244.6842 -6251.4391 6.754897 3667.1315 621.77896 -10540.35 0 323.73257 -0.0010161512 -0.0010331077 + 11210 -6244.8296 -6251.3477 6.5180741 3664.9065 622.97491 -10539.229 0 312.38268 -0.00086913446 -0.00089078049 + 11220 -6244.9987 -6251.4552 6.456472 3665.9652 624.06038 -10541.481 0 309.43036 -0.00078884019 -0.00081508966 + 11230 -6245.2205 -6251.7418 6.5212969 3670.264 624.96601 -10546.972 0 312.53714 -0.00078300939 -0.0008110851 + 11240 -6245.5185 -6252.1437 6.6251496 3677.037 625.71069 -10554.891 0 317.51434 -0.00083946042 -0.00086482402 + 11250 -6245.8935 -6252.5864 6.6928501 3684.9373 626.3766 -10563.9 0 320.75893 -0.00092831609 -0.00094713189 + 11260 -6246.3175 -6253.0133 6.6958103 3692.3436 627.07095 -10572.428 0 320.9008 -0.0010095571 -0.0010214425 + 11270 -6246.749 -6253.3837 6.63474 3697.777 627.88326 -10579.044 0 317.97397 -0.0010458076 -0.0010545626 + 11280 -6247.1606 -6253.6484 6.4878554 3700.2984 628.84836 -10582.795 0 310.93443 -0.0010160037 -0.0010270689 + 11290 -6247.5518 -6253.7435 6.191735 3699.7275 629.92273 -10583.394 0 296.74268 -0.00092276549 -0.00093912941 + 11300 -6247.9343 -6253.6281 5.6938627 3696.6 630.98002 -10581.208 0 272.88185 -0.00078932566 -0.00080941033 + 11310 -6248.3055 -6253.3355 5.0299444 3691.9144 631.83015 -10577.08 0 241.06316 -0.00064904395 -0.00066838574 + 11320 -6248.6418 -6252.9833 4.3414774 3686.8168 632.26078 -10572.061 0 208.06796 -0.00053484871 -0.0005498437 + 11330 -6248.9143 -6252.7218 3.8074068 3682.3505 632.09046 -10567.163 0 182.4723 -0.00047345808 -0.000483823 + 11340 -6249.1109 -6252.6569 3.5459734 3679.3045 631.21739 -10563.179 0 169.94294 -0.00048356796 -0.00049180346 + 11350 -6249.2429 -6252.8054 3.5624761 3678.1242 629.64981 -10560.579 0 170.73384 -0.00057437298 -0.0005832951 + 11360 -6249.335 -6253.1068 3.7717956 3678.8539 627.51301 -10559.474 0 180.76561 -0.00074251031 -0.0007532101 + 11370 -6249.4083 -6253.4735 4.0651244 3681.1205 625.03537 -10559.629 0 194.82357 -0.00096894747 -0.00098064997 + 11380 -6249.4691 -6253.8349 4.3658319 3684.1976 622.52105 -10560.554 0 209.23516 -0.0012189956 -0.0012304334 + 11390 -6249.5106 -6254.1515 4.6408947 3687.1683 620.31498 -10561.635 0 222.41772 -0.0014473463 -0.001458152 + 11400 -6249.5232 -6254.3997 4.8764364 3689.1566 618.76048 -10562.317 0 233.7062 -0.0016073236 -0.0016183189 + 11410 -6249.5042 -6254.5545 5.0503591 3689.562 618.14633 -10562.263 0 242.04154 -0.0016617292 -0.001674155 + 11420 -6249.4593 -6254.5856 5.1262444 3688.2298 618.64409 -10561.46 0 245.67839 -0.0015925294 -0.0016070216 + 11430 -6249.3992 -6254.4682 5.0689959 3685.5096 620.24827 -10560.226 0 242.93472 -0.0014071349 -0.0014231714 + 11440 -6249.3317 -6254.2007 4.869048 3682.1805 622.74281 -10559.124 0 233.3521 -0.0011392457 -0.0011553423 + 11450 -6249.2563 -6253.8178 4.5615171 3679.2564 625.71907 -10558.793 0 218.61349 -0.00084277934 -0.00085735205 + 11460 -6249.1617 -6253.3902 4.2284593 3677.7175 628.65599 -10559.764 0 202.6515 -0.00057933774 -0.00059182391 + 11470 -6249.0288 -6253.0052 3.9764079 3678.2455 631.04688 -10562.298 0 190.57178 -0.00040245412 -0.00041395691 + 11480 -6248.8387 -6252.7348 3.8960969 3681.0338 632.53307 -10566.302 0 186.72282 -0.00034343598 -0.00035626062 + 11490 -6248.5792 -6252.6083 4.0290938 3685.7123 632.99614 -10571.317 0 193.09678 -0.0004028988 -0.00041912292 + 11500 -6248.2452 -6252.6096 4.3644578 3691.3976 632.57534 -10576.583 0 209.16931 -0.00055009972 -0.00057014454 + 11510 -6247.834 -6252.6975 4.8634425 3696.8601 631.60581 -10581.163 0 233.08345 -0.0007304281 -0.00075262006 + 11520 -6247.3427 -6252.83 5.4873035 3700.7905 630.50086 -10584.121 0 262.98237 -0.00088003863 -0.00090140105 + 11530 -6246.7713 -6252.9767 6.2054545 3702.1262 629.61544 -10584.718 0 297.4002 -0.00094497497 -0.00096276549 + 11540 -6246.1319 -6253.1131 6.9812583 3700.37 629.12955 -10582.613 0 334.58107 -0.00090008693 -0.00091333588 + 11550 -6245.4565 -6253.2053 7.7488571 3695.8032 628.98746 -10577.996 0 371.36871 -0.00076122204 -0.00077147416 + 11560 -6244.798 -6253.198 8.4000152 3689.49 628.92042 -10571.608 0 402.57586 -0.0005840419 -0.00059463433 + 11570 -6244.2206 -6253.02 8.7993974 3683.008 628.55723 -10564.585 0 421.71649 -0.00044644933 -0.0004604469 + 11580 -6243.7793 -6252.6135 8.8341939 3677.9585 627.58825 -10558.16 0 423.38414 -0.00041914755 -0.00043723585 + 11590 -6243.4981 -6251.9757 8.4775968 3675.4366 625.91745 -10553.33 0 406.294 -0.00053611577 -0.00055606485 + 11600 -6243.3593 -6251.1872 7.8278862 3675.6848 623.73673 -10550.609 0 375.15623 -0.00077823963 -0.00079646515 + 11610 -6243.3121 -6250.4067 7.0945966 3678.0747 621.48961 -10549.971 0 340.01288 -0.0010776235 -0.0010918084 + 11620 -6243.2955 -6249.8262 6.5306738 3681.4128 619.73892 -10550.978 0 312.98653 -0.0013408631 -0.0013517805 + 11630 -6243.2641 -6249.6013 6.3372172 3684.4306 618.99073 -10553.023 0 303.71501 -0.0014816988 -0.001492852 + 11640 -6243.2057 -6249.7908 6.5851087 3686.2583 619.53667 -10555.586 0 315.59536 -0.0014502805 -0.0014654989 + 11650 -6243.143 -6250.3383 7.1953191 3686.7013 621.36296 -10558.403 0 344.84006 -0.0012485288 -0.0012692553 + 11660 -6243.1172 -6251.1062 7.9890384 3686.2331 624.14914 -10561.488 0 382.87955 -0.00092723564 -0.00095164392 + 11670 -6243.1645 -6251.9367 8.7721907 3685.7335 627.3552 -10565.025 0 420.4126 -0.000567695 -0.00059235436 + 11680 -6243.3013 -6252.6968 9.395489 3686.1024 630.37383 -10569.173 0 450.28455 -0.00025561119 -0.00027820264 + 11690 -6243.5269 -6253.2882 9.7612718 3687.903 632.70295 -10573.894 0 467.81492 -5.6057975e-05 -7.6789436e-05 + 11700 -6243.8339 -6253.6373 9.8033667 3691.1487 634.08115 -10578.867 0 469.83234 3.5937397e-06 -1.7174189e-05 + 11710 -6244.2123 -6253.6953 9.4829725 3695.2841 634.53518 -10583.515 0 454.47725 -6.1650564e-05 -8.405027e-05 + 11720 -6244.6436 -6253.4527 8.809067 3699.3543 634.31985 -10587.127 0 422.17992 -0.00020368103 -0.00022759113 + 11730 -6245.0962 -6252.9542 7.8579397 3702.3043 633.77614 -10589.035 0 376.59656 -0.00036151427 -0.00038507397 + 11740 -6245.5304 -6252.3017 6.7713656 3703.3067 633.17052 -10588.779 0 324.52183 -0.00048442442 -0.00050518662 + 11750 -6245.9078 -6251.6424 5.7345474 3702.007 632.58725 -10586.237 0 274.83169 -0.00054829067 -0.00056489729 + 11760 -6246.2019 -6251.1403 4.9384036 3698.6183 631.91928 -10581.678 0 236.67601 -0.0005594785 -0.00057295006 + 11770 -6246.4052 -6250.9307 4.5254952 3693.8577 630.95468 -10575.743 0 216.88712 -0.00054715086 -0.00056070762 + 11780 -6246.5349 -6251.0685 4.5336301 3688.7542 629.51169 -10569.334 0 217.27699 -0.00054899525 -0.00056597826 + 11790 -6246.6298 -6251.505 4.8751961 3684.3757 627.55706 -10563.438 0 233.64675 -0.00059557795 -0.00061665006 + 11800 -6246.7347 -6252.1172 5.3825446 3681.5419 625.25673 -10558.916 0 257.96174 -0.00069757923 -0.00071956222 + 11810 -6246.8748 -6252.7747 5.8999599 3680.6138 622.9421 -10556.331 0 282.75918 -0.00084005994 -0.00085791441 + 11820 -6247.0402 -6253.3945 6.3542159 3681.4513 621.01276 -10555.858 0 304.52968 -0.00098719725 -0.00099800441 + 11830 -6247.1971 -6253.9418 6.7447012 3683.5574 619.8194 -10557.319 0 323.24393 -0.0010970717 -0.0011027571 + 11840 -6247.3193 -6254.385 7.065678 3686.3295 619.57121 -10560.286 0 338.62694 -0.0011399613 -0.0011462183 + 11850 -6247.4149 -6254.656 7.2411012 3689.2766 620.29457 -10564.227 0 347.0342 -0.0011101578 -0.0011222512 + 11860 -6247.5205 -6254.6638 7.1433178 3692.0937 621.84693 -10568.604 0 342.34787 -0.0010246536 -0.0010435441 + 11870 -6247.6677 -6254.3539 6.6861643 3694.5939 623.97238 -10572.92 0 320.43851 -0.00091046161 -0.00093236284 + 11880 -6247.8539 -6253.7655 5.9115475 3696.594 626.37626 -10576.736 0 283.31453 -0.000789394 -0.00080887603 + 11890 -6248.0411 -6253.036 4.9949473 3697.869 628.7931 -10579.698 0 239.3859 -0.00066960267 -0.00068351767 + 11900 -6248.1834 -6252.3505 4.1670963 3698.2219 631.02628 -10581.599 0 199.71064 -0.00054748398 -0.00055672462 + 11910 -6248.2559 -6251.8704 3.6145289 3697.6194 632.94878 -10582.439 0 173.2285 -0.00041680008 -0.00042505773 + 11920 -6248.2619 -6251.6869 3.4249813 3696.2939 634.47019 -10582.451 0 164.14432 -0.00027874203 -0.00028980789 + 11930 -6248.221 -6251.8145 3.5935149 3694.7344 635.49229 -10582.041 0 172.2214 -0.00014776617 -0.00016350672 + 11940 -6248.1514 -6252.2084 4.0569853 3693.5586 635.88366 -10581.651 0 194.4335 -5.0883915e-05 -7.0805371e-05 + 11950 -6248.0608 -6252.7821 4.7213106 3693.3135 635.49718 -10581.593 0 226.2717 -2.0451111e-05 -4.2393615e-05 + 11960 -6247.9457 -6253.4223 5.4766686 3694.2677 634.23062 -10581.921 0 262.47269 -8.2282113e-05 -0.00010353142 + 11970 -6247.7938 -6254.0082 6.2144181 3696.2662 632.10544 -10582.38 0 297.82978 -0.0002429188 -0.00026146162 + 11980 -6247.5867 -6254.4329 6.8462363 3698.7098 629.32501 -10582.468 0 328.11006 -0.00048156009 -0.00049719266 + 11990 -6247.3073 -6254.6166 7.3092182 3700.6987 626.27841 -10581.594 0 350.29875 -0.00075146973 -0.0007659671 + 12000 -6246.9521 -6254.506 7.5538943 3701.3105 623.47578 -10579.292 0 362.025 -0.00099162805 -0.0010073635 + 12010 -6246.5366 -6254.0787 7.5420967 3699.9119 621.42772 -10575.418 0 361.45959 -0.0011441424 -0.0011619433 + 12020 -6246.0855 -6253.3647 7.2791828 3696.386 620.50585 -10570.257 0 348.85928 -0.0011705292 -0.0011887513 + 12030 -6245.6116 -6252.4697 6.8581226 3691.2143 620.83419 -10564.518 0 328.67972 -0.0010620729 -0.0010780374 + 12040 -6245.1027 -6251.5635 6.4607472 3685.4201 622.2514 -10559.235 0 309.63526 -0.00084309882 -0.00085571209 + 12050 -6244.5293 -6250.8238 6.2944612 3680.3975 624.35607 -10555.577 0 301.6659 -0.00056735772 -0.00057853562 + 12060 -6243.8647 -6250.3667 6.5020874 3677.6316 626.61883 -10554.617 0 311.61651 -0.00030695712 -0.0003206274 + 12070 -6243.1079 -6250.2081 7.1002458 3678.3151 628.5313 -10557.055 0 340.28362 -0.00013349264 -0.00015296741 + 12080 -6242.2983 -6250.2751 7.9768805 3682.9215 629.75783 -10562.954 0 382.29687 -9.4027909e-05 -0.0001196367 + 12090 -6241.5075 -6250.4566 8.9490822 3690.8779 630.24784 -10571.582 0 428.89023 -0.00018944874 -0.00021815099 + 12100 -6240.8097 -6250.6625 9.8527783 3700.5321 630.26095 -10581.456 0 472.20042 -0.00036628027 -0.00039376104 + 12110 -6240.2503 -6250.8566 10.606245 3709.531 630.27702 -10590.665 0 508.31079 -0.00053064923 -0.00055451945 + 12120 -6239.8431 -6251.0437 11.200591 3715.5444 630.809 -10597.397 0 536.79516 -0.00058299457 -0.00060456204 + 12130 -6239.593 -6251.229 11.635982 3717.0619 632.18215 -10600.473 0 557.66154 -0.00045993243 -0.00048308892 + 12140 -6239.5154 -6251.3881 11.872691 3713.9237 634.36368 -10599.676 0 569.00596 -0.0001642345 -0.00019251489 + 12150 -6239.6323 -6251.4726 11.840294 3707.3614 636.9171 -10595.751 0 567.4533 0.0002310093 0.00019681739 + 12160 -6239.9503 -6251.4367 11.486399 3699.5452 639.11497 -10590.097 0 550.49269 0.00060612535 0.00056836758 + 12170 -6240.443 -6251.264 10.820915 3692.8359 640.17984 -10584.28 0 518.59897 0.00083675612 0.00079952558 + 12180 -6241.0504 -6250.9809 9.9304342 3689.0257 639.5615 -10579.568 0 475.92213 0.0008373238 0.00080440267 + 12190 -6241.6949 -6250.6569 8.9619904 3688.8284 637.13892 -10576.624 0 429.50887 0.0005897262 0.00056289561 + 12200 -6242.306 -6250.392 8.0859958 3691.7653 633.27121 -10575.428 0 387.52629 0.00014786468 0.00012623846 + 12210 -6242.8412 -6250.2909 7.4497567 3696.44 628.69128 -10575.422 0 357.03414 -0.00038134787 -0.00040070217 + 12220 -6243.2947 -6250.43 7.1352879 3701.0613 624.2952 -10575.787 0 341.96303 -0.00087159006 -0.00089196742 + 12230 -6243.6916 -6250.8297 7.1381513 3704.0201 620.9041 -10575.754 0 342.10026 -0.0012130984 -0.0012362564 + 12240 -6244.0702 -6251.4478 7.3775786 3704.3453 619.06786 -10574.861 0 353.57496 -0.0013403658 -0.0013655691 + 12250 -6244.463 -6252.1928 7.7298225 3701.9397 618.95627 -10573.089 0 370.45646 -0.0012454213 -0.0012700586 + 12260 -6244.8836 -6252.9475 8.063914 3697.5652 620.35604 -10570.869 0 386.468 -0.00097529668 -0.0009965959 + 12270 -6245.3247 -6253.5913 8.2666492 3692.5991 622.76495 -10568.955 0 396.18422 -0.00061576073 -0.0006324554 + 12280 -6245.7641 -6254.0217 8.2575344 3688.6295 625.55213 -10568.203 0 395.74738 -0.00026588231 -0.00027889698 + 12290 -6246.1762 -6254.1717 7.9955563 3687.0001 628.13876 -10569.311 0 383.19192 -1.0228923e-05 -2.205087e-05 + 12300 -6246.542 -6254.0204 7.4784423 3688.4346 630.14652 -10572.602 0 358.40892 0.00010336619 9.0323562e-05 + 12310 -6246.8553 -6253.5981 6.7428811 3692.8417 631.46785 -10577.908 0 323.1567 7.402766e-05 5.9071834e-05 + 12320 -6247.1185 -6252.9917 5.8732255 3699.3438 632.23703 -10584.573 0 281.47792 -5.6510025e-05 -7.1933294e-05 + 12330 -6247.3341 -6252.3413 5.0072219 3706.5145 632.72072 -10591.577 0 239.97417 -0.00022077666 -0.00023431072 + 12340 -6247.4991 -6251.8159 4.316725 3712.7611 633.1782 -10597.755 0 206.88168 -0.00034906633 -0.0003593905 + 12350 -6247.6073 -6251.5663 3.9590149 3716.7455 633.74818 -10602.06 0 189.73821 -0.00039172561 -0.00039975889 + 12360 -6247.6548 -6251.6744 4.0196314 3717.7212 634.39976 -10603.795 0 192.64329 -0.00033328792 -0.00034184991 + 12370 -6247.6469 -6252.12 4.4731143 3715.6929 634.9543 -10602.767 0 214.37674 -0.0001948704 -0.00020703082 + 12380 -6247.6033 -6252.7819 5.1786223 3711.3621 635.16032 -10599.304 0 248.18864 -2.518012e-05 -4.2204258e-05 + 12390 -6247.5559 -6253.4758 5.9199425 3705.8875 634.78921 -10594.153 0 283.71686 0.00011657288 9.6446248e-05 + 12400 -6247.5348 -6254.0214 6.486652 3700.5364 633.7179 -10588.276 0 310.87676 0.00018046541 0.00016129792 + 12410 -6247.5486 -6254.311 6.7624077 3696.3463 631.9737 -10582.631 0 324.09252 0.00014152508 0.00012698007 + 12420 -6247.5762 -6254.3384 6.7622547 3693.9125 629.73292 -10577.984 0 324.08519 5.2236575e-06 -4.3511608e-06 + 12430 -6247.584 -6254.1715 6.5874284 3693.3552 627.28111 -10574.808 0 315.70653 -0.00019870177 -0.00020690091 + 12440 -6247.5556 -6253.8907 6.3350674 3694.4274 624.95154 -10573.27 0 303.61198 -0.00042936574 -0.00044114969 + 12450 -6247.5063 -6253.547 6.0407277 3696.6596 623.05969 -10573.266 0 289.50557 -0.0006470436 -0.00066485147 + 12460 -6247.4697 -6253.1662 5.6964691 3699.4674 621.84871 -10574.482 0 273.00676 -0.00081957334 -0.00084130217 + 12470 -6247.4676 -6252.7815 5.3139487 3702.2196 621.45709 -10576.458 0 254.67424 -0.00092322078 -0.00094371666 + 12480 -6247.4893 -6252.4542 4.964846 3704.3157 621.91357 -10578.683 0 237.94328 -0.00094184563 -0.00095665734 + 12490 -6247.4973 -6252.2566 4.759266 3705.3049 623.1553 -10580.717 0 228.09073 -0.00086759333 -0.00087606421 + 12500 -6247.4501 -6252.2309 4.7808789 3705.0253 625.05686 -10582.313 0 229.12654 -0.00070341742 -0.00070894953 + 12510 -6247.3259 -6252.3576 5.0317568 3703.6948 627.45419 -10583.507 0 241.15002 -0.00046548462 -0.0004730529 + 12520 -6247.1316 -6252.5598 5.4282292 3701.8927 630.1523 -10584.605 0 260.1512 -0.00018327764 -0.0001961137 + 12530 -6246.8932 -6252.7429 5.8496248 3700.4145 632.91802 -10586.075 0 280.34684 0.00010365757 8.6025345e-05 + 12540 -6246.6355 -6252.8434 6.2079218 3700.0411 635.4722 -10588.357 0 297.51844 0.00035206064 0.00033332727 + 12550 -6246.3626 -6252.8603 6.4976885 3701.2972 637.50207 -10591.66 0 311.40569 0.00052314944 0.00050771894 + 12560 -6246.051 -6252.8484 6.7973917 3704.2804 638.70774 -10595.837 0 325.76915 0.00059065 0.00058060966 + 12570 -6245.6604 -6252.875 7.2145843 3708.6107 638.878 -10600.364 0 345.76336 0.00054641103 0.0005399439 + 12580 -6245.161 -6252.9596 7.7985681 3713.5045 637.96909 -10604.433 0 373.75114 0.00040224104 0.00039478683 + 12590 -6244.5617 -6253.0385 8.4767278 3717.9297 636.14788 -10607.116 0 406.25236 0.00018825454 0.00017588776 + 12600 -6243.9163 -6252.9889 9.0725841 3720.793 633.76931 -10607.551 0 434.80914 -5.1254868e-05 -6.8745475e-05 + 12610 -6243.2964 -6252.7064 9.4100557 3721.1396 631.28594 -10605.132 0 450.98267 -0.00026446571 -0.00028348223 + 12620 -6242.7487 -6252.1792 9.430556 3718.3816 629.12197 -10599.683 0 451.96516 -0.00040243035 -0.0004187124 + 12630 -6242.2743 -6251.5013 9.2269821 3712.5318 627.56122 -10591.594 0 442.20875 -0.00043296534 -0.00044520672 + 12640 -6241.8472 -6250.8176 8.9703453 3704.3584 626.68799 -10581.864 0 429.90928 -0.00035365941 -0.00036435962 + 12650 -6241.4495 -6250.2502 8.8007204 3695.3424 626.39127 -10571.984 0 421.7799 -0.00019689433 -0.00020990047 + 12660 -6241.0889 -6249.8614 8.7725042 3687.3828 626.42093 -10563.665 0 420.42762 -2.202663e-05 -3.9226444e-05 + 12670 -6240.7886 -6249.6655 8.8769321 3682.3131 626.47824 -10558.457 0 425.43239 0.00010389768 8.3851486e-05 + 12680 -6240.5651 -6249.6585 9.0933867 3681.3855 626.32196 -10557.366 0 435.80612 0.00012968823 0.00010987148 + 12690 -6240.4192 -6249.8303 9.4111908 3684.8981 625.86627 -10560.595 0 451.03707 3.8751759e-05 2.1279276e-05 + 12700 -6240.3456 -6250.1525 9.8068847 3692.0888 625.24055 -10567.482 0 470.00094 -0.00014353545 -0.00015915005 + 12710 -6240.354 -6250.5608 10.206804 3701.3285 624.78185 -10576.671 0 489.16731 -0.00035590373 -0.0003722054 + 12720 -6240.4804 -6250.9576 10.477231 3710.5598 624.9451 -10586.463 0 502.12768 -0.00051883364 -0.00053822794 + 12730 -6240.7783 -6251.2442 10.465873 3717.848 626.14169 -10595.234 0 501.58333 -0.00055910081 -0.00058169379 + 12740 -6241.2874 -6251.3693 10.081987 3721.8843 628.55273 -10601.806 0 483.18538 -0.00043442326 -0.00045761981 + 12750 -6242.0003 -6251.3656 9.3653502 3722.2986 631.99347 -10605.658 0 448.84013 -0.00015023196 -0.00017050624 + 12760 -6242.854 -6251.3411 8.4871754 3719.7015 635.905 -10606.948 0 406.75307 0.00023817068 0.00022273058 + 12770 -6243.7562 -6251.426 7.6698612 3715.4456 639.49839 -10606.37 0 367.58279 0.00064018033 0.00062862732 + 12780 -6244.6265 -6251.7039 7.0773674 3711.1778 641.99579 -10604.877 0 339.18715 0.00095659224 0.00094605134 + 12790 -6245.4206 -6252.1709 6.750275 3708.3298 642.86108 -10603.362 0 323.51106 0.0011085881 0.0010964001 + 12800 -6246.1258 -6252.7424 6.6165464 3707.7173 641.93075 -10602.39 0 317.10203 0.0010589315 0.0010443373 + 12810 -6246.744 -6253.2963 6.5522517 3709.3553 639.42197 -10602.074 0 314.02067 0.0008199573 0.00080432066 + 12820 -6247.2771 -6253.7257 6.4486203 3712.5114 635.84656 -10602.084 0 309.05407 0.00044820596 0.00043381172 + 12830 -6247.7211 -6253.9747 6.2535875 3715.9592 631.87333 -10601.807 0 299.707 2.8323944e-05 1.6582283e-05 + 12840 -6248.0691 -6254.0417 5.9725963 3718.3646 628.17583 -10600.582 0 286.24033 -0.00034966822 -0.00035936653 + 12850 -6248.3208 -6253.9562 5.6353757 3718.6992 625.29737 -10597.953 0 270.07882 -0.00061377878 -0.0006236092 + 12860 -6248.491 -6253.751 5.2599955 3716.5558 623.55727 -10593.864 0 252.0885 -0.00072706921 -0.00073894825 + 12870 -6248.6072 -6253.456 4.8488382 3712.2626 623.01326 -10588.732 0 232.38353 -0.00069300813 -0.0007068815 + 12880 -6248.6953 -6253.1156 4.4202582 3706.7672 623.48434 -10583.367 0 211.84358 -0.00054844022 -0.00056224194 + 12890 -6248.765 -6252.8057 4.0406584 3701.3545 624.62815 -10578.788 0 193.65102 -0.00034833363 -0.00035975 + 12900 -6248.8068 -6252.6232 3.8163671 3697.3107 626.05399 -10575.988 0 182.90172 -0.00014873316 -0.00015725379 + 12910 -6248.8036 -6252.6449 3.8412775 3695.6329 627.43847 -10575.716 0 184.09557 6.8720857e-06 -5.9862467e-07 + 12920 -6248.7466 -6252.8844 4.1377404 3696.8321 628.60689 -10578.323 0 198.30374 9.5507628e-05 8.6275384e-05 + 12930 -6248.6437 -6253.2785 4.6348331 3700.8368 629.55418 -10583.67 0 222.12721 0.00011696008 0.00010434449 + 12940 -6248.5149 -6253.7132 5.1982519 3706.9999 630.40311 -10591.116 0 249.1294 9.0914375e-05 7.5720455e-05 + 12950 -6248.3805 -6254.0706 5.6901352 3714.2164 631.32144 -10599.608 0 272.70321 4.9677264e-05 3.4603301e-05 + 12960 -6248.2485 -6254.2713 6.0227995 3721.1485 632.434 -10607.854 0 288.64635 2.7899434e-05 1.5670245e-05 + 12970 -6248.1109 -6254.2913 6.1803171 3726.5203 633.76231 -10614.574 0 296.19547 5.1873313e-05 4.3287218e-05 + 12980 -6247.9511 -6254.1525 6.2013629 3729.41 635.20909 -10618.772 0 297.20411 0.00013145799 0.0001246305 + 12990 -6247.7582 -6253.8943 6.136089 3729.4572 636.58496 -10619.936 0 294.07581 0.00025697152 0.00024843487 + 13000 -6247.5398 -6253.547 6.0072184 3726.9205 637.66037 -10618.128 0 287.89961 0.00040206487 0.00038921604 + 13010 -6247.3205 -6253.1291 5.8085673 3722.5618 638.22195 -10613.913 0 278.37914 0.00053199132 0.00051518025 + 13020 -6247.1237 -6252.6699 5.5461274 3717.4021 638.11723 -10608.189 0 265.80154 0.00061457603 0.00059702293 + 13030 -6246.9499 -6252.2331 5.283269 3712.4485 637.28005 -10601.962 0 253.20389 0.00062935772 0.00061467617 + 13040 -6246.7706 -6251.9099 5.1393238 3708.4948 635.73687 -10596.142 0 246.30523 0.00057090412 0.00056011025 + 13050 -6246.5449 -6251.7755 5.2305488 3706.0381 633.59837 -10591.412 0 250.67725 0.00044589651 0.00043636907 + 13060 -6246.2454 -6251.8419 5.5964445 3705.2774 631.04356 -10588.163 0 268.21302 0.00026768735 0.00025496916 + 13070 -6245.8765 -6252.046 6.1694646 3706.1302 628.30357 -10586.48 0 295.67536 5.3145855e-05 3.4189077e-05 + 13080 -6245.4718 -6252.2834 6.8116844 3708.236 625.64962 -10586.169 0 326.45414 -0.00017613309 -0.00020073155 + 13090 -6245.0736 -6252.4653 7.3917714 3710.9735 623.38334 -10586.822 0 354.25516 -0.00039040717 -0.00041677595 + 13100 -6244.7089 -6252.5577 7.8487984 3713.5451 621.82106 -10587.924 0 376.15846 -0.00055082553 -0.00057445755 + 13110 -6244.3789 -6252.5802 8.2012993 3715.1582 621.26128 -10589 0 393.05228 -0.00061477276 -0.00063351876 + 13120 -6244.0701 -6252.5693 8.4992784 3715.2778 621.92996 -10589.777 0 407.33311 -0.00054779213 -0.00056309403 + 13130 -6243.7771 -6252.5348 8.7577259 3713.8579 623.90911 -10590.302 0 419.71936 -0.00033816209 -0.00035369001 + 13140 -6243.5175 -6252.443 8.9254566 3711.4409 627.06835 -10590.952 0 427.75796 -7.6085122e-06 -2.6386177e-05 + 13150 -6243.3246 -6252.2428 8.918203 3709.0449 631.03032 -10592.318 0 427.41033 0.00038794029 0.0003656638 + 13160 -6243.2233 -6251.9149 8.6916232 3707.8519 635.2035 -10594.97 0 416.55135 0.00076998409 0.00074650767 + 13170 -6243.2114 -6251.5025 8.2911525 3708.8076 638.89814 -10599.208 0 397.35855 0.0010584497 0.0010365257 + 13180 -6243.264 -6251.0985 7.8345519 3712.2783 641.50228 -10604.879 0 375.47569 0.0011948607 0.0011758019 + 13190 -6243.3541 -6250.8004 7.4463281 3717.8774 642.65561 -10611.333 0 356.86983 0.0011598879 0.0011433997 + 13200 -6243.4697 -6250.6733 7.2035484 3724.5102 642.34858 -10617.532 0 345.23446 0.00097984221 0.00096514964 + 13210 -6243.6138 -6250.7429 7.1290614 3730.6252 640.9048 -10622.273 0 341.66462 0.00071975915 0.00070644658 + 13220 -6243.7953 -6251.0087 7.2134023 3734.6263 638.85527 -10624.49 0 345.70671 0.00046382776 0.00045156312 + 13230 -6244.0265 -6251.4487 7.4222772 3735.3482 636.7554 -10623.552 0 355.71717 0.00028785461 0.00027575398 + 13240 -6244.3303 -6252.0067 7.6764353 3732.451 635.01179 -10619.47 0 367.89785 0.00023284569 0.00021972981 + 13250 -6244.7441 -6252.5843 7.8402013 3726.579 633.77582 -10612.939 0 375.74644 0.00029069785 0.00027626253 + 13260 -6245.3028 -6253.0658 7.7629652 3719.1949 632.93577 -10605.197 0 372.04485 0.0004092542 0.00039472134 + 13270 -6246.0039 -6253.3676 7.3637341 3712.1323 632.20667 -10597.707 0 352.91145 0.00051503583 0.00050218684 + 13280 -6246.7861 -6253.4754 6.689216 3707.0322 631.28244 -10591.79 0 320.58477 0.00054299125 0.00053241493 + 13290 -6247.5502 -6253.4378 5.887562 3704.8849 629.98725 -10588.31 0 282.16501 0.00045981955 0.00045025 + 13300 -6248.2095 -6253.3294 5.1198779 3705.8299 628.36346 -10587.523 0 245.37328 0.00027271569 0.00026210226 + 13310 -6248.7276 -6253.2157 4.4880754 3709.2348 626.66846 -10589.119 0 215.09376 2.4176841e-05 1.132701e-05 + 13320 -6249.116 -6253.142 4.0259651 3713.9589 625.29685 -10592.398 0 192.94683 -0.00022145609 -0.000236071 + 13330 -6249.4066 -6253.1394 3.7328855 3718.6867 624.66361 -10596.49 0 178.90082 -0.00039492279 -0.00040961626 + 13340 -6249.6269 -6253.2329 3.6060791 3722.2628 625.08081 -10600.577 0 172.82354 -0.00043985151 -0.00045296036 + 13350 -6249.7896 -6253.4386 3.6490511 3723.9775 626.65572 -10604.072 0 174.883 -0.00032871241 -0.00033983728 + 13360 -6249.8954 -6253.753 3.8576036 3723.7476 629.23693 -10606.738 0 184.87801 -7.2879373e-05 -8.341007e-05 + 13370 -6249.9436 -6254.1402 4.1965549 3722.1339 632.42802 -10608.702 0 201.12246 0.00027708778 0.00026455799 + 13380 -6249.9428 -6254.5263 4.5835164 3720.1654 635.67158 -10610.363 0 219.66782 0.00064257182 0.00062581427 + 13390 -6249.9157 -6254.812 4.8962417 3718.9985 638.38436 -10612.195 0 234.65538 0.000937648 0.00091657354 + 13400 -6249.8915 -6254.9042 5.0126667 3719.5031 640.10541 -10614.513 0 240.23512 0.0010941749 0.0010715927 + 13410 -6249.8882 -6254.7608 4.8725953 3721.9188 640.61104 -10617.291 0 233.52211 0.0010832805 0.0010636934 + 13420 -6249.8975 -6254.4221 4.5245139 3725.7243 639.95911 -10620.105 0 216.84009 0.00092476772 0.0009115099 + 13430 -6249.8866 -6254.0007 4.1141337 3729.7969 638.44899 -10622.247 0 197.17237 0.00067923618 0.00067185684 + 13440 -6249.8204 -6253.6259 3.8055191 3732.812 636.51315 -10622.951 0 182.38183 0.00042498355 0.000419197 + 13450 -6249.6885 -6253.3741 3.685576 3733.715 634.5781 -10621.667 0 176.63348 0.00022959227 0.00022033127 + 13460 -6249.5136 -6253.2423 3.728707 3732.0624 632.94014 -10618.245 0 178.70056 0.00012888869 0.00011420775 + 13470 -6249.3317 -6253.1823 3.8506095 3728.1137 631.69589 -10612.992 0 184.54281 0.00012111466 0.00010365563 + 13480 -6249.1609 -6253.1602 3.9992782 3722.6942 630.75078 -10606.605 0 191.66785 0.00017539812 0.00016014153 + 13490 -6248.9847 -6253.1849 4.2001755 3716.9364 629.90176 -10600.023 0 201.29598 0.00024755056 0.00023777265 + 13500 -6248.7631 -6253.283 4.5199653 3712.006 628.96064 -10594.25 0 216.6221 0.00029600926 0.00029074708 + 13510 -6248.4634 -6253.45 4.986611 3708.8687 627.86753 -10590.186 0 238.98638 0.00029403257 0.00028891671 + 13520 -6248.0881 -6253.624 5.535966 3708.1098 626.74745 -10588.481 0 265.31455 0.00023690937 0.00022752136 + 13530 -6247.6785 -6253.7077 6.0291863 3709.8149 625.88574 -10589.408 0 288.95244 0.00014343188 0.00012857862 + 13540 -6247.2919 -6253.6229 6.3309498 3713.5445 625.63092 -10592.798 0 303.41464 5.0770744e-05 3.3286332e-05 + 13550 -6246.9659 -6253.3612 6.3952934 3718.4344 626.26374 -10598.059 0 306.49835 3.1081016e-06 -1.2403387e-05 + 13560 -6246.6961 -6252.9957 6.2995123 3723.4265 627.88628 -10604.308 0 301.90797 3.6844303e-05 2.5925206e-05 + 13570 -6246.4449 -6252.6438 6.1988492 3727.5742 630.37446 -10610.592 0 297.08364 0.00016713604 0.00015891171 + 13580 -6246.1735 -6252.3997 6.2261947 3730.315 633.40667 -10616.121 0 298.39418 0.00038067143 0.0003695019 + 13590 -6245.8768 -6252.2788 6.4020393 3731.5906 636.54909 -10620.419 0 306.82164 0.00063803951 0.00061846998 + 13600 -6245.5925 -6252.2142 6.621761 3731.7529 639.36106 -10623.328 0 317.35194 0.00088612166 0.00085731529 + 13610 -6245.3757 -6252.1148 6.739051 3731.3026 641.48641 -10624.904 0 322.97314 0.0010767297 0.0010439238 + 13620 -6245.2554 -6251.9464 6.6910124 3730.6105 642.70943 -10625.266 0 320.67086 0.001183547 0.001154912 + 13630 -6245.2057 -6251.7733 6.5676322 3729.7817 642.96707 -10624.522 0 314.75779 0.0012084621 0.0011892584 + 13640 -6245.1602 -6251.7201 6.5598473 3728.7328 642.32173 -10622.775 0 314.38469 0.0011731987 0.0011615951 + 13650 -6245.0613 -6251.8731 6.8118579 3727.4042 640.91043 -10620.188 0 326.46245 0.0011010996 0.0010892099 + 13660 -6244.9077 -6252.1947 7.2870319 3725.9371 638.89411 -10617.026 0 349.23546 0.0010010339 0.00098088144 + 13670 -6244.7623 -6252.5265 7.764256 3724.6648 636.4283 -10613.62 0 372.10671 0.00086484217 0.00083478237 + 13680 -6244.7049 -6252.6935 7.9886286 3723.9073 633.66462 -10610.266 0 382.85991 0.00068048491 0.00064668694 + 13690 -6244.7674 -6252.63 7.8625879 3723.7181 630.77751 -10607.126 0 376.81933 0.00045102471 0.00042252872 + 13700 -6244.9087 -6252.4204 7.5117837 3723.7879 627.99849 -10604.207 0 360.00682 0.00020482392 0.00018642001 + 13710 -6245.053 -6252.2225 7.1694423 3723.5935 625.63205 -10601.448 0 343.5999 -1.0359686e-05 -2.127198e-05 + 13720 -6245.1533 -6252.1423 6.9890644 3722.6955 624.02957 -10598.867 0 334.95518 -0.00014448586 -0.00015475503 + 13730 -6245.2205 -6252.1681 6.9476714 3720.9928 623.51349 -10596.674 0 332.9714 -0.00016272144 -0.00017732211 + 13740 -6245.3015 -6252.2075 6.9059624 3718.7984 624.27081 -10595.277 0 330.97247 -5.5624774e-05 -7.4010998e-05 + 13750 -6245.4299 -6252.1837 6.7537792 3716.7393 626.25901 -10595.182 0 323.67899 0.0001591279 0.0001414672 + 13760 -6245.5959 -6252.1047 6.5087942 3715.5704 629.17314 -10596.848 0 311.93794 0.00044082683 0.00042760596 + 13770 -6245.7576 -6252.0515 6.2938995 3715.9881 632.50079 -10600.54 0 301.63898 0.0007334532 0.00072404422 + 13780 -6245.879 -6252.1082 6.229244 3718.4634 635.65336 -10606.225 0 298.54033 0.00097688578 0.0009667948 + 13790 -6245.9601 -6252.2943 6.3341968 3723.0824 638.12914 -10613.506 0 303.57025 0.0011215145 0.0011061343 + 13800 -6246.0382 -6252.5482 6.5099739 3729.4095 639.65086 -10621.609 0 311.99448 0.0011437333 0.0011222604 + 13810 -6246.1604 -6252.771 6.6105767 3736.4388 640.22767 -10629.437 0 316.81593 0.0010568409 0.0010332845 + 13820 -6246.3465 -6252.8977 6.5511554 3742.7232 640.11594 -10635.737 0 313.96812 0.00091070313 0.00089096978 + 13830 -6246.5717 -6252.9415 6.3698014 3746.7218 639.69194 -10639.355 0 305.27662 0.00077599136 0.0007630847 + 13840 -6246.7862 -6252.9695 6.1833024 3747.297 639.28752 -10639.554 0 296.33855 0.00071591859 0.00070728998 + 13850 -6246.9593 -6253.0289 6.0696095 3744.1692 639.05513 -10636.253 0 290.88974 0.00075743057 0.00074707388 + 13860 -6247.1069 -6253.0974 5.990453 3738.0877 638.91271 -10630.098 0 287.09612 0.00087747198 0.00086100904 + 13870 -6247.2759 -6253.109 5.8330375 3730.6036 638.58661 -10622.299 0 279.55189 0.0010128872 0.00099096352 + 13880 -6247.5019 -6253.027 5.5250657 3723.5419 637.73765 -10614.307 0 264.79215 0.0010887492 0.0010658766 + 13890 -6247.7835 -6252.8891 5.1055729 3718.4234 636.12519 -10607.438 0 244.6877 0.0010500465 0.001030535 + 13900 -6248.0932 -6252.784 4.6908034 3716.0685 633.74416 -10602.597 0 224.80962 0.00088231944 0.00086727287 + 13910 -6248.4088 -6252.7904 4.38161 3716.4813 630.87532 -10600.147 0 209.99134 0.00061512979 0.00060273686 + 13920 -6248.7325 -6252.9333 4.2007775 3718.9844 628.02366 -10599.941 0 201.32483 0.0003105635 0.00029858581 + 13930 -6249.0823 -6253.1849 4.1026082 3722.5116 625.76859 -10601.465 0 196.62001 4.297818e-05 3.0769667e-05 + 13940 -6249.469 -6253.4964 4.0273461 3725.9594 624.58662 -10604.042 0 193.01302 -0.0001231393 -0.00013464678 + 13950 -6249.881 -6253.8256 3.9445779 3728.5032 624.71531 -10607.044 0 189.04631 -0.00015088768 -0.00016064842 + 13960 -6250.2891 -6254.144 3.8549696 3729.7953 626.10326 -10610.043 0 184.75177 -3.9451633e-05 -4.753479e-05 + 13970 -6250.6633 -6254.4269 3.7635869 3729.9973 628.44902 -10612.873 0 180.3722 0.00017835535 0.0001708302 + 13980 -6250.9865 -6254.6449 3.6584527 3729.6498 631.29901 -10615.594 0 175.33358 0.00044763374 0.00043955222 + 13990 -6251.2557 -6254.7703 3.5145792 3729.4358 634.16459 -10618.371 0 168.43835 0.0007077503 0.00069897587 + 14000 -6251.475 -6254.7926 3.3175832 3729.9202 636.62664 -10621.339 0 158.9972 0.00090858269 0.0009000131 + 14010 -6251.6473 -6254.7324 3.085108 3731.3507 638.40827 -10624.491 0 147.85568 0.0010222309 0.0010149305 + 14020 -6251.7707 -6254.6374 2.8667389 3733.5831 639.40493 -10627.626 0 137.39022 0.001047092 0.0010412286 + 14030 -6251.8421 -6254.5615 2.7193939 3736.1463 639.67003 -10630.378 0 130.32861 0.00100353 0.00099800031 + 14040 -6251.8633 -6254.5372 2.6739378 3738.4101 639.36356 -10632.311 0 128.1501 0.00092332459 0.00091642625 + 14050 -6251.8436 -6254.5607 2.7171313 3739.7867 638.68067 -10633.028 0 130.22018 0.00083733026 0.00082799432 + 14060 -6251.797 -6254.6003 2.8032935 3739.894 637.7838 -10632.278 0 134.34956 0.00076600768 0.00075459563 + 14070 -6251.7335 -6254.6207 2.8871746 3738.6367 636.76065 -10630.018 0 138.3696 0.00071558017 0.00070355848 + 14080 -6251.6526 -6254.6043 2.9516876 3736.2044 635.6222 -10626.431 0 141.46143 0.00067981324 0.00066857308 + 14090 -6251.5453 -6254.5542 3.0088851 3733.0077 634.33871 -10621.901 0 144.20266 0.00064548261 0.00063534285 + 14100 -6251.4026 -6254.4801 3.0775353 3729.5818 632.89529 -10616.957 0 147.49276 0.00059916825 0.00058943021 + 14110 -6251.2241 -6254.3867 3.162533 3726.4755 631.33994 -10612.202 0 151.56633 0.00053346417 0.00052338407 + 14120 -6251.0186 -6254.2767 3.2580485 3724.1408 629.80151 -10608.219 0 156.14397 0.00045106368 0.00044071459 + 14130 -6250.795 -6254.1645 3.369483 3722.8506 628.47073 -10605.486 0 161.48453 0.00036530305 0.00035542313 + 14140 -6250.5544 -6254.0798 3.5253511 3722.6699 627.55486 -10604.305 0 168.9546 0.00029637257 0.00028738378 + 14150 -6250.2919 -6254.0488 3.7569273 3723.492 627.2261 -10604.767 0 180.05304 0.00026416003 0.00025548289 + 14160 -6250.0074 -6254.0663 4.0589294 3725.1115 627.58152 -10606.759 0 194.52667 0.00028086116 0.00027136048 + 14170 -6249.7142 -6254.0857 4.3714589 3727.2899 628.62339 -10609.999 0 209.50484 0.00034715255 0.00033626827 + 14180 -6249.4341 -6254.0417 4.6075666 3729.7843 630.26104 -10614.087 0 220.82044 0.00045367213 0.00044198577 + 14190 -6249.1833 -6253.8886 4.7053419 3732.3495 632.33081 -10618.569 0 225.50639 0.00058609155 0.00057473512 + 14200 -6248.9636 -6253.6237 4.6601577 3734.7464 634.62757 -10622.998 0 223.3409 0.00073017742 0.00071980317 + 14210 -6248.7667 -6253.2852 4.5184417 3736.7692 636.93769 -10626.992 0 216.54908 0.00087440621 0.00086477978 + 14220 -6248.5826 -6252.9359 4.3533204 3738.2787 639.06316 -10630.278 0 208.63554 0.0010101439 0.001000518 + 14230 -6248.4029 -6252.649 4.2460866 3739.2233 640.83167 -10632.704 0 203.49629 0.0011304884 0.0011201063 + 14240 -6248.2205 -6252.4927 4.2721576 3739.6412 642.09578 -10634.23 0 204.74576 0.0012284454 0.0012167628 + 14250 -6248.0291 -6252.5089 4.4797804 3739.6421 642.73013 -10634.881 0 214.69621 0.0012949814 0.0012818056 + 14260 -6247.8257 -6252.692 4.8662889 3739.3661 642.63549 -10634.694 0 233.21987 0.001318306 0.0013040342 + 14270 -6247.6118 -6252.9823 5.3705682 3738.921 641.75499 -10633.658 0 257.38776 0.0012860546 0.0012717243 + 14280 -6247.3904 -6253.2824 5.8919667 3738.3193 640.10113 -10631.703 0 282.37611 0.0011905926 0.0011773747 + 14290 -6247.1631 -6253.4906 6.3275795 3737.4491 637.78364 -10628.723 0 303.25311 0.0010352082 0.0010234544 + 14300 -6246.9282 -6253.5359 6.6076916 3736.1046 635.02304 -10624.664 0 316.67766 0.00083755826 0.00082608618 + 14310 -6246.6858 -6253.3952 6.7094551 3734.0809 632.13767 -10619.614 0 321.55474 0.00062782789 0.00061426871 + 14320 -6246.445 -6253.0916 6.6466273 3731.2983 629.50074 -10613.891 0 318.54368 0.00044210182 0.00042449309 + 14330 -6246.225 -6252.6826 6.4575899 3727.9 627.47379 -10608.056 0 309.48394 0.0003139557 0.00029251706 + 14340 -6246.0433 -6252.2546 6.211215 3724.275 626.33152 -10602.861 0 297.67628 0.00026713504 0.00024454525 + 14350 -6245.8996 -6251.9141 6.0144692 3721.0046 626.20045 -10599.119 0 288.24711 0.00031022596 0.0002898653 + 14360 -6245.7715 -6251.7587 5.9871257 3718.7686 627.03359 -10597.561 0 286.93666 0.00043340214 0.00041699379 + 14370 -6245.6289 -6251.8308 6.2019082 3718.2324 628.63082 -10598.694 0 297.23024 0.00060857772 0.00059521961 + 14380 -6245.454 -6252.0862 6.6321748 3719.9081 630.69765 -10602.692 0 317.85103 0.00079507571 0.00078225859 + 14390 -6245.2531 -6252.4027 7.1495437 3723.9859 632.92291 -10609.312 0 342.64625 0.00095103143 0.00093658763 + 14400 -6245.0534 -6252.6295 7.5761457 3730.1774 635.05309 -10617.86 0 363.09141 0.0010472996 0.0010308377 + 14410 -6244.8868 -6252.6497 7.7629315 3737.6483 636.94334 -10627.241 0 372.04324 0.0010784249 0.0010614874 + 14420 -6244.7718 -6252.4295 7.6577425 3745.1115 638.57074 -10636.112 0 367.00199 0.0010657748 0.0010507394 + 14430 -6244.7019 -6252.0354 7.3334641 3751.0936 640.00406 -10643.133 0 351.46075 0.0010505983 0.0010388977 + 14440 -6244.6504 -6251.6073 6.9568994 3754.3193 641.33754 -10647.264 0 333.41365 0.0010782057 0.0010689783 + 14450 -6244.5902 -6251.2937 6.7034917 3754.0977 642.60943 -10648.001 0 321.26894 0.0011780024 0.0011684263 + 14460 -6244.515 -6251.1792 6.6642175 3750.5689 643.73482 -10645.483 0 319.38669 0.0013471175 0.0013345991 + 14470 -6244.4437 -6251.2554 6.8116507 3744.6972 644.4825 -10640.435 0 326.45252 0.0015458295 0.0015303163 + 14480 -6244.4013 -6251.453 7.0516482 3737.9928 644.51666 -10633.962 0 337.95455 0.0017087337 0.0016927709 + 14490 -6244.3945 -6251.7038 7.3093067 3732.0648 643.50468 -10627.273 0 350.30299 0.001767767 0.001753857 + 14500 -6244.4071 -6251.9718 7.5647457 3728.1744 641.26296 -10621.409 0 362.54506 0.0016770305 0.0016647456 + 14510 -6244.4239 -6252.234 7.8101726 3726.9296 637.88491 -10617.049 0 374.30729 0.0014295375 0.001415461 + 14520 -6244.4586 -6252.4464 7.9878054 3728.1777 633.78965 -10614.414 0 382.82045 0.0010615697 0.0010424986 + 14530 -6244.5551 -6252.5474 7.9923173 3731.0846 629.6556 -10613.288 0 383.03669 0.00064560976 0.00062207582 + 14540 -6244.7542 -6252.5078 7.7535859 3734.374 626.25211 -10613.134 0 371.59534 0.00027428252 0.00025077645 + 14550 -6245.0563 -6252.378 7.3217684 3736.7004 624.22892 -10613.307 0 350.90023 3.7324647e-05 1.8596985e-05 + 14560 -6245.4183 -6252.2735 6.8551863 3737.0941 623.94208 -10613.31 0 328.53899 -4.7178383e-06 -1.78915e-05 + 14570 -6245.7923 -6252.2931 6.5007734 3735.3414 625.37288 -10613.007 0 311.55354 0.0001578631 0.00014650277 + 14580 -6246.1652 -6252.4411 6.2758851 3732.1177 628.15154 -10612.71 0 300.77563 0.00047734252 0.0004632292 + 14590 -6246.5575 -6252.628 6.0705011 3728.764 631.66361 -10613.056 0 290.93247 0.00086314927 0.00084496524 + 14600 -6246.9864 -6252.7502 5.7638281 3726.779 635.2075 -10614.737 0 276.23499 0.0012131279 0.0011933513 + 14610 -6247.4362 -6252.7693 5.3331213 3727.2613 638.16879 -10618.199 0 255.59309 0.001447398 0.0014294864 + 14620 -6247.8663 -6252.7259 4.8595238 3730.5422 640.16571 -10623.434 0 232.89565 0.0015302536 0.0015157808 + 14630 -6248.2413 -6252.6945 4.4531614 3736.1164 641.1186 -10629.929 0 213.42048 0.0014739098 0.0014621068 + 14640 -6248.5512 -6252.7333 4.1820773 3742.831 641.21978 -10636.784 0 200.42861 0.0013271331 0.0013164454 + 14650 -6248.8081 -6252.8641 4.0559698 3749.2239 640.82004 -10642.908 0 194.38483 0.0011557664 0.0011454823 + 14660 -6249.029 -6253.0833 4.0542628 3753.9014 640.27838 -10647.263 0 194.30302 0.0010216308 0.0010121722 + 14670 -6249.2224 -6253.3803 4.1578485 3755.8728 639.83122 -10649.084 0 199.26743 0.000964793 0.00095674334 + 14680 -6249.3859 -6253.7391 4.3531365 3754.7777 639.52604 -10648.043 0 208.62673 0.00099323445 0.0009862792 + 14690 -6249.5152 -6254.1244 4.6092075 3750.9588 639.23718 -10644.32 0 220.89908 0.0010827023 0.0010755995 + 14700 -6249.6133 -6254.4709 4.8575727 3745.3534 638.7489 -10638.573 0 232.80214 0.0011869461 0.0011785609 + 14710 -6249.6912 -6254.695 5.0037749 3739.2273 637.8659 -10631.788 0 239.80897 0.0012549689 0.0012453278 + 14720 -6249.7589 -6254.7286 4.9697637 3733.8309 636.50586 -10625.065 0 238.17896 0.0012490006 0.0012393156 + 14730 -6249.8162 -6254.5523 4.7361715 3730.0929 634.74168 -10619.387 0 226.98391 0.0011565466 0.0011481828 + 14740 -6249.8519 -6254.2061 4.3541763 3728.4481 632.78516 -10615.439 0 208.67656 0.00099265563 0.00098595812 + 14750 -6249.852 -6253.7748 3.9227354 3728.8289 630.92749 -10613.531 0 187.99949 0.00079297569 0.00078687894 + 14760 -6249.8088 -6253.3587 3.5498988 3730.7859 629.46464 -10613.609 0 170.13107 0.00060169071 0.00059431482 + 14770 -6249.7241 -6253.0441 3.3200245 3733.6676 628.63448 -10615.346 0 159.1142 0.00045942941 0.00044917807 + 14780 -6249.6052 -6252.8836 3.2783402 3736.7961 628.58022 -10618.26 0 157.11646 0.00039487697 0.00038133078 + 14790 -6249.4568 -6252.8894 3.432547 3739.5973 629.34043 -10621.827 0 164.50691 0.00042138752 0.00040550283 + 14800 -6249.2737 -6253.0376 3.7639372 3741.6776 630.8572 -10625.572 0 180.38899 0.0005377326 0.00052128501 + 14810 -6249.0387 -6253.2776 4.2389029 3742.8586 632.99309 -10629.129 0 203.15201 0.00073098733 0.00071559484 + 14820 -6248.7284 -6253.5427 4.8142982 3743.1832 635.55052 -10632.276 0 230.72818 0.00097952722 0.00096578418 + 14830 -6248.3249 -6253.7596 5.434706 3742.9029 638.29006 -10634.953 0 260.46161 0.0012549371 0.0012421523 + 14840 -6247.8301 -6253.8567 6.0266258 3742.4359 640.94548 -10637.238 0 288.82973 0.0015230787 0.0015098342 + 14850 -6247.2738 -6253.7766 6.5028259 3742.2783 643.23635 -10639.291 0 311.6519 0.0017460858 0.0017313109 + 14860 -6246.7072 -6253.4956 6.7883773 3742.8626 644.88423 -10641.242 0 325.33713 0.0018873772 0.0018711437 + 14870 -6246.1824 -6253.041 6.8585492 3744.3938 645.64289 -10643.078 0 328.70016 0.0019198339 0.0019032325 + 14880 -6245.7321 -6252.4895 6.7573406 3746.7272 645.34834 -10644.565 0 323.84968 0.0018343014 0.001818603 + 14890 -6245.3638 -6251.9415 6.5776757 3749.3475 643.9781 -10645.267 0 315.23913 0.0016445173 0.0016304081 + 14900 -6245.0673 -6251.4869 6.4196646 3751.4681 641.69334 -10644.648 0 307.66635 0.0013863047 0.0013736486 + 14910 -6244.8262 -6251.1816 6.3554364 3752.2305 638.8356 -10642.248 0 304.58817 0.0011110786 0.0010991165 + 14920 -6244.6272 -6251.0397 6.4125278 3750.957 635.86596 -10637.863 0 307.32431 0.00087482379 0.0008626593 + 14930 -6244.4644 -6251.0408 6.5764087 3747.3883 633.25802 -10631.687 0 315.1784 0.00072467282 0.00071187129 + 14940 -6244.3383 -6251.1492 6.810909 3741.83 631.3776 -10624.357 0 326.41698 0.00068650043 0.00067335992 + 14950 -6244.2486 -6251.3336 7.0850616 3735.1562 630.39151 -10616.881 0 339.5559 0.00075737589 0.00074450032 + 14960 -6244.1902 -6251.5754 7.385183 3728.6622 630.23999 -10610.478 0 353.93941 0.00090554519 0.00089299082 + 14970 -6244.156 -6251.8576 7.7016061 3723.7938 630.6831 -10606.334 0 369.10418 0.0010784944 0.0010652692 + 14980 -6244.1442 -6252.1463 8.0020171 3721.8049 631.40334 -10605.354 0 383.50156 0.0012174997 0.0012020082 + 14990 -6244.1652 -6252.3814 8.2161731 3723.4135 632.12581 -10607.921 0 393.76511 0.0012753395 0.0012566549 + 15000 -6244.2374 -6252.4904 8.2530545 3728.5457 632.71326 -10613.749 0 395.53268 0.001232586 0.0012116456 + 15010 -6244.3726 -6252.4254 8.0527468 3736.2566 633.20393 -10621.886 0 385.93281 0.00110717 0.0010866631 + 15020 -6244.5595 -6252.203 7.6435353 3744.8949 633.78386 -10630.882 0 366.3211 0.00095238985 0.00093485043 + 15030 -6244.7611 -6251.9126 7.1514835 3752.5098 634.70838 -10639.131 0 342.73922 0.000841379 0.00082675878 + 15040 -6244.9379 -6251.6723 6.7343546 3757.4042 636.19842 -10645.275 0 322.74806 0.00084151875 0.0008266491 + 15050 -6245.0767 -6251.5596 6.482867 3758.6429 638.33532 -10648.538 0 310.69536 0.00098797612 0.0009690108 + 15060 -6245.2009 -6251.5774 6.3765071 3756.3157 640.97743 -10648.87 0 305.598 0.0012674914 0.001243416 + 15070 -6245.3478 -6251.6819 6.3341153 3751.458 643.73146 -10646.871 0 303.56635 0.0016195831 0.0015934705 + 15080 -6245.5363 -6251.8402 6.3038513 3745.6848 646.01284 -10643.538 0 302.11592 0.0019544688 0.0019312145 + 15090 -6245.7532 -6252.0549 6.3017317 3740.6966 647.20128 -10639.953 0 302.01434 0.0021801012 0.0021627312 + 15100 -6245.9685 -6252.3383 6.3697999 3737.8156 646.84557 -10636.999 0 305.27655 0.0022286901 0.0022164359 + 15110 -6246.1626 -6252.6691 6.5065292 3737.6621 644.83526 -10635.166 0 311.82939 0.0020755474 0.0020649812 + 15120 -6246.3405 -6252.9799 6.6393986 3740.0255 641.46496 -10634.47 0 318.19723 0.0017465175 0.0017344181 + 15130 -6246.5244 -6253.1878 6.6634766 3743.9491 637.36319 -10634.5 0 319.35119 0.0013124585 0.0012979831 + 15140 -6246.7318 -6253.2438 6.5120396 3748.0111 633.31607 -10634.571 0 312.09348 0.00087127719 0.00085592524 + 15150 -6246.9606 -6253.1602 6.1996301 3750.7416 630.05668 -10633.958 0 297.12106 0.00052150596 0.00050734754 + 15160 -6247.1919 -6252.9959 5.8039963 3751.0695 628.09447 -10632.16 0 278.16007 0.00033536984 0.00032336102 + 15170 -6247.4059 -6252.816 5.4101751 3748.6616 627.62693 -10629.105 0 259.28595 0.00034045448 0.0003301716 + 15180 -6247.5925 -6252.6627 5.070238 3744.0363 628.53598 -10625.235 0 242.99425 0.0005156413 0.00050610436 + 15190 -6247.7509 -6252.5559 4.8049917 3738.4144 630.45003 -10621.42 0 230.28216 0.00080099266 0.00079135882 + 15200 -6247.8826 -6252.5089 4.6262757 3733.3644 632.8511 -10618.724 0 221.71709 0.0011166922 0.0011062768 + 15210 -6247.9893 -6252.5352 4.545914 3730.3663 635.20724 -10618.109 0 217.86571 0.0013848989 0.0013730501 + 15220 -6248.0758 -6252.6415 4.5656817 3730.414 637.10341 -10620.159 0 218.81308 0.0015493345 0.0015357287 + 15230 -6248.1509 -6252.8208 4.6698701 3733.7503 638.33566 -10624.907 0 223.80638 0.0015885459 0.0015736021 + 15240 -6248.2216 -6253.0562 4.8346154 3739.7919 638.93778 -10631.786 0 231.7019 0.0015195007 0.0015041745 + 15250 -6248.2875 -6253.3275 5.0400283 3747.2708 639.13085 -10639.729 0 241.54644 0.0013897144 0.00137465 + 15260 -6248.3432 -6253.6073 5.2640826 3754.5665 639.21534 -10647.389 0 252.28437 0.0012597055 0.0012446759 + 15270 -6248.3868 -6253.8515 5.4647385 3760.1288 639.44696 -10653.427 0 261.90093 0.0011820486 0.0011663889 + 15280 -6248.4239 -6254.0043 5.5803867 3762.8582 639.9411 -10656.804 0 267.44344 0.0011851984 0.0011686992 + 15290 -6248.4614 -6254.0209 5.5594654 3762.3362 640.63668 -10656.994 0 266.44078 0.001267406 0.0012505749 + 15300 -6248.4991 -6253.8908 5.3917261 3758.8675 641.32588 -10654.084 0 258.40177 0.0014006665 0.0013841747 + 15310 -6248.5294 -6253.6408 5.1114311 3753.3549 641.7311 -10648.727 0 244.96846 0.0015411274 0.0015252664 + 15320 -6248.5434 -6253.321 4.7775854 3747.0497 641.59649 -10641.967 0 228.9687 0.0016421692 0.0016268961 + 15330 -6248.5348 -6252.991 4.456257 3741.2423 640.76455 -10634.998 0 213.56884 0.0016671831 0.0016524233 + 15340 -6248.4977 -6252.7113 4.2136693 3736.9759 639.22094 -10628.908 0 201.94267 0.0015991304 0.0015848154 + 15350 -6248.425 -6252.5334 4.1084501 3734.8563 637.10293 -10624.493 0 196.89998 0.0014442147 0.0014301392 + 15360 -6248.3091 -6252.485 4.1759116 3734.9912 634.67342 -10622.15 0 200.13312 0.0012288372 0.00121479 + 15370 -6248.1437 -6252.5594 4.4156665 3737.0377 632.26828 -10621.865 0 211.62352 0.00099178146 0.00097798914 + 15380 -6247.9228 -6252.7214 4.7986138 3740.3184 630.23106 -10623.271 0 229.9765 0.00077523862 0.00076250215 + 15390 -6247.6363 -6252.9266 5.2903828 3743.9738 628.85369 -10625.754 0 253.54483 0.000617551 0.00060652892 + 15400 -6247.2701 -6253.1357 5.8655521 3747.1415 628.33906 -10628.616 0 281.11017 0.00054829627 0.00053836729 + 15410 -6246.8171 -6253.3085 6.4913813 3749.1452 628.79055 -10631.244 0 311.10342 0.00058476124 0.00057374669 + 15420 -6246.2936 -6253.3888 7.0951691 3749.6535 630.218 -10633.26 0 340.04031 0.00072922552 0.00071476204 + 15430 -6245.7462 -6253.3053 7.5590301 3748.7549 632.54165 -10634.602 0 362.27113 0.00096779062 0.00094949406 + 15440 -6245.2348 -6253.0055 7.7707031 3746.9202 635.58131 -10635.507 0 372.41569 0.0012717675 0.0012521464 + 15450 -6244.7989 -6252.5029 7.7039828 3744.8694 639.03681 -10636.409 0 369.21808 0.0016013277 0.0015841512 + 15460 -6244.435 -6251.8948 7.45982 3743.3943 642.4847 -10637.774 0 357.51643 0.0019099317 0.0018970655 + 15470 -6244.1064 -6251.3267 7.2203091 3743.1835 645.41974 -10639.93 0 346.03772 0.002148923 0.0021383466 + 15480 -6243.7771 -6250.9187 7.1416845 3744.6679 647.35128 -10642.938 0 342.26959 0.0022739018 0.0022608376 + 15490 -6243.4414 -6250.7087 7.2673288 3747.881 647.93299 -10646.523 0 348.29117 0.0022548911 0.0022352942 + 15500 -6243.1267 -6250.651 7.5243031 3752.3495 647.07783 -10650.078 0 360.60682 0.0020890573 0.0020626558 + 15510 -6242.8695 -6250.6674 7.7978653 3757.0782 645.00596 -10652.752 0 373.71746 0.0018099967 0.0017804388 + 15520 -6242.6868 -6250.7063 8.01945 3760.7046 642.19556 -10653.606 0 384.33704 0.0014857397 0.0014578011 + 15530 -6242.5669 -6250.7652 8.1983267 3761.8549 639.24843 -10651.869 0 392.90981 0.0012016148 0.0011778474 + 15540 -6242.4866 -6250.8654 8.3788094 3759.6193 636.72014 -10647.205 0 401.55956 0.0010325224 0.00101212 + 15550 -6242.4378 -6251.0115 8.5737564 3753.9609 634.97445 -10639.947 0 410.90251 0.0010163271 0.00099682253 + 15560 -6242.4347 -6251.1793 8.7446004 3745.8596 634.10306 -10631.142 0 419.09032 0.0011403371 0.0011200249 + 15570 -6242.499 -6251.339 8.84006 3737.1049 633.92741 -10622.371 0 423.66528 0.0013459623 0.0013246361 + 15580 -6242.642 -6251.4788 8.8367471 3729.8126 634.08031 -10615.372 0 423.50651 0.0015483639 0.0015263623 + 15590 -6242.865 -6251.5995 8.7344982 3725.8352 634.14741 -10611.582 0 418.60616 0.0016637872 0.001641264 + 15600 -6243.1681 -6251.6968 8.5286431 3726.2314 633.82724 -10611.755 0 408.74043 0.0016370441 0.0016144394 + 15610 -6243.5511 -6251.761 8.2098966 3730.9343 633.0567 -10615.752 0 393.46431 0.0014617767 0.0014403496 + 15620 -6244.0012 -6251.7965 7.7952843 3738.7298 632.05654 -10622.583 0 373.59377 0.001186216 0.0011672981 + 15630 -6244.4888 -6251.8308 7.3420307 3747.5949 631.27626 -10630.702 0 351.87131 0.00090005349 0.0008836134 + 15640 -6244.9808 -6251.8954 6.914581 3755.311 631.24692 -10638.453 0 331.38552 0.00070509206 0.00068948736 + 15650 -6245.4588 -6251.9982 6.5394045 3760.1308 632.38146 -10644.511 0 313.40495 0.00068016598 0.00066366112 + 15660 -6245.9208 -6252.1227 6.2019243 3761.2532 634.78955 -10648.165 0 297.23101 0.00085389168 0.00083633697 + 15670 -6246.3673 -6252.2545 5.8872191 3758.9642 638.18482 -10649.404 0 282.14857 0.0011949804 0.0011778618 + 15680 -6246.7892 -6252.405 5.6158821 3754.4529 641.93366 -10648.792 0 269.14458 0.00162211 0.0016069994 + 15690 -6247.1687 -6252.6061 5.4373767 3749.4014 645.233 -10647.24 0 260.5896 0.0020282696 0.0020152052 + 15700 -6247.4913 -6252.878 5.3866406 3745.484 647.34743 -10645.709 0 258.15804 0.002310827 0.0022980722 + 15710 -6247.7572 -6253.1959 5.4387188 3743.9059 647.81825 -10644.92 0 260.65392 0.002398737 0.0023842179 + 15720 -6247.9832 -6253.4833 5.5000382 3745.0861 646.57796 -10645.147 0 263.59269 0.0022706665 0.0022540387 + 15730 -6248.1916 -6253.6469 5.4552361 3748.5498 643.94401 -10646.141 0 261.44552 0.0019602616 0.0019437927 + 15740 -6248.3901 -6253.6369 5.2468338 3753.0638 640.50693 -10647.208 0 251.45771 0.0015469049 0.0015339744 + 15750 -6248.5607 -6253.4869 4.9262059 3757.0026 636.96039 -10647.45 0 236.09143 0.0011333186 0.0011253688 + 15760 -6248.6709 -6253.2944 4.6234662 3758.864 633.93077 -10646.089 0 221.58244 0.00081576357 0.00081036066 + 15770 -6248.7021 -6253.1537 4.4516179 3757.7711 631.84985 -10642.775 0 213.34651 0.00065649897 0.00064866328 + 15780 -6248.6697 -6253.0961 4.4263163 3753.7673 630.88912 -10637.752 0 212.13391 0.00066847214 0.00065454283 + 15790 -6248.6166 -6253.0891 4.4725068 3747.7853 630.95794 -10631.832 0 214.34762 0.00081746625 0.00079822459 + 15800 -6248.5819 -6253.0892 4.5072671 3741.321 631.76198 -10626.172 0 216.01353 0.0010392894 0.0010195597 + 15810 -6248.5732 -6253.0927 4.5195037 3735.9737 632.91079 -10621.977 0 216.59998 0.0012635458 0.0012485617 + 15820 -6248.5622 -6253.1404 4.5782335 3733.033 634.0465 -10620.22 0 219.41464 0.0014344167 0.0014258533 + 15830 -6248.5067 -6253.2745 4.7677895 3733.2195 634.95131 -10621.445 0 228.49922 0.0015223272 0.0015169456 + 15840 -6248.3835 -6253.4853 5.1017606 3736.5937 635.59635 -10625.675 0 244.50499 0.0015254388 0.0015173114 + 15850 -6248.2098 -6253.688 5.4782329 3742.5915 636.1173 -10632.397 0 262.54766 0.0014639218 0.0014488384 + 15860 -6248.0374 -6253.7558 5.7184151 3750.1376 636.73102 -10640.624 0 274.05854 0.001371599 0.0013506195 + 15870 -6247.9175 -6253.6002 5.682694 3757.8158 637.62857 -10649.045 0 272.34658 0.0012882317 0.0012673868 + 15880 -6247.8583 -6253.2474 5.3890448 3764.1097 638.88793 -10656.245 0 258.27327 0.0012523015 0.001237993 + 15890 -6247.8149 -6252.8423 5.0273229 3767.7265 640.43862 -10661.007 0 240.93752 0.0012920482 0.001285577 + 15900 -6247.7245 -6252.5591 4.8345589 3767.9484 642.08389 -10662.591 0 231.69919 0.0014149686 0.0014110743 + 15910 -6247.5586 -6252.4841 4.9255082 3764.8701 643.5581 -10660.912 0 236.05799 0.0016009233 0.0015919788 + 15920 -6247.3459 -6252.5688 5.2228969 3759.3813 644.58917 -10656.539 0 250.31052 0.0018052953 0.0017875927 + 15930 -6247.1461 -6252.6881 5.5419984 3752.8703 644.9492 -10650.508 0 265.60366 0.0019733145 0.0019499121 + 15940 -6246.9991 -6252.7436 5.7445238 3746.7872 644.4928 -10644.024 0 275.30981 0.0020588146 0.0020366519 + 15950 -6246.8955 -6252.7206 5.8250841 3742.2654 643.18566 -10638.172 0 279.17072 0.0020375511 0.0020216949 + 15960 -6246.791 -6252.6628 5.8717663 3739.9281 641.11947 -10633.71 0 281.40799 0.0019098242 0.0018998331 + 15970 -6246.6466 -6252.6079 5.9613196 3739.8758 638.50565 -10630.989 0 285.69988 0.0016950217 0.0016859642 + 15980 -6246.4591 -6252.5505 6.0914015 3741.7715 635.64712 -10629.969 0 291.93414 0.0014245389 0.0014111383 + 15990 -6246.2599 -6252.4564 6.1964382 3744.9509 632.89534 -10630.303 0 296.96808 0.0011371429 0.0011175757 + 16000 -6246.0901 -6252.3064 6.2163173 3748.5395 630.60345 -10631.449 0 297.92081 0.00087631739 0.00085319975 + 16010 -6245.9719 -6252.1298 6.1579688 3751.5912 629.08264 -10632.804 0 295.12442 0.00068694256 0.00066527635 + 16020 -6245.8944 -6252.0028 6.1084481 3753.2694 628.56448 -10633.837 0 292.75111 0.00060930939 0.00059293224 + 16030 -6245.8213 -6252.0109 6.1895471 3753.0639 629.16868 -10634.243 0 296.63783 0.00067013764 0.00065901102 + 16040 -6245.7175 -6252.1919 6.4744163 3750.9941 630.87611 -10634.062 0 310.29036 0.00087227801 0.00086255988 + 16050 -6245.5777 -6252.4953 6.9176096 3747.7005 633.50942 -10633.705 0 331.53067 0.0011872899 0.0011743314 + 16060 -6245.4346 -6252.7924 7.3578327 3744.325 636.73083 -10633.848 0 352.62863 0.0015564866 0.0015385038 + 16070 -6245.3361 -6252.9425 7.6063896 3742.1728 640.07305 -10635.188 0 364.54087 0.0019034998 0.0018828822 + 16080 -6245.3085 -6252.8701 7.5616176 3742.2744 643.01593 -10638.16 0 362.39514 0.0021552302 0.0021363836 + 16090 -6245.3362 -6252.601 7.2648228 3745.0299 645.10053 -10642.731 0 348.17107 0.0022628591 0.002248423 + 16100 -6245.3754 -6252.2369 6.8614664 3750.0693 646.04689 -10648.353 0 328.83997 0.0022146297 0.002203189 + 16110 -6245.3884 -6251.8919 6.5034529 3756.3546 645.83104 -10654.077 0 311.68195 0.0020368489 0.0020239864 + 16120 -6245.3708 -6251.6374 6.266628 3762.4524 644.68852 -10658.778 0 300.33198 0.0017849957 0.0017668632 + 16130 -6245.3503 -6251.4899 6.1396394 3766.8759 643.0389 -10661.405 0 294.24597 0.00152931 0.0015058439 + 16140 -6245.3599 -6251.4405 6.0805981 3768.4176 641.35471 -10661.213 0 291.41638 0.0013383223 0.0013134404 + 16150 -6245.409 -6251.49 6.0809976 3766.4361 640.0173 -10657.943 0 291.43552 0.0012620588 0.0012406774 + 16160 -6245.4767 -6251.65 6.173338 3761.0631 639.20642 -10651.92 0 295.861 0.0013170546 0.0013015057 + 16170 -6245.532 -6251.9113 6.3792644 3753.27 638.85694 -10644.038 0 305.73014 0.0014778671 0.0014666643 + 16180 -6245.5604 -6252.22 6.6595136 3744.7197 638.6947 -10635.634 0 319.16126 0.0016809645 0.0016704821 + 16190 -6245.5725 -6252.4951 6.9226416 3737.3826 638.34142 -10628.219 0 331.77183 0.0018431653 0.0018302507 + 16200 -6245.5925 -6252.6743 7.0817808 3733.0059 637.46121 -10623.141 0 339.39867 0.0018894838 0.0018728875 + 16210 -6245.6441 -6252.7446 7.1005643 3732.6056 635.90633 -10621.257 0 340.29888 0.001779858 0.0017601703 + 16220 -6245.7449 -6252.738 6.9931693 3736.157 633.81212 -10622.707 0 335.15191 0.0015248575 0.0015038796 + 16230 -6245.9077 -6252.7043 6.7965608 3742.5824 631.59972 -10626.886 0 325.72933 0.0011854867 0.0011655622 + 16240 -6246.1408 -6252.6885 6.5476284 3750.0487 629.87331 -10632.611 0 313.79909 0.00085722249 0.00084032668 + 16250 -6246.4465 -6252.7183 6.2718244 3756.5039 629.23656 -10638.459 0 300.58102 0.00064184831 0.00062850487 + 16260 -6246.8219 -6252.7946 5.9727016 3760.3075 630.08521 -10643.187 0 286.24537 0.00061413967 0.00060301339 + 16270 -6247.2603 -6252.887 5.6267712 3760.7483 632.44853 -10646.084 0 269.66645 0.00079454689 0.00078340635 + 16280 -6247.7461 -6252.9488 5.2027262 3758.2402 635.94446 -10647.134 0 249.34383 0.0011400833 0.0011274939 + 16290 -6248.2485 -6252.9505 4.7019808 3754.104 639.87429 -10646.929 0 225.3453 0.0015590192 0.0015452 + 16300 -6248.7259 -6252.9087 4.1828049 3750.0377 643.42335 -10646.37 0 200.46348 0.0019426274 0.0019287862 + 16310 -6249.1435 -6252.8829 3.7393333 3747.5257 645.88839 -10646.297 0 179.20983 0.0021990216 0.0021861282 + 16320 -6249.4887 -6252.9416 3.4529125 3747.4109 646.85236 -10647.205 0 165.48294 0.0022766253 0.0022649131 + 16330 -6249.7693 -6253.1254 3.3561081 3749.7169 646.26346 -10649.106 0 160.84353 0.0021730279 0.0021623902 + 16340 -6250.0016 -6253.4327 3.4310721 3753.7074 644.41235 -10651.552 0 164.43623 0.0019306421 0.0019210755 + 16350 -6250.1963 -6253.8289 3.6325561 3758.1316 641.82506 -10653.785 0 174.09247 0.0016220758 0.0016134594 + 16360 -6250.3539 -6254.2617 3.9077652 3761.5967 639.10702 -10654.965 0 187.28203 0.0013286886 0.0013201916 + 16370 -6250.4715 -6254.666 4.1945391 3762.9773 636.78401 -10654.427 0 201.02585 0.0011174962 0.0011076078 + 16380 -6250.5533 -6254.9639 4.4106189 3761.7421 635.18399 -10651.89 0 211.38161 0.0010233858 0.0010110131 + 16390 -6250.6132 -6255.0796 4.4664033 3758.0889 634.38779 -10647.556 0 214.05511 0.0010428931 0.001028596 + 16400 -6250.6636 -6254.9747 4.3111257 3752.8493 634.25501 -10642.079 0 206.61333 0.0011412962 0.0011271799 + 16410 -6250.7026 -6254.6791 3.9765461 3747.2213 634.51048 -10636.411 0 190.5784 0.0012686967 0.001256708 + 16420 -6250.7138 -6254.284 3.570183 3742.4486 634.85945 -10631.592 0 171.1032 0.0013774042 0.0013675834 + 16430 -6250.6817 -6253.8963 3.214661 3739.542 635.09149 -10628.53 0 154.06459 0.0014345427 0.001425034 + 16440 -6250.6064 -6253.5895 2.9831822 3739.0864 635.13912 -10627.815 0 142.97083 0.001428069 0.0014169919 + 16450 -6250.5035 -6253.3877 2.8842276 3741.1362 635.07658 -10629.601 0 138.22837 0.00136729 0.0013547092 + 16460 -6250.3878 -6253.2892 2.9013834 3745.2114 635.0683 -10633.569 0 139.05057 0.0012790692 0.0012671351 + 16470 -6250.2537 -6253.2989 3.0451962 3750.4088 635.29366 -10639.001 0 145.94289 0.0012000439 0.0011909937 + 16480 -6250.07 -6253.4342 3.3641406 3755.6289 635.8785 -10644.942 0 161.22849 0.0011655334 0.0011592021 + 16490 -6249.7968 -6253.693 3.8962545 3759.8609 636.85507 -10650.409 0 186.73038 0.0011977346 0.0011908848 + 16500 -6249.4165 -6254.0123 4.5958603 3762.4289 638.15686 -10654.598 0 220.25941 0.0012977034 0.0012861981 + 16510 -6248.9594 -6254.2616 5.3022083 3763.1073 639.64175 -10657.011 0 254.11157 0.0014454475 0.0014278895 + 16520 -6248.4959 -6254.2949 5.7989941 3762.069 641.13004 -10657.494 0 277.92034 0.0016091328 0.0015889012 + 16530 -6248.0923 -6254.0362 5.9438858 3759.7253 642.44311 -10656.205 0 284.86436 0.0017589048 0.0017422495 + 16540 -6247.7646 -6253.5366 5.7720443 3756.5682 643.43054 -10653.535 0 276.62875 0.0018768355 0.0018679209 + 16550 -6247.4726 -6252.9506 5.4779682 3753.1097 643.97996 -10650.04 0 262.53497 0.0019566355 0.0019535661 + 16560 -6247.164 -6252.4438 5.2798332 3749.9048 644.01232 -10646.361 0 253.03923 0.0019948861 0.0019904609 + 16570 -6246.8238 -6252.1012 5.2773882 3747.5538 643.47392 -10643.129 0 252.92206 0.0019827063 0.0019696854 + 16580 -6246.488 -6251.905 5.4170074 3746.5836 642.3389 -10640.827 0 259.61339 0.0019061819 0.0018828736 + 16590 -6246.2118 -6251.7897 5.5778934 3747.2261 640.63078 -10639.647 0 267.32395 0.0017563628 0.0017280618 + 16600 -6246.0221 -6251.7169 5.6948061 3749.2243 638.4569 -10639.398 0 272.92706 0.0015419632 0.0015171899 + 16610 -6245.8934 -6251.7115 5.8181196 3751.8162 636.03527 -10639.563 0 278.83694 0.0012957821 0.0012801967 + 16620 -6245.7625 -6251.835 6.0725531 3753.9522 633.69049 -10639.478 0 291.03082 0.0010696822 0.0010619976 + 16630 -6245.5722 -6252.1212 6.5490553 3754.6755 631.8072 -10638.604 0 313.86748 0.00091926364 0.00091193257 + 16640 -6245.3147 -6252.5199 7.2052002 3753.5037 630.74771 -10636.771 0 345.31362 0.00088455576 0.00086886934 + 16650 -6245.0453 -6252.8929 7.8476374 3750.6387 630.75403 -10634.286 0 376.10282 0.00097520429 0.00094750487 + 16660 -6244.851 -6253.0772 8.2261927 3746.905 631.86263 -10631.845 0 394.24531 0.0011668971 0.0011315001 + 16670 -6244.7892 -6252.9821 8.1928871 3743.4477 633.86473 -10630.295 0 392.64912 0.001410394 0.0013766157 + 16680 -6244.842 -6252.6536 7.8116079 3741.34 636.34034 -10630.334 0 374.37608 0.0016479399 0.0016229473 + 16690 -6244.9294 -6252.2433 7.3139646 3741.2858 638.77219 -10632.301 0 350.52622 0.001828647 0.0018118205 + 16700 -6244.9772 -6251.8932 6.9159473 3743.5041 640.70665 -10636.104 0 331.451 0.00191785 0.0019019163 + 16710 -6244.9778 -6251.6321 6.6542761 3747.7293 641.89493 -10641.256 0 318.91025 0.0019023911 0.0018806902 + 16720 -6244.9856 -6251.3928 6.4072225 3753.2238 642.34944 -10646.966 0 307.07005 0.0017958607 0.0017688479 + 16730 -6245.0517 -6251.1349 6.0832561 3758.8193 642.29372 -10652.248 0 291.54376 0.001641443 0.0016159446 + 16740 -6245.1667 -6250.9434 5.7766614 3763.1191 642.03915 -10656.102 0 276.85003 0.0015037217 0.00148585 + 16750 -6245.2691 -6250.9913 5.7222333 3764.9154 641.84952 -10657.756 0 274.24153 0.001445502 0.0014344854 + 16760 -6245.305 -6251.398 6.0930226 3763.6628 641.84466 -10656.906 0 292.01183 0.0014988468 0.0014876225 + 16770 -6245.2817 -6252.1139 6.832218 3759.7443 641.96707 -10653.825 0 327.43822 0.0016473107 0.0016288649 + 16780 -6245.2691 -6252.9293 7.6602034 3754.3572 642.01323 -10649.3 0 367.11993 0.0018308578 0.0018043 + 16790 -6245.3517 -6253.591 8.2392842 3749.0664 641.7162 -10644.374 0 394.87273 0.0019712408 0.0019424761 + 16800 -6245.5692 -6253.9312 8.3619923 3745.2415 640.85337 -10640.026 0 400.75359 0.002004109 0.0019809529 + 16810 -6245.892 -6253.9221 8.0300522 3743.6281 639.34345 -10636.894 0 384.84516 0.0019020642 0.001888169 + 16820 -6246.2501 -6253.6418 7.3917344 3744.2088 637.30048 -10635.151 0 354.25339 0.0016805391 0.0016730195 + 16830 -6246.5836 -6253.2013 6.6177224 3746.3442 635.02719 -10634.573 0 317.15839 0.0013888708 0.0013809956 + 16840 -6246.8737 -6252.6972 5.8235304 3749.0701 632.94799 -10634.715 0 279.09625 0.0010941677 0.0010802969 + 16850 -6247.1346 -6252.2092 5.0745408 3751.4082 631.49916 -10635.117 0 243.20047 0.00086395895 0.00084277489 + 16860 -6247.3897 -6251.8151 4.4254302 3752.6149 631.00914 -10635.439 0 212.09145 0.00075038788 0.00072479088 + 16870 -6247.6534 -6251.5898 3.9363827 3752.3463 631.60686 -10635.543 0 188.65355 0.00077812846 0.00075297585 + 16880 -6247.9279 -6251.5873 3.6593731 3750.7276 633.18497 -10635.5 0 175.37769 0.00093888491 0.00091849209 + 16890 -6248.2052 -6251.828 3.6227549 3748.3115 635.4248 -10635.564 0 173.62274 0.0011941965 0.0011805478 + 16900 -6248.4699 -6252.298 3.8281833 3745.9327 637.87279 -10636.104 0 183.46802 0.0014853532 0.0014771824 + 16910 -6248.7072 -6252.952 4.2448115 3744.4927 640.04859 -10637.493 0 203.43519 0.0017470508 0.0017401469 + 16920 -6248.9175 -6253.7057 4.7882111 3744.7245 641.56039 -10639.991 0 229.47794 0.0019215899 0.0019108385 + 16930 -6249.1261 -6254.4335 5.3073947 3746.975 642.19848 -10643.607 0 254.36013 0.0019719294 0.0019545214 + 16940 -6249.3721 -6254.9941 5.6220218 3751.0405 641.97938 -10648.014 0 269.43883 0.0018921229 0.0018697036 + 16950 -6249.678 -6255.2872 5.6091984 3756.1195 641.12481 -10652.532 0 268.82426 0.0017115966 0.0016892113 + 16960 -6250.0257 -6255.2983 5.2726063 3760.9617 639.98278 -10656.243 0 252.69288 0.0014884985 0.0014708657 + 16970 -6250.3642 -6255.0913 4.7271214 3764.2213 638.91775 -10658.23 0 226.55018 0.0012911938 0.0012794768 + 16980 -6250.6443 -6254.7584 4.1140281 3764.8976 638.20405 -10657.86 0 197.16731 0.0011745353 0.0011662348 + 16990 -6250.8464 -6254.3732 3.5268813 3762.671 637.95221 -10654.996 0 169.02794 0.0011617669 0.0011532746 + 17000 -6250.9815 -6253.9832 3.0016987 3757.9998 638.08696 -10650.07 0 143.85824 0.0012395985 0.0012288625 + 17010 -6251.0745 -6253.6289 2.5544185 3751.9645 638.38281 -10643.976 0 122.42207 0.001366581 0.001353971 + 17020 -6251.1457 -6253.3629 2.217237 3745.9477 638.54585 -10637.856 0 106.26244 0.0014894134 0.0014767596 + 17030 -6251.2016 -6253.2476 2.0459922 3741.2662 638.3163 -10632.83 0 98.055425 0.0015604817 0.0015494045 + 17040 -6251.235 -6253.3354 2.1004053 3738.862 637.55959 -10629.757 0 100.66321 0.0015513436 0.0015420117 + 17050 -6251.2301 -6253.6413 2.411232 3739.1207 636.31891 -10629.081 0 115.55977 0.0014591777 0.0014501629 + 17060 -6251.1704 -6254.1208 2.9504903 3741.837 634.81377 -10630.772 0 141.40405 0.0013056197 0.0012949322 + 17070 -6251.0442 -6254.6671 3.6229532 3746.3063 633.38519 -10634.359 0 173.63225 0.0011295381 0.0011162281 + 17080 -6250.844 -6255.1364 4.2924513 3751.496 632.40344 -10639.036 0 205.71835 0.00097662327 0.00096178981 + 17090 -6250.5594 -6255.3955 4.836044 3756.2552 632.16756 -10643.818 0 231.77036 0.00088872091 0.00087497006 + 17100 -6250.1731 -6255.3671 5.1939791 3759.5412 632.82846 -10647.737 0 248.92462 0.0008948877 0.00088439648 + 17110 -6249.6675 -6255.0483 5.3808417 3760.6411 634.35652 -10650.046 0 257.88013 0.0010050806 0.00099761404 + 17120 -6249.0425 -6254.495 5.4525195 3759.3499 636.55445 -10650.399 0 261.31533 0.0012069907 0.0011994022 + 17130 -6248.3327 -6253.7905 5.4578466 3756.0517 639.10108 -10648.943 0 261.57063 0.0014668337 0.0014546347 + 17140 -6247.6085 -6253.0199 5.4114056 3751.6557 641.61152 -10646.287 0 259.34492 0.0017352458 0.0017155229 + 17150 -6246.9545 -6252.2589 5.3043302 3747.3652 643.70551 -10643.33 0 254.21327 0.0019586341 0.0019325678 + 17160 -6246.4338 -6251.5785 5.1446609 3744.3244 645.07484 -10640.978 0 246.56102 0.0020936368 0.0020666115 + 17170 -6246.0556 -6251.0565 5.0008755 3743.2626 645.53372 -10639.853 0 239.67001 0.0021192763 0.0020977412 + 17180 -6245.7687 -6250.7795 5.0107331 3744.2906 645.03948 -10640.11 0 240.14244 0.0020411132 0.0020278118 + 17190 -6245.4906 -6250.8141 5.3235015 3746.9429 643.68593 -10641.443 0 255.13206 0.0018853229 0.0018765029 + 17200 -6245.1605 -6251.1511 5.9905456 3750.4198 641.68029 -10643.251 0 287.10056 0.0016861859 0.0016736738 + 17210 -6244.784 -6251.6706 6.8865687 3753.8676 639.31001 -10644.848 0 330.04301 0.0014746888 0.0014519217 + 17220 -6244.4301 -6252.1794 7.7492608 3756.5401 636.90123 -10645.621 0 371.38806 0.0012751083 0.0012424061 + 17230 -6244.1803 -6252.5097 8.3293679 3757.8264 634.77442 -10645.111 0 399.19004 0.0011096425 0.0010742226 + 17240 -6244.068 -6252.6051 8.5371611 3757.2624 633.20536 -10643.073 0 409.14866 0.0010036127 0.00097427236 + 17250 -6244.0591 -6252.5304 8.4712867 3754.6353 632.39286 -10639.559 0 405.99159 0.00098286757 0.00096362351 + 17260 -6244.0858 -6252.401 8.3152964 3750.1645 632.42744 -10634.993 0 398.51566 0.0010619185 0.0010494575 + 17270 -6244.1009 -6252.289 8.1881522 3744.6296 633.26066 -10630.179 0 392.4222 0.0012299515 0.0012166 + 17280 -6244.111 -6252.1745 8.063565 3739.2992 634.68865 -10626.162 0 386.45128 0.001445349 0.00142512 + 17290 -6244.1622 -6251.9804 7.8181963 3735.61 636.37247 -10623.963 0 374.69183 0.0016452993 0.001618353 + 17300 -6244.2931 -6251.6629 7.369884 3734.6924 637.9105 -10624.266 0 353.20619 0.0017680947 0.0017401824 + 17310 -6244.4945 -6251.2868 6.7922885 3736.9535 638.95258 -10627.193 0 325.52458 0.0017774942 0.0017548978 + 17320 -6244.7125 -6251.0165 6.3040583 3741.9161 639.31811 -10632.251 0 302.12584 0.0016767822 0.0016609772 + 17330 -6244.8901 -6251.0215 6.1314636 3748.3819 639.06785 -10638.471 0 293.85414 0.0015064033 0.0014929262 + 17340 -6245.0138 -6251.3644 6.3505955 3754.8164 638.49233 -10644.673 0 304.35617 0.001328317 0.0013106825 + 17350 -6245.1253 -6251.9566 6.8313442 3759.7736 638.0114 -10649.742 0 327.39634 0.001205403 0.001180616 + 17360 -6245.2916 -6252.6124 7.3208118 3762.2241 638.01556 -10652.852 0 350.85438 0.0011832143 0.001154241 + 17370 -6245.5566 -6253.1538 7.5972713 3761.7496 638.70658 -10653.61 0 364.10387 0.0012776366 0.0012509263 + 17380 -6245.9097 -6253.4903 7.5806251 3758.6129 640.00025 -10652.103 0 363.30609 0.0014695531 0.0014498356 + 17390 -6246.2971 -6253.626 7.3289852 3753.7054 641.53461 -10648.866 0 351.24609 0.0017073614 0.0016940427 + 17400 -6246.6621 -6253.607 6.9449154 3748.3512 642.78587 -10644.744 0 332.83931 0.001918431 0.0019063887 + 17410 -6246.9821 -6253.4635 6.4813822 3743.9696 643.25071 -10640.684 0 310.6242 0.002029082 0.0020129974 + 17420 -6247.2716 -6253.1964 5.9247598 3741.6597 642.62549 -10637.482 0 283.94773 0.0019888215 0.0019674734 + 17430 -6247.5549 -6252.8152 5.2602603 3741.841 640.91467 -10635.571 0 252.10119 0.0017904625 0.0017675995 + 17440 -6247.8354 -6252.391 4.5556559 3744.1028 638.43074 -10634.925 0 218.33259 0.00147677 0.0014579074 + 17450 -6248.0862 -6252.0678 3.9816522 3747.3545 635.69435 -10635.117 0 190.82312 0.0011286343 0.001116348 + 17460 -6248.2708 -6252.0061 3.7352957 3750.2412 633.28108 -10635.528 0 179.01633 0.0008381807 0.00082977304 + 17470 -6248.3745 -6252.2891 3.9146055 3751.6555 631.67089 -10635.615 0 187.60986 0.00067786494 0.00066741953 + 17480 -6248.4207 -6252.8623 4.441549 3751.1221 631.13881 -10635.123 0 212.86395 0.00067843057 0.0006615743 + 17490 -6248.4596 -6253.5576 5.0980122 3748.9019 631.70414 -10634.164 0 244.32535 0.00082355193 0.00080088988 + 17500 -6248.5341 -6254.1823 5.648189 3745.8167 633.14341 -10633.142 0 270.69291 0.0010606468 0.0010370425 + 17510 -6248.6524 -6254.6043 5.951909 3742.9201 635.06446 -10632.589 0 285.24887 0.0013208241 0.0013014008 + 17520 -6248.7874 -6254.7783 5.990978 3741.1668 637.02395 -10632.969 0 287.12128 0.0015393764 0.0015258312 + 17530 -6248.9029 -6254.718 5.815057 3741.1724 638.65195 -10634.542 0 278.69016 0.0016710803 0.0016611747 + 17540 -6248.9798 -6254.4585 5.4786214 3743.0842 639.74108 -10637.284 0 262.56628 0.0016984346 0.0016884088 + 17550 -6249.0218 -6254.048 5.0261243 3746.5565 640.27187 -10640.876 0 240.88008 0.0016329006 0.0016202687 + 17560 -6249.0423 -6253.56 4.5176605 3750.8309 640.37385 -10644.765 0 216.51164 0.0015093477 0.0014939367 + 17570 -6249.0497 -6253.0974 4.0476629 3754.9186 640.2463 -10648.262 0 193.98672 0.0013745574 0.0013576878 + 17580 -6249.0423 -6252.7698 3.7274181 3757.8481 640.07305 -10650.691 0 178.63879 0.0012727179 0.0012558282 + 17590 -6249.0104 -6252.6538 3.6434563 3758.9102 639.96061 -10651.525 0 174.61487 0.0012326194 0.0012164997 + 17600 -6248.9396 -6252.7624 3.822787 3757.8297 639.91463 -10650.507 0 183.2094 0.0012606901 0.0012455822 + 17610 -6248.8122 -6253.0396 4.227426 3754.8197 639.85294 -10647.712 0 202.60198 0.0013414247 0.0013275015 + 17620 -6248.6048 -6253.3863 4.7815484 3750.5099 639.64246 -10643.539 0 229.15863 0.001443975 0.0014314735 + 17630 -6248.2885 -6253.7016 5.4131362 3745.7841 639.14612 -10638.632 0 259.42786 0.001531971 0.0015206365 + 17640 -6247.835 -6253.9131 6.0780481 3741.5797 638.27098 -10633.764 0 291.29417 0.0015733467 0.0015616991 + 17650 -6247.2334 -6253.9796 6.7462725 3738.7021 637.01156 -10629.693 0 323.31923 0.001547928 0.0015334011 + 17660 -6246.5092 -6253.8748 7.365633 3737.6688 635.47779 -10627.021 0 353.00246 0.0014520315 0.0014324863 + 17670 -6245.7305 -6253.5753 7.8448027 3738.5868 633.8937 -10626.056 0 375.96696 0.0013001241 0.0012758784 + 17680 -6244.9859 -6253.0722 8.0862965 3741.0876 632.55744 -10626.717 0 387.5407 0.0011233547 0.0010979246 + 17690 -6244.3427 -6252.3984 8.0557079 3744.3747 631.76939 -10628.542 0 386.07473 0.0009643216 0.00094262166 + 17700 -6243.8141 -6251.6459 7.831763 3747.4225 631.75185 -10630.82 0 375.34203 0.00086774434 0.00085250452 + 17710 -6243.3627 -6250.9464 7.5836936 3749.2944 632.58885 -10632.83 0 363.45315 0.00086812051 0.00085720861 + 17720 -6242.94 -6250.4161 7.4760715 3749.4677 634.20437 -10634.088 0 358.2953 0.00097769195 0.00096495216 + 17730 -6242.5321 -6250.0997 7.5676503 3748.024 636.38099 -10634.505 0 362.68427 0.0011799899 0.0011596472 + 17740 -6242.1719 -6249.9636 7.791758 3745.608 638.80772 -10634.379 0 373.42476 0.0014336765 0.0014050575 + 17750 -6241.9076 -6249.9551 8.0475642 3743.162 641.14041 -10634.258 0 385.68443 0.0016866792 0.0016549396 + 17760 -6241.7531 -6250.0775 8.3244362 3741.5673 643.06082 -10634.706 0 398.95369 0.0018936305 0.001865194 + 17770 -6241.6724 -6250.399 8.7266312 3741.3745 644.32645 -10636.1 0 418.22913 0.0020265065 0.0020030453 + 17780 -6241.6214 -6250.9673 9.3458468 3742.7268 644.80669 -10638.501 0 447.90542 0.0020737198 0.002050657 + 17790 -6241.611 -6251.7014 10.090349 3745.4231 644.49847 -10641.623 0 483.58616 0.0020330225 0.0020046371 + 17800 -6241.7214 -6252.3792 10.657794 3748.9831 643.51423 -10644.877 0 510.78129 0.0019084965 0.0018748667 + 17810 -6242.0355 -6252.7607 10.725236 3752.6543 642.04357 -10647.459 0 514.0135 0.0017158497 0.0016841463 + 17820 -6242.5481 -6252.7501 10.202049 3755.4584 640.30559 -10648.514 0 488.93941 0.0014885237 0.0014665585 + 17830 -6243.1507 -6252.447 9.2963177 3756.4178 638.51402 -10647.379 0 445.53171 0.0012730993 0.0012615756 + 17840 -6243.7129 -6252.0466 8.3336654 3754.9285 636.86141 -10643.837 0 399.39601 0.0011128032 0.001104333 + 17850 -6244.1726 -6251.7 7.5273552 3751.0563 635.50873 -10638.265 0 360.7531 0.0010309172 0.0010164419 + 17860 -6244.5524 -6251.4609 6.9084855 3745.5516 634.56615 -10631.579 0 331.09339 0.0010256677 0.001001709 + 17870 -6244.9092 -6251.3292 6.4199871 3739.5876 634.06906 -10624.986 0 307.6818 0.001076899 0.0010475987 + 17880 -6245.2781 -6251.3171 6.0389531 3734.3895 633.96591 -10619.672 0 289.42052 0.0011568427 0.0011302527 + 17890 -6245.65 -6251.4727 5.822651 3730.9311 634.1313 -10616.535 0 279.05411 0.0012383476 0.001220531 + 17900 -6245.9845 -6251.8494 5.8649224 3729.782 634.40499 -10616.036 0 281.07999 0.0012988296 0.0012898183 + 17910 -6246.2434 -6252.4493 6.2059598 3731.089 634.64566 -10618.184 0 297.42442 0.0013215798 0.0013154794 + 17920 -6246.4222 -6253.1793 6.7570709 3734.6222 634.7818 -10622.583 0 323.83675 0.0012970055 0.0012860193 + 17930 -6246.561 -6253.8588 7.2978414 3739.8161 634.84171 -10628.517 0 349.75351 0.0012256121 0.0012053778 + 17940 -6246.7212 -6254.2876 7.5663741 3745.792 634.95031 -10635.03 0 362.6231 0.0011222986 0.001094909 + 17950 -6246.9425 -6254.3404 7.397965 3751.4196 635.29127 -10641.051 0 354.55199 0.0010185772 0.00099106209 + 17960 -6247.2105 -6254.0311 6.8205251 3755.4941 636.04227 -10645.567 0 326.87783 0.00095792889 0.00093722863 + 17970 -6247.4662 -6253.5027 6.0364288 3757.0402 637.29975 -10647.843 0 289.29954 0.00098204048 0.00097018644 + 17980 -6247.6471 -6252.9493 5.3022096 3755.6527 639.01386 -10647.616 0 254.11163 0.0011116502 0.0011047163 + 17990 -6247.7287 -6252.5212 4.7925052 3751.7131 640.95677 -10645.191 0 229.68374 0.0013311827 0.0013226239 + 18000 -6247.7359 -6252.2771 4.541176 3746.346 642.74215 -10641.365 0 217.63864 0.001586745 0.0015723511 + 18010 -6247.7182 -6252.206 4.4877955 3741.0918 643.90254 -10637.2 0 215.08034 0.0018011103 0.0017816866 + 18020 -6247.7119 -6252.2863 4.5744254 3737.4094 644.0133 -10633.709 0 219.23213 0.0019002728 0.0018801945 + 18030 -6247.7174 -6252.5207 4.803365 3736.2074 642.8316 -10631.56 0 230.2042 0.0018399012 0.0018231403 + 18040 -6247.7071 -6252.9169 5.2098073 3737.5844 640.40487 -10630.906 0 249.6832 0.001620748 0.0016078476 + 18050 -6247.6557 -6253.4386 5.7829695 3740.8462 637.10518 -10631.39 0 277.15235 0.0012885311 0.0012768194 + 18060 -6247.5655 -6253.9791 6.4135564 3744.757 633.56581 -10632.302 0 307.37361 0.00092061897 0.00090702067 + 18070 -6247.4679 -6254.3885 6.9205487 3747.9172 630.52768 -10632.833 0 331.67153 0.00060502402 0.00058876761 + 18080 -6247.3989 -6254.5407 7.1418276 3749.1618 628.63693 -10632.339 0 342.27645 0.00041717535 0.00040012862 + 18090 -6247.3721 -6254.3918 7.0197138 3747.8932 628.25848 -10630.544 0 336.42407 0.00039945116 0.00038413914 + 18100 -6247.3718 -6253.9925 6.6206799 3744.2707 629.37209 -10627.635 0 317.30013 0.000548742 0.0005360613 + 18110 -6247.3688 -6253.4557 6.0869019 3739.1967 631.58992 -10624.242 0 291.71849 0.00081678457 0.00080532216 + 18120 -6247.3422 -6252.907 5.5648394 3734.0781 634.28973 -10621.275 0 266.69833 0.0011246424 0.0011118644 + 18130 -6247.2903 -6252.445 5.1547375 3730.4195 636.81495 -10619.679 0 247.04395 0.0013872922 0.00137149 + 18140 -6247.2261 -6252.1234 4.897311 3729.3669 638.67044 -10620.161 0 234.70662 0.0015400339 0.0015216663 + 18150 -6247.1632 -6251.9572 4.7939846 3731.3483 639.64611 -10622.952 0 229.75464 0.0015577265 0.0015392639 + 18160 -6247.1 -6251.9452 4.8451514 3735.9337 639.83016 -10627.709 0 232.20684 0.0014604123 0.0014445695 + 18170 -6247.0129 -6252.0902 5.0772844 3741.9681 639.51875 -10633.577 0 243.33196 0.001303358 0.0012906768 + 18180 -6246.8657 -6252.395 5.529317 3747.9415 639.07023 -10639.407 0 264.99589 0.0011549377 0.0011425394 + 18190 -6246.6328 -6252.8324 6.1996437 3752.4596 638.76762 -10644.06 0 297.12171 0.0010707561 0.0010536602 + 18200 -6246.3219 -6253.3197 6.9977344 3754.6327 638.73645 -10646.689 0 335.3707 0.001074495 0.0010489949 + 18210 -6245.9753 -6253.7281 7.7528032 3754.2402 638.93241 -10646.901 0 371.55783 0.001153226 0.0011198781 + 18220 -6245.6453 -6253.9335 8.2881643 3751.6454 639.18628 -10644.765 0 397.21534 0.0012680977 0.0012318552 + 18230 -6245.3618 -6253.8721 8.5102933 3747.5563 639.28205 -10640.71 0 407.861 0.0013738251 0.001341051 + 18240 -6245.1156 -6253.5611 8.4455485 3742.7747 639.04181 -10635.378 0 404.75807 0.0014366786 0.0014113113 + 18250 -6244.8706 -6253.0743 8.203731 3738.0328 638.39108 -10629.498 0 393.16882 0.001443089 0.0014247366 + 18260 -6244.5902 -6252.498 7.9077561 3733.9339 637.38119 -10623.813 0 378.98404 0.0013975026 0.0013824589 + 18270 -6244.2566 -6251.9019 7.6453175 3730.9499 636.15986 -10619.012 0 366.40651 0.0013138964 0.001297874 + 18280 -6243.8712 -6251.34 7.4688093 3729.4173 634.90425 -10615.662 0 357.94725 0.0012071934 0.0011876795 + 18290 -6243.4414 -6250.8688 7.427391 3729.4982 633.75336 -10614.12 0 355.96225 0.0010888779 0.001065748 + 18300 -6242.9673 -6250.5573 7.5899599 3731.1216 632.77905 -10614.458 0 363.75347 0.00096764157 0.00094224179 + 18310 -6242.4411 -6250.4687 8.0276226 3733.9429 632.01274 -10616.424 0 384.72872 0.00085327659 0.00082731687 + 18320 -6241.8583 -6250.622 8.7636618 3737.357 631.5086 -10619.488 0 420.00384 0.00076113362 0.00073641111 + 18330 -6241.2334 -6250.968 9.7346399 3740.5769 631.39584 -10622.941 0 466.53857 0.00071438635 0.00069289364 + 18340 -6240.6025 -6251.4021 10.799637 3742.785 631.87312 -10626.06 0 517.57918 0.00074118359 0.0007243095 + 18350 -6240.016 -6251.7993 11.783272 3743.3599 633.12936 -10628.289 0 564.72053 0.00086453474 0.00085137224 + 18360 -6239.5348 -6252.0405 12.505741 3742.1366 635.22182 -10629.399 0 599.34528 0.0010868927 0.0010737743 + 18370 -6239.229 -6252.0276 12.798604 3739.5685 637.97443 -10629.571 0 613.3809 0.0013780299 0.0013607479 + 18380 -6239.1603 -6251.7144 12.554117 3736.641 640.95785 -10629.313 0 601.66374 0.0016766429 0.0016534286 + 18390 -6239.348 -6251.1473 11.799294 3734.5221 643.58027 -10629.25 0 565.48838 0.0019080101 0.0018802489 + 18400 -6239.7533 -6250.4639 10.710578 3734.1113 645.26506 -10629.84 0 513.31101 0.0020092065 0.001979791 + 18410 -6240.3021 -6249.8388 9.5367636 3735.6905 645.64179 -10631.171 0 457.05522 0.0019504146 0.0019219639 + 18420 -6240.9208 -6249.421 8.5001886 3738.8045 644.66396 -10632.889 0 407.37673 0.0017450773 0.0017192141 + 18430 -6241.5574 -6249.305 7.7476002 3742.3986 642.60544 -10634.309 0 371.30847 0.0014463208 0.0014235014 + 18440 -6242.1832 -6249.5337 7.3504868 3745.1658 639.95155 -10634.651 0 352.27657 0.0011307886 0.0011101467 + 18450 -6242.7879 -6250.1056 7.3177276 3745.9856 637.24321 -10633.334 0 350.70657 0.00087499035 0.00085436433 + 18460 -6243.375 -6250.9715 7.5965715 3744.3068 634.93444 -10630.213 0 364.07033 0.00073196389 0.00070853319 + 18470 -6243.9598 -6252.0254 8.0656338 3740.3441 633.29853 -10625.668 0 386.55043 0.00071595861 0.00068759423 + 18480 -6244.5631 -6253.1084 8.5453204 3735.0227 632.3941 -10620.525 0 409.5397 0.00080040179 0.00076709632 + 18490 -6245.1983 -6254.0426 8.8443074 3729.6889 632.08969 -10615.821 0 423.86884 0.00092984993 0.00089413687 + 18500 -6245.8569 -6254.6805 8.8236483 3725.694 632.13803 -10612.513 0 422.87874 0.0010409585 0.00100688 + 18510 -6246.5063 -6254.9451 8.4388965 3723.9967 632.27895 -10611.221 0 404.43927 0.0010840916 0.0010554136 + 18520 -6247.1001 -6254.8425 7.7424008 3724.9088 632.33732 -10612.089 0 371.05929 0.0010382323 0.0010169113 + 18530 -6247.5945 -6254.4511 6.8565856 3728.0444 632.28147 -10614.777 0 328.60605 0.00091550252 0.00090092239 + 18540 -6247.9628 -6253.8943 5.9315264 3732.4742 632.22345 -10618.592 0 284.27203 0.00075506777 0.00074428619 + 18550 -6248.2044 -6253.3005 5.0961397 3737.0257 632.36427 -10622.69 0 244.23561 0.00060906417 0.00059825371 + 18560 -6248.3457 -6252.7699 4.4241841 3740.6212 632.90598 -10626.297 0 212.03172 0.00052573189 0.00051235258 + 18570 -6248.4282 -6252.3685 3.9402553 3742.5394 633.96231 -10628.87 0 188.83914 0.00053572095 0.00051999505 + 18580 -6248.4868 -6252.1468 3.6600179 3742.5399 635.49956 -10630.186 0 175.40859 0.00064521605 0.00062961617 + 18590 -6248.5331 -6252.1544 3.6213495 3740.8611 637.32809 -10630.344 0 173.55539 0.00083580421 0.00082289029 + 18600 -6248.5557 -6252.4245 3.8687881 3738.1341 639.14439 -10629.703 0 185.41403 0.0010690251 0.0010594713 + 18610 -6248.5363 -6252.9376 4.401327 3735.2349 640.60537 -10628.778 0 210.93628 0.0012940627 0.0012864711 + 18620 -6248.468 -6253.6005 5.1325016 3733.077 641.40893 -10628.086 0 245.97827 0.0014581224 0.0014505109 + 18630 -6248.3623 -6254.2661 5.9038066 3732.3656 641.36052 -10627.992 0 282.94354 0.0015187691 0.0015101693 + 18640 -6248.2404 -6254.7886 6.5482258 3733.3752 640.41575 -10628.58 0 313.82772 0.0014557986 0.0014464815 + 18650 -6248.1171 -6255.0769 6.9597888 3735.8363 638.69638 -10629.61 0 333.55213 0.001278563 0.0012687902 + 18660 -6247.9943 -6255.1134 7.1190812 3738.9899 636.47829 -10630.582 0 341.18632 0.001024962 0.0010136204 + 18670 -6247.8687 -6254.9274 7.0587366 3741.8058 634.14859 -10630.882 0 338.29426 0.00075138615 0.00073617035 + 18680 -6247.7481 -6254.5531 6.804976 3743.2859 632.1309 -10629.97 0 326.13263 0.00051724433 0.00049673827 + 18690 -6247.6545 -6254.0123 6.3578715 3742.7408 630.78671 -10627.54 0 304.70488 0.0003700834 0.00034599954 + 18700 -6247.6054 -6253.3441 5.7387557 3739.9566 630.3167 -10623.617 0 275.03337 0.00033575583 0.00031275105 + 18710 -6247.589 -6252.6465 5.0574462 3735.2405 630.69952 -10618.586 0 242.3812 0.00041432434 0.00039669392 + 18720 -6247.5606 -6252.0747 4.5140421 3729.3829 631.70019 -10613.158 0 216.33823 0.00058023822 0.00056806095 + 18730 -6247.4683 -6251.7757 4.3073722 3723.5571 632.95037 -10608.283 0 206.43345 0.00078649434 0.00077491448 + 18740 -6247.2864 -6251.8079 4.5215144 3719.1202 634.06811 -10604.996 0 216.69634 0.00097444832 0.00095706619 + 18750 -6247.0268 -6252.1147 5.0879522 3717.2898 634.77136 -10604.176 0 243.84322 0.0010897869 0.0010633328 + 18760 -6246.7234 -6252.5688 5.8453856 3718.7607 634.95332 -10606.283 0 280.14367 0.0011007242 0.0010672815 + 18770 -6246.4057 -6253.0402 6.6345369 3723.4161 634.70761 -10611.164 0 317.96423 0.0010108906 0.00097637317 + 18780 -6246.0824 -6253.4391 7.3567501 3730.2783 634.30126 -10618.019 0 352.57674 0.00086038088 0.00083083806 + 18790 -6245.7424 -6253.7185 7.9760649 3737.7421 634.09757 -10625.558 0 382.25778 0.0007134151 0.00069167253 + 18800 -6245.37 -6253.8564 8.4863841 3744.023 634.43956 -10632.319 0 406.71515 0.00063649199 0.00062086808 + 18810 -6244.9637 -6253.8339 8.870157 3747.679 635.52098 -10637.034 0 425.10769 0.00067417852 0.00065988831 + 18820 -6244.5518 -6253.6233 9.0715435 3748.0332 637.2869 -10638.943 0 434.75927 0.00083093963 0.0008136053 + 18830 -6244.1869 -6253.2024 9.015487 3745.3323 639.40744 -10637.942 0 432.07272 0.0010670469 0.0010461093 + 18840 -6243.9142 -6252.5988 8.68455 3740.5741 641.35129 -10634.524 0 416.21236 0.0013124001 0.0012914164 + 18850 -6243.7347 -6251.9284 8.1937665 3735.0994 642.54854 -10629.576 0 392.69127 0.0014929439 0.0014759724 + 18860 -6243.602 -6251.3687 7.7667317 3730.1638 642.58634 -10624.119 0 372.22536 0.0015563818 0.0015437134 + 18870 -6243.4627 -6251.0628 7.6000906 3726.6571 641.35359 -10619.074 0 364.23898 0.0014854491 0.0014730951 + 18880 -6243.3027 -6251.0312 7.7285015 3724.9907 639.06947 -10615.091 0 370.39315 0.0012968182 0.0012804422 + 18890 -6243.1565 -6251.1718 8.0152515 3725.0814 636.18992 -10612.443 0 384.13583 0.0010317036 0.0010110675 + 18900 -6243.0727 -6251.3514 8.2787393 3726.4042 633.24712 -10611.003 0 396.76364 0.00074441487 0.00072379061 + 18910 -6243.0675 -6251.5107 8.443203 3728.1412 630.70018 -10610.352 0 404.64566 0.00049086496 0.00047467025 + 18920 -6243.1127 -6251.6932 8.5805 3729.4453 628.85309 -10609.992 0 411.22571 0.00031655986 0.00030407934 + 18930 -6243.173 -6251.9741 8.8010775 3729.7479 627.84824 -10609.57 0 421.79702 0.00024520303 0.00022962798 + 18940 -6243.2646 -6252.3518 9.0871542 3728.9686 627.70448 -10609.025 0 435.50742 0.00027248714 0.0002461423 + 18950 -6243.473 -6252.7038 9.2307336 3727.4992 628.35925 -10608.562 0 442.38855 0.00037044468 0.00033232249 + 18960 -6243.8958 -6252.8634 8.9675401 3725.9535 629.69122 -10608.508 0 429.77484 0.00050279783 0.00046136217 + 18970 -6244.5454 -6252.7624 8.2170532 3724.8365 631.52484 -10609.124 0 393.8073 0.00064297277 0.00061044332 + 18980 -6245.3098 -6252.5124 7.2025631 3724.3597 633.63343 -10610.506 0 345.18723 0.00078161403 0.00076396978 + 18990 -6246.0271 -6252.3344 6.3073343 3724.5177 635.75581 -10612.608 0 302.28285 0.0009174825 0.00090947548 + 19000 -6246.6033 -6252.3931 5.7898201 3725.3112 637.62699 -10615.331 0 277.48067 0.0010410799 0.0010310938 + 19010 -6247.0581 -6252.6885 5.6304454 3726.8623 639.01209 -10618.563 0 269.84253 0.0011279489 0.0011077866 + 19020 -6247.4707 -6253.0976 5.6268128 3729.2893 639.7377 -10622.125 0 269.66844 0.0011489389 0.0011195186 + 19030 -6247.8995 -6253.5013 5.6017318 3732.4576 639.72374 -10625.683 0 268.46642 0.0010887852 0.0010577925 + 19040 -6248.3428 -6253.8662 5.5234773 3735.8399 639.01315 -10628.719 0 264.71602 0.00095831681 0.00093332261 + 19050 -6248.7568 -6254.2244 5.4676138 3738.6126 637.78303 -10630.62 0 262.03873 0.00079241081 0.00077563718 + 19060 -6249.0992 -6254.5946 5.4953329 3739.9364 636.31841 -10630.849 0 263.36718 0.00063646647 0.00062459588 + 19070 -6249.3606 -6254.9253 5.5646797 3739.2688 634.9446 -10629.139 0 266.69068 0.0005298171 0.00051783893 + 19080 -6249.5656 -6255.106 5.5403994 3736.5656 633.93418 -10625.606 0 265.52703 0.00049343438 0.00047894141 + 19090 -6249.7476 -6255.0355 5.2879484 3732.3048 633.41871 -10620.759 0 253.42816 0.00052502818 0.00050971381 + 19100 -6249.9202 -6254.6985 4.7783007 3727.3513 633.33961 -10615.389 0 229.00298 0.00060103452 0.00058864084 + 19110 -6250.067 -6254.1931 4.1260794 3722.7364 633.46425 -10610.394 0 197.74488 0.00068362908 0.00067632792 + 19120 -6250.1572 -6253.6926 3.5353304 3719.4254 633.47105 -10606.589 0 169.43287 0.00073106106 0.00072723815 + 19130 -6250.1713 -6253.3636 3.1923096 3718.116 633.07867 -10604.558 0 152.99339 0.00070966183 0.00070480231 + 19140 -6250.1176 -6253.2923 3.1746668 3719.0818 632.17137 -10604.545 0 152.14785 0.00060526988 0.0005952885 + 19150 -6250.0286 -6253.4586 3.4299627 3722.0702 630.86958 -10606.398 0 164.38306 0.0004311229 0.00041568939 + 19160 -6249.9395 -6253.7718 3.8323372 3726.2925 629.51307 -10609.577 0 183.6671 0.0002290631 0.00021229987 + 19170 -6249.8599 -6254.137 4.2770809 3730.5602 628.55807 -10613.255 0 204.98172 6.1504939e-05 4.9094509e-05 + 19180 -6249.7603 -6254.503 4.7427166 3733.5937 628.42463 -10616.521 0 227.29759 -6.2621029e-06 -1.1804213e-05 + 19190 -6249.5872 -6254.8544 5.2671231 3734.4494 629.35083 -10618.655 0 252.43009 7.0321322e-05 6.8093844e-05 + 19200 -6249.3045 -6255.158 5.8534661 3732.906 631.30434 -10619.368 0 280.53094 0.00029416847 0.00028735353 + 19210 -6248.9307 -6255.3235 6.3927161 3729.6128 633.97621 -10618.912 0 306.37482 0.00061879823 0.00060073914 + 19220 -6248.539 -6255.2273 6.6883655 3725.8812 636.85397 -10617.963 0 320.544 0.00096014772 0.00093072767 + 19230 -6248.2122 -6254.7954 6.5831834 3723.1793 639.35187 -10617.326 0 315.50309 0.0012251618 0.0011914807 + 19240 -6247.9862 -6254.0792 6.093031 3722.5526 640.96365 -10617.596 0 292.01223 0.0013451257 0.0013167199 + 19250 -6247.8261 -6253.2627 5.4365828 3724.2399 641.39527 -10618.898 0 260.55155 0.0012985044 0.0012805598 + 19260 -6247.6537 -6252.5789 4.9251977 3727.642 640.6378 -10620.859 0 236.04311 0.0011136362 0.0011033563 + 19270 -6247.4044 -6252.1862 4.7818044 3731.6141 638.95769 -10622.758 0 229.1709 0.00085264587 0.00084173512 + 19280 -6247.0712 -6252.0884 5.0171726 3734.8919 636.80604 -10623.786 0 240.45106 0.00058707794 0.00056858918 + 19290 -6246.7028 -6252.1639 5.4610902 3736.4443 634.67256 -10623.281 0 261.72608 0.00037720861 0.00035117533 + 19300 -6246.3562 -6252.2839 5.9276155 3735.6624 632.93245 -10620.879 0 284.0846 0.0002608074 0.00023369019 + 19310 -6246.0441 -6252.4142 6.3701423 3732.4403 631.74496 -10616.599 0 305.29296 0.00024933536 0.00022772348 + 19320 -6245.7277 -6252.6092 6.8814809 3727.2222 631.04596 -10610.877 0 329.79918 0.00032734474 0.00031187537 + 19330 -6245.3676 -6252.9119 7.5442504 3720.9955 630.63232 -10604.54 0 361.56281 0.00045517767 0.00044044242 + 19340 -6244.9796 -6253.2687 8.2890378 3715.1246 630.29056 -10598.684 0 397.2572 0.00057909824 0.00055931207 + 19350 -6244.6388 -6253.5444 8.905551 3710.9827 629.90663 -10594.434 0 426.80397 0.00064995716 0.00062464173 + 19360 -6244.4248 -6253.6177 9.1929721 3709.5033 629.51223 -10592.633 0 440.5788 0.00064326108 0.00061765906 + 19370 -6244.3608 -6253.4651 9.1042699 3710.8777 629.25861 -10593.601 0 436.3277 0.00056903081 0.00054933097 + 19380 -6244.4023 -6253.1644 8.762058 3714.5503 629.34105 -10597.056 0 419.92698 0.00046500993 0.00045299693 + 19390 -6244.4773 -6252.8292 8.3518587 3719.4913 629.91327 -10602.234 0 400.26793 0.00037755924 0.0003691599 + 19400 -6244.5396 -6252.5331 7.9935008 3724.5844 631.02653 -10608.144 0 383.09341 0.00034154884 0.00033011421 + 19410 -6244.5925 -6252.2808 7.6883164 3728.9374 632.6094 -10613.828 0 368.46726 0.00036926845 0.00035077675 + 19420 -6244.6703 -6252.0427 7.3724179 3732.0055 634.48377 -10618.532 0 353.32763 0.00045170975 0.00042775766 + 19430 -6244.7975 -6251.8222 7.0246334 3733.5421 636.40409 -10621.768 0 336.65985 0.00056840478 0.00054461929 + 19440 -6244.9614 -6251.6906 6.7292603 3733.4983 638.10824 -10623.297 0 322.50391 0.00069804143 0.00067937497 + 19450 -6245.1214 -6251.752 6.6306566 3731.9846 639.37053 -10623.107 0 317.77827 0.00082364465 0.00081067733 + 19460 -6245.2431 -6252.0648 6.8216844 3729.3022 640.04345 -10621.41 0 326.93339 0.00093179345 0.00092084526 + 19470 -6245.3231 -6252.5902 7.2671187 3725.9608 640.07458 -10618.626 0 348.2811 0.0010096179 0.00099575596 + 19480 -6245.3885 -6253.2 7.8114941 3722.6157 639.49496 -10615.311 0 374.37063 0.0010429934 0.0010231668 + 19490 -6245.4808 -6253.725 8.2441102 3719.9283 638.38974 -10612.043 0 395.10402 0.0010173975 0.0009919742 + 19500 -6245.6321 -6254.0147 8.38261 3718.3944 636.86833 -10609.277 0 401.74171 0.00092212739 0.00089446954 + 19510 -6245.8447 -6253.9955 8.1507793 3718.1913 635.04795 -10607.235 0 390.63108 0.0007570277 0.00073133578 + 19520 -6246.0867 -6253.6997 7.6130002 3719.1084 633.05637 -10605.865 0 364.85769 0.00053785385 0.00051645336 + 19530 -6246.3115 -6253.245 6.9334549 3720.61 631.04815 -10604.903 0 332.29006 0.00029594388 0.00027806491 + 19540 -6246.4888 -6252.7755 6.2866899 3722.0109 629.21842 -10604.005 0 301.29345 7.1789296e-05 5.4906446e-05 + 19550 -6246.6194 -6252.4106 5.7911553 3722.6842 627.79495 -10602.89 0 277.54465 -9.3990762e-05 -0.000111586 + 19560 -6246.7234 -6252.2302 5.5068445 3722.2253 626.99877 -10601.454 0 263.91889 -0.00016891592 -0.00018680304 + 19570 -6246.8161 -6252.2842 5.4680473 3720.5515 626.9813 -10599.817 0 262.05951 -0.00013551504 -0.00015215174 + 19580 -6246.8975 -6252.5906 5.6930925 3717.9504 627.76183 -10598.303 0 272.84494 2.6918664e-06 -1.1983177e-05 + 19590 -6246.9616 -6253.1146 6.1530879 3715.0643 629.19438 -10597.373 0 294.8905 0.0002175283 0.00020393827 + 19600 -6247.0127 -6253.7526 6.7398887 3712.7748 630.98548 -10597.513 0 323.01328 0.00045859925 0.00044463391 + 19610 -6247.0703 -6254.3517 7.2813687 3711.9661 632.76608 -10599.084 0 348.96405 0.00066466582 0.00064968398 + 19620 -6247.1565 -6254.7606 7.6041609 3713.2259 634.19812 -10602.185 0 364.43406 0.00078199754 0.00076648905 + 19630 -6247.2799 -6254.8792 7.5992956 3716.5968 635.07789 -10606.554 0 364.20088 0.0007826908 0.00076748305 + 19640 -6247.4314 -6254.6829 7.2515372 3721.4903 635.39336 -10611.567 0 347.53435 0.00067486381 0.0006603222 + 19650 -6247.5908 -6254.2215 6.6307715 3726.8038 635.31064 -10616.336 0 317.78378 0.0005003544 0.0004863193 + 19660 -6247.7379 -6253.6035 5.8656343 3731.2086 635.09716 -10619.909 0 281.11411 0.00032110044 0.00030731076 + 19670 -6247.8593 -6252.9722 5.1129001 3733.5199 635.01574 -10621.508 0 245.03886 0.00019935695 0.0001857355 + 19680 -6247.9492 -6252.4742 4.5250694 3733.0358 635.22822 -10620.738 0 216.86671 0.00017811701 0.00016465877 + 19690 -6248.0066 -6252.2242 4.2176319 3729.7487 635.73445 -10617.707 0 202.13258 0.00026725689 0.00025375445 + 19700 -6248.0333 -6252.2739 4.2406596 3724.3699 636.35932 -10613.003 0 203.2362 0.00043914867 0.00042519984 + 19710 -6248.0335 -6252.5976 4.5640774 3718.1594 636.79287 -10607.55 0 218.7362 0.00063545324 0.0006209497 + 19720 -6248.0145 -6253.105 5.0904866 3712.5978 636.68036 -10602.383 0 243.96468 0.00078428551 0.00076992778 + 19730 -6247.9817 -6253.6806 5.6988649 3708.978 635.74343 -10598.402 0 273.12158 0.00082338083 0.00081039131 + 19740 -6247.9332 -6254.2271 6.293878 3708.0398 633.89646 -10596.163 0 301.63795 0.00072138651 0.00071028219 + 19750 -6247.8611 -6254.6829 6.8217462 3709.7724 631.31528 -10595.771 0 326.93635 0.00048897712 0.00047851778 + 19760 -6247.7638 -6255.0065 7.2427228 3713.4524 628.42637 -10596.885 0 347.11192 0.00017573048 0.00016340053 + 19770 -6247.6576 -6255.1539 7.4963391 3717.8834 625.81162 -10598.849 0 359.26663 -0.00014491892 -0.00016092066 + 19780 -6247.5731 -6255.0786 7.5055267 3721.7386 624.05584 -10600.873 0 359.70695 -0.00039613596 -0.00041508857 + 19790 -6247.5352 -6254.7606 7.2253841 3723.903 623.58755 -10602.251 0 346.28095 -0.00051693635 -0.0005357678 + 19800 -6247.5424 -6254.2357 6.6933358 3723.7471 624.56606 -10602.549 0 320.78221 -0.00047611773 -0.00049163328 + 19810 -6247.5648 -6253.5956 6.0308088 3721.2914 626.84655 -10601.734 0 289.0302 -0.00027921532 -0.00029054495 + 19820 -6247.5645 -6252.9542 5.3896899 3717.2235 630.02249 -10600.2 0 258.30418 3.2154837e-05 2.2976836e-05 + 19830 -6247.519 -6252.406 4.8870402 3712.7409 633.5214 -10598.668 0 234.21439 0.00038905907 0.0003788168 + 19840 -6247.4298 -6252.0095 4.5796729 3709.2312 636.72531 -10597.966 0 219.48362 0.0007116445 0.00069844118 + 19850 -6247.3107 -6251.8012 4.4905042 3707.8699 639.09421 -10598.765 0 215.21016 0.00093001277 0.00091452302 + 19860 -6247.1669 -6251.8193 4.6524163 3709.2627 640.27398 -10601.356 0 222.96989 0.0010033561 0.00098798777 + 19870 -6246.9809 -6252.1045 5.1235778 3713.2534 640.16713 -10605.525 0 245.5506 0.00093039227 0.00091716812 + 19880 -6246.7165 -6252.6689 5.9524059 3718.9584 638.94431 -10610.572 0 285.27269 0.00074700338 0.00073584619 + 19890 -6246.3423 -6253.45 7.1076631 3725.0069 636.98714 -10615.444 0 340.6391 0.00051213802 0.00050091928 + 19900 -6245.8646 -6254.2865 8.4218909 3729.903 634.77497 -10618.964 0 403.62427 0.00028781319 0.000274202 + 19910 -6245.3423 -6254.9499 9.6076074 3732.3929 632.74987 -10620.093 0 460.45045 0.00012120213 0.00010473222 + 19920 -6244.8643 -6255.2316 10.367283 3731.7466 631.20546 -10618.184 0 496.85838 3.5084906e-05 1.7346775e-05 + 19930 -6244.4992 -6255.033 10.533842 3727.9059 630.23939 -10613.178 0 504.8408 2.79227e-05 1.0506015e-05 + 19940 -6244.2639 -6254.3963 10.132394 3721.494 629.78096 -10605.671 0 485.60118 8.0015333e-05 6.2435334e-05 + 19950 -6244.137 -6253.4598 9.3227998 3713.6864 629.66887 -10596.815 0 446.80088 0.00016150921 0.000141618 + 19960 -6244.0919 -6252.3888 8.2968327 3705.9499 629.7335 -10588.072 0 397.63078 0.00024057635 0.00021717624 + 19970 -6244.1131 -6251.3382 7.2250868 3699.6992 629.849 -10580.886 0 346.2667 0.00029146357 0.00026633892 + 19980 -6244.1863 -6250.4562 6.2698849 3695.976 629.94707 -10576.379 0 300.48806 0.000300941 0.00027812101 + 19990 -6244.2848 -6249.8952 5.6103452 3695.2571 630.00533 -10575.158 0 268.87922 0.00027064684 0.00025334638 + 20000 -6244.3684 -6249.7935 5.4250564 3697.4366 630.0291 -10577.259 0 259.99914 0.00021396583 0.0002016409 + 20010 -6244.4016 -6250.2229 5.8212663 3701.949 630.04072 -10582.213 0 278.98774 0.00014878219 0.00013675505 + 20020 -6244.3814 -6251.1288 6.747428 3707.9525 630.08075 -10589.162 0 323.37461 8.9923719e-05 7.2315124e-05 + 20030 -6244.3564 -6252.3114 7.9549473 3714.4877 630.21416 -10597.013 0 381.24571 4.5671823e-05 1.9916928e-05 + 20040 -6244.4166 -6253.4819 9.0653498 3720.5709 630.52871 -10604.582 0 434.46243 2.04307e-05 -1.0067626e-05 + 20050 -6244.6439 -6254.3797 9.7357689 3725.2529 631.11564 -10610.748 0 466.59267 2.10433e-05 -6.803472e-06 + 20060 -6245.0562 -6254.8788 9.8226506 3727.7254 632.03465 -10614.639 0 470.75653 6.0043419e-05 4.04744e-05 + 20070 -6245.5953 -6255.0071 9.4117374 3727.5228 633.27655 -10615.806 0 451.06327 0.00014991244 0.00013779028 + 20080 -6246.1766 -6254.8655 8.6889031 3724.7503 634.73852 -10614.354 0 416.42099 0.00029011622 0.0002792102 + 20090 -6246.7461 -6254.5321 7.7859905 3720.1629 636.22049 -10610.915 0 373.14835 0.0004572537 0.00044193633 + 20100 -6247.2891 -6254.0414 6.7523107 3714.9704 637.44577 -10606.458 0 323.60862 0.00060814038 0.00058842023 + 20110 -6247.7967 -6253.442 5.6453735 3710.4368 638.10934 -10601.988 0 270.55797 0.00069522308 0.00067616222 + 20120 -6248.2426 -6252.85 4.6074002 3707.4853 637.95144 -10598.287 0 220.81247 0.00068437284 0.00067112595 + 20130 -6248.593 -6252.432 3.8389418 3706.4894 636.83949 -10595.761 0 183.98363 0.00056565812 0.00055901134 + 20140 -6248.8306 -6252.3303 3.4997145 3707.2835 634.83077 -10594.445 0 167.72595 0.00035471347 0.00035058868 + 20150 -6248.9697 -6252.5884 3.6187576 3709.3104 632.19037 -10594.089 0 173.43117 8.7592979e-05 8.0375437e-05 + 20160 -6249.0537 -6253.1276 4.0738671 3711.8079 629.35162 -10594.287 0 195.24257 -0.00018723664 -0.00020028464 + 20170 -6249.1358 -6253.7908 4.6550631 3713.9743 626.82271 -10594.588 0 223.09674 -0.00041777928 -0.00043432765 + 20180 -6249.2488 -6254.4263 5.177412 3715.1127 625.06149 -10594.6 0 248.13063 -0.00055806319 -0.00057256598 + 20190 -6249.3845 -6254.9527 5.5682366 3714.7786 624.3567 -10594.088 0 266.86114 -0.00057860779 -0.00058701856 + 20200 -6249.5005 -6255.3612 5.8606878 3712.9358 624.75656 -10593.054 0 280.87705 -0.00047643286 -0.0004800251 + 20210 -6249.5579 -6255.6563 6.0983276 3710.0551 626.06968 -10591.781 0 292.26607 -0.00028044085 -0.00028530818 + 20220 -6249.5574 -6255.7965 6.2390851 3707.0521 627.93406 -10590.783 0 299.01196 -4.6902163e-05 -5.9249668e-05 + 20230 -6249.542 -6255.6951 6.1531008 3705.008 629.92675 -10590.63 0 294.89111 0.0001569459 0.00013591066 + 20240 -6249.5627 -6255.286 5.7233154 3704.7572 631.67804 -10591.721 0 274.29339 0.00027640535 0.00025178185 + 20250 -6249.636 -6254.6019 4.9658891 3706.5336 632.9576 -10594.093 0 237.99327 0.00028962242 0.00026923906 + 20260 -6249.7282 -6253.8007 4.0724858 3709.8612 633.71005 -10597.372 0 195.17637 0.00021461375 0.0002032333 + 20270 -6249.7774 -6253.1136 3.336215 3713.7463 634.03377 -10600.894 0 159.89014 9.9285231e-05 9.488813e-05 + 20280 -6249.7346 -6252.7386 3.0039904 3717.0749 634.11536 -10603.929 0 143.96808 -5.3632806e-07 -5.5103032e-06 + 20290 -6249.594 -6252.7452 3.1512117 3719.0155 634.14364 -10605.904 0 151.02375 -4.4041427e-05 -5.7168658e-05 + 20300 -6249.3921 -6253.0578 3.665738 3719.242 634.23031 -10606.53 0 175.68273 -1.8681508e-05 -4.1788223e-05 + 20310 -6249.1752 -6253.5271 4.3519008 3717.9129 634.36212 -10605.802 0 208.56751 6.0571125e-05 3.2902394e-05 + 20320 -6248.957 -6254.0295 5.0724773 3715.4876 634.40439 -10603.921 0 243.10158 0.00016224002 0.00013855617 + 20330 -6248.6988 -6254.5137 5.8148914 3712.5243 634.16004 -10601.198 0 278.68222 0.00025162905 0.00023702173 + 20340 -6248.3334 -6254.9625 6.6291143 3709.5649 633.46465 -10597.992 0 317.70435 0.00029997754 0.00029227064 + 20350 -6247.8215 -6255.315 7.4935047 3707.0991 632.2771 -10594.691 0 359.13079 0.0002884077 0.00028025104 + 20360 -6247.1976 -6255.4328 8.2352085 3705.5259 630.7219 -10591.681 0 394.6774 0.00020990644 0.00019510364 + 20370 -6246.5624 -6255.1605 8.5981511 3705.0514 629.05989 -10589.272 0 412.07164 7.2254893e-05 5.1003592e-05 + 20380 -6246.0177 -6254.4416 8.4238583 3705.5674 627.60145 -10587.61 0 403.71856 -9.958598e-05 -0.00012104574 + 20390 -6245.5985 -6253.3936 7.7951192 3706.6286 626.60743 -10586.63 0 373.58585 -0.00026651557 -0.00028143918 + 20400 -6245.2599 -6252.2736 7.0137144 3707.6057 626.22443 -10586.104 0 336.13655 -0.00038620511 -0.00039313515 + 20410 -6244.9254 -6251.354 6.4285652 3707.9599 626.4722 -10585.786 0 308.09291 -0.00042784194 -0.00043180358 + 20420 -6244.5466 -6250.7953 6.2486845 3707.4872 627.26954 -10585.552 0 299.47202 -0.00038291829 -0.00039129881 + 20430 -6244.1305 -6250.5973 6.4668137 3706.3914 628.47305 -10585.462 0 309.926 -0.00026654322 -0.00028310473 + 20440 -6243.723 -6250.6503 6.927303 3705.151 629.91089 -10585.712 0 331.99523 -0.00010916633 -0.00013087703 + 20450 -6243.3644 -6250.843 7.4785757 3704.2683 631.40658 -10586.518 0 358.41531 5.67113e-05 3.7363819e-05 + 20460 -6243.0495 -6251.1476 8.098131 3704.0562 632.79652 -10588 0 388.10788 0.00020788994 0.00019640774 + 20470 -6242.7282 -6251.6166 8.8884616 3704.5819 633.94683 -10590.145 0 425.98495 0.00033370175 0.00032777968 + 20480 -6242.3594 -6252.2882 9.9287584 3705.772 634.77003 -10592.83 0 475.84181 0.00042971741 0.00041937565 + 20490 -6241.9825 -6253.0732 11.090778 3707.5498 635.23634 -10595.859 0 531.5323 0.0004878384 0.00046268657 + 20500 -6241.7382 -6253.7311 11.992932 3709.8458 635.37263 -10598.95 0 574.7686 0.00049320112 0.00045186037 + 20510 -6241.7933 -6253.9869 12.193535 3712.4428 635.24563 -10601.675 0 584.38261 0.00043419892 0.0003874833 + 20520 -6242.2077 -6253.7249 11.517209 3714.8003 634.93292 -10603.458 0 551.96929 0.00031907406 0.0002823435 + 20530 -6242.8712 -6253.0942 10.22299 3716.1033 634.49437 -10603.692 0 489.94304 0.00018157549 0.00016182972 + 20540 -6243.5935 -6252.4052 8.8117662 3715.6246 633.96058 -10601.99 0 422.30928 6.4570259e-05 5.4722857e-05 + 20550 -6244.2603 -6251.9022 7.6419297 3713.1802 633.34071 -10598.423 0 366.24415 -6.9010451e-06 -2.0458271e-05 + 20560 -6244.8934 -6251.6378 6.7443688 3709.2977 632.6351 -10593.571 0 323.228 -3.8507571e-05 -6.3062256e-05 + 20570 -6245.5688 -6251.5507 5.9819934 3704.9574 631.84153 -10588.35 0 286.69069 -5.5222556e-05 -8.6573047e-05 + 20580 -6246.3047 -6251.6148 5.3100797 3701.1342 630.95977 -10583.709 0 254.48881 -7.962418e-05 -0.00010801285 + 20590 -6247.0393 -6251.8884 4.8490422 3698.4696 630.00085 -10580.359 0 232.39331 -0.00011977509 -0.00013908816 + 20600 -6247.6908 -6252.4427 4.7518469 3697.2141 628.99829 -10578.655 0 227.73517 -0.00017215615 -0.00018369023 + 20610 -6248.2127 -6253.2611 5.0483076 3697.3468 628.0158 -10578.624 0 241.94322 -0.00023062828 -0.00024008301 + 20620 -6248.6047 -6254.2018 5.5971046 3698.7048 627.1489 -10580.056 0 268.24466 -0.0002915905 -0.00030363279 + 20630 -6248.8986 -6255.0457 6.1470611 3701.0216 626.51734 -10582.585 0 294.60166 -0.00035281999 -0.00036770129 + 20640 -6249.1357 -6255.5949 6.4592266 3703.8964 626.24513 -10585.736 0 309.56238 -0.00040890457 -0.00042313571 + 20650 -6249.337 -6255.7602 6.4232557 3706.7886 626.42995 -10588.979 0 307.83845 -0.00044814846 -0.00045830049 + 20660 -6249.4909 -6255.5784 6.0875105 3709.1134 627.11354 -10591.805 0 291.74766 -0.00045497741 -0.00046120616 + 20670 -6249.5768 -6255.1601 5.5832472 3710.4203 628.2654 -10593.846 0 267.58053 -0.00041725642 -0.00042332448 + 20680 -6249.5964 -6254.6205 5.0241039 3710.5472 629.78285 -10594.951 0 240.78325 -0.0003331672 -0.00034309402 + 20690 -6249.5788 -6254.0501 4.4712527 3709.6518 631.50186 -10595.204 0 214.28752 -0.00021294287 -0.0002275529 + 20700 -6249.5591 -6253.5278 3.9686197 3708.1148 633.21312 -10594.856 0 190.19852 -7.5607042e-05 -9.1935108e-05 + 20710 -6249.5522 -6253.1379 3.5856673 3706.3921 634.68206 -10594.212 0 171.84529 5.5855975e-05 4.2208383e-05 + 20720 -6249.5432 -6252.9625 3.4192874 3704.8936 635.67462 -10593.531 0 163.87144 0.00015831308 0.00014998033 + 20730 -6249.4961 -6253.0531 3.5569953 3703.9167 635.9906 -10592.96 0 170.47117 0.00021120855 0.00020715255 + 20740 -6249.372 -6253.4013 4.0292521 3703.6235 635.5048 -10592.53 0 193.10437 0.00019928936 0.00019510915 + 20750 -6249.1503 -6253.9251 4.774788 3704.0332 634.21059 -10592.169 0 228.83463 0.00011588652 0.0001061243 + 20760 -6248.8444 -6254.4809 5.6365027 3705.0119 632.25192 -10591.745 0 270.13284 -3.3594321e-05 -5.2238577e-05 + 20770 -6248.5018 -6254.9048 6.4030286 3706.2543 629.92327 -10591.082 0 306.86906 -0.00022898637 -0.0002553148 + 20780 -6248.1797 -6255.0732 6.8935316 3707.2838 627.62247 -10589.979 0 330.37671 -0.00043522498 -0.00046387024 + 20790 -6247.9103 -6254.9544 7.0441012 3707.5203 625.76165 -10588.236 0 337.59285 -0.00060715179 -0.00063189403 + 20800 -6247.6826 -6254.611 6.9284379 3706.455 624.66559 -10585.732 0 332.04962 -0.0007007953 -0.00071866672 + 20810 -6247.4605 -6254.1453 6.684734 3703.8977 624.49438 -10582.537 0 320.36996 -0.0006890121 -0.00070180618 + 20820 -6247.2202 -6253.6302 6.4100379 3700.1698 625.21107 -10579.011 0 307.20498 -0.00057460176 -0.00058653724 + 20830 -6246.9674 -6253.0895 6.1221168 3696.101 626.59336 -10575.784 0 293.40619 -0.00039282056 -0.00040680019 + 20840 -6246.7227 -6252.5387 5.8159946 3692.7937 628.28264 -10573.615 0 278.7351 -0.00020025767 -0.00021625829 + 20850 -6246.4944 -6252.0346 5.5402668 3691.2606 629.86884 -10573.164 0 265.52067 -5.482623e-05 -7.1299044e-05 + 20860 -6246.2694 -6251.6767 5.4073188 3692.0942 631.003 -10574.774 0 259.14906 4.0654186e-06 -1.2001708e-05 + 20870 -6246.0269 -6251.5577 5.5308351 3695.2775 631.50829 -10578.343 0 265.06865 -3.2209976e-05 -4.8208605e-05 + 20880 -6245.7559 -6251.7104 5.9545092 3700.1677 631.44547 -10583.324 0 285.37349 -0.0001393278 -0.00015551144 + 20890 -6245.4613 -6252.0946 6.6332848 3705.6399 631.09598 -10588.83 0 317.90423 -0.00026709303 -0.00028236151 + 20900 -6245.1542 -6252.6255 7.4712484 3710.3647 630.8552 -10593.845 0 358.06414 -0.000354436 -0.000366864 + 20910 -6244.8424 -6253.2093 8.3669741 3713.1779 631.06677 -10597.454 0 400.99235 -0.00035062881 -0.00035951449 + 20920 -6244.5348 -6253.7532 9.2183985 3713.4459 631.86359 -10599.063 0 441.79738 -0.00023744479 -0.00024471137 + 20930 -6244.2571 -6254.1542 9.8970541 3711.2902 633.08982 -10598.534 0 474.32237 -4.1900244e-05 -5.1117058e-05 + 20940 -6244.0564 -6254.3071 10.250749 3707.5422 634.34831 -10596.198 0 491.27339 0.00017033967 0.00015653688 + 20950 -6243.9789 -6254.1445 10.165573 3703.4198 635.15847 -10592.723 0 487.19131 0.0003209009 0.00030246408 + 20960 -6244.0399 -6253.6782 9.6382938 3700.0595 635.15332 -10588.891 0 461.92112 0.00035118655 0.00033002789 + 20970 -6244.2143 -6252.9986 8.7843057 3698.1252 634.22586 -10585.35 0 420.99322 0.00024456201 0.0002228749 + 20980 -6244.457 -6252.2317 7.7747012 3697.6497 632.56247 -10582.444 0 372.6073 2.9361907e-05 8.850245e-06 + 20990 -6244.7279 -6251.4983 6.7704392 3698.1314 630.55685 -10580.187 0 324.47744 -0.00023470515 -0.00025250248 + 21000 -6244.9982 -6250.9087 5.9104983 3698.7969 628.65219 -10578.358 0 283.26424 -0.000478319 -0.00049212286 + 21010 -6245.2432 -6250.5782 5.335011 3698.9191 627.18634 -10576.684 0 255.68366 -0.00064447328 -0.00065464807 + 21020 -6245.4406 -6250.6178 5.1771877 3698.0971 626.30402 -10575.019 0 248.11989 -0.00070489666 -0.00071477749 + 21030 -6245.5862 -6251.0812 5.4949971 3696.422 625.95998 -10573.463 0 263.3511 -0.00066687407 -0.00068178941 + 21040 -6245.7118 -6251.9065 6.1947644 3694.4521 625.9916 -10572.35 0 296.88787 -0.00056791908 -0.0005916441 + 21050 -6245.8829 -6252.9135 7.0305782 3692.9746 626.21668 -10572.105 0 336.94475 -0.00045912005 -0.00049045982 + 21060 -6246.1673 -6253.8715 7.7042484 3692.6469 626.51543 -10573.034 0 369.23081 -0.00038319505 -0.00041592658 + 21070 -6246.5927 -6254.594 8.0012928 3693.6976 626.87151 -10575.163 0 383.46685 -0.00035721197 -0.00038385792 + 21080 -6247.127 -6254.9963 7.8692427 3695.8494 627.36194 -10578.208 0 377.13827 -0.00036864083 -0.00038522321 + 21090 -6247.697 -6255.0933 7.3962922 3698.4863 628.1008 -10581.68 0 354.47182 -0.00038640716 -0.00039458154 + 21100 -6248.2296 -6254.9557 6.7260322 3700.9512 629.15894 -10585.066 0 322.3492 -0.00038013885 -0.0003853905 + 21110 -6248.6853 -6254.6655 5.9801964 3702.8029 630.4949 -10587.963 0 286.60457 -0.00033669246 -0.00034432973 + 21120 -6249.062 -6254.2966 5.2346076 3703.9185 631.9306 -10590.146 0 250.87177 -0.00026588286 -0.00027782327 + 21130 -6249.3784 -6253.9197 4.5413303 3704.4252 633.18706 -10591.532 0 217.64603 -0.00019428303 -0.0002085317 + 21140 -6249.6512 -6253.6123 3.9611316 3704.5343 633.9682 -10592.115 0 189.83965 -0.00015189782 -0.00016459064 + 21150 -6249.8824 -6253.4563 3.5738427 3704.3816 634.06052 -10591.898 0 171.2786 -0.00015868924 -0.00016710468 + 21160 -6250.0612 -6253.5136 3.452396 3703.9587 633.41051 -10590.883 0 165.45819 -0.00021674163 -0.00022125609 + 21170 -6250.1774 -6253.7889 3.6114762 3703.1574 632.15005 -10589.096 0 173.0822 -0.00031068185 -0.000314308 + 21180 -6250.2371 -6254.2064 3.9693394 3701.8793 630.55763 -10586.643 0 190.23302 -0.00041510529 -0.00042093285 + 21190 -6250.2641 -6254.6306 4.3664187 3700.1315 628.96627 -10583.728 0 209.26328 -0.00050488555 -0.00051351022 + 21200 -6250.2844 -6254.9293 4.6448443 3698.0598 627.65202 -10580.641 0 222.607 -0.00056386741 -0.00057309224 + 21210 -6250.304 -6255.0402 4.7361979 3695.9263 626.74943 -10577.716 0 226.98518 -0.00058927136 -0.00059645463 + 21220 -6250.3031 -6254.9928 4.6896587 3694.0655 626.23107 -10575.289 0 224.75476 -0.00059132746 -0.00059636962 + 21230 -6250.2526 -6254.8704 4.6178032 3692.8314 625.95798 -10573.66 0 221.31104 -0.00058888662 -0.0005951664 + 21240 -6250.1418 -6254.7426 4.6008517 3692.5228 625.77414 -10573.04 0 220.49863 -0.00060210046 -0.00061421695 + 21250 -6249.9948 -6254.6167 4.6218904 3693.2765 625.59926 -10573.493 0 221.50692 -0.00064345167 -0.00066317959 + 21260 -6249.8603 -6254.4477 4.5874058 3694.9525 625.47793 -10574.878 0 219.85423 -0.00070923451 -0.00073290066 + 21270 -6249.7747 -6254.2023 4.4276828 3697.076 625.56424 -10576.843 0 212.1994 -0.00077525063 -0.00079534057 + 21280 -6249.7262 -6253.9249 4.1987784 3698.9224 626.04981 -10578.897 0 201.22902 -0.00080157025 -0.00081231409 + 21290 -6249.6533 -6253.7345 4.0811611 3699.783 627.06786 -10580.585 0 195.59214 -0.00074872927 -0.0007514461 + 21300 -6249.49 -6253.7363 4.2463504 3699.3258 628.6126 -10581.675 0 203.50894 -0.00060036888 -0.00060338741 + 21310 -6249.2237 -6253.924 4.7003291 3697.8408 630.50218 -10582.267 0 225.26614 -0.00037951281 -0.00039182585 + 21320 -6248.9128 -6254.1729 5.2601256 3696.1704 632.39793 -10582.741 0 252.09473 -0.00014580097 -0.00016973931 + 21330 -6248.6435 -6254.3388 5.6952559 3695.3158 633.88432 -10583.539 0 272.94862 2.7823516e-05 -1.6447691e-06 + 21340 -6248.4644 -6254.3626 5.8982011 3695.9435 634.59811 -10584.904 0 282.67489 8.641723e-05 6.0879015e-05 + 21350 -6248.358 -6254.2879 5.9298515 3698.0675 634.3651 -10586.72 0 284.19176 1.5050912e-05 -7.8290766e-07 + 21360 -6248.2688 -6254.1908 5.9220046 3701.0513 633.28106 -10588.523 0 283.81569 -0.00015805694 -0.00016536031 + 21370 -6248.1547 -6254.1003 5.9456228 3703.8775 631.69009 -10589.668 0 284.9476 -0.00037518952 -0.00037980585 + 21380 -6248.0158 -6253.9746 5.9587849 3705.5273 630.06142 -10589.563 0 285.5784 -0.00057089869 -0.00057826289 + 21390 -6247.8841 -6253.7465 5.8624093 3705.3111 628.81581 -10587.873 0 280.95955 -0.00069319235 -0.00070466698 + 21400 -6247.7901 -6253.3935 5.6033986 3703.0573 628.17577 -10584.627 0 268.5463 -0.00071823098 -0.00073118553 + 21410 -6247.7366 -6252.9753 5.2386585 3699.1407 628.10109 -10580.217 0 251.06591 -0.00065536064 -0.00066616081 + 21420 -6247.6979 -6252.6146 4.9166419 3694.3763 628.33083 -10575.322 0 235.63306 -0.0005417913 -0.00054897884 + 21430 -6247.6392 -6252.4365 4.7972821 3689.8164 628.50693 -10570.76 0 229.91267 -0.00042900497 -0.00043434423 + 21440 -6247.5401 -6252.5057 4.9656158 3686.4943 628.32587 -10567.326 0 237.98017 -0.0003654091 -0.0003722936 + 21450 -6247.4073 -6252.7973 5.3899534 3685.1583 627.6601 -10565.616 0 258.31681 -0.00038055024 -0.00039112025 + 21460 -6247.2685 -6253.216 5.947495 3686.0578 626.60744 -10565.881 0 285.03733 -0.00047527061 -0.00048850581 + 21470 -6247.1511 -6253.652 6.5008277 3688.8504 625.45646 -10567.959 0 311.55614 -0.00062058506 -0.00063305415 + 21480 -6247.0601 -6254.0326 6.9725312 3692.6907 624.58767 -10571.311 0 334.16282 -0.00076628968 -0.00077526313 + 21490 -6246.9748 -6254.3347 7.3599262 3696.5017 624.3504 -10575.187 0 352.72896 -0.00085776902 -0.00086425177 + 21500 -6246.8724 -6254.5491 7.6766984 3699.3415 624.95684 -10578.847 0 367.91046 -0.00085590916 -0.00086473817 + 21510 -6246.7583 -6254.6344 7.8761044 3700.7079 626.4209 -10581.763 0 377.46712 -0.00075215462 -0.00076849508 + 21520 -6246.6737 -6254.5114 7.8377012 3700.6417 628.55198 -10583.705 0 375.62662 -0.00057140868 -0.00059622146 + 21530 -6246.6668 -6254.1159 7.4490436 3699.5921 631.0003 -10584.708 0 356.99996 -0.00036087414 -0.0003892808 + 21540 -6246.7498 -6253.4731 6.7233415 3698.1426 633.34029 -10584.956 0 322.22025 -0.00017065896 -0.00019503013 + 21550 -6246.8798 -6252.7273 5.8474508 3696.763 635.16872 -10584.659 0 280.24265 -3.6813067e-05 -5.2372872e-05 + 21560 -6246.9859 -6252.0891 5.1031824 3695.7111 636.19033 -10583.991 0 244.57313 2.4879344e-05 1.6556173e-05 + 21570 -6247.0177 -6251.7307 4.7129557 3695.0824 636.26866 -10583.082 0 225.87128 1.4381875e-05 6.9813891e-06 + 21580 -6246.9759 -6251.7058 4.7298832 3694.8989 635.43285 -10582.038 0 226.68254 -6.0427102e-05 -7.2665595e-05 + 21590 -6246.9015 -6251.9554 5.05381 3695.1297 633.84566 -10580.931 0 242.20693 -0.00018757032 -0.00020548552 + 21600 -6246.8367 -6252.3799 5.5431537 3695.6424 631.74964 -10579.772 0 265.65903 -0.00035002995 -0.00036964651 + 21610 -6246.7913 -6252.9061 6.1147804 3696.1691 629.41266 -10578.488 0 293.05459 -0.00052503148 -0.00054155357 + 21620 -6246.7434 -6253.4934 6.7499832 3696.365 627.08877 -10576.947 0 323.49707 -0.000687763 -0.00069960902 + 21630 -6246.6693 -6254.0894 7.4201028 3695.9436 624.99986 -10575.033 0 355.61296 -0.00081823701 -0.00082769697 + 21640 -6246.5759 -6254.5945 8.0185514 3694.8009 623.33291 -10572.728 0 384.29398 -0.00090605776 -0.00091648358 + 21650 -6246.5041 -6254.8794 8.3753363 3693.0482 622.24116 -10570.169 0 401.39311 -0.00094941264 -0.00096189208 + 21660 -6246.4989 -6254.8491 8.350233 3690.9482 621.8383 -10567.636 0 400.19002 -0.00094988507 -0.00096246766 + 21670 -6246.5741 -6254.5002 7.9260434 3688.8226 622.18098 -10565.504 0 379.86047 -0.00090844508 -0.00091832912 + 21680 -6246.7031 -6253.9272 7.2240651 3686.9981 623.2443 -10564.17 0 346.21773 -0.00082654938 -0.00083290578 + 21690 -6246.8416 -6253.2773 6.4356853 3685.8002 624.90316 -10563.981 0 308.43415 -0.00071113007 -0.00071598249 + 21700 -6246.9591 -6252.6895 5.7303775 3685.5471 626.93524 -10565.172 0 274.63184 -0.00057843194 -0.00058506297 + 21710 -6247.0538 -6252.2557 5.2019281 3686.4946 629.05472 -10567.805 0 249.30558 -0.00045248906 -0.00046290276 + 21720 -6247.1443 -6252.0151 4.8708192 3688.733 630.97082 -10571.719 0 233.43699 -0.00035808756 -0.00037150657 + 21730 -6247.2493 -6251.9725 4.7231446 3692.0804 632.45069 -10576.504 0 226.35959 -0.0003117045 -0.00032515262 + 21740 -6247.3704 -6252.1226 4.752219 3696.0419 633.36271 -10581.527 0 227.753 -0.00031509717 -0.00032570426 + 21750 -6247.489 -6252.459 4.9700078 3699.8815 633.68844 -10586.029 0 238.19066 -0.00035493678 -0.00036234352 + 21760 -6247.5826 -6252.9588 5.3761849 3702.8064 633.50666 -10589.272 0 257.65695 -0.00040880906 -0.00041573791 + 21770 -6247.6472 -6253.5594 5.9121842 3704.1923 632.96036 -10590.712 0 283.34504 -0.00045446754 -0.0004648184 + 21780 -6247.7071 -6254.1567 6.4496057 3703.7536 632.21466 -10590.125 0 309.10129 -0.00047775704 -0.00049367536 + 21790 -6247.8025 -6254.637 6.8344132 3701.5967 631.41164 -10587.645 0 327.54343 -0.00047623642 -0.00049649735 + 21800 -6247.9637 -6254.9203 6.9566481 3698.1618 630.63179 -10583.714 0 333.40161 -0.00045847699 -0.00047934589 + 21810 -6248.1914 -6254.9859 6.7944989 3694.1 629.87633 -10578.962 0 325.63051 -0.0004407087 -0.00045842148 + 21820 -6248.4579 -6254.8645 6.4065884 3690.1313 629.08169 -10574.078 0 307.03966 -0.00044229659 -0.00045524411 + 21830 -6248.7247 -6254.6116 5.886843 3686.9099 628.16456 -10569.686 0 282.13055 -0.00048066024 -0.0004898629 + 21840 -6248.9625 -6254.281 5.3184477 3684.9098 627.07937 -10566.27 0 254.88986 -0.00056594611 -0.00057379377 + 21850 -6249.1611 -6253.9172 4.7560998 3684.3387 625.862 -10564.118 0 227.93899 -0.00069632628 -0.00070473097 + 21860 -6249.3247 -6253.5644 4.2397153 3685.0984 624.64018 -10563.303 0 203.19095 -0.00085558767 -0.00086490778 + 21870 -6249.4615 -6253.2799 3.8183571 3686.8082 623.60784 -10563.696 0 182.9971 -0.0010147168 -0.001024046 + 21880 -6249.5746 -6253.1317 3.5571028 3688.9036 622.97664 -10565.012 0 170.47633 -0.0011380197 -0.0011463307 + 21890 -6249.6617 -6253.1772 3.5155511 3690.7944 622.92307 -10566.895 0 168.48493 -0.0011924457 -0.0011994962 + 21900 -6249.7196 -6253.4322 3.7125976 3692.0371 623.54464 -10569.014 0 177.92851 -0.0011572819 -0.0011635836 + 21910 -6249.7485 -6253.8546 4.1060248 3692.4609 624.83008 -10571.146 0 196.78375 -0.0010310966 -0.0010372173 + 21920 -6249.7514 -6254.3551 4.6036878 3692.2046 626.64584 -10573.206 0 220.63455 -0.00083379598 -0.00083983484 + 21930 -6249.7303 -6254.8272 5.096873 3691.6553 628.74377 -10575.226 0 244.27075 -0.00060319117 -0.00060891648 + 21940 -6249.6849 -6255.1772 5.4922608 3691.3137 630.79735 -10577.288 0 263.21996 -0.00038678053 -0.00039213352 + 21950 -6249.6142 -6255.3425 5.7283162 3691.6249 632.46716 -10579.435 0 274.53305 -0.00023037253 -0.00023574474 + 21960 -6249.5186 -6255.2977 5.77912 3692.8167 633.48315 -10581.598 0 276.96786 -0.00016609886 -0.00017217637 + 21970 -6249.4 -6255.0536 5.6535481 3694.7941 633.71793 -10583.566 0 270.94975 -0.00020324636 -0.00021067663 + 21980 -6249.2607 -6254.6516 5.3908914 3697.1294 633.22157 -10585.003 0 258.36176 -0.00032530718 -0.00033445416 + 21990 -6249.1022 -6254.1531 5.0508926 3699.1607 632.19957 -10585.513 0 242.06711 -0.00049488765 -0.00050568518 + 22000 -6248.9257 -6253.6279 4.7022377 3700.1731 630.93827 -10584.739 0 225.35762 -0.00066508959 -0.00067695753 + 22010 -6248.7304 -6253.1474 4.4169616 3699.6057 629.7053 -10582.458 0 211.68558 -0.00079342195 -0.00080537937 + 22020 -6248.5097 -6252.7799 4.2702306 3697.2281 628.66486 -10578.673 0 204.65341 -0.0008536894 -0.00086477361 + 22030 -6248.2481 -6252.5845 4.3364295 3693.2405 627.84003 -10573.665 0 207.82604 -0.00084251083 -0.000852324 + 22040 -6247.9219 -6252.598 4.6761249 3688.2713 627.13244 -10568.002 0 224.10614 -0.00077901302 -0.00078808072 + 22050 -6247.5056 -6252.8218 5.3161943 3683.2608 626.38679 -10562.469 0 254.78186 -0.00069811336 -0.00070787237 + 22060 -6246.9855 -6253.2117 6.2261214 3679.2526 625.47496 -10557.939 0 298.39067 -0.00063938576 -0.00065170101 + 22070 -6246.3774 -6253.6743 7.2968917 3677.1362 624.37158 -10555.182 0 349.708 -0.00063441723 -0.00065057986 + 22080 -6245.7362 -6254.0787 8.3424372 3677.4015 623.19513 -10554.675 0 399.8164 -0.00069583071 -0.00071539813 + 22090 -6245.1427 -6254.2882 9.1454641 3679.9723 622.19618 -10556.457 0 438.30196 -0.00081126635 -0.0008316741 + 22100 -6244.6672 -6254.2065 9.5392895 3684.1886 621.69161 -10560.087 0 457.17628 -0.00094520641 -0.00096292515 + 22110 -6244.3361 -6253.8148 9.4787368 3688.9721 621.96633 -10564.753 0 454.27425 -0.0010493615 -0.001062187 + 22120 -6244.1262 -6253.1764 9.0502639 3693.1464 623.17818 -10569.501 0 433.73943 -0.0010786765 -0.0010874976 + 22130 -6243.9915 -6252.4046 8.4131538 3695.8008 625.2977 -10573.503 0 403.20554 -0.0010071794 -0.0010155618 + 22140 -6243.8983 -6251.616 7.7176918 3696.5526 628.09754 -10576.266 0 369.87509 -0.00083756061 -0.00084909 + 22150 -6243.8405 -6250.9059 7.0654087 3695.5997 631.19023 -10577.696 0 338.61403 -0.00060053999 -0.00061593746 + 22160 -6243.8259 -6250.3602 6.5342889 3693.5637 634.10433 -10578.028 0 313.15979 -0.0003442409 -0.000360755 + 22170 -6243.8512 -6250.077 6.2258028 3691.2239 636.38275 -10577.684 0 298.3754 -0.00011847004 -0.00013221434 + 22180 -6243.8909 -6250.1606 6.2696359 3689.2762 637.67962 -10577.116 0 300.47613 3.8829846e-05 2.941818e-05 + 22190 -6243.9113 -6250.6718 6.7605183 3688.1934 637.82841 -10576.694 0 324.00197 0.00010750039 9.992744e-05 + 22200 -6243.9028 -6251.5623 7.6595672 3688.1903 636.86277 -10576.615 0 367.08944 8.3068449e-05 7.252448e-05 + 22210 -6243.9075 -6252.6435 8.7360038 3689.2365 634.98764 -10576.868 0 418.67832 -2.8700017e-05 -4.5021251e-05 + 22220 -6244.0097 -6253.6375 9.6277944 3691.0579 632.51325 -10577.209 0 461.41793 -0.00021461638 -0.00023424471 + 22230 -6244.2787 -6254.3033 10.024577 3693.1311 629.77606 -10577.21 0 480.43397 -0.00045247523 -0.00046921167 + 22240 -6244.7082 -6254.5539 9.845632 3694.746 627.07819 -10576.378 0 471.85793 -0.00070973467 -0.00071957439 + 22250 -6245.2171 -6254.464 9.246911 3695.2058 624.66677 -10574.337 0 443.16386 -0.00094845136 -0.0009541652 + 22260 -6245.7173 -6254.1671 8.4497513 3694.0993 622.74498 -10571.011 0 404.9595 -0.0011355733 -0.0011446827 + 22270 -6246.1761 -6253.7517 7.5756084 3691.4705 621.48148 -10566.704 0 363.06566 -0.0012507832 -0.0012685949 + 22280 -6246.6096 -6253.2533 6.6437164 3687.7686 620.99443 -10562.016 0 318.40417 -0.0012865985 -0.0013112623 + 22290 -6247.0342 -6252.7214 5.6872051 3683.6481 621.31709 -10557.687 0 272.56278 -0.0012439891 -0.0012680501 + 22300 -6247.4339 -6252.2668 4.832961 3679.784 622.37108 -10554.422 0 231.62261 -0.0011303432 -0.0011467268 + 22310 -6247.7689 -6252.0356 4.2666384 3676.7968 623.96552 -10552.798 0 204.48125 -0.00096212759 -0.00096920756 + 22320 -6248.0053 -6252.1328 4.1275177 3675.2517 625.82432 -10553.209 0 197.81381 -0.00076847485 -0.00077074851 + 22330 -6248.1379 -6252.5581 4.4201927 3675.6353 627.63535 -10555.829 0 211.84043 -0.00059008043 -0.00059471542 + 22340 -6248.1972 -6253.1951 4.9979156 3678.2488 629.1134 -10560.557 0 239.52816 -0.00047047536 -0.00048243226 + 22350 -6248.2371 -6253.8616 5.6245043 3683.0291 630.06616 -10566.957 0 269.5578 -0.00044139604 -0.00046023557 + 22360 -6248.3066 -6254.391 6.0843535 3689.3898 630.44633 -10574.227 0 291.59636 -0.00050815445 -0.0005285086 + 22370 -6248.4201 -6254.7028 6.2826598 3696.2011 630.36958 -10581.273 0 301.10031 -0.00064268736 -0.00065819363 + 22380 -6248.5478 -6254.8192 6.2713436 3701.997 630.08378 -10586.9 0 300.55797 -0.00078991228 -0.00079796433 + 22390 -6248.64 -6254.8159 6.1758901 3705.385 629.88941 -10590.09 0 295.98331 -0.00088713958 -0.00089081048 + 22400 -6248.6683 -6254.745 6.076696 3705.5086 630.02882 -10590.282 0 291.22937 -0.00088910111 -0.00089454011 + 22410 -6248.6477 -6254.5938 5.946069 3702.3464 630.57905 -10587.519 0 284.96899 -0.00078711589 -0.00079852976 + 22420 -6248.622 -6254.3174 5.695418 3696.7106 631.39251 -10582.42 0 272.95639 -0.00061333001 -0.00062980667 + 22430 -6248.6243 -6253.9081 5.2837426 3689.9672 632.12244 -10575.998 0 253.22659 -0.00042866791 -0.0004453523 + 22440 -6248.6515 -6253.4378 4.7863011 3683.6234 632.33621 -10569.397 0 229.3864 -0.00030092964 -0.00031323345 + 22450 -6248.6683 -6253.0358 4.367575 3678.9418 631.67661 -10563.654 0 209.3187 -0.00028261659 -0.0002898815 + 22460 -6248.6358 -6252.8215 4.1856266 3676.6816 630.00611 -10559.509 0 200.59871 -0.00039587963 -0.00040174701 + 22470 -6248.5405 -6252.8404 4.2999503 3676.9908 627.47853 -10557.31 0 206.07775 -0.00062733631 -0.00063672485 + 22480 -6248.4037 -6253.0484 4.6447317 3679.4289 624.51441 -10556.992 0 222.6016 -0.0009317634 -0.00094679543 + 22490 -6248.2659 -6253.3515 5.0855706 3683.0913 621.69241 -10558.135 0 243.72908 -0.0012423365 -0.0012604221 + 22500 -6248.1539 -6253.6744 5.52048 3686.8213 619.59503 -10560.091 0 264.57237 -0.0014855587 -0.0015014693 + 22510 -6248.0562 -6253.9983 5.9421253 3689.5039 618.65981 -10562.162 0 284.77998 -0.0015994476 -0.0016099742 + 22520 -6247.9345 -6254.3304 6.3959173 3690.4027 619.07974 -10563.813 0 306.52824 -0.0015520333 -0.0015590889 + 22530 -6247.7663 -6254.6313 6.8649899 3689.4246 620.77366 -10564.83 0 329.00884 -0.0013538757 -0.0013628109 + 22540 -6247.576 -6254.7812 7.2052614 3687.1627 623.42123 -10565.365 0 345.31656 -0.0010568536 -0.0010713412 + 22550 -6247.4198 -6254.6405 7.2207002 3684.6489 626.54583 -10565.835 0 346.05647 -0.00073639631 -0.00075489306 + 22560 -6247.3355 -6254.1579 6.8224087 3682.9304 629.62704 -10566.715 0 326.96811 -0.00046433413 -0.00048153849 + 22570 -6247.3087 -6253.4305 6.1217805 3682.6926 632.21882 -10568.342 0 293.39007 -0.00028618764 -0.0002978254 + 22580 -6247.287 -6252.6635 5.3765055 3684.0939 634.0389 -10570.796 0 257.67231 -0.0002132312 -0.00021959027 + 22590 -6247.2224 -6252.0689 4.8465023 3686.8238 634.99892 -10573.892 0 232.27158 -0.00022938644 -0.00023477202 + 22600 -6247.1011 -6251.7761 4.674908 3690.2806 635.17048 -10577.227 0 224.04782 -0.00030511526 -0.00031415632 + 22610 -6246.9428 -6251.8054 4.8625976 3693.7556 634.71161 -10580.273 0 233.04296 -0.00040983938 -0.00042383752 + 22620 -6246.775 -6252.1015 5.3264994 3696.5626 633.79094 -10582.455 0 255.27574 -0.00051882879 -0.00053495405 + 22630 -6246.6064 -6252.5865 5.9800744 3698.1226 632.53983 -10583.249 0 286.59872 -0.00061536338 -0.00062921298 + 22640 -6246.418 -6253.1859 6.7679464 3698.0411 631.0438 -10582.271 0 324.35796 -0.00069109767 -0.00070048921 + 22650 -6246.1831 -6253.813 7.6298424 3696.1971 629.36649 -10579.377 0 365.66486 -0.00074628714 -0.00075307147 + 22660 -6245.9014 -6254.3412 8.4398427 3692.8078 627.58581 -10574.735 0 404.48462 -0.00078878254 -0.00079712241 + 22670 -6245.6135 -6254.6169 9.0034475 3688.4046 625.81911 -10568.841 0 431.49572 -0.00082979378 -0.00084260472 + 22680 -6245.3789 -6254.5236 9.144629 3683.6992 624.22197 -10562.445 0 438.26193 -0.00087705761 -0.00089397467 + 22690 -6245.2349 -6254.0519 8.8170794 3679.4007 622.9611 -10556.414 0 422.56392 -0.00092964456 -0.00094809909 + 22700 -6245.175 -6253.3154 8.1403295 3676.0776 622.17478 -10551.568 0 390.13026 -0.0009785256 -0.00099633501 + 22710 -6245.1649 -6252.4996 7.3347248 3674.1051 621.93735 -10548.542 0 351.52117 -0.0010124382 -0.0010293034 + 22720 -6245.1703 -6251.7889 6.6186174 3673.6663 622.24063 -10547.696 0 317.20128 -0.0010243164 -0.0010413785 + 22730 -6245.1736 -6251.3132 6.1395113 3674.7601 622.99956 -10549.073 0 294.23983 -0.0010138701 -0.0010324083 + 22740 -6245.1731 -6251.1287 5.9555943 3677.2014 624.0819 -10552.412 0 285.42549 -0.00098566629 -0.0010061585 + 22750 -6245.1756 -6251.2205 6.0448783 3680.6312 625.35138 -10557.203 0 289.70449 -0.00094508787 -0.00096689947 + 22760 -6245.1915 -6251.5184 6.3268793 3684.5494 626.70493 -10562.773 0 303.21956 -0.0008947351 -0.00091626322 + 22770 -6245.2295 -6251.9289 6.6993309 3688.3746 628.08644 -10568.39 0 321.06953 -0.00083259885 -0.00085199757 + 22780 -6245.2914 -6252.3725 7.0810116 3691.5336 629.47287 -10573.379 0 339.36181 -0.00075285523 -0.00076934057 + 22790 -6245.3744 -6252.8034 7.4289596 3693.5848 630.8438 -10577.232 0 356.03743 -0.00065012807 -0.00066491136 + 22800 -6245.4832 -6253.1969 7.713742 3694.3469 632.15016 -10579.694 0 369.6858 -0.00052638098 -0.00054194449 + 22810 -6245.6398 -6253.5263 7.8865017 3693.9617 633.29296 -10580.781 0 377.96541 -0.00039637413 -0.00041428559 + 22820 -6245.8749 -6253.761 7.8860269 3692.8313 634.12011 -10580.712 0 377.94266 -0.00028672427 -0.00030601279 + 22830 -6246.2038 -6253.8865 7.682713 3691.4501 634.45043 -10579.787 0 368.19872 -0.00022756963 -0.00024535639 + 22840 -6246.61 -6253.917 7.3070097 3690.2197 634.12666 -10578.263 0 350.19291 -0.0002413675 -0.00025514576 + 22850 -6247.0525 -6253.8818 6.8292508 3689.3346 633.08084 -10576.297 0 327.29602 -0.00033493666 -0.00034435537 + 22860 -6247.4877 -6253.8024 6.3147114 3688.7663 631.38113 -10573.95 0 302.6364 -0.00049758423 -0.00050437444 + 22870 -6247.886 -6253.6855 5.7995304 3688.3242 629.2349 -10571.245 0 277.94604 -0.00070415863 -0.00071071143 + 22880 -6248.2345 -6253.5378 5.3032681 3687.7501 626.94483 -10568.233 0 254.16236 -0.00092071296 -0.0009287463 + 22890 -6248.5313 -6253.3857 4.8544154 3686.8181 624.83612 -10565.04 0 232.65082 -0.0011115293 -0.0011216918 + 22900 -6248.7805 -6253.2775 4.4970107 3685.4195 623.18266 -10561.88 0 215.52199 -0.0012468223 -0.0012589636 + 22910 -6248.9909 -6253.2625 4.2715854 3683.6165 622.15557 -10559.035 0 204.71834 -0.0013095378 -0.001322954 + 22920 -6249.1747 -6253.3665 4.1918132 3681.6472 621.80475 -10556.818 0 200.89521 -0.0012988435 -0.0013123165 + 22930 -6249.3413 -6253.5819 4.2405575 3679.8773 622.07047 -10555.53 0 203.23131 -0.0012288205 -0.0012409049 + 22940 -6249.4913 -6253.8771 4.3858007 3678.7115 622.81436 -10555.403 0 210.19218 -0.0011231618 -0.0011330405 + 22950 -6249.6145 -6254.2099 4.5954432 3678.4929 623.85921 -10556.562 0 220.23942 -0.0010084206 -0.001016856 + 22960 -6249.6987 -6254.5324 4.8337286 3679.4209 625.02992 -10558.983 0 231.6594 -0.00090813832 -0.00091752947 + 22970 -6249.7423 -6254.7882 5.0459466 3681.499 626.18989 -10562.477 0 241.83007 -0.0008385558 -0.00085160287 + 22980 -6249.7603 -6254.9171 5.1568444 3684.5099 627.26625 -10566.693 0 247.14492 -0.00080540382 -0.0008231012 + 22990 -6249.7762 -6254.8782 5.1019771 3688.0182 628.25584 -10571.152 0 244.51537 -0.00080174844 -0.00082234337 + 23000 -6249.8029 -6254.6821 4.8791677 3691.4165 629.20607 -10575.305 0 233.83709 -0.00080855734 -0.00082866841 + 23010 -6249.83 -6254.404 4.5739384 3694.0413 630.17339 -10578.619 0 219.20879 -0.00080042463 -0.0008176519 + 23020 -6249.8312 -6254.1518 4.3205908 3695.3593 631.17316 -10580.684 0 207.06695 -0.00075658784 -0.00077127822 + 23030 -6249.7865 -6254.0061 4.2196539 3695.1568 632.13966 -10581.303 0 202.22949 -0.00067273031 -0.00068715221 + 23040 -6249.6966 -6253.9793 4.282728 3693.6268 632.91405 -10580.52 0 205.25235 -0.00056645105 -0.00058223317 + 23050 -6249.5763 -6254.028 4.4517387 3691.2917 633.27064 -10578.59 0 213.35229 -0.00047225743 -0.00048871962 + 23060 -6249.4335 -6254.098 4.6644532 3688.8004 632.981 -10575.879 0 223.54677 -0.00042849095 -0.00044343499 + 23070 -6249.2573 -6254.1559 4.898574 3686.7071 631.89892 -10572.762 0 234.76715 -0.00046302155 -0.00047499046 + 23080 -6249.0239 -6254.1847 5.1608576 3685.3223 630.03505 -10569.542 0 247.33725 -0.00058372375 -0.00059349377 + 23090 -6248.715 -6254.1617 5.4466781 3684.6652 627.58935 -10566.416 0 261.03538 -0.000775827 -0.00078590741 + 23100 -6248.3335 -6254.0499 5.7164176 3684.5018 624.92466 -10563.476 0 273.96281 -0.0010051749 -0.0010179092 + 23110 -6247.9036 -6253.8139 5.9102924 3684.4396 622.48736 -10560.741 0 283.25437 -0.001225716 -0.0012415012 + 23120 -6247.4598 -6253.449 5.9891699 3684.0576 620.70013 -10558.207 0 287.03463 -0.0013898124 -0.0014066596 + 23130 -6247.0272 -6253.0017 5.9745693 3683.0492 619.85997 -10555.911 0 286.33488 -0.0014596069 -0.0014744269 + 23140 -6246.606 -6252.5684 5.9624152 3681.3472 620.0719 -10553.987 0 285.75239 -0.0014169099 -0.0014279515 + 23150 -6246.172 -6252.2623 6.0902917 3679.2057 621.23693 -10552.705 0 291.88095 -0.0012689927 -0.0012778439 + 23160 -6245.6991 -6252.1581 6.4589906 3677.2035 623.09501 -10552.457 0 309.55107 -0.001048345 -0.0010595826 + 23170 -6245.1908 -6252.2446 7.0537909 3676.1254 625.30436 -10553.674 0 338.05724 -0.00080518468 -0.00082326733 + 23180 -6244.6938 -6252.4291 7.7353574 3676.7052 627.5292 -10556.664 0 370.72173 -0.00059298315 -0.00061864829 + 23190 -6244.2733 -6252.5965 8.3231696 3679.3045 629.5114 -10561.412 0 398.89299 -0.0004507723 -0.00048019655 + 23200 -6243.9714 -6252.6785 8.7071648 3683.6854 631.11225 -10567.476 0 417.29619 -0.00038986556 -0.00041756273 + 23210 -6243.7838 -6252.6765 8.8927072 3689.0192 632.3173 -10574.013 0 426.18843 -0.00039239189 -0.0004153468 + 23220 -6243.6765 -6252.6283 8.9518686 3694.1409 633.20079 -10579.97 0 429.02377 -0.0004228713 -0.00044242707 + 23230 -6243.6186 -6252.5627 8.9440511 3697.9261 633.856 -10584.345 0 428.64912 -0.00044640372 -0.00046679259 + 23240 -6243.6025 -6252.4802 8.8777319 3699.6217 634.31764 -10586.42 0 425.47072 -0.00044427248 -0.00046945812 + 23250 -6243.6414 -6252.3627 8.7212958 3699.0229 634.51836 -10585.904 0 417.97343 -0.00042066538 -0.00045165432 + 23260 -6243.7545 -6252.1926 8.4380098 3696.4514 634.30966 -10582.954 0 404.39678 -0.00039841756 -0.00043238222 + 23270 -6243.9437 -6251.98 8.0362216 3692.5604 633.53937 -10578.08 0 385.14083 -0.00040558524 -0.00043763564 + 23280 -6244.1786 -6251.7849 7.6063735 3688.0773 632.14445 -10572.007 0 364.5401 -0.00045976814 -0.00048672933 + 23290 -6244.4094 -6251.6961 7.2867491 3683.6341 630.21248 -10565.543 0 349.2219 -0.00055967574 -0.00058274103 + 23300 -6244.6041 -6251.7673 7.1632137 3679.7413 627.9814 -10559.49 0 343.30139 -0.00068814975 -0.00071154764 + 23310 -6244.7728 -6251.9728 7.1999969 3676.8178 625.77423 -10554.565 0 345.06425 -0.00082218336 -0.00084895753 + 23320 -6244.9545 -6252.2306 7.276066 3675.1773 623.89742 -10551.305 0 348.70991 -0.00094233002 -0.0009713545 + 23330 -6245.1791 -6252.4694 7.2902758 3674.9622 622.55175 -10549.983 0 349.39092 -0.0010372515 -0.0010642023 + 23340 -6245.4417 -6252.6776 7.2358744 3676.0954 621.79749 -10550.57 0 346.7837 -0.0011036299 -0.0011247696 + 23350 -6245.7082 -6252.8944 7.1861268 3678.2979 621.58217 -10552.774 0 344.39952 -0.0011435948 -0.0011589627 + 23360 -6245.9444 -6253.1594 7.2150392 3681.16 621.8056 -10556.125 0 345.78516 -0.0011613709 -0.0011748858 + 23370 -6246.1425 -6253.4631 7.3205732 3684.2192 622.38549 -10560.068 0 350.84294 -0.0011598144 -0.0011763613 + 23380 -6246.3276 -6253.7333 7.4057542 3687.0178 623.29652 -10564.048 0 354.9253 -0.001137209 -0.0011588806 + 23390 -6246.537 -6253.8724 7.3353844 3689.1409 624.56965 -10567.583 0 351.55278 -0.0010853804 -0.0011097177 + 23400 -6246.7862 -6253.8243 7.0381487 3690.2569 626.2491 -10570.33 0 337.30758 -0.00099125476 -0.0010132143 + 23410 -6247.0475 -6253.6238 6.5762755 3690.1937 628.32164 -10572.139 0 315.17202 -0.00084397928 -0.00086043472 + 23420 -6247.2671 -6253.3781 6.1110356 3689.0558 630.65147 -10573.085 0 292.87512 -0.00064659218 -0.00065947729 + 23430 -6247.4073 -6253.1908 5.7834963 3687.3108 632.95784 -10573.459 0 277.17759 -0.000425788 -0.00044075259 + 23440 -6247.4772 -6253.0965 5.6193576 3685.7287 634.85408 -10573.679 0 269.31114 -0.00023104383 -0.00025269439 + 23450 -6247.5215 -6253.0643 5.54283 3685.1227 635.94192 -10574.129 0 265.64351 -0.00011959783 -0.00014768876 + 23460 -6247.5828 -6253.0544 5.4716275 3685.9883 635.93339 -10574.976 0 262.23109 -0.0001333514 -0.00016317974 + 23470 -6247.6703 -6253.0627 5.3923532 3688.2385 634.75851 -10576.06 0 258.43182 -0.00027974568 -0.00030592598 + 23480 -6247.7608 -6253.1154 5.3545965 3691.1806 632.61345 -10576.909 0 256.62231 -0.00052634036 -0.00054646377 + 23490 -6247.8216 -6253.2338 5.4122534 3693.7438 629.92048 -10576.898 0 259.38555 -0.00081093779 -0.00082656165 + 23500 -6247.8339 -6253.4092 5.5753134 3694.8511 627.20825 -10575.469 0 267.2003 -0.0010621501 -0.0010771733 + 23510 -6247.8036 -6253.6023 5.798712 3693.7969 624.95745 -10572.357 0 277.90682 -0.0012224683 -0.0012403863 + 23520 -6247.7576 -6253.7593 6.0017228 3690.5024 623.47027 -10567.732 0 287.63623 -0.0012657665 -0.0012874011 + 23530 -6247.726 -6253.8379 6.1119176 3685.5609 622.80629 -10562.205 0 292.91739 -0.0012030388 -0.00122616 + 23540 -6247.7213 -6253.8364 6.1151142 3680.06 622.80027 -10556.697 0 293.07059 -0.0010750624 -0.0010963899 + 23550 -6247.7289 -6253.7953 6.0663962 3675.2682 623.15182 -10552.215 0 290.73574 -0.00093651924 -0.00095456615 + 23560 -6247.7233 -6253.7625 6.0392178 3672.3075 623.55507 -10549.625 0 289.4332 -0.00083826236 -0.00085440132 + 23570 -6247.6935 -6253.7489 6.0553824 3671.8901 623.82079 -10549.46 0 290.2079 -0.00081237763 -0.00082911822 + 23580 -6247.6526 -6253.7191 6.0664442 3674.15 623.94437 -10551.813 0 290.73804 -0.00086250399 -0.00088079259 + 23590 -6247.622 -6253.6303 6.0082824 3678.5941 624.09489 -10556.319 0 287.95061 -0.00096181562 -0.00098018234 + 23600 -6247.6065 -6253.4814 5.8749035 3684.2118 624.53343 -10562.227 0 281.55834 -0.0010610998 -0.0010775441 + 23610 -6247.587 -6253.3212 5.73421 3689.754 625.49616 -10568.571 0 274.81552 -0.0011064521 -0.0011210028 + 23620 -6247.5403 -6253.2086 5.6683685 3694.1033 627.08737 -10574.399 0 271.66002 -0.00106054 -0.0010756623 + 23630 -6247.4623 -6253.1647 5.7024442 3696.5833 629.21783 -10578.966 0 273.29312 -0.00091771974 -0.00093610289 + 23640 -6247.3729 -6253.1647 5.7917709 3697.0782 631.60629 -10581.849 0 277.57416 -0.00070589522 -0.00072788508 + 23650 -6247.2988 -6253.168 5.8692353 3695.9429 633.8438 -10582.955 0 281.28669 -0.00047540029 -0.00049844 + 23660 -6247.2518 -6253.1523 5.9005011 3693.7873 635.49993 -10582.439 0 282.78512 -0.00028131492 -0.00030171056 + 23670 -6247.2202 -6253.126 5.9058033 3691.2465 636.23509 -10580.608 0 283.03923 -0.00016693547 -0.00018252369 + 23680 -6247.1759 -6253.1169 5.9409168 3688.8211 635.88299 -10577.821 0 284.72207 -0.00015382151 -0.0001657177 + 23690 -6247.094 -6253.1457 6.0516902 3686.8207 634.48299 -10574.449 0 290.03095 -0.00024020999 -0.00025240337 + 23700 -6246.9716 -6253.2031 6.2315316 3685.3868 632.26037 -10570.85 0 298.64996 -0.00040600467 -0.00042286128 + 23710 -6246.8336 -6253.2504 6.416749 3684.5341 629.5647 -10567.349 0 307.52662 -0.00062046943 -0.00064375231 + 23720 -6246.7172 -6253.2488 6.5315267 3684.1673 626.78521 -10564.201 0 313.02741 -0.00084924067 -0.00087687653 + 23730 -6246.646 -6253.1955 6.5495059 3684.0851 624.26989 -10561.55 0 313.88907 -0.001059485 -0.0010870849 + 23740 -6246.6153 -6253.1319 6.5165905 3684.0151 622.2746 -10559.422 0 312.31158 -0.0012237284 -0.0012475962 + 23750 -6246.6006 -6253.1131 6.5124321 3683.6987 620.95329 -10557.765 0 312.11229 -0.0013228003 -0.0013419991 + 23760 -6246.579 -6253.165 6.5859646 3682.9935 620.37751 -10556.536 0 315.63638 -0.0013475177 -0.0013636618 + 23770 -6246.5445 -6253.2627 6.7182086 3681.9398 620.56083 -10555.763 0 321.97425 -0.0012989075 -0.0013143218 + 23780 -6246.5099 -6253.3426 6.832769 3680.7664 621.46806 -10555.577 0 327.46463 -0.0011875415 -0.0012033207 + 23790 -6246.4948 -6253.3383 6.8435049 3679.8405 623.00568 -10556.184 0 327.97915 -0.0010321602 -0.0010474219 + 23800 -6246.5073 -6253.2253 6.7179868 3679.5698 625.00649 -10557.802 0 321.96362 -0.00085682712 -0.0008698389 + 23810 -6246.5321 -6253.0479 6.5158893 3680.2885 627.23115 -10560.568 0 312.27797 -0.00068676274 -0.00069729839 + 23820 -6246.5401 -6252.8959 6.3558514 3682.1696 629.40263 -10564.468 0 304.60806 -0.0005446781 -0.00055535238 + 23830 -6246.5166 -6252.8377 6.3211033 3685.1837 631.26738 -10569.289 0 302.94274 -0.00044854224 -0.00046321245 + 23840 -6246.4804 -6252.867 6.3866531 3689.0774 632.6547 -10574.599 0 306.08425 -0.00040917547 -0.00042935398 + 23850 -6246.4714 -6252.9148 6.4434568 3693.3478 633.50501 -10579.768 0 308.80661 -0.00042616944 -0.00044888676 + 23860 -6246.5142 -6252.9185 6.4043374 3697.2482 633.85641 -10584.023 0 306.93178 -0.00048422852 -0.00050396162 + 23870 -6246.5902 -6252.8828 6.2926642 3699.8996 633.80312 -10586.586 0 301.57978 -0.00055492753 -0.0005684569 + 23880 -6246.6491 -6252.8717 6.2226155 3700.5389 633.45056 -10586.861 0 298.22265 -0.00060676456 -0.0006166128 + 23890 -6246.6545 -6252.9372 6.2827064 3698.8203 632.88504 -10584.642 0 301.10254 -0.00061973877 -0.00063262454 + 23900 -6246.6212 -6253.0577 6.4364897 3695.0037 632.16014 -10580.221 0 308.4727 -0.00059539666 -0.00061669505 + 23910 -6246.6109 -6253.1528 6.5418924 3689.8994 631.29327 -10574.345 0 313.52419 -0.00055535282 -0.00058445495 + 23920 -6246.6888 -6253.159 6.4702315 3684.5945 630.27035 -10568.024 0 310.0898 -0.00052966888 -0.00056029792 + 23930 -6246.8796 -6253.0921 6.2124628 3680.1128 629.06192 -10562.267 0 297.73608 -0.00054325522 -0.0005682478 + 23940 -6247.1545 -6253.0384 5.8839364 3677.1686 627.65128 -10557.858 0 281.99125 -0.00060791714 -0.00062432343 + 23950 -6247.4582 -6253.0891 5.6309464 3676.0774 626.06657 -10555.233 0 269.86655 -0.00072200005 -0.00073254355 + 23960 -6247.7524 -6253.274 5.5215933 3676.7899 624.40443 -10554.468 0 264.62573 -0.00087403148 -0.00088432244 + 23970 -6248.0355 -6253.5459 5.5103655 3678.9691 622.83497 -10555.35 0 264.08763 -0.0010454264 -0.001059681 + 23980 -6248.3272 -6253.8197 5.4925612 3682.0606 621.58318 -10557.464 0 263.23435 -0.0012108889 -0.0012294967 + 23990 -6248.6406 -6254.0307 5.3900775 3685.3695 620.88926 -10560.289 0 258.32276 -0.001339218 -0.0013594514 + 24000 -6248.9672 -6254.165 5.1978176 3688.1816 620.95606 -10563.303 0 249.10859 -0.0013978512 -0.0014164495 + 24010 -6249.2831 -6254.2486 4.9655529 3689.9342 621.89571 -10566.079 0 237.97716 -0.0013616532 -0.0013769827 + 24020 -6249.5651 -6254.3107 4.7456334 3690.3832 623.68716 -10568.381 0 227.43738 -0.0012228747 -0.0012353144 + 24030 -6249.8029 -6254.3576 4.554689 3689.6905 626.15475 -10570.203 0 218.28625 -0.00099763766 -0.0010084993 + 24040 -6249.9991 -6254.3731 4.3739584 3688.384 628.97661 -10571.734 0 209.62463 -0.00072545158 -0.00073566713 + 24050 -6250.1608 -6254.3405 4.1796871 3687.1954 631.728 -10573.264 0 200.31406 -0.00046101057 -0.0004706386 + 24060 -6250.2912 -6254.2666 3.9753992 3686.8256 633.95772 -10575.05 0 190.52344 -0.00026052495 -0.00026926794 + 24070 -6250.3872 -6254.1856 3.7984115 3687.7164 635.28511 -10577.187 0 182.04119 -0.00016694778 -0.00017496645 + 24080 -6250.445 -6254.14 3.6950604 3689.8971 635.49335 -10579.531 0 177.08803 -0.0001986372 -0.00020673379 + 24090 -6250.4657 -6254.1539 3.6882592 3692.9475 634.58964 -10581.691 0 176.76208 -0.00034440282 -0.00035339729 + 24100 -6250.4553 -6254.2226 3.7673742 3696.083 632.80822 -10583.114 0 180.55371 -0.00056596427 -0.00057602519 + 24110 -6250.4182 -6254.3232 3.9049483 3698.3474 630.54982 -10583.22 0 187.14703 -0.00080750638 -0.00081821262 + 24120 -6250.3524 -6254.43 4.0775454 3698.8763 628.27291 -10581.579 0 195.41885 -0.0010105911 -0.0010215988 + 24130 -6250.2513 -6254.522 4.270786 3697.1642 626.3703 -10578.057 0 204.68003 -0.0011306142 -0.0011421484 + 24140 -6250.1096 -6254.5819 4.472278 3693.2502 625.07073 -10572.903 0 214.33666 -0.0011494712 -0.0011621888 + 24150 -6249.9276 -6254.5946 4.6670316 3687.7559 624.39807 -10566.749 0 223.67034 -0.0010798763 -0.0010943583 + 24160 -6249.7103 -6254.5505 4.8401881 3681.7583 624.20072 -10560.51 0 231.96897 -0.00095981974 -0.0009761717 + 24170 -6249.4647 -6254.4471 4.9824434 3676.5349 624.23828 -10555.22 0 238.78665 -0.00083917676 -0.00085696671 + 24180 -6249.1963 -6254.2907 5.0944546 3673.2453 624.29068 -10551.827 0 244.15485 -0.00076298272 -0.00078150397 + 24190 -6248.9074 -6254.0952 5.1877926 3672.6372 624.24856 -10550.981 0 248.62813 -0.00075683273 -0.00077552214 + 24200 -6248.5983 -6253.8767 5.2784116 3674.8577 624.15388 -10552.888 0 252.9711 -0.00081906715 -0.0008377439 + 24210 -6248.2709 -6253.6446 5.3736385 3679.4244 624.18021 -10557.249 0 257.53491 -0.00092198 -0.00094061906 + 24220 -6247.9323 -6253.3967 5.4644585 3685.3563 624.56344 -10563.316 0 261.88751 -0.0010211492 -0.001039355 + 24230 -6247.5922 -6253.1274 5.5352579 3691.4211 625.50896 -10570.058 0 265.28062 -0.0010695468 -0.0010863362 + 24240 -6247.2561 -6252.8437 5.587511 3696.4311 627.10616 -10576.381 0 267.78488 -0.0010321208 -0.0010464641 + 24250 -6246.9193 -6252.5774 5.6581745 3699.5194 629.27516 -10581.372 0 271.17147 -0.00089686488 -0.00090871518 + 24260 -6246.5682 -6252.3819 5.8137439 3700.3344 631.75983 -10584.476 0 278.62723 -0.00067953342 -0.00069046387 + 24270 -6246.1918 -6252.3087 6.1169011 3699.0987 634.17032 -10585.578 0 293.15622 -0.00042072939 -0.00043338908 + 24280 -6245.7937 -6252.3773 6.5836036 3696.5061 636.06995 -10584.953 0 315.52323 -0.00017577763 -0.00019221426 + 24290 -6245.3979 -6252.5578 7.1598246 3693.4796 637.08918 -10583.127 0 343.13897 4.4908901e-07 -1.9467999e-05 + 24300 -6245.0395 -6252.7781 7.7386712 3690.8663 637.0334 -10580.678 0 370.88054 6.9680268e-05 4.9287222e-05 + 24310 -6244.745 -6252.9578 8.2127723 3689.1811 635.94079 -10578.08 0 393.60213 2.1801732e-05 4.8969958e-06 + 24320 -6244.5162 -6253.0435 8.5272401 3688.4984 634.05945 -10575.601 0 408.67319 -0.00012347317 -0.00013499203 + 24330 -6244.3323 -6253.0206 8.6882813 3688.5273 631.75101 -10573.299 0 416.39119 -0.00032656774 -0.00033487587 + 24340 -6244.1745 -6252.8905 8.7159944 3688.8193 629.36963 -10571.079 0 417.71935 -0.00054504214 -0.00055522681 + 24350 -6244.0514 -6252.6437 8.5923342 3688.98 627.17609 -10568.8 0 411.79286 -0.00074791881 -0.00076401287 + 24360 -6243.9947 -6252.2699 8.2751949 3688.7687 625.31815 -10566.357 0 396.59377 -0.00091913812 -0.00094069876 + 24370 -6244.0262 -6251.8058 7.7796399 3688.0684 623.86525 -10563.74 0 372.844 -0.0010504909 -0.0010730937 + 24380 -6244.1293 -6251.3653 7.2360168 3686.8227 622.86067 -10561.049 0 346.79053 -0.0011327443 -0.0011520273 + 24390 -6244.2583 -6251.1011 6.8427954 3685.0445 622.35647 -10558.502 0 327.94515 -0.0011537676 -0.0011690379 + 24400 -6244.3761 -6251.1197 6.7435492 3682.9004 622.41384 -10556.434 0 323.18871 -0.0011046524 -0.0011187376 + 24410 -6244.4821 -6251.4205 6.9384292 3680.7738 623.0722 -10555.267 0 332.52846 -0.00098770268 -0.001003759 + 24420 -6244.6077 -6251.9076 7.2998981 3679.2242 624.30468 -10555.437 0 349.85208 -0.00082009211 -0.00083880031 + 24430 -6244.7892 -6252.4528 7.6636151 3678.8433 625.98436 -10557.28 0 367.28343 -0.00063157472 -0.00065115609 + 24440 -6245.0424 -6252.9569 7.9145225 3680.0762 627.88269 -10560.916 0 379.30833 -0.0004581932 -0.00047675618 + 24450 -6245.3595 -6253.3696 8.0101479 3683.0748 629.71008 -10566.154 0 383.89123 -0.00033444341 -0.00035217911 + 24460 -6245.7256 -6253.667 7.9413512 3687.6205 631.19118 -10572.479 0 380.59411 -0.00028530096 -0.00030434002 + 24470 -6246.1363 -6253.8198 7.6835099 3693.118 632.14879 -10579.087 0 368.23691 -0.00031876069 -0.00034072876 + 24480 -6246.5949 -6253.7936 7.198702 3698.6566 632.56097 -10585.011 0 345.00219 -0.00042029147 -0.00044395773 + 24490 -6247.0907 -6253.5851 6.4944113 3703.1501 632.56224 -10589.297 0 311.24863 -0.0005526222 -0.00057419306 + 24500 -6247.5847 -6253.2592 5.6744366 3705.5697 632.38264 -10591.211 0 271.95084 -0.00066473232 -0.00068078035 + 24510 -6248.0237 -6252.9393 4.9155535 3705.2405 632.24691 -10590.427 0 235.5809 -0.00070983426 -0.00072012802 + 24520 -6248.372 -6252.7507 4.3787001 3702.1031 632.27405 -10587.128 0 209.85188 -0.00066536896 -0.00067296972 + 24530 -6248.631 -6252.7601 4.1290656 3696.8126 632.41779 -10581.991 0 197.88799 -0.00054479798 -0.00055349364 + 24540 -6248.8314 -6252.9576 4.1262292 3690.6046 632.4721 -10576.034 0 197.75206 -0.00039467796 -0.00040618943 + 24550 -6249.0078 -6253.2868 4.2790007 3684.959 632.14313 -10570.389 0 205.07372 -0.00027821504 -0.00029149011 + 24560 -6249.1772 -6253.6867 4.5094523 3681.1818 631.1658 -10566.034 0 216.11826 -0.0002527589 -0.00026556725 + 24570 -6249.3352 -6254.1111 4.7759658 3680.0489 629.42545 -10563.586 0 228.89108 -0.00035016484 -0.00036125961 + 24580 -6249.4682 -6254.5192 5.0510391 3681.6193 627.03962 -10563.178 0 242.07414 -0.00056604876 -0.00057600213 + 24590 -6249.5699 -6254.8598 5.289873 3685.248 624.36611 -10564.474 0 253.52039 -0.00085974392 -0.0008700199 + 24600 -6249.6472 -6255.0742 5.4270044 3689.7787 621.92877 -10566.782 0 260.0925 -0.0011639182 -0.0011753054 + 24610 -6249.7124 -6255.1184 5.4060358 3693.8594 620.28208 -10569.26 0 259.08757 -0.0014014971 -0.0014133647 + 24620 -6249.7715 -6254.9868 5.2152152 3696.3102 619.85761 -10571.155 0 249.94237 -0.0015063371 -0.0015172375 + 24630 -6249.8186 -6254.7169 4.8982186 3696.4541 620.84063 -10572.012 0 234.75012 -0.0014424742 -0.0014514305 + 24640 -6249.8398 -6254.373 4.5332049 3694.3214 623.11218 -10571.807 0 217.25661 -0.001216031 -0.0012234429 + 24650 -6249.8225 -6254.0193 4.196784 3690.6583 626.27042 -10570.948 0 201.13344 -0.00087550294 -0.0008830536 + 24660 -6249.7643 -6253.6985 3.9342012 3686.7255 629.72309 -10570.147 0 188.549 -0.00049983436 -0.00050945965 + 24670 -6249.6749 -6253.4248 3.7498517 3683.9355 632.8265 -10570.187 0 179.71394 -0.00017750128 -0.00018999608 + 24680 -6249.5716 -6253.1962 3.6246347 3683.4239 635.03536 -10571.655 0 173.71283 1.7729903e-05 3.5668878e-06 + 24690 -6249.4667 -6253.0221 3.5553764 3685.682 636.02518 -10574.729 0 170.39359 4.7655752e-05 3.4486155e-05 + 24700 -6249.354 -6252.9462 3.5921886 3690.372 635.75619 -10579.074 0 172.15783 -7.9409374e-05 -8.9458949e-05 + 24710 -6249.2047 -6253.0408 3.8361005 3696.4006 634.46439 -10583.906 0 183.84746 -0.0003119972 -0.00031951156 + 24720 -6248.983 -6253.3595 4.3764604 3702.2389 632.58435 -10588.183 0 209.74454 -0.00057301112 -0.00058159177 + 24730 -6248.6769 -6253.8759 5.1989904 3706.3743 630.62381 -10590.874 0 249.16479 -0.0007854238 -0.00079914442 + 24740 -6248.3206 -6254.4617 6.1410908 3707.7273 629.02048 -10591.209 0 294.31553 -0.00089626069 -0.00091594309 + 24750 -6247.9828 -6254.9361 6.9532529 3705.9023 628.02057 -10588.859 0 333.23889 -0.00088990067 -0.00091168921 + 24760 -6247.7222 -6255.1577 7.4354672 3701.2355 627.62185 -10584.015 0 356.34931 -0.00078739401 -0.00080557451 + 24770 -6247.5471 -6255.0835 7.5363582 3694.6827 627.60914 -10577.375 0 361.18457 -0.00063521314 -0.00064712434 + 24780 -6247.4209 -6254.7522 7.3312289 3687.6016 627.66999 -10570.024 0 351.35362 -0.00048981817 -0.0004982855 + 24790 -6247.3059 -6254.2208 6.9149702 3681.4628 627.53668 -10563.22 0 331.40417 -0.00040257422 -0.00041344895 + 24800 -6247.1986 -6253.5226 6.3239996 3677.5178 627.08916 -10558.13 0 303.08155 -0.0004066959 -0.00042361691 + 24810 -6247.1261 -6252.6873 5.5612375 3676.4879 626.38088 -10555.556 0 266.52571 -0.00050756365 -0.00052852955 + 24820 -6247.1094 -6251.8036 4.6941773 3678.368 625.59276 -10555.764 0 224.97132 -0.00067932283 -0.0006981291 + 24830 -6247.1309 -6251.0557 3.9247779 3682.4436 624.95335 -10558.453 0 188.09738 -0.00087098692 -0.00088253929 + 24840 -6247.1347 -6250.6797 3.5449921 3687.5452 624.66774 -10562.893 0 169.89591 -0.001022248 -0.0010273779 + 24850 -6247.0618 -6250.8447 3.7829147 3692.4552 624.87706 -10568.177 0 181.2985 -0.001083964 -0.0010894244 + 24860 -6246.8941 -6251.538 4.6438981 3696.2869 625.64311 -10573.468 0 222.56165 -0.0010345586 -0.0010477174 + 24870 -6246.6734 -6252.5483 5.8748457 3698.6598 626.94128 -10578.149 0 281.55557 -0.00088467872 -0.00090715127 + 24880 -6246.4757 -6253.5715 7.0957855 3699.6275 628.65573 -10581.855 0 340.06986 -0.00066860212 -0.00069445127 + 24890 -6246.3554 -6254.3637 8.0083424 3699.474 630.58765 -10584.425 0 383.8047 -0.00042854238 -0.0004489803 + 24900 -6246.3081 -6254.8307 8.5225835 3698.5506 632.48834 -10585.87 0 408.45002 -0.0002016637 -0.00021240628 + 24910 -6246.2868 -6255.0014 8.7145439 3697.2363 634.11104 -10586.349 0 417.64984 -1.6013172e-05 -2.095686e-05 + 24920 -6246.2564 -6254.9309 8.6745808 3695.9645 635.25896 -10586.154 0 415.73458 0.00010646235 9.8431557e-05 + 24930 -6246.2337 -6254.6259 8.3922892 3695.1932 635.81029 -10585.629 0 402.20559 0.00014715713 0.00012965785 + 24940 -6246.274 -6254.0549 7.7809073 3695.2593 635.71811 -10585.032 0 372.90474 9.4236921e-05 6.9051097e-05 + 24950 -6246.4138 -6253.2337 6.819926 3696.1761 634.9971 -10584.407 0 326.84912 -4.8689961e-05 -7.2706796e-05 + 24960 -6246.6228 -6252.306 5.683246 3697.527 633.71197 -10583.545 0 272.37304 -0.00025634493 -0.00027065252 + 24970 -6246.8127 -6251.5274 4.7147091 3698.5835 631.9759 -10582.087 0 225.95531 -0.00048590645 -0.0004899257 + 24980 -6246.8988 -6251.1389 4.2400159 3698.6266 629.9568 -10579.722 0 203.20535 -0.00069158118 -0.00069383377 + 24990 -6246.8619 -6251.2206 4.3586748 3697.288 627.87835 -10576.387 0 208.89215 -0.00084061616 -0.00085203615 + 25000 -6246.7612 -6251.6505 4.8892848 3694.6952 626.00037 -10572.346 0 234.32196 -0.00092033085 -0.00094528571 + 25010 -6246.6895 -6252.2044 5.514887 3691.3552 624.57408 -10568.134 0 264.30433 -0.00093333832 -0.00096592696 + 25020 -6246.7031 -6252.7121 6.0090401 3687.9045 623.78475 -10564.401 0 287.98692 -0.00088760499 -0.00091628782 + 25030 -6246.7812 -6253.143 6.3617706 3684.9216 623.70456 -10561.769 0 304.89175 -0.00079116597 -0.00080781505 + 25040 -6246.8487 -6253.5637 6.7150111 3682.8993 624.27454 -10560.738 0 321.82101 -0.00065582146 -0.00066184185 + 25050 -6246.8424 -6254.0183 7.1759007 3682.3054 625.32217 -10561.646 0 343.90942 -0.00050498028 -0.0005098375 + 25060 -6246.7687 -6254.4377 7.6689768 3683.5807 626.60953 -10564.628 0 367.5404 -0.00037580134 -0.00038941777 + 25070 -6246.7044 -6254.6547 7.9502534 3686.9797 627.899 -10569.533 0 381.02075 -0.00030901263 -0.00033409572 + 25080 -6246.738 -6254.516 7.7780309 3692.3085 629.01941 -10575.844 0 372.76688 -0.00032907916 -0.00035931626 + 25090 -6246.8965 -6254.0066 7.1101253 3698.7424 629.91232 -10582.661 0 340.7571 -0.00042633592 -0.00045177144 + 25100 -6247.1213 -6253.2881 6.1667138 3704.9123 630.64042 -10588.841 0 295.54352 -0.00055427575 -0.00056941933 + 25110 -6247.3158 -6252.6152 5.2993874 3709.2986 631.35138 -10593.265 0 253.97638 -0.00064671215 -0.00065462826 + 25120 -6247.4202 -6252.1884 4.7681587 3710.7722 632.20545 -10595.166 0 228.51692 -0.00064660453 -0.00065566471 + 25130 -6247.4507 -6252.0567 4.6060574 3709.0102 633.28671 -10594.354 0 220.74811 -0.00053106015 -0.00054743385 + 25140 -6247.4724 -6252.1432 4.6708399 3704.5855 634.52595 -10591.255 0 223.85286 -0.00032055204 -0.00034315023 + 25150 -6247.5375 -6252.3558 4.818272 3698.734 635.66995 -10586.76 0 230.91863 -7.0680694e-05 -9.2834274e-05 + 25160 -6247.6413 -6252.6739 5.0325905 3692.9574 636.32674 -10581.958 0 241.18998 0.00014648321 0.00013048934 + 25170 -6247.7315 -6253.1347 5.403158 3688.6423 636.08919 -10577.866 0 258.94965 0.00026262605 0.00025217596 + 25180 -6247.7605 -6253.7418 5.9812188 3686.7736 634.69916 -10575.214 0 286.65357 0.00022998598 0.00021856273 + 25190 -6247.7345 -6254.3862 6.6517035 3687.737 632.18689 -10574.31 0 318.78695 3.3882739e-05 1.4852122e-05 + 25200 -6247.7191 -6254.8598 7.1406757 3691.1964 628.92173 -10574.978 0 342.22125 -0.00029927483 -0.00032642828 + 25210 -6247.7906 -6254.9645 7.1738387 3696.0891 625.54127 -10576.595 0 343.8106 -0.00070143701 -0.00072987368 + 25220 -6247.9676 -6254.6424 6.6747196 3700.8304 622.77499 -10578.248 0 319.89001 -0.001074911 -0.0010957289 + 25230 -6248.1876 -6254.0241 5.8365502 3703.7651 621.22694 -10579.016 0 279.72023 -0.001319028 -0.0013288501 + 25240 -6248.3545 -6253.348 4.9934997 3703.7578 621.20185 -10578.308 0 239.31653 -0.0013646247 -0.0013687183 + 25250 -6248.4163 -6252.813 4.3966957 3700.6678 622.63365 -10576.114 0 210.71433 -0.0012009561 -0.0012088863 + 25260 -6248.3991 -6252.4875 4.0883761 3695.4521 625.12524 -10573.065 0 195.93792 -0.0008804287 -0.00089810315 + 25270 -6248.3737 -6252.3404 3.9666416 3689.8171 628.07028 -10570.228 0 190.10372 -0.0004979364 -0.00052310413 + 25280 -6248.39 -6252.342 3.9519926 3685.5923 630.81699 -10568.751 0 189.40166 -0.00015546219 -0.00018027386 + 25290 -6248.4373 -6252.5259 4.0885208 3684.1288 632.83451 -10569.489 0 195.94486 7.0911157e-05 5.3063654e-05 + 25300 -6248.4564 -6252.9523 4.4958843 3685.9579 633.84159 -10572.752 0 215.468 0.00014880191 0.00013817558 + 25310 -6248.3881 -6253.6165 5.2284712 3690.7587 633.86245 -10578.238 0 250.57768 8.9609582e-05 8.0578193e-05 + 25320 -6248.2195 -6254.3866 6.1671488 3697.5398 633.19173 -10585.118 0 295.56437 -6.3498796e-05 -7.7342195e-05 + 25330 -6247.9959 -6255.032 7.0360766 3704.9062 632.2782 -10592.216 0 337.20827 -0.00025196359 -0.00027247084 + 25340 -6247.7878 -6255.3325 7.5447367 3711.3406 631.56362 -10598.237 0 361.58612 -0.00041734341 -0.00044061509 + 25350 -6247.6359 -6255.1941 7.5582256 3715.4911 631.33278 -10602.018 0 362.23258 -0.00051424797 -0.00053451904 + 25360 -6247.5228 -6254.6868 7.1639798 3716.459 631.63036 -10602.776 0 343.33811 -0.00052042621 -0.00053553927 + 25370 -6247.3984 -6253.9796 6.5811795 3714.0345 632.27428 -10600.288 0 315.40705 -0.00044231538 -0.00045572405 + 25380 -6247.2326 -6253.2292 5.996567 3708.7759 632.95132 -10594.956 0 287.38914 -0.00031268238 -0.00033007538 + 25390 -6247.0432 -6252.5146 5.4714187 3701.858 633.34513 -10587.718 0 262.22109 -0.0001787659 -0.00020243884 + 25400 -6246.8743 -6251.8621 4.9878373 3694.7211 633.23918 -10579.822 0 239.04515 -8.4619903e-05 -0.0001108218 + 25410 -6246.7482 -6251.3188 4.5706562 3688.6708 632.55991 -10572.55 0 219.05149 -5.5904992e-05 -7.7673283e-05 + 25420 -6246.6335 -6250.9931 4.3596257 3684.6045 631.36148 -10566.959 0 208.93773 -9.4739691e-05 -0.00010787141 + 25430 -6246.4545 -6251.0152 4.560756 3682.9514 629.78034 -10563.747 0 218.57702 -0.0001860819 -0.00019326275 + 25440 -6246.1343 -6251.4462 5.3119342 3683.7696 627.99253 -10563.208 0 254.57769 -0.0003099402 -0.00031964613 + 25450 -6245.6454 -6252.2061 6.560612 3686.8612 626.19227 -10565.26 0 314.42134 -0.00045080983 -0.00047160651 + 25460 -6245.0402 -6253.0797 8.0394562 3691.792 624.59167 -10569.463 0 385.29585 -0.00059843116 -0.000632607 + 25470 -6244.435 -6253.8045 9.3694639 3697.8175 623.42732 -10575.049 0 449.03728 -0.00073986898 -0.00078108612 + 25480 -6243.9457 -6254.188 10.242274 3703.8336 622.95515 -10580.977 0 490.86726 -0.00084921242 -0.00088647675 + 25490 -6243.6189 -6254.1801 10.561285 3708.5072 623.41957 -10586.107 0 506.15603 -0.00088488603 -0.00091039351 + 25500 -6243.4203 -6253.852 10.431748 3710.6488 624.9929 -10589.494 0 499.94788 -0.00080157002 -0.00081629466 + 25510 -6243.2905 -6253.3075 10.017029 3709.6965 627.69442 -10590.698 0 480.07222 -0.00057366631 -0.00058597244 + 25520 -6243.2068 -6252.6107 9.4038603 3706.0463 631.3124 -10589.969 0 450.68575 -0.00021729534 -0.00023582171 + 25530 -6243.1929 -6251.793 8.60005 3701.009 635.36748 -10588.169 0 412.16265 0.00020356135 0.00017660936 + 25540 -6243.2766 -6250.9231 7.6464273 3696.3748 639.1586 -10586.456 0 366.4597 0.00059263971 0.00056237862 + 25550 -6243.4459 -6250.1595 6.7136091 3693.7854 641.90945 -10585.854 0 321.75382 0.00085221491 0.0008259923 + 25560 -6243.6463 -6249.7198 6.0735169 3694.1926 642.98412 -10586.897 0 291.07701 0.00091478979 0.00089585745 + 25570 -6243.8199 -6249.7703 5.9503985 3697.5978 642.09465 -10589.463 0 285.17648 0.00076271694 0.00074804582 + 25580 -6243.9523 -6250.3143 6.361995 3703.1019 639.41525 -10592.831 0 304.9025 0.00043125482 0.00041508561 + 25590 -6244.0897 -6251.1714 7.0817079 3709.1718 635.55165 -10595.895 0 339.39518 -1.6074135e-06 -2.1946285e-05 + 25600 -6244.3071 -6252.0774 7.7702522 3714.0199 631.37083 -10597.468 0 372.39408 -0.00043348082 -0.00045513625 + 25610 -6244.6505 -6252.8339 8.1834071 3716.0478 627.74938 -10596.631 0 392.19478 -0.00076173002 -0.00077979818 + 25620 -6245.1059 -6253.3853 8.2794562 3714.3222 625.33089 -10593.038 0 396.798 -0.00091168389 -0.0009249776 + 25630 -6245.6277 -6253.7695 8.1417584 3708.9584 624.37405 -10587.102 0 390.19874 -0.00086177694 -0.00087458954 + 25640 -6246.1887 -6254.0152 7.8264483 3701.2043 624.73152 -10579.951 0 375.08732 -0.00065292373 -0.000670871 + 25650 -6246.79 -6254.1004 7.3103209 3693.0958 625.95006 -10573.146 0 350.3516 -0.000373379 -0.00039788481 + 25660 -6247.4253 -6253.9978 6.5724338 3686.7864 627.44886 -10568.233 0 314.98791 -0.00012413462 -0.00015113043 + 25670 -6248.0517 -6253.7391 5.6873873 3683.8553 628.71397 -10566.308 0 272.57151 1.7936583e-05 -5.5520911e-06 + 25680 -6248.6041 -6253.4259 4.8217975 3684.8885 629.44409 -10567.759 0 231.08759 2.2250722e-05 5.6525121e-06 + 25690 -6249.0338 -6253.184 4.1502464 3689.4423 629.60637 -10572.233 0 198.9031 -9.373813e-05 -0.0001045178 + 25700 -6249.3295 -6253.1032 3.7736852 3696.3025 629.40074 -10578.806 0 180.85617 -0.00027787579 -0.00028693661 + 25710 -6249.5141 -6253.2059 3.6917972 3703.8789 629.16173 -10586.247 0 176.93164 -0.00046295079 -0.0004744676 + 25720 -6249.6265 -6253.4557 3.8292405 3710.6032 629.23492 -10593.294 0 183.51869 -0.0005860735 -0.00060194487 + 25730 -6249.7032 -6253.7918 4.0886097 3715.2524 629.86089 -10598.905 0 195.94912 -0.00060422942 -0.0006235866 + 25740 -6249.7653 -6254.1596 4.3943625 3717.1626 631.09478 -10602.417 0 210.60251 -0.00050412448 -0.00052456595 + 25750 -6249.8172 -6254.519 4.7017594 3716.3143 632.78269 -10603.616 0 225.33469 -0.00030497383 -0.00032426586 + 25760 -6249.8549 -6254.8296 4.9746712 3713.2828 634.60177 -10602.714 0 238.41416 -5.3342261e-05 -7.0298972e-05 + 25770 -6249.875 -6255.0386 5.1636231 3709.0604 636.15123 -10600.25 0 247.46979 0.00018935055 0.00017504584 + 25780 -6249.8779 -6255.0898 5.2119104 3704.7846 637.06384 -10596.938 0 249.78399 0.00036347203 0.0003517325 + 25790 -6249.8631 -6254.9484 5.0853686 3701.4483 637.10151 -10593.498 0 243.7194 0.00042669862 0.00041708192 + 25800 -6249.8268 -6254.6235 4.7966784 3699.6755 636.20775 -10590.507 0 229.88374 0.00036347946 0.00035497568 + 25810 -6249.765 -6254.1699 4.4048572 3699.6191 634.50746 -10588.296 0 211.10547 0.00018644034 0.00017759926 + 25820 -6249.6786 -6253.6758 3.9971955 3700.9822 632.26425 -10586.922 0 191.56804 -6.8854854e-05 -7.9329724e-05 + 25830 -6249.5734 -6253.2425 3.6690846 3703.1316 629.81725 -10586.191 0 175.84312 -0.00035281475 -0.00036545935 + 25840 -6249.4564 -6252.9613 3.5049099 3705.2695 627.51947 -10585.75 0 167.97495 -0.00061190091 -0.00062624218 + 25850 -6249.3311 -6252.8888 3.5576929 3706.6302 625.68963 -10585.209 0 170.5046 -0.00079829629 -0.00081293718 + 25860 -6249.1946 -6253.0299 3.8352737 3706.6675 624.57548 -10584.273 0 183.80783 -0.00087799983 -0.00089101187 + 25870 -6249.0363 -6253.3408 4.3045202 3705.1946 624.32177 -10582.857 0 206.29676 -0.00083649717 -0.00084631447 + 25880 -6248.8379 -6253.7466 4.9086355 3702.4541 624.9427 -10581.143 0 235.24936 -0.00068168726 -0.00068838855 + 25890 -6248.5823 -6254.1592 5.5769255 3699.1056 626.3102 -10579.575 0 267.27756 -0.00044385534 -0.00044994063 + 25900 -6248.2679 -6254.4862 6.2182808 3696.1172 628.17287 -10578.776 0 298.0149 -0.00017170838 -0.00018132499 + 25910 -6247.9198 -6254.638 6.7181575 3694.5469 630.21106 -10579.396 0 321.9718 7.6999747e-05 6.0308594e-05 + 25920 -6247.5843 -6254.5483 6.9640317 3695.236 632.11574 -10581.9 0 333.75547 0.00025002175 0.00022557011 + 25930 -6247.307 -6254.2018 6.894753 3698.5002 633.66478 -10586.367 0 330.43525 0.00031645296 0.00028701712 + 25940 -6247.11 -6253.6502 6.5402673 3703.9452 634.76836 -10592.364 0 313.44631 0.00027734673 0.00024769479 + 25950 -6246.9826 -6253.0042 6.0215429 3710.501 635.46688 -10598.972 0 288.58612 0.00016572319 0.00014008205 + 25960 -6246.8913 -6252.3997 5.5084094 3716.6882 635.8846 -10604.972 0 263.99388 3.5028771e-05 1.5055701e-05 + 25970 -6246.7972 -6251.9556 5.158386 3721.0321 636.15862 -10609.146 0 247.2188 -5.9820479e-05 -7.5499329e-05 + 25980 -6246.6734 -6251.7402 5.0667622 3722.4861 636.3701 -10610.596 0 242.82767 -8.1598511e-05 -9.6247932e-05 + 25990 -6246.5118 -6251.7605 5.2486793 3720.7252 636.50115 -10608.987 0 251.54616 -2.3002487e-05 -3.9893587e-05 + 26000 -6246.3211 -6251.9765 5.6554448 3716.2185 636.43265 -10604.628 0 271.04065 9.2219623e-05 7.1281076e-05 + 26010 -6246.1186 -6252.3261 6.2074516 3710.0705 635.9871 -10598.384 0 297.49591 0.00021893725 0.0001939841 + 26020 -6245.9238 -6252.7413 6.8174894 3703.6953 635.00646 -10591.443 0 326.73235 0.00030679696 0.00027921585 + 26030 -6245.7567 -6253.1496 7.3929025 3698.4378 633.43828 -10585.026 0 354.30937 0.00031690878 0.0002888778 + 26040 -6245.6381 -6253.4715 7.8334912 3695.2481 631.39293 -10580.113 0 375.42485 0.00023399444 0.00020818978 + 26050 -6245.5823 -6253.6344 8.0521422 3694.4866 629.14059 -10577.262 0 385.90384 7.0919046e-05 4.9968094e-05 + 26060 -6245.5854 -6253.603 8.0175918 3695.9019 627.04326 -10576.548 0 384.24799 -0.00013563322 -0.00015050697 + 26070 -6245.6205 -6253.3997 7.7792112 3698.7878 625.44998 -10577.638 0 372.82345 -0.00033743938 -0.00034790662 + 26080 -6245.6536 -6253.0887 7.4351226 3702.2637 624.60335 -10579.956 0 356.33279 -0.00049082026 -0.00050129778 + 26090 -6245.6695 -6252.7332 7.063674 3705.5609 624.5957 -10582.89 0 338.53089 -0.00056934124 -0.00058439756 + 26100 -6245.6823 -6252.3716 6.6892597 3708.1838 625.38266 -10585.938 0 320.58686 -0.00056676782 -0.0005879151 + 26110 -6245.7168 -6252.0345 6.3176689 3709.9075 626.83373 -10588.776 0 302.77814 -0.00049022435 -0.00051502829 + 26120 -6245.7826 -6251.7727 5.9901475 3710.6919 628.78747 -10591.252 0 287.08148 -0.00035061192 -0.00037481673 + 26130 -6245.8664 -6251.6538 5.7873324 3710.6232 631.08304 -10593.36 0 277.36144 -0.00015819953 -0.00017867841 + 26140 -6245.9455 -6251.7282 5.7827057 3709.9152 633.55443 -10595.198 0 277.1397 7.4511018e-05 5.8316185e-05 + 26150 -6246.0021 -6252.0008 5.9987135 3708.9254 635.99792 -10596.924 0 287.49201 0.00032663786 0.00031306472 + 26160 -6246.0308 -6252.4288 6.3979574 3708.1299 638.14562 -10598.704 0 306.62602 0.00056509395 0.00055131032 + 26170 -6246.0386 -6252.9349 6.896238 3708.0385 639.68064 -10600.654 0 330.50642 0.00074673534 0.00072979491 + 26180 -6246.045 -6253.4223 7.3773167 3709.053 640.30616 -10602.782 0 353.56241 0.00082746894 0.00080538155 + 26190 -6246.078 -6253.7922 7.7142321 3711.2942 639.84633 -10604.933 0 369.70929 0.00077671654 0.00074932211 + 26200 -6246.1622 -6253.9691 7.8069298 3714.4539 638.33399 -10606.757 0 374.15188 0.00059246608 0.00056145787 + 26210 -6246.3066 -6253.9247 7.6181033 3717.7668 636.04264 -10607.734 0 365.10226 0.00030951573 0.00027751201 + 26220 -6246.5021 -6253.6804 7.1783051 3720.1714 633.44135 -10607.293 0 344.02466 -5.3346289e-06 -3.5817697e-05 + 26230 -6246.7292 -6253.2934 6.5641302 3720.6337 631.07802 -10605.005 0 314.58995 -0.00027154771 -0.00029856925 + 26240 -6246.966 -6252.8437 5.8777223 3718.5158 629.42304 -10600.783 0 281.69343 -0.00042036848 -0.00044280624 + 26250 -6247.1913 -6252.426 5.2346536 3713.8549 628.72413 -10595.005 0 250.87397 -0.00041824323 -0.00043619063 + 26260 -6247.3899 -6252.1351 4.7452436 3707.4567 628.92618 -10588.518 0 227.4187 -0.00027943491 -0.00029438248 + 26270 -6247.5585 -6252.0459 4.4874676 3700.7529 629.69053 -10582.489 0 215.06463 -6.2528273e-05 -7.6860268e-05 + 26280 -6247.7097 -6252.1953 4.4855943 3695.4358 630.51523 -10578.146 0 214.97485 0.00014884806 0.00013285024 + 26290 -6247.8715 -6252.5721 4.700618 3692.9662 630.92203 -10576.46 0 225.27999 0.00027466147 0.00025578016 + 26300 -6248.0848 -6253.1139 5.0291426 3694.1093 630.64705 -10577.87 0 241.02473 0.00026650835 0.00024522194 + 26310 -6248.3968 -6253.7161 5.3193096 3698.6594 629.75952 -10582.135 0 254.93116 0.00012546756 0.00010402221 + 26320 -6248.8398 -6254.2626 5.4228124 3705.4598 628.64797 -10588.37 0 259.8916 -9.6736061e-05 -0.00011529337 + 26330 -6249.4005 -6254.6712 5.2706192 3712.7458 627.86494 -10595.282 0 252.59764 -0.00031545567 -0.00032927157 + 26340 -6250.0114 -6254.9194 4.9080561 3718.7213 627.89416 -10601.535 0 235.22159 -0.00044534359 -0.0004553222 + 26350 -6250.5848 -6255.0295 4.4446612 3722.1468 628.95276 -10606.129 0 213.0131 -0.00043398068 -0.00044318432 + 26360 -6251.0621 -6255.0331 3.9709799 3722.6768 630.91624 -10608.626 0 190.31164 -0.00028048544 -0.00029178586 + 26370 -6251.4304 -6254.9574 3.5269607 3720.8254 633.3749 -10609.158 0 169.03175 -3.1522029e-05 -4.5765247e-05 + 26380 -6251.7059 -6254.8344 3.1285137 3717.6535 635.7728 -10608.261 0 149.93593 0.00023939704 0.0002233444 + 26390 -6251.9107 -6254.7073 2.7965933 3714.3593 637.57224 -10606.639 0 134.02844 0.00045768344 0.00044168323 + 26400 -6252.0627 -6254.6188 2.5560994 3711.9186 638.39759 -10604.935 0 122.50263 0.0005694007 0.0005549846 + 26410 -6252.1739 -6254.5949 2.4209944 3710.8512 638.12164 -10603.568 0 116.02764 0.00055414593 0.00054218273 + 26420 -6252.2495 -6254.6422 2.3926319 3711.1451 636.87361 -10602.661 0 114.66835 0.00042721923 0.00041782669 + 26430 -6252.287 -6254.7574 2.4704081 3712.3412 634.97437 -10602.073 0 118.39582 0.00023128593 0.00022356999 + 26440 -6252.2786 -6254.9308 2.6522293 3713.7473 632.82822 -10601.506 0 127.10971 2.0308595e-05 1.2335717e-05 + 26450 -6252.2206 -6255.1381 2.9175128 3714.7037 630.81066 -10600.652 0 139.82358 -0.0001584613 -0.00016884083 + 26460 -6252.1197 -6255.3352 3.2154944 3714.7955 629.18543 -10599.316 0 154.10454 -0.00027734707 -0.00029112415 + 26470 -6251.9902 -6255.4716 3.4814381 3713.9382 628.07046 -10597.48 0 166.85005 -0.00033135844 -0.00034761076 + 26480 -6251.8435 -6255.5132 3.6697218 3712.3337 627.45696 -10595.304 0 175.87366 -0.00033216265 -0.00034864978 + 26490 -6251.6813 -6255.4527 3.7713823 3710.3553 627.26864 -10593.077 0 180.7458 -0.00029776062 -0.00031231214 + 26500 -6251.4975 -6255.3002 3.8026838 3708.4272 627.43173 -10591.159 0 182.24594 -0.00024333687 -0.0002548943 + 26510 -6251.2854 -6255.0683 3.7829409 3706.9365 627.92104 -10589.926 0 181.29975 -0.00017657338 -0.00018535871 + 26520 -6251.0429 -6254.7682 3.7253042 3706.1858 628.75902 -10589.713 0 178.53748 -9.8138684e-05 -0.00010526939 + 26530 -6250.7733 -6254.4172 3.6439076 3706.381 629.9699 -10590.768 0 174.6365 -6.2500029e-06 -1.32793e-05 + 26540 -6250.4836 -6254.0466 3.5629567 3707.6342 631.51588 -10593.197 0 170.75688 9.7127759e-05 8.8654729e-05 + 26550 -6250.1843 -6253.7 3.5157054 3709.9574 633.25406 -10596.911 0 168.49233 0.00020186866 0.00019096182 + 26560 -6249.8866 -6253.4221 3.5354476 3713.2267 634.945 -10601.594 0 169.43849 0.00029027029 0.00027699368 + 26570 -6249.5994 -6253.2465 3.6471374 3717.1292 636.31794 -10606.694 0 174.79129 0.00034355319 0.0003290484 + 26580 -6249.3237 -6253.1866 3.8628808 3721.1303 637.16591 -10611.483 0 185.13092 0.00035154212 0.00033737572 + 26590 -6249.0521 -6253.2323 4.1801782 3724.5111 637.42324 -10615.167 0 200.33759 0.0003201843 0.00030733891 + 26600 -6248.7726 -6253.3549 4.5822592 3726.5004 637.18363 -10617.039 0 219.60757 0.00027196962 0.00026009879 + 26610 -6248.4764 -6253.5149 5.0384402 3726.4862 636.64917 -10616.65 0 241.47032 0.00023777432 0.00022527491 + 26620 -6248.1655 -6253.6704 5.5049242 3724.2416 636.0377 -10613.95 0 263.82686 0.00024343491 0.00022840331 + 26630 -6247.8528 -6253.7878 5.9349881 3720.0691 635.49289 -10609.35 0 284.43793 0.00029755814 0.00027888674 + 26640 -6247.5542 -6253.8539 6.2996866 3714.7842 635.03368 -10603.672 0 301.91633 0.00038618545 0.00036382255 + 26650 -6247.2791 -6253.8752 6.5960182 3709.533 634.55933 -10597.967 0 316.1182 0.00047594082 0.00045036201 + 26660 -6247.0337 -6253.8575 6.8238172 3705.4997 633.90557 -10593.263 0 327.03561 0.00052411324 0.00049611205 + 26670 -6246.8278 -6253.7836 6.9558442 3703.5839 632.92971 -10590.297 0 333.36308 0.00049326969 0.00046457038 + 26680 -6246.6736 -6253.6202 6.9465974 3704.1275 631.59233 -10589.34 0 332.91993 0.00036699698 0.00034058737 + 26690 -6246.5703 -6253.3535 6.7832483 3706.7798 630.00523 -10590.139 0 325.09132 0.00016097075 0.00013981847 + 26700 -6246.4932 -6253.0177 6.5244744 3710.5817 628.42882 -10592.028 0 312.68942 -7.7186617e-05 -9.2521987e-05 + 26710 -6246.4045 -6252.6797 6.2752361 3714.2791 627.21885 -10594.178 0 300.74453 -0.00028157565 -0.00029410275 + 26720 -6246.2806 -6252.3937 6.1131407 3716.7571 626.73502 -10595.886 0 292.976 -0.00039008143 -0.00040461731 + 26730 -6246.1304 -6252.1701 6.0396453 3717.4099 627.23295 -10596.813 0 289.45369 -0.0003648407 -0.00038443826 + 26740 -6245.9854 -6251.9927 6.0072198 3716.2979 628.77026 -10597.061 0 287.89968 -0.00020284027 -0.00022650272 + 26750 -6245.8707 -6251.863 5.992331 3714.0674 631.16185 -10597.092 0 287.18612 6.524977e-05 4.1591557e-05 + 26760 -6245.7838 -6251.8203 6.0364377 3711.7146 634.00811 -10597.543 0 289.29997 0.000384477 0.00036480787 + 26770 -6245.6997 -6251.9158 6.2161308 3710.297 636.79195 -10599.005 0 297.91187 0.00068882144 0.00067446904 + 26780 -6245.5913 -6252.1669 6.5756755 3710.6532 639.01227 -10601.832 0 315.14327 0.00091577667 0.00090512118 + 26790 -6245.4493 -6252.529 7.0796203 3713.1678 640.31046 -10606.007 0 339.29513 0.0010207842 0.0010108927 + 26800 -6245.2898 -6252.9052 7.6153833 3717.6261 640.55285 -10611.084 0 364.9719 0.00098882463 0.00097755932 + 26810 -6245.1449 -6253.1873 8.0424177 3723.203 639.84733 -10616.238 0 385.43778 0.00083935107 0.00082652701 + 26820 -6245.0439 -6253.3069 8.2630739 3728.6212 638.4925 -10620.421 0 396.01287 0.00062171859 0.00060853635 + 26830 -6244.9953 -6253.2675 8.2721944 3732.4647 636.87941 -10622.612 0 396.44997 0.0004011819 0.00038838794 + 26840 -6244.9882 -6253.1322 8.1439423 3733.5802 635.37983 -10622.092 0 390.30341 0.00023906485 0.00022558253 + 26850 -6245.012 -6252.9719 7.9598107 3731.4426 634.2529 -10618.667 0 381.47879 0.00017355378 0.00015720553 + 26860 -6245.0744 -6252.8151 7.7406731 3726.3411 633.59019 -10612.746 0 370.97649 0.00020833208 0.00018821837 + 26870 -6245.1965 -6252.6446 7.448106 3719.3045 633.30832 -10605.257 0 356.95503 0.0003136724 0.00029175297 + 26880 -6245.3874 -6252.4391 7.0517761 3711.8046 633.1916 -10597.435 0 337.96068 0.00043915878 0.00041906313 + 26890 -6245.6263 -6252.2183 6.5920538 3705.3663 632.97678 -10590.561 0 315.92821 0.00053200739 0.0005158508 + 26900 -6245.8718 -6252.0455 6.1737258 3701.2224 632.45698 -10585.725 0 295.87958 0.00055347657 0.00053958284 + 26910 -6246.0926 -6251.9891 5.8965438 3700.086 631.57028 -10583.645 0 282.59547 0.00048865417 0.00047238425 + 26920 -6246.2922 -6252.0766 5.7843632 3702.0471 630.43931 -10584.563 0 277.21914 0.00034894649 0.00032617392 + 26930 -6246.509 -6252.2789 5.7699362 3706.5804 629.34527 -10588.205 0 276.52772 0.00016872423 0.0001393691 + 26940 -6246.7888 -6252.5363 5.7475636 3712.6558 628.64328 -10593.835 0 275.4555 -2.4719788e-06 -3.3604007e-05 + 26950 -6247.1504 -6252.8068 5.6564431 3718.9534 628.64754 -10600.408 0 271.08849 -0.00011147902 -0.00013753905 + 26960 -6247.5685 -6253.0961 5.5275715 3724.1743 629.52533 -10606.796 0 264.91224 -0.00011604533 -0.00013285325 + 26970 -6247.9914 -6253.4378 5.4463749 3727.3898 631.23454 -10612.062 0 261.02084 2.6079193e-07 -8.6927556e-06 + 26980 -6248.3796 -6253.837 5.4573372 3728.3137 633.52147 -10615.672 0 261.54622 0.00021837068 0.00021170182 + 26990 -6248.7313 -6254.2323 5.5010181 3727.3608 635.97602 -10617.569 0 263.63965 0.00048579695 0.00047620293 + 27000 -6249.0716 -6254.5212 5.4495935 3725.4331 638.12991 -10618.084 0 261.1751 0.00073274688 0.00071908319 + 27010 -6249.4191 -6254.6289 5.2097783 3723.5284 639.57554 -10617.733 0 249.68181 0.00089648284 0.00088160949 + 27020 -6249.7631 -6254.5601 4.7969851 3722.3626 640.07354 -10616.996 0 229.89844 0.00094250315 0.0009301341 + 27030 -6250.0705 -6254.3909 4.3204141 3722.1732 639.6124 -10616.177 0 207.05849 0.00087298975 0.00086457182 + 27040 -6250.3115 -6254.217 3.9054058 3722.7468 638.39513 -10615.359 0 187.16896 0.00072066627 0.00071468137 + 27050 -6250.4787 -6254.1015 3.6227935 3723.599 636.75744 -10614.458 0 173.62459 0.00053334997 0.00052700154 + 27060 -6250.5875 -6254.0587 3.4711536 3724.197 635.05102 -10613.307 0 166.35716 0.00035695807 0.00034848248 + 27070 -6250.6626 -6254.073 3.4103494 3724.1378 633.53894 -10611.75 0 163.44308 0.0002231467 0.00021291852 + 27080 -6250.7201 -6254.1324 3.4123242 3723.2435 632.34162 -10609.718 0 163.53772 0.00014443522 0.0001341691 + 27090 -6250.7579 -6254.2455 3.4875451 3721.5792 631.44781 -10607.272 0 167.14273 0.00011628757 0.00010714999 + 27100 -6250.7611 -6254.4255 3.6644379 3719.419 630.77691 -10604.621 0 175.62043 0.00012343827 0.00011479589 + 27110 -6250.7172 -6254.6562 3.939057 3717.1786 630.25809 -10602.093 0 188.78172 0.00014749423 0.00013749976 + 27120 -6250.6294 -6254.8733 4.2438962 3715.317 629.8873 -10600.078 0 203.39132 0.00017380904 0.00016129571 + 27130 -6250.5134 -6254.9861 4.4726894 3714.2192 629.73697 -10598.942 0 214.35637 0.00019622275 0.00018203529 + 27140 -6250.382 -6254.9287 4.5467475 3714.0984 629.9177 -10598.945 0 217.90565 0.00021813365 0.00020451025 + 27150 -6250.2307 -6254.6989 4.4682937 3714.9648 630.51475 -10600.178 0 214.1457 0.00024894263 0.00023743903 + 27160 -6250.0393 -6254.3575 4.3181866 3716.6754 631.5323 -10602.565 0 206.95173 0.00029711065 0.00028692645 + 27170 -6249.7862 -6253.9901 4.203842 3719.0239 632.87207 -10605.886 0 201.4717 0.00036351973 0.00035171145 + 27180 -6249.4629 -6253.6626 4.1996527 3721.8051 634.35456 -10609.822 0 201.27092 0.0004392321 0.00042273118 + 27190 -6249.0789 -6253.3995 4.3205405 3724.8106 635.77217 -10613.982 0 207.06454 0.00050947058 0.00048746612 + 27200 -6248.6539 -6253.1948 4.5409044 3727.7658 636.95179 -10617.912 0 217.62562 0.00056212692 0.00053709181 + 27210 -6248.203 -6253.0432 4.8402005 3730.2689 637.80317 -10621.115 0 231.96957 0.00059629151 0.0005727226 + 27220 -6247.7257 -6252.9633 5.2375486 3731.809 638.33521 -10623.108 0 251.01272 0.0006254268 0.00060681193 + 27230 -6247.2099 -6252.9881 5.7782677 3731.911 638.63263 -10623.532 0 276.92701 0.0006714508 0.00065749229 + 27240 -6246.6567 -6253.1231 6.4664536 3730.3735 638.79752 -10622.294 0 309.90874 0.00075054042 0.00073717068 + 27250 -6246.1087 -6253.307 7.1983853 3727.4695 638.87523 -10619.652 0 344.98701 0.00085794221 0.00084079686 + 27260 -6245.6431 -6253.4253 7.7822127 3723.946 638.79836 -10616.17 0 372.9673 0.00096266539 0.00094114485 + 27270 -6245.3235 -6253.38 8.056503 3720.7756 638.38768 -10612.543 0 386.11283 0.0010178503 0.00099566742 + 27280 -6245.1532 -6253.1564 8.0032112 3718.7833 637.42839 -10609.368 0 383.55879 0.00098148263 0.00096302653 + 27290 -6245.0792 -6252.8248 7.7455798 3718.351 635.79744 -10606.973 0 371.21164 0.00083572115 0.0008219306 + 27300 -6245.0373 -6252.4775 7.4402036 3719.3192 633.57895 -10605.376 0 356.5763 0.00059629409 0.00058398544 + 27310 -6244.9954 -6252.1633 7.1679197 3721.0797 631.10284 -10604.346 0 343.52693 0.00031031857 0.00029529549 + 27320 -6244.9624 -6251.8746 6.9122683 3722.7831 628.87887 -10603.537 0 331.27468 4.5083255e-05 2.5951662e-05 + 27330 -6244.9626 -6251.592 6.629377 3723.5931 627.44906 -10602.634 0 317.71694 -0.00012874199 -0.00014946974 + 27340 -6245.0018 -6251.3419 6.3400857 3722.9445 627.21582 -10601.502 0 303.85248 -0.00015604847 -0.00017448609 + 27350 -6245.053 -6251.2143 6.1613368 3720.7627 628.30831 -10600.285 0 295.28583 -1.4585918e-05 -2.9439096e-05 + 27360 -6245.0753 -6251.3187 6.2433537 3717.5889 630.5302 -10599.438 0 299.21654 0.0002740129 0.00025955337 + 27370 -6245.0493 -6251.7061 6.6567781 3714.5294 633.40418 -10599.64 0 319.03016 0.00064455173 0.00062483069 + 27380 -6245.001 -6252.3178 7.3167856 3712.9751 636.30014 -10601.593 0 350.66142 0.0010032308 0.00097463362 + 27390 -6244.995 -6252.9984 8.0034308 3714.1233 638.61142 -10605.733 0 383.56931 0.0012553755 0.0012198063 + 27400 -6245.0967 -6253.567 8.4703127 3718.4613 639.92631 -10611.955 0 405.94491 0.0013373922 0.0013018213 + 27410 -6245.3268 -6253.9033 8.5765182 3725.4411 640.1381 -10619.483 0 411.03488 0.0012402039 0.001212078 + 27420 -6245.6423 -6253.9952 8.3528671 3733.5372 639.45595 -10626.988 0 400.31626 0.0010128639 0.00099441112 + 27430 -6245.9663 -6253.9125 7.9462159 3740.7142 638.3147 -10632.941 0 380.82725 0.00074304867 0.00072908613 + 27440 -6246.2455 -6253.728 7.4825151 3745.1145 637.21726 -10636.06 0 358.60411 0.00052275054 0.00050440144 + 27450 -6246.4861 -6253.4591 6.972948 3745.6498 636.56208 -10635.671 0 334.18279 0.00041543206 0.00038712289 + 27460 -6246.7336 -6253.0855 6.3518909 3742.2553 636.51239 -10631.853 0 304.41825 0.00043885393 0.00040275717 + 27470 -6247.0201 -6252.6226 5.602517 3735.7822 636.95142 -10625.356 0 268.50405 0.00056741895 0.00053166322 + 27480 -6247.3307 -6252.1711 4.840467 3727.6745 637.53909 -10617.385 0 231.98234 0.00074759045 0.00072002465 + 27490 -6247.6146 -6251.8895 4.2748917 3719.6012 637.84633 -10609.337 0 204.8768 0.0009166134 0.0008993613 + 27500 -6247.8246 -6251.9074 4.0828669 3713.1379 637.51441 -10602.56 0 195.67389 0.0010182853 0.001007032 + 27510 -6247.9502 -6252.2486 4.2984582 3709.5031 636.38205 -10598.134 0 206.00624 0.0010146013 0.0010024958 + 27520 -6248.0235 -6252.8168 4.7933296 3709.3407 634.54057 -10596.698 0 229.72325 0.00089408339 0.0008769204 + 27530 -6248.0972 -6253.4535 5.3562447 3712.5677 632.3062 -10598.327 0 256.7013 0.0006761486 0.00065499846 + 27540 -6248.2094 -6254.0235 5.8141475 3718.3517 630.12731 -10602.503 0 278.64657 0.00040886363 0.00038840309 + 27550 -6248.3591 -6254.4678 6.108703 3725.2818 628.46554 -10608.215 0 292.76332 0.00015793709 0.00014204496 + 27560 -6248.5148 -6254.7883 6.2735108 3731.7294 627.69135 -10614.209 0 300.66184 -1.1405454e-05 -2.3002834e-05 + 27570 -6248.647 -6254.9869 6.3399451 3736.2982 628.01635 -10619.301 0 303.84574 -5.3468995e-05 -6.4622513e-05 + 27580 -6248.7564 -6255.0229 6.2665121 3738.1925 629.46108 -10622.676 0 300.32642 4.5533489e-05 3.1194035e-05 + 27590 -6248.8686 -6254.834 5.9653758 3737.3646 631.84814 -10624.047 0 285.89428 0.00026602581 0.00024841695 + 27600 -6249.0031 -6254.4044 5.4012263 3734.4227 634.82113 -10623.648 0 258.85707 0.00056309093 0.00054548184 + 27610 -6249.1492 -6253.8128 4.6635916 3730.3929 637.8987 -10622.104 0 223.50548 0.00087882705 0.00086464503 + 27620 -6249.2723 -6253.2173 3.9450233 3726.4471 640.56531 -10620.23 0 189.06765 0.0011545092 0.0011442614 + 27630 -6249.3394 -6252.7893 3.4498536 3723.6563 642.3798 -10618.825 0 165.33634 0.0013408669 0.0013315856 + 27640 -6249.3387 -6252.6431 3.3043891 3722.7821 643.06948 -10618.495 0 158.36486 0.0014062364 0.0013934487 + 27650 -6249.2826 -6252.7966 3.5140568 3724.1212 642.58179 -10619.5 0 168.41332 0.001341929 0.0013226301 + 27660 -6249.1978 -6253.1729 3.975108 3727.4234 641.08159 -10621.678 0 190.50948 0.0011638989 0.0011388131 + 27670 -6249.108 -6253.641 4.5330711 3731.9088 638.89865 -10624.449 0 217.2502 0.0009103824 0.00088409072 + 27680 -6249.0131 -6254.0789 5.0658149 3736.4005 636.44312 -10626.923 0 242.78227 0.0006354447 0.00061375886 + 27690 -6248.8783 -6254.42 5.5417854 3739.582 634.11487 -10628.117 0 265.59345 0.00039818004 0.00038395562 + 27700 -6248.6469 -6254.6478 6.0008798 3740.3542 632.23296 -10627.235 0 287.59583 0.00024838576 0.00023887526 + 27710 -6248.2796 -6254.7446 6.4650275 3738.1938 630.99904 -10623.937 0 309.84039 0.00021263466 0.00020108419 + 27720 -6247.7896 -6254.6539 6.8642322 3733.3593 630.48944 -10618.503 0 328.97252 0.00028702106 0.00026777378 + 27730 -6247.2425 -6254.3057 7.0632413 3726.8344 630.66189 -10611.802 0 338.51016 0.00044075939 0.00041368733 + 27740 -6246.7137 -6253.6897 6.9759182 3720.0347 631.37111 -10605.095 0 334.32514 0.0006288127 0.00059923609 + 27750 -6246.2399 -6252.9017 6.6617912 3714.4237 632.39939 -10599.725 0 319.27041 0.00080667968 0.00078095625 + 27760 -6245.8036 -6252.116 6.3123773 3711.1955 633.50655 -10596.818 0 302.52454 0.00094048046 0.00092120234 + 27770 -6245.3608 -6251.4973 6.1364789 3711.0843 634.48931 -10597.071 0 294.0945 0.0010102159 0.0009949691 + 27780 -6244.8835 -6251.1242 6.2406883 3714.2728 635.22893 -10600.626 0 299.0888 0.0010093369 0.00099357725 + 27790 -6244.3803 -6250.9789 6.5985855 3720.3493 635.70978 -10607.038 0 316.24124 0.00094504191 0.0009260966 + 27800 -6243.8825 -6251.0031 7.1206232 3728.3196 636.00683 -10615.329 0 341.26022 0.00084010652 0.0008186583 + 27810 -6243.4137 -6251.1616 7.7478502 3736.7315 636.25446 -10624.148 0 371.32046 0.00073228131 0.0007103585 + 27820 -6242.9783 -6251.4522 8.4738697 3743.9558 636.61269 -10632.021 0 406.11538 0.00066671075 0.00064468636 + 27830 -6242.5803 -6251.8548 9.2744307 3748.577 637.23597 -10637.668 0 444.48276 0.0006818635 0.00065788223 + 27840 -6242.253 -6252.2799 10.026963 3749.7612 638.2353 -10640.276 0 480.54833 0.00079544863 0.00076800574 + 27850 -6242.057 -6252.5835 10.526521 3747.4575 639.62368 -10639.665 0 504.48995 0.00099756206 0.00096831015 + 27860 -6242.0392 -6252.6496 10.610392 3742.3724 641.25722 -10636.279 0 508.50953 0.0012529998 0.0012262535 + 27870 -6242.1897 -6252.4682 10.278522 3735.763 642.81134 -10631.043 0 492.60443 0.0015088819 0.0014878143 + 27880 -6242.4463 -6252.1322 9.6858941 3729.1475 643.83334 -10625.113 0 464.20239 0.0017036122 0.0016870643 + 27890 -6242.7426 -6251.7582 9.0156365 3723.9925 643.8762 -10619.627 0 432.07989 0.0017779122 0.0017613229 + 27900 -6243.0492 -6251.4146 8.3653573 3721.388 642.66637 -10615.469 0 400.91486 0.0016905878 0.0016701121 + 27910 -6243.3714 -6251.1205 7.7491056 3721.7487 640.23082 -10613.1 0 371.38062 0.0014364937 0.0014121207 + 27920 -6243.7164 -6250.9006 7.1841729 3724.6536 636.92554 -10612.48 0 344.30587 0.0010573373 0.0010321811 + 27930 -6244.0714 -6250.824 6.7525396 3728.9454 633.35497 -10613.124 0 323.61959 0.00063603817 0.00061298413 + 27940 -6244.4122 -6250.9814 6.5691757 3733.1041 630.21729 -10614.303 0 314.83176 0.00027378107 0.00025300415 + 27950 -6244.7283 -6251.4186 6.6902626 3735.7588 628.13083 -10615.308 0 320.63492 5.8891432e-05 3.8428863e-05 + 27960 -6245.0365 -6252.0867 7.0502271 3736.1291 627.48874 -10615.705 0 337.88644 4.0543959e-05 1.888052e-05 + 27970 -6245.3689 -6252.8519 7.4829955 3734.239 628.37137 -10615.462 0 358.62713 0.00021636714 0.00019423803 + 27980 -6245.7473 -6253.5521 7.804859 3730.8649 630.5311 -10614.948 0 374.05264 0.00053567367 0.00051547339 + 27990 -6246.1648 -6254.0582 7.893459 3727.2725 633.45363 -10614.784 0 378.29885 0.00091479714 0.00089843432 + 28000 -6246.5881 -6254.3068 7.7186953 3724.8339 636.48601 -10615.627 0 369.92319 0.0012594868 0.0012466678 + 28010 -6246.9754 -6254.3009 7.3255083 3724.6283 639.00384 -10617.933 0 351.07946 0.0014892317 0.0014774209 + 28020 -6247.2972 -6254.09 6.792761 3727.1273 640.57423 -10621.791 0 325.54722 0.0015578826 0.0015438337 + 28030 -6247.5478 -6253.7441 6.1963657 3732.0446 641.06334 -10626.852 0 296.96461 0.0014649976 0.0014468019 + 28040 -6247.7419 -6253.3386 5.596691 3738.3865 640.64833 -10632.373 0 268.22483 0.0012543785 0.0012327057 + 28050 -6247.9004 -6252.9503 5.0498275 3744.687 639.72648 -10637.364 0 242.01607 0.00099992969 0.00097765339 + 28060 -6248.0353 -6252.6579 4.622612 3749.3769 638.75554 -10640.79 0 221.5415 0.00078289467 0.00076334362 + 28070 -6248.1428 -6252.5339 4.3910962 3751.2009 638.08798 -10641.823 0 210.44597 0.00066741477 0.00065230945 + 28080 -6248.2078 -6252.625 4.4172334 3749.5741 637.86083 -10640.06 0 211.69861 0.00068189245 0.00067014705 + 28090 -6248.2155 -6252.9281 4.7126604 3744.7745 637.9754 -10635.678 0 225.85713 0.00081154217 0.0007996772 + 28100 -6248.1668 -6253.3759 5.2091 3737.9008 638.16306 -10629.44 0 249.6493 0.0010040771 0.00098819482 + 28110 -6248.0855 -6253.8466 5.7610982 3730.5876 638.10383 -10622.538 0 276.10415 0.0011870582 0.0011653244 + 28120 -6248.0091 -6254.204 6.1948831 3724.5475 637.55233 -10616.304 0 296.89356 0.0012920637 0.0012660423 + 28130 -6247.9684 -6254.3529 6.3844866 3721.0836 636.43042 -10611.867 0 305.98042 0.0012777937 0.0012515486 + 28140 -6247.9675 -6254.2759 6.3083915 3720.7439 634.86065 -10609.88 0 302.33352 0.0011434344 0.001120919 + 28150 -6247.984 -6254.0316 6.0476767 3723.2385 633.13493 -10610.405 0 289.8386 0.00092706049 0.00090968792 + 28160 -6247.9865 -6253.7163 5.7298092 3727.6261 631.63253 -10612.975 0 274.6046 0.00069056767 0.00067669551 + 28170 -6247.9563 -6253.4185 5.4621761 3732.6653 630.71478 -10616.799 0 261.77813 0.00049846913 0.00048493578 + 28180 -6247.8949 -6253.1931 5.2982714 3737.1833 630.62785 -10621.004 0 253.9229 0.00039921538 0.00038353394 + 28190 -6247.8167 -6253.0607 5.2439488 3740.3471 631.44047 -10624.848 0 251.31945 0.0004146108 0.00039626754 + 28200 -6247.7364 -6253.0181 5.2816883 3741.7884 633.03294 -10627.839 0 253.12814 0.0005384424 0.00051874944 + 28210 -6247.6599 -6253.0502 5.3903612 3741.5949 635.13739 -10629.782 0 258.33635 0.00074228969 0.00072327674 + 28220 -6247.5828 -6253.1366 5.5538054 3740.2093 637.41295 -10630.759 0 266.16952 0.00098527697 0.00096845293 + 28230 -6247.4945 -6253.2573 5.7627631 3738.2812 639.52853 -10631.067 0 276.18394 0.0012245516 0.0012100984 + 28240 -6247.3839 -6253.3965 6.0125524 3736.5072 641.22601 -10631.13 0 288.15525 0.0014237145 0.0014103228 + 28250 -6247.2465 -6253.5368 6.2903078 3735.487 642.34825 -10631.372 0 301.46684 0.0015572482 0.001542773 + 28260 -6247.0923 -6253.6451 6.5527686 3735.6088 642.83237 -10632.086 0 314.04544 0.0016108897 0.0015938766 + 28270 -6246.9461 -6253.6676 6.7214843 3736.9652 642.68306 -10633.316 0 322.13124 0.0015803902 0.0015616405 + 28280 -6246.8321 -6253.556 6.7238467 3739.3023 641.94628 -10634.805 0 322.24446 0.0014715959 0.0014540926 + 28290 -6246.7509 -6253.3093 6.5584672 3742.0342 640.70044 -10636.044 0 314.31855 0.0013019112 0.0012883857 + 28300 -6246.6723 -6252.99 6.3177385 3744.3635 639.06734 -10636.421 0 302.78148 0.0011000643 0.0010899867 + 28310 -6246.5573 -6252.6877 6.130377 3745.5001 637.22782 -10635.416 0 293.80207 0.00090167093 0.00089067059 + 28320 -6246.3914 -6252.4599 6.0685323 3744.8983 635.41957 -10632.778 0 290.83812 0.00074176868 0.00072462146 + 28330 -6246.1985 -6252.3034 6.1048509 3742.4127 633.90496 -10628.621 0 292.57871 0.00064795583 0.00062294042 + 28340 -6246.022 -6252.1833 6.16125 3738.3198 632.91492 -10623.418 0 295.28167 0.00063656696 0.00060744915 + 28350 -6245.8848 -6252.0934 6.2085446 3733.2375 632.5871 -10617.918 0 297.54829 0.00071120434 0.00068482458 + 28360 -6245.7614 -6252.0905 6.329115 3728.0127 632.9201 -10613.023 0 303.3267 0.00086129963 0.00084229852 + 28370 -6245.5844 -6252.2652 6.6807824 3723.6273 633.76175 -10609.654 0 320.18058 0.0010598744 0.0010465812 + 28380 -6245.285 -6252.6618 7.3768494 3721.1088 634.8416 -10608.612 0 353.54001 0.0012630354 0.0012479422 + 28390 -6244.8394 -6253.2056 8.3661641 3721.3772 635.84485 -10610.428 0 400.95353 0.0014158761 0.0013907968 + 28400 -6244.2931 -6253.7006 9.4074805 3724.977 636.51145 -10615.189 0 450.85925 0.0014677322 0.0014301097 + 28410 -6243.7406 -6253.9159 10.175348 3731.7416 636.73296 -10622.391 0 487.65978 0.0013940164 0.0013495563 + 28420 -6243.2666 -6253.7093 10.442744 3740.5695 636.61328 -10630.892 0 500.47488 0.0012150091 0.0011740969 + 28430 -6242.8911 -6253.105 10.213884 3749.526 636.46046 -10639.091 0 489.50666 0.00099881145 0.00096894666 + 28440 -6242.5669 -6252.2634 9.6965163 3756.3597 636.69234 -10645.315 0 464.71147 0.00084078664 0.00082109392 + 28450 -6242.2367 -6251.3698 9.1331475 3759.2646 637.67113 -10648.306 0 437.71167 0.00082517245 0.00080786696 + 28460 -6241.8926 -6250.5421 8.6494813 3757.5314 639.51988 -10647.593 0 414.53167 0.00098750268 0.0009649791 + 28470 -6241.578 -6249.8362 8.2581754 3751.774 641.99958 -10643.61 0 395.7781 0.0012975998 0.0012685442 + 28480 -6241.3373 -6249.3198 7.9825052 3743.671 644.51979 -10637.511 0 382.56644 0.0016705055 0.0016397637 + 28490 -6241.1698 -6249.11 7.9401725 3735.3989 646.30611 -10630.815 0 380.53762 0.001997214 0.0019704119 + 28500 -6241.0335 -6249.3176 8.2841148 3729.0092 646.67102 -10624.998 0 397.02126 0.0021798281 0.0021582823 + 28510 -6240.8948 -6249.9442 9.0493937 3725.9259 645.27593 -10621.146 0 433.69772 0.0021590343 0.0021394753 + 28520 -6240.7785 -6250.8288 10.050316 3726.6315 642.27272 -10619.733 0 481.66753 0.0019292551 0.0019080114 + 28530 -6240.7698 -6251.7118 10.942037 3730.5672 638.26759 -10620.547 0 524.40383 0.0015410853 0.0015180893 + 28540 -6240.9574 -6252.38 11.42263 3736.2817 634.12998 -10622.792 0 547.43652 0.0010900348 0.0010682287 + 28550 -6241.3695 -6252.7739 11.404401 3741.8645 630.73344 -10625.372 0 546.56287 0.0006904673 0.00067133573 + 28560 -6241.9679 -6252.9623 10.994375 3745.5845 628.7287 -10627.275 0 526.91212 0.00043976618 0.00042058348 + 28570 -6242.6962 -6253.0244 10.328192 3746.4833 628.40962 -10627.917 0 494.98492 0.00038706229 0.00036363477 + 28580 -6243.5122 -6252.9731 9.4609759 3744.6341 629.68151 -10627.289 0 453.42305 0.00052195614 0.00049377304 + 28590 -6244.3697 -6252.7887 8.4189901 3740.9651 632.11918 -10625.873 0 403.48525 0.00078688306 0.00075854454 + 28600 -6245.1968 -6252.5013 7.3045068 3736.8135 635.0961 -10624.411 0 350.07295 0.0011025623 0.0010798963 + 28610 -6245.9122 -6252.2202 6.3079745 3733.4769 637.95284 -10623.65 0 302.31353 0.0013923745 0.0013774059 + 28620 -6246.4649 -6252.083 5.6180505 3731.9189 640.15773 -10624.16 0 269.2485 0.0015983984 0.0015877171 + 28630 -6246.8555 -6252.1749 5.3193964 3732.6315 641.41598 -10626.222 0 254.93532 0.0016892216 0.001676589 + 28640 -6247.1298 -6252.4813 5.3514836 3735.5904 641.70364 -10629.775 0 256.47312 0.0016618594 0.0016427197 + 28650 -6247.3548 -6252.9025 5.5477007 3740.2688 641.22568 -10634.397 0 265.87695 0.0015392908 0.0015139805 + 28660 -6247.5854 -6253.3186 5.7332541 3745.7159 640.31866 -10639.353 0 274.76971 0.0013642135 0.0013376081 + 28670 -6247.8363 -6253.6616 5.8252627 3750.7296 639.33466 -10643.726 0 279.17927 0.001189136 0.0011667586 + 28680 -6248.0793 -6253.9399 5.8606381 3754.135 638.54644 -10646.621 0 280.87466 0.0010630616 0.0010465001 + 28690 -6248.2728 -6254.1919 5.91908 3755.1201 638.09848 -10647.411 0 283.67552 0.0010169925 0.001002611 + 28700 -6248.4049 -6254.4097 6.0047769 3753.5016 638.00293 -10645.914 0 287.7826 0.0010537486 0.0010362072 + 28710 -6248.5079 -6254.5144 6.0065641 3749.7763 638.16298 -10642.454 0 287.86825 0.0011482717 0.0011258236 + 28720 -6248.6288 -6254.4183 5.7895241 3744.9143 638.40838 -10637.741 0 277.46648 0.0012596263 0.0012361212 + 28730 -6248.7829 -6254.1187 5.3358129 3740.0118 638.54071 -10632.671 0 255.72209 0.0013482754 0.0013298034 + 28740 -6248.9359 -6253.7322 4.7963214 3735.9921 638.38892 -10628.113 0 229.86663 0.0013889155 0.0013781763 + 28750 -6249.0315 -6253.4319 4.4003785 3733.4702 637.86416 -10624.766 0 210.89083 0.0013734625 0.001366998 + 28760 -6249.0378 -6253.3382 4.3003782 3732.755 636.99248 -10623.086 0 206.09825 0.0013064024 0.0012971127 + 28770 -6248.9731 -6253.4479 4.4748082 3733.8814 635.90916 -10623.238 0 214.45792 0.0011989351 0.001181805 + 28780 -6248.893 -6253.6518 4.7588136 3736.5992 634.81723 -10625.068 0 228.06905 0.0010668402 0.0010432664 + 28790 -6248.8482 -6253.826 4.9777993 3740.3374 633.92973 -10628.093 0 238.56407 0.00093213765 0.00090917961 + 28800 -6248.8409 -6253.9245 5.0835439 3744.2375 633.42057 -10631.583 0 243.63195 0.0008241058 0.00080877697 + 28810 -6248.8169 -6253.9964 5.1794583 3747.3398 633.40067 -10634.737 0 248.2287 0.00077452109 0.00076750854 + 28820 -6248.7069 -6254.1104 5.4034715 3748.8999 633.91857 -10636.929 0 258.96467 0.00080655843 0.00080089745 + 28830 -6248.4864 -6254.2543 5.7678184 3748.6819 634.96891 -10637.905 0 276.42622 0.00092341454 0.00090979691 + 28840 -6248.2015 -6254.3107 6.1091459 3747.0429 636.48975 -10637.843 0 292.78455 0.0011049101 0.0010793857 + 28850 -6247.9354 -6254.1432 6.2078625 3744.7463 638.34603 -10637.236 0 297.5156 0.0013151091 0.0012825695 + 28860 -6247.7416 -6253.7185 5.9769421 3742.627 640.31661 -10636.662 0 286.4486 0.0015157666 0.0014862237 + 28870 -6247.6022 -6253.1575 5.5552904 3741.3119 642.10811 -10636.578 0 266.24068 0.0016766935 0.0016575586 + 28880 -6247.4423 -6252.6711 5.228803 3741.1193 643.4042 -10637.195 0 250.59358 0.001778027 0.0017686669 + 28890 -6247.1837 -6252.4309 5.2471602 3742.1093 643.93704 -10638.477 0 251.47336 0.0018068001 0.0017993685 + 28900 -6246.7952 -6252.4681 5.6729746 3744.161 643.55647 -10640.186 0 271.88077 0.0017543791 0.0017399477 + 28910 -6246.3089 -6252.6689 6.3600225 3746.9753 642.27509 -10641.919 0 304.80796 0.0016195199 0.0015948845 + 28920 -6245.7956 -6252.8637 7.0680793 3750.0054 640.27767 -10643.147 0 338.74202 0.0014163427 0.0013864988 + 28930 -6245.3116 -6252.9498 7.6381785 3752.4206 637.8932 -10643.264 0 366.06437 0.0011812632 0.001155376 + 28940 -6244.8537 -6252.9545 8.1007667 3753.2342 635.53698 -10641.726 0 388.23419 0.00097091736 0.00095440735 + 28950 -6244.3694 -6252.9832 8.6137672 3751.6445 633.63588 -10638.264 0 412.82006 0.00084667091 0.00083589372 + 28960 -6243.8259 -6253.0853 9.2593833 3747.4631 632.54849 -10633.097 0 443.7616 0.00085020489 0.00083509191 + 28970 -6243.276 -6253.1583 9.8822645 3741.3739 632.48512 -10627.017 0 473.61356 0.00098325541 0.00095648007 + 28980 -6242.8451 -6252.9991 10.153992 3734.8117 633.43611 -10621.247 0 486.63629 0.0012046827 0.0011690898 + 28990 -6242.6319 -6252.4755 9.8436183 3729.484 635.13773 -10617.097 0 471.76142 0.0014473164 0.0014140421 + 29000 -6242.6185 -6251.6678 9.0493674 3726.7986 637.11712 -10615.584 0 433.69646 0.0016436091 0.0016220846 + 29010 -6242.6832 -6250.846 8.1628046 3727.4849 638.83091 -10617.162 0 391.2074 0.0017453982 0.0017345204 + 29020 -6242.7046 -6250.2963 7.5916974 3731.5104 639.85514 -10621.662 0 363.83674 0.0017318353 0.001720536 + 29030 -6242.6583 -6250.1407 7.4823801 3738.1812 640.04502 -10628.367 0 358.59764 0.0016101782 0.0015870101 + 29040 -6242.628 -6250.2932 7.6651548 3746.2735 639.59027 -10636.157 0 367.35723 0.0014159523 0.0013794085 + 29050 -6242.7268 -6250.5819 7.8550436 3754.1617 638.93531 -10643.679 0 376.45777 0.0012118956 0.0011722644 + 29060 -6242.9976 -6250.9226 7.9249975 3760.0584 638.59126 -10649.572 0 379.81035 0.0010773314 0.0010479323 + 29070 -6243.3837 -6251.3763 7.9925318 3762.4746 638.9173 -10652.768 0 383.04697 0.0010813522 0.0010668418 + 29080 -6243.8024 -6252.0364 8.234026 3760.8044 639.96546 -10652.806 0 394.62073 0.0012474391 0.0012400303 + 29090 -6244.2475 -6252.8716 8.6240456 3755.7055 641.4516 -10650.029 0 413.31266 0.0015315465 0.0015183538 + 29100 -6244.8146 -6253.6915 8.8768961 3748.9574 642.85965 -10645.509 0 425.43067 0.0018330813 0.0018072242 + 29110 -6245.6101 -6254.2686 8.6584697 3742.7755 643.63658 -10640.681 0 414.96245 0.002037674 0.0020030622 + 29120 -6246.6231 -6254.4933 7.8702316 3738.9216 643.404 -10636.819 0 377.18566 0.0020685267 0.0020351023 + 29130 -6247.6923 -6254.4282 6.7359173 3738.0917 642.09978 -10634.62 0 322.82295 0.0019163484 0.001891496 + 29140 -6248.6161 -6254.2345 5.6184226 3739.8667 639.98971 -10634.091 0 269.26634 0.001633256 0.0016173539 + 29150 -6249.286 -6254.0578 4.7718234 3743.1233 637.55986 -10634.741 0 228.69255 0.0013026496 0.0012909638 + 29160 -6249.7124 -6253.9611 4.2486985 3746.5628 635.35775 -10635.882 0 203.62147 0.0010081669 0.00099548217 + 29170 -6249.9692 -6253.9317 3.9625844 3749.1083 633.84216 -10636.882 0 189.90928 0.00081286504 0.00079700068 + 29180 -6250.1345 -6253.9326 3.798115 3750.1219 633.26797 -10637.322 0 182.02698 0.00074797015 0.00073049477 + 29190 -6250.2571 -6253.9549 3.6977929 3749.4786 633.62761 -10637.061 0 177.21899 0.00080979679 0.00079399151 + 29200 -6250.3475 -6254.0341 3.6866071 3747.5321 634.67192 -10636.238 0 176.6829 0.00096467471 0.00095241415 + 29210 -6250.3918 -6254.2153 3.8234781 3744.9904 636.01066 -10635.216 0 183.24252 0.001160443 0.0011505197 + 29220 -6250.3794 -6254.4972 4.117804 3742.7204 637.25682 -10634.474 0 197.34827 0.0013415839 0.0013308967 + 29230 -6250.3223 -6254.8037 4.4814683 3741.5048 638.15632 -10634.465 0 214.77711 0.0014645583 0.0014511262 + 29240 -6250.2505 -6255.0144 4.7639548 3741.8043 638.65025 -10635.469 0 228.31544 0.0015096115 0.0014946568 + 29250 -6250.1874 -6255.0393 4.8519086 3743.6077 638.84942 -10637.496 0 232.53069 0.0014851196 0.0014720884 + 29260 -6250.1266 -6254.8803 4.7537757 3746.4442 638.9433 -10640.268 0 227.8276 0.0014217835 0.0014128962 + 29270 -6250.0347 -6254.6267 4.5920865 3749.5736 639.09543 -10643.296 0 220.07855 0.0013578922 0.0013513716 + 29280 -6249.882 -6254.3859 4.5038774 3752.27 639.37499 -10646.031 0 215.85108 0.0013221449 0.0013130256 + 29290 -6249.6722 -6254.2086 4.53639 3754.0511 639.74554 -10648.005 0 217.40926 0.0013229643 0.0013071681 + 29300 -6249.4424 -6254.0736 4.631151 3754.7429 640.09951 -10648.916 0 221.95074 0.001349769 0.0013279133 + 29310 -6249.2327 -6253.9391 4.7063222 3754.3836 640.31118 -10648.634 0 225.55337 0.0013840861 0.0013614626 + 29320 -6249.0491 -6253.8051 4.7560245 3753.0831 640.28443 -10647.173 0 227.93538 0.0014122157 0.0013946789 + 29330 -6248.854 -6253.7249 4.8708244 3750.963 639.98259 -10644.67 0 233.43724 0.0014310467 0.0014202178 + 29340 -6248.5942 -6253.7516 5.1573954 3748.2161 639.43717 -10641.405 0 247.17133 0.0014445753 0.0014364493 + 29350 -6248.2435 -6253.8727 5.629214 3745.2034 638.73622 -10637.812 0 269.78352 0.001455769 0.0014438892 + 29360 -6247.8268 -6253.9945 6.167696 3742.4656 637.99445 -10634.455 0 295.5906 0.0014609786 0.0014414654 + 29370 -6247.4048 -6253.9957 6.5909115 3740.5935 637.31392 -10631.903 0 315.87346 0.0014508346 0.0014251464 + 29380 -6247.0317 -6253.8071 6.775363 3740.0144 636.75192 -10630.573 0 324.71341 0.001416223 0.0013895988 + 29390 -6246.7201 -6253.4566 6.7364328 3740.8187 636.31492 -10630.59 0 322.84766 0.0013549376 0.0013319848 + 29400 -6246.4399 -6253.0487 6.6087928 3742.7254 635.98482 -10631.759 0 316.73043 0.0012751044 0.0012561393 + 29410 -6246.1518 -6252.6942 6.542364 3745.198 635.7641 -10633.656 0 313.54679 0.0011939618 0.0011751129 + 29420 -6245.8466 -6252.4403 6.5937829 3747.6286 635.71163 -10635.781 0 316.01108 0.0011334052 0.0011105325 + 29430 -6245.5559 -6252.2602 6.7042484 3749.4887 635.94158 -10637.691 0 321.3052 0.001115164 0.0010882929 + 29440 -6245.323 -6252.1107 6.787745 3750.4049 636.57616 -10639.092 0 325.30683 0.0011571441 0.0011312524 + 29450 -6245.157 -6252.0093 6.8522911 3750.2014 637.66998 -10639.881 0 328.40024 0.0012695833 0.0012505079 + 29460 -6245.0151 -6252.0514 7.0362922 3748.9686 639.14401 -10640.164 0 337.2186 0.0014489342 0.0014375929 + 29470 -6244.8338 -6252.3405 7.5066752 3747.1404 640.76743 -10640.248 0 359.762 0.0016705767 0.0016607045 + 29480 -6244.591 -6252.874 8.283037 3745.4842 642.20571 -10640.564 0 396.96961 0.0018861039 0.0018683616 + 29490 -6244.3485 -6253.4835 9.1349943 3744.8979 643.12215 -10641.504 0 437.80018 0.0020325291 0.0020025235 + 29500 -6244.2256 -6253.9037 9.6780387 3746.0137 643.29262 -10643.21 0 463.82592 0.0020557385 0.0020190824 + 29510 -6244.3051 -6253.9439 9.6387476 3748.7879 642.68458 -10645.416 0 461.94287 0.001939034 0.0019077353 + 29520 -6244.555 -6253.6257 9.0707321 3752.3651 641.46877 -10647.46 0 434.72038 0.0017178484 0.0017000342 + 29530 -6244.852 -6253.1533 8.3013074 3755.3899 639.96507 -10648.508 0 397.84523 0.0014665974 0.0014590128 + 29540 -6245.0907 -6252.7384 7.6476285 3756.6238 638.54857 -10647.911 0 366.51727 0.0012640218 0.0012548691 + 29550 -6245.2663 -6252.4502 7.1839768 3755.49 637.545 -10645.485 0 344.29648 0.0011602184 0.0011396735 + 29560 -6245.4538 -6252.2277 6.7739072 3752.2394 637.1398 -10641.607 0 324.64364 0.0011644482 0.0011327653 + 29570 -6245.7212 -6252.0144 6.2932035 3747.736 637.32398 -10637.074 0 301.60562 0.0012538798 0.0012200951 + 29580 -6246.0659 -6251.8624 5.7965024 3743.0886 637.89882 -10632.85 0 277.80092 0.0013897147 0.0013633152 + 29590 -6246.4278 -6251.9061 5.4783045 3739.35 638.54468 -10629.801 0 262.55109 0.0015289057 0.0015125277 + 29600 -6246.7502 -6252.2452 5.4949821 3737.3445 638.93336 -10628.523 0 263.35037 0.0016301677 0.0016189832 + 29610 -6247.0287 -6252.8498 5.8210287 3737.5622 638.84374 -10629.256 0 278.97636 0.0016597483 0.0016467001 + 29620 -6247.3113 -6253.5651 6.2537634 3740.0546 638.23838 -10631.858 0 299.71543 0.0016005597 0.0015822269 + 29630 -6247.6561 -6254.2061 6.5499844 3744.3488 637.27462 -10635.829 0 313.91201 0.0014617147 0.0014400386 + 29640 -6248.0844 -6254.662 6.5776488 3749.4735 636.24923 -10640.385 0 315.23784 0.0012809792 0.0012601807 + 29650 -6248.5674 -6254.9281 6.3607237 3754.1772 635.50194 -10644.607 0 304.84157 0.0011147117 0.0010969871 + 29660 -6249.0559 -6255.0544 5.9984771 3757.303 635.31448 -10647.672 0 287.48068 0.001017927 0.0010020867 + 29670 -6249.5154 -6255.0745 5.5591095 3758.16 635.834 -10649.069 0 266.42372 0.0010243817 0.0010080345 + 29680 -6249.9349 -6254.9868 5.0519045 3756.7207 637.03312 -10648.741 0 242.11561 0.0011360905 0.0011184005 + 29690 -6250.3103 -6254.7881 4.4777642 3753.5813 638.70843 -10647.078 0 214.59959 0.0013246515 0.0013069082 + 29700 -6250.6322 -6254.5132 3.8809903 3749.7439 640.51668 -10644.774 0 185.99883 0.0015407113 0.0015248223 + 29710 -6250.8888 -6254.2387 3.349871 3746.3232 642.0452 -10642.607 0 160.54462 0.0017270634 0.0017139105 + 29720 -6251.0758 -6254.0548 2.9789493 3744.26 642.90748 -10641.222 0 142.76797 0.0018327464 0.0018217465 + 29730 -6251.2001 -6254.0315 2.8314616 3744.0937 642.84562 -10640.971 0 135.69952 0.0018262029 0.0018159457 + 29740 -6251.2744 -6254.1964 2.9219943 3745.8317 641.8133 -10641.841 0 140.03836 0.0017046353 0.001693775 + 29750 -6251.3108 -6254.5274 3.216628 3748.9457 640.00925 -10643.482 0 154.15886 0.0014962479 0.00148406 + 29760 -6251.3176 -6254.9595 3.6418945 3752.5059 637.83938 -10645.305 0 174.54002 0.0012535586 0.0012400524 + 29770 -6251.3001 -6255.3987 4.0985924 3755.428 635.80835 -10646.635 0 196.42754 0.0010389138 0.0010246614 + 29780 -6251.2627 -6255.7439 4.4812188 3756.7753 634.3708 -10646.89 0 214.76515 0.00090634273 0.0008921745 + 29790 -6251.2096 -6255.9133 4.7037225 3756.0319 633.79538 -10645.741 0 225.42877 0.00088560778 0.00087219073 + 29800 -6251.1421 -6255.8673 4.7251213 3753.2652 634.0948 -10643.227 0 226.45433 0.00097385453 0.00096117963 + 29810 -6251.059 -6255.6186 4.5596511 3749.125 635.04777 -10639.791 0 218.52406 0.0011375547 0.0011246599 + 29820 -6250.96 -6255.2221 4.2620948 3744.6751 636.29735 -10636.195 0 204.2635 0.0013238357 0.0013092322 + 29830 -6250.8525 -6254.7532 3.9007188 3741.0991 637.47935 -10633.332 0 186.94433 0.0014774653 0.0014602208 + 29840 -6250.7501 -6254.2906 3.540476 3739.3623 638.33101 -10631.984 0 169.67948 0.001558191 0.0015388884 + 29850 -6250.6653 -6253.9092 3.2439107 3739.9329 638.7489 -10632.591 0 155.4664 0.0015527918 0.0015335205 + 29860 -6250.5991 -6253.6766 3.0775255 3742.6564 638.78906 -10635.122 0 147.49229 0.0014776228 0.0014608499 + 29870 -6250.5361 -6253.6436 3.1074353 3746.8234 638.62012 -10639.087 0 148.92574 0.0013707611 0.001357739 + 29880 -6250.45 -6253.8278 3.3778354 3751.404 638.44951 -10643.681 0 161.88483 0.0012768869 0.0012666434 + 29890 -6250.3164 -6254.1966 3.8802336 3755.3634 638.44568 -10648.006 0 185.96257 0.0012308679 0.0012205791 + 29900 -6250.1287 -6254.6624 4.5336336 3757.9416 638.67916 -10651.283 0 217.27716 0.0012463694 0.0012330801 + 29910 -6249.9048 -6255.1012 5.1963499 3758.8026 639.10088 -10653.005 0 249.03824 0.0013135634 0.0012962374 + 29920 -6249.6783 -6255.3916 5.7133037 3758.0204 639.5678 -10652.98 0 273.81357 0.001406135 0.0013866203 + 29930 -6249.4785 -6255.4575 5.9790157 3755.9462 639.9082 -10651.312 0 286.54798 0.0014939265 0.0014759794 + 29940 -6249.3109 -6255.2941 5.9832624 3753.049 639.99808 -10648.341 0 286.75151 0.0015552142 0.0015419461 + 29950 -6249.1525 -6254.963 5.8105203 3749.8091 639.80929 -10644.581 0 278.47274 0.0015827712 0.0015740839 + 29960 -6248.9691 -6254.5548 5.5857559 3746.6917 639.40473 -10640.651 0 267.70077 0.0015810617 0.0015730575 + 29970 -6248.743 -6254.1373 5.394314 3744.1606 638.88782 -10637.186 0 258.52579 0.0015573098 0.0015446668 + 29980 -6248.492 -6253.7259 5.23393 3742.6544 638.34018 -10634.721 0 250.83929 0.0015135509 0.0014936028 + 29990 -6248.2581 -6253.3058 5.0476991 3742.4791 637.78522 -10633.57 0 241.91407 0.0014462057 0.0014215002 + 30000 -6248.0709 -6252.8937 4.8227429 3743.6537 637.19716 -10633.745 0 231.1329 0.0013535978 0.0013302425 + 30010 -6247.9142 -6252.5807 4.6665015 3745.8206 636.54863 -10634.95 0 223.64493 0.0012448676 0.0012274166 + 30020 -6247.7286 -6252.5012 4.7726624 3748.3195 635.86805 -10636.689 0 228.73276 0.0011422676 0.0011294411 + 30030 -6247.4548 -6252.7367 5.2819858 3750.4165 635.27178 -10638.425 0 253.1424 0.0010743539 0.0010597772 + 30040 -6247.0844 -6253.233 6.1486225 3751.5606 634.94717 -10639.741 0 294.67649 0.0010649254 0.0010427902 + 30050 -6246.674 -6253.8114 7.1373479 3751.5245 635.0876 -10640.423 0 342.06176 0.0011251622 0.0010958741 + 30060 -6246.3038 -6254.2762 7.972448 3750.3942 635.80714 -10640.478 0 382.08444 0.0012523431 0.0012225822 + 30070 -6246.0133 -6254.5266 8.5133284 3748.489 637.07608 -10640.092 0 408.00646 0.0014318578 0.0014084969 + 30080 -6245.7799 -6254.5741 8.7942694 3746.3113 638.70854 -10639.594 0 421.47074 0.0016372667 0.001620824 + 30090 -6245.5613 -6254.4631 8.9018281 3744.5222 640.40475 -10639.39 0 426.62555 0.0018288508 0.0018128906 + 30100 -6245.3545 -6254.1861 8.8315865 3743.8404 641.82793 -10639.854 0 423.25918 0.0019576617 0.0019347835 + 30110 -6245.2083 -6253.6863 8.478019 3744.8019 642.69095 -10641.179 0 406.31424 0.0019803398 0.0019491993 + 30120 -6245.1758 -6252.9456 7.7697704 3747.4527 642.83245 -10643.231 0 372.37099 0.0018802138 0.0018472323 + 30130 -6245.2568 -6252.0776 6.8207708 3751.1667 642.26335 -10645.508 0 326.88961 0.0016817848 0.0016559844 + 30140 -6245.3842 -6251.3316 5.9474076 3754.759 641.16749 -10647.258 0 285.03314 0.0014470359 0.001432436 + 30150 -6245.4686 -6250.9813 5.5127494 3756.9106 639.85173 -10647.744 0 264.20188 0.0012528548 0.0012450327 + 30160 -6245.4627 -6251.1688 5.7061481 3756.7138 638.65633 -10646.539 0 273.47064 0.0011606736 0.0011505199 + 30170 -6245.3941 -6251.8197 6.4256301 3754.0571 637.84778 -10643.725 0 307.95225 0.0011933862 0.0011748182 + 30180 -6245.3445 -6252.6963 7.3517693 3749.6592 637.52521 -10639.881 0 352.33803 0.0013291842 0.0013041125 + 30190 -6245.3913 -6253.5414 8.1501069 3744.7718 637.57827 -10635.892 0 390.59885 0.0015123701 0.0014886724 + 30200 -6245.5568 -6254.1993 8.6424623 3740.7384 637.7273 -10632.665 0 414.19529 0.0016739485 0.0016583635 + 30210 -6245.807 -6254.6353 8.8282476 3738.6079 637.64426 -10630.887 0 423.09916 0.0017531999 0.0017453353 + 30220 -6246.0983 -6254.8687 8.7704324 3738.9013 637.10848 -10630.878 0 420.32833 0.0017143428 0.0017068616 + 30230 -6246.4267 -6254.8952 8.4685157 3741.5223 636.12564 -10632.543 0 405.85879 0.0015561903 0.0015410504 + 30240 -6246.8302 -6254.6747 7.8444729 3745.7753 634.95009 -10635.4 0 375.95116 0.0013145513 0.0012900533 + 30250 -6247.3361 -6254.1993 6.8632015 3750.4862 633.99559 -10638.681 0 328.92313 0.0010562539 0.0010286374 + 30260 -6247.9062 -6253.5744 5.6681576 3754.2692 633.67444 -10641.518 0 271.64992 0.00086257183 0.00084049247 + 30270 -6248.4465 -6253.0206 4.5740965 3755.9413 634.23874 -10643.201 0 219.21637 0.00080305054 0.00078995215 + 30280 -6248.874 -6252.7675 3.8935641 3754.9663 635.6887 -10643.422 0 186.60144 0.00090838554 0.00089978913 + 30290 -6249.1751 -6252.9191 3.7440087 3751.7138 637.7697 -10642.403 0 179.4339 0.0011555064 0.0011433081 + 30300 -6249.404 -6253.3989 3.994915 3747.3709 640.04063 -10640.81 0 191.45874 0.0014732999 0.0014527666 + 30310 -6249.6351 -6254.0162 4.381118 3743.5119 641.98503 -10639.513 0 209.96776 0.0017671858 0.0017406032 + 30320 -6249.9099 -6254.5906 4.6806927 3741.5163 643.14188 -10639.249 0 224.32506 0.0019521081 0.0019265036 + 30330 -6250.2135 -6255.0394 4.8258502 3742.0893 643.23031 -10640.359 0 231.28182 0.0019801525 0.0019614849 + 30340 -6250.4924 -6255.3746 4.8822491 3745.0742 642.23385 -10642.683 0 233.98477 0.0018522944 0.0018409829 + 30350 -6250.6974 -6255.6331 4.9357569 3749.5853 640.41211 -10645.631 0 236.54916 0.0016121317 0.001603289 + 30360 -6250.8193 -6255.8082 4.9888048 3754.3461 638.22859 -10648.383 0 239.09152 0.0013276646 0.0013154879 + 30370 -6250.8911 -6255.8422 4.9511121 3758.0677 636.21415 -10650.124 0 237.28507 0.0010703247 0.0010528558 + 30380 -6250.9563 -6255.6835 4.7272267 3759.7498 634.81143 -10650.245 0 226.55523 0.00089789766 0.00087823738 + 30390 -6251.0325 -6255.3506 4.3181118 3758.8744 634.25404 -10648.479 0 206.94815 0.00084332416 0.0008265525 + 30400 -6251.1004 -6254.9429 3.8424837 3755.512 634.52073 -10644.976 0 184.15338 0.00090893244 0.00089770752 + 30410 -6251.1254 -6254.5865 3.4611735 3750.3381 635.37253 -10640.297 0 165.87886 0.001066445 0.0010590971 + 30420 -6251.0877 -6254.3629 3.2752283 3744.5209 636.44891 -10635.333 0 156.96732 0.0012641958 0.0012565627 + 30430 -6250.9973 -6254.2784 3.281022 3739.4586 637.38369 -10631.121 0 157.24499 0.0014415505 0.0014305806 + 30440 -6250.8833 -6254.2903 3.4069755 3736.4093 637.9056 -10628.605 0 163.28138 0.0015471097 0.0015331689 + 30450 -6250.7691 -6254.3605 3.5914633 3736.1319 637.90182 -10628.394 0 172.12307 0.0015546091 0.0015408102 + 30460 -6250.6532 -6254.4907 3.8375136 3738.6685 637.436 -10630.595 0 183.91518 0.0014704759 0.0014597374 + 30470 -6250.5092 -6254.7104 4.2012724 3743.3548 636.72149 -10634.787 0 201.34855 0.001329933 0.0013221582 + 30480 -6250.3076 -6255.027 4.7194293 3749.0463 636.05713 -10640.13 0 226.18153 0.0011831665 0.0011749149 + 30490 -6250.0466 -6255.3775 5.330926 3754.4593 635.74014 -10645.577 0 255.48789 0.0010774715 0.0010646312 + 30500 -6249.764 -6255.6308 5.8667749 3758.4879 635.97705 -10650.096 0 281.16877 0.0010431131 0.0010244635 + 30510 -6249.5151 -6255.6522 6.1371666 3760.4024 636.81908 -10652.874 0 294.12746 0.0010881427 0.0010665509 + 30520 -6249.3309 -6255.3868 6.0558629 3759.9229 638.14453 -10653.454 0 290.23093 0.00120162 0.0011815502 + 30530 -6249.1974 -6254.8932 5.69573 3757.225 639.69566 -10651.814 0 272.97134 0.0013601535 0.001343718 + 30540 -6249.0743 -6254.3036 5.2293524 3752.9099 641.15443 -10648.368 0 250.61991 0.0015332574 0.0015184943 + 30550 -6248.9331 -6253.748 4.8148753 3747.9185 642.22566 -10643.892 0 230.75584 0.0016871628 0.0016700312 + 30560 -6248.7786 -6253.3043 4.5257402 3743.3504 642.69773 -10639.352 0 216.89887 0.0017894157 0.0017675611 + 30570 -6248.6374 -6253.0057 4.3682776 3740.2001 642.46786 -10635.674 0 209.35237 0.001815505 0.0017904515 + 30580 -6248.5275 -6252.8787 4.3512194 3739.0912 641.53894 -10633.509 0 208.53485 0.0017557796 0.0017317037 + 30590 -6248.4361 -6252.9689 4.532761 3740.1159 640.00529 -10633.09 0 217.23534 0.0016190587 0.0015991755 + 30600 -6248.324 -6253.3167 4.9926762 3742.8458 638.04116 -10634.204 0 239.27706 0.0014303084 0.0014139459 + 30610 -6248.1577 -6253.8995 5.7418351 3746.4964 635.89272 -10636.289 0 275.18096 0.0012231908 0.0012062513 + 30620 -6247.9443 -6254.5903 6.6460747 3750.1523 633.86243 -10638.605 0 318.51719 0.0010317165 0.0010104265 + 30630 -6247.7364 -6255.1854 7.448989 3752.9573 632.27331 -10640.416 0 356.99735 0.00088546079 0.00086019564 + 30640 -6247.5962 -6255.4996 7.9033725 3754.2363 631.41114 -10641.147 0 378.77395 0.00080894521 0.00078444306 + 30650 -6247.546 -6255.4631 7.9171571 3753.5928 631.45851 -10640.514 0 379.43459 0.00082111358 0.00080253233 + 30660 -6247.5518 -6255.1437 7.5918847 3751.0229 632.44366 -10638.61 0 363.84571 0.0009304329 0.00091872316 + 30670 -6247.5573 -6254.6801 7.1227321 3747.0203 634.22305 -10635.923 0 341.36129 0.0011263157 0.0011172274 + 30680 -6247.5327 -6254.1852 6.6525169 3742.5678 636.50269 -10633.256 0 318.82594 0.001373464 0.0013611918 + 30690 -6247.4941 -6253.6997 6.2056151 3738.9318 638.89088 -10631.522 0 297.40789 0.0016163142 0.0015985212 + 30700 -6247.4785 -6253.2245 5.7460613 3737.2823 640.97132 -10631.478 0 275.3835 0.0017948876 0.0017746031 + 30710 -6247.5009 -6252.7908 5.2898313 3738.2851 642.38641 -10633.462 0 253.5184 0.001865434 0.0018481533 + 30720 -6247.5345 -6252.4919 4.957401 3741.8571 642.91678 -10637.266 0 237.58647 0.0018155087 0.0018041107 + 30730 -6247.5285 -6252.4417 4.9132298 3747.1895 642.53789 -10642.169 0 235.46954 0.0016665811 0.001658552 + 30740 -6247.448 -6252.691 5.2430033 3753.0062 641.43435 -10647.132 0 251.27413 0.0014649562 0.0014543091 + 30750 -6247.3027 -6253.1768 5.8741062 3757.9174 639.96044 -10651.055 0 281.52013 0.0012673336 0.0012495332 + 30760 -6247.1402 -6253.7486 6.6084525 3760.7418 638.54848 -10653.039 0 316.71413 0.0011271038 0.0011027648 + 30770 -6247.0112 -6254.2547 7.2434494 3760.7403 637.58234 -10652.577 0 347.14674 0.0010833561 0.0010575679 + 30780 -6246.9336 -6254.6175 7.6839516 3757.7722 637.27135 -10649.661 0 368.25808 0.0011515414 0.0011294372 + 30790 -6246.8859 -6254.8433 7.9574388 3752.3761 637.57275 -10644.792 0 381.36512 0.0013159468 0.0012983401 + 30800 -6246.8378 -6254.9661 8.1283229 3745.7329 638.20252 -10638.902 0 389.55484 0.0015278871 0.001510723 + 30810 -6246.7883 -6254.9823 8.1940462 3739.4443 638.74068 -10633.167 0 392.70467 0.0017150192 0.0016931299 + 30820 -6246.7749 -6254.838 8.0631362 3735.1112 638.79209 -10628.741 0 386.43073 0.001803319 0.0017752145 + 30830 -6246.8431 -6254.4866 7.64344 3733.8152 638.13693 -10626.439 0 366.31653 0.0017453394 0.0017147367 + 30840 -6247.0026 -6253.9639 6.9613155 3735.7191 636.81301 -10626.496 0 333.6253 0.0015417827 0.0015144794 + 30850 -6247.2147 -6253.4071 6.1923832 3740.0002 635.10579 -10628.513 0 296.77375 0.0012443583 0.0012234261 + 30860 -6247.4243 -6252.9896 5.565215 3745.1674 633.45987 -10631.617 0 266.71633 0.00093762053 0.00092137269 + 30870 -6247.6035 -6252.8265 5.2229945 3749.6021 632.34808 -10634.777 0 250.3152 0.00070920643 0.00069342949 + 30880 -6247.7669 -6252.9269 5.1599589 3752.0758 632.13784 -10637.141 0 247.29418 0.00062235611 0.00060422314 + 30890 -6247.9518 -6253.2173 5.2654362 3752.067 632.98627 -10638.271 0 252.34925 0.00069980621 0.00067989026 + 30900 -6248.1864 -6253.6015 5.4150716 3749.8349 634.78596 -10638.222 0 259.52061 0.00092057336 0.00090174233 + 30910 -6248.4727 -6254.0068 5.5340938 3746.2842 637.1757 -10637.467 0 265.22482 0.0012271649 0.0012118846 + 30920 -6248.7916 -6254.3953 5.603745 3742.6815 639.6221 -10636.699 0 268.5629 0.0015405822 0.0015289786 + 30930 -6249.1205 -6254.749 5.6284045 3740.2895 641.56142 -10636.6 0 269.74473 0.0017806153 0.0017706097 + 30940 -6249.4489 -6255.0484 5.5994904 3740.0016 642.56522 -10637.615 0 268.359 0.0018874527 0.0018766067 + 30950 -6249.7795 -6255.2667 5.487178 3742.0697 642.47148 -10639.808 0 262.97636 0.0018387984 0.0018262689 + 30960 -6250.1155 -6255.3822 5.2667316 3746.008 641.42687 -10642.817 0 252.41133 0.0016565877 0.0016435428 + 30970 -6250.4474 -6255.3996 4.9522004 3750.7192 639.82038 -10645.939 0 237.33723 0.0013998299 0.0013880531 + 30980 -6250.753 -6255.3519 4.5988942 3754.8267 638.13756 -10648.316 0 220.40481 0.0011448812 0.0011349999 + 30990 -6251.0109 -6255.28 4.2690944 3757.1056 636.79758 -10649.183 0 204.59896 0.00096006482 0.00095108702 + 31000 -6251.2137 -6255.211 3.9973222 3756.8575 636.03422 -10648.103 0 191.57411 0.00088463609 0.00087496007 + 31010 -6251.3678 -6255.1563 3.7885393 3754.0966 635.85427 -10645.107 0 181.56806 0.0009198273 0.00090844886 + 31020 -6251.4842 -6255.1257 3.6415358 3749.5078 636.0729 -10640.706 0 174.52283 0.0010334943 0.0010203188 + 31030 -6251.5706 -6255.1353 3.5647705 3744.2195 636.40219 -10635.757 0 170.8438 0.0011742471 0.0011596381 + 31040 -6251.6307 -6255.1986 3.5678669 3739.4815 636.55898 -10631.239 0 170.9922 0.0012888986 0.001273296 + 31050 -6251.6681 -6255.3108 3.6427806 3736.3387 636.35961 -10628.009 0 174.58249 0.0013380606 0.001322085 + 31060 -6251.6859 -6255.4453 3.7593409 3735.3811 635.77599 -10626.602 0 180.16871 0.001306474 0.0012911145 + 31070 -6251.6835 -6255.5662 3.8826603 3736.628 634.93971 -10627.134 0 186.07887 0.0012059182 0.0011921924 + 31080 -6251.6521 -6255.6474 3.9952905 3739.5731 634.09547 -10629.316 0 191.47674 0.0010698597 0.0010579719 + 31090 -6251.5772 -6255.6784 4.101255 3743.3701 633.52041 -10632.569 0 196.55515 0.00094135707 0.000930142 + 31100 -6251.4483 -6255.6564 4.2080514 3747.0892 633.43656 -10636.182 0 201.67343 0.00085862484 0.00084605602 + 31110 -6251.2673 -6255.5733 4.3060518 3749.956 633.94559 -10639.475 0 206.37016 0.00084399382 0.00082865165 + 31120 -6251.0484 -6255.4178 4.369366 3751.4999 635.00617 -10641.924 0 209.40453 0.00090028083 0.0008827022 + 31130 -6250.807 -6255.1909 4.3839062 3751.5866 636.45746 -10643.235 0 210.10138 0.0010146206 0.00099727061 + 31140 -6250.5445 -6254.925 4.3805257 3750.3674 638.0734 -10643.366 0 209.93937 0.0011660552 0.0011516304 + 31150 -6250.2423 -6254.6806 4.4383131 3748.2045 639.62242 -10642.507 0 212.70887 0.0013319987 0.0013212543 + 31160 -6249.8719 -6254.516 4.6440792 3745.6114 640.90936 -10641.037 0 222.57033 0.0014908096 0.0014817201 + 31170 -6249.4173 -6254.4504 5.0331566 3743.1982 641.78987 -10639.439 0 241.21711 0.0016213186 0.0016104059 + 31180 -6248.8936 -6254.4496 5.5559983 3741.5807 642.16315 -10638.193 0 266.27461 0.0017024437 0.0016873548 + 31190 -6248.3481 -6254.4469 6.0987936 3741.2344 641.96095 -10637.642 0 292.28841 0.0017155972 0.0016969508 + 31200 -6247.8376 -6254.3866 6.5489679 3742.3275 641.15099 -10637.865 0 313.86329 0.0016501216 0.0016310671 + 31210 -6247.3967 -6254.2592 6.862461 3744.6106 639.76048 -10638.63 0 328.88764 0.0015092151 0.0014928104 + 31220 -6247.0226 -6254.1049 7.0823219 3747.4374 637.90665 -10639.449 0 339.4246 0.0013126521 0.0012989719 + 31230 -6246.6908 -6253.9785 7.287675 3749.9344 635.81085 -10639.724 0 349.26628 0.001093993 0.0010794964 + 31240 -6246.3909 -6253.898 7.5071118 3751.2574 633.77917 -10638.935 0 359.78292 0.00089313285 0.00087340589 + 31250 -6246.1457 -6253.8216 7.6759416 3750.822 632.14895 -10636.793 0 367.87419 0.00074783439 0.00072179481 + 31260 -6245.993 -6253.6875 7.6944844 3748.4258 631.21397 -10633.327 0 368.76287 0.00068758292 0.0006591432 + 31270 -6245.9424 -6253.4845 7.5420917 3744.2687 631.14903 -10628.902 0 361.45935 0.0007293173 0.00070435161 + 31280 -6245.9556 -6253.2824 7.3268908 3738.9465 631.95577 -10624.185 0 351.14572 0.00087205212 0.00085320151 + 31290 -6245.9719 -6253.1834 7.21151 3733.4351 633.44732 -10620.066 0 345.61602 0.0010905588 0.0010747491 + 31300 -6245.9564 -6253.2391 7.282721 3728.9934 635.28079 -10617.513 0 349.02885 0.0013338196 0.0013147837 + 31310 -6245.9261 -6253.4078 7.4816968 3726.9016 637.03639 -10617.346 0 358.56489 0.001534737 0.0015083524 + 31320 -6245.9351 -6253.5862 7.6510135 3728.0537 638.32955 -10619.969 0 366.6795 0.0016315818 0.001599615 + 31330 -6246.0304 -6253.6905 7.6600272 3732.556 638.92672 -10625.173 0 367.11149 0.0015932674 0.001562448 + 31340 -6246.2114 -6253.7232 7.5118591 3739.5409 638.82479 -10632.089 0 360.01044 0.0014357436 0.0014126882 + 31350 -6246.428 -6253.7714 7.3434749 3747.3421 638.25833 -10639.372 0 351.94052 0.0012193603 0.0012052798 + 31360 -6246.6219 -6253.9294 7.3074943 3754.0051 637.62165 -10645.556 0 350.21613 0.0010263625 0.0010160875 + 31370 -6246.7775 -6254.206 7.4285031 3757.9218 637.3246 -10649.452 0 356.01555 0.00092858514 0.00091506663 + 31380 -6246.9353 -6254.5019 7.566563 3758.31 637.62959 -10650.441 0 362.63216 0.0009607649 0.00094120481 + 31390 -6247.1525 -6254.6856 7.5330197 3755.3579 638.53289 -10648.576 0 361.02457 0.0011107926 0.0010887445 + 31400 -6247.4464 -6254.7004 7.2540114 3750.0524 639.74543 -10644.498 0 347.65293 0.0013278539 0.0013094076 + 31410 -6247.7766 -6254.6016 6.8249634 3743.8369 640.7898 -10639.228 0 327.09054 0.0015408997 0.0015288294 + 31420 -6248.0814 -6254.493 6.411645 3738.236 641.17619 -10633.905 0 307.28201 0.0016789559 0.0016703964 + 31430 -6248.3283 -6254.4322 6.103862 3734.5105 640.58279 -10629.525 0 292.53132 0.0016891033 0.0016785181 + 31440 -6248.5333 -6254.3913 5.857972 3733.3643 638.96975 -10626.725 0 280.74689 0.0015509312 0.0015352207 + 31450 -6248.7353 -6254.3043 5.5690395 3734.7561 636.59154 -10625.652 0 266.89962 0.0012851251 0.0012661886 + 31460 -6248.9544 -6254.1533 5.1988946 3737.895 633.91654 -10625.965 0 249.1602 0.00095167255 0.00093427674 + 31470 -6249.1712 -6254.0132 4.8419474 3741.4798 631.49349 -10626.986 0 232.05329 0.00063453616 0.00062154088 + 31480 -6249.3448 -6254.0093 4.6644333 3744.1428 629.81265 -10627.965 0 223.54582 0.00041567062 0.00040507148 + 31490 -6249.4529 -6254.2185 4.765618 3744.937 629.19579 -10628.351 0 228.39515 0.00034809968 0.0003347483 + 31500 -6249.5163 -6254.6018 5.0855492 3743.6516 629.7299 -10627.983 0 243.72805 0.00043976312 0.00042020305 + 31510 -6249.5848 -6255.03 5.4451605 3740.8198 631.25154 -10627.101 0 260.96264 0.00065469932 0.00063049033 + 31520 -6249.6963 -6255.3762 5.6798637 3737.4516 633.38964 -10626.217 0 272.21094 0.00092908843 0.00090549366 + 31530 -6249.8475 -6255.5902 5.742655 3734.6565 635.66586 -10625.913 0 275.22025 0.0011930754 0.0011745399 + 31540 -6250.002 -6255.6975 5.6954676 3733.3223 637.62711 -10626.647 0 272.95876 0.0013893055 0.0013759485 + 31550 -6250.1242 -6255.7445 5.6203428 3733.922 638.96358 -10628.63 0 269.35836 0.0014839313 0.0014718156 + 31560 -6250.2071 -6255.7466 5.5394658 3736.441 639.57036 -10631.758 0 265.48228 0.0014702543 0.0014547472 + 31570 -6250.2764 -6255.678 5.4016227 3740.3956 639.53799 -10635.612 0 258.87607 0.0013666365 0.0013460942 + 31580 -6250.3686 -6255.5034 5.1347877 3744.9275 639.08684 -10639.518 0 246.08784 0.0012102256 0.0011873667 + 31590 -6250.5017 -6255.2263 4.724618 3748.9728 638.4763 -10642.675 0 226.43021 0.0010477277 0.0010276545 + 31600 -6250.6574 -6254.9153 4.2578889 3751.5042 637.92118 -10644.341 0 204.06193 0.00092405798 0.0009102488 + 31610 -6250.7928 -6254.677 3.8842049 3751.816 637.53837 -10644.031 0 186.15289 0.00087004738 0.0008615174 + 31620 -6250.8741 -6254.589 3.7148227 3749.766 637.33161 -10641.687 0 178.03515 0.00089239743 0.00088460407 + 31630 -6250.9027 -6254.6472 3.7445034 3745.8523 637.20831 -10637.708 0 179.45761 0.00097087037 0.00095969178 + 31640 -6250.9094 -6254.7798 3.8703366 3741.0584 637.01737 -10632.856 0 185.48825 0.0010658773 0.0010510896 + 31650 -6250.9236 -6254.9151 3.9914779 3736.5253 636.59979 -10628.04 0 191.29402 0.0011340691 0.0011192235 + 31660 -6250.9442 -6255.0429 4.0987512 3733.2048 635.84391 -10624.092 0 196.43515 0.0011445264 0.0011334727 + 31670 -6250.9374 -6255.2133 4.2759278 3731.6396 634.73327 -10621.586 0 204.92645 0.0010879507 0.0010811754 + 31680 -6250.8619 -6255.4754 4.6134843 3731.9179 633.37137 -10620.765 0 221.10405 0.00097599592 0.00096995791 + 31690 -6250.701 -6255.8075 5.1065053 3733.7512 631.97202 -10621.531 0 244.73239 0.00083375547 0.00082383123 + 31700 -6250.4779 -6256.0997 5.62183 3736.5874 630.8142 -10623.501 0 269.42964 0.00069129453 0.00067591597 + 31710 -6250.2386 -6256.2101 5.9715129 3739.708 630.17184 -10626.09 0 286.1884 0.00057839173 0.00056071943 + 31720 -6250.014 -6256.0597 6.0457309 3742.3285 630.23905 -10628.627 0 289.74535 0.00052207181 0.00050731247 + 31730 -6249.7912 -6255.6874 5.8962368 3743.7498 631.07619 -10630.513 0 282.58075 0.00054315395 0.00053350362 + 31740 -6249.5268 -6255.217 5.6901858 3743.568 632.59655 -10631.382 0 272.70563 0.00064952515 0.00064137658 + 31750 -6249.1921 -6254.7619 5.5698094 3741.8571 634.59471 -10631.214 0 266.93652 0.00082920256 0.00081566974 + 31760 -6248.8074 -6254.3553 5.5478935 3739.1941 636.79911 -10630.349 0 265.88618 0.0010497521 0.0010266765 + 31770 -6248.4313 -6253.9706 5.5393467 3736.4642 638.92482 -10629.36 0 265.47658 0.0012676364 0.0012376454 + 31780 -6248.1093 -6253.6054 5.4961633 3734.5302 640.71132 -10628.847 0 263.40698 0.001443322 0.0014139717 + 31790 -6247.8307 -6253.3371 5.5064497 3733.9485 641.94418 -10629.23 0 263.89997 0.0015525894 0.0015300898 + 31800 -6247.5339 -6253.2846 5.7506961 3734.8683 642.46775 -10630.621 0 275.60562 0.0015874232 0.0015716118 + 31810 -6247.1572 -6253.508 6.3507694 3737.0973 642.19804 -10632.803 0 304.3645 0.0015490569 0.0015339509 + 31820 -6246.6915 -6253.9401 7.2485987 3740.2129 641.14087 -10635.294 0 347.39352 0.0014420581 0.0014210884 + 31830 -6246.1935 -6254.4093 8.2158019 3743.6218 639.41293 -10637.444 0 393.74733 0.0012755955 0.0012468343 + 31840 -6245.7512 -6254.7308 8.9796445 3746.5806 637.25083 -10638.562 0 430.35495 0.001069708 0.0010370658 + 31850 -6245.4293 -6254.7985 9.3691922 3748.2611 634.98709 -10638.047 0 449.02426 0.00085889774 0.00082885153 + 31860 -6245.2359 -6254.6221 9.3861347 3747.9202 632.98453 -10635.527 0 449.83624 0.00068703742 0.0006637252 + 31870 -6245.1332 -6254.2964 9.163178 3745.1584 631.54754 -10631.002 0 439.1509 0.00059392994 0.00057640023 + 31880 -6245.0792 -6253.93 8.8507842 3740.1585 630.84618 -10624.935 0 424.17924 0.00059975403 0.00058338539 + 31890 -6245.0621 -6253.5883 8.5262208 3733.7635 630.88012 -10618.232 0 408.62434 0.00069562376 0.00067628171 + 31900 -6245.0987 -6253.2927 8.1939887 3727.3045 631.48887 -10612.086 0 392.70191 0.0008455019 0.0008226984 + 31910 -6245.2056 -6253.0596 7.8540095 3722.2323 632.40174 -10607.694 0 376.4082 0.00099855494 0.00097509214 + 31920 -6245.3763 -6252.9293 7.5530201 3719.7065 633.31544 -10605.951 0 361.9831 0.0011060741 0.0010850868 + 31930 -6245.5854 -6252.9555 7.3701265 3720.2945 633.98136 -10607.231 0 353.21781 0.0011363286 0.0011186089 + 31940 -6245.8086 -6253.1696 7.360945 3723.8489 634.27903 -10611.298 0 352.77779 0.0010830906 0.0010666357 + 31950 -6246.0424 -6253.5528 7.5104015 3729.5643 634.2542 -10617.371 0 359.94058 0.00096638728 0.00094809476 + 31960 -6246.3084 -6254.0326 7.7242278 3736.1792 634.10819 -10624.32 0 370.18834 0.0008262565 0.00080438564 + 31970 -6246.6392 -6254.5074 7.8682832 3742.2699 634.13317 -10630.91 0 377.09228 0.00071177363 0.00068732163 + 31980 -6247.0525 -6254.8924 7.8399011 3746.5691 634.60341 -10636.065 0 375.73205 0.0006677769 0.00064349291 + 31990 -6247.5326 -6255.1509 7.6183003 3748.2587 635.65717 -10639.067 0 365.1117 0.00072115591 0.00069897346 + 32000 -6248.0396 -6255.2852 7.2456172 3747.1799 637.21973 -10639.685 0 347.25063 0.00086959693 0.00084913461 + 32010 -6248.5362 -6255.3007 6.7644985 3743.8843 639.00367 -10638.189 0 324.19272 0.0010780443 0.0010577724 + 32020 -6249.0023 -6255.195 6.1927338 3739.4631 640.58497 -10635.243 0 296.79055 0.0012873514 0.0012668064 + 32030 -6249.4247 -6254.9878 5.563058 3735.1921 641.52352 -10631.703 0 266.61295 0.0014333542 0.0014135703 + 32040 -6249.7862 -6254.7502 4.9640164 3732.1394 641.48812 -10628.378 0 237.90352 0.0014678205 0.0014495987 + 32050 -6250.0703 -6254.5849 4.514602 3730.8957 640.35196 -10625.832 0 216.36506 0.0013721571 0.0013545564 + 32060 -6250.277 -6254.567 4.2900498 3731.4867 638.23435 -10624.288 0 205.60326 0.0011604365 0.0011414789 + 32070 -6250.4287 -6254.7026 4.2739467 3733.4325 635.47865 -10623.614 0 204.83151 0.00087408483 0.0008529639 + 32080 -6250.5563 -6254.939 4.3826506 3735.8977 632.57329 -10623.41 0 210.04121 0.00057198835 0.0005503546 + 32090 -6250.6774 -6255.2149 4.5374677 3737.908 630.03738 -10623.16 0 217.46091 0.00031797545 0.00029875733 + 32100 -6250.7834 -6255.5014 4.7180517 3738.617 628.30058 -10622.419 0 226.11551 0.00016627897 0.00015091805 + 32110 -6250.8491 -6255.798 4.9489034 3737.5782 627.60834 -10620.985 0 237.17922 0.00014683481 0.00013348984 + 32120 -6250.8585 -6256.0911 5.2325998 3734.9272 627.97689 -10618.995 0 250.77554 0.00025507895 0.00023971124 + 32130 -6250.8248 -6256.3202 5.4954157 3731.3796 629.20909 -10616.909 0 263.37116 0.00045196336 0.00043170644 + 32140 -6250.7864 -6256.3922 5.6057831 3728.0092 630.96401 -10615.365 0 268.66058 0.0006767232 0.00065271536 + 32150 -6250.7775 -6256.242 5.464458 3725.8741 632.85807 -10614.974 0 261.88749 0.00086842647 0.00084536835 + 32160 -6250.7972 -6255.893 5.095756 3725.6515 634.56572 -10616.11 0 244.21722 0.00098666111 0.00096898962 + 32170 -6250.8064 -6255.4595 4.6530891 3727.4444 635.89022 -10618.794 0 223.00214 0.001021485 0.0010092708 + 32180 -6250.7607 -6255.0786 4.3178858 3730.8279 636.78585 -10622.692 0 206.93732 0.0009892656 0.00097773315 + 32190 -6250.6502 -6254.823 4.1727342 3735.0542 637.32963 -10627.207 0 199.98083 0.00091984172 0.00090340421 + 32200 -6250.5102 -6254.6759 4.1657335 3739.2685 637.65561 -10631.6 0 199.64532 0.0008442832 0.00082158368 + 32210 -6250.3888 -6254.5891 4.2002981 3742.6497 637.87875 -10635.118 0 201.30185 0.00078843276 0.00076358825 + 32220 -6250.3029 -6254.5611 4.2581219 3744.5096 638.03977 -10637.11 0 204.07309 0.0007702766 0.00074906234 + 32230 -6250.2223 -6254.6513 4.4290214 3744.4195 638.09257 -10637.163 0 212.26356 0.00079669934 0.00078129486 + 32240 -6250.0977 -6254.9162 4.8184709 3742.3575 637.93404 -10635.208 0 230.92816 0.00085922652 0.00084634397 + 32250 -6249.9065 -6255.3307 5.4242245 3738.7778 637.45725 -10631.566 0 259.95927 0.00093326787 0.00091707683 + 32260 -6249.675 -6255.7707 6.0956901 3734.5131 636.60324 -10626.887 0 292.13967 0.00098499021 0.00096199808 + 32270 -6249.462 -6256.0716 6.6095648 3730.5161 635.39305 -10621.981 0 316.76743 0.00098443686 0.00095622522 + 32280 -6249.3159 -6256.1172 6.8012395 3727.5529 633.93133 -10617.601 0 325.95356 0.0009182731 0.00089012833 + 32290 -6249.2414 -6255.8987 6.6572689 3725.9873 632.38418 -10614.27 0 319.05368 0.00079520047 0.00077193016 + 32300 -6249.1999 -6255.5079 6.3079929 3725.7478 630.94313 -10612.199 0 302.31442 0.00064156772 0.00062380768 + 32310 -6249.1431 -6255.073 5.9299123 3726.4683 629.78999 -10611.331 0 284.19467 0.00049034219 0.00047427787 + 32320 -6249.0512 -6254.6846 5.6334018 3727.7004 629.06985 -10611.455 0 269.98422 0.00036976351 0.00035053966 + 32330 -6248.9441 -6254.3683 5.4241984 3729.0652 628.87116 -10612.305 0 259.95802 0.00029717207 0.00027312081 + 32340 -6248.8571 -6254.1199 5.2628202 3730.2861 629.21271 -10613.619 0 252.22388 0.00027948645 0.00025347907 + 32350 -6248.8045 -6253.9607 5.15623 3731.1536 630.04365 -10615.158 0 247.11547 0.00031738929 0.00029416556 + 32360 -6248.7635 -6253.9533 5.1897927 3731.5181 631.2618 -10616.733 0 248.72399 0.0004085394 0.00039043876 + 32370 -6248.6917 -6254.1596 5.4678352 3731.3471 632.74262 -10618.249 0 262.04934 0.00054695962 0.00053174317 + 32380 -6248.5626 -6254.5757 6.0131036 3730.7985 634.36126 -10619.735 0 288.18166 0.00071946968 0.00070201988 + 32390 -6248.3917 -6255.0999 6.7081928 3730.228 635.99441 -10621.322 0 321.49424 0.00090294572 0.00087947762 + 32400 -6248.2322 -6255.5644 7.3321808 3730.0806 637.50597 -10623.151 0 351.39925 0.00106632 0.0010377395 + 32410 -6248.1388 -6255.8186 7.6798215 3730.6992 638.73531 -10625.253 0 368.06014 0.0011782463 0.0011497399 + 32420 -6248.1253 -6255.8088 7.6834407 3732.1468 639.50885 -10627.464 0 368.23359 0.0012169803 0.0011937687 + 32430 -6248.1539 -6255.5921 7.438241 3734.1516 639.68218 -10629.426 0 356.48224 0.0011767749 0.001159463 + 32440 -6248.1707 -6255.2729 7.1021975 3736.207 639.19794 -10630.678 0 340.37716 0.0010676346 0.0010515315 + 32450 -6248.1556 -6254.9165 6.760848 3737.7518 638.12648 -10630.795 0 324.01777 0.00091065346 0.00089006437 + 32460 -6248.1357 -6254.5252 6.3895069 3738.3095 636.66007 -10629.495 0 306.22102 0.00073369938 0.00070727007 + 32470 -6248.1514 -6254.0974 5.9459566 3737.5393 635.05744 -10626.694 0 284.9636 0.0005690228 0.0005409851 + 32480 -6248.2105 -6253.6982 5.4877075 3735.2625 633.56587 -10622.527 0 263.00174 0.0004495543 0.00042576108 + 32490 -6248.2767 -6253.4621 5.185392 3731.5423 632.35681 -10617.361 0 248.51308 0.00040052735 0.00038319664 + 32500 -6248.2999 -6253.5147 5.2147967 3726.8008 631.49584 -10611.811 0 249.92232 0.00042827891 0.00041426029 + 32510 -6248.2572 -6253.8829 5.6257478 3721.8613 630.94551 -10606.69 0 269.6174 0.00051310083 0.00049687472 + 32520 -6248.1702 -6254.4673 6.2971726 3717.8149 630.59133 -10602.874 0 301.79584 0.00061266671 0.00059111622 + 32530 -6248.0887 -6255.0958 7.0070684 3715.7058 630.28631 -10601.088 0 335.81803 0.00067689691 0.00065174435 + 32540 -6248.0552 -6255.6129 7.5577163 3716.1583 629.91185 -10601.683 0 362.20817 0.00066827685 0.00064432453 + 32550 -6248.077 -6255.9407 7.8636337 3719.1153 629.44298 -10604.499 0 376.86945 0.00057808812 0.00055888878 + 32560 -6248.1316 -6256.0756 7.9440138 3723.8231 628.99166 -10608.89 0 380.72172 0.00043088687 0.0004155766 + 32570 -6248.1978 -6256.0363 7.8385452 3729.0716 628.79906 -10613.907 0 375.66707 0.00027568521 0.00025982051 + 32580 -6248.2851 -6255.819 7.5339136 3733.5733 629.16235 -10618.555 0 361.06741 0.00016874248 0.0001484818 + 32590 -6248.4279 -6255.4091 6.9812387 3736.3155 630.31163 -10622.036 0 334.58013 0.00015547507 0.00013123391 + 32600 -6248.6476 -6254.8373 6.1897167 3736.7831 632.28427 -10623.905 0 296.64595 0.0002568746 0.00023302669 + 32610 -6248.9247 -6254.2188 5.2941091 3735.0463 634.85772 -10624.123 0 253.72341 0.00046246211 0.00044354346 + 32620 -6249.2083 -6253.7266 4.5183066 3731.7296 637.57882 -10623.035 0 216.54261 0.00073067017 0.00071770832 + 32630 -6249.4541 -6253.5166 4.0625525 3727.865 639.88185 -10621.263 0 194.70031 0.00099762023 0.00098757747 + 32640 -6249.6528 -6253.6566 4.0038588 3724.6265 641.24855 -10619.532 0 191.88738 0.0011935332 0.0011818354 + 32650 -6249.8313 -6254.1018 4.2704811 3722.9944 641.35312 -10618.449 0 204.66542 0.0012626713 0.0012466003 + 32660 -6250.0321 -6254.724 4.6918734 3723.4453 640.14898 -10618.318 0 224.8609 0.001180565 0.0011611309 + 32670 -6250.2855 -6255.3746 5.0890796 3725.7785 637.87518 -10619.028 0 243.89725 0.00096265098 0.0009437465 + 32680 -6250.5902 -6255.9457 5.3555083 3729.1585 634.98506 -10620.089 0 256.66601 0.00066069332 0.0006460877 + 32690 -6250.9141 -6256.3938 5.4797028 3732.3828 632.02334 -10620.8 0 262.61811 0.00034704736 0.0003374113 + 32700 -6251.2175 -6256.7145 5.4969044 3734.2909 629.49326 -10620.499 0 263.4425 9.1750836e-05 8.4167281e-05 + 32710 -6251.4813 -6256.8972 5.4158483 3734.1529 627.75201 -10618.802 0 259.55784 -5.8532735e-05 -6.8016799e-05 + 32720 -6251.7143 -6256.9075 5.1932729 3731.8803 626.95513 -10615.743 0 248.89077 -9.1088244e-05 -0.00010404218 + 32730 -6251.935 -6256.7172 4.7821711 3727.9923 627.05268 -10611.762 0 229.18847 -2.4323432e-05 -3.8687874e-05 + 32740 -6252.1464 -6256.3512 4.2047541 3723.3981 627.83034 -10607.58 0 201.51541 0.00010428951 9.2222591e-05 + 32750 -6252.3277 -6255.9043 3.5766059 3719.1217 628.98261 -10604.009 0 171.41102 0.00025209871 0.00024433773 + 32760 -6252.4504 -6255.5062 3.055777 3716.0723 630.19998 -10601.778 0 146.44998 0.00038165662 0.0003767348 + 32770 -6252.5013 -6255.259 2.7576818 3714.8929 631.24716 -10601.399 0 132.16359 0.00046666913 0.00046085393 + 32780 -6252.4934 -6255.1958 2.7024139 3715.8638 632.01177 -10603.071 0 129.51484 0.00049526167 0.0004855864 + 32790 -6252.4554 -6255.2855 2.8301534 3718.8441 632.51145 -10606.641 0 135.63683 0.00047175485 0.00045830396 + 32800 -6252.4096 -6255.4743 3.0646533 3723.2713 632.8603 -10611.606 0 146.87538 0.00041595928 0.0004016121 + 32810 -6252.3539 -6255.7244 3.3704889 3728.2558 633.20799 -10617.188 0 161.53274 0.00035805902 0.00034603044 + 32820 -6252.2605 -6256.0215 3.7609623 3732.7807 633.67388 -10622.476 0 180.24642 0.00032891975 0.00032012464 + 32830 -6252.0929 -6256.3491 4.2561977 3735.9569 634.29945 -10626.605 0 203.98088 0.00034887237 0.00034113616 + 32840 -6251.8291 -6256.6579 4.8287897 3737.244 635.03438 -10628.936 0 231.4227 0.00041990723 0.00040955876 + 32850 -6251.4781 -6256.8597 5.3815471 3736.5545 635.75665 -10629.171 0 257.91393 0.00052505565 0.0005097026 + 32860 -6251.0775 -6256.8565 5.7790301 3734.2093 636.3132 -10627.379 0 276.96355 0.00063524759 0.00061570924 + 32870 -6250.6726 -6256.591 5.9184225 3730.78 636.56183 -10623.933 0 283.64401 0.00072028654 0.00070019648 + 32880 -6250.2902 -6256.085 5.7947381 3726.9005 636.40041 -10619.386 0 277.71637 0.00075870114 0.00074192383 + 32890 -6249.9272 -6255.4382 5.5109647 3723.132 635.78043 -10614.351 0 264.11635 0.00074212239 0.00072988711 + 32900 -6249.5628 -6254.7833 5.2205035 3719.9168 634.71071 -10609.411 0 250.19582 0.00067334976 0.0006634229 + 32910 -6249.1831 -6254.2294 5.04623 3717.5828 633.25697 -10605.069 0 241.84365 0.00056133272 0.00054990054 + 32920 -6248.7951 -6253.8344 5.0393662 3716.3367 631.53792 -10601.709 0 241.5147 0.00041757408 0.00040218309 + 32930 -6248.4199 -6253.6175 5.1975936 3716.2218 629.71581 -10599.555 0 249.09785 0.00025592207 0.00023713514 + 32940 -6248.0758 -6253.584 5.508228 3717.0736 627.98115 -10598.639 0 263.98519 9.4286838e-05 7.5045982e-05 + 32950 -6247.7646 -6253.7384 5.9738789 3718.5218 626.53519 -10598.795 0 286.3018 -4.4458633e-05 -6.107118e-05 + 32960 -6247.4725 -6254.0743 6.6018037 3720.0679 625.5749 -10599.717 0 316.39548 -0.00013443556 -0.00014746124 + 32970 -6247.1862 -6254.5482 7.3620545 3721.2297 625.27972 -10601.058 0 352.83096 -0.00015222374 -0.00016350192 + 32980 -6246.9134 -6255.0576 8.1441862 3721.7088 625.79089 -10602.557 0 390.3151 -8.448909e-05 -9.7058024e-05 + 32990 -6246.6904 -6255.4524 8.7619296 3721.5025 627.17119 -10604.126 0 419.92083 6.5623377e-05 5.0230941e-05 + 33000 -6246.5609 -6255.5935 9.0326806 3720.8967 629.34886 -10605.839 0 432.89674 0.00027686293 0.00025994131 + 33010 -6246.5404 -6255.4275 8.8870668 3720.3448 632.07592 -10607.848 0 425.9181 0.00051388738 0.00049807495 + 33020 -6246.6018 -6255.0162 8.4143109 3720.3042 634.94302 -10610.263 0 403.26099 0.00073468913 0.00072117847 + 33030 -6246.6973 -6254.4957 7.7984419 3721.1001 637.46881 -10613.065 0 373.74509 0.00089886836 0.00088630703 + 33040 -6246.7934 -6254.0022 7.2088405 3722.8315 639.23292 -10616.067 0 345.48809 0.00097614684 0.00096223748 + 33050 -6246.8842 -6253.6289 6.7446317 3725.3053 639.99119 -10618.925 0 323.24059 0.00095477158 0.00093850244 + 33060 -6246.977 -6253.4313 6.4543021 3728.0206 639.72401 -10621.176 0 309.32637 0.00084677205 0.00082888357 + 33070 -6247.0746 -6253.4442 6.3696349 3730.2561 638.6088 -10622.309 0 305.26865 0.00068568777 0.00066738593 + 33080 -6247.1738 -6253.6765 6.5027712 3731.2675 636.94265 -10621.887 0 311.64928 0.00051582391 0.00049754353 + 33090 -6247.2745 -6254.0932 6.8187008 3730.5298 635.05191 -10619.675 0 326.7904 0.0003774764 0.00035887596 + 33100 -6247.3863 -6254.6126 7.2263437 3727.9231 633.21585 -10615.752 0 346.32694 0.00029467707 0.00027538388 + 33110 -6247.5232 -6255.1297 7.606502 3723.7987 631.61685 -10610.545 0 364.54626 0.00026962492 0.00024961482 + 33120 -6247.6959 -6255.55 7.85405 3718.9104 630.32161 -10604.782 0 376.41015 0.00028418089 0.00026350724 + 33130 -6247.9075 -6255.8095 7.9020001 3714.2371 629.29516 -10599.342 0 378.70818 0.00030681932 0.00028539799 + 33140 -6248.156 -6255.8779 7.7218492 3710.7353 628.44506 -10595.058 0 370.07434 0.0003033376 0.00028134326 + 33150 -6248.4362 -6255.7549 7.3186445 3709.0801 627.6843 -10592.519 0 350.75051 0.00024924688 0.00022772399 + 33160 -6248.7366 -6255.4706 6.7340666 3709.4728 626.99261 -10591.936 0 322.73426 0.00014029096 0.00012111775 + 33170 -6249.0356 -6255.0881 6.0525274 3711.5865 626.45071 -10593.125 0 290.07107 -3.2828854e-06 -1.8451055e-05 + 33180 -6249.3041 -6254.698 5.3939116 3714.6802 626.22825 -10595.606 0 258.50651 -0.00014158744 -0.00015279044 + 33190 -6249.5162 -6254.3955 4.8793642 3717.8496 626.52503 -10598.77 0 233.84651 -0.00022836392 -0.00023789052 + 33200 -6249.6646 -6254.2452 4.5805505 3720.3238 627.48688 -10602.056 0 219.52568 -0.00022772847 -0.00023882485 + 33210 -6249.767 -6254.2584 4.4913747 3721.6905 629.12864 -10605.078 0 215.25188 -0.0001272391 -0.00014169827 + 33220 -6249.8543 -6254.4067 4.5524 3721.9648 631.29397 -10607.665 0 218.17655 5.8012904e-05 4.1320805e-05 + 33230 -6249.9491 -6254.6584 4.7093131 3721.5027 633.66951 -10609.831 0 225.69671 0.00029067884 0.00027490968 + 33240 -6250.0507 -6255.0024 4.9517095 3720.8282 635.85309 -10611.684 0 237.3137 0.00052206108 0.00050981318 + 33250 -6250.14 -6255.4373 5.2972581 3720.4525 637.45581 -10613.346 0 253.87433 0.00070415463 0.00069535328 + 33260 -6250.1987 -6255.9358 5.737087 3720.7318 638.20394 -10614.872 0 274.9534 0.00080001444 0.00079196339 + 33270 -6250.2284 -6256.4206 6.192179 3721.7744 638.00595 -10616.201 0 296.76396 0.00079130003 0.00078078231 + 33280 -6250.254 -6256.7765 6.5224711 3723.3953 636.96401 -10617.136 0 312.59341 0.00068220366 0.00066789946 + 33290 -6250.3071 -6256.8967 6.5896031 3725.132 635.33093 -10617.36 0 315.81076 0.00049863769 0.00048194663 + 33300 -6250.4036 -6256.7356 6.3320513 3726.3423 633.43294 -10616.511 0 303.46743 0.00028190867 0.0002656032 + 33310 -6250.5318 -6256.3319 5.8000347 3726.3852 631.58551 -10614.303 0 277.97021 7.7751604e-05 6.3652891e-05 + 33320 -6250.6626 -6255.7893 5.126692 3724.8395 630.02617 -10610.655 0 245.69984 -7.6234711e-05 -8.8610436e-05 + 33330 -6250.7707 -6255.2301 4.459396 3721.681 628.87828 -10605.789 0 213.71928 -0.00016044634 -0.00017320507 + 33340 -6250.8506 -6254.7525 3.9019106 3717.3353 628.14934 -10600.237 0 187.00145 -0.0001767808 -0.00019162407 + 33350 -6250.9145 -6254.4167 3.5021519 3712.5777 627.75819 -10594.753 0 167.84277 -0.000144698 -0.0001613186 + 33360 -6250.9766 -6254.2565 3.2799033 3708.3203 627.5805 -10590.157 0 157.19137 -9.1894119e-05 -0.00010811057 + 33370 -6251.0367 -6254.2978 3.2610712 3705.3734 627.49935 -10587.17 0 156.28883 -4.3678955e-05 -5.7227505e-05 + 33380 -6251.0747 -6254.5599 3.4851222 3704.2658 627.44814 -10586.274 0 167.02661 -1.5236003e-05 -2.5884754e-05 + 33390 -6251.0612 -6255.0339 3.9726881 3705.1705 627.43488 -10587.639 0 190.3935 -9.2836141e-06 -1.9527708e-05 + 33400 -6250.9785 -6255.651 4.6725332 3707.9235 627.53978 -10591.114 0 223.93401 -1.8867321e-05 -3.2268342e-05 + 33410 -6250.8379 -6256.2742 5.4363704 3712.0853 627.8841 -10596.244 0 260.54137 -3.2344986e-05 -5.0448834e-05 + 33420 -6250.6761 -6256.7411 6.0649865 3716.9961 628.57901 -10602.316 0 290.66818 -3.7009307e-05 -5.7436242e-05 + 33430 -6250.5266 -6256.939 6.4124304 3721.8341 629.67393 -10608.447 0 307.31964 -2.0222156e-05 -3.8074301e-05 + 33440 -6250.3911 -6256.8589 6.4678681 3725.7292 631.12696 -10613.715 0 309.97653 2.9536609e-05 1.7703652e-05 + 33450 -6250.2402 -6256.5774 6.3371518 3727.9576 632.80839 -10617.343 0 303.71187 0.00011870386 0.00011187326 + 33460 -6250.0458 -6256.184 6.1382333 3728.1583 634.52871 -10618.871 0 294.17858 0.00024258959 0.00023618002 + 33470 -6249.8102 -6255.7229 5.9127567 3726.4499 636.0724 -10618.245 0 283.37248 0.00038228423 0.00037213536 + 33480 -6249.5642 -6255.2005 5.6362565 3723.3713 637.22431 -10615.796 0 270.12104 0.0005086575 0.0004943086 + 33490 -6249.3369 -6254.6402 5.3032742 3719.6804 637.79075 -10612.111 0 254.16265 0.00059194458 0.00057632823 + 33500 -6249.1282 -6254.1198 4.9916254 3716.1239 637.62445 -10607.868 0 239.2267 0.00061098807 0.00059723446 + 33510 -6248.9088 -6253.7497 4.8408092 3713.2747 636.6562 -10603.681 0 231.99874 0.00055736042 0.00054589305 + 33520 -6248.6438 -6253.6089 4.9651334 3711.4643 634.92386 -10599.997 0 237.95705 0.00043442761 0.00042289805 + 33530 -6248.3184 -6253.6957 5.3773247 3710.773 632.58337 -10597.052 0 257.71157 0.00025488298 0.00024077782 + 33540 -6247.9467 -6253.9342 5.9875217 3711.0351 629.89217 -10594.862 0 286.95563 3.9727161e-05 2.3052305e-05 + 33550 -6247.554 -6254.2338 6.6798185 3711.8533 627.16856 -10593.256 0 320.13438 -0.00018168675 -0.00019842074 + 33560 -6247.1517 -6254.5481 7.3963825 3712.6653 624.74275 -10591.956 0 354.47615 -0.00037380096 -0.00038854397 + 33570 -6246.7327 -6254.8753 8.1425648 3712.9037 622.91568 -10590.695 0 390.23739 -0.00050180851 -0.00051590764 + 33580 -6246.2991 -6255.2011 8.9019735 3712.2148 621.9295 -10589.345 0 426.63252 -0.00054173433 -0.00055939425 + 33590 -6245.893 -6255.4481 9.5550664 3710.6182 621.94035 -10588.007 0 457.9324 -0.00048798155 -0.00051223898 + 33600 -6245.5891 -6255.4959 9.9068406 3708.5014 622.98567 -10586.983 0 474.79139 -0.00035360685 -0.000382751 + 33610 -6245.4457 -6255.263 9.8173736 3706.4567 624.95447 -10586.674 0 470.50363 -0.00016414072 -0.00019237765 + 33620 -6245.4604 -6254.775 9.3146389 3705.0764 627.58275 -10587.434 0 446.40976 4.9704271e-05 2.7832393e-05 + 33630 -6245.5731 -6254.1604 8.5872377 3704.8143 630.4902 -10589.465 0 411.54862 0.00025635546 0.00024186278 + 33640 -6245.7107 -6253.5861 7.8754092 3705.9303 633.25342 -10592.77 0 377.4338 0.00042553574 0.00041447844 + 33650 -6245.8309 -6253.1847 7.3537836 3708.4642 635.49338 -10597.142 0 352.43457 0.00053142344 0.00051790115 + 33660 -6245.9394 -6253.0131 7.0736187 3712.2035 636.95103 -10602.168 0 339.0075 0.00055800947 0.00053833388 + 33670 -6246.0754 -6253.0548 6.9794156 3716.6514 637.53092 -10607.237 0 334.49276 0.00050499142 0.00048033524 + 33680 -6246.2781 -6253.2607 6.9825252 3721.0337 637.30286 -10611.597 0 334.64179 0.00039121554 0.00036684901 + 33690 -6246.5553 -6253.5965 7.0412003 3724.4007 636.46371 -10614.461 0 337.45383 0.00025233454 0.00023360209 + 33700 -6246.8787 -6254.055 7.1762859 3725.8571 635.27277 -10615.185 0 343.92789 0.00013048392 0.00011848722 + 33710 -6247.2147 -6254.6148 7.4000802 3724.8732 633.97855 -10613.467 0 354.65336 5.8074195e-05 4.8889188e-05 + 33720 -6247.5606 -6255.1915 7.6308963 3721.5279 632.7539 -10609.473 0 365.71537 4.3354172e-05 3.1674608e-05 + 33730 -6247.9484 -6255.6448 7.6964531 3716.5291 631.6556 -10603.83 0 368.85722 6.6617829e-05 5.0488595e-05 + 33740 -6248.4077 -6255.8512 7.4435416 3710.9802 630.62496 -10597.456 0 356.73628 9.0094237e-05 7.2370112e-05 + 33750 -6248.9252 -6255.7838 6.8586101 3706.0136 629.53656 -10591.334 0 328.70308 7.5861042e-05 6.1309339e-05 + 33760 -6249.4415 -6255.5312 6.0897514 3702.4719 628.28062 -10586.284 0 291.85506 1.7727028e-06 -7.2312211e-06 + 33770 -6249.8885 -6255.2441 5.3556217 3700.7524 626.84294 -10582.839 0 256.67144 -0.0001315674 -0.0001369944 + 33780 -6250.231 -6255.0519 4.8209075 3700.8152 625.34477 -10581.212 0 231.04494 -0.00030316721 -0.00030967977 + 33790 -6250.4804 -6255.006 4.5255873 3702.2916 624.02538 -10581.323 0 216.89154 -0.00047935165 -0.00049068412 + 33800 -6250.678 -6255.078 4.4000786 3704.6168 623.17566 -10582.87 0 210.87645 -0.00062259056 -0.00063875406 + 33810 -6250.8638 -6255.2052 4.3414551 3707.1534 623.04844 -10585.407 0 208.06689 -0.00069929097 -0.00071659346 + 33820 -6251.0512 -6255.3451 4.2939485 3709.3095 623.77638 -10588.431 0 205.79011 -0.0006864273 -0.00070028061 + 33830 -6251.2214 -6255.4993 4.2779223 3710.6639 625.32408 -10591.487 0 205.02204 -0.00057742466 -0.00058585743 + 33840 -6251.3417 -6255.6914 4.3497369 3711.0873 627.48774 -10594.266 0 208.4638 -0.0003864791 -0.00039166445 + 33850 -6251.3929 -6255.9223 4.5294295 3710.8019 629.93921 -10596.663 0 217.07568 -0.00014878012 -0.00015538041 + 33860 -6251.386 -6256.1457 4.7596691 3710.3169 632.29783 -10598.76 0 228.11005 8.5956317e-05 7.4314794e-05 + 33870 -6251.3552 -6256.2876 4.9323491 3710.2291 634.20937 -10600.726 0 236.38585 0.00026654482 0.00024990743 + 33880 -6251.3337 -6256.2945 4.9608356 3710.9618 635.41447 -10602.671 0 237.75108 0.00035578047 0.00033767274 + 33890 -6251.3312 -6256.1697 4.8384501 3712.5652 635.79352 -10604.528 0 231.88568 0.00034167837 0.00032645406 + 33900 -6251.3307 -6255.9701 4.6394128 3714.6759 635.37898 -10606.025 0 222.34669 0.00023945371 0.0002293123 + 33910 -6251.3023 -6255.7696 4.467262 3716.6464 634.33191 -10606.748 0 214.09626 8.3825432e-05 7.7557274e-05 + 33920 -6251.2252 -6255.6162 4.3909911 3717.7771 632.88896 -10606.282 0 210.44093 -8.4311789e-05 -9.0239558e-05 + 33930 -6251.0999 -6255.5095 4.409576 3717.5485 631.29613 -10604.354 0 211.33163 -0.00023099482 -0.00023992787 + 33940 -6250.9482 -6255.4124 4.4642545 3715.7691 629.74963 -10600.931 0 213.95212 -0.00033726276 -0.00035012759 + 33950 -6250.7975 -6255.2879 4.4904489 3712.6016 628.36101 -10596.251 0 215.20751 -0.00040021389 -0.00041506112 + 33960 -6250.6626 -6255.1378 4.4752134 3708.4887 627.15597 -10590.782 0 214.47734 -0.00042839531 -0.00044204273 + 33970 -6250.5356 -6255.0124 4.4767417 3704.0369 626.10575 -10585.155 0 214.55058 -0.00043507309 -0.00044561508 + 33980 -6250.3946 -6254.9809 4.5863312 3699.911 625.1784 -10580.07 0 219.80273 -0.00043277691 -0.00044098741 + 33990 -6250.2232 -6255.082 4.8587482 3696.7474 624.38656 -10576.216 0 232.85847 -0.00043045773 -0.00043899338 + 34000 -6250.0267 -6255.2912 5.2644734 3695.068 623.80735 -10574.167 0 252.3031 -0.00043260446 -0.00044375165 + 34010 -6249.8307 -6255.5308 5.7001331 3695.1803 623.56224 -10574.273 0 273.18236 -0.00043920741 -0.00045307957 + 34020 -6249.6639 -6255.7111 6.0471475 3697.0911 623.76703 -10576.569 0 289.81324 -0.00044618636 -0.000460776 + 34030 -6249.5392 -6255.7733 6.2341117 3700.4787 624.47938 -10580.731 0 298.77361 -0.00044651741 -0.0004594119 + 34040 -6249.4469 -6255.709 6.262135 3704.7511 625.67144 -10586.132 0 300.11665 -0.00043213565 -0.00044246645 + 34050 -6249.365 -6255.5493 6.1843617 3709.1749 627.23845 -10591.963 0 296.38931 -0.00039618545 -0.00040537731 + 34060 -6249.2761 -6255.3367 6.0606052 3713.0316 629.0323 -10597.401 0 290.45821 -0.000334989 -0.00034579989 + 34070 -6249.1801 -6255.0988 5.9187616 3715.7535 630.89744 -10601.75 0 283.66027 -0.00024922827 -0.00026366299 + 34080 -6249.0935 -6254.8437 5.7501571 3717.0047 632.68966 -10604.538 0 275.57979 -0.00014396329 -0.00016146464 + 34090 -6249.0343 -6254.5809 5.546577 3716.6975 634.27304 -10605.551 0 265.82309 -2.747347e-05 -4.4936636e-05 + 34100 -6249.0015 -6254.3519 5.3503723 3714.9688 635.507 -10604.828 0 256.41986 9.0076016e-05 7.6045302e-05 + 34110 -6248.9691 -6254.2323 5.2631601 3712.1568 636.24212 -10602.631 0 252.24016 0.00019639873 0.0001865975 + 34120 -6248.903 -6254.2893 5.3862176 3708.7909 636.33464 -10599.415 0 258.13777 0.00027487944 0.00026660734 + 34130 -6248.7886 -6254.5241 5.7354953 3705.5514 635.67471 -10595.75 0 274.87712 0.00030310069 0.00029228871 + 34140 -6248.6438 -6254.8543 6.2105414 3703.1376 634.21736 -10592.209 0 297.64399 0.00025629643 0.00024084295 + 34150 -6248.5057 -6255.1569 6.651266 3702.0514 632.00974 -10589.218 0 318.76599 0.00011706093 9.8407505e-05 + 34160 -6248.4029 -6255.3385 6.9355929 3702.3884 629.21285 -10586.94 0 332.39253 -0.00011276933 -0.00013104355 + 34170 -6248.3375 -6255.3772 7.0397054 3703.7557 626.1112 -10585.244 0 337.38218 -0.00040515498 -0.0004202651 + 34180 -6248.2896 -6255.3136 7.0239346 3705.3772 623.09758 -10583.788 0 336.62636 -0.00070872985 -0.00072066996 + 34190 -6248.2378 -6255.2067 6.9689417 3706.3512 620.62258 -10582.181 0 333.99079 -0.0009611318 -0.00097235203 + 34200 -6248.1771 -6255.0919 6.9148595 3705.9632 619.11048 -10580.166 0 331.39886 -0.0011060847 -0.0011193543 + 34210 -6248.122 -6254.9663 6.8443418 3703.9372 618.85837 -10577.762 0 328.01926 -0.0011092137 -0.0011254022 + 34220 -6248.092 -6254.8093 6.7173201 3700.5444 619.94671 -10575.3 0 321.93167 -0.00096775888 -0.00098529706 + 34230 -6248.092 -6254.6184 6.5264221 3696.5465 622.1944 -10573.359 0 312.78277 -0.0007118728 -0.00072837031 + 34240 -6248.1055 -6254.4269 6.3213805 3693.0124 625.18374 -10572.623 0 302.95602 -0.00039788603 -0.00041248356 + 34250 -6248.1077 -6254.2837 6.1759459 3691.0632 628.3571 -10573.704 0 295.98598 -9.5569447e-05 -0.00010977828 + 34260 -6248.088 -6254.2167 6.1287508 3691.5872 631.15744 -10576.961 0 293.72413 0.00012829499 0.00011212708 + 34270 -6248.0578 -6254.2167 6.1588527 3694.9595 633.16652 -10582.343 0 295.16678 0.00022736115 0.00020843132 + 34280 -6248.0384 -6254.2578 6.2194245 3700.8401 634.19784 -10589.296 0 298.06972 0.00018986086 0.00016978493 + 34290 -6248.0399 -6254.3306 6.2907086 3708.1523 634.31967 -10596.803 0 301.48605 4.3658075e-05 2.5078821e-05 + 34300 -6248.0536 -6254.4505 6.396932 3715.3042 633.80473 -10603.559 0 306.57688 -0.00015185827 -0.00016750039 + 34310 -6248.0616 -6254.6355 6.5739596 3720.6041 633.02296 -10608.263 0 315.06103 -0.00032568854 -0.00033924825 + 34320 -6248.0543 -6254.8763 6.8219663 3722.7353 632.31015 -10609.922 0 326.9469 -0.00041975088 -0.00043362051 + 34330 -6248.0405 -6255.1244 7.0839139 3721.1273 631.85459 -10608.106 0 339.5009 -0.00040857849 -0.00042487807 + 34340 -6248.0443 -6255.3086 7.2643536 3716.1109 631.6396 -10603.059 0 348.14859 -0.00030703827 -0.00032612257 + 34350 -6248.091 -6255.3674 7.2763922 3708.814 631.46176 -10595.643 0 348.72554 -0.00016382672 -0.0001841182 + 34360 -6248.1912 -6255.2805 7.0893445 3700.8357 631.01915 -10587.135 0 339.76117 -4.3703709e-05 -6.2957355e-05 + 34370 -6248.3337 -6255.0793 6.7455766 3693.8104 630.03965 -10578.929 0 323.28588 -5.2538769e-06 -2.2274417e-05 + 34380 -6248.4961 -6254.8282 6.3321317 3689.0042 628.40374 -10572.236 0 303.47128 -8.1988784e-05 -9.7323597e-05 + 34390 -6248.6616 -6254.5915 5.9299451 3687.0548 626.21559 -10567.862 0 284.19624 -0.00027237072 -0.00028737002 + 34400 -6248.8278 -6254.4138 5.5860063 3687.893 623.79486 -10566.102 0 267.71276 -0.00054046424 -0.00055578266 + 34410 -6248.9983 -6254.3255 5.327247 3690.8361 621.59332 -10566.755 0 255.31157 -0.00082593025 -0.00084115313 + 34420 -6249.1711 -6254.3547 5.1835314 3694.8231 620.07056 -10569.248 0 248.42391 -0.0010606295 -0.0010753016 + 34430 -6249.3386 -6254.517 5.1783841 3698.7379 619.57337 -10572.828 0 248.17722 -0.0011877231 -0.0012023199 + 34440 -6249.4978 -6254.7931 5.2953074 3701.7221 620.25219 -10576.767 0 253.78084 -0.0011775078 -0.0011930957 + 34450 -6249.6565 -6255.1222 5.4657752 3703.3682 622.02921 -10580.52 0 261.95062 -0.0010345082 -0.0010515866 + 34460 -6249.8265 -6255.4258 5.5993168 3703.7434 624.61936 -10583.789 0 268.35068 -0.00079386175 -0.00081174538 + 34470 -6250.0141 -6255.6418 5.6277035 3703.2695 627.59753 -10586.509 0 269.71113 -0.00050950028 -0.00052672296 + 34480 -6250.2148 -6255.7443 5.5295105 3702.5281 630.49558 -10588.768 0 265.00517 -0.00023892143 -0.00025411392 + 34490 -6250.415 -6255.7456 5.3306139 3702.0565 632.90221 -10590.704 0 255.47293 -2.9192154e-05 -4.1893338e-05 + 34500 -6250.5962 -6255.6853 5.089151 3702.1924 634.53722 -10592.415 0 243.90067 9.2101048e-05 8.0946934e-05 + 34510 -6250.7435 -6255.6085 4.8649878 3703.0117 635.28235 -10593.903 0 233.15751 0.00011868774 0.00010700172 + 34520 -6250.8557 -6255.5377 4.6819457 3704.3593 635.16718 -10595.064 0 224.38511 6.0882297e-05 4.6846863e-05 + 34530 -6250.9477 -6255.4638 4.5160957 3705.9231 634.3222 -10595.709 0 216.43665 -6.175668e-05 -7.8002488e-05 + 34540 -6251.0367 -6255.3707 4.3339523 3707.2989 632.92102 -10595.591 0 207.70731 -0.00022597695 -0.00024213387 + 34550 -6251.1237 -6255.2719 4.148118 3708.0454 631.13637 -10594.454 0 198.80109 -0.00040749788 -0.00042104713 + 34560 -6251.1895 -6255.2157 4.0261743 3707.7665 629.12594 -10592.108 0 192.95686 -0.00058291428 -0.00059345998 + 34570 -6251.2114 -6255.2476 4.0362101 3706.2242 627.04496 -10588.517 0 193.43783 -0.0007324288 -0.00074204353 + 34580 -6251.1828 -6255.3677 4.1848865 3703.4318 625.06371 -10583.863 0 200.56324 -0.00084232668 -0.00085356717 + 34590 -6251.1161 -6255.527 4.4109242 3699.6712 623.36682 -10578.565 0 211.39624 -0.00090546913 -0.00091907339 + 34600 -6251.0287 -6255.665 4.636355 3695.4353 622.12613 -10573.226 0 222.20015 -0.00092017039 -0.00093454904 + 34610 -6250.925 -6255.75 4.8250676 3691.3378 621.45884 -10568.547 0 231.24431 -0.00088953696 -0.00090233379 + 34620 -6250.7904 -6255.7909 5.0005403 3688.0291 621.39286 -10565.213 0 239.65395 -0.00082247893 -0.00083274758 + 34630 -6250.6004 -6255.8137 5.2132489 3686.1212 621.85876 -10563.794 0 249.84814 -0.00073520057 -0.00074441516 + 34640 -6250.3384 -6255.8235 5.4851095 3686.1035 622.71508 -10564.642 0 262.87723 -0.00065041058 -0.00066148968 + 34650 -6250.0094 -6255.7835 5.7741087 3688.2321 623.79805 -10567.814 0 276.72769 -0.00059211529 -0.00060713993 + 34660 -6249.6396 -6255.6305 5.9909168 3692.4024 624.97536 -10573.008 0 287.11835 -0.0005764947 -0.00059491372 + 34670 -6249.2591 -6255.3214 6.0623276 3698.0547 626.18231 -10579.558 0 290.54076 -0.00060262928 -0.00062156808 + 34680 -6248.8804 -6254.875 5.9946077 3704.1895 627.42749 -10586.492 0 287.29524 -0.0006485606 -0.0006651982 + 34690 -6248.4919 -6254.3736 5.8816364 3709.5477 628.76932 -10592.691 0 281.88102 -0.00067647741 -0.00069053473 + 34700 -6248.0729 -6253.9196 5.8467291 3712.9314 630.27316 -10597.124 0 280.20806 -0.00064611866 -0.00066019972 + 34710 -6247.6165 -6253.5839 5.9673184 3713.5527 631.95931 -10599.096 0 285.98738 -0.0005309562 -0.00054836664 + 34720 -6247.14 -6253.3858 6.2458762 3711.2753 633.75091 -10598.412 0 299.33743 -0.00033061262 -0.0003526055 + 34730 -6246.673 -6253.315 6.6419549 3706.6653 635.43681 -10595.417 0 318.31975 -7.5339832e-05 -0.00010015827 + 34740 -6246.2388 -6253.3608 7.1220117 3700.8498 636.67321 -10590.884 0 341.32676 0.00017851362 0.00015423295 + 34750 -6245.8445 -6253.5217 7.6772176 3695.2311 637.0459 -10585.799 0 367.93534 0.0003612553 0.00034014952 + 34760 -6245.488 -6253.7893 8.3012972 3691.1222 636.19212 -10581.104 0 397.84474 0.00040861071 0.00039108563 + 34770 -6245.172 -6254.1274 8.9553471 3689.3891 633.94738 -10577.464 0 429.19048 0.00028198341 0.00026628709 + 34780 -6244.915 -6254.4624 9.5473973 3690.2027 630.45827 -10575.123 0 457.56485 -1.6344297e-05 -3.2685462e-05 + 34790 -6244.7514 -6254.6956 9.9442133 3692.9821 626.20523 -10573.883 0 476.5825 -0.00043895728 -0.00045716818 + 34800 -6244.7157 -6254.7398 10.024057 3696.555 621.91025 -10573.205 0 480.40905 -0.00090224713 -0.0009211692 + 34810 -6244.8172 -6254.5689 9.75172 3699.4911 618.35448 -10572.414 0 467.35714 -0.0013065107 -0.0013234897 + 34820 -6245.0252 -6254.244 9.2188251 3700.5304 616.17311 -10570.948 0 441.81783 -0.0015620573 -0.0015753976 + 34830 -6245.2847 -6253.8849 8.6002239 3698.9943 615.70283 -10568.582 0 412.17098 -0.0016141626 -0.0016248825 + 34840 -6245.5502 -6253.6007 8.0505199 3695.0477 616.92438 -10565.573 0 385.82609 -0.0014589509 -0.001469979 + 34850 -6245.808 -6253.4349 7.6268481 3689.6937 619.49728 -10562.626 0 365.52136 -0.001144246 -0.0011577895 + 34860 -6246.0693 -6253.367 7.2976754 3684.4786 622.85888 -10560.704 0 349.74555 -0.00075459755 -0.00077027383 + 34870 -6246.3444 -6253.3586 7.0141394 3681.0113 626.35885 -10560.729 0 336.15692 -0.00038577632 -0.00040122078 + 34880 -6246.6254 -6253.3978 6.7723827 3680.4799 629.40332 -10563.281 0 324.57058 -0.00011779638 -0.00013103829 + 34890 -6246.8891 -6253.5071 6.6179515 3683.3229 631.57958 -10568.41 0 317.16937 4.6702449e-06 -6.7646444e-06 + 34900 -6247.1164 -6253.7144 6.5980603 3689.1342 632.73039 -10575.579 0 316.21607 -2.0726754e-05 -3.300998e-05 + 34910 -6247.3088 -6254.0148 6.7059787 3696.7883 632.9572 -10583.76 0 321.38813 -0.00015961822 -0.00017551878 + 34920 -6247.4911 -6254.3564 6.8652723 3704.7169 632.55225 -10591.626 0 329.02237 -0.00035483998 -0.00037472973 + 34930 -6247.6932 -6254.6657 6.9724514 3711.2567 631.88168 -10597.804 0 334.15899 -0.00054317855 -0.00056431078 + 34940 -6247.9255 -6254.8941 6.9686359 3715.0008 631.25752 -10601.152 0 333.97613 -0.00067108315 -0.00068957522 + 34950 -6248.1673 -6255.0452 6.8778955 3715.1077 630.84027 -10600.993 0 329.62734 -0.00070762024 -0.00072170851 + 34960 -6248.3826 -6255.1539 6.7713249 3711.5141 630.60365 -10597.272 0 324.51988 -0.00065303766 -0.00066471216 + 34970 -6248.5499 -6255.2363 6.6863527 3704.9833 630.36888 -10590.588 0 320.44754 -0.00053971026 -0.00055302971 + 34980 -6248.6796 -6255.2618 6.5821416 3696.9288 629.88904 -10582.08 0 315.45316 -0.0004223764 -0.00043987115 + 34990 -6248.8008 -6255.1811 6.3802882 3689.0325 628.94927 -10573.163 0 305.77921 -0.000358966 -0.00037946105 + 35000 -6248.9321 -6254.9833 6.0512411 3682.7858 627.44986 -10565.219 0 290.00942 -0.00038953104 -0.00040930833 + 35010 -6249.065 -6254.7243 5.6593393 3679.1319 625.45129 -10559.308 0 271.22729 -0.00052294434 -0.00053889818 + 35020 -6249.1743 -6254.4993 5.3250456 3678.3283 623.17334 -10556.001 0 255.20606 -0.00073642716 -0.00074821897 + 35030 -6249.2407 -6254.3852 5.1444734 3680.0218 620.95128 -10555.358 0 246.55203 -0.00098556256 -0.00099515841 + 35040 -6249.2653 -6254.4022 5.1368917 3683.4472 619.16211 -10557.012 0 246.18867 -0.0012183086 -0.001227851 + 35050 -6249.2638 -6254.5173 5.2535108 3687.6559 618.14038 -10560.314 0 251.77772 -0.0013874998 -0.0013976681 + 35060 -6249.2519 -6254.6767 5.4247597 3691.7253 618.10549 -10564.507 0 259.98492 -0.0014596462 -0.0014697522 + 35070 -6249.2342 -6254.8339 5.5997092 3694.931 619.11757 -10568.882 0 268.36948 -0.0014201017 -0.0014293813 + 35080 -6249.2061 -6254.9579 5.7518092 3696.8682 621.07007 -10572.896 0 275.65897 -0.0012748425 -0.0012834697 + 35090 -6249.1639 -6255.0259 5.8620215 3697.4986 623.71644 -10576.241 0 280.94096 -0.0010484888 -0.0010573944 + 35100 -6249.1121 -6255.0198 5.9077201 3697.1083 626.72045 -10578.849 0 283.1311 -0.00077849831 -0.00078834709 + 35110 -6249.0608 -6254.9338 5.872931 3696.1884 629.71494 -10580.837 0 281.46381 -0.0005068984 -0.00051731262 + 35120 -6249.0171 -6254.7875 5.7703738 3695.2756 632.35397 -10582.417 0 276.54869 -0.00027222551 -0.00028203736 + 35130 -6248.9773 -6254.6287 5.6513766 3694.8065 634.3483 -10583.783 0 270.84568 -0.00010421762 -0.00011255161 + 35140 -6248.929 -6254.5168 5.5877276 3695.0238 635.48426 -10585.025 0 267.79526 -2.2032171e-05 -2.9249681e-05 + 35150 -6248.86 -6254.4939 5.6338061 3695.9448 635.63437 -10586.073 0 270.0036 -3.4544577e-05 -4.2210033e-05 + 35160 -6248.7676 -6254.5633 5.7956676 3697.3719 634.7689 -10586.704 0 277.76091 -0.00014046279 -0.00015036797 + 35170 -6248.6605 -6254.6889 6.0284137 3698.9264 632.97061 -10586.586 0 288.91541 -0.00032728934 -0.0003403367 + 35180 -6248.5537 -6254.8146 6.2609675 3700.0993 630.4444 -10585.358 0 300.06069 -0.00057026876 -0.00058601674 + 35190 -6248.4596 -6254.8895 6.4299096 3700.3335 627.50821 -10582.731 0 308.15735 -0.00083344681 -0.00085051538 + 35200 -6248.383 -6254.8863 6.5033475 3699.1461 624.55514 -10578.588 0 311.6769 -0.0010742524 -0.0010911944 + 35210 -6248.3198 -6254.8063 6.4865014 3696.2751 621.9873 -10573.069 0 310.86954 -0.0012514634 -0.0012675304 + 35220 -6248.2617 -6254.6722 6.4105096 3691.8125 620.13605 -10566.621 0 307.22759 -0.0013349963 -0.0013503875 + 35230 -6248.2023 -6254.5133 6.3110118 3686.2742 619.19171 -10559.979 0 302.4591 -0.0013148947 -0.0013303322 + 35240 -6248.1418 -6254.3514 6.2095523 3680.564 619.16468 -10554.08 0 297.59659 -0.0012061481 -0.0012220254 + 35250 -6248.0851 -6254.1996 6.1144745 3675.8131 619.88977 -10549.903 0 293.03992 -0.0010463065 -0.0010621566 + 35260 -6248.0333 -6254.0751 6.041787 3673.12 621.07499 -10548.27 0 289.55633 -0.00088527405 -0.00090024807 + 35270 -6247.9775 -6254.0065 6.0289729 3673.2622 622.38594 -10549.655 0 288.94221 -0.00077037996 -0.00078439808 + 35280 -6247.9047 -6254.0196 6.1148859 3676.4704 623.54663 -10554.037 0 293.05964 -0.00073206021 -0.00074630616 + 35290 -6247.8115 -6254.1089 6.2974775 3682.3271 624.42648 -10560.863 0 301.81046 -0.00077459459 -0.00079046519 + 35300 -6247.7116 -6254.2266 6.5149378 3689.8087 625.08023 -10569.116 0 312.23237 -0.00087385874 -0.00089114913 + 35310 -6247.6262 -6254.3086 6.6823366 3697.4666 625.71851 -10577.494 0 320.25507 -0.00098247198 -0.00099874142 + 35320 -6247.5615 -6254.3242 6.7627583 3703.7289 626.61141 -10584.665 0 324.10932 -0.0010423802 -0.0010546834 + 35330 -6247.4958 -6254.3034 6.807555 3707.2822 627.95646 -10589.542 0 326.25623 -0.0010038156 -0.0010116488 + 35340 -6247.3932 -6254.3086 6.9154252 3707.4464 629.76294 -10591.518 0 331.42598 -0.00084611115 -0.00085268249 + 35350 -6247.2343 -6254.3719 7.137596 3704.4063 631.80145 -10590.58 0 342.07365 -0.000591658 -0.00060169834 + 35360 -6247.0356 -6254.457 7.4213838 3699.1698 633.6429 -10587.27 0 355.67435 -0.00030407657 -0.00031984091 + 35370 -6246.8346 -6254.4874 7.6528201 3693.2333 634.77563 -10582.496 0 366.76608 -6.8428139e-05 -8.7670665e-05 + 35380 -6246.6562 -6254.4126 7.7563766 3688.0831 634.76227 -10577.258 0 371.72909 3.8559998e-05 2.0625259e-05 + 35390 -6246.4915 -6254.2447 7.7532218 3684.7483 633.38398 -10572.377 0 371.57789 -2.540875e-05 -3.8828484e-05 + 35400 -6246.3087 -6254.0367 7.7280002 3683.566 630.72345 -10568.326 0 370.36913 -0.00025635509 -0.00026620409 + 35410 -6246.0844 -6253.8295 7.745082 3684.1987 627.16004 -10565.188 0 371.18779 -0.00060832602 -0.0006186826 + 35420 -6245.8267 -6253.622 7.7952993 3685.8321 623.28191 -10562.736 0 373.59448 -0.001008417 -0.0010230528 + 35430 -6245.5704 -6253.3886 7.8182229 3687.4547 619.74599 -10560.589 0 374.69311 -0.0013753277 -0.0013948738 + 35440 -6245.3506 -6253.1267 7.7761374 3688.1433 617.12761 -10558.398 0 372.67613 -0.0016368646 -0.0016588681 + 35450 -6245.1763 -6252.8873 7.7109162 3687.3144 615.79928 -10556.001 0 369.55037 -0.0017446885 -0.0017662985 + 35460 -6245.0295 -6252.7563 7.7268805 3684.9066 615.8663 -10553.529 0 370.31547 -0.0016850239 -0.0017057427 + 35470 -6244.8893 -6252.7952 7.9058473 3681.4464 617.17 -10551.412 0 378.89256 -0.0014825914 -0.0015044491 + 35480 -6244.7616 -6252.9883 8.226724 3677.9375 619.35141 -10550.277 0 394.27078 -0.0011944838 -0.0012194555 + 35490 -6244.682 -6253.2489 8.5668692 3675.5629 621.95452 -10550.766 0 410.57244 -0.00089339885 -0.00092069906 + 35500 -6244.6903 -6253.4803 8.789935 3675.2827 624.54103 -10553.304 0 421.26301 -0.00064505696 -0.0006711973 + 35510 -6244.7981 -6253.6404 8.8422231 3677.4969 626.78627 -10557.923 0 423.76895 -0.00048903135 -0.00051079003 + 35520 -6244.9828 -6253.7552 8.772384 3681.9213 628.52937 -10564.206 0 420.42186 -0.00043141249 -0.00044893654 + 35530 -6245.213 -6253.8752 8.66225 3687.7137 629.76412 -10571.353 0 415.14362 -0.00045136828 -0.00046840025 + 35540 -6245.4803 -6254.0157 8.5354671 3693.7556 630.58002 -10578.351 0 409.06748 -0.00051608159 -0.00053683238 + 35550 -6245.8066 -6254.1358 8.3291485 3698.9475 631.08409 -10584.167 0 399.17953 -0.0005949684 -0.00062021007 + 35560 -6246.217 -6254.1761 7.9591057 3702.413 631.3396 -10587.929 0 381.445 -0.0006667834 -0.00069273423 + 35570 -6246.7021 -6254.1216 7.4194843 3703.6018 631.34523 -10589.069 0 355.58332 -0.00071988769 -0.00074117337 + 35580 -6247.2106 -6254.0263 6.8157355 3702.3437 631.05465 -10587.425 0 326.64829 -0.0007506277 -0.00076475211 + 35590 -6247.68 -6253.9732 6.2932526 3698.8826 630.41672 -10583.273 0 301.60798 -0.00076324428 -0.00077249761 + 35600 -6248.0764 -6254.007 5.9305627 3693.8606 629.41158 -10577.279 0 284.22584 -0.00076989811 -0.00077917341 + 35610 -6248.4083 -6254.104 5.6956649 3688.1991 628.06876 -10570.372 0 272.96822 -0.00078764522 -0.00080041737 + 35620 -6248.7068 -6254.2019 5.4950854 3682.8847 626.46708 -10563.554 0 263.35532 -0.00083205446 -0.00084803066 + 35630 -6248.995 -6254.2577 5.2627617 3678.7338 624.72244 -10557.714 0 252.22107 -0.00091063632 -0.00092668942 + 35640 -6249.2705 -6254.2844 5.0138862 3676.2303 622.97074 -10553.485 0 240.29356 -0.0010197797 -0.0010329573 + 35650 -6249.5121 -6254.3401 4.8279958 3675.4854 621.35145 -10551.177 0 231.38465 -0.001146544 -0.0011565562 + 35660 -6249.7003 -6254.482 4.7816955 3676.3047 619.99604 -10550.783 0 229.16568 -0.0012736872 -0.0012830057 + 35670 -6249.8357 -6254.7193 4.8836238 3678.3022 619.02203 -10552.044 0 234.05066 -0.0013847333 -0.0013963855 + 35680 -6249.9416 -6255.0008 5.0591547 3681.0014 618.52941 -10554.532 0 242.46308 -0.0014663886 -0.0014812747 + 35690 -6250.0478 -6255.2458 5.1980299 3683.8961 618.59473 -10557.737 0 249.11876 -0.0015077981 -0.0015237874 + 35700 -6250.1665 -6255.3984 5.2319461 3686.4928 619.2598 -10561.151 0 250.74421 -0.0014988285 -0.0015126054 + 35710 -6250.2803 -6255.4598 5.1794633 3688.376 620.51626 -10564.352 0 248.22895 -0.0014308642 -0.0014411507 + 35720 -6250.3564 -6255.4715 5.1151439 3689.3141 622.29064 -10567.076 0 245.14639 -0.0013017866 -0.0013110377 + 35730 -6250.3757 -6255.4622 5.0865665 3689.3592 624.43567 -10569.257 0 243.77681 -0.0011225498 -0.0011352406 + 35740 -6250.3536 -6255.4115 5.0579254 3688.8553 626.73297 -10571 0 242.40416 -0.00091977737 -0.00093847193 + 35750 -6250.329 -6255.2686 4.9395705 3688.3071 628.91169 -10572.487 0 236.73193 -0.00073049544 -0.00075316467 + 35760 -6250.3314 -6255.0118 4.6803796 3688.1599 630.68548 -10573.857 0 224.31005 -0.000590707 -0.00061184519 + 35770 -6250.3541 -6254.6913 4.3372402 3688.6103 631.80321 -10575.105 0 207.86489 -0.0005241801 -0.00053891536 + 35780 -6250.3566 -6254.4136 4.0569988 3689.5468 632.10022 -10576.061 0 194.43415 -0.00053739335 -0.00054520464 + 35790 -6250.2921 -6254.2774 3.9852322 3690.6328 631.53403 -10576.444 0 190.99469 -0.00062170999 -0.00062681734 + 35800 -6250.1365 -6254.3111 4.1745875 3691.4553 630.19349 -10575.96 0 200.06965 -0.00075912505 -0.00076737834 + 35810 -6249.8986 -6254.4581 4.5595299 3691.651 628.28005 -10574.389 0 218.51825 -0.00092704643 -0.00094175182 + 35820 -6249.607 -6254.6185 5.0115334 3690.9627 626.06748 -10571.649 0 240.1808 -0.0011003461 -0.0011201045 + 35830 -6249.2835 -6254.7144 5.4309721 3689.2479 623.85054 -10567.813 0 260.28266 -0.0012524348 -0.0012724804 + 35840 -6248.9229 -6254.729 5.806073 3686.4939 621.89409 -10563.117 0 278.25959 -0.001358414 -0.0013743012 + 35850 -6248.4965 -6254.6913 6.1947702 3682.8743 620.39289 -10557.958 0 296.88815 -0.0014014144 -0.0014121517 + 35860 -6247.9776 -6254.625 6.6473196 3678.8158 619.44806 -10552.889 0 318.57685 -0.0013796546 -0.0013879204 + 35870 -6247.3723 -6254.5102 7.1378928 3675.0016 619.06204 -10548.574 0 342.08787 -0.0013095504 -0.0013190697 + 35880 -6246.7272 -6254.2954 7.5681605 3672.2472 619.15213 -10545.695 0 362.70872 -0.0012213715 -0.0012338706 + 35890 -6246.1065 -6253.9505 7.8440143 3671.2642 619.58347 -10544.798 0 375.92918 -0.001148018 -0.0011624056 + 35900 -6245.5546 -6253.5122 7.9575686 3672.4112 620.21865 -10546.142 0 381.37134 -0.0011118746 -0.0011261271 + 35910 -6245.0795 -6253.0775 7.9979969 3675.5526 620.97196 -10549.602 0 383.30889 -0.0011160652 -0.0011297388 + 35920 -6244.6675 -6252.7483 8.0808263 3680.0814 621.84588 -10554.676 0 387.27854 -0.0011436931 -0.0011585427 + 35930 -6244.3137 -6252.5719 8.2581764 3685.0822 622.92806 -10560.582 0 395.77815 -0.0011644315 -0.0011825567 + 35940 -6244.036 -6252.5194 8.4834196 3689.5623 624.3413 -10566.423 0 406.57307 -0.0011453351 -0.0011665802 + 35950 -6243.8628 -6252.5198 8.6570277 3692.6838 626.15994 -10571.364 0 414.89334 -0.0010623653 -0.0010834813 + 35960 -6243.8032 -6252.5211 8.7178796 3693.9494 628.32497 -10574.795 0 417.80971 -0.00090970551 -0.00092651657 + 35970 -6243.8295 -6252.5322 8.7027119 3693.317 630.5996 -10576.449 0 417.08278 -0.00070486796 -0.00071606227 + 35980 -6243.8919 -6252.6053 8.7133954 3691.2215 632.59707 -10576.424 0 417.5948 -0.0004882211 -0.00049740733 + 35990 -6243.9589 -6252.7721 8.8132128 3688.4742 633.88153 -10575.128 0 422.37861 -0.0003154855 -0.00032910001 + 36000 -6244.0453 -6252.9945 8.9491349 3686.0203 634.10636 -10573.121 0 428.89276 -0.00024240539 -0.00026468635 + 36010 -6244.1986 -6253.181 8.9823816 3684.5952 633.13497 -10570.911 0 430.48612 -0.00030430514 -0.00033357396 + 36020 -6244.4527 -6253.2607 8.8079865 3684.4152 631.09678 -10568.773 0 422.12813 -0.00049863225 -0.00052834609 + 36030 -6244.791 -6253.2439 8.4528589 3685.0738 628.35879 -10566.676 0 405.10843 -0.00078086821 -0.00080468927 + 36040 -6245.1541 -6253.2107 8.0566313 3685.7306 625.42592 -10564.367 0 386.11898 -0.0010788507 -0.0010952607 + 36050 -6245.4845 -6253.2368 7.752265 3685.5136 622.80585 -10561.556 0 371.53204 -0.0013197877 -0.001332284 + 36060 -6245.7649 -6253.3256 7.560649 3683.9241 620.87935 -10558.129 0 362.34872 -0.0014564247 -0.0014695775 + 36070 -6246.0169 -6253.4136 7.3967277 3681.0466 619.81145 -10554.272 0 354.4927 -0.0014801375 -0.0014955206 + 36080 -6246.2671 -6253.4414 7.1743205 3677.4969 619.52922 -10550.468 0 343.83369 -0.0014173152 -0.0014330184 + 36090 -6246.5161 -6253.42 6.9038817 3674.1825 619.77599 -10547.379 0 330.87275 -0.0013142783 -0.0013279415 + 36100 -6246.7391 -6253.4296 6.6904903 3672.0108 620.2267 -10545.667 0 320.64584 -0.0012193864 -0.0012313537 + 36110 -6246.9141 -6253.5525 6.6383627 3671.643 620.62238 -10545.818 0 318.14759 -0.0011685157 -0.0011819119 + 36120 -6247.0489 -6253.8006 6.7517137 3673.3279 620.87112 -10548 0 323.58001 -0.0011759093 -0.0011936067 + 36130 -6247.1801 -6254.0984 6.9182837 3676.8185 621.07455 -10551.992 0 331.56297 -0.0012305935 -0.0012519898 + 36140 -6247.3461 -6254.3341 6.9879799 3681.3896 621.46982 -10557.193 0 334.90321 -0.0012992697 -0.0013200071 + 36150 -6247.5528 -6254.4337 6.8809275 3685.9929 622.31122 -10562.738 0 329.77265 -0.0013369457 -0.0013521554 + 36160 -6247.7656 -6254.4018 6.6361559 3689.5511 623.7408 -10567.694 0 318.04182 -0.0013041836 -0.0013126747 + 36170 -6247.9345 -6254.2974 6.3628741 3691.3139 625.70044 -10571.312 0 304.94463 -0.0011853463 -0.0011910928 + 36180 -6248.0333 -6254.1749 6.1416 3691.123 627.91938 -10573.217 0 294.33993 -0.00099914879 -0.0010085712 + 36190 -6248.0797 -6254.0457 5.9660331 3689.4418 629.98011 -10573.468 0 285.92578 -0.00079472234 -0.00081187205 + 36200 -6248.1191 -6253.8929 5.7738162 3687.1196 631.43827 -10572.451 0 276.71367 -0.00063351626 -0.00065705838 + 36210 -6248.1892 -6253.7177 5.5285249 3685.0094 631.95521 -10570.682 0 264.95793 -0.00056536346 -0.00058961598 + 36220 -6248.2925 -6253.5674 5.2748478 3683.6375 631.39723 -10568.602 0 252.8003 -0.0006101488 -0.00062913809 + 36230 -6248.3971 -6253.52 5.1228134 3683.0678 629.86802 -10566.456 0 245.51396 -0.00075288882 -0.0007643689 + 36240 -6248.4599 -6253.6354 5.1754514 3682.9882 627.66661 -10564.29 0 248.03667 -0.00095287576 -0.00095962782 + 36250 -6248.4569 -6253.9062 5.4493211 3682.935 625.19231 -10562.034 0 261.16204 -0.001161225 -0.0011688885 + 36260 -6248.4007 -6254.2438 5.8430419 3682.524 622.83475 -10559.603 0 280.03135 -0.0013381556 -0.0013511511 + 36270 -6248.3327 -6254.5188 6.1861312 3681.5797 620.88565 -10556.984 0 296.47412 -0.0014625515 -0.0014811257 + 36280 -6248.2909 -6254.6355 6.3445349 3680.1389 619.49654 -10554.271 0 304.06571 -0.0015314226 -0.0015521532 + 36290 -6248.2823 -6254.5853 6.3029481 3678.383 618.68893 -10551.657 0 302.07264 -0.0015528648 -0.0015720582 + 36300 -6248.2826 -6254.4366 6.1540219 3676.5741 618.40487 -10549.416 0 294.93526 -0.0015385096 -0.0015552968 + 36310 -6248.2636 -6254.2728 6.00918 3675.0199 618.56998 -10547.863 0 287.99362 -0.0014988934 -0.001515291 + 36320 -6248.2192 -6254.1353 5.9161285 3674.0378 619.13802 -10547.311 0 283.53407 -0.0014414439 -0.0014597166 + 36330 -6248.1667 -6254.016 5.8493607 3673.8931 620.09766 -10548.007 0 280.33419 -0.0013698393 -0.0013898795 + 36340 -6248.1265 -6253.8927 5.7662589 3674.7292 621.4419 -10550.064 0 276.35148 -0.0012847515 -0.0013038276 + 36350 -6248.0991 -6253.7703 5.6711991 3676.5267 623.11847 -10553.415 0 271.79568 -0.0011865894 -0.0012016044 + 36360 -6248.0583 -6253.6909 5.632602 3679.1194 624.9898 -10557.8 0 269.94589 -0.0010798121 -0.0010901492 + 36370 -6247.9666 -6253.7042 5.7376497 3682.2524 626.82865 -10562.785 0 274.98037 -0.00097664284 -0.00098517258 + 36380 -6247.7995 -6253.8188 6.0193199 3685.6386 628.36021 -10567.818 0 288.47959 -0.00089699083 -0.0009082015 + 36390 -6247.5614 -6253.9783 6.4168789 3688.9632 629.33935 -10572.281 0 307.53284 -0.00086235769 -0.0008789333 + 36400 -6247.2778 -6254.0867 6.8089324 3691.8289 629.63283 -10575.548 0 326.32224 -0.0008849104 -0.00090553856 + 36410 -6246.9696 -6254.0683 7.0987468 3693.7021 629.27082 -10577.041 0 340.21178 -0.00095715797 -0.00097753417 + 36420 -6246.6314 -6253.9137 7.2823009 3693.9538 628.44234 -10576.31 0 349.00872 -0.0010495123 -0.0010658477 + 36430 -6246.2333 -6253.6719 7.438655 3692.049 627.43144 -10573.152 0 356.50209 -0.0011198564 -0.001131929 + 36440 -6245.7466 -6253.3982 7.6515517 3687.825 626.51504 -10567.738 0 366.70529 -0.0011320679 -0.0011432259 + 36450 -6245.1722 -6253.1096 7.9373963 3681.7116 625.85931 -10560.681 0 380.40457 -0.0010742026 -0.0010885799 + 36460 -6244.5443 -6252.7891 8.2448105 3674.7533 625.45456 -10552.997 0 395.13758 -0.00096673985 -0.00098638276 + 36470 -6243.9116 -6252.4262 8.5145972 3668.395 625.11905 -10545.94 0 408.06727 -0.000856895 -0.00088109029 + 36480 -6243.3122 -6252.047 8.7348611 3664.1041 624.57807 -10540.729 0 418.62355 -0.00080178323 -0.00082847484 + 36490 -6242.7645 -6251.71 8.9454923 3662.949 623.59243 -10538.251 0 428.71818 -0.00084707554 -0.00087460197 + 36500 -6242.2756 -6251.4753 9.1996436 3665.2618 622.08643 -10538.824 0 440.89854 -0.0010083839 -0.0010360464 + 36510 -6241.8556 -6251.3769 9.5213534 3670.4879 620.2227 -10542.088 0 456.31668 -0.0012613062 -0.0012886693 + 36520 -6241.5231 -6251.4177 9.8946345 3677.2792 618.39098 -10547.088 0 474.2064 -0.0015437475 -0.0015698222 + 36530 -6241.298 -6251.5866 10.288621 3683.8285 617.1091 -10552.524 0 493.08843 -0.0017712308 -0.0017948382 + 36540 -6241.1913 -6251.8754 10.684082 3688.375 616.864 -10557.114 0 512.04114 -0.001862558 -0.0018838423 + 36550 -6241.2097 -6252.2676 11.057974 3689.7504 617.94047 -10559.959 0 529.96018 -0.0017691614 -0.0017904955 + 36560 -6241.3731 -6252.7046 11.331477 3687.7822 620.2935 -10560.78 0 543.06798 -0.0014974842 -0.0015220244 + 36570 -6241.7212 -6253.0728 11.35165 3683.3697 623.51584 -10559.958 0 544.03477 -0.0011128248 -0.0011414706 + 36580 -6242.2822 -6253.2488 10.966581 3678.1596 626.92971 -10558.338 0 525.58009 -0.00071932076 -0.00074923657 + 36590 -6243.028 -6253.1759 10.147931 3673.9406 629.78569 -10556.902 0 486.3458 -0.000423386 -0.00045004644 + 36600 -6243.8627 -6252.902 9.0392533 3672.0348 631.49736 -10556.434 0 433.21174 -0.00029790046 -0.00031871225 + 36610 -6244.6676 -6252.5475 7.8799055 3672.9328 631.81263 -10557.293 0 377.64929 -0.00036262611 -0.00037857003 + 36620 -6245.3596 -6252.2421 6.8824307 3676.252 630.85325 -10559.347 0 329.8447 -0.00058521048 -0.00059943736 + 36630 -6245.9168 -6252.0792 6.1623418 3680.9481 629.0253 -10562.053 0 295.334 -0.00089721296 -0.00091241366 + 36640 -6246.3629 -6252.105 5.7421109 3685.6553 626.86057 -10564.621 0 275.19417 -0.001216419 -0.0012331065 + 36650 -6246.7358 -6252.329 5.5932165 3689.0492 624.85787 -10566.236 0 268.05832 -0.0014683122 -0.0014849164 + 36660 -6247.0619 -6252.7382 5.6763372 3690.1628 623.36772 -10566.269 0 272.04193 -0.0016025556 -0.0016170576 + 36670 -6247.3479 -6253.3006 5.9527122 3688.6149 622.53573 -10564.451 0 285.28737 -0.0016028514 -0.0016147428 + 36680 -6247.5909 -6253.9506 6.3596991 3684.7148 622.30337 -10560.969 0 304.79247 -0.0014895132 -0.0015004196 + 36690 -6247.7969 -6254.5762 6.7793061 3679.4023 622.45651 -10556.435 0 324.90239 -0.0013136165 -0.0013258504 + 36700 -6247.9873 -6255.0373 7.0500293 3674.0029 622.70649 -10551.747 0 337.87696 -0.0011420455 -0.0011563562 + 36710 -6248.1845 -6255.2232 7.0386405 3669.8455 622.78388 -10547.853 0 337.33115 -0.0010362795 -0.0010510918 + 36720 -6248.3901 -6255.1117 6.721589 3667.8756 622.52213 -10545.509 0 322.13626 -0.0010325197 -0.0010455723 + 36730 -6248.5796 -6254.7817 6.2020829 3668.416 621.90905 -10545.107 0 297.23861 -0.0011317191 -0.0011425283 + 36740 -6248.7221 -6254.3651 5.6429669 3671.1501 621.09142 -10546.607 0 270.44264 -0.0013030154 -0.0013136976 + 36750 -6248.8055 -6253.9761 5.1705172 3675.2875 620.33068 -10549.594 0 247.8002 -0.001496861 -0.0015104554 + 36760 -6248.8453 -6253.6691 4.8238221 3679.8096 619.92222 -10553.401 0 231.18462 -0.001660604 -0.0016783986 + 36770 -6248.8702 -6253.4485 4.5782784 3683.7064 620.10261 -10557.258 0 219.41679 -0.0017509971 -0.0017712405 + 36780 -6248.8989 -6253.3084 4.4095288 3686.1701 620.97347 -10560.452 0 211.32936 -0.0017420854 -0.0017612234 + 36790 -6248.9254 -6253.2623 4.3369283 3686.7444 622.46584 -10562.473 0 207.84994 -0.0016294645 -0.0016448568 + 36800 -6248.9255 -6253.336 4.4104915 3685.4243 624.35433 -10563.115 0 211.3755 -0.0014316519 -0.0014434822 + 36810 -6248.8769 -6253.5356 4.6586715 3682.6723 626.31337 -10562.521 0 223.26968 -0.0011876119 -0.0011984753 + 36820 -6248.7758 -6253.824 5.0482556 3679.3166 627.99586 -10561.136 0 241.94073 -0.00094893419 -0.00096162025 + 36830 -6248.6384 -6254.1309 5.4924769 3676.3303 629.11152 -10559.573 0 263.23031 -0.0007672027 -0.00078262284 + 36840 -6248.4875 -6254.3851 5.8976036 3674.5531 629.48508 -10558.423 0 282.64626 -0.00068036405 -0.00069720098 + 36850 -6248.3369 -6254.5435 6.2065849 3674.4534 629.08171 -10558.079 0 297.45437 -0.00070344018 -0.00071947449 + 36860 -6248.1867 -6254.5943 6.4075287 3676.0132 627.99757 -10558.605 0 307.08473 -0.00082697616 -0.00084073261 + 36870 -6248.0292 -6254.5411 6.5118725 3678.7598 626.42534 -10559.726 0 312.08547 -0.0010224197 -0.0010338877 + 36880 -6247.8574 -6254.3897 6.5323312 3681.9137 624.61057 -10560.914 0 313.06597 -0.0012506084 -0.0012609222 + 36890 -6247.6687 -6254.1479 6.4791594 3684.5912 622.81181 -10561.551 0 310.51767 -0.0014698987 -0.0014806295 + 36900 -6247.4643 -6253.8303 6.3660087 3686.0118 621.26873 -10561.111 0 305.09486 -0.0016428096 -0.0016552934 + 36910 -6247.2492 -6253.4609 6.21166 3685.6714 620.1759 -10559.308 0 297.6976 -0.0017413628 -0.0017560597 + 36920 -6247.0302 -6253.0715 6.0413215 3683.4516 619.65903 -10556.182 0 289.53402 -0.0017508554 -0.001766918 + 36930 -6246.8094 -6252.7075 5.8980563 3679.6489 619.7552 -10552.112 0 282.66795 -0.0016714065 -0.0016870215 + 36940 -6246.5749 -6252.4325 5.8576925 3674.9276 620.40263 -10547.763 0 280.73349 -0.0015174129 -0.0015311582 + 36950 -6246.2969 -6252.3188 6.0218737 3670.2172 621.44701 -10543.983 0 288.60198 -0.0013159608 -0.0013283808 + 36960 -6245.939 -6252.4106 6.4716243 3666.569 622.6673 -10541.647 0 310.15655 -0.0011047476 -0.0011186259 + 36970 -6245.4804 -6252.6809 7.2004651 3664.9719 623.81802 -10541.471 0 345.08669 -0.0009282429 -0.00094673934 + 36980 -6244.9345 -6253.0158 8.0813267 3666.1185 624.67925 -10543.814 0 387.30252 -0.0008296476 -0.00085343779 + 36990 -6244.3457 -6253.2587 8.9129881 3670.1477 625.1054 -10548.512 0 427.1604 -0.00083798645 -0.00086405039 + 37000 -6243.761 -6253.2899 9.52892 3676.4613 625.06592 -10554.817 0 456.67931 -0.00095436757 -0.00097816175 + 37010 -6243.2014 -6253.0858 9.8844973 3683.7472 624.66984 -10561.503 0 473.72057 -0.0011453663 -0.0011649378 + 37020 -6242.6618 -6252.708 10.046266 3690.2726 624.16031 -10567.141 0 481.47342 -0.0013497369 -0.0013679397 + 37030 -6242.1424 -6252.2429 10.100482 3694.3665 623.86301 -10570.472 0 484.07175 -0.0014970299 -0.0015193896 + 37040 -6241.6739 -6251.7521 10.078146 3694.8999 624.08703 -10570.739 0 483.00131 -0.0015297879 -0.0015597122 + 37050 -6241.3081 -6251.2734 9.9653487 3691.5941 625.00311 -10567.871 0 477.59543 -0.0014208494 -0.001456422 + 37060 -6241.0837 -6250.8541 9.7703882 3685.0891 626.54672 -10562.49 0 468.25182 -0.0011819752 -0.0012169908 + 37070 -6240.9997 -6250.5693 9.5696421 3676.7951 628.39165 -10555.756 0 458.63094 -0.00086333885 -0.00089160056 + 37080 -6241.0186 -6250.5072 9.4886201 3668.5831 630.01644 -10549.107 0 454.74792 -0.00054382429 -0.00056355198 + 37090 -6241.0983 -6250.7259 9.6275339 3662.378 630.85138 -10543.955 0 461.40545 -0.00031294666 -0.00032837402 + 37100 -6241.2361 -6251.2037 9.9676539 3659.7198 630.46358 -10541.387 0 477.7059 -0.00024783854 -0.00026665772 + 37110 -6241.4963 -6251.8128 10.316547 3661.3628 628.71922 -10541.895 0 494.42682 -0.00039051962 -0.00041822275 + 37120 -6241.9888 -6252.3544 10.365646 3666.9893 625.86245 -10545.206 0 496.77991 -0.00073056391 -0.00076550354 + 37130 -6242.7837 -6252.6631 9.8794506 3675.1581 622.47295 -10550.294 0 473.47871 -0.0011988892 -0.0012326972 + 37140 -6243.8214 -6252.7169 8.8955211 3683.6203 619.30736 -10555.645 0 426.32329 -0.0016800194 -0.0017041809 + 37150 -6244.9178 -6252.6528 7.7350272 3690.0052 617.07903 -10559.737 0 370.70591 -0.0020460969 -0.0020591777 + 37160 -6245.8832 -6252.6611 6.7778552 3692.624 616.25987 -10561.545 0 324.83285 -0.0022016866 -0.0022103886 + 37170 -6246.6346 -6252.843 6.2084127 3691.0043 616.9716 -10560.819 0 297.54197 -0.0021166572 -0.002130063 + 37180 -6247.2036 -6253.1518 5.9482209 3685.9403 618.97997 -10558.072 0 285.07212 -0.0018317828 -0.001854255 + 37190 -6247.6704 -6253.4509 5.7805747 3679.1222 621.76824 -10554.341 0 277.03757 -0.0014393875 -0.0014675929 + 37200 -6248.0945 -6253.631 5.5365205 3672.5508 624.6668 -10550.849 0 265.34113 -0.0010505707 -0.0010763603 + 37210 -6248.4816 -6253.6935 5.2118881 3667.9536 627.01932 -10548.666 0 249.78292 -0.00076162234 -0.00077844032 + 37220 -6248.7935 -6253.7387 4.9452723 3666.3813 628.34958 -10548.47 0 237.00519 -0.0006306879 -0.00063869722 + 37230 -6248.9922 -6253.8738 4.8816052 3668.0651 628.47972 -10550.419 0 233.95391 -0.00067024166 -0.00067615195 + 37240 -6249.0832 -6254.115 5.0317424 3672.4915 627.55976 -10554.166 0 241.14933 -0.00085281014 -0.00086439715 + 37250 -6249.1225 -6254.3699 5.2473883 3678.583 625.99824 -10558.951 0 251.48429 -0.0011227001 -0.0011424115 + 37260 -6249.1789 -6254.5185 5.3396103 3684.9096 624.31919 -10563.747 0 255.90408 -0.0014085997 -0.0014317099 + 37270 -6249.2804 -6254.5196 5.2392079 3689.9459 622.99774 -10567.463 0 251.09224 -0.0016373147 -0.0016563039 + 37280 -6249.3952 -6254.4453 5.0501313 3692.409 622.33202 -10569.186 0 242.03063 -0.0017506002 -0.0017618108 + 37290 -6249.4634 -6254.4089 4.9455419 3691.6278 622.38814 -10568.425 0 237.01812 -0.0017225381 -0.0017291511 + 37300 -6249.4513 -6254.4564 5.0051699 3687.7918 623.01996 -10565.268 0 239.87582 -0.001569588 -0.0015785325 + 37310 -6249.3786 -6254.5189 5.1403354 3681.9282 623.94003 -10560.387 0 246.35372 -0.0013461045 -0.0013619362 + 37320 -6249.2998 -6254.4666 5.1667638 3675.5803 624.81099 -10554.858 0 247.62031 -0.0011251927 -0.0011462707 + 37330 -6249.2578 -6254.2174 4.9596084 3670.3164 625.33302 -10549.867 0 237.69226 -0.0009729983 -0.00099299744 + 37340 -6249.2473 -6253.8116 4.5642718 3667.2803 625.31087 -10546.403 0 218.74551 -0.00092818541 -0.00094149307 + 37350 -6249.2191 -6253.3974 4.1782749 3666.9542 624.69168 -10545.043 0 200.24638 -0.00099488975 -0.001001443 + 37360 -6249.116 -6253.1378 4.0218319 3669.1708 623.57155 -10545.88 0 192.74875 -0.0011491886 -0.0011549299 + 37370 -6248.9137 -6253.1078 4.1940478 3673.2875 622.17347 -10548.569 0 201.0023 -0.0013521024 -0.001364656 + 37380 -6248.6378 -6253.253 4.6152889 3678.3879 620.80111 -10552.442 0 221.19054 -0.0015609484 -0.0015836773 + 37390 -6248.3444 -6253.4397 5.0952686 3683.4271 619.77354 -10556.64 0 244.19386 -0.0017350612 -0.0017640307 + 37400 -6248.0768 -6253.5571 5.4802895 3687.3377 619.35125 -10560.246 0 262.64622 -0.0018376343 -0.0018641928 + 37410 -6247.8267 -6253.594 5.7672931 3689.1777 619.67281 -10562.444 0 276.40105 -0.0018387472 -0.0018561709 + 37420 -6247.5374 -6253.6217 6.0842796 3688.3718 620.72454 -10562.718 0 291.59282 -0.0017230574 -0.0017319773 + 37430 -6247.1539 -6253.7012 6.5472892 3684.9758 622.35242 -10561.029 0 313.78284 -0.001499813 -0.0015076893 + 37440 -6246.6771 -6253.8023 7.125249 3679.7934 624.30391 -10557.9 0 341.48191 -0.0012077009 -0.0012227126 + 37450 -6246.1744 -6253.8168 7.6424546 3674.2115 626.27703 -10554.305 0 366.2693 -0.00090813831 -0.00093279539 + 37460 -6245.7342 -6253.6497 7.9155397 3669.7816 627.96305 -10551.394 0 379.35708 -0.00066788356 -0.00069758541 + 37470 -6245.4056 -6253.3043 7.8987541 3667.7303 629.0854 -10550.12 0 378.55261 -0.00053896974 -0.00056612132 + 37480 -6245.1721 -6252.8903 7.7181897 3668.6024 629.44291 -10550.936 0 369.89896 -0.00054499476 -0.00056493283 + 37490 -6244.9757 -6252.5539 7.5782181 3672.1515 628.95862 -10553.664 0 363.19073 -0.00067798036 -0.00069220751 + 37500 -6244.7679 -6252.3795 7.6115977 3677.4733 627.72177 -10557.574 0 364.79047 -0.00090419147 -0.00091868811 + 37510 -6244.5507 -6252.3267 7.7760278 3683.2843 625.99838 -10561.609 0 372.67088 -0.0011741066 -0.001193926 + 37520 -6244.3751 -6252.2584 7.8833186 3688.2223 624.18487 -10564.666 0 377.81286 -0.0014318912 -0.0014563559 + 37530 -6244.2912 -6252.0531 7.7618429 3691.093 622.7016 -10565.848 0 371.99106 -0.0016230782 -0.0016461803 + 37540 -6244.2944 -6251.7166 7.4221912 3691.0868 621.86259 -10564.666 0 355.71305 -0.0017032797 -0.0017194753 + 37550 -6244.3224 -6251.3876 7.0652247 3688.0024 621.78065 -10561.171 0 338.60521 -0.0016503037 -0.0016602576 + 37560 -6244.3112 -6251.2319 6.9206769 3682.419 622.34808 -10555.999 0 331.67767 -0.0014758629 -0.0014864258 + 37570 -6244.2516 -6251.3231 7.0715779 3675.6667 623.28837 -10550.278 0 338.90969 -0.0012283403 -0.0012467715 + 37580 -6244.1968 -6251.6104 7.4136042 3669.505 624.24573 -10545.361 0 355.30151 -0.00098112323 -0.0010088833 + 37590 -6244.2208 -6251.9783 7.7574574 3665.5889 624.88145 -10542.449 0 371.78089 -0.00080927542 -0.00084061517 + 37600 -6244.3646 -6252.3353 7.9707043 3664.9359 624.95881 -10542.23 0 382.00087 -0.00076412866 -0.00079041582 + 37610 -6244.6117 -6252.6594 8.0477592 3667.6151 624.40517 -10544.68 0 385.69378 -0.00085682949 -0.00087314141 + 37620 -6244.9114 -6252.9754 8.0640576 3672.7753 623.33994 -10549.091 0 386.47489 -0.0010573597 -0.0010662753 + 37630 -6245.2306 -6253.292 8.0614704 3678.9732 622.05782 -10554.323 0 386.35089 -0.0013074819 -0.0013170982 + 37640 -6245.5904 -6253.5614 7.9709911 3684.6377 620.96099 -10559.16 0 382.01462 -0.0015397919 -0.0015574654 + 37650 -6246.0509 -6253.7029 7.6519214 3688.4834 620.44627 -10562.633 0 366.72301 -0.0016949721 -0.0017217943 + 37660 -6246.6524 -6253.6734 7.020991 3689.7698 620.77516 -10564.218 0 336.48528 -0.0017339819 -0.0017643806 + 37670 -6247.3635 -6253.5168 6.1532811 3688.4009 621.97532 -10563.893 0 294.89975 -0.0016456647 -0.0016720526 + 37680 -6248.0903 -6253.3469 5.2565288 3684.8987 623.81933 -10562.065 0 251.92236 -0.0014499279 -0.001468089 + 37690 -6248.736 -6253.2779 4.5419427 3680.2667 625.89242 -10559.437 0 217.67538 -0.0011946088 -0.00120555 + 37700 -6249.2519 -6253.3612 4.1093049 3675.7548 627.71425 -10556.83 0 196.94095 -0.00094463974 -0.00095247144 + 37710 -6249.6416 -6253.5696 3.9279407 3672.5639 628.86266 -10554.996 0 188.24896 -0.00076566629 -0.00077422146 + 37720 -6249.9346 -6253.8294 3.8948859 3671.5514 629.06618 -10554.447 0 186.66479 -0.00070689411 -0.00071766564 + 37730 -6250.1604 -6254.0694 3.9089661 3673.0064 628.25648 -10555.332 0 187.33959 -0.0007877847 -0.00079995019 + 37740 -6250.3367 -6254.2549 3.9182658 3676.5581 626.57963 -10557.393 0 187.78528 -0.00099215233 -0.0010040182 + 37750 -6250.4671 -6254.3934 3.9263185 3681.2613 624.36462 -10560.019 0 188.17121 -0.0012718381 -0.0012824436 + 37760 -6250.5495 -6254.5129 3.9633806 3685.8469 622.05252 -10562.412 0 189.94744 -0.0015595181 -0.0015692792 + 37770 -6250.5854 -6254.6314 4.0459953 3689.0667 620.09943 -10563.798 0 193.9068 -0.0017869159 -0.0017969589 + 37780 -6250.5855 -6254.74 4.1544828 3690.0279 618.87397 -10563.642 0 199.10612 -0.0019026997 -0.0019135644 + 37790 -6250.5649 -6254.8096 4.2446488 3688.4206 618.5726 -10561.803 0 203.42739 -0.0018848959 -0.0018958385 + 37800 -6250.5328 -6254.8145 4.281671 3684.5882 619.17369 -10558.576 0 205.2017 -0.0017451413 -0.0017547566 + 37810 -6250.4849 -6254.7495 4.2646182 3679.4374 620.44539 -10554.632 0 204.38443 -0.0015247273 -0.0015323752 + 37820 -6250.4083 -6254.6284 4.2201204 3674.2231 622.01024 -10550.862 0 202.25185 -0.0012838883 -0.0012906082 + 37830 -6250.293 -6254.4671 4.1741295 3670.25 623.45297 -10548.17 0 200.04771 -0.0010864366 -0.001094463 + 37840 -6250.1421 -6254.2726 4.1304735 3668.5496 624.44118 -10547.263 0 197.95547 -0.00098270636 -0.00099393387 + 37850 -6249.9709 -6254.0471 4.0761829 3669.6036 624.82082 -10548.472 0 195.35355 -0.0009950102 -0.0010096385 + 37860 -6249.796 -6253.8036 4.0075911 3673.1936 624.65398 -10551.651 0 192.06625 -0.0011103716 -0.0011267737 + 37870 -6249.6238 -6253.5762 3.9523733 3678.4377 624.18533 -10556.199 0 189.41991 -0.0012839163 -0.0012997617 + 37880 -6249.4461 -6253.4126 3.9664755 3684.0194 623.74862 -10561.181 0 190.09576 -0.0014528281 -0.0014665487 + 37890 -6249.2455 -6253.3525 4.1070348 3688.5494 623.6457 -10565.548 0 196.83215 -0.0015565428 -0.0015681139 + 37900 -6249.0053 -6253.4077 4.4023767 3690.9492 624.03989 -10568.397 0 210.98659 -0.0015561264 -0.0015668465 + 37910 -6248.7173 -6253.5565 4.8391921 3690.7394 624.89937 -10569.195 0 231.92124 -0.0014461776 -0.0014578946 + 37920 -6248.3855 -6253.7536 5.3681675 3688.1486 626.00812 -10567.91 0 257.27271 -0.0012557737 -0.0012701284 + 37930 -6248.0257 -6253.9414 5.9156926 3684.0188 627.03813 -10564.998 0 283.51318 -0.0010389127 -0.0010567794 + 37940 -6247.6639 -6254.0591 6.3952306 3679.5374 627.65598 -10561.253 0 306.49533 -0.00085779345 -0.00087888772 + 37950 -6247.3294 -6254.0529 6.7235402 3675.8798 627.62737 -10557.56 0 322.22977 -0.00076393541 -0.00078674107 + 37960 -6247.045 -6253.889 6.8439525 3673.8762 626.88685 -10554.652 0 328.00061 -0.0007829555 -0.00080518052 + 37970 -6246.8189 -6253.5665 6.7475263 3673.8092 625.55334 -10552.929 0 323.37932 -0.00090807712 -0.0009275275 + 37980 -6246.6427 -6253.1246 6.4818897 3675.396 623.88986 -10552.41 0 310.64852 -0.0011043056 -0.0011197971 + 37990 -6246.4956 -6252.6398 6.1441518 3677.9387 622.22301 -10552.802 0 294.46223 -0.0013209701 -0.0013329385 + 38000 -6246.3531 -6252.2088 5.8557573 3680.5759 620.85111 -10553.636 0 280.64074 -0.0015075719 -0.0015180969 + 38010 -6246.1975 -6251.9184 5.7209688 3682.5483 619.97244 -10554.439 0 274.18092 -0.0016275275 -0.0016395167 + 38020 -6246.0262 -6251.8127 5.7864637 3683.3943 619.65616 -10554.863 0 277.31981 -0.0016656019 -0.0016813058 + 38030 -6245.8518 -6251.8806 6.0287626 3683.0199 619.86075 -10554.761 0 288.93213 -0.0016271247 -0.0016468194 + 38040 -6245.6933 -6252.0717 6.3784744 3681.6455 620.4852 -10554.202 0 305.69228 -0.0015304099 -0.0015521843 + 38050 -6245.5643 -6252.3269 6.7625538 3679.6857 621.42431 -10553.437 0 324.09952 -0.0013968494 -0.001417728 + 38060 -6245.4659 -6252.6022 7.1362304 3677.6242 622.59832 -10552.825 0 342.0082 -0.0012439495 -0.0012617287 + 38070 -6245.3879 -6252.8734 7.485573 3675.9299 623.94341 -10552.747 0 358.75066 -0.0010845463 -0.001099243 + 38080 -6245.3199 -6253.1194 7.7994648 3675.0169 625.37548 -10553.512 0 373.79412 -0.00093149761 -0.00094535824 + 38090 -6245.2656 -6253.2999 8.0343614 3675.2191 626.75854 -10555.278 0 385.05168 -0.00080317183 -0.00081900649 + 38100 -6245.2444 -6253.3567 8.1122601 3676.7326 627.90607 -10557.995 0 388.78502 -0.00072367686 -0.00074272181 + 38110 -6245.2765 -6253.2477 7.9711593 3679.5162 628.623 -10561.387 0 382.02268 -0.00071509584 -0.00073637215 + 38120 -6245.3609 -6252.9902 7.6292912 3683.1997 628.77127 -10564.961 0 365.63844 -0.00078555748 -0.00080743683 + 38130 -6245.4733 -6252.6658 7.1924999 3687.0882 628.32869 -10568.083 0 344.70495 -0.0009212659 -0.00094351313 + 38140 -6245.588 -6252.3729 6.7849219 3690.3021 627.41351 -10570.089 0 325.17153 -0.001088121 -0.0011119705 + 38150 -6245.7007 -6252.1703 6.469571 3692.006 626.26053 -10570.437 0 310.05814 -0.0012416915 -0.0012678019 + 38160 -6245.8267 -6252.0644 6.2377821 3691.6339 625.15338 -10568.852 0 298.94952 -0.0013401297 -0.0013668825 + 38170 -6245.9776 -6252.044 6.0664381 3689.0541 624.33394 -10565.432 0 290.73775 -0.0013558995 -0.0013801936 + 38180 -6246.1442 -6252.1151 5.9709331 3684.6518 623.91887 -10560.686 0 286.16061 -0.0012847698 -0.0013046928 + 38190 -6246.3018 -6252.2988 5.9970005 3679.3124 623.85375 -10555.465 0 287.40991 -0.0011504431 -0.0011672176 + 38200 -6246.434 -6252.5972 6.1631768 3674.271 623.9264 -10550.795 0 295.37402 -0.0010017116 -0.0010190079 + 38210 -6246.5514 -6252.9647 6.413313 3670.8198 623.84395 -10547.628 0 307.36195 -0.00089969871 -0.00092081493 + 38220 -6246.6895 -6253.3173 6.627821 3669.9272 623.35411 -10546.599 0 317.64237 -0.00089687874 -0.00092216054 + 38230 -6246.8858 -6253.5744 6.6886358 3671.8937 622.36859 -10547.837 0 320.55696 -0.0010151106 -0.0010417339 + 38240 -6247.1561 -6253.7023 6.5461634 3676.1944 621.03621 -10550.933 0 313.72888 -0.001232751 -0.0012569666 + 38250 -6247.4878 -6253.724 6.2362075 3681.6036 619.72558 -10555.053 0 298.87406 -0.0014882094 -0.0015081394 + 38260 -6247.8553 -6253.6917 5.8364398 3686.5785 618.91221 -10559.182 0 279.71494 -0.0017000532 -0.0017167243 + 38270 -6248.2428 -6253.6449 5.4021652 3689.7637 619.00779 -10562.416 0 258.90207 -0.0017958853 -0.0018117091 + 38280 -6248.6507 -6253.5922 4.9414836 3690.4217 620.19754 -10564.211 0 236.82362 -0.0017379267 -0.0017541915 + 38290 -6249.08 -6253.5328 4.4527451 3688.6293 622.35182 -10564.514 0 213.40053 -0.0015351311 -0.0015510541 + 38300 -6249.5128 -6253.4903 3.9774023 3685.1932 625.0493 -10563.733 0 190.61943 -0.0012386792 -0.0012528657 + 38310 -6249.9163 -6253.5172 3.6008931 3681.3546 627.70197 -10562.574 0 172.575 -0.00092500273 -0.00093749762 + 38320 -6250.2651 -6253.6609 3.3958519 3678.4066 629.72948 -10561.797 0 162.74828 -0.00067360513 -0.0006862386 + 38330 -6250.557 -6253.923 3.3660484 3677.3354 630.7167 -10561.975 0 161.31993 -0.0005460177 -0.0005607625 + 38340 -6250.8093 -6254.2515 3.4421682 3678.5575 630.50881 -10563.318 0 164.96801 -0.0005703143 -0.00058733729 + 38350 -6251.041 -6254.5703 3.5293663 3681.8054 629.22835 -10565.604 0 169.14704 -0.00073438663 -0.00075161979 + 38360 -6251.256 -6254.8237 3.567681 3686.1952 627.22201 -10568.241 0 170.98329 -0.00099004958 -0.0010047338 + 38370 -6251.4398 -6255.0002 3.5603356 3690.4782 624.95858 -10570.437 0 170.63126 -0.0012676471 -0.001278641 + 38380 -6251.5694 -6255.1202 3.5508222 3693.4134 622.9078 -10571.441 0 170.17532 -0.0014970825 -0.0015060386 + 38390 -6251.6318 -6255.2018 3.5700693 3694.141 621.43067 -10570.774 0 171.09775 -0.001628156 -0.0016385156 + 38400 -6251.6358 -6255.2337 3.5979132 3692.4254 620.70662 -10568.366 0 172.43219 -0.0016431493 -0.0016576112 + 38410 -6251.6094 -6255.1802 3.57077 3688.6897 620.71221 -10564.582 0 171.13133 -0.0015579579 -0.00157629 + 38420 -6251.5823 -6255.014 3.4317392 3683.8495 621.25306 -10560.117 0 164.4682 -0.0014127519 -0.0014316499 + 38430 -6251.5661 -6254.7527 3.186563 3679.0278 622.03735 -10555.818 0 152.71798 -0.0012568578 -0.0012721235 + 38440 -6251.5462 -6254.4678 2.9216105 3675.2657 622.76904 -10552.503 0 140.01997 -0.0011338483 -0.0011434407 + 38450 -6251.4902 -6254.2553 2.7650467 3673.3139 623.23438 -10550.804 0 132.51655 -0.0010714226 -0.0010771883 + 38460 -6251.3701 -6254.1824 2.8122978 3673.5326 623.3584 -10551.073 0 134.78109 -0.0010776493 -0.0010843385 + 38470 -6251.1821 -6254.2452 3.0630726 3675.8709 623.21628 -10553.332 0 146.79963 -0.0011423798 -0.0011543802 + 38480 -6250.9536 -6254.3676 3.4140293 3679.8876 622.99806 -10557.253 0 163.61944 -0.0012414429 -0.0012593548 + 38490 -6250.7272 -6254.4485 3.7212873 3684.8009 622.93858 -10562.188 0 178.34497 -0.0013417825 -0.0013614643 + 38500 -6250.5299 -6254.4301 3.9001147 3689.5963 623.23595 -10567.262 0 186.91538 -0.0014073612 -0.0014227419 + 38510 -6250.3483 -6254.3367 3.9884207 3693.23 623.98562 -10571.552 0 191.1475 -0.0014070332 -0.0014151189 + 38520 -6250.1366 -6254.2465 4.1098789 3694.9172 625.14988 -10574.314 0 196.96846 -0.0013247268 -0.0013288048 + 38530 -6249.86 -6254.2119 4.3518313 3694.4042 626.5676 -10575.184 0 208.56417 -0.0011686765 -0.0011764241 + 38540 -6249.5358 -6254.1987 4.6628907 3692.0728 627.99451 -10574.266 0 223.47189 -0.00097324873 -0.00099062332 + 38550 -6249.2313 -6254.107 4.8756841 3688.7845 629.15896 -10572.05 0 233.67014 -0.00078882097 -0.0008147632 + 38560 -6249.0125 -6253.862 4.8494918 3685.5274 629.82042 -10569.21 0 232.41486 -0.00066282515 -0.00068964618 + 38570 -6248.8887 -6253.4974 4.6086608 3683.0602 629.81984 -10566.377 0 220.87288 -0.00062234546 -0.00064182754 + 38580 -6248.8017 -6253.1522 4.3505435 3681.7352 629.1112 -10563.999 0 208.50246 -0.0006681871 -0.00067838329 + 38590 -6248.6697 -6252.9817 4.3120181 3681.5464 627.76697 -10562.295 0 206.6561 -0.00078197807 -0.00078909611 + 38600 -6248.4486 -6253.0477 4.5990631 3682.2959 625.95869 -10561.302 0 220.41291 -0.00093912892 -0.00095288529 + 38610 -6248.1654 -6253.2739 5.1085868 3683.7212 623.92199 -10560.917 0 244.83214 -0.0011179897 -0.0011439272 + 38620 -6247.8967 -6253.5018 5.605078 3685.4995 621.91785 -10560.919 0 268.62679 -0.0012999872 -0.0013347893 + 38630 -6247.7081 -6253.6075 5.8994457 3687.177 620.19874 -10560.983 0 282.73454 -0.0014634231 -0.0014972234 + 38640 -6247.5993 -6253.5866 5.9873043 3688.166 618.98404 -10560.737 0 286.94522 -0.0015794015 -0.0016034553 + 38650 -6247.5056 -6253.5343 6.0287794 3687.911 618.44347 -10559.889 0 288.93294 -0.0016168422 -0.0016302635 + 38660 -6247.3533 -6253.5436 6.1903742 3686.1718 618.6822 -10558.398 0 296.67746 -0.0015554338 -0.0015654969 + 38670 -6247.1214 -6253.6111 6.4896279 3683.2455 619.7206 -10556.577 0 311.01938 -0.0013981127 -0.0014141564 + 38680 -6246.858 -6253.6295 6.7715013 3679.9587 621.46986 -10555.058 0 324.52834 -0.001174469 -0.0012005362 + 38690 -6246.6413 -6253.4703 6.8289175 3677.4034 623.7168 -10554.59 0 327.28004 -0.00093246153 -0.00096437815 + 38700 -6246.5193 -6253.0868 6.5675628 3676.5432 626.13812 -10555.768 0 314.75446 -0.00072282101 -0.00075163867 + 38710 -6246.4731 -6252.5615 6.0884082 3677.8835 628.35584 -10558.801 0 291.79068 -0.00058406595 -0.00060292345 + 38720 -6246.4336 -6252.0631 5.6294817 3681.3412 630.02489 -10563.429 0 269.79635 -0.00053439026 -0.00054350351 + 38730 -6246.3324 -6251.7466 5.4141849 3686.3246 630.92367 -10568.995 0 259.47812 -0.00057144197 -0.00057759539 + 38740 -6246.1479 -6251.6667 5.51879 3691.9229 631.01321 -10574.603 0 264.49138 -0.00067631317 -0.0006874728 + 38750 -6245.9145 -6251.7679 5.8533677 3697.0928 630.44185 -10579.303 0 280.52622 -0.00081749204 -0.00083683956 + 38760 -6245.6893 -6251.9517 6.2624724 3700.8025 629.49259 -10582.247 0 300.13281 -0.00095415632 -0.00097820833 + 38770 -6245.5046 -6252.1617 6.6570939 3702.1787 628.49028 -10582.831 0 319.04529 -0.0010421983 -0.0010643123 + 38780 -6245.3449 -6252.411 7.0660128 3700.7108 627.69847 -10580.82 0 338.64298 -0.0010460525 -0.0010621967 + 38790 -6245.1669 -6252.736 7.5690744 3696.4787 627.23861 -10576.453 0 362.75251 -0.00095401782 -0.00096602688 + 38800 -6244.9439 -6253.1232 8.1792772 3690.2791 627.05666 -10570.459 0 391.99686 -0.00078916955 -0.00080312861 + 38810 -6244.6985 -6253.4776 8.779024 3683.5225 626.9484 -10563.948 0 420.74009 -0.00060765441 -0.00062909947 + 38820 -6244.4955 -6253.6596 9.1640688 3677.8701 626.63833 -10558.168 0 439.1936 -0.0004818361 -0.00051166844 + 38830 -6244.4013 -6253.5624 9.1611224 3674.718 625.89094 -10554.171 0 439.05239 -0.00047367513 -0.00050766735 + 38840 -6244.4412 -6253.1749 8.7337292 3674.7316 624.61896 -10552.525 0 418.56931 -0.00060927661 -0.00064112267 + 38850 -6244.5857 -6252.5945 8.0087518 3677.6244 622.94749 -10553.166 0 383.82432 -0.00086574443 -0.0008912544 + 38860 -6244.7726 -6251.9868 7.2141928 3682.2775 621.20486 -10555.469 0 345.7446 -0.0011763544 -0.0011960086 + 38870 -6244.9463 -6251.5145 6.5681318 3687.1518 619.83944 -10558.506 0 314.78173 -0.0014522774 -0.0014705881 + 38880 -6245.0903 -6251.2712 6.180924 3690.8223 619.28868 -10561.382 0 296.22456 -0.0016121685 -0.0016343087 + 38890 -6245.2303 -6251.258 6.027677 3692.421 619.8395 -10563.518 0 288.88011 -0.0016080142 -0.0016360914 + 38900 -6245.4106 -6251.4148 6.0041842 3691.8354 621.52124 -10564.771 0 287.7542 -0.0014382252 -0.0014699712 + 38910 -6245.6609 -6251.6773 6.0163958 3689.6412 624.06927 -10565.388 0 288.33945 -0.0011452774 -0.0011760152 + 38920 -6245.9807 -6252.0118 6.0310769 3686.8531 626.98244 -10565.847 0 289.04304 -0.00080114209 -0.00082722054 + 38930 -6246.3496 -6252.4075 6.0578482 3684.602 629.66411 -10566.674 0 290.32608 -0.0004866054 -0.00050752852 + 38940 -6246.7494 -6252.8444 6.0949958 3683.8225 631.59735 -10568.264 0 292.1064 -0.00027047694 -0.00028834911 + 38950 -6247.1764 -6253.2733 6.0969409 3685.0065 632.48673 -10570.766 0 292.19962 -0.00019324004 -0.0002104363 + 38960 -6247.6347 -6253.6302 5.9954835 3688.0677 632.31498 -10574.013 0 287.33721 -0.0002584106 -0.00027564661 + 38970 -6248.1179 -6253.8728 5.7549134 3692.3567 631.30315 -10577.533 0 275.80774 -0.00043393065 -0.0004502557 + 38980 -6248.6001 -6254.0074 5.4073194 3696.8404 629.80423 -10580.652 0 259.14908 -0.00066393016 -0.00067825175 + 38990 -6249.0466 -6254.0798 5.03328 3700.4034 628.18158 -10582.665 0 241.22302 -0.00088730219 -0.00089970561 + 39000 -6249.4328 -6254.1402 4.7073642 3702.167 626.71634 -10583.024 0 225.60331 -0.0010559789 -0.0010676132 + 39010 -6249.7545 -6254.2128 4.4583511 3701.7145 625.56355 -10581.491 0 213.6692 -0.0011460513 -0.0011579721 + 39020 -6250.0209 -6254.2931 4.2721554 3699.159 624.75271 -10578.205 0 204.74566 -0.0011591175 -0.00117141 + 39030 -6250.2424 -6254.3648 4.1224265 3695.0637 624.21831 -10573.647 0 197.56981 -0.0011160131 -0.0011279858 + 39040 -6250.4225 -6254.417 3.994453 3690.2716 623.84544 -10568.534 0 191.4366 -0.0010472282 -0.0010582747 + 39050 -6250.5598 -6254.4452 3.8853484 3685.7058 623.51903 -10563.67 0 186.2077 -0.00098350874 -0.0009936833 + 39060 -6250.6533 -6254.4465 3.7931135 3682.1838 623.16581 -10559.796 0 181.78728 -0.00094826157 -0.00095816882 + 39070 -6250.7048 -6254.4195 3.7146945 3680.2704 622.77936 -10557.469 0 178.029 -0.00095245833 -0.00096288029 + 39080 -6250.7167 -6254.3706 3.6539472 3680.1926 622.42219 -10556.985 0 175.11765 -0.00099291255 -0.0010046753 + 39090 -6250.6907 -6254.3144 3.6236778 3681.833 622.20597 -10558.353 0 173.66697 -0.0010545767 -0.0010685723 + 39100 -6250.6301 -6254.2633 3.6332456 3684.7942 622.25729 -10561.315 0 174.12552 -0.0011160774 -0.0011329969 + 39110 -6250.5426 -6254.2156 3.6729134 3688.5039 622.67973 -10565.399 0 176.02662 -0.0011561586 -0.0011758368 + 39120 -6250.4402 -6254.1545 3.7143133 3692.3245 623.52188 -10570.001 0 178.01073 -0.0011585429 -0.0011794572 + 39130 -6250.3315 -6254.0652 3.7337549 3695.6508 624.75817 -10574.474 0 178.94249 -0.0011141713 -0.0011338328 + 39140 -6250.2131 -6253.955 3.7419227 3697.9973 626.28605 -10578.238 0 179.33393 -0.0010216667 -0.0010380186 + 39150 -6250.0675 -6253.8594 3.7918675 3699.0843 627.9392 -10580.883 0 181.72756 -0.0008876211 -0.00090056 + 39160 -6249.8719 -6253.8241 3.9522359 3698.9084 629.51331 -10582.246 0 189.41332 -0.00072726144 -0.00073901579 + 39170 -6249.6126 -6253.8754 4.2628114 3697.7593 630.79729 -10582.432 0 204.29784 -0.00056425121 -0.00057811177 + 39180 -6249.2963 -6254.0016 4.705277 3696.1477 631.604 -10581.753 0 225.50327 -0.00042774939 -0.00044595819 + 39190 -6248.9488 -6254.1577 5.208896 3694.6493 631.79699 -10580.604 0 249.63952 -0.00034625151 -0.00036855184 + 39200 -6248.6029 -6254.2856 5.6826508 3693.7166 631.31251 -10579.315 0 272.34451 -0.00034004692 -0.00036388875 + 39210 -6248.2852 -6254.3336 6.0484357 3693.5355 630.17567 -10578.045 0 289.87497 -0.00041532069 -0.00043747187 + 39220 -6248.0067 -6254.2646 6.2578584 3693.9785 628.50736 -10576.75 0 299.91169 -0.00056200227 -0.00058042441 + 39230 -6247.7645 -6254.0592 6.2947025 3694.6625 626.51696 -10575.239 0 301.67746 -0.00075551284 -0.00077043967 + 39240 -6247.548 -6253.718 6.1700068 3695.083 624.47718 -10573.278 0 295.70134 -0.00096153927 -0.00097526283 + 39250 -6247.3505 -6253.2606 5.9101465 3694.782 622.6816 -10570.724 0 283.24738 -0.0011429345 -0.0011582915 + 39260 -6247.1771 -6252.7242 5.5471222 3693.4966 621.39129 -10567.612 0 265.84922 -0.0012672569 -0.0012855434 + 39270 -6247.0395 -6252.1706 5.1310894 3691.2404 620.7824 -10564.193 0 245.9106 -0.0013126808 -0.0013325893 + 39280 -6246.94 -6251.6991 4.7591309 3688.3041 620.9105 -10560.914 0 228.08426 -0.0012710349 -0.0012897975 + 39290 -6246.86 -6251.4364 4.5764157 3685.207 621.70437 -10558.348 0 219.32752 -0.0011488475 -0.0011647551 + 39300 -6246.7672 -6251.4875 4.7202829 3682.6271 622.98986 -10557.104 0 226.22244 -0.00096750268 -0.00098150657 + 39310 -6246.6373 -6251.8738 5.2364607 3681.2991 624.53232 -10557.705 0 250.96058 -0.00076164762 -0.00077658952 + 39320 -6246.4722 -6252.5017 6.02958 3681.8559 626.08372 -10560.441 0 288.9713 -0.00057370982 -0.00059188015 + 39330 -6246.3022 -6253.1906 6.8884229 3684.6248 627.42681 -10565.242 0 330.13187 -0.00044371176 -0.00046479545 + 39340 -6246.1674 -6253.7462 7.5788506 3689.4449 628.41322 -10571.604 0 363.22105 -0.00039669279 -0.00041787125 + 39350 -6246.0895 -6254.0436 7.9541361 3695.5989 628.99119 -10578.634 0 381.20683 -0.00043288803 -0.0004512866 + 39360 -6246.0562 -6254.0691 8.0128137 3701.931 629.21544 -10585.216 0 384.01899 -0.00052617581 -0.0005418787 + 39370 -6246.0355 -6253.8969 7.8614468 3707.1416 629.23142 -10590.27 0 376.76464 -0.00063294859 -0.00064987725 + 39380 -6246.0086 -6253.6197 7.6111888 3710.1579 629.23041 -10593.008 0 364.77087 -0.00070799385 -0.00073129292 + 39390 -6245.9922 -6253.288 7.2957791 3710.4267 629.38163 -10593.096 0 349.65467 -0.0007201269 -0.00075172503 + 39400 -6246.0253 -6252.9068 6.8814948 3708.0164 629.76037 -10590.684 0 329.79984 -0.00066111522 -0.00069719419 + 39410 -6246.1304 -6252.4846 6.3541358 3703.5284 630.30024 -10586.313 0 304.52584 -0.0005459758 -0.00057891795 + 39420 -6246.2852 -6252.0802 5.7949774 3697.9084 630.79412 -10580.783 0 277.72783 -0.00040723006 -0.00043090866 + 39430 -6246.4302 -6251.7984 5.3681753 3692.2536 630.95036 -10575.002 0 257.27308 -0.00028692146 -0.00030125003 + 39440 -6246.5071 -6251.7315 5.2244871 3687.6459 630.48783 -10569.865 0 250.38673 -0.00022813944 -0.00023930362 + 39450 -6246.4973 -6251.897 5.3997558 3684.9778 629.23815 -10566.113 0 258.78659 -0.00026546444 -0.00028166833 + 39460 -6246.4338 -6252.2212 5.787434 3684.7506 627.22247 -10564.194 0 277.36631 -0.00041406524 -0.00043991994 + 39470 -6246.3795 -6252.5837 6.2041221 3686.8911 624.67981 -10564.155 0 297.33634 -0.00065997373 -0.00069342813 + 39480 -6246.3869 -6252.8891 6.5021109 3690.6868 622.03651 -10565.612 0 311.61764 -0.00095654715 -0.00099039361 + 39490 -6246.4646 -6253.1182 6.6536184 3694.9279 619.82038 -10567.867 0 318.87873 -0.0012317472 -0.0012586829 + 39500 -6246.5744 -6253.3216 6.7472685 3698.2617 618.53734 -10570.121 0 323.36696 -0.0014071032 -0.001424884 + 39510 -6246.6638 -6253.5557 6.8919141 3699.6597 618.54125 -10571.757 0 330.29919 -0.0014235611 -0.0014364657 + 39520 -6246.7122 -6253.806 7.0938626 3698.8142 619.93185 -10572.552 0 339.9777 -0.001264504 -0.001279764 + 39530 -6246.7524 -6253.965 7.2125335 3696.2773 622.50962 -10572.752 0 345.66507 -0.00096507891 -0.00098690515 + 39540 -6246.8447 -6253.8984 7.0536941 3693.2503 625.80381 -10572.952 0 338.0526 -0.00060176012 -0.00062797231 + 39550 -6247.0208 -6253.5595 6.5386526 3691.1105 629.176 -10573.846 0 313.36892 -0.00026582346 -0.00029012785 + 39560 -6247.2523 -6253.0531 5.8008345 3690.9041 631.98123 -10575.938 0 278.00854 -3.3204468e-05 -5.104985e-05 + 39570 -6247.4731 -6252.5887 5.1155422 3693.0251 633.74157 -10579.355 0 245.16549 5.5984361e-05 4.3358307e-05 + 39580 -6247.6361 -6252.3559 4.7198493 3697.1635 634.27067 -10583.79 0 226.20166 2.6316281e-06 -1.0517428e-05 + 39590 -6247.7492 -6252.4188 4.6696681 3702.4545 633.70146 -10588.575 0 223.7967 -0.00015842784 -0.0001770986 + 39600 -6247.8653 -6252.7011 4.8358329 3707.7159 632.40945 -10592.826 0 231.76024 -0.00037142428 -0.00039532985 + 39610 -6248.037 -6253.0629 5.0258922 3711.7075 630.86471 -10595.635 0 240.86895 -0.00057440907 -0.00059804389 + 39620 -6248.2733 -6253.4008 5.1275345 3713.4021 629.46966 -10596.273 0 245.74022 -0.00071445785 -0.00073179344 + 39630 -6248.5325 -6253.693 5.1604506 3712.2589 628.44118 -10594.393 0 247.31775 -0.00076213997 -0.00077201182 + 39640 -6248.7581 -6253.963 5.2048809 3708.4301 627.77561 -10590.169 0 249.4471 -0.00072132392 -0.00072886764 + 39650 -6248.9259 -6254.2093 5.2834437 3702.7864 627.30153 -10584.297 0 253.21227 -0.00062852635 -0.000641338 + 39660 -6249.0623 -6254.3721 5.3097938 3696.6903 626.79031 -10577.853 0 254.47511 -0.00053890913 -0.000561047 + 39670 -6249.2197 -6254.3719 5.1521801 3691.5633 626.07451 -10572.01 0 246.92138 -0.00050308426 -0.000531772 + 39680 -6249.4292 -6254.1856 4.7564136 3688.4255 625.12569 -10567.737 0 227.95403 -0.0005452344 -0.00057287673 + 39690 -6249.6725 -6253.8929 4.2203827 3687.6171 624.06589 -10565.576 0 202.26442 -0.00065369069 -0.000673538 + 39700 -6249.895 -6253.6466 3.7515993 3688.8203 623.11823 -10565.585 0 179.79769 -0.00078867412 -0.00079962717 + 39710 -6250.0465 -6253.5823 3.5357367 3691.3305 622.52513 -10567.438 0 169.45234 -0.00090219836 -0.00090908112 + 39720 -6250.1159 -6253.7331 3.617212 3694.3995 622.4681 -10570.601 0 173.35709 -0.00095873104 -0.00096811838 + 39730 -6250.1337 -6254.0171 3.8833502 3697.4682 623.01384 -10574.499 0 186.11193 -0.00094624918 -0.00096147843 + 39740 -6250.1442 -6254.3038 4.1596272 3700.2163 624.09898 -10578.619 0 199.35267 -0.00087443365 -0.00089382433 + 39750 -6250.1695 -6254.5027 4.3332778 3702.4885 625.55481 -10582.546 0 207.67499 -0.00076460341 -0.00078387662 + 39760 -6250.1967 -6254.602 4.4053543 3704.2098 627.16157 -10585.973 0 211.1293 -0.00063921187 -0.00065544359 + 39770 -6250.1952 -6254.639 4.4437929 3705.3516 628.71174 -10588.702 0 212.97149 -0.0005159 -0.00052945116 + 39780 -6250.1441 -6254.6424 4.4983633 3705.9378 630.05878 -10590.639 0 215.58681 -0.00040601145 -0.00041925775 + 39790 -6250.0456 -6254.6026 4.5570201 3706.0455 631.13474 -10591.783 0 218.39797 -0.00031509878 -0.00032972165 + 39800 -6249.9164 -6254.4863 4.5698948 3705.7856 631.93298 -10592.205 0 219.015 -0.00024417858 -0.00025960341 + 39810 -6249.7679 -6254.2747 4.5068367 3705.2773 632.46551 -10592.018 0 215.9929 -0.00019224584 -0.00020637851 + 39820 -6249.5935 -6253.9895 4.3960402 3704.6393 632.71552 -10591.344 0 210.68291 -0.0001602208 -0.00017161122 + 39830 -6249.3708 -6253.6853 4.3145392 3703.9962 632.61039 -10590.292 0 206.77693 -0.00015457947 -0.00016410187 + 39840 -6249.0771 -6253.4173 4.3401795 3703.4816 632.0344 -10588.933 0 208.00576 -0.0001877204 -0.00019833632 + 39850 -6248.7065 -6253.2092 4.502659 3703.2068 630.88234 -10587.298 0 215.79269 -0.00027313871 -0.00028782581 + 39860 -6248.2758 -6253.0475 4.77166 3703.1866 629.13452 -10585.369 0 228.68472 -0.00041628225 -0.00043568895 + 39870 -6247.8159 -6252.908 5.0920656 3703.2533 626.92002 -10583.081 0 244.04035 -0.0006050101 -0.00062674144 + 39880 -6247.3519 -6252.7892 5.4373081 3703.0322 624.53532 -10580.357 0 260.58631 -0.0008052712 -0.00082552029 + 39890 -6246.8896 -6252.7228 5.8331625 3702.0445 622.39868 -10577.166 0 279.55788 -0.00096659652 -0.0009829103 + 39900 -6246.42 -6252.7488 6.328739 3699.9365 620.94494 -10573.63 0 303.30868 -0.0010376795 -0.0010506934 + 39910 -6245.9383 -6252.8781 6.9397722 3696.7357 620.49323 -10570.107 0 332.59282 -0.00098652311 -0.000999465 + 39920 -6245.4601 -6253.0704 7.6102465 3692.9958 621.13828 -10567.204 0 364.72571 -0.00081616926 -0.00083271813 + 39930 -6245.0236 -6253.2415 8.2178832 3689.7291 622.71306 -10565.684 0 393.84707 -0.00056811028 -0.00059013435 + 39940 -6244.6736 -6253.2958 8.62218 3688.1197 624.84231 -10566.258 0 413.22324 -0.00031022211 -0.00033681192 + 39950 -6244.4377 -6253.1709 8.7332294 3689.1045 627.06853 -10569.344 0 418.54536 -0.00011277415 -0.00014122265 + 39960 -6244.3108 -6252.8679 8.5570841 3692.9919 629.00288 -10574.863 0 410.10348 -2.2353798e-05 -5.0297893e-05 + 39970 -6244.2639 -6252.4433 8.179312 3699.2832 630.44477 -10582.171 0 391.99853 -4.5187533e-05 -7.193708e-05 + 39980 -6244.2678 -6251.971 7.7031977 3706.7704 631.42531 -10590.167 0 369.18046 -0.00014635476 -0.00017215306 + 39990 -6244.309 -6251.5152 7.2061704 3713.8581 632.15712 -10597.53 0 345.36012 -0.00026366526 -0.00028792233 + 40000 -6244.3826 -6251.1371 6.7544584 3718.9896 632.90879 -10603.035 0 323.71155 -0.00033002554 -0.00035087883 + 40010 -6244.4734 -6250.9177 6.4442947 3721.0635 633.85302 -10605.834 0 308.84676 -0.00029723722 -0.00031341696 + 40020 -6244.5515 -6250.9503 6.3988108 3719.7501 634.95264 -10605.653 0 306.66692 -0.00015489257 -0.00016807965 + 40030 -6244.5938 -6251.2856 6.6917493 3715.6208 635.93731 -10602.844 0 320.70618 6.1591344e-05 4.6855244e-05 + 40040 -6244.6123 -6251.8689 7.256622 3710.0098 636.38712 -10598.266 0 347.77804 0.00027878365 0.00025839493 + 40050 -6244.6583 -6252.5369 7.8785881 3704.5938 635.8933 -10593.024 0 377.58615 0.00040965386 0.00038369592 + 40060 -6244.7911 -6253.0927 8.3015777 3700.8126 634.23263 -10588.138 0 397.85818 0.00038733468 0.00036053663 + 40070 -6245.0318 -6253.4068 8.3749622 3699.377 631.48542 -10584.269 0 401.37518 0.00019372186 0.00017178249 + 40080 -6245.3465 -6253.4712 8.1246657 3700.0893 628.04932 -10581.61 0 389.37957 -0.00013131966 -0.00014650572 + 40090 -6245.6728 -6253.3715 7.6987491 3702.0441 624.54408 -10579.96 0 368.96725 -0.00050475038 -0.00051682416 + 40100 -6245.9683 -6253.2092 7.2409122 3704.0774 621.64573 -10578.932 0 347.02514 -0.00083098704 -0.00084620534 + 40110 -6246.2385 -6253.0378 6.7992831 3705.232 619.90845 -10578.178 0 325.8598 -0.001033201 -0.0010551864 + 40120 -6246.5197 -6252.8618 6.3420753 3705.0487 619.6263 -10577.537 0 303.94783 -0.0010727899 -0.0010993975 + 40130 -6246.8361 -6252.6898 5.853699 3703.6237 620.76892 -10577.082 0 280.5421 -0.00095336019 -0.00097848328 + 40140 -6247.1702 -6252.5784 5.4082073 3701.5017 623.00525 -10577.085 0 259.19164 -0.00071346337 -0.00073229182 + 40150 -6247.4754 -6252.6146 5.1391302 3699.5029 625.80654 -10577.924 0 246.29595 -0.00041438395 -0.00042748548 + 40160 -6247.7158 -6252.8448 5.1289839 3698.5263 628.59552 -10579.967 0 245.80969 -0.00012622443 -0.00013891512 + 40170 -6247.8974 -6253.2191 5.3217063 3699.3223 630.89435 -10583.436 0 255.04602 8.7575484e-05 6.9869901e-05 + 40180 -6248.0644 -6253.6056 5.5411855 3702.2385 632.42793 -10588.272 0 265.5647 0.00018638592 0.0001627092 + 40190 -6248.263 -6253.8698 5.6068405 3707.0194 633.15701 -10594.046 0 268.71126 0.00016467654 0.00013925606 + 40200 -6248.5038 -6253.9601 5.4563291 3712.7789 633.23992 -10599.979 0 261.49791 5.3896743e-05 3.2536125e-05 + 40210 -6248.753 -6253.9328 5.1798008 3718.2152 632.94326 -10605.091 0 248.24512 -8.9525758e-05 -0.00010430205 + 40220 -6248.9598 -6253.9008 4.9409925 3722.0159 632.53571 -10608.452 0 236.80009 -0.00020640207 -0.00021747856 + 40230 -6249.097 -6253.9446 4.8476592 3723.2912 632.20004 -10609.436 0 232.32703 -0.00025748016 -0.00027083757 + 40240 -6249.1825 -6254.0528 4.8703344 3721.8479 631.98732 -10607.888 0 233.41375 -0.00023633805 -0.00025611423 + 40250 -6249.266 -6254.1377 4.8716831 3718.1923 631.82062 -10604.151 0 233.47839 -0.00016736307 -0.00019226016 + 40260 -6249.3891 -6254.1129 4.7238379 3713.289 631.53987 -10598.942 0 226.39282 -9.140904e-05 -0.00011547052 + 40270 -6249.5512 -6253.9701 4.4189171 3708.2203 630.97113 -10593.162 0 211.7793 -4.7532576e-05 -6.4781915e-05 + 40280 -6249.7095 -6253.7917 4.0821758 3703.9082 629.99962 -10587.7 0 195.64077 -5.9675802e-05 -6.8876243e-05 + 40290 -6249.8127 -6253.6919 3.8792805 3700.9804 628.62553 -10583.298 0 185.91689 -0.00013244304 -0.00013814867 + 40300 -6249.8398 -6253.7341 3.8943417 3699.7518 626.98529 -10580.471 0 186.63871 -0.00025419915 -0.00026328993 + 40310 -6249.8154 -6253.8878 4.0724007 3700.2417 625.32984 -10579.459 0 195.17229 -0.00040275628 -0.00041913549 + 40320 -6249.7896 -6254.0573 4.267623 3702.1807 623.96446 -10580.202 0 204.52844 -0.00054995508 -0.00057146297 + 40330 -6249.7968 -6254.1585 4.3617087 3705.0253 623.16874 -10582.353 0 209.03756 -0.0006647578 -0.00068482081 + 40340 -6249.823 -6254.1857 4.3626617 3708.0452 623.12323 -10585.354 0 209.08323 -0.00071731513 -0.00073034699 + 40350 -6249.8092 -6254.2091 4.3999622 3710.5199 623.86809 -10588.597 0 210.87088 -0.00068629918 -0.0006927173 + 40360 -6249.6904 -6254.2995 4.6091309 3711.9929 625.30481 -10591.597 0 220.89541 -0.00056808558 -0.00057465213 + 40370 -6249.4452 -6254.441 4.9958459 3712.452 627.23351 -10594.127 0 239.42897 -0.0003821478 -0.00039686854 + 40380 -6249.1153 -6254.5163 5.4010302 3712.3054 629.40554 -10596.227 0 258.84767 -0.00016680989 -0.00019227136 + 40390 -6248.7768 -6254.391 5.6141304 3712.1418 631.57158 -10598.104 0 269.06063 3.5066092e-05 4.2358111e-06 + 40400 -6248.4806 -6254.0318 5.5512066 3712.4137 633.51402 -10599.96 0 266.04497 0.00019305437 0.00016602976 + 40410 -6248.2113 -6253.5519 5.3406135 3713.2482 635.06226 -10601.862 0 255.95216 0.00029780076 0.00028002451 + 40420 -6247.9044 -6253.1349 5.2304766 3714.4841 636.09451 -10603.714 0 250.67379 0.00035575856 0.00034458768 + 40430 -6247.5053 -6252.901 5.3956843 3715.8585 636.53193 -10605.291 0 258.59147 0.00037543465 0.00036267523 + 40440 -6247.0176 -6252.829 5.8113773 3717.1619 636.33213 -10606.323 0 278.51381 0.00035695049 0.00033581399 + 40450 -6246.5024 -6252.7933 6.2908144 3718.2504 635.48977 -10606.533 0 301.49112 0.0002928578 0.00026330603 + 40460 -6246.0313 -6252.6728 6.6415145 3718.9474 634.04828 -10605.668 0 318.29864 0.00017841313 0.00014669565 + 40470 -6245.6331 -6252.4398 6.8067187 3718.9596 632.11881 -10603.518 0 326.21615 2.249359e-05 -4.2944553e-06 + 40480 -6245.2796 -6252.1661 6.8864989 3717.914 629.89478 -10599.975 0 330.03967 -0.00014915347 -0.0001687992 + 40490 -6244.9188 -6251.9547 7.0359545 3715.5267 627.64804 -10595.13 0 337.20242 -0.00030042025 -0.00031702316 + 40500 -6244.526 -6251.8579 7.3319825 3711.8144 625.6968 -10589.369 0 351.38974 -0.00039692401 -0.00041709632 + 40510 -6244.1289 -6251.8479 7.7189948 3707.2153 624.34354 -10583.407 0 369.93754 -0.00041721634 -0.00044440553 + 40520 -6243.7856 -6251.86 8.074444 3702.5348 623.79555 -10578.19 0 386.97266 -0.00035861141 -0.00039041491 + 40530 -6243.5367 -6251.8635 8.3268411 3698.7432 624.09652 -10574.703 0 399.06895 -0.00023699437 -0.0002675929 + 40540 -6243.3775 -6251.8885 8.51099 3696.7358 625.10357 -10573.728 0 407.8944 -8.2634289e-05 -0.00010781766 + 40550 -6243.273 -6251.9868 8.7138818 3697.1402 626.52852 -10575.656 0 417.61811 6.6301543e-05 4.6009855e-05 + 40560 -6243.1962 -6252.1703 8.974071 3700.1862 628.03336 -10580.39 0 430.08784 0.00017246184 0.00015273873 + 40570 -6243.155 -6252.3818 9.2267899 3705.6172 629.34573 -10587.345 0 442.19954 0.00021004015 0.0001863844 + 40580 -6243.1878 -6252.5196 9.3318099 3712.6594 630.35083 -10595.53 0 447.23269 0.00017518226 0.00014636106 + 40590 -6243.3349 -6252.4976 9.1626841 3720.0904 631.1211 -10603.709 0 439.12723 9.180012e-05 6.0786435e-05 + 40600 -6243.6029 -6252.307 8.7040222 3726.4453 631.86538 -10610.618 0 417.14558 8.1045959e-06 -2.0280506e-05 + 40610 -6243.9518 -6252.0358 8.0839497 3730.3605 632.81388 -10615.21 0 387.42823 -1.8857219e-05 -4.1940265e-05 + 40620 -6244.3211 -6251.8175 7.4964546 3730.991 634.08783 -10616.896 0 359.27217 5.2422355e-05 3.3104743e-05 + 40630 -6244.674 -6251.7419 7.0678635 3728.3421 635.61113 -10615.695 0 338.73168 0.0002255268 0.00020620745 + 40640 -6245.016 -6251.8094 6.7933755 3723.3251 637.09999 -10612.235 0 325.57667 0.00045908885 0.00043760898 + 40650 -6245.3702 -6251.9688 6.5986536 3717.4687 638.13545 -10607.573 0 316.24451 0.00068047677 0.00065777849 + 40660 -6245.7431 -6252.1834 6.4403031 3712.4121 638.29654 -10602.892 0 308.65546 0.00081284696 0.00079095584 + 40670 -6246.1194 -6252.4488 6.3294196 3709.4119 637.31115 -10599.172 0 303.3413 0.00080198843 0.00078147463 + 40680 -6246.4836 -6252.7573 6.2736757 3709.027 635.17136 -10596.956 0 300.66974 0.00063313154 0.00061308498 + 40690 -6246.8373 -6253.068 6.2306466 3711.0235 632.16864 -10596.26 0 298.60755 0.00033511939 0.00031513938 + 40700 -6247.1905 -6253.3253 6.1348426 3714.4835 628.83403 -10596.643 0 294.01608 -2.6760685e-05 -4.5408358e-05 + 40710 -6247.5406 -6253.5039 5.9632805 3718.0924 625.80385 -10597.4 0 285.79386 -0.00036741389 -0.00038299042 + 40720 -6247.8667 -6253.6291 5.7624654 3720.5489 623.65543 -10597.833 0 276.16967 -0.00060509854 -0.00061758457 + 40730 -6248.1436 -6253.75 5.6063569 3720.9881 622.76235 -10597.5 0 268.68808 -0.00068528341 -0.00069711186 + 40740 -6248.3644 -6253.8896 5.525136 3719.266 623.20868 -10596.364 0 264.79552 -0.00059716002 -0.00061149687 + 40750 -6248.5476 -6254.0185 5.470953 3715.9951 624.78283 -10594.796 0 262.19877 -0.00037603225 -0.00039398491 + 40760 -6248.7221 -6254.0776 5.3555137 3712.315 627.05016 -10593.443 0 256.66627 -8.9960284e-05 -0.00010928305 + 40770 -6248.9012 -6254.0331 5.1318707 3709.4945 629.48167 -10593.009 0 245.94804 0.00018403514 0.00016724029 + 40780 -6249.0674 -6253.915 4.8475535 3708.5278 631.59982 -10594.043 0 232.32196 0.00038404901 0.0003718087 + 40790 -6249.1851 -6253.7994 4.6142552 3709.8747 633.09678 -10596.771 0 221.141 0.00047822782 0.00046847659 + 40800 -6249.2315 -6253.7464 4.5148694 3713.3966 633.89013 -10601.033 0 216.37787 0.00046723613 0.00045516918 + 40810 -6249.2189 -6253.7514 4.5325201 3718.4409 634.1036 -10606.296 0 217.2238 0.00037762912 0.00035968957 + 40820 -6249.1864 -6253.7574 4.5709634 3723.9966 633.98732 -10611.741 0 219.06621 0.00025175711 0.00022871481 + 40830 -6249.1679 -6253.7168 4.5488828 3728.8903 633.81117 -10616.418 0 218.00799 0.00013713819 0.00011341052 + 40840 -6249.1639 -6253.6406 4.476689 3732.0327 633.76883 -10619.442 0 214.54806 7.4994079e-05 5.4877194e-05 + 40850 -6249.1444 -6253.5875 4.4430797 3732.6975 633.92011 -10620.205 0 212.93731 8.8228584e-05 7.2543957e-05 + 40860 -6249.0762 -6253.6065 4.5302547 3730.7481 634.18173 -10618.536 0 217.11522 0.00017269578 0.00015870304 + 40870 -6248.9497 -6253.6907 4.7409777 3726.7002 634.36228 -10614.753 0 227.21426 0.00029713444 0.00028140329 + 40880 -6248.7829 -6253.7825 4.999528 3721.5719 634.22914 -10609.583 0 239.60543 0.00041380822 0.00039530456 + 40890 -6248.6025 -6253.822 5.2194468 3716.5721 633.58963 -10603.984 0 250.14518 0.00047608301 0.00045685959 + 40900 -6248.4179 -6253.7961 5.3782021 3712.7517 632.36377 -10598.912 0 257.75362 0.00045523058 0.00043827438 + 40910 -6248.2109 -6253.7453 5.5344302 3710.7519 630.62668 -10595.124 0 265.24095 0.00034918783 0.00033541391 + 40920 -6247.9504 -6253.7198 5.7693649 3710.7203 628.60659 -10593.047 0 276.50034 0.00018056874 0.00016776882 + 40930 -6247.6205 -6253.7225 6.1019633 3712.3741 626.63847 -10592.735 0 292.44032 -1.2912752e-05 -2.8068197e-05 + 40940 -6247.235 -6253.6925 6.4575326 3715.1305 625.08728 -10593.91 0 309.4812 -0.00018938952 -0.00020811693 + 40950 -6246.8247 -6253.5484 6.7236997 3718.2431 624.26482 -10596.056 0 322.23742 -0.00031072972 -0.00033077818 + 40960 -6246.4082 -6253.2525 6.8443498 3720.9444 624.36472 -10598.562 0 328.01964 -0.00034730878 -0.00036483277 + 40970 -6245.9725 -6252.8395 6.8669562 3722.6138 625.43048 -10600.884 0 329.10307 -0.00028210737 -0.00029505528 + 40980 -6245.4821 -6252.3885 6.9064423 3722.9562 627.35663 -10602.701 0 330.99547 -0.00011521679 -0.00012523868 + 40990 -6244.904 -6251.9687 7.0646378 3722.1199 629.91339 -10604.002 0 338.57708 0.00013318257 0.00012180406 + 41000 -6244.2301 -6251.6039 7.3738021 3720.6818 632.78432 -10605.07 0 353.39397 0.00042452459 0.0004078807 + 41010 -6243.4801 -6251.2818 7.8017409 3719.4746 635.6115 -10606.368 0 373.9032 0.00070970075 0.00068680413 + 41020 -6242.6877 -6250.9918 8.3040469 3719.3039 638.04505 -10608.341 0 397.97652 0.0009412659 0.00091429167 + 41030 -6241.8826 -6250.7566 8.8740073 3720.653 639.79319 -10611.203 0 425.29222 0.0010855116 0.0010577083 + 41040 -6241.084 -6250.625 9.5410688 3723.4931 640.66593 -10614.784 0 457.26155 0.0011294991 0.0011026152 + 41050 -6240.3158 -6250.6266 10.310741 3727.2717 640.60438 -10618.503 0 494.14855 0.0010808386 0.0010543745 + 41060 -6239.6282 -6250.7312 11.10302 3731.07 639.68643 -10621.488 0 532.11902 0.00096226875 0.00093506966 + 41070 -6239.0932 -6250.8617 11.768496 3733.8536 638.10227 -10622.818 0 564.01236 0.0008051273 0.00077712519 + 41080 -6238.7695 -6250.9551 12.185576 3734.7398 636.10429 -10621.799 0 584.00118 0.00064344795 0.00061508804 + 41090 -6238.6708 -6251.0077 12.336946 3733.2445 633.95267 -10618.205 0 591.25567 0.00050727169 0.00047738756 + 41100 -6238.7746 -6251.0547 12.280126 3729.4652 631.88072 -10612.401 0 588.53255 0.00041518617 0.00038063129 + 41110 -6239.0531 -6251.1138 12.060721 3724.1118 630.08309 -10605.309 0 578.01742 0.00037014691 0.00032843598 + 41120 -6239.4833 -6251.1606 11.677313 3718.3226 628.70997 -10598.193 0 559.64234 0.0003621266 0.00031449121 + 41130 -6240.0306 -6251.1527 11.122073 3713.325 627.85502 -10592.333 0 533.03215 0.00037568612 0.00032746199 + 41140 -6240.6353 -6251.0696 10.43426 3710.0952 627.54242 -10588.707 0 500.06827 0.00039715577 0.00035514038 + 41150 -6241.2227 -6250.938 9.7153063 3709.1531 627.72477 -10587.816 0 465.61199 0.00041797936 0.00038661315 + 41160 -6241.7268 -6250.8301 9.1032812 3710.533 628.29628 -10589.659 0 436.28031 0.00043425648 0.00041279448 + 41170 -6242.1114 -6250.8291 8.717673 3713.8895 629.11828 -10593.837 0 417.7998 0.00044408714 0.0004265274 + 41180 -6242.3856 -6250.9724 8.5868088 3718.6559 630.05304 -10599.681 0 411.52806 0.00044482349 0.00042345984 + 41190 -6242.6078 -6251.2152 8.6074519 3724.1642 631.00065 -10606.38 0 412.51739 0.00043350606 0.00040446931 + 41200 -6242.8583 -6251.4615 8.6032308 3729.6718 631.92913 -10613.062 0 412.31509 0.00041287526 0.00037926789 + 41210 -6243.1869 -6251.6492 8.4622689 3734.3513 632.88293 -10618.883 0 405.55941 0.00039923323 0.00036847458 + 41220 -6243.5793 -6251.8044 8.2250792 3737.3747 633.95791 -10623.137 0 394.19195 0.000422496 0.00039983473 + 41230 -6243.9803 -6252.0043 8.0239832 3738.1574 635.24101 -10625.403 0 384.5543 0.00051241552 0.00049666449 + 41240 -6244.3509 -6252.284 7.9331031 3736.6488 636.73115 -10625.664 0 380.19881 0.00067730801 0.00066271257 + 41250 -6244.702 -6252.5884 7.8864008 3733.4593 638.27561 -10624.323 0 377.96058 0.00089042632 0.00087239022 + 41260 -6245.0733 -6252.8198 7.7464828 3729.6933 639.56328 -10622.076 0 371.25492 0.0010950069 0.0010738272 + 41270 -6245.4852 -6252.9314 7.4461646 3726.5569 640.19946 -10619.688 0 356.86199 0.0012256606 0.0012049711 + 41280 -6245.9144 -6252.9685 7.0541467 3724.9426 639.84663 -10617.758 0 338.07429 0.0012333638 0.0012155555 + 41290 -6246.3162 -6253.0211 6.7049072 3725.1758 638.37374 -10616.571 0 321.33678 0.0011019729 0.0010855099 + 41300 -6246.6661 -6253.1378 6.4716684 3726.9821 635.94346 -10616.063 0 310.15866 0.00085231616 0.00083340657 + 41310 -6246.9782 -6253.2839 6.3056982 3729.6201 632.99315 -10615.897 0 302.20444 0.00053632129 0.00051295917 + 41320 -6247.2857 -6253.3782 6.0924641 3732.1018 630.11411 -10615.594 0 291.98506 0.00022453527 0.00019882508 + 41330 -6247.6051 -6253.3709 5.765749 3733.4534 627.87731 -10614.702 0 276.32704 -1.1027391e-05 -3.4491799e-05 + 41340 -6247.9185 -6253.29 5.3715295 3732.9963 626.6729 -10612.959 0 257.43383 -0.00011637701 -0.00013444775 + 41350 -6248.1882 -6253.2169 5.0287629 3730.5964 626.61717 -10610.43 0 241.00654 -7.2335283e-05 -8.5909262e-05 + 41360 -6248.3874 -6253.2221 4.8346727 3726.7815 627.54717 -10607.551 0 231.70464 9.8166934e-05 8.4909607e-05 + 41370 -6248.5188 -6253.3189 4.8001513 3722.6416 629.09184 -10605.052 0 230.05019 0.00033662961 0.00031929525 + 41380 -6248.6099 -6253.4641 4.8542125 3719.5088 630.79271 -10603.766 0 232.6411 0.00056798535 0.00054487435 + 41390 -6248.696 -6253.5927 4.8967248 3718.5206 632.24039 -10604.354 0 234.67853 0.00072545142 0.00069856064 + 41400 -6248.7995 -6253.6592 4.8596845 3720.2235 633.18976 -10607.072 0 232.90335 0.0007724922 0.000746263 + 41410 -6248.918 -6253.6648 4.7468006 3724.3633 633.61925 -10611.647 0 227.49332 0.00071423614 0.00069278215 + 41420 -6249.0244 -6253.6558 4.6314763 3729.9509 633.7143 -10617.321 0 221.96633 0.00059406907 0.00057841593 + 41430 -6249.0839 -6253.6899 4.6059269 3735.588 633.77946 -10623.057 0 220.74186 0.00047605146 0.00046330416 + 41440 -6249.0806 -6253.7856 4.7050298 3739.9339 634.10903 -10627.829 0 225.49143 0.00041940379 0.00040492951 + 41450 -6249.0324 -6253.8976 4.8651808 3742.1182 634.86019 -10630.876 0 233.16676 0.00045554975 0.00043693426 + 41460 -6248.9788 -6253.9502 4.971369 3741.9368 635.97379 -10631.861 0 238.2559 0.0005779057 0.00055728788 + 41470 -6248.944 -6253.9118 4.9677794 3739.7894 637.17616 -10630.877 0 238.08386 0.00074803622 0.00073022146 + 41480 -6248.9103 -6253.8362 4.9259351 3736.4597 638.06854 -10628.365 0 236.07845 0.00091259023 0.00090031145 + 41490 -6248.8303 -6253.8198 4.9894942 3732.8724 638.27357 -10624.966 0 239.12456 0.0010211551 0.0010120073 + 41500 -6248.6688 -6253.9067 5.2378663 3729.8889 637.57964 -10621.375 0 251.02794 0.001038831 0.0010270172 + 41510 -6248.4357 -6254.0305 5.5947518 3728.1325 636.02476 -10618.188 0 268.1319 0.00095343083 0.00093491107 + 41520 -6248.1806 -6254.0501 5.8695385 3727.8322 633.89001 -10615.772 0 281.30122 0.00077914507 0.00075556245 + 41530 -6247.9505 -6253.8575 5.9069607 3728.7364 631.61059 -10614.205 0 283.0947 0.00055587402 0.00053345053 + 41540 -6247.7448 -6253.4692 5.7244354 3730.1793 629.6427 -10613.291 0 274.34707 0.00034084614 0.0003246786 + 41550 -6247.5098 -6253.0217 5.511893 3731.3381 628.33892 -10612.699 0 264.16084 0.00019124636 0.00017985057 + 41560 -6247.1847 -6252.6631 5.4783858 3731.5995 627.87494 -10612.138 0 262.55499 0.00014332655 0.00012880851 + 41570 -6246.7608 -6252.4332 5.6724209 3730.8445 628.24119 -10611.519 0 271.85424 0.00019900611 0.00017363128 + 41580 -6246.3002 -6252.2443 5.9441084 3729.4685 629.28429 -10610.997 0 284.87503 0.00032899426 0.00029278021 + 41590 -6245.8887 -6251.9905 6.1017691 3728.1196 630.77135 -10610.881 0 292.43101 0.00049158107 0.00045361183 + 41600 -6245.5565 -6251.6847 6.1281602 3727.3435 632.45453 -10611.483 0 293.69582 0.00065479558 0.00062603349 + 41610 -6245.2435 -6251.4816 6.2381639 3727.3945 634.12187 -10612.998 0 298.96782 0.00080627312 0.00078990186 + 41620 -6244.8506 -6251.549 6.698365 3728.3116 635.6247 -10615.485 0 321.02323 0.00094525687 0.00093364227 + 41630 -6244.3357 -6251.907 7.5712655 3730.1027 636.87619 -10618.886 0 362.85753 0.0010669597 0.001048214 + 41640 -6243.7645 -6252.3911 8.6265994 3732.7972 637.82756 -10623.016 0 413.43505 0.0011553672 0.0011234296 + 41650 -6243.2709 -6252.7681 9.4971492 3736.2965 638.44315 -10627.508 0 455.15668 0.0011910771 0.0011503827 + 41660 -6242.96 -6252.894 9.9339958 3740.1751 638.69619 -10631.765 0 476.09282 0.0011664777 0.0011276699 + 41670 -6242.8402 -6252.7855 9.9453037 3743.6438 638.5884 -10635.018 0 476.63476 0.0010947306 0.0010657292 + 41680 -6242.8403 -6252.5612 9.7209478 3745.7618 638.17418 -10636.497 0 465.88236 0.0010051997 0.00098542103 + 41690 -6242.8867 -6252.3182 9.4315611 3745.8021 637.56434 -10635.685 0 452.01333 0.00092921649 0.00091149263 + 41700 -6242.9635 -6252.0525 9.0890118 3743.5624 636.89828 -10632.513 0 435.59645 0.00088664005 0.00086453373 + 41710 -6243.1034 -6251.695 8.5916192 3739.449 636.29332 -10627.437 0 411.7586 0.00088121063 0.00085475393 + 41720 -6243.3266 -6251.228 7.9013376 3734.3183 635.79563 -10621.342 0 378.67643 0.00090445787 0.00087904036 + 41730 -6243.598 -6250.764 7.1659596 3729.2115 635.36051 -10615.336 0 343.43299 0.00094155657 0.0009214984 + 41740 -6243.8478 -6250.4994 6.6515702 3725.1377 634.8762 -10610.513 0 318.78057 0.00097385157 0.00095741204 + 41750 -6244.0319 -6250.5757 6.5438609 3722.9355 634.22165 -10607.733 0 313.61853 0.00097949094 0.00096028946 + 41760 -6244.1716 -6250.9728 6.8011868 3723.1402 633.33158 -10607.445 0 325.95103 0.00093746731 0.0009108052 + 41770 -6244.3376 -6251.523 7.1853562 3725.8106 632.24249 -10609.576 0 344.36259 0.00083726749 0.00080529909 + 41780 -6244.5905 -6252.033 7.442591 3730.3875 631.10298 -10613.524 0 356.69072 0.00068982727 0.00066059352 + 41790 -6244.9258 -6252.4132 7.4874101 3735.732 630.14469 -10618.29 0 358.8387 0.00053137714 0.00051205782 + 41800 -6245.273 -6252.7096 7.4366055 3740.4302 629.62288 -10622.763 0 356.40386 0.00041389902 0.00040394076 + 41810 -6245.5532 -6253.0171 7.4638839 3743.2863 629.7454 -10626.049 0 357.7112 0.00038423778 0.0003746632 + 41820 -6245.7471 -6253.3537 7.606564 3743.768 630.61071 -10627.732 0 364.54923 0.00046279909 0.00044291754 + 41830 -6245.9119 -6253.6155 7.703638 3742.1645 632.17134 -10627.951 0 369.20156 0.00063456774 0.00060074028 + 41840 -6246.1287 -6253.6558 7.5271692 3739.3796 634.23239 -10627.268 0 360.74418 0.00085757126 0.0008165677 + 41850 -6246.4275 -6253.4201 6.9926449 3736.5038 636.4861 -10626.41 0 335.12678 0.0010823218 0.001046214 + 41860 -6246.7552 -6253.0152 6.2600037 3734.4218 638.57372 -10626.011 0 300.0145 0.0012691178 0.0012458321 + 41870 -6247.0154 -6252.647 5.6315632 3733.6414 640.15872 -10626.447 0 269.89611 0.0013936887 0.0013810474 + 41880 -6247.1438 -6252.4708 5.3270003 3734.3395 640.99382 -10627.804 0 255.29974 0.0014422846 0.0014305022 + 41890 -6247.1585 -6252.48 5.3214751 3736.4588 640.96597 -10629.905 0 255.03495 0.0014058977 0.0013864603 + 41900 -6247.1439 -6252.5343 5.3904148 3739.7027 640.10941 -10632.346 0 258.33892 0.0012827418 0.0012559757 + 41910 -6247.1788 -6252.5118 5.3330448 3743.441 638.58801 -10634.541 0 255.58943 0.001088452 0.0010628603 + 41920 -6247.2672 -6252.4413 5.1741487 3746.7055 636.6597 -10635.807 0 247.97424 0.00086302431 0.00084684679 + 41930 -6247.3384 -6252.4854 5.1469518 3748.4275 634.63639 -10635.549 0 246.67081 0.00066337026 0.0006562792 + 41940 -6247.3168 -6252.7802 5.4634154 3747.862 632.84173 -10633.484 0 261.83752 0.00054207632 0.00053494185 + 41950 -6247.1987 -6253.2802 6.0814826 3744.9532 631.55923 -10629.793 0 291.45877 0.00052514547 0.00050826712 + 41960 -6247.0661 -6253.7534 6.6872451 3740.3999 630.96821 -10625.122 0 320.49031 0.00060287464 0.00057516852 + 41970 -6247.019 -6253.9436 6.9246006 3735.3817 631.08356 -10620.409 0 331.86572 0.00073834582 0.00070882923 + 41980 -6247.0835 -6253.7652 6.6817132 3731.1248 631.73317 -10616.623 0 320.22519 0.00088563368 0.00086539372 + 41990 -6247.184 -6253.3631 6.1791109 3728.5636 632.60301 -10614.53 0 296.13767 0.0010047683 0.00099652683 + 42000 -6247.2099 -6252.9886 5.77875 3728.2204 633.34889 -10614.558 0 276.95012 0.0010670064 0.0010618991 + 42010 -6247.1128 -6252.7999 5.6871142 3730.2263 633.7342 -10616.76 0 272.55842 0.0010551306 0.0010398543 + 42020 -6246.9485 -6252.7598 5.8113242 3734.3188 633.73241 -10620.811 0 278.51126 0.00096739635 0.00093560892 + 42030 -6246.828 -6252.7105 5.882541 3739.7623 633.5438 -10626.017 0 281.92437 0.00082655162 0.00078458697 + 42040 -6246.8207 -6252.548 5.7272867 3745.3256 633.51328 -10631.387 0 274.48371 0.0006846791 0.00064644172 + 42050 -6246.8937 -6252.3316 5.4378696 3749.5079 633.98255 -10635.822 0 260.61322 0.00061187928 0.00058729999 + 42060 -6246.9417 -6252.2272 5.2855002 3751.0494 635.13986 -10638.416 0 253.31083 0.00066716364 0.00065443128 + 42070 -6246.8785 -6252.3429 5.464492 3749.4991 636.92601 -10638.768 0 261.88912 0.00086580795 0.00085398825 + 42080 -6246.7056 -6252.6217 5.9161642 3745.4948 639.02435 -10637.141 0 283.53578 0.0011641206 0.0011430797 + 42090 -6246.5002 -6252.8924 6.3921616 3740.5467 640.93421 -10634.373 0 306.34825 0.0014730051 0.0014413247 + 42100 -6246.3432 -6253.0195 6.6762397 3736.4312 642.11085 -10631.562 0 319.96287 0.0016933411 0.0016578785 + 42110 -6246.2564 -6253.0015 6.7451257 3734.5175 642.13737 -10629.656 0 323.26427 0.0017538161 0.001722842 + 42120 -6246.2001 -6252.9411 6.7410602 3735.3301 640.87315 -10629.144 0 323.06943 0.0016339992 0.0016107791 + 42130 -6246.1193 -6252.9372 6.817889 3738.4648 638.52277 -10629.925 0 326.75149 0.0013670675 0.0013486941 + 42140 -6245.9904 -6252.9971 7.0067846 3742.8047 635.59661 -10631.398 0 335.80443 0.0010262607 0.0010073476 + 42150 -6245.8346 -6253.0296 7.1949947 3746.9062 632.77286 -10632.709 0 344.82452 0.00070212401 0.00067964098 + 42160 -6245.6964 -6252.9133 7.2168974 3749.426 630.70108 -10633.04 0 345.87422 0.00047710953 0.00045262287 + 42170 -6245.6042 -6252.5911 6.9868711 3749.4898 629.80656 -10631.887 0 334.85006 0.00040348975 0.00038139406 + 42180 -6245.545 -6252.1238 6.5788394 3746.9338 630.16185 -10629.219 0 315.2949 0.00048988142 0.00047327283 + 42190 -6245.4735 -6251.6666 6.193094 3742.3732 631.47736 -10625.517 0 296.80782 0.00070004232 0.00068770065 + 42200 -6245.3464 -6251.3795 6.033071 3737.0664 633.22103 -10621.667 0 289.13861 0.00096468438 0.00095175032 + 42210 -6245.153 -6251.3364 6.1833431 3732.5757 634.82191 -10618.734 0 296.34049 0.0012034547 0.0011853271 + 42220 -6244.9181 -6251.4961 6.5780401 3730.2962 635.87478 -10617.667 0 315.25659 0.0013509695 0.001327137 + 42230 -6244.6747 -6251.7516 7.0769498 3730.996 636.26433 -10619.012 0 339.16714 0.0013786537 0.0013530157 + 42240 -6244.4305 -6252.0122 7.5817707 3734.5519 636.16647 -10622.731 0 363.36099 0.0013039859 0.0012810289 + 42250 -6244.1572 -6252.2481 8.0908812 3740.0087 635.93961 -10628.196 0 387.76043 0.0011818719 0.0011617952 + 42260 -6243.8208 -6252.4585 8.6376749 3745.9436 635.96365 -10634.366 0 413.96585 0.0010800296 0.0010575093 + 42270 -6243.4324 -6252.5993 9.1668249 3750.9633 636.49681 -10640.059 0 439.32568 0.0010493985 0.0010180745 + 42280 -6243.0688 -6252.5601 9.4913451 3754.0924 637.59601 -10644.248 0 454.87851 0.0011054438 0.0010645682 + 42290 -6242.8237 -6252.2459 9.4222788 3754.9075 639.10884 -10646.262 0 451.56847 0.0012300784 0.0011863793 + 42300 -6242.727 -6251.6946 8.9675642 3753.4704 640.72319 -10645.888 0 429.77599 0.0013884856 0.0013503231 + 42310 -6242.7198 -6251.0937 8.3738757 3750.2275 642.05648 -10643.378 0 401.32311 0.0015446249 0.0015140634 + 42320 -6242.7183 -6250.6544 7.9361369 3745.9586 642.76349 -10639.376 0 380.34421 0.0016659673 0.001637282 + 42330 -6242.6972 -6250.4624 7.7651969 3741.6875 642.63254 -10634.782 0 372.15181 0.0017233657 0.0016895129 + 42340 -6242.7054 -6250.4521 7.7467103 3738.4462 641.63801 -10630.536 0 371.26582 0.0016960951 0.0016561168 + 42350 -6242.8069 -6250.5132 7.7062871 3736.9442 639.93188 -10627.389 0 369.32852 0.0015817178 0.0015416313 + 42360 -6243.0151 -6250.6089 7.5938059 3737.3323 637.78415 -10625.725 0 363.93779 0.0014010033 0.0013678608 + 42370 -6243.2838 -6250.7995 7.5156938 3739.2073 635.50376 -10625.51 0 360.19422 0.0011912464 0.0011664448 + 42380 -6243.556 -6251.165 7.6090653 3741.8368 633.37611 -10626.378 0 364.6691 0.00099184549 0.00096972538 + 42390 -6243.8225 -6251.7052 7.8827473 3744.4563 631.63576 -10627.797 0 377.78548 0.00083193117 0.00080468655 + 42400 -6244.1378 -6252.3004 8.1625832 3746.4792 630.46703 -10629.247 0 391.19679 0.00072689952 0.00069158859 + 42410 -6244.5753 -6252.7713 8.1959629 3747.5534 630.00743 -10630.332 0 392.79653 0.00068340207 0.00064504065 + 42420 -6245.1549 -6252.9975 7.8425439 3747.518 630.33385 -10630.849 0 375.85871 0.00070624255 0.00067399497 + 42430 -6245.8088 -6252.9973 7.1884906 3746.3826 631.43293 -10630.813 0 344.5128 0.0007994174 0.00077897282 + 42440 -6246.4232 -6252.8999 6.4767208 3744.3932 633.17623 -10630.469 0 310.4008 0.00095896057 0.00094785066 + 42450 -6246.9172 -6252.8367 5.91944 3742.1105 635.32059 -10630.268 0 283.69278 0.0011637073 0.0011535293 + 42460 -6247.2867 -6252.8492 5.562548 3740.3584 637.54112 -10630.749 0 266.58851 0.0013734217 0.0013566226 + 42470 -6247.5855 -6252.8859 5.3003784 3739.9804 639.49084 -10632.357 0 254.02388 0.0015386439 0.0015140985 + 42480 -6247.873 -6252.8742 5.0012007 3741.4923 640.87225 -10635.239 0 239.6856 0.0016183105 0.0015916437 + 42490 -6248.1686 -6252.8026 4.6340415 3744.8127 641.50113 -10639.116 0 222.08927 0.0015960998 0.0015749284 + 42500 -6248.441 -6252.747 4.306009 3749.2247 641.34403 -10643.316 0 206.36811 0.001486889 0.001474619 + 42510 -6248.6359 -6252.8205 4.1845343 3753.6035 640.51984 -10646.944 0 200.54636 0.0013299237 0.0013226754 + 42520 -6248.7219 -6253.0783 4.3563334 3756.8103 639.26722 -10649.156 0 208.77994 0.0011725685 0.00116176 + 42530 -6248.7219 -6253.4526 4.7307076 3758.0605 637.88607 -10649.399 0 226.72205 0.0010535853 0.0010325404 + 42540 -6248.7039 -6253.7831 5.0791423 3757.1021 636.6636 -10647.549 0 243.421 0.00099413106 0.00096352036 + 42550 -6248.7315 -6253.9284 5.1969305 3754.1762 635.80095 -10643.906 0 249.06607 0.00099820035 0.00096559468 + 42560 -6248.8139 -6253.8682 5.0542849 3749.8674 635.36311 -10639.099 0 242.22969 0.0010572857 0.0010310547 + 42570 -6248.9021 -6253.7053 4.8031481 3744.9777 635.27171 -10633.955 0 230.19381 0.0011530036 0.0011358432 + 42580 -6248.9322 -6253.5713 4.6390718 3740.4505 635.34386 -10629.366 0 222.33035 0.0012569448 0.0012444282 + 42590 -6248.8765 -6253.5222 4.6457656 3737.2688 635.36167 -10626.153 0 222.65115 0.0013326198 0.0013174787 + 42600 -6248.76 -6253.5093 4.749362 3736.2524 635.14789 -10624.91 0 227.61608 0.0013440767 0.0013222086 + 42610 -6248.6348 -6253.4396 4.8048041 3737.7835 634.62652 -10625.85 0 230.27317 0.0012701345 0.001243457 + 42620 -6248.5357 -6253.2681 4.732376 3741.5907 633.85434 -10628.713 0 226.80201 0.0011173483 0.0010915866 + 42630 -6248.4526 -6253.0447 4.5921603 3746.7372 633.0182 -10632.8 0 220.08209 0.0009235851 0.00090318944 + 42640 -6248.3397 -6252.8791 4.5394094 3751.8619 632.39928 -10637.14 0 217.55397 0.0007486693 0.00073317662 + 42650 -6248.152 -6252.8518 4.6998204 3755.5931 632.31061 -10640.756 0 225.24176 0.00065566149 0.00064042922 + 42660 -6247.8785 -6252.9462 5.067688 3756.9649 633.01614 -10642.927 0 242.87204 0.00069080894 0.00067129615 + 42670 -6247.5463 -6253.0573 5.5110399 3755.6828 634.64204 -10643.382 0 264.11995 0.00086939761 0.00084512533 + 42680 -6247.1927 -6253.0695 5.8768858 3752.1803 637.09872 -10642.349 0 281.65334 0.0011703669 0.0011450656 + 42690 -6246.8324 -6252.9354 6.1030016 3747.5015 640.04247 -10640.479 0 292.49008 0.0015388031 0.0015168311 + 42700 -6246.448 -6252.6935 6.2455378 3743.0647 642.90807 -10638.666 0 299.32121 0.0018951502 0.0018775416 + 42710 -6246.0097 -6252.4265 6.4168465 3740.3328 645.02814 -10637.787 0 307.53129 0.002151463 0.0021348279 + 42720 -6245.5053 -6252.1991 6.6938647 3740.417 645.82202 -10638.438 0 320.80755 0.0022339599 0.0022128461 + 42730 -6244.9611 -6252.0162 7.0550657 3743.695 644.99984 -10640.711 0 338.11833 0.0021070126 0.0020780902 + 42740 -6244.4389 -6251.8231 7.384287 3749.5647 642.70038 -10644.088 0 353.89646 0.0017906271 0.0017559086 + 42750 -6244.0015 -6251.5591 7.5576201 3756.4543 639.48776 -10647.501 0 362.20356 0.0013634696 0.0013296707 + 42760 -6243.667 -6251.2279 7.5608964 3762.1731 636.18474 -10649.586 0 362.36058 0.00094567874 0.00091919136 + 42770 -6243.3951 -6250.9151 7.5199788 3764.5887 633.60114 -10649.105 0 360.39958 0.00066167441 0.00064303394 + 42780 -6243.1291 -6250.7212 7.5920742 3762.4268 632.26992 -10645.418 0 363.85479 0.00059461098 0.00057782649 + 42790 -6242.8525 -6250.679 7.8264492 3755.8361 632.29481 -10638.81 0 375.08736 0.00075376205 0.00073126667 + 42800 -6242.6016 -6250.7434 8.1417571 3746.422 633.35681 -10630.522 0 390.19869 0.0010722773 0.0010405313 + 42810 -6242.4293 -6250.8506 8.4213121 3736.7278 634.86461 -10622.443 0 403.59653 0.001435588 0.001396543 + 42820 -6242.3655 -6250.968 8.6024658 3729.4122 636.18471 -10616.565 0 412.27843 0.0017246479 0.0016833155 + 42830 -6242.4082 -6251.0946 8.6863532 3726.4471 636.86209 -10614.404 0 416.29878 0.0018550679 0.0018164432 + 42840 -6242.534 -6251.239 8.704971 3728.5792 636.75441 -10616.573 0 417.19106 0.0018003004 0.0017674973 + 42850 -6242.7104 -6251.4061 8.6956862 3735.1805 636.04826 -10622.635 0 416.74607 0.0015949198 0.0015683703 + 42860 -6242.9051 -6251.5889 8.6838336 3744.5025 635.1727 -10631.264 0 416.17803 0.0013193088 0.0012967957 + 42870 -6243.0961 -6251.7602 8.6641966 3754.2257 634.6472 -10640.633 0 415.23691 0.0010714956 0.0010491916 + 42880 -6243.2783 -6251.8718 8.5934856 3762.1195 634.90648 -10648.898 0 411.84805 0.00093538645 0.00090970469 + 42890 -6243.4628 -6251.869 8.4061893 3766.6127 636.14801 -10654.63 0 402.87176 0.00095552383 0.00092504946 + 42900 -6243.6676 -6251.7198 8.0522542 3767.1237 638.2496 -10657.093 0 385.9092 0.001126326 0.0010928359 + 42910 -6243.9017 -6251.4456 7.5439253 3764.076 640.79146 -10656.313 0 361.54723 0.001398627 0.0013662624 + 42920 -6244.1532 -6251.1341 6.9809353 3758.6388 643.18288 -10652.956 0 334.56559 0.0016992617 0.0016719217 + 42930 -6244.3919 -6250.9103 6.518451 3752.3322 644.85056 -10648.093 0 312.40075 0.0019544354 0.0019331334 + 42940 -6244.5891 -6250.8725 6.2834056 3746.648 645.41534 -10642.936 0 301.13605 0.0021083025 0.0020906375 + 42950 -6244.7376 -6251.037 6.2993413 3742.7621 644.78799 -10638.587 0 301.89978 0.00213289 0.0021150114 + 42960 -6244.8552 -6251.3359 6.4806843 3741.3467 643.1532 -10635.836 0 310.59075 0.0020296466 0.0020089103 + 42970 -6244.9707 -6251.6677 6.6970369 3742.4777 640.86518 -10635.011 0 320.95959 0.0018245411 0.0018007651 + 42980 -6245.1059 -6251.9568 6.8509854 3745.6509 638.31792 -10635.926 0 328.33766 0.0015591509 0.0015339786 + 42990 -6245.2671 -6252.1825 6.9154953 3749.9192 635.85337 -10637.955 0 331.42934 0.0012807693 0.0012561352 + 43000 -6245.4472 -6252.3684 6.9211555 3754.1257 633.73291 -10640.227 0 331.70061 0.0010342631 0.0010111008 + 43010 -6245.6347 -6252.5487 6.9140575 3757.1808 632.15252 -10641.882 0 331.36043 0.0008564665 0.00083428706 + 43020 -6245.8235 -6252.7324 6.9089056 3758.3171 631.26162 -10642.311 0 331.11352 0.00077203148 0.00074961643 + 43030 -6246.0197 -6252.8844 6.8647579 3757.2626 631.15827 -10641.305 0 328.99772 0.00079009155 0.00076693442 + 43040 -6246.2344 -6252.9442 6.7097526 3754.2844 631.86051 -10639.089 0 321.56899 0.00090289733 0.00088008974 + 43050 -6246.4677 -6252.8727 6.4050107 3750.1031 633.27501 -10636.251 0 306.96405 0.0010875862 0.0010669448 + 43060 -6246.6987 -6252.6883 5.9895582 3745.7256 635.1888 -10633.603 0 287.05324 0.0013101985 0.0012922379 + 43070 -6246.8975 -6252.4568 5.559357 3742.2454 637.29707 -10631.999 0 266.43558 0.001530341 0.0015131946 + 43080 -6247.0468 -6252.2488 5.201955 3740.6267 639.26252 -10632.138 0 249.30687 0.0017066452 0.0016871929 + 43090 -6247.1546 -6252.1033 4.9487073 3741.4793 640.78835 -10634.371 0 237.16982 0.0018043284 0.0017806197 + 43100 -6247.2462 -6252.0263 4.7801004 3744.8667 641.68366 -10638.577 0 229.08923 0.0018045344 0.0017774602 + 43110 -6247.3444 -6252.0135 4.669059 3750.2183 641.90198 -10644.134 0 223.76751 0.0017121432 0.0016850198 + 43120 -6247.4535 -6252.074 4.6205004 3756.4101 641.54169 -10650.026 0 221.4403 0.0015573713 0.0015337398 + 43130 -6247.5565 -6252.2304 4.6738955 3762.0199 640.80943 -10655.06 0 223.9993 0.0013884458 0.0013696832 + 43140 -6247.6285 -6252.4943 4.865777 3765.6991 639.95972 -10658.153 0 233.19533 0.0012570129 0.001241485 + 43150 -6247.6556 -6252.8374 5.181758 3766.5473 639.22833 -10658.613 0 248.33892 0.0012018262 0.0011861811 + 43160 -6247.6448 -6253.1854 5.540671 3764.3628 638.77337 -10656.322 0 265.54004 0.0012370353 0.0012185716 + 43170 -6247.618 -6253.4473 5.8293803 3759.6889 638.63362 -10651.77 0 279.37661 0.00134876 0.0013270136 + 43180 -6247.5965 -6253.5574 5.9609509 3753.654 638.71431 -10645.926 0 285.68221 0.0014997958 0.0014764039 + 43190 -6247.5894 -6253.4997 5.9102718 3747.6721 638.81032 -10639.982 0 283.25339 0.0016399805 0.0016174721 + 43200 -6247.5927 -6253.3047 5.711936 3743.0877 638.66862 -10635.061 0 273.74802 0.0017195717 0.0017001843 + 43210 -6247.5919 -6253.0333 5.4414414 3740.8491 638.07704 -10631.959 0 260.7844 0.0017031415 0.0016879497 + 43220 -6247.5641 -6252.7595 5.195459 3741.2889 636.95321 -10631.002 0 248.99555 0.001580684 0.0015688833 + 43230 -6247.484 -6252.5463 5.0622858 3744.0766 635.40259 -10632.025 0 242.61314 0.001372187 0.0013609814 + 43240 -6247.3352 -6252.4164 5.0811312 3748.35 633.72067 -10634.487 0 243.51632 0.0011237452 0.0011095555 + 43250 -6247.1196 -6252.3395 5.2198901 3752.9604 632.33046 -10637.63 0 250.16642 0.00089661627 0.00087724553 + 43260 -6246.8538 -6252.2538 5.3999918 3756.7493 631.67005 -10640.673 0 258.79791 0.00075275426 0.00072892914 + 43270 -6246.5559 -6252.1108 5.5548612 3758.8003 632.06474 -10642.976 0 266.22011 0.00074024369 0.00071526651 + 43280 -6246.2309 -6251.9088 5.677905 3758.6461 633.62412 -10644.179 0 272.11707 0.00088113217 0.00085888766 + 43290 -6245.866 -6251.6953 5.8293372 3756.4018 636.19282 -10644.29 0 279.37455 0.0011637066 0.0011463419 + 43300 -6245.4368 -6251.5394 6.102593 3752.7821 639.3655 -10643.687 0 292.4705 0.001541072 0.0015276499 + 43310 -6244.9229 -6251.4905 6.5676707 3748.9685 642.56188 -10643.021 0 314.75963 0.0019374965 0.0019243727 + 43320 -6244.3275 -6251.543 7.2154684 3746.3236 645.15015 -10643.017 0 345.80573 0.0022632894 0.0022462206 + 43330 -6243.6907 -6251.6282 7.9374623 3745.9918 646.59772 -10644.218 0 380.40773 0.0024373074 0.0024141854 + 43340 -6243.0782 -6251.6474 8.5691782 3748.4821 646.61459 -10646.744 0 410.6831 0.00241243 0.002384616 + 43350 -6242.5486 -6251.5291 8.9804802 3753.39 645.24423 -10650.163 0 430.395 0.0021947417 0.0021656547 + 43360 -6242.1244 -6251.2684 9.1440799 3759.4168 642.86476 -10653.55 0 438.23562 0.001846279 0.0018183107 + 43370 -6241.7939 -6250.9186 9.1246398 3764.737 640.09098 -10655.747 0 437.30394 0.0014673685 0.0014399909 + 43380 -6241.5391 -6250.5471 9.0079659 3767.5879 637.60098 -10655.736 0 431.71227 0.0011645862 0.0011353801 + 43390 -6241.3578 -6250.2015 8.8437249 3766.8498 635.93759 -10652.989 0 423.84092 0.0010169332 0.00098433132 + 43400 -6241.2619 -6249.906 8.6441276 3762.4081 635.34829 -10647.662 0 414.2751 0.0010522808 0.0010174304 + 43410 -6241.2603 -6249.6811 8.4207847 3755.1975 635.72052 -10640.599 0 403.57125 0.0012410602 0.0012073378 + 43420 -6241.3423 -6249.5634 8.2210836 3746.937 636.63689 -10633.137 0 394.00045 0.0015080872 0.0014786514 + 43430 -6241.4774 -6249.6075 8.1300909 3739.6509 637.5305 -10626.789 0 389.63957 0.0017576207 0.0017327389 + 43440 -6241.6347 -6249.8552 8.2205528 3735.1223 637.88825 -10622.866 0 393.97502 0.0019030551 0.0018793996 + 43450 -6241.81 -6250.2872 8.4771337 3734.4263 637.43839 -10622.152 0 406.27181 0.0018927319 0.0018656632 + 43460 -6242.0387 -6250.7992 8.7604546 3737.6462 636.26096 -10624.706 0 419.85014 0.001725693 0.0016931331 + 43470 -6242.3746 -6251.2361 8.8615404 3743.8373 634.77473 -10629.848 0 424.69474 0.0014533874 0.0014181978 + 43480 -6242.8448 -6251.4747 8.6298905 3751.2702 633.59083 -10636.336 0 413.59278 0.0011654404 0.0011339053 + 43490 -6243.4151 -6251.5019 8.086845 3757.9238 633.27931 -10642.705 0 387.56699 0.00096128328 0.00093826026 + 43500 -6244.0001 -6251.4235 7.4234847 3762.1111 634.14592 -10647.681 0 355.77504 0.00091532643 0.00089985006 + 43510 -6244.5195 -6251.3859 6.8664072 3763.0278 636.11769 -10650.531 0 329.07676 0.001048917 0.0010343827 + 43520 -6244.9506 -6251.4689 6.5182997 3760.9882 638.77892 -10651.236 0 312.3935 0.0013222755 0.0013015612 + 43530 -6245.331 -6251.6426 6.3116557 3757.2242 641.52306 -10650.39 0 302.48995 0.0016510217 0.0016222489 + 43540 -6245.7126 -6251.8196 6.1070128 3753.3395 643.74533 -10648.904 0 292.68232 0.0019392901 0.0019072123 + 43550 -6246.1122 -6251.9466 5.8344222 3750.6929 645.00489 -10647.644 0 279.61825 0.0021134883 0.0020854992 + 43560 -6246.4986 -6252.0506 5.5519916 3749.989 645.11404 -10647.154 0 266.08259 0.0021423325 0.0021227068 + 43570 -6246.8209 -6252.205 5.384064 3751.1937 644.14516 -10647.544 0 258.03455 0.0020377153 0.0020247391 + 43580 -6247.0492 -6252.4527 5.4035194 3753.7121 642.37311 -10648.538 0 258.96697 0.0018408606 0.0018287554 + 43590 -6247.1969 -6252.7534 5.5564908 3756.6728 640.18305 -10649.609 0 266.29822 0.001603583 0.0015873646 + 43600 -6247.3096 -6252.9986 5.6890421 3759.1881 637.97182 -10650.159 0 272.65082 0.0013735175 0.0013528633 + 43610 -6247.4288 -6253.0876 5.6588506 3760.5328 636.06299 -10649.683 0 271.20387 0.0011868028 0.0011658159 + 43620 -6247.5582 -6253.0038 5.4455276 3760.2551 634.65174 -10647.911 0 260.98024 0.001066018 0.0010490443 + 43630 -6247.6617 -6252.8259 5.1642681 3758.258 633.79221 -10644.876 0 247.50071 0.0010193494 0.0010064763 + 43640 -6247.698 -6252.6608 4.962838 3754.8526 633.43053 -10640.944 0 237.84704 0.0010398528 0.001026349 + 43650 -6247.6639 -6252.5528 4.8889074 3750.7344 633.46792 -10636.755 0 234.30387 0.0011075033 0.001088131 + 43660 -6247.6032 -6252.4571 4.853924 3746.8233 633.82175 -10633.102 0 232.62727 0.0011967148 0.0011710953 + 43670 -6247.5702 -6252.3076 4.7373408 3743.9877 634.45248 -10630.748 0 227.03995 0.0012872835 0.0012609342 + 43680 -6247.5776 -6252.1114 4.5337806 3742.7861 635.34645 -10630.244 0 217.2842 0.0013717204 0.0013512414 + 43690 -6247.5816 -6251.9729 4.3913271 3743.3749 636.47239 -10631.82 0 210.45704 0.00145283 0.0014396015 + 43700 -6247.5198 -6252.0139 4.4940142 3745.6081 637.74444 -10635.366 0 215.37838 0.0015330708 0.0015215339 + 43710 -6247.3678 -6252.2648 4.896961 3749.1959 639.01595 -10640.477 0 234.68985 0.0016047315 0.0015869823 + 43720 -6247.1628 -6252.6263 5.4635261 3753.7693 640.10933 -10646.505 0 261.84283 0.0016497888 0.0016224084 + 43730 -6246.9773 -6252.9328 5.9555151 3758.8127 640.87038 -10652.616 0 285.4217 0.0016507034 0.0016179354 + 43740 -6246.8622 -6253.0623 6.2001289 3763.5739 641.22441 -10657.861 0 297.14496 0.0016048942 0.0015754574 + 43750 -6246.8051 -6253.0086 6.2035095 3767.0988 641.20693 -10661.314 0 297.30698 0.0015323024 0.0015122465 + 43760 -6246.7394 -6252.8622 6.1228341 3768.4609 640.95054 -10662.274 0 293.44056 0.0014692861 0.0014565519 + 43770 -6246.6018 -6252.7147 6.112958 3767.1165 640.62995 -10660.461 0 292.96725 0.0014508034 0.0014362895 + 43780 -6246.3919 -6252.563 6.1710533 3763.1973 640.38761 -10656.148 0 295.7515 0.0014912837 0.0014662864 + 43790 -6246.1802 -6252.3095 6.1292761 3757.5408 640.26969 -10650.12 0 293.7493 0.0015765785 0.0015405963 + 43800 -6246.0477 -6251.8737 5.8259174 3751.4089 640.19754 -10643.48 0 279.21065 0.0016718163 0.0016334608 + 43810 -6246.0103 -6251.3116 5.3013028 3746.0614 639.9895 -10637.362 0 254.06817 0.0017381216 0.0017077973 + 43820 -6246.0003 -6250.8219 4.8216019 3742.433 639.43076 -10632.686 0 231.07822 0.0017461584 0.0017269883 + 43830 -6245.9221 -6250.6179 4.6958114 3741.0323 638.36859 -10630.019 0 225.04963 0.0016806548 0.0016658258 + 43840 -6245.7296 -6250.7715 5.0418746 3741.9806 636.79647 -10629.549 0 241.63492 0.0015396562 0.0015185469 + 43850 -6245.464 -6251.162 5.697937 3745.029 634.89365 -10631.085 0 273.07711 0.0013356188 0.001303428 + 43860 -6245.2195 -6251.5742 6.3546914 3749.5009 633.00356 -10634.079 0 304.55247 0.0011005661 0.0010630165 + 43870 -6245.0617 -6251.8651 6.8034371 3754.2762 631.5574 -10637.699 0 326.05888 0.00088919562 0.00085780626 + 43880 -6244.9679 -6252.0522 7.0843746 3757.9943 630.96661 -10641.013 0 339.52298 0.0007699362 0.0007516542 + 43890 -6244.8517 -6252.2448 7.3931305 3759.5136 631.51248 -10643.271 0 354.3203 0.00080042891 0.000791021 + 43900 -6244.6536 -6252.4823 7.8286266 3758.4268 633.25458 -10644.164 0 375.19171 0.00099766413 0.00098531604 + 43910 -6244.4109 -6252.6442 8.2332798 3755.3039 635.97751 -10643.926 0 394.58496 0.001321959 0.0012980225 + 43920 -6244.2322 -6252.534 8.3018111 3751.4667 639.20204 -10643.203 0 397.86937 0.0016881831 0.0016549594 + 43930 -6244.1967 -6252.0651 7.8684063 3748.4068 642.2843 -10642.756 0 377.09818 0.0019996771 0.0019678271 + 43940 -6244.279 -6251.3684 7.0894335 3747.1935 644.59378 -10643.156 0 339.76543 0.0021845731 0.0021629262 + 43950 -6244.3755 -6250.7148 6.3392836 3748.1769 645.70854 -10644.6 0 303.81404 0.0022150042 0.0022027473 + 43960 -6244.3977 -6250.3236 5.9259032 3751.0384 645.54205 -10646.904 0 284.00253 0.0021052831 0.0020934493 + 43970 -6244.3386 -6250.229 5.8903979 3755.0168 644.34461 -10649.59 0 282.30092 0.0018988254 0.001878765 + 43980 -6244.2618 -6250.308 6.0462003 3759.129 642.58484 -10652.022 0 289.76784 0.0016542717 0.0016249037 + 43990 -6244.2353 -6250.4241 6.1888281 3762.3428 640.77048 -10653.537 0 296.60337 0.0014336186 0.0014013392 + 44000 -6244.272 -6250.547 6.2749699 3763.7617 639.2857 -10653.594 0 300.73177 0.0012896834 0.0012618811 + 44010 -6244.3273 -6250.7491 6.4218889 3762.8618 638.30179 -10651.913 0 307.77295 0.0012518587 0.0012304092 + 44020 -6244.3494 -6251.0988 6.7494816 3759.7098 637.77501 -10648.584 0 323.47303 0.0013147767 0.0012952142 + 44030 -6244.3359 -6251.5555 7.2196706 3755.0232 637.51008 -10644.089 0 346.00712 0.0014375497 0.001414147 + 44040 -6244.3455 -6251.9675 7.6220196 3749.9746 637.25494 -10639.197 0 365.28995 0.001558044 0.0015297527 + 44050 -6244.4507 -6252.179 7.7283146 3745.783 636.79764 -10634.76 0 370.3842 0.0016183911 0.001589839 + 44060 -6244.671 -6252.1514 7.4804403 3743.2876 636.04463 -10631.484 0 358.50467 0.0015893055 0.0015658317 + 44070 -6244.9568 -6251.984 7.0271274 3742.734 635.06299 -10629.781 0 336.77937 0.0014794092 0.0014613697 + 44080 -6245.2418 -6251.8175 6.575668 3743.8515 634.07134 -10629.74 0 315.14291 0.0013259848 0.0013083674 + 44090 -6245.5024 -6251.7238 6.2213295 3746.0878 633.3747 -10631.186 0 298.16102 0.0011766011 0.0011540885 + 44100 -6245.7642 -6251.6819 5.9176425 3748.8201 633.26122 -10633.763 0 283.60663 0.0010734941 0.0010455826 + 44110 -6246.0601 -6251.6408 5.5806618 3751.4722 633.89921 -10637.012 0 267.45662 0.0010450006 0.0010164892 + 44120 -6246.3908 -6251.5923 5.2015409 3753.5857 635.27395 -10640.452 0 249.28702 0.0011017792 0.001078791 + 44130 -6246.7201 -6251.5904 4.8703209 3754.8914 637.18426 -10643.666 0 233.4131 0.0012352661 0.0012205166 + 44140 -6247.0016 -6251.7104 4.7087939 3755.3739 639.2941 -10646.378 0 225.67183 0.0014184572 0.0014093676 + 44150 -6247.2114 -6251.9855 4.774135 3755.2791 641.21916 -10648.484 0 228.80334 0.0016105922 0.0016013366 + 44160 -6247.3642 -6252.3679 5.0037001 3755.0263 642.62345 -10650.018 0 239.80539 0.0017666829 0.0017525162 + 44170 -6247.5028 -6252.7449 5.2420359 3755.0297 643.30033 -10651.075 0 251.22778 0.0018505916 0.0018312749 + 44180 -6247.6666 -6253.0038 5.3371695 3755.4971 643.21413 -10651.715 0 255.78711 0.0018472596 0.0018269659 + 44190 -6247.8606 -6253.098 5.2374583 3756.3144 642.48799 -10651.9 0 251.00839 0.0017677462 0.0017514826 + 44200 -6248.0521 -6253.0638 5.0117269 3757.0991 641.34293 -10651.506 0 240.19007 0.001642973 0.0016324681 + 44210 -6248.1979 -6252.9763 4.7784407 3757.4024 640.01428 -10650.393 0 229.00969 0.0015086543 0.0015011222 + 44220 -6248.2774 -6252.8868 4.6094192 3756.939 638.6808 -10648.507 0 220.90923 0.0013899684 0.0013805879 + 44230 -6248.3052 -6252.7946 4.4894606 3755.7059 637.43383 -10645.934 0 215.16014 0.0012946336 0.0012804409 + 44240 -6248.3151 -6252.6713 4.3561154 3753.9388 636.29318 -10642.903 0 208.76949 0.0012170643 0.0011990494 + 44250 -6248.3316 -6252.5072 4.1755763 3751.963 635.2543 -10639.724 0 200.11704 0.0011491351 0.0011310916 + 44260 -6248.3511 -6252.34 3.9889581 3750.0497 634.33828 -10636.728 0 191.17325 0.0010898261 0.0010751444 + 44270 -6248.346 -6252.2413 3.8952965 3748.3615 633.61892 -10634.222 0 186.68446 0.001048135 0.0010371243 + 44280 -6248.2845 -6252.2723 3.9877705 3746.9944 633.21572 -10632.482 0 191.11634 0.0010386748 0.001028367 + 44290 -6248.1528 -6252.4417 4.2889645 3746.0588 633.25788 -10631.758 0 205.55124 0.0010735314 0.0010600526 + 44300 -6247.964 -6252.6925 4.7285656 3745.7245 633.83405 -10632.251 0 226.6194 0.0011551913 0.0011369854 + 44310 -6247.7488 -6252.9303 5.181509 3746.1861 634.94566 -10634.062 0 248.32699 0.001273932 0.0012533779 + 44320 -6247.5305 -6253.0756 5.5451028 3747.5685 636.48093 -10637.125 0 265.75244 0.0014102191 0.0013921034 + 44330 -6247.3037 -6253.102 5.7982867 3749.8398 638.22279 -10641.165 0 277.88643 0.0015399394 0.0015276139 + 44340 -6247.0364 -6253.0264 5.9899379 3752.7924 639.89483 -10645.714 0 287.07143 0.0016395598 0.001631814 + 44350 -6246.7002 -6252.8609 6.1607238 3756.0902 641.23482 -10650.186 0 295.25645 0.0016901742 0.0016817166 + 44360 -6246.3032 -6252.5737 6.2704815 3759.3251 642.07187 -10653.971 0 300.51666 0.0016818043 0.0016673692 + 44370 -6245.8955 -6252.1062 6.2107163 3762.0286 642.37785 -10656.513 0 297.65237 0.0016190418 0.0015978216 + 44380 -6245.5356 -6251.4454 5.909766 3763.6592 642.269 -10657.374 0 283.22915 0.0015255924 0.0015020398 + 44390 -6245.2447 -6250.6901 5.4453479 3763.6469 641.95168 -10656.289 0 260.97163 0.0014420269 0.0014220238 + 44400 -6244.9875 -6250.0423 5.0547247 3761.5646 641.62973 -10653.237 0 242.25077 0.001412647 0.0013982282 + 44410 -6244.6993 -6249.7098 5.0104469 3757.3908 641.40962 -10648.51 0 240.12873 0.0014644581 0.0014518633 + 44420 -6244.3367 -6249.7828 5.4460707 3751.7174 641.24224 -10642.742 0 261.00626 0.0015887871 0.0015718559 + 44430 -6243.9127 -6250.1814 6.2686423 3745.7254 640.92774 -10636.835 0 300.42851 0.0017376778 0.0017137001 + 44440 -6243.4852 -6250.7178 7.232651 3740.8589 640.18943 -10631.766 0 346.62922 0.0018404052 0.001812887 + 44450 -6243.1078 -6251.2202 8.1124387 3738.317 638.79854 -10628.336 0 388.79358 0.001833537 0.0018089181 + 44460 -6242.7917 -6251.6068 8.8150123 3738.621 636.70796 -10626.936 0 422.46485 0.0016889234 0.0016703009 + 44470 -6242.519 -6251.8557 9.3366603 3741.4656 634.13877 -10627.46 0 447.46515 0.0014256829 0.001409903 + 44480 -6242.2901 -6251.9296 9.6394695 3745.874 631.57221 -10629.376 0 461.97747 0.0011034634 0.0010845166 + 44490 -6242.1443 -6251.7546 9.6103516 3750.5199 629.63449 -10631.909 0 460.58197 0.00080412181 0.00077920434 + 44500 -6242.1252 -6251.2864 9.1612754 3754.0792 628.90682 -10634.272 0 439.05972 0.00060988808 0.00058199668 + 44510 -6242.2302 -6250.5932 8.3629554 3755.5506 629.72925 -10635.873 0 400.79975 0.00058207298 0.0005568586 + 44520 -6242.3998 -6249.8643 7.4645158 3754.5225 632.07427 -10636.461 0 357.74148 0.0007430128 0.00072326214 + 44530 -6242.5577 -6249.3214 6.7636831 3751.3336 635.53888 -10636.194 0 324.15365 0.0010658921 0.0010489342 + 44540 -6242.6657 -6249.0932 6.4275313 3747.0424 639.45317 -10635.589 0 308.04337 0.0014777629 0.001458173 + 44550 -6242.7451 -6249.1533 6.4081187 3743.1444 643.05886 -10635.357 0 307.11301 0.0018780336 0.00185311 + 44560 -6242.8497 -6249.3752 6.5255788 3741.0773 645.69503 -10636.148 0 312.74235 0.0021687469 0.0021414676 + 44570 -6243.0108 -6249.6614 6.6505632 3741.6976 646.94113 -10638.3 0 318.7323 0.0022861149 0.0022623557 + 44580 -6243.207 -6250.0257 6.8187312 3744.9791 646.69149 -10641.696 0 326.79186 0.0022193103 0.0022017065 + 44590 -6243.3891 -6250.5514 7.1623575 3750.0799 645.15458 -10645.786 0 343.26036 0.0020075587 0.0019921615 + 44600 -6243.5408 -6251.2615 7.7206808 3755.6983 642.78209 -10649.742 0 370.01835 0.0017189582 0.0016984684 + 44610 -6243.7135 -6252.0303 8.3167642 3760.4912 640.14312 -10652.665 0 398.58601 0.0014245215 0.0013954096 + 44620 -6243.9937 -6252.6286 8.6348293 3763.3669 637.77204 -10653.767 0 413.82947 0.0011804002 0.0011470553 + 44630 -6244.4236 -6252.8716 8.4479889 3763.6287 636.03279 -10652.533 0 404.87503 0.0010218528 0.00099324045 + 44640 -6244.948 -6252.7432 7.7951771 3761.0591 635.04598 -10648.848 0 373.58863 0.00096320663 0.0009446061 + 44650 -6245.4486 -6252.3855 6.9368091 3756.0048 634.70547 -10643.096 0 332.45082 0.00099706878 0.000984757 + 44660 -6245.837 -6251.9677 6.1306929 3749.4073 634.77049 -10636.146 0 293.8172 0.0010935541 0.0010779483 + 44670 -6246.115 -6251.5672 5.4521668 3742.6497 634.98392 -10629.201 0 261.29842 0.0012066827 0.0011811478 + 44680 -6246.3497 -6251.1761 4.8263701 3737.1757 635.16415 -10623.516 0 231.30674 0.0012911297 0.0012579978 + 44690 -6246.5972 -6250.8085 4.2113078 3734.0358 635.24297 -10620.087 0 201.8295 0.0013215993 0.0012898539 + 44700 -6246.8527 -6250.5776 3.7249322 3733.6094 635.25229 -10619.439 0 178.51965 0.001301723 0.001278938 + 44710 -6247.0648 -6250.6509 3.5861121 3735.6434 635.28086 -10621.575 0 171.86662 0.0012562327 0.0012423755 + 44720 -6247.189 -6251.1196 3.9306693 3739.5204 635.42499 -10626.065 0 188.37973 0.001212822 0.001201082 + 44730 -6247.2297 -6251.902 4.6723029 3744.5332 635.75113 -10632.186 0 223.92297 0.0011868665 0.0011700408 + 44740 -6247.2405 -6252.7665 5.5259815 3750.0044 636.27786 -10639.049 0 264.83604 0.0011782238 0.0011547215 + 44750 -6247.283 -6253.4547 6.1717314 3755.2572 636.97659 -10645.688 0 295.784 0.0011794002 0.0011539434 + 44760 -6247.3791 -6253.8093 6.4301354 3759.5691 637.78567 -10651.164 0 308.16817 0.001186575 0.0011655816 + 44770 -6247.4974 -6253.8209 6.3234879 3762.2299 638.63145 -10654.682 0 303.05702 0.0012045804 0.0011905952 + 44780 -6247.5833 -6253.581 5.9976544 3762.7168 639.44865 -10655.746 0 287.44125 0.0012431851 0.0012330654 + 44790 -6247.6059 -6253.1957 5.5898091 3760.8922 640.19107 -10654.279 0 267.89502 0.0013090155 0.0012970051 + 44800 -6247.579 -6252.7341 5.1550248 3757.0963 640.82572 -10650.656 0 247.05771 0.0013994901 0.0013821472 + 44810 -6247.5423 -6252.2381 4.6958201 3752.0742 641.30988 -10645.622 0 225.05005 0.0015018031 0.0014804585 + 44820 -6247.5238 -6251.7636 4.2397767 3746.7832 641.56306 -10640.11 0 203.19389 0.0015953754 0.0015743412 + 44830 -6247.5195 -6251.3926 3.8730073 3742.1871 641.45398 -10635.034 0 185.61624 0.0016547679 0.0016374393 + 44840 -6247.5037 -6251.2007 3.6970207 3739.0998 640.82087 -10631.121 0 177.18197 0.0016526906 0.0016391608 + 44850 -6247.4528 -6251.2164 3.7635582 3738.0655 639.52846 -10628.81 0 180.37083 0.0015656925 0.0015533393 + 44860 -6247.3601 -6251.4147 4.0545529 3739.2371 637.54662 -10628.198 0 194.31693 0.0013838988 0.0013694885 + 44870 -6247.233 -6251.7424 4.5093531 3742.2797 635.02071 -10629.043 0 216.1135 0.0011213597 0.0011026982 + 44880 -6247.0868 -6252.1397 5.0529092 3746.372 632.29941 -10630.811 0 242.16376 0.00082051448 0.00079715743 + 44890 -6246.9409 -6252.5421 5.6011826 3750.3579 629.89478 -10632.795 0 268.4401 0.00054639503 0.0005198466 + 44900 -6246.8146 -6252.8788 6.0641791 3753.0264 628.37161 -10634.277 0 290.62949 0.00037121683 0.00034456533 + 44910 -6246.717 -6253.0854 6.3683491 3753.4502 628.19071 -10634.726 0 305.20702 0.0003537864 0.00033032625 + 44920 -6246.6387 -6253.1242 6.4854876 3751.2933 629.55371 -10633.971 0 310.82096 0.00051948905 0.00050065622 + 44930 -6246.5552 -6252.993 6.4377441 3746.9938 632.30504 -10632.292 0 308.53282 0.00084686371 0.00083089401 + 44940 -6246.444 -6252.7147 6.2707316 3741.7366 635.9333 -10630.385 0 300.52864 0.001266458 0.0012490482 + 44950 -6246.3016 -6252.3185 6.0169057 3737.1751 639.6838 -10629.177 0 288.36388 0.0016753253 0.0016522243 + 44960 -6246.1505 -6251.8288 5.6782812 3734.9478 642.75647 -10629.533 0 272.1351 0.0019654126 0.0019355101 + 44970 -6246.0262 -6251.2748 5.2485627 3736.1236 644.53064 -10631.929 0 251.54058 0.0020580829 0.0020249085 + 44980 -6245.9494 -6250.7218 4.7723825 3740.768 644.74194 -10636.232 0 228.71935 0.0019327645 0.0019027127 + 44990 -6245.901 -6250.2954 4.3943776 3747.8175 643.54806 -10641.661 0 210.60323 0.0016372212 0.0016149632 + 45000 -6245.8234 -6250.1495 4.326024 3755.3673 641.45992 -10646.977 0 207.32734 0.0012724007 0.0012569096 + 45010 -6245.6573 -6250.3767 4.7193946 3761.2875 639.16427 -10650.828 0 226.17987 0.00095623795 0.00094130282 + 45020 -6245.3842 -6250.9287 5.5445682 3763.9103 637.29772 -10652.137 0 265.72682 0.00078192406 0.0007612133 + 45030 -6245.0405 -6251.6263 6.5858836 3762.5062 636.2455 -10650.378 0 315.63249 0.00078830501 0.00076055243 + 45040 -6244.6902 -6252.2544 7.5641919 3757.4157 636.03245 -10645.703 0 362.51852 0.00095214013 0.00092185761 + 45050 -6244.38 -6252.6617 8.2816682 3749.8676 636.34797 -10638.877 0 396.90401 0.0012013583 0.0011746549 + 45060 -6244.1154 -6252.7967 8.6812866 3741.5986 636.69751 -10631.093 0 416.05597 0.0014416612 0.0014209478 + 45070 -6243.8761 -6252.6712 8.7950047 3734.401 636.6195 -10623.692 0 421.50597 0.001586722 0.0015688455 + 45080 -6243.6544 -6252.301 8.6465782 3729.7019 635.87737 -10617.88 0 414.39254 0.0015834756 0.0015628647 + 45090 -6243.4747 -6251.6862 8.2114692 3728.2473 634.5498 -10614.483 0 393.53968 0.0014268944 0.0014009135 + 45100 -6243.3726 -6250.8539 7.4813351 3729.9483 632.99144 -10613.794 0 358.54755 0.0011612047 0.0011327377 + 45110 -6243.3519 -6249.9214 6.569407 3733.9431 631.69412 -10615.559 0 314.84284 0.00086650046 0.00084117295 + 45120 -6243.367 -6249.102 5.7349855 3738.8968 631.11348 -10619.112 0 274.85268 0.00063317208 0.00061374985 + 45130 -6243.3498 -6248.6243 5.2745313 3743.464 631.52505 -10623.613 0 252.78513 0.0005319519 0.00051527311 + 45140 -6243.2576 -6248.6151 5.3574889 3746.7297 632.94776 -10628.293 0 256.76093 0.00059101115 0.00057036248 + 45150 -6243.1003 -6249.0377 5.937347 3748.4287 635.14474 -10632.611 0 284.55098 0.00078935835 0.00076012474 + 45160 -6242.9295 -6249.7269 6.7973692 3748.8584 637.69434 -10636.28 0 325.76807 0.0010684211 0.0010321355 + 45170 -6242.8023 -6250.4847 7.6824333 3748.5753 640.11273 -10639.173 0 368.18531 0.0013557738 0.0013193214 + 45180 -6242.745 -6251.1642 8.4191872 3748.0623 641.99314 -10641.22 0 403.49469 0.0015903965 0.0015610349 + 45190 -6242.7442 -6251.6953 8.9510151 3747.5424 643.11202 -10642.35 0 428.98287 0.0017388726 0.0017188534 + 45200 -6242.7726 -6252.0525 9.2799209 3747.0041 643.45711 -10642.514 0 444.74588 0.0017966849 0.001781636 + 45210 -6242.8276 -6252.2068 9.3792552 3746.3636 643.16743 -10641.738 0 449.50654 0.0017769566 0.0017593636 + 45220 -6242.9467 -6252.1141 9.1673657 3745.6137 642.4226 -10640.15 0 439.3516 0.0016959111 0.0016709178 + 45230 -6243.1794 -6251.754 8.5746357 3744.8507 641.34742 -10637.952 0 410.94465 0.0015646889 0.0015335473 + 45240 -6243.5397 -6251.1825 7.6428066 3744.1861 639.98394 -10635.353 0 366.28617 0.0013908305 0.0013594387 + 45250 -6243.9845 -6250.5456 6.5611317 3743.6333 638.33581 -10632.515 0 314.44624 0.0011852159 0.0011592631 + 45260 -6244.4378 -6250.0343 5.5964669 3743.062 636.44429 -10629.541 0 268.2141 0.00096720554 0.00094800868 + 45270 -6244.8411 -6249.8012 4.9601528 3742.2563 634.44335 -10626.501 0 237.71835 0.00076363293 0.00074794428 + 45280 -6245.1865 -6249.8941 4.7075897 3741.0329 632.56199 -10623.489 0 225.61411 0.00060294266 0.00058652453 + 45290 -6245.509 -6250.2547 4.745741 3739.3348 631.07399 -10620.664 0 227.44254 0.00050884164 0.00049029391 + 45300 -6245.8471 -6250.7826 4.9355108 3737.2584 630.21965 -10618.261 0 236.53737 0.00049598296 0.00047726914 + 45310 -6246.2104 -6251.4024 5.1920231 3735.042 630.13301 -10616.577 0 248.83088 0.00056666126 0.00055023857 + 45320 -6246.5795 -6252.0732 5.4937291 3733.0616 630.80098 -10615.936 0 263.29032 0.00070720822 0.00069310906 + 45330 -6246.9337 -6252.7456 5.8119291 3731.8158 632.06425 -10616.626 0 278.54026 0.00088622822 0.00087212702 + 45340 -6247.271 -6253.3269 6.0559344 3731.8344 633.65493 -10618.816 0 290.23436 0.0010591212 0.0010428876 + 45350 -6247.6016 -6253.7016 6.1000039 3733.4946 635.26089 -10622.457 0 292.34641 0.0011803383 0.0011620884 + 45360 -6247.927 -6253.7875 5.860524 3736.8207 636.60422 -10627.212 0 280.8692 0.001218803 0.0012005823 + 45370 -6248.2292 -6253.5774 5.3482066 3741.3839 637.51424 -10632.476 0 256.31607 0.0011690843 0.0011529876 + 45380 -6248.4792 -6253.1432 4.6639917 3746.3556 637.96915 -10637.468 0 223.52465 0.0010535803 0.0010401069 + 45390 -6248.6534 -6252.6116 3.9581857 3750.6963 638.08796 -10641.396 0 189.69847 0.00091555537 0.00090318021 + 45400 -6248.7469 -6252.1237 3.3767748 3753.4197 638.07493 -10643.618 0 161.83399 0.00080572445 0.0007918253 + 45410 -6248.7774 -6251.7904 3.0130258 3753.8568 638.13658 -10643.784 0 144.4011 0.00076645589 0.00074920142 + 45420 -6248.7764 -6251.6671 2.890723 3751.8375 638.39813 -10641.903 0 138.53966 0.00081845215 0.00079843562 + 45430 -6248.7695 -6251.7621 2.9925931 3747.7358 638.84442 -10638.342 0 143.42185 0.00095396569 0.00093404422 + 45440 -6248.7575 -6252.0615 3.3040266 3742.3862 639.30595 -10633.754 0 158.34749 0.0011379438 0.0011210503 + 45450 -6248.7148 -6252.5364 3.8215878 3736.9151 639.5013 -10628.953 0 183.15193 0.0013159917 0.0013026775 + 45460 -6248.6094 -6253.1228 4.5133414 3732.5202 639.12878 -10624.772 0 216.30464 0.0014273018 0.0014152053 + 45470 -6248.4295 -6253.7019 5.2724322 3730.2053 637.98103 -10621.888 0 252.68453 0.0014207372 0.0014065031 + 45480 -6248.1973 -6254.1142 5.9169252 3730.5025 636.04395 -10620.661 0 283.57226 0.0012712994 0.0012534251 + 45490 -6247.9581 -6254.2123 6.2542203 3733.2634 633.5434 -10621.019 0 299.73733 0.0009923942 0.00097273929 + 45500 -6247.7491 -6253.9307 6.1815542 3737.6217 630.91695 -10622.469 0 296.25476 0.00063844161 0.00062096658 + 45510 -6247.5716 -6253.3299 5.7582962 3742.1911 628.71434 -10624.235 0 275.96986 0.0002940737 0.00028136697 + 45520 -6247.3909 -6252.5748 5.183917 3745.4734 627.45836 -10625.507 0 248.44239 5.0880104e-05 4.1217763e-05 + 45530 -6247.1702 -6251.846 4.675791 3746.3517 627.51106 -10625.709 0 224.09014 -2.1100438e-05 -3.3069694e-05 + 45540 -6246.9086 -6251.2437 4.3350973 3744.4703 628.98021 -10624.694 0 207.76219 0.00010403956 8.5316044e-05 + 45550 -6246.646 -6250.7659 4.1199022 3740.3377 631.68076 -10622.784 0 197.44883 0.00040073995 0.00037627039 + 45560 -6246.4252 -6250.3809 3.9557515 3735.1231 635.15504 -10620.659 0 189.58181 0.00080183254 0.00077793689 + 45570 -6246.2424 -6250.1213 3.8788166 3730.2775 638.75437 -10619.153 0 185.89466 0.0012193434 0.0012021263 + 45580 -6246.0354 -6250.0993 4.0638735 3727.1629 641.77834 -10619.041 0 194.76362 0.001566515 0.0015556642 + 45590 -6245.7268 -6250.4182 4.6914191 3726.7827 643.64758 -10620.848 0 224.83913 0.0017746126 0.0017625041 + 45600 -6245.2961 -6251.054 5.757906 3729.5841 644.06216 -10624.7 0 275.95116 0.0018043416 0.001782071 + 45610 -6244.8219 -6251.819 6.997052 3735.2855 643.08816 -10630.193 0 335.33799 0.0016545612 0.0016202621 + 45620 -6244.4421 -6252.4517 8.009642 3742.7777 641.12855 -10636.358 0 383.86699 0.0013674707 0.0013293671 + 45630 -6244.2468 -6252.7745 8.5276904 3750.2481 638.77698 -10641.8 0 408.69477 0.0010234113 0.00099365874 + 45640 -6244.2019 -6252.7904 8.5885144 3755.6276 636.61217 -10645.03 0 411.6098 0.00071870352 0.00070245543 + 45650 -6244.1871 -6252.6315 8.4443802 3757.2662 635.02577 -10644.923 0 404.70208 0.00053106721 0.00052077166 + 45660 -6244.1144 -6252.4011 8.2866303 3754.5434 634.1498 -10641.094 0 397.14182 0.00048997103 0.00047103548 + 45670 -6244.0072 -6252.0647 8.0575291 3748.0854 633.88534 -10634.035 0 386.162 0.00056966186 0.00053312893 + 45680 -6243.9666 -6251.506 7.5394074 3739.4523 633.98974 -10624.948 0 361.33071 0.00070885116 0.00065974692 + 45690 -6244.0638 -6250.6953 6.6315366 3730.4906 634.1789 -10615.365 0 317.82044 0.0008439746 0.00079765627 + 45700 -6244.2645 -6249.8029 5.5384127 3722.7421 634.21791 -10606.763 0 265.43181 0.00093533953 0.00090513559 + 45710 -6244.4516 -6249.1417 4.6900592 3717.2014 633.98337 -10600.326 0 224.77395 0.00097304039 0.00095987472 + 45720 -6244.5116 -6248.9833 4.4716577 3714.4088 633.48344 -10596.876 0 214.30693 0.00096527405 0.0009572697 + 45730 -6244.4108 -6249.3906 4.9797845 3714.6422 632.83271 -10596.865 0 238.65922 0.00092204574 0.00090356862 + 45740 -6244.2169 -6250.1802 5.9632652 3717.971 632.19721 -10600.348 0 285.79313 0.00084647262 0.00080963278 + 45750 -6244.0587 -6251.0322 6.973498 3724.113 631.73859 -10606.884 0 334.20915 0.00073848837 0.00068902883 + 45760 -6244.0405 -6251.676 7.6355269 3732.2211 631.58243 -10615.48 0 365.93729 0.00060714831 0.00056025949 + 45770 -6244.1648 -6252.0314 7.866586 3740.8307 631.81706 -10624.679 0 377.01094 0.00048086689 0.00044936911 + 45780 -6244.3329 -6252.2009 7.867962 3748.1358 632.50771 -10632.844 0 377.07689 0.00040421863 0.00038820983 + 45790 -6244.4382 -6252.3162 7.8779538 3752.5473 633.7002 -10638.564 0 377.55575 0.00041923467 0.00040644441 + 45800 -6244.4695 -6252.3776 7.9080575 3753.2428 635.39553 -10641.016 0 378.99849 0.00054302037 0.00052021555 + 45810 -6244.519 -6252.2536 7.7345547 3750.3775 637.49955 -10640.131 0 370.68326 0.00075842245 0.00072344651 + 45820 -6244.682 -6251.8494 7.1674136 3744.8736 639.77962 -10636.503 0 343.50267 0.0010234067 0.00098627335 + 45830 -6244.9542 -6251.2635 6.3093209 3738.0192 641.86991 -10631.153 0 302.37806 0.0012880979 0.001260531 + 45840 -6245.2358 -6250.7564 5.5205355 3731.1692 643.34194 -10625.268 0 264.57504 0.0015045016 0.001488868 + 45850 -6245.4274 -6250.557 5.1296135 3725.6172 643.81383 -10619.988 0 245.83986 0.0016266722 0.0016147715 + 45860 -6245.5133 -6250.6945 5.1812141 3722.4782 643.05173 -10616.224 0 248.31285 0.0016120538 0.0015936279 + 45870 -6245.564 -6251.0019 5.4379477 3722.4403 641.03273 -10614.475 0 260.61697 0.0014332102 0.0014054138 + 45880 -6245.6679 -6251.2724 5.6045041 3725.4462 637.96402 -10614.683 0 268.59928 0.0010966306 0.0010661571 + 45890 -6245.8555 -6251.4244 5.5688971 3730.532 634.26319 -10616.22 0 266.8928 0.00065496514 0.00063166852 + 45900 -6246.0779 -6251.5422 5.4643347 3736.0189 630.50201 -10618.063 0 261.88158 0.00020018018 0.00018824614 + 45910 -6246.2553 -6251.7697 5.5143837 3740.0453 627.31428 -10619.129 0 264.28021 -0.00016303974 -0.00016865065 + 45920 -6246.3499 -6252.1546 5.804716 3741.2155 625.2739 -10618.644 0 278.19456 -0.00035150076 -0.00036048879 + 45930 -6246.3999 -6252.5815 6.1815604 3739.0619 624.76119 -10616.405 0 296.25506 -0.00032913679 -0.00034744522 + 45940 -6246.4854 -6252.8511 6.365744 3734.1347 625.85091 -10612.837 0 305.08217 -0.00011407825 -0.00013917517 + 45950 -6246.655 -6252.8367 6.1816706 3727.7461 628.26723 -10608.85 0 296.26034 0.00023212551 0.00020819415 + 45960 -6246.8823 -6252.578 5.6957107 3721.5494 631.4401 -10605.567 0 272.97042 0.0006244351 0.00060739438 + 45970 -6247.093 -6252.2385 5.1455556 3717.1373 634.65802 -10604.034 0 246.6039 0.00097428658 0.00096266554 + 45980 -6247.2327 -6251.973 4.7402704 3715.728 637.26503 -10604.966 0 227.18036 0.0012061937 0.0011933614 + 45990 -6247.3107 -6251.8291 4.5183924 3717.9141 638.83005 -10608.573 0 216.54672 0.0012724226 0.0012532229 + 46000 -6247.3812 -6251.7599 4.3786183 3723.466 639.23473 -10614.461 0 209.84796 0.0011659764 0.0011415514 + 46010 -6247.4873 -6251.7221 4.2347304 3731.2698 638.66347 -10621.655 0 202.95204 0.0009268865 0.0009032145 + 46020 -6247.6179 -6251.7545 4.1365462 3739.521 637.51413 -10628.79 0 198.2465 0.00063423143 0.00061587401 + 46030 -6247.7194 -6251.9519 4.2324511 3746.2027 636.26587 -10634.42 0 202.8428 0.0003815572 0.00036677818 + 46040 -6247.7503 -6252.355 4.6046808 3749.6957 635.34118 -10637.392 0 220.68214 0.00024413315 0.000226352 + 46050 -6247.7254 -6252.8671 5.1416448 3749.2507 634.99119 -10637.109 0 246.41647 0.00025357735 0.00022789467 + 46060 -6247.7071 -6253.2906 5.5835251 3745.1224 635.22892 -10633.642 0 267.59385 0.00039176627 0.00036018049 + 46070 -6247.7481 -6253.4578 5.7097219 3738.3658 635.83221 -10627.656 0 273.64191 0.00060406423 0.00057421335 + 46080 -6247.8422 -6253.3392 5.4969796 3730.4673 636.42204 -10620.228 0 263.44611 0.00082126674 0.0007998851 + 46090 -6247.9284 -6253.0379 5.1094912 3722.9922 636.59219 -10612.622 0 244.87549 0.00097842751 0.00096568813 + 46100 -6247.9439 -6252.6928 4.7489192 3717.3216 636.04312 -10606.057 0 227.59485 0.0010263373 0.0010159902 + 46110 -6247.8715 -6252.3825 4.5109869 3714.4468 634.67623 -10601.506 0 216.19181 0.00093891159 0.00092359215 + 46120 -6247.7461 -6252.1066 4.3604438 3714.785 632.62746 -10599.519 0 208.97693 0.00071990664 0.00069688472 + 46130 -6247.6201 -6251.8388 4.2187635 3718.0472 630.24051 -10600.127 0 202.18682 0.000407205 0.00038014794 + 46140 -6247.5192 -6251.595 4.0758092 3723.2459 627.99149 -10602.832 0 195.33565 6.9327587e-05 4.5104655e-05 + 46150 -6247.4199 -6251.4528 4.0328699 3728.9132 626.38308 -10606.749 0 193.27776 -0.00020917835 -0.00022592535 + 46160 -6247.2614 -6251.505 4.243665 3733.5095 625.83025 -10610.845 0 203.38024 -0.00035089193 -0.00036121195 + 46170 -6246.9838 -6251.782 4.798172 3735.8928 626.55986 -10614.235 0 229.95532 -0.00030936734 -0.00031896906 + 46180 -6246.5672 -6252.2047 5.6375844 3735.6618 628.54407 -10616.411 0 270.18468 -8.4645847e-05 -9.9378567e-05 + 46190 -6246.0462 -6252.6119 6.5657149 3733.2332 631.48713 -10617.332 0 314.6659 0.00027563229 0.00025412133 + 46200 -6245.4905 -6252.84 7.3495041 3729.637 634.88184 -10617.359 0 352.22947 0.00069027317 0.00066535522 + 46210 -6244.9631 -6252.7986 7.835419 3726.1365 638.1329 -10617.068 0 375.51724 0.0010687055 0.0010456725 + 46220 -6244.4886 -6252.4927 8.0041164 3723.8306 640.70948 -10617.033 0 383.60217 0.0013361589 0.0013178364 + 46230 -6244.0545 -6251.9951 7.9405418 3723.3694 642.26649 -10617.631 0 380.55532 0.0014506636 0.001435045 + 46240 -6243.6407 -6251.3931 7.7523514 3724.8404 642.69135 -10618.925 0 371.53618 0.0014071444 0.0013887776 + 46250 -6243.2518 -6250.7446 7.4928486 3727.8144 642.07618 -10620.635 0 359.09935 0.0012304836 0.0012048909 + 46260 -6242.9243 -6250.071 7.1466624 3731.4808 640.64752 -10622.199 0 342.50816 0.00096423736 0.00093225846 + 46270 -6242.696 -6249.399 6.7030455 3734.8053 638.68778 -10622.892 0 321.24755 0.00066112638 0.00062922629 + 46280 -6242.5596 -6248.8189 6.2592077 3736.7069 636.47147 -10621.997 0 299.97635 0.00037597086 0.00035120396 + 46290 -6242.4484 -6248.4871 6.0387006 3736.296 634.22805 -10619.011 0 289.40841 0.00015740797 0.00014072917 + 46300 -6242.2755 -6248.5438 6.2683115 3733.1648 632.13417 -10613.843 0 300.41266 3.6815307e-05 2.092441e-05 + 46310 -6242.0039 -6248.9987 6.9947456 3727.6109 630.3263 -10606.936 0 335.22746 1.9020816e-05 -6.3765733e-06 + 46320 -6241.6879 -6249.6917 8.0038042 3720.6292 628.91668 -10599.238 0 383.58721 8.2292039e-05 4.2945899e-05 + 46330 -6241.4432 -6250.381 8.9377927 3713.6112 627.99751 -10591.99 0 428.34918 0.00019034644 0.00014307619 + 46340 -6241.3622 -6250.8932 9.5309877 3707.8932 627.62814 -10586.414 0 456.77841 0.0003095604 0.00026656919 + 46350 -6241.4473 -6251.2079 9.7605893 3704.4076 627.81137 -10583.427 0 467.78221 0.00041912783 0.00038900607 + 46360 -6241.6273 -6251.4105 9.7831664 3703.5936 628.47274 -10583.477 0 468.86423 0.00050769021 0.00048872496 + 46370 -6241.8354 -6251.568 9.7325958 3705.5075 629.45957 -10586.535 0 466.4406 0.00056269967 0.00054492742 + 46380 -6242.071 -6251.6513 9.5802859 3709.9356 630.57063 -10592.157 0 459.14106 0.00056579589 0.00053945529 + 46390 -6242.3872 -6251.5678 9.1806359 3716.3728 631.61345 -10599.554 0 439.98758 0.00050147961 0.00046435304 + 46400 -6242.8262 -6251.2631 8.4368989 3723.9197 632.47027 -10607.653 0 404.34353 0.00037317703 0.00033131739 + 46410 -6243.3687 -6250.7923 7.4235813 3731.2741 633.1441 -10615.211 0 355.77967 0.00021321712 0.00017569789 + 46420 -6243.9384 -6250.312 6.3736535 3736.9392 633.75744 -10621.009 0 305.46124 7.7616113e-05 4.997354e-05 + 46430 -6244.4484 -6250.008 5.5596196 3739.6183 634.49435 -10624.121 0 266.44817 2.6712908e-05 7.551675e-06 + 46440 -6244.852 -6249.9998 5.147746 3738.6498 635.50359 -10624.153 0 246.70887 0.0001000789 8.2875262e-05 + 46450 -6245.1644 -6250.2778 5.1133733 3734.2841 636.79967 -10621.362 0 245.06154 0.00029700025 0.00027564465 + 46460 -6245.4415 -6250.7255 5.2839871 3727.6518 638.20288 -10616.58 0 253.23831 0.00057211203 0.00054560203 + 46470 -6245.7321 -6251.2123 5.4802408 3720.424 639.35135 -10610.988 0 262.64389 0.0008484611 0.00082078934 + 46480 -6246.043 -6251.6727 5.6297762 3714.3252 639.79668 -10605.795 0 269.81046 0.0010415284 0.0010174289 + 46490 -6246.3441 -6252.1062 5.7620839 3710.6904 639.15914 -10601.956 0 276.15139 0.0010842442 0.0010651019 + 46500 -6246.6008 -6252.5165 5.9157222 3710.1727 637.28487 -10599.974 0 283.5146 0.00094553993 0.00092885548 + 46510 -6246.8023 -6252.8621 6.0597763 3712.6255 634.33966 -10599.827 0 290.41848 0.00063915352 0.00062131474 + 46520 -6246.9652 -6253.0631 6.0979246 3717.1516 630.79758 -10601.012 0 292.24676 0.00022195451 0.00020148374 + 46530 -6247.1135 -6253.0567 5.9432102 3722.3181 627.32491 -10602.7 0 284.83198 -0.00021797293 -0.00023936141 + 46540 -6247.2562 -6252.8534 5.5972356 3726.5116 624.60132 -10603.966 0 268.25094 -0.00058197504 -0.00060110928 + 46550 -6247.3783 -6252.5477 5.1693249 3728.3685 623.14306 -10604.059 0 247.74305 -0.00078607841 -0.00080127525 + 46560 -6247.4542 -6252.2701 4.8159041 3727.1704 623.18482 -10602.625 0 230.80515 -0.00078412698 -0.00079683143 + 46570 -6247.4709 -6252.1098 4.6389649 3723.0842 624.64491 -10599.839 0 222.32522 -0.00058156298 -0.00059511236 + 46580 -6247.4432 -6252.0663 4.6230333 3717.1505 627.16391 -10596.381 0 221.5617 -0.00023468 -0.00025117232 + 46590 -6247.4029 -6252.0731 4.6701142 3710.9919 630.19239 -10593.257 0 223.81808 0.00016549953 0.00014714131 + 46600 -6247.3698 -6252.0725 4.7026841 3706.3307 633.10885 -10591.512 0 225.37901 0.00051969098 0.00050233445 + 46610 -6247.3347 -6252.0655 4.7308105 3704.4998 635.35585 -10591.921 0 226.72698 0.00074761841 0.00073267307 + 46620 -6247.2728 -6252.0907 4.8179012 3706.1077 636.57327 -10594.772 0 230.90086 0.00080714292 0.00079300288 + 46630 -6247.1732 -6252.1649 4.9916959 3710.9164 636.69109 -10599.772 0 239.23007 0.00070142312 0.00068521361 + 46640 -6247.052 -6252.2522 5.2002652 3717.9084 635.94104 -10606.102 0 249.22588 0.00047505042 0.00045567799 + 46650 -6246.9367 -6252.2922 5.3555655 3725.5096 634.77017 -10612.572 0 256.66875 0.00020133723 0.00018060595 + 46660 -6246.8395 -6252.2537 5.4141631 3731.949 633.67959 -10617.882 0 259.47707 -3.7531482e-05 -5.6798227e-05 + 46670 -6246.7464 -6252.1598 5.413357 3735.6997 633.04809 -10620.908 0 259.43844 -0.00017430173 -0.00019114715 + 46680 -6246.6316 -6252.0638 5.432205 3735.8862 633.0094 -10620.959 0 260.34174 -0.00017758874 -0.00019397893 + 46690 -6246.4831 -6252.002 5.5188547 3732.5109 633.42784 -10617.941 0 264.49448 -6.1345138e-05 -8.041652e-05 + 46700 -6246.3152 -6251.9657 5.6505146 3726.4114 633.97403 -10612.351 0 270.80436 0.0001222217 9.912924e-05 + 46710 -6246.1567 -6251.9173 5.7605896 3718.9651 634.26268 -10605.145 0 276.07978 0.00030377828 0.00027857233 + 46720 -6246.0243 -6251.8323 5.8080555 3711.6688 633.9949 -10597.496 0 278.35461 0.000422408 0.00039866767 + 46730 -6245.9059 -6251.7254 5.8195075 3705.7672 633.05361 -10590.546 0 278.90345 0.0004438026 0.00042353816 + 46740 -6245.773 -6251.6295 5.8565194 3702.0554 631.52581 -10585.211 0 280.67727 0.00036446396 0.00034644796 + 46750 -6245.6094 -6251.555 5.9455995 3700.8514 629.65745 -10582.064 0 284.94649 0.00020454238 0.00018588371 + 46760 -6245.4257 -6251.4814 6.0557112 3702.0447 627.77004 -10581.296 0 290.22366 -2.5252035e-06 -2.3441613e-05 + 46770 -6245.2433 -6251.3938 6.1505118 3705.1539 626.17562 -10582.723 0 294.76703 -0.00021784267 -0.00024029238 + 46780 -6245.0694 -6251.3191 6.2497903 3709.4068 625.1181 -10585.844 0 299.52502 -0.00040250797 -0.00042513682 + 46790 -6244.8906 -6251.3111 6.4205242 3713.8837 624.75111 -10589.946 0 307.70754 -0.00052323235 -0.0005462413 + 46800 -6244.6941 -6251.3907 6.6966116 3717.7132 625.14448 -10594.248 0 320.9392 -0.00055816664 -0.00058319695 + 46810 -6244.491 -6251.502 7.0110654 3720.2478 626.30079 -10598.051 0 336.00959 -0.00049991539 -0.00052757048 + 46820 -6244.3131 -6251.5383 7.2252772 3721.1485 628.16315 -10600.85 0 346.27582 -0.00035355454 -0.00038149432 + 46830 -6244.1819 -6251.4265 7.2446081 3720.3851 630.60616 -10602.418 0 347.20227 -0.00013217515 -0.00015653161 + 46840 -6244.0823 -6251.19 7.1077003 3718.2205 633.41725 -10602.828 0 340.64088 0.00014414259 0.00012497691 + 46850 -6243.9744 -6250.9272 6.9528425 3715.222 636.28595 -10602.435 0 333.21922 0.00044361839 0.00042688339 + 46860 -6243.8326 -6250.7294 6.8968768 3712.2373 638.8184 -10601.785 0 330.53703 0.0007183723 0.00069906053 + 46870 -6243.6704 -6250.621 6.9506327 3710.235 640.58885 -10601.445 0 333.11332 0.00090945536 0.00088475699 + 46880 -6243.5271 -6250.5688 7.0417399 3709.9966 641.22778 -10601.793 0 337.47969 0.00096350065 0.0009353956 + 46890 -6243.4305 -6250.5369 7.1063195 3711.7828 640.52531 -10602.845 0 340.5747 0.00085339506 0.00082706319 + 46900 -6243.3709 -6250.5302 7.1592225 3715.1537 638.51042 -10604.194 0 343.11011 0.00059163589 0.00057105305 + 46910 -6243.3066 -6250.5876 7.281013 3719.0549 635.46912 -10605.112 0 348.947 0.00022913718 0.00021357666 + 46920 -6243.199 -6250.7326 7.5335872 3722.1421 631.89212 -10604.767 0 361.05177 -0.00015959496 -0.00017518077 + 46930 -6243.0479 -6250.928 7.8800689 3723.201 628.37165 -10602.501 0 377.65712 -0.00049719227 -0.00051817809 + 46940 -6242.8967 -6251.0822 8.1854767 3721.4937 625.47996 -10598.056 0 392.29397 -0.00072120748 -0.0007490434 + 46950 -6242.8023 -6251.1076 8.3053694 3716.9368 623.65626 -10591.701 0 398.0399 -0.00079480398 -0.00082608916 + 46960 -6242.7946 -6250.9845 8.1899202 3710.117 623.1199 -10584.221 0 392.50693 -0.0007118104 -0.00074139119 + 46970 -6242.8588 -6250.7746 7.9158112 3702.194 623.82384 -10576.792 0 379.37009 -0.0004986914 -0.00052404624 + 46980 -6242.9557 -6250.5761 7.6204778 3694.7217 625.46302 -10570.761 0 365.21606 -0.0002126049 -0.00023573971 + 46990 -6243.0613 -6250.4571 7.3958886 3689.3736 627.5459 -10567.377 0 354.45248 6.8167206e-05 4.2900377e-05 + 47000 -6243.1878 -6250.4225 7.2347291 3687.5574 629.52183 -10567.502 0 346.72881 0.00026348145 0.00023354962 + 47010 -6243.3669 -6250.441 7.0741158 3689.9809 630.93486 -10571.357 0 339.03132 0.0003164012 0.00028326521 + 47020 -6243.615 -6250.4976 6.882677 3696.3383 631.55784 -10578.394 0 329.8565 0.00021401757 0.00018144404 + 47030 -6243.917 -6250.6106 6.693641 3705.3024 631.45855 -10587.372 0 320.79683 -6.5250124e-06 -3.588594e-05 + 47040 -6244.2429 -6250.8018 6.5589787 3714.8619 630.96672 -10596.63 0 314.34306 -0.00027021088 -0.00029657633 + 47050 -6244.5712 -6251.0623 6.4911051 3722.8702 630.54572 -10604.478 0 311.09018 -0.0004890028 -0.00051456449 + 47060 -6244.8985 -6251.3493 6.4507901 3727.6061 630.61345 -10609.569 0 309.15806 -0.00058990948 -0.00061675741 + 47070 -6245.2344 -6251.6083 6.3738885 3728.1889 631.38107 -10611.178 0 305.4725 -0.00053753144 -0.00056594656 + 47080 -6245.589 -6251.8005 6.2114793 3724.7481 632.76972 -10609.318 0 297.68894 -0.00034411623 -0.00037216573 + 47090 -6245.9587 -6251.9293 5.970536 3718.318 634.432 -10604.679 0 286.14158 -6.3927723e-05 -8.8933605e-05 + 47100 -6246.3201 -6252.0425 5.7223497 3710.5185 635.86597 -10598.427 0 274.24711 0.00022444875 0.00020344129 + 47110 -6246.6458 -6252.1918 5.5460938 3703.1506 636.57765 -10591.92 0 265.79993 0.0004397096 0.00042099606 + 47120 -6246.9283 -6252.3765 5.4481979 3697.7994 636.23378 -10586.41 0 261.10821 0.00051734458 0.0004984995 + 47130 -6247.1843 -6252.5333 5.3489395 3695.4843 634.75589 -10582.773 0 256.35119 0.00042521172 0.00040583682 + 47140 -6247.4314 -6252.593 5.1615431 3696.4151 632.33606 -10581.344 0 247.3701 0.00017321988 0.00015526678 + 47150 -6247.6638 -6252.5458 4.8820042 3699.9501 629.38349 -10581.879 0 233.97304 -0.00018714808 -0.00020192279 + 47160 -6247.8551 -6252.4505 4.5954184 3704.8132 626.42713 -10583.691 0 220.23823 -0.00057608131 -0.00058864341 + 47170 -6247.9845 -6252.381 4.3964568 3709.5012 624.00103 -10585.883 0 210.70288 -0.00090789417 -0.00092155792 + 47180 -6248.0604 -6252.3677 4.3073124 3712.7175 622.53449 -10587.62 0 206.43058 -0.0011140315 -0.0011313879 + 47190 -6248.1153 -6252.3867 4.2714717 3713.6794 622.26534 -10588.331 0 204.71289 -0.0011583791 -0.0011785184 + 47200 -6248.1784 -6252.4037 4.225283 3712.2374 623.19179 -10587.833 0 202.49927 -0.0010415854 -0.001060471 + 47210 -6248.2475 -6252.4243 4.1767417 3708.839 625.07546 -10586.339 0 200.1729 -0.00079653901 -0.00081055707 + 47220 -6248.2868 -6252.4998 4.2129774 3704.3998 627.4985 -10584.398 0 201.90951 -0.00047949338 -0.00048919577 + 47230 -6248.2544 -6252.6756 4.4211548 3700.1204 629.96418 -10582.76 0 211.88655 -0.00015965363 -0.00017021879 + 47240 -6248.139 -6252.9267 4.7877485 3697.245 632.01592 -10582.188 0 229.45577 9.3152238e-05 7.5618703e-05 + 47250 -6247.9748 -6253.1438 5.1689984 3696.749 633.34283 -10583.236 0 247.72741 0.00022387102 0.00019746545 + 47260 -6247.819 -6253.194 5.3749574 3699.0094 633.84189 -10586.045 0 257.59812 0.00020859281 0.00017779939 + 47270 -6247.7052 -6253.0185 5.3132584 3703.5907 633.61921 -10590.228 0 254.64116 6.500326e-05 3.7586649e-05 + 47280 -6247.6114 -6252.6834 5.0719395 3709.2993 632.93303 -10594.916 0 243.0758 -0.00015118762 -0.00017038697 + 47290 -6247.4755 -6252.3344 4.8589526 3714.5504 632.09919 -10598.984 0 232.86827 -0.00036605426 -0.00037911985 + 47300 -6247.2435 -6252.0889 4.8454414 3717.9018 631.38898 -10601.38 0 232.22074 -0.0005155401 -0.0005297412 + 47310 -6246.9088 -6251.9592 5.0504 3718.5008 630.94805 -10601.408 0 242.0435 -0.00056782819 -0.00058978518 + 47320 -6246.5105 -6251.8672 5.3567038 3716.2568 630.76169 -10598.886 0 256.7233 -0.00052961179 -0.00056036012 + 47330 -6246.0994 -6251.7265 5.6271689 3711.7274 630.68079 -10594.135 0 269.68551 -0.00043567025 -0.00047037184 + 47340 -6245.6976 -6251.5166 5.818991 3705.8449 630.50007 -10587.862 0 278.8787 -0.00032969264 -0.00036184775 + 47350 -6245.2849 -6251.2939 6.0089789 3699.6438 630.05486 -10580.993 0 287.98398 -0.00024718263 -0.0002738387 + 47360 -6244.8221 -6251.1321 6.3100597 3694.0905 629.29375 -10574.516 0 302.41347 -0.00020781694 -0.00023148044 + 47370 -6244.2978 -6251.0455 6.7476282 3690.0058 628.29697 -10569.348 0 323.38421 -0.00021720465 -0.0002427305 + 47380 -6243.756 -6250.9692 7.2132543 3687.9924 627.23558 -10566.197 0 345.69962 -0.00027208731 -0.00030134654 + 47390 -6243.2691 -6250.8273 7.5582399 3688.3133 626.2927 -10565.433 0 362.23327 -0.0003632986 -0.00039302467 + 47400 -6242.8766 -6250.6252 7.7486082 3690.78 625.58905 -10566.994 0 371.35678 -0.00047625956 -0.00050178673 + 47410 -6242.5529 -6250.4665 7.9136016 3694.7762 625.15545 -10570.398 0 379.26419 -0.00059298334 -0.0006142973 + 47420 -6242.2457 -6250.4574 8.211766 3699.4499 624.96717 -10574.874 0 393.5539 -0.00069716551 -0.00072051604 + 47430 -6241.9471 -6250.5856 8.6384742 3703.9516 625.01362 -10579.551 0 414.00415 -0.00077788324 -0.00081043896 + 47440 -6241.7196 -6250.6967 8.9771099 3707.5572 625.35482 -10583.609 0 430.23348 -0.00082639745 -0.00086877104 + 47450 -6241.6445 -6250.6059 8.9613886 3709.6569 626.12526 -10586.388 0 429.48002 -0.00082762484 -0.00087168494 + 47460 -6241.7402 -6250.2544 8.5142112 3709.7494 627.47381 -10587.478 0 408.04878 -0.00075603239 -0.00079075524 + 47470 -6241.9299 -6249.7793 7.8493972 3707.58 629.45889 -10586.818 0 376.18716 -0.00058564235 -0.00060631072 + 47480 -6242.0952 -6249.4308 7.335638 3703.4041 631.94475 -10584.78 0 351.56494 -0.00031299902 -0.00032562597 + 47490 -6242.1658 -6249.3993 7.2334722 3698.1783 634.55532 -10582.133 0 346.66858 2.1763635e-05 4.8777889e-06 + 47500 -6242.1681 -6249.694 7.5259597 3693.4455 636.72751 -10579.867 0 360.68621 0.00033415589 0.00030395074 + 47510 -6242.1963 -6250.1624 7.9661483 3690.8489 637.86615 -10578.877 0 381.78252 0.00052158014 0.00047887549 + 47520 -6242.337 -6250.6121 8.2750385 3691.4651 637.55076 -10579.628 0 396.58628 0.00050537371 0.00045958054 + 47530 -6242.6053 -6250.9293 8.3240108 3695.2913 635.70726 -10581.928 0 398.9333 0.00026683981 0.00022830218 + 47540 -6242.9386 -6251.115 8.1764139 3701.1573 632.66543 -10584.938 0 391.85963 -0.00014139789 -0.00016918452 + 47550 -6243.2509 -6251.23 7.979107 3707.1204 629.07645 -10587.427 0 382.40358 -0.0006137032 -0.00063599493 + 47560 -6243.5 -6251.3068 7.8067704 3711.1564 625.72743 -10588.191 0 374.14424 -0.0010289584 -0.001054509 + 47570 -6243.7123 -6251.3112 7.5988637 3711.8266 623.32095 -10586.459 0 364.18019 -0.0012890163 -0.0013222598 + 47580 -6243.9452 -6251.1921 7.2468645 3708.6697 622.28609 -10582.148 0 347.31041 -0.0013436059 -0.0013810866 + 47590 -6244.2242 -6250.9678 6.7436388 3702.2545 622.67128 -10575.894 0 323.19301 -0.0011979511 -0.0012319678 + 47600 -6244.5155 -6250.7572 6.2416687 3693.9886 624.14621 -10568.892 0 299.13578 -0.00090727096 -0.0009331012 + 47610 -6244.7555 -6250.7134 5.9579063 3685.7915 626.1115 -10562.616 0 285.5363 -0.00056255054 -0.00058265359 + 47620 -6244.9058 -6250.9171 6.0112913 3679.6789 627.88511 -10558.481 0 288.09481 -0.00026872192 -0.00029057271 + 47630 -6244.9852 -6251.3145 6.3292812 3677.2746 628.91361 -10557.503 0 303.33467 -0.00011656059 -0.00014640254 + 47640 -6245.0581 -6251.7455 6.6874702 3679.3313 628.94593 -10560.023 0 320.50109 -0.00015420313 -0.00019185292 + 47650 -6245.1891 -6252.0361 6.8469989 3685.4233 628.11037 -10565.57 0 328.14661 -0.00036849307 -0.00040703272 + 47660 -6245.3958 -6252.0957 6.6999291 3693.9744 626.85998 -10572.93 0 321.09819 -0.00068582783 -0.00071642912 + 47670 -6245.6321 -6251.9629 6.3307847 3702.6798 625.80078 -10580.444 0 303.40673 -0.00099567838 -0.0010142418 + 47680 -6245.8182 -6251.7687 5.9505939 3709.2149 625.46965 -10586.453 0 285.18585 -0.0011897886 -0.001200566 + 47690 -6245.897 -6251.6426 5.7456614 3711.9791 626.14715 -10589.769 0 275.36434 -0.0012015933 -0.0012148051 + 47700 -6245.8766 -6251.627 5.7503981 3710.58 627.76736 -10589.974 0 275.59134 -0.0010292671 -0.0010540588 + 47710 -6245.8263 -6251.6656 5.8393106 3705.8605 629.94398 -10587.47 0 279.85253 -0.00073322566 -0.00077098148 + 47720 -6245.8281 -6251.6699 5.8418559 3699.4809 632.09416 -10583.245 0 279.97451 -0.00041057137 -0.00045362055 + 47730 -6245.9175 -6251.6056 5.6881004 3693.2704 633.6167 -10578.493 0 272.60569 -0.00015878369 -0.00019566696 + 47740 -6246.0582 -6251.5282 5.4699759 3688.6443 634.06834 -10574.241 0 262.15194 -4.4367803e-05 -6.7934379e-05 + 47750 -6246.1682 -6251.5382 5.3700848 3686.3068 633.28601 -10571.131 0 257.3646 -8.7847498e-05 -0.00010029206 + 47760 -6246.1794 -6251.6926 5.5131296 3686.2708 631.42204 -10569.385 0 264.2201 -0.00026719101 -0.00027836069 + 47770 -6246.0882 -6251.9426 5.8544918 3688.0662 628.88638 -10568.895 0 280.5801 -0.00053321865 -0.00055340624 + 47780 -6245.9587 -6252.1544 6.1956614 3690.9583 626.21646 -10569.329 0 296.93086 -0.00082730073 -0.00085976653 + 47790 -6245.8768 -6252.2032 6.326402 3694.0919 623.91914 -10570.214 0 303.19668 -0.0010941875 -0.0011330463 + 47800 -6245.8832 -6252.0746 6.1914646 3696.5892 622.34342 -10571.007 0 296.72972 -0.001288637 -0.0013238778 + 47810 -6245.9436 -6251.8832 5.9395088 3697.6922 621.63022 -10571.206 0 284.65459 -0.0013795519 -0.0014051355 + 47820 -6245.9826 -6251.7805 5.7978656 3696.975 621.74383 -10570.499 0 277.86625 -0.0013552099 -0.0013733877 + 47830 -6245.9491 -6251.8249 5.8757622 3694.5344 622.5442 -10568.904 0 281.59949 -0.0012280533 -0.0012464184 + 47840 -6245.8575 -6251.9272 6.0696843 3691.0183 623.84781 -10566.793 0 290.89333 -0.0010336474 -0.0010579285 + 47850 -6245.769 -6251.923 6.1539175 3687.4291 625.45174 -10564.804 0 294.93026 -0.00082074399 -0.00084984563 + 47860 -6245.7332 -6251.7123 5.9790476 3684.7854 627.13295 -10563.631 0 286.54951 -0.00063589487 -0.00066339208 + 47870 -6245.7413 -6251.351 5.609777 3683.8068 628.65392 -10563.812 0 268.85199 -0.00051066248 -0.00053116897 + 47880 -6245.733 -6251.0172 5.2841279 3684.7569 629.79751 -10565.572 0 253.24506 -0.0004576114 -0.00047213822 + 47890 -6245.6502 -6250.8801 5.2298873 3687.467 630.42466 -10568.772 0 250.64554 -0.00047426763 -0.00048964154 + 47900 -6245.4857 -6250.982 5.4963118 3691.4468 630.5226 -10572.951 0 263.4141 -0.00054876773 -0.00057158272 + 47910 -6245.2866 -6251.227 5.9403917 3695.977 630.20863 -10577.413 0 284.6969 -0.00066200955 -0.00069255495 + 47920 -6245.1088 -6251.4795 6.3706243 3700.1665 629.6798 -10581.326 0 305.31606 -0.00078687435 -0.00081860231 + 47930 -6244.96 -6251.6756 6.7156162 3703.0458 629.1334 -10583.855 0 321.85001 -0.0008896519 -0.00091484214 + 47940 -6244.7832 -6251.8462 7.0629923 3703.7755 628.70237 -10584.324 0 338.49822 -0.00093797437 -0.00095452835 + 47950 -6244.4964 -6252.0323 7.5358709 3701.9344 628.43482 -10582.402 0 361.16122 -0.00091365505 -0.00092682319 + 47960 -6244.0506 -6252.1855 8.1349211 3697.7397 628.31134 -10578.237 0 389.87106 -0.00082284762 -0.00084058843 + 47970 -6243.4548 -6252.1607 8.7058368 3692.0402 628.27012 -10572.471 0 417.23255 -0.00069602882 -0.00072271389 + 47980 -6242.7567 -6251.8142 9.0575109 3686.0673 628.21966 -10566.101 0 434.08674 -0.00057715284 -0.00061124356 + 47990 -6242.0052 -6251.114 9.1087702 3681.0686 628.04516 -10560.228 0 436.54338 -0.00050846585 -0.00054522623 + 48000 -6241.2302 -6250.1663 8.9361278 3677.9787 627.62901 -10555.774 0 428.26938 -0.00051835276 -0.00055407831 + 48010 -6240.4458 -6249.1536 8.7078006 3677.2093 626.89407 -10553.257 0 417.32667 -0.00061491826 -0.00064892442 + 48020 -6239.6646 -6248.2467 8.5821393 3678.5738 625.85545 -10552.676 0 411.30427 -0.00078395051 -0.00081759455 + 48030 -6238.9057 -6247.5531 8.6474199 3681.3547 624.65083 -10553.559 0 414.43288 -0.00099034237 -0.0010249019 + 48040 -6238.1916 -6247.1177 8.9260086 3684.5064 623.52311 -10555.147 0 427.78442 -0.0011844282 -0.0012200001 + 48050 -6237.5376 -6246.9557 9.4180487 3686.9498 622.75303 -10556.658 0 451.36574 -0.0013142517 -0.0013506367 + 48060 -6236.9477 -6247.0756 10.127924 3687.8801 622.57055 -10557.526 0 485.38695 -0.0013411248 -0.001379641 + 48070 -6236.4351 -6247.4585 11.023424 3687.0145 623.08807 -10557.561 0 528.30433 -0.0012526054 -0.0012961305 + 48080 -6236.0544 -6248.0168 11.962428 3684.6922 624.27961 -10556.989 0 573.30668 -0.0010667028 -0.0011166507 + 48090 -6235.9004 -6248.6011 12.700713 3681.7534 625.99732 -10556.352 0 608.68943 -0.00082469826 -0.00087781495 + 48100 -6236.0563 -6249.0761 13.01982 3679.2227 628.00209 -10556.301 0 623.98283 -0.00057680953 -0.00062600043 + 48110 -6236.5342 -6249.3964 12.86225 3677.9559 629.99596 -10557.348 0 616.4312 -0.00036918559 -0.00040839599 + 48120 -6237.2655 -6249.6121 12.346567 3678.4171 631.65836 -10559.688 0 591.71678 -0.00023737232 -0.0002661181 + 48130 -6238.1458 -6249.8053 11.65956 3680.6327 632.69256 -10563.131 0 558.79155 -0.00020489961 -0.00022839422 + 48140 -6239.0872 -6250.0156 10.928354 3684.2483 632.88468 -10567.149 0 523.74802 -0.00028244144 -0.00030732254 + 48150 -6240.0373 -6250.214 10.176626 3688.6007 632.16668 -10570.981 0 487.72101 -0.00046421949 -0.00049362925 + 48160 -6240.9606 -6250.3405 9.3799438 3692.7871 630.66166 -10573.789 0 449.53954 -0.00072286093 -0.00075483425 + 48170 -6241.8172 -6250.3647 8.5475214 3695.7845 628.68269 -10574.832 0 409.64518 -0.0010083723 -0.0010383163 + 48180 -6242.562 -6250.3172 7.755247 3696.6586 626.66757 -10573.643 0 371.67495 -0.0012565859 -0.001281423 + 48190 -6243.1601 -6250.2705 7.1103647 3694.8405 625.05865 -10570.17 0 340.76857 -0.0014073156 -0.0014280068 + 48200 -6243.6061 -6250.2856 6.6794625 3690.3826 624.16403 -10564.832 0 320.11732 -0.0014262446 -0.0014468372 + 48210 -6243.9315 -6250.3721 6.4406009 3684.0659 624.05047 -10558.488 0 308.66973 -0.0013205312 -0.0013446048 + 48220 -6244.1897 -6250.5004 6.3106768 3677.2598 624.51303 -10552.273 0 302.44304 -0.0011390672 -0.0011668036 + 48230 -6244.4242 -6250.6574 6.2331358 3671.5496 625.14441 -10547.351 0 298.72684 -0.00095551529 -0.00098428019 + 48240 -6244.6442 -6250.8804 6.2361587 3668.2762 625.48998 -10544.647 0 298.87172 -0.00084187836 -0.00086970293 + 48250 -6244.8359 -6251.2193 6.3833837 3668.1724 625.23419 -10544.626 0 305.92757 -0.00084479179 -0.00087277522 + 48260 -6244.9984 -6251.6548 6.6563904 3671.1953 624.33963 -10547.19 0 319.01158 -0.00097242395 -0.0010030444 + 48270 -6245.163 -6252.0684 6.9054549 3676.5398 623.07326 -10551.681 0 330.94815 -0.001192492 -0.0012256676 + 48280 -6245.3675 -6252.3158 6.9482602 3682.8012 621.9053 -10557.022 0 332.99962 -0.0014395804 -0.0014714267 + 48290 -6245.6124 -6252.341 6.7285821 3688.3008 621.32787 -10561.97 0 322.47141 -0.00163228 -0.0016586793 + 48300 -6245.8512 -6252.2165 6.3653199 3691.5662 621.67464 -10565.457 0 305.06184 -0.0016996784 -0.0017210022 + 48310 -6246.0327 -6252.0695 6.0367713 3691.8272 623.00849 -10566.905 0 289.31595 -0.0016093308 -0.0016309118 + 48320 -6246.1497 -6251.9733 5.8236632 3689.2926 625.10111 -10566.367 0 279.10262 -0.0013827965 -0.0014102396 + 48330 -6246.244 -6251.912 5.6680267 3685.0402 627.49378 -10564.446 0 271.64364 -0.0010888925 -0.0011227976 + 48340 -6246.3658 -6251.8373 5.471498 3680.571 629.61792 -10562.026 0 262.22488 -0.00081729288 -0.00085249168 + 48350 -6246.5276 -6251.7451 5.2175413 3677.2545 630.94993 -10559.95 0 250.05386 -0.00064600931 -0.00067587951 + 48360 -6246.6957 -6251.6913 4.9955981 3675.9154 631.16293 -10558.77 0 239.41709 -0.00061764087 -0.00063939957 + 48370 -6246.8212 -6251.7375 4.9163578 3676.6825 630.22685 -10558.647 0 235.61945 -0.00073162174 -0.00074811269 + 48380 -6246.8786 -6251.8878 5.009127 3679.0707 628.41552 -10559.374 0 240.06547 -0.0009505544 -0.00096757531 + 48390 -6246.882 -6252.0737 5.1916394 3682.1958 626.21187 -10560.481 0 248.81249 -0.001214706 -0.0012365054 + 48400 -6246.8704 -6252.1997 5.3293372 3685.0375 624.14404 -10561.381 0 255.41174 -0.0014594412 -0.0014859003 + 48410 -6246.8764 -6252.211 5.3345945 3686.6941 622.61686 -10561.522 0 255.6637 -0.0016317352 -0.0016591205 + 48420 -6246.9013 -6252.1334 5.2320889 3686.594 621.8056 -10560.533 0 250.75106 -0.0017024987 -0.001726971 + 48430 -6246.9155 -6252.0547 5.1391328 3684.6373 621.6486 -10558.341 0 246.29608 -0.0016721842 -0.0016931563 + 48440 -6246.8844 -6252.0566 5.1721891 3681.235 621.92671 -10555.218 0 247.88032 -0.0015684112 -0.0015889657 + 48450 -6246.7972 -6252.149 5.3517413 3677.2101 622.37908 -10551.738 0 256.48547 -0.0014359497 -0.0014599896 + 48460 -6246.6755 -6252.2592 5.583711 3673.5601 622.80004 -10548.619 0 267.60276 -0.0013214323 -0.0013500877 + 48470 -6246.5527 -6252.2879 5.7351768 3671.1445 623.08655 -10546.519 0 274.86185 -0.0012575417 -0.0012880711 + 48480 -6246.4429 -6252.1842 5.741317 3670.4248 623.23944 -10545.848 0 275.15612 -0.0012528059 -0.0012810163 + 48490 -6246.3256 -6251.9796 5.6539966 3671.3719 623.33888 -10546.69 0 270.97124 -0.0012914536 -0.001315509 + 48500 -6246.1591 -6251.7598 5.6007072 3673.5654 623.50921 -10548.834 0 268.41732 -0.0013429443 -0.0013654281 + 48510 -6245.9074 -6251.6058 5.6984333 3676.4059 623.87516 -10551.887 0 273.1009 -0.0013762374 -0.0014030426 + 48520 -6245.5635 -6251.5443 5.9807518 3679.3263 624.51164 -10555.382 0 286.63118 -0.0013726537 -0.0014093682 + 48530 -6245.1598 -6251.5313 6.3714828 3681.9183 625.40231 -10558.852 0 305.35721 -0.001332225 -0.0013798533 + 48540 -6244.7539 -6251.4821 6.7281968 3683.9268 626.42945 -10561.838 0 322.45294 -0.0012702696 -0.0013230478 + 48550 -6244.39 -6251.3417 6.9516687 3685.1435 627.4089 -10563.894 0 333.16297 -0.0012053359 -0.0012532724 + 48560 -6244.0564 -6251.1409 7.0844865 3685.3179 628.16079 -10564.62 0 339.52834 -0.001146303 -0.0011820023 + 48570 -6243.6841 -6250.9745 7.2903998 3684.2187 628.58211 -10563.775 0 349.39686 -0.0010889528 -0.0011138066 + 48580 -6243.2018 -6250.9019 7.7000984 3681.8469 628.67662 -10561.425 0 369.03192 -0.001025694 -0.0010496635 + 48590 -6242.6088 -6250.8627 8.2538987 3678.6302 628.51663 -10558.01 0 395.57314 -0.00096080263 -0.00099492748 + 48600 -6241.997 -6250.7034 8.7064136 3675.3876 628.15583 -10554.247 0 417.26019 -0.00091759045 -0.00096502762 + 48610 -6241.4908 -6250.3128 8.8219995 3673.0142 627.55665 -10550.884 0 422.79972 -0.00092926563 -0.0009826568 + 48620 -6241.1525 -6249.7475 8.595005 3672.0649 626.60097 -10548.413 0 411.92087 -0.001018626 -0.001066284 + 48630 -6240.9404 -6249.22 8.2795642 3672.5092 625.19758 -10546.927 0 396.80317 -0.00118167 -0.0012170281 + 48640 -6240.759 -6248.9477 8.1886897 3673.7934 623.41689 -10546.158 0 392.44796 -0.0013867261 -0.0014127431 + 48650 -6240.5462 -6248.988 8.4418532 3675.1281 621.54795 -10545.664 0 404.58097 -0.0015875752 -0.0016128667 + 48660 -6240.3226 -6249.2016 8.8789713 3675.8016 620.02128 -10545.024 0 425.53013 -0.0017398268 -0.0017706754 + 48670 -6240.1651 -6249.3745 9.2093397 3675.3782 619.23326 -10543.986 0 441.36323 -0.0018114516 -0.0018470194 + 48680 -6240.1315 -6249.4 9.2684417 3673.7649 619.3745 -10542.539 0 444.19573 -0.001786483 -0.0018214004 + 48690 -6240.2099 -6249.3627 9.1527861 3671.2165 620.36066 -10540.94 0 438.65287 -0.0016670916 -0.0016985287 + 48700 -6240.3471 -6249.4462 9.0990917 3668.3332 621.89512 -10539.674 0 436.07953 -0.0014773595 -0.001508941 + 48710 -6240.5269 -6249.7509 9.2240738 3665.9956 623.60873 -10539.355 0 442.06937 -0.0012640391 -0.0013021561 + 48720 -6240.8078 -6250.1974 9.389598 3665.1338 625.18707 -10540.518 0 450.00222 -0.0010860876 -0.0011325424 + 48730 -6241.2754 -6250.6027 9.327287 3666.3448 626.42795 -10543.375 0 447.01593 -0.00099281734 -0.0010419241 + 48740 -6241.9548 -6250.841 8.886254 3669.565 627.23314 -10547.639 0 425.87915 -0.0010029412 -0.0010463115 + 48750 -6242.7743 -6250.9246 8.1503035 3674.0326 627.57984 -10552.537 0 390.60827 -0.0010993248 -0.0011331133 + 48760 -6243.615 -6250.9498 7.3347364 3678.5791 627.50872 -10557.038 0 351.52172 -0.0012419395 -0.0012692029 + 48770 -6244.3828 -6250.9969 6.6141506 3682.0588 627.12406 -10560.18 0 316.98721 -0.0013871734 -0.0014142399 + 48780 -6245.0372 -6251.0877 6.0505374 3683.6823 626.57643 -10561.346 0 289.9757 -0.0015011663 -0.0015327532 + 48790 -6245.5788 -6251.2037 5.62486 3683.1603 626.01786 -10560.382 0 269.57485 -0.0015649101 -0.0016017716 + 48800 -6246.027 -6251.3212 5.2941497 3680.6898 625.54873 -10557.56 0 253.72536 -0.0015747263 -0.0016140045 + 48810 -6246.4024 -6251.439 5.0365774 3676.8405 625.18301 -10553.462 0 241.38105 -0.0015405061 -0.001577686 + 48820 -6246.7151 -6251.5879 4.8727737 3672.3979 624.84702 -10548.833 0 233.53066 -0.0014823985 -0.001513837 + 48830 -6246.9632 -6251.8127 4.8494578 3668.2094 624.41242 -10544.434 0 232.41323 -0.0014264653 -0.0014512376 + 48840 -6247.1411 -6252.1352 4.9940723 3665.0488 623.75144 -10540.936 0 239.34397 -0.0013995261 -0.0014196159 + 48850 -6247.2503 -6252.5256 5.2753008 3663.4929 622.79431 -10538.813 0 252.82201 -0.0014232923 -0.0014422329 + 48860 -6247.3059 -6252.9011 5.59518 3663.8091 621.56852 -10538.279 0 268.15242 -0.0015086384 -0.0015294575 + 48870 -6247.3357 -6253.1525 5.8167965 3665.8772 620.2074 -10539.237 0 278.77353 -0.0016512824 -0.0016747018 + 48880 -6247.3686 -6253.1937 5.8250445 3669.1712 618.92637 -10541.291 0 279.16882 -0.0018296215 -0.0018536279 + 48890 -6247.4151 -6253.0148 5.5997187 3672.8302 617.97766 -10543.823 0 268.36994 -0.0020057563 -0.0020273612 + 48900 -6247.4568 -6252.6999 5.2430947 3675.8479 617.60028 -10546.148 0 251.27852 -0.0021320404 -0.0021502437 + 48910 -6247.4622 -6252.3769 4.9146898 3677.3666 617.97548 -10547.719 0 235.53951 -0.0021643832 -0.00218152 + 48920 -6247.4176 -6252.1297 4.7121028 3676.9736 619.18546 -10548.289 0 225.83041 -0.0020785573 -0.0020982078 + 48930 -6247.343 -6251.9496 4.6065601 3674.8545 621.17094 -10547.975 0 220.77221 -0.0018814957 -0.00190469 + 48940 -6247.2733 -6251.7735 4.5001255 3671.7215 623.69754 -10547.193 0 215.67126 -0.0016112446 -0.0016349255 + 48950 -6247.2206 -6251.5726 4.3520127 3668.5671 626.35782 -10546.497 0 208.57287 -0.0013260497 -0.0013458475 + 48960 -6247.1544 -6251.4028 4.2484313 3666.3766 628.63528 -10546.415 0 203.60867 -0.0010889095 -0.0011039123 + 48970 -6247.0225 -6251.3646 4.3420371 3665.9035 630.0308 -10547.299 0 208.09478 -0.00095384392 -0.00096869444 + 48980 -6246.7951 -6251.5073 4.7122495 3667.5163 630.21539 -10549.239 0 225.83744 -0.00095540356 -0.00097722149 + 48990 -6246.4951 -6251.7684 5.2733638 3671.078 629.1494 -10551.996 0 252.72918 -0.0010996872 -0.0011319994 + 49000 -6246.1872 -6252.0065 5.8193428 3675.8605 627.11338 -10554.98 0 278.89556 -0.0013572088 -0.0013960904 + 49010 -6245.9271 -6252.1072 6.1801067 3680.5807 624.62919 -10557.317 0 296.18539 -0.0016628633 -0.0016992068 + 49020 -6245.7114 -6252.071 6.3596076 3683.6675 622.29663 -10558.035 0 304.78808 -0.0019298129 -0.0019566068 + 49030 -6245.4776 -6251.9989 6.5212862 3683.7639 620.60854 -10556.371 0 312.53663 -0.0020780509 -0.0020966017 + 49040 -6245.1625 -6251.98 6.8175552 3680.2938 619.8124 -10552.086 0 326.7355 -0.0020671097 -0.0020862722 + 49050 -6244.7683 -6251.9897 7.2213356 3673.7963 619.85961 -10545.646 0 346.08692 -0.0019151941 -0.0019438398 + 49060 -6244.371 -6251.9006 7.5296257 3665.8095 620.44829 -10538.158 0 360.86191 -0.0016922313 -0.0017316631 + 49070 -6244.0601 -6251.5997 7.539607 3658.3356 621.14159 -10531.077 0 361.34027 -0.0014896617 -0.0015326972 + 49080 -6243.8674 -6251.0961 7.2286519 3653.1598 621.52585 -10525.782 0 346.43756 -0.0013833839 -0.0014204549 + 49090 -6243.7477 -6250.5285 6.7807137 3651.3333 621.3588 -10523.221 0 324.96984 -0.0014078099 -0.0014344214 + 49100 -6243.6204 -6250.0758 6.455408 3652.9886 620.65758 -10523.722 0 309.37937 -0.0015494925 -0.0015691177 + 49110 -6243.4306 -6249.8467 6.4160596 3657.4607 619.6962 -10527.004 0 307.49358 -0.0017578703 -0.0017786324 + 49120 -6243.1855 -6249.8217 6.636226 3663.5766 618.91268 -10532.311 0 318.04519 -0.0019651733 -0.0019931564 + 49130 -6242.9441 -6249.8851 6.9409348 3669.9679 618.75489 -10538.608 0 332.64854 -0.0021070758 -0.0021412723 + 49140 -6242.7667 -6249.9266 7.1599791 3675.3275 619.51556 -10544.77 0 343.14637 -0.0021379545 -0.0021710319 + 49150 -6242.657 -6249.943 7.2859661 3678.6191 621.21694 -10549.779 0 349.18438 -0.002038963 -0.0020639788 + 49160 -6242.5527 -6250.0427 7.4899983 3679.2902 623.59223 -10552.925 0 358.96274 -0.0018215244 -0.0018391907 + 49170 -6242.3827 -6250.3284 7.9456963 3677.4657 626.17094 -10553.965 0 380.80235 -0.0015283757 -0.001547679 + 49180 -6242.148 -6250.7588 8.6108613 3673.9801 628.42877 -10553.168 0 412.68079 -0.0012284359 -0.0012590463 + 49190 -6241.9408 -6251.1341 9.1932977 3670.108 629.93884 -10551.181 0 440.59441 -0.00099938671 -0.0010426436 + 49200 -6241.878 -6251.2351 9.3570839 3667.0548 630.47035 -10548.76 0 448.44396 -0.00090018443 -0.00094732365 + 49210 -6242.0051 -6250.9913 8.9862129 3665.4815 630.01044 -10546.483 0 430.66974 -0.00094771378 -0.0009871557 + 49220 -6242.2626 -6250.534 8.2713956 3665.3374 628.71951 -10544.591 0 396.41169 -0.0011131897 -0.0011403386 + 49230 -6242.5453 -6250.099 7.5537423 3666.0646 626.85526 -10543.019 0 362.01771 -0.0013410027 -0.0013619753 + 49240 -6242.7975 -6249.8654 7.067873 3666.9922 624.70247 -10541.56 0 338.73213 -0.0015768306 -0.0016029905 + 49250 -6243.0593 -6249.86 6.8006724 3667.6487 622.52504 -10540.034 0 325.92638 -0.0017868168 -0.0018249305 + 49260 -6243.4234 -6249.9967 6.5732631 3667.8252 620.53686 -10538.359 0 315.02765 -0.0019585674 -0.0020052064 + 49270 -6243.9436 -6250.1968 6.2531468 3667.4471 618.88735 -10536.531 0 299.68588 -0.0020892446 -0.0021342197 + 49280 -6244.5828 -6250.4684 5.8855758 3666.4527 617.66463 -10534.586 0 282.06982 -0.0021742637 -0.0022094435 + 49290 -6245.2475 -6250.8728 5.6253949 3664.82 616.91626 -10532.609 0 269.60049 -0.00220592 -0.0022310279 + 49300 -6245.8624 -6251.427 5.5645897 3662.6963 616.67297 -10530.796 0 266.68636 -0.0021799997 -0.0022009158 + 49310 -6246.4083 -6252.0476 5.6392797 3660.4756 616.95503 -10529.478 0 270.26593 -0.0021021316 -0.0021248008 + 49320 -6246.903 -6252.5875 5.6844934 3658.7282 617.75214 -10529.068 0 272.43282 -0.0019887589 -0.0020146698 + 49330 -6247.3633 -6252.9238 5.5605009 3658.0244 618.9889 -10529.937 0 266.4904 -0.0018634233 -0.0018896265 + 49340 -6247.7827 -6253.0258 5.2430681 3658.7513 620.50135 -10532.278 0 251.27724 -0.0017513729 -0.0017738182 + 49350 -6248.1353 -6252.9613 4.8260109 3660.9988 622.0486 -10536.009 0 231.28952 -0.0016745834 -0.0016916562 + 49360 -6248.3959 -6252.8463 4.4504697 3664.5341 623.36725 -10540.748 0 213.29148 -0.0016477165 -0.0016614646 + 49370 -6248.5598 -6252.7729 4.2130777 3668.8441 624.25339 -10545.87 0 201.91432 -0.0016747613 -0.0016892084 + 49380 -6248.6502 -6252.7615 4.1113088 3673.2158 624.63761 -10550.615 0 197.03699 -0.0017463539 -0.0017642987 + 49390 -6248.7059 -6252.7672 4.0612975 3676.8337 624.61515 -10554.216 0 194.64016 -0.0018388563 -0.0018596676 + 49400 -6248.7571 -6252.7319 3.9747245 3678.9028 624.40838 -10556.043 0 190.4911 -0.0019175204 -0.0019377857 + 49410 -6248.8057 -6252.6385 3.8327144 3678.8187 624.26994 -10555.727 0 183.68518 -0.0019458659 -0.0019624064 + 49420 -6248.8283 -6252.523 3.6946865 3676.3719 624.36524 -10553.26 0 177.07011 -0.0019002193 -0.0019128214 + 49430 -6248.7987 -6252.4412 3.6425384 3671.9119 624.68604 -10549.039 0 174.57088 -0.0017834373 -0.0017949808 + 49440 -6248.7079 -6252.4289 3.7210074 3666.3568 625.0352 -10543.821 0 178.33155 -0.0016296674 -0.0016439107 + 49450 -6248.5663 -6252.4899 3.9236388 3660.9939 625.09211 -10538.576 0 188.04279 -0.0014957665 -0.0015149864 + 49460 -6248.3911 -6252.6059 4.2147299 3657.1223 624.53549 -10534.264 0 201.9935 -0.0014421721 -0.0014663035 + 49470 -6248.1958 -6252.7455 4.5497267 3655.6612 623.1774 -10531.584 0 218.04843 -0.0015110667 -0.0015382426 + 49480 -6247.9863 -6252.8668 4.880443 3656.8574 621.05823 -10530.782 0 233.89821 -0.0017099418 -0.0017375231 + 49490 -6247.7632 -6252.9225 5.1592565 3660.1834 618.4691 -10531.575 0 247.26052 -0.0020057449 -0.0020313293 + 49500 -6247.5223 -6252.8751 5.3527585 3664.4659 615.89611 -10533.237 0 256.53422 -0.0023312266 -0.002353569 + 49510 -6247.2557 -6252.7125 5.4567568 3668.2227 613.90658 -10534.842 0 261.5184 -0.0026018987 -0.0026215958 + 49520 -6246.9549 -6252.4535 5.4986474 3670.1151 613.00906 -10535.578 0 263.52604 -0.0027393176 -0.0027589046 + 49530 -6246.6169 -6252.1366 5.5197445 3669.3791 613.51984 -10535.036 0 264.53713 -0.0026946226 -0.0027177232 + 49540 -6246.2539 -6251.7953 5.5414363 3666.0997 615.46534 -10533.36 0 265.57672 -0.0024656232 -0.0024950008 + 49550 -6245.8979 -6251.4381 5.540157 3661.2284 618.5463 -10531.213 0 265.51541 -0.0021011249 -0.0021362736 + 49560 -6245.5899 -6251.0609 5.4710336 3656.3099 622.18371 -10529.555 0 262.20263 -0.001688611 -0.0017248114 + 49570 -6245.349 -6250.6927 5.343677 3652.9903 625.65076 -10529.334 0 256.09899 -0.0013275043 -0.0013582711 + 49580 -6245.1474 -6250.4248 5.2774116 3652.4922 628.26606 -10531.183 0 252.92318 -0.0010981444 -0.0011202077 + 49590 -6244.9222 -6250.3707 5.4484661 3655.2669 629.58969 -10535.227 0 261.12107 -0.0010397794 -0.0010564061 + 49600 -6244.6273 -6250.5694 5.9421521 3660.9176 629.54699 -10541.034 0 284.78127 -0.0011451603 -0.0011640406 + 49610 -6244.2806 -6250.9213 6.6406918 3668.3378 628.42448 -10547.684 0 318.25921 -0.0013693774 -0.001396108 + 49620 -6243.9602 -6251.2339 7.2736196 3675.9519 626.73632 -10553.922 0 348.59266 -0.0016449999 -0.0016778815 + 49630 -6243.7417 -6251.3557 7.6139915 3682.0114 625.0225 -10558.39 0 364.90519 -0.001897851 -0.0019291989 + 49640 -6243.6324 -6251.2837 7.6512313 3684.9633 623.67209 -10559.919 0 366.68994 -0.0020631446 -0.0020863781 + 49650 -6243.569 -6251.1465 7.5774567 3683.8699 622.84085 -10557.857 0 363.15424 -0.0021025691 -0.0021186451 + 49660 -6243.4809 -6251.0783 7.5974496 3678.7508 622.47006 -10552.299 0 364.11241 -0.0020178227 -0.0020349489 + 49670 -6243.3582 -6251.094 7.7358152 3670.6673 622.36336 -10544.125 0 370.74367 -0.0018522039 -0.0018788075 + 49680 -6243.2623 -6251.0787 7.8163989 3661.4414 622.27105 -10534.791 0 374.6057 -0.0016754754 -0.001712527 + 49690 -6243.2668 -6250.9039 7.6370731 3653.0839 621.95731 -10525.945 0 366.01139 -0.0015568575 -0.0015965453 + 49700 -6243.3837 -6250.5671 7.1833863 3647.1874 621.25456 -10519.009 0 344.26818 -0.0015393431 -0.0015716314 + 49710 -6243.544 -6250.2244 6.6804442 3644.561 620.11421 -10514.9 0 320.16437 -0.0016281676 -0.0016495837 + 49720 -6243.6513 -6250.0824 6.4311163 3645.2212 618.64474 -10513.948 0 308.21518 -0.0017966775 -0.0018136365 + 49730 -6243.6588 -6250.2398 6.5810872 3648.6203 617.11064 -10515.971 0 315.40262 -0.0020022275 -0.0020260904 + 49740 -6243.6066 -6250.6079 7.0012876 3653.8995 615.87442 -10520.382 0 335.54099 -0.002201301 -0.002239175 + 49750 -6243.5943 -6250.9707 7.3764076 3660.0361 615.29326 -10526.3 0 353.51884 -0.0023569814 -0.0024055146 + 49760 -6243.7037 -6251.1425 7.4387612 3665.9083 615.60856 -10532.659 0 356.50718 -0.0024389232 -0.0024862524 + 49770 -6243.9304 -6251.1041 7.173665 3670.4002 616.87344 -10538.378 0 343.80228 -0.0024221965 -0.0024570492 + 49780 -6244.1839 -6251.0064 6.8224434 3672.639 618.94435 -10542.59 0 326.96977 -0.0022924162 -0.0023131528 + 49790 -6244.3633 -6251.0295 6.6661626 3672.3108 621.5291 -10544.869 0 319.47991 -0.0020576026 -0.0020733519 + 49800 -6244.4418 -6251.2172 6.7753741 3669.8602 624.25858 -10545.336 0 324.71394 -0.0017573832 -0.0017800537 + 49810 -6244.4854 -6251.4373 6.9519253 3666.3818 626.75092 -10544.57 0 333.17527 -0.0014579813 -0.0014920947 + 49820 -6244.5904 -6251.5046 6.9142397 3663.1963 628.65919 -10543.36 0 331.36916 -0.0012308754 -0.0012700858 + 49830 -6244.796 -6251.3517 6.5556819 3661.3316 629.7113 -10542.395 0 314.18506 -0.0011262214 -0.0011592985 + 49840 -6245.0507 -6251.0956 6.0448401 3661.1885 629.75017 -10542.034 0 289.70266 -0.0011570661 -0.0011777601 + 49850 -6245.2595 -6250.9459 5.6863563 3662.5355 628.76903 -10542.25 0 272.5221 -0.0013022484 -0.0013143968 + 49860 -6245.3652 -6251.0372 5.6720336 3664.7515 626.92571 -10542.714 0 271.83568 -0.0015222014 -0.0015360193 + 49870 -6245.3932 -6251.3263 5.9330959 3667.1077 624.51996 -10542.954 0 284.34724 -0.0017748229 -0.0017979517 + 49880 -6245.4275 -6251.6355 6.2080509 3668.9288 621.9308 -10542.495 0 297.52463 -0.0020226548 -0.0020537416 + 49890 -6245.5378 -6251.8016 6.2637936 3669.6326 619.53014 -10540.964 0 300.19614 -0.002232256 -0.0022625259 + 49900 -6245.7197 -6251.8032 6.0834883 3668.7658 617.60389 -10538.173 0 291.55489 -0.0023734354 -0.0023948321 + 49910 -6245.9 -6251.7609 5.8608857 3666.1351 616.30888 -10534.205 0 280.88653 -0.0024247692 -0.0024374074 + 49920 -6246.0045 -6251.8148 5.8102692 3661.9968 615.67482 -10529.486 0 278.4607 -0.0023838295 -0.0023960709 + 49930 -6246.0251 -6251.9928 5.9676652 3657.1398 615.63643 -10524.769 0 286.004 -0.0022733267 -0.0022945036 + 49940 -6246.0273 -6252.1869 6.1596328 3652.7209 616.07334 -10520.981 0 295.20417 -0.0021353277 -0.0021677037 + 49950 -6246.0944 -6252.2483 6.153941 3649.8791 616.84375 -10518.971 0 294.93138 -0.0020145614 -0.0020514218 + 49960 -6246.2599 -6252.109 5.8491029 3649.3279 617.80918 -10519.246 0 280.32183 -0.0019405112 -0.0019716167 + 49970 -6246.4825 -6251.8314 5.3488438 3651.1402 618.85086 -10521.822 0 256.34661 -0.0019188475 -0.0019385069 + 49980 -6246.6807 -6251.561 4.8802178 3654.8114 619.87869 -10526.251 0 233.88742 -0.0019357288 -0.001947235 + 49990 -6246.7961 -6251.4259 4.6297513 3659.5214 620.83502 -10531.782 0 221.88366 -0.0019700108 -0.0019832687 + 50000 -6246.8396 -6251.4565 4.6169681 3664.4239 621.69612 -10537.577 0 221.27102 -0.0020043898 -0.0020284615 + 50010 -6246.8864 -6251.5825 4.6961336 3668.8082 622.47072 -10542.861 0 225.06507 -0.0020286382 -0.0020646688 + 50020 -6247.021 -6251.7102 4.6891607 3672.1039 623.19201 -10547.006 0 224.73089 -0.0020347495 -0.0020748412 + 50030 -6247.2709 -6251.8158 4.5448685 3673.8351 623.90021 -10549.551 0 217.8156 -0.0020109476 -0.0020441697 + 50040 -6247.5868 -6251.9692 4.3823967 3673.6691 624.61679 -10550.255 0 210.02904 -0.0019432647 -0.0019639639 + 50050 -6247.8878 -6252.2615 4.3736922 3671.5905 625.3152 -10549.167 0 209.61187 -0.0018267017 -0.0018381719 + 50060 -6248.1266 -6252.7011 4.5744821 3668.0697 625.89822 -10546.669 0 219.23485 -0.0016779765 -0.0016888288 + 50070 -6248.3177 -6253.178 4.8603197 3664.0406 626.1958 -10543.414 0 232.93379 -0.001538355 -0.0015553454 + 50080 -6248.5114 -6253.5282 5.0167621 3660.6278 625.99723 -10540.153 0 240.43139 -0.0014616259 -0.0014850138 + 50090 -6248.744 -6253.6395 4.8955003 3658.7419 625.11954 -10537.501 0 234.61984 -0.0014926359 -0.0015170988 + 50100 -6249.0066 -6253.518 4.5113185 3658.7453 623.493 -10535.756 0 216.20769 -0.0016475489 -0.0016670187 + 50110 -6249.2526 -6253.2738 4.0211859 3660.3395 621.22791 -10534.841 0 192.71779 -0.0019052244 -0.0019176018 + 50120 -6249.4317 -6253.0475 3.6157647 3662.7077 618.6298 -10534.385 0 173.28773 -0.002212656 -0.0022211145 + 50130 -6249.5239 -6252.9257 3.4017782 3664.8275 616.14956 -10533.903 0 163.0323 -0.0025009201 -0.0025111771 + 50140 -6249.5507 -6252.9009 3.3501151 3665.8152 614.27862 -10532.995 0 160.55631 -0.0027046619 -0.0027203832 + 50150 -6249.5575 -6252.9003 3.3428227 3665.175 613.41733 -10531.493 0 160.20682 -0.0027784376 -0.002798348 + 50160 -6249.5771 -6252.8636 3.2864329 3662.9023 613.75558 -10529.521 0 157.5043 -0.0027062505 -0.0027254346 + 50170 -6249.6021 -6252.8039 3.2018297 3659.4669 615.20743 -10527.478 0 153.44965 -0.0025042472 -0.0025187647 + 50180 -6249.5887 -6252.7985 3.2097671 3655.7288 617.42802 -10525.955 0 153.83005 -0.0022180677 -0.0022289243 + 50190 -6249.4917 -6252.9126 3.4209455 3652.7938 619.91164 -10525.618 0 163.9509 -0.0019149444 -0.0019277959 + 50200 -6249.3003 -6253.1284 3.8280368 3651.7756 622.13748 -10527.041 0 183.461 -0.0016692052 -0.0016899001 + 50210 -6249.0482 -6253.3406 4.2924175 3653.4586 623.71412 -10530.513 0 205.71673 -0.0015418192 -0.0015714314 + 50220 -6248.7892 -6253.4243 4.6350364 3657.9534 624.47789 -10535.856 0 222.13695 -0.0015594325 -0.0015927718 + 50230 -6248.5577 -6253.3204 4.7627574 3664.5065 624.51683 -10542.344 0 228.25806 -0.0017018868 -0.0017308362 + 50240 -6248.3387 -6253.0769 4.7381215 3671.6019 624.11592 -10548.795 0 227.07737 -0.001906085 -0.0019255915 + 50250 -6248.0763 -6252.8106 4.7343706 3677.3795 623.64508 -10553.835 0 226.8976 -0.0020877063 -0.0021000264 + 50260 -6247.7167 -6252.6128 4.8961015 3680.2375 623.42813 -10556.278 0 234.64865 -0.002173366 -0.0021869082 + 50270 -6247.2604 -6252.4693 5.2089294 3679.375 623.63087 -10555.475 0 249.64112 -0.0021293619 -0.0021523571 + 50280 -6246.7751 -6252.2724 5.4973658 3675.0337 624.19655 -10551.503 0 263.46461 -0.0019736343 -0.0020074131 + 50290 -6246.3511 -6251.9264 5.5752943 3668.3469 624.84869 -10545.122 0 267.19939 -0.0017657909 -0.0018035258 + 50300 -6246.0301 -6251.4568 5.4266956 3660.9085 625.17206 -10537.537 0 260.0777 -0.0015817418 -0.0016141214 + 50310 -6245.7747 -6251.019 5.2442943 3654.2964 624.76072 -10530.076 0 251.33601 -0.0014866128 -0.0015095023 + 50320 -6245.5071 -6250.7879 5.2808389 3649.7323 623.38819 -10523.908 0 253.08743 -0.0015167286 -0.0015339794 + 50330 -6245.1789 -6250.8265 5.6475778 3647.9065 621.1305 -10519.863 0 270.66361 -0.0016727878 -0.001692082 + 50340 -6244.809 -6251.0435 6.2344675 3648.9026 618.3811 -10518.327 0 298.79066 -0.0019213282 -0.001947245 + 50350 -6244.4629 -6251.2673 6.8044294 3652.1938 615.73999 -10519.201 0 326.10644 -0.0022029039 -0.0022332632 + 50360 -6244.1962 -6251.3664 7.1702784 3656.7578 613.8171 -10521.941 0 343.63997 -0.0024472271 -0.0024754207 + 50370 -6244.0099 -6251.3252 7.3153039 3661.3444 613.03309 -10525.703 0 350.59041 -0.0025931477 -0.0026141954 + 50380 -6243.8549 -6251.2288 7.3739422 3664.8462 613.50249 -10529.578 0 353.40069 -0.002607096 -0.0026223497 + 50390 -6243.6794 -6251.1741 7.4946891 3666.6342 615.04129 -10532.85 0 359.18755 -0.0024924675 -0.002508944 + 50400 -6243.4811 -6251.1786 7.6975086 3666.7059 617.27879 -10535.163 0 368.9078 -0.0022856598 -0.0023102515 + 50410 -6243.3156 -6251.1626 7.8470405 3665.5717 619.80809 -10536.542 0 376.07421 -0.0020400448 -0.002073269 + 50420 -6243.2507 -6251.0229 7.7722201 3663.9457 622.30215 -10537.271 0 372.4884 -0.0018047659 -0.0018395685 + 50430 -6243.3027 -6250.7397 7.4370417 3662.4246 624.55173 -10537.716 0 356.42477 -0.0016086222 -0.0016358725 + 50440 -6243.4111 -6250.4227 7.0115527 3661.3346 626.43149 -10538.189 0 336.03295 -0.0014576354 -0.0014741772 + 50450 -6243.481 -6250.2469 6.7658513 3660.802 627.84026 -10538.889 0 324.25756 -0.001347007 -0.0013594024 + 50460 -6243.4586 -6250.3204 6.8618633 3660.9316 628.66668 -10539.919 0 328.85899 -0.001278099 -0.001298304 + 50470 -6243.3796 -6250.5961 7.2165138 3661.8927 628.80218 -10541.291 0 345.85583 -0.0012666225 -0.0013025806 + 50480 -6243.3457 -6250.9084 7.562639 3663.7963 628.18737 -10542.892 0 362.4441 -0.0013341496 -0.0013830701 + 50490 -6243.4432 -6251.1105 7.6672817 3666.444 626.86049 -10544.415 0 367.45916 -0.001488204 -0.0015385881 + 50500 -6243.673 -6251.1874 7.5144009 3669.1807 624.98178 -10545.35 0 360.13226 -0.0017067474 -0.0017476145 + 50510 -6243.9585 -6251.2377 7.2791672 3671.0372 622.82192 -10545.097 0 348.85854 -0.0019407718 -0.0019697407 + 50520 -6244.2223 -6251.3497 7.1273375 3671.1242 620.71545 -10543.189 0 341.582 -0.0021341523 -0.0021572937 + 50530 -6244.4508 -6251.5037 7.0528206 3669.0331 618.98707 -10539.524 0 338.01074 -0.0022465029 -0.0022711973 + 50540 -6244.6871 -6251.6006 6.9135456 3665.0107 617.86755 -10534.479 0 331.3359 -0.0022650642 -0.0022935319 + 50550 -6244.9713 -6251.577 6.6056736 3659.8605 617.42695 -10528.864 0 316.58094 -0.0022030391 -0.002232267 + 50560 -6245.2977 -6251.4782 6.180589 3654.6931 617.55596 -10523.727 0 296.2085 -0.0020914109 -0.0021179551 + 50570 -6245.6282 -6251.4226 5.7944325 3650.6573 618.00943 -10520.089 0 277.70172 -0.0019709252 -0.0019947235 + 50580 -6245.9371 -6251.4998 5.562644 3648.7025 618.49879 -10518.701 0 266.59311 -0.0018843457 -0.0019079719 + 50590 -6246.2364 -6251.7039 5.4675225 3649.3664 618.79903 -10519.869 0 262.03436 -0.0018658113 -0.0018907655 + 50600 -6246.5595 -6251.9525 5.3930573 3652.6046 618.83006 -10523.387 0 258.46557 -0.0019278049 -0.0019520736 + 50610 -6246.9232 -6252.1648 5.2415762 3657.732 618.68188 -10528.579 0 251.20574 -0.0020521631 -0.0020716828 + 50620 -6247.3047 -6252.3259 5.0211926 3663.5572 618.57452 -10534.458 0 240.64372 -0.002192839 -0.0022055765 + 50630 -6247.6574 -6252.4817 4.8243116 3668.7215 618.77071 -10539.974 0 231.20808 -0.0022922946 -0.0023009215 + 50640 -6247.9508 -6252.6732 4.7224567 3672.1282 619.47391 -10544.275 0 226.32662 -0.0023044806 -0.0023147597 + 50650 -6248.1964 -6252.8828 4.6864405 3673.2705 620.74505 -10546.898 0 224.60053 -0.0022127513 -0.0022289162 + 50660 -6248.4336 -6253.0465 4.612908 3672.312 622.46254 -10547.821 0 221.07643 -0.0020345678 -0.0020559799 + 50670 -6248.692 -6253.1174 4.4254567 3669.925 624.33935 -10547.382 0 212.09271 -0.001813168 -0.0018352011 + 50680 -6248.9659 -6253.1117 4.145866 3667.0097 625.99449 -10546.116 0 198.69316 -0.0016026485 -0.0016206576 + 50690 -6249.2228 -6253.0947 3.8718781 3664.4296 627.05585 -10544.58 0 185.56212 -0.0014533687 -0.001466076 + 50700 -6249.4318 -6253.1256 3.693813 3662.8241 627.26021 -10543.21 0 177.02825 -0.0014011072 -0.0014108932 + 50710 -6249.5842 -6253.2133 3.6290926 3662.4982 626.52018 -10542.232 0 173.92648 -0.0014602965 -0.0014708547 + 50720 -6249.6943 -6253.3166 3.6222562 3663.3762 624.94279 -10541.636 0 173.59884 -0.0016211132 -0.0016347619 + 50730 -6249.7846 -6253.3829 3.5982378 3665.0287 622.80002 -10541.212 0 172.44775 -0.001851095 -0.0018676939 + 50740 -6249.8689 -6253.391 3.5220187 3666.7823 620.46249 -10540.636 0 168.7949 -0.0021020776 -0.0021199256 + 50750 -6249.9451 -6253.3673 3.4221846 3667.9062 618.31509 -10539.589 0 164.01029 -0.0023217001 -0.0023393533 + 50760 -6250.0007 -6253.3657 3.3649313 3667.8318 616.67682 -10537.874 0 161.26639 -0.00246652 -0.0024839656 + 50770 -6250.0262 -6253.4253 3.3991009 3666.3383 615.74492 -10535.508 0 162.90399 -0.0025126224 -0.0025308487 + 50780 -6250.0231 -6253.538 3.5148313 3663.6389 615.57321 -10532.75 0 168.45044 -0.0024603053 -0.0024796852 + 50790 -6250.0001 -6253.6518 3.6516559 3660.3274 616.08275 -10530.062 0 175.00784 -0.0023316205 -0.0023507093 + 50800 -6249.9566 -6253.709 3.7524066 3657.2094 617.09503 -10528.014 0 179.83638 -0.0021623154 -0.0021784844 + 50810 -6249.8703 -6253.6867 3.816346 3655.0913 618.37699 -10527.155 0 182.90072 -0.0019917763 -0.0020034344 + 50820 -6249.7008 -6253.6039 3.903119 3654.6058 619.68935 -10527.899 0 187.05936 -0.0018545875 -0.0018631148 + 50830 -6249.4094 -6253.4929 4.083528 3656.1039 620.83169 -10530.428 0 195.70558 -0.0017752476 -0.0017848296 + 50840 -6248.983 -6253.3605 4.3774669 3659.5895 621.67952 -10534.63 0 209.79278 -0.0017651776 -0.0017803491 + 50850 -6248.4494 -6253.1748 4.7254618 3664.666 622.21057 -10540.051 0 226.47064 -0.0018203247 -0.0018427278 + 50860 -6247.872 -6252.8901 5.0181463 3670.5069 622.51518 -10545.912 0 240.49773 -0.0019188512 -0.0019454701 + 50870 -6247.319 -6252.4955 5.1764912 3675.9141 622.77913 -10551.189 0 248.0865 -0.002020945 -0.0020456434 + 50880 -6246.8186 -6252.0501 5.2314656 3679.5386 623.22561 -10554.814 0 250.72119 -0.002075257 -0.0020934028 + 50890 -6246.3427 -6251.6634 5.3207549 3680.2703 624.01947 -10555.953 0 255.00043 -0.0020355334 -0.0020483496 + 50900 -6245.8452 -6251.4175 5.5723232 3677.6814 625.16753 -10554.266 0 267.05699 -0.0018838403 -0.0018980182 + 50910 -6245.322 -6251.2946 5.9725659 3672.2981 626.46511 -10550.058 0 286.23887 -0.0016473741 -0.0016693089 + 50920 -6244.8247 -6251.1956 6.3708532 3665.5009 627.52581 -10544.222 0 305.32703 -0.001394679 -0.0014246434 + 50930 -6244.4092 -6251.0487 6.6395466 3659.0566 627.89657 -10538.002 0 318.20433 -0.0012095563 -0.0012420445 + 50940 -6244.0748 -6250.8945 6.8196944 3654.5199 627.22197 -10532.636 0 326.83802 -0.0011574882 -0.0011875327 + 50950 -6243.7666 -6250.8482 7.0815833 3652.8012 625.39406 -10529.043 0 339.38921 -0.0012636463 -0.0012921989 + 50960 -6243.4402 -6250.9725 7.5323484 3654.0221 622.6233 -10527.618 0 360.9924 -0.0015099785 -0.0015423463 + 50970 -6243.1183 -6251.192 8.0737745 3657.5807 619.39863 -10528.171 0 386.94058 -0.0018447744 -0.0018836575 + 50980 -6242.8761 -6251.3456 8.4694925 3662.3064 616.3531 -10530.005 0 405.9056 -0.0021948633 -0.0022356657 + 50990 -6242.764 -6251.3314 8.5674067 3666.6945 614.09072 -10532.117 0 410.5982 -0.0024780451 -0.0025122529 + 51000 -6242.749 -6251.1973 8.4482519 3669.2903 613.03924 -10533.527 0 404.88763 -0.0026204586 -0.0026443098 + 51010 -6242.7449 -6251.0786 8.3337104 3669.1954 613.36723 -10533.641 0 399.39816 -0.0025802562 -0.0025996021 + 51020 -6242.701 -6251.0497 8.3486671 3666.4765 614.96532 -10532.491 0 400.11497 -0.0023675785 -0.0023933574 + 51030 -6242.6548 -6251.0494 8.3945757 3662.198 617.47694 -10530.724 0 402.31517 -0.0020454193 -0.0020839302 + 51040 -6242.6946 -6250.9565 8.2618848 3658.0035 620.37829 -10529.338 0 395.95587 -0.0017057371 -0.0017530033 + 51050 -6242.8754 -6250.7299 7.8544559 3655.4589 623.11062 -10529.299 0 376.4296 -0.0014326255 -0.0014776941 + 51060 -6243.1697 -6250.4724 7.3026602 3655.5 625.23521 -10531.208 0 349.98445 -0.0012734694 -0.0013071181 + 51070 -6243.4934 -6250.3637 6.8702812 3658.2179 626.54721 -10535.129 0 329.26242 -0.0012318922 -0.0012531175 + 51080 -6243.7753 -6250.5248 6.7495474 3662.9891 627.09413 -10540.608 0 323.47618 -0.0012805036 -0.0012959597 + 51090 -6244.0074 -6250.9259 6.9184459 3668.7879 627.09328 -10546.807 0 331.57075 -0.0013808356 -0.0013985669 + 51100 -6244.2404 -6251.411 7.1705636 3674.4862 626.79437 -10552.692 0 343.65364 -0.00149847 -0.0015216732 + 51110 -6244.531 -6251.8156 7.2845869 3679.0492 626.35938 -10557.224 0 349.11828 -0.0016089943 -0.0016349496 + 51120 -6244.8914 -6252.0748 7.1833551 3681.6589 625.82027 -10559.554 0 344.26668 -0.0016976831 -0.0017219559 + 51130 -6245.2853 -6252.233 6.9477329 3681.8313 625.12714 -10559.191 0 332.97434 -0.0017578203 -0.0017790025 + 51140 -6245.6674 -6252.3646 6.6971602 3679.5264 624.24066 -10556.132 0 320.96549 -0.001789619 -0.0018100885 + 51150 -6246.0215 -6252.4927 6.4711882 3675.1774 623.19891 -10550.869 0 310.13565 -0.001798601 -0.0018213759 + 51160 -6246.3611 -6252.5779 6.2168397 3669.5919 622.11695 -10544.287 0 297.94584 -0.0017927703 -0.0018181642 + 51170 -6246.7026 -6252.5696 5.867009 3663.7589 621.12965 -10537.458 0 281.17999 -0.0017801282 -0.0018053123 + 51180 -6247.0401 -6252.4634 5.4232348 3658.6454 620.32248 -10531.431 0 259.91184 -0.0017683098 -0.0017898092 + 51190 -6247.3446 -6252.3194 4.9747638 3655.0452 619.69498 -10527.06 0 238.41859 -0.0017660488 -0.0017828576 + 51200 -6247.5824 -6252.2295 4.6470852 3653.4941 619.17585 -10524.899 0 222.7144 -0.001784163 -0.0017990032 + 51210 -6247.7393 -6252.2611 4.5218271 3654.2253 618.67795 -10525.164 0 216.71132 -0.0018336918 -0.001851449 + 51220 -6247.8326 -6252.4155 4.5828931 3657.1332 618.16283 -10527.711 0 219.63795 -0.0019206148 -0.0019449195 + 51230 -6247.9048 -6252.63 4.7251913 3661.7397 617.6832 -10532.053 0 226.45768 -0.0020389312 -0.002069172 + 51240 -6247.9987 -6252.8238 4.8250732 3667.1961 617.38468 -10537.405 0 231.24458 -0.0021656456 -0.0021966933 + 51250 -6248.1286 -6252.958 4.8293986 3672.3792 617.46586 -10542.803 0 231.45188 -0.0022617525 -0.0022870814 + 51260 -6248.2677 -6253.0633 4.7955719 3676.1278 618.11147 -10547.303 0 229.83072 -0.0022819692 -0.0022982836 + 51270 -6248.3662 -6253.2058 4.8395414 3677.5886 619.41968 -10550.214 0 231.93798 -0.0021920685 -0.0022018597 + 51280 -6248.3895 -6253.4146 5.025107 3676.544 621.34285 -10551.301 0 240.83132 -0.0019871631 -0.0019968703 + 51290 -6248.3457 -6253.636 5.2902893 3673.5436 623.65752 -10550.837 0 253.54035 -0.0017011054 -0.0017162139 + 51300 -6248.2788 -6253.7581 5.4793182 3669.7422 625.98023 -10549.481 0 262.59967 -0.0014002013 -0.001421278 + 51310 -6248.2334 -6253.687 5.453583 3666.4959 627.84087 -10548.024 0 261.3663 -0.0011626599 -0.0011853808 + 51320 -6248.2208 -6253.411 5.19012 3664.8978 628.80459 -10547.113 0 248.73967 -0.0010527692 -0.0010715838 + 51330 -6248.2126 -6253.0087 4.7961539 3665.4394 628.60467 -10547.053 0 229.85861 -0.0011007377 -0.001113103 + 51340 -6248.1622 -6252.6018 4.439655 3667.9042 627.23492 -10547.741 0 212.77318 -0.0012950906 -0.0013031624 + 51350 -6248.0355 -6252.2893 4.2537651 3671.4893 624.96435 -10548.743 0 203.86429 -0.0015880301 -0.0015968539 + 51360 -6247.8266 -6252.1073 4.2806655 3675.0663 622.26937 -10549.443 0 205.15351 -0.0019093696 -0.0019231338 + 51370 -6247.5498 -6252.0351 4.4852985 3677.4797 619.70927 -10549.224 0 214.96067 -0.0021834888 -0.0022026146 + 51380 -6247.2144 -6252.0345 4.8200654 3677.8124 617.78544 -10547.632 0 231.00458 -0.0023454267 -0.0023665561 + 51390 -6246.802 -6252.0882 5.286231 3675.5956 616.82374 -10544.508 0 253.34585 -0.0023545398 -0.00237335 + 51400 -6246.264 -6252.2031 5.9391121 3670.9668 616.90583 -10540.076 0 284.63557 -0.0022050383 -0.002219747 + 51410 -6245.551 -6252.3769 6.8259463 3664.7507 617.8586 -10534.986 0 327.13765 -0.0019316224 -0.0019446293 + 51420 -6244.6616 -6252.5602 7.8985225 3658.3927 619.30064 -10530.254 0 378.54151 -0.0016065421 -0.0016230197 + 51430 -6243.6791 -6252.6499 8.9708006 3653.6604 620.74435 -10527.055 0 429.9311 -0.0013238908 -0.0013481245 + 51440 -6242.7535 -6252.5263 9.7728173 3652.1158 621.74521 -10526.387 0 468.36824 -0.0011708161 -0.001202665 + 51450 -6242.029 -6252.1132 10.084168 3654.5266 622.06014 -10528.7 0 483.2899 -0.0011942493 -0.0012284522 + 51460 -6241.5673 -6251.4322 9.8648474 3660.4953 621.74661 -10533.674 0 472.77884 -0.0013788743 -0.0014083664 + 51470 -6241.3226 -6250.6197 9.2971759 3668.5183 621.14595 -10540.284 0 445.57283 -0.0016493084 -0.0016707918 + 51480 -6241.1846 -6249.8823 8.6977918 3676.4829 620.75041 -10547.116 0 416.84699 -0.0018980378 -0.0019156003 + 51490 -6241.0603 -6249.3921 8.3317399 3682.3983 621.0116 -10552.802 0 399.30373 -0.0020275303 -0.0020504291 + 51500 -6240.9383 -6249.1884 8.2500873 3685.0388 622.16732 -10556.394 0 395.39047 -0.0019867869 -0.0020218738 + 51510 -6240.8837 -6249.1792 8.2955429 3684.2198 624.14454 -10557.544 0 397.56896 -0.0017850437 -0.0018299673 + 51520 -6240.9658 -6249.2559 8.2900948 3680.6494 626.56693 -10556.472 0 397.30786 -0.0014791242 -0.001523131 + 51530 -6241.1838 -6249.4113 8.2274708 3675.5429 628.8645 -10553.819 0 394.30656 -0.0011469943 -0.0011793578 + 51540 -6241.4645 -6249.7375 8.2729815 3670.26 630.44873 -10550.446 0 396.48769 -0.00086473894 -0.00088317195 + 51550 -6241.7312 -6250.308 8.5768907 3666.0678 630.88771 -10547.264 0 411.05273 -0.00069419039 -0.00070577143 + 51560 -6241.9719 -6251.0684 9.0965467 3663.9586 630.01898 -10545.046 0 435.95756 -0.00067628035 -0.00069089497 + 51570 -6242.2458 -6251.8384 9.5925641 3664.4416 627.97282 -10544.253 0 459.72949 -0.00082360243 -0.00084627016 + 51580 -6242.6279 -6252.4152 9.7873292 3667.352 625.11826 -10544.885 0 469.06373 -0.0011132448 -0.0011414433 + 51590 -6243.1425 -6252.6855 9.5429924 3671.8144 621.96456 -10546.464 0 457.35374 -0.0014870361 -0.0015140697 + 51600 -6243.7405 -6252.6671 8.9265318 3676.4529 619.05006 -10548.17 0 427.80949 -0.001864108 -0.0018848736 + 51610 -6244.3317 -6252.4691 8.1373834 3679.8047 616.84067 -10549.114 0 389.98907 -0.0021628231 -0.0021773786 + 51620 -6244.8403 -6252.2126 7.3722752 3680.782 615.65154 -10548.646 0 353.32079 -0.0023232827 -0.0023360716 + 51630 -6245.2411 -6251.9684 6.7272628 3679.0056 615.6001 -10546.574 0 322.40818 -0.0023218544 -0.0023378036 + 51640 -6245.5558 -6251.7507 6.1948909 3674.8935 616.59539 -10543.24 0 296.89393 -0.0021735783 -0.0021943584 + 51650 -6245.8218 -6251.5623 5.7405703 3669.4989 618.36544 -10539.427 0 275.12034 -0.0019235503 -0.0019468559 + 51660 -6246.0596 -6251.4427 5.3831442 3664.1946 620.52044 -10536.158 0 257.99047 -0.0016321929 -0.0016542945 + 51670 -6246.2636 -6251.4713 5.2076567 3660.3323 622.64144 -10534.445 0 249.58013 -0.0013602471 -0.0013794159 + 51680 -6246.4169 -6251.7184 5.3015454 3658.9656 624.37338 -10535.057 0 254.0798 -0.0011573986 -0.0011753546 + 51690 -6246.5145 -6252.1827 5.6682342 3660.6557 625.49593 -10538.334 0 271.65359 -0.0010555395 -0.0010758976 + 51700 -6246.5784 -6252.7643 6.185858 3665.3545 625.95257 -10544.071 0 296.46103 -0.0010656598 -0.0010906894 + 51710 -6246.6504 -6253.2979 6.6474815 3672.3649 625.835 -10551.498 0 318.58461 -0.0011769056 -0.0012051874 + 51720 -6246.7646 -6253.6316 6.8670304 3680.4122 625.33529 -10559.379 0 329.10663 -0.0013574654 -0.001384531 + 51730 -6246.9194 -6253.7036 6.7841676 3687.8576 624.68581 -10566.247 0 325.13538 -0.0015589123 -0.0015807803 + 51740 -6247.0744 -6253.5607 6.4862123 3693.0586 624.10525 -10570.725 0 310.85569 -0.0017262625 -0.0017431131 + 51750 -6247.1829 -6253.3039 6.120935 3694.7982 623.75943 -10571.862 0 293.34955 -0.0018131476 -0.0018296188 + 51760 -6247.2324 -6253.0059 5.7734746 3692.6372 623.73555 -10569.379 0 276.6973 -0.0017965494 -0.0018178102 + 51770 -6247.2548 -6252.6787 5.4239224 3687.0379 624.02452 -10563.741 0 259.94479 -0.0016835286 -0.0017104406 + 51780 -6247.2945 -6252.3204 5.0258839 3679.2102 624.51322 -10556.044 0 240.86856 -0.0015066048 -0.001534606 + 51790 -6247.3642 -6251.9845 4.6203811 3670.7754 624.99719 -10547.757 0 221.43459 -0.0013118 -0.0013347888 + 51800 -6247.4307 -6251.7913 4.360641 3663.4037 625.2232 -10540.418 0 208.98638 -0.0011469423 -0.0011626339 + 51810 -6247.4432 -6251.8573 4.4141128 3658.5308 624.95689 -10535.345 0 211.54905 -0.0010544302 -0.0010663001 + 51820 -6247.3753 -6252.2029 4.8275939 3657.1489 624.0564 -10533.408 0 231.36539 -0.0010664976 -0.0010806647 + 51830 -6247.2476 -6252.7206 5.4729975 3659.624 622.52905 -10534.874 0 262.29675 -0.0011987083 -0.0012185936 + 51840 -6247.1114 -6253.2333 6.1218817 3665.5425 620.55522 -10539.331 0 293.39492 -0.0014408736 -0.0014643162 + 51850 -6247.0062 -6253.599 6.5927971 3673.6742 618.4731 -10545.746 0 315.96383 -0.0017502693 -0.0017716867 + 51860 -6246.9269 -6253.7799 6.8529474 3682.1616 616.727 -10552.668 0 328.43169 -0.0020546852 -0.0020704679 + 51870 -6246.8326 -6253.8197 6.9871407 3688.9664 615.78559 -10558.572 0 334.86299 -0.0022692466 -0.0022814513 + 51880 -6246.6919 -6253.7555 7.0635881 3692.4483 616.03843 -10562.242 0 338.52678 -0.0023226347 -0.0023372506 + 51890 -6246.5217 -6253.5531 7.0313991 3691.8496 617.68368 -10563.086 0 336.9841 -0.0021813629 -0.0022024946 + 51900 -6246.3751 -6253.1393 6.7642524 3687.4843 620.63222 -10561.256 0 324.18093 -0.0018611204 -0.0018867054 + 51910 -6246.2873 -6252.5052 6.2178535 3680.593 624.46701 -10557.565 0 297.99443 -0.0014219407 -0.0014454655 + 51920 -6246.2344 -6251.7764 5.5419754 3672.9821 628.49367 -10553.252 0 265.60256 -0.00095254997 -0.00096934789 + 51930 -6246.1446 -6251.1703 5.0256948 3666.6062 631.88822 -10549.665 0 240.85949 -0.00055155595 -0.00056368889 + 51940 -6245.9494 -6250.8676 4.9181719 3663.1776 633.90445 -10547.95 0 235.70639 -0.00030895308 -0.00032406688 + 51950 -6245.625 -6250.904 5.2789163 3663.8092 634.0747 -10548.788 0 252.99529 -0.00028731749 -0.00031241897 + 51960 -6245.1932 -6251.1677 5.9744602 3668.6967 632.33892 -10552.203 0 286.32966 -0.00050322417 -0.00053863118 + 51970 -6244.6863 -6251.5013 6.8149893 3676.9178 629.06406 -10557.483 0 326.61253 -0.00091430693 -0.0009528766 + 51980 -6244.1054 -6251.8242 7.7187461 3686.4835 624.95344 -10563.261 0 369.92563 -0.0014206777 -0.0014533977 + 51990 -6243.407 -6252.1704 8.7633842 3694.7559 620.87878 -10567.805 0 419.99054 -0.0018869888 -0.001910848 + 52000 -6242.5452 -6252.6014 10.056163 3699.2025 617.68136 -10569.485 0 481.94775 -0.0021827069 -0.0022040551 + 52010 -6241.5565 -6253.0676 11.511038 3698.2527 615.98301 -10567.303 0 551.67353 -0.0022268285 -0.0022562522 + 52020 -6240.6065 -6253.3564 12.749902 3691.8811 616.03834 -10561.276 0 611.04685 -0.0020166758 -0.0020590155 + 52030 -6239.9206 -6253.2025 13.281858 3681.627 617.66356 -10552.493 0 636.54114 -0.0016259701 -0.0016748186 + 52040 -6239.6317 -6252.4789 12.84718 3670.0569 620.27952 -10542.815 0 615.70895 -0.0011743523 -0.0012169171 + 52050 -6239.6888 -6251.3056 11.616745 3659.9649 623.08047 -10534.351 0 556.73959 -0.00078595509 -0.00081385246 + 52060 -6239.9155 -6249.9865 10.070932 3653.6504 625.28546 -10528.922 0 482.65557 -0.0005554522 -0.00057130073 + 52070 -6240.1495 -6248.8414 8.6918376 3652.4543 626.38155 -10527.677 0 416.56163 -0.00052913483 -0.00054361944 + 52080 -6240.3357 -6248.0685 7.732815 3656.5574 626.26655 -10530.892 0 370.59988 -0.00069924027 -0.00072216277 + 52090 -6240.5189 -6247.7193 7.2004852 3664.993 625.24432 -10537.957 0 345.08765 -0.0010083122 -0.0010412575 + 52100 -6240.7727 -6247.7673 6.9946118 3675.8563 623.88647 -10547.51 0 335.22104 -0.0013628431 -0.0013987072 + 52110 -6241.1311 -6248.1921 7.0609254 3686.7177 622.82164 -10557.731 0 338.39916 -0.0016561248 -0.0016852843 + 52120 -6241.5687 -6249.0028 7.4340714 3695.2095 622.53124 -10566.744 0 356.28241 -0.0017974101 -0.0018155883 + 52130 -6242.0391 -6250.1807 8.141623 3699.6636 623.21589 -10573.06 0 390.19226 -0.0017400897 -0.0017517306 + 52140 -6242.5359 -6251.5949 9.059042 3699.5878 624.75968 -10575.942 0 434.16012 -0.0014985884 -0.0015129738 + 52150 -6243.1164 -6252.9859 9.8695162 3695.7613 626.78486 -10575.532 0 473.00259 -0.001144886 -0.0011683072 + 52160 -6243.8518 -6254.0592 10.2074 3689.8746 628.7715 -10572.705 0 489.1959 -0.00078297051 -0.00081380422 + 52170 -6244.7423 -6254.6264 9.8840779 3683.8729 630.21001 -10568.709 0 473.70047 -0.00051134646 -0.0005420406 + 52180 -6245.6852 -6254.6832 8.9980378 3679.3187 630.74358 -10564.745 0 431.23646 -0.0003916148 -0.00041508719 + 52190 -6246.5308 -6254.3751 7.8443267 3677.0349 630.25219 -10561.662 0 375.94415 -0.00043676658 -0.00045146619 + 52200 -6247.1704 -6253.8968 6.7264353 3677.0872 628.85305 -10559.837 0 322.36852 -0.00061934971 -0.00062967436 + 52210 -6247.5799 -6253.3983 5.8184314 3678.9884 626.83385 -10559.221 0 278.85188 -0.00088952325 -0.00090231589 + 52220 -6247.8083 -6252.9441 5.1357924 3681.9603 624.55893 -10559.463 0 246.13599 -0.0011924274 -0.0012122551 + 52230 -6247.9373 -6252.5357 4.5984393 3685.1397 622.38278 -10560.058 0 220.38301 -0.0014789504 -0.0015051245 + 52240 -6248.0363 -6252.176 4.1396625 3687.7034 620.58909 -10560.468 0 198.39586 -0.0017092262 -0.0017365944 + 52250 -6248.132 -6251.9208 3.7888111 3688.9612 619.36296 -10560.245 0 181.58109 -0.0018525544 -0.0018755617 + 52260 -6248.2073 -6251.8698 3.6624794 3688.4758 618.79358 -10559.139 0 175.52656 -0.001888641 -0.0019054353 + 52270 -6248.2302 -6252.0999 3.8697235 3686.2069 618.89308 -10557.2 0 185.45886 -0.0018118519 -0.0018251262 + 52280 -6248.1859 -6252.5981 4.4122125 3682.6035 619.6129 -10554.815 0 211.45798 -0.0016356867 -0.0016498865 + 52290 -6248.0907 -6253.2527 5.1619899 3678.5568 620.84622 -10552.656 0 247.39152 -0.0013932101 -0.0014108519 + 52300 -6247.9782 -6253.9067 5.9284548 3675.1944 622.42119 -10551.522 0 284.12482 -0.001131558 -0.0011518082 + 52310 -6247.8754 -6254.4272 6.5517526 3673.5816 624.10315 -10552.112 0 313.99675 -0.00090217943 -0.00092242124 + 52320 -6247.7897 -6254.7394 6.949605 3674.4303 625.62383 -10554.794 0 333.06407 -0.00075006935 -0.00076848637 + 52330 -6247.7155 -6254.8167 7.1011543 3677.8999 626.74118 -10559.458 0 340.32716 -0.00070424457 -0.00072103785 + 52340 -6247.6476 -6254.6561 7.0085294 3683.5224 627.31211 -10565.491 0 335.88805 -0.00077042053 -0.00078703643 + 52350 -6247.5882 -6254.2678 6.6796354 3690.2676 627.34626 -10571.882 0 320.12561 -0.00092728173 -0.00094477062 + 52360 -6247.5428 -6253.685 6.1421781 3696.7394 627.0106 -10577.435 0 294.36764 -0.0011287481 -0.0011467327 + 52370 -6247.5108 -6252.9828 5.4720061 3701.4747 626.57374 -10581.031 0 262.24924 -0.001313829 -0.0013308776 + 52380 -6247.4793 -6252.2862 4.8069102 3703.2878 626.30694 -10581.881 0 230.37411 -0.0014228293 -0.0014379145 + 52390 -6247.4265 -6251.7473 4.3207646 3701.5897 626.38154 -10579.719 0 207.07529 -0.0014155033 -0.0014292453 + 52400 -6247.3328 -6251.4953 4.1625664 3696.5962 626.80283 -10574.894 0 199.49354 -0.001284944 -0.0012994364 + 52410 -6247.1882 -6251.5869 4.398762 3689.3423 627.40257 -10568.332 0 210.81336 -0.0010618592 -0.0010792129 + 52420 -6246.9919 -6251.986 4.994157 3681.4703 627.88816 -10561.345 0 239.34802 -0.00080746646 -0.00082837398 + 52430 -6246.7478 -6252.5794 5.8315942 3674.8365 627.9306 -10555.347 0 279.48272 -0.00059737863 -0.0006207748 + 52440 -6246.4631 -6253.2115 6.7484168 3671.0425 627.26595 -10551.52 0 323.422 -0.00050113438 -0.00052493177 + 52450 -6246.1502 -6253.7267 7.5765585 3671.0147 625.78451 -10550.526 0 363.1112 -0.0005622868 -0.00058453051 + 52460 -6245.8255 -6254.011 8.1854402 3674.7372 623.58669 -10552.335 0 392.29222 -0.00078374404 -0.00080368754 + 52470 -6245.5041 -6254.0203 8.516147 3681.2214 620.99286 -10556.235 0 408.14155 -0.001122886 -0.0011416387 + 52480 -6245.1982 -6253.7779 8.5796285 3688.7463 618.50295 -10561.027 0 411.18394 -0.0014994754 -0.0015195743 + 52490 -6244.924 -6253.3391 8.4151151 3695.3197 616.70638 -10565.365 0 403.29953 -0.001815335 -0.0018388601 + 52500 -6244.7042 -6252.7613 8.0571594 3699.2173 616.14786 -10568.127 0 386.14428 -0.0019799678 -0.0020064557 + 52510 -6244.5529 -6252.1089 7.555953 3699.4334 617.1702 -10568.712 0 362.12367 -0.0019346615 -0.0019611252 + 52520 -6244.4575 -6251.4749 7.0174481 3695.9447 619.77987 -10567.2 0 336.31549 -0.0016696479 -0.0016931112 + 52530 -6244.3811 -6250.9749 6.593832 3689.7519 623.59227 -10564.319 0 316.01343 -0.001230641 -0.0012507023 + 52540 -6244.2865 -6250.7069 6.4203801 3682.6719 627.89196 -10561.271 0 307.70064 -0.00071143041 -0.00073041688 + 52550 -6244.1577 -6250.7152 6.5575042 3676.8881 631.80115 -10559.404 0 314.27239 -0.00023177495 -0.00025268056 + 52560 -6244.0034 -6250.9799 6.9764992 3674.3482 634.51019 -10559.838 0 334.35299 9.458557e-05 7.0453573e-05 + 52570 -6243.8487 -6251.4298 7.5810236 3676.1798 635.50026 -10563.11 0 363.32519 0.00019241213 0.0001665159 + 52580 -6243.721 -6251.9697 8.2487834 3682.3032 634.68522 -10568.958 0 395.32798 4.7773209e-05 2.3490644e-05 + 52590 -6243.6348 -6252.5168 8.8820131 3691.3759 632.42121 -10576.314 0 425.67591 -0.00028687623 -0.00030694291 + 52600 -6243.5893 -6253.0192 9.4298684 3701.1272 629.3815 -10583.528 0 451.9322 -0.00070918836 -0.00072609619 + 52610 -6243.5897 -6253.4309 9.8411785 3709.0225 626.34818 -10588.802 0 471.64449 -0.0011011895 -0.0011196096 + 52620 -6243.6768 -6253.6697 9.992809 3713.0296 623.99587 -10590.695 0 478.91148 -0.0013676341 -0.0013917374 + 52630 -6243.9156 -6253.6332 9.7176425 3712.1806 622.7284 -10588.542 0 465.72395 -0.0014610815 -0.0014902603 + 52640 -6244.3344 -6253.284 8.9495325 3706.7419 622.60391 -10582.63 0 428.91181 -0.0013858765 -0.0014152914 + 52650 -6244.8828 -6252.7061 7.8233858 3698.0396 623.3622 -10574.108 0 374.94054 -0.0011872249 -0.0012124242 + 52660 -6245.4598 -6252.0687 6.6089207 3688.0782 624.54015 -10564.687 0 316.73656 -0.0009348821 -0.00095515445 + 52670 -6245.9811 -6251.5416 5.5605062 3679.0553 625.62967 -10556.227 0 266.49066 -0.00070511971 -0.00072283452 + 52680 -6246.4154 -6251.2435 4.8280665 3672.8575 626.22335 -10550.324 0 231.38804 -0.00056203399 -0.00057999619 + 52690 -6246.7757 -6251.2362 4.4605129 3670.6574 626.11126 -10548.005 0 213.77281 -0.00054191996 -0.00056158271 + 52700 -6247.0925 -6251.5343 4.4418053 3672.7065 625.31676 -10549.558 0 212.87623 -0.0006455185 -0.00066676842 + 52710 -6247.3939 -6252.1061 4.7122055 3678.3516 624.07404 -10554.532 0 225.83533 -0.00084016871 -0.00086191672 + 52720 -6247.6973 -6252.8714 5.1741118 3686.2379 622.75768 -10561.867 0 247.97247 -0.0010702859 -0.0010911642 + 52730 -6248.0092 -6253.7094 5.7001616 3694.6394 621.78125 -10570.13 0 273.18373 -0.0012725634 -0.001291507 + 52740 -6248.3276 -6254.4793 6.1517321 3701.8495 621.48931 -10577.818 0 294.82552 -0.0013919382 -0.0014085234 + 52750 -6248.6457 -6255.051 6.4053351 3706.5572 622.06935 -10583.678 0 306.9796 -0.0013947768 -0.0014091619 + 52760 -6248.9534 -6255.3364 6.3829664 3708.117 623.50376 -10586.957 0 305.90757 -0.0012764106 -0.0012890235 + 52770 -6249.237 -6255.3146 6.0776461 3706.6452 625.57129 -10587.531 0 291.2749 -0.0010613935 -0.0010727692 + 52780 -6249.4802 -6255.0361 5.5559087 3702.9251 627.89718 -10585.858 0 266.27032 -0.00079680491 -0.00080764523 + 52790 -6249.6712 -6254.5988 4.9276594 3698.1658 630.04026 -10582.805 0 236.16109 -0.00054067822 -0.000551731 + 52800 -6249.8093 -6254.1115 4.3021508 3693.6819 631.59463 -10579.388 0 206.1832 -0.00034839799 -0.00035997717 + 52810 -6249.904 -6253.6656 3.7616063 3690.5721 632.27748 -10576.515 0 180.27728 -0.00026003148 -0.00027165903 + 52820 -6249.9656 -6253.3288 3.3632379 3689.4699 631.98004 -10574.779 0 161.18523 -0.00029152974 -0.00030227364 + 52830 -6249.9968 -6253.1487 3.1519374 3690.4297 630.77368 -10574.352 0 151.05853 -0.00043216697 -0.00044156561 + 52840 -6249.9911 -6253.1515 3.1604175 3692.9707 628.87793 -10575 0 151.46494 -0.00064891674 -0.00065768888 + 52850 -6249.9394 -6253.3317 3.3922466 3696.2494 626.60574 -10576.187 0 162.57549 -0.00089601342 -0.00090581531 + 52860 -6249.8384 -6253.6432 3.8048298 3699.2964 624.30249 -10577.242 0 182.34879 -0.0011260689 -0.001138358 + 52870 -6249.6937 -6254.0074 4.3137117 3701.2467 622.29115 -10577.545 0 206.73727 -0.0012991438 -0.0013140354 + 52880 -6249.5148 -6254.338 4.8231893 3701.5198 620.83 -10576.688 0 231.15429 -0.0013881211 -0.0014042384 + 52890 -6249.3066 -6254.5716 5.2650031 3699.9353 620.08425 -10574.591 0 252.32849 -0.0013810671 -0.0013966254 + 52900 -6249.0647 -6254.6813 5.6166228 3696.7606 620.1106 -10571.552 0 269.18008 -0.001282191 -0.0012964934 + 52910 -6248.7812 -6254.6663 5.8851501 3692.6844 620.85418 -10568.205 0 282.04941 -0.0011119601 -0.0011260253 + 52920 -6248.456 -6254.5295 6.0734286 3688.6987 622.1591 -10565.387 0 291.07278 -0.00090510044 -0.00092083114 + 52930 -6248.1037 -6254.2662 6.1625265 3685.8849 623.794 -10563.945 0 295.34285 -0.00070468469 -0.00072327796 + 52940 -6247.7476 -6253.8763 6.1286923 3685.138 625.49232 -10564.507 0 293.72133 -0.00055225241 -0.00057322091 + 52950 -6247.4062 -6253.3852 5.9789954 3686.9067 627.00407 -10567.296 0 286.54701 -0.00047659734 -0.00049818868 + 52960 -6247.0828 -6252.8556 5.7727912 3691.0358 628.1509 -10572.042 0 276.66454 -0.00048522511 -0.00050582379 + 52970 -6246.7652 -6252.3742 5.6090064 3696.7697 628.86997 -10578.014 0 268.81506 -0.00056160674 -0.00058094995 + 52980 -6246.4368 -6252.0222 5.5853566 3702.9205 629.22918 -10584.172 0 267.68163 -0.00066920911 -0.00068842193 + 52990 -6246.0901 -6251.8451 5.754999 3708.1533 629.4015 -10589.4 0 275.81184 -0.0007612169 -0.00078157187 + 53000 -6245.7332 -6251.8439 6.1107303 3711.3108 629.59916 -10592.754 0 292.86048 -0.00079339864 -0.00081482531 + 53010 -6245.3833 -6251.9919 6.6085248 3711.6977 629.98607 -10593.676 0 316.71759 -0.00073699822 -0.0007578166 + 53020 -6245.0546 -6252.2584 7.2037549 3709.2674 630.59883 -10592.125 0 345.24435 -0.0005889634 -0.00060725416 + 53030 -6244.7544 -6252.6117 7.8572869 3704.6742 631.30817 -10588.594 0 376.56527 -0.00037709971 -0.00039238049 + 53040 -6244.4924 -6253 8.5075858 3699.1514 631.84002 -10583.991 0 407.73125 -0.00015709171 -0.00017068023 + 53050 -6244.2886 -6253.3393 9.0506253 3694.2032 631.8579 -10579.4 0 433.75675 9.332858e-07 -1.2999076e-05 + 53060 -6244.1686 -6253.5276 9.3590174 3691.1724 631.0856 -10575.786 0 448.53663 3.4236315e-05 1.8637857e-05 + 53070 -6244.1484 -6253.4783 9.3298436 3690.8231 629.42852 -10573.73 0 447.13845 -8.9799556e-05 -0.00010683664 + 53080 -6244.2227 -6253.1573 8.9346424 3693.0895 627.04279 -10573.29 0 428.1982 -0.00035913184 -0.00037597233 + 53090 -6244.3606 -6252.6122 8.2515975 3697.0845 624.31981 -10574.017 0 395.46285 -0.00071658949 -0.00073136304 + 53100 -6244.5153 -6251.9757 7.4603989 3701.3764 621.79144 -10575.144 0 357.54417 -0.0010741154 -0.0010863824 + 53110 -6244.6433 -6251.4286 6.7853274 3704.4517 619.9938 -10575.874 0 325.19096 -0.0013375832 -0.001349183 + 53120 -6244.7247 -6251.1286 6.4039634 3705.2168 619.33393 -10575.679 0 306.91386 -0.001434513 -0.0014485109 + 53130 -6244.771 -6251.1473 6.3762487 3703.3592 619.99017 -10574.497 0 305.58561 -0.0013355559 -0.0013538826 + 53140 -6244.8134 -6251.4559 6.6424535 3699.4449 621.86265 -10572.763 0 318.34364 -0.0010626108 -0.0010845096 + 53150 -6244.8795 -6251.9613 7.0818228 3694.7345 624.58463 -10571.28 0 339.40068 -0.00068170454 -0.00070452046 + 53160 -6244.9781 -6252.5529 7.5748015 3690.8059 627.60062 -10570.959 0 363.02699 -0.00028433286 -0.00030589498 + 53170 -6245.104 -6253.1272 8.023208 3689.107 630.30198 -10572.536 0 384.51714 3.641886e-05 1.6110171e-05 + 53180 -6245.2541 -6253.5898 8.3356946 3690.5455 632.18686 -10576.322 0 399.49326 0.00020924173 0.00018854138 + 53190 -6245.4373 -6253.8597 8.4223569 3695.2036 632.99472 -10582.058 0 403.6466 0.00020305646 0.00018072711 + 53200 -6245.665 -6253.8932 8.2281506 3702.2491 632.76752 -10588.91 0 394.33915 3.6258174e-05 1.2856071e-05 + 53210 -6245.9328 -6253.7146 7.7818458 3710.1018 631.81347 -10595.63 0 372.94972 -0.00022774281 -0.00025057806 + 53220 -6246.2149 -6253.416 7.2011912 3716.8509 630.58659 -10600.854 0 345.12149 -0.00050036397 -0.00052173546 + 53230 -6246.4818 -6253.1127 6.6309084 3720.8101 629.52765 -10603.45 0 317.79034 -0.00069757507 -0.00071801126 + 53240 -6246.7208 -6252.8881 6.1673285 3721.0103 628.92332 -10602.822 0 295.57299 -0.0007672557 -0.00078758477 + 53250 -6246.9371 -6252.7759 5.8387845 3717.4514 628.82895 -10599.056 0 279.82731 -0.000702763 -0.0007228613 + 53260 -6247.1388 -6252.7785 5.6396958 3711.0568 629.07467 -10592.91 0 270.28587 -0.00053972506 -0.00055872036 + 53270 -6247.3262 -6252.8854 5.5591983 3703.3979 629.34559 -10585.629 0 266.42798 -0.00034118655 -0.00035857018 + 53280 -6247.4958 -6253.0698 5.5739761 3696.2905 629.30278 -10578.663 0 267.13621 -0.00017806095 -0.00019412693 + 53290 -6247.6492 -6253.2837 5.6344766 3691.3537 628.7024 -10573.34 0 270.03573 -0.00010951537 -0.0001247216 + 53300 -6247.7929 -6253.4732 5.6803114 3689.6213 627.47781 -10570.572 0 272.23239 -0.00016657954 -0.0001808722 + 53310 -6247.9303 -6253.6076 5.677297 3691.3022 625.76572 -10570.675 0 272.08793 -0.00034294286 -0.00035597309 + 53320 -6248.0566 -6253.6953 5.6387605 3695.7624 623.87529 -10573.333 0 270.24104 -0.00059650038 -0.00060846577 + 53330 -6248.163 -6253.7719 5.6088745 3701.7333 622.21297 -10577.718 0 268.80874 -0.00086178022 -0.0008738878 + 53340 -6248.246 -6253.8671 5.6210502 3707.6753 621.18491 -10582.727 0 269.39226 -0.0010688398 -0.0010827479 + 53350 -6248.3136 -6253.9786 5.6649895 3712.1821 621.09998 -10587.261 0 271.49808 -0.0011619235 -0.0011784805 + 53360 -6248.3819 -6254.0719 5.6900354 3714.3158 622.09313 -10590.481 0 272.69842 -0.001112414 -0.0011307758 + 53370 -6248.4621 -6254.1068 5.6447217 3713.7962 624.08435 -10591.987 0 270.52673 -0.00092394473 -0.00094205817 + 53380 -6248.5498 -6254.0693 5.5195346 3711.0248 626.78399 -10591.878 0 264.52707 -0.0006305411 -0.00064683467 + 53390 -6248.6265 -6253.9796 5.3531142 3706.9648 629.74625 -10590.691 0 256.55127 -0.00028962828 -0.00030444166 + 53400 -6248.6753 -6253.8731 5.1978101 3702.9078 632.46009 -10589.241 0 249.10822 2.9107748e-05 1.376932e-05 + 53410 -6248.6937 -6253.7771 5.0833376 3700.1555 634.45553 -10588.388 0 243.62206 0.00025850574 0.00024067054 + 53420 -6248.6931 -6253.7073 5.0141738 3699.6685 635.40125 -10588.777 0 240.30734 0.00035019502 0.0003294296 + 53430 -6248.6855 -6253.6772 4.9917781 3701.7793 635.17309 -10590.63 0 239.23401 0.00028761251 0.00026509922 + 53440 -6248.6736 -6253.6996 5.026069 3706.0737 633.87894 -10593.652 0 240.87743 9.0744996e-05 6.8277857e-05 + 53450 -6248.6505 -6253.7737 5.1231952 3711.4864 631.83166 -10597.092 0 245.53226 -0.00018936737 -0.00021034606 + 53460 -6248.604 -6253.8758 5.2717707 3716.5774 629.47251 -10599.926 0 252.65283 -0.00048425302 -0.00050309645 + 53470 -6248.5193 -6253.9672 5.4478827 3719.9064 627.26301 -10601.137 0 261.09311 -0.00072542897 -0.00074247725 + 53480 -6248.3819 -6254.0103 5.6283756 3720.4149 625.57574 -10600.001 0 269.74334 -0.00086121007 -0.00087775156 + 53490 -6248.1841 -6253.9777 5.7936527 3717.7253 624.61551 -10596.319 0 277.66435 -0.00086890658 -0.0008865014 + 53500 -6247.93 -6253.8571 5.9270935 3712.2659 624.39092 -10590.514 0 284.05958 -0.00075895782 -0.00077830478 + 53510 -6247.6314 -6253.6603 6.028906 3705.1757 624.74003 -10583.576 0 288.93901 -0.00056966843 -0.0005900891 + 53520 -6247.2953 -6253.429 6.1336978 3698.0261 625.39967 -10576.855 0 293.96121 -0.00035486808 -0.00037505492 + 53530 -6246.9186 -6253.2193 6.3006841 3692.4571 626.09577 -10571.772 0 301.96413 -0.00016931758 -0.00018854016 + 53540 -6246.4951 -6253.0686 6.5734841 3689.8242 626.62543 -10569.518 0 315.03824 -5.6085713e-05 -7.4550624e-05 + 53550 -6246.027 -6252.9747 6.9477192 3690.9056 626.90437 -10570.785 0 332.97369 -3.7783991e-05 -5.6009141e-05 + 53560 -6245.5275 -6252.908 7.3804373 3695.7049 626.97037 -10575.583 0 353.71197 -0.0001120962 -0.00013039185 + 53570 -6245.014 -6252.8414 7.8273974 3703.3991 626.95353 -10583.194 0 375.1328 -0.00025210703 -0.00027090177 + 53580 -6244.5031 -6252.7662 8.2630459 3712.4805 627.03463 -10592.281 0 396.01152 -0.00041197156 -0.0004323375 + 53590 -6244.0146 -6252.6788 8.6642438 3721.0788 627.40648 -10601.164 0 415.23918 -0.0005372692 -0.00056057847 + 53600 -6243.5766 -6252.5631 8.9865274 3727.3835 628.23701 -10608.184 0 430.68481 -0.00057783128 -0.00060459257 + 53610 -6243.2217 -6252.39 9.1682762 3730.0605 629.62377 -10612.074 0 439.39524 -0.00050036749 -0.00052933478 + 53620 -6242.9738 -6252.14 9.1661773 3728.5728 631.53695 -10612.25 0 439.29465 -0.00029843297 -0.00032688804 + 53630 -6242.8342 -6251.8344 9.0002199 3723.3302 633.7701 -10608.935 0 431.34104 2.7344325e-06 -2.262187e-05 + 53640 -6242.7768 -6251.5503 8.7734833 3715.6214 635.93526 -10603.107 0 420.47455 0.00034827054 0.00032624521 + 53650 -6242.7626 -6251.392 8.6293243 3707.3388 637.53076 -10596.262 0 413.56564 0.00066264065 0.00064074653 + 53660 -6242.7716 -6251.4231 8.6514612 3700.5535 638.07433 -10590.051 0 414.62656 0.00086464198 0.00083806553 + 53670 -6242.8262 -6251.613 8.7868535 3697.0064 637.25537 -10585.875 0 421.11532 0.00088763538 0.0008539782 + 53680 -6242.9779 -6251.8575 8.8796801 3697.6065 635.04695 -10584.511 0 425.56409 0.0007018716 0.00066381698 + 53690 -6243.2622 -6252.0641 8.8019676 3702.0967 631.73778 -10585.899 0 421.83968 0.00033076661 0.00029436201 + 53700 -6243.6651 -6252.2224 8.557274 3709.0693 627.87931 -10589.171 0 410.11258 -0.00014888134 -0.0001790451 + 53710 -6244.1358 -6252.3938 8.2580301 3716.391 624.17001 -10592.955 0 395.77114 -0.00062631433 -0.00065046529 + 53720 -6244.6296 -6252.6427 8.0130545 3721.8865 621.30698 -10595.836 0 384.03053 -0.00098868726 -0.0010109032 + 53730 -6245.1363 -6252.9759 7.8395776 3724.006 619.83449 -10596.816 0 375.71655 -0.001152656 -0.0011769885 + 53740 -6245.673 -6253.3339 7.6609082 3722.2535 620.01865 -10595.606 0 367.15371 -0.0010857098 -0.0011128018 + 53750 -6246.254 -6253.6263 7.3722823 3717.2736 621.7759 -10592.676 0 353.32113 -0.00081270871 -0.00083921603 + 53760 -6246.8625 -6253.7908 6.9282881 3710.6077 624.67836 -10589.077 0 332.04244 -0.0004071798 -0.00042834381 + 53770 -6247.4448 -6253.8383 6.3934407 3704.2287 628.04718 -10586.114 0 306.40955 2.9145495e-05 1.5471018e-05 + 53780 -6247.9363 -6253.8443 5.9079534 3700.0197 631.12141 -10584.985 0 283.14228 0.00039181167 0.00038280427 + 53790 -6248.3006 -6253.8856 5.5850505 3699.3332 633.25891 -10586.478 0 267.66696 0.00059751479 0.00058694864 + 53800 -6248.5524 -6253.9745 5.4221244 3702.6827 634.10659 -10590.764 0 259.85863 0.00060258235 0.00058547613 + 53810 -6248.7454 -6254.0489 5.3034317 3709.5815 633.68439 -10597.315 0 254.1702 0.00041418808 0.0003909544 + 53820 -6248.9334 -6254.0335 5.1000498 3718.5682 632.35654 -10604.958 0 244.423 9.1746886e-05 6.825173e-05 + 53830 -6249.1299 -6253.9198 4.7898643 3727.4827 630.70208 -10612.105 0 229.55717 -0.00026520742 -0.00028221156 + 53840 -6249.2993 -6253.7917 4.4923599 3734.0089 629.33069 -10617.131 0 215.29909 -0.00054398435 -0.00055259249 + 53850 -6249.3892 -6253.7662 4.3770473 3736.3651 628.70339 -10618.835 0 209.77267 -0.00065469885 -0.00065985332 + 53860 -6249.3779 -6253.8954 4.517475 3733.8951 629.00656 -10616.797 0 216.50275 -0.0005618689 -0.00057161394 + 53870 -6249.299 -6254.1191 4.820143 3727.3016 630.1046 -10611.525 0 231.0083 -0.00029722887 -0.00031620591 + 53880 -6249.2187 -6254.3145 5.0957926 3718.4089 631.57985 -10604.303 0 244.21897 5.2687569e-05 2.6962544e-05 + 53890 -6249.1859 -6254.396 5.2101029 3709.5636 632.85527 -10596.815 0 249.69737 0.00037807948 0.00035305575 + 53900 -6249.1965 -6254.3757 5.1792231 3702.9381 633.37335 -10590.687 0 248.21743 0.00058177658 0.00056390399 + 53910 -6249.2023 -6254.3375 5.1351623 3699.9879 632.77793 -10587.103 0 246.10579 0.00060572257 0.00059570706 + 53920 -6249.1515 -6254.3571 5.2056127 3701.1868 631.03635 -10586.58 0 249.48217 0.00044212473 0.00043483103 + 53930 -6249.0269 -6254.438 5.4111422 3706.0256 628.46009 -10588.924 0 259.3323 0.00013063564 0.00011916797 + 53940 -6248.8572 -6254.5076 5.6504116 3713.2003 625.62 -10593.328 0 270.79943 -0.000254176 -0.00027347931 + 53950 -6248.6952 -6254.47 5.7747118 3720.9238 623.18828 -10598.582 0 276.75659 -0.00062082628 -0.00064598225 + 53960 -6248.5797 -6254.2772 5.6974387 3727.3115 621.76013 -10603.349 0 273.05323 -0.00088075875 -0.00090588348 + 53970 -6248.5069 -6253.9712 5.464234 3730.8022 621.70804 -10606.481 0 261.87675 -0.00096701964 -0.00098696607 + 53980 -6248.4328 -6253.6645 5.231738 3730.5483 623.10399 -10607.317 0 250.73424 -0.00084941827 -0.00086393071 + 53990 -6248.3069 -6253.4666 5.1597132 3726.6834 625.71881 -10605.869 0 247.28241 -0.00054388608 -0.00055791827 + 54000 -6248.114 -6253.4031 5.2890293 3720.3568 629.08481 -10602.845 0 253.47996 -0.00011272192 -0.00013223 + 54010 -6247.8895 -6253.3984 5.5088936 3713.4566 632.59699 -10599.452 0 264.01709 0.00034797103 0.00032153343 + 54020 -6247.6903 -6253.348 5.6576459 3708.0584 635.6301 -10597.036 0 271.14614 0.00073364905 0.0007051695 + 54030 -6247.5426 -6253.2207 5.678113 3705.7881 637.65619 -10596.665 0 272.12703 0.00096176349 0.00093855977 + 54040 -6247.4137 -6253.0994 5.6856922 3707.3581 638.34745 -10598.805 0 272.49027 0.00099428598 0.00097959761 + 54050 -6247.2355 -6253.1164 5.8809575 3712.4379 637.64445 -10603.199 0 281.84848 0.00084283759 0.00083239391 + 54060 -6246.9617 -6253.3346 6.3728733 3719.845 635.77013 -10608.95 0 305.42385 0.00055718303 0.00054211727 + 54070 -6246.6154 -6253.6703 7.0548379 3727.9018 633.18024 -10614.752 0 338.10742 0.00020660983 0.00018083427 + 54080 -6246.2836 -6253.9324 7.6487668 3734.7959 630.45502 -10619.183 0 366.57182 -0.00013534538 -0.00016932061 + 54090 -6246.0512 -6253.961 7.9097151 3738.8774 628.15463 -10620.993 0 379.07793 -0.00039943162 -0.00043191178 + 54100 -6245.9275 -6253.7544 7.8268228 3738.9435 626.68081 -10619.379 0 375.10526 -0.00052801778 -0.00055045272 + 54110 -6245.8396 -6253.4616 7.6220209 3734.5696 626.19413 -10614.225 0 365.29001 -0.00048805672 -0.00050084498 + 54120 -6245.7071 -6253.2395 7.5324626 3726.4026 626.6107 -10606.253 0 360.99787 -0.00028709743 -0.0002991195 + 54130 -6245.5213 -6253.1149 7.5936172 3716.1942 627.6608 -10596.97 0 363.92875 2.0212787e-05 -1.5915751e-08 + 54140 -6245.3485 -6252.9896 7.6411111 3706.4116 628.97142 -10588.373 0 366.20492 0.00034545811 0.00031593925 + 54150 -6245.2607 -6252.7716 7.510854 3699.5179 630.14879 -10582.438 0 359.96227 0.00059606407 0.0005642126 + 54160 -6245.2679 -6252.4862 7.2183482 3697.2411 630.85823 -10580.586 0 345.94375 0.00070577215 0.00067971152 + 54170 -6245.3154 -6252.2668 6.9513446 3700.1297 630.90146 -10583.298 0 333.14744 0.00065179836 0.00063388072 + 54180 -6245.3359 -6252.2471 6.9111647 3707.498 630.27852 -10590.024 0 331.22179 0.00045548286 0.00044092803 + 54190 -6245.3051 -6252.4569 7.1517934 3717.6824 629.21276 -10599.352 0 342.75407 0.00017222976 0.00015350533 + 54200 -6245.2622 -6252.793 7.5308316 3728.4659 628.11812 -10609.377 0 360.9197 -0.00012240002 -0.00014937893 + 54210 -6245.2859 -6253.0846 7.798713 3737.5529 627.49714 -10618.135 0 373.75809 -0.00034736734 -0.0003799689 + 54220 -6245.4388 -6253.2091 7.7702967 3743.0295 627.78122 -10624.02 0 372.39622 -0.00043214006 -0.00046331113 + 54230 -6245.7202 -6253.174 7.4537493 3743.783 629.16188 -10626.119 0 357.22549 -0.00033492233 -0.0003592585 + 54240 -6246.0737 -6253.0965 7.0227233 3739.8265 631.48888 -10624.412 0 336.56831 -5.9857301e-05 -7.7969398e-05 + 54250 -6246.442 -6253.1015 6.6594921 3732.3887 634.29127 -10619.781 0 319.16023 0.00033595852 0.0003187122 + 54260 -6246.8098 -6253.2371 6.4272455 3723.6317 636.91491 -10613.784 0 308.02967 0.00075422174 0.00073273368 + 54270 -6247.196 -6253.4694 6.2733824 3716.0249 638.71454 -10608.209 0 300.65568 0.0010843195 0.001057405 + 54280 -6247.6188 -6253.73 6.1112747 3711.6034 639.22857 -10604.562 0 292.88657 0.0012371523 0.0012074934 + 54290 -6248.074 -6253.9584 5.8844678 3711.3967 638.28841 -10603.644 0 282.01671 0.001170495 0.0011423062 + 54300 -6248.5355 -6254.1245 5.5889327 3715.1965 636.04534 -10605.366 0 267.85301 0.00089906988 0.00087560024 + 54310 -6248.9658 -6254.2383 5.2725608 3721.6897 632.92325 -10608.851 0 252.6907 0.00048880382 0.00047058358 + 54320 -6249.3306 -6254.3396 5.0090444 3728.8925 629.5209 -10612.753 0 240.06151 3.7908916e-05 2.238155e-05 + 54330 -6249.6177 -6254.4589 4.8411478 3734.7473 626.48864 -10615.695 0 232.01497 -0.00034991372 -0.00036663758 + 54340 -6249.8455 -6254.582 4.7365745 3737.6906 624.39666 -10616.669 0 227.00323 -0.0005919043 -0.00061191542 + 54350 -6250.0477 -6254.6616 4.6138589 3737.0169 623.61133 -10615.29 0 221.12201 -0.00064417605 -0.00066593877 + 54360 -6250.2452 -6254.669 4.4238082 3732.9746 624.20692 -10611.851 0 212.01371 -0.00050777191 -0.00052756479 + 54370 -6250.4286 -6254.6299 4.2012465 3726.6439 625.9462 -10607.22 0 201.34731 -0.000224807 -0.00024014082 + 54380 -6250.5711 -6254.604 4.0329251 3719.6764 628.34642 -10602.627 0 193.2804 0.00013202385 0.00012026898 + 54390 -6250.6536 -6254.6325 3.9788908 3713.9323 630.81307 -10599.378 0 190.69077 0.0004750237 0.0004634941 + 54400 -6250.6808 -6254.7038 4.0229959 3711.0471 632.79786 -10598.549 0 192.80454 0.00072119203 0.00070686112 + 54410 -6250.6763 -6254.7644 4.0880703 3712.002 633.93322 -10600.7 0 195.92327 0.00081304678 0.00079550797 + 54420 -6250.6644 -6254.7608 4.0964015 3716.8161 634.10915 -10605.686 0 196.32254 0.00073504904 0.00071666237 + 54430 -6250.6518 -6254.6839 4.0321465 3724.4766 633.47778 -10612.638 0 193.24308 0.00051958203 0.00050342455 + 54440 -6250.6202 -6254.5828 3.962563 3733.1637 632.3918 -10620.138 0 189.90826 0.00023877151 0.0002258489 + 54450 -6250.5388 -6254.5325 3.9937229 3740.7351 631.29946 -10626.567 0 191.40161 -1.6801041e-05 -2.8792954e-05 + 54460 -6250.3885 -6254.5729 4.1843784 3745.3254 630.62379 -10630.522 0 200.53889 -0.00016581112 -0.00018076211 + 54470 -6250.179 -6254.6708 4.4917857 3745.8531 630.64886 -10631.173 0 215.27157 -0.00016028022 -0.0001802309 + 54480 -6249.9393 -6254.7463 4.8070453 3742.2697 631.43308 -10628.449 0 230.38058 2.1198741e-06 -2.1136383e-05 + 54490 -6249.6897 -6254.7381 5.0484514 3735.5133 632.77349 -10623.025 0 241.95012 0.00027954301 0.00025680396 + 54500 -6249.4232 -6254.6431 5.2198603 3727.2449 634.24417 -10616.132 0 250.16499 0.00059795301 0.00057815046 + 54510 -6249.1145 -6254.4981 5.3835708 3719.4608 635.31215 -10609.271 0 258.01092 0.00086940512 0.00085142496 + 54520 -6248.7459 -6254.3314 5.5855867 3714.0407 635.50296 -10603.875 0 267.69266 0.0010136328 0.00099383081 + 54530 -6248.3282 -6254.1334 5.8051815 3712.2923 634.5628 -10600.988 0 278.21687 0.00097970693 0.00095500292 + 54540 -6247.9002 -6253.8681 5.9678678 3714.585 632.5603 -10601.013 0 286.01371 0.00076279532 0.00073338157 + 54550 -6247.506 -6253.518 6.0119832 3720.1935 629.88851 -10603.6 0 288.12797 0.00041025194 0.00037981898 + 54560 -6247.1643 -6253.1272 5.9629649 3727.4438 627.1619 -10607.733 0 285.77874 1.2884921e-05 -1.40906e-05 + 54570 -6246.853 -6252.805 5.9519817 3734.1731 625.04368 -10612.022 0 285.25236 -0.00031872492 -0.00034080477 + 54580 -6246.528 -6252.668 6.1400504 3738.3959 624.06508 -10615.129 0 294.26567 -0.00048726841 -0.000507664 + 54590 -6246.1653 -6252.7534 6.5880704 3738.9514 624.49346 -10616.198 0 315.7373 -0.00044006621 -0.00046401697 + 54600 -6245.7914 -6252.9775 7.1860801 3735.8757 626.27603 -10615.129 0 344.39728 -0.00018615447 -0.00021601909 + 54610 -6245.467 -6253.1888 7.7217596 3730.3423 629.05763 -10612.589 0 370.07004 0.00020819654 0.00017544452 + 54620 -6245.2372 -6253.2728 8.0356166 3724.225 632.2629 -10609.761 0 385.11184 0.00064276616 0.00061300633 + 54630 -6245.0958 -6253.2202 8.1244901 3719.4936 635.2318 -10607.946 0 389.37115 0.0010146864 0.00099137905 + 54640 -6244.9969 -6253.1084 8.1115233 3717.6646 637.38496 -10608.158 0 388.74971 0.0012458805 0.0012268449 + 54650 -6244.901 -6253.0231 8.122089 3719.4406 638.37573 -10610.839 0 389.25608 0.0012993098 0.0012783706 + 54660 -6244.813 -6252.987 8.1740537 3724.5719 638.1782 -10615.737 0 391.74652 0.00118283 0.0011550476 + 54670 -6244.7785 -6252.9524 8.1739582 3731.9215 637.07513 -10621.949 0 391.74194 0.00094363472 0.00090977554 + 54680 -6244.8402 -6252.8658 8.0256619 3739.7099 635.54573 -10628.121 0 384.63475 0.00065632541 0.00062245776 + 54690 -6244.9911 -6252.744 7.7528817 3745.931 634.09419 -10632.769 0 371.56159 0.00040507153 0.00037715864 + 54700 -6245.173 -6252.6795 7.5065711 3748.8982 633.08704 -10634.665 0 359.75701 0.00026030973 0.00023854453 + 54710 -6245.3257 -6252.758 7.4322781 3747.7783 632.66076 -10633.197 0 356.19647 0.00025563351 0.0002340522 + 54720 -6245.4419 -6252.966 7.5240694 3742.8904 632.72338 -10628.58 0 360.59562 0.0003758187 0.00034780504 + 54730 -6245.5706 -6253.189 7.6184326 3735.599 633.02805 -10621.816 0 365.11804 0.00056430731 0.00052869948 + 54740 -6245.7672 -6253.3059 7.5387038 3727.8334 633.27459 -10614.414 0 361.29699 0.00074740639 0.00070941813 + 54750 -6246.0403 -6253.2872 7.2469436 3721.4648 633.20216 -10607.954 0 347.3142 0.00086216879 0.00082865127 + 54760 -6246.3448 -6253.2097 6.8648767 3717.8107 632.65566 -10603.676 0 329.00341 0.00087449889 0.00084828021 + 54770 -6246.6218 -6253.184 6.5621092 3717.4067 631.62259 -10602.213 0 314.49309 0.00078262931 0.00076082376 + 54780 -6246.8446 -6253.2671 6.4225056 3720.0254 630.24062 -10603.533 0 307.8025 0.00061034225 0.00058747451 + 54790 -6247.0313 -6253.4296 6.3983267 3724.8384 628.77429 -10607.042 0 306.64372 0.00039746188 0.00037020679 + 54800 -6247.2212 -6253.5964 6.3751835 3730.6322 627.55949 -10611.788 0 305.53457 0.00019191542 0.00016138257 + 54810 -6247.4377 -6253.7164 6.2786834 3736.0561 626.92262 -10616.695 0 300.90974 4.253261e-05 1.257553e-05 + 54820 -6247.671 -6253.798 6.1269854 3739.9052 627.09357 -10620.797 0 293.63952 -1.0123921e-05 -3.6533315e-05 + 54830 -6247.8924 -6253.8844 5.9920227 3741.4113 628.13928 -10623.435 0 287.17135 5.5335616e-05 3.2430681e-05 + 54840 -6248.0823 -6254.0012 5.918987 3740.4538 629.94074 -10624.396 0 283.67107 0.00023294851 0.00021141295 + 54850 -6248.2438 -6254.1286 5.8847912 3737.596 632.22062 -10623.945 0 282.03221 0.0004890303 0.00046716156 + 54860 -6248.3931 -6254.2211 5.8280187 3733.9124 634.60846 -10622.742 0 279.31136 0.00077073181 0.00074872344 + 54870 -6248.5389 -6254.2493 5.7104034 3730.6687 636.71848 -10621.637 0 273.67457 0.0010196697 0.00099886008 + 54880 -6248.6742 -6254.2203 5.5461191 3728.9697 638.21651 -10621.407 0 265.80115 0.0011850896 0.0011662233 + 54890 -6248.7851 -6254.1637 5.3785305 3729.4741 638.86693 -10622.505 0 257.76936 0.0012334247 0.0012158758 + 54900 -6248.8645 -6254.1049 5.2404138 3732.2285 638.56416 -10624.898 0 251.15003 0.0011543289 0.001136817 + 54910 -6248.9156 -6254.0562 5.14053 3736.6367 637.35611 -10628.049 0 246.36304 0.00096382166 0.00094549908 + 54920 -6248.9449 -6254.0242 5.0793005 3741.5778 635.45644 -10631.058 0 243.42858 0.00070340087 0.00068411758 + 54930 -6248.9545 -6254.0181 5.0635861 3745.6696 633.22812 -10632.916 0 242.67546 0.00043298879 0.00041276334 + 54940 -6248.9433 -6254.043 5.0996758 3747.6292 631.11925 -10632.791 0 244.40508 0.00021728481 0.00019589764 + 54950 -6248.9128 -6254.0876 5.1747283 3746.6388 629.5518 -10630.278 0 248.00201 0.00010844176 8.5739812e-05 + 54960 -6248.8706 -6254.1222 5.2515621 3742.6062 628.79622 -10625.525 0 251.68432 0.00013057858 0.00010715427 + 54970 -6248.8263 -6254.116 5.2896714 3736.2413 628.88483 -10619.242 0 253.51073 0.00027188797 0.00024926427 + 54980 -6248.782 -6254.0642 5.2822259 3728.9198 629.60549 -10612.59 0 253.15391 0.00048760212 0.00046731879 + 54990 -6248.7249 -6254.0041 5.2792111 3722.3682 630.58027 -10606.953 0 253.00942 0.00071274547 0.00069470108 + 55000 -6248.6334 -6253.9986 5.3652295 3718.253 631.39706 -10603.649 0 257.1319 0.00087994768 0.00086143539 + 55010 -6248.4961 -6254.0875 5.5913362 3717.7736 631.74671 -10603.608 0 267.9682 0.00093707612 0.00091402033 + 55020 -6248.3329 -6254.2417 5.90883 3721.3349 631.52305 -10607.1 0 283.18429 0.00086150313 0.00083176627 + 55030 -6248.1926 -6254.3649 6.1723655 3728.3578 630.85935 -10613.582 0 295.81439 0.00066929818 0.00063559185 + 55040 -6248.1213 -6254.3573 6.2360089 3737.2975 630.09231 -10621.747 0 298.86454 0.00041674626 0.00038595867 + 55050 -6248.12 -6254.1975 6.0775052 3745.9474 629.66434 -10629.809 0 291.26815 0.00019012742 0.00016838814 + 55060 -6248.135 -6253.967 5.8319937 3752.0366 629.98967 -10635.993 0 279.50186 8.147354e-05 6.8628533e-05 + 55070 -6248.101 -6253.781 5.6799801 3753.9711 631.31634 -10639.068 0 272.21651 0.00015506787 0.00014399447 + 55080 -6248.0009 -6253.6846 5.6836498 3751.4121 633.61538 -10638.712 0 272.39239 0.00041823813 0.00040055341 + 55090 -6247.8828 -6253.6207 5.7378541 3745.3999 636.53149 -10635.552 0 274.99016 0.00081243585 0.00078577692 + 55100 -6247.8152 -6253.5077 5.6925665 3737.9561 639.43032 -10630.894 0 272.81973 0.0012315556 0.0012016146 + 55110 -6247.8225 -6253.3463 5.5237923 3731.3697 641.55529 -10626.271 0 264.73112 0.0015589163 0.0015343006 + 55120 -6247.8621 -6253.244 5.3819098 3727.4968 642.25567 -10622.996 0 257.93132 0.001704629 0.0016892738 + 55130 -6247.8601 -6253.3302 5.4700856 3727.3073 641.20266 -10621.84 0 262.1572 0.0016284531 0.0016182386 + 55140 -6247.7746 -6253.6329 5.8582979 3730.7368 638.50972 -10622.879 0 280.76251 0.0013446996 0.001331078 + 55150 -6247.6337 -6254.0244 6.3906973 3736.7716 634.71305 -10625.509 0 306.27807 0.00091474184 0.00089232551 + 55160 -6247.5155 -6254.2931 6.7775196 3743.6826 630.62117 -10628.597 0 324.81677 0.00043360853 0.00040516638 + 55170 -6247.4799 -6254.299 6.8190476 3749.3861 627.08752 -10630.773 0 326.80702 1.2312659e-05 -1.3697947e-05 + 55180 -6247.5099 -6254.0844 6.5744519 3751.9535 624.78737 -10630.825 0 315.08462 -0.00024610622 -0.00026373956 + 55190 -6247.5271 -6253.833 6.3058856 3750.2197 624.07237 -10628.125 0 302.21342 -0.00027554711 -0.00028748953 + 55200 -6247.4688 -6253.7077 6.2389255 3744.2815 624.93074 -10622.92 0 299.00432 -7.0964882e-05 -8.6272876e-05 + 55210 -6247.3485 -6253.7203 6.3717833 3735.6001 627.03214 -10616.353 0 305.37161 0.0003061728 0.00028059468 + 55220 -6247.242 -6253.75 6.5080893 3726.5782 629.82377 -10610.152 0 311.90416 0.00074733494 0.00071323653 + 55230 -6247.216 -6253.6743 6.4583096 3719.7772 632.65919 -10606.111 0 309.51843 0.0011336989 0.0011001128 + 55240 -6247.2701 -6253.4829 6.2128587 3717.1234 634.94674 -10605.553 0 297.75505 0.0013736287 0.0013492884 + 55250 -6247.337 -6253.2845 5.9475406 3719.4064 636.28967 -10608.981 0 285.03952 0.0014257672 0.0014119657 + 55260 -6247.337 -6253.2149 5.8779202 3726.1826 636.5783 -10615.976 0 281.70292 0.0013021847 0.001291658 + 55270 -6247.2393 -6253.326 6.0866446 3736.0061 636.0047 -10625.337 0 291.70616 0.0010562283 0.001038699 + 55280 -6247.0875 -6253.5391 6.4516091 3746.823 634.99373 -10635.356 0 309.19731 0.00076430205 0.0007345302 + 55290 -6246.9695 -6253.7012 6.7317082 3756.3917 634.06691 -10644.16 0 322.62123 0.00050868154 0.00047094255 + 55300 -6246.9497 -6253.7082 6.7584927 3762.6753 633.67518 -10650.059 0 323.90489 0.00036294914 0.00032801084 + 55310 -6247.0142 -6253.5972 6.5830423 3764.2333 634.05281 -10651.883 0 315.49633 0.00037747577 0.00035392967 + 55320 -6247.0816 -6253.5152 6.4336337 3760.613 635.14519 -10649.273 0 308.33583 0.00056364631 0.00055087405 + 55330 -6247.0769 -6253.5805 6.5035377 3752.6238 636.63358 -10642.838 0 311.68602 0.00088220611 0.00087144558 + 55340 -6246.998 -6253.766 6.7679255 3742.277 638.03686 -10634.08 0 324.35697 0.0012462417 0.0012286672 + 55350 -6246.9124 -6253.92 7.0076141 3732.2713 638.84717 -10625.038 0 335.84419 0.0015447293 0.0015188204 + 55360 -6246.8929 -6253.8988 7.0058644 3725.1689 638.66336 -10617.731 0 335.76033 0.0016796479 0.0016514654 + 55370 -6246.9558 -6253.6812 6.725387 3722.6155 637.29921 -10613.596 0 322.31828 0.0015996301 0.0015767895 + 55380 -6247.0547 -6253.3778 6.3231235 3724.9179 634.84683 -10613.143 0 303.03956 0.0013151279 0.0013003852 + 55390 -6247.1239 -6253.1465 6.0226252 3731.0844 631.67869 -10615.91 0 288.63799 0.00089157436 0.00088101548 + 55400 -6247.1291 -6253.0896 5.9604087 3739.2254 628.38406 -10620.699 0 285.65623 0.00042776201 0.00041426544 + 55410 -6247.0904 -6253.1994 6.1090454 3747.1141 625.64981 -10625.963 0 292.77973 2.9887844e-05 8.8561675e-06 + 55420 -6247.0636 -6253.3817 6.3181135 3752.7278 624.1057 -10630.215 0 302.79945 -0.00021125726 -0.00023824237 + 55430 -6247.0954 -6253.5372 6.4418061 3754.6678 624.16507 -10632.37 0 308.7275 -0.00023710449 -0.00026368218 + 55440 -6247.1841 -6253.6374 6.4532525 3752.4437 625.90596 -10631.987 0 309.27607 -3.2478162e-05 -5.3015811e-05 + 55450 -6247.2836 -6253.727 6.4434673 3746.6266 629.03598 -10629.39 0 308.80711 0.00036848975 0.0003540614 + 55460 -6247.3473 -6253.8572 6.5098819 3738.8112 632.95689 -10625.625 0 311.99007 0.0008843029 0.00087063012 + 55470 -6247.3696 -6254.0216 6.6520559 3731.2923 636.90561 -10622.22 0 318.80384 0.001400375 0.0013812741 + 55480 -6247.3876 -6254.1579 6.7702423 3726.4514 640.12898 -10620.738 0 324.468 0.0017963066 0.0017694774 + 55490 -6247.4503 -6254.1963 6.7459665 3726.0262 642.05151 -10622.274 0 323.30456 0.0019792409 0.0019476246 + 55500 -6247.5839 -6254.1078 6.5239266 3730.5301 642.40158 -10627.039 0 312.66317 0.0019115299 0.0018811007 + 55510 -6247.7759 -6253.9223 6.146406 3739.0415 641.26595 -10634.23 0 294.57026 0.001622308 0.001598174 + 55520 -6247.9823 -6253.7164 5.7341509 3749.4422 639.05555 -10642.214 0 274.81268 0.0011984953 0.001181603 + 55530 -6248.1538 -6253.5757 5.4219759 3759.0337 636.39025 -10649 0 259.85151 0.00075807303 0.00074452066 + 55540 -6248.2679 -6253.5436 5.2757849 3765.3223 633.93345 -10652.799 0 252.84522 0.00041473983 0.00039852446 + 55550 -6248.3445 -6253.5937 5.249289 3766.7057 632.21811 -10652.518 0 251.57538 0.00024626083 0.00022383903 + 55560 -6248.4287 -6253.6587 5.2300117 3762.8435 631.50954 -10648.012 0 250.6515 0.00027699582 0.00025003444 + 55570 -6248.5524 -6253.698 5.1456733 3754.6511 631.74742 -10640.097 0 246.60954 0.00047815118 0.0004519817 + 55580 -6248.7079 -6253.7397 5.0317593 3744.0053 632.59 -10630.335 0 241.15014 0.00078139483 0.00076056705 + 55590 -6248.8586 -6253.8547 4.996119 3733.297 633.54434 -10620.696 0 239.44206 0.001098311 0.0010831865 + 55600 -6248.9701 -6254.0893 5.1192273 3724.9231 634.13017 -10613.143 0 245.34209 0.0013405145 0.0013274744 + 55610 -6249.0369 -6254.4158 5.3789235 3720.7758 634.02012 -10609.212 0 257.7882 0.0014385282 0.0014231113 + 55620 -6249.0838 -6254.7374 5.6536324 3721.8031 633.12231 -10609.663 0 270.95379 0.0013581265 0.0013384331 + 55630 -6249.1461 -6254.9432 5.7970411 3727.7431 631.59763 -10614.284 0 277.82673 0.0011112074 0.0010890812 + 55640 -6249.2411 -6254.9743 5.7331499 3737.1353 629.81911 -10621.929 0 274.76471 0.00075684649 0.0007360309 + 55650 -6249.353 -6254.8579 5.5049567 3747.6553 628.28682 -10630.8 0 263.82841 0.00038929205 0.00037200097 + 55660 -6249.4448 -6254.6813 5.2365519 3756.7198 627.51444 -10638.916 0 250.96495 0.00011389554 9.8652496e-05 + 55670 -6249.4894 -6254.5226 5.0332082 3762.1883 627.90599 -10644.617 0 241.21958 1.7387092e-05 1.8495102e-07 + 55680 -6249.4931 -6254.3937 4.9005824 3762.9327 629.64224 -10646.969 0 234.8634 0.00014221393 0.00012024814 + 55690 -6249.4896 -6254.2468 4.7571565 3759.0905 632.60025 -10645.938 0 227.98963 0.00047375724 0.00044841882 + 55700 -6249.5064 -6254.041 4.5345762 3751.9503 636.33377 -10642.325 0 217.32234 0.00094420833 0.00092031243 + 55710 -6249.5352 -6253.8083 4.273128 3743.5611 640.13795 -10637.507 0 204.79227 0.0014501929 0.0014318221 + 55720 -6249.533 -6253.6511 4.1180545 3736.2203 643.19875 -10633.07 0 197.36028 0.0018771115 0.0018637756 + 55730 -6249.4536 -6253.6701 4.2164945 3731.9544 644.79287 -10630.417 0 202.07807 0.0021238994 0.0021105039 + 55740 -6249.2804 -6253.8843 4.6039151 3732.0559 644.48091 -10630.421 0 220.64545 0.0021249816 0.0021057159 + 55750 -6249.0366 -6254.207 5.1704804 3736.7269 642.23711 -10633.171 0 247.79843 0.0018674609 0.0018404843 + 55760 -6248.7662 -6254.4973 5.7311407 3744.9194 638.47662 -10637.893 0 274.66842 0.0013999728 0.0013691578 + 55770 -6248.4987 -6254.6472 6.1484901 3754.4784 633.96746 -10643.093 0 294.67015 0.00082778618 0.00079992572 + 55780 -6248.2227 -6254.6404 6.417655 3762.6381 629.64671 -10646.925 0 307.57004 0.00029035146 0.00026970646 + 55790 -6247.8936 -6254.5382 6.6446477 3766.7918 626.39253 -10647.723 0 318.4488 -7.5866629e-05 -9.1417245e-05 + 55800 -6247.4743 -6254.4039 6.9295862 3765.3114 624.81751 -10644.533 0 332.10465 -0.00017806232 -0.00019578181 + 55810 -6246.9797 -6254.2312 7.2515075 3758.1201 625.13512 -10637.486 0 347.53293 4.1106036e-06 -2.2297494e-05 + 55820 -6246.4804 -6253.9482 7.4677746 3746.7817 627.12325 -10627.853 0 357.89766 0.00041347067 0.00037833248 + 55830 -6246.0536 -6253.5005 7.4469406 3734.0581 630.18794 -10617.747 0 356.89918 0.00093565326 0.00089841752 + 55840 -6245.7207 -6252.935 7.214224 3723.1226 633.51813 -10609.576 0 345.74609 0.0014349825 0.001403076 + 55850 -6245.4345 -6252.3942 6.9597206 3716.7326 636.30194 -10605.429 0 333.54886 0.0017909436 0.0017660642 + 55860 -6245.1264 -6252.0228 6.8963321 3716.5936 637.94751 -10606.564 0 330.51093 0.0019251417 0.0019021201 + 55870 -6244.7677 -6251.8732 7.1054552 3722.9907 638.23989 -10613.104 0 340.53328 0.0018168539 0.0017885383 + 55880 -6244.3887 -6251.8969 7.5082334 3734.6891 637.38416 -10623.97 0 359.83667 0.0015081643 0.001471461 + 55890 -6244.0477 -6252.0134 7.9656965 3749.1371 635.925 -10637.075 0 381.76087 0.0010967578 0.0010546328 + 55900 -6243.7855 -6252.1786 8.3931373 3763.0151 634.57175 -10649.765 0 402.24623 0.00071301159 0.0006716065 + 55910 -6243.6052 -6252.3953 8.7900996 3773.0633 633.98079 -10659.439 0 421.2709 0.00048350732 0.00044751515 + 55920 -6243.4843 -6252.6772 9.1928995 3776.9607 634.55231 -10664.19 0 440.57532 0.00049165539 0.00046127021 + 55930 -6243.4023 -6253.0085 9.6062321 3773.9813 636.29545 -10663.285 0 460.38454 0.00074925895 0.00072024391 + 55940 -6243.3704 -6253.3203 9.9498866 3765.2181 638.80631 -10657.345 0 476.8544 0.0011892834 0.0011563253 + 55950 -6243.438 -6253.5026 10.064614 3753.2686 641.37453 -10648.146 0 482.35278 0.0016844641 0.0016457632 + 55960 -6243.6578 -6253.47 9.8122528 3741.4273 643.19188 -10638.089 0 470.25821 0.0020881493 0.0020470746 + 55970 -6244.0354 -6253.2338 9.1983715 3732.6628 643.59954 -10629.496 0 440.83757 0.0022822984 0.0022442174 + 55980 -6244.5188 -6252.9029 8.3841128 3728.7927 642.29531 -10623.991 0 401.81373 0.0022123311 0.0021800116 + 55990 -6245.0393 -6252.61 7.5707065 3730.1304 639.43138 -10622.172 0 362.83074 0.0018970757 0.0018693554 + 56000 -6245.5549 -6252.4382 6.8833114 3735.6107 635.56913 -10623.618 0 329.88691 0.00141619 0.001390326 + 56010 -6246.0559 -6252.4137 6.3577322 3743.2374 631.50934 -10627.16 0 304.6982 0.00088447561 0.00085872167 + 56020 -6246.5438 -6252.5406 5.9968593 3750.6911 628.06382 -10631.296 0 287.40315 0.00042133412 0.00039531598 + 56030 -6247.018 -6252.8188 5.8007908 3755.9625 625.85187 -10634.633 0 278.00644 0.00012163213 9.5520995e-05 + 56040 -6247.4793 -6253.2271 5.7478236 3757.8559 625.18153 -10636.265 0 275.46796 3.4876575e-05 9.1819159e-06 + 56050 -6247.929 -6253.7127 5.7837772 3756.2147 626.02967 -10635.957 0 277.19106 0.00015863023 0.00013435365 + 56060 -6248.3604 -6254.2073 5.8469044 3751.8352 628.10016 -10634.143 0 280.21647 0.00044633271 0.00042435715 + 56070 -6248.7563 -6254.6453 5.88899 3746.164 630.92635 -10631.736 0 282.23345 0.000823688 0.00080387074 + 56080 -6249.0991 -6254.967 5.8678658 3740.9035 633.98389 -10629.854 0 281.22105 0.0012070899 0.0011883701 + 56090 -6249.3811 -6255.1225 5.7414154 3737.6004 636.78622 -10629.509 0 275.16084 0.0015205507 0.0015019792 + 56100 -6249.6028 -6255.0919 5.4890998 3737.279 638.95033 -10631.321 0 263.06846 0.0017094887 0.0016908436 + 56110 -6249.7666 -6254.9052 5.1385604 3740.1977 640.23741 -10635.34 0 246.26864 0.0017496764 0.0017310566 + 56120 -6249.8743 -6254.6355 4.7611999 3745.797 640.57715 -10641.01 0 228.18341 0.0016498373 0.0016310194 + 56130 -6249.9314 -6254.3687 4.4372103 3752.8456 640.07353 -10647.288 0 212.65602 0.0014477082 0.0014281669 + 56140 -6249.9492 -6254.172 4.2227399 3759.7314 638.97952 -10652.883 0 202.37739 0.0012007562 0.0011802033 + 56150 -6249.9402 -6254.0803 4.1400463 3764.8292 637.63372 -10656.543 0 198.41425 0.00097316167 0.000951883 + 56160 -6249.914 -6254.095 4.1810018 3766.8768 636.37067 -10657.342 0 200.37706 0.00082085508 0.00079965917 + 56170 -6249.8764 -6254.1896 4.3131597 3765.2872 635.43187 -10654.909 0 206.71081 0.00077752392 0.00075757986 + 56180 -6249.829 -6254.3258 4.4968037 3760.3098 634.90438 -10649.54 0 215.51206 0.00084571584 0.00082813805 + 56190 -6249.7647 -6254.4763 4.711565 3752.9891 634.70491 -10642.17 0 225.80463 0.00099614486 0.00098105488 + 56200 -6249.6696 -6254.6323 4.9627531 3744.9344 634.6156 -10634.182 0 237.84298 0.0011753275 0.001161082 + 56210 -6249.5352 -6254.785 5.2498024 3737.959 634.36377 -10627.108 0 251.59999 0.0013194299 0.0013032578 + 56220 -6249.3722 -6254.8993 5.527121 3733.6509 633.72346 -10622.274 0 264.89065 0.0013715311 0.0013516432 + 56230 -6249.2093 -6254.9151 5.7058133 3732.9576 632.60755 -10620.48 0 273.45459 0.0012989225 0.001276401 + 56240 -6249.0736 -6254.7823 5.7087507 3735.897 631.12128 -10621.801 0 273.59537 0.0011059267 0.0010844023 + 56250 -6248.9663 -6254.5044 5.5380485 3741.5178 629.55856 -10625.581 0 265.41436 0.0008371183 0.00081995118 + 56260 -6248.8573 -6254.15 5.2927182 3748.1652 628.33863 -10630.654 0 253.65675 0.00056748538 0.0005545368 + 56270 -6248.7064 -6253.816 5.1095757 3753.9873 627.89762 -10635.701 0 244.87954 0.00038080729 0.00036773255 + 56280 -6248.4973 -6253.565 5.0676358 3757.5009 628.56366 -10639.63 0 242.86954 0.00034340328 0.00032464186 + 56290 -6248.2552 -6253.3908 5.135597 3758.0092 630.45057 -10641.851 0 246.12663 0.00048337796 0.00045687884 + 56300 -6248.0303 -6253.2469 5.2166031 3755.7362 633.39915 -10642.382 0 250.00889 0.00078306824 0.00075280206 + 56310 -6247.8537 -6253.1197 5.2659724 3751.6751 636.9817 -10641.776 0 252.37495 0.001185812 0.0011592378 + 56320 -6247.7008 -6253.0795 5.3786465 3747.2583 640.57254 -10640.91 0 257.77492 0.0016114235 0.0015931914 + 56330 -6247.5006 -6253.2442 5.7435263 3743.9935 643.47599 -10640.714 0 275.26201 0.0019727912 0.0019599453 + 56340 -6247.1934 -6253.6659 6.4725112 3743.1355 645.08904 -10641.89 0 310.19906 0.0021904576 0.0021740512 + 56350 -6246.7941 -6254.2374 7.4433273 3745.3788 645.06052 -10644.677 0 356.72601 0.0022078448 0.0021805521 + 56360 -6246.4013 -6254.7174 8.3160886 3750.5589 643.39888 -10648.675 0 398.55363 0.0020094694 0.0019728292 + 56370 -6246.1273 -6254.8785 8.7511507 3757.4759 640.48522 -10652.84 0 419.40424 0.0016364232 0.0016005199 + 56380 -6246.0038 -6254.6619 8.6581048 3764.0531 636.97559 -10655.691 0 414.94496 0.0011853192 0.0011601408 + 56390 -6245.9588 -6254.1972 8.2383233 3767.9445 633.62033 -10655.762 0 394.82668 0.00078077245 0.00076707895 + 56400 -6245.8951 -6253.6695 7.7743305 3767.4101 631.06212 -10652.142 0 372.58954 0.00052962811 0.0005184341 + 56410 -6245.7835 -6253.1705 7.3870077 3762.0287 629.67617 -10644.875 0 354.02686 0.00048155019 0.00046271841 + 56420 -6245.6777 -6252.6791 7.0013632 3752.8748 629.49481 -10635.049 0 335.54461 0.00061723938 0.00058859782 + 56430 -6245.6473 -6252.1677 6.5204145 3742.1207 630.2325 -10624.521 0 312.49485 0.00086586987 0.00083446844 + 56440 -6245.7039 -6251.7071 6.0031664 3732.3243 631.39943 -10615.431 0 287.70542 0.0011366098 0.0011118363 + 56450 -6245.789 -6251.4615 5.6724616 3725.735 632.467 -10609.663 0 271.85619 0.001347233 0.0013326108 + 56460 -6245.8232 -6251.5807 5.7575407 3723.8169 633.03509 -10608.433 0 275.93366 0.0014419628 0.0014325695 + 56470 -6245.7694 -6252.0818 6.3123225 3727.0136 632.95536 -10612.051 0 302.52191 0.0013999632 0.0013869658 + 56480 -6245.6633 -6252.8144 7.1510336 3734.6941 632.37784 -10619.886 0 342.71766 0.0012384986 0.0012166334 + 56490 -6245.5907 -6253.539 7.9483181 3745.2448 631.70478 -10630.489 0 380.928 0.0010115302 0.000983385 + 56500 -6245.6275 -6254.0632 8.4356819 3756.3432 631.4565 -10641.863 0 404.28521 0.00080027328 0.00077380955 + 56510 -6245.789 -6254.3372 8.5481768 3765.4655 632.08347 -10651.886 0 409.6766 0.00069182866 0.00067314245 + 56520 -6246.0352 -6254.4361 8.4009357 3770.5823 633.78768 -10658.806 0 402.61997 0.00074812713 0.00073593261 + 56530 -6246.3282 -6254.4531 8.1248439 3770.8143 636.42253 -10661.69 0 389.38811 0.00097744773 0.00096450168 + 56540 -6246.6782 -6254.4125 7.7342915 3766.7268 639.51156 -10660.651 0 370.67065 0.0013253562 0.0013052885 + 56550 -6247.1234 -6254.2826 7.159278 3760.0692 642.38019 -10656.732 0 343.11277 0.001693231 0.0016659769 + 56560 -6247.67 -6254.0521 6.3821104 3753.0768 644.35345 -10651.482 0 305.86654 0.0019754866 0.0019465824 + 56570 -6248.2647 -6253.7775 5.5128732 3747.683 644.94898 -10646.41 0 264.20782 0.0020957816 0.0020712882 + 56580 -6248.8258 -6253.5608 4.7349739 3744.9849 643.99742 -10642.543 0 226.92652 0.0020265398 0.0020087116 + 56590 -6249.2934 -6253.4909 4.197459 3745.0993 641.66032 -10640.251 0 201.16579 0.0017889068 0.001775514 + 56600 -6249.6522 -6253.6011 3.9488806 3747.3388 638.36334 -10639.303 0 189.25251 0.001439678 0.0014263028 + 56610 -6249.9235 -6253.8594 3.9359076 3750.5494 634.68524 -10639.094 0 188.63078 0.0010532563 0.0010364412 + 56620 -6250.1452 -6254.1922 4.046996 3753.4731 631.23434 -10638.9 0 193.95476 0.00070423249 0.00068357328 + 56630 -6250.3496 -6254.5262 4.1766236 3755.0532 628.53219 -10638.112 0 200.16724 0.00045349479 0.00043150766 + 56640 -6250.5476 -6254.8234 4.2758395 3754.6601 626.922 -10636.406 0 204.92222 0.00033862942 0.00031861092 + 56650 -6250.7285 -6255.0825 4.3539572 3752.2306 626.52084 -10633.834 0 208.66606 0.00036843436 0.00035208119 + 56660 -6250.8746 -6255.3087 4.4341725 3748.3021 627.22592 -10630.837 0 212.51043 0.00052214151 0.00050880105 + 56670 -6250.9767 -6255.4856 4.5088678 3743.9051 628.76781 -10628.158 0 216.09024 0.00075468941 0.00074247879 + 56680 -6251.0396 -6255.5744 4.5348539 3740.3097 630.78973 -10626.674 0 217.33564 0.0010080088 0.00099547691 + 56690 -6251.0743 -6255.5407 4.4664245 3738.684 632.92872 -10627.153 0 214.05612 0.00122561 0.0012125484 + 56700 -6251.0883 -6255.3822 4.2938683 3739.7658 634.88118 -10630.029 0 205.78626 0.0013661888 0.0013532341 + 56710 -6251.0808 -6255.1375 4.0566652 3743.645 636.44499 -10635.227 0 194.41816 0.0014124306 0.0014001231 + 56720 -6251.0463 -6254.8701 3.8238655 3749.7168 637.53797 -10642.125 0 183.26109 0.001373059 0.0013612962 + 56730 -6250.9802 -6254.6401 3.6599054 3756.8091 638.1941 -10649.643 0 175.4032 0.0012784087 0.0012666649 + 56740 -6250.8818 -6254.4841 3.6023515 3763.4444 638.53672 -10656.465 0 172.6449 0.0011713703 0.0011592639 + 56750 -6250.7502 -6254.4135 3.6633045 3768.1732 638.72937 -10661.316 0 175.5661 0.0010959982 0.0010835165 + 56760 -6250.5795 -6254.4234 3.8439348 3769.9078 638.91124 -10663.242 0 184.22292 0.0010858049 0.0010729498 + 56770 -6250.3584 -6254.5 4.1415964 3768.1873 639.13485 -10661.822 0 198.48854 0.0011536978 0.0011400061 + 56780 -6250.0768 -6254.616 4.5392777 3763.3123 639.33032 -10657.259 0 217.54766 0.001286072 0.0012707004 + 56790 -6249.7351 -6254.7254 4.9903575 3756.304 639.31589 -10650.345 0 239.16593 0.0014439933 0.0014264728 + 56800 -6249.3474 -6254.7717 5.4242632 3748.6771 638.8566 -10642.305 0 259.96113 0.0015730689 0.0015539026 + 56810 -6248.9333 -6254.7129 5.7795221 3742.0684 637.75214 -10634.533 0 276.98713 0.0016198818 0.0016000552 + 56820 -6248.5071 -6254.5424 6.0352296 3737.826 635.92262 -10628.291 0 289.24206 0.0015490247 0.0015286967 + 56830 -6248.0777 -6254.2836 6.2059415 3736.6806 633.46389 -10624.428 0 297.42354 0.0013543619 0.0013322619 + 56840 -6247.6598 -6253.9645 6.3047589 3738.5827 630.6565 -10623.204 0 302.15942 0.0010617915 0.0010364295 + 56850 -6247.2811 -6253.602 6.3208798 3742.7272 627.92672 -10624.256 0 302.93203 0.00072493445 0.00069672187 + 56860 -6246.9697 -6253.2178 6.2481249 3747.7475 625.76967 -10626.735 0 299.4452 0.00041616875 0.00038805953 + 56870 -6246.7281 -6252.8694 6.141317 3752.0533 624.6517 -10629.574 0 294.32637 0.00021346492 0.00018874428 + 56880 -6246.5247 -6252.6515 6.1268486 3754.276 624.91099 -10631.839 0 293.63296 0.00018219503 0.00016115039 + 56890 -6246.318 -6252.6413 6.3233456 3753.73 626.67276 -10633.044 0 303.0502 0.00035394982 0.00033311155 + 56900 -6246.0973 -6252.8323 6.7350048 3750.7086 629.79141 -10633.332 0 322.77922 0.00071041246 0.00068575717 + 56910 -6245.8943 -6253.1308 7.2364732 3746.4394 633.83555 -10633.406 0 346.8124 0.0011825142 0.0011534258 + 56920 -6245.752 -6253.4247 7.6727658 3742.6812 638.14036 -10634.246 0 367.72199 0.0016680802 0.0016378525 + 56930 -6245.6875 -6253.6523 7.9648316 3741.1337 641.9418 -10636.728 0 381.71942 0.0020605048 0.002033208 + 56940 -6245.6855 -6253.8061 8.1206128 3742.8907 644.56845 -10641.265 0 389.18533 0.0022769471 0.002254191 + 56950 -6245.7204 -6253.8922 8.1718188 3748.0911 645.62472 -10647.608 0 391.63941 0.002278331 0.0022586895 + 56960 -6245.7769 -6253.8989 8.1220035 3755.8356 645.09152 -10654.826 0 389.25198 0.0020780357 0.0020587521 + 56970 -6245.8541 -6253.8035 7.9493459 3764.3809 643.30423 -10661.489 0 380.97726 0.0017377783 0.0017167577 + 56980 -6245.9558 -6253.5978 7.6420106 3771.5702 640.82222 -10665.99 0 366.24803 0.0013506019 0.0013273703 + 56990 -6246.0814 -6253.3098 7.2284333 3775.3909 638.24712 -10666.948 0 346.42708 0.0010148574 0.00099031879 + 57000 -6246.2213 -6253.0058 6.7844481 3774.5113 636.05843 -10663.576 0 325.14882 0.00080724567 0.00078263576 + 57010 -6246.3603 -6252.7722 6.4119106 3768.6588 634.51482 -10655.946 0 307.29473 0.00076335845 0.00073917072 + 57020 -6246.4857 -6252.6805 6.1948526 3758.749 633.63368 -10645.063 0 296.8921 0.00087072204 0.00084648738 + 57030 -6246.5959 -6252.7572 6.1612866 3746.7187 633.23316 -10632.709 0 295.28342 0.0010750958 0.0010500977 + 57040 -6246.6993 -6252.9777 6.2783981 3735.0856 633.01277 -10621.076 0 300.89606 0.0012972749 0.0012713526 + 57050 -6246.8079 -6253.2847 6.4768233 3726.3444 632.65313 -10612.282 0 310.40571 0.0014553973 0.0014291685 + 57060 -6246.9308 -6253.614 6.6831881 3722.3613 631.91917 -10607.895 0 320.29587 0.0014874085 0.0014619141 + 57070 -6247.0701 -6253.9204 6.8502665 3723.9216 630.74731 -10608.589 0 328.3032 0.0013689225 0.001344818 + 57080 -6247.2178 -6254.1906 6.9728081 3730.5435 629.29391 -10614.028 0 334.17609 0.0011218296 0.0010983836 + 57090 -6247.363 -6254.4302 7.0672318 3740.6144 627.92552 -10622.97 0 338.7014 0.0008099495 0.00078482093 + 57100 -6247.5072 -6254.6248 7.1175819 3751.8127 627.14164 -10633.579 0 341.11446 0.00052193335 0.00049277713 + 57110 -6247.6735 -6254.7149 7.0413666 3761.6867 627.43764 -10643.839 0 337.46179 0.0003469688 0.00031419276 + 57120 -6247.8903 -6254.6257 6.7354176 3768.2177 629.13824 -10651.982 0 322.799 0.00035127388 0.00031917556 + 57130 -6248.1571 -6254.3397 6.1826629 3770.2476 632.25405 -10656.841 0 296.3079 0.00056088126 0.00053505002 + 57140 -6248.4309 -6253.9427 5.511825 3767.722 636.41814 -10658.083 0 264.15758 0.00095221514 0.00093492377 + 57150 -6248.6539 -6253.5847 4.9307432 3761.7218 640.93474 -10656.241 0 236.30888 0.00145148 0.0014395488 + 57160 -6248.7983 -6253.3884 4.5901293 3754.2237 644.9284 -10652.54 0 219.98475 0.0019463316 0.0019337096 + 57170 -6248.8837 -6253.3905 4.506795 3747.5694 647.55007 -10648.51 0 215.9909 0.0023122084 0.0022947274 + 57180 -6248.9562 -6253.5528 4.5965586 3743.7614 648.18719 -10645.501 0 220.29288 0.0024482339 0.0024263233 + 57190 -6249.0534 -6253.8109 4.7575607 3743.8303 646.62728 -10644.268 0 228.009 0.0023098283 0.0022875294 + 57200 -6249.1839 -6254.1126 4.9287685 3747.5153 643.12841 -10644.756 0 236.21424 0.0019245015 0.0019062199 + 57210 -6249.3298 -6254.4277 5.0979067 3753.3699 638.36794 -10646.166 0 244.32029 0.0013843149 0.0013717977 + 57220 -6249.4647 -6254.7366 5.2718117 3759.249 633.27762 -10647.263 0 252.65479 0.00081822537 0.000809583 + 57230 -6249.5755 -6255.0122 5.436769 3763.0023 628.81232 -10646.827 0 260.56048 0.00035476979 0.00034596111 + 57240 -6249.6737 -6255.2141 5.5404765 3763.1418 625.72111 -10644.077 0 265.53072 8.7706269e-05 7.5330404e-05 + 57250 -6249.7876 -6255.3015 5.5138176 3759.2706 624.38645 -10638.959 0 264.25308 5.4573484e-05 3.7918529e-05 + 57260 -6249.9408 -6255.258 5.3172009 3752.1642 624.77377 -10632.196 0 254.8301 0.00023272509 0.00021368424 + 57270 -6250.1341 -6255.1062 4.9721667 3743.5198 626.49638 -10625.122 0 238.29413 0.00055169433 0.00053293818 + 57280 -6250.3459 -6254.8993 4.5533244 3735.4776 628.9635 -10619.34 0 218.22085 0.00091646305 0.00089948478 + 57290 -6250.5469 -6254.6988 4.1518471 3730.0599 631.55608 -10616.315 0 198.97981 0.00123407 0.0012184065 + 57300 -6250.7161 -6254.5534 3.8373133 3728.6735 633.77721 -10617.004 0 183.90558 0.0014361322 0.00141999 + 57310 -6250.8503 -6254.4842 3.6338912 3731.7898 635.34421 -10621.618 0 174.15646 0.0014921893 0.0014739748 + 57320 -6250.9626 -6254.4819 3.5193224 3738.8568 636.21279 -10629.552 0 168.66568 0.0014124501 0.0013922864 + 57330 -6251.0698 -6254.5242 3.454483 3748.4349 636.53949 -10639.499 0 165.55821 0.0012414826 0.0012214843 + 57340 -6251.1746 -6254.6058 3.4312305 3758.5189 636.59875 -10649.723 0 164.44382 0.00104512 0.0010277213 + 57350 -6251.258 -6254.7518 3.4938463 3766.9951 636.67988 -10658.427 0 167.44472 0.00089245279 0.00087788167 + 57360 -6251.2927 -6254.9901 3.6973931 3772.1456 636.99264 -10664.128 0 177.19982 0.000835929 0.00082135838 + 57370 -6251.269 -6255.3005 4.0315763 3773.0609 637.60486 -10665.966 0 193.21576 0.00089550763 0.00087727927 + 57380 -6251.2075 -6255.5977 4.3901844 3769.8144 638.42479 -10663.837 0 210.40227 0.0010537131 0.0010308911 + 57390 -6251.1433 -6255.7731 4.629746 3763.3486 639.23017 -10658.352 0 221.8834 0.0012640579 0.0012398734 + 57400 -6251.0948 -6255.7641 4.6693491 3755.1557 639.73438 -10650.654 0 223.78141 0.0014679662 0.0014475885 + 57410 -6251.0461 -6255.5874 4.5413148 3746.9025 639.66824 -10642.158 0 217.64529 0.001611333 0.0015978933 + 57420 -6250.9602 -6255.3138 4.3535877 3740.1134 638.85037 -10634.278 0 208.64835 0.0016545957 0.0016468848 + 57430 -6250.8074 -6255.0139 4.206552 3735.9375 637.22899 -10628.18 0 201.60157 0.001576517 0.0015700929 + 57440 -6250.5859 -6254.7231 4.1372612 3734.9801 634.89487 -10624.598 0 198.28077 0.0013757734 0.0013663241 + 57450 -6250.3198 -6254.4487 4.128921 3737.1908 632.07603 -10623.716 0 197.88106 0.0010732237 0.0010594566 + 57460 -6250.0372 -6254.2035 4.1663206 3741.8371 629.12177 -10625.162 0 199.67346 0.00071372825 0.00069768748 + 57470 -6249.7465 -6254.0295 4.2830626 3747.6136 626.47443 -10628.118 0 205.26839 0.00036360425 0.00034841578 + 57480 -6249.4285 -6253.9817 4.5532578 3752.9159 624.62077 -10631.518 0 218.21766 0.00010049098 8.7555043e-05 + 57490 -6249.0546 -6254.0795 5.0249138 3756.247 624.01587 -10634.342 0 240.82207 -4.0335306e-06 -1.5947423e-05 + 57500 -6248.6168 -6254.2652 5.6483915 3756.6481 624.9801 -10635.893 0 270.70262 9.5446456e-05 8.2432608e-05 + 57510 -6248.1433 -6254.4182 6.2748978 3754.0106 627.58539 -10636.014 0 300.72831 0.00040224075 0.00038757987 + 57520 -6247.679 -6254.4273 6.7483019 3749.1523 631.56801 -10635.148 0 323.41649 0.00087158827 0.00085661949 + 57530 -6247.2502 -6254.2665 7.0163127 3743.6311 636.31799 -10634.216 0 336.26107 0.0014166331 0.0014021671 + 57540 -6246.8512 -6254.0027 7.1514724 3739.353 640.9796 -10634.335 0 342.73869 0.0019247929 0.0019087932 + 57550 -6246.4696 -6253.731 7.2613547 3738.0582 644.65248 -10636.442 0 348.00486 0.0022821011 0.0022605476 + 57560 -6246.117 -6253.5001 7.383164 3740.7789 646.6343 -10640.913 0 353.84265 0.0024025489 0.002373106 + 57570 -6245.8303 -6253.2936 7.463305 3747.4038 646.6212 -10647.319 0 357.68345 0.0022559448 0.002220956 + 57580 -6245.6426 -6253.0716 7.4290085 3756.5265 644.79188 -10654.39 0 356.03977 0.0018835485 0.0018493986 + 57590 -6245.5496 -6252.8305 7.2809263 3765.71 641.74022 -10660.281 0 348.94284 0.0013915244 0.0013644869 + 57600 -6245.5033 -6252.6312 7.1279684 3772.1527 638.27891 -10663.063 0 341.61224 0.00092023621 0.00090169825 + 57610 -6245.439 -6252.5663 7.1273261 3773.5684 635.18874 -10661.323 0 341.58146 0.00059863295 0.00058340489 + 57620 -6245.3241 -6252.6855 7.3613825 3768.9774 633.0039 -10654.667 0 352.79875 0.00050111326 0.00048081966 + 57630 -6245.1893 -6252.9409 7.7515784 3759.0966 631.89485 -10643.932 0 371.49913 0.00062465117 0.00059427374 + 57640 -6245.1105 -6253.2144 8.1038932 3746.1514 631.66791 -10631.034 0 388.38403 0.00089543475 0.00085767982 + 57650 -6245.1498 -6253.4122 8.2624317 3733.1802 631.87096 -10618.463 0 395.98209 0.0012003386 0.0011636812 + 57660 -6245.3065 -6253.5336 8.2271615 3723.1354 631.97491 -10608.644 0 394.29174 0.0014275045 0.001399464 + 57670 -6245.5258 -6253.6489 8.1230902 3718.1263 631.57741 -10603.353 0 389.30406 0.0014995958 0.0014812099 + 57680 -6245.7513 -6253.8122 8.0608775 3718.9969 630.55934 -10603.368 0 386.32248 0.0013914193 0.0013773825 + 57690 -6245.9703 -6253.9957 8.0254352 3725.2492 629.1356 -10608.38 0 384.62389 0.0011319484 0.0011156206 + 57700 -6246.215 -6254.1016 7.8866179 3735.2399 627.7813 -10617.123 0 377.97098 0.00079401065 0.00077276403 + 57710 -6246.524 -6254.0391 7.5150231 3746.5873 627.06332 -10627.69 0 360.16207 0.00047479044 0.00045151952 + 57720 -6246.8992 -6253.8047 6.9055359 3756.7319 627.44327 -10637.98 0 330.95203 0.00027052709 0.00025051515 + 57730 -6247.2953 -6253.5054 6.2101157 3763.5545 629.12355 -10646.183 0 297.62359 0.00025039571 0.00023634024 + 57740 -6247.6511 -6253.3018 5.650638 3765.9018 631.98207 -10651.186 0 270.81028 0.00043603248 0.00042539124 + 57750 -6247.9354 -6253.3077 5.3723246 3763.8549 635.60102 -10652.764 0 257.47194 0.00079295844 0.00077995009 + 57760 -6248.1705 -6253.518 5.3474928 3758.6364 639.36514 -10651.519 0 256.28186 0.0012379556 0.0012187252 + 57770 -6248.4136 -6253.8229 5.409235 3752.1647 642.59518 -10648.583 0 259.24089 0.0016621751 0.0016386708 + 57780 -6248.7074 -6254.1025 5.3950836 3746.4079 644.68696 -10645.197 0 258.56268 0.0019634771 0.0019422243 + 57790 -6249.0399 -6254.3215 5.281519 3742.7907 645.23365 -10642.346 0 253.12003 0.0020757524 0.0020620606 + 57800 -6249.3523 -6254.5379 5.1855858 3741.8807 644.11226 -10640.531 0 248.52237 0.0019830901 0.0019757357 + 57810 -6249.5908 -6254.8173 5.2264708 3743.4187 641.51632 -10639.752 0 250.4818 0.0017151908 0.0017067448 + 57820 -6249.7568 -6255.135 5.378165 3746.5658 637.92019 -10639.621 0 257.75184 0.00133153 0.0013145219 + 57830 -6249.9079 -6255.3698 5.4618214 3750.1824 633.97418 -10639.526 0 261.76113 0.00090554257 0.00087907924 + 57840 -6250.1066 -6255.4009 5.2943488 3753.0502 630.3539 -10638.805 0 253.7349 0.00051377414 0.00048458944 + 57850 -6250.3635 -6255.2195 4.8560765 3754.0852 627.61 -10636.915 0 232.73043 0.00022648877 0.00020347404 + 57860 -6250.6286 -6254.9492 4.3205381 3752.5976 626.06698 -10633.614 0 207.06443 9.4982739e-05 8.2139284e-05 + 57870 -6250.835 -6254.7565 3.921503 3748.5585 625.79405 -10629.109 0 187.94043 0.00013721545 0.00013107629 + 57880 -6250.9521 -6254.7314 3.7792985 3742.7341 626.63611 -10624.102 0 181.12519 0.00032943755 0.00032266884 + 57890 -6251.0044 -6254.8367 3.8322581 3736.5569 628.27521 -10619.669 0 183.66331 0.00061081679 0.00059837263 + 57900 -6251.0453 -6254.9614 3.9161251 3731.7284 630.30159 -10616.991 0 187.68269 0.00090147114 0.00088403465 + 57910 -6251.1121 -6255.0216 3.9095213 3729.694 632.29075 -10617.006 0 187.3662 0.0011270662 0.0011094191 + 57920 -6251.2002 -6255.022 3.8217125 3731.2007 633.88851 -10620.111 0 183.15791 0.00123997 0.0012263536 + 57930 -6251.2731 -6255.0357 3.7626191 3736.0971 634.89244 -10626.025 0 180.32582 0.0012295231 0.001220138 + 57940 -6251.2932 -6255.1291 3.8358942 3743.4118 635.30214 -10633.843 0 183.83758 0.0011199602 0.0011112348 + 57950 -6251.2493 -6255.2969 4.0475824 3751.6341 635.31024 -10642.241 0 193.98286 0.00095956298 0.00094754596 + 57960 -6251.1577 -6255.4572 4.299505 3759.0749 635.22619 -10649.758 0 206.05641 0.0008061699 0.00079003613 + 57970 -6251.041 -6255.5098 4.4688327 3764.2075 635.35477 -10655.072 0 214.17154 0.00071282957 0.00069554654 + 57980 -6250.9022 -6255.4116 4.5093934 3765.9491 635.87431 -10657.235 0 216.11543 0.00071537456 0.00070093941 + 57990 -6250.7149 -6255.2064 4.4915233 3763.8798 636.76248 -10655.849 0 215.259 0.00082294876 0.00081253185 + 58000 -6250.4396 -6254.9868 4.5471838 3758.3757 637.79644 -10651.159 0 217.92656 0.0010133722 0.0010037087 + 58010 -6250.0535 -6254.8203 4.7667117 3750.5891 638.62338 -10644.033 0 228.44757 0.0012360178 0.0012214986 + 58020 -6249.572 -6254.7007 5.1287215 3742.2181 638.87301 -10635.792 0 245.79711 0.0014236603 0.0014005701 + 58030 -6249.0482 -6254.5591 5.5108957 3735.0802 638.27539 -10627.915 0 264.11304 0.0015115506 0.0014813601 + 58040 -6248.5478 -6254.3205 5.7727273 3730.6082 636.74823 -10621.677 0 276.66148 0.0014585052 0.001427784 + 58050 -6248.1079 -6253.972 5.8640427 3729.4425 634.42688 -10617.841 0 281.03783 0.0012626387 0.0012390737 + 58060 -6247.7075 -6253.599 5.8914727 3731.2851 631.6306 -10616.515 0 282.35243 0.00096450607 0.00095094969 + 58070 -6247.2772 -6253.3494 6.0722371 3735.0913 628.78634 -10617.227 0 291.01567 0.00063418302 0.00062495903 + 58080 -6246.7592 -6253.3257 6.5665545 3739.5198 626.34535 -10619.191 0 314.70613 0.00034661958 0.00033030455 + 58090 -6246.1751 -6253.4827 7.3076079 3743.4056 624.71394 -10621.602 0 350.22157 0.00015774867 0.00012606552 + 58100 -6245.6328 -6253.6432 8.0104194 3746.0101 624.19607 -10623.849 0 383.90425 9.4631266e-05 5.0411731e-05 + 58110 -6245.2445 -6253.6437 8.3992077 3746.993 624.94258 -10625.579 0 402.53716 0.00016216708 0.00011817525 + 58120 -6245.0288 -6253.4762 8.4474447 3746.297 626.91714 -10626.69 0 404.84895 0.00035442608 0.00032295821 + 58130 -6244.9 -6253.2798 8.3797587 3744.158 629.89377 -10627.332 0 401.60505 0.0006558786 0.00063867045 + 58140 -6244.7565 -6253.1908 8.4343147 3741.2249 633.4851 -10627.901 0 404.21969 0.0010311325 0.001018972 + 58150 -6244.5753 -6253.2105 8.6352584 3738.5695 637.1886 -10628.969 0 413.85003 0.0014168961 0.0013985892 + 58160 -6244.4232 -6253.2164 8.7932284 3737.4137 640.44783 -10631.078 0 421.42084 0.0017307344 0.0017025723 + 58170 -6244.386 -6253.0947 8.7086848 3738.6437 642.74013 -10634.479 0 417.36904 0.0018974482 0.0018650319 + 58180 -6244.4886 -6252.8572 8.3685626 3742.3705 643.69159 -10638.919 0 401.06848 0.0018786596 0.0018506707 + 58190 -6244.6792 -6252.6397 7.9605423 3747.7892 643.18721 -10643.616 0 381.51385 0.0016878157 0.0016681474 + 58200 -6244.8813 -6252.5927 7.7113158 3753.4165 641.42309 -10647.432 0 369.56952 0.0013833535 0.0013684035 + 58210 -6245.061 -6252.7624 7.7014202 3757.5816 638.86427 -10649.208 0 369.09527 0.0010466609 0.0010294201 + 58220 -6245.2488 -6253.0623 7.8134609 3758.9472 636.11231 -10648.122 0 374.46489 0.0007573641 0.00073405332 + 58230 -6245.5033 -6253.3556 7.8522278 3756.8638 633.72543 -10643.945 0 376.32282 0.00057464951 0.00054768365 + 58240 -6245.8505 -6253.5707 7.7201279 3751.4983 632.05782 -10637.127 0 369.99185 0.00052605834 0.00050088641 + 58250 -6246.2616 -6253.7389 7.4772515 3743.7864 631.18045 -10628.706 0 358.35185 0.00060200735 0.00058160192 + 58260 -6246.6856 -6253.9298 7.2441819 3735.2609 630.90806 -10620.099 0 347.18185 0.00075723806 0.00073987458 + 58270 -6247.0927 -6254.1673 7.0746424 3727.7415 630.90811 -10612.817 0 339.05656 0.000922837 0.00090443412 + 58280 -6247.4848 -6254.4103 6.9254751 3722.8967 630.84015 -10608.147 0 331.90763 0.0010280662 0.0010057378 + 58290 -6247.875 -6254.5917 6.7167545 3721.7909 630.47855 -10606.861 0 321.90456 0.0010240789 0.00099772373 + 58300 -6248.2676 -6254.6647 6.3970413 3724.5814 629.78761 -10609.034 0 306.58211 0.00089990528 0.00087163936 + 58310 -6248.6534 -6254.6218 5.9683599 3730.4729 628.93305 -10614.028 0 286.03729 0.00068576174 0.00065850692 + 58320 -6249.0128 -6254.4975 5.4846765 3737.9347 628.22827 -10620.66 0 262.85647 0.00044415067 0.00042010706 + 58330 -6249.3216 -6254.3596 5.0380827 3745.1167 628.03198 -10627.508 0 241.45319 0.00025171462 0.00023100855 + 58340 -6249.5609 -6254.2815 4.7206242 3750.3573 628.62994 -10633.269 0 226.2388 0.0001758918 0.00015633914 + 58350 -6249.7322 -6254.299 4.5668352 3752.6418 630.13478 -10637.076 0 218.86837 0.0002526225 0.00023150141 + 58360 -6249.8604 -6254.3911 4.5306889 3751.8482 632.42684 -10638.666 0 217.13603 0.00047333203 0.00045003132 + 58370 -6249.9756 -6254.5141 4.538587 3748.6929 635.14968 -10638.357 0 217.51456 0.00078699848 0.00076372376 + 58380 -6250.0862 -6254.656 4.569866 3744.428 637.77217 -10636.856 0 219.01362 0.0011159468 0.001095391 + 58390 -6250.1746 -6254.8448 4.6702488 3740.4437 639.7174 -10635.006 0 223.82453 0.0013779959 0.0013604242 + 58400 -6250.2196 -6255.0991 4.8794741 3737.902 640.52767 -10633.529 0 233.85178 0.0015075219 0.0014904904 + 58410 -6250.2224 -6255.3765 5.1540729 3737.4503 640.00732 -10632.834 0 247.01209 0.0014714566 0.0014524602 + 58420 -6250.2093 -6255.5784 5.3691499 3739.049 638.28543 -10632.913 0 257.31979 0.0012781608 0.0012574826 + 58430 -6250.2088 -6255.6119 5.4031696 3741.9644 635.77245 -10633.349 0 258.9502 0.0009766989 0.00095760205 + 58440 -6250.2236 -6255.4586 5.2349936 3744.9748 633.02815 -10633.461 0 250.89027 0.00064435352 0.00063021021 + 58450 -6250.2237 -6255.1923 4.9686458 3746.7652 630.59394 -10632.551 0 238.12539 0.00036373861 0.00035453616 + 58460 -6250.1695 -6254.927 4.7575256 3746.3886 628.85343 -10630.169 0 228.00732 0.00019666955 0.00018819256 + 58470 -6250.0459 -6254.7335 4.6876185 3743.6112 627.96488 -10626.31 0 224.65698 0.00016564559 0.00015249306 + 58480 -6249.8769 -6254.5975 4.7206737 3738.9933 627.87179 -10621.463 0 226.24117 0.00025119738 0.00023129271 + 58490 -6249.7051 -6254.4531 4.7480134 3733.6759 628.3677 -10616.497 0 227.55144 0.00040522263 0.00038185032 + 58500 -6249.5533 -6254.2609 4.7076413 3728.9857 629.18109 -10612.428 0 225.61658 0.00057235622 0.00055169057 + 58510 -6249.3978 -6254.0592 4.661372 3726.0464 630.05476 -10610.16 0 223.3991 0.00070869082 0.00069466393 + 58520 -6249.1775 -6253.9414 4.7638864 3725.5388 630.80629 -10610.286 0 228.31217 0.00079082958 0.00078158717 + 58530 -6248.8309 -6253.9791 5.1482074 3727.6394 631.36306 -10612.982 0 246.73098 0.00081507647 0.00080408286 + 58540 -6248.3344 -6254.155 5.8206384 3732.0626 631.76735 -10617.985 0 278.95765 0.00079178338 0.0007728945 + 58550 -6247.715 -6254.3649 6.6498462 3738.1148 632.14895 -10624.629 0 318.69794 0.00074048178 0.00071302279 + 58560 -6247.0298 -6254.4914 7.461522 3744.7392 632.67021 -10631.901 0 357.598 0.00068771901 0.00065727074 + 58570 -6246.3243 -6254.4876 8.1632174 3750.6228 633.45846 -10638.569 0 391.22718 0.00066451668 0.00063825084 + 58580 -6245.6074 -6254.3925 8.7851293 3754.4498 634.54852 -10643.391 0 421.03269 0.00069856837 0.00067872784 + 58590 -6244.8736 -6254.2583 9.3847132 3755.2867 635.85706 -10645.402 0 449.76811 0.00080098443 0.0007825099 + 58600 -6244.1566 -6254.0604 9.9037852 3752.9291 637.19878 -10644.188 0 474.64496 0.00095569525 0.0009307886 + 58610 -6243.5485 -6253.694 10.145521 3747.9886 638.33497 -10640.018 0 486.2303 0.0011220782 0.0010877189 + 58620 -6243.1461 -6253.0786 9.9324927 3741.6438 639.03113 -10633.754 0 476.02078 0.0012523045 0.0012133751 + 58630 -6242.9729 -6252.2758 9.3028784 3735.2023 639.10383 -10626.582 0 445.84613 0.0013120076 0.0012770019 + 58640 -6242.9599 -6251.5019 8.5420077 3729.7323 638.45275 -10619.687 0 409.38094 0.0012902456 0.0012640037 + 58650 -6243.001 -6251.0151 8.014118 3725.9141 637.08185 -10614.011 0 384.0815 0.0011952923 0.0011754879 + 58660 -6243.027 -6250.9719 7.9449589 3724.069 635.10814 -10610.149 0 380.76701 0.0010441063 0.0010238349 + 58670 -6243.0388 -6251.3513 8.3124879 3724.2311 632.75132 -10608.334 0 398.38106 0.00085469906 0.00082830145 + 58680 -6243.0914 -6251.9834 8.8919846 3726.1677 630.30212 -10608.453 0 426.1538 0.00064490433 0.00061240831 + 58690 -6243.245 -6252.654 9.4090105 3729.353 628.07491 -10610.082 0 450.93258 0.0004356701 0.00040261438 + 58700 -6243.5147 -6253.2149 9.7001635 3732.9825 626.35718 -10612.555 0 464.88626 0.00025417977 0.00022689099 + 58710 -6243.859 -6253.6275 9.7685322 3736.124 625.37067 -10615.122 0 468.16287 0.00013185836 0.00011205533 + 58720 -6244.2169 -6253.9151 9.6981543 3737.9999 625.25046 -10617.165 0 464.78997 9.5851982e-05 7.9453492e-05 + 58730 -6244.5587 -6254.0842 9.5254851 3738.2623 626.03491 -10618.381 0 456.51469 0.00015834428 0.00013952905 + 58740 -6244.899 -6254.1028 9.2037473 3737.0949 627.6536 -10618.851 0 441.09521 0.00031042542 0.00028690589 + 58750 -6245.2647 -6253.9484 8.6837392 3735.0966 629.91236 -10618.957 0 416.17351 0.00052363759 0.0004982985 + 58760 -6245.6561 -6253.6686 8.01246 3733.0439 632.49178 -10619.204 0 384.00204 0.00075715025 0.00073502122 + 58770 -6246.038 -6253.3866 7.3485894 3731.6567 634.98112 -10620.024 0 352.18564 0.00096657787 0.00095013272 + 58780 -6246.3637 -6253.2425 6.8788211 3731.4395 636.95552 -10621.638 0 329.67171 0.0011117568 0.001098491 + 58790 -6246.6112 -6253.3077 6.6965255 3732.5975 638.07986 -10623.985 0 320.93508 0.0011630614 0.0011473135 + 58800 -6246.8037 -6253.5367 6.7329376 3734.9938 638.20268 -10626.733 0 322.68015 0.0011073883 0.0010850727 + 58810 -6246.9957 -6253.8003 6.8046147 3738.1269 637.40047 -10629.328 0 326.11532 0.00095433479 0.00092664616 + 58820 -6247.2298 -6253.9862 6.7563907 3741.1576 635.95135 -10631.095 0 323.80415 0.00073976507 0.00071228483 + 58830 -6247.5009 -6254.0826 6.5816072 3743.0637 634.24723 -10631.394 0 315.42755 0.0005207558 0.00049845383 + 58840 -6247.765 -6254.1659 6.4009329 3742.9544 632.67861 -10629.799 0 306.76862 0.0003584106 0.00034137223 + 58850 -6247.9852 -6254.3047 6.319542 3740.4404 631.53055 -10626.276 0 302.86791 0.00029414416 0.00027830662 + 58860 -6248.1666 -6254.4821 6.3154871 3735.8569 630.91527 -10621.254 0 302.67358 0.00033247902 0.00031425719 + 58870 -6248.3437 -6254.6157 6.2719625 3730.1959 630.7541 -10615.566 0 300.58764 0.00044045299 0.00042013175 + 58880 -6248.5395 -6254.6429 6.1034191 3724.789 630.81479 -10610.247 0 292.51009 0.00056276231 0.00054340128 + 58890 -6248.7413 -6254.5776 5.8362544 3720.9034 630.80029 -10606.281 0 279.70606 0.00064307843 0.00062669584 + 58900 -6248.9162 -6254.4878 5.5716464 3719.4085 630.46553 -10604.362 0 267.02456 0.00064180423 0.00062709888 + 58910 -6249.0454 -6254.428 5.3826148 3720.5854 629.72086 -10604.734 0 257.9651 0.00054614101 0.00052998508 + 58920 -6249.1434 -6254.3949 5.2515242 3724.0775 628.6808 -10607.153 0 251.68251 0.00037314902 0.00035419109 + 58930 -6249.2424 -6254.3497 5.1072786 3728.967 627.63714 -10610.954 0 244.76945 0.00016703482 0.00014765836 + 58940 -6249.3576 -6254.2832 4.9255433 3733.977 626.96444 -10615.225 0 236.05967 -1.0153615e-05 -2.5826404e-05 + 58950 -6249.4667 -6254.255 4.7882842 3737.8 626.99226 -10619.047 0 229.48144 -9.5688872e-05 -0.00010615111 + 58960 -6249.5271 -6254.3546 4.8275071 3739.4988 627.88853 -10621.742 0 231.36123 -4.8535926e-05 -5.7201599e-05 + 58970 -6249.5185 -6254.6134 5.0948614 3738.8347 629.59098 -10623.039 0 244.17434 0.00013186624 0.00011921529 + 58980 -6249.4668 -6254.9553 5.4885481 3736.3494 631.8058 -10623.111 0 263.04202 0.00040127065 0.00038174164 + 58990 -6249.4242 -6255.2445 5.8203009 3733.1275 634.07552 -10622.448 0 278.94148 0.00068527683 0.00066160557 + 59000 -6249.4223 -6255.3825 5.9602467 3730.3537 635.90159 -10621.638 0 285.64847 0.00090633847 0.00088433794 + 59010 -6249.4453 -6255.3638 5.9184572 3728.8886 636.88793 -10621.14 0 283.64568 0.00100948 0.00099278956 + 59020 -6249.4483 -6255.2436 5.7953239 3729.0389 636.85669 -10621.139 0 277.74444 0.00097589253 0.00096308695 + 59030 -6249.3992 -6255.0666 5.6673556 3730.5502 635.89221 -10621.509 0 271.61148 0.00082262895 0.0008090769 + 59040 -6249.3038 -6254.8291 5.5252962 3732.7496 634.29714 -10621.876 0 264.8032 0.00059343454 0.00057575265 + 59050 -6249.1932 -6254.5082 5.3150357 3734.7486 632.48234 -10621.739 0 254.72633 0.00034621247 0.0003251512 + 59060 -6249.0895 -6254.1214 5.0319068 3735.6634 630.83754 -10620.622 0 241.15721 0.00013964001 0.00011903123 + 59070 -6248.9805 -6253.7565 4.775997 3734.8438 629.6307 -10618.231 0 228.89257 1.974358e-05 2.6859306e-06 + 59080 -6248.8221 -6253.5367 4.7145763 3732.0845 628.96283 -10614.584 0 225.94895 8.221032e-06 -6.0403734e-06 + 59090 -6248.5651 -6253.5422 4.9771515 3727.7592 628.77678 -10610.078 0 238.53303 9.5976405e-05 8.0261228e-05 + 59100 -6248.1854 -6253.7501 5.56473 3722.7969 628.90237 -10605.449 0 266.69309 0.00024533248 0.00022405946 + 59110 -6247.6969 -6254.0424 6.3455188 3718.4548 629.11944 -10601.617 0 304.11287 0.00040194199 0.00037501728 + 59120 -6247.1387 -6254.2807 7.141941 3715.9347 629.22793 -10599.443 0 342.28189 0.00051335189 0.00048536836 + 59130 -6246.547 -6254.3885 7.8415285 3715.989 629.11494 -10599.492 0 375.81004 0.00054741565 0.00052428166 + 59140 -6245.9334 -6254.3787 8.4453514 3718.6832 628.80227 -10601.864 0 404.74863 0.00050269447 0.0004867502 + 59150 -6245.2929 -6254.3104 9.0174673 3723.4088 628.45098 -10606.17 0 432.16763 0.00040610109 0.00039370631 + 59160 -6244.6374 -6254.2151 9.5777031 3729.1124 628.30849 -10611.636 0 459.01727 0.00029928177 0.00028316808 + 59170 -6244.0244 -6254.054 10.029549 3734.6079 628.60983 -10617.272 0 480.67225 0.00022112903 0.00019614404 + 59180 -6243.5448 -6253.7439 10.199151 3738.8333 629.47394 -10622.051 0 488.80054 0.00019556427 0.00016332069 + 59190 -6243.2664 -6253.2426 9.9762313 3740.9899 630.84568 -10625.078 0 478.11698 0.00022950267 0.00019757009 + 59200 -6243.1799 -6252.6202 9.4403274 3740.6125 632.51256 -10625.745 0 452.43346 0.00031802214 0.00029368382 + 59210 -6243.2031 -6252.0409 8.8377805 3737.6545 634.18294 -10623.878 0 423.55603 0.00044896705 0.00043296857 + 59220 -6243.2483 -6251.6567 8.4084144 3732.5849 635.57827 -10619.82 0 402.9784 0.00060271272 0.00058894737 + 59230 -6243.2866 -6251.508 8.2213204 3726.3853 636.49325 -10614.387 0 394.0118 0.00075066227 0.00073195768 + 59240 -6243.3545 -6251.5283 8.1738525 3720.348 636.80858 -10608.685 0 391.73688 0.00085880253 0.00083299463 + 59250 -6243.5028 -6251.6395 8.1366888 3715.7177 636.47478 -10603.832 0 389.95578 0.00089733087 0.0008680901 + 59260 -6243.7474 -6251.8359 8.0884527 3713.3453 635.49781 -10600.679 0 387.64404 0.00085072444 0.00082320956 + 59270 -6244.0643 -6252.1806 8.116276 3713.5019 633.94449 -10599.627 0 388.97749 0.0007219569 0.00069799208 + 59280 -6244.4256 -6252.7245 8.2989763 3715.887 631.96173 -10600.573 0 397.73351 0.000529635 0.00050673096 + 59290 -6244.8368 -6253.4257 8.5889512 3719.7653 629.78714 -10602.978 0 411.63074 0.00030195188 0.0002765525 + 59300 -6245.3374 -6254.1391 8.8016688 3724.1513 627.72935 -10606.02 0 421.82536 7.2121333e-05 4.3725943e-05 + 59310 -6245.959 -6254.6912 8.7321634 3727.9961 626.11236 -10608.8 0 418.49427 -0.00012372447 -0.0001516178 + 59320 -6246.6768 -6254.9826 8.305736 3730.3813 625.19987 -10610.564 0 398.05747 -0.00024976837 -0.00027293599 + 59330 -6247.4061 -6255.0326 7.6264458 3730.7342 625.12782 -10610.895 0 365.50207 -0.00027884537 -0.00029652177 + 59340 -6248.0531 -6254.934 6.8809029 3729.0163 625.86895 -10609.819 0 329.77148 -0.00020412095 -0.00021972588 + 59350 -6248.5705 -6254.7723 6.2018114 3725.7802 627.23693 -10607.789 0 297.2256 -4.6230757e-05 -6.403231e-05 + 59360 -6248.9679 -6254.588 5.6200426 3722.0189 628.92605 -10605.533 0 269.34398 0.00015070876 0.00012942576 + 59370 -6249.2804 -6254.4005 5.1201237 3718.8518 630.57757 -10603.83 0 245.38506 0.00033311327 0.0003108002 + 59380 -6249.533 -6254.2466 4.7135719 3717.1829 631.86064 -10603.29 0 225.90081 0.00045469531 0.00043502677 + 59390 -6249.7286 -6254.1811 4.4525617 3717.4631 632.5492 -10604.193 0 213.39174 0.00048858602 0.00047335214 + 59400 -6249.8592 -6254.2424 4.3832017 3719.6105 632.57252 -10606.425 0 210.06762 0.00043164975 0.00041966031 + 59410 -6249.9238 -6254.4186 4.4948693 3723.0686 632.023 -10609.51 0 215.41936 0.0003022419 0.00029063582 + 59420 -6249.9359 -6254.6498 4.7139078 3726.9572 631.1203 -10612.727 0 225.91691 0.00013433605 0.00012076102 + 59430 -6249.9178 -6254.8611 4.9432779 3730.2744 630.14679 -10615.282 0 236.90961 -2.995517e-05 -4.6046282e-05 + 59440 -6249.8882 -6255.0039 5.1157593 3732.1175 629.37564 -10616.497 0 245.17589 -0.00014885333 -0.00016651747 + 59450 -6249.8524 -6255.0752 5.222798 3731.8906 629.00861 -10615.974 0 250.30579 -0.00019021884 -0.00020838948 + 59460 -6249.8056 -6255.1023 5.2966979 3729.4665 629.13252 -10613.701 0 253.84749 -0.00014064312 -0.00015911975 + 59470 -6249.7453 -6255.1069 5.3616706 3725.2609 629.69761 -10610.065 0 256.96134 -1.1423867e-05 -3.0440753e-05 + 59480 -6249.6785 -6255.0837 5.4052333 3720.1675 630.52142 -10605.773 0 259.04911 0.00016237378 0.00014332578 + 59490 -6249.6139 -6255.0158 5.4018752 3715.3429 631.32403 -10601.683 0 258.88817 0.00033106556 0.00031339518 + 59500 -6249.5479 -6254.9032 5.3553102 3711.9051 631.79758 -10598.606 0 256.65651 0.00044435604 0.00042899507 + 59510 -6249.4642 -6254.7665 5.3022462 3710.6543 631.69795 -10597.119 0 254.11339 0.00046470561 0.00045078902 + 59520 -6249.3493 -6254.624 5.2747132 3711.8879 630.92869 -10597.441 0 252.79385 0.00037665679 0.00036190805 + 59530 -6249.2039 -6254.4767 5.2728086 3715.3267 629.58445 -10599.388 0 252.70258 0.00019159285 0.00017402928 + 59540 -6249.0407 -6254.3217 5.2809821 3720.1516 627.93735 -10602.411 0 253.0943 -5.2377138e-05 -7.3177779e-05 + 59550 -6248.8721 -6254.1729 5.3008219 3725.1629 626.37304 -10605.709 0 254.04513 -0.00029689994 -0.00031984517 + 59560 -6248.7039 -6254.0617 5.3577743 3729.058 625.29702 -10608.417 0 256.77461 -0.00047678219 -0.00049995633 + 59570 -6248.5354 -6254.0185 5.483187 3730.7648 625.03272 -10609.816 0 262.78509 -0.00053746223 -0.00055877887 + 59580 -6248.3583 -6254.06 5.7017215 3729.7387 625.7308 -10609.53 0 273.25849 -0.00045130575 -0.00046934401 + 59590 -6248.1563 -6254.1828 6.0264987 3726.1472 627.31097 -10607.641 0 288.82363 -0.00022815665 -0.00024317592 + 59600 -6247.9138 -6254.3563 6.4424652 3720.8896 629.45717 -10604.703 0 308.75908 8.2904362e-05 6.8754484e-05 + 59610 -6247.6295 -6254.5178 6.8883148 3715.41 631.6784 -10601.606 0 330.12669 0.00040292267 0.00038677988 + 59620 -6247.3226 -6254.5902 7.2676272 3711.304 633.43064 -10599.325 0 348.30548 0.00064360272 0.00062360486 + 59630 -6247.0246 -6254.5126 7.4880061 3709.8231 634.27348 -10598.609 0 358.86727 0.00073411251 0.00071046028 + 59640 -6246.7651 -6254.2662 7.5010658 3711.4517 634.0128 -10599.731 0 359.49316 0.00064518923 0.00062010651 + 59650 -6246.5575 -6253.887 7.3294901 3715.7098 632.77236 -10602.369 0 351.27029 0.00040140687 0.00037796628 + 59660 -6246.3904 -6253.4655 7.0751015 3721.2624 630.95863 -10605.687 0 339.07856 7.5832661e-05 5.5932484e-05 + 59670 -6246.2323 -6253.1207 6.8883192 3726.3177 629.12876 -10608.567 0 330.1269 -0.000232795 -0.00025006898 + 59680 -6246.0537 -6252.9455 6.8918113 3729.1986 627.81207 -10609.956 0 330.29427 -0.00043292637 -0.00045082364 + 59690 -6245.8507 -6252.9554 7.1047585 3728.8844 627.34784 -10609.188 0 340.49989 -0.0004702723 -0.00049163125 + 59700 -6245.6469 -6253.0872 7.4402676 3725.3172 627.78824 -10606.193 0 356.57937 -0.00034311235 -0.00036781133 + 59710 -6245.4692 -6253.2552 7.785969 3719.3763 628.89283 -10601.524 0 373.14732 -9.8531288e-05 -0.00012388673 + 59720 -6245.3225 -6253.4093 8.0868055 3712.5825 630.21585 -10596.208 0 387.56509 0.00018567631 0.00016191363 + 59730 -6245.1923 -6253.5421 8.3497674 3706.6718 631.25888 -10591.473 0 400.1677 0.00042485838 0.0004021502 + 59740 -6245.0707 -6253.6547 8.5839538 3703.1545 631.63615 -10588.445 0 411.39123 0.00055036134 0.0005260654 + 59750 -6244.9766 -6253.7297 8.7531121 3702.932 631.1948 -10587.857 0 419.49825 0.00052718082 0.00049940015 + 59760 -6244.951 -6253.7389 8.7879374 3706.0491 630.05135 -10589.839 0 421.16727 0.00036278057 0.00033260025 + 59770 -6245.0326 -6253.6717 8.6390896 3711.6582 628.53823 -10593.868 0 414.03365 0.00010407163 7.5264628e-05 + 59780 -6245.234 -6253.5549 8.3209474 3718.2372 627.0854 -10598.878 0 398.78649 -0.00017746873 -0.00020101759 + 59790 -6245.5351 -6253.4468 7.9116841 3724.0191 626.083 -10603.549 0 379.17229 -0.00040798692 -0.00042528522 + 59800 -6245.8985 -6253.4046 7.5061016 3727.5074 625.77355 -10606.686 0 359.73451 -0.0005331942 -0.00054733889 + 59810 -6246.2966 -6253.4436 7.1469519 3727.9098 626.20428 -10607.558 0 342.52204 -0.0005328782 -0.00054912065 + 59820 -6246.7288 -6253.5181 6.7892933 3725.3296 627.24126 -10606.089 0 325.38103 -0.00042347348 -0.00044514664 + 59830 -6247.2083 -6253.5544 6.3461042 3720.6416 628.6248 -10602.821 0 304.14092 -0.0002481578 -0.00027378912 + 59840 -6247.7298 -6253.5198 5.7900109 3715.1274 630.04143 -10598.689 0 277.48981 -5.9192621e-05 -8.359959e-05 + 59850 -6248.2547 -6253.4697 5.21501 3710.0608 631.1952 -10594.726 0 249.93254 9.8855259e-05 8.0332036e-05 + 59860 -6248.7304 -6253.5229 4.7925173 3706.4224 631.8675 -10591.813 0 229.68432 0.00019791307 0.00018580302 + 59870 -6249.124 -6253.7807 4.6566836 3704.7903 631.95564 -10590.527 0 223.17441 0.00022637895 0.00021703311 + 59880 -6249.4406 -6254.2509 4.8102605 3705.3405 631.48296 -10591.074 0 230.53467 0.00018473824 0.0001735471 + 59890 -6249.7154 -6254.8334 5.1179842 3707.8704 630.57894 -10593.283 0 245.28252 8.1943365e-05 6.699764e-05 + 59900 -6249.9864 -6255.3769 5.3904503 3711.82 629.43643 -10596.633 0 258.34063 -6.5388916e-05 -8.2201301e-05 + 59910 -6250.2661 -6255.7632 5.4971439 3716.3308 628.2615 -10600.356 0 263.45398 -0.00023279988 -0.00024808636 + 59920 -6250.5328 -6255.9548 5.4220332 3720.3932 627.23468 -10603.583 0 259.85426 -0.00039031441 -0.00040266974 + 59930 -6250.7524 -6255.9757 5.2233074 3723.0778 626.49362 -10605.547 0 250.3302 -0.00050861624 -0.00051996663 + 59940 -6250.9093 -6255.8572 4.9478856 3723.772 626.13145 -10605.761 0 237.13044 -0.00056653609 -0.00058006792 + 59950 -6251.0186 -6255.6092 4.5906127 3722.3221 626.19475 -10604.126 0 220.00792 -0.00055578648 -0.00057256746 + 59960 -6251.1086 -6255.2439 4.1353511 3719.0355 626.67058 -10600.95 0 198.18923 -0.00048122992 -0.0004989048 + 59970 -6251.1922 -6254.8201 3.6278874 3714.5783 627.4675 -10596.866 0 173.86872 -0.00035855597 -0.00037344957 + 59980 -6251.254 -6254.4514 3.1973525 3709.8357 628.40777 -10592.695 0 153.23507 -0.00021234716 -0.0002229988 + 59990 -6251.2649 -6254.2583 2.9933871 3705.7764 629.24802 -10589.283 0 143.45991 -7.5069319e-05 -8.3846353e-05 + 60000 -6251.2077 -6254.296 3.0882941 3703.3058 629.73247 -10587.334 0 148.00838 1.5852469e-05 4.6136344e-06 + 60010 -6251.0919 -6254.52 3.4280475 3703.0793 629.66568 -10587.265 0 164.29127 2.6148411e-05 9.8298347e-06 + 60020 -6250.9444 -6254.8187 3.8742935 3705.288 628.98145 -10589.088 0 185.67789 -6.2461954e-05 -8.2530888e-05 + 60030 -6250.784 -6255.0863 4.3023113 3709.5043 627.7834 -10592.374 0 206.1909 -0.00024031767 -0.00026007615 + 60040 -6250.6023 -6255.2759 4.6735471 3714.6945 626.3414 -10596.312 0 223.9826 -0.00046636255 -0.00048260614 + 60050 -6250.3694 -6255.3935 5.0240952 3719.4557 625.04022 -10599.889 0 240.78283 -0.00067736106 -0.00069047071 + 60060 -6250.0615 -6255.4476 5.3860682 3722.4153 624.28903 -10602.152 0 258.13061 -0.00080708206 -0.00082039581 + 60070 -6249.688 -6255.4109 5.7229058 3722.646 624.40936 -10602.466 0 274.27376 -0.00080744113 -0.0008239088 + 60080 -6249.2885 -6255.2363 5.947839 3719.9422 625.5279 -10600.706 0 285.05382 -0.000663511 -0.00068292838 + 60090 -6248.9032 -6254.9127 6.0094895 3714.8835 627.50762 -10597.304 0 288.00845 -0.00039858123 -0.00041812248 + 60100 -6248.5429 -6254.4979 5.955032 3708.6993 629.94967 -10593.147 0 285.39855 -6.9837592e-05 -8.7231553e-05 + 60110 -6248.189 -6254.0915 5.9024597 3702.9871 632.27948 -10589.358 0 282.87899 0.00024340816 0.0002273563 + 60120 -6247.8215 -6253.7683 5.9467615 3699.3338 633.89877 -10587.001 0 285.00218 0.00045767251 0.00043972608 + 60130 -6247.4464 -6253.5343 6.0878709 3698.8911 634.35811 -10586.784 0 291.76493 0.00050758252 0.0004852473 + 60140 -6247.0967 -6253.3408 6.2441228 3701.9973 633.49453 -10588.833 0 299.2534 0.00036759218 0.00034184116 + 60150 -6246.8062 -6253.1448 6.3386081 3707.9749 631.48836 -10592.608 0 303.78167 6.5104988e-05 4.0051452e-05 + 60160 -6246.5785 -6252.9631 6.3846264 3715.2259 628.81908 -10597.008 0 305.98712 -0.00032262323 -0.00034312471 + 60170 -6246.3799 -6252.8734 6.4934974 3721.6519 626.13322 -10600.658 0 311.20483 -0.00068990401 -0.00070600074 + 60180 -6246.168 -6252.9538 6.7858261 3725.2948 624.06519 -10602.314 0 325.21486 -0.00093614673 -0.00095260501 + 60190 -6245.9346 -6253.205 7.2703504 3724.9682 623.06346 -10601.237 0 348.43599 -0.00099887547 -0.0010213556 + 60200 -6245.7242 -6253.5244 7.800164 3720.627 623.27 -10597.421 0 373.82763 -0.00087280843 -0.00090257153 + 60210 -6245.6033 -6253.7688 8.1655131 3713.3286 624.48822 -10591.586 0 391.33721 -0.00060754318 -0.00063955024 + 60220 -6245.6024 -6253.8555 8.2531503 3704.8442 626.25412 -10584.954 0 395.53727 -0.0002868234 -0.00031358705 + 60230 -6245.6862 -6253.8099 8.1236487 3697.1299 627.99168 -10578.931 0 389.33083 -7.1694428e-07 -1.8732102e-05 + 60240 -6245.7833 -6253.7179 7.9346055 3691.8643 629.19858 -10574.781 0 380.27082 0.0001778841 0.00016497817 + 60250 -6245.8452 -6253.6348 7.7896561 3690.131 629.59459 -10573.36 0 373.32403 0.00020768924 0.00019204875 + 60260 -6245.8815 -6253.536 7.6545781 3692.2276 629.18512 -10574.949 0 366.85033 8.5485173e-05 6.1566508e-05 + 60270 -6245.944 -6253.355 7.4109978 3697.5868 628.23032 -10579.172 0 355.1766 -0.00015346001 -0.00018423858 + 60280 -6246.0743 -6253.0756 7.0013643 3704.8508 627.14153 -10585.068 0 335.54466 -0.00044158794 -0.00047200636 + 60290 -6246.2588 -6252.799 6.5401445 3712.1594 626.34543 -10591.304 0 313.44042 -0.00069396635 -0.00071735835 + 60300 -6246.4343 -6252.7088 6.2744697 3717.6491 626.16023 -10596.518 0 300.70779 -0.00083213326 -0.00084857052 + 60310 -6246.5429 -6252.9372 6.3942359 3720.0288 626.71649 -10599.682 0 306.44766 -0.00081116764 -0.00082749888 + 60320 -6246.5905 -6253.4369 6.8464453 3718.9874 627.93082 -10600.355 0 328.12007 -0.00063811953 -0.00066125957 + 60330 -6246.6491 -6253.9902 7.3410647 3715.222 629.52447 -10598.737 0 351.82501 -0.00037031874 -0.00040011284 + 60340 -6246.7927 -6254.3634 7.5707307 3710.0785 631.08177 -10595.524 0 362.83189 -9.2282025e-05 -0.00012130691 + 60350 -6247.0243 -6254.4741 7.4497299 3705.0276 632.14939 -10591.651 0 357.03285 0.00011621138 9.5345834e-05 + 60360 -6247.271 -6254.4184 7.1473862 3701.2498 632.36326 -10588.031 0 342.54285 0.00020318565 0.00019022354 + 60370 -6247.4534 -6254.3472 6.8938441 3699.451 631.56419 -10585.362 0 330.39169 0.00015033193 0.00013707856 + 60380 -6247.5598 -6254.3146 6.7547534 3699.8343 629.85519 -10584.004 0 323.72568 -3.2230766e-05 -5.4395459e-05 + 60390 -6247.654 -6254.2424 6.5884445 3702.0988 627.57427 -10583.915 0 315.75523 -0.00031122243 -0.00034303495 + 60400 -6247.8092 -6254.0278 6.2186045 3705.4397 625.19273 -10584.66 0 298.03042 -0.00063219633 -0.00066533692 + 60410 -6248.0335 -6253.6818 5.6482546 3708.6603 623.18042 -10585.523 0 270.69605 -0.00092515887 -0.0009495524 + 60420 -6248.2584 -6253.3569 5.0984994 3710.4939 621.88962 -10585.74 0 244.3487 -0.0011210027 -0.0011337859 + 60430 -6248.3996 -6253.2309 4.8313406 3710.0687 621.49125 -10584.791 0 231.54495 -0.0011751608 -0.0011829482 + 60440 -6248.4298 -6253.3618 4.9319215 3707.2782 621.96562 -10582.606 0 236.36535 -0.0010849277 -0.0010976665 + 60450 -6248.3969 -6253.6502 5.2533806 3702.8362 623.13212 -10579.619 0 251.77147 -0.00088887039 -0.0009113889 + 60460 -6248.378 -6253.9359 5.5578537 3697.9847 624.70445 -10576.625 0 266.36354 -0.00064866189 -0.00067741218 + 60470 -6248.4166 -6254.126 5.709409 3694.0356 626.36271 -10574.524 0 273.62691 -0.00042473383 -0.00045179401 + 60480 -6248.4944 -6254.2451 5.7507486 3691.9773 627.8277 -10574.05 0 275.60814 -0.00025901743 -0.00027899339 + 60490 -6248.5578 -6254.3787 5.8208347 3692.2836 628.91501 -10575.577 0 278.96706 -0.00017067476 -0.00018446071 + 60500 -6248.568 -6254.5773 6.009297 3694.9076 629.55198 -10579.037 0 287.99923 -0.00016117349 -0.00017414566 + 60510 -6248.5303 -6254.8052 6.2749108 3699.37 629.75919 -10583.934 0 300.72893 -0.00022093437 -0.0002379872 + 60520 -6248.4851 -6254.9652 6.4801478 3704.8616 629.61578 -10589.443 0 310.56504 -0.00033264923 -0.00035446302 + 60530 -6248.4719 -6254.969 6.4971191 3710.3514 629.22989 -10594.55 0 311.3784 -0.00047185716 -0.0004950792 + 60540 -6248.4986 -6254.7945 6.2958196 3714.7338 628.72246 -10598.251 0 301.731 -0.00060842519 -0.00062903415 + 60550 -6248.5386 -6254.4912 5.9525622 3717.0412 628.21705 -10599.749 0 285.28018 -0.00071153253 -0.00072827931 + 60560 -6248.5548 -6254.1409 5.5861523 3716.6877 627.82202 -10598.651 0 267.71976 -0.00075747007 -0.00077262739 + 60570 -6248.5272 -6253.8116 5.284405 3713.6517 627.60076 -10595.064 0 253.25834 -0.00073705821 -0.00075424052 + 60580 -6248.4613 -6253.5395 5.0781286 3708.5096 627.5414 -10589.59 0 243.37242 -0.00065936389 -0.00068052968 + 60590 -6248.3753 -6253.3414 4.9660382 3702.2943 627.54675 -10583.182 0 238.00041 -0.00055008482 -0.0005740327 + 60600 -6248.2804 -6253.2336 4.9531748 3696.2342 627.45766 -10576.925 0 237.38393 -0.0004449737 -0.00046809167 + 60610 -6248.1666 -6253.2388 5.0722255 3691.4637 627.10378 -10571.806 0 243.08951 -0.00038021035 -0.00039880633 + 60620 -6247.9992 -6253.3792 5.3799597 3688.7881 626.36085 -10568.528 0 257.83786 -0.00038275979 -0.00039574529 + 60630 -6247.7309 -6253.6547 5.9237604 3688.5535 625.1959 -10567.404 0 283.89984 -0.00046404734 -0.00047439173 + 60640 -6247.3311 -6254.0105 6.6794044 3690.6293 623.69348 -10568.333 0 320.11454 -0.0006184772 -0.00063183431 + 60650 -6246.8205 -6254.323 7.5025138 3694.458 622.06312 -10570.844 0 359.56256 -0.00082475763 -0.0008453292 + 60660 -6246.2746 -6254.4415 8.166875 3699.1214 620.625 -10574.188 0 391.40247 -0.0010463731 -0.0010730818 + 60670 -6245.7796 -6254.2814 8.501797 3703.4348 619.76599 -10577.482 0 407.45382 -0.0012313536 -0.0012583133 + 60680 -6245.3725 -6253.8909 8.5184272 3706.1565 619.86218 -10579.91 0 408.25083 -0.0013176709 -0.0013392494 + 60690 -6245.027 -6253.4178 8.3907757 3706.3507 621.17486 -10580.943 0 402.13305 -0.0012504662 -0.0012662302 + 60700 -6244.7 -6252.9981 8.2980592 3703.79 623.74122 -10580.529 0 397.68956 -0.001007686 -0.0010222925 + 60710 -6244.3842 -6252.6673 8.2830446 3699.1697 627.29412 -10579.131 0 396.96997 -0.00062013203 -0.00063843862 + 60720 -6244.1144 -6252.3757 8.261343 3693.9667 631.25375 -10577.596 0 395.92991 -0.00017134551 -0.00019386038 + 60730 -6243.9256 -6252.0834 8.1578422 3689.9703 634.82477 -10576.878 0 390.96957 0.000226141 0.0002029712 + 60740 -6243.8128 -6251.8327 8.0198618 3688.6811 637.19565 -10577.709 0 384.35678 0.00046730502 0.00044663747 + 60750 -6243.7366 -6251.7233 7.9866849 3690.8204 637.78243 -10580.326 0 382.76676 0.00048679888 0.00046771879 + 60760 -6243.6685 -6251.8148 8.1463063 3696.0985 636.42339 -10584.337 0 390.41671 0.00027575725 0.00025439662 + 60770 -6243.6283 -6252.0577 8.4294322 3703.2659 633.44315 -10588.767 0 403.98569 -0.00011718594 -0.00014290295 + 60780 -6243.6688 -6252.3291 8.6603304 3710.3936 629.55663 -10592.279 0 415.05162 -0.00059679473 -0.00062415534 + 60790 -6243.8212 -6252.5432 8.7220226 3715.3407 625.64787 -10593.532 0 418.00826 -0.0010432651 -0.001067389 + 60800 -6244.0617 -6252.7164 8.6546049 3716.3597 622.50793 -10591.584 0 414.77723 -0.0013457785 -0.0013652597 + 60810 -6244.343 -6252.9133 8.5702562 3712.6947 620.6261 -10586.234 0 410.73476 -0.0014398508 -0.0014587545 + 60820 -6244.651 -6253.1435 8.4924243 3704.918 620.09465 -10578.156 0 407.00462 -0.0013306358 -0.0013542906 + 60830 -6245.0167 -6253.3348 8.318082 3694.7965 620.63989 -10568.771 0 398.64916 -0.0010873621 -0.0011167595 + 60840 -6245.4703 -6253.4069 7.9366041 3684.7207 621.75717 -10559.885 0 380.3666 -0.00081158376 -0.00084237116 + 60850 -6245.9967 -6253.3528 7.3561375 3676.9657 622.90231 -10553.221 0 352.54739 -0.00059760386 -0.00062405087 + 60860 -6246.5375 -6253.2484 6.710888 3673.0876 623.67226 -10550.008 0 321.62341 -0.00050394569 -0.00052349538 + 60870 -6247.0309 -6253.1982 6.1672604 3673.6269 623.91299 -10550.738 0 295.56972 -0.00054354982 -0.00055815883 + 60880 -6247.447 -6253.2721 5.8251012 3678.1261 623.72719 -10555.125 0 279.17153 -0.00068943284 -0.00070343945 + 60890 -6247.7949 -6253.4759 5.6809946 3685.3658 623.39741 -10562.239 0 272.26514 -0.00088855975 -0.00090534599 + 60900 -6248.1056 -6253.7625 5.6569122 3693.7042 623.26595 -10570.733 0 271.11097 -0.0010781881 -0.0010980816 + 60910 -6248.4076 -6254.0658 5.6582136 3701.4373 623.61558 -10579.119 0 271.17334 -0.0012015589 -0.0012220472 + 60920 -6248.71 -6254.331 5.6210507 3707.1297 624.5835 -10586.044 0 269.39229 -0.0012209861 -0.001238691 + 60930 -6249.0003 -6254.5284 5.5281 3709.8792 626.12338 -10590.531 0 264.93757 -0.0011263788 -0.0011393328 + 60940 -6249.2545 -6254.6495 5.3950267 3709.4755 628.01541 -10592.14 0 258.55995 -0.00093742957 -0.00094630544 + 60950 -6249.4516 -6254.6957 5.2441552 3706.4106 629.91599 -10591.022 0 251.32934 -0.00069880616 -0.0007065408 + 60960 -6249.5856 -6254.668 5.0823998 3701.7257 631.43532 -10587.829 0 243.57712 -0.00046931637 -0.00047943611 + 60970 -6249.6694 -6254.5631 4.8937048 3696.7249 632.22766 -10583.516 0 234.53379 -0.00030749015 -0.00032200372 + 60980 -6249.7284 -6254.38 4.6515705 3692.6244 632.07345 -10579.078 0 222.92936 -0.00025689589 -0.00027489341 + 60990 -6249.7854 -6254.1378 4.3524698 3690.2342 630.93074 -10575.303 0 208.59478 -0.00033476412 -0.00035281788 + 61000 -6249.8427 -6253.8957 4.053025 3689.7671 628.9407 -10572.604 0 194.2437 -0.00052731157 -0.0005419315 + 61010 -6249.8769 -6253.7478 3.8709306 3690.8442 626.38943 -10570.981 0 185.51672 -0.00079407151 -0.00080471629 + 61020 -6249.8552 -6253.777 3.9217866 3692.6946 623.64452 -10570.116 0 187.95402 -0.0010805376 -0.0010904811 + 61030 -6249.7646 -6253.9912 4.2265708 3694.4543 621.08744 -10569.533 0 202.56099 -0.0013341286 -0.0013478147 + 61040 -6249.6271 -6254.3035 4.676395 3695.4196 619.05335 -10568.776 0 224.11909 -0.0015162653 -0.0015351766 + 61050 -6249.4821 -6254.5861 5.1040029 3695.1708 617.78282 -10567.54 0 244.61246 -0.0016062214 -0.0016272365 + 61060 -6249.3501 -6254.7565 5.4063748 3693.5932 617.39142 -10565.741 0 259.10381 -0.0015985661 -0.0016166661 + 61070 -6249.2119 -6254.8187 5.6068593 3690.874 617.86536 -10563.558 0 268.71216 -0.001499738 -0.0015127225 + 61080 -6249.0243 -6254.8277 5.8034238 3687.5082 619.08447 -10561.42 0 278.13263 -0.0013273747 -0.0013383159 + 61090 -6248.7595 -6254.8132 6.0536089 3684.2673 620.8614 -10559.942 0 290.1229 -0.0011111053 -0.0011262628 + 61100 -6248.4353 -6254.7317 6.2963103 3682.0672 622.97968 -10559.779 0 301.75452 -0.00089046851 -0.00091414219 + 61110 -6248.1092 -6254.4905 6.381373 3681.7208 625.21865 -10561.43 0 305.8312 -0.0007067273 -0.00073714362 + 61120 -6247.8354 -6254.0337 6.1982327 3683.6405 627.36513 -10565.039 0 297.05409 -0.00059000134 -0.00062001719 + 61130 -6247.6167 -6253.4218 5.8051498 3687.6334 629.22327 -10570.279 0 278.21535 -0.00054847567 -0.00057127111 + 61140 -6247.3938 -6252.8262 5.4324583 3692.9216 630.63322 -10576.381 0 260.35388 -0.00056756287 -0.00058275553 + 61150 -6247.0906 -6252.4181 5.3275752 3698.4057 631.49724 -10582.321 0 255.3273 -0.00062060413 -0.00063489492 + 61160 -6246.6762 -6252.244 5.5678032 3703.0187 631.79742 -10587.06 0 266.84037 -0.0006832281 -0.00070428711 + 61170 -6246.186 -6252.209 6.0230567 3705.9589 631.58782 -10589.756 0 288.65867 -0.00074046408 -0.00076957153 + 61180 -6245.6798 -6252.1934 6.5136038 3706.7291 630.9596 -10589.882 0 312.16844 -0.00078352171 -0.00081422886 + 61190 -6245.1775 -6252.182 7.0044966 3705.0997 629.99816 -10587.28 0 335.69478 -0.0008040901 -0.00082832006 + 61200 -6244.6377 -6252.2738 7.6361043 3701.1459 628.75715 -10582.177 0 365.96496 -0.00079578332 -0.00081140244 + 61210 -6244.0053 -6252.5634 8.5581371 3695.3616 627.2621 -10575.187 0 410.15395 -0.00076306597 -0.00077581083 + 61220 -6243.288 -6253.0121 9.7240901 3688.7053 625.53656 -10567.254 0 466.03296 -0.00072839193 -0.0007466479 + 61230 -6242.5923 -6253.4274 10.835174 3682.4357 623.63247 -10559.496 0 519.28233 -0.00072810521 -0.00075537839 + 61240 -6242.0724 -6253.5711 11.49868 3677.7439 621.64807 -10552.963 0 551.08127 -0.00079614217 -0.00082785839 + 61250 -6241.8257 -6253.3168 11.491061 3675.3416 619.72766 -10548.386 0 550.71613 -0.00094445897 -0.00097203383 + 61260 -6241.8239 -6252.7386 10.91465 3675.2352 618.05047 -10546.024 0 523.09127 -0.0011528568 -0.0011716285 + 61270 -6241.9483 -6252.0585 10.110215 3676.8195 616.81925 -10545.697 0 484.53821 -0.0013748837 -0.0013886985 + 61280 -6242.0915 -6251.4943 9.4027743 3679.221 616.24974 -10546.965 0 450.6337 -0.0015551343 -0.0015731915 + 61290 -6242.2269 -6251.1362 8.9092547 3681.6596 616.54738 -10549.343 0 426.98148 -0.0016467028 -0.0016756023 + 61300 -6242.3926 -6250.9493 8.5566582 3683.6355 617.8575 -10552.442 0 410.08307 -0.0016211778 -0.0016595069 + 61310 -6242.6258 -6250.8702 8.2444424 3684.9356 620.19459 -10556 0 395.11994 -0.0014717939 -0.0015116233 + 61320 -6242.9159 -6250.8924 7.9764258 3685.5787 623.38029 -10559.851 0 382.27508 -0.0012140144 -0.0012472322 + 61330 -6243.2102 -6251.0732 7.8629734 3685.7901 627.02633 -10563.89 0 376.8378 -0.00088534473 -0.0009094495 + 61340 -6243.4533 -6251.4712 8.0178677 3685.9904 630.5838 -10568.045 0 384.26121 -0.00054286244 -0.00056219768 + 61350 -6243.6317 -6252.0665 8.4347719 3686.7254 633.45483 -10572.247 0 404.2416 -0.00025587126 -0.0002777006 + 61360 -6243.7897 -6252.7276 8.9379031 3688.4836 635.1366 -10576.348 0 428.35447 -9.1564472e-05 -0.00011993022 + 61370 -6243.9996 -6253.2666 9.2670167 3691.4225 635.3515 -10580.041 0 444.12744 -9.4572642e-05 -0.00012700496 + 61380 -6244.3021 -6253.5526 9.2505447 3695.1408 634.11937 -10582.813 0 443.338 -0.00026784263 -0.00029812849 + 61390 -6244.6701 -6253.5841 8.914012 3698.6803 631.74816 -10584.013 0 427.20947 -0.00056701707 -0.00059147787 + 61400 -6245.0377 -6253.4532 8.4155089 3700.8297 628.74692 -10583.03 0 403.31841 -0.00091496397 -0.00093578479 + 61410 -6245.362 -6253.2464 7.8843088 3700.5854 625.68939 -10579.521 0 377.86031 -0.0012295066 -0.0012518015 + 61420 -6245.6528 -6252.9899 7.3371483 3697.5194 623.06974 -10573.579 0 351.63732 -0.00144928 -0.0014753563 + 61430 -6245.9447 -6252.6852 6.7405567 3691.9062 621.19088 -10565.782 0 323.0453 -0.0015471887 -0.0015740211 + 61440 -6246.2509 -6252.3781 6.1271391 3684.6268 620.11416 -10557.119 0 293.64689 -0.0015308739 -0.0015530313 + 61450 -6246.5448 -6252.1804 5.6356011 3676.9586 619.68156 -10548.82 0 270.08963 -0.0014353155 -0.0014502496 + 61460 -6246.7827 -6252.2157 5.4329938 3670.3274 619.60152 -10542.145 0 260.37955 -0.0013121114 -0.0013228652 + 61470 -6246.9459 -6252.5317 5.5858639 3666.0458 619.57026 -10538.148 0 267.70594 -0.0012167578 -0.0012296918 + 61480 -6247.063 -6253.0506 5.9875261 3665.0308 619.38976 -10537.471 0 286.95585 -0.0011937009 -0.0012131188 + 61490 -6247.196 -6253.6043 6.4083006 3667.5337 619.04427 -10540.182 0 307.12172 -0.0012608101 -0.001285099 + 61500 -6247.3925 -6254.036 6.6435857 3672.9778 618.71065 -10545.725 0 318.39791 -0.0013988651 -0.0014218385 + 61510 -6247.6449 -6254.2881 6.6431918 3680.0344 618.69823 -10553.021 0 318.37902 -0.0015538533 -0.0015704999 + 61520 -6247.8984 -6254.4003 6.5018989 3686.9957 619.33587 -10560.732 0 311.60748 -0.0016559357 -0.0016672087 + 61530 -6248.1037 -6254.4243 6.3206723 3692.3264 620.83926 -10567.59 0 302.92208 -0.0016486909 -0.0016604625 + 61540 -6248.2603 -6254.351 6.0906646 3695.1307 623.20007 -10572.682 0 291.89882 -0.0015135225 -0.0015308051 + 61550 -6248.4061 -6254.1316 5.7255186 3695.3212 626.14059 -10575.593 0 274.39898 -0.0012762011 -0.0012986627 + 61560 -6248.5692 -6253.7623 5.1930051 3693.4745 629.16267 -10576.399 0 248.87794 -0.0009945012 -0.0010174735 + 61570 -6248.7387 -6253.3321 4.5933935 3690.5252 631.68029 -10575.538 0 220.14119 -0.00073674045 -0.00075597828 + 61580 -6248.8767 -6252.9856 4.1089709 3687.4575 633.18371 -10573.627 0 196.92494 -0.00056232337 -0.00057761227 + 61590 -6248.954 -6252.8387 3.8847221 3685.0726 633.37144 -10571.283 0 186.17768 -0.00050941106 -0.00052412987 + 61600 -6248.9724 -6252.918 3.9455676 3683.8387 632.20983 -10568.967 0 189.09374 -0.00058924793 -0.00060692325 + 61610 -6248.9603 -6253.1642 4.2039469 3683.813 629.9151 -10566.892 0 201.47672 -0.0007854582 -0.00080651626 + 61620 -6248.9484 -6253.4864 4.5380671 3684.6405 626.8784 -10565.005 0 217.48964 -0.0010580727 -0.0010794131 + 61630 -6248.9438 -6253.821 4.877161 3685.6509 623.56537 -10563.037 0 233.74092 -0.0013527765 -0.0013704472 + 61640 -6248.9226 -6254.152 5.2294069 3686.0642 620.42104 -10560.637 0 250.62252 -0.0016144796 -0.0016272489 + 61650 -6248.8486 -6254.479 5.6304187 3685.2659 617.80111 -10557.546 0 269.84126 -0.0018017804 -0.001812478 + 61660 -6248.7061 -6254.7644 6.0582826 3683.051 615.93621 -10553.752 0 290.34689 -0.0018969987 -0.0019102069 + 61670 -6248.5169 -6254.9193 6.4023457 3679.7088 614.92637 -10549.554 0 306.83633 -0.001906989 -0.0019250391 + 61680 -6248.3238 -6254.8523 6.5285633 3675.899 614.76039 -10545.512 0 312.88539 -0.0018541513 -0.0018751475 + 61690 -6248.1544 -6254.537 6.3826562 3672.4062 615.35482 -10542.298 0 305.8927 -0.0017630703 -0.0017826337 + 61700 -6248.0015 -6254.0345 6.0330132 3669.9164 616.59935 -10540.55 0 289.13584 -0.0016507866 -0.0016656123 + 61710 -6247.8319 -6253.4578 5.625948 3668.9033 618.38634 -10540.747 0 269.627 -0.0015251081 -0.0015353176 + 61720 -6247.6089 -6252.9156 5.3066505 3669.6125 620.60844 -10543.136 0 254.32447 -0.0013894274 -0.001398433 + 61730 -6247.3116 -6252.4726 5.1610138 3672.0841 623.13039 -10547.687 0 247.34474 -0.0012493006 -0.0012616986 + 61740 -6246.943 -6252.1396 5.1966765 3676.1669 625.76152 -10554.068 0 249.0539 -0.0011162109 -0.0011348709 + 61750 -6246.5254 -6251.8954 5.3699348 3681.4931 628.25468 -10561.643 0 257.3574 -0.0010057658 -0.0010297875 + 61760 -6246.0793 -6251.7338 5.6545184 3687.4284 630.33977 -10569.502 0 270.99625 -0.00093076077 -0.00095616459 + 61770 -6245.5981 -6251.698 6.0998248 3693.0711 631.78135 -10576.55 0 292.33783 -0.0008937095 -0.00091690794 + 61780 -6245.0501 -6251.8505 6.8003359 3697.3824 632.43788 -10581.671 0 325.91025 -0.00088509614 -0.00090609267 + 61790 -6244.4164 -6252.1963 7.7799538 3699.4409 632.29536 -10583.933 0 372.85904 -0.00088932704 -0.00091133418 + 61800 -6243.73 -6252.6405 8.9105774 3698.7009 631.45546 -10582.797 0 427.04486 -0.00089369268 -0.00091985117 + 61810 -6243.0733 -6253.029 9.9556597 3695.1426 630.08326 -10578.255 0 477.13107 -0.00089452211 -0.00092543176 + 61820 -6242.5386 -6253.2234 10.684743 3689.2966 628.34458 -10570.865 0 512.07284 -0.00089902084 -0.00093286633 + 61830 -6242.1867 -6253.1499 10.963217 3682.1512 626.36326 -10561.664 0 525.41887 -0.00092336481 -0.00095753471 + 61840 -6242.0263 -6252.8178 10.791499 3674.9369 624.2108 -10551.965 0 517.18919 -0.00098717122 -0.0010201442 + 61850 -6242.021 -6252.3073 10.286362 3668.834 621.92865 -10543.07 0 492.98019 -0.0011062448 -0.0011386363 + 61860 -6242.1224 -6251.7247 9.6022415 3664.7084 619.57514 -10536.008 0 460.19329 -0.001286346 -0.0013197824 + 61870 -6242.3006 -6251.1574 8.8568094 3662.9433 617.27532 -10531.376 0 424.468 -0.0015180596 -0.0015525578 + 61880 -6242.542 -6250.6753 8.1332736 3663.3786 615.24509 -10529.299 0 389.79211 -0.0017726162 -0.0018054719 + 61890 -6242.8272 -6250.3606 7.5334111 3665.3719 613.7721 -10529.505 0 361.04333 -0.0020024052 -0.0020303023 + 61900 -6243.1211 -6250.3092 7.1881121 3668.008 613.15588 -10531.473 0 344.49466 -0.0021509405 -0.002173273 + 61910 -6243.3928 -6250.5783 7.1854574 3670.4213 613.626 -10534.626 0 344.36743 -0.0021714311 -0.0021912254 + 61920 -6243.6426 -6251.1244 7.4817958 3672.1073 615.26334 -10538.495 0 358.56964 -0.0020456894 -0.0020669744 + 61930 -6243.9048 -6251.8018 7.8969327 3673.0707 617.94683 -10542.819 0 378.46533 -0.0017931656 -0.0018174474 + 61940 -6244.2186 -6252.4347 8.2161264 3673.7451 621.34386 -10547.524 0 393.76288 -0.0014656656 -0.001491058 + 61950 -6244.594 -6252.9064 8.3123437 3674.7484 624.95712 -10552.612 0 398.37415 -0.0011317838 -0.0011553583 + 61960 -6245.0056 -6253.1921 8.1864767 3676.6056 628.22582 -10558.024 0 392.3419 -0.00085889436 -0.00087951071 + 61970 -6245.4146 -6253.3284 7.9137736 3679.5365 630.65559 -10563.52 0 379.27244 -0.00069801782 -0.00071693426 + 61980 -6245.7945 -6253.3621 7.5675588 3683.3466 631.93557 -10568.644 0 362.67988 -0.00067315072 -0.00069241168 + 61990 -6246.138 -6253.3223 7.1843526 3687.4303 632.00386 -10572.757 0 344.31449 -0.00077606723 -0.00079661991 + 62000 -6246.447 -6253.2241 6.7770829 3690.8867 631.04182 -10575.153 0 324.79584 -0.00096856925 -0.00098974459 + 62010 -6246.7202 -6253.0854 6.3651813 3692.7375 629.40024 -10575.223 0 305.0552 -0.0011932752 -0.0012137685 + 62020 -6246.9488 -6252.9383 5.9895435 3692.2048 627.48209 -10572.625 0 287.05253 -0.0013909078 -0.0014102157 + 62030 -6247.1226 -6252.8236 5.7009189 3688.9748 625.62023 -10567.419 0 273.22002 -0.001518756 -0.0015378596 + 62040 -6247.2393 -6252.7725 5.533188 3683.3576 623.9923 -10560.122 0 265.18142 -0.0015636778 -0.0015844806 + 62050 -6247.3093 -6252.7921 5.4827818 3676.2752 622.60157 -10551.669 0 262.76567 -0.0015446251 -0.0015685865 + 62060 -6247.3535 -6252.8626 5.5090779 3669.0561 621.32539 -10543.244 0 264.02592 -0.001503674 -0.0015305822 + 62070 -6247.3942 -6252.9509 5.5567762 3663.091 620.00583 -10536.048 0 266.31189 -0.0014890942 -0.0015168109 + 62080 -6247.4438 -6253.0327 5.5889296 3659.4592 618.54401 -10531.036 0 267.85287 -0.0015368868 -0.0015623679 + 62090 -6247.4975 -6253.1088 5.6112793 3658.6553 616.96575 -10528.73 0 268.92399 -0.0016573434 -0.0016784997 + 62100 -6247.5358 -6253.2038 5.6679488 3660.506 615.44157 -10529.151 0 271.63991 -0.0018309715 -0.0018482511 + 62110 -6247.5382 -6253.3411 5.8029699 3664.2868 614.25933 -10531.887 0 278.11088 -0.0020147312 -0.0020311742 + 62120 -6247.5003 -6253.5102 6.0098808 3668.9751 613.75686 -10536.242 0 288.02721 -0.0021559647 -0.0021753418 + 62130 -6247.4418 -6253.6532 6.2113648 3673.5328 614.22834 -10541.414 0 297.68346 -0.0022087742 -0.002232931 + 62140 -6247.395 -6253.6917 6.2966493 3677.1366 615.82533 -10546.654 0 301.77077 -0.0021471039 -0.0021745575 + 62150 -6247.3812 -6253.5782 6.1969812 3679.3168 618.48196 -10551.377 0 296.99411 -0.0019708641 -0.0019979378 + 62160 -6247.3937 -6253.3335 5.9398213 3680.0084 621.89538 -10555.237 0 284.66956 -0.0017048938 -0.0017285958 + 62170 -6247.403 -6253.0372 5.6341551 3679.5232 625.5786 -10558.139 0 270.02032 -0.0013930325 -0.0014133304 + 62180 -6247.3811 -6252.7765 5.3954563 3678.4471 628.97275 -10560.196 0 258.58054 -0.001089702 -0.0011092439 + 62190 -6247.3239 -6252.5933 5.2694822 3677.473 631.57664 -10561.643 0 252.54316 -0.000849971 -0.00087135395 + 62200 -6247.2538 -6252.4743 5.2204919 3677.1894 633.04464 -10562.708 0 250.19526 -0.00071819908 -0.00074111075 + 62210 -6247.1953 -6252.3977 5.2023906 3677.8727 633.22516 -10563.496 0 249.32775 -0.00071674222 -0.00073792496 + 62220 -6247.1429 -6252.3931 5.2501245 3679.3645 632.14879 -10563.906 0 251.61542 -0.00083917027 -0.00085592811 + 62230 -6247.0559 -6252.5395 5.4836219 3681.1175 629.99804 -10563.655 0 262.80593 -0.0010531091 -0.0010671857 + 62240 -6246.8944 -6252.8815 5.9871538 3682.4102 627.08109 -10562.373 0 286.93801 -0.0013128301 -0.0013300908 + 62250 -6246.6667 -6253.3391 6.6724462 3682.6106 623.801 -10559.751 0 319.78106 -0.0015742926 -0.001599513 + 62260 -6246.4351 -6253.7203 7.2851684 3681.3345 620.59668 -10555.651 0 349.14615 -0.0018036953 -0.0018354336 + 62270 -6246.2657 -6253.8448 7.5790657 3678.4638 617.85409 -10550.163 0 363.23135 -0.0019776374 -0.0020088414 + 62280 -6246.1699 -6253.6669 7.4969625 3674.12 615.82293 -10543.61 0 359.29651 -0.0020811665 -0.0021052903 + 62290 -6246.0994 -6253.286 7.186536 3668.6918 614.584 -10536.562 0 344.41913 -0.002109644 -0.0021262349 + 62300 -6245.9952 -6252.8524 6.8572008 3662.8806 614.08284 -10529.816 0 328.63554 -0.002072468 -0.002087128 + 62310 -6245.8358 -6252.4668 6.6309848 3657.655 614.20359 -10524.325 0 317.794 -0.0019920314 -0.0020115523 + 62320 -6245.6444 -6252.1491 6.5047346 3654.0569 614.8386 -10521.045 0 311.74338 -0.0018955732 -0.0019229503 + 62330 -6245.4588 -6251.8729 6.4141451 3652.9236 615.92092 -10520.717 0 307.40182 -0.0018046719 -0.0018376303 + 62340 -6245.298 -6251.6185 6.3204719 3654.6451 617.41344 -10523.677 0 302.91248 -0.0017289005 -0.0017621329 + 62350 -6245.1465 -6251.4037 6.2572573 3659.0521 619.27295 -10529.729 0 299.88288 -0.0016660048 -0.0016949469 + 62360 -6244.9603 -6251.2802 6.3198741 3665.4631 621.41768 -10538.161 0 302.88383 -0.0016062603 -0.001629907 + 62370 -6244.6886 -6251.2998 6.6112484 3672.8604 623.71951 -10547.88 0 316.84812 -0.001537646 -0.0015588495 + 62380 -6244.2987 -6251.473 7.1743159 3680.1204 626.02201 -10557.615 0 343.83347 -0.0014503241 -0.001473481 + 62390 -6243.7933 -6251.7464 7.9531664 3686.2141 628.16664 -10566.127 0 381.16036 -0.0013402885 -0.0013679559 + 62400 -6243.2103 -6252.0242 8.8138366 3690.3315 630.00614 -10572.362 0 422.4085 -0.0012117478 -0.0012426426 + 62410 -6242.6033 -6252.2193 9.6159644 3691.9477 631.3989 -10575.566 0 460.85097 -0.0010772064 -0.0011072707 + 62420 -6242.014 -6252.3006 10.286619 3690.8736 632.1985 -10575.373 0 492.99251 -0.00095481995 -0.0009808658 + 62430 -6241.4598 -6252.2966 10.836858 3687.3086 632.26169 -10571.867 0 519.36302 -0.00086457262 -0.00088785069 + 62440 -6240.9524 -6252.2436 11.291211 3681.8633 631.48579 -10565.593 0 541.13816 -0.0008260615 -0.00085237692 + 62450 -6240.5363 -6252.1121 11.575881 3675.4909 629.86087 -10557.464 0 554.78116 -0.00085817687 -0.00089317663 + 62460 -6240.2984 -6251.7901 11.491635 3669.279 627.50294 -10548.572 0 550.74364 -0.00097622361 -0.0010191242 + 62470 -6240.3131 -6251.1751 10.862027 3664.1311 624.64081 -10539.947 0 520.56926 -0.0011826479 -0.0012249514 + 62480 -6240.5614 -6250.316 9.7545968 3660.4898 621.56177 -10532.368 0 467.49501 -0.0014566218 -0.0014887927 + 62490 -6240.9212 -6249.4542 8.5329304 3658.2923 618.55168 -10526.298 0 408.9459 -0.0017544208 -0.0017748988 + 62500 -6241.2564 -6248.8975 7.6410458 3657.1913 615.86413 -10521.953 0 366.20179 -0.0020248419 -0.0020422047 + 62510 -6241.5214 -6248.8271 7.3056665 3656.8626 613.72291 -10519.413 0 350.12853 -0.0022289415 -0.0022545977 + 62520 -6241.7842 -6249.2059 7.421765 3657.162 612.33261 -10518.701 0 355.69262 -0.0023490553 -0.0023872465 + 62530 -6242.1552 -6249.8538 7.6986466 3658.0555 611.86951 -10519.779 0 368.96234 -0.0023826661 -0.0024269961 + 62540 -6242.69 -6250.601 7.910979 3659.4571 612.44487 -10522.503 0 379.1385 -0.0023305276 -0.0023699796 + 62550 -6243.3497 -6251.3761 8.0263661 3661.172 614.05582 -10526.604 0 384.6685 -0.0021928452 -0.0022214276 + 62560 -6244.0469 -6252.1629 8.115981 3663.0165 616.55028 -10531.73 0 388.96335 -0.0019783279 -0.0019992893 + 62570 -6244.7232 -6252.899 8.1758749 3664.9918 619.62511 -10537.516 0 391.8338 -0.0017164499 -0.0017376319 + 62580 -6245.3762 -6253.449 8.0728205 3667.3117 622.86366 -10543.624 0 386.89486 -0.001457771 -0.0014835823 + 62590 -6246.0178 -6253.6938 7.6759927 3670.2136 625.80941 -10549.717 0 367.87664 -0.001257457 -0.0012857362 + 62600 -6246.6249 -6253.6394 7.0144256 3673.6988 628.06384 -10555.402 0 336.17063 -0.0011530212 -0.0011789548 + 62610 -6247.1441 -6253.4205 6.2764674 3677.4102 629.38167 -10560.212 0 300.80353 -0.0011519106 -0.0011735963 + 62620 -6247.5372 -6253.195 5.6577835 3680.7212 629.72563 -10563.642 0 271.15273 -0.0012343748 -0.0012539939 + 62630 -6247.8139 -6253.0372 5.2232846 3682.9401 629.25296 -10565.23 0 250.32911 -0.0013650783 -0.0013853795 + 62640 -6248.0185 -6252.9294 4.9108474 3683.496 628.23658 -10564.662 0 235.35536 -0.0015046805 -0.0015254141 + 62650 -6248.1899 -6252.8376 4.6476853 3682.0615 626.95599 -10561.855 0 222.74316 -0.001618414 -0.0016366719 + 62660 -6248.3334 -6252.7783 4.44494 3678.6425 625.60531 -10557.026 0 213.02646 -0.0016837633 -0.0016974707 + 62670 -6248.4286 -6252.8064 4.3777754 3673.6493 624.25235 -10550.708 0 209.80756 -0.0016981802 -0.0017086582 + 62680 -6248.4616 -6252.9504 4.488824 3667.8947 622.85406 -10543.699 0 215.12963 -0.0016828476 -0.0016937625 + 62690 -6248.4446 -6253.1704 4.7257608 3662.4495 621.31167 -10536.932 0 226.48498 -0.0016768655 -0.0016908969 + 62700 -6248.4081 -6253.3821 4.9740421 3658.3587 619.54361 -10531.284 0 238.38401 -0.0017211733 -0.0017378669 + 62710 -6248.3741 -6253.5202 5.146125 3656.3217 617.55624 -10527.398 0 246.63118 -0.0018390145 -0.0018557949 + 62720 -6248.3386 -6253.5781 5.239494 3656.4805 615.49322 -10525.552 0 251.10595 -0.0020231365 -0.0020382837 + 62730 -6248.2792 -6253.5897 5.3104323 3658.4127 613.64407 -10525.646 0 254.50571 -0.0022362117 -0.0022507666 + 62740 -6248.1819 -6253.5737 5.3918114 3661.3179 612.39821 -10527.29 0 258.40586 -0.0024232014 -0.0024398461 + 62750 -6248.0586 -6253.4988 5.4401327 3664.2984 612.14543 -10529.943 0 260.72168 -0.002528711 -0.0025487373 + 62760 -6247.9373 -6253.3101 5.3728727 3666.6123 613.14747 -10533.07 0 257.49821 -0.0025124338 -0.0025340639 + 62770 -6247.831 -6252.9961 5.1650464 3667.8426 615.42691 -10536.266 0 247.538 -0.0023596955 -0.002379826 + 62780 -6247.7204 -6252.6252 4.9048297 3667.9852 618.72204 -10539.332 0 235.06696 -0.0020870318 -0.0021048213 + 62790 -6247.568 -6252.3128 4.7448287 3667.4621 622.53105 -10542.306 0 227.39881 -0.0017420368 -0.0017605436 + 62800 -6247.3526 -6252.147 4.7944509 3667.0179 626.22937 -10545.394 0 229.77699 -0.0013948791 -0.001418803 + 62810 -6247.0878 -6252.1437 5.0558548 3667.4682 629.21821 -10548.83 0 242.30493 -0.001120371 -0.0011518642 + 62820 -6246.8096 -6252.2616 5.4520079 3669.349 631.061 -10552.672 0 261.29081 -0.00097494571 -0.0010112327 + 62830 -6246.5463 -6252.4506 5.904283 3672.6202 631.57591 -10556.647 0 282.96637 -0.00097781225 -0.0010125743 + 62840 -6246.2953 -6252.6821 6.3868051 3676.5835 630.86234 -10560.128 0 306.09153 -0.0011052 -0.001132645 + 62850 -6246.0231 -6252.9447 6.9216298 3680.0781 629.24995 -10562.273 0 331.72334 -0.0013009564 -0.0013198333 + 62860 -6245.6891 -6253.2119 7.5227261 3681.8906 627.18014 -10562.283 0 360.53124 -0.0014996051 -0.0015145241 + 62870 -6245.284 -6253.4063 8.1222903 3681.2122 625.0586 -10559.677 0 389.26572 -0.0016525178 -0.0016712037 + 62880 -6244.8548 -6253.3945 8.5396528 3677.9442 623.13594 -10554.475 0 409.26808 -0.001745441 -0.0017730936 + 62890 -6244.4884 -6253.0441 8.5556577 3672.7012 621.46436 -10547.21 0 410.03512 -0.0017982694 -0.00183315 + 62900 -6244.2513 -6252.3267 8.075425 3666.5224 619.94511 -10538.794 0 387.01968 -0.0018471605 -0.0018816321 + 62910 -6244.1351 -6251.385 7.2498376 3660.4717 618.44111 -10530.298 0 347.4529 -0.0019201822 -0.0019470068 + 62920 -6244.0622 -6250.4897 6.4275652 3655.3556 616.90042 -10522.746 0 308.04499 -0.0020213442 -0.002039927 + 62930 -6243.9456 -6249.8991 5.9535622 3651.6608 615.43152 -10516.991 0 285.32811 -0.0021306152 -0.0021475646 + 62940 -6243.7522 -6249.7184 5.9662042 3649.6393 614.29443 -10513.652 0 285.93398 -0.0022162385 -0.0022395425 + 62950 -6243.5191 -6249.8654 6.3463098 3649.3908 613.8101 -10513.066 0 304.15077 -0.0022493939 -0.0022810765 + 62960 -6243.3117 -6250.1686 6.8568752 3650.861 614.22687 -10515.256 0 328.61993 -0.0022129372 -0.002246767 + 62970 -6243.155 -6250.5206 7.3655656 3653.802 615.60462 -10519.927 0 352.99923 -0.0021029306 -0.0021299915 + 62980 -6242.9962 -6250.9519 7.9556762 3657.8059 617.7726 -10526.53 0 381.28064 -0.0019281782 -0.0019460399 + 62990 -6242.7454 -6251.5482 8.8027128 3662.4547 620.38194 -10534.385 0 421.87539 -0.00171259 -0.0017294085 + 63000 -6242.3734 -6252.2815 9.9080771 3667.4747 623.02427 -10542.78 0 474.85065 -0.0014973912 -0.0015258145 + 63010 -6241.9793 -6252.9261 10.946767 3672.7149 625.35665 -10550.998 0 524.63051 -0.0013338428 -0.0013790473 + 63020 -6241.7507 -6253.1718 11.421053 3677.8993 627.17897 -10558.25 0 547.36095 -0.0012617802 -0.0013147049 + 63030 -6241.822 -6252.8639 11.041886 3682.3488 628.44169 -10563.654 0 529.18911 -0.001283932 -0.001327611 + 63040 -6242.1556 -6252.1567 10.001118 3684.9863 629.19917 -10566.342 0 479.30969 -0.0013576537 -0.0013824313 + 63050 -6242.5807 -6251.4129 8.8321779 3684.7732 629.54512 -10565.731 0 423.28752 -0.0014183234 -0.0014313946 + 63060 -6242.9636 -6250.9192 7.9555966 3681.3413 629.55873 -10561.819 0 381.27683 -0.0014217363 -0.0014405407 + 63070 -6243.3206 -6250.689 7.3683261 3675.3403 629.26621 -10555.296 0 353.13153 -0.0013723674 -0.0014080024 + 63080 -6243.7561 -6250.5414 6.7852336 3668.2103 628.61675 -10547.368 0 325.18646 -0.0013158692 -0.0013633461 + 63090 -6244.3154 -6250.3492 6.0338705 3661.5518 627.49015 -10539.391 0 289.17693 -0.0013066049 -0.0013508259 + 63100 -6244.9259 -6250.1889 5.2630217 3656.5516 625.75422 -10532.495 0 252.23353 -0.0013789478 -0.0014087384 + 63110 -6245.4695 -6250.2663 4.7968099 3653.7647 623.35828 -10527.389 0 229.89005 -0.0015389445 -0.0015553347 + 63120 -6245.8824 -6250.7257 4.8433183 3653.211 620.41809 -10524.355 0 232.11899 -0.0017706382 -0.0017837735 + 63130 -6246.192 -6251.5236 5.3316328 3654.5585 617.24807 -10523.33 0 255.52176 -0.0020437183 -0.0020633795 + 63140 -6246.4823 -6252.4527 5.9704363 3657.2364 614.32043 -10524.01 0 286.13681 -0.0023168518 -0.002345072 + 63150 -6246.8284 -6253.2722 6.4438513 3660.4881 612.15869 -10525.919 0 308.82551 -0.0025404017 -0.00257123 + 63160 -6247.2448 -6253.8328 6.5879765 3663.4701 611.19766 -10528.501 0 315.7328 -0.0026646673 -0.0026899996 + 63170 -6247.6822 -6254.1152 6.432943 3665.4537 611.65663 -10531.225 0 308.30272 -0.0026547763 -0.002670891 + 63180 -6248.0687 -6254.1822 6.1134431 3666.0738 613.46981 -10533.726 0 292.9905 -0.002505859 -0.0025157443 + 63190 -6248.3585 -6254.1037 5.7452183 3665.4857 616.29833 -10535.888 0 275.3431 -0.0022492223 -0.0022598163 + 63200 -6248.5537 -6253.9142 5.3604997 3664.3186 619.62 -10537.853 0 256.90522 -0.0019446908 -0.0019618274 + 63210 -6248.6923 -6253.6184 4.926088 3663.4257 622.86603 -10539.91 0 236.08578 -0.0016619424 -0.0016866224 + 63220 -6248.8177 -6253.2283 4.4106121 3663.5316 625.55759 -10542.317 0 211.38128 -0.0014587186 -0.0014868254 + 63230 -6248.9502 -6252.7992 3.8490465 3664.9384 627.39803 -10545.136 0 184.4679 -0.0013643251 -0.0013896364 + 63240 -6249.0768 -6252.4377 3.3609249 3667.4159 628.29817 -10548.152 0 161.07438 -0.0013742231 -0.0013926729 + 63250 -6249.1618 -6252.2679 3.1060543 3670.3182 628.34056 -10550.927 0 148.85955 -0.0014571782 -0.00146963 + 63260 -6249.1711 -6252.3708 3.1996405 3672.8542 627.70889 -10552.934 0 153.34473 -0.0015713819 -0.0015831034 + 63270 -6249.0952 -6252.7322 3.6369893 3674.3773 626.61379 -10553.723 0 174.30493 -0.0016820424 -0.0016991545 + 63280 -6248.9578 -6253.2358 4.2780524 3674.5634 625.23743 -10553.037 0 205.02827 -0.0017724479 -0.0017976525 + 63290 -6248.8019 -6253.7132 4.9112972 3673.422 623.70687 -10550.842 0 235.37692 -0.0018442039 -0.0018748193 + 63300 -6248.6603 -6254.025 5.3646301 3671.1779 622.09551 -10547.298 0 257.10318 -0.0019085031 -0.001938463 + 63310 -6248.5302 -6254.1178 5.5875905 3668.1307 620.44694 -10542.695 0 267.78869 -0.0019752084 -0.0019996714 + 63320 -6248.378 -6254.0191 5.6411375 3664.5855 618.81111 -10537.416 0 270.35496 -0.0020466243 -0.0020654694 + 63330 -6248.1709 -6253.7809 5.6100057 3660.8692 617.27695 -10531.927 0 268.86295 -0.0021179086 -0.0021352223 + 63340 -6247.9065 -6253.4322 5.5256415 3657.363 615.9829 -10526.778 0 264.81975 -0.0021807216 -0.0022010419 + 63350 -6247.6126 -6252.9822 5.3696372 3654.4822 615.0955 -10522.56 0 257.34314 -0.0022259455 -0.0022508376 + 63360 -6247.3209 -6252.4578 5.1368554 3652.6033 614.76391 -10519.825 0 246.18694 -0.0022447607 -0.0022724223 + 63370 -6247.0436 -6251.9255 4.8819279 3651.9917 615.07142 -10518.989 0 233.96938 -0.0022300598 -0.0022574784 + 63380 -6246.768 -6251.4765 4.708478 3652.7686 616.00495 -10520.25 0 225.65669 -0.0021790973 -0.002204437 + 63390 -6246.4679 -6251.1928 4.7248181 3654.9112 617.45287 -10523.557 0 226.43979 -0.0020957536 -0.0021193858 + 63400 -6246.1172 -6251.1203 5.0031586 3658.2629 619.23045 -10528.614 0 239.77943 -0.0019904143 -0.0020144664 + 63410 -6245.7034 -6251.2567 5.5533429 3662.5407 621.12436 -10534.922 0 266.14735 -0.0018771724 -0.0019040864 + 63420 -6245.2377 -6251.5521 6.314433 3667.3292 622.94218 -10541.824 0 302.62306 -0.0017693898 -0.0018002981 + 63430 -6244.7528 -6251.9277 7.174864 3672.0675 624.55017 -10548.545 0 343.85974 -0.0016751001 -0.0017092193 + 63440 -6244.29 -6252.3011 8.0111002 3676.0712 625.88721 -10554.259 0 383.93687 -0.0015944713 -0.0016300429 + 63450 -6243.8869 -6252.5958 8.7089246 3678.6455 626.95145 -10558.193 0 417.38053 -0.0015215942 -0.001557195 + 63460 -6243.5748 -6252.7383 9.1634423 3679.2729 627.7659 -10559.777 0 439.16357 -0.0014500962 -0.0014849359 + 63470 -6243.3718 -6252.6714 9.2995657 3677.7801 628.33617 -10558.788 0 445.68737 -0.001378841 -0.0014125966 + 63480 -6243.2716 -6252.384 9.1123423 3674.4045 628.61949 -10555.408 0 436.71457 -0.0013149866 -0.0013482049 + 63490 -6243.2488 -6251.9125 8.6636874 3669.7593 628.52098 -10550.193 0 415.21251 -0.0012746026 -0.0013086496 + 63500 -6243.2811 -6251.3122 8.0310852 3664.7138 627.91932 -10543.945 0 384.89466 -0.0012802017 -0.0013156198 + 63510 -6243.3578 -6250.6481 7.2902588 3660.1835 626.70968 -10537.541 0 349.39011 -0.0013531788 -0.001388245 + 63520 -6243.4641 -6250.0205 6.5564113 3656.8812 624.85099 -10531.753 0 314.22002 -0.0015030935 -0.0015350223 + 63530 -6243.5695 -6249.5714 6.0019225 3655.1424 622.40908 -10527.123 0 287.6458 -0.0017202448 -0.0017480753 + 63540 -6243.6423 -6249.4349 5.792598 3654.9012 619.58577 -10523.922 0 277.6138 -0.001975914 -0.0020017492 + 63550 -6243.6731 -6249.6668 5.9936092 3655.7861 616.71898 -10522.172 0 287.24738 -0.002228792 -0.0022559964 + 63560 -6243.6822 -6250.2152 6.5329656 3657.2581 614.24002 -10521.713 0 313.09637 -0.0024335585 -0.0024638943 + 63570 -6243.7053 -6250.952 7.2467242 3658.7485 612.58703 -10522.288 0 347.30369 -0.0025494869 -0.0025819815 + 63580 -6243.7724 -6251.7288 7.9563925 3659.7995 612.09315 -10523.621 0 381.31497 -0.002549249 -0.0025814836 + 63590 -6243.897 -6252.4174 8.5204374 3660.1969 612.88567 -10525.5 0 408.34717 -0.0024274932 -0.002457722 + 63600 -6244.0778 -6252.927 8.8491794 3660.049 614.83548 -10527.811 0 424.10233 -0.0022060111 -0.0022343748 + 63610 -6244.3044 -6253.2079 8.9035534 3659.7592 617.58119 -10530.548 0 426.70824 -0.001931342 -0.0019597119 + 63620 -6244.5638 -6253.2479 8.6840304 3659.8936 620.62483 -10533.766 0 416.18746 -0.0016636235 -0.0016943211 + 63630 -6244.847 -6253.0592 8.2121631 3660.9779 623.46736 -10537.504 0 393.57293 -0.0014596779 -0.0014936297 + 63640 -6245.1469 -6252.6762 7.5292972 3663.2729 625.73359 -10541.683 0 360.84617 -0.0013558403 -0.0013915469 + 63650 -6245.4482 -6252.1675 6.7193421 3666.607 627.2422 -10546.017 0 322.02858 -0.0013570824 -0.0013916353 + 63660 -6245.7244 -6251.6385 5.9140826 3670.3661 628.00399 -10550.009 0 283.43602 -0.0014376996 -0.001469016 + 63670 -6245.9504 -6251.2027 5.2523608 3673.6739 628.16249 -10553.039 0 251.7226 -0.0015534848 -0.0015815466 + 63680 -6246.1163 -6250.9444 4.8281282 3675.6808 627.90725 -10554.532 0 231.39099 -0.0016591429 -0.0016853992 + 63690 -6246.2286 -6250.902 4.6733761 3675.8252 627.39164 -10554.119 0 223.97441 -0.0017233727 -0.0017494475 + 63700 -6246.3014 -6251.0726 4.7711838 3673.9842 626.68104 -10551.738 0 228.6619 -0.0017373439 -0.0017642 + 63710 -6246.3503 -6251.4184 5.0681146 3670.4942 625.7459 -10547.658 0 242.89249 -0.0017154769 -0.0017430463 + 63720 -6246.3908 -6251.873 5.4822409 3666.05 624.49978 -10542.423 0 262.73974 -0.00168869 -0.0017157663 + 63730 -6246.434 -6252.3594 5.9253863 3661.511 622.86697 -10536.737 0 283.97776 -0.0016917407 -0.0017165541 + 63740 -6246.4792 -6252.8148 6.3356138 3657.6745 620.85418 -10531.343 0 303.63816 -0.0017490802 -0.0017707648 + 63750 -6246.5152 -6253.2004 6.6851786 3655.0979 618.59796 -10526.896 0 320.39127 -0.0018653221 -0.0018851698 + 63760 -6246.5348 -6253.4822 6.9474328 3654.0251 616.36674 -10523.874 0 332.95996 -0.0020241724 -0.0020450478 + 63770 -6246.5495 -6253.6102 7.0607195 3654.3994 614.51075 -10522.52 0 338.38929 -0.0021946904 -0.0022185986 + 63780 -6246.5849 -6253.5286 6.9436995 3655.9195 613.37309 -10522.821 0 332.78104 -0.0023404812 -0.0023664897 + 63790 -6246.6569 -6253.2194 6.5624982 3658.1142 613.19401 -10524.528 0 314.51174 -0.0024281982 -0.0024529536 + 63800 -6246.7519 -6252.7378 5.9858873 3660.4532 614.04556 -10527.237 0 286.87731 -0.0024344073 -0.0024549894 + 63810 -6246.8333 -6252.203 5.3696721 3662.493 615.8189 -10530.515 0 257.34482 -0.0023510094 -0.0023675264 + 63820 -6246.8672 -6251.747 4.8798661 3664.0104 618.25853 -10534.016 0 233.87057 -0.0021883907 -0.0022040261 + 63830 -6246.8451 -6251.461 4.6159108 3665.0544 621.02071 -10537.536 0 221.22035 -0.0019744245 -0.0019929808 + 63840 -6246.7869 -6251.3721 4.5852309 3665.8832 623.73621 -10540.992 0 219.74999 -0.0017481221 -0.0017710866 + 63850 -6246.7227 -6251.4595 4.7368001 3666.8098 626.06939 -10544.339 0 227.01404 -0.0015489953 -0.0015744346 + 63860 -6246.6693 -6251.6908 5.0214931 3668.0268 627.76968 -10547.487 0 240.65813 -0.0014059538 -0.0014302137 + 63870 -6246.6155 -6252.0422 5.4266777 3669.4996 628.70635 -10550.248 0 260.07684 -0.0013309737 -0.0013519603 + 63880 -6246.534 -6252.4833 5.9493071 3670.9846 628.87555 -10552.343 0 285.12418 -0.0013206706 -0.0013399208 + 63890 -6246.4108 -6252.9414 6.5305746 3672.1484 628.37557 -10553.465 0 312.98178 -0.0013637082 -0.0013852476 + 63900 -6246.2661 -6253.2923 7.0262392 3672.6991 627.35866 -10553.35 0 336.73681 -0.0014480598 -0.0014749704 + 63910 -6246.1439 -6253.407 7.2630259 3672.4483 625.97876 -10551.834 0 348.08496 -0.0015635271 -0.0015953789 + 63920 -6246.0786 -6253.2229 7.1442799 3671.3009 624.35925 -10548.883 0 342.39398 -0.0016999908 -0.001733369 + 63930 -6246.0693 -6252.7825 6.7131777 3669.233 622.59585 -10544.611 0 321.73314 -0.0018450926 -0.0018763777 + 63940 -6246.0861 -6252.2112 6.125118 3666.3075 620.78725 -10539.306 0 293.55002 -0.0019837881 -0.0020115504 + 63950 -6246.0939 -6251.6606 5.5667062 3662.7172 619.0647 -10533.443 0 266.78779 -0.0020995004 -0.0021249163 + 63960 -6246.0722 -6251.2572 5.1850033 3658.8139 617.59392 -10527.665 0 248.49445 -0.0021762594 -0.0022018933 + 63970 -6246.0207 -6251.0726 5.0519209 3655.0972 616.54422 -10522.714 0 242.1164 -0.0022023002 -0.0022302858 + 63980 -6245.9564 -6251.1139 5.1575649 3652.1587 616.04071 -10519.313 0 247.17945 -0.0021748855 -0.0022053078 + 63990 -6245.9039 -6251.3354 5.4314939 3650.5804 616.12143 -10518.037 0 260.30767 -0.0021037368 -0.0021340438 + 64000 -6245.8789 -6251.673 5.7941077 3650.8003 616.71693 -10519.19 0 277.68615 -0.0020096868 -0.002036035 + 64010 -6245.8718 -6252.0824 6.2105323 3652.9837 617.66481 -10522.731 0 297.64356 -0.001918013 -0.0019383526 + 64020 -6245.8525 -6252.5429 6.6903963 3656.9588 618.76343 -10528.265 0 320.64133 -0.0018500827 -0.0018666689 + 64030 -6245.8002 -6253.0127 7.2125 3662.242 619.84914 -10535.104 0 345.66347 -0.0018177917 -0.0018361465 + 64040 -6245.7363 -6253.3815 7.6452417 3668.1195 620.86021 -10542.361 0 366.40288 -0.0018215923 -0.0018457408 + 64050 -6245.7179 -6253.4943 7.7763332 3673.723 621.84851 -10549.066 0 372.68552 -0.0018494017 -0.0018775542 + 64060 -6245.7852 -6253.2569 7.4716523 3678.1037 622.92868 -10554.289 0 358.0835 -0.0018757538 -0.001901442 + 64070 -6245.9109 -6252.7338 6.8228818 3680.3774 624.19302 -10557.304 0 326.99078 -0.0018660786 -0.0018846775 + 64080 -6246.0141 -6252.127 6.1128914 3679.9901 625.63842 -10557.755 0 292.96406 -0.0017909126 -0.0018052092 + 64090 -6246.0309 -6251.6344 5.6035086 3677.0015 627.13648 -10555.772 0 268.55157 -0.0016453831 -0.0016639403 + 64100 -6245.9731 -6251.317 5.343932 3672.1818 628.45025 -10551.949 0 256.11121 -0.0014600638 -0.0014892842 + 64110 -6245.9163 -6251.0998 5.1834705 3666.7897 629.2847 -10547.174 0 248.42099 -0.0012922167 -0.0013296359 + 64120 -6245.9281 -6250.8992 4.9710532 3662.1137 629.35572 -10542.369 0 238.24076 -0.0012006312 -0.0012361426 + 64130 -6246.0024 -6250.7514 4.7489335 3659.0306 628.4639 -10538.246 0 227.59554 -0.0012200081 -0.0012444258 + 64140 -6246.0569 -6250.8134 4.7565088 3657.8146 626.56 -10535.188 0 227.95859 -0.0013506693 -0.0013642163 + 64150 -6245.9993 -6251.2285 5.2291875 3658.2452 623.7886 -10533.262 0 250.612 -0.0015665504 -0.0015795431 + 64160 -6245.8096 -6251.9693 6.1596773 3659.8563 620.49569 -10532.321 0 295.2063 -0.0018305326 -0.001855038 + 64170 -6245.5694 -6252.808 7.2385238 3662.1037 617.18479 -10532.096 0 346.91067 -0.0021033438 -0.0021427005 + 64180 -6245.4053 -6253.4552 8.0498981 3664.3717 614.41747 -10532.244 0 385.79628 -0.0023424691 -0.0023881499 + 64190 -6245.3879 -6253.748 8.3600747 3665.953 612.68144 -10532.382 0 400.66169 -0.0025006675 -0.0025395599 + 64200 -6245.4824 -6253.716 8.2335526 3666.1944 612.27181 -10532.182 0 394.59804 -0.0025355984 -0.0025607965 + 64210 -6245.5975 -6253.4868 7.889295 3664.8133 613.22597 -10531.526 0 378.09928 -0.002429334 -0.0024445433 + 64220 -6245.6715 -6253.148 7.4764865 3662.1627 615.3249 -10530.636 0 358.31518 -0.0022031989 -0.0022179687 + 64230 -6245.7103 -6252.7026 6.9923084 3659.2084 618.15141 -10530.062 0 335.11065 -0.0019147941 -0.0019363884 + 64240 -6245.7574 -6252.1304 6.3729702 3657.1896 621.18777 -10530.508 0 305.42849 -0.0016377939 -0.0016667748 + 64250 -6245.8448 -6251.4685 5.6236854 3657.1417 623.93137 -10532.542 0 269.51856 -0.0014363025 -0.0014678384 + 64260 -6245.9692 -6250.8369 4.8677402 3659.5107 626.00141 -10536.349 0 233.28942 -0.0013458236 -0.0013740411 + 64270 -6246.0992 -6250.4019 4.3026822 3664.0016 627.2091 -10541.613 0 206.20867 -0.001366247 -0.0013881552 + 64280 -6246.1957 -6250.3094 4.113785 3669.6812 627.57539 -10547.566 0 197.15566 -0.0014663101 -0.001483373 + 64290 -6246.2321 -6250.6206 4.3885941 3675.2726 627.2963 -10553.19 0 210.32605 -0.0015964446 -0.0016133511 + 64300 -6246.2097 -6251.2718 5.0620693 3679.5237 626.6673 -10557.463 0 242.60276 -0.0017058135 -0.0017271318 + 64310 -6246.1611 -6252.0861 5.925092 3681.5226 625.98351 -10559.592 0 283.96365 -0.0017582622 -0.0017850061 + 64320 -6246.1332 -6252.8441 6.7108823 3680.8753 625.43984 -10559.159 0 321.62313 -0.0017420945 -0.0017708239 + 64330 -6246.1581 -6253.3745 7.2164207 3677.741 625.06481 -10556.18 0 345.85137 -0.0016712477 -0.001696678 + 64340 -6246.2318 -6253.611 7.3791903 3672.7683 624.72076 -10551.1 0 353.6522 -0.0015789016 -0.0015980903 + 64350 -6246.3213 -6253.587 7.2656332 3666.9558 624.17915 -10544.722 0 348.20991 -0.0015064611 -0.0015213704 + 64360 -6246.392 -6253.3864 6.9944609 3661.4478 623.24141 -10538.076 0 335.21381 -0.0014911337 -0.0015077108 + 64370 -6246.4356 -6253.087 6.6514031 3657.2877 621.84977 -10532.225 0 318.77256 -0.0015549597 -0.0015792527 + 64380 -6246.4791 -6252.729 6.2498634 3655.1767 620.13665 -10528.042 0 299.52852 -0.0016974044 -0.001731169 + 64390 -6246.5639 -6252.3286 5.764633 3655.2941 618.3925 -10526.015 0 276.27356 -0.0018930641 -0.0019319881 + 64400 -6246.7106 -6251.9214 5.2107837 3657.2458 616.97108 -10526.138 0 249.72999 -0.0020960773 -0.0021322698 + 64410 -6246.897 -6251.5914 4.6944056 3660.1921 616.1772 -10527.961 0 224.98225 -0.0022520397 -0.0022792619 + 64420 -6247.0691 -6251.4493 4.3801546 3663.1486 616.18144 -10530.779 0 209.92159 -0.0023151992 -0.0023330093 + 64430 -6247.1763 -6251.5706 4.3943725 3665.352 616.98459 -10533.907 0 210.60299 -0.0022648874 -0.0022786669 + 64440 -6247.2022 -6251.9437 4.741527 3666.5263 618.42958 -10536.9 0 227.24058 -0.0021137168 -0.0021308371 + 64450 -6247.172 -6252.4688 5.2968643 3666.9195 620.24738 -10539.636 0 253.85546 -0.001903121 -0.0019282765 + 64460 -6247.1355 -6253.0031 5.8675592 3667.1125 622.12521 -10542.241 0 281.20636 -0.0016881373 -0.0017207666 + 64470 -6247.1417 -6253.4132 6.2715098 3667.7101 623.78343 -10544.907 0 300.56594 -0.0015184467 -0.0015531704 + 64480 -6247.2135 -6253.6165 6.4029209 3669.0567 625.03947 -10547.713 0 306.86389 -0.0014232095 -0.0014528082 + 64490 -6247.3323 -6253.6057 6.2733677 3671.086 625.83532 -10550.527 0 300.65498 -0.0014046381 -0.001424422 + 64500 -6247.4438 -6253.4433 5.9994704 3673.3622 626.2199 -10553.025 0 287.52828 -0.0014422049 -0.0014534576 + 64510 -6247.493 -6253.2116 5.7185684 3675.2901 626.29974 -10554.801 0 274.06589 -0.00150555 -0.0015151878 + 64520 -6247.4651 -6252.9488 5.4836656 3676.3691 626.18177 -10555.5 0 262.80802 -0.0015695129 -0.0015853529 + 64530 -6247.398 -6252.6303 5.2322525 3676.3449 625.92947 -10554.905 0 250.7589 -0.0016229453 -0.0016477914 + 64540 -6247.3518 -6252.2203 4.8684809 3675.1991 625.54502 -10552.964 0 233.32492 -0.0016669934 -0.0016962952 + 64550 -6247.3584 -6251.7534 4.3950175 3673.0412 624.98211 -10549.777 0 210.6339 -0.0017059734 -0.0017312588 + 64560 -6247.3907 -6251.3711 3.9804613 3670.0263 624.18368 -10545.581 0 190.76604 -0.0017390409 -0.0017547411 + 64570 -6247.3754 -6251.2687 3.8932625 3666.3793 623.12835 -10540.776 0 186.58698 -0.0017595077 -0.0017679293 + 64580 -6247.24 -6251.5734 4.333471 3662.499 621.86436 -10535.937 0 207.68425 -0.0017619228 -0.0017722317 + 64590 -6246.9634 -6252.2376 5.2741934 3659.0241 620.51476 -10531.776 0 252.76894 -0.0017504053 -0.0017718242 + 64600 -6246.5984 -6253.0324 6.4339956 3656.7421 619.24914 -10529.024 0 308.35317 -0.0017403321 -0.0017744218 + 64610 -6246.2402 -6253.6663 7.4261089 3656.3197 618.23281 -10528.219 0 355.9008 -0.0017504213 -0.0017888919 + 64620 -6245.9547 -6253.9509 7.9961265 3657.9892 617.57815 -10529.518 0 383.21925 -0.0017902491 -0.0018210862 + 64630 -6245.724 -6253.8863 8.162237 3661.3983 617.32637 -10532.611 0 391.1802 -0.0018529787 -0.0018705701 + 64640 -6245.4682 -6253.6008 8.1325666 3665.7425 617.47051 -10536.814 0 389.75822 -0.0019192598 -0.0019298747 + 64650 -6245.13 -6253.203 8.073005 3670.0939 618.00057 -10541.297 0 386.9037 -0.0019683835 -0.0019857338 + 64660 -6244.7418 -6252.6825 7.9406614 3673.6969 618.93473 -10545.314 0 380.56105 -0.0019865693 -0.0020206717 + 64670 -6244.4105 -6251.9495 7.5389715 3676.0613 620.31161 -10548.322 0 361.30981 -0.0019657763 -0.0020143166 + 64680 -6244.2285 -6250.9779 6.7493728 3676.8791 622.14736 -10550.004 0 323.46781 -0.0018961592 -0.0019457835 + 64690 -6244.1919 -6249.9207 5.7287521 3675.9485 624.38337 -10550.253 0 274.55394 -0.0017625733 -0.0017992338 + 64700 -6244.1976 -6249.082 4.884471 3673.2662 626.85056 -10549.199 0 234.09126 -0.0015532349 -0.0015729733 + 64710 -6244.1148 -6248.7539 4.6391521 3669.2566 629.26125 -10547.272 0 222.3342 -0.001277516 -0.001289012 + 64720 -6243.8668 -6249.0432 5.1764459 3664.926 631.22882 -10545.198 0 248.08433 -0.00097982502 -0.00099731171 + 64730 -6243.4681 -6249.819 6.3509361 3661.7238 632.31916 -10543.862 0 304.37249 -0.00073669514 -0.00076928094 + 64740 -6243.0067 -6250.8073 7.8005904 3661.0662 632.1428 -10544.016 0 373.84806 -0.00063368365 -0.00067901991 + 64750 -6242.5862 -6251.7512 9.1650044 3663.705 630.4836 -10545.94 0 439.23844 -0.00073041382 -0.00077699925 + 64760 -6242.2628 -6252.5204 10.257679 3669.2582 627.4285 -10549.207 0 491.60554 -0.0010300113 -0.0010662467 + 64770 -6242.0274 -6253.1031 11.075712 3676.1782 623.43617 -10552.717 0 530.81028 -0.0014691346 -0.0014922277 + 64780 -6241.8526 -6253.505 11.652491 3682.2318 619.2874 -10555.024 0 558.45273 -0.0019352721 -0.0019529417 + 64790 -6241.7593 -6253.6566 11.897347 3685.2888 615.90308 -10554.849 0 570.18761 -0.0023040019 -0.0023275801 + 64800 -6241.8287 -6253.4205 11.591803 3684.0655 614.07533 -10551.561 0 555.54426 -0.0024796477 -0.002514475 + 64810 -6242.1315 -6252.7069 10.575349 3678.5224 614.20553 -10545.435 0 506.83004 -0.0024232422 -0.0024647536 + 64820 -6242.642 -6251.6004 8.9583384 3669.8327 616.15695 -10537.59 0 429.33384 -0.0021600674 -0.002198759 + 64830 -6243.2318 -6250.375 7.143251 3660.0292 619.29488 -10529.699 0 342.34467 -0.001768809 -0.0017988374 + 64840 -6243.758 -6249.3726 5.6145863 3651.4905 622.70451 -10523.568 0 269.08248 -0.0013588041 -0.0013820982 + 64850 -6244.1561 -6248.8399 4.68387 3646.3816 625.49159 -10520.713 0 224.47733 -0.0010410453 -0.0010642143 + 64860 -6244.457 -6248.8452 4.3881715 3646.1304 627.04268 -10522.018 0 210.3058 -0.00089827411 -0.00092638888 + 64870 -6244.7378 -6249.307 4.5692192 3651.0439 627.16397 -10527.515 0 218.98262 -0.00096139323 -0.00099423396 + 64880 -6245.0605 -6250.0854 5.0248839 3660.1762 626.08157 -10536.343 0 240.82063 -0.0012000598 -0.001233194 + 64890 -6245.4403 -6251.0555 5.615204 3671.5229 624.33052 -10546.909 0 269.11208 -0.0015321315 -0.001561175 + 64900 -6245.8533 -6252.1224 6.2691146 3682.5249 622.57821 -10557.226 0 300.45115 -0.0018501783 -0.0018745078 + 64910 -6246.2697 -6253.1861 6.9164309 3690.751 621.43125 -10565.368 0 331.47418 -0.0020562922 -0.0020792142 + 64920 -6246.6821 -6254.1078 7.4257093 3694.5435 621.2708 -10569.922 0 355.88166 -0.0020924421 -0.0021178426 + 64930 -6247.105 -6254.7303 7.6252771 3693.4082 622.15488 -10570.293 0 365.44606 -0.0019552027 -0.0019838764 + 64940 -6247.5438 -6254.9486 7.4048376 3688.033 623.8138 -10566.795 0 354.88136 -0.001691019 -0.0017202047 + 64950 -6247.9703 -6254.7713 6.8010211 3679.9858 625.74207 -10560.499 0 325.94309 -0.001377391 -0.0014036993 + 64960 -6248.3346 -6254.3115 5.9769728 3671.2539 627.35717 -10552.923 0 286.45007 -0.0010997178 -0.0011221468 + 64970 -6248.6003 -6253.7191 5.1188513 3663.777 628.17073 -10545.667 0 245.32408 -0.00093067671 -0.00095081754 + 64980 -6248.7668 -6253.1172 4.3504579 3659.0511 627.91674 -10540.085 0 208.49835 -0.00091446526 -0.00093435707 + 64990 -6248.8604 -6252.5871 3.7266813 3657.847 626.60391 -10537.038 0 178.60348 -0.0010572778 -0.0010775045 + 65000 -6248.9104 -6252.1895 3.2790928 3660.0881 624.48981 -10536.767 0 157.15252 -0.0013264473 -0.0013461613 + 65010 -6248.9308 -6251.9822 3.0513725 3664.923 621.99842 -10538.904 0 146.23889 -0.0016596156 -0.0016779796 + 65020 -6248.919 -6252.0119 3.0929825 3670.9776 619.61284 -10542.602 0 148.23307 -0.0019815497 -0.0019990013 + 65030 -6248.8647 -6252.2899 3.4251686 3676.7157 617.77225 -10546.778 0 164.1533 -0.0022230047 -0.0022413253 + 65040 -6248.7634 -6252.7712 4.0077475 3680.8094 616.79251 -10550.373 0 192.07375 -0.0023360308 -0.002357245 + 65050 -6248.6259 -6253.3512 4.7252998 3682.4303 616.82049 -10552.602 0 226.46288 -0.0023025083 -0.0023272336 + 65060 -6248.479 -6253.8865 5.4074641 3681.3952 617.82335 -10553.105 0 259.15602 -0.0021349982 -0.0021612814 + 65070 -6248.3518 -6254.243 5.8911971 3678.143 619.60823 -10551.994 0 282.33922 -0.0018706773 -0.0018945698 + 65080 -6248.2525 -6254.3504 6.0979632 3673.5804 621.86404 -10549.795 0 292.24861 -0.00156102 -0.0015792023 + 65090 -6248.159 -6254.2255 6.0664251 3668.871 624.21798 -10547.314 0 290.73713 -0.0012612083 -0.0012739957 + 65100 -6248.0357 -6253.9423 5.9066521 3665.2225 626.29913 -10545.464 0 283.07991 -0.0010221607 -0.0010342647 + 65110 -6247.8644 -6253.5731 5.7086666 3663.6756 627.80016 -10545.049 0 273.59133 -0.00088510122 -0.00090294346 + 65120 -6247.6667 -6253.1441 5.4773423 3664.8766 628.52764 -10546.548 0 262.50498 -0.00087637566 -0.00090338732 + 65130 -6247.4942 -6252.644 5.1498431 3668.8538 628.43231 -10549.93 0 246.80938 -0.0010005638 -0.0010338133 + 65140 -6247.3904 -6252.086 4.6955808 3674.8793 627.61396 -10554.579 0 225.03858 -0.0012331395 -0.001264454 + 65150 -6247.3486 -6251.572 4.223394 3681.5266 626.29973 -10559.398 0 202.40874 -0.0015183962 -0.0015401968 + 65160 -6247.3023 -6251.2858 3.9834858 3686.9989 624.80079 -10563.086 0 190.91099 -0.001779439 -0.0017911756 + 65170 -6247.1669 -6251.3877 4.2207885 3689.6708 623.45428 -10564.513 0 202.28387 -0.0019408754 -0.0019502592 + 65180 -6246.9041 -6251.8819 4.9777336 3688.6369 622.55622 -10563.075 0 238.56092 -0.0019550726 -0.001972054 + 65190 -6246.5594 -6252.58 6.0206054 3684.02 622.29006 -10558.89 0 288.54119 -0.0018185031 -0.0018465847 + 65200 -6246.2305 -6253.2109 6.9804152 3676.9074 622.66404 -10552.782 0 334.54066 -0.0015703523 -0.0016031371 + 65210 -6245.9871 -6253.595 7.607914 3668.9937 623.48361 -10546.072 0 364.61393 -0.0012768691 -0.0013036952 + 65220 -6245.8125 -6253.7299 7.9173435 3662.131 624.38768 -10540.249 0 379.44352 -0.0010125415 -0.0010285063 + 65230 -6245.6327 -6253.7174 8.0846506 3657.95 624.95605 -10536.623 0 387.46182 -0.0008463932 -0.00085737705 + 65240 -6245.404 -6253.6088 8.2047577 3657.57 624.85858 -10536.037 0 393.21803 -0.00083199537 -0.00084966696 + 65250 -6245.1704 -6253.3224 8.1520313 3661.3389 623.98971 -10538.651 0 390.69108 -0.00099458173 -0.001025678 + 65260 -6245.0296 -6252.719 7.6893956 3668.6079 622.53136 -10543.858 0 368.51898 -0.0013145264 -0.0013541138 + 65270 -6245.0378 -6251.7737 6.7359477 3677.6824 620.91381 -10550.37 0 322.82441 -0.0017175355 -0.0017526627 + 65280 -6245.146 -6250.6894 5.5434435 3686.1342 619.68662 -10556.51 0 265.67292 -0.0020857706 -0.0021066718 + 65290 -6245.2301 -6249.8296 4.5995214 3691.5047 619.34975 -10560.684 0 220.43487 -0.0022937626 -0.0023027149 + 65300 -6245.1853 -6249.5072 4.3219132 3692.1674 620.20268 -10561.877 0 207.13033 -0.0022553439 -0.0022652112 + 65310 -6244.9993 -6249.7974 4.7981352 3687.9529 622.24799 -10559.998 0 229.95356 -0.0019583663 -0.0019821712 + 65320 -6244.7505 -6250.5265 5.7759493 3680.224 625.16389 -10555.914 0 276.8159 -0.0014705431 -0.0015112439 + 65330 -6244.5434 -6251.4244 6.8809894 3671.3862 628.35457 -10551.165 0 329.77562 -0.00091596449 -0.00096481189 + 65340 -6244.4354 -6252.2897 7.8543049 3664.0858 631.0818 -10547.457 0 376.42236 -0.00043540255 -0.00047922544 + 65350 -6244.4117 -6253.0411 8.6293578 3660.4281 632.65691 -10546.126 0 413.56724 -0.00014673602 -0.00017743771 + 65360 -6244.4186 -6253.6621 9.2435477 3661.4446 632.64005 -10547.747 0 443.00267 -0.00011646513 -0.0001358391 + 65370 -6244.4214 -6254.1199 9.6985104 3666.8999 630.98243 -10552.002 0 464.80704 -0.00034686425 -0.00036440889 + 65380 -6244.4471 -6254.3193 9.8721719 3675.4274 628.06348 -10557.81 0 473.12987 -0.000779351 -0.00080495497 + 65390 -6244.5807 -6254.1284 9.547724 3684.9047 624.60262 -10563.636 0 457.58051 -0.0013107707 -0.0013469771 + 65400 -6244.9001 -6253.484 8.5838553 3692.9377 621.45895 -10567.881 0 411.38651 -0.0018163761 -0.0018564127 + 65410 -6245.3941 -6252.51 7.1158563 3697.3869 619.3775 -10569.274 0 341.03176 -0.0021759423 -0.002210098 + 65420 -6245.9525 -6251.5145 5.562026 3696.9304 618.77545 -10567.22 0 266.56349 -0.0023032935 -0.00232777 + 65430 -6246.4554 -6250.8248 4.369404 3691.5405 619.64834 -10562.014 0 209.40636 -0.0021740734 -0.002193219 + 65440 -6246.8674 -6250.6033 3.7358474 3682.6019 621.61422 -10554.819 0 179.04277 -0.0018370881 -0.0018575865 + 65450 -6247.2374 -6250.8049 3.5675266 3672.5081 624.05542 -10547.368 0 170.97589 -0.0013983415 -0.0014225893 + 65460 -6247.6254 -6251.2769 3.6514949 3663.9011 626.29672 -10541.475 0 175.00012 -0.00098425428 -0.0010092193 + 65470 -6248.0454 -6251.8815 3.8360943 3658.9115 627.76843 -10538.561 0 183.84716 -0.00070252434 -0.00072352723 + 65480 -6248.4651 -6252.5519 4.0868062 3658.6629 628.12481 -10539.34 0 195.86268 -0.00061563226 -0.00063071697 + 65490 -6248.8381 -6253.2692 4.4310481 3663.1108 627.30712 -10543.687 0 212.36069 -0.00073157545 -0.00074316433 + 65500 -6249.1379 -6254.0034 4.8655363 3671.1596 625.55009 -10550.713 0 233.1838 -0.0010090956 -0.0010221678 + 65510 -6249.3734 -6254.6704 5.2970311 3680.9721 623.33122 -10558.974 0 253.86345 -0.0013720286 -0.0013902633 + 65520 -6249.5791 -6255.1446 5.5655079 3690.3789 621.2632 -10566.787 0 266.73037 -0.0017275782 -0.0017504252 + 65530 -6249.7832 -6255.3275 5.5442815 3697.3172 619.94194 -10572.587 0 265.71308 -0.0019854 -0.0020087473 + 65540 -6249.9794 -6255.2135 5.2341098 3700.2557 619.78474 -10575.254 0 250.84791 -0.0020767706 -0.0020968531 + 65550 -6250.1331 -6254.8884 4.755368 3698.5577 620.90887 -10574.355 0 227.90392 -0.0019725296 -0.0019892958 + 65560 -6250.2172 -6254.461 4.2437749 3692.6871 623.09228 -10570.24 0 203.38551 -0.0016944428 -0.0017109697 + 65570 -6250.239 -6254.0012 3.7621599 3684.1345 625.82883 -10563.964 0 180.30381 -0.0013125085 -0.0013313705 + 65580 -6250.2303 -6253.5453 3.3149771 3675.0319 628.45967 -10557.037 0 158.8723 -0.00092564252 -0.00094635547 + 65590 -6250.2144 -6253.1434 2.9289353 3667.5795 630.34336 -10551.066 0 140.37102 -0.0006323589 -0.00065247397 + 65600 -6250.1857 -6252.8816 2.6959759 3663.4937 631.01858 -10547.394 0 129.20629 -0.00050351561 -0.00052181971 + 65610 -6250.1179 -6252.8456 2.7277352 3663.6421 630.31567 -10546.803 0 130.72838 -0.00056660514 -0.00058486081 + 65620 -6249.9908 -6253.0564 3.0655405 3667.9119 628.38883 -10549.357 0 146.9179 -0.00080363908 -0.00082501494 + 65630 -6249.81 -6253.4398 3.6298357 3675.2737 625.66626 -10554.38 0 173.96209 -0.0011588102 -0.0011844508 + 65640 -6249.6021 -6253.859 4.2568796 3683.996 622.73926 -10560.594 0 204.01356 -0.0015512298 -0.0015782633 + 65650 -6249.3902 -6254.1884 4.7982337 3691.991 620.224 -10566.403 0 229.95828 -0.0018906509 -0.0019138813 + 65660 -6249.1683 -6254.3722 5.203886 3697.2779 618.62916 -10570.279 0 249.39942 -0.0020961697 -0.0021125109 + 65670 -6248.9039 -6254.4201 5.5161485 3698.4951 618.25428 -10571.169 0 264.36479 -0.0021165239 -0.0021284069 + 65680 -6248.5731 -6254.349 5.7759007 3695.3177 619.13377 -10568.801 0 276.81357 -0.0019464835 -0.0019606958 + 65690 -6248.1984 -6254.1311 5.9327259 3688.6018 621.03548 -10563.768 0 284.32952 -0.0016310302 -0.0016532602 + 65700 -6247.8469 -6253.7106 5.8637342 3680.1466 623.51796 -10557.375 0 281.02304 -0.0012520372 -0.0012817499 + 65710 -6247.5825 -6253.0843 5.5017596 3672.1412 626.0392 -10551.265 0 263.67519 -0.00090133826 -0.00093188592 + 65720 -6247.414 -6252.3632 4.9492201 3666.5267 628.09113 -10546.981 0 237.1944 -0.00065280303 -0.00067689703 + 65730 -6247.2886 -6251.7465 4.4579383 3664.5324 629.31979 -10545.599 0 213.64942 -0.00054583833 -0.00056150005 + 65740 -6247.1336 -6251.42 4.2864099 3666.4985 629.59335 -10547.512 0 205.42881 -0.0005837117 -0.00059571618 + 65750 -6246.9065 -6251.4576 4.551106 3671.9348 629.003 -10552.395 0 218.11454 -0.00074131017 -0.00075735148 + 65760 -6246.6196 -6251.7937 5.1741627 3679.6956 627.80843 -10559.298 0 247.97491 -0.00097513678 -0.0010000113 + 65770 -6246.3275 -6252.2753 5.9477834 3688.1933 626.35603 -10566.825 0 285.05115 -0.0012317778 -0.0012639292 + 65780 -6246.0867 -6252.7505 6.6637708 3695.6484 624.99786 -10573.397 0 319.36528 -0.0014549493 -0.0014878403 + 65790 -6245.9162 -6253.1366 7.2204403 3700.4057 624.02917 -10577.571 0 346.04401 -0.0015932117 -0.001620506 + 65800 -6245.7893 -6253.4216 7.6322957 3701.3132 623.64822 -10578.383 0 365.78243 -0.001609976 -0.0016305034 + 65810 -6245.6667 -6253.6094 7.9427046 3698.0726 623.93218 -10575.614 0 380.65897 -0.0014944551 -0.001512931 + 65820 -6245.5383 -6253.6652 8.1268763 3691.4052 624.82224 -10569.893 0 389.48551 -0.001268692 -0.0012916972 + 65830 -6245.4345 -6253.5137 8.0792838 3682.915 626.12062 -10562.549 0 387.20461 -0.0009854293 -0.0010160798 + 65840 -6245.3993 -6253.096 7.696739 3674.6616 627.51119 -10555.269 0 368.87092 -0.00071546463 -0.00075096994 + 65850 -6245.4493 -6252.4362 6.9868377 3668.5922 628.61413 -10549.643 0 334.84847 -0.00052835435 -0.0005621668 + 65860 -6245.5532 -6251.6696 6.116362 3666.0365 629.07281 -10546.779 0 293.13039 -0.00047347536 -0.00050033522 + 65870 -6245.6471 -6251.0041 5.3570003 3667.4231 628.65485 -10547.082 0 256.73751 -0.00056793706 -0.00058802883 + 65880 -6245.6745 -6250.6298 4.9552864 3672.2696 627.33791 -10550.237 0 237.48513 -0.000793947 -0.0008129406 + 65890 -6245.6217 -6250.631 5.0093134 3679.3766 625.34853 -10555.356 0 240.0744 -0.0011037435 -0.0011285173 + 65900 -6245.5251 -6250.9599 5.4347996 3687.1185 623.1322 -10561.211 0 260.46609 -0.0014285674 -0.0014617913 + 65910 -6245.4447 -6251.4866 6.0419571 3693.7558 621.25377 -10566.496 0 289.56449 -0.0016900399 -0.0017278737 + 65920 -6245.4224 -6252.0847 6.6623608 3697.7671 620.24995 -10570.102 0 319.29771 -0.0018149848 -0.0018498034 + 65930 -6245.4562 -6252.6816 7.2254361 3698.2047 620.47418 -10571.361 0 346.28344 -0.0017544534 -0.0017803961 + 65940 -6245.5122 -6253.2439 7.7317194 3695.0101 621.97958 -10570.234 0 370.54737 -0.0015032059 -0.0015200752 + 65950 -6245.5611 -6253.7296 8.1685495 3689.1445 624.47734 -10567.351 0 391.48273 -0.0011106611 -0.001123459 + 65960 -6245.6048 -6254.065 8.4602465 3682.4049 627.39032 -10563.86 0 405.46248 -0.0006742197 -0.00068942366 + 65970 -6245.6741 -6254.168 8.4939047 3676.9189 629.99952 -10561.086 0 407.07557 -0.00031300981 -0.00033469669 + 65980 -6245.8047 -6253.9902 8.1855154 3674.4719 631.65146 -10560.114 0 392.29583 -0.00013013767 -0.00015813952 + 65990 -6246.0134 -6253.5458 7.5323838 3675.9058 631.96263 -10561.414 0 360.99409 -0.00017781768 -0.00020825501 + 66000 -6246.2871 -6252.9171 6.6299915 3680.8153 630.94351 -10564.676 0 317.74639 -0.00043883893 -0.00046639383 + 66010 -6246.5859 -6252.242 5.6560798 3687.6621 628.9902 -10568.894 0 271.07108 -0.0008312006 -0.00085212604 + 66020 -6246.8599 -6251.6828 4.822824 3694.2796 626.74744 -10572.71 0 231.13679 -0.0012343295 -0.0012487206 + 66030 -6247.073 -6251.3751 4.3021072 3698.592 624.89772 -10574.865 0 206.18111 -0.0015280163 -0.0015398076 + 66040 -6247.222 -6251.3769 4.154913 3699.2899 623.95024 -10574.617 0 199.12674 -0.0016307838 -0.0016451672 + 66050 -6247.339 -6251.6499 4.3108792 3696.225 624.09274 -10571.968 0 206.60152 -0.0015244505 -0.0015443478 + 66060 -6247.4732 -6252.0915 4.6182667 3690.4098 625.14469 -10567.646 0 221.33325 -0.0012567419 -0.0012808925 + 66070 -6247.6632 -6252.5977 4.9344895 3683.6533 626.62481 -10562.876 0 236.48842 -0.00092213585 -0.00094629614 + 66080 -6247.9175 -6253.1112 5.1936926 3677.9803 627.91609 -10559.008 0 248.91089 -0.00062919472 -0.00064958003 + 66090 -6248.2192 -6253.6197 5.4005735 3675.0312 628.47964 -10557.131 0 258.82578 -0.00046679185 -0.00048296991 + 66100 -6248.5512 -6254.1108 5.5595871 3675.6187 628.04467 -10557.774 0 266.44661 -0.00047993204 -0.00049466212 + 66110 -6248.917 -6254.5302 5.6131384 3679.5422 626.70324 -10560.776 0 269.01309 -0.0006601482 -0.00067633954 + 66120 -6249.3322 -6254.7948 5.462589 3685.6808 624.87082 -10565.346 0 261.79792 -0.00095038521 -0.00096818013 + 66130 -6249.7918 -6254.8532 5.06135 3692.3289 623.12888 -10570.311 0 242.56829 -0.0012623891 -0.0012792993 + 66140 -6250.254 -6254.7363 4.4822439 3697.6938 622.01798 -10574.448 0 214.81428 -0.0015033233 -0.0015170824 + 66150 -6250.6611 -6254.5431 3.8819773 3700.4209 621.86796 -10576.832 0 186.04613 -0.0016045757 -0.0016155145 + 66160 -6250.9783 -6254.3762 3.3978832 3699.9729 622.72115 -10577.07 0 162.84563 -0.0015422993 -0.0015528998 + 66170 -6251.2096 -6254.2862 3.0766697 3696.7363 624.35294 -10575.375 0 147.45128 -0.0013416917 -0.0013541717 + 66180 -6251.3826 -6254.2682 2.8856288 3691.8401 626.35804 -10572.466 0 138.29552 -0.0010648352 -0.0010793292 + 66190 -6251.5233 -6254.2969 2.7735578 3686.7786 628.26558 -10569.341 0 132.92445 -0.00078890777 -0.00080373196 + 66200 -6251.6406 -6254.3596 2.7190076 3682.9792 629.65373 -10566.993 0 130.3101 -0.00058366697 -0.00059702808 + 66210 -6251.7287 -6254.4608 2.7321853 3681.4438 630.2429 -10566.148 0 130.94165 -0.00049482776 -0.00050623588 + 66220 -6251.7795 -6254.6026 2.8231051 3682.5349 629.95189 -10567.089 0 135.29904 -0.00053593317 -0.00054617321 + 66230 -6251.7923 -6254.7669 2.9745927 3685.9296 628.90695 -10569.603 0 142.55917 -0.00068818076 -0.0006982007 + 66240 -6251.7722 -6254.9194 3.1472065 3690.7247 627.40167 -10573.046 0 150.83179 -0.00090671713 -0.00091676324 + 66250 -6251.7221 -6255.0286 3.3065544 3695.669 625.81682 -10576.514 0 158.46864 -0.0011322896 -0.0011421404 + 66260 -6251.638 -6255.0777 3.4397869 3699.4818 624.52043 -10579.08 0 164.85389 -0.0013067265 -0.001316515 + 66270 -6251.5139 -6255.0583 3.5444462 3701.186 623.77477 -10580.019 0 169.86975 -0.0013886858 -0.0013991373 + 66280 -6251.3508 -6254.9604 3.6096029 3700.3567 623.67556 -10578.993 0 172.99242 -0.0013643658 -0.0013761009 + 66290 -6251.1578 -6254.7771 3.6193327 3697.211 624.14022 -10576.128 0 173.45873 -0.0012490642 -0.0012618548 + 66300 -6250.9442 -6254.5228 3.5786059 3692.5219 624.94819 -10571.993 0 171.50688 -0.0010796237 -0.0010925862 + 66310 -6250.7113 -6254.2419 3.5305754 3687.4088 625.81934 -10567.47 0 169.20498 -0.00090185349 -0.00091443357 + 66320 -6250.4529 -6253.9943 3.5414304 3683.0744 626.50341 -10563.572 0 169.72522 -0.00075802332 -0.00077071257 + 66330 -6250.1632 -6253.8261 3.6628476 3680.5455 626.8499 -10561.222 0 175.54421 -0.00067763631 -0.00069166604 + 66340 -6249.8467 -6253.7483 3.9015976 3680.4533 626.83809 -10561.04 0 186.98645 -0.00067237143 -0.00068863262 + 66350 -6249.52 -6253.7374 4.2173417 3682.8877 626.5634 -10563.188 0 202.11868 -0.00073500393 -0.00075310718 + 66360 -6249.2054 -6253.7561 4.5506194 3687.3591 626.19151 -10567.307 0 218.09121 -0.00084198512 -0.00086035289 + 66370 -6248.9163 -6253.78 4.8637611 3692.8918 625.90046 -10572.572 0 233.09872 -0.00095939076 -0.00097661165 + 66380 -6248.6482 -6253.8087 5.1605316 3698.2534 625.83155 -10577.894 0 247.32163 -0.0010516124 -0.0010681088 + 66390 -6248.3883 -6253.8463 5.4580251 3702.2707 626.06291 -10582.18 0 261.57919 -0.0010909941 -0.0011092363 + 66400 -6248.1366 -6253.8688 5.7321862 3704.1337 626.60638 -10584.609 0 274.71853 -0.0010649666 -0.0010873992 + 66410 -6247.9153 -6253.8169 5.9015847 3703.5669 627.41805 -10584.802 0 282.83705 -0.00097721928 -0.0010035053 + 66420 -6247.751 -6253.6365 5.8854275 3700.824 628.41098 -10582.871 0 282.06271 -0.00084283076 -0.00086930533 + 66430 -6247.6458 -6253.3322 5.6863177 3696.5604 629.46479 -10579.357 0 272.52025 -0.00068190538 -0.00070420587 + 66440 -6247.5692 -6252.979 5.4097848 3691.688 630.43169 -10575.099 0 259.26724 -0.00051703761 -0.00053355811 + 66450 -6247.4787 -6252.6775 5.1987895 3687.2513 631.1418 -10571.071 0 249.15516 -0.00037495508 -0.00038797492 + 66460 -6247.3477 -6252.498 5.1503379 3684.2803 631.41461 -10568.193 0 246.83309 -0.00028707327 -0.00030095092 + 66470 -6247.1759 -6252.4578 5.2818771 3683.5796 631.08876 -10567.126 0 253.13719 -0.00028391944 -0.00030226791 + 66480 -6246.9826 -6252.5308 5.5482648 3685.4882 630.07681 -10568.096 0 265.90398 -0.00038393653 -0.00040768958 + 66490 -6246.7937 -6252.6709 5.8772148 3689.7061 628.43051 -10570.808 0 281.66911 -0.00058189164 -0.00060893301 + 66500 -6246.6274 -6252.8355 6.2080749 3695.2722 626.38145 -10574.489 0 297.52578 -0.00084270154 -0.00086911621 + 66510 -6246.4827 -6253.0068 6.5241287 3700.7424 624.32383 -10578.073 0 312.67285 -0.0011046959 -0.0011272541 + 66520 -6246.3391 -6253.1917 6.8525886 3704.5602 622.73146 -10580.483 0 328.4145 -0.0012937592 -0.0013122071 + 66530 -6246.1756 -6253.3935 7.217867 3705.5336 622.03192 -10580.959 0 345.92069 -0.0013458138 -0.00136303 + 66540 -6245.9943 -6253.5772 7.5828753 3703.2563 622.47678 -10579.31 0 363.41393 -0.0012301831 -0.001249689 + 66550 -6245.8266 -6253.6702 7.8436138 3698.2969 624.04722 -10576.014 0 375.90999 -0.00096375615 -0.00098665064 + 66560 -6245.709 -6253.6097 7.9007047 3692.0637 626.42662 -10572.1 0 378.6461 -0.0006088672 -0.00063321809 + 66570 -6245.6511 -6253.3963 7.7452033 3686.3997 629.0612 -10568.857 0 371.1936 -0.00025563698 -0.00027903883 + 66580 -6245.6286 -6253.0954 7.466802 3683.0593 631.30608 -10567.461 0 357.85105 3.5438351e-06 -1.9007935e-05 + 66590 -6245.6111 -6252.7828 7.1716899 3683.2245 632.61798 -10568.625 0 343.70762 9.8899099e-05 7.4481523e-05 + 66600 -6245.5929 -6252.4886 6.8956763 3687.1583 632.72766 -10572.375 0 330.4795 2.590625e-06 -2.6082112e-05 + 66610 -6245.5951 -6252.1955 6.6003938 3694.0678 631.72775 -10577.991 0 316.32791 -0.00026039332 -0.00029240924 + 66620 -6245.6395 -6251.8926 6.253129 3702.2322 630.04321 -10584.168 0 299.68503 -0.00061369312 -0.00064493449 + 66630 -6245.7197 -6251.6275 5.9078119 3709.4219 628.29476 -10589.344 0 283.1355 -0.00094725015 -0.00097370591 + 66640 -6245.8001 -6251.5007 5.7006132 3713.539 627.10167 -10592.141 0 273.20537 -0.0011500161 -0.001171265 + 66650 -6245.8441 -6251.5992 5.755071 3713.2928 626.88629 -10591.778 0 275.81529 -0.0011479439 -0.0011674667 + 66660 -6245.8455 -6251.9293 6.0837606 3708.6618 627.73651 -10588.328 0 291.56794 -0.0009319342 -0.00095400745 + 66670 -6245.8325 -6252.4112 6.5786941 3700.9478 629.36509 -10582.724 0 315.28793 -0.00056323551 -0.00058950734 + 66680 -6245.8442 -6252.937 7.0928219 3692.3893 631.18453 -10576.511 0 339.92782 -0.00015383532 -0.00018276578 + 66690 -6245.9042 -6253.4296 7.5253975 3685.4783 632.48846 -10571.396 0 360.65928 0.0001697228 0.00014056577 + 66700 -6246.0186 -6253.8486 7.8300343 3682.2205 632.69197 -10568.761 0 375.25918 0.00030531333 0.00027705207 + 66710 -6246.1937 -6254.1537 7.9600754 3683.563 631.54889 -10569.266 0 381.49148 0.00020526127 0.00017797478 + 66720 -6246.4444 -6254.2867 7.8422989 3689.1309 629.25839 -10572.676 0 375.84697 -0.00010910473 -0.00013462164 + 66730 -6246.776 -6254.2082 7.4322311 3697.3301 626.41119 -10577.949 0 356.19422 -0.00055176672 -0.00057373218 + 66740 -6247.1597 -6253.9504 6.7907818 3705.8125 623.79402 -10583.557 0 325.45237 -0.00099653177 -0.0010143462 + 66750 -6247.5407 -6253.6174 6.0767583 3712.1981 622.13401 -10587.95 0 291.23235 -0.001316949 -0.0013331364 + 66760 -6247.8768 -6253.3216 5.4448399 3714.8162 621.88159 -10590.019 0 260.94728 -0.0014274218 -0.0014463958 + 66770 -6248.1668 -6253.1205 4.9537046 3713.183 623.09809 -10589.402 0 237.40932 -0.00130804 -0.0013324362 + 66780 -6248.4402 -6253.0119 4.5717406 3708.0488 625.46382 -10586.525 0 219.10346 -0.0010042231 -0.0010324145 + 66790 -6248.7224 -6252.9773 4.2549604 3701.0559 628.38685 -10582.42 0 203.92157 -0.00060563775 -0.00063277819 + 66800 -6249.0119 -6253.0218 4.0099762 3694.1968 631.1732 -10578.392 0 192.18056 -0.00021636253 -0.00023790323 + 66810 -6249.2832 -6253.1739 3.8907312 3689.2747 633.20947 -10575.658 0 186.46567 7.2686295e-05 5.7923117e-05 + 66820 -6249.5077 -6253.4534 3.9456684 3687.5011 634.10903 -10575.064 0 189.09857 0.00020302927 0.00019231012 + 66830 -6249.6734 -6253.8394 4.1659408 3689.2806 633.78659 -10576.907 0 199.65526 0.00015785358 0.00014650511 + 66840 -6249.7918 -6254.2641 4.4723651 3694.1804 632.4495 -10580.894 0 214.34083 -3.8454193e-05 -5.4122415e-05 + 66850 -6249.8903 -6254.6366 4.7462612 3701.0604 630.51792 -10586.215 0 227.46747 -0.00032913749 -0.00034975186 + 66860 -6249.9963 -6254.8821 4.8857705 3708.3324 628.50218 -10591.717 0 234.15354 -0.00063979839 -0.00066280977 + 66870 -6250.1191 -6254.9777 4.8586575 3714.3059 626.87243 -10596.156 0 232.85413 -0.0008955983 -0.00091721346 + 66880 -6250.2434 -6254.9618 4.7184 3717.5692 625.95363 -10598.485 0 226.1322 -0.0010375944 -0.0010555604 + 66890 -6250.3402 -6254.9031 4.5628994 3717.3363 625.87011 -10598.11 0 218.67974 -0.0010356211 -0.0010507836 + 66900 -6250.3907 -6254.8473 4.4566149 3713.6693 626.5457 -10595.062 0 213.58599 -0.00089531743 -0.00091049519 + 66910 -6250.4017 -6254.7813 4.3795891 3707.484 627.74588 -10590.011 0 209.89449 -0.00065676445 -0.00067375948 + 66920 -6250.3982 -6254.6543 4.2561313 3700.3089 629.13963 -10584.103 0 203.97769 -0.00038361732 -0.00040116075 + 66930 -6250.3957 -6254.4401 4.0444328 3693.8714 630.36569 -10578.677 0 193.83191 -0.00014536156 -0.00016018707 + 66940 -6250.3796 -6254.1843 3.8046189 3689.6628 631.1001 -10574.947 0 182.33869 9.5626236e-07 -9.3302206e-06 + 66950 -6250.31 -6253.9868 3.6768322 3688.6239 631.12367 -10573.734 0 176.21443 2.296676e-05 1.4975718e-05 + 66960 -6250.1487 -6253.9296 3.7808817 3691.0044 630.38002 -10575.314 0 181.20107 -8.3333565e-05 -9.4412539e-05 + 66970 -6249.8867 -6254.0057 4.1190779 3696.3605 629.00673 -10579.373 0 197.40932 -0.00029588581 -0.00031436747 + 66980 -6249.5477 -6254.115 4.5673134 3703.628 627.32202 -10585.065 0 218.89129 -0.0005704611 -0.00059541709 + 66990 -6249.1636 -6254.1381 4.9744633 3711.252 625.76004 -10591.15 0 238.40419 -0.00084464311 -0.00086972749 + 67000 -6248.7373 -6254.0332 5.2959131 3717.4214 624.7657 -10596.22 0 253.80987 -0.0010453034 -0.0010637172 + 67010 -6248.228 -6253.8624 5.634412 3720.4666 624.67895 -10599.008 0 270.03264 -0.0011044521 -0.001115411 + 67020 -6247.5872 -6253.7102 6.1230314 3719.3806 625.64512 -10598.736 0 293.45002 -0.00098272656 -0.00099327435 + 67030 -6246.8279 -6253.5734 6.7454559 3714.2614 627.57448 -10595.409 0 323.2801 -0.00068997842 -0.00070940632 + 67040 -6246.0547 -6253.3463 7.2916491 3706.4032 630.15515 -10589.905 0 349.45674 -0.0002881284 -0.00031967751 + 67050 -6245.4034 -6252.9333 7.5299421 3697.9209 632.91241 -10583.767 0 360.87707 0.0001292088 9.1156116e-05 + 67060 -6244.9414 -6252.37 7.4286447 3691.0765 635.30421 -10578.751 0 356.02234 0.000468648 0.00043319732 + 67070 -6244.6327 -6251.8263 7.1936596 3687.6344 636.83547 -10576.296 0 344.76053 0.00066190923 0.00063397637 + 67080 -6244.3942 -6251.4921 7.0979483 3688.4667 637.16761 -10577.126 0 340.17351 0.00067559957 0.00065326953 + 67090 -6244.1711 -6251.4578 7.2866809 3693.4303 636.1994 -10581.087 0 349.21864 0.00051147879 0.0004895281 + 67100 -6243.9637 -6251.6848 7.7210614 3701.439 634.10074 -10587.225 0 370.03658 0.00020472883 0.00017963157 + 67110 -6243.804 -6252.0626 8.258597 3710.6892 631.28848 -10594.04 0 395.79831 -0.00017962646 -0.00020776821 + 67120 -6243.7201 -6252.4788 8.7586846 3719.0371 628.34216 -10599.858 0 419.76531 -0.00055701764 -0.00058604233 + 67130 -6243.722 -6252.8503 9.1282773 3724.4894 625.87355 -10603.213 0 437.47827 -0.00084194837 -0.00087003221 + 67140 -6243.8082 -6253.1195 9.311295 3725.6978 624.3827 -10603.2 0 446.2495 -0.00096954692 -0.00099613163 + 67150 -6243.974 -6253.2482 9.2742547 3722.3177 624.14144 -10599.707 0 444.47432 -0.00091180859 -0.00093707269 + 67160 -6244.2094 -6253.227 9.017524 3715.1191 625.13482 -10593.481 0 432.17035 -0.00068377054 -0.00070809288 + 67170 -6244.4943 -6253.0827 8.5884491 3705.8178 627.07007 -10585.971 0 411.60667 -0.00034012656 -0.00036422868 + 67180 -6244.8038 -6252.8628 8.0590558 3696.6747 629.4477 -10578.985 0 386.23517 3.5511498e-05 1.0656452e-05 + 67190 -6245.1227 -6252.6048 7.482126 3689.9552 631.68025 -10574.24 0 358.58546 0.00034832957 0.00032259421 + 67200 -6245.4474 -6252.3299 6.8824756 3687.362 633.23486 -10572.927 0 329.84685 0.00051647649 0.00049156738 + 67210 -6245.7717 -6252.0729 6.3011335 3689.5788 633.76771 -10575.419 0 301.98567 0.00049610225 0.00047463832 + 67220 -6246.0739 -6251.91 5.8361362 3696.0769 633.21566 -10581.203 0 279.70039 0.000296875 0.00027973432 + 67230 -6246.3243 -6251.939 5.6147268 3705.2716 631.81823 -10589.029 0 269.08921 -2.0257167e-05 -3.5756696e-05 + 67240 -6246.5119 -6252.2149 5.7029998 3714.9782 630.05864 -10597.252 0 273.31975 -0.00036256865 -0.00038128104 + 67250 -6246.6631 -6252.6971 6.0340025 3722.9971 628.53222 -10604.226 0 289.18326 -0.0006334672 -0.00065844171 + 67260 -6246.8305 -6253.2635 6.4330423 3727.6348 627.7712 -10608.67 0 308.30748 -0.00075804235 -0.00078749679 + 67270 -6247.0556 -6253.7858 6.7302428 3728.0462 628.07605 -10609.908 0 322.551 -0.00070003806 -0.00072838647 + 67280 -6247.3383 -6254.1985 6.8602393 3724.3815 629.41237 -10607.992 0 328.78116 -0.00046962327 -0.00049185164 + 67290 -6247.6408 -6254.5023 6.8615555 3717.7466 631.41495 -10603.664 0 328.84424 -0.00012263859 -0.00013808981 + 67300 -6247.9208 -6254.7146 6.7937192 3709.9631 633.49892 -10598.177 0 325.59314 0.00025016856 0.00023770333 + 67310 -6248.1608 -6254.8248 6.6639506 3703.1279 635.03837 -10592.991 0 319.3739 0.00054529789 0.00053068839 + 67320 -6248.3707 -6254.795 6.424269 3699.0527 635.55395 -10589.402 0 307.88702 0.00067630051 0.00065653814 + 67330 -6248.5708 -6254.5943 6.023532 3698.7489 634.85242 -10588.196 0 288.68145 0.0006014 0.00057709991 + 67340 -6248.7725 -6254.2354 5.4628874 3702.1346 633.07831 -10589.448 0 261.81222 0.00033786879 0.00031239432 + 67350 -6248.97 -6253.7886 4.8186309 3708.0704 630.66536 -10592.524 0 230.93583 -4.2749032e-05 -6.558451e-05 + 67360 -6249.143 -6253.3673 4.2243268 3714.717 628.20889 -10596.293 0 202.45344 -0.00043651777 -0.00045476513 + 67370 -6249.269 -6253.0896 3.8205975 3720.1025 626.30243 -10599.495 0 183.10447 -0.0007380523 -0.00075265072 + 67380 -6249.3366 -6253.0304 3.6938552 3722.7198 625.38536 -10601.136 0 177.03027 -0.00087052019 -0.00088436906 + 67390 -6249.3525 -6253.1913 3.8387821 3721.9571 625.63608 -10600.785 0 183.97598 -0.00080599119 -0.00082169638 + 67400 -6249.3365 -6253.5085 4.1719915 3718.2286 626.93139 -10598.668 0 199.94524 -0.00057082215 -0.00058884196 + 67410 -6249.3069 -6253.8935 4.5865996 3712.7882 628.88247 -10595.564 0 219.81559 -0.00023545308 -0.00025404988 + 67420 -6249.2676 -6254.2733 5.0057007 3707.3234 630.94455 -10592.541 0 239.90126 0.0001074826 9.0610437e-05 + 67430 -6249.2052 -6254.6061 5.4008423 3703.469 632.57561 -10590.651 0 258.83867 0.00036987509 0.00035562568 + 67440 -6249.0981 -6254.8711 5.7729982 3702.376 633.39766 -10590.645 0 276.67446 0.00049189061 0.00047884491 + 67450 -6248.9294 -6255.0451 6.1156248 3704.4339 633.30698 -10592.786 0 293.09506 0.00045618019 0.00044138812 + 67460 -6248.6995 -6255.0863 6.386724 3709.198 632.49422 -10596.779 0 306.08765 0.00028931385 0.00027042669 + 67470 -6248.4248 -6254.9414 6.5166395 3715.5209 631.36686 -10601.829 0 312.31393 5.1599152e-05 2.8950348e-05 + 67480 -6248.1209 -6254.5821 6.4611763 3721.8389 630.40293 -10606.824 0 309.65582 -0.0001803695 -0.000203604 + 67490 -6247.7795 -6254.0461 6.2666507 3726.5525 629.99191 -10610.591 0 300.33306 -0.00033363616 -0.00035390986 + 67500 -6247.3602 -6253.4411 6.0808638 3728.4325 630.32111 -10612.195 0 291.42911 -0.00035763828 -0.00037434432 + 67510 -6246.8105 -6252.8898 6.0792508 3726.9631 631.33919 -10611.192 0 291.35181 -0.0002383366 -0.00025486722 + 67520 -6246.1015 -6252.4605 6.3589608 3722.5165 632.78998 -10607.767 0 304.75708 -3.4708296e-06 -2.4789668e-05 + 67530 -6245.2552 -6252.1436 6.8883726 3716.274 634.28884 -10602.706 0 330.12947 0.00028441069 0.0002556776 + 67540 -6244.3445 -6251.8942 7.5497494 3709.8981 635.42041 -10597.213 0 361.82635 0.00054690462 0.00051248674 + 67550 -6243.4584 -6251.6936 8.2352386 3705.0491 635.84676 -10592.589 0 394.67884 0.00071522184 0.00067957006 + 67560 -6242.66 -6251.5669 8.9068458 3702.9073 635.40564 -10589.88 0 426.86603 0.00075160115 0.00071823486 + 67570 -6241.9779 -6251.5402 9.5623348 3703.8755 634.16196 -10589.578 0 458.28074 0.00065675497 0.00062627993 + 67580 -6241.4307 -6251.5934 10.162624 3707.5351 632.38443 -10591.513 0 487.04997 0.00046297625 0.00043429041 + 67590 -6241.0403 -6251.6673 10.627087 3712.8168 630.45627 -10594.94 0 509.30964 0.00022114658 0.00019337973 + 67600 -6240.8172 -6251.7183 10.901055 3718.3098 628.76321 -10598.791 0 522.43973 -1.1828132e-05 -3.9329298e-05 + 67610 -6240.7516 -6251.7461 10.994504 3722.6422 627.60721 -10601.996 0 526.91834 -0.0001845804 -0.00021336053 + 67620 -6240.8289 -6251.7666 10.937746 3724.8422 627.16857 -10603.777 0 524.19814 -0.00026190709 -0.00029389694 + 67630 -6241.049 -6251.7688 10.719849 3724.5665 627.50646 -10603.842 0 513.75533 -0.00023137732 -0.00026644516 + 67640 -6241.4187 -6251.722 10.303268 3722.1279 628.57171 -10602.422 0 493.79044 -0.00010271538 -0.00013717944 + 67650 -6241.9179 -6251.6335 9.7156605 3718.3388 630.2146 -10600.187 0 465.62896 9.8921391e-05 7.0027825e-05 + 67660 -6242.4828 -6251.5924 9.1095762 3714.2712 632.19243 -10598.056 0 436.582 0.00034013275 0.00031826902 + 67670 -6243.0372 -6251.7249 8.6877332 3711.0348 634.19606 -10596.956 0 416.36492 0.00058217663 0.00056292431 + 67680 -6243.5479 -6252.0877 8.5397723 3709.5983 635.90435 -10597.59 0 409.2738 0.00078166541 0.00075806621 + 67690 -6244.0464 -6252.6005 8.5540771 3710.5987 637.05296 -10600.252 0 409.95937 0.00089606429 0.00086501926 + 67700 -6244.5899 -6253.0936 8.5037062 3714.1287 637.49185 -10604.714 0 407.54532 0.00089696691 0.00086251981 + 67710 -6245.1971 -6253.4311 8.2340254 3719.5954 637.21304 -10610.24 0 394.6207 0.00078467082 0.00075473878 + 67720 -6245.8177 -6253.6006 7.7828227 3725.7905 636.34297 -10615.734 0 372.99653 0.00059269416 0.00057196676 + 67730 -6246.3658 -6253.6928 7.3269792 3731.2198 635.10595 -10620.019 0 351.14995 0.00037637766 0.00036179363 + 67740 -6246.7859 -6253.7942 7.008331 3734.5795 633.77169 -10622.145 0 335.87854 0.00019132638 0.00017438416 + 67750 -6247.0939 -6253.8957 6.8018853 3735.1567 632.5984 -10621.651 0 325.98451 7.4711199e-05 4.8729345e-05 + 67760 -6247.3569 -6253.9073 6.5503652 3732.9709 631.7792 -10618.657 0 313.93026 3.9010706e-05 4.8397354e-06 + 67770 -6247.6324 -6253.762 6.1296272 3728.644 631.40021 -10613.806 0 293.76613 7.7233019e-05 4.2308489e-05 + 67780 -6247.9211 -6253.503 5.5818398 3723.1455 631.42213 -10608.071 0 267.51309 0.00017088851 0.00014278118 + 67790 -6248.1762 -6253.2678 5.0915761 3717.5697 631.69419 -10602.532 0 244.0169 0.00029372474 0.00027423817 + 67800 -6248.3502 -6253.1908 4.840527 3712.9936 631.99903 -10598.183 0 231.98521 0.00041230876 0.00039695352 + 67810 -6248.4347 -6253.3159 4.881141 3710.3464 632.11645 -10595.779 0 233.93167 0.00048959949 0.00047193887 + 67820 -6248.4631 -6253.588 5.1248291 3710.2317 631.89123 -10595.711 0 245.61056 0.0004948654 0.00047145882 + 67830 -6248.4835 -6253.9099 5.4263026 3712.7302 631.29011 -10597.93 0 260.05887 0.00041660899 0.00038882726 + 67840 -6248.5267 -6254.2075 5.6807606 3717.2918 630.43255 -10601.932 0 272.25392 0.00027126982 0.00024336493 + 67850 -6248.5912 -6254.4571 5.8658533 3722.8164 629.57997 -10606.853 0 281.1246 0.00010204815 7.7537045e-05 + 67860 -6248.6522 -6254.6665 6.0143357 3727.9395 629.07508 -10611.681 0 288.24072 -3.2959567e-05 -5.3817528e-05 + 67870 -6248.6856 -6254.8363 6.1506541 3731.4401 629.23919 -10615.516 0 294.77385 -7.9520014e-05 -9.9499845e-05 + 67880 -6248.6893 -6254.932 6.242688 3732.6172 630.25535 -10617.805 0 299.18464 -6.5567825e-06 -2.884573e-05 + 67890 -6248.6866 -6254.8928 6.2061866 3731.491 632.07891 -10618.463 0 297.43528 0.00018099396 0.00015580305 + 67900 -6248.7069 -6254.6726 5.9657544 3728.7525 634.41424 -10617.839 0 285.91242 0.00044139373 0.00041624583 + 67910 -6248.7575 -6254.292 5.5344537 3725.4948 636.77516 -10616.562 0 265.24207 0.00070872598 0.00068783472 + 67920 -6248.8101 -6253.8537 5.0436696 3722.8526 638.61509 -10615.321 0 241.72095 0.00091378863 0.00089870177 + 67930 -6248.8177 -6253.4957 4.6780412 3721.6895 639.48495 -10614.67 0 224.19798 0.0010041069 0.00099164352 + 67940 -6248.7523 -6253.3062 4.5539539 3722.4064 639.16522 -10614.878 0 218.25102 0.00095639446 0.00094078293 + 67950 -6248.6278 -6253.2725 4.6447722 3724.8592 637.72813 -10615.86 0 222.60354 0.00078079718 0.00075851063 + 67960 -6248.4868 -6253.3108 4.8240147 3728.365 635.51304 -10617.189 0 231.19385 0.00051923406 0.00049223714 + 67970 -6248.36 -6253.3538 4.993803 3731.8198 633.02765 -10618.201 0 239.33106 0.00023826917 0.00021249445 + 67980 -6248.2315 -6253.4171 5.1856703 3733.9689 630.8094 -10618.195 0 248.52642 1.459881e-05 -5.3416954e-06 + 67990 -6248.0413 -6253.5797 5.5384109 3733.8114 629.28866 -10616.68 0 265.43173 -8.6759485e-05 -0.00010204734 + 68000 -6247.7281 -6253.8906 6.162564 3731.0084 628.68969 -10613.589 0 295.34465 -3.5547889e-05 -5.2605433e-05 + 68010 -6247.279 -6254.2835 7.0044745 3726.106 628.99068 -10609.38 0 335.69372 0.00014997996 0.00012504214 + 68020 -6246.7469 -6254.5835 7.8366096 3720.4267 629.94815 -10604.958 0 375.5743 0.00040757402 0.00037483089 + 68030 -6246.2123 -6254.6178 8.4055602 3715.6385 631.1796 -10601.436 0 402.84161 0.00065431135 0.00062056205 + 68040 -6245.7171 -6254.3422 8.625137 3713.1839 632.28743 -10599.813 0 413.36496 0.00081831261 0.00079096315 + 68050 -6245.2327 -6253.8678 8.635065 3713.8335 632.99265 -10600.694 0 413.84077 0.00086280086 0.00084232543 + 68060 -6244.7018 -6253.3565 8.6547008 3717.5342 633.23338 -10604.124 0 414.78182 0.000792331 0.00077081905 + 68070 -6244.1161 -6252.881 8.7649006 3723.5161 633.18601 -10609.583 0 420.06322 0.00064406832 0.00061211094 + 68080 -6243.5494 -6252.3848 8.8353726 3730.5051 633.19406 -10616.084 0 423.44063 0.00047467074 0.00043066623 + 68090 -6243.1043 -6251.7856 8.6812114 3736.9433 633.62877 -10622.358 0 416.05236 0.00034933639 0.0003022508 + 68100 -6242.8177 -6251.1205 8.3027949 3741.2649 634.73631 -10627.122 0 397.91652 0.00033031317 0.00029256719 + 68110 -6242.6193 -6250.5826 7.9632652 3742.3 636.5292 -10629.412 0 381.64435 0.00045904113 0.00043569827 + 68120 -6242.3885 -6250.3975 8.0089942 3739.7419 638.75341 -10628.893 0 383.83594 0.00073394803 0.00071818696 + 68130 -6242.0556 -6250.6492 8.5936263 3734.4286 640.93131 -10626.009 0 411.85479 0.0010969701 0.0010758042 + 68140 -6241.6605 -6251.2119 9.5513954 3728.1889 642.47037 -10621.871 0 457.75646 0.0014432997 0.0014081048 + 68150 -6241.3281 -6251.8404 10.512314 3723.2183 642.82775 -10617.887 0 503.80909 0.001656822 0.0016096673 + 68160 -6241.1856 -6252.3272 11.141549 3721.2393 641.7018 -10615.268 0 533.96555 0.0016566684 0.0016079303 + 68170 -6241.2901 -6252.6007 11.310584 3722.834 639.18125 -10614.616 0 542.06665 0.0014313869 0.0013914531 + 68180 -6241.6171 -6252.7147 11.09756 3727.2574 635.76714 -10615.739 0 531.85736 0.0010435772 0.0010153691 + 68190 -6242.1102 -6252.7633 10.653178 3732.7965 632.23204 -10617.792 0 510.56005 0.00060413835 0.0005818547 + 68200 -6242.7401 -6252.793 10.052837 3737.4834 629.36885 -10619.645 0 481.78834 0.00023005644 0.00020483346 + 68210 -6243.5156 -6252.7786 9.263008 3739.815 627.73988 -10620.334 0 443.93532 5.7964845e-06 -2.6457995e-05 + 68220 -6244.4268 -6252.6848 8.2580588 3739.171 627.52849 -10619.384 0 395.77251 -3.6162454e-05 -7.1810442e-05 + 68230 -6245.3915 -6252.5474 7.1559646 3735.8451 628.53996 -10616.933 0 342.95398 8.6929985e-05 5.4861089e-05 + 68240 -6246.2836 -6252.4832 6.1995704 3730.8194 630.32802 -10613.631 0 297.1182 0.00032322821 0.00029845235 + 68250 -6247.012 -6252.6161 5.6040886 3725.4534 632.37001 -10610.44 0 268.57937 0.00060456462 0.00058506512 + 68260 -6247.5587 -6252.9953 5.4365685 3721.1758 634.21242 -10608.384 0 260.55087 0.00086304327 0.00084348733 + 68270 -6247.9618 -6253.5623 5.6004911 3719.1909 635.55547 -10608.309 0 268.40696 0.0010441284 0.0010201334 + 68280 -6248.2841 -6254.1747 5.8906277 3720.2092 636.28354 -10610.667 0 282.31193 0.001115919 0.0010873493 + 68290 -6248.5841 -6254.6716 6.0874619 3724.242 636.45254 -10615.366 0 291.74533 0.0010748706 0.0010462847 + 68300 -6248.8864 -6254.9534 6.0670272 3730.5379 636.23981 -10621.731 0 290.76598 0.00094665108 0.00092412251 + 68310 -6249.1673 -6255.0301 5.8628517 3737.7329 635.87028 -10628.633 0 280.98075 0.00077905598 0.00076508541 + 68320 -6249.3765 -6254.9903 5.6138626 3744.2208 635.54429 -10634.755 0 269.04779 0.00062609019 0.00061679297 + 68330 -6249.4851 -6254.9086 5.4234462 3748.6221 635.3907 -10638.921 0 259.92197 0.00052886932 0.00051661685 + 68340 -6249.5189 -6254.7773 5.2583327 3750.1466 635.45292 -10640.377 0 252.00881 0.00050369572 0.00048350155 + 68350 -6249.5402 -6254.5351 4.994874 3748.6961 635.69895 -10638.93 0 239.38239 0.00054385404 0.00051770686 + 68360 -6249.5942 -6254.1653 4.5711475 3744.733 636.04271 -10634.941 0 219.07504 0.00063120888 0.00060613825 + 68370 -6249.6707 -6253.7588 4.0880883 3739.0756 636.36787 -10629.202 0 195.92413 0.00074657025 0.0007282854 + 68380 -6249.7177 -6253.4735 3.7558461 3732.7573 636.55 -10622.781 0 180.00122 0.00087126589 0.00085934192 + 68390 -6249.6879 -6253.4263 3.7383221 3726.9434 636.47445 -10616.844 0 179.16137 0.00098237459 0.00097109425 + 68400 -6249.576 -6253.6138 4.0378138 3722.8063 636.05023 -10612.47 0 193.51469 0.0010503459 0.0010339121 + 68410 -6249.4167 -6253.9279 4.511212 3721.2952 635.22498 -10610.448 0 216.20259 0.001045139 0.001022407 + 68420 -6249.2517 -6254.2419 4.9901755 3722.8493 634.00639 -10611.098 0 239.15721 0.0009491142 0.00092396225 + 68430 -6249.0938 -6254.4926 5.3987601 3727.1933 632.48843 -10614.174 0 258.73888 0.00076883888 0.00074629078 + 68440 -6248.9176 -6254.6944 5.7767695 3733.3378 630.86996 -10618.902 0 276.85521 0.00053827218 0.00051991165 + 68450 -6248.6845 -6254.884 6.1994703 3739.8149 629.44944 -10624.148 0 297.1134 0.00031138981 0.00029392267 + 68460 -6248.3818 -6255.0472 6.6653294 3745.0658 628.58641 -10628.699 0 319.43999 0.00014818143 0.00012633041 + 68470 -6248.0439 -6255.0934 7.0495078 3747.8415 628.62972 -10631.565 0 337.85197 9.9997129e-05 7.1340823e-05 + 68480 -6247.7331 -6254.9075 7.1743677 3747.4914 629.82093 -10632.22 0 343.83596 0.00019815165 0.00016567455 + 68490 -6247.4919 -6254.4409 6.9489251 3744.0916 632.19239 -10630.725 0 333.03148 0.00044612569 0.00041599426 + 68500 -6247.3099 -6253.7659 6.4560052 3738.4384 635.49462 -10627.699 0 309.40799 0.00081430576 0.00079073343 + 68510 -6247.1355 -6253.0441 5.9085538 3731.9357 639.19355 -10624.173 0 283.17105 0.001238817 0.0012206062 + 68520 -6246.9194 -6252.4386 5.5191755 3726.3566 642.56071 -10621.356 0 264.50986 0.0016291606 0.0016107704 + 68530 -6246.6488 -6252.0401 5.3912558 3723.4531 644.84472 -10620.338 0 258.37923 0.0018876367 0.0018636594 + 68540 -6246.3503 -6251.8514 5.5011202 3724.4545 645.47707 -10621.783 0 263.64455 0.0019373476 0.0019068633 + 68550 -6246.0621 -6251.8314 5.7692478 3729.5951 644.24694 -10625.673 0 276.49473 0.0017500279 0.001717557 + 68560 -6245.7972 -6251.959 6.1617849 3737.8711 641.38509 -10631.215 0 295.30731 0.0013627892 0.0013348839 + 68570 -6245.5242 -6252.2589 6.7347014 3747.1899 637.52485 -10636.974 0 322.76468 0.00087452025 0.00085440425 + 68580 -6245.1899 -6252.7568 7.5668656 3754.9364 633.54773 -10641.241 0 362.64666 0.00041924196 0.00040394147 + 68590 -6244.773 -6253.3993 8.6263667 3758.7788 630.35581 -10642.534 0 413.4239 0.00012406747 0.00010682376 + 68600 -6244.325 -6254.0187 9.6937668 3757.4148 628.63192 -10640.065 0 464.5797 6.7810974e-05 4.4032335e-05 + 68610 -6243.9547 -6254.3952 10.440485 3750.9839 628.65072 -10634.03 0 500.36663 0.00025686413 0.00022834293 + 68620 -6243.7549 -6254.3856 10.630659 3741.0191 630.19675 -10625.601 0 509.48082 0.00062674451 0.00059987513 + 68630 -6243.7341 -6254.0153 10.281233 3729.9972 632.62951 -10616.642 0 492.73438 0.0010654293 0.0010446813 + 68640 -6243.8233 -6253.4487 9.6254277 3720.6764 635.09522 -10609.22 0 461.3045 0.0014467414 0.0014297664 + 68650 -6243.9513 -6252.8596 8.9083016 3715.4104 636.82071 -10605.091 0 426.9358 0.0016636122 0.0016432495 + 68660 -6244.1082 -6252.3238 8.2155778 3715.5586 637.37524 -10605.258 0 393.73658 0.00165663 0.0016280717 + 68670 -6244.333 -6251.8345 7.5014579 3721.0864 636.79441 -10609.715 0 359.51196 0.0014338482 0.0013995127 + 68680 -6244.6468 -6251.4115 6.7646542 3730.501 635.52605 -10617.439 0 324.20019 0.0010733149 0.0010400707 + 68690 -6245.0144 -6251.1652 6.1508246 3741.2576 634.23973 -10626.663 0 294.78203 0.00070008674 0.00067190481 + 68700 -6245.382 -6251.2262 5.8441529 3750.5733 633.58654 -10635.386 0 280.0846 0.00044176808 0.00041619789 + 68710 -6245.7431 -6251.6194 5.8762377 3756.3158 633.98687 -10641.922 0 281.62228 0.00038241643 0.00035447106 + 68720 -6246.1502 -6252.2333 6.0830653 3757.5724 635.49601 -10645.302 0 291.53462 0.0005367721 0.00050495669 + 68730 -6246.6628 -6252.908 6.245207 3754.7415 637.7824 -10645.432 0 299.30536 0.00085254828 0.00082033336 + 68740 -6247.2918 -6253.536 6.2442257 3749.2378 640.23218 -10643.006 0 299.25833 0.0012336067 0.0012058887 + 68750 -6247.989 -6254.0911 6.1020636 3742.9773 642.14974 -10639.218 0 292.44513 0.0015721499 0.0015510108 + 68760 -6248.6795 -6254.5918 5.9122253 3737.8033 642.98 -10635.375 0 283.34701 0.0017793968 0.0017627459 + 68770 -6249.3026 -6255.043 5.740408 3735.0164 642.47008 -10632.529 0 275.11256 0.0018065936 0.0017902224 + 68780 -6249.8334 -6255.4024 5.5689115 3735.1206 640.72048 -10631.243 0 266.89348 0.0016526109 0.0016337182 + 68790 -6250.2767 -6255.5974 5.3207658 3737.7933 638.12556 -10631.516 0 255.00095 0.0013594679 0.0013388281 + 68800 -6250.6431 -6255.581 4.9378576 3742.033 635.24253 -10632.856 0 236.64984 0.00099926559 0.00098037431 + 68810 -6250.9324 -6255.3775 4.4451845 3746.447 632.64138 -10634.466 0 213.03818 0.00065572545 0.00064168617 + 68820 -6251.1326 -6255.0796 3.9469398 3749.6395 630.77863 -10635.498 0 189.1595 0.00040370014 0.00039444678 + 68830 -6251.2363 -6254.7934 3.5570577 3750.6172 629.918 -10635.329 0 170.47416 0.00029122338 0.00028343835 + 68840 -6251.257 -6254.58 3.3229134 3749.0803 630.10258 -10633.763 0 159.25265 0.00032923914 0.00031906979 + 68850 -6251.2299 -6254.4385 3.2086079 3745.4841 631.1729 -10631.096 0 153.7745 0.00049242252 0.00047861673 + 68860 -6251.1921 -6254.3423 3.150259 3740.8553 632.82211 -10628.02 0 150.97809 0.00073035633 0.000715054 + 68870 -6251.159 -6254.2881 3.1291925 3736.4625 634.67697 -10625.428 0 149.96846 0.00098403297 0.0009705961 + 68880 -6251.1148 -6254.3116 3.196822 3733.4803 636.38691 -10624.179 0 153.20965 0.0012012072 0.0011910137 + 68890 -6251.026 -6254.4577 3.4316274 3732.7388 637.69818 -10624.895 0 164.46284 0.0013461502 0.0013369828 + 68900 -6250.8673 -6254.7284 3.8610896 3734.5847 638.49379 -10627.807 0 185.04508 0.0014028478 0.0013902365 + 68910 -6250.6452 -6255.0497 4.4045383 3738.8288 638.79269 -10632.671 0 211.09019 0.0013735741 0.0013543744 + 68920 -6250.4002 -6255.2894 4.8892314 3744.7558 638.71527 -10638.761 0 234.3194 0.0012760392 0.0012516231 + 68930 -6250.1781 -6255.3331 5.1550015 3751.1988 638.42978 -10644.962 0 247.0566 0.0011410474 0.0011169202 + 68940 -6249.9872 -6255.1683 5.1811711 3756.7269 638.0976 -10649.993 0 248.31079 0.0010088983 0.0009899596 + 68950 -6249.7852 -6254.8941 5.1088858 3759.9846 637.83479 -10652.714 0 244.84647 0.00092049137 0.00090579609 + 68960 -6249.5213 -6254.6287 5.1074356 3760.1123 637.69887 -10652.44 0 244.77697 0.00090327001 0.00088598288 + 68970 -6249.1938 -6254.4013 5.2075244 3757.0468 637.69452 -10649.143 0 249.57379 0.00096000379 0.0009335739 + 68980 -6248.8624 -6254.1437 5.2812344 3751.5182 637.78427 -10643.446 0 253.10638 0.0010695498 0.0010343513 + 68990 -6248.5967 -6253.7901 5.1934372 3744.7559 637.89619 -10636.442 0 248.89865 0.0011993684 0.0011631586 + 69000 -6248.4122 -6253.3791 4.9669176 3738.1072 637.93066 -10629.417 0 238.04256 0.0013194881 0.0012911117 + 69010 -6248.2544 -6253.053 4.7986095 3732.7708 637.77081 -10623.595 0 229.97629 0.0014077663 0.0013898658 + 69020 -6248.0425 -6252.9573 4.9147441 3729.6884 637.30022 -10619.946 0 235.54211 0.0014458767 0.0014329405 + 69030 -6247.7339 -6253.1264 5.392438 3729.4898 636.43186 -10619.048 0 258.43588 0.0014146105 0.0013978271 + 69040 -6247.3579 -6253.4529 6.094959 3732.3751 635.15022 -10620.978 0 292.10463 0.0012978104 0.0012724854 + 69050 -6246.9922 -6253.7641 6.7719341 3737.9342 633.55879 -10625.257 0 324.54908 0.0010961891 0.0010654431 + 69060 -6246.7007 -6253.9395 7.2387472 3745.0456 631.91185 -10630.897 0 346.92138 0.00084171218 0.00081344041 + 69070 -6246.4877 -6253.9691 7.4813176 3752.0261 630.60184 -10636.597 0 358.54671 0.00059923692 0.00057923628 + 69080 -6246.3074 -6253.9133 7.6058827 3757.0766 630.08441 -10641.074 0 364.51658 0.00044945378 0.0004367853 + 69090 -6246.1154 -6253.8158 7.7003863 3758.869 630.74886 -10643.434 0 369.04572 0.00046001303 0.00044819779 + 69100 -6245.9106 -6253.6524 7.7418721 3757.0172 632.77125 -10643.441 0 371.03395 0.00065878402 0.0006412271 + 69110 -6245.7334 -6253.3576 7.62419 3752.2251 636.00262 -10641.585 0 365.39396 0.0010206129 0.00099554728 + 69120 -6245.6271 -6252.9003 7.2732148 3746.0583 639.9419 -10638.9 0 348.57327 0.0014717563 0.0014429275 + 69130 -6245.598 -6252.3462 6.7482669 3740.4472 643.82177 -10636.615 0 323.41481 0.0019095189 0.0018825448 + 69140 -6245.6093 -6251.852 6.2426184 3737.1192 646.7966 -10635.768 0 299.1813 0.0022302528 0.0022080234 + 69150 -6245.6093 -6251.5922 5.9828652 3737.1369 648.17672 -10636.906 0 286.73247 0.0023572493 0.0023380167 + 69160 -6245.5658 -6251.6713 6.1055361 3740.637 647.62962 -10639.938 0 292.61155 0.0022610237 0.002240152 + 69170 -6245.4839 -6252.0753 6.5914209 3746.7954 645.28098 -10644.152 0 315.89787 0.0019672089 0.0019407531 + 69180 -6245.4005 -6252.6862 7.2857311 3754.0129 641.68575 -10648.385 0 349.17311 0.0015505808 0.0015179903 + 69190 -6245.3622 -6253.3442 7.9819907 3760.2939 637.67794 -10651.316 0 382.54178 0.001116601 0.0010807605 + 69200 -6245.3997 -6253.9179 8.5181932 3763.7613 634.14084 -10651.82 0 408.23961 0.00077400533 0.00073866277 + 69210 -6245.5157 -6254.3388 8.8231085 3763.1986 631.76605 -10649.303 0 422.85287 0.00060419268 0.00057086563 + 69220 -6245.6995 -6254.5811 8.8816256 3758.4705 630.87926 -10643.931 0 425.65733 0.00063609303 0.00060336545 + 69230 -6245.9511 -6254.6189 8.6678096 3750.6459 631.38686 -10636.652 0 415.41007 0.00083687431 0.00080291536 + 69240 -6246.2826 -6254.4197 8.1370399 3741.7154 632.85183 -10628.987 0 389.97261 0.0011247832 0.0010903651 + 69250 -6246.6923 -6253.9881 7.2958239 3733.976 634.66325 -10622.627 0 349.65682 0.0013998035 0.0013683885 + 69260 -6247.142 -6253.4073 6.2652812 3729.3346 636.23841 -10618.98 0 300.26743 0.0015782018 0.0015529394 + 69270 -6247.5708 -6252.8278 5.2569321 3728.8052 637.19105 -10618.824 0 251.94169 0.0016165811 0.0015973389 + 69280 -6247.9321 -6252.4054 4.4732528 3732.3403 637.41772 -10622.163 0 214.38337 0.0015189184 0.0015022346 + 69290 -6248.2222 -6252.2368 4.0145967 3738.9631 637.088 -10628.288 0 192.402 0.0013287847 0.0013106859 + 69300 -6248.4759 -6252.3354 3.8594639 3747.0865 636.55631 -10635.978 0 184.96716 0.001113084 0.0010921958 + 69310 -6248.7383 -6252.6574 3.9190814 3754.9087 636.22941 -10643.796 0 187.82437 0.00094303509 0.00092137221 + 69320 -6249.0346 -6253.1455 4.1109274 3760.8232 636.42835 -10650.397 0 197.01871 0.00087576675 0.00085673528 + 69330 -6249.3614 -6253.7522 4.3907645 3763.7836 637.28136 -10654.817 0 210.43007 0.00093883963 0.00092433873 + 69340 -6249.7001 -6254.4291 4.7289311 3763.5424 638.67732 -10656.649 0 226.63691 0.0011210618 0.001110095 + 69350 -6250.037 -6255.1049 5.0679063 3760.6764 640.29519 -10656.076 0 242.88251 0.0013737924 0.0013634746 + 69360 -6250.3731 -6255.6818 5.3086608 3756.3727 641.70248 -10653.757 0 254.42081 0.0016246749 0.0016125519 + 69370 -6250.7163 -6256.0615 5.3451524 3752.0354 642.49143 -10650.588 0 256.16969 0.0018005886 0.0017862718 + 69380 -6251.0632 -6256.1889 5.1257517 3748.8473 642.4057 -10647.442 0 245.65478 0.0018515467 0.0018363079 + 69390 -6251.3897 -6256.0801 4.6903962 3747.4438 641.41436 -10644.938 0 224.7901 0.0017656964 0.0017505348 + 69400 -6251.6634 -6255.8067 4.1433344 3747.8085 639.71271 -10643.328 0 198.57183 0.0015694952 0.0015537967 + 69410 -6251.8674 -6255.4484 3.5810144 3749.3923 637.65708 -10642.498 0 171.6223 0.0013149504 0.0012973297 + 69420 -6252.0125 -6255.0578 3.0453741 3751.3601 635.66011 -10642.078 0 145.95142 0.001061893 0.0010423291 + 69430 -6252.1237 -6254.6713 2.5475967 3752.8518 634.08015 -10641.603 0 122.09513 0.00086296947 0.00084367975 + 69440 -6252.2161 -6254.3434 2.1273491 3753.2053 633.13689 -10640.686 0 101.95451 0.0007539646 0.00073776139 + 69450 -6252.2834 -6254.1562 1.8727578 3752.1284 632.87565 -10639.16 0 89.753061 0.00074823088 0.00073593548 + 69460 -6252.3076 -6254.1819 1.8743501 3749.7993 633.18549 -10637.167 0 89.829372 0.0008346299 0.00082414815 + 69470 -6252.2755 -6254.4347 2.1592423 3746.846 633.85864 -10635.139 0 103.483 0.00098067964 0.00096858128 + 69480 -6252.1864 -6254.8532 2.6668422 3744.1785 634.6675 -10633.699 0 127.81004 0.001142207 0.0011263101 + 69490 -6252.0433 -6255.3274 3.2840507 3742.7143 635.43436 -10633.476 0 157.39014 0.0012774306 0.0012582264 + 69500 -6251.8364 -6255.7468 3.9104483 3743.0922 636.07442 -10634.913 0 187.41062 0.0013602039 0.0013401099 + 69510 -6251.5297 -6256.0344 4.5047701 3745.4778 636.60434 -10638.117 0 215.89386 0.0013868459 0.0013680848 + 69520 -6251.0658 -6256.144 5.0782822 3749.5245 637.12101 -10642.79 0 243.37978 0.00137408 0.0013570898 + 69530 -6250.3933 -6256.0329 5.6396272 3754.4775 637.76241 -10648.273 0 270.28258 0.0013502126 0.0013339151 + 69540 -6249.5161 -6255.6468 6.1307777 3759.3509 638.66007 -10653.658 0 293.82127 0.0013443186 0.0013277782 + 69550 -6248.5356 -6254.947 6.4114329 3763.117 639.884 -10657.948 0 307.27184 0.001377305 0.0013609857 + 69560 -6247.6211 -6253.9684 6.3472242 3764.9176 641.38219 -10660.268 0 304.1946 0.0014564912 0.0014415915 + 69570 -6246.8973 -6252.856 5.9586528 3764.3125 642.94012 -10660.109 0 285.57208 0.0015732093 0.0015595703 + 69580 -6246.373 -6251.8271 5.4541475 3761.4697 644.20594 -10657.503 0 261.39335 0.0017023401 0.0016875732 + 69590 -6245.9888 -6251.0809 5.092097 3757.1471 644.79712 -10653.025 0 244.04186 0.0018066287 0.0017878875 + 69600 -6245.6904 -6250.7286 5.0382088 3752.4319 644.4441 -10647.605 0 241.45924 0.0018492861 0.0018256532 + 69610 -6245.4478 -6250.7792 5.3314159 3748.3689 643.10056 -10642.249 0 255.51137 0.00180995 0.0017829911 + 69620 -6245.2443 -6251.1551 5.9107815 3745.6517 640.96913 -10637.776 0 283.27781 0.0016935098 0.0016661664 + 69630 -6245.0706 -6251.7189 6.6483685 3744.4858 638.43134 -10634.636 0 318.62712 0.0015267196 0.0015020054 + 69640 -6244.9204 -6252.3215 7.4010713 3744.6246 635.91424 -10632.86 0 354.70087 0.0013466729 0.0013263303 + 69650 -6244.7818 -6252.8629 8.0811238 3745.5378 633.75843 -10632.159 0 387.29279 0.0011883479 0.0011709271 + 69660 -6244.6373 -6253.3135 8.6761905 3746.6541 632.15276 -10632.12 0 415.81173 0.001075169 0.0010549573 + 69670 -6244.491 -6253.6651 9.1740731 3747.5897 631.15975 -10632.415 0 439.67306 0.0010141103 0.00098361916 + 69680 -6244.3943 -6253.867 9.4726824 3748.2407 630.79546 -10632.903 0 453.98409 0.00099792149 0.00095361905 + 69690 -6244.4272 -6253.8298 9.4025876 3748.6846 631.09566 -10633.61 0 450.62475 0.001015683 0.00096224094 + 69700 -6244.6366 -6253.5071 8.8704751 3748.9865 632.12 -10634.614 0 425.12294 0.0010660946 0.0010144959 + 69710 -6244.9862 -6252.9744 7.9882845 3749.0915 633.89642 -10635.962 0 382.84341 0.0011625112 0.0011226404 + 69720 -6245.3715 -6252.4193 7.0478924 3748.9107 636.34844 -10637.679 0 337.77455 0.0013226292 0.0012963128 + 69730 -6245.6929 -6252.0344 6.3414358 3748.5372 639.24989 -10639.821 0 303.91719 0.0015477215 0.0015282627 + 69740 -6245.9215 -6251.9017 5.9802329 3748.3946 642.22633 -10642.523 0 286.60632 0.0018065829 0.0017850946 + 69750 -6246.1013 -6251.9761 5.8748882 3749.1456 644.80063 -10645.922 0 281.55761 0.0020381958 0.0020107553 + 69760 -6246.2945 -6252.1744 5.8798275 3751.3644 646.48047 -10650.019 0 281.79433 0.0021742285 0.0021435067 + 69770 -6246.5274 -6252.4678 5.9403804 3755.1661 646.88483 -10654.519 0 284.69636 0.0021682254 0.002139215 + 69780 -6246.7836 -6252.8801 6.0964533 3760.0193 645.88196 -10658.781 0 292.17625 0.0020149774 0.0019900785 + 69790 -6247.0399 -6253.4091 6.3691786 3764.8346 643.6798 -10661.923 0 305.24678 0.0017526784 0.0017307582 + 69800 -6247.295 -6253.9701 6.6751004 3768.2671 640.80908 -10663.046 0 319.90827 0.0014511667 0.0014301283 + 69810 -6247.5653 -6254.4228 6.8574994 3769.1157 637.98004 -10661.519 0 328.64985 0.0011923412 0.0011714938 + 69820 -6247.8586 -6254.6488 6.7901856 3766.7093 635.85483 -10657.213 0 325.42379 0.0010464696 0.0010263999 + 69830 -6248.1598 -6254.6072 6.4473899 3761.184 634.82464 -10650.616 0 308.9951 0.001048587 0.0010296346 + 69840 -6248.442 -6254.3344 5.8924592 3753.5528 634.88647 -10642.774 0 282.39971 0.0011835265 0.0011651743 + 69850 -6248.685 -6253.9166 5.2315328 3745.5032 635.66963 -10635.089 0 250.72441 0.0013889876 0.0013705481 + 69860 -6248.8804 -6253.4697 4.5893142 3738.9526 636.59561 -10629.018 0 219.94569 0.001578144 0.001559229 + 69870 -6249.0252 -6253.1244 4.0992221 3735.5041 637.10408 -10625.733 0 196.45773 0.0016720121 0.001652032 + 69880 -6249.1214 -6252.9904 3.8689783 3735.9927 636.86186 -10625.845 0 185.42315 0.0016273029 0.0016051308 + 69890 -6249.182 -6253.1074 3.9254423 3740.2565 635.8853 -10629.249 0 188.12922 0.0014503241 0.0014253438 + 69900 -6249.2318 -6253.4239 4.1920703 3747.1736 634.53802 -10635.136 0 200.90753 0.0011952195 0.0011690058 + 69910 -6249.2926 -6253.8338 4.5412101 3754.9407 633.40464 -10642.179 0 217.64027 0.00094900846 0.00092526787 + 69920 -6249.3587 -6254.2482 4.8895082 3761.5443 633.08197 -10648.875 0 234.33267 0.00080630688 0.00078787239 + 69930 -6249.3934 -6254.632 5.2386379 3765.3443 633.96123 -10653.938 0 251.06492 0.00083766089 0.0008229477 + 69940 -6249.3609 -6254.9668 5.6059699 3765.612 636.07833 -10656.657 0 268.66953 0.0010603624 0.0010435465 + 69950 -6249.2673 -6255.1934 5.9260736 3762.7861 639.07936 -10657.059 0 284.0107 0.0014256207 0.0014013914 + 69960 -6249.1628 -6255.2179 6.0551053 3758.2814 642.30865 -10655.808 0 290.19462 0.0018322042 0.0018006573 + 69970 -6249.0994 -6254.9852 5.885804 3753.9169 644.99475 -10653.897 0 282.08075 0.0021626408 0.0021295068 + 69980 -6249.0879 -6254.5375 5.4496191 3751.2398 646.48166 -10652.259 0 261.17633 0.00232491 0.0022971555 + 69990 -6249.0913 -6254.0018 4.9104773 3751.0314 646.42699 -10651.46 0 235.33763 0.0022811553 0.0022619763 + 70000 -6249.0532 -6253.5226 4.469438 3753.1464 644.89394 -10651.563 0 214.20055 0.0020540985 0.002040994 + 70010 -6248.9328 -6253.191 4.2581761 3756.6728 642.30835 -10652.172 0 204.07569 0.0017131153 0.0016999592 + 70020 -6248.7256 -6253.0117 4.2861444 3760.2953 639.30833 -10652.615 0 205.41609 0.0013491582 0.0013305935 + 70030 -6248.4573 -6252.9271 4.4697596 3762.703 636.5476 -10652.178 0 214.21596 0.0010490155 0.0010240832 + 70040 -6248.1568 -6252.8816 4.7247791 3762.9217 634.51779 -10650.321 0 226.43793 0.00087583587 0.00084816654 + 70050 -6247.8249 -6252.8781 5.053215 3760.528 633.44066 -10646.847 0 242.17842 0.00085780366 0.00083220031 + 70060 -6247.4255 -6252.9729 5.5474113 3755.7596 633.25534 -10641.988 0 265.86308 0.00098414297 0.00096241329 + 70070 -6246.912 -6253.2083 6.2963197 3749.525 633.69306 -10636.426 0 301.75497 0.0012083311 0.0011879932 + 70080 -6246.2736 -6253.5422 7.2686388 3743.26 634.40371 -10631.206 0 348.35396 0.0014599342 0.0014368432 + 70090 -6245.5638 -6253.8426 8.2787909 3738.5838 635.08758 -10627.514 0 396.76611 0.001665187 0.0016374947 + 70100 -6244.8799 -6253.9563 9.0764497 3736.8152 635.59152 -10626.363 0 434.9944 0.0017713855 0.0017410666 + 70110 -6244.3062 -6253.7977 9.4914069 3738.5359 635.94341 -10628.277 0 454.88148 0.001765007 0.0017356253 + 70120 -6243.8705 -6253.3879 9.5174026 3743.4056 636.31819 -10633.112 0 456.12734 0.0016741608 0.0016471044 + 70130 -6243.5481 -6252.8269 9.2787947 3750.3041 636.95035 -10640.081 0 444.69191 0.0015539976 0.0015266436 + 70140 -6243.3036 -6252.2262 8.9225283 3757.7123 638.02828 -10647.967 0 427.61762 0.001463046 0.0014305438 + 70150 -6243.1281 -6251.6517 8.5235799 3764.1512 639.61102 -10655.414 0 408.49778 0.0014421143 0.0014016662 + 70160 -6243.044 -6251.1185 8.0744231 3768.5066 641.59252 -10661.218 0 386.97166 0.0015043125 0.0014587266 + 70170 -6243.0723 -6250.6436 7.5712087 3770.1592 643.71468 -10664.517 0 362.8548 0.0016379536 0.0015949591 + 70180 -6243.1902 -6250.3111 7.1208592 3768.9747 645.61931 -10664.905 0 341.27153 0.001816842 0.0017834864 + 70190 -6243.3272 -6250.2661 6.9388521 3765.281 646.9311 -10662.478 0 332.54872 0.002008906 0.0019853409 + 70200 -6243.4155 -6250.6083 7.1927451 3759.89 647.3569 -10657.855 0 344.7167 0.0021784235 0.0021572948 + 70210 -6243.4519 -6251.2789 7.8269504 3754.0546 646.76693 -10652.1 0 375.11138 0.0022862688 0.0022589646 + 70220 -6243.5069 -6252.0637 8.5567384 3749.2083 645.21982 -10646.492 0 410.08691 0.0022960423 0.0022599749 + 70230 -6243.6698 -6252.7207 9.0509149 3746.5163 642.92397 -10642.161 0 433.77062 0.0021868538 0.0021471125 + 70240 -6243.9789 -6253.1165 9.1376516 3746.4676 640.16819 -10639.752 0 437.92753 0.0019647794 0.0019293771 + 70250 -6244.398 -6253.2701 8.8720416 3748.7325 637.26573 -10639.268 0 425.19802 0.001664693 0.0016381354 + 70260 -6244.8506 -6253.293 8.4424036 3752.3364 634.53202 -10640.161 0 404.60735 0.0013410937 0.0013214769 + 70270 -6245.277 -6253.2875 8.0104085 3756.0307 632.28147 -10641.6 0 383.90372 0.0010532277 0.0010346705 + 70280 -6245.6669 -6253.2784 7.6115418 3758.6798 630.81162 -10642.77 0 364.78779 0.00085166647 0.00082963974 + 70290 -6246.0442 -6253.2277 7.183568 3759.5283 630.35622 -10643.112 0 344.27689 0.00077046466 0.00074540654 + 70300 -6246.4249 -6253.1071 6.6821886 3758.3174 631.01922 -10642.444 0 320.24797 0.00082424426 0.0008004348 + 70310 -6246.7883 -6252.9599 6.1716228 3755.3018 632.72545 -10640.987 0 295.77879 0.0010070162 0.00098782148 + 70320 -6247.0868 -6252.8898 5.8029725 3751.2171 635.21795 -10639.325 0 278.111 0.0012907332 0.0012745768 + 70330 -6247.2866 -6252.9795 5.6928205 3747.1902 638.10572 -10638.275 0 272.8319 0.0016249697 0.0016059314 + 70340 -6247.4017 -6253.2096 5.8078921 3744.5369 640.93959 -10638.686 0 278.34678 0.0019420032 0.0019149197 + 70350 -6247.4903 -6253.458 5.9677067 3744.4081 643.2898 -10641.156 0 286.00599 0.0021709048 0.0021365597 + 70360 -6247.6118 -6253.5905 5.9787065 3747.3688 644.8134 -10645.773 0 286.53316 0.0022586746 0.0022241266 + 70370 -6247.7768 -6253.5674 5.7906032 3753.0982 645.31137 -10651.977 0 277.5182 0.0021893247 0.002162545 + 70380 -6247.9366 -6253.4734 5.5368013 3760.3949 644.77217 -10658.64 0 265.35458 0.0019900782 0.0019732486 + 70390 -6248.0231 -6253.442 5.418962 3767.5192 643.38671 -10664.348 0 259.70706 0.0017207318 0.0017080112 + 70400 -6248.007 -6253.5388 5.5318299 3772.7232 641.51731 -10667.779 0 265.11633 0.0014525208 0.0014344449 + 70410 -6247.9254 -6253.7048 5.7793983 3774.7294 639.61521 -10668.049 0 276.98119 0.0012478639 0.0012188617 + 70420 -6247.8549 -6253.8115 5.9565928 3772.9949 638.10237 -10664.909 0 285.47335 0.0011485301 0.0011112511 + 70430 -6247.8516 -6253.773 5.9213639 3767.747 637.25369 -10658.774 0 283.78498 0.0011715315 0.0011345206 + 70440 -6247.9119 -6253.6146 5.7027702 3759.8899 637.12085 -10650.625 0 273.30875 0.0013076852 0.001278796 + 70450 -6247.9823 -6253.4457 5.4633827 3750.8618 637.5247 -10641.832 0 261.83595 0.0015207532 0.0015018464 + 70460 -6248.004 -6253.3739 5.3698972 3742.4419 638.11616 -10633.932 0 257.3556 0.0017503735 0.0017368851 + 70470 -6247.9522 -6253.4344 5.4821685 3736.4605 638.48595 -10628.381 0 262.73628 0.0019230517 0.0019078781 + 70480 -6247.8482 -6253.5763 5.7281162 3734.3947 638.29386 -10626.265 0 274.52347 0.0019716307 0.0019501584 + 70490 -6247.7409 -6253.7055 5.9646481 3736.9272 637.38646 -10628.019 0 285.8594 0.0018584977 0.0018314576 + 70500 -6247.672 -6253.7517 6.0796846 3743.6277 635.87212 -10633.252 0 291.3726 0.0015942387 0.0015666395 + 70510 -6247.6459 -6253.7153 6.0693891 3752.9329 634.12669 -10640.775 0 290.87918 0.0012428757 0.001219774 + 70520 -6247.6263 -6253.6602 6.033884 3762.5136 632.71694 -10648.891 0 289.17758 0.00090819753 0.00089037639 + 70530 -6247.5667 -6253.6525 6.0858299 3769.9425 632.251 -10655.846 0 291.66712 0.00070287747 0.00068592798 + 70540 -6247.4516 -6253.6888 6.2371519 3773.4249 633.18894 -10660.303 0 298.91932 0.00071034675 0.00068828354 + 70550 -6247.3156 -6253.6778 6.3621685 3772.3132 635.6648 -10661.656 0 304.91081 0.00095423397 0.00092500124 + 70560 -6247.2179 -6253.5064 6.2885094 3767.2319 639.37927 -10660.118 0 301.38066 0.0013881056 0.0013561884 + 70570 -6247.1889 -6253.1481 5.9591955 3759.8137 643.61458 -10656.576 0 285.59809 0.0019093131 0.0018825244 + 70580 -6247.1952 -6252.721 5.5258126 3752.1933 647.39324 -10652.308 0 264.82795 0.00238959 0.0023721653 + 70590 -6247.1589 -6252.4293 5.2703716 3746.4515 649.74818 -10648.629 0 252.58578 0.0027092142 0.0026972242 + 70600 -6247.0191 -6252.4204 5.4013088 3744.1393 650.01808 -10646.578 0 258.86102 0.0027848725 0.002768514 + 70610 -6246.783 -6252.6717 5.8887028 3745.9187 648.06205 -10646.652 0 282.21968 0.0025886545 0.0025600953 + 70620 -6246.5243 -6253.0059 6.4816262 3751.3369 644.31397 -10648.657 0 310.6359 0.002158324 0.0021186258 + 70630 -6246.3238 -6253.2295 6.9057355 3758.8137 639.65397 -10651.697 0 330.9616 0.0015953488 0.0015541643 + 70640 -6246.1989 -6253.2801 7.0812354 3765.9652 635.14386 -10654.389 0 339.37253 0.0010440165 0.0010117143 + 70650 -6246.0861 -6253.2518 7.1657133 3770.293 631.72629 -10655.271 0 343.42119 0.00065050724 0.00062945479 + 70660 -6245.8991 -6253.2794 7.3802853 3770.0512 629.99282 -10653.323 0 353.70468 0.00051441159 0.00049731268 + 70670 -6245.6066 -6253.3959 7.789276 3764.919 630.0785 -10648.393 0 373.30581 0.00065477649 0.00063133975 + 70680 -6245.2586 -6253.4986 8.2399656 3756.1527 631.68406 -10641.335 0 394.90538 0.0010072934 0.00097285913 + 70690 -6244.9424 -6253.4409 8.4985395 3746.1509 634.19798 -10633.79 0 407.2977 0.0014523514 0.0014110815 + 70700 -6244.7131 -6253.1553 8.4421781 3737.6501 636.88328 -10627.689 0 404.59654 0.0018588687 0.0018196283 + 70710 -6244.5569 -6252.7022 8.1453149 3732.8962 639.08463 -10624.683 0 390.36919 0.0021248132 0.0020939521 + 70720 -6244.411 -6252.2209 7.8099055 3733.078 640.40117 -10625.7 0 374.29449 0.0022013012 0.0021782226 + 70730 -6244.2163 -6251.8327 7.6163323 3738.1362 640.77452 -10630.743 0 365.01738 0.0020970577 0.0020754046 + 70740 -6243.959 -6251.5726 7.6136401 3746.8975 640.46751 -10638.938 0 364.88835 0.0018675225 0.0018403656 + 70750 -6243.6754 -6251.3912 7.7157663 3757.4132 639.94508 -10648.749 0 369.78281 0.001595325 0.0015603642 + 70760 -6243.4237 -6251.2165 7.7927979 3767.3954 639.69699 -10658.309 0 373.4746 0.0013679239 0.0013291994 + 70770 -6243.2384 -6251.0346 7.7961429 3774.6867 640.05662 -10665.778 0 373.63491 0.0012565738 0.0012213801 + 70780 -6243.1009 -6250.9297 7.8287312 3777.7185 641.07558 -10669.724 0 375.19673 0.001299351 0.0012722201 + 70790 -6242.9531 -6251.0365 8.0834455 3775.9023 642.50522 -10669.444 0 387.40406 0.0014903985 0.0014688829 + 70800 -6242.7534 -6251.4263 8.6729162 3769.8356 643.89662 -10665.159 0 415.65481 0.0017787529 0.0017550371 + 70810 -6242.5294 -6252.0221 9.4927326 3761.1816 644.77379 -10657.977 0 454.94501 0.0020806874 0.0020479838 + 70820 -6242.3765 -6252.6244 10.247913 3752.1802 644.80154 -10649.606 0 491.13751 0.0023053676 0.002263491 + 70830 -6242.3989 -6253.0277 10.628793 3744.9503 643.88165 -10641.86 0 509.39139 0.0023856942 0.002340995 + 70840 -6242.6397 -6253.1344 10.49468 3740.8733 642.15351 -10636.161 0 502.96396 0.002300531 0.0022605741 + 70850 -6243.0593 -6252.9832 9.9238409 3740.3081 639.9207 -10633.212 0 475.60614 0.0020771105 0.0020451123 + 70860 -6243.576 -6252.6896 9.1136462 3742.695 637.55133 -10632.936 0 436.77706 0.0017740174 0.0017477524 + 70870 -6244.1207 -6252.368 8.2472296 3746.9067 635.39352 -10634.668 0 395.25352 0.0014571372 0.0014322276 + 70880 -6244.6587 -6252.099 7.440356 3751.6442 633.72159 -10637.465 0 356.58361 0.0011820593 0.0011556415 + 70890 -6245.1768 -6251.9394 6.762668 3755.7515 632.70982 -10640.401 0 324.10499 0.00098707318 0.00095887458 + 70900 -6245.6696 -6251.9294 6.2598269 3758.4161 632.42909 -10642.775 0 300.00603 0.00089287659 0.0008642099 + 70910 -6246.1352 -6252.0824 5.9471867 3759.2609 632.86395 -10644.207 0 285.02255 0.00090467235 0.00087721773 + 70920 -6246.5748 -6252.3735 5.7987122 3758.3474 633.94129 -10644.662 0 277.90683 0.0010147959 0.00099003908 + 70930 -6246.989 -6252.7464 5.7574056 3756.1148 635.55152 -10644.413 0 275.92718 0.0012049972 0.001183972 + 70940 -6247.3723 -6253.1409 5.7685924 3753.2783 637.54445 -10643.964 0 276.46332 0.001447658 0.0014303525 + 70950 -6247.7115 -6253.5184 5.8069626 3750.6948 639.70419 -10643.917 0 278.30223 0.0017059942 0.0016906335 + 70960 -6247.9959 -6253.8598 5.863908 3749.2098 641.73505 -10644.805 0 281.03137 0.001935045 0.001918476 + 70970 -6248.2329 -6254.1397 5.9067206 3749.4794 643.29275 -10646.912 0 283.0832 0.002086853 0.0020666523 + 70980 -6248.4489 -6254.3153 5.866404 3751.772 644.06662 -10650.154 0 281.151 0.0021220597 0.0020988433 + 70990 -6248.6687 -6254.3541 5.6853715 3755.8026 643.88183 -10654.039 0 272.4749 0.0020251286 0.0020025592 + 71000 -6248.8915 -6254.2735 5.3819493 3760.6987 642.77409 -10657.746 0 257.93321 0.0018152081 0.0017971013 + 71010 -6249.0871 -6254.1468 5.0596813 3765.178 641.00039 -10660.325 0 242.48832 0.0015447296 0.0015315844 + 71020 -6249.2192 -6254.0601 4.840909 3767.9127 638.9773 -10660.95 0 232.00352 0.0012842446 0.0012723204 + 71030 -6249.2766 -6254.052 4.7754106 3767.9462 637.16764 -10659.166 0 228.86447 0.0010998655 0.0010838775 + 71040 -6249.286 -6254.0854 4.7994744 3764.9965 635.95279 -10655.035 0 230.01774 0.0010332308 0.001010715 + 71050 -6249.2952 -6254.0808 4.7856323 3759.5371 635.52695 -10649.145 0 229.35435 0.0010914062 0.0010651938 + 71060 -6249.3363 -6253.9885 4.6521994 3752.6555 635.84161 -10642.486 0 222.9595 0.0012481294 0.0012245657 + 71070 -6249.398 -6253.8415 4.4434519 3745.7758 636.61846 -10636.236 0 212.95515 0.0014527144 0.0014367333 + 71080 -6249.432 -6253.7384 4.3063999 3740.3557 637.43459 -10631.529 0 206.38685 0.0016421476 0.0016331878 + 71090 -6249.3889 -6253.7685 4.3796071 3737.6107 637.86041 -10629.24 0 209.89535 0.0017546827 0.0017468424 + 71100 -6249.2543 -6253.9397 4.6854042 3738.2682 637.60877 -10629.817 0 224.55086 0.0017451456 0.0017314509 + 71110 -6249.0586 -6254.1665 5.1079524 3742.3567 636.64609 -10633.169 0 244.80174 0.0016003655 0.0015778503 + 71120 -6248.8545 -6254.3246 5.4700492 3749.0864 635.22671 -10638.638 0 262.15545 0.001349628 0.0013214374 + 71130 -6248.6779 -6254.3299 5.6520485 3756.9205 633.835 -10645.085 0 270.87788 0.0010635372 0.0010364688 + 71140 -6248.5199 -6254.1856 5.6657074 3763.9017 633.04841 -10651.136 0 271.53249 0.0008373295 0.00081662774 + 71150 -6248.3338 -6253.9601 5.6262859 3768.1967 633.35985 -10655.517 0 269.64319 0.00076120595 0.00074664723 + 71160 -6248.072 -6253.7192 5.6471928 3768.6884 635.00953 -10657.417 0 270.64516 0.00088755097 0.00087393147 + 71170 -6247.7232 -6253.4717 5.7485333 3765.3795 637.8747 -10656.726 0 275.50197 0.001208302 0.0011898683 + 71180 -6247.3191 -6253.1784 5.8593115 3759.4195 641.45294 -10654.051 0 280.81108 0.0016525416 0.0016276809 + 71190 -6246.9063 -6252.8171 5.9107651 3752.7284 644.95564 -10650.501 0 283.27703 0.0021061659 0.002078539 + 71200 -6246.5048 -6252.443 5.9382257 3747.3681 647.50061 -10647.312 0 284.5931 0.0024465035 0.0024217756 + 71210 -6246.0869 -6252.1848 6.0979017 3744.9032 648.36027 -10645.448 0 292.24566 0.0025792724 0.0025601822 + 71220 -6245.5957 -6252.1662 6.5705157 3745.9666 647.19447 -10645.327 0 314.89598 0.0024656725 0.0024495249 + 71230 -6244.9937 -6252.4084 7.4146894 3750.1228 644.18898 -10646.72 0 355.35352 0.0021327272 0.0021134623 + 71240 -6244.3091 -6252.7906 8.4814923 3756.0059 640.03944 -10648.836 0 406.4807 0.0016661132 0.0016393586 + 71250 -6243.6384 -6253.1063 9.4679258 3761.6729 635.76528 -10650.544 0 453.75613 0.0011880981 0.0011550209 + 71260 -6243.0942 -6253.1795 10.085342 3765.1171 632.40166 -10650.698 0 483.34616 0.00082469377 0.00079126364 + 71270 -6242.7343 -6252.9566 10.222229 3764.8653 630.67762 -10648.499 0 489.90658 0.00066901014 0.00064109834 + 71280 -6242.5364 -6252.5142 9.9777823 3760.5013 630.8064 -10643.822 0 478.19131 0.00075179807 0.00073025342 + 71290 -6242.4364 -6251.9865 9.5501092 3752.9066 632.4642 -10637.357 0 457.69482 0.0010307659 0.0010108054 + 71300 -6242.3891 -6251.478 9.0888857 3744.0618 634.94828 -10630.488 0 435.5904 0.0014048556 0.0013802213 + 71310 -6242.3925 -6251.0313 8.6388513 3736.4282 637.43835 -10624.898 0 414.02223 0.0017500574 0.001718102 + 71320 -6242.4654 -6250.6593 8.1938751 3732.1357 639.26538 -10622.06 0 392.69647 0.0019635649 0.0019270226 + 71330 -6242.6124 -6250.3918 7.779399 3732.3084 640.10304 -10622.803 0 372.83245 0.0019983511 0.0019628727 + 71340 -6242.8079 -6250.2877 7.4797425 3736.7762 640.02544 -10627.089 0 358.47123 0.0018742503 0.0018441772 + 71350 -6243.0112 -6250.4044 7.3931919 3744.2369 639.41998 -10634.061 0 354.32324 0.0016626825 0.0016384177 + 71360 -6243.193 -6250.7552 7.5621922 3752.7459 638.79599 -10642.297 0 362.42268 0.0014540719 0.0014326421 + 71370 -6243.3518 -6251.2962 7.9443446 3760.3222 638.56815 -10650.187 0 380.73757 0.0013232994 0.0013008962 + 71380 -6243.5082 -6251.9518 8.4435993 3765.4717 638.90234 -10656.326 0 404.66465 0.0013064849 0.0012805418 + 71390 -6243.6891 -6252.6457 8.956617 3767.4941 639.6832 -10659.823 0 429.25134 0.001394998 0.0013647146 + 71400 -6243.9176 -6253.3055 9.3878844 3766.5203 640.60316 -10660.429 0 449.92009 0.00154535 0.0015113969 + 71410 -6244.2107 -6253.8499 9.6392649 3763.3067 641.31589 -10658.473 0 461.96766 0.0016991193 0.0016634722 + 71420 -6244.5754 -6254.1864 9.6110078 3758.8973 641.57687 -10654.661 0 460.61342 0.0018050446 0.0017709299 + 71430 -6244.9991 -6254.2405 9.2413941 3754.2889 641.31545 -10649.845 0 442.89946 0.0018357423 0.0018067401 + 71440 -6245.4385 -6254.0067 8.5681412 3750.2085 640.62389 -10644.839 0 410.6334 0.0017934958 0.0017711601 + 71450 -6245.8281 -6253.5687 7.7406302 3747.0592 639.68815 -10640.316 0 370.97443 0.0017028185 0.001684384 + 71460 -6246.1175 -6253.0526 6.9351337 3745.0141 638.70335 -10636.77 0 332.37052 0.0015934864 0.0015727555 + 71470 -6246.3081 -6252.5488 6.2407574 3744.142 637.80754 -10634.498 0 299.09211 0.0014844357 0.001456402 + 71480 -6246.449 -6252.0892 5.6401897 3744.4396 637.04912 -10633.578 0 270.30954 0.0013789783 0.0013442682 + 71490 -6246.5927 -6251.7003 5.1076143 3745.7511 636.3926 -10633.844 0 244.78554 0.0012728276 0.0012374515 + 71500 -6246.7516 -6251.4621 4.7104122 3747.6886 635.76294 -10634.914 0 225.74938 0.0011665311 0.0011369635 + 71510 -6246.8955 -6251.4944 4.5988564 3749.6742 635.11568 -10636.284 0 220.403 0.0010721993 0.0010503415 + 71520 -6246.9854 -6251.8747 4.8892906 3751.1169 634.50194 -10637.493 0 234.32224 0.0010108971 0.00099326343 + 71530 -6247.011 -6252.5614 5.5504395 3751.6282 634.08852 -10638.278 0 266.0082 0.0010042719 0.00098551685 + 71540 -6247.001 -6253.3947 6.3937132 3751.16 634.10759 -10638.662 0 306.42261 0.001065923 0.0010430516 + 71550 -6247.0018 -6254.1719 7.1701805 3750.0142 634.74652 -10638.933 0 343.63528 0.0011952219 0.0011689129 + 71560 -6247.0475 -6254.7347 7.6871389 3748.7459 636.02987 -10639.51 0 368.41083 0.001373741 0.0013465411 + 71570 -6247.1478 -6255.0076 7.8597086 3748.0013 637.76149 -10640.77 0 376.68134 0.0015653809 0.0015393484 + 71580 -6247.2939 -6254.9884 7.6944086 3748.3211 639.56815 -10642.878 0 368.75923 0.0017232599 0.0016991165 + 71590 -6247.4682 -6254.7251 7.2569414 3749.9458 641.02963 -10645.701 0 347.79335 0.0018042258 0.0017816961 + 71600 -6247.6492 -6254.2972 6.6479561 3752.6921 641.83284 -10648.822 0 318.60736 0.0017854546 0.0017637116 + 71610 -6247.8187 -6253.792 5.9733558 3755.9606 641.87651 -10651.629 0 286.27673 0.0016740942 0.0016522685 + 71620 -6247.9686 -6253.2844 5.3158247 3758.8789 641.28306 -10653.446 0 254.76415 0.0015050348 0.0014829849 + 71630 -6248.1003 -6252.835 4.7347515 3760.5313 640.3254 -10653.692 0 226.91586 0.0013290798 0.00130774 + 71640 -6248.2137 -6252.505 4.2912239 3760.2208 639.31486 -10652.041 0 205.65953 0.0011972094 0.0011777923 + 71650 -6248.2995 -6252.363 4.0635378 3757.7028 638.49864 -10648.564 0 194.74753 0.0011457254 0.0011281507 + 71660 -6248.34 -6252.4685 4.1285252 3753.3226 637.99259 -10643.784 0 197.86209 0.0011851943 0.0011670152 + 71670 -6248.3231 -6252.8321 4.5089548 3747.9959 637.75778 -10638.586 0 216.09442 0.001295247 0.0012724385 + 71680 -6248.261 -6253.3773 5.1163382 3743.007 637.62426 -10634.009 0 245.20363 0.0014277444 0.001397708 + 71690 -6248.1955 -6253.9463 5.7508003 3739.6502 637.35937 -10630.956 0 275.61062 0.0015209306 0.0014857543 + 71700 -6248.1727 -6254.371 6.1982924 3738.799 636.76443 -10629.934 0 297.05695 0.0015231583 0.0014896319 + 71710 -6248.2013 -6254.5687 6.3673603 3740.5704 635.76964 -10630.909 0 305.15963 0.0014166848 0.0013917377 + 71720 -6248.2365 -6254.5765 6.3400282 3744.2638 634.49231 -10633.333 0 303.84973 0.0012278239 0.0012126929 + 71730 -6248.2125 -6254.4907 6.2781526 3748.6339 633.23091 -10636.356 0 300.8843 0.001016452 0.0010049201 + 71740 -6248.0989 -6254.3659 6.2669735 3752.3655 632.38762 -10639.119 0 300.34853 0.0008511587 0.00083397925 + 71750 -6247.9279 -6254.169 6.2411961 3754.5093 632.33834 -10641.017 0 299.11313 0.00078444486 0.00075655491 + 71760 -6247.768 -6253.8324 6.0643751 3754.6963 633.29293 -10641.822 0 290.63888 0.00083923086 0.00080369675 + 71770 -6247.6657 -6253.355 5.6892911 3753.1125 635.19973 -10641.667 0 272.66275 0.001008004 0.00097336327 + 71780 -6247.6065 -6252.8524 5.2458687 3750.3502 637.73683 -10640.939 0 251.41146 0.0012584178 0.001231936 + 71790 -6247.5283 -6252.5012 4.9729444 3747.2516 640.39435 -10640.147 0 238.3314 0.0015398154 0.0015225351 + 71800 -6247.365 -6252.4284 5.063404 3744.7639 642.61205 -10639.804 0 242.66673 0.0017909587 0.001778011 + 71810 -6247.0814 -6252.6372 5.5557865 3743.756 643.92205 -10640.315 0 266.26446 0.0019519085 0.0019366331 + 71820 -6246.682 -6253.0137 6.3316222 3744.7864 644.05988 -10641.86 0 303.44686 0.0019795977 0.0019578044 + 71830 -6246.2039 -6253.3912 7.1873235 3747.8764 643.0243 -10644.292 0 344.45687 0.0018621103 0.0018340038 + 71840 -6245.6975 -6253.6261 7.9285873 3752.3864 641.07641 -10647.089 0 379.98239 0.0016256763 0.0015948937 + 71850 -6245.2034 -6253.651 8.4475605 3757.0817 638.67708 -10649.41 0 404.8545 0.0013306303 0.001301164 + 71860 -6244.7358 -6253.4805 8.7446305 3760.431 636.37672 -10650.288 0 419.09176 0.0010560616 0.0010290192 + 71870 -6244.2922 -6253.1672 8.8749382 3761.0851 634.6841 -10648.936 0 425.33684 0.00087681688 0.00084958825 + 71880 -6243.8805 -6252.742 8.8614753 3758.3666 633.9425 -10645.051 0 424.69162 0.00084014512 0.00080905816 + 71890 -6243.5329 -6252.1977 8.6647489 3752.5498 634.23744 -10638.985 0 415.26339 0.00095052028 0.0009147931 + 71900 -6243.285 -6251.5363 8.2512796 3744.8053 635.36069 -10631.702 0 395.44762 0.0011683545 0.0011314883 + 71910 -6243.1405 -6250.8336 7.6931042 3736.8618 636.85456 -10624.55 0 368.69672 0.0014227427 0.0013898593 + 71920 -6243.0588 -6250.2526 7.193753 3730.5415 638.14259 -10618.937 0 344.76501 0.0016335618 0.0016070277 + 71930 -6242.9763 -6249.9889 7.0125934 3727.3121 638.71642 -10616.017 0 336.08283 0.0017358621 0.0017126884 + 71940 -6242.8442 -6250.1802 7.3360208 3727.9455 638.31802 -10616.444 0 351.58328 0.0016989321 0.0016718479 + 71950 -6242.6666 -6250.8217 8.1550625 3732.3424 637.0508 -10620.215 0 390.83635 0.0015342395 0.001496377 + 71960 -6242.52 -6251.7357 9.2157766 3739.5424 635.36997 -10626.648 0 441.67172 0.0012913268 0.0012422351 + 71970 -6242.5248 -6252.6436 10.118715 3747.8944 633.93673 -10634.475 0 484.94558 0.0010452093 0.00099331316 + 71980 -6242.7654 -6253.3183 10.552807 3755.3816 633.37515 -10642.075 0 505.74974 0.00087807359 0.00083549072 + 71990 -6243.2228 -6253.699 10.476194 3760.1305 634.02875 -10647.858 0 502.07802 0.00085472734 0.00082739871 + 72000 -6243.8011 -6253.8542 10.053092 3761.0366 635.82642 -10650.717 0 481.80059 0.00099488038 0.0009775792 + 72010 -6244.4201 -6253.8467 9.4265956 3758.2237 638.30993 -10650.38 0 451.77535 0.0012565725 0.001238325 + 72020 -6245.0605 -6253.6672 8.6067371 3752.9981 640.79547 -10647.461 0 412.48313 0.0015475894 0.0015215953 + 72030 -6245.7222 -6253.2989 7.5767547 3747.2593 642.60083 -10643.159 0 363.1206 0.0017643443 0.0017322982 + 72040 -6246.3717 -6252.8044 6.4327108 3742.7134 643.26162 -10638.779 0 308.2916 0.001835724 0.0018040507 + 72050 -6246.95 -6252.3264 5.3763897 3740.3185 642.66315 -10635.308 0 257.66676 0.0017468356 0.0017206014 + 72060 -6247.4141 -6252.0129 4.5987137 3740.147 641.04256 -10633.202 0 220.39616 0.0015351379 0.0015152635 + 72070 -6247.759 -6251.9485 4.1894657 3741.5854 638.87154 -10632.405 0 200.7827 0.0012686019 0.0012529417 + 72080 -6248.0065 -6252.1396 4.133041 3743.6857 636.67889 -10632.504 0 198.07851 0.0010195273 0.0010052261 + 72090 -6248.1848 -6252.5435 4.3586591 3745.5223 634.88501 -10632.951 0 208.8914 0.00084306864 0.00082795573 + 72100 -6248.3144 -6253.1024 4.7879884 3746.4611 633.70315 -10633.267 0 229.46727 0.00076460271 0.00074721717 + 72110 -6248.4081 -6253.7538 5.3457109 3746.2926 633.12982 -10633.176 0 256.19646 0.0007773016 0.00075653063 + 72120 -6248.4802 -6254.4181 5.9379251 3745.2132 633.01102 -10632.642 0 284.57869 0.00084948158 0.00082489043 + 72130 -6248.5533 -6254.9897 6.4364008 3743.683 633.14666 -10631.819 0 308.46844 0.00093933955 0.00091214104 + 72140 -6248.6506 -6255.3595 6.7088775 3742.2137 633.3876 -10630.961 0 321.52705 0.00101232 0.00098557252 + 72150 -6248.776 -6255.4647 6.6887505 3741.1759 633.68849 -10630.329 0 320.56246 0.0010541022 0.0010308961 + 72160 -6248.9028 -6255.3202 6.4173932 3740.7124 634.10073 -10630.133 0 307.55749 0.0010723978 0.0010530619 + 72170 -6248.993 -6254.9947 6.0017702 3740.7947 634.71512 -10630.504 0 287.6385 0.0010861797 0.001067466 + 72180 -6249.0304 -6254.5525 5.5220419 3741.3518 635.58312 -10631.487 0 264.64723 0.0011095534 0.0010873393 + 72190 -6249.0357 -6254.0254 4.9897132 3742.3494 636.65359 -10633.028 0 239.13505 0.0011416449 0.0011149073 + 72200 -6249.0435 -6253.4477 4.4042428 3743.7496 637.7563 -10634.954 0 211.07603 0.0011688074 0.001140856 + 72210 -6249.0661 -6252.9086 3.8424332 3745.4054 638.64635 -10636.96 0 184.15096 0.0011755386 0.0011510542 + 72220 -6249.0796 -6252.5525 3.4729458 3747.0063 639.09563 -10638.654 0 166.44305 0.0011548687 0.0011355282 + 72230 -6249.0432 -6252.5058 3.462622 3748.1445 638.99195 -10639.642 0 165.94828 0.0011118259 0.0010947696 + 72240 -6248.9347 -6252.7863 3.8516393 3748.4607 638.39854 -10639.646 0 184.59216 0.0010606221 0.0010412651 + 72250 -6248.7674 -6253.2788 4.5113948 3747.7689 637.54078 -10638.588 0 216.21135 0.0010199508 0.00099640592 + 72260 -6248.5761 -6253.8029 5.2267483 3746.0988 636.71908 -10636.621 0 250.4951 0.001008526 0.00098337277 + 72270 -6248.3847 -6254.2155 5.830802 3743.683 636.18282 -10634.081 0 279.44475 0.0010391923 0.0010170187 + 72280 -6248.1879 -6254.466 6.2781189 3740.94 636.02189 -10631.428 0 300.88268 0.001110678 0.0010939087 + 72290 -6247.9628 -6254.5751 6.6123143 3738.4527 636.12678 -10629.155 0 316.89921 0.0012012092 0.0011879854 + 72300 -6247.6955 -6254.577 6.8815375 3736.8859 636.23864 -10627.702 0 329.80189 0.0012709051 0.001256437 + 72310 -6247.3995 -6254.4772 7.0776801 3736.8049 636.07075 -10627.353 0 339.20214 0.0012754834 0.0012554577 + 72320 -6247.1143 -6254.2471 7.1328637 3738.431 635.44965 -10628.128 0 341.84685 0.0011861929 0.00115988 + 72330 -6246.8842 -6253.8545 6.970295 3741.4389 634.41179 -10629.705 0 334.05565 0.0010068622 0.00097799602 + 72340 -6246.7293 -6253.3148 6.5855291 3744.9198 633.21142 -10631.446 0 315.61551 0.00078003723 0.00075450994 + 72350 -6246.6235 -6252.7275 6.1040804 3747.5939 632.23934 -10632.561 0 292.54178 0.00057785956 0.00055914138 + 72360 -6246.5038 -6252.2545 5.7507248 3748.2546 631.89178 -10632.401 0 275.607 0.0004784867 0.00046395272 + 72370 -6246.3108 -6252.0337 5.7228861 3746.2878 632.43775 -10630.759 0 274.27281 0.000535448 0.00051709554 + 72380 -6246.0337 -6252.0863 6.0525354 3742.0163 633.91944 -10628.022 0 290.07146 0.00075262631 0.00072261795 + 72390 -6245.7243 -6252.2974 6.5730345 3736.6686 636.10651 -10625.073 0 315.01669 0.0010772729 0.0010344621 + 72400 -6245.4615 -6252.4987 7.0371162 3731.9556 638.5225 -10622.977 0 337.25809 0.0014163234 0.0013682358 + 72410 -6245.2874 -6252.5933 7.3058924 3729.4418 640.55547 -10622.591 0 350.13936 0.0016698831 0.0016276902 + 72420 -6245.1685 -6252.6174 7.4489363 3730.0013 641.63799 -10624.257 0 356.99482 0.0017661519 0.0017361982 + 72430 -6245.0218 -6252.6806 7.6588329 3733.574 641.44174 -10627.696 0 367.05425 0.0016820001 0.0016609779 + 72440 -6244.7856 -6252.8384 8.0527629 3739.2548 640.00833 -10632.102 0 385.93358 0.0014439053 0.0014219022 + 72450 -6244.474 -6253.0146 8.5406055 3745.5908 637.75466 -10636.36 0 409.31374 0.0011155031 0.0010843679 + 72460 -6244.1651 -6253.0482 8.8831205 3750.9326 635.34112 -10639.322 0 425.72898 0.00078096721 0.00074084706 + 72470 -6243.934 -6252.832 8.8979934 3753.7688 633.45027 -10640.051 0 426.44177 0.00052792908 0.00048636909 + 72480 -6243.7878 -6252.4169 8.6290377 3753.0573 632.56377 -10638.038 0 413.55191 0.00042777975 0.00039250269 + 72490 -6243.668 -6251.9829 8.3149112 3748.5527 632.82277 -10633.358 0 398.4972 0.00051312007 0.00048556424 + 72500 -6243.5118 -6251.7023 8.1904573 3741.0244 634.01053 -10626.737 0 392.53267 0.00076088648 0.00073638297 + 72510 -6243.3085 -6251.6277 8.319206 3732.1924 635.64263 -10619.463 0 398.70303 0.0010938385 0.0010671341 + 72520 -6243.0993 -6251.6967 8.5973512 3724.2965 637.12373 -10613.117 0 412.03331 0.001404745 0.0013746921 + 72530 -6242.9363 -6251.8157 8.8794198 3719.4246 637.92707 -10609.167 0 425.55162 0.001593585 0.0015630126 + 72540 -6242.8477 -6251.9295 9.0818047 3718.8645 637.7521 -10608.546 0 435.25104 0.0016009255 0.0015731755 + 72550 -6242.835 -6252.0262 9.191244 3722.7278 636.61542 -10611.369 0 440.49598 0.0014246856 0.0014007603 + 72560 -6242.891 -6252.1117 9.2206573 3729.948 634.84485 -10616.905 0 441.90564 0.0011171999 0.0010953965 + 72570 -6243.0118 -6252.1908 9.1789755 3738.6158 632.97871 -10623.785 0 439.90801 0.00076688801 0.00074397782 + 72580 -6243.2001 -6252.2609 9.0608073 3746.528 631.6053 -10630.394 0 434.24473 0.00047139119 0.00044421633 + 72590 -6243.4672 -6252.3012 8.8340481 3751.7809 631.19209 -10635.274 0 423.37715 0.0003097715 0.00027719003 + 72600 -6243.8281 -6252.2753 8.4472371 3753.2319 631.94867 -10637.456 0 404.839 0.00032182327 0.0002862395 + 72610 -6244.2807 -6252.167 7.8863232 3750.7114 633.75613 -10636.635 0 377.95686 0.00050011998 0.00046662753 + 72620 -6244.7875 -6252.0206 7.2331031 3744.9845 636.18605 -10633.191 0 346.65089 0.00079475224 0.00076762709 + 72630 -6245.2875 -6251.9326 6.6450912 3737.5291 638.6125 -10628.074 0 318.47005 0.0011269046 0.001106336 + 72640 -6245.7305 -6251.9955 6.2650834 3730.1831 640.38868 -10622.567 0 300.25795 0.0014080224 0.0013899134 + 72650 -6246.1022 -6252.246 6.1437563 3724.7013 641.03323 -10617.98 0 294.44328 0.0015619426 0.0015405953 + 72660 -6246.4256 -6252.6475 6.2218477 3722.3184 640.368 -10615.334 0 298.18585 0.0015452408 0.0015168873 + 72670 -6246.7456 -6253.1077 6.3621809 3723.4374 638.56469 -10615.11 0 304.91141 0.0013597154 0.0013250378 + 72680 -6247.1028 -6253.5211 6.4182212 3727.5312 636.08451 -10617.137 0 307.59717 0.001052835 0.0010170163 + 72690 -6247.5071 -6253.8245 6.317396 3733.2879 633.53164 -10620.644 0 302.76507 0.00070509578 0.00067480243 + 72700 -6247.9267 -6254.0283 6.1016061 3738.984 631.47502 -10624.487 0 292.4232 0.00040646728 0.00038542592 + 72710 -6248.3096 -6254.1891 5.8795463 3743.0064 630.30129 -10627.497 0 281.78085 0.00022846458 0.00021504796 + 72720 -6248.6206 -6254.3472 5.726602 3744.3497 630.1375 -10628.834 0 274.4509 0.00020214035 0.00019099078 + 72730 -6248.8626 -6254.4865 5.6239248 3742.8891 630.85042 -10628.226 0 269.53003 0.00031122409 0.00029740261 + 72740 -6249.0655 -6254.5527 5.4871827 3739.3236 632.11086 -10625.987 0 262.97658 0.00050279086 0.00048494221 + 72750 -6249.2584 -6254.5053 5.2469332 3734.8468 633.50461 -10622.857 0 251.46248 0.00070946079 0.00068984418 + 72760 -6249.4487 -6254.3539 4.9051748 3730.7215 634.66071 -10619.736 0 235.0835 0.00087273907 0.00085481261 + 72770 -6249.6216 -6254.1536 4.531989 3727.9275 635.35581 -10617.437 0 217.19834 0.00095867932 0.00094439726 + 72780 -6249.7531 -6253.9737 4.220628 3726.9734 635.55553 -10616.503 0 202.27618 0.00096205118 0.000950549 + 72790 -6249.8262 -6253.8613 4.0351748 3727.88 635.38058 -10617.122 0 193.38822 0.00090010411 0.00088833973 + 72800 -6249.843 -6253.8191 3.9760394 3730.2814 635.02093 -10619.121 0 190.55412 0.00080051693 0.00078548892 + 72810 -6249.8256 -6253.8113 3.9856891 3733.5645 634.64379 -10622.02 0 191.01659 0.00068993821 0.00067105192 + 72820 -6249.7995 -6253.8031 4.0036448 3736.9882 634.33688 -10625.128 0 191.87713 0.00058831107 0.00056784268 + 72830 -6249.7705 -6253.8031 4.0325694 3739.7865 634.10589 -10627.695 0 193.26335 0.00050945934 0.00049036116 + 72840 -6249.7181 -6253.8635 4.1454471 3741.2925 633.91727 -10629.073 0 198.67309 0.00046377994 0.00044680704 + 72850 -6249.6133 -6254.0279 4.4146616 3741.0909 633.75531 -10628.874 0 211.57535 0.00045894303 0.00044205227 + 72860 -6249.4442 -6254.2763 4.8321046 3739.1345 633.65629 -10627.067 0 231.58157 0.00049834323 0.00047892539 + 72870 -6249.2243 -6254.5252 5.3009415 3735.7634 633.69747 -10623.986 0 254.05086 0.0005793839 0.00055693439 + 72880 -6248.9772 -6254.6791 5.7019668 3731.6235 633.94653 -10620.249 0 273.27024 0.00069253868 0.00066921512 + 72890 -6248.7163 -6254.6864 5.9701024 3727.5355 634.40016 -10616.622 0 286.12081 0.00082063815 0.00079942002 + 72900 -6248.4352 -6254.5568 6.1216792 3724.3531 634.94718 -10613.857 0 293.38521 0.00093847868 0.00092066085 + 72910 -6248.1163 -6254.3364 6.220179 3722.8184 635.3819 -10612.537 0 298.10588 0.0010145188 0.0009985973 + 72920 -6247.7503 -6254.062 6.3117584 3723.4085 635.47122 -10612.942 0 302.49488 0.0010169417 0.00099982461 + 72930 -6247.3508 -6253.7342 6.3833864 3726.1821 635.05235 -10614.969 0 305.92769 0.00092470771 0.00090436674 + 72940 -6246.95 -6253.3317 6.3817676 3730.6639 634.12119 -10618.117 0 305.85011 0.00074063582 0.00071798115 + 72950 -6246.5752 -6252.8563 6.2811217 3735.838 632.87195 -10621.566 0 301.0266 0.00049994706 0.00047810988 + 72960 -6246.2262 -6252.3651 6.1388164 3740.3213 631.6668 -10624.353 0 294.20653 0.00026721056 0.00024860893 + 72970 -6245.8751 -6251.9539 6.0787348 3742.7299 630.93909 -10625.623 0 291.32708 0.00011903913 0.00010284655 + 72980 -6245.4927 -6251.6987 6.2060304 3742.1383 631.05561 -10624.893 0 297.4278 0.00011743062 0.00010001194 + 72990 -6245.078 -6251.6067 6.528732 3738.4473 632.17653 -10622.231 0 312.89347 0.00028462913 0.00026274986 + 73000 -6244.6628 -6251.624 6.9612716 3732.4879 634.15868 -10618.271 0 333.62319 0.00059065968 0.00056445897 + 73010 -6244.2872 -6251.6914 7.4042278 3725.8121 636.54782 -10614.051 0 354.85214 0.00095913684 0.00093204473 + 73020 -6243.9704 -6251.791 7.820652 3720.2467 638.68567 -10610.723 0 374.80953 0.0012891597 0.0012649281 + 73030 -6243.7038 -6251.9464 8.2426353 3717.3612 639.90966 -10609.217 0 395.03333 0.0014852905 0.0014648121 + 73040 -6243.4696 -6252.1822 8.7125698 3718.0068 639.77501 -10609.964 0 417.55523 0.0014857294 0.0014661723 + 73050 -6243.2693 -6252.4789 9.2095802 3722.0568 638.21468 -10612.75 0 441.37476 0.001280522 0.0012574724 + 73060 -6243.1368 -6252.7578 9.6210239 3728.4123 635.58056 -10616.751 0 461.09345 0.00091590638 0.00088702058 + 73070 -6243.1188 -6252.9221 9.8033335 3735.2589 632.55304 -10620.734 0 469.83075 0.00048500743 0.0004519364 + 73080 -6243.2324 -6252.9305 9.6980245 3740.5178 629.94809 -10623.396 0 464.78375 0.00010594564 7.2307944e-05 + 73090 -6243.4464 -6252.8254 9.3790247 3742.4291 628.48264 -10623.737 0 449.49549 -0.00011116213 -0.00014358213 + 73100 -6243.711 -6252.6774 8.966462 3740.1329 628.5675 -10621.378 0 429.72317 -0.00010078648 -0.00013298314 + 73110 -6243.999 -6252.5126 8.513655 3734.0175 630.18236 -10616.712 0 408.02212 0.00013312157 0.00010018497 + 73120 -6244.3073 -6252.3138 8.0065476 3725.6418 632.86599 -10610.822 0 383.71869 0.00051709674 0.00048498248 + 73130 -6244.6268 -6252.0839 7.4571322 3717.2537 635.83455 -10605.172 0 357.38762 0.00093308602 0.00090474364 + 73140 -6244.9269 -6251.8845 6.9576297 3711.117 638.20765 -10601.209 0 333.44865 0.0012561968 0.0012327517 + 73150 -6245.1735 -6251.8032 6.6296581 3708.8937 639.27747 -10599.974 0 317.73041 0.0013907888 0.0013701336 + 73160 -6245.3564 -6251.8884 6.5319243 3711.2266 638.72896 -10601.844 0 313.04646 0.0012956638 0.001274299 + 73170 -6245.4962 -6252.1188 6.6226003 3717.5805 636.73329 -10606.433 0 317.39216 0.00099443194 0.0009704741 + 73180 -6245.6262 -6252.4275 6.8012944 3726.3595 633.88453 -10612.672 0 325.95619 0.00056929367 0.00054377458 + 73190 -6245.7692 -6252.7472 6.9779714 3735.297 631.00674 -10619.051 0 334.42354 0.00013827792 0.00011394048 + 73200 -6245.9272 -6253.0357 7.1084573 3742.0482 628.90054 -10623.984 0 340.67716 -0.00017936223 -0.00020027886 + 73210 -6246.0878 -6253.2737 7.1859749 3744.8355 628.10999 -10626.219 0 344.39224 -0.00029906193 -0.00031624628 + 73220 -6246.2366 -6253.4523 7.21569 3742.9489 628.77697 -10625.178 0 345.81635 -0.00019578735 -0.00021084947 + 73230 -6246.3672 -6253.562 7.1948446 3736.9435 630.62086 -10621.126 0 344.81732 9.0355429e-05 7.4965538e-05 + 73240 -6246.4837 -6253.5904 7.1067426 3728.4604 633.04436 -10615.095 0 340.59498 0.00046866561 0.00045107072 + 73250 -6246.5969 -6253.5274 6.9304259 3719.7287 635.32829 -10608.584 0 332.1449 0.00082696911 0.00080681765 + 73260 -6246.7163 -6253.3768 6.6605581 3712.9157 636.85082 -10603.143 0 319.21132 0.0010657735 0.001044238 + 73270 -6246.8415 -6253.169 6.327462 3709.5385 637.26123 -10599.969 0 303.24748 0.0011269127 0.0011056934 + 73280 -6246.9598 -6252.9651 6.0052598 3710.112 636.55647 -10599.634 0 287.80574 0.0010078422 0.00098761127 + 73290 -6247.0514 -6252.8419 5.7904791 3714.1139 635.04452 -10602 0 277.51225 0.00075710349 0.00073649531 + 73300 -6247.1063 -6252.8521 5.7458421 3720.2364 633.21908 -10606.308 0 275.37299 0.0004534934 0.00042996108 + 73310 -6247.1387 -6252.987 5.8483082 3726.8063 631.59518 -10611.389 0 280.28374 0.00017858671 0.00015097639 + 73320 -6247.1806 -6253.1825 6.0019347 3732.2168 630.55979 -10615.959 0 287.64639 -5.7628353e-06 -3.5334384e-05 + 73330 -6247.254 -6253.3715 6.117511 3735.2669 630.2798 -10618.918 0 293.18545 -6.8617064e-05 -9.5971335e-05 + 73340 -6247.3495 -6253.5296 6.1800816 3735.3776 630.68927 -10619.596 0 296.18418 -1.1122696e-05 -3.357087e-05 + 73350 -6247.4349 -6253.6682 6.2332741 3732.6811 631.54819 -10617.897 0 298.73347 0.00013801389 0.00011924141 + 73360 -6247.4867 -6253.7892 6.302538 3727.9677 632.54103 -10614.298 0 302.05298 0.00033070659 0.0003115934 + 73370 -6247.5121 -6253.8563 6.3442644 3722.4741 633.37608 -10609.706 0 304.05275 0.00051175276 0.00048905943 + 73380 -6247.5406 -6253.8157 6.2751019 3717.5448 633.85684 -10605.217 0 300.73809 0.0006340674 0.00060795083 + 73390 -6247.5959 -6253.6457 6.0498103 3714.2706 633.91172 -10601.828 0 289.94085 0.00067174686 0.00064524986 + 73400 -6247.6759 -6253.3833 5.707394 3713.2296 633.58304 -10600.196 0 273.53035 0.00062463018 0.00060102111 + 73410 -6247.7596 -6253.1036 5.3440001 3714.4082 632.98787 -10600.5 0 256.11447 0.00051271181 0.0004934236 + 73420 -6247.8253 -6252.8785 5.0532501 3717.2899 632.2691 -10602.438 0 242.1801 0.00036552583 0.0003500661 + 73430 -6247.8603 -6252.7578 4.8975234 3721.0408 631.55457 -10605.353 0 234.7168 0.0002133322 0.00020016628 + 73440 -6247.8578 -6252.7726 4.9147915 3724.7252 630.93699 -10608.435 0 235.54439 8.2494354e-05 6.9637785e-05 + 73450 -6247.8148 -6252.9356 5.1207931 3727.5074 630.47766 -10610.921 0 245.41714 -6.7701843e-06 -2.1319547e-05 + 73460 -6247.7348 -6253.2281 5.4932365 3728.8038 630.2248 -10612.257 0 263.26671 -4.1808714e-05 -5.9229217e-05 + 73470 -6247.6294 -6253.5939 5.9644495 3728.3621 630.2296 -10612.186 0 285.84989 -1.7766921e-05 -3.7538018e-05 + 73480 -6247.5111 -6253.955 6.443952 3726.2738 630.54517 -10610.774 0 308.83034 6.3498685e-05 4.3462952e-05 + 73490 -6247.3814 -6254.2408 6.8594412 3722.9435 631.20313 -10608.387 0 328.74291 0.00019423256 0.00017599371 + 73500 -6247.2271 -6254.4063 7.1792112 3719.0353 632.17555 -10605.617 0 344.06808 0.00035920969 0.00034280309 + 73510 -6247.0335 -6254.4207 7.3872021 3715.3922 633.34154 -10603.154 0 354.03617 0.00053203302 0.00051515841 + 73520 -6246.8065 -6254.2434 7.4369175 3712.9012 634.47993 -10601.625 0 356.41882 0.00067380521 0.00065413402 + 73530 -6246.5761 -6253.8343 7.2581872 3712.277 635.30211 -10601.413 0 347.85306 0.00074026515 0.0007181741 + 73540 -6246.3681 -6253.2085 6.8404367 3713.8037 635.52619 -10602.538 0 327.83211 0.00069799417 0.00067631428 + 73550 -6246.174 -6252.4777 6.303735 3717.1629 634.97749 -10604.618 0 302.11035 0.00054131504 0.00052191186 + 73560 -6245.9556 -6251.8113 5.85564 3721.4662 633.68105 -10606.959 0 280.63512 0.00029910066 0.00028017424 + 73570 -6245.6823 -6251.3409 5.6586785 3725.491 631.90108 -10608.733 0 271.19563 2.8178476e-05 5.6723079e-06 + 73580 -6245.3581 -6251.0988 5.7406271 3728.0061 630.09476 -10609.2 0 275.12306 -0.0002013808 -0.00022954624 + 73590 -6245.0114 -6251.0467 6.0353176 3728.0761 628.78113 -10607.904 0 289.24628 -0.00032281134 -0.00035427548 + 73600 -6244.6571 -6251.1576 6.5005328 3725.3053 628.36434 -10604.827 0 311.54201 -0.0002893878 -0.00031943898 + 73610 -6244.2754 -6251.4527 7.1772904 3720.0203 628.97662 -10600.45 0 343.97603 -9.1524186e-05 -0.0001176075 + 73620 -6243.8327 -6251.9538 8.1210823 3713.3329 630.40582 -10595.693 0 389.20783 0.00023033054 0.00020636175 + 73630 -6243.3291 -6252.6066 9.2774812 3706.973 632.14413 -10591.724 0 444.62895 0.00058704675 0.000561041 + 73640 -6242.8256 -6253.2579 10.432307 3702.8368 633.55146 -10589.646 0 499.97468 0.00086379394 0.00083341133 + 73650 -6242.4243 -6253.7139 11.289574 3702.3538 634.08343 -10590.151 0 541.05972 0.00096023844 0.00092715547 + 73660 -6242.2131 -6253.8323 11.619212 3705.9118 633.50158 -10593.246 0 556.85784 0.00083132881 0.00079977417 + 73670 -6242.2171 -6253.5852 11.368102 3712.608 631.98063 -10598.174 0 544.82323 0.00050885159 0.00048194102 + 73680 -6242.3953 -6253.0537 10.658376 3720.4771 630.06501 -10603.596 0 510.80916 9.2486299e-05 6.9679573e-05 + 73690 -6242.6811 -6252.3669 9.6857801 3727.1347 628.48797 -10607.99 0 464.19693 -0.00028566826 -0.00030762272 + 73700 -6243.0246 -6251.6393 8.6146961 3730.5697 627.91739 -10610.126 0 412.86457 -0.00050683898 -0.00053045163 + 73710 -6243.4016 -6250.9573 7.5556056 3729.7662 628.71611 -10609.44 0 362.10701 -0.00050338443 -0.0005279819 + 73720 -6243.7949 -6250.4062 6.6112537 3724.959 630.79973 -10606.165 0 316.84837 -0.00027749375 -0.00030012218 + 73730 -6244.1795 -6250.0881 5.908647 3717.5043 633.64291 -10601.235 0 283.17552 0.00010169728 8.3211318e-05 + 73740 -6244.5299 -6250.0987 5.5688599 3709.4667 636.43297 -10595.998 0 266.89101 0.00051947791 0.00050434582 + 73750 -6244.8372 -6250.4795 5.6423143 3703.0505 638.31907 -10591.849 0 270.41136 0.00084916353 0.00083406088 + 73760 -6245.1188 -6251.1828 6.0639306 3700.002 638.67653 -10589.861 0 290.61758 0.00098903682 0.00097053109 + 73770 -6245.414 -6252.0736 6.6596151 3701.1207 637.30342 -10590.498 0 319.16612 0.00089229532 0.00086943301 + 73780 -6245.7658 -6252.9726 7.2068367 3706.0122 634.48647 -10593.471 0 345.39205 0.0005810898 0.00055633879 + 73790 -6246.195 -6253.7219 7.526955 3713.1791 630.91248 -10597.814 0 360.73392 0.00014000978 0.00011766945 + 73800 -6246.6812 -6254.2415 7.5602965 3720.4534 627.45481 -10602.15 0 362.33183 -0.00030980555 -0.00032695469 + 73810 -6247.1699 -6254.5397 7.3698415 3725.6627 624.91088 -10605.113 0 353.20416 -0.00064857314 -0.00066195138 + 73820 -6247.6056 -6254.6685 7.0629322 3727.3126 623.78291 -10605.764 0 338.49534 -0.00079543707 -0.00081015717 + 73830 -6247.9679 -6254.6597 6.691775 3725.0348 624.16834 -10603.863 0 320.7074 -0.00073211595 -0.00075307034 + 73840 -6248.2776 -6254.5011 6.2235092 3719.6261 625.77673 -10599.904 0 298.26548 -0.0005036531 -0.00053118468 + 73850 -6248.5669 -6254.1785 5.6115701 3712.6859 628.04808 -10594.913 0 268.93793 -0.00019691191 -0.00022598957 + 73860 -6248.8433 -6253.7411 4.8977885 3706.0426 630.32848 -10590.112 0 234.7295 9.2548186e-05 6.8592124e-05 + 73870 -6249.079 -6253.3175 4.2384471 3701.2269 632.05421 -10586.599 0 203.13017 0.00029039193 0.00027466795 + 73880 -6249.2348 -6253.0563 3.8214694 3699.1642 632.89552 -10585.116 0 183.14626 0.00035979052 0.00034959054 + 73890 -6249.2934 -6253.0379 3.7444666 3700.0967 632.82038 -10585.955 0 179.45585 0.0003026151 0.00029178242 + 73900 -6249.2756 -6253.228 3.9524435 3703.6449 632.06283 -10588.936 0 189.42327 0.00015067984 0.00013448157 + 73910 -6249.2287 -6253.5093 4.2806236 3708.932 631.01205 -10593.453 0 205.1515 -4.6777608e-05 -6.8179111e-05 + 73920 -6249.1943 -6253.7637 4.5693265 3714.7529 630.06605 -10598.583 0 218.98777 -0.00023572149 -0.00025787004 + 73930 -6249.1791 -6253.9439 4.7648093 3719.8075 629.50453 -10603.256 0 228.3564 -0.0003691162 -0.00038738067 + 73940 -6249.1529 -6254.0796 4.926623 3722.9914 629.42455 -10606.496 0 236.11142 -0.00041758952 -0.00043129835 + 73950 -6249.0794 -6254.2159 5.1364562 3723.6749 629.75161 -10607.642 0 246.1678 -0.00037691329 -0.00038986444 + 73960 -6248.9528 -6254.3438 5.3909935 3721.8577 630.30571 -10606.507 0 258.36666 -0.00026850536 -0.00028533445 + 73970 -6248.8087 -6254.3879 5.5791654 3718.1195 630.88436 -10603.392 0 267.38491 -0.00013059114 -0.00015223228 + 73980 -6248.6951 -6254.2663 5.5712404 3713.3867 631.32736 -10598.98 0 267.0051 -2.7367956e-06 -2.5209931e-05 + 73990 -6248.6288 -6253.9728 5.3439738 3708.635 631.54416 -10594.152 0 256.11321 8.8296651e-05 7.0396061e-05 + 74000 -6248.5783 -6253.6017 5.0233948 3704.6753 631.50567 -10589.783 0 240.74927 0.00013312358 0.00012150114 + 74010 -6248.4916 -6253.2883 4.7966498 3702.0882 631.21717 -10586.594 0 229.88237 0.00013315391 0.00012394519 + 74020 -6248.343 -6253.1149 4.7719426 3701.243 630.69221 -10585.05 0 228.69826 9.0154533e-05 7.7191004e-05 + 74030 -6248.1538 -6253.0714 4.9175484 3702.2829 629.94194 -10585.296 0 235.67651 1.9236776e-06 -1.7965472e-05 + 74040 -6247.9706 -6253.0973 5.1267588 3705.0347 628.98715 -10587.119 0 245.70305 -0.00013223449 -0.00015677541 + 74050 -6247.8235 -6253.1539 5.330402 3708.9184 627.88971 -10589.962 0 255.46277 -0.0003015489 -0.00032528674 + 74060 -6247.7048 -6253.2508 5.5460172 3712.9792 626.7855 -10593.016 0 265.79627 -0.00047815345 -0.00049692583 + 74070 -6247.5815 -6253.4122 5.8306633 3716.0926 625.89234 -10595.397 0 279.4381 -0.00062077005 -0.00063448347 + 74080 -6247.4268 -6253.6239 6.1971154 3717.2861 625.47442 -10596.384 0 297.00054 -0.00068626601 -0.00069824834 + 74090 -6247.2406 -6253.815 6.574402 3716.056 625.76707 -10595.638 0 315.08223 -0.00064386999 -0.00065812728 + 74100 -6247.0467 -6253.8881 6.8414386 3712.5605 626.88649 -10593.335 0 327.88012 -0.00048689487 -0.00050575913 + 74110 -6246.8741 -6253.7705 6.8964222 3707.6227 628.75881 -10590.152 0 330.51525 -0.00023866301 -0.00026212217 + 74120 -6246.7418 -6253.4482 6.7064547 3702.5365 631.0972 -10587.082 0 321.41094 4.933058e-05 2.3059053e-05 + 74130 -6246.6533 -6252.9711 6.3178022 3698.7241 633.44246 -10585.138 0 302.78453 0.00030812807 0.00028162195 + 74140 -6246.598 -6252.4382 5.840151 3697.3368 635.26595 -10585.041 0 279.89281 0.0004695673 0.00044511427 + 74150 -6246.556 -6251.9702 5.4141768 3698.9166 636.11374 -10587.001 0 259.47773 0.0004867204 0.00046537291 + 74160 -6246.5064 -6251.6733 5.1668979 3703.2176 635.7488 -10590.64 0 247.62674 0.00034911387 0.00033041871 + 74170 -6246.435 -6251.6083 5.1732932 3709.2319 634.23845 -10595.079 0 247.93324 8.749474e-05 7.004164e-05 + 74180 -6246.3376 -6251.7802 5.4426726 3715.4162 631.94935 -10599.146 0 260.84341 -0.00023305242 -0.00025076714 + 74190 -6246.2184 -6252.1465 5.9281025 3720.0765 629.44688 -10601.67 0 284.10794 -0.00052968056 -0.00054863596 + 74200 -6246.0883 -6252.6346 6.5462789 3721.8206 627.33021 -10601.785 0 313.73442 -0.00072407896 -0.00074458787 + 74210 -6245.9626 -6253.1589 7.1962977 3719.9598 626.05704 -10599.176 0 344.88697 -0.00076512153 -0.00078703946 + 74220 -6245.8607 -6253.6295 7.7688301 3714.7363 625.81527 -10594.181 0 372.32593 -0.0006455822 -0.00066841684 + 74230 -6245.8043 -6253.9574 8.1531315 3707.2984 626.48166 -10587.737 0 390.74381 -0.00040664798 -0.00042936612 + 74240 -6245.8089 -6254.0724 8.2635703 3699.4115 627.67604 -10581.16 0 396.03665 -0.00012662658 -0.00014778888 + 74250 -6245.8701 -6253.9512 8.081121 3692.9817 628.8904 -10575.823 0 387.29266 0.00010345337 8.4652787e-05 + 74260 -6245.9625 -6253.6288 7.666269 3689.5392 629.65269 -10572.821 0 367.41063 0.00020824617 0.00019088943 + 74270 -6246.0569 -6253.1756 7.1186795 3689.8345 629.67731 -10572.687 0 341.16706 0.00015031513 0.00013219906 + 74280 -6246.1411 -6252.6627 6.5216053 3693.6496 628.95813 -10575.27 0 312.55192 -5.9464137e-05 -7.9782298e-05 + 74290 -6246.2213 -6252.1505 5.9292772 3699.8567 627.77557 -10579.783 0 284.16423 -0.00036399051 -0.00038554517 + 74300 -6246.3035 -6251.7078 5.4043296 3706.7112 626.61323 -10585.032 0 259.0058 -0.00067349079 -0.00069367828 + 74310 -6246.3752 -6251.4247 5.0494544 3712.3257 626.00471 -10589.755 0 241.99819 -0.00088940138 -0.0009067703 + 74320 -6246.4101 -6251.3854 4.9753282 3715.2164 626.35377 -10592.956 0 238.44564 -0.00093495401 -0.00095117387 + 74330 -6246.3943 -6251.6106 5.2163108 3714.7583 627.78231 -10594.151 0 249.99488 -0.00078343511 -0.00080198519 + 74340 -6246.3472 -6252.0252 5.6780179 3711.3723 630.05718 -10593.455 0 272.12248 -0.00047147608 -0.00049395853 + 74350 -6246.3108 -6252.4983 6.1875197 3706.3503 632.62982 -10591.478 0 296.54066 -8.8711962e-05 -0.00011262693 + 74360 -6246.3138 -6252.9267 6.6129553 3701.3819 634.79132 -10589.1 0 316.92992 0.00025320915 0.00023250319 + 74370 -6246.3463 -6253.2827 6.9363884 3697.9886 635.90116 -10587.172 0 332.43065 0.00045799466 0.00044283434 + 74380 -6246.3749 -6253.5828 7.2079221 3697.0831 635.60639 -10586.272 0 345.44407 0.00047257432 0.00046059622 + 74390 -6246.3811 -6253.8198 7.4386747 3698.7712 633.961 -10586.552 0 356.50303 0.00029792721 0.0002841647 + 74400 -6246.3814 -6253.9375 7.5560799 3702.3877 631.39657 -10587.722 0 362.12975 -1.5541525e-05 -3.4362929e-05 + 74410 -6246.4069 -6253.8765 7.4695875 3706.709 628.5639 -10589.149 0 357.98454 -0.00038374973 -0.00040706941 + 74420 -6246.4703 -6253.6357 7.1654924 3710.2988 626.12048 -10590.055 0 343.4106 -0.00071261135 -0.00073757908 + 74430 -6246.5567 -6253.2795 6.7227904 3711.9237 624.54893 -10589.752 0 322.19384 -0.00092498366 -0.000949166 + 74440 -6246.6433 -6252.8914 6.2480546 3710.9206 624.05685 -10587.869 0 299.44183 -0.00098225704 -0.0010046241 + 74450 -6246.716 -6252.535 5.8190065 3707.3796 624.56372 -10584.478 0 278.87944 -0.00089199794 -0.0009123398 + 74460 -6246.7674 -6252.2543 5.4869179 3702.0896 625.75734 -10580.101 0 262.96389 -0.00069987827 -0.00071851141 + 74470 -6246.7898 -6252.0863 5.2965953 3696.2988 627.19909 -10575.584 0 253.84257 -0.00047188185 -0.00049000881 + 74480 -6246.7792 -6252.0537 5.2745371 3691.3842 628.45388 -10571.892 0 252.78541 -0.00027475524 -0.00029418551 + 74490 -6246.7443 -6252.1461 5.4017843 3688.5075 629.21174 -10569.865 0 258.88381 -0.00015941617 -0.00018118487 + 74500 -6246.7041 -6252.3229 5.6188669 3688.3193 629.36554 -10570.008 0 269.28763 -0.00014912114 -0.00017239444 + 74510 -6246.6729 -6252.5402 5.8673652 3690.7909 629.02099 -10572.352 0 281.19706 -0.00023443491 -0.00025715252 + 74520 -6246.6491 -6252.7717 6.1225794 3695.2389 628.4379 -10576.448 0 293.42836 -0.00037772412 -0.00039852578 + 74530 -6246.6201 -6253.0012 6.3810386 3700.5422 627.92635 -10581.47 0 305.81517 -0.00052727855 -0.00054676185 + 74540 -6246.5787 -6253.2003 6.6215915 3705.4687 627.73803 -10586.407 0 317.34382 -0.00063585678 -0.00065592188 + 74550 -6246.5333 -6253.3237 6.7903829 3708.9896 627.99107 -10590.304 0 325.43325 -0.00067536239 -0.00069742539 + 74560 -6246.5012 -6253.3313 6.830118 3710.4931 628.6486 -10592.473 0 327.33758 -0.000641994 -0.00066582961 + 74570 -6246.4939 -6253.2195 6.7255298 3709.8618 629.5472 -10592.628 0 322.32513 -0.00055212812 -0.00057625475 + 74580 -6246.5072 -6253.0338 6.5265311 3707.4237 630.45644 -10590.914 0 312.78799 -0.00043324032 -0.00045641191 + 74590 -6246.5234 -6252.8522 6.3288272 3703.8177 631.14909 -10587.819 0 303.31291 -0.00031466433 -0.00033718536 + 74600 -6246.5269 -6252.7422 6.2152652 3699.836 631.46445 -10584.043 0 297.87038 -0.00022126911 -0.00024474589 + 74610 -6246.5205 -6252.7186 6.1981172 3696.275 631.3464 -10580.34 0 297.04855 -0.00017038794 -0.00019581667 + 74620 -6246.5228 -6252.7441 6.2213174 3693.7879 630.83951 -10577.372 0 298.16044 -0.00017048881 -0.00019666631 + 74630 -6246.5466 -6252.7736 6.226931 3692.7506 630.04491 -10575.569 0 298.42947 -0.00022104691 -0.00024539807 + 74640 -6246.5829 -6252.7936 6.2106745 3693.1936 629.0635 -10575.051 0 297.65037 -0.0003148111 -0.00033593029 + 74650 -6246.6097 -6252.8134 6.203746 3694.8381 627.96195 -10575.613 0 297.31832 -0.00044219842 -0.00046119036 + 74660 -6246.6155 -6252.8308 6.21531 3697.1938 626.77875 -10576.803 0 297.87253 -0.0005941072 -0.00061332712 + 74670 -6246.6078 -6252.8221 6.2143034 3699.6522 625.56103 -10578.035 0 297.82429 -0.00075963978 -0.00078054616 + 74680 -6246.6007 -6252.7668 6.1661267 3701.5565 624.40815 -10578.732 0 295.51539 -0.00092035705 -0.0009427747 + 74690 -6246.6004 -6252.6709 6.070497 3702.2951 623.49512 -10578.461 0 290.93228 -0.0010471838 -0.0010701603 + 74700 -6246.6031 -6252.5632 5.9600653 3701.4438 623.05402 -10577.061 0 285.63977 -0.0011049483 -0.001127788 + 74710 -6246.6016 -6252.4755 5.8739748 3698.9238 623.30736 -10574.707 0 281.51383 -0.001064164 -0.0010867178 + 74720 -6246.5909 -6252.4278 5.836839 3695.1044 624.3722 -10571.904 0 279.73408 -0.0009149471 -0.0009373286 + 74730 -6246.5697 -6252.4235 5.8537956 3690.7977 626.17491 -10569.396 0 280.54673 -0.00067655451 -0.00069877202 + 74740 -6246.5367 -6252.4566 5.9198918 3687.1165 628.41921 -10567.992 0 283.71443 -0.00039760871 -0.00041949961 + 74750 -6246.4877 -6252.5244 6.0366613 3685.207 630.63285 -10568.364 0 289.31068 -0.00014570589 -0.00016734294 + 74760 -6246.4141 -6252.6323 6.2182398 3685.919 632.28974 -10570.841 0 298.01294 1.081154e-05 -1.1383569e-05 + 74770 -6246.3095 -6252.7821 6.4725759 3689.5115 632.97372 -10575.267 0 310.20215 2.3541015e-05 -5.5389297e-07 + 74780 -6246.1806 -6252.9506 6.7699971 3695.4872 632.52741 -10580.965 0 324.45625 -0.00011878251 -0.00014539231 + 74790 -6246.0483 -6253.0854 7.037075 3702.6114 631.12531 -10586.822 0 337.25612 -0.00038189934 -0.00040960009 + 74800 -6245.9339 -6253.1349 7.2010525 3709.1366 629.23201 -10591.504 0 345.11484 -0.00069069107 -0.00071643377 + 74810 -6245.8371 -6253.0881 7.2509928 3713.2221 627.45167 -10593.762 0 347.50826 -0.00094906867 -0.0009707241 + 74820 -6245.7353 -6252.9776 7.2422626 3713.4825 626.32312 -10592.783 0 347.08986 -0.0010720712 -0.0010907835 + 74830 -6245.6081 -6252.8367 7.2285634 3709.4932 626.13648 -10588.466 0 346.43332 -0.0010189612 -0.0010385565 + 74840 -6245.4607 -6252.6627 7.2019142 3702.0239 626.83412 -10581.521 0 345.15614 -0.00081142091 -0.00083532465 + 74850 -6245.3189 -6252.4302 7.1112666 3692.8578 628.02823 -10573.316 0 340.8118 -0.00052693268 -0.00055579 + 74860 -6245.2064 -6252.1306 6.9242434 3684.2586 629.13334 -10565.523 0 331.8486 -0.0002707902 -0.00030259543 + 74870 -6245.1316 -6251.787 6.6553843 3678.2961 629.57459 -10559.658 0 318.96336 -0.00013960771 -0.00017115014 + 74880 -6245.0903 -6251.4434 6.3530569 3676.2549 628.99892 -10556.697 0 304.47413 -0.00018933943 -0.00021739844 + 74890 -6245.0679 -6251.1575 6.0896354 3678.2912 627.41129 -10556.86 0 291.8495 -0.00041653954 -0.00043893362 + 74900 -6245.0379 -6251.0021 5.9642038 3683.4328 625.18809 -10559.623 0 285.83811 -0.00075804325 -0.00077501551 + 74910 -6244.9679 -6251.0471 6.0792596 3689.9296 622.96609 -10563.943 0 291.35223 -0.0011104643 -0.0011254434 + 74920 -6244.8405 -6251.3143 6.4737608 3695.8344 621.44504 -10568.594 0 310.25894 -0.0013644609 -0.0013825277 + 74930 -6244.6758 -6251.7378 7.0619896 3699.6022 621.16371 -10572.504 0 338.45017 -0.0014415715 -0.0014657443 + 74940 -6244.5284 -6252.1834 7.6550304 3700.4934 622.31707 -10574.994 0 366.87201 -0.0013189117 -0.0013471722 + 74950 -6244.4506 -6252.5277 8.0770531 3698.6753 624.67892 -10575.882 0 387.09771 -0.0010325815 -0.0010590019 + 74960 -6244.4519 -6252.7338 8.281896 3695.0556 627.66798 -10575.457 0 396.91493 -0.00066162546 -0.00068145126 + 74970 -6244.4958 -6252.8474 8.3516138 3690.9623 630.54035 -10574.35 0 400.2562 -0.0003027201 -0.00031691376 + 74980 -6244.5449 -6252.9157 8.3707494 3687.775 632.63018 -10573.321 0 401.17328 -4.534054e-05 -5.9913299e-05 + 74990 -6244.6069 -6252.9122 8.3053324 3686.5561 633.54034 -10573.009 0 398.03813 4.8869742e-05 2.85379e-05 + 75000 -6244.7299 -6252.7526 8.0226571 3687.7293 633.21898 -10573.701 0 384.49074 -3.8152974e-05 -6.3706821e-05 + 75010 -6244.948 -6252.3958 7.4478089 3690.9002 631.91798 -10575.214 0 356.94079 -0.000273767 -0.00029869064 + 75020 -6245.2327 -6251.9294 6.6966685 3694.9456 630.0756 -10576.951 0 320.94193 -0.00058296593 -0.00060224797 + 75030 -6245.5096 -6251.5385 6.028978 3698.4087 628.17723 -10578.124 0 288.94246 -0.00087412325 -0.00088894412 + 75040 -6245.7232 -6251.3768 5.6536711 3700.0506 626.63101 -10578.058 0 270.95564 -0.0010724233 -0.0010891004 + 75050 -6245.8828 -6251.4615 5.578686 3699.2859 625.67482 -10576.422 0 267.36194 -0.0011444362 -0.0011682177 + 75060 -6246.0467 -6251.6875 5.6408839 3696.3086 625.3278 -10573.324 0 270.34281 -0.0011028848 -0.0011328861 + 75070 -6246.2664 -6251.933 5.6665661 3691.9094 625.40318 -10569.246 0 271.57364 -0.00099299871 -0.001022859 + 75080 -6246.5444 -6252.1528 5.6083782 3687.1395 625.58919 -10564.881 0 268.78495 -0.00087062181 -0.00089384668 + 75090 -6246.8361 -6252.3889 5.5527687 3682.9953 625.57711 -10560.961 0 266.11983 -0.00078294606 -0.00079811309 + 75100 -6247.0903 -6252.7033 5.6130091 3680.222 625.1879 -10558.113 0 269.00689 -0.00075763156 -0.00076932047 + 75110 -6247.2901 -6253.098 5.8078704 3679.2335 624.44401 -10556.775 0 278.34574 -0.0008001273 -0.00081517778 + 75120 -6247.4648 -6253.489 6.0242072 3680.0913 623.55589 -10557.136 0 288.71381 -0.00089616506 -0.00091842958 + 75130 -6247.6647 -6253.7535 6.0887466 3682.5035 622.83227 -10559.089 0 291.8069 -0.0010171143 -0.0010447227 + 75140 -6247.9197 -6253.81 5.890318 3685.86 622.55743 -10562.227 0 282.29709 -0.0011275193 -0.0011545054 + 75150 -6248.2147 -6253.6749 5.4601921 3689.3522 622.89003 -10565.917 0 261.68304 -0.0011942746 -0.0012151124 + 75160 -6248.4994 -6253.4521 4.9527363 3692.185 623.82028 -10569.457 0 237.36291 -0.0011958076 -0.0012093754 + 75170 -6248.7242 -6253.2664 4.5422224 3693.8163 625.18997 -10572.273 0 217.68878 -0.0011287536 -0.0011388063 + 75180 -6248.8737 -6253.187 4.313356 3694.1111 626.7525 -10574.051 0 206.72022 -0.0010094967 -0.0010214424 + 75190 -6248.9733 -6253.1983 4.2249583 3693.3316 628.24222 -10574.772 0 202.48371 -0.0008690416 -0.00088560826 + 75200 -6249.0671 -6253.2347 4.1676509 3691.9738 629.43113 -10574.64 0 199.73721 -0.0007422683 -0.00076138678 + 75210 -6249.1822 -6253.2511 4.068844 3690.5445 630.16383 -10573.959 0 195.00183 -0.00065575112 -0.00067233625 + 75220 -6249.3067 -6253.2719 3.9651909 3689.3929 630.36951 -10573.034 0 190.0342 -0.00062009113 -0.00063053899 + 75230 -6249.3963 -6253.3747 3.9783637 3688.6725 630.05509 -10572.102 0 190.66551 -0.00063116896 -0.00063700428 + 75240 -6249.4112 -6253.6097 4.1985193 3688.4176 629.28635 -10571.314 0 201.2166 -0.00067927359 -0.00068645864 + 75250 -6249.354 -6253.9235 4.5694712 3688.6333 628.1648 -10570.722 0 218.9947 -0.00075881316 -0.00077266242 + 75260 -6249.2717 -6254.1668 4.8951391 3689.2915 626.80593 -10570.264 0 234.60253 -0.00087015776 -0.00089025585 + 75270 -6249.2122 -6254.2003 4.9881277 3690.2266 625.32473 -10569.752 0 239.05907 -0.001011864 -0.0010321872 + 75280 -6249.1741 -6254.0053 4.8312802 3691.0533 623.83467 -10568.893 0 231.54206 -0.0011708512 -0.0011855204 + 75290 -6249.1011 -6253.6931 4.5919265 3691.2386 622.4608 -10567.392 0 220.07088 -0.0013204601 -0.0013296864 + 75300 -6248.929 -6253.4031 4.4740626 3690.3238 621.35465 -10565.082 0 214.42218 -0.0014287493 -0.0014391537 + 75310 -6248.6368 -6253.1906 4.5537456 3688.1505 620.69218 -10562.033 0 218.24104 -0.0014702448 -0.0014892601 + 75320 -6248.2594 -6253.0015 4.7421904 3684.948 620.64283 -10558.592 0 227.27237 -0.0014330762 -0.0014624755 + 75330 -6247.8561 -6252.7474 4.8913292 3681.2579 621.31426 -10555.32 0 234.41994 -0.0013193432 -0.0013533003 + 75340 -6247.4623 -6252.4065 4.9441351 3677.7784 622.69131 -10552.876 0 236.95069 -0.0011424048 -0.0011716431 + 75350 -6247.0574 -6252.0678 5.0103356 3675.232 624.59503 -10551.895 0 240.12339 -0.00092587507 -0.00094488867 + 75360 -6246.5739 -6251.8788 5.3049265 3674.2924 626.68653 -10552.858 0 254.24184 -0.0007054532 -0.00071743429 + 75370 -6245.9517 -6251.9333 5.9816003 3675.5261 628.53042 -10555.99 0 286.67185 -0.00052925593 -0.00054461181 + 75380 -6245.2076 -6252.183 6.9753609 3679.2592 629.71471 -10561.157 0 334.29844 -0.00044964311 -0.00047831506 + 75390 -6244.4594 -6252.4479 7.9885351 3685.3309 629.99651 -10567.775 0 382.85543 -0.00050335902 -0.00054627655 + 75400 -6243.8608 -6252.5326 8.67177 3692.8352 629.41439 -10574.782 0 415.59987 -0.0006867538 -0.00073385754 + 75410 -6243.4882 -6252.37 8.8818084 3700.0741 628.30442 -10580.748 0 425.66609 -0.00094222923 -0.00098012902 + 75420 -6243.285 -6252.0684 8.7834582 3704.9279 627.19629 -10584.193 0 420.9526 -0.0011709829 -0.0011944068 + 75430 -6243.1268 -6251.8004 8.673525 3705.6138 626.62557 -10584.04 0 415.68399 -0.0012722342 -0.0012886102 + 75440 -6242.9433 -6251.6258 8.6825232 3701.4841 626.93274 -10580.043 0 416.11523 -0.0011901064 -0.0012124859 + 75450 -6242.7757 -6251.4279 8.6521639 3693.3998 628.11715 -10572.945 0 414.66024 -0.00094205256 -0.00097698698 + 75460 -6242.7203 -6251.03 8.3096847 3683.4572 629.79633 -10564.283 0 398.24672 -0.0006136254 -0.00065534905 + 75470 -6242.8209 -6250.3838 7.5629082 3674.2375 631.29883 -10555.92 0 362.45699 -0.00032422257 -0.00036002477 + 75480 -6243.017 -6249.6584 6.6414461 3667.9738 631.87767 -10549.51 0 318.29536 -0.00018267378 -0.00020412054 + 75490 -6243.187 -6249.1569 5.9698296 3665.9665 630.98003 -10546.103 0 286.10773 -0.00025247515 -0.00026276075 + 75500 -6243.2409 -6249.1246 5.8837346 3668.3705 628.47631 -10545.971 0 281.98157 -0.00053636003 -0.00054795099 + 75510 -6243.1876 -6249.5901 6.4025284 3674.2788 624.76179 -10548.631 0 306.84509 -0.0009781528 -0.0010026378 + 75520 -6243.1329 -6250.3541 7.2212135 3681.9686 620.68363 -10553.006 0 346.08107 -0.001475347 -0.0015134718 + 75530 -6243.2031 -6251.142 7.9388784 3689.2432 617.29987 -10557.685 0 380.4756 -0.0018995019 -0.0019399891 + 75540 -6243.4437 -6251.798 8.3543367 3693.9108 615.54241 -10561.251 0 400.38669 -0.002126495 -0.0021557069 + 75550 -6243.786 -6252.3509 8.5649171 3694.4253 615.90948 -10562.686 0 410.47888 -0.002076026 -0.0020903893 + 75560 -6244.1236 -6252.8929 8.7693003 3690.5238 618.30818 -10561.725 0 420.27407 -0.00174794 -0.0017573922 + 75570 -6244.4223 -6253.4107 8.9883729 3683.5024 622.09527 -10559.008 0 430.77326 -0.0012338138 -0.0012530399 + 75580 -6244.7473 -6253.749 9.0016835 3675.84 626.28558 -10555.875 0 431.41118 -0.00069001623 -0.00072608203 + 75590 -6245.1863 -6253.7327 8.5463864 3670.2582 629.85472 -10553.846 0 409.59079 -0.00028046441 -0.00032775784 + 75600 -6245.7518 -6253.3156 7.5638385 3668.6672 632.04297 -10554.026 0 362.50158 -0.00011596333 -0.00016144344 + 75610 -6246.3585 -6252.6346 6.27615 3671.5044 632.55809 -10556.697 0 300.78832 -0.00021862083 -0.00025175373 + 75620 -6246.8826 -6251.9413 5.0586219 3677.7176 631.6065 -10561.265 0 242.43754 -0.00052464346 -0.00054420145 + 75630 -6247.2422 -6251.4692 4.2270347 3685.2985 629.7572 -10566.525 0 202.58322 -0.00091842601 -0.00093203111 + 75640 -6247.4366 -6251.3191 3.8825442 3692.0493 627.71054 -10571.079 0 186.0733 -0.0012784393 -0.0012960722 + 75650 -6247.5339 -6251.4324 3.8984515 3696.246 626.06249 -10573.741 0 186.83567 -0.0015154489 -0.0015418926 + 75660 -6247.6209 -6251.6695 4.0486246 3697.0015 625.13423 -10573.805 0 194.03281 -0.0015917541 -0.0016234953 + 75670 -6247.7463 -6251.9323 4.1859731 3694.3147 624.90904 -10571.156 0 200.61532 -0.001520502 -0.0015493195 + 75680 -6247.8942 -6252.2283 4.3341064 3688.9216 625.08802 -10566.238 0 207.7147 -0.0013518735 -0.001371988 + 75690 -6248.0067 -6252.6268 4.6201645 3682.0705 625.24025 -10559.938 0 221.42421 -0.0011545809 -0.0011672784 + 75700 -6248.039 -6253.1532 5.1141825 3675.2672 624.98852 -10553.409 0 245.10032 -0.00099749407 -0.0010094949 + 75710 -6248.0002 -6253.7213 5.7211696 3669.9702 624.15952 -10547.851 0 274.19055 -0.00093257395 -0.00094996986 + 75720 -6247.9464 -6254.1658 6.2194229 3667.2466 622.84461 -10544.257 0 298.06964 -0.00098080305 -0.0010039912 + 75730 -6247.9358 -6254.3437 6.4078462 3667.4871 621.35578 -10543.187 0 307.09995 -0.0011257904 -0.0011495077 + 75740 -6247.9822 -6254.2203 6.238111 3670.3165 620.10345 -10544.64 0 298.96528 -0.0013197936 -0.0013377979 + 75750 -6248.0464 -6253.8797 5.8332914 3674.7664 619.45055 -10548.097 0 279.56405 -0.0015016256 -0.0015119769 + 75760 -6248.0691 -6253.4613 5.3922375 3679.6391 619.59957 -10552.7 0 258.42627 -0.0016191061 -0.0016259811 + 75770 -6248.0153 -6253.0732 5.0579065 3683.8945 620.54887 -10557.517 0 242.40326 -0.0016460213 -0.0016568323 + 75780 -6247.8996 -6252.7418 4.8421422 3686.8911 622.12169 -10561.755 0 232.06262 -0.001586539 -0.0016065234 + 75790 -6247.7737 -6252.4291 4.6553963 3688.4035 624.04384 -10564.876 0 223.11271 -0.00146634 -0.0014946164 + 75800 -6247.6869 -6252.1016 4.4146395 3688.4744 626.03235 -10566.608 0 211.5743 -0.0013162645 -0.001346368 + 75810 -6247.6483 -6251.7921 4.1437186 3687.2473 627.86088 -10566.9 0 198.59024 -0.0011579749 -0.0011825867 + 75820 -6247.6177 -6251.603 3.9852218 3684.9114 629.38254 -10565.897 0 190.99419 -0.00099966746 -0.001016063 + 75830 -6247.5327 -6251.6423 4.109519 3681.7829 630.51155 -10563.937 0 196.95121 -0.00084358159 -0.00085570032 + 75840 -6247.3535 -6251.9365 4.5830443 3678.4208 631.18221 -10561.539 0 219.6452 -0.00069948162 -0.00071493145 + 75850 -6247.095 -6252.3883 5.2933216 3675.6289 631.31204 -10559.329 0 253.68567 -0.00059386004 -0.00061796968 + 75860 -6246.821 -6252.8202 5.9992111 3674.2582 630.79309 -10557.872 0 287.51586 -0.00056637703 -0.00059801616 + 75870 -6246.5964 -6253.0791 6.4827065 3674.8663 629.5249 -10557.47 0 310.68767 -0.0006531963 -0.00068606418 + 75880 -6246.4393 -6253.1193 6.6800137 3677.4165 627.4841 -10558.02 0 320.14374 -0.00086666717 -0.00089500038 + 75890 -6246.3176 -6252.9929 6.6753098 3681.1985 624.80287 -10558.994 0 319.9183 -0.0011837274 -0.0012070175 + 75900 -6246.1935 -6252.7706 6.5770874 3685.0092 621.81415 -10559.594 0 315.21093 -0.0015481899 -0.0015705077 + 75910 -6246.065 -6252.4826 6.4175828 3687.4933 619.02821 -10559.004 0 307.56658 -0.0018828352 -0.0019080058 + 75920 -6245.9602 -6252.1341 6.1739017 3687.5103 617.03063 -10556.675 0 295.88801 -0.002105692 -0.0021335608 + 75930 -6245.9009 -6251.7613 5.8604123 3684.4619 616.32363 -10552.547 0 280.86384 -0.0021493867 -0.0021765226 + 75940 -6245.8781 -6251.4487 5.5706865 3678.544 617.15746 -10547.15 0 266.97856 -0.0019832345 -0.0020064407 + 75950 -6245.8618 -6251.2887 5.4268758 3670.8512 619.40961 -10541.549 0 260.08634 -0.0016316249 -0.0016504391 + 75960 -6245.8256 -6251.3285 5.502949 3663.2348 622.56455 -10537.128 0 263.7322 -0.0011773648 -0.0011938765 + 75970 -6245.7595 -6251.5542 5.7946597 3657.8812 625.82366 -10535.259 0 277.71261 -0.00074299914 -0.00076021856 + 75980 -6245.6698 -6251.907 6.2371237 3656.6952 628.33268 -10536.935 0 298.91796 -0.00045440469 -0.00047487508 + 75990 -6245.5736 -6252.2999 6.7262085 3660.6748 629.46007 -10542.435 0 322.35765 -0.00040010179 -0.0004250437 + 76000 -6245.4973 -6252.625 7.127762 3669.4794 629.02239 -10551.127 0 341.60235 -0.00060084968 -0.00062941034 + 76010 -6245.4683 -6252.7738 7.3054966 3681.3525 627.35935 -10561.486 0 350.12039 -0.00099902999 -0.0010281027 + 76020 -6245.4962 -6252.6842 7.1879817 3693.4689 625.21737 -10571.37 0 344.48841 -0.0014715233 -0.0014972979 + 76030 -6245.5565 -6252.3874 6.8308634 3702.664 623.48392 -10578.535 0 327.3733 -0.0018648163 -0.0018858704 + 76040 -6245.6007 -6251.9997 6.3990685 3706.3588 622.87938 -10581.238 0 306.67927 -0.00204432 -0.0020637233 + 76050 -6245.5932 -6251.6501 6.0569746 3703.3817 623.72143 -10578.753 0 290.28421 -0.0019417562 -0.0019654863 + 76060 -6245.5431 -6251.3993 5.8561983 3694.3749 625.82856 -10571.603 0 280.66188 -0.0015813329 -0.0016135034 + 76070 -6245.4966 -6251.2264 5.7297387 3681.6165 628.57176 -10561.415 0 274.60123 -0.0010726002 -0.0011116272 + 76080 -6245.4945 -6251.0925 5.5980217 3668.3227 631.05085 -10550.466 0 268.28861 -0.00057285844 -0.00061242129 + 76090 -6245.5338 -6251.0078 5.4739797 3657.7073 632.35439 -10541.069 0 262.34382 -0.00023575095 -0.00026986917 + 76100 -6245.5717 -6251.0312 5.4594992 3652.1357 631.83869 -10535.006 0 261.64983 -0.00016623919 -0.00019376169 + 76110 -6245.5644 -6251.2104 5.6459975 3652.5974 629.34218 -10533.15 0 270.58788 -0.00039463969 -0.00041925448 + 76120 -6245.5031 -6251.5289 6.0257732 3658.5598 625.26227 -10535.351 0 288.78886 -0.00087195779 -0.00089827897 + 76130 -6245.4161 -6251.9143 6.498221 3668.1658 620.46393 -10540.544 0 311.43121 -0.001483393 -0.0015131283 + 76140 -6245.3397 -6252.2939 6.9541386 3678.7163 616.04546 -10547.056 0 333.28134 -0.0020767101 -0.0021082899 + 76150 -6245.291 -6252.6325 7.3414998 3687.3619 613.03746 -10553.032 0 351.84586 -0.0025016059 -0.0025327777 + 76160 -6245.2698 -6252.9116 7.6417576 3691.8683 612.13189 -10556.912 0 366.2359 -0.0026515663 -0.0026814187 + 76170 -6245.2809 -6253.0827 7.8017715 3691.2285 613.51831 -10557.83 0 373.90467 -0.0024943252 -0.0025226024 + 76180 -6245.3393 -6253.0699 7.7306485 3685.9029 616.85836 -10555.831 0 370.49605 -0.0020785648 -0.0021041878 + 76190 -6245.4476 -6252.8302 7.3826389 3677.6138 621.38996 -10551.834 0 353.81748 -0.0015152432 -0.0015369844 + 76200 -6245.5798 -6252.4008 6.8210177 3668.8099 626.12842 -10547.339 0 326.90144 -0.00094384483 -0.00096258771 + 76210 -6245.6995 -6251.8765 6.1770607 3661.9974 630.11315 -10543.987 0 296.03941 -0.00049683331 -0.00051602776 + 76220 -6245.7928 -6251.3472 5.5543457 3659.0984 632.6357 -10543.081 0 266.19541 -0.00026991462 -0.00029286687 + 76230 -6245.878 -6250.8677 4.9897427 3660.9555 633.38929 -10545.213 0 239.13647 -0.00030083977 -0.00032748525 + 76240 -6245.9798 -6250.4833 4.5035729 3667.1017 632.50293 -10550.088 0 215.83648 -0.00056042462 -0.00058710692 + 76250 -6246.0987 -6250.2675 4.1687812 3675.8887 630.45574 -10556.612 0 199.79139 -0.00096116938 -0.00098396179 + 76260 -6246.2047 -6250.3168 4.1121513 3684.9675 627.90359 -10563.188 0 197.07736 -0.0013846872 -0.0014032847 + 76270 -6246.2614 -6250.6914 4.4299861 3691.9761 625.47911 -10568.147 0 212.30979 -0.0017198358 -0.0017383456 + 76280 -6246.2612 -6251.3475 5.0862699 3695.1925 623.62993 -10570.17 0 243.76259 -0.0018963378 -0.0019199821 + 76290 -6246.2385 -6252.1284 5.8899184 3693.936 622.53734 -10568.602 0 282.27794 -0.0019001049 -0.0019306056 + 76300 -6246.2486 -6252.8382 6.5895941 3688.6125 622.12494 -10563.576 0 315.81032 -0.0017661897 -0.0018000794 + 76310 -6246.3256 -6253.3435 7.0178714 3680.47 622.14087 -10555.954 0 336.33578 -0.0015570424 -0.0015886126 + 76320 -6246.4595 -6253.6215 7.1619269 3671.2233 622.27883 -10547.124 0 343.23972 -0.0013394002 -0.0013655594 + 76330 -6246.6133 -6253.7198 7.1065637 3662.687 622.29335 -10538.7 0 340.58641 -0.0011690205 -0.001191547 + 76340 -6246.7606 -6253.6809 6.9203283 3656.4628 622.06874 -10532.212 0 331.66096 -0.0010837791 -0.0011072049 + 76350 -6246.905 -6253.503 6.5980566 3653.6669 621.62365 -10528.794 0 316.21589 -0.0011009979 -0.0011284882 + 76360 -6247.0663 -6253.1648 6.0984812 3654.7166 621.06552 -10528.947 0 292.27344 -0.0012165018 -0.0012473819 + 76370 -6247.254 -6252.6766 5.4225813 3659.2378 620.53104 -10532.445 0 259.88052 -0.0014059827 -0.0014364881 + 76380 -6247.4528 -6252.1134 4.6606174 3666.148 620.14561 -10538.407 0 223.36294 -0.0016295654 -0.0016557651 + 76390 -6247.6287 -6251.6065 3.9778171 3673.9084 620.01238 -10545.527 0 190.63932 -0.0018390815 -0.0018598204 + 76400 -6247.7477 -6251.2949 3.5471463 3680.883 620.21972 -10552.398 0 169.99915 -0.0019869809 -0.0020048917 + 76410 -6247.7972 -6251.2582 3.4610312 3685.7083 620.84756 -10557.814 0 165.87203 -0.0020357041 -0.0020553636 + 76420 -6247.7955 -6251.4723 3.6767691 3687.5757 621.95652 -10561.005 0 176.2114 -0.0019655309 -0.0019897699 + 76430 -6247.781 -6251.8273 4.0463047 3686.3556 623.55444 -10561.737 0 193.92163 -0.0017786371 -0.0018058959 + 76440 -6247.7819 -6252.2029 4.4209934 3682.5577 625.54964 -10560.31 0 211.87881 -0.0014989275 -0.0015242223 + 76450 -6247.7914 -6252.5407 4.7492878 3677.1886 627.71396 -10557.443 0 227.61252 -0.0011695141 -0.001188567 + 76460 -6247.7687 -6252.852 5.0833899 3671.565 629.68293 -10554.1 0 243.62457 -0.00084926674 -0.00086235644 + 76470 -6247.6708 -6253.1619 5.4911785 3667.0975 631.01098 -10551.27 0 263.16808 -0.00060690373 -0.00061905223 + 76480 -6247.4888 -6253.4416 5.952739 3665.0139 631.27841 -10549.734 0 285.28865 -0.00050943567 -0.00052659407 + 76490 -6247.2598 -6253.5944 6.334584 3666.025 630.22276 -10549.842 0 303.58881 -0.00060401079 -0.00062827991 + 76500 -6247.0408 -6253.5145 6.473752 3670.015 627.8502 -10551.38 0 310.25852 -0.00089742792 -0.00092536554 + 76510 -6246.8628 -6253.1745 6.3116878 3675.911 624.48354 -10553.569 0 302.4915 -0.0013426468 -0.0013684068 + 76520 -6246.7037 -6252.6674 5.963756 3681.8735 620.72282 -10555.264 0 285.81665 -0.001842304 -0.0018632288 + 76530 -6246.506 -6252.1573 5.6513176 3685.8135 617.32362 -10555.294 0 270.84285 -0.0022726871 -0.0022924422 + 76540 -6246.2284 -6251.7683 5.5398281 3686.0699 615.02348 -10552.862 0 265.49965 -0.002520631 -0.0025466416 + 76550 -6245.8855 -6251.5043 5.6188181 3681.9772 614.35639 -10547.838 0 269.28529 -0.0025183353 -0.0025552215 + 76560 -6245.5389 -6251.2741 5.7351659 3674.1028 615.49738 -10540.874 0 274.86133 -0.0022627446 -0.0023074499 + 76570 -6245.244 -6251.0016 5.7575648 3664.1043 618.18249 -10533.288 0 275.93481 -0.0018147921 -0.0018581737 + 76580 -6244.9949 -6250.721 5.7260674 3654.3137 621.74435 -10526.779 0 274.42528 -0.0012825632 -0.0013166996 + 76590 -6244.7183 -6250.5657 5.8473438 3647.2123 625.27483 -10523.053 0 280.23752 -0.00079599669 -0.00082126578 + 76600 -6244.3267 -6250.6533 6.3266185 3644.9035 627.87768 -10523.435 0 303.20706 -0.00047887801 -0.00050460794 + 76610 -6243.7958 -6250.9581 7.1622245 3648.6153 628.93627 -10528.51 0 343.25399 -0.00042039273 -0.00045771036 + 76620 -6243.2077 -6251.2812 8.0735019 3658.2592 628.31002 -10537.85 0 386.92751 -0.00064795695 -0.0006998456 + 76630 -6242.7075 -6251.3688 8.6612542 3672.1583 626.38936 -10549.916 0 415.0959 -0.0011075275 -0.0011646656 + 76640 -6242.3889 -6251.1046 8.7157421 3687.1719 623.9806 -10562.257 0 417.70727 -0.0016641127 -0.0017117428 + 76650 -6242.2106 -6250.6124 8.4017083 3699.4097 622.05464 -10572.077 0 402.657 -0.0021346867 -0.0021657079 + 76660 -6242.0428 -6250.1515 8.1087478 3705.4398 621.44205 -10577.033 0 388.61669 -0.0023504501 -0.002372303 + 76670 -6241.7996 -6249.8944 8.0947797 3703.512 622.56091 -10575.967 0 387.94726 -0.0022231472 -0.0022511675 + 76680 -6241.521 -6249.8063 8.2853711 3694.1929 625.24688 -10569.246 0 397.08147 -0.0017817631 -0.0018254033 + 76690 -6241.326 -6249.7386 8.4125494 3680.1177 628.75031 -10558.607 0 403.17657 -0.0011612888 -0.0012163812 + 76700 -6241.2992 -6249.6121 8.3128553 3665.0483 631.94171 -10546.602 0 398.39867 -0.0005516452 -0.0006048998 + 76710 -6241.4217 -6249.5042 8.0824896 3652.6963 633.68414 -10535.885 0 387.35825 -0.00013259869 -0.00017291949 + 76720 -6241.5992 -6249.5788 7.9796674 3645.7458 633.23225 -10528.557 0 382.43044 -2.0748079e-05 -4.7503849e-05 + 76730 -6241.7437 -6249.9422 8.198495 3645.3095 630.49244 -10525.744 0 392.91788 -0.00024291561 -0.0002656817 + 76740 -6241.8444 -6250.5421 8.6977431 3650.8515 626.04718 -10527.441 0 416.84465 -0.00073783188 -0.00076890829 + 76750 -6241.9819 -6251.1701 9.1882642 3660.4827 620.95101 -10532.604 0 440.35317 -0.0013803925 -0.0014254828 + 76760 -6242.2763 -6251.5689 9.2926002 3671.4877 616.38862 -10539.445 0 445.35354 -0.0020182818 -0.0020717047 + 76770 -6242.7896 -6251.5957 8.806154 3680.9632 613.32557 -10545.885 0 422.04031 -0.0025091652 -0.0025579688 + 76780 -6243.4559 -6251.3341 7.8781308 3686.4918 612.27407 -10550.1 0 377.56423 -0.0027507923 -0.0027857529 + 76790 -6244.1226 -6251.0404 6.9177602 3686.7757 613.23688 -10551.053 0 331.53789 -0.0027025221 -0.0027265539 + 76800 -6244.6744 -6250.9405 6.2660919 3682.045 615.80379 -10548.789 0 300.30628 -0.0023959053 -0.0024212901 + 76810 -6245.1158 -6251.0568 5.9409406 3673.9933 619.31895 -10544.369 0 284.72321 -0.0019266493 -0.0019634848 + 76820 -6245.534 -6251.2288 5.6948074 3665.1722 623.05015 -10539.451 0 272.92712 -0.0014240292 -0.0014711401 + 76830 -6245.9946 -6251.2922 5.2976069 3658.1035 626.33349 -10535.729 0 253.89105 -0.0010079309 -0.0010543372 + 76840 -6246.4771 -6251.2399 4.7627948 3654.5294 628.68424 -10534.454 0 228.25985 -0.00075393295 -0.00078863898 + 76850 -6246.896 -6251.2311 4.3350393 3655.0856 629.85902 -10536.176 0 207.75941 -0.00068213397 -0.00070332552 + 76860 -6247.1725 -6251.4534 4.2809294 3659.4044 629.86004 -10540.718 0 205.16616 -0.00076964255 -0.00078597535 + 76870 -6247.2947 -6251.9573 4.6626172 3666.4405 628.89105 -10547.289 0 223.45878 -0.00097300408 -0.00099640389 + 76880 -6247.3309 -6252.5976 5.266624 3674.7832 627.28591 -10554.667 0 252.40617 -0.0012448328 -0.0012806408 + 76890 -6247.3854 -6253.1309 5.7455607 3682.8527 625.42752 -10561.411 0 275.35951 -0.001537804 -0.00158018 + 76900 -6247.5207 -6253.3918 5.871082 3689.0389 623.6709 -10566.102 0 281.37519 -0.0018013937 -0.0018380016 + 76910 -6247.7081 -6253.402 5.6939289 3691.9147 622.28523 -10567.602 0 272.88502 -0.0019830707 -0.0020054461 + 76920 -6247.8537 -6253.3219 5.4682588 3690.5834 621.4271 -10565.332 0 262.06964 -0.0020407456 -0.0020514993 + 76930 -6247.8824 -6253.285 5.4026577 3685.0503 621.14281 -10559.478 0 258.92567 -0.0019611257 -0.0019715482 + 76940 -6247.8044 -6253.2725 5.4681152 3676.3826 621.38107 -10551.036 0 262.06276 -0.001770315 -0.0017905847 + 76950 -6247.7021 -6253.1463 5.4442519 3666.4826 621.99963 -10541.629 0 260.9191 -0.0015268697 -0.0015579115 + 76960 -6247.6542 -6252.8018 5.1475835 3657.5372 622.7716 -10533.111 0 246.70109 -0.0013007802 -0.0013347939 + 76970 -6247.6728 -6252.2818 4.6090494 3651.4162 623.41392 -10527.112 0 220.89151 -0.0011517861 -0.0011797603 + 76980 -6247.7067 -6251.7546 4.0479517 3649.2702 623.64969 -10524.675 0 194.00056 -0.0011173715 -0.0011360756 + 76990 -6247.6915 -6251.3994 3.7078733 3651.3861 623.29119 -10526.077 0 177.70209 -0.0012099122 -0.0012231969 + 77000 -6247.5922 -6251.3062 3.7140199 3657.2222 622.31529 -10530.844 0 177.99667 -0.0014167306 -0.0014318497 + 77010 -6247.4152 -6251.447 4.0318071 3665.54 620.90435 -10537.891 0 193.22682 -0.001700084 -0.0017226824 + 77020 -6247.1973 -6251.7077 4.5104575 3674.6097 619.43257 -10545.75 0 216.16643 -0.0019993605 -0.0020301126 + 77030 -6246.9825 -6251.9556 4.9731056 3682.495 618.3881 -10552.839 0 238.33913 -0.0022389771 -0.0022734132 + 77040 -6246.7936 -6252.1098 5.3161993 3687.417 618.24066 -10557.767 0 254.7821 -0.0023433745 -0.0023750917 + 77050 -6246.6135 -6252.1762 5.5627537 3688.1699 619.29054 -10559.637 0 266.59837 -0.0022576335 -0.0022831043 + 77060 -6246.3978 -6252.2187 5.820892 3684.5058 621.54927 -10558.274 0 278.96981 -0.0019689556 -0.0019904098 + 77070 -6246.1138 -6252.2833 6.169498 3677.3445 624.69381 -10554.322 0 295.67696 -0.001520836 -0.001544575 + 77080 -6245.7753 -6252.3419 6.566528 3668.6473 628.11246 -10549.102 0 314.70487 -0.0010110176 -0.0010421592 + 77090 -6245.4415 -6252.3076 6.8661724 3660.9049 631.03579 -10544.248 0 329.06551 -0.00056894918 -0.00060688794 + 77100 -6245.173 -6252.1111 6.9380356 3656.3748 632.72646 -10541.212 0 332.50959 -0.00031752056 -0.00035612061 + 77110 -6244.9849 -6251.7698 6.7849934 3656.356 632.68429 -10540.81 0 325.17495 -0.00033280831 -0.00036534388 + 77120 -6244.8363 -6251.3866 6.5503647 3660.7892 630.80943 -10542.985 0 313.93023 -0.00061832744 -0.00064289267 + 77130 -6244.6677 -6251.0771 6.4093825 3668.3107 627.46665 -10546.854 0 307.17357 -0.0011035794 -0.0011244002 + 77140 -6244.4476 -6250.8949 6.4472726 3676.6879 623.41642 -10550.999 0 308.98948 -0.0016651983 -0.0016891823 + 77150 -6244.1915 -6250.8121 6.6205683 3683.4623 619.62161 -10553.896 0 317.29478 -0.0021613642 -0.0021930176 + 77160 -6243.9472 -6250.7576 6.8104738 3686.6158 616.98273 -10554.356 0 326.39612 -0.0024690503 -0.0025073994 + 77170 -6243.7596 -6250.6763 6.916645 3685.1003 616.08149 -10551.858 0 331.48444 -0.0025152661 -0.0025545981 + 77180 -6243.6386 -6250.5707 6.9321617 3679.1052 617.0136 -10546.69 0 332.22808 -0.0022953289 -0.0023292786 + 77190 -6243.5497 -6250.4981 6.9484113 3670.0179 619.36848 -10539.885 0 333.00686 -0.0018741833 -0.0019004678 + 77200 -6243.4416 -6250.514 7.0724539 3660.1103 622.36607 -10532.99 0 338.95167 -0.001370528 -0.0013926152 + 77210 -6243.2898 -6250.6055 7.315724 3652.0035 625.10451 -10527.714 0 350.61054 -0.0009263508 -0.00095042676 + 77220 -6243.1189 -6250.6798 7.560966 3647.9787 626.83312 -10525.492 0 362.36391 -0.00066726646 -0.00069708502 + 77230 -6242.9794 -6250.6312 7.6518069 3649.2818 627.16381 -10527.077 0 366.71752 -0.00066371376 -0.0006979876 + 77240 -6242.9036 -6250.4287 7.5251343 3655.6741 626.16417 -10532.267 0 360.64666 -0.00090699296 -0.0009413659 + 77250 -6242.8815 -6250.146 7.2644942 3665.454 624.31424 -10539.914 0 348.15532 -0.001311255 -0.0013424877 + 77260 -6242.8759 -6249.9156 7.0397505 3675.9786 622.34435 -10548.239 0 337.38434 -0.0017420095 -0.0017705988 + 77270 -6242.8542 -6249.8513 6.9970992 3684.4823 621.00215 -10555.336 0 335.34025 -0.0020605728 -0.0020901457 + 77280 -6242.8154 -6249.9886 7.1732683 3688.8922 620.81979 -10559.701 0 343.78327 -0.002168591 -0.0022028574 + 77290 -6242.7951 -6250.2702 7.4751145 3688.3793 621.95235 -10560.602 0 358.24943 -0.0020374376 -0.0020767744 + 77300 -6242.8468 -6250.5907 7.7438365 3683.488 624.13327 -10558.212 0 371.1281 -0.0017126789 -0.0017530746 + 77310 -6243.0049 -6250.8746 7.8696996 3675.8499 626.7564 -10553.481 0 377.16016 -0.0012939844 -0.0013298981 + 77320 -6243.2627 -6251.1202 7.8575698 3667.6358 629.06197 -10547.818 0 376.57883 -0.00090115441 -0.00093025498 + 77330 -6243.5897 -6251.3664 7.7767502 3660.9556 630.37401 -10542.696 0 372.70551 -0.00063974407 -0.00066508707 + 77340 -6243.9704 -6251.6214 7.6509723 3657.3504 630.31225 -10539.284 0 366.67752 -0.00057505691 -0.00060241394 + 77350 -6244.4196 -6251.8277 7.4081536 3657.4528 628.9016 -10538.182 0 355.04029 -0.00071817303 -0.00075085921 + 77360 -6244.9546 -6251.9002 6.9456262 3660.8675 626.53661 -10539.304 0 332.87338 -0.0010257673 -0.0010616793 + 77370 -6245.5536 -6251.8039 6.2502559 3666.3224 623.82092 -10541.947 0 299.54733 -0.0014142702 -0.0014478337 + 77380 -6246.1474 -6251.6007 5.4532976 3672.0796 621.35888 -10545.039 0 261.35262 -0.001785638 -0.0018127692 + 77390 -6246.6592 -6251.4171 4.7578627 3676.4889 619.58903 -10547.495 0 228.02348 -0.0020569757 -0.0020783178 + 77400 -6247.0526 -6251.3576 4.3049339 3678.4756 618.70896 -10548.542 0 206.31659 -0.0021830591 -0.0022027229 + 77410 -6247.3435 -6251.4446 4.1011302 3677.7754 618.68541 -10547.905 0 196.54917 -0.0021633898 -0.0021849968 + 77420 -6247.5746 -6251.6328 4.0581997 3674.8702 619.31773 -10545.821 0 194.4917 -0.002033057 -0.0020570296 + 77430 -6247.7804 -6251.8677 4.0873018 3670.7206 620.32536 -10542.914 0 195.88644 -0.0018441075 -0.001868239 + 77440 -6247.9686 -6252.1287 4.160158 3666.4463 621.43553 -10540.011 0 199.37811 -0.001646918 -0.0016690339 + 77450 -6248.1265 -6252.4251 4.2985302 3663.0621 622.4483 -10537.935 0 206.00969 -0.0014785767 -0.0014986599 + 77460 -6248.241 -6252.7582 4.517133 3661.3068 623.26265 -10537.328 0 216.48636 -0.0013600256 -0.001380097 + 77470 -6248.3154 -6253.0903 4.7748273 3661.5501 623.86255 -10538.503 0 228.83652 -0.0012990316 -0.0013210777 + 77480 -6248.3703 -6253.3491 4.9788201 3663.7558 624.27839 -10541.383 0 238.61299 -0.0012942531 -0.001318124 + 77490 -6248.4262 -6253.4706 5.0443697 3667.4925 624.54657 -10545.51 0 241.7545 -0.0013373981 -0.0013607188 + 77500 -6248.4841 -6253.4449 4.9607927 3672.007 624.68553 -10550.137 0 237.74902 -0.0014140415 -0.0014344168 + 77510 -6248.5218 -6253.323 4.8012215 3676.3756 624.69509 -10554.394 0 230.10147 -0.0015055886 -0.001523115 + 77520 -6248.5131 -6253.1753 4.6622947 3679.7093 624.57318 -10557.458 0 223.44332 -0.0015932104 -0.0016108092 + 77530 -6248.452 -6253.0383 4.5862715 3681.3498 624.3382 -10558.726 0 219.79986 -0.0016615894 -0.0016826241 + 77540 -6248.3593 -6252.8954 4.5361843 3680.9864 624.04408 -10557.926 0 217.3994 -0.0016998829 -0.0017251319 + 77550 -6248.2634 -6252.7099 4.4465821 3678.6731 623.77678 -10555.16 0 213.10516 -0.0017002556 -0.0017270999 + 77560 -6248.1738 -6252.4741 4.3002847 3674.7809 623.62744 -10550.882 0 206.09377 -0.0016575297 -0.0016822327 + 77570 -6248.0708 -6252.2259 4.1550795 3669.9451 623.64833 -10545.819 0 199.13473 -0.001573039 -0.0015940079 + 77580 -6247.9215 -6252.0175 4.0959503 3665.0183 623.80878 -10540.845 0 196.30092 -0.0014612083 -0.001480188 + 77590 -6247.7055 -6251.8714 4.1658681 3660.9829 623.97419 -10536.829 0 199.65177 -0.0013528881 -0.0013731969 + 77600 -6247.4257 -6251.7711 4.345463 3658.7683 623.92956 -10534.469 0 208.25897 -0.0012898205 -0.0013136207 + 77610 -6247.0971 -6251.69 4.5929867 3658.9888 623.45527 -10534.134 0 220.12169 -0.0013101161 -0.0013372746 + 77620 -6246.7303 -6251.6222 4.891967 3661.7014 622.43692 -10535.761 0 234.45051 -0.0014308315 -0.001459901 + 77630 -6246.3263 -6251.5813 5.2549718 3666.3022 620.9629 -10538.846 0 251.84773 -0.0016359174 -0.0016656612 + 77640 -6245.8859 -6251.5755 5.6896035 3671.6236 619.3549 -10542.554 0 272.67773 -0.0018751401 -0.0019050885 + 77650 -6245.4187 -6251.5941 6.1753503 3676.2173 618.09958 -10545.911 0 295.95744 -0.0020751243 -0.0021053648 + 77660 -6244.9419 -6251.6155 6.673643 3678.7579 617.69721 -10548.071 0 319.83842 -0.0021603851 -0.0021915707 + 77670 -6244.477 -6251.6145 7.137437 3678.4709 618.48451 -10548.57 0 342.06603 -0.002079612 -0.0021128907 + 77680 -6244.0546 -6251.553 7.4983495 3675.4422 620.49856 -10547.494 0 359.36298 -0.0018284343 -0.0018642738 + 77690 -6243.7101 -6251.3901 7.6800126 3670.649 623.42554 -10545.465 0 368.0693 -0.0014571663 -0.0014940868 + 77700 -6243.4586 -6251.1297 7.6710244 3665.6572 626.6528 -10543.44 0 367.63853 -0.0010573663 -0.0010930898 + 77710 -6243.2763 -6250.8501 7.5737117 3662.1191 629.42188 -10542.391 0 362.97476 -0.00073329997 -0.0007678416 + 77720 -6243.1241 -6250.6534 7.5293779 3661.2819 631.05024 -10542.986 0 360.85004 -0.00057149076 -0.00060800097 + 77730 -6242.9928 -6250.5735 7.580728 3663.6257 631.15163 -10545.351 0 363.31102 -0.00061704711 -0.00065832101 + 77740 -6242.9124 -6250.5521 7.6397295 3668.6632 629.76995 -10548.985 0 366.13871 -0.00085878534 -0.00090336397 + 77750 -6242.9091 -6250.5137 7.6046816 3674.9693 627.37079 -10552.854 0 364.45901 -0.0012266274 -0.0012696862 + 77760 -6242.9661 -6250.4403 7.4742078 3680.5514 624.69027 -10555.682 0 358.20598 -0.0016086638 -0.0016469068 + 77770 -6243.0385 -6250.3571 7.318538 3683.5171 622.49408 -10556.368 0 350.74541 -0.0018884725 -0.0019230832 + 77780 -6243.0988 -6250.2705 7.171653 3682.7586 621.32908 -10554.358 0 343.70585 -0.0019877429 -0.002022263 + 77790 -6243.1549 -6250.1541 6.9992249 3678.3258 621.35362 -10549.834 0 335.44213 -0.0018928075 -0.0019291557 + 77800 -6243.2273 -6249.9962 6.7689405 3671.372 622.30654 -10543.675 0 324.40561 -0.0016542344 -0.0016913694 + 77810 -6243.3194 -6249.8429 6.5235467 3663.765 623.62297 -10537.231 0 312.64496 -0.0013641069 -0.0014000621 + 77820 -6243.4114 -6249.7891 6.3777574 3657.5317 624.64769 -10531.969 0 305.65792 -0.0011234906 -0.0011582267 + 77830 -6243.4798 -6249.9206 6.4407771 3654.3016 624.86704 -10529.089 0 308.67818 -0.0010120403 -0.0010481983 + 77840 -6243.5261 -6250.247 6.72098 3654.8835 624.0843 -10529.215 0 322.10707 -0.0010668791 -0.0011073435 + 77850 -6243.5876 -6250.6807 7.093113 3659.0625 622.48663 -10532.23 0 339.94177 -0.0012728915 -0.001317077 + 77860 -6243.7124 -6251.0932 7.3808065 3665.6459 620.58248 -10537.322 0 353.72966 -0.0015649488 -0.0016078622 + 77870 -6243.9111 -6251.416 7.5048711 3672.7701 619.02814 -10543.214 0 359.67554 -0.0018441581 -0.0018805769 + 77880 -6244.1383 -6251.6836 7.545353 3678.4506 618.40438 -10548.539 0 361.61565 -0.0020093682 -0.0020398159 + 77890 -6244.3389 -6251.9573 7.6183994 3681.2522 619.0248 -10552.234 0 365.11645 -0.0019965202 -0.0020280212 + 77900 -6244.5157 -6252.2062 7.6905091 3680.7983 620.83737 -10553.842 0 368.57235 -0.001806811 -0.0018460992 + 77910 -6244.7324 -6252.3049 7.5724878 3677.8219 623.43984 -10553.567 0 362.91611 -0.0015048687 -0.0015510442 + 77920 -6245.0385 -6252.1678 7.1292897 3673.7311 626.19923 -10552.098 0 341.67557 -0.0011871745 -0.0012323916 + 77930 -6245.4074 -6251.8595 6.4521563 3669.9944 628.4445 -10550.298 0 309.22353 -0.00094241418 -0.00097969096 + 77940 -6245.7615 -6251.5476 5.7860998 3667.6923 629.67206 -10548.912 0 277.30237 -0.00082616214 -0.00085532874 + 77950 -6246.0448 -6251.3614 5.3166371 3667.3344 629.68785 -10548.384 0 254.80308 -0.00085439504 -0.00088068055 + 77960 -6246.2587 -6251.3109 5.0522412 3668.8437 628.63509 -10548.79 0 242.13174 -0.0010073583 -0.0010357438 + 77970 -6246.4405 -6251.3216 4.8811071 3671.6279 626.90959 -10549.859 0 233.93004 -0.0012375317 -0.0012689704 + 77980 -6246.6216 -6251.3226 4.7010126 3674.7426 625.00677 -10551.072 0 225.2989 -0.001481945 -0.0015139501 + 77990 -6246.8055 -6251.3037 4.4982417 3677.1557 623.36067 -10551.82 0 215.58098 -0.001679385 -0.0017090954 + 78000 -6246.9754 -6251.3116 4.3362878 3678.0551 622.22827 -10551.595 0 207.81924 -0.0017883316 -0.0018149267 + 78010 -6247.114 -6251.4081 4.2941279 3677.095 621.64953 -10550.153 0 205.7987 -0.0017983343 -0.0018232644 + 78020 -6247.2186 -6251.6285 4.4099707 3674.4923 621.48556 -10547.606 0 211.35054 -0.0017297366 -0.0017552556 + 78030 -6247.3028 -6251.9622 4.6594236 3670.9425 621.51152 -10544.416 0 223.30572 -0.001622401 -0.0016497739 + 78040 -6247.3888 -6252.3596 4.970818 3667.39 621.52419 -10541.274 0 238.22949 -0.0015190964 -0.001547746 + 78050 -6247.4942 -6252.7572 5.2629988 3664.7397 621.42079 -10538.918 0 252.23243 -0.0014508912 -0.0014790432 + 78060 -6247.6247 -6253.1014 5.4766963 3663.6156 621.22172 -10537.939 0 262.47402 -0.0014300179 -0.0014562391 + 78070 -6247.7776 -6253.3554 5.5777679 3664.2422 621.03716 -10538.635 0 267.31794 -0.0014513163 -0.0014755626 + 78080 -6247.951 -6253.4943 5.5433164 3666.4525 621.00203 -10540.949 0 265.66682 -0.0014989955 -0.0015223746 + 78090 -6248.1473 -6253.506 5.3586996 3669.7719 621.21383 -10544.492 0 256.81895 -0.0015540387 -0.0015778259 + 78100 -6248.3679 -6253.397 5.0291193 3673.5362 621.70027 -10548.633 0 241.02361 -0.0015995331 -0.0016243706 + 78110 -6248.6075 -6253.1929 4.5853701 3677.0271 622.42257 -10552.643 0 219.75666 -0.0016235892 -0.0016491477 + 78120 -6248.8544 -6252.9326 4.0782394 3679.6085 623.2991 -10555.84 0 195.45212 -0.0016201249 -0.0016452008 + 78130 -6249.0916 -6252.6668 3.5752581 3680.8363 624.22898 -10557.732 0 171.34643 -0.0015879035 -0.0016111481 + 78140 -6249.2997 -6252.4579 3.1582774 3680.5288 625.10688 -10558.094 0 151.36237 -0.001529205 -0.0015503098 + 78150 -6249.4632 -6252.366 2.9027666 3678.8043 625.8341 -10557.004 0 139.11686 -0.0014498317 -0.0014701372 + 78160 -6249.5801 -6252.4197 2.8395882 3676.0799 626.33078 -10554.83 0 136.089 -0.0013603985 -0.0013820057 + 78170 -6249.6648 -6252.5978 2.9330374 3673.0058 626.54521 -10552.149 0 140.56761 -0.0012767534 -0.0013006631 + 78180 -6249.7382 -6252.8433 3.1051233 3670.3188 626.45292 -10549.615 0 148.81493 -0.0012175384 -0.0012425908 + 78190 -6249.8107 -6253.1013 3.2905299 3668.6524 626.04578 -10547.799 0 157.70066 -0.0011994201 -0.0012232155 + 78200 -6249.8736 -6253.3446 3.4710058 3668.3767 625.32312 -10547.044 0 166.35008 -0.001232658 -0.0012536222 + 78210 -6249.9064 -6253.5659 3.6594264 3669.5257 624.29761 -10547.389 0 175.38025 -0.001318979 -0.0013375739 + 78220 -6249.8942 -6253.7527 3.85842 3671.8094 623.01704 -10548.579 0 184.91714 -0.0014512088 -0.0014692814 + 78230 -6249.8367 -6253.8759 4.0392085 3674.677 621.58968 -10550.143 0 193.58153 -0.0016130121 -0.0016321056 + 78240 -6249.7452 -6253.9023 4.157084 3677.4112 620.196 -10551.51 0 199.23079 -0.0017785387 -0.0017986933 + 78250 -6249.6312 -6253.8171 4.1858574 3679.2556 619.07386 -10552.146 0 200.60977 -0.0019137486 -0.0019336684 + 78260 -6249.4955 -6253.6391 4.1436361 3679.5773 618.47511 -10551.692 0 198.58629 -0.0019816027 -0.0019999929 + 78270 -6249.3265 -6253.414 4.0875011 3678.0512 618.60309 -10550.068 0 195.89599 -0.0019518316 -0.0019687862 + 78280 -6249.1104 -6253.1839 4.073499 3674.8216 619.54746 -10547.553 0 195.22493 -0.0018131285 -0.0018302102 + 78290 -6248.8459 -6252.9588 4.1129016 3670.57 621.23337 -10544.762 0 197.11332 -0.0015825925 -0.0016013267 + 78300 -6248.5475 -6252.7196 4.1720834 3666.4172 623.40127 -10542.538 0 199.94964 -0.0013065602 -0.0013268409 + 78310 -6248.2318 -6252.4568 4.2249315 3663.6498 625.63495 -10541.742 0 202.48242 -0.0010503258 -0.001070658 + 78320 -6247.8991 -6252.2027 4.3035412 3663.3519 627.44993 -10543.005 0 206.24984 -0.00087990868 -0.00089950611 + 78330 -6247.5334 -6252.0154 4.4820391 3666.0663 628.43231 -10546.514 0 214.80446 -0.00084262271 -0.0008630363 + 78340 -6247.1254 -6251.9219 4.796563 3671.5843 628.38685 -10551.893 0 229.87821 -0.00095226792 -0.00097630627 + 78350 -6246.6952 -6251.8805 5.1853151 3678.9006 627.43219 -10558.213 0 248.5094 -0.0011815474 -0.0012102311 + 78360 -6246.284 -6251.8125 5.5284421 3686.3513 625.98989 -10564.154 0 264.95397 -0.0014633294 -0.0014943715 + 78370 -6245.9174 -6251.6754 5.7580142 3691.9623 624.65356 -10568.291 0 275.95635 -0.0017042253 -0.0017342866 + 78380 -6245.5842 -6251.4959 5.9116204 3693.998 623.98003 -10569.474 0 283.31802 -0.0018127127 -0.0018410717 + 78390 -6245.2599 -6251.3224 6.062559 3691.5643 624.28207 -10567.169 0 290.55185 -0.0017348567 -0.0017639726 + 78400 -6244.9435 -6251.1626 6.2191309 3685.0009 625.50132 -10561.665 0 298.05565 -0.0014803379 -0.0015125498 + 78410 -6244.6612 -6250.9841 6.3229444 3675.8495 627.20872 -10554.042 0 303.03097 -0.0011230501 -0.0011575192 + 78420 -6244.4338 -6250.7725 6.3387203 3666.3997 628.73626 -10545.908 0 303.78704 -0.00077536288 -0.00080879814 + 78430 -6244.2509 -6250.5697 6.3188149 3659.0145 629.39831 -10538.983 0 302.83306 -0.00054958094 -0.00057963007 + 78440 -6244.0782 -6250.4547 6.3764588 3655.4768 628.72638 -10534.658 0 305.59568 -0.00052285841 -0.00055053127 + 78450 -6243.8859 -6250.4909 6.6050115 3656.5379 626.63782 -10533.667 0 316.54921 -0.000715462 -0.00074452161 + 78460 -6243.6729 -6250.685 7.0120488 3661.7612 623.48646 -10535.933 0 336.05672 -0.0010854343 -0.0011194474 + 78470 -6243.4701 -6250.9815 7.5114068 3669.6654 619.98284 -10540.63 0 359.98876 -0.0015389964 -0.0015783965 + 78480 -6243.3199 -6251.2979 7.9779919 3678.1134 617.00736 -10546.419 0 382.35014 -0.001954136 -0.0019957233 + 78490 -6243.2459 -6251.5695 8.3236004 3684.8624 615.36946 -10551.801 0 398.91364 -0.0022129269 -0.0022524222 + 78500 -6243.2408 -6251.7666 8.5257975 3688.1773 615.58209 -10555.526 0 408.60406 -0.0022354388 -0.0022709001 + 78510 -6243.2834 -6251.867 8.5835996 3687.3584 617.71546 -10556.941 0 411.37425 -0.0020054556 -0.0020382667 + 78520 -6243.3663 -6251.8245 8.4582246 3682.9809 621.36877 -10556.174 0 405.36558 -0.0015780725 -0.0016105856 + 78530 -6243.4996 -6251.5841 8.0844213 3676.7012 625.76732 -10554.053 0 387.45083 -0.001064041 -0.001096606 + 78540 -6243.6868 -6251.1413 7.4545034 3670.6777 629.9618 -10551.781 0 357.26163 -0.00059522672 -0.00062590821 + 78550 -6243.9044 -6250.5832 6.6787585 3666.8592 633.0797 -10550.522 0 320.08358 -0.00028451768 -0.00031148921 + 78560 -6244.1123 -6250.0611 5.9487467 3666.4238 634.55593 -10551.041 0 285.09732 -0.00019512899 -0.00021886989 + 78570 -6244.2799 -6249.7189 5.4389872 3669.5188 634.268 -10553.506 0 260.66678 -0.00032798995 -0.00035123689 + 78580 -6244.4033 -6249.6311 5.2278077 3675.3043 632.53157 -10557.467 0 250.54588 -0.00062794197 -0.00065374615 + 78590 -6244.5052 -6249.7822 5.2770222 3682.231 629.96446 -10561.978 0 252.90451 -0.0010041057 -0.0010334536 + 78600 -6244.62 -6250.0948 5.4747934 3688.4615 627.27211 -10565.828 0 262.38282 -0.0013568237 -0.0013875068 + 78610 -6244.7687 -6250.4956 5.7268895 3692.3307 625.03151 -10567.858 0 274.46468 -0.0016032238 -0.0016314829 + 78620 -6244.9396 -6250.9696 6.0300084 3692.7634 623.54942 -10567.282 0 288.99183 -0.00169618 -0.0017205631 + 78630 -6245.102 -6251.5421 6.4401299 3689.5741 622.83883 -10563.955 0 308.64716 -0.0016342256 -0.0016579813 + 78640 -6245.2492 -6252.1986 6.9493987 3683.5528 622.70204 -10558.453 0 333.05418 -0.0014598312 -0.0014885788 + 78650 -6245.4258 -6252.8312 7.4054532 3676.2485 622.86275 -10551.942 0 354.91087 -0.0012438102 -0.0012800833 + 78660 -6245.7028 -6253.2791 7.5762425 3669.4835 623.08359 -10545.846 0 363.09605 -0.0010591487 -0.0010991181 + 78670 -6246.1177 -6253.4311 7.3133865 3664.7905 623.23028 -10541.452 0 350.49852 -0.00095516401 -0.00099101561 + 78680 -6246.6327 -6253.3014 6.6687408 3663.0173 623.27595 -10539.595 0 319.60348 -0.00094473809 -0.00097086228 + 78690 -6247.1547 -6253.0143 5.8595299 3664.2362 623.26439 -10540.515 0 280.82155 -0.0010100185 -0.0010275586 + 78700 -6247.6007 -6252.7138 5.1131281 3667.9207 623.2627 -10543.897 0 245.04979 -0.00112005 -0.001135788 + 78710 -6247.9475 -6252.4774 4.5299238 3673.2184 623.32636 -10549.022 0 217.09936 -0.0012468985 -0.0012676502 + 78720 -6248.2275 -6252.3015 4.0739372 3679.1608 623.48461 -10554.947 0 195.24593 -0.0013709914 -0.0013985434 + 78730 -6248.4857 -6252.1556 3.6699274 3684.7682 623.74373 -10560.668 0 175.88351 -0.0014770009 -0.0015074931 + 78740 -6248.7421 -6252.042 3.2998829 3689.1143 624.1018 -10565.258 0 158.14891 -0.0015482913 -0.0015756722 + 78750 -6248.9851 -6252.0092 3.0240293 3691.43 624.56411 -10568.003 0 144.92845 -0.0015662979 -0.0015865919 + 78760 -6249.1878 -6252.1209 2.9331363 3691.2606 625.14709 -10568.529 0 140.57235 -0.0015155299 -0.0015290305 + 78770 -6249.328 -6252.4104 3.0823821 3688.6257 625.86401 -10566.9 0 147.72505 -0.0013910643 -0.0014016798 + 78780 -6249.4013 -6252.8511 3.4497934 3684.0989 626.69554 -10563.646 0 165.33346 -0.0012048786 -0.0012176375 + 78790 -6249.4228 -6253.3573 3.9344596 3678.7439 627.5579 -10559.659 0 188.56138 -0.00098839032 -0.0010066927 + 78800 -6249.4217 -6253.8093 4.3876082 3673.8952 628.28707 -10555.992 0 210.2788 -0.00078940317 -0.00081322295 + 78810 -6249.4287 -6254.0947 4.666041 3670.8244 628.65631 -10553.575 0 223.62286 -0.00066228445 -0.0006880398 + 78820 -6249.4584 -6254.1566 4.6982615 3670.382 628.43377 -10552.972 0 225.16705 -0.00065218306 -0.00067469303 + 78830 -6249.4945 -6254.0277 4.5331537 3672.7293 627.46932 -10554.226 0 217.25416 -0.00077816097 -0.00079417547 + 78840 -6249.4946 -6253.8153 4.3207297 3677.2711 625.78237 -10556.869 0 207.07361 -0.0010231294 -0.0010341857 + 78850 -6249.4188 -6253.6295 4.2106453 3682.8231 623.61218 -10560.065 0 201.79775 -0.0013360784 -0.001347881 + 78860 -6249.2636 -6253.5015 4.2378286 3687.9373 621.39867 -10562.837 0 203.10053 -0.0016451233 -0.0016630822 + 78870 -6249.0665 -6253.3689 4.3023845 3691.252 619.68432 -10564.305 0 206.1944 -0.0018747449 -0.0018991493 + 78880 -6248.8711 -6253.149 4.2779212 3691.7759 618.96037 -10563.885 0 205.02199 -0.0019617112 -0.0019871838 + 78890 -6248.6805 -6252.835 4.1545223 3689.1016 619.50824 -10561.445 0 199.10802 -0.0018688654 -0.0018891648 + 78900 -6248.4406 -6252.5169 4.0763411 3683.5731 621.29401 -10557.384 0 195.36114 -0.0015976863 -0.0016117024 + 78910 -6248.0709 -6252.3051 4.2341464 3676.3588 623.95379 -10552.618 0 202.92406 -0.0011967584 -0.0012102259 + 78920 -6247.5159 -6252.2273 4.7114263 3669.3248 626.87266 -10548.425 0 225.79798 -0.00075919668 -0.00078062381 + 78930 -6246.7884 -6252.1944 5.4059504 3664.6332 629.33492 -10546.163 0 259.08348 -0.00040374918 -0.0004378125 + 78940 -6245.9867 -6252.0581 6.0714271 3664.1016 630.7171 -10546.877 0 290.97685 -0.00024047474 -0.00028362436 + 78950 -6245.2555 -6251.7209 6.4654106 3668.4843 630.68678 -10550.892 0 309.85875 -0.00032876097 -0.00037061683 + 78960 -6244.6881 -6251.2238 6.5356915 3676.9786 629.34123 -10557.544 0 313.22701 -0.00064460485 -0.00067561547 + 78970 -6244.2564 -6250.7386 6.4821721 3687.3079 627.20552 -10565.252 0 310.66206 -0.0010801423 -0.001100235 + 78980 -6243.8645 -6250.443 6.5785247 3696.4848 625.06571 -10571.994 0 315.27982 -0.0014840259 -0.0015036563 + 78990 -6243.4674 -6250.3726 6.9052258 3701.8976 623.70134 -10575.972 0 330.93716 -0.0017214655 -0.0017526584 + 79000 -6243.1179 -6250.4048 7.2868855 3702.1519 623.61951 -10576.176 0 349.22844 -0.0017200946 -0.001765813 + 79010 -6242.8983 -6250.3978 7.4994724 3697.3485 624.88012 -10572.626 0 359.4168 -0.0014843927 -0.0015366133 + 79020 -6242.8299 -6250.3318 7.5019744 3688.8737 627.07154 -10566.277 0 359.53671 -0.0010846155 -0.0011319431 + 79030 -6242.857 -6250.3099 7.4528438 3678.9414 629.44762 -10558.699 0 357.18209 -0.0006333818 -0.00066978173 + 79040 -6242.9021 -6250.4472 7.5450843 3670.0377 631.17674 -10551.662 0 361.60278 -0.00025634856 -0.00028377309 + 79050 -6242.9221 -6250.7768 7.8546527 3664.3281 631.61422 -10546.719 0 376.43903 -5.9247929e-05 -8.4348996e-05 + 79060 -6242.9258 -6251.2319 8.3060256 3663.1269 630.50818 -10544.867 0 398.07135 -9.7922526e-05 -0.00012706464 + 79070 -6242.9595 -6251.6849 8.7254216 3666.5708 628.07642 -10546.332 0 418.17116 -0.00036182078 -0.00039757411 + 79080 -6243.0759 -6252.0053 8.9294122 3673.601 624.9329 -10550.539 0 427.94754 -0.00077760325 -0.00081801115 + 79090 -6243.2996 -6252.1153 8.8156669 3682.2634 621.89254 -10556.271 0 422.49622 -0.0012315942 -0.0012723604 + 79100 -6243.61 -6252.0187 8.4087113 3690.2595 619.72486 -10562.003 0 402.99263 -0.0016037279 -0.0016417725 + 79110 -6243.9573 -6251.778 7.8206705 3695.6095 618.9409 -10566.328 0 374.81041 -0.0018024662 -0.0018378305 + 79120 -6244.3001 -6251.4624 7.1623055 3697.2117 619.67567 -10568.35 0 343.25787 -0.0017892972 -0.0018237507 + 79130 -6244.624 -6251.1213 6.4973267 3695.0841 621.68598 -10567.891 0 311.38835 -0.0015846149 -0.0016189016 + 79140 -6244.9291 -6250.8044 5.8752488 3690.2208 624.44676 -10565.472 0 281.57489 -0.0012547662 -0.0012877724 + 79150 -6245.2108 -6250.585 5.3742043 3684.1881 627.30907 -10562.082 0 257.56203 -0.00088811143 -0.00091849321 + 79160 -6245.4584 -6250.5415 5.0830482 3678.6583 629.67411 -10558.874 0 243.60819 -0.00057006073 -0.00059791011 + 79170 -6245.6682 -6250.7126 5.0444263 3675.0154 631.13474 -10556.863 0 241.75721 -0.00036356208 -0.00039027876 + 79180 -6245.849 -6251.0753 5.2263121 3674.0777 631.54638 -10556.699 0 250.4742 -0.00029784288 -0.00032486596 + 79190 -6246.0168 -6251.5589 5.5421227 3675.9639 631.01467 -10558.537 0 265.60962 -0.00036667967 -0.00039457216 + 79200 -6246.187 -6252.0755 5.8884681 3680.1217 629.8181 -10562.015 0 282.20843 -0.00053575838 -0.00056411659 + 79210 -6246.3696 -6252.5452 6.1755914 3685.5089 628.30326 -10566.357 0 295.96899 -0.00075567643 -0.00078356845 + 79220 -6246.5664 -6252.9143 6.3478461 3690.8686 626.79247 -10570.575 0 304.2244 -0.00097546528 -0.0010021493 + 79230 -6246.771 -6253.1595 6.3884688 3695.0267 625.52819 -10573.714 0 306.17127 -0.0011530236 -0.001178543 + 79240 -6246.9758 -6253.2772 6.301347 3697.1425 624.6558 -10575.076 0 301.99591 -0.0012613903 -0.0012863515 + 79250 -6247.18 -6253.2675 6.0874679 3696.8592 624.23043 -10574.357 0 291.74562 -0.001290778 -0.0013152498 + 79260 -6247.3872 -6253.1369 5.7496893 3694.3273 624.23186 -10571.696 0 275.55737 -0.0012464679 -0.0012692147 + 79270 -6247.5929 -6252.9215 5.3285942 3690.1199 624.57963 -10567.621 0 255.37613 -0.001143996 -0.0011633811 + 79280 -6247.7761 -6252.6996 4.9235062 3685.0945 625.14862 -10562.943 0 235.96204 -0.0010047889 -0.0010209225 + 79290 -6247.9097 -6252.5632 4.6534999 3680.2552 625.78793 -10558.606 0 223.02183 -0.00085467577 -0.00087055214 + 79300 -6247.9835 -6252.5594 4.5758665 3676.6127 626.34391 -10555.516 0 219.3012 -0.00072398932 -0.00074387362 + 79310 -6248.0187 -6252.6534 4.6347427 3675.0125 626.68423 -10554.35 0 222.12287 -0.00064499838 -0.00067098193 + 79320 -6248.0552 -6252.751 4.6957912 3675.9253 626.719 -10555.395 0 225.04866 -0.00064387721 -0.00067361782 + 79330 -6248.1211 -6252.769 4.6479399 3679.2634 626.41789 -10558.45 0 222.75536 -0.00072956552 -0.00075755257 + 79340 -6248.2073 -6252.6976 4.4903019 3684.3268 625.82437 -10562.849 0 215.20046 -0.00088613433 -0.00090781572 + 79350 -6248.2715 -6252.6022 4.3306534 3689.95 625.06543 -10567.618 0 207.54921 -0.001074426 -0.0010899 + 79360 -6248.2681 -6252.5651 4.2969963 3694.8179 624.34729 -10571.73 0 205.93618 -0.001243063 -0.0012572375 + 79370 -6248.1806 -6252.6185 4.4378181 3697.8315 623.92403 -10574.374 0 212.68514 -0.0013433524 -0.0013623848 + 79380 -6248.0301 -6252.7223 4.6922241 3698.3818 624.03363 -10575.138 0 224.87771 -0.0013417622 -0.0013686024 + 79390 -6247.8548 -6252.8022 4.9473708 3696.458 624.81517 -10574.075 0 237.10577 -0.0012270785 -0.00125948 + 79400 -6247.6793 -6252.808 5.1287076 3692.601 626.23764 -10571.647 0 245.79645 -0.0010128842 -0.0010450786 + 79410 -6247.4952 -6252.7467 5.251437 3687.7594 628.07216 -10568.578 0 251.67833 -0.00073654181 -0.00076299634 + 79420 -6247.263 -6252.6701 5.407095 3683.1 629.92431 -10565.694 0 259.13833 -0.00045417647 -0.00047287266 + 79430 -6246.9288 -6252.6393 5.7104462 3679.7894 631.32278 -10563.751 0 273.67662 -0.00023049878 -0.0002441866 + 79440 -6246.4476 -6252.6838 6.2362274 3678.7625 631.8453 -10563.292 0 298.87501 -0.00012433456 -0.00013941249 + 79450 -6245.8121 -6252.7691 6.9570185 3680.4965 631.25245 -10564.518 0 333.41936 -0.00017318409 -0.000196292 + 79460 -6245.0772 -6252.7863 7.709087 3684.8239 629.59059 -10567.201 0 369.4627 -0.0003801724 -0.00041348666 + 79470 -6244.3522 -6252.5981 8.2459374 3690.829 627.22133 -10570.648 0 395.19159 -0.00070566951 -0.00074398399 + 79480 -6243.7381 -6252.1384 8.4002381 3696.9205 624.7486 -10573.807 0 402.58654 -0.0010674007 -0.0011008575 + 79490 -6243.2517 -6251.4925 8.2407932 3701.1855 622.85301 -10575.531 0 394.94505 -0.0013560167 -0.0013783328 + 79500 -6242.8187 -6250.8574 8.0386847 3702.0267 622.08902 -10574.973 0 385.25887 -0.0014697817 -0.0014850745 + 79510 -6242.3623 -6250.3783 8.0159775 3698.8578 622.71691 -10571.953 0 384.17062 -0.0013579321 -0.001378195 + 79520 -6241.8986 -6250.0141 8.1155428 3692.4671 624.61881 -10567.1 0 388.94235 -0.0010483302 -0.0010823211 + 79530 -6241.5306 -6249.5902 8.059607 3684.7772 627.31724 -10561.685 0 386.26159 -0.00063873721 -0.00068296065 + 79540 -6241.3416 -6249.0049 7.6633147 3678.1013 630.09696 -10557.203 0 367.26904 -0.00025451172 -0.0002958569 + 79550 -6241.3028 -6248.3807 7.0778701 3674.3159 632.20846 -10554.905 0 339.21125 9.2857236e-07 -2.6706256e-05 + 79560 -6241.2927 -6248.0073 6.7146445 3674.3556 633.09468 -10555.458 0 321.80344 7.5550889e-05 6.0610064e-05 + 79570 -6241.2002 -6248.1349 6.934669 3678.1369 632.56199 -10558.834 0 332.34825 -2.8829826e-05 -4.2741733e-05 + 79580 -6241.0142 -6248.7952 7.7810615 3684.7523 630.83819 -10564.386 0 372.91213 -0.00026907789 -0.00029413276 + 79590 -6240.8334 -6249.7866 8.9532443 3692.7338 628.50128 -10571.022 0 429.0897 -0.00057463671 -0.00061344335 + 79600 -6240.7953 -6250.8168 10.021562 3700.3107 626.2979 -10577.425 0 480.28948 -0.0008597753 -0.00090383309 + 79610 -6240.9777 -6251.6777 10.700082 3705.7283 624.90322 -10582.309 0 512.80796 -0.0010402911 -0.0010779877 + 79620 -6241.3583 -6252.3094 10.951091 3707.6894 624.70403 -10584.703 0 524.83773 -0.0010584768 -0.0010850099 + 79630 -6241.8627 -6252.7277 10.864993 3705.8113 625.68724 -10584.226 0 520.71144 -0.00090769467 -0.00092785454 + 79640 -6242.4364 -6252.9259 10.489512 3700.8386 627.4733 -10581.238 0 502.71626 -0.00063949457 -0.00066190415 + 79650 -6243.0614 -6252.8614 9.8000588 3694.4092 629.47237 -10576.743 0 469.6738 -0.00034422779 -0.00037378074 + 79660 -6243.7184 -6252.5219 8.8034843 3688.4493 631.09482 -10572.066 0 421.91236 -0.00011457958 -0.0001498314 + 79670 -6244.3601 -6251.98 7.6198979 3684.5085 631.9337 -10568.422 0 365.18826 -1.2363797e-05 -4.8300474e-05 + 79680 -6244.9271 -6251.3799 6.4527828 3683.3423 631.85751 -10566.58 0 309.25356 -5.3258783e-05 -8.5348e-05 + 79690 -6245.3806 -6250.8813 5.5007084 3684.8474 630.99786 -10566.727 0 263.62481 -0.00021045376 -0.00023682224 + 79700 -6245.7129 -6250.6078 4.8949196 3688.264 629.66171 -10568.534 0 234.59201 -0.00042982014 -0.00045133712 + 79710 -6245.9382 -6250.6185 4.6802507 3692.5038 628.21671 -10571.339 0 224.30388 -0.00064912347 -0.00066834241 + 79720 -6246.0811 -6250.8974 4.8162601 3696.4858 626.98891 -10574.372 0 230.82221 -0.00081607617 -0.00083568157 + 79730 -6246.1708 -6251.3637 5.1929524 3699.3973 626.19238 -10576.953 0 248.87542 -0.00090096819 -0.00092235068 + 79740 -6246.2346 -6251.9051 5.6704829 3700.831 625.89652 -10578.633 0 271.76136 -0.00090069119 -0.00092353669 + 79750 -6246.2905 -6252.42 6.1295345 3700.7923 626.03258 -10579.245 0 293.76169 -0.00083400944 -0.00085719288 + 79760 -6246.3443 -6252.8414 6.4970932 3699.6085 626.43869 -10578.889 0 311.37716 -0.00073141332 -0.00075421817 + 79770 -6246.3975 -6253.1326 6.735059 3697.7873 626.93246 -10577.852 0 322.78182 -0.00062399561 -0.00064638891 + 79780 -6246.4549 -6253.2751 6.820238 3695.8626 627.38494 -10576.523 0 326.86407 -0.00053443768 -0.0005563658 + 79790 -6246.5221 -6253.2692 6.7471347 3694.2629 627.76366 -10575.296 0 323.36055 -0.0004718007 -0.00049269129 + 79800 -6246.5966 -6253.1442 6.5476088 3693.2378 628.1238 -10574.506 0 313.79815 -0.00043150762 -0.00045085532 + 79810 -6246.6649 -6252.9568 6.2919062 3692.8673 628.55349 -10574.378 0 301.54345 -0.00040121547 -0.00041964082 + 79820 -6246.713 -6252.763 6.0500361 3693.1374 629.10362 -10575.004 0 289.95168 -0.00037068463 -0.00038990229 + 79830 -6246.7426 -6252.5848 5.8421812 3694.0213 629.73914 -10576.345 0 279.9901 -0.00034028398 -0.00036139226 + 79840 -6246.7715 -6252.4094 5.6378656 3695.4936 630.33433 -10578.237 0 270.19815 -0.00032202556 -0.00034378841 + 79850 -6246.8124 -6252.2332 5.420795 3697.4625 630.71326 -10580.409 0 259.79491 -0.00033163962 -0.00035118668 + 79860 -6246.8517 -6252.1021 5.2503793 3699.6901 630.72186 -10582.514 0 251.62764 -0.0003772807 -0.00039318448 + 79870 -6246.856 -6252.0913 5.2353424 3701.793 630.30594 -10584.19 0 250.90699 -0.00045290486 -0.00046744803 + 79880 -6246.8039 -6252.2338 5.4299213 3703.3379 629.56094 -10585.133 0 260.23229 -0.0005395494 -0.00055730729 + 79890 -6246.7114 -6252.4694 5.7580174 3703.9643 628.72102 -10585.155 0 275.9565 -0.00061154112 -0.00063522242 + 79900 -6246.623 -6252.6726 6.049652 3703.4635 628.07941 -10584.216 0 289.93327 -0.00064356409 -0.00067109884 + 79910 -6246.574 -6252.7372 6.1632773 3701.8136 627.86774 -10582.419 0 295.37883 -0.00061757304 -0.00064341023 + 79920 -6246.5592 -6252.646 6.0867779 3699.208 628.14985 -10580.004 0 291.71255 -0.0005301075 -0.00054976804 + 79930 -6246.5353 -6252.4692 5.9338786 3696.0879 628.78279 -10577.34 0 284.38476 -0.00039831704 -0.00041233779 + 79940 -6246.4547 -6252.3005 5.8457861 3693.1338 629.46571 -10574.9 0 280.16287 -0.00026023721 -0.00027419203 + 79950 -6246.3037 -6252.1853 5.8816292 3691.1539 629.85592 -10573.195 0 281.88067 -0.00016557599 -0.00018602735 + 79960 -6246.1139 -6252.0988 5.9848816 3690.8481 629.70435 -10572.651 0 286.82911 -0.00015775273 -0.00018718321 + 79970 -6245.9373 -6251.99 6.0527358 3692.5137 628.95786 -10573.462 0 290.08106 -0.00025358345 -0.00028830703 + 79980 -6245.8036 -6251.8539 6.0503714 3695.836 627.79142 -10575.481 0 289.96775 -0.00043060206 -0.00046345619 + 79990 -6245.6939 -6251.7607 6.0668076 3699.9118 626.56174 -10578.234 0 290.75546 -0.00063034828 -0.00065603256 + 80000 -6245.553 -6251.8097 6.2567202 3703.544 625.70059 -10581.054 0 299.85714 -0.00077820421 -0.00079690472 + 80010 -6245.3285 -6252.0465 6.7179761 3705.6844 625.58208 -10583.313 0 321.96311 -0.00081115265 -0.00082780676 + 80020 -6245.005 -6252.412 7.407075 3705.8212 626.40095 -10584.634 0 354.9886 -0.00070125421 -0.00072156789 + 80030 -6244.6131 -6252.7605 8.1474197 3704.1501 628.09635 -10585.007 0 390.47007 -0.00046629204 -0.00049267646 + 80040 -6244.2126 -6252.9265 8.7138241 3701.4755 630.34737 -10584.749 0 417.61534 -0.00016483127 -0.00019483127 + 80050 -6243.8577 -6252.8049 8.9472482 3698.8951 632.64978 -10584.35 0 428.80234 0.00012266739 9.4515403e-05 + 80060 -6243.5629 -6252.4034 8.840453 3697.4 634.45916 -10584.263 0 423.68411 0.0003204942 0.00029843254 + 80070 -6243.2996 -6251.8314 8.5317987 3697.5581 635.35788 -10584.747 0 408.89167 0.00038169177 0.00036521027 + 80080 -6243.0269 -6251.2287 8.2018354 3699.3855 635.18723 -10585.802 0 393.07797 0.00030010449 0.00028413948 + 80090 -6242.7314 -6250.6868 7.9554602 3702.3972 634.09423 -10587.178 0 381.27029 0.00010823368 8.7104906e-05 + 80100 -6242.4383 -6250.2232 7.7848668 3705.7596 632.47502 -10588.458 0 373.0945 -0.00013481375 -0.00016294626 + 80110 -6242.1884 -6249.8195 7.6311307 3708.4934 630.83598 -10589.149 0 365.7266 -0.00035970207 -0.00039140667 + 80120 -6242.0009 -6249.4844 7.4834949 3709.7121 629.6213 -10588.818 0 358.65107 -0.00050408886 -0.00053337121 + 80130 -6241.852 -6249.2856 7.4336637 3708.8801 629.06745 -10587.233 0 356.26288 -0.000528858 -0.00055206505 + 80140 -6241.6879 -6249.3212 7.6333736 3706.0331 629.13734 -10584.492 0 365.83409 -0.00043089898 -0.0004500448 + 80150 -6241.4689 -6249.6415 8.1725751 3701.8635 629.55936 -10581.064 0 391.67565 -0.00024763794 -0.00026912005 + 80160 -6241.2133 -6250.1857 8.9723879 3697.5751 629.95434 -10577.715 0 430.00717 -4.7524044e-05 -7.677774e-05 + 80170 -6241.0001 -6250.8005 9.8004201 3694.4879 629.99773 -10575.286 0 469.69112 9.4938729e-05 5.8265248e-05 + 80180 -6240.9212 -6251.3365 10.415339 3693.5291 629.55337 -10574.419 0 499.16147 0.00013089266 9.2476679e-05 + 80190 -6241.0237 -6251.7324 10.708636 3694.8738 628.72943 -10575.336 0 513.21794 5.8413499e-05 2.3845972e-05 + 80200 -6241.3009 -6252.0045 10.703567 3697.9424 627.83775 -10577.785 0 512.97497 -8.0043795e-05 -0.00010990883 + 80210 -6241.7317 -6252.166 10.434278 3701.7267 627.27264 -10581.165 0 500.06916 -0.00022154323 -0.00024966752 + 80220 -6242.3082 -6252.1809 9.8727458 3705.2122 627.35493 -10584.748 0 473.15737 -0.0003113239 -0.00033975797 + 80230 -6243.0101 -6252.0151 9.0050589 3707.6767 628.20086 -10587.893 0 431.57295 -0.00032040284 -0.00034787988 + 80240 -6243.7682 -6251.7195 7.9512677 3708.8134 629.66986 -10590.203 0 381.06936 -0.00024897345 -0.00027352988 + 80250 -6244.4835 -6251.4333 6.9498468 3708.7422 631.41386 -10591.589 0 333.07566 -0.0001220123 -0.00014459694 + 80260 -6245.09 -6251.292 6.2020459 3707.939 633.00285 -10592.234 0 297.23684 1.8489065e-05 -5.5371896e-06 + 80270 -6245.5902 -6251.339 5.7488227 3707.0589 634.06771 -10592.466 0 275.51584 0.00012586338 9.8505673e-05 + 80280 -6246.0285 -6251.5282 5.4996721 3706.6665 634.40642 -10592.601 0 263.57515 0.0001655341 0.00013720666 + 80290 -6246.4399 -6251.7982 5.3582638 3706.9924 634.02681 -10592.817 0 256.79807 0.00012972811 0.00010538695 + 80300 -6246.8205 -6252.1311 5.3105543 3707.8565 633.12308 -10593.111 0 254.51156 4.10005e-05 2.3721942e-05 + 80310 -6247.1402 -6252.5408 5.4005527 3708.811 631.99769 -10593.35 0 258.82479 -5.9489886e-05 -7.1514424e-05 + 80320 -6247.3792 -6253.0101 5.6309638 3709.4119 630.95328 -10593.375 0 269.86738 -0.00013338172 -0.0001454872 + 80330 -6247.5545 -6253.4489 5.8944263 3709.4521 630.19048 -10593.092 0 282.49398 -0.00016368623 -0.00018011885 + 80340 -6247.7116 -6253.7265 6.014877 3709.0261 629.74926 -10592.502 0 288.26665 -0.0001596152 -0.00017986286 + 80350 -6247.8856 -6253.7604 5.8748635 3708.4129 629.51927 -10591.693 0 281.55642 -0.00014629609 -0.00016583043 + 80360 -6248.0697 -6253.5833 5.5136283 3707.8874 629.31622 -10590.787 0 264.244 -0.00014813554 -0.00016285296 + 80370 -6248.2238 -6253.3244 5.1006064 3707.5924 628.98868 -10589.905 0 244.44968 -0.00017683476 -0.00018690135 + 80380 -6248.3124 -6253.1207 4.8082454 3707.5287 628.50363 -10589.153 0 230.4381 -0.00022856637 -0.00023810253 + 80390 -6248.3359 -6253.037 4.7010416 3707.6145 627.97111 -10588.623 0 225.30029 -0.00028736848 -0.00030059482 + 80400 -6248.3264 -6253.0573 4.7308826 3707.7401 627.59943 -10588.397 0 226.73044 -0.00033038838 -0.00034810765 + 80410 -6248.3168 -6253.1365 4.8197485 3707.7989 627.60436 -10588.54 0 230.98939 -0.00033404277 -0.00035355544 + 80420 -6248.3152 -6253.2495 4.9342728 3707.7242 628.11341 -10589.087 0 236.47804 -0.00028228315 -0.00030020007 + 80430 -6248.3055 -6253.3918 5.0862574 3707.55 629.1039 -10590.046 0 243.76199 -0.00017563366 -0.00019056098 + 80440 -6248.266 -6253.5503 5.2842347 3707.4539 630.39595 -10591.4 0 253.25018 -3.5760302e-05 -4.8815356e-05 + 80450 -6248.1856 -6253.6868 5.5011821 3707.7231 631.70135 -10593.111 0 263.64751 9.9252782e-05 8.5625007e-05 + 80460 -6248.0672 -6253.7476 5.6803862 3708.6329 632.71425 -10595.095 0 272.23598 0.00018827767 0.00017181926 + 80470 -6247.9251 -6253.6815 5.7563692 3710.2896 633.21626 -10597.187 0 275.87751 0.00020320383 0.00018307211 + 80480 -6247.7797 -6253.4562 5.6765067 3712.51 633.15743 -10599.124 0 272.05005 0.00014077974 0.00011825409 + 80490 -6247.647 -6253.0764 5.4294094 3714.7997 632.67649 -10600.553 0 260.20776 2.5752549e-05 3.8604384e-06 + 80500 -6247.5259 -6252.5997 5.0737873 3716.464 632.0449 -10601.109 0 243.16436 -9.6175714e-05 -0.00011439765 + 80510 -6247.3933 -6252.1332 4.739923 3716.8395 631.55451 -10600.527 0 227.1637 -0.0001741052 -0.00018782125 + 80520 -6247.2134 -6251.798 4.5845866 3715.5683 631.39666 -10598.763 0 219.71911 -0.00017157511 -0.00018310093 + 80530 -6246.9565 -6251.6743 4.7178577 3712.7983 631.58464 -10596.057 0 226.10621 -8.2449284e-05 -9.5858819e-05 + 80540 -6246.6132 -6251.7648 5.1515596 3709.2069 631.94925 -10592.921 0 246.89164 6.4498684e-05 4.6315724e-05 + 80550 -6246.194 -6252.0032 5.8091518 3705.8158 632.20474 -10590.024 0 278.40715 0.00021550441 0.00019303351 + 80560 -6245.7147 -6252.3022 6.5875151 3703.6583 632.05883 -10588.019 0 315.71068 0.00031248295 0.00028913246 + 80570 -6245.1823 -6252.5993 7.4170221 3703.4264 631.33015 -10587.356 0 355.46532 0.00031540204 0.00029465491 + 80580 -6244.5963 -6252.8659 8.2696589 3705.2331 630.0367 -10588.136 0 396.32846 0.00021714455 0.00019959596 + 80590 -6243.967 -6253.0785 9.1115253 3708.5724 628.42632 -10590.077 0 436.67542 4.6155384e-05 2.8930036e-05 + 80600 -6243.3376 -6253.1854 9.8477875 3712.4837 626.93388 -10592.603 0 471.96123 -0.00014233621 -0.0001631892 + 80610 -6242.7831 -6253.106 10.322857 3715.849 626.06785 -10595.023 0 494.72925 -0.00028264682 -0.00030880515 + 80620 -6242.3776 -6252.7701 10.392468 3717.7267 626.25067 -10596.747 0 498.06536 -0.00031834061 -0.00034785864 + 80630 -6242.1532 -6252.1646 10.01133 3717.6286 627.66008 -10597.453 0 479.7991 -0.00022111606 -0.00025004956 + 80640 -6242.0862 -6251.3511 9.2649177 3715.6762 630.13166 -10597.159 0 444.02684 -3.1272156e-06 -2.8366038e-05 + 80650 -6242.1159 -6250.4517 8.3358693 3712.5809 633.17126 -10596.204 0 399.50163 0.00028366589 0.00026255464 + 80660 -6242.1774 -6249.6202 7.4427816 3709.4354 636.0871 -10595.143 0 356.69985 0.00056308339 0.00054375476 + 80670 -6242.2289 -6249.0036 6.7747237 3707.3761 638.2017 -10594.581 0 324.68277 0.00075952498 0.00073835928 + 80680 -6242.2648 -6248.6997 6.434862 3707.2228 639.06564 -10594.988 0 308.39469 0.00082235669 0.00079703551 + 80690 -6242.3099 -6248.7378 6.4278965 3709.1997 638.5915 -10596.529 0 308.06087 0.00074228863 0.00071380209 + 80700 -6242.3911 -6249.1025 6.7114513 3712.8256 637.05832 -10598.986 0 321.65041 0.00055531233 0.00052719522 + 80710 -6242.5125 -6249.7706 7.2581876 3717.0439 634.99135 -10601.806 0 347.85307 0.00033126638 0.00030605446 + 80720 -6242.6624 -6250.7008 8.038374 3720.5975 632.97182 -10604.27 0 385.24399 0.00014771049 0.00012416431 + 80730 -6242.8548 -6251.7781 8.9233662 3722.5092 631.45291 -10605.74 0 427.65777 5.8448884e-05 3.3144481e-05 + 80740 -6243.153 -6252.7963 9.6432522 3722.4217 630.64303 -10605.861 0 462.15875 7.3185821e-05 4.5031745e-05 + 80750 -6243.6353 -6253.5399 9.9046302 3720.6295 630.48356 -10604.653 0 474.68546 0.00015990824 0.00013202043 + 80760 -6244.3262 -6253.9041 9.5779234 3717.8559 630.71816 -10602.478 0 459.02783 0.00026597945 0.00024236372 + 80770 -6245.1695 -6253.9315 8.7619892 3714.9589 631.02492 -10599.915 0 419.92368 0.00034268002 0.0003237705 + 80780 -6246.064 -6253.7426 7.6786281 3712.6942 631.15771 -10597.595 0 368.00294 0.00036106737 0.00034339997 + 80790 -6246.9149 -6253.4463 6.5313519 3711.553 631.03534 -10596.035 0 313.01903 0.0003170497 0.00029707108 + 80800 -6247.6583 -6253.1089 5.4505741 3711.6736 630.74371 -10595.526 0 261.22209 0.00022859532 0.00020619285 + 80810 -6248.2618 -6252.7827 4.5208351 3712.8495 630.46427 -10596.096 0 216.66379 0.00012767453 0.00010610077 + 80820 -6248.7179 -6252.5435 3.8256904 3714.6356 630.37684 -10597.556 0 183.34855 4.9396247e-05 3.2122111e-05 + 80830 -6249.0318 -6252.4915 3.4597599 3716.5172 630.58426 -10599.593 0 165.81111 2.099107e-05 8.3644502e-06 + 80840 -6249.2146 -6252.6978 3.4832345 3718.0956 631.08109 -10601.875 0 166.93614 5.2523785e-05 4.1041152e-05 + 80850 -6249.2912 -6253.1352 3.8440611 3719.2224 631.76388 -10604.122 0 184.22898 0.00013192595 0.00011708746 + 80860 -6249.3091 -6253.6636 4.3545694 3720.0041 632.46988 -10606.138 0 208.6954 0.00022861232 0.00020914339 + 80870 -6249.3211 -6254.1072 4.7861456 3720.6531 633.0288 -10607.789 0 229.37895 0.00030711532 0.00028631185 + 80880 -6249.3484 -6254.3654 5.0170133 3721.2882 633.31635 -10608.97 0 240.44343 0.00034421197 0.00032657874 + 80890 -6249.3668 -6254.4551 5.0883158 3721.8381 633.2984 -10609.592 0 243.86064 0.00033858924 0.00032502819 + 80900 -6249.337 -6254.4506 5.1135894 3722.1129 633.05054 -10609.614 0 245.0719 0.00030757093 0.00029415068 + 80910 -6249.2484 -6254.3897 5.1413571 3721.9569 632.73667 -10609.083 0 246.40268 0.0002752555 0.00025686203 + 80920 -6249.1332 -6254.2411 5.1079158 3721.3526 632.5436 -10608.137 0 244.79999 0.00026078758 0.00023608068 + 80930 -6249.0394 -6253.9544 4.9150105 3720.4215 632.59353 -10606.969 0 235.55488 0.00027222776 0.00024530782 + 80940 -6248.9883 -6253.5402 4.5518781 3719.3596 632.87545 -10605.775 0 218.15154 0.00030605195 0.00028334565 + 80950 -6248.9531 -6253.1057 4.1525889 3718.3781 633.2344 -10604.718 0 199.01536 0.00034961561 0.00033447648 + 80960 -6248.8747 -6252.8101 3.9353692 3717.6804 633.43112 -10603.922 0 188.60497 0.00038453102 0.00037393262 + 80970 -6248.7043 -6252.7643 4.0599666 3717.4633 633.24953 -10603.477 0 194.57638 0.00039101468 0.00037734599 + 80980 -6248.4415 -6252.9491 4.5075627 3717.8845 632.60419 -10603.438 0 216.02769 0.00035455698 0.00033165674 + 80990 -6248.1385 -6253.2249 5.0863976 3718.9634 631.59889 -10603.787 0 243.76871 0.00027485841 0.00024360199 + 81000 -6247.8592 -6253.4356 5.5763598 3720.4601 630.50795 -10604.404 0 267.25045 0.00017302104 0.00014134867 + 81010 -6247.6228 -6253.5224 5.8995966 3721.8595 629.68637 -10605.068 0 282.74177 8.9933114e-05 6.6555669e-05 + 81020 -6247.3834 -6253.5439 6.1605602 3722.5576 629.44532 -10605.547 0 295.24861 7.147057e-05 5.8407393e-05 + 81030 -6247.0725 -6253.5835 6.5109992 3722.1949 629.9409 -10605.719 0 312.04361 0.00014516081 0.00013582153 + 81040 -6246.6672 -6253.6347 6.9674555 3720.9279 631.1134 -10605.676 0 333.91956 0.00030149045 0.00028607422 + 81050 -6246.2198 -6253.5769 7.3570809 3719.4285 632.69531 -10605.701 0 352.5926 0.00049277776 0.00046615066 + 81060 -6245.8218 -6253.2644 7.4425969 3718.5755 634.28879 -10606.129 0 356.691 0.00065251228 0.00061788279 + 81070 -6245.5356 -6252.6502 7.1145932 3719.0055 635.4947 -10607.15 0 340.97123 0.00072546314 0.00069127439 + 81080 -6245.3508 -6251.8436 6.4927755 3720.7778 636.05229 -10608.674 0 311.17023 0.00069260357 0.00066570425 + 81090 -6245.1995 -6251.0655 5.866035 3723.3275 635.93461 -10610.328 0 281.13331 0.00057879276 0.00055937776 + 81100 -6245.0089 -6250.5338 5.5248673 3725.7155 635.35637 -10611.606 0 264.78264 0.00044124627 0.00042319103 + 81110 -6244.7502 -6250.3556 5.6054085 3727.0344 634.68587 -10612.076 0 268.64263 0.00034577071 0.00032184164 + 81120 -6244.4506 -6250.4989 6.0482762 3726.7656 634.29173 -10611.556 0 289.86733 0.00034140243 0.00030918352 + 81130 -6244.1621 -6250.8561 6.694023 3724.946 634.38257 -10610.185 0 320.81514 0.00044280599 0.00040644012 + 81140 -6243.9123 -6251.344 7.4316264 3722.1297 634.90588 -10608.38 0 356.16524 0.00062546191 0.00059150697 + 81150 -6243.6821 -6251.9452 8.2630944 3719.2213 635.55632 -10606.723 0 396.01385 0.00083336461 0.00080429203 + 81160 -6243.4377 -6252.6508 9.2130735 3717.2514 635.90118 -10605.803 0 441.54218 0.00099534147 0.00096689954 + 81170 -6243.1944 -6253.3614 10.167056 3717.1004 635.57589 -10606.038 0 487.26236 0.0010461143 0.0010116241 + 81180 -6243.0432 -6253.8642 10.820989 3719.169 634.465 -10607.498 0 518.6025 0.00094948901 0.00090731686 + 81190 -6243.0944 -6253.9363 10.841888 3723.0962 632.78498 -10609.817 0 519.60409 0.00071834362 0.00067499687 + 81200 -6243.3777 -6253.5051 10.127426 3727.7214 631.02623 -10612.253 0 485.36307 0.0004201916 0.00038518461 + 81210 -6243.7994 -6252.7243 8.9248682 3731.4344 629.77564 -10613.934 0 427.72976 0.00015778898 0.00013456453 + 81220 -6244.2098 -6251.8853 7.6755267 3732.8249 629.49763 -10614.208 0 367.85431 2.7751403e-05 9.5291415e-06 + 81230 -6244.5209 -6251.2265 6.7056384 3731.3198 630.36512 -10612.911 0 321.37182 7.7410463e-05 5.2798401e-05 + 81240 -6244.7624 -6250.8046 6.042115 3727.4504 632.19738 -10610.452 0 289.57205 0.0002848588 0.00024852338 + 81250 -6245.0271 -6250.5449 5.5178687 3722.5921 634.51441 -10607.651 0 264.44723 0.00057327175 0.00053129002 + 81260 -6245.3662 -6250.4055 5.039329 3718.3518 636.68588 -10605.443 0 241.51292 0.0008483376 0.0008127278 + 81270 -6245.7418 -6250.4703 4.7284686 3715.9778 638.13045 -10604.579 0 226.61475 0.0010348448 0.0010126307 + 81280 -6246.0717 -6250.8743 4.8026616 3716.0679 638.49956 -10605.442 0 230.17049 0.0010949484 0.0010822436 + 81290 -6246.3138 -6251.6456 5.3317976 3718.5795 637.77809 -10608.003 0 255.52966 0.0010278662 0.0010139715 + 81300 -6246.5101 -6252.626 6.1158884 3722.9636 636.26725 -10611.857 0 293.10769 0.00086163215 0.00083865364 + 81310 -6246.7537 -6253.5497 6.7959931 3728.2886 634.46389 -10616.302 0 325.70212 0.00064503395 0.00061413582 + 81320 -6247.1102 -6254.2077 7.0974541 3733.3731 632.88986 -10620.471 0 340.14982 0.00043900518 0.00040819642 + 81330 -6247.5638 -6254.5559 6.9920511 3737.0196 631.93718 -10623.513 0 335.09832 0.0003026741 0.00027897712 + 81340 -6248.0356 -6254.6876 6.6520012 3738.355 631.77724 -10624.82 0 318.80122 0.00027452384 0.00025801156 + 81350 -6248.4508 -6254.7163 6.2655108 3737.1446 632.34642 -10624.207 0 300.27843 0.0003572253 0.00034178397 + 81360 -6248.7887 -6254.6788 5.8900491 3733.8966 633.39301 -10621.968 0 282.2842 0.00051586183 0.00049508847 + 81370 -6249.0784 -6254.5323 5.4539359 3729.6762 634.56197 -10618.771 0 261.38321 0.0006919558 0.00066462168 + 81380 -6249.3557 -6254.2301 4.87439 3725.7076 635.49651 -10615.434 0 233.60812 0.00082654321 0.00079729004 + 81390 -6249.6264 -6253.7997 4.1733032 3722.9602 635.93478 -10612.695 0 200.00811 0.00088113448 0.00085647792 + 81400 -6249.8609 -6253.3586 3.4977043 3721.8998 635.77708 -10611.036 0 167.62961 0.00084789479 0.00083110076 + 81410 -6250.0188 -6253.0611 3.042307 3722.4741 635.1031 -10610.638 0 145.80442 0.00074696726 0.00073554834 + 81420 -6250.0771 -6253.0134 2.9363156 3724.2747 634.1337 -10611.422 0 140.72472 0.00061462 0.00060195226 + 81430 -6250.0488 -6253.2122 3.1634744 3726.7569 633.15192 -10613.121 0 151.61144 0.00048842144 0.00046839405 + 81440 -6249.982 -6253.5441 3.5620907 3729.4013 632.41191 -10615.357 0 170.71537 0.00039561983 0.00036740134 + 81450 -6249.9353 -6253.8534 3.9180967 3731.7666 632.0666 -10617.687 0 187.77718 0.00034894927 0.00031839578 + 81460 -6249.937 -6254.0447 4.1077079 3733.4677 632.13677 -10619.649 0 196.86441 0.00034990394 0.00032576433 + 81470 -6249.9571 -6254.1427 4.1856066 3734.1771 632.52909 -10620.849 0 200.59775 0.00039459783 0.00038162174 + 81480 -6249.9257 -6254.2523 4.3265893 3733.7175 633.093 -10621.063 0 207.35444 0.00047607284 0.0004705869 + 81490 -6249.7919 -6254.4414 4.6494892 3732.2069 633.68931 -10620.338 0 222.82961 0.00058184543 0.00057421015 + 81500 -6249.5751 -6254.653 5.0778717 3730.113 634.23838 -10619.004 0 243.3601 0.00069202537 0.00067451336 + 81510 -6249.3588 -6254.7364 5.3776146 3728.116 634.72725 -10617.58 0 257.72547 0.00078390281 0.00075727741 + 81520 -6249.2247 -6254.5769 5.3521585 3726.8317 635.17888 -10616.587 0 256.50546 0.00084202007 0.00081482489 + 81530 -6249.1844 -6254.2061 5.0216441 3726.5729 635.60648 -10616.385 0 240.66536 0.00086543224 0.0008464683 + 81540 -6249.1731 -6253.7925 4.6194777 3727.3038 635.98138 -10617.078 0 221.39129 0.00086465838 0.0008553209 + 81550 -6249.1088 -6253.5171 4.408249 3728.7826 636.23179 -10618.532 0 211.26802 0.00085010621 0.00084326217 + 81560 -6248.9622 -6253.439 4.476733 3730.7452 636.27118 -10620.455 0 214.55017 0.00082218488 0.00080837578 + 81570 -6248.7773 -6253.4635 4.6861908 3732.9709 636.04119 -10622.476 0 224.58856 0.00077236667 0.0007479108 + 81580 -6248.6307 -6253.4352 4.8045529 3735.1949 635.54915 -10624.179 0 230.26113 0.00069515666 0.00066525552 + 81590 -6248.5624 -6253.2765 4.7140763 3736.985 634.88327 -10625.145 0 225.92499 0.00060125841 0.00057543252 + 81600 -6248.5391 -6253.0541 4.5150427 3737.7564 634.19798 -10625.008 0 216.38618 0.00052010133 0.00050389074 + 81610 -6248.4813 -6252.9161 4.434771 3736.999 633.67254 -10623.588 0 212.53911 0.0004876065 0.00047784906 + 81620 -6248.3307 -6252.9574 4.6266999 3734.5962 633.45386 -10621.007 0 221.73742 0.00052662788 0.00051438802 + 81630 -6248.0961 -6253.1387 5.0426197 3731.0065 633.59942 -10617.745 0 241.67063 0.00063304447 0.00061130436 + 81640 -6247.8415 -6253.3244 5.4828744 3727.1627 634.04197 -10614.529 0 262.77011 0.00077582261 0.0007450929 + 81650 -6247.6312 -6253.3942 5.7629783 3724.142 634.59801 -10612.134 0 276.19426 0.00090967004 0.00087711161 + 81660 -6247.4798 -6253.328 5.8482203 3722.793 635.02593 -10611.147 0 280.27953 0.00099224779 0.00096565698 + 81670 -6247.3449 -6253.2047 5.8598232 3723.4915 635.11459 -10611.811 0 280.83561 0.00099780643 0.00097952889 + 81680 -6247.1637 -6253.1298 5.9661789 3726.0834 634.76783 -10613.981 0 285.93277 0.00092338152 0.00090863581 + 81690 -6246.9035 -6253.1483 6.2447287 3729.9776 634.05548 -10617.181 0 299.28244 0.00078821639 0.00076892409 + 81700 -6246.5925 -6253.2046 6.612104 3734.305 633.21532 -10620.725 0 316.88913 0.0006293196 0.00060070922 + 81710 -6246.3029 -6253.1849 6.8820104 3738.0788 632.60022 -10623.864 0 329.82455 0.00049539674 0.00046031894 + 81720 -6246.0952 -6253.017 6.9217941 3740.355 632.57563 -10625.948 0 331.73121 0.0004386031 0.00040561687 + 81730 -6245.9645 -6252.7452 6.7807048 3740.4439 633.3896 -10626.579 0 324.96942 0.00050140874 0.00047765557 + 81740 -6245.8441 -6252.5041 6.6600577 3738.1853 635.05698 -10625.746 0 319.18733 0.00069823239 0.00068323723 + 81750 -6245.6667 -6252.4008 6.7340842 3734.176 637.30469 -10623.882 0 322.7351 0.00099876969 0.0009850811 + 81760 -6245.4277 -6252.4146 6.9868497 3729.7439 639.60972 -10621.768 0 334.84904 0.0013257357 0.0013059916 + 81770 -6245.1884 -6252.4167 7.2282336 3726.5486 641.33309 -10620.298 0 346.41751 0.0015759304 0.0015496101 + 81780 -6245.016 -6252.2941 7.278087 3725.9308 641.91876 -10620.144 0 348.80677 0.0016595734 0.0016329646 + 81790 -6244.9188 -6252.0587 7.1398238 3728.3324 641.09414 -10621.485 0 342.18042 0.0015387803 0.0015183671 + 81800 -6244.8402 -6251.8371 6.9969128 3733.0973 638.99344 -10623.928 0 335.33132 0.0012444833 0.00123027 + 81810 -6244.7153 -6251.7541 7.038778 3738.7293 636.14653 -10626.63 0 337.33774 0.00086422898 0.00084939239 + 81820 -6244.5363 -6251.8145 7.2781413 3743.4365 633.32821 -10628.579 0 348.80937 0.00050985589 0.00048715747 + 81830 -6244.3658 -6251.8935 7.5276544 3745.6979 631.31719 -10628.909 0 360.76744 0.00028165346 0.00025078634 + 81840 -6244.2821 -6251.851 7.568956 3744.6632 630.64573 -10627.16 0 362.74684 0.00024188856 0.00021063868 + 81850 -6244.3022 -6251.6733 7.371122 3740.3467 631.42601 -10623.446 0 353.26553 0.00040162608 0.00037898591 + 81860 -6244.3586 -6251.5054 7.1467707 3733.659 633.31683 -10618.481 0 342.51335 0.00071851299 0.00070573273 + 81870 -6244.3601 -6251.5316 7.1714915 3726.2843 635.64459 -10613.46 0 343.69811 0.0011039748 0.0010922731 + 81880 -6244.2824 -6251.8049 7.5225476 3720.3419 637.63553 -10609.782 0 360.52269 0.0014425427 0.0014203752 + 81890 -6244.2049 -6252.1842 7.9792802 3717.7903 638.67755 -10608.652 0 382.41188 0.0016254952 0.00158931 + 81900 -6244.254 -6252.4454 8.1913756 3719.7061 638.52132 -10610.673 0 392.57668 0.0015920659 0.0015506749 + 81910 -6244.4922 -6252.4787 7.9864562 3725.7565 637.34836 -10615.584 0 382.75579 0.001359708 0.0013273238 + 81920 -6244.857 -6252.3962 7.539184 3734.2169 635.68206 -10622.295 0 361.32 0.0010221154 0.0010054236 + 81930 -6245.2193 -6252.4334 7.214062 3742.6243 634.18304 -10629.241 0 345.73833 0.0007089318 0.00070035768 + 81940 -6245.5145 -6252.7193 7.2047415 3748.7586 633.41487 -10634.893 0 345.29164 0.00052736376 0.00051188306 + 81950 -6245.8091 -6253.1377 7.3285782 3751.4067 633.66293 -10638.207 0 351.22659 0.00052034774 0.00048979787 + 81960 -6246.2269 -6253.4278 7.2009117 3750.5427 634.85767 -10638.828 0 345.10809 0.0006631402 0.00062385046 + 81970 -6246.8088 -6253.4227 6.6139963 3746.9961 636.62096 -10637.04 0 316.97981 0.00089111373 0.00085746012 + 81980 -6247.4575 -6253.185 5.7275283 3741.975 638.41436 -10633.574 0 274.4953 0.001132792 0.0011139058 + 81990 -6248.0227 -6252.9272 4.904563 3736.736 639.72662 -10629.39 0 235.05418 0.0013288991 0.0013216583 + 82000 -6248.4194 -6252.8255 4.4061238 3732.4211 640.22418 -10625.471 0 211.16618 0.0014379537 0.0014312493 + 82010 -6248.6693 -6252.9061 4.2368709 3729.9281 639.81957 -10622.654 0 203.05463 0.0014384741 0.0014229284 + 82020 -6248.8555 -6253.0736 4.2181274 3729.7368 638.65673 -10621.467 0 202.15633 0.0013324695 0.0013070686 + 82030 -6249.0533 -6253.2219 4.1685172 3731.7548 637.03806 -10622.015 0 199.77873 0.0011469866 0.0011186015 + 82040 -6249.284 -6253.326 4.0420211 3735.3004 635.32426 -10623.951 0 193.71633 0.0009289368 0.00090637945 + 82050 -6249.5114 -6253.4563 3.9448707 3739.2909 633.83675 -10626.584 0 189.06034 0.0007323495 0.00071966996 + 82060 -6249.6756 -6253.7125 4.0369426 3742.5933 632.78989 -10629.096 0 193.47294 0.00060193682 0.00059554746 + 82070 -6249.7405 -6254.1271 4.3866214 3744.3989 632.26942 -10630.795 0 210.23151 0.00055944958 0.00055104254 + 82080 -6249.7256 -6254.6092 4.8835922 3744.4494 632.25388 -10631.312 0 234.04914 0.00059908827 0.00058225645 + 82090 -6249.6949 -6254.9844 5.2894879 3743.0126 632.65832 -10630.655 0 253.50194 0.00069472749 0.00067006962 + 82100 -6249.7066 -6255.1088 5.4022574 3740.6548 633.37617 -10629.14 0 258.90649 0.0008151882 0.00078954012 + 82110 -6249.7651 -6254.9669 5.2018637 3737.9847 634.30496 -10627.257 0 249.30249 0.00093813507 0.00091853549 + 82120 -6249.8192 -6254.671 4.8517475 3735.527 635.35322 -10625.551 0 232.52296 0.0010539794 0.0010416534 + 82130 -6249.808 -6254.3659 4.5579031 3733.7381 636.43328 -10624.537 0 218.44029 0.0011589269 0.0011484575 + 82140 -6249.7126 -6254.1206 4.407961 3733.053 637.4488 -10624.622 0 211.25423 0.0012446517 0.0012289374 + 82150 -6249.5714 -6253.8937 4.3222934 3733.8358 638.28865 -10626.018 0 207.14855 0.0012943114 0.0012710367 + 82160 -6249.446 -6253.6013 4.1552772 3736.2133 638.83587 -10628.651 0 199.1442 0.0012893423 0.0012633401 + 82170 -6249.3654 -6253.2259 3.8604358 3739.8961 638.9938 -10632.116 0 185.01374 0.0012225163 0.0012017131 + 82180 -6249.295 -6252.8673 3.5723163 3744.1419 638.72179 -10635.731 0 171.20544 0.001107031 0.001095255 + 82190 -6249.1576 -6252.6817 3.5240773 3747.9361 638.06662 -10638.684 0 168.89356 0.0009743169 0.00096729912 + 82200 -6248.8908 -6252.7553 3.8645041 3750.3155 637.17519 -10640.246 0 185.20872 0.00086240857 0.00085080144 + 82210 -6248.4937 -6253.024 4.5303221 3750.6639 636.27711 -10639.965 0 217.11846 0.00080339001 0.00078057242 + 82220 -6248.0275 -6253.3173 5.2897985 3748.8418 635.63056 -10637.79 0 253.51682 0.00081683628 0.00078478207 + 82230 -6247.5637 -6253.4941 5.9303958 3745.1463 635.43676 -10634.077 0 284.21784 0.00090882794 0.00087644594 + 82240 -6247.1234 -6253.5462 6.4227638 3740.2184 635.7498 -10629.514 0 307.81488 0.0010705162 0.0010455246 + 82250 -6246.6705 -6253.566 6.8955907 3734.9942 636.42673 -10624.987 0 330.4754 0.0012727583 0.0012547022 + 82260 -6246.1733 -6253.615 7.4416426 3730.6523 637.15469 -10621.422 0 356.64527 0.0014626651 0.0014439379 + 82270 -6245.6689 -6253.6313 7.9624194 3728.4077 637.55827 -10619.597 0 381.60381 0.0015732233 0.0015468825 + 82280 -6245.251 -6253.4744 8.2234004 3729.1001 637.35037 -10619.925 0 394.11149 0.0015493534 0.0015157171 + 82290 -6244.992 -6253.0593 8.067273 3732.7551 636.46617 -10622.281 0 386.62899 0.0013781548 0.001343836 + 82300 -6244.8784 -6252.4487 7.57028 3738.4154 635.12081 -10625.985 0 362.81029 0.0011032981 0.0010742387 + 82310 -6244.8278 -6251.8229 6.9951713 3744.4104 633.76118 -10629.995 0 335.24786 0.00081258017 0.00078826711 + 82320 -6244.7608 -6251.3608 6.5999975 3748.9523 632.92575 -10633.239 0 316.30891 0.0006054348 0.00057956327 + 82330 -6244.6588 -6251.1382 6.4793953 3750.7603 633.06137 -10634.96 0 310.52898 0.00055765954 0.00052406708 + 82340 -6244.5636 -6251.115 6.5514025 3749.4467 634.36079 -10634.923 0 313.97997 0.00069767345 0.00065608994 + 82350 -6244.533 -6251.2003 6.6673868 3745.5656 636.67606 -10633.442 0 319.53859 0.00099962809 0.00095661915 + 82360 -6244.588 -6251.3369 6.748891 3740.3804 639.53573 -10631.253 0 323.44472 0.0013921281 0.0013564437 + 82370 -6244.6892 -6251.5433 6.8540887 3735.4832 642.25988 -10629.286 0 328.48639 0.0017779873 0.0017535072 + 82380 -6244.7625 -6251.8769 7.1144171 3732.4002 644.14338 -10628.42 0 340.96279 0.0020585432 0.0020403444 + 82390 -6244.7638 -6252.3389 7.5751003 3732.2508 644.66112 -10629.251 0 363.04131 0.0021569698 0.0021345117 + 82400 -6244.7272 -6252.8097 8.0824988 3735.4541 643.63595 -10631.9 0 387.35869 0.0020382551 0.0020038607 + 82410 -6244.7464 -6253.0971 8.3506648 3741.4978 641.31053 -10635.905 0 400.21071 0.0017236502 0.0016791569 + 82420 -6244.8974 -6253.0717 8.174285 3748.9 638.28922 -10640.261 0 391.7576 0.0012930752 0.0012486177 + 82430 -6245.1714 -6252.7732 7.6018349 3755.5212 635.36171 -10643.656 0 364.32258 0.00086766422 0.00083356086 + 82440 -6245.4807 -6252.3947 6.9139229 3759.2222 633.26615 -10644.883 0 331.35398 0.00057278149 0.00055149327 + 82450 -6245.7285 -6252.1563 6.4277989 3758.6343 632.4728 -10643.263 0 308.05619 0.00049439916 0.00047905847 + 82460 -6245.8799 -6252.1648 6.2848688 3753.7049 633.05796 -10638.928 0 301.20618 0.00064768922 0.00062806665 + 82470 -6245.9819 -6252.3594 6.3775598 3745.7673 634.70158 -10632.828 0 305.64845 0.00097201617 0.00094296979 + 82480 -6246.1179 -6252.5855 6.4676495 3737.0899 636.80197 -10626.477 0 309.96606 0.0013550895 0.0013204913 + 82490 -6246.3343 -6252.735 6.4006976 3730.0956 638.67082 -10621.501 0 306.75734 0.0016757222 0.0016443954 + 82500 -6246.6003 -6252.8297 6.2293644 3726.6005 639.75072 -10619.181 0 298.5461 0.0018455107 0.0018227788 + 82510 -6246.8405 -6252.9733 6.132798 3727.3695 639.78717 -10620.13 0 293.91809 0.0018318855 0.001814548 + 82520 -6247.0073 -6253.2216 6.2143164 3732.07 638.8969 -10624.189 0 297.82491 0.0016578016 0.0016371381 + 82530 -6247.1254 -6253.4999 6.3744993 3739.4932 637.50955 -10630.503 0 305.50178 0.0013859474 0.0013558306 + 82540 -6247.269 -6253.6475 6.3785421 3747.8817 636.20595 -10637.735 0 305.69553 0.0010983195 0.0010610271 + 82550 -6247.492 -6253.5488 6.0568001 3755.2989 635.51303 -10644.361 0 290.27585 0.00087681045 0.00084141426 + 82560 -6247.7764 -6253.2396 5.4632637 3760.0447 635.7278 -10649.012 0 261.83025 0.00078499911 0.00075974696 + 82570 -6248.0421 -6252.8974 4.8552914 3761.0824 636.82922 -10650.809 0 232.69281 0.00085112096 0.00083632049 + 82580 -6248.2123 -6252.7176 4.5053763 3758.3627 638.50084 -10649.581 0 215.92291 0.0010564183 0.0010440006 + 82590 -6248.2763 -6252.7728 4.4964337 3752.881 640.24666 -10645.9 0 215.49433 0.0013366992 0.0013171039 + 82600 -6248.298 -6252.9756 4.6776595 3746.367 641.55354 -10640.896 0 224.17969 0.0016024938 0.0015729378 + 82610 -6248.3589 -6253.1818 4.8228814 3740.6776 642.04561 -10635.905 0 231.13954 0.001772776 0.0017393633 + 82620 -6248.4886 -6253.328 4.8393113 3737.1696 641.58615 -10632.084 0 231.92695 0.0018056102 0.0017774546 + 82630 -6248.6451 -6253.4715 4.8264574 3736.3573 640.29947 -10630.128 0 231.31092 0.0017085785 0.0016897333 + 82640 -6248.7603 -6253.7031 4.9427717 3737.9648 638.5109 -10630.179 0 236.88535 0.0015254959 0.0015121418 + 82650 -6248.8044 -6254.0304 5.2259659 3741.2291 636.63264 -10631.892 0 250.45761 0.0013116151 0.0012964145 + 82660 -6248.8074 -6254.3485 5.5411332 3745.2169 635.04199 -10634.607 0 265.5622 0.0011137013 0.0010925483 + 82670 -6248.8257 -6254.5194 5.6936669 3749.0189 633.99537 -10637.534 0 272.87246 0.00096294006 0.00093783167 + 82680 -6248.8896 -6254.4781 5.5885074 3751.8498 633.59961 -10639.928 0 267.83263 0.00087727018 0.00085339591 + 82690 -6248.9804 -6254.2693 5.288826 3753.1427 633.83413 -10641.246 0 253.47022 0.00086503811 0.00084566071 + 82700 -6249.0543 -6253.9941 4.9398127 3752.6659 634.59891 -10641.259 0 236.74354 0.00092556814 0.00090957653 + 82710 -6249.0812 -6253.7304 4.649182 3750.603 635.75963 -10640.093 0 222.81489 0.0010481718 0.0010318547 + 82720 -6249.0639 -6253.4953 4.4314662 3747.5282 637.17254 -10638.196 0 212.38073 0.0012128359 0.0011935385 + 82730 -6249.0254 -6253.2693 4.2439136 3744.265 638.68656 -10636.221 0 203.39215 0.0013933925 0.0013717229 + 82740 -6248.9831 -6253.0493 4.0661833 3741.6764 640.13211 -10634.858 0 194.87432 0.0015616354 0.0015406057 + 82750 -6248.9282 -6252.8819 3.9536861 3740.4625 641.31302 -10634.657 0 189.48282 0.0016907363 0.0016727446 + 82760 -6248.8277 -6252.8445 4.0167723 3741.0253 642.02038 -10635.89 0 192.50627 0.0017575674 0.0017418925 + 82770 -6248.6477 -6252.9815 4.3337382 3743.4152 642.07791 -10638.475 0 207.69705 0.001745096 0.001728357 + 82780 -6248.3797 -6253.2499 4.8702152 3747.3143 641.40829 -10641.972 0 233.40804 0.001646969 0.0016263952 + 82790 -6248.0459 -6253.5336 5.4876344 3752.0209 640.0913 -10645.646 0 262.99823 0.0014748211 0.0014511695 + 82800 -6247.6766 -6253.7207 6.0441638 3756.4774 638.38204 -10648.58 0 289.67024 0.0012643138 0.001241218 + 82810 -6247.2801 -6253.7738 6.4937218 3759.4427 636.67226 -10649.889 0 311.21558 0.0010725788 0.0010526626 + 82820 -6246.8404 -6253.7259 6.8854501 3759.848 635.39926 -10648.973 0 329.9894 0.00096290922 0.00094451878 + 82830 -6246.3473 -6253.6151 7.2678246 3757.2165 634.92522 -10645.757 0 348.31494 0.0009812367 0.00095927283 + 82840 -6245.8289 -6253.4254 7.5964711 3751.9347 635.41977 -10640.78 0 364.06552 0.0011356865 0.0011061648 + 82850 -6245.3528 -6253.0924 7.7395605 3745.2165 636.78262 -10635.092 0 370.92317 0.001389716 0.0013541636 + 82860 -6244.9842 -6252.5733 7.5890661 3738.7582 638.63975 -10629.971 0 363.71063 0.0016725395 0.0016380642 + 82870 -6244.7334 -6251.9258 7.1924485 3734.2238 640.4312 -10626.581 0 344.70249 0.001902343 0.0018764325 + 82880 -6244.5386 -6251.3195 6.7809603 3732.7724 641.57847 -10625.67 0 324.98167 0.0020121138 0.0019959155 + 82890 -6244.3096 -6250.9453 6.6357529 3734.7873 641.68281 -10627.415 0 318.02251 0.0019680921 0.0019542483 + 82900 -6244.0017 -6250.8797 6.8779387 3739.839 640.6812 -10631.4 0 329.62942 0.0017770963 0.0017550947 + 82910 -6243.6578 -6251.024 7.3662649 3746.7958 638.89293 -10636.713 0 353.03275 0.0014854447 0.0014505943 + 82920 -6243.3739 -6251.1895 7.8156289 3754.0143 636.92787 -10642.132 0 374.56879 0.0011721822 0.0011300675 + 82930 -6243.2146 -6251.2583 8.0437387 3759.6443 635.48447 -10646.387 0 385.50109 0.00093404102 0.00089581138 + 82940 -6243.1563 -6251.2692 8.1129513 3762.1024 635.11386 -10648.485 0 388.81815 0.0008584876 0.00083109364 + 82950 -6243.1173 -6251.3516 8.2342994 3760.625 636.03757 -10648.014 0 394.63383 0.00099019137 0.00097058733 + 82960 -6243.0403 -6251.5799 8.5396029 3755.6511 638.07657 -10645.308 0 409.26568 0.0013069665 0.0012851811 + 82970 -6242.9506 -6251.8863 8.9357096 3748.7881 640.70523 -10641.38 0 428.24934 0.0017205786 0.0016884966 + 82980 -6242.9405 -6252.0983 9.1577416 3742.3001 643.20864 -10637.607 0 438.89036 0.0021054611 0.0020638796 + 82990 -6243.0949 -6252.0705 8.9756653 3738.2902 644.8973 -10635.258 0 430.16425 0.0023443461 0.0023026421 + 83000 -6243.4162 -6251.8101 8.3939196 3737.9292 645.31562 -10635.055 0 402.28373 0.0023712242 0.0023397993 + 83010 -6243.817 -6251.4936 7.6766685 3741.0927 644.37781 -10636.964 0 367.90903 0.0021923826 0.0021740049 + 83020 -6244.1891 -6251.3543 7.1651805 3746.5525 642.38524 -10640.292 0 343.39566 0.001877219 0.001864519 + 83030 -6244.4884 -6251.5206 7.0321925 3752.5556 639.92033 -10643.997 0 337.02212 0.0015264044 0.0015076441 + 83040 -6244.7647 -6251.9332 7.1684887 3757.4553 637.65498 -10647.044 0 343.5542 0.0012347139 0.0012030987 + 83050 -6245.1168 -6252.3986 7.2818164 3760.13 636.13857 -10648.667 0 348.9855 0.0010642891 0.0010234143 + 83060 -6245.6077 -6252.7332 7.1255327 3760.1276 635.63595 -10648.497 0 341.49551 0.0010352636 0.00099640664 + 83070 -6246.2065 -6252.8894 6.6828805 3757.6245 636.07054 -10646.584 0 320.28113 0.0011309206 0.0011041594 + 83080 -6246.8053 -6252.9676 6.1622818 3753.3167 637.09054 -10643.375 0 295.33112 0.0013088678 0.001295046 + 83090 -6247.2996 -6253.1044 5.8048354 3748.2939 638.22471 -10639.623 0 278.20028 0.0015116377 0.0015019163 + 83100 -6247.6624 -6253.3337 5.6713041 3743.8542 639.05778 -10636.246 0 271.80071 0.0016774466 0.0016609163 + 83110 -6247.9483 -6253.5513 5.6030386 3741.1923 639.35667 -10634.1 0 268.52905 0.0017554592 0.0017280992 + 83120 -6248.2294 -6253.6203 5.3909063 3741.0078 639.1125 -10633.741 0 258.36248 0.0017240481 0.001691083 + 83130 -6248.5266 -6253.5109 4.9842253 3743.2332 638.50477 -10635.249 0 238.87204 0.0016015769 0.0015716152 + 83140 -6248.7984 -6253.3331 4.5347766 3747.0787 637.81858 -10638.23 0 217.33194 0.001439396 0.0014165439 + 83150 -6248.9901 -6253.2356 4.2455095 3751.3858 637.34856 -10641.97 0 203.46864 0.0012987472 0.0012801867 + 83160 -6249.0883 -6253.2795 4.1912195 3755.0725 637.31121 -10645.663 0 200.86676 0.001225445 0.0012057355 + 83170 -6249.1268 -6253.4134 4.2865872 3757.43 637.7796 -10648.623 0 205.43731 0.0012363131 0.0012130165 + 83180 -6249.1492 -6253.5547 4.4055595 3758.198 638.65706 -10650.41 0 211.13913 0.0013207087 0.0012956899 + 83190 -6249.1697 -6253.6755 4.5057785 3757.5042 639.70606 -10650.886 0 215.94219 0.0014503613 0.0014265387 + 83200 -6249.1716 -6253.8068 4.6351874 3755.7697 640.63017 -10650.207 0 222.14419 0.0015894627 0.0015673464 + 83210 -6249.1356 -6253.977 4.8414409 3753.6004 641.17792 -10648.755 0 232.02901 0.0017025271 0.0016800988 + 83220 -6249.0649 -6254.1616 5.0966242 3751.6367 641.22285 -10647.021 0 244.25883 0.0017619007 0.0017372488 + 83230 -6248.9833 -6254.2938 5.3104658 3750.3715 640.78917 -10645.454 0 254.50732 0.001755417 0.0017289239 + 83240 -6248.9114 -6254.3177 5.4062961 3750.0054 640.0219 -10644.345 0 259.10004 0.0016906934 0.0016645719 + 83250 -6248.8486 -6254.2277 5.3791497 3750.4142 639.12371 -10643.766 0 257.79904 0.0015917378 0.0015676317 + 83260 -6248.7766 -6254.058 5.2813704 3751.2472 638.28682 -10643.592 0 253.1129 0.0014879157 0.0014652008 + 83270 -6248.6828 -6253.839 5.1561726 3752.0993 637.64211 -10643.58 0 247.11272 0.0014013032 0.0013779447 + 83280 -6248.5751 -6253.5701 4.9950134 3752.6571 637.23703 -10643.464 0 239.38907 0.0013403241 0.0013153568 + 83290 -6248.4734 -6253.2429 4.7695207 3752.748 637.04442 -10643.035 0 228.5822 0.0013028634 0.001277658 + 83300 -6248.3854 -6252.8859 4.5005552 3752.3093 636.99661 -10642.192 0 215.69186 0.0012846339 0.0012614539 + 83310 -6248.296 -6252.5756 4.2796493 3751.3555 637.0325 -10640.964 0 205.10481 0.0012854565 0.0012649596 + 83320 -6248.1808 -6252.396 4.2152664 3749.992 637.13883 -10639.527 0 202.01922 0.0013097995 0.0012902044 + 83330 -6248.0263 -6252.388 4.3616917 3748.4486 637.36459 -10638.201 0 209.03674 0.0013632285 0.0013417786 + 83340 -6247.8379 -6252.5324 4.6944751 3747.0814 637.79384 -10637.408 0 224.98559 0.0014477376 0.0014227994 + 83350 -6247.6333 -6252.7695 5.1362509 3746.3187 638.48158 -10637.57 0 246.15796 0.0015573292 0.001529427 + 83360 -6247.4317 -6253.0303 5.5986012 3746.5616 639.38357 -10638.975 0 268.31638 0.0016750626 0.0016464842 + 83370 -6247.2445 -6253.2621 6.0175449 3748.0574 640.32621 -10641.646 0 288.39452 0.0017743047 0.0017476848 + 83380 -6247.0683 -6253.4447 6.3763096 3750.7822 641.04962 -10645.276 0 305.58853 0.0018262259 0.0018026199 + 83390 -6246.8868 -6253.5862 6.6993881 3754.3828 641.31489 -10649.284 0 321.07227 0.0018113041 0.001788785 + 83400 -6246.6877 -6253.6915 7.003852 3758.2176 641.02371 -10652.933 0 335.66389 0.0017289449 0.001703292 + 83410 -6246.4841 -6253.7268 7.2426726 3761.4838 640.2866 -10655.497 0 347.10951 0.0016006125 0.0015683977 + 83420 -6246.3152 -6253.6253 7.3100981 3763.3792 639.40085 -10656.405 0 350.34092 0.0014659483 0.0014276568 + 83430 -6246.2178 -6253.3404 7.1225806 3763.2682 638.7436 -10655.352 0 341.35403 0.0013730444 0.0013332442 + 83440 -6246.1959 -6252.897 6.7011615 3760.858 638.62336 -10652.378 0 321.15726 0.0013637955 0.0013280549 + 83450 -6246.2139 -6252.3968 6.1829467 3756.3632 639.14928 -10647.909 0 296.3215 0.001457215 0.0014281818 + 83460 -6246.2172 -6251.9756 5.758359 3750.5832 640.16921 -10642.728 0 275.97288 0.0016368724 0.0016121934 + 83470 -6246.1645 -6251.7363 5.5718103 3744.8183 641.30254 -10637.857 0 267.03241 0.0018490918 0.0018226722 + 83480 -6246.055 -6251.6929 5.6378967 3740.5896 642.06156 -10634.344 0 270.19964 0.0020157895 0.0019820845 + 83490 -6245.9316 -6251.7681 5.8364379 3739.1875 642.0236 -10632.979 0 279.71485 0.002061032 0.0020195984 + 83500 -6245.8492 -6251.8596 6.0104357 3741.1693 640.99643 -10634.025 0 288.0538 0.001943427 0.0018998439 + 83510 -6245.829 -6251.9257 6.0966636 3746.032 639.11801 -10637.076 0 292.18633 0.0016799212 0.001641732 + 83520 -6245.8407 -6252.0116 6.1709104 3752.2787 636.84873 -10641.139 0 295.74465 0.0013469108 0.0013177934 + 83530 -6245.8289 -6252.1927 6.3637992 3757.9152 634.84803 -10644.956 0 304.98897 0.0010549244 0.0010321056 + 83540 -6245.762 -6252.4894 6.7273768 3761.1652 633.769 -10647.424 0 322.41364 0.00090741487 0.00088433156 + 83550 -6245.6583 -6252.8304 7.1720652 3761.092 634.03807 -10647.96 0 343.7256 0.00096210988 0.00093372806 + 83560 -6245.5721 -6253.0927 7.5205161 3757.8891 635.69549 -10646.677 0 360.42533 0.0012106435 0.0011770522 + 83570 -6245.5524 -6253.1821 7.629673 3752.7694 638.35494 -10644.306 0 365.65674 0.0015827043 0.0015484338 + 83580 -6245.6067 -6253.0949 7.4881845 3747.5289 641.30455 -10641.928 0 358.87582 0.0019706162 0.0019405438 + 83590 -6245.7003 -6252.9152 7.2149469 3743.9628 643.72519 -10640.603 0 345.78074 0.0022635223 0.0022388507 + 83600 -6245.7895 -6252.7475 6.9580163 3743.3283 644.95704 -10641.033 0 333.46718 0.0023796545 0.0023573834 + 83610 -6245.8601 -6252.6389 6.7788072 3745.9919 644.721 -10643.352 0 324.87848 0.0022890931 0.0022653222 + 83620 -6245.9346 -6252.5594 6.624788 3751.3164 643.21116 -10647.087 0 317.49701 0.0020230664 0.0019968571 + 83630 -6246.0425 -6252.4546 6.412156 3757.8079 641.0195 -10651.282 0 307.30649 0.0016667852 0.0016407325 + 83640 -6246.1859 -6252.3157 6.1298258 3763.5247 638.91767 -10654.758 0 293.77564 0.0013342794 0.0013113464 + 83650 -6246.3375 -6252.1933 5.8557529 3766.6815 637.57985 -10656.455 0 280.64054 0.0011300811 0.0011101974 + 83660 -6246.4711 -6252.1481 5.6769931 3766.2607 637.35372 -10655.763 0 272.07336 0.0011117291 0.0010917153 + 83670 -6246.5904 -6252.1993 5.6089311 3762.374 638.16287 -10652.736 0 268.81145 0.0012701098 0.0012466656 + 83680 -6246.7277 -6252.3217 5.5940831 3756.2071 639.56679 -10648.096 0 268.09985 0.0015363463 0.0015087721 + 83690 -6246.919 -6252.481 5.562039 3749.5821 640.94433 -10643.007 0 266.56412 0.0018102725 0.0017804978 + 83700 -6247.1835 -6252.6605 5.4770118 3744.3366 641.72643 -10638.724 0 262.48914 0.0019968983 0.0019675129 + 83710 -6247.5204 -6252.8574 5.337049 3741.7599 641.59326 -10636.211 0 255.78134 0.0020373687 0.0020099316 + 83720 -6247.9163 -6253.0681 5.1517212 3742.2608 640.56885 -10635.898 0 246.89939 0.0019255164 0.0019002917 + 83730 -6248.3503 -6253.2834 4.9331625 3745.3435 638.98704 -10637.614 0 236.42483 0.0017058901 0.0016824377 + 83740 -6248.7965 -6253.4947 4.6981972 3749.8688 637.35378 -10640.717 0 225.16397 0.0014545192 0.0014323015 + 83750 -6249.2304 -6253.6957 4.4653031 3754.481 636.16752 -10644.344 0 214.00238 0.0012503537 0.0012291274 + 83760 -6249.6326 -6253.8839 4.2513507 3758.0292 635.76272 -10647.676 0 203.74858 0.0011492875 0.0011291452 + 83770 -6249.9888 -6254.0656 4.0767557 3759.8519 636.22106 -10650.139 0 195.38101 0.0011698848 0.0011507696 + 83780 -6250.2891 -6254.2544 3.9652351 3759.8734 637.36856 -10651.496 0 190.03631 0.0012930046 0.0012741379 + 83790 -6250.5316 -6254.4557 3.9240995 3758.53 638.85239 -10651.838 0 188.06487 0.00147236 0.0014524955 + 83800 -6250.7273 -6254.6486 3.9213417 3756.5647 640.26839 -10651.482 0 187.9327 0.0016514251 0.0016301118 + 83810 -6250.8957 -6254.788 3.8922426 3754.7524 641.29251 -10650.833 0 186.53811 0.0017817992 0.0017605089 + 83820 -6251.0511 -6254.8357 3.7845311 3753.6447 641.76862 -10650.249 0 181.37596 0.0018376852 0.0018192915 + 83830 -6251.1874 -6254.7943 3.6069876 3753.4277 641.72426 -10649.946 0 172.86708 0.0018213139 0.001807784 + 83840 -6251.2798 -6254.7084 3.4286839 3753.9494 641.31889 -10649.977 0 164.32177 0.0017567627 0.001746983 + 83850 -6251.3064 -6254.6234 3.3169985 3754.8834 640.75627 -10650.263 0 158.96918 0.001675112 0.0016652214 + 83860 -6251.2707 -6254.5409 3.2702154 3755.9147 640.20084 -10650.656 0 156.72707 0.0015991856 0.001585612 + 83870 -6251.2023 -6254.4202 3.2178562 3756.8369 639.72753 -10650.985 0 154.21773 0.0015364368 0.0015189794 + 83880 -6251.1328 -6254.2308 3.0979546 3757.5284 639.3176 -10651.077 0 148.47137 0.0014826384 0.0014645427 + 83890 -6251.0667 -6254.0046 2.9378732 3757.8762 638.89621 -10650.777 0 140.79937 0.0014314648 0.0014162323 + 83900 -6250.9761 -6253.831 2.8548381 3757.7391 638.39371 -10649.964 0 136.81986 0.0013821951 0.0013701146 + 83910 -6250.8236 -6253.7918 2.9681944 3756.9893 637.80488 -10648.586 0 142.25253 0.001341439 0.0013291948 + 83920 -6250.593 -6253.8929 3.2999029 3755.5911 637.2206 -10646.705 0 158.14986 0.0013205067 0.0013043533 + 83930 -6250.3023 -6254.0557 3.7533964 3753.6491 636.81489 -10644.52 0 179.88382 0.0013321376 0.0013117149 + 83940 -6249.9857 -6254.1798 4.194058 3751.4005 636.78401 -10642.364 0 201.00279 0.0013876995 0.001366704 + 83950 -6249.6602 -6254.221 4.5607783 3749.1838 637.25582 -10640.661 0 218.57809 0.0014926115 0.0014752864 + 83960 -6249.3092 -6254.2093 4.9001432 3747.4329 638.2079 -10639.85 0 234.84236 0.0016385454 0.0016251379 + 83970 -6248.9059 -6254.1919 5.2859764 3746.6803 639.43905 -10640.311 0 253.33365 0.0017964908 0.001782219 + 83980 -6248.4548 -6254.1618 5.7069668 3747.4835 640.61935 -10642.265 0 273.50987 0.0019190411 0.0018978476 + 83990 -6248.0074 -6254.0467 6.0393204 3750.2117 641.40816 -10645.667 0 289.43812 0.0019565379 0.0019262984 + 84000 -6247.6327 -6253.7668 6.1340473 3754.7509 641.59473 -10650.112 0 293.97796 0.0018815519 0.0018461306 + 84010 -6247.368 -6253.3103 5.9422272 3760.3047 641.19929 -10654.814 0 284.78487 0.0017084206 0.0016748115 + 84020 -6247.1914 -6252.7639 5.5725454 3765.4672 640.48467 -10658.716 0 267.06765 0.0014955352 0.0014684175 + 84030 -6247.0398 -6252.2696 5.2297789 3768.6203 639.86706 -10660.757 0 250.64035 0.0013266098 0.0013047907 + 84040 -6246.8587 -6251.935 5.0763381 3768.5232 639.75737 -10660.216 0 243.28661 0.0012779935 0.0012557946 + 84050 -6246.6408 -6251.7688 5.1280406 3764.8265 640.38982 -10656.985 0 245.76448 0.0013865957 0.0013590839 + 84060 -6246.4236 -6251.6989 5.2752883 3758.266 641.69931 -10651.664 0 252.82141 0.0016329919 0.0016004225 + 84070 -6246.2468 -6251.659 5.4122296 3750.4555 643.29845 -10645.413 0 259.38441 0.0019465247 0.0019138844 + 84080 -6246.1083 -6251.6629 5.5545785 3743.3988 644.57829 -10639.64 0 266.20657 0.0022286492 0.0022006119 + 84090 -6245.9619 -6251.7919 5.8300698 3738.9306 644.91239 -10635.635 0 279.40965 0.0023839043 0.0023599373 + 84100 -6245.7613 -6252.1004 6.3391224 3738.2513 643.89605 -10634.248 0 303.80632 0.0023480153 0.0023226158 + 84110 -6245.514 -6252.528 7.0139664 3741.6154 641.52868 -10635.672 0 336.14863 0.0021075496 0.0020759029 + 84120 -6245.2876 -6252.9138 7.6262157 3748.1899 638.26335 -10639.367 0 365.49105 0.0017091228 0.0016728359 + 84130 -6245.1537 -6253.1156 7.9618762 3756.1484 634.89881 -10644.163 0 381.57778 0.001254891 0.0012215754 + 84140 -6245.1186 -6253.1255 8.0068877 3763.0999 632.35046 -10648.576 0 383.73499 0.00087928495 0.00085542437 + 84150 -6245.1155 -6253.0635 7.9479747 3766.8355 631.37875 -10651.278 0 380.91154 0.0007071566 0.00069094096 + 84160 -6245.0742 -6253.0398 7.9656019 3766.154 632.35945 -10651.553 0 381.75634 0.00080608492 0.0007879656 + 84170 -6244.9999 -6253.0218 8.021951 3761.3711 635.15743 -10649.55 0 384.4569 0.0011554478 0.0011268586 + 84180 -6244.974 -6252.8511 7.8770937 3754.2123 639.13812 -10646.202 0 377.51453 0.001650924 0.0016128952 + 84190 -6245.0701 -6252.4103 7.3402293 3747.1185 643.32734 -10642.856 0 351.78497 0.002144639 0.0021073877 + 84200 -6245.2701 -6251.7764 6.5063686 3742.3302 646.69215 -10640.799 0 311.82169 0.0025002483 0.0024737014 + 84210 -6245.4719 -6251.2028 5.730879 3741.1949 648.45895 -10640.857 0 274.65588 0.0026354865 0.0026198994 + 84220 -6245.5779 -6250.937 5.3590719 3743.9237 648.34934 -10643.21 0 256.8368 0.0025373297 0.0025229842 + 84230 -6245.5775 -6251.037 5.4595792 3749.7193 646.63954 -10647.396 0 261.65367 0.0022535153 0.002229705 + 84240 -6245.5528 -6251.3454 5.7925569 3757.0671 644.02353 -10652.436 0 277.61183 0.0018725203 0.0018375568 + 84250 -6245.6051 -6251.6408 6.0356902 3764.0657 641.34126 -10657.048 0 289.26414 0.0015002868 0.0014632789 + 84260 -6245.7621 -6251.8321 6.0700561 3768.8202 639.28604 -10659.938 0 290.91115 0.0012352073 0.0012076063 + 84270 -6245.9518 -6252.0182 6.0663388 3769.9347 638.20687 -10660.16 0 290.73299 0.0011417732 0.0011262512 + 84280 -6246.0729 -6252.3613 6.2884005 3767.0006 638.06693 -10657.429 0 301.37544 0.0012289643 0.0012161073 + 84290 -6246.0976 -6252.8948 6.7972597 3760.8303 638.54111 -10652.266 0 325.76282 0.0014447003 0.0014210028 + 84300 -6246.1139 -6253.4468 7.3329842 3753.2222 639.18557 -10645.855 0 351.43775 0.0016945502 0.001654849 + 84310 -6246.262 -6253.7585 7.4965161 3746.2839 639.60817 -10639.651 0 359.27511 0.0018809668 0.001834089 + 84320 -6246.6107 -6253.6992 7.0885483 3741.6292 639.58911 -10634.918 0 339.72301 0.0019452142 0.0019071016 + 84330 -6247.087 -6253.3876 6.3006712 3739.8821 639.12632 -10632.396 0 301.96352 0.0018882108 0.0018680943 + 84340 -6247.5375 -6253.1018 5.5643641 3740.7356 638.40423 -10632.242 0 266.67555 0.0017577525 0.0017499955 + 84350 -6247.8634 -6253.0502 5.186809 3743.4233 637.70453 -10634.178 0 248.58099 0.001613212 0.0016025188 + 84360 -6248.0969 -6253.2106 5.1136756 3747.1941 637.29129 -10637.696 0 245.07603 0.001494165 0.0014692466 + 84370 -6248.3521 -6253.3814 5.0292694 3751.4779 637.31218 -10642.171 0 241.03081 0.0014121812 0.001375269 + 84380 -6248.7066 -6253.3855 4.6788764 3755.7597 637.75606 -10646.901 0 224.23801 0.0013637152 0.0013277149 + 84390 -6249.1293 -6253.2329 4.1036271 3759.433 638.4839 -10651.15 0 196.66884 0.0013465965 0.0013233328 + 84400 -6249.514 -6253.1025 3.588528 3761.8563 639.30992 -10654.269 0 171.9824 0.0013649428 0.0013554529 + 84410 -6249.7731 -6253.1774 3.4042418 3762.5949 640.0836 -10655.856 0 163.15037 0.0014219123 0.0014166654 + 84420 -6249.903 -6253.4883 3.585383 3761.6434 640.73167 -10655.863 0 171.83167 0.0015108615 0.0014985305 + 84430 -6249.9766 -6253.8948 3.9182089 3759.4414 641.24992 -10654.586 0 187.78255 0.0016144638 0.0015912542 + 84440 -6250.0815 -6254.205 4.1234952 3756.6648 641.66171 -10652.532 0 197.62103 0.0017123705 0.0016844227 + 84450 -6250.2507 -6254.3237 4.0729715 3753.9475 641.97106 -10650.242 0 195.19965 0.001790055 0.001767606 + 84460 -6250.4416 -6254.3079 3.8663279 3751.7201 642.13364 -10648.162 0 185.29613 0.0018409226 0.0018295549 + 84470 -6250.5742 -6254.2952 3.7210178 3750.2335 642.05733 -10646.586 0 178.33205 0.0018605332 0.0018567209 + 84480 -6250.5956 -6254.3751 3.7795207 3749.6734 641.63219 -10645.681 0 181.13584 0.001839473 0.001833663 + 84490 -6250.5192 -6254.5122 3.9929608 3750.2021 640.78039 -10645.495 0 191.36509 0.0017632178 0.0017475791 + 84500 -6250.412 -6254.5798 4.1677806 3751.844 639.51036 -10645.934 0 199.74343 0.0016220461 0.0015966018 + 84510 -6250.3408 -6254.4727 4.1318288 3754.2937 637.95565 -10646.722 0 198.02042 0.0014257635 0.0013981621 + 84520 -6250.3199 -6254.2056 3.8856546 3756.8272 636.37868 -10647.411 0 186.22237 0.0012125799 0.0011918351 + 84530 -6250.2977 -6253.9169 3.619138 3758.4588 635.12701 -10647.503 0 173.4494 0.0010432046 0.001032396 + 84540 -6250.1931 -6253.7717 3.5786337 3758.3227 634.5457 -10646.64 0 171.50821 0.00097968256 0.00097336144 + 84550 -6249.9511 -6253.8338 3.8826963 3756.0971 634.86885 -10644.8 0 186.08059 0.001058269 0.0010467111 + 84560 -6249.5801 -6254.0055 4.4254328 3752.2344 636.12492 -10642.365 0 212.09157 0.0012703159 0.0012474671 + 84570 -6249.1435 -6254.0925 4.9490055 3747.8581 638.09074 -10640.041 0 237.18411 0.001561683 0.0015304495 + 84580 -6248.7086 -6253.9494 5.2408765 3744.3666 640.31977 -10638.636 0 251.17221 0.001851329 0.0018214756 + 84590 -6248.2892 -6253.5903 5.3011271 3742.9457 642.2517 -10638.788 0 254.05976 0.0020593404 0.0020391239 + 84600 -6247.8343 -6253.1647 5.3303458 3744.2092 643.38098 -10640.755 0 255.46008 0.0021308905 0.0021192752 + 84610 -6247.2848 -6252.8144 5.5295948 3748.0702 643.43318 -10644.318 0 265.00921 0.0020482587 0.0020349889 + 84620 -6246.6573 -6252.5369 5.8796231 3753.7902 642.48273 -10648.81 0 281.78453 0.0018326736 0.0018072561 + 84630 -6246.0679 -6252.1931 6.1251679 3760.0959 640.95313 -10653.242 0 293.55241 0.0015419079 0.0015039064 + 84640 -6245.646 -6251.6736 6.027596 3765.3479 639.47787 -10656.499 0 288.87622 0.0012638186 0.0012239909 + 84650 -6245.4138 -6251.0664 5.6526649 3767.8686 638.66538 -10657.6 0 270.90742 0.0010977307 0.0010678697 + 84660 -6245.2664 -6250.638 5.3716731 3766.4875 638.86598 -10655.991 0 257.44071 0.0011194392 0.0011010376 + 84670 -6245.0762 -6250.6291 5.5528546 3761.1239 640.03674 -10651.79 0 266.12395 0.0013430965 0.0013264269 + 84680 -6244.8059 -6251.0604 6.2544939 3753.0381 641.74903 -10645.848 0 299.75044 0.0017046985 0.0016785936 + 84690 -6244.5262 -6251.7293 7.2031438 3744.4996 643.33093 -10639.56 0 345.21507 0.0020820337 0.0020440933 + 84700 -6244.3399 -6252.3736 8.0337742 3737.9754 644.09939 -10634.448 0 385.02354 0.002342824 0.0023007449 + 84710 -6244.2938 -6252.836 8.5422283 3735.2389 643.6046 -10631.68 0 409.39151 0.0023958268 0.0023600496 + 84720 -6244.3535 -6253.1045 8.7509767 3736.8085 641.79575 -10631.709 0 419.3959 0.0022209877 0.002196149 + 84730 -6244.4467 -6253.2427 8.7960442 3741.8953 639.04521 -10634.183 0 421.55579 0.0018699029 0.0018517941 + 84740 -6244.5255 -6253.2933 8.7678013 3748.7866 636.03219 -10638.112 0 420.20223 0.0014427337 0.0014220617 + 84750 -6244.6022 -6253.2232 8.6209745 3755.4514 633.54038 -10642.215 0 413.16547 0.0010542367 0.0010240284 + 84760 -6244.734 -6252.9444 8.2104201 3760.1224 632.23743 -10645.304 0 393.4894 0.00080152546 0.00076293021 + 84770 -6244.9639 -6252.4065 7.4425871 3761.6828 632.49037 -10646.58 0 356.69053 0.00074232535 0.00070401391 + 84780 -6245.2658 -6251.6942 6.4284126 3759.8341 634.26065 -10645.789 0 308.0856 0.00088582145 0.00085665851 + 84790 -6245.5502 -6251.0259 5.4756478 3755.1254 637.11372 -10643.265 0 262.42376 0.0011929756 0.0011741285 + 84800 -6245.7338 -6250.6282 4.8943417 3748.8739 640.34721 -10639.849 0 234.56432 0.0015843212 0.0015682744 + 84810 -6245.8043 -6250.5932 4.7888461 3742.9027 643.19618 -10636.692 0 229.50838 0.0019573461 0.0019347062 + 84820 -6245.8239 -6250.8481 5.0242887 3739.0433 645.04577 -10634.937 0 240.79211 0.0022142605 0.0021818398 + 84830 -6245.8747 -6251.2509 5.3762869 3738.5355 645.58564 -10635.372 0 257.66183 0.0022931493 0.0022562757 + 84840 -6245.9964 -6251.7119 5.7155189 3741.5886 644.86359 -10638.164 0 273.91973 0.0021890099 0.0021566615 + 84850 -6246.1626 -6252.2395 6.0768552 3747.3195 643.22877 -10642.788 0 291.237 0.0019531542 0.001930351 + 84860 -6246.312 -6252.8803 6.5683253 3754.0953 641.19443 -10648.17 0 314.791 0.0016697989 0.0016535071 + 84870 -6246.4113 -6253.6077 7.1964437 3760.1177 639.27783 -10653.003 0 344.89396 0.0014211591 0.0014031992 + 84880 -6246.4979 -6254.2606 7.762685 3763.9808 637.86907 -10656.11 0 372.03142 0.0012590056 0.0012337321 + 84890 -6246.6552 -6254.6117 7.9565306 3764.9746 637.15442 -10656.741 0 381.32159 0.0011961516 0.0011658997 + 84900 -6246.9305 -6254.5296 7.599066 3763.0768 637.10131 -10654.708 0 364.18988 0.0012173436 0.0011899343 + 84910 -6247.2795 -6254.0873 6.8078126 3758.7801 637.50673 -10650.374 0 326.26858 0.0012960016 0.0012765386 + 84920 -6247.6025 -6253.5035 5.9009878 3752.942 638.09726 -10644.543 0 282.80845 0.0014036914 0.0013893738 + 84930 -6247.8347 -6252.9746 5.1398454 3746.6828 638.64087 -10638.298 0 246.33023 0.0015120267 0.0014953467 + 84940 -6247.9906 -6252.5681 4.5774395 3741.2203 639.01756 -10632.806 0 219.37659 0.0015952974 0.001571595 + 84950 -6248.1283 -6252.2587 4.1304633 3737.5939 639.21945 -10629.072 0 197.95498 0.0016369353 0.0016083557 + 84960 -6248.2871 -6252.0308 3.7437811 3736.3984 639.29558 -10627.725 0 179.423 0.0016341667 0.0016070706 + 84970 -6248.4604 -6251.9311 3.4706882 3737.6749 639.28562 -10628.892 0 166.33485 0.0015955167 0.0015749361 + 84980 -6248.6116 -6252.0401 3.428453 3740.9922 639.18398 -10632.216 0 164.31071 0.0015332396 0.0015192658 + 84990 -6248.7056 -6252.4061 3.7005264 3745.63 638.95104 -10636.987 0 177.34999 0.00145706 0.0014451446 + 85000 -6248.734 -6252.9928 4.2587773 3750.7606 638.56118 -10642.315 0 204.1045 0.0013732353 0.0013575633 + 85010 -6248.7237 -6253.6696 4.9458532 3755.5686 638.05773 -10647.296 0 237.03304 0.0012884981 0.0012661865 + 85020 -6248.7223 -6254.2593 5.5370262 3759.3029 637.57966 -10651.142 0 265.36536 0.0012156831 0.0011889778 + 85030 -6248.7647 -6254.6237 5.8590246 3761.3105 637.33706 -10653.271 0 280.79733 0.0011765353 0.001151077 + 85040 -6248.8449 -6254.7282 5.8833082 3761.1263 637.53846 -10653.393 0 281.96114 0.0011973677 0.0011775848 + 85050 -6248.9214 -6254.633 5.7116403 3758.6475 638.29854 -10651.579 0 273.73385 0.0012967314 0.0012822705 + 85060 -6248.9544 -6254.4203 5.4659462 3754.3062 639.56562 -10648.292 0 261.95881 0.001470524 0.0014569742 + 85070 -6248.9391 -6254.1277 5.1885259 3749.0894 641.10015 -10644.317 0 248.66327 0.0016840546 0.0016672119 + 85080 -6248.9039 -6253.7476 4.8436334 3744.3169 642.51692 -10640.581 0 232.13409 0.0018780884 0.0018577351 + 85090 -6248.8776 -6253.2852 4.4076158 3741.2411 643.38351 -10637.91 0 211.23768 0.0019880596 0.0019678948 + 85100 -6248.8582 -6252.8125 3.9542835 3740.6423 643.34984 -10636.805 0 189.51145 0.0019680003 0.0019519582 + 85110 -6248.8092 -6252.4626 3.6533955 3742.5928 642.2703 -10637.326 0 175.09121 0.001808291 0.0017965778 + 85120 -6248.682 -6252.36 3.678035 3746.462 640.27773 -10639.1 0 176.27208 0.001540279 0.0015285884 + 85130 -6248.4474 -6252.5365 4.0891212 3751.1201 637.7814 -10641.438 0 195.97363 0.0012277588 0.0012105208 + 85140 -6248.1134 -6252.896 4.7826573 3755.236 635.38258 -10643.515 0 229.21177 0.00095030784 0.00092556988 + 85150 -6247.7177 -6253.2644 5.5466567 3757.5778 633.72264 -10644.565 0 265.82691 0.00078417881 0.0007560145 + 85160 -6247.2949 -6253.4944 6.1995414 3757.2856 633.29708 -10644.077 0 297.11681 0.00078411153 0.00075974837 + 85170 -6246.8418 -6253.5443 6.7024386 3754.1262 634.2872 -10641.958 0 321.21846 0.00096702856 0.00095025928 + 85180 -6246.324 -6253.4558 7.1318222 3748.6988 636.47076 -10638.625 0 341.79694 0.0012995204 0.001286324 + 85190 -6245.7289 -6253.2567 7.5278102 3742.4551 639.25875 -10634.971 0 360.77491 0.0016960464 0.0016774114 + 85200 -6245.1123 -6252.8986 7.7862973 3737.3663 641.86296 -10632.128 0 373.16306 0.0020375106 0.0020075036 + 85210 -6244.5768 -6252.3092 7.732344 3735.2402 643.54845 -10631.098 0 370.57731 0.0022115135 0.002172952 + 85220 -6244.195 -6251.5072 7.3121827 3736.9668 643.88464 -10632.359 0 350.44082 0.0021589819 0.0021212531 + 85230 -6243.9498 -6250.6657 6.7158564 3742.0895 642.89635 -10635.651 0 321.86152 0.0019025365 0.0018734375 + 85240 -6243.7459 -6250.0556 6.3096994 3748.9429 641.04961 -10640.048 0 302.3962 0.0015398441 0.0015184475 + 85250 -6243.4831 -6249.8927 6.4096162 3755.2993 639.07722 -10644.269 0 307.18477 0.00120414 0.0011810552 + 85260 -6243.1392 -6250.1887 7.0495638 3759.2066 637.71488 -10647.11 0 337.85465 0.0010111637 0.00097689059 + 85270 -6242.7945 -6250.7359 7.9414355 3759.6227 637.44371 -10647.802 0 380.59815 0.0010179845 0.00097252788 + 85280 -6242.5633 -6251.2683 8.7050439 3756.6045 638.32571 -10646.199 0 417.19455 0.0012110587 0.0011650182 + 85290 -6242.4847 -6251.6653 9.1806403 3751.1089 639.99136 -10642.766 0 439.9878 0.0015218635 0.0014864959 + 85300 -6242.4933 -6251.9909 9.4975905 3744.652 641.78846 -10638.431 0 455.17783 0.0018534214 0.0018294204 + 85310 -6242.5103 -6252.3316 9.8213272 3738.9723 643.03406 -10634.338 0 470.6931 0.0021047396 0.0020818887 + 85320 -6242.5474 -6252.6275 10.080089 3735.6395 643.26641 -10631.533 0 483.09442 0.0021945303 0.0021625399 + 85330 -6242.7009 -6252.6897 9.9888496 3735.5649 642.40146 -10630.656 0 478.72172 0.0020875973 0.0020464533 + 85340 -6243.0423 -6252.3786 9.3363051 3738.6003 640.74243 -10631.721 0 447.44812 0.0018139246 0.0017734802 + 85350 -6243.5297 -6251.7519 8.2222189 3743.5245 638.84704 -10634.123 0 394.05487 0.0014629106 0.0014331618 + 85360 -6244.0332 -6251.0468 7.0136196 3748.5202 637.3104 -10636.877 0 336.132 0.0011482019 0.0011303652 + 85370 -6244.4371 -6250.5249 6.0877721 3751.9177 636.55226 -10638.995 0 291.7602 0.00096073538 0.00094696455 + 85380 -6244.7172 -6250.324 5.6067691 3752.8135 636.68876 -10639.826 0 268.70784 0.0009359818 0.00091670246 + 85390 -6244.9341 -6250.4228 5.4886908 3751.2821 637.5274 -10639.232 0 263.04886 0.0010498594 0.0010215703 + 85400 -6245.1695 -6250.7207 5.5511574 3748.1537 638.67334 -10637.548 0 266.04261 0.0012396419 0.0012068519 + 85410 -6245.4627 -6251.1431 5.6803872 3744.5576 639.69498 -10635.396 0 272.23602 0.0014348074 0.001405365 + 85420 -6245.7931 -6251.6824 5.8893192 3741.501 640.27961 -10633.463 0 282.24922 0.0015821385 0.0015605499 + 85430 -6246.1117 -6252.355 6.2432949 3739.646 640.32135 -10632.322 0 299.21372 0.0016567911 0.0016409693 + 85440 -6246.3885 -6253.1305 6.7420073 3739.2808 639.91853 -10632.33 0 323.11482 0.0016599946 0.0016433055 + 85450 -6246.6372 -6253.8956 7.2584154 3740.3818 639.29884 -10633.576 0 347.86399 0.0016090219 0.0015854325 + 85460 -6246.9056 -6254.48 7.5744891 3742.6772 638.7147 -10635.872 0 363.01202 0.0015259358 0.0014944658 + 85470 -6247.2355 -6254.7296 7.4941369 3745.6859 638.3526 -10638.768 0 359.16109 0.001430355 0.0013957769 + 85480 -6247.6211 -6254.5903 6.9691625 3748.7606 638.28443 -10641.635 0 334.00137 0.0013380177 0.0013071087 + 85490 -6248.001 -6254.1464 6.1453706 3751.1903 638.4687 -10643.805 0 294.52064 0.0012620785 0.0012381138 + 85500 -6248.298 -6253.5725 5.2745513 3752.3746 638.79076 -10644.738 0 252.78609 0.0012124593 0.0011926508 + 85510 -6248.4762 -6253.0281 4.5518828 3752.0091 639.11965 -10644.157 0 218.15176 0.0011927361 0.0011711891 + 85520 -6248.5645 -6252.5831 4.0185654 3750.1672 639.35812 -10642.108 0 192.5922 0.0011990399 0.0011726666 + 85530 -6248.6249 -6252.2401 3.6151498 3747.2268 639.46859 -10638.935 0 173.25826 0.0012244206 0.001196095 + 85540 -6248.6959 -6252.0195 3.3236102 3743.7099 639.46812 -10635.198 0 159.28605 0.0012653734 0.0012410552 + 85550 -6248.7604 -6252.0042 3.2437633 3740.1709 639.39694 -10631.572 0 155.45934 0.0013227139 0.0013052861 + 85560 -6248.7678 -6252.2829 3.5151131 3737.194 639.27606 -10628.753 0 168.46394 0.0013934313 0.0013794725 + 85570 -6248.6881 -6252.8457 4.1576405 3735.4132 639.07572 -10627.335 0 199.25746 0.0014602939 0.0014431336 + 85580 -6248.5483 -6253.5424 4.9940688 3735.4178 638.71479 -10627.675 0 239.3438 0.0014910246 0.0014671326 + 85590 -6248.4153 -6254.1549 5.7396382 3737.5071 638.10085 -10629.763 0 275.07567 0.001452369 0.0014248415 + 85600 -6248.3397 -6254.5244 6.1847316 3741.4279 637.20077 -10633.153 0 296.40704 0.0013314765 0.0013072558 + 85610 -6248.3142 -6254.6241 6.3098715 3746.2925 636.1088 -10637.025 0 302.40445 0.0011495752 0.0011330309 + 85620 -6248.2867 -6254.5255 6.238812 3750.7864 635.0705 -10640.382 0 298.99888 0.00095795371 0.00094683977 + 85630 -6248.2147 -6254.3009 6.0861818 3753.5988 634.43555 -10642.335 0 291.68398 0.00081895645 0.00080651676 + 85640 -6248.1068 -6253.9594 5.8526576 3753.8674 634.5452 -10642.372 0 280.49219 0.00078360003 0.00076477121 + 85650 -6248.0089 -6253.4793 5.4704524 3751.4359 635.59252 -10640.508 0 262.17477 0.00087607961 0.00085174739 + 85660 -6247.954 -6252.8957 4.9416396 3746.8622 637.51294 -10637.271 0 236.8311 0.0010875244 0.0010628578 + 85670 -6247.9293 -6252.3372 4.4078292 3741.259 639.95666 -10633.553 0 211.24791 0.0013760415 0.0013551685 + 85680 -6247.8926 -6251.9641 4.0715217 3736.057 642.36103 -10630.382 0 195.13016 0.001672154 0.0016548255 + 85690 -6247.811 -6251.8688 4.0578285 3732.7033 644.10072 -10628.673 0 194.47391 0.0018928077 0.001875666 + 85700 -6247.6814 -6252.032 4.3505977 3732.283 644.66798 -10628.983 0 208.50505 0.0019649044 0.0019449986 + 85710 -6247.5218 -6252.3555 4.8336808 3735.1389 643.8297 -10631.324 0 231.65711 0.0018515426 0.00182853 + 85720 -6247.3525 -6252.725 5.3725054 3740.6493 641.71455 -10635.089 0 257.4806 0.0015693786 0.0015452023 + 85730 -6247.1824 -6253.057 5.874672 3747.2985 638.80002 -10639.156 0 281.54725 0.0011886046 0.0011655647 + 85740 -6247.0049 -6253.3166 6.3116934 3753.0641 635.79655 -10642.177 0 302.49176 0.00081447089 0.00079303101 + 85750 -6246.8049 -6253.5021 6.6972472 3756.0237 633.45781 -10642.984 0 320.96966 0.0005556679 0.0005333948 + 85760 -6246.5784 -6253.6046 7.0261446 3754.9922 632.36964 -10640.966 0 336.73227 0.00048913416 0.00046209735 + 85770 -6246.3519 -6253.5736 7.2217179 3749.9525 632.77812 -10636.304 0 346.10524 0.00063355334 0.00059987665 + 85780 -6246.1738 -6253.3369 7.1631061 3742.0921 634.5092 -10629.938 0 343.29624 0.00094258894 0.00090518286 + 85790 -6246.0767 -6252.8726 6.7958202 3733.4299 637.01143 -10623.314 0 325.69384 0.0013212282 0.0012864787 + 85800 -6246.0435 -6252.267 6.2235112 3726.204 639.5193 -10617.99 0 298.26558 0.0016577146 0.0016306068 + 85810 -6246.0157 -6251.6927 5.6769652 3722.265 641.29149 -10615.249 0 272.07203 0.0018574382 0.0018374815 + 85820 -6245.9376 -6251.3172 5.3795514 3722.6403 641.84459 -10615.802 0 257.81829 0.0018678873 0.0018495685 + 85830 -6245.793 -6251.2195 5.4264526 3727.3156 641.10049 -10619.636 0 260.06606 0.0016904808 0.0016676634 + 85840 -6245.6088 -6251.3724 5.7636292 3735.2352 639.39822 -10626.006 0 276.22545 0.0013791124 0.0013496354 + 85850 -6245.4288 -6251.6884 6.2595288 3744.52 637.36975 -10633.578 0 299.99174 0.0010261394 0.00099318492 + 85860 -6245.2795 -6252.0838 6.8042889 3752.8925 635.72502 -10640.701 0 326.0997 0.00073770779 0.00070707395 + 85870 -6245.151 -6252.5128 7.3618558 3758.2451 635.02137 -10645.779 0 352.82144 0.00060307951 0.00057846125 + 85880 -6245.0122 -6252.945 7.9328592 3759.2276 635.49441 -10647.667 0 380.18712 0.0006659459 0.00064605598 + 85890 -6244.8492 -6253.311 8.4618658 3755.6664 637.00013 -10645.978 0 405.54009 0.00090783152 0.00088793521 + 85900 -6244.6914 -6253.4828 8.7913857 3748.6308 639.07616 -10641.19 0 421.33253 0.0012522154 0.0012286594 + 85910 -6244.5931 -6253.3297 8.7365336 3740.0718 641.09534 -10634.497 0 418.70371 0.0015907345 0.0015639984 + 85920 -6244.5857 -6252.8125 8.2267593 3732.1708 642.46246 -10627.446 0 394.27246 0.0018215281 0.0017949483 + 85930 -6244.6511 -6252.0276 7.3764233 3726.6822 642.79208 -10621.502 0 353.51959 0.0018824371 0.001858535 + 85940 -6244.7427 -6251.1653 6.4226136 3724.5211 642.0095 -10617.696 0 307.80768 0.0017658119 0.0017442818 + 85950 -6244.8226 -6250.4316 5.6090444 3725.6651 640.3446 -10616.441 0 268.81688 0.0015134205 0.0014920581 + 85960 -6244.8786 -6249.9926 5.1140602 3729.3085 638.2321 -10617.533 0 245.09446 0.0011982636 0.0011748862 + 85970 -6244.9186 -6249.947 5.0284226 3734.1769 636.16624 -10620.29 0 240.99023 0.00090107242 0.00087473423 + 85980 -6244.9616 -6250.306 5.3443133 3738.9046 634.5649 -10623.775 0 256.12948 0.00068804199 0.00065959238 + 85990 -6245.0313 -6250.9904 5.9590535 3742.3673 633.67902 -10627.037 0 285.59128 0.00059578954 0.00056782864 + 86000 -6245.1464 -6251.8625 6.7161584 3743.8916 633.55899 -10629.313 0 321.876 0.00062706712 0.00060261244 + 86010 -6245.3137 -6252.7732 7.4595828 3743.3377 634.07527 -10630.186 0 357.50506 0.00075593369 0.00073614651 + 86020 -6245.5349 -6253.5893 8.054404 3741.0817 634.98297 -10629.654 0 386.01223 0.00093810995 0.00092111742 + 86030 -6245.8186 -6254.1979 8.3793478 3737.9006 636.01054 -10628.109 0 401.58536 0.0011233157 0.0011054648 + 86040 -6246.1778 -6254.5153 8.3374881 3734.7526 636.94425 -10626.212 0 399.57921 0.0012679618 0.0012463255 + 86050 -6246.613 -6254.5054 7.8924346 3732.5028 637.67805 -10624.686 0 378.24975 0.0013454875 0.0013195524 + 86060 -6247.0988 -6254.1899 7.0910642 3731.6946 638.21031 -10624.095 0 339.84359 0.001350599 0.0013224032 + 86070 -6247.5892 -6253.6438 6.0545505 3732.4401 638.59305 -10624.677 0 290.16803 0.0012960589 0.0012691262 + 86080 -6248.0333 -6252.988 4.9546822 3734.4377 638.86615 -10626.292 0 237.45617 0.0012045513 0.0011820248 + 86090 -6248.391 -6252.374 3.9830211 3737.0915 639.01748 -10628.483 0 190.88872 0.0010998154 0.001082546 + 86100 -6248.6448 -6251.9491 3.3043596 3739.6937 638.99047 -10630.633 0 158.36345 0.0010003875 0.00098630098 + 86110 -6248.8037 -6251.8089 3.0052256 3741.6121 638.72884 -10632.15 0 144.02727 0.00091760927 0.00090306861 + 86120 -6248.8976 -6251.9694 3.0718007 3742.4179 638.22704 -10632.614 0 147.21793 0.00085769667 0.00083991173 + 86130 -6248.9617 -6252.3771 3.4154065 3741.9306 637.55673 -10631.864 0 163.68544 0.00082557681 0.00080420021 + 86140 -6249.0218 -6252.9436 3.9217867 3740.2077 636.85545 -10630.007 0 187.95403 0.00082688438 0.00080382732 + 86150 -6249.0875 -6253.5732 4.4857337 3737.5254 636.28203 -10627.381 0 214.98153 0.00086569458 0.00084376028 + 86160 -6249.1552 -6254.1759 5.0207569 3734.3563 635.95565 -10624.488 0 240.62284 0.00093904862 0.00092047614 + 86170 -6249.2136 -6254.6742 5.460534 3731.318 635.9024 -10621.895 0 261.69943 0.0010321895 0.0010176228 + 86180 -6249.2488 -6255.0092 5.7604049 3729.0777 636.03363 -10620.121 0 276.07092 0.0011182624 0.001106335 + 86190 -6249.2515 -6255.1419 5.8904193 3728.216 636.17253 -10619.53 0 282.30195 0.00116388 0.0011518146 + 86200 -6249.2249 -6255.048 5.8231375 3729.0709 636.12595 -10620.245 0 279.07742 0.0011396327 0.001124909 + 86210 -6249.1845 -6254.7229 5.5384508 3731.5881 635.77505 -10622.086 0 265.43364 0.0010327837 0.001014842 + 86220 -6249.1463 -6254.199 5.0527392 3735.2363 635.1462 -10624.581 0 242.15562 0.00085745237 0.00083800769 + 86230 -6249.1136 -6253.5593 4.4457226 3739.0628 634.42902 -10627.051 0 213.06397 0.00065667836 0.00063832674 + 86240 -6249.0734 -6252.9275 3.8540682 3741.9231 633.92953 -10628.78 0 184.70857 0.000492978 0.00047721181 + 86250 -6249.0035 -6252.4335 3.4300234 3742.8307 633.97031 -10629.235 0 164.38597 0.00042905196 0.00041515382 + 86260 -6248.8833 -6252.1713 3.2879525 3741.3059 634.76908 -10628.246 0 157.57713 0.00050519388 0.00049076493 + 86270 -6248.7017 -6252.1674 3.4656131 3737.5928 636.33533 -10626.095 0 166.09162 0.00072198389 0.00070480892 + 86280 -6248.4571 -6252.3793 3.9221637 3732.655 638.42153 -10623.456 0 187.97209 0.0010353482 0.0010152881 + 86290 -6248.1482 -6252.726 4.5778172 3727.9335 640.5528 -10621.212 0 219.39468 0.0013665281 0.0013457558 + 86300 -6247.7641 -6253.1276 5.3634706 3724.9339 642.13896 -10620.2 0 257.04761 0.0016235714 0.0016046269 + 86310 -6247.2879 -6253.516 6.2280456 3724.7743 642.6471 -10620.937 0 298.48289 0.0017269518 0.0017102833 + 86320 -6246.7207 -6253.8134 7.0927207 3727.8192 641.78657 -10623.419 0 339.92297 0.0016323643 0.0016158508 + 86330 -6246.1034 -6253.9189 7.8155049 3733.4867 639.64178 -10627.047 0 374.56285 0.0013466539 0.0013275752 + 86340 -6245.5073 -6253.7443 8.2370022 3740.2883 636.69388 -10630.726 0 394.76336 0.00093341887 0.00091053066 + 86350 -6244.9934 -6253.2738 8.2804488 3746.1517 633.70651 -10633.132 0 396.84557 0.0005027098 0.00047624733 + 86360 -6244.5861 -6252.5812 7.9951106 3749.0066 631.50442 -10633.092 0 383.17056 0.00018127613 0.00015187141 + 86370 -6244.2842 -6251.7823 7.4980615 3747.4665 630.71792 -10629.967 0 359.34918 7.0438677e-05 3.9326262e-05 + 86380 -6244.0809 -6250.9865 6.9056296 3741.3381 631.57699 -10623.902 0 330.95652 0.00020967801 0.00017976108 + 86390 -6243.9583 -6250.3034 6.3451477 3731.7528 633.82117 -10615.877 0 304.09508 0.00056270873 0.00053757281 + 86400 -6243.8707 -6249.869 5.9982658 3720.9031 636.7591 -10607.531 0 287.47055 0.0010295274 0.0010098678 + 86410 -6243.7552 -6249.8199 6.0647208 3711.5044 639.47002 -10600.794 0 290.65545 0.0014759588 0.0014570452 + 86420 -6243.5736 -6250.2103 6.6367129 3706.1166 641.09189 -10597.419 0 318.06852 0.0017701917 0.0017440009 + 86430 -6243.3527 -6250.9421 7.5893196 3706.4456 641.10579 -10598.493 0 363.72278 0.0018192336 0.0017806116 + 86440 -6243.1841 -6251.7817 8.5976027 3712.77 639.51924 -10604.071 0 412.04536 0.0015992511 0.001551359 + 86450 -6243.1671 -6252.4729 9.305721 3723.6867 636.87657 -10613.036 0 445.98237 0.0011708117 0.0011245189 + 86460 -6243.329 -6252.875 9.5460034 3736.3557 634.0821 -10623.313 0 457.49805 0.00066793425 0.00063397354 + 86470 -6243.5963 -6253.014 9.4176411 3747.298 632.09804 -10632.41 0 451.34621 0.00025591125 0.00023567946 + 86480 -6243.8621 -6252.9883 9.1262768 3753.5399 631.62864 -10638.157 0 437.38239 6.95444e-05 5.3622476e-05 + 86490 -6244.0839 -6252.8255 8.7415249 3753.6285 632.89542 -10639.349 0 418.94292 0.00016041627 0.00013732743 + 86500 -6244.3057 -6252.4584 8.1526846 3748.0215 635.56656 -10636.046 0 390.72239 0.00048171871 0.00044841002 + 86510 -6244.5804 -6251.8575 7.2770598 3738.7028 638.86234 -10629.423 0 348.75754 0.00091660903 0.00087994464 + 86520 -6244.8958 -6251.1537 6.2579285 3728.3398 641.81102 -10621.305 0 299.91505 0.0013287214 0.0012975511 + 86530 -6245.185 -6250.5992 5.4142618 3719.4566 643.56795 -10613.624 0 259.4818 0.0016063348 0.0015835052 + 86540 -6245.392 -6250.4112 5.0192436 3713.8827 643.67433 -10607.968 0 240.55032 0.0016869036 0.0016684137 + 86550 -6245.5118 -6250.6547 5.1429498 3712.4771 642.16344 -10605.295 0 246.47901 0.0015642404 0.0015440175 + 86560 -6245.5822 -6251.2398 5.6576495 3715.066 639.49612 -10605.802 0 271.14631 0.001282981 0.0012577663 + 86570 -6245.6558 -6251.992 6.3361597 3720.5794 636.37376 -10608.945 0 303.66432 0.00092203985 0.00089323327 + 86580 -6245.7739 -6252.7334 6.9594359 3727.3668 633.50881 -10613.609 0 333.53522 0.00057057914 0.00054288366 + 86590 -6245.945 -6253.3473 7.4023318 3733.623 631.43238 -10618.403 0 354.76127 0.00030407148 0.00028179693 + 86600 -6246.1392 -6253.802 7.6628021 3737.8338 630.39498 -10622.031 0 367.24447 0.00016746513 0.00015054607 + 86610 -6246.3138 -6254.1088 7.7949197 3739.1451 630.37592 -10623.63 0 373.57629 0.00016830232 0.0001515395 + 86620 -6246.4562 -6254.2499 7.7937329 3737.5438 631.17229 -10622.966 0 373.51941 0.00028038751 0.00025755627 + 86630 -6246.5959 -6254.1567 7.560725 3733.757 632.51222 -10620.426 0 362.35237 0.00045750093 0.00042696666 + 86640 -6246.7705 -6253.7731 7.0025556 3728.9107 634.14185 -10616.826 0 335.60176 0.00065247081 0.00061881498 + 86650 -6246.9798 -6253.1391 6.1593418 3724.1408 635.86207 -10613.142 0 295.19022 0.00083213641 0.00080224641 + 86660 -6247.1798 -6252.4052 5.225398 3720.3483 637.51841 -10610.272 0 250.43039 0.00098037179 0.00095790566 + 86670 -6247.318 -6251.7632 4.4452809 3718.1433 638.9666 -10608.873 0 213.0428 0.0010899389 0.0010730652 + 86680 -6247.3708 -6251.3551 3.9842439 3717.8738 640.04413 -10609.273 0 190.94732 0.0011518848 0.0011355897 + 86690 -6247.3541 -6251.2295 3.875319 3719.6265 640.57195 -10611.428 0 185.72703 0.0011519206 0.0011321788 + 86700 -6247.3018 -6251.3667 4.064874 3723.1647 640.39438 -10614.926 0 194.81157 0.0010769819 0.0010530379 + 86710 -6247.2364 -6251.7299 4.493493 3727.8678 639.44584 -10619.044 0 215.3534 0.00092701351 0.00090032028 + 86720 -6247.1585 -6252.2845 5.125952 3732.7674 637.81666 -10622.869 0 245.66438 0.00072302763 0.00069475649 + 86730 -6247.0635 -6252.9692 5.9057098 3736.7189 635.7825 -10625.471 0 283.03475 0.00050566153 0.00047584095 + 86740 -6246.9658 -6253.6655 6.6997389 3738.6669 633.76945 -10626.102 0 321.08908 0.00032548402 0.00029453598 + 86750 -6246.8985 -6254.2193 7.3207653 3737.9119 632.25039 -10624.382 0 350.85215 0.00023028947 0.00020052605 + 86760 -6246.885 -6254.5138 7.6288095 3734.3146 631.60089 -10620.429 0 365.61536 0.00025262582 0.00022706765 + 86770 -6246.9129 -6254.5238 7.6109271 3728.4102 631.96726 -10614.901 0 364.75833 0.00039764069 0.0003769464 + 86780 -6246.9468 -6254.2982 7.351461 3721.395 633.2002 -10608.893 0 352.32326 0.0006334386 0.00061459388 + 86790 -6246.9638 -6253.8954 6.9316678 3714.9243 634.88389 -10603.704 0 332.20442 0.00089153541 0.00087030189 + 86800 -6246.9727 -6253.3495 6.3768523 3710.6973 636.45696 -10600.504 0 305.61454 0.0010844195 0.0010592405 + 86810 -6246.996 -6252.698 5.7019889 3709.9237 637.39106 -10600.013 0 273.2713 0.0011371193 0.0011105096 + 86820 -6247.0397 -6252.028 4.9883252 3712.8822 637.3707 -10602.281 0 239.06853 0.0010184122 0.00099458773 + 86830 -6247.0818 -6251.4797 4.3979034 3718.7726 636.41024 -10606.663 0 210.77221 0.00075583218 0.00073698508 + 86840 -6247.0879 -6251.1942 4.1062704 3725.9364 634.86303 -10611.994 0 196.79552 0.0004279209 0.00041241213 + 86850 -6247.0352 -6251.242 4.2068155 3732.3619 633.31594 -10616.92 0 201.6142 0.00013849068 0.00012227958 + 86860 -6246.9286 -6251.5847 4.6561184 3736.2888 632.39992 -10620.273 0 223.14732 -1.6517095e-05 -3.6507257e-05 + 86870 -6246.7965 -6252.096 5.2995367 3736.7129 632.57138 -10621.38 0 253.98354 2.095536e-05 -2.4075326e-06 + 86880 -6246.6697 -6252.631 5.9612436 3733.6475 633.93341 -10620.212 0 285.69624 0.00025209672 0.00022877676 + 86890 -6246.5584 -6253.0917 6.5333027 3728.0938 636.16518 -10617.351 0 313.11252 0.00061819981 0.00059821244 + 86900 -6246.4478 -6253.4472 6.9994083 3721.7504 638.60076 -10613.798 0 335.45092 0.0010153124 0.00099864021 + 86910 -6246.3176 -6253.7012 7.383652 3716.5361 640.44406 -10610.681 0 353.86604 0.001323867 0.0013066571 + 86920 -6246.1694 -6253.8422 7.6728618 3714.0328 641.04777 -10608.923 0 367.72659 0.0014454132 0.0014227541 + 86930 -6246.0376 -6253.8203 7.7826331 3714.9862 640.15109 -10608.958 0 372.98745 0.0013351908 0.001305215 + 86940 -6245.9702 -6253.5771 7.6069592 3719.0206 637.98066 -10610.578 0 364.56817 0.001019427 0.00098540977 + 86950 -6245.99 -6253.1091 7.1190717 3724.6999 635.17196 -10612.981 0 341.18586 0.00058986056 0.00055830271 + 86960 -6246.0719 -6252.5092 6.4373206 3729.9642 632.54407 -10615.017 0 308.51252 0.0001751728 0.00015108536 + 86970 -6246.1539 -6251.9466 5.7927382 3732.8228 630.82043 -10615.59 0 277.62052 -0.00010168736 -0.00011872172 + 86980 -6246.1772 -6251.5884 5.4112665 3732.0572 630.40253 -10614.048 0 259.33825 -0.00016475258 -0.00018060913 + 86990 -6246.1246 -6251.5113 5.3866918 3727.6684 631.26858 -10610.448 0 258.1605 -9.6458729e-06 -3.1426609e-05 + 87000 -6246.0312 -6251.6649 5.6336727 3720.889 633.01341 -10605.567 0 269.9972 0.0002973216 0.0002668319 + 87010 -6245.9565 -6251.9203 5.9638222 3713.7411 634.9997 -10600.661 0 285.81982 0.00064515266 0.00060986639 + 87020 -6245.9356 -6252.1682 6.2325682 3708.3207 636.567 -10597.056 0 298.69964 0.00091900553 0.00088639277 + 87030 -6245.9499 -6252.3819 6.4319932 3706.1133 637.23796 -10595.733 0 308.2572 0.00103898 0.0010138681 + 87040 -6245.946 -6252.5928 6.6467801 3707.6039 636.86196 -10597.059 0 318.551 0.00098174015 0.00096254922 + 87050 -6245.8857 -6252.8102 6.9245005 3712.2556 635.65103 -10600.717 0 331.86092 0.00078002121 0.00076072687 + 87060 -6245.7813 -6252.9756 7.1943185 3718.7574 634.09588 -10605.829 0 344.79211 0.0005056903 0.00048146605 + 87070 -6245.684 -6252.9971 7.3131231 3725.3974 632.79164 -10611.186 0 350.48589 0.00024580486 0.00021715325 + 87080 -6245.6381 -6252.8316 7.1934629 3730.4773 632.23431 -10615.543 0 344.7511 7.8690858e-05 5.0564821e-05 + 87090 -6245.6426 -6252.5372 6.8946141 3732.7222 632.65753 -10617.917 0 330.42859 5.3703159e-05 3.0690864e-05 + 87100 -6245.6542 -6252.2459 6.5917276 3731.6224 633.96257 -10617.831 0 315.91257 0.00017741828 0.00015948532 + 87110 -6245.6285 -6252.0737 6.4451698 3727.5966 635.75931 -10615.43 0 308.8887 0.00041008612 0.00039277676 + 87120 -6245.5613 -6252.0437 6.4823989 3721.8797 637.49817 -10611.422 0 310.67293 0.00067621802 0.00065510534 + 87130 -6245.4911 -6252.0883 6.5972064 3716.1241 638.64694 -10606.859 0 316.17515 0.00088928423 0.00086444422 + 87140 -6245.4609 -6252.1291 6.6682072 3711.8433 638.856 -10602.828 0 319.5779 0.00098297104 0.00095902627 + 87150 -6245.4732 -6252.1591 6.6859425 3709.9314 638.06052 -10600.151 0 320.42788 0.00093510628 0.00091646006 + 87160 -6245.4856 -6252.2439 6.7583274 3710.4717 636.48792 -10599.204 0 323.89697 0.00077171997 0.00075755693 + 87170 -6245.4565 -6252.4317 6.9752023 3712.8801 634.57065 -10599.883 0 334.29083 0.00054969997 0.00053418248 + 87180 -6245.397 -6252.6646 7.2676446 3716.2328 632.79604 -10601.693 0 348.30631 0.00032996788 0.00030804315 + 87190 -6245.3691 -6252.7984 7.4293871 3719.5601 631.54704 -10603.906 0 356.05791 0.00015755544 0.00013045947 + 87200 -6245.4243 -6252.7297 7.3053278 3722.0126 630.99323 -10605.736 0 350.1123 5.6192456e-05 3.0373723e-05 + 87210 -6245.5468 -6252.5006 6.953786 3722.9654 631.07468 -10606.541 0 333.26444 3.189411e-05 1.2086e-05 + 87220 -6245.6669 -6252.2666 6.5997325 3722.1478 631.57763 -10605.992 0 316.29621 7.6130254e-05 5.9999002e-05 + 87230 -6245.7327 -6252.1559 6.4232865 3719.7586 632.25536 -10604.17 0 307.83993 0.00016691929 0.00014713592 + 87240 -6245.7605 -6252.1628 6.4023043 3716.4402 632.93102 -10601.534 0 306.83434 0.0002737141 0.00024536031 + 87250 -6245.816 -6252.1764 6.3603412 3713.0561 633.54044 -10598.773 0 304.82324 0.00036902781 0.00033481929 + 87260 -6245.9464 -6252.1069 6.1604764 3710.3756 634.10888 -10596.591 0 295.24459 0.00044036294 0.0004085194 + 87270 -6246.1321 -6251.9829 5.8507273 3708.8593 634.68509 -10595.527 0 280.39968 0.00049200586 0.00046886756 + 87280 -6246.3036 -6251.931 5.6273889 3708.6537 635.2707 -10595.855 0 269.69605 0.00053367486 0.00051803635 + 87290 -6246.4022 -6252.0655 5.6632524 3709.7319 635.7823 -10597.58 0 271.41483 0.00056513278 0.00054927126 + 87300 -6246.4297 -6252.3903 5.9606277 3712.0058 636.06787 -10600.464 0 285.66673 0.00057017572 0.00054636774 + 87310 -6246.4471 -6252.7943 6.3472148 3715.2867 635.97461 -10604.056 0 304.19415 0.00052591801 0.00049280775 + 87320 -6246.5269 -6253.1336 6.6067797 3719.1313 635.4367 -10607.702 0 316.63396 0.00042137491 0.00038506203 + 87330 -6246.6974 -6253.33 6.6325665 3722.7436 634.53724 -10610.611 0 317.8698 0.00027229456 0.00024150556 + 87340 -6246.9243 -6253.4066 6.4823429 3725.0968 633.50775 -10612.011 0 310.67024 0.00012138066 0.00010080626 + 87350 -6247.1395 -6253.4447 6.3051755 3725.2807 632.65853 -10611.384 0 302.17939 2.2356654e-05 9.2840278e-06 + 87360 -6247.2928 -6253.5043 6.211516 3722.9119 632.26522 -10608.681 0 297.6907 1.5820023e-05 2.2504071e-06 + 87370 -6247.3865 -6253.5697 6.1832292 3718.3839 632.4571 -10604.411 0 296.33504 0.0001088925 8.7458476e-05 + 87380 -6247.4719 -6253.5555 6.0836236 3712.8118 633.15237 -10599.52 0 291.56138 0.00026887908 0.00023846632 + 87390 -6247.6073 -6253.3775 5.770231 3707.6728 634.06795 -10595.118 0 276.54185 0.00043492028 0.00040175072 + 87400 -6247.806 -6253.0433 5.2372868 3704.2975 634.80567 -10592.146 0 251.00017 0.00054232048 0.00051510185 + 87410 -6248.0184 -6252.6823 4.6639965 3703.4485 634.98999 -10591.121 0 223.52488 0.00054681791 0.00052948128 + 87420 -6248.1692 -6252.4729 4.3036846 3705.1575 634.41024 -10592.041 0 206.25672 0.00043737551 0.00042563014 + 87430 -6248.219 -6252.5135 4.2944587 3708.8169 633.11482 -10594.445 0 205.81456 0.00023558538 0.00022055144 + 87440 -6248.1958 -6252.7516 4.555803 3713.3945 631.41961 -10597.566 0 218.33964 -1.1998557e-05 -3.6164589e-05 + 87450 -6248.1697 -6253.0343 4.8645473 3717.6537 629.82327 -10600.511 0 233.1364 -0.00024278799 -0.00027405441 + 87460 -6248.1926 -6253.2348 5.0422255 3720.3806 628.85392 -10602.469 0 241.65174 -0.00038900006 -0.00041964201 + 87470 -6248.2553 -6253.3394 5.0841704 3720.6708 628.89635 -10602.907 0 243.66197 -0.00039449203 -0.00041802944 + 87480 -6248.3012 -6253.4215 5.1203189 3718.2566 630.05701 -10601.735 0 245.39441 -0.00023667504 -0.0002530807 + 87490 -6248.2788 -6253.5424 5.2635968 3713.7257 632.11044 -10599.378 0 252.26109 5.638887e-05 4.1553752e-05 + 87500 -6248.1824 -6253.6837 5.5013541 3708.4574 634.5445 -10596.686 0 263.65576 0.00040641466 0.00038731286 + 87510 -6248.0481 -6253.7696 5.7214668 3704.2222 636.69598 -10594.688 0 274.20479 0.00070753818 0.00068261608 + 87520 -6247.9173 -6253.7418 5.8244212 3702.5725 637.94385 -10594.258 0 279.13894 0.00086291979 0.0008352249 + 87530 -6247.8039 -6253.6114 5.8075263 3704.2727 637.90533 -10595.789 0 278.32925 0.00081928144 0.00079326325 + 87540 -6247.6882 -6253.4467 5.7584742 3708.9969 636.56913 -10599.013 0 275.97839 0.0005854898 0.0005634489 + 87550 -6247.5357 -6253.317 5.781233 3715.4021 634.31588 -10603.035 0 277.06912 0.00022973679 0.00021048302 + 87560 -6247.3216 -6253.2398 5.9182809 3721.5384 631.81315 -10606.591 0 283.63723 -0.00014192692 -0.00016174168 + 87570 -6247.045 -6253.1673 6.1222761 3725.4447 629.81444 -10608.426 0 293.41382 -0.00041812225 -0.00044136197 + 87580 -6246.7269 -6253.0191 6.2921883 3725.7323 628.922 -10607.673 0 301.55697 -0.00051611428 -0.00054321214 + 87590 -6246.393 -6252.7398 6.3468554 3721.9903 629.38695 -10604.117 0 304.17692 -0.00040732569 -0.00043629722 + 87600 -6246.0555 -6252.3438 6.2882302 3714.919 631.01435 -10598.277 0 301.36728 -0.00012631932 -0.00015458954 + 87610 -6245.7041 -6251.9188 6.2146432 3706.165 633.21395 -10591.298 0 297.84057 0.00023984771 0.00021310033 + 87620 -6245.3135 -6251.5813 6.2678431 3697.9057 635.19192 -10584.679 0 300.39021 0.000577947 0.00055075775 + 87630 -6244.8675 -6251.4032 6.5357216 3692.2823 636.22461 -10579.91 0 313.22845 0.00078181462 0.0007510088 + 87640 -6244.3819 -6251.3613 6.9793716 3690.8078 635.9173 -10578.086 0 334.49065 0.00078384698 0.00074846393 + 87650 -6243.9014 -6251.363 7.4616697 3693.893 634.34736 -10579.603 0 357.60508 0.00057792088 0.00054127151 + 87660 -6243.461 -6251.3401 7.879057 3700.6472 632.03046 -10584.018 0 377.60862 0.00022624144 0.0001934461 + 87670 -6243.0485 -6251.323 8.2745428 3709.0974 629.72403 -10590.144 0 396.56252 -0.00015762189 -0.00018547959 + 87680 -6242.6205 -6251.4023 8.781867 3716.8244 628.1595 -10596.386 0 420.87634 -0.00044912264 -0.00047799014 + 87690 -6242.1738 -6251.5987 9.4249146 3721.7768 627.81831 -10601.194 0 451.69479 -0.00056002582 -0.00059807396 + 87700 -6241.7893 -6251.7969 10.007534 3722.874 628.81869 -10603.49 0 479.61717 -0.00046724518 -0.00051610173 + 87710 -6241.5785 -6251.8402 10.261764 3720.1531 630.91529 -10602.909 0 491.80133 -0.00020974255 -0.00026158229 + 87720 -6241.5822 -6251.6881 10.10592 3714.5381 633.5869 -10599.813 0 484.33237 0.00013691104 9.2498985e-05 + 87730 -6241.7375 -6251.4557 9.7182554 3707.4878 636.18732 -10595.131 0 465.75333 0.00048775742 0.00045430156 + 87740 -6241.9472 -6251.3005 9.3533166 3700.6754 638.12488 -10590.101 0 448.26341 0.00076593053 0.00073771148 + 87750 -6242.1702 -6251.2802 9.1100667 3695.6816 639.01759 -10585.979 0 436.60551 0.00091302916 0.0008814538 + 87760 -6242.4426 -6251.321 8.8784695 3693.653 638.77164 -10583.746 0 425.50607 0.00089871242 0.00086053798 + 87770 -6242.8203 -6251.3084 8.4880615 3694.9836 637.56142 -10583.853 0 406.79553 0.00072913805 0.00068889807 + 87780 -6243.3091 -6251.2059 7.8968057 3699.1725 635.73239 -10586.111 0 378.45924 0.00044722368 0.00041238454 + 87790 -6243.8484 -6251.0931 7.2447515 3704.9742 633.67727 -10589.745 0 347.20914 0.00011960823 9.3602872e-05 + 87800 -6244.3593 -6251.098 6.7386612 3710.803 631.73672 -10593.638 0 322.95445 -0.00018545403 -0.00020591026 + 87810 -6244.8043 -6251.2921 6.4877904 3715.2101 630.15047 -10596.653 0 310.93132 -0.00041758957 -0.00043904442 + 87820 -6245.2046 -6251.6424 6.4377142 3717.2281 629.0551 -10597.926 0 308.53138 -0.00055165284 -0.00057804814 + 87830 -6245.6074 -6252.0504 6.4430108 3716.4899 628.50734 -10597.048 0 308.78523 -0.00058292266 -0.00061261545 + 87840 -6246.0377 -6252.4328 6.3951016 3713.1771 628.50987 -10594.12 0 306.48915 -0.00051826374 -0.00054604296 + 87850 -6246.4772 -6252.7678 6.2906237 3707.9168 629.02389 -10589.708 0 301.48199 -0.00037161075 -0.00039335225 + 87860 -6246.8799 -6253.0794 6.1995082 3701.6924 629.96447 -10584.736 0 297.11522 -0.00016569009 -0.00018163055 + 87870 -6247.2048 -6253.3873 6.1824773 3695.7449 631.18593 -10580.318 0 296.299 6.4478534e-05 4.9989475e-05 + 87880 -6247.4404 -6253.6719 6.2314707 3691.4029 632.47258 -10577.547 0 298.64704 0.00027204196 0.00025354845 + 87890 -6247.607 -6253.8741 6.2670822 3689.818 633.55396 -10577.246 0 300.35375 0.00040551973 0.00037999016 + 87900 -6247.7429 -6253.9266 6.1836504 3691.6487 634.15869 -10579.734 0 296.35522 0.0004219417 0.00039076924 + 87910 -6247.8809 -6253.7979 5.9169569 3696.7892 634.10057 -10584.688 0 283.57378 0.00030245591 0.00027073457 + 87920 -6248.0264 -6253.5276 5.5012364 3704.2596 633.36428 -10591.151 0 263.65012 6.4644973e-05 3.7848995e-05 + 87930 -6248.1525 -6253.224 5.0714193 3712.3506 632.1473 -10597.722 0 243.05087 -0.00023541303 -0.00025534618 + 87940 -6248.2211 -6253.0104 4.789248 3719.0316 630.82903 -10602.871 0 229.52764 -0.0005155857 -0.00053173344 + 87950 -6248.2143 -6252.9516 4.737324 3722.5094 629.86805 -10605.329 0 227.03915 -0.00069195055 -0.00070997724 + 87960 -6248.1521 -6253.0192 4.8670876 3721.7439 629.65696 -10604.42 0 233.25815 -0.00070571641 -0.00072939044 + 87970 -6248.0788 -6253.1252 5.0463733 3716.7486 630.38006 -10600.254 0 241.85052 -0.00054250657 -0.00057087512 + 87980 -6248.0299 -6253.1954 5.1654871 3708.5979 631.9227 -10593.716 0 247.55913 -0.00023795038 -0.00026643484 + 87990 -6248.0055 -6253.2196 5.2140936 3699.1679 633.87047 -10586.258 0 249.88862 0.00013069482 0.00010630535 + 88000 -6247.9731 -6253.2418 5.2687216 3690.6963 635.6103 -10579.548 0 252.5067 0.00046318098 0.00044318632 + 88010 -6247.8977 -6253.2995 5.4017753 3685.2645 636.51047 -10575.074 0 258.88338 0.0006603487 0.00064109675 + 88020 -6247.776 -6253.3658 5.5898479 3684.293 636.12465 -10573.783 0 267.89688 0.0006497048 0.00062726941 + 88030 -6247.6431 -6253.3546 5.7115123 3688.1324 634.35238 -10575.839 0 273.72772 0.00040865485 0.0003830205 + 88040 -6247.5411 -6253.1953 5.6542305 3695.8591 631.50022 -10580.555 0 270.98245 -2.0959568e-05 -4.5351396e-05 + 88050 -6247.4754 -6252.9167 5.441337 3705.4067 628.22067 -10586.544 0 260.7794 -0.00053565851 -0.00055404439 + 88060 -6247.403 -6252.653 5.2499733 3714.0911 625.34622 -10592.09 0 251.60818 -0.00099557067 -0.0010079838 + 88070 -6247.2686 -6252.5514 5.282835 3719.4081 623.66677 -10595.626 0 253.1831 -0.0012667866 -0.0012789545 + 88080 -6247.0551 -6252.6578 5.6026667 3719.8112 623.70991 -10596.179 0 268.51123 -0.0012649822 -0.0012836626 + 88090 -6246.802 -6252.884 6.0820558 3715.1684 625.57995 -10593.632 0 291.48624 -0.00098257317 -0.0010095028 + 88100 -6246.5727 -6253.0847 6.5120207 3706.7557 628.90266 -10588.743 0 312.09257 -0.00048977279 -0.00051987924 + 88110 -6246.4009 -6253.1681 6.7672482 3696.8456 632.90396 -10582.918 0 324.3245 8.8121826e-05 6.2525158e-05 + 88120 -6246.2624 -6253.1466 6.8842326 3688.0718 636.61227 -10577.831 0 329.93105 0.00060644063 0.00058908011 + 88130 -6246.0988 -6253.092 6.9932304 3682.7624 639.12793 -10574.982 0 335.15484 0.00093766505 0.00092495605 + 88140 -6245.8719 -6253.0418 7.1699032 3682.3871 639.87604 -10575.305 0 343.62199 0.0010007807 0.00098462363 + 88150 -6245.603 -6252.9439 7.3408713 3687.1938 638.76419 -10578.902 0 351.81574 0.00078032325 0.00075485619 + 88160 -6245.359 -6252.6982 7.3392148 3696.0821 636.19807 -10584.978 0 351.73635 0.00033312133 0.00029960526 + 88170 -6245.1928 -6252.2669 7.074055 3706.7791 632.9512 -10591.997 0 339.02841 -0.00022134204 -0.00025608695 + 88180 -6245.0936 -6251.7465 6.6529489 3716.37 629.93183 -10598.048 0 318.84664 -0.00073064383 -0.00076086394 + 88190 -6244.9985 -6251.3206 6.3221456 3722.118 627.92024 -10601.359 0 302.99269 -0.0010549517 -0.0010810857 + 88200 -6244.8524 -6251.1277 6.275308 3722.3075 627.35333 -10600.789 0 300.74797 -0.0011123512 -0.0011397125 + 88210 -6244.6529 -6251.1713 6.5184025 3716.767 628.21492 -10596.153 0 312.39842 -0.00090397004 -0.00093685025 + 88220 -6244.4417 -6251.3462 6.9045178 3706.868 630.06159 -10588.276 0 330.90323 -0.00050855857 -0.00054578746 + 88230 -6244.2604 -6251.5385 7.2781433 3695.0504 632.17726 -10578.766 0 348.80946 -5.1630105e-05 -8.7371712e-05 + 88240 -6244.1126 -6251.7058 7.5931441 3684.1015 633.80717 -10569.614 0 363.90607 0.00033601923 0.00030743475 + 88250 -6243.96 -6251.884 7.9240217 3676.4445 634.39267 -10562.721 0 379.76358 0.00055508328 0.00053431711 + 88260 -6243.7522 -6252.1317 8.3795276 3673.6215 633.73061 -10559.484 0 401.59398 0.00055972398 0.00054110633 + 88270 -6243.4727 -6252.4527 8.9800105 3676.0505 632.01363 -10560.517 0 430.37249 0.00036153711 0.00033648462 + 88280 -6243.173 -6252.7502 9.5772231 3683.0316 629.75164 -10565.533 0 458.99427 1.8650341e-05 -1.7801329e-05 + 88290 -6242.9615 -6252.8571 9.8956515 3692.9276 627.60846 -10573.393 0 474.25514 -0.00038254039 -0.00042657533 + 88300 -6242.9341 -6252.6508 9.7166749 3703.4687 626.20527 -10582.325 0 465.67758 -0.00074587958 -0.00078638453 + 88310 -6243.0926 -6252.1729 9.0802994 3712.2003 625.94994 -10590.323 0 435.1789 -0.0009829413 -0.0010102772 + 88320 -6243.3371 -6251.629 8.2919344 3717.0829 626.94393 -10595.656 0 397.39602 -0.0010326065 -0.0010474459 + 88330 -6243.557 -6251.2417 7.6847533 3717.0967 628.98684 -10597.325 0 368.2965 -0.00088072648 -0.00089398807 + 88340 -6243.73 -6251.0888 7.3587843 3712.5673 631.65747 -10595.314 0 352.67423 -0.00056881651 -0.0005921005 + 88350 -6243.9305 -6251.0804 7.1499255 3705.0048 634.43002 -10590.515 0 342.66455 -0.00018163561 -0.00021707852 + 88360 -6244.2455 -6251.0881 6.8426505 3696.5261 636.78959 -10584.404 0 327.93821 0.00018338985 0.0001444914 + 88370 -6244.6844 -6251.0926 6.4082025 3689.1612 638.32312 -10578.577 0 307.11702 0.00044836322 0.00041723522 + 88380 -6245.1695 -6251.2083 6.0387804 3684.3608 638.77306 -10574.342 0 289.41224 0.00057079795 0.00055120841 + 88390 -6245.6101 -6251.5632 5.9531554 3682.8361 638.05507 -10572.454 0 285.30861 0.00053900317 0.00052476035 + 88400 -6245.9807 -6252.1542 6.1735178 3684.6221 636.25284 -10573.029 0 295.86961 0.0003596434 0.00034108274 + 88410 -6246.3311 -6252.8197 6.4886362 3689.1712 633.60262 -10575.594 0 310.97186 5.296244e-05 2.5582181e-05 + 88420 -6246.7276 -6253.3504 6.6228101 3695.4044 630.47028 -10579.225 0 317.40222 -0.00034171222 -0.000374238 + 88430 -6247.1869 -6253.6303 6.4433303 3701.8088 627.31444 -10582.753 0 308.80054 -0.00076087227 -0.00079095086 + 88440 -6247.6612 -6253.6928 6.0315908 3706.6961 624.62925 -10585.018 0 289.06767 -0.0011234538 -0.0011463485 + 88450 -6248.0789 -6253.6636 5.584699 3708.6236 622.86794 -10585.155 0 267.65011 -0.0013502341 -0.0013674005 + 88460 -6248.3985 -6253.6545 5.2559628 3706.8386 622.35695 -10582.85 0 251.89523 -0.0013872092 -0.0014041462 + 88470 -6248.6294 -6253.6976 5.0681549 3701.5577 623.21505 -10578.47 0 242.89442 -0.0012225424 -0.0012439076 + 88480 -6248.8126 -6253.7582 4.9455737 3693.958 625.29711 -10573.013 0 237.01964 -0.00089168349 -0.00091799597 + 88490 -6248.9856 -6253.7914 4.8058434 3685.8903 628.18707 -10567.869 0 230.32298 -0.00047070386 -0.00049867148 + 88500 -6249.1605 -6253.7859 4.6253691 3679.4147 631.26073 -10564.461 0 221.67364 -6.0086081e-05 -8.5369065e-05 + 88510 -6249.3244 -6253.77 4.445587 3676.2884 633.81912 -10563.877 0 213.05748 0.00023847811 0.00021839659 + 88520 -6249.4514 -6253.7905 4.3391219 3677.5232 635.26529 -10566.579 0 207.95507 0.00034799391 0.0003323272 + 88530 -6249.5195 -6253.8792 4.3597283 3683.1113 635.27463 -10572.265 0 208.94264 0.00023761311 0.00022274648 + 88540 -6249.526 -6254.0212 4.4952676 3691.9842 633.90262 -10579.908 0 215.43845 -6.755861e-05 -8.5739152e-05 + 88550 -6249.4928 -6254.1487 4.6558683 3702.2139 631.58758 -10587.95 0 223.13533 -0.00049123785 -0.00051441918 + 88560 -6249.4529 -6254.177 4.72404 3711.4121 629.0375 -10594.627 0 226.4025 -0.00092337102 -0.00094956565 + 88570 -6249.4236 -6254.0659 4.6423225 3717.2607 627.02889 -10598.355 0 222.48614 -0.0012462142 -0.0012716193 + 88580 -6249.3903 -6253.8518 4.4614519 3718.0883 626.17768 -10598.118 0 213.81781 -0.0013649037 -0.0013874574 + 88590 -6249.3213 -6253.6152 4.2939024 3713.3659 626.75334 -10593.734 0 205.7879 -0.001236474 -0.0012576404 + 88600 -6249.199 -6253.4126 4.2136119 3703.9549 628.59168 -10585.959 0 201.93993 -0.00088789079 -0.00091072872 + 88610 -6249.0364 -6253.2435 4.2070845 3691.9684 631.12903 -10576.341 0 201.6271 -0.00041357706 -0.00043910015 + 88620 -6248.859 -6253.0874 4.2284326 3680.2436 633.54903 -10566.88 0 202.65021 5.0291258e-05 2.4468201e-05 + 88630 -6248.6702 -6252.9656 4.2954448 3671.5876 635.00915 -10559.562 0 205.86182 0.00036665004 0.00034376294 + 88640 -6248.4352 -6252.9527 4.5175078 3668.0504 634.89175 -10555.895 0 216.50432 0.00043830652 0.00041852387 + 88650 -6248.1017 -6253.1179 5.0161488 3670.4324 633.00838 -10556.559 0 240.402 0.00023481236 0.00021399392 + 88660 -6247.6428 -6253.4446 5.8018025 3678.113 629.69022 -10561.248 0 278.05493 -0.00020046346 -0.00022765151 + 88670 -6247.0908 -6253.8036 6.712828 3689.1879 625.72743 -10568.719 0 321.71638 -0.00076143731 -0.00079630235 + 88680 -6246.5288 -6254.0163 7.4874576 3700.8715 622.16328 -10577.051 0 358.84098 -0.0013039378 -0.0013412021 + 88690 -6246.0331 -6253.9725 7.9394865 3710.1226 619.9969 -10584.092 0 380.50474 -0.0016797666 -0.0017111702 + 88700 -6245.6127 -6253.7013 8.0886226 3714.4291 619.88908 -10588.02 0 387.65218 -0.0017762431 -0.0017981952 + 88710 -6245.2199 -6253.3158 8.0958847 3712.5835 621.97136 -10587.871 0 388.00022 -0.0015532222 -0.0015709912 + 88720 -6244.8257 -6252.8793 8.0535712 3705.1528 625.8134 -10583.845 0 385.97232 -0.0010630077 -0.0010861332 + 88730 -6244.4724 -6252.3425 7.8700872 3694.353 630.54261 -10577.238 0 377.17874 -0.00043863473 -0.00047156008 + 88740 -6244.2354 -6251.6332 7.3977861 3683.2942 635.07542 -10570.003 0 354.54342 0.00015044076 0.00011275105 + 88750 -6244.1379 -6250.8018 6.6638827 3674.9304 638.40382 -10564.136 0 319.37065 0.00055633751 0.00052323964 + 88760 -6244.1177 -6250.059 5.9413086 3671.2019 639.86215 -10561.123 0 284.74084 0.00069661164 0.00067264952 + 88770 -6244.0772 -6249.6566 5.5793272 3672.6721 639.28946 -10561.618 0 267.39267 0.00056712106 0.00054797325 + 88780 -6243.962 -6249.7215 5.7594803 3678.626 637.03106 -10565.379 0 276.02661 0.00022732064 0.00020407947 + 88790 -6243.797 -6250.1835 6.3865087 3687.4135 633.78529 -10571.382 0 306.07733 -0.00022669594 -0.00025941146 + 88800 -6243.6614 -6250.8443 7.1829447 3696.8648 630.36179 -10578.071 0 344.24701 -0.00068831281 -0.00072759412 + 88810 -6243.6227 -6251.5211 7.8984323 3704.7247 627.44495 -10583.691 0 378.5372 -0.0010611758 -0.0010984286 + 88820 -6243.682 -6252.1507 8.4687713 3709.1059 625.44367 -10586.7 0 405.87104 -0.0012760267 -0.0013049361 + 88830 -6243.7804 -6252.7713 8.9908791 3708.9312 624.46463 -10586.167 0 430.89337 -0.0013045414 -0.0013274551 + 88840 -6243.8687 -6253.3987 9.5299869 3704.2473 624.38846 -10582.035 0 456.73044 -0.0011661268 -0.0011924501 + 88850 -6243.9704 -6253.925 9.9545412 3696.2389 624.9853 -10575.149 0 477.07747 -0.00092049957 -0.00095795849 + 88860 -6244.1647 -6254.1574 9.9926579 3686.8497 626.00703 -10567.014 0 478.90424 -0.00064458459 -0.00069173457 + 88870 -6244.501 -6253.9694 9.4683772 3678.1526 627.23079 -10559.353 0 453.77776 -0.00040452979 -0.00045182583 + 88880 -6244.9381 -6253.4114 8.4732726 3671.7876 628.46483 -10553.664 0 406.08677 -0.00023924112 -0.00027709013 + 88890 -6245.3706 -6252.6817 7.3111432 3668.7059 629.53881 -10550.926 0 350.39101 -0.00016243952 -0.00018826107 + 88900 -6245.7054 -6252.0031 6.2977369 3669.2004 630.29752 -10551.501 0 301.82289 -0.00017504028 -0.00019380905 + 88910 -6245.9131 -6251.5173 5.6042221 3673.0338 630.61238 -10555.163 0 268.58577 -0.00027410516 -0.00029355042 + 88920 -6246.0243 -6251.2614 5.2370775 3679.5172 630.41606 -10561.195 0 250.99014 -0.00045160684 -0.00047680993 + 88930 -6246.0951 -6251.2087 5.1136119 3687.5388 629.74841 -10568.496 0 245.07297 -0.00068643732 -0.00071734183 + 88940 -6246.1718 -6251.321 5.1491954 3695.6361 628.7873 -10575.744 0 246.77833 -0.00093797244 -0.00097036851 + 88950 -6246.2711 -6251.5783 5.3072232 3702.1902 627.83693 -10581.605 0 254.35192 -0.0011479139 -0.0011765965 + 88960 -6246.3783 -6251.9806 5.6022857 3705.7498 627.26203 -10584.992 0 268.49296 -0.0012526138 -0.0012748729 + 88970 -6246.4626 -6252.5204 6.0578291 3705.4211 627.37922 -10585.321 0 290.32516 -0.0012035578 -0.0012209827 + 88980 -6246.5065 -6253.1414 6.6349437 3701.201 628.33704 -10582.679 0 317.98373 -0.00098933667 -0.0010064091 + 88990 -6246.5294 -6253.7193 7.1898944 3694.097 630.02526 -10577.842 0 344.58008 -0.00064889177 -0.00066907874 + 89000 -6246.5778 -6254.1028 7.5250055 3685.9198 632.05363 -10572.076 0 360.64049 -0.00026683492 -0.00028958534 + 89010 -6246.6856 -6254.1992 7.5136031 3678.7805 633.82798 -10566.808 0 360.09402 5.0121754e-05 2.8437838e-05 + 89020 -6246.8428 -6254.0273 7.1845008 3674.4815 634.71993 -10563.229 0 344.32159 0.00020599806 0.00018820653 + 89030 -6247.0069 -6253.69 6.6831919 3674.0258 634.28 -10561.996 0 320.29605 0.0001442261 0.00012961761 + 89040 -6247.1408 -6253.2995 6.1586566 3677.3735 632.41173 -10563.085 0 295.15738 -0.00013621549 -0.00015097316 + 89050 -6247.238 -6252.9258 5.6878601 3683.4681 629.43511 -10565.829 0 272.59417 -0.00057897365 -0.0005967124 + 89060 -6247.3154 -6252.6023 5.2868869 3690.5017 626.01487 -10569.119 0 253.37728 -0.0010818286 -0.0011026781 + 89070 -6247.3907 -6252.3604 4.9696195 3696.3703 622.9799 -10571.711 0 238.17205 -0.0015199694 -0.0015417703 + 89080 -6247.4644 -6252.2509 4.7865301 3699.2328 621.09309 -10572.577 0 229.39738 -0.0017776319 -0.001798196 + 89090 -6247.5215 -6252.3264 4.804901 3698.0432 620.83898 -10571.209 0 230.27781 -0.0017812972 -0.0018002917 + 89100 -6247.5488 -6252.5971 5.0483059 3692.9063 622.28561 -10567.789 0 241.94315 -0.0015244962 -0.0015432963 + 89110 -6247.5472 -6253.0044 5.4572218 3685.1201 625.05543 -10563.18 0 261.54069 -0.001074097 -0.0010941271 + 89120 -6247.529 -6253.4437 5.9146703 3676.8491 628.41712 -10558.71 0 283.46419 -0.00055321213 -0.00057483444 + 89130 -6247.5044 -6253.8147 6.310298 3670.5059 631.4839 -10555.805 0 302.42489 -0.00010533143 -0.00012836286 + 89140 -6247.4758 -6254.0526 6.5767786 3668.0388 633.47029 -10555.562 0 315.19613 0.00014787408 0.00012318319 + 89150 -6247.4475 -6254.1216 6.6740843 3670.3514 633.92962 -10558.403 0 319.85957 0.00014141286 0.00011467608 + 89160 -6247.433 -6253.9992 6.5662551 3677.0219 632.88904 -10563.91 0 314.69179 -0.00011478655 -0.00014268825 + 89170 -6247.4458 -6253.6889 6.2430689 3686.3907 630.82903 -10570.909 0 299.20289 -0.00053846769 -0.00056499145 + 89180 -6247.479 -6253.2485 5.7695439 3696.001 628.51122 -10577.761 0 276.50891 -0.00099900242 -0.0010218324 + 89190 -6247.5017 -6252.7887 5.2869219 3703.293 626.71833 -10582.8 0 253.37896 -0.0013581393 -0.0013775561 + 89200 -6247.4834 -6252.4197 4.9362757 3706.351 626.00087 -10584.772 0 236.57403 -0.0015148266 -0.0015335684 + 89210 -6247.4174 -6252.1994 4.782046 3704.442 626.51359 -10583.155 0 229.18248 -0.0014361824 -0.0014567335 + 89220 -6247.3163 -6252.1363 4.8200336 3698.1569 627.98538 -10578.279 0 231.00305 -0.0011622993 -0.0011847909 + 89230 -6247.1868 -6252.2296 5.0427937 3689.1538 629.82552 -10571.209 0 241.67897 -0.00078642529 -0.00080934494 + 89240 -6247.0162 -6252.4835 5.4672513 3679.6507 631.33074 -10563.465 0 262.02136 -0.00042239897 -0.00044469536 + 89250 -6246.7852 -6252.8774 6.0922723 3671.846 631.92548 -10556.649 0 291.97587 -0.0001716212 -0.00019351037 + 89260 -6246.4889 -6253.3354 6.8464672 3667.3971 631.35228 -10552.085 0 328.12112 -9.7039141e-05 -0.00011897073 + 89270 -6246.1449 -6253.7387 7.593747 3667.0544 629.7446 -10550.538 0 363.93496 -0.00020859162 -0.00023017482 + 89280 -6245.7816 -6253.9768 8.1952214 3670.5358 627.55887 -10552.071 0 392.76099 -0.0004639009 -0.00048436583 + 89290 -6245.4228 -6253.9887 8.5658877 3676.6834 625.40098 -10556.073 0 410.5254 -0.00078532224 -0.0008048739 + 89300 -6245.0864 -6253.7665 8.6801137 3683.846 623.8245 -10561.437 0 415.99975 -0.0010875489 -0.0011077093 + 89310 -6244.7889 -6253.3375 8.5485811 3690.3407 623.17857 -10566.857 0 409.69597 -0.0013035303 -0.0013260078 + 89320 -6244.5435 -6252.7544 8.2108746 3694.8351 623.5488 -10571.138 0 393.51118 -0.00139795 -0.0014235206 + 89330 -6244.3529 -6252.09 7.7370679 3696.5687 624.79164 -10573.45 0 370.80371 -0.0013666203 -0.0013950253 + 89340 -6244.2112 -6251.4199 7.20862 3695.4109 626.62819 -10573.459 0 345.47752 -0.0012278806 -0.0012580506 + 89350 -6244.1117 -6250.8044 6.6927162 3691.7869 628.74614 -10571.337 0 320.75251 -0.001012619 -0.0010425661 + 89360 -6244.047 -6250.2956 6.2485918 3686.5203 630.86577 -10567.682 0 299.46758 -0.00075612731 -0.00078317983 + 89370 -6243.9996 -6249.9648 5.9652053 3680.6556 632.75572 -10563.376 0 285.88611 -0.00049277072 -0.00051509097 + 89380 -6243.9343 -6249.9145 5.980229 3675.3084 634.21503 -10559.438 0 286.60613 -0.00025428226 -0.00027314116 + 89390 -6243.8115 -6250.2384 6.4269288 3671.5533 635.05356 -10556.845 0 308.01449 -7.1947938e-05 -9.2453458e-05 + 89400 -6243.6219 -6250.9377 7.3157336 3670.3054 635.09846 -10556.342 0 350.611 2.0193935e-05 -7.9684059e-06 + 89410 -6243.4177 -6251.8658 8.4480601 3672.1318 634.23596 -10558.234 0 404.87844 -1.2118498e-05 -4.9459344e-05 + 89420 -6243.2973 -6252.777 9.4797089 3676.9847 632.47305 -10562.235 0 454.32084 -0.00018994612 -0.00023071672 + 89430 -6243.3397 -6253.4629 10.123217 3683.9869 629.98846 -10567.438 0 485.16138 -0.00050161191 -0.00053674179 + 89440 -6243.5475 -6253.8575 10.31003 3691.4805 627.1434 -10572.481 0 494.11447 -0.00089199755 -0.00091714055 + 89450 -6243.8628 -6254.0112 10.148346 3697.4442 624.43846 -10575.894 0 486.36568 -0.0012729843 -0.0012926616 + 89460 -6244.2394 -6253.974 9.7345913 3700.1341 622.42097 -10576.529 0 466.53624 -0.00155169 -0.0015748192 + 89470 -6244.6831 -6253.7251 9.0420818 3698.6443 621.55828 -10573.928 0 433.34729 -0.0016602777 -0.0016913799 + 89480 -6245.2125 -6253.2254 8.0128819 3693.1502 622.10049 -10568.476 0 384.02226 -0.0015734047 -0.0016084155 + 89490 -6245.7953 -6252.5307 6.7353931 3684.8064 623.97096 -10561.308 0 322.79783 -0.0013115796 -0.0013422599 + 89500 -6246.3425 -6251.8317 5.4892805 3675.4345 626.73594 -10554.002 0 263.07712 -0.00093647849 -0.00095845319 + 89510 -6246.7703 -6251.3662 4.5959628 3667.1382 629.68877 -10548.193 0 220.26433 -0.00054130855 -0.00055770228 + 89520 -6247.0589 -6251.282 4.223101 3661.893 632.03514 -10545.21 0 202.39469 -0.00023328741 -0.00025128618 + 89530 -6247.2563 -6251.5665 4.3102231 3661.1065 633.12226 -10545.795 0 206.57008 -0.00010635782 -0.0001307259 + 89540 -6247.4377 -6252.0838 4.6461226 3665.1996 632.64017 -10549.924 0 222.66826 -0.00020997512 -0.00023919219 + 89550 -6247.6554 -6252.6743 5.0189153 3673.3535 630.72983 -10556.758 0 240.53458 -0.00052639358 -0.0005541696 + 89560 -6247.9081 -6253.2428 5.33473 3683.5911 627.95574 -10564.79 0 255.67019 -0.00096891 -0.00098969549 + 89570 -6248.1484 -6253.7752 5.6267598 3693.2671 625.14397 -10572.186 0 269.6659 -0.0014062112 -0.0014202464 + 89580 -6248.3276 -6254.2775 5.9498311 3699.8528 623.13526 -10577.265 0 285.14929 -0.0017059005 -0.0017193264 + 89590 -6248.4423 -6254.7013 6.2589687 3701.7207 622.53146 -10578.953 0 299.9649 -0.0017796442 -0.001799244 + 89600 -6248.539 -6254.9406 6.401549 3698.6043 623.51307 -10577.058 0 306.79815 -0.0016108001 -0.0016380951 + 89610 -6248.6701 -6254.9118 6.2416676 3691.5759 625.78433 -10572.272 0 299.13573 -0.0012549929 -0.0012852052 + 89620 -6248.8446 -6254.6349 5.7903744 3682.6286 628.66642 -10565.93 0 277.50723 -0.00081780543 -0.00084432177 + 89630 -6249.0227 -6254.2336 5.210889 3674.0794 631.31007 -10559.623 0 249.73504 -0.00042162367 -0.00044140784 + 89640 -6249.1532 -6253.8559 4.7027231 3667.988 632.9548 -10554.799 0 225.38088 -0.00017282352 -0.00018807739 + 89650 -6249.2127 -6253.5894 4.3767094 3665.6975 633.14788 -10552.435 0 209.75647 -0.0001360096 -0.00015141717 + 89660 -6249.2171 -6253.434 4.2168714 3667.555 631.85745 -10552.846 0 202.09614 -0.00031911559 -0.00033762558 + 89670 -6249.2015 -6253.3406 4.139141 3672.8535 629.45499 -10555.649 0 198.37086 -0.00067214761 -0.000692795 + 89680 -6249.1894 -6253.2771 4.0877383 3680.0237 626.58456 -10559.885 0 195.90736 -0.0011007905 -0.001120035 + 89690 -6249.1721 -6253.2647 4.0926134 3687.0527 623.96827 -10564.286 0 196.141 -0.0014925828 -0.0015078634 + 89700 -6249.1149 -6253.3579 4.242996 3692.0388 622.21085 -10567.608 0 203.34818 -0.0017488283 -0.0017612759 + 89710 -6248.9848 -6253.5797 4.5949158 3693.7231 621.65743 -10568.96 0 220.21415 -0.0018123255 -0.0018260856 + 89720 -6248.7799 -6253.8703 5.0904463 3691.8205 622.33379 -10568.025 0 243.96275 -0.0016814618 -0.0016998962 + 89730 -6248.532 -6254.1034 5.5714041 3687.0248 623.97094 -10565.099 0 267.01295 -0.0014058172 -0.0014279857 + 89740 -6248.2758 -6254.1671 5.8913541 3680.7092 626.09847 -10560.975 0 282.34675 -0.0010659229 -0.0010869641 + 89750 -6248.0112 -6254.04 6.0287888 3674.4772 628.182 -10556.699 0 288.93339 -0.00074653349 -0.00076197567 + 89760 -6247.6966 -6253.7934 6.0967875 3669.7585 629.77006 -10553.322 0 292.19227 -0.00051417221 -0.0005243356 + 89770 -6247.2772 -6253.5226 6.2454013 3667.5488 630.60763 -10551.679 0 299.31467 -0.00040513339 -0.00041573006 + 89780 -6246.7256 -6253.2697 6.544104 3668.2876 630.67978 -10552.237 0 313.63018 -0.00042402779 -0.00044239207 + 89790 -6246.0648 -6252.9956 6.9307767 3671.8228 630.17544 -10554.994 0 332.16171 -0.00054931855 -0.00057891795 + 89800 -6245.3602 -6252.6219 7.2616693 3677.4303 629.3922 -10559.444 0 348.01994 -0.00074140544 -0.00077851286 + 89810 -6244.6783 -6252.1196 7.441304 3683.8989 628.62288 -10564.641 0 356.62904 -0.00095023639 -0.00098582512 + 89820 -6244.0342 -6251.5811 7.5468717 3689.7221 628.06702 -10569.37 0 361.68844 -0.0011229733 -0.0011496823 + 89830 -6243.3758 -6251.1965 7.8207327 3693.4364 627.79598 -10572.429 0 374.8134 -0.0012149054 -0.0012341321 + 89840 -6242.6416 -6251.118 8.4763449 3694.0574 627.77389 -10572.949 0 406.23401 -0.0012039615 -0.0012259735 + 89850 -6241.8587 -6251.3116 9.4529574 3691.4254 627.91074 -10570.648 0 453.03876 -0.0011013321 -0.0011362285 + 89860 -6241.1735 -6251.5562 10.382796 3686.2319 628.11335 -10565.901 0 497.60185 -0.00094679396 -0.0009939347 + 89870 -6240.7496 -6251.6238 10.874193 3679.6798 628.3117 -10559.615 0 521.15233 -0.0007869998 -0.00083440699 + 89880 -6240.624 -6251.4721 10.848127 3673.0252 628.46124 -10552.959 0 519.90313 -0.00065277161 -0.00068833236 + 89890 -6240.6861 -6251.2478 10.561769 3667.3192 628.53396 -10547.101 0 506.17921 -0.00055496 -0.00057781072 + 89900 -6240.7985 -6251.1111 10.312624 3663.4107 628.50354 -10543.025 0 494.23883 -0.00049901551 -0.00051945187 + 89910 -6240.9134 -6251.0805 10.167045 3661.9907 628.32633 -10541.398 0 487.26184 -0.00049924814 -0.0005284037 + 89920 -6241.0767 -6251.0445 9.9677747 3663.4746 627.93317 -10542.452 0 477.71169 -0.00057684396 -0.00061688724 + 89930 -6241.3476 -6250.8994 9.5517899 3667.7517 627.25503 -10545.906 0 457.77537 -0.00074326548 -0.00078634903 + 89940 -6241.7245 -6250.669 8.9444716 3674.005 626.28534 -10550.959 0 428.66927 -0.00098288173 -0.0010183266 + 89950 -6242.1378 -6250.5086 8.3708221 3680.788 625.14739 -10556.444 0 401.17676 -0.0012477829 -0.0012707493 + 89960 -6242.5026 -6250.5959 8.0932646 3686.3984 624.11908 -10561.113 0 387.87465 -0.0014687027 -0.0014835035 + 89970 -6242.7826 -6250.9957 8.2131023 3689.4099 623.5813 -10563.987 0 393.61794 -0.0015768957 -0.0015929544 + 89980 -6243.0149 -6251.6061 8.591205 3689.1282 623.89092 -10564.625 0 411.73875 -0.0015276336 -0.0015519355 + 89990 -6243.28 -6252.2234 8.9434209 3685.7861 625.22034 -10563.23 0 428.61891 -0.0013169611 -0.0013491327 + 90000 -6243.6416 -6252.6689 9.0272412 3680.4375 627.43372 -10560.54 0 432.63605 -0.0009866472 -0.0010199625 + 90010 -6244.1026 -6252.8849 8.7822749 3674.632 630.06603 -10557.583 0 420.89589 -0.00061555892 -0.00064241776 + 90020 -6244.6048 -6252.9466 8.3418587 3669.997 632.43181 -10555.375 0 399.78868 -0.00029952682 -0.00031720673 + 90030 -6245.0722 -6252.9916 7.9194034 3667.838 633.83448 -10554.664 0 379.54225 -0.00012599802 -0.00013861906 + 90040 -6245.4649 -6253.1116 7.6467234 3668.8306 633.80067 -10555.743 0 366.47389 -0.00015086348 -0.00016602298 + 90050 -6245.8037 -6253.2856 7.481926 3672.831 632.25093 -10558.368 0 358.57588 -0.00038204298 -0.00040456008 + 90060 -6246.1441 -6253.4085 7.2643893 3678.8349 629.54221 -10561.786 0 348.1503 -0.00077243244 -0.00080038156 + 90070 -6246.5196 -6253.3958 6.8761418 3685.1438 626.3661 -10564.906 0 329.5433 -0.0012260475 -0.001252798 + 90080 -6246.9052 -6253.2705 6.3652715 3689.7871 623.53907 -10566.597 0 305.05953 -0.0016212267 -0.0016419037 + 90090 -6247.2377 -6253.1459 5.9082115 3691.1409 621.75755 -10566.044 0 283.15465 -0.0018483875 -0.0018646348 + 90100 -6247.476 -6253.1174 5.6414168 3688.5229 621.39765 -10563.038 0 270.36835 -0.0018491458 -0.0018673314 + 90110 -6247.641 -6253.174 5.5329283 3682.4826 622.4166 -10558.073 0 265.16897 -0.0016380638 -0.0016626142 + 90120 -6247.7949 -6253.2232 5.428343 3674.6266 624.38017 -10552.23 0 260.15665 -0.0012952459 -0.0013239256 + 90130 -6247.9805 -6253.1998 5.2192974 3667.0668 626.60707 -10546.874 0 250.13802 -0.0009341465 -0.00096003765 + 90140 -6248.1837 -6253.1388 4.9550699 3661.7625 628.38739 -10543.289 0 237.47475 -0.00066188639 -0.00067983874 + 90150 -6248.3513 -6253.1431 4.7918248 3660.0103 629.2036 -10542.357 0 229.65113 -0.0005492738 -0.00056045302 + 90160 -6248.441 -6253.2866 4.8456178 3662.191 628.8789 -10544.357 0 232.22919 -0.00061740459 -0.00062807642 + 90170 -6248.4576 -6253.5485 5.0908801 3667.7519 627.60882 -10548.909 0 243.98354 -0.00083827845 -0.0008544615 + 90180 -6248.4473 -6253.83 5.3827013 3675.3648 625.87653 -10555.071 0 257.96925 -0.001144639 -0.0011673797 + 90190 -6248.4606 -6254.0325 5.5719172 3683.2244 624.28925 -10561.546 0 267.03754 -0.0014466026 -0.00147156 + 90200 -6248.5138 -6254.1288 5.6150235 3689.4588 623.39114 -10566.979 0 269.10343 -0.0016541174 -0.0016754518 + 90210 -6248.5798 -6254.1715 5.5917024 3692.5966 623.50689 -10570.275 0 267.98575 -0.0017022877 -0.0017174498 + 90220 -6248.6145 -6254.2341 5.6196054 3691.9808 624.65486 -10570.87 0 269.32302 -0.0015726615 -0.0015841239 + 90230 -6248.5949 -6254.3371 5.7421306 3687.9787 626.54645 -10568.862 0 275.19512 -0.0013015609 -0.0013142738 + 90240 -6248.5366 -6254.4257 5.8891346 3681.8711 628.66979 -10564.967 0 282.24038 -0.00096960349 -0.00098672829 + 90250 -6248.4743 -6254.4178 5.9435592 3675.4276 630.43775 -10560.283 0 284.84871 -0.00067465789 -0.00069548503 + 90260 -6248.4292 -6254.2739 5.844676 3670.3342 631.36221 -10555.97 0 280.10967 -0.00049916032 -0.00052066868 + 90270 -6248.3935 -6254.0231 5.6296025 3667.7099 631.20088 -10552.934 0 269.80214 -0.0004854004 -0.00050533746 + 90280 -6248.3422 -6253.7328 5.3906765 3667.8739 630.02424 -10551.631 0 258.35147 -0.00062694941 -0.00064548271 + 90290 -6248.2533 -6253.4613 5.2079926 3670.3791 628.17615 -10552.017 0 249.59623 -0.00087614491 -0.00089524601 + 90300 -6248.1194 -6253.233 5.1135453 3674.2413 626.14611 -10553.62 0 245.06978 -0.0011624469 -0.0011841145 + 90310 -6247.9468 -6253.0401 5.0933344 3678.2613 624.40749 -10555.709 0 244.10117 -0.0014148158 -0.0014393896 + 90320 -6247.7473 -6252.8624 5.1150481 3681.3455 623.28372 -10557.492 0 245.1418 -0.0015808069 -0.0016062278 + 90330 -6247.5233 -6252.6992 5.1759148 3682.7394 622.88309 -10558.322 0 248.05888 -0.0016364004 -0.001659238 + 90340 -6247.2502 -6252.5968 5.346582 3682.1423 623.11103 -10557.85 0 256.23821 -0.0015851374 -0.0016034184 + 90350 -6246.8752 -6252.6333 5.7581182 3679.7268 623.74379 -10556.104 0 275.96133 -0.0014505441 -0.0014664214 + 90360 -6246.3454 -6252.8521 6.5067409 3676.0965 624.53257 -10553.481 0 311.83953 -0.0012673923 -0.0012866888 + 90370 -6245.6559 -6253.1911 7.5352007 3672.173 625.30033 -10550.664 0 361.1291 -0.0010740977 -0.0011019043 + 90380 -6244.8788 -6253.4839 8.6051396 3668.9771 625.99484 -10548.456 0 412.40658 -0.00090493079 -0.00094049257 + 90390 -6244.1336 -6253.5574 9.4237707 3667.3304 626.67309 -10547.561 0 451.63997 -0.00078156103 -0.00081758829 + 90400 -6243.5088 -6253.3528 9.8439812 3667.6074 627.42199 -10548.382 0 471.77881 -0.00070820264 -0.00073643011 + 90410 -6243.0093 -6252.9643 9.9550092 3669.6854 628.2607 -10550.91 0 477.0999 -0.00067617101 -0.00069466416 + 90420 -6242.5857 -6252.5556 9.9699689 3673.1019 629.09008 -10554.748 0 477.81685 -0.000676476 -0.00069174021 + 90430 -6242.2108 -6252.2313 10.020462 3677.2734 629.72631 -10559.231 0 480.23677 -0.00070983728 -0.00073152455 + 90440 -6241.9225 -6251.9704 10.047827 3681.6076 629.99868 -10563.577 0 481.54826 -0.00078418534 -0.00081692764 + 90450 -6241.7948 -6251.6711 9.8762977 3685.4728 629.85105 -10566.995 0 473.3276 -0.00090044682 -0.00093965915 + 90460 -6241.8652 -6251.2685 9.4033071 3688.1322 629.38706 -10568.788 0 450.65924 -0.0010378047 -0.0010732092 + 90470 -6242.0837 -6250.8298 8.7461161 3688.8046 628.83326 -10568.468 0 419.16296 -0.0011519325 -0.0011764341 + 90480 -6242.339 -6250.5348 8.1957524 3686.9341 628.44102 -10565.91 0 392.78644 -0.0011921382 -0.001208487 + 90490 -6242.5474 -6250.5375 7.9901029 3682.5613 628.3772 -10561.476 0 382.93056 -0.0011293363 -0.0011479916 + 90500 -6242.7225 -6250.833 8.1105062 3676.5294 628.64924 -10556.012 0 388.70096 -0.00097662988 -0.0010062272 + 90510 -6242.9591 -6251.2619 8.3027314 3670.3131 629.08827 -10550.663 0 397.91348 -0.00078804689 -0.00082728784 + 90520 -6243.343 -6251.6448 8.301821 3665.5119 629.3956 -10546.552 0 397.86984 -0.00063615843 -0.0006746721 + 90530 -6243.8722 -6251.9196 8.0474202 3663.282 629.24262 -10544.444 0 385.67753 -0.00058261311 -0.00060980717 + 90540 -6244.457 -6252.1642 7.7071483 3663.9951 628.39589 -10544.555 0 369.36979 -0.00065705178 -0.00067107111 + 90550 -6244.9929 -6252.5024 7.5094193 3667.232 626.8254 -10546.56 0 359.89351 -0.00085122609 -0.00086065138 + 90560 -6245.4394 -6252.9766 7.5372001 3672.0244 624.75556 -10549.757 0 361.22492 -0.0011252026 -0.0011423425 + 90570 -6245.8415 -6253.4931 7.651609 3677.1632 622.63339 -10553.29 0 366.70803 -0.001418403 -0.0014496209 + 90580 -6246.2796 -6253.8858 7.606196 3681.4449 621.01407 -10556.345 0 364.53159 -0.0016611066 -0.0017018789 + 90590 -6246.7909 -6254.0465 7.2556639 3683.8553 620.3946 -10558.296 0 347.73212 -0.0017873125 -0.0018258938 + 90600 -6247.3307 -6254.0114 6.6807091 3683.7609 621.05086 -10558.823 0 320.17707 -0.0017511825 -0.0017776969 + 90610 -6247.8038 -6253.9296 6.1257635 3681.13 622.9352 -10557.995 0 293.58096 -0.0015447838 -0.0015583192 + 90620 -6248.1333 -6253.9444 5.8111407 3676.6845 625.66898 -10556.298 0 278.50247 -0.0012092194 -0.0012176889 + 90630 -6248.3093 -6254.0855 5.7762085 3671.829 628.63274 -10554.547 0 276.82832 -0.00083048578 -0.00084408787 + 90640 -6248.3894 -6254.2555 5.8660735 3668.2744 631.12899 -10553.659 0 281.13516 -0.00051686339 -0.00054052162 + 90650 -6248.4569 -6254.3138 5.8569029 3667.4493 632.57478 -10554.338 0 280.69565 -0.00036343656 -0.00039367264 + 90660 -6248.5644 -6254.1864 5.621969 3669.9356 632.66871 -10556.791 0 269.4363 -0.00041718152 -0.0004453098 + 90670 -6248.7024 -6253.9249 5.2224486 3675.1911 631.47839 -10560.594 0 250.28904 -0.0006583054 -0.00067738586 + 90680 -6248.8117 -6253.6715 4.8597925 3681.7044 629.41683 -10564.793 0 232.90852 -0.0010073587 -0.0010177056 + 90690 -6248.8345 -6253.5524 4.7179011 3687.524 627.11358 -10568.19 0 226.10829 -0.0013554087 -0.0013642465 + 90700 -6248.7662 -6253.5778 4.8116083 3690.9249 625.21993 -10569.723 0 230.59927 -0.0016031827 -0.0016183701 + 90710 -6248.6631 -6253.6401 4.9769836 3690.9245 624.2061 -10568.771 0 238.52498 -0.0016916771 -0.001714733 + 90720 -6248.5936 -6253.6237 5.0301864 3687.4757 624.21434 -10565.314 0 241.07475 -0.0016136779 -0.0016386467 + 90730 -6248.5749 -6253.5253 4.9503662 3681.3716 625.02373 -10559.921 0 237.24932 -0.0014077244 -0.0014271101 + 90740 -6248.5597 -6253.4607 4.9010087 3674.0024 626.14589 -10553.609 0 234.88384 -0.001143185 -0.0011550659 + 90750 -6248.4836 -6253.554 5.0704143 3667.0562 627.01525 -10547.625 0 243.0027 -0.00090243676 -0.00091190645 + 90760 -6248.3244 -6253.8209 5.4964897 3662.1612 627.1978 -10543.18 0 263.42263 -0.00076041282 -0.00077456363 + 90770 -6248.1182 -6254.155 6.0368407 3660.4757 626.54167 -10541.172 0 289.31928 -0.00076228536 -0.00078399046 + 90780 -6247.9249 -6254.4152 6.4903485 3662.3346 625.22189 -10541.972 0 311.05392 -0.00090624142 -0.00093229548 + 90790 -6247.779 -6254.5245 6.7455844 3667.1198 623.67155 -10545.316 0 323.28625 -0.0011415943 -0.001166186 + 90800 -6247.6687 -6254.4974 6.828697 3673.4554 622.42984 -10550.383 0 327.26948 -0.0013867421 -0.0014065293 + 90810 -6247.5577 -6254.3889 6.8311689 3679.6654 621.96396 -10556.018 0 327.38794 -0.0015598132 -0.0015761269 + 90820 -6247.422 -6254.2279 6.8059248 3684.3004 622.52431 -10561.053 0 326.1781 -0.0016072035 -0.0016241317 + 90830 -6247.2692 -6253.9961 6.7268934 3686.5253 624.07492 -10564.596 0 322.39048 -0.0015180362 -0.0015386536 + 90840 -6247.1281 -6253.6604 6.5323152 3686.2493 626.31337 -10566.223 0 313.0652 -0.0013217329 -0.001345629 + 90850 -6247.022 -6253.2273 6.205391 3684.0017 628.76629 -10565.995 0 297.39715 -0.0010732639 -0.0010970396 + 90860 -6246.9472 -6252.7732 5.8260281 3680.6589 630.92614 -10564.358 0 279.21596 -0.00083346343 -0.00085357636 + 90870 -6246.8725 -6252.4236 5.5511526 3677.1597 632.38543 -10561.969 0 266.04238 -0.00065163324 -0.00066731177 + 90880 -6246.7571 -6252.2927 5.5355791 3674.3028 632.92777 -10559.523 0 265.29601 -0.00055558224 -0.00056968764 + 90890 -6246.5747 -6252.4199 5.8452505 3672.6406 632.55153 -10557.612 0 280.1372 -0.00055087725 -0.00056817139 + 90900 -6246.33 -6252.7388 6.4087903 3672.4357 631.4276 -10556.602 0 307.14519 -0.00062723505 -0.00065097818 + 90910 -6246.0619 -6253.0992 7.037279 3673.6406 629.81767 -10556.558 0 337.26589 -0.00076658363 -0.00079545805 + 90920 -6245.8192 -6253.3478 7.5285414 3675.8805 627.98983 -10557.218 0 360.80995 -0.00094692558 -0.00097507475 + 90930 -6245.6176 -6253.4258 7.808254 3678.4772 626.16354 -10558.067 0 374.21534 -0.0011413113 -0.0011628277 + 90940 -6245.4197 -6253.3993 7.9795673 3680.5864 624.50014 -10558.486 0 382.42564 -0.0013178763 -0.0013325755 + 90950 -6245.1726 -6253.3748 8.2022171 3681.4582 623.12971 -10557.963 0 393.09627 -0.001446152 -0.0014606444 + 90960 -6244.8715 -6253.3764 8.5048485 3680.7029 622.18322 -10556.263 0 407.60006 -0.0015063573 -0.0015282232 + 90970 -6244.5823 -6253.3156 8.7332539 3678.397 621.79736 -10553.51 0 418.54653 -0.001493086 -0.0015233542 + 90980 -6244.3876 -6253.0956 8.7079299 3674.9852 622.08032 -10550.161 0 417.33286 -0.0014102896 -0.0014420544 + 90990 -6244.3078 -6252.7422 8.4343452 3671.103 623.05472 -10546.9 0 404.22115 -0.0012648096 -0.0012899737 + 91000 -6244.2823 -6252.4166 8.1342089 3667.4768 624.60978 -10544.503 0 389.83693 -0.0010684138 -0.0010859058 + 91010 -6244.2354 -6252.2826 8.0471405 3664.922 626.49111 -10543.696 0 385.66413 -0.00084838874 -0.00086526139 + 91020 -6244.1593 -6252.3597 8.2003514 3664.2906 628.3393 -10544.99 0 393.00685 -0.00065399062 -0.00067810656 + 91030 -6244.1283 -6252.511 8.3827029 3666.2332 629.77113 -10548.515 0 401.74616 -0.00054538153 -0.00057715885 + 91040 -6244.2289 -6252.5793 8.3503872 3670.8284 630.4857 -10553.893 0 400.19741 -0.00056608632 -0.00059775072 + 91050 -6244.4756 -6252.5357 8.0600867 3677.3239 630.36527 -10560.225 0 386.28458 -0.00071648713 -0.00073968691 + 91060 -6244.7987 -6252.5001 7.7013798 3684.229 629.5316 -10566.261 0 369.09333 -0.00094821092 -0.00096248031 + 91070 -6245.1165 -6252.6149 7.4983743 3689.7832 628.32514 -10570.723 0 359.36417 -0.0011842614 -0.0011978775 + 91080 -6245.4185 -6252.8964 7.4779447 3692.5683 627.20273 -10572.667 0 358.38507 -0.0013510439 -0.0013732388 + 91090 -6245.7704 -6253.2097 7.4393053 3691.9465 626.58305 -10571.739 0 356.53325 -0.0014027796 -0.0014349313 + 91100 -6246.2364 -6253.3935 7.1571445 3688.1539 626.69464 -10568.242 0 343.01052 -0.0013293914 -0.0013638999 + 91110 -6246.8017 -6253.405 6.6032935 3682.1256 627.48734 -10563.018 0 316.46688 -0.0011532341 -0.0011807111 + 91120 -6247.3787 -6253.3409 5.9622355 3675.2328 628.64385 -10557.218 0 285.74378 -0.00092325286 -0.00094030152 + 91130 -6247.8798 -6253.3378 5.4580192 3669.0204 629.68396 -10552.042 0 261.57891 -0.0007071877 -0.00071776687 + 91140 -6248.2745 -6253.4657 5.1911825 3664.9164 630.11996 -10548.502 0 248.79059 -0.00057702503 -0.00058783876 + 91150 -6248.5891 -6253.7037 5.1145357 3663.8938 629.61469 -10547.212 0 245.11725 -0.00058758829 -0.00060272912 + 91160 -6248.8698 -6253.9852 5.1153982 3666.1713 628.09983 -10548.256 0 245.15858 -0.00075582261 -0.0007746519 + 91170 -6249.148 -6254.2581 5.110044 3671.0875 625.81953 -10551.165 0 244.90198 -0.0010504325 -0.0010691416 + 91180 -6249.4246 -6254.515 5.0904163 3677.2407 623.27976 -10555.036 0 243.96131 -0.0013975277 -0.0014125634 + 91190 -6249.6759 -6254.7849 5.1089987 3682.8818 621.11122 -10558.778 0 244.85189 -0.0017016422 -0.0017126007 + 91200 -6249.8754 -6255.0904 5.2150454 3686.4442 619.88628 -10561.421 0 249.93424 -0.0018757649 -0.0018857833 + 91210 -6250.0187 -6255.4008 5.3820688 3687.0295 619.94888 -10562.379 0 257.93894 -0.0018700875 -0.0018832265 + 91220 -6250.1323 -6255.6211 5.4888265 3684.6676 621.31087 -10561.6 0 263.05536 -0.0016884207 -0.0017059141 + 91230 -6250.2528 -6255.6443 5.3915125 3680.2504 623.64548 -10559.54 0 258.39153 -0.0013854366 -0.0014042195 + 91240 -6250.3914 -6255.4323 5.040913 3675.1922 626.37945 -10557.004 0 241.58883 -0.0010465802 -0.0010619078 + 91250 -6250.5192 -6255.0543 4.5351007 3670.9812 628.85715 -10554.893 0 217.34747 -0.0007605662 -0.00077051648 + 91260 -6250.5912 -6254.641 4.0498351 3668.7934 630.52631 -10553.961 0 194.09082 -0.00059558652 -0.00060307522 + 91270 -6250.5857 -6254.2977 3.7119849 3669.2412 631.08618 -10554.625 0 177.89915 -0.00058477382 -0.00059510904 + 91280 -6250.5223 -6254.0547 3.5324278 3672.2534 630.55314 -10556.861 0 169.29376 -0.00072083337 -0.00073714515 + 91290 -6250.4428 -6253.8895 3.4466481 3677.0812 629.22873 -10560.199 0 165.18272 -0.00095871435 -0.00097934844 + 91300 -6250.376 -6253.7885 3.4125141 3682.4552 627.5866 -10563.83 0 163.54682 -0.001226597 -0.00124659 + 91310 -6250.3114 -6253.7864 3.4749354 3686.8996 626.118 -10566.804 0 166.5384 -0.0014450438 -0.0014603058 + 91320 -6250.2039 -6253.9459 3.7420673 3689.1495 625.18537 -10568.281 0 179.34086 -0.0015507173 -0.0015614015 + 91330 -6250.0023 -6254.2946 4.292246 3688.5426 624.92703 -10567.764 0 205.70851 -0.0015170548 -0.0015273562 + 91340 -6249.6841 -6254.772 5.0879006 3685.235 625.23681 -10565.244 0 243.84074 -0.0013633415 -0.0013779466 + 91350 -6249.27 -6255.2386 5.9685499 3680.1449 625.81958 -10561.203 0 286.0464 -0.0011473739 -0.0011675687 + 91360 -6248.8088 -6255.543 6.7342681 3674.637 626.30492 -10556.485 0 322.74391 -0.00094382296 -0.00096660668 + 91370 -6248.3425 -6255.6005 7.2580142 3670.0771 626.38503 -10552.063 0 347.84477 -0.00081712874 -0.00083819246 + 91380 -6247.8833 -6255.4188 7.5354163 3667.4426 625.93161 -10548.793 0 361.13943 -0.00080054892 -0.00081846593 + 91390 -6247.4245 -6255.0563 7.6318506 3667.1239 625.04796 -10547.228 0 365.7611 -0.00088927823 -0.00090690339 + 91400 -6246.9724 -6254.5588 7.5864217 3668.934 624.03317 -10547.526 0 363.5839 -0.0010474089 -0.0010690381 + 91410 -6246.5622 -6253.938 7.3757679 3672.2437 623.27046 -10549.452 0 353.48818 -0.0012224596 -0.0012494672 + 91420 -6246.2365 -6253.2088 6.9722745 3676.1666 623.08489 -10552.46 0 334.15052 -0.0013611954 -0.0013903004 + 91430 -6246.0088 -6252.4408 6.4320332 3679.7624 623.62889 -10555.832 0 308.25912 -0.001423319 -0.0014490657 + 91440 -6245.8457 -6251.7712 5.9254682 3682.2515 624.83746 -10558.86 0 283.98168 -0.0013909426 -0.001410329 + 91450 -6245.6843 -6251.3606 5.6762231 3683.2068 626.46144 -10561.029 0 272.03646 -0.001271994 -0.001287497 + 91460 -6245.4732 -6251.312 5.8387797 3682.6655 628.15727 -10562.135 0 279.82708 -0.0010968162 -0.0011150954 + 91470 -6245.2118 -6251.6051 6.3933073 3681.0978 629.59737 -10562.3 0 306.40316 -0.00090850619 -0.00093521843 + 91480 -6244.957 -6252.1009 7.1439341 3679.2112 630.56445 -10561.877 0 342.3774 -0.00074871726 -0.00078334815 + 91490 -6244.7846 -6252.6254 7.8407999 3677.659 630.99934 -10561.284 0 375.77513 -0.00064325423 -0.00067860663 + 91500 -6244.7313 -6253.0703 8.3389825 3676.805 630.98504 -10560.86 0 399.65083 -0.00059475796 -0.00062218688 + 91510 -6244.7674 -6253.4317 8.6642317 3676.6783 630.67174 -10560.782 0 415.2386 -0.00058824089 -0.00060462654 + 91520 -6244.8278 -6253.7613 8.9334532 3677.1236 630.17779 -10561.063 0 428.1412 -0.00060718896 -0.0006178241 + 91530 -6244.8727 -6254.0769 9.2042126 3678.0088 629.52157 -10561.607 0 441.11751 -0.00064922465 -0.00066400043 + 91540 -6244.9246 -6254.3114 9.386796 3679.3101 628.62874 -10562.25 0 449.86794 -0.00072914721 -0.00075485664 + 91550 -6245.0468 -6254.3479 9.3011146 3680.9979 627.4145 -10562.76 0 445.7616 -0.00086544215 -0.0009003427 + 91560 -6245.2804 -6254.1186 8.8382247 3682.8162 625.89304 -10562.828 0 423.57732 -0.0010584551 -0.0010936726 + 91570 -6245.5969 -6253.6839 8.0869947 3684.1661 624.24823 -10562.098 0 387.57416 -0.0012757349 -0.0013024787 + 91580 -6245.9106 -6253.2169 7.3063476 3684.2555 622.82074 -10560.293 0 350.16117 -0.0014566383 -0.0014731696 + 91590 -6246.1404 -6252.8979 6.7574988 3682.481 622.00926 -10557.388 0 323.85726 -0.0015359508 -0.001548477 + 91600 -6246.2667 -6252.8008 6.5341839 3678.8248 622.12171 -10553.747 0 313.15476 -0.0014740261 -0.0014910073 + 91610 -6246.3383 -6252.868 6.5297391 3674.0162 623.23314 -10550.117 0 312.94174 -0.0012771569 -0.001302125 + 91620 -6246.4269 -6252.9901 6.5631134 3669.3571 625.11066 -10547.458 0 314.54122 -0.00099807486 -0.0010271958 + 91630 -6246.5668 -6253.1154 6.548592 3666.3021 627.25041 -10546.668 0 313.84527 -0.00071785745 -0.00074415082 + 91640 -6246.7315 -6253.2866 6.555098 3665.9963 629.03111 -10548.314 0 314.15708 -0.00051937049 -0.0005394785 + 91650 -6246.8672 -6253.573 6.7058224 3668.9354 629.9327 -10552.441 0 321.38063 -0.00046304042 -0.0004803039 + 91660 -6246.9495 -6253.9685 7.0190265 3674.8084 629.73139 -10558.508 0 336.39113 -0.00057019558 -0.0005914168 + 91670 -6247.0113 -6254.3524 7.3410477 3682.5106 628.58958 -10565.453 0 351.82419 -0.00081486236 -0.00084384562 + 91680 -6247.1174 -6254.5564 7.4390507 3690.3212 627.00393 -10571.882 0 356.52105 -0.0011255608 -0.0011593035 + 91690 -6247.3048 -6254.4865 7.1816856 3696.2604 625.63197 -10576.379 0 344.18667 -0.001400797 -0.0014318736 + 91700 -6247.5457 -6254.1956 6.6499186 3698.6139 625.06153 -10577.871 0 318.70141 -0.0015395234 -0.0015625465 + 91710 -6247.7696 -6253.8445 6.0749545 3696.5074 625.6031 -10575.955 0 291.14591 -0.0014790308 -0.0014951572 + 91720 -6247.9222 -6253.5874 5.6652342 3690.3091 627.17188 -10571.068 0 271.50981 -0.0012237443 -0.0012392378 + 91730 -6248.0036 -6253.4894 5.4857323 3681.6336 629.29631 -10564.419 0 262.90707 -0.00084896406 -0.00086975238 + 91740 -6248.0558 -6253.5318 5.4760536 3672.8845 631.25585 -10557.672 0 262.44322 -0.00047588714 -0.00050328642 + 91750 -6248.1239 -6253.6714 5.5475366 3666.4988 632.31275 -10552.483 0 265.86908 -0.00022903764 -0.00025961436 + 91760 -6248.2283 -6253.8815 5.6532003 3664.1847 631.96503 -10550.031 0 270.93308 -0.00019393754 -0.00022241265 + 91770 -6248.361 -6254.1529 5.7919586 3666.4208 630.13109 -10550.705 0 277.58316 -0.00038965521 -0.00041213979 + 91780 -6248.4971 -6254.4763 5.9791336 3672.3591 627.19623 -10554.032 0 286.55363 -0.00076344059 -0.00077935905 + 91790 -6248.6106 -6254.8271 6.2165034 3680.1363 623.90305 -10558.866 0 297.92972 -0.001207998 -0.0012202847 + 91800 -6248.6908 -6255.1547 6.4639049 3687.4809 621.12566 -10563.761 0 309.78659 -0.0015961391 -0.0016094997 + 91810 -6248.7555 -6255.3766 6.6211455 3692.4093 619.60566 -10567.392 0 317.32244 -0.001821398 -0.0018390209 + 91820 -6248.843 -6255.4032 6.5601415 3693.7733 619.7341 -10568.911 0 314.39879 -0.001829582 -0.0018504998 + 91830 -6248.98 -6255.1977 6.2177349 3691.4972 621.44469 -10568.14 0 297.98874 -0.0016301675 -0.0016500737 + 91840 -6249.1512 -6254.823 5.6718009 3686.4922 624.249 -10565.564 0 271.82452 -0.0012869465 -0.0013023416 + 91850 -6249.3089 -6254.4156 5.1066258 3680.3429 627.40014 -10562.159 0 244.73816 -0.00089592635 -0.00090766927 + 91860 -6249.4145 -6254.0969 4.682434 3674.8737 630.12645 -10559.097 0 224.40851 -0.00055910531 -0.00057166841 + 91870 -6249.4713 -6253.9013 4.4299448 3671.6701 631.85348 -10557.425 0 212.30781 -0.00035880694 -0.00037587319 + 91880 -6249.5178 -6253.7857 4.2679816 3671.6429 632.34235 -10557.771 0 204.54562 -0.00033586048 -0.0003566142 + 91890 -6249.5866 -6253.7091 4.1224524 3674.7606 631.70906 -10560.179 0 197.57105 -0.00047755576 -0.00049737602 + 91900 -6249.6713 -6253.6995 4.0281562 3680.0718 630.33414 -10564.105 0 193.05184 -0.0007226392 -0.0007376047 + 91910 -6249.7302 -6253.8403 4.110151 3686.0445 628.70916 -10568.594 0 196.9815 -0.00098489291 -0.00099567023 + 91920 -6249.724 -6254.1851 4.4611454 3691.0886 627.28011 -10572.554 0 213.80312 -0.0011857927 -0.0011970525 + 91930 -6249.6495 -6254.6879 5.0383926 3694.031 626.33455 -10575.053 0 241.46805 -0.0012801302 -0.0012962057 + 91940 -6249.5373 -6255.2182 5.6809405 3694.3636 625.95394 -10575.536 0 272.26254 -0.0012635394 -0.0012847483 + 91950 -6249.4206 -6255.6426 6.2220436 3692.233 626.03245 -10573.908 0 298.19524 -0.0011631724 -0.0011861856 + 91960 -6249.3079 -6255.8904 6.5825278 3688.2752 626.34965 -10570.515 0 315.47166 -0.0010213322 -0.0010426304 + 91970 -6249.1851 -6255.9529 6.7677296 3683.4068 626.67032 -10566.03 0 324.34758 -0.00088102068 -0.00089966661 + 91980 -6249.0392 -6255.8393 6.8000478 3678.6277 626.8348 -10561.302 0 325.89645 -0.00077616809 -0.00079352225 + 91990 -6248.8739 -6255.5508 6.676917 3674.837 626.80547 -10557.193 0 319.99533 -0.00072549239 -0.00074304673 + 92000 -6248.7018 -6255.0969 6.3950663 3672.6747 626.65375 -10554.425 0 306.48746 -0.00073011505 -0.00074820287 + 92010 -6248.5283 -6254.5235 5.9952304 3672.43 626.50009 -10553.454 0 287.32508 -0.00077691888 -0.00079527984 + 92020 -6248.3471 -6253.9114 5.5642621 3674.044 626.44185 -10554.397 0 266.67066 -0.00084732063 -0.00086604738 + 92030 -6248.1508 -6253.3484 5.1975374 3677.178 626.50634 -10557.033 0 249.09515 -0.0009261889 -0.0009456441 + 92040 -6247.9354 -6252.9096 4.974238 3681.2866 626.64916 -10560.845 0 238.39339 -0.0010045931 -0.0010248562 + 92050 -6247.6938 -6252.6559 4.9621458 3685.6767 626.79479 -10565.127 0 237.81387 -0.001075496 -0.0010965 + 92060 -6247.4122 -6252.6261 5.2139026 3689.5792 626.89774 -10569.103 0 249.87947 -0.0011277207 -0.0011497267 + 92070 -6247.0793 -6252.8135 5.7342599 3692.2612 626.9917 -10572.066 0 274.81791 -0.0011439961 -0.0011672002 + 92080 -6246.6983 -6253.1544 6.4560217 3693.1643 627.19645 -10573.515 0 309.40878 -0.0011045238 -0.0011279602 + 92090 -6246.2868 -6253.5538 7.2669913 3692.038 627.67026 -10573.262 0 348.275 -0.00099402226 -0.0010154579 + 92100 -6245.8617 -6253.9331 8.0714384 3689.0479 628.52159 -10571.503 0 386.82861 -0.00080998886 -0.00082777337 + 92110 -6245.4304 -6254.2539 8.8234928 3684.8331 629.71902 -10568.806 0 422.87128 -0.00057050568 -0.00058595667 + 92120 -6245.0031 -6254.4952 9.4921015 3680.4612 631.04767 -10566.004 0 454.91476 -0.00031873838 -0.00033629238 + 92130 -6244.617 -6254.6098 9.9927509 3677.2229 632.14526 -10563.978 0 478.90869 -0.00011905619 -0.0001430064 + 92140 -6244.3397 -6254.5175 10.177803 3676.2578 632.61505 -10563.39 0 487.77743 -4.0196663e-05 -7.0464326e-05 + 92150 -6244.2302 -6254.1652 9.9349984 3678.1094 632.17483 -10564.449 0 476.14087 -0.00012766586 -0.00015898877 + 92160 -6244.2877 -6253.6073 9.3195728 3682.4098 630.78237 -10566.8 0 446.64622 -0.00037789853 -0.00040412512 + 92170 -6244.4431 -6253.0195 8.5763484 3687.8967 628.68593 -10569.602 0 411.02674 -0.00073077555 -0.00075066409 + 92180 -6244.6123 -6252.6054 7.9930836 3692.8125 626.37806 -10571.796 0 383.07341 -0.0010879898 -0.0011066063 + 92190 -6244.7661 -6252.4633 7.6971392 3695.5224 624.46571 -10572.451 0 368.8901 -0.0013482006 -0.0013718558 + 92200 -6244.9471 -6252.5358 7.5886595 3695.0577 623.49068 -10571.084 0 363.69114 -0.0014401856 -0.0014697013 + 92210 -6245.2149 -6252.6966 7.4816773 3691.3756 623.74956 -10567.822 0 358.56396 -0.0013405676 -0.0013700925 + 92220 -6245.5773 -6252.8804 7.3030673 3685.3288 625.17435 -10563.383 0 350.00396 -0.0010761165 -0.0010990201 + 92230 -6245.9811 -6253.119 7.1378295 3678.4553 627.32943 -10558.904 0 342.08484 -0.00071725704 -0.00073285808 + 92240 -6246.3676 -6253.4606 7.0930061 3672.6505 629.53911 -10555.65 0 339.93665 -0.00036471838 -0.00037894548 + 92250 -6246.7285 -6253.8763 7.1478702 3669.7136 631.10481 -10554.695 0 342.56605 -0.00012597768 -0.00014571522 + 92260 -6247.1071 -6254.2521 7.1449959 3670.806 631.53598 -10556.594 0 342.42829 -8.22024e-05 -0.00010901207 + 92270 -6247.5488 -6254.4689 6.9201592 3675.9891 630.71464 -10561.173 0 331.65286 -0.0002563819 -0.00028516511 + 92280 -6248.0493 -6254.4972 6.4478272 3684.0704 628.93518 -10567.503 0 309.01606 -0.00059883394 -0.00062228292 + 92290 -6248.549 -6254.4236 5.8746203 3692.9006 626.80504 -10574.129 0 281.54477 -0.0010007964 -0.0010155658 + 92300 -6248.9754 -6254.3869 5.411497 3700.0555 625.04475 -10579.487 0 259.3493 -0.0013325305 -0.0013417822 + 92310 -6249.2956 -6254.4749 5.1793589 3703.6293 624.25833 -10582.363 0 248.22394 -0.0014890805 -0.0014994684 + 92320 -6249.5318 -6254.6721 5.1403171 3702.8152 624.7448 -10582.232 0 246.35284 -0.0014242357 -0.0014403596 + 92330 -6249.7345 -6254.8949 5.1603652 3698.0765 626.40181 -10579.373 0 247.31366 -0.0011615765 -0.0011827521 + 92340 -6249.9408 -6255.0724 5.1316232 3690.9144 628.74951 -10574.736 0 245.93618 -0.00078269779 -0.00080427371 + 92350 -6250.1506 -6255.1981 5.0475656 3683.3751 631.07286 -10569.646 0 241.90767 -0.00039991157 -0.00041739632 + 92360 -6250.3351 -6255.3185 4.9834594 3677.4769 632.64335 -10565.439 0 238.83533 -0.00012304919 -0.00013551579 + 92370 -6250.4636 -6255.477 5.013375 3674.7032 632.95007 -10563.13 0 240.26906 -2.9425186e-05 -3.9805865e-05 + 92380 -6250.5287 -6255.6625 5.1337876 3675.6618 631.8624 -10563.187 0 246.03991 -0.00014398461 -0.00015641759 + 92390 -6250.552 -6255.8027 5.2507594 3679.9618 629.66871 -10565.433 0 251.64585 -0.00043382526 -0.00045028245 + 92400 -6250.5675 -6255.8077 5.2401849 3686.3284 626.97825 -10569.114 0 251.13906 -0.0008181908 -0.00083698844 + 92410 -6250.5958 -6255.6337 5.0379489 3692.9415 624.52241 -10573.098 0 241.44678 -0.0011916573 -0.0012089722 + 92420 -6250.6276 -6255.3204 4.6927791 3697.9341 622.92718 -10576.182 0 224.90431 -0.0014545502 -0.0014677254 + 92430 -6250.6325 -6254.9719 4.339429 3699.9265 622.53588 -10577.434 0 207.96979 -0.0015416977 -0.0015516322 + 92440 -6250.5845 -6254.6951 4.110635 3698.4286 623.33646 -10576.46 0 197.00469 -0.0014402871 -0.0014508611 + 92450 -6250.4848 -6254.5404 4.0556285 3693.9667 625.00461 -10573.512 0 194.36848 -0.0011908388 -0.0012057649 + 92460 -6250.362 -6254.4885 4.126478 3687.884 627.03272 -10569.405 0 197.76398 -0.00087124433 -0.00089091095 + 92470 -6250.2513 -6254.4889 4.2376221 3681.895 628.89296 -10565.277 0 203.09063 -0.00056994728 -0.00059088032 + 92480 -6250.1654 -6254.5137 4.3483175 3677.5693 630.18155 -10562.265 0 208.39577 -0.00035822183 -0.00037576546 + 92490 -6250.083 -6254.585 4.5020364 3675.9283 630.70575 -10561.219 0 215.76285 -0.00027165666 -0.00028394103 + 92500 -6249.9628 -6254.7491 4.7863129 3677.271 630.4981 -10562.518 0 229.38697 -0.000306892 -0.00031688733 + 92510 -6249.7802 -6255.0167 5.2364853 3681.2256 629.76678 -10566.009 0 250.96176 -0.00043236042 -0.00044590354 + 92520 -6249.5561 -6255.3205 5.7644691 3686.9323 628.80797 -10571.061 0 276.2657 -0.00060485181 -0.0006257552 + 92530 -6249.3487 -6255.5411 6.1924034 3693.2458 627.91191 -10576.699 0 296.77472 -0.00078226622 -0.00080865417 + 92540 -6249.2083 -6255.5903 6.3819373 3698.9139 627.29064 -10581.795 0 305.85825 -0.00092866252 -0.00095422613 + 92550 -6249.134 -6255.4788 6.3448753 3702.7668 627.04433 -10585.29 0 304.08203 -0.001015474 -0.0010348994 + 92560 -6249.0772 -6255.3 6.2227872 3703.9536 627.16762 -10586.421 0 298.23088 -0.0010247115 -0.0010382624 + 92570 -6248.9899 -6255.14 6.150102 3702.1801 627.58296 -10584.903 0 294.7474 -0.00095456195 -0.00096741653 + 92580 -6248.8681 -6255.0041 6.1360257 3697.8272 628.18065 -10581.012 0 294.07278 -0.00082192288 -0.00083906176 + 92590 -6248.7488 -6254.8297 6.0809618 3691.8595 628.84756 -10575.537 0 291.43381 -0.00065739396 -0.00067920228 + 92600 -6248.6671 -6254.5681 5.900937 3685.5577 629.47661 -10569.602 0 282.80601 -0.00049518231 -0.00051786163 + 92610 -6248.6216 -6254.2467 5.6250733 3680.2073 629.9616 -10564.416 0 269.58507 -0.00036515397 -0.0003848765 + 92620 -6248.5787 -6253.954 5.3752697 3676.8594 630.19022 -10561.004 0 257.61309 -0.00029104057 -0.00030735926 + 92630 -6248.5055 -6253.7751 5.2696199 3676.1827 630.04885 -10560.007 0 252.54975 -0.00029147919 -0.00030715789 + 92640 -6248.3931 -6253.7432 5.3501151 3678.3648 629.44955 -10561.558 0 256.40753 -0.00037789441 -0.00039619559 + 92650 -6248.257 -6253.836 5.5789801 3683.0433 628.37976 -10565.259 0 267.37603 -0.00054763878 -0.00056977088 + 92660 -6248.1222 -6254.0012 5.8789867 3689.2998 626.95729 -10570.258 0 281.75403 -0.00077655771 -0.00080094484 + 92670 -6248.0057 -6254.1871 6.1813584 3695.7693 625.45645 -10575.413 0 296.24538 -0.0010169107 -0.0010404178 + 92680 -6247.9062 -6254.3646 6.458363 3700.9 624.2731 -10579.538 0 309.52099 -0.0012044535 -0.0012247058 + 92690 -6247.8061 -6254.53 6.7238515 3703.3455 623.8223 -10581.698 0 322.24469 -0.0012747464 -0.0012920303 + 92700 -6247.6873 -6254.6873 7.0000451 3702.3883 624.39738 -10581.473 0 335.48144 -0.0011846626 -0.0012019745 + 92710 -6247.5499 -6254.8245 7.274615 3698.2366 626.04368 -10579.105 0 348.64037 -0.00093176293 -0.00095273117 + 92720 -6247.4204 -6254.9028 7.4823879 3692.0498 628.49951 -10575.452 0 358.59801 -0.00056315638 -0.00058906198 + 92730 -6247.34 -6254.876 7.5360816 3685.6436 631.23325 -10571.753 0 361.17131 -0.0001675437 -0.00019564072 + 92740 -6247.3333 -6254.7336 7.4003213 3680.9533 633.57227 -10569.259 0 354.66492 0.00014985828 0.00012481595 + 92750 -6247.3836 -6254.5342 7.1506176 3679.4425 634.89014 -10568.867 0 342.69772 0.00030083663 0.0002823258 + 92760 -6247.4404 -6254.3818 6.9413958 3681.6727 634.798 -10570.852 0 332.67064 0.00024178023 0.00022803417 + 92770 -6247.4623 -6254.3459 6.8836206 3687.1654 633.27869 -10574.79 0 329.90172 -1.501836e-05 -3.0002916e-05 + 92780 -6247.4562 -6254.3945 6.9383518 3694.5509 630.71582 -10579.661 0 332.52475 -0.00040642502 -0.00042768886 + 92790 -6247.4733 -6254.4154 6.9420891 3701.9066 627.79955 -10584.122 0 332.70386 -0.00083369159 -0.00086069576 + 92800 -6247.5586 -6254.3184 6.759796 3707.2064 625.32999 -10586.855 0 323.96735 -0.0011839071 -0.0012113099 + 92810 -6247.706 -6254.1234 6.4174045 3708.8376 623.97699 -10586.938 0 307.55803 -0.0013579663 -0.0013811828 + 92820 -6247.8691 -6253.9378 6.0686231 3706.1089 624.07685 -10584.124 0 290.84247 -0.0013022511 -0.0013217628 + 92830 -6248.0158 -6253.8511 5.8352522 3699.5701 625.53325 -10578.954 0 279.65803 -0.001031826 -0.0010516458 + 92840 -6248.1616 -6253.8682 5.706635 3690.9396 627.84999 -10572.658 0 273.49397 -0.0006300117 -0.00065264381 + 92850 -6248.3473 -6253.944 5.5967396 3682.6025 630.28378 -10566.83 0 268.22716 -0.00022048973 -0.00024436328 + 92860 -6248.5942 -6254.0585 5.4642455 3676.8676 632.0743 -10563 0 261.87731 7.5466555e-05 5.3780547e-05 + 92870 -6248.8885 -6254.2409 5.3523363 3675.2817 632.68185 -10562.204 0 256.51399 0.0001771421 0.00015911643 + 92880 -6249.2038 -6254.5271 5.3232417 3678.2285 631.95225 -10564.708 0 255.11961 6.4631979e-05 4.8525174e-05 + 92890 -6249.5303 -6254.9067 5.3763754 3684.892 630.15156 -10569.95 0 257.66608 -0.00022108895 -0.00023817395 + 92900 -6249.8789 -6255.3149 5.4360126 3693.5378 627.86345 -10576.716 0 260.52423 -0.00059368468 -0.00061297959 + 92910 -6250.2612 -6255.6722 5.4110364 3702.0036 625.79288 -10583.469 0 259.32722 -0.00094670577 -0.00096692726 + 92920 -6250.6687 -6255.9301 5.2613927 3708.2686 624.54858 -10588.747 0 252.15546 -0.0011829621 -0.0012017849 + 92930 -6251.0731 -6256.0853 5.012189 3710.9639 624.4741 -10591.523 0 240.21222 -0.0012412232 -0.0012572537 + 92940 -6251.443 -6256.1599 4.7168702 3709.6945 625.56986 -10591.424 0 226.05888 -0.0011124251 -0.0011258935 + 92950 -6251.7591 -6256.1746 4.4154435 3705.091 627.51535 -10588.781 0 211.61283 -0.00083991567 -0.00085196601 + 92960 -6252.0172 -6256.14 4.1227871 3698.5832 629.7751 -10584.498 0 197.58709 -0.0005040296 -0.0005157156 + 92970 -6252.2208 -6256.0637 3.842896 3691.9745 631.7556 -10579.794 0 184.17314 -0.00019706758 -0.00020895336 + 92980 -6252.3754 -6255.9593 3.5838984 3686.9552 632.96895 -10575.883 0 171.76052 2.6343409e-06 -9.6764923e-06 + 92990 -6252.4866 -6255.8463 3.3596538 3684.6887 633.15662 -10573.692 0 161.01346 5.0082866e-05 3.7296034e-05 + 93000 -6252.561 -6255.7459 3.1848927 3685.5685 632.33895 -10573.653 0 152.63793 -5.7644764e-05 -7.0764743e-05 + 93010 -6252.6038 -6255.6785 3.0746307 3689.1818 630.78196 -10575.642 0 147.35355 -0.00028412129 -0.00029729006 + 93020 -6252.6175 -6255.6617 3.0442102 3694.4715 628.90115 -10579.034 0 145.89564 -0.00056611305 -0.00057912504 + 93030 -6252.6016 -6255.7019 3.100302 3700.0411 627.14009 -10582.883 0 148.58387 -0.00083214863 -0.00084491675 + 93040 -6252.5559 -6255.7859 3.2300321 3704.5162 625.86115 -10586.163 0 154.80126 -0.0010213726 -0.0010336285 + 93050 -6252.4792 -6255.8876 3.408409 3706.8613 625.27303 -10588.022 0 163.35008 -0.0010968907 -0.0011081107 + 93060 -6252.3637 -6255.9867 3.6229337 3706.5873 625.40483 -10587.979 0 173.63131 -0.0010507538 -0.0010608463 + 93070 -6252.1938 -6256.0772 3.8834386 3703.8296 626.12622 -10586.033 0 186.11617 -0.00090165644 -0.00091179466 + 93080 -6251.9564 -6256.1534 4.1969836 3699.3 627.2047 -10582.658 0 201.143 -0.0006880315 -0.00070034482 + 93090 -6251.6549 -6256.1892 4.5342495 3694.1178 628.38098 -10578.688 0 217.30668 -0.00045827925 -0.000474208 + 93100 -6251.3114 -6256.1423 4.8309429 3689.5404 629.4373 -10575.12 0 231.52589 -0.00025930189 -0.00027807863 + 93110 -6250.9529 -6255.984 5.031096 3686.6598 630.23628 -10572.88 0 241.11835 -0.00012579661 -0.00014469827 + 93120 -6250.5935 -6255.7277 5.134143 3686.1541 630.72206 -10572.604 0 246.05694 -7.3940828e-05 -9.0396717e-05 + 93130 -6250.227 -6255.4279 5.2009496 3688.1665 630.89469 -10574.489 0 249.25869 -0.00010175497 -0.00011563741 + 93140 -6249.8392 -6255.1476 5.3084104 3692.3213 630.78189 -10578.251 0 254.40881 -0.0001947561 -0.00020881825 + 93150 -6249.4303 -6254.9181 5.4877766 3697.8343 630.42834 -10583.181 0 263.00505 -0.00033232792 -0.00035017651 + 93160 -6249.0267 -6254.7258 5.6990787 3703.6606 629.90536 -10588.292 0 273.13183 -0.00049047668 -0.00051354779 + 93170 -6248.6691 -6254.536 5.8669707 3708.6452 629.32816 -10592.509 0 281.17815 -0.00064042663 -0.00066645332 + 93180 -6248.3839 -6254.3375 5.9536285 3711.688 628.86182 -10594.887 0 285.33128 -0.00074691331 -0.00077144206 + 93190 -6248.1613 -6254.1667 6.005378 3711.9525 628.7013 -10594.82 0 287.81141 -0.00077183748 -0.00079183889 + 93200 -6247.9641 -6254.0822 6.1181175 3709.1189 629.02003 -10592.221 0 293.21452 -0.00068622392 -0.00070258175 + 93210 -6247.7627 -6254.1051 6.3424487 3703.6022 629.89396 -10587.601 0 303.96573 -0.00048663102 -0.00050296273 + 93220 -6247.562 -6254.1882 6.6262179 3696.59 631.22525 -10582.004 0 317.56554 -0.0002062023 -0.00022519771 + 93230 -6247.3913 -6254.2514 6.8601821 3689.8062 632.70698 -10576.765 0 328.77842 8.8220933e-05 6.7113751e-05 + 93240 -6247.2718 -6254.2467 6.974948 3685.0549 633.87081 -10573.172 0 334.27865 0.00031349757 0.0002930015 + 93250 -6247.1987 -6254.1867 6.9880392 3683.7061 634.22752 -10572.12 0 334.90605 0.00039537309 0.00037760889 + 93260 -6247.1493 -6254.1219 6.9725098 3686.2882 633.45618 -10573.866 0 334.16179 0.00029297497 0.0002777534 + 93270 -6247.103 -6254.1 6.9970239 3692.2982 631.56083 -10577.959 0 335.33665 1.5517772e-05 6.8683051e-07 + 93280 -6247.0543 -6254.1414 7.0870667 3700.2843 628.92115 -10583.347 0 339.652 -0.00037438046 -0.00039129318 + 93290 -6247.0151 -6254.2364 7.221318 3708.1966 626.20807 -10588.641 0 346.08608 -0.00077376678 -0.00079387366 + 93300 -6247.005 -6254.3608 7.3558526 3713.9223 624.19127 -10592.474 0 352.53373 -0.0010668724 -0.0010892585 + 93310 -6247.0384 -6254.4949 7.4565391 3715.8705 623.50508 -10593.871 0 357.35919 -0.0011595433 -0.0011819865 + 93320 -6247.1162 -6254.6323 7.5160436 3713.448 624.44876 -10592.529 0 360.21098 -0.0010096045 -0.0010301194 + 93330 -6247.2268 -6254.7737 7.5469295 3707.2848 626.88018 -10588.939 0 361.69121 -0.00064284521 -0.00066102909 + 93340 -6247.3544 -6254.9145 7.5600978 3699.1213 630.23416 -10584.27 0 362.32231 -0.00014909838 -0.00016649347 + 93350 -6247.4908 -6255.0315 7.5406778 3691.3586 633.66678 -10580.057 0 361.39159 0.00034070502 0.00032157049 + 93360 -6247.6427 -6255.0781 7.435373 3686.3782 636.29218 -10577.748 0 356.34479 0.00069067094 0.00066826314 + 93370 -6247.8279 -6255.0001 7.1721717 3685.819 637.44404 -10578.263 0 343.73071 0.00080031124 0.00077580335 + 93380 -6248.0565 -6254.7758 6.7192555 3690.0356 636.87708 -10581.688 0 322.02443 0.00063760359 0.00061454359 + 93390 -6248.3106 -6254.4562 6.1455935 3697.9377 634.83832 -10587.232 0 294.53133 0.00025228525 0.00023373106 + 93400 -6248.5463 -6254.1615 5.6152223 3707.3054 631.98287 -10593.45 0 269.11296 -0.00023855861 -0.00025326538 + 93410 -6248.7252 -6254.0132 5.2880025 3715.494 629.16551 -10598.673 0 253.43075 -0.00068944594 -0.0007048038 + 93420 -6248.8496 -6254.0481 5.1984211 3720.26 627.17918 -10601.487 0 249.13751 -0.00097460246 -0.00099497188 + 93430 -6248.9646 -6254.1989 5.23425 3720.396 626.52135 -10601.116 0 250.85463 -0.0010253653 -0.0010504061 + 93440 -6249.1172 -6254.3694 5.2522312 3715.9799 627.25634 -10597.606 0 251.71639 -0.00084419345 -0.00086864713 + 93450 -6249.3112 -6254.5303 5.2191477 3708.2514 629.01496 -10591.797 0 250.13084 -0.00049574099 -0.00051428901 + 93460 -6249.5048 -6254.7355 5.2307043 3699.2437 631.13101 -10585.11 0 250.6847 -8.4208035e-05 -9.6646467e-05 + 93470 -6249.6546 -6255.0465 5.3918861 3691.2874 632.86691 -10579.201 0 258.40943 0.00027435176 0.00026280155 + 93480 -6249.761 -6255.4465 5.6854963 3686.453 633.65036 -10575.55 0 272.48088 0.00048074979 0.00046423102 + 93490 -6249.8729 -6255.83 5.9571049 3686.0117 633.24519 -10575.087 0 285.49789 0.00047938764 0.00045672666 + 93500 -6250.0475 -6256.0761 6.0286503 3690.0555 631.80636 -10577.938 0 288.92675 0.00027625405 0.00025195144 + 93510 -6250.3015 -6256.1388 5.8372927 3697.4406 629.8082 -10583.388 0 279.75582 -6.11284e-05 -8.1051535e-05 + 93520 -6250.5987 -6256.0721 5.4733987 3706.134 627.87755 -10590.084 0 262.31598 -0.00042632384 -0.00043969373 + 93530 -6250.8851 -6255.9713 5.0861691 3713.8653 626.59312 -10596.43 0 243.75776 -0.00071184355 -0.00072191598 + 93540 -6251.1361 -6255.8904 4.7543141 3718.8255 626.31659 -10601.032 0 227.85341 -0.00084505545 -0.00085711723 + 93550 -6251.3685 -6255.8149 4.4464383 3720.1346 627.10309 -10603.053 0 213.09827 -0.00080634698 -0.00082292593 + 93560 -6251.6118 -6255.7062 4.0944616 3717.9376 628.71071 -10602.355 0 196.22957 -0.0006252944 -0.00064445382 + 93570 -6251.8734 -6255.5633 3.6899575 3713.1839 630.69811 -10599.445 0 176.84347 -0.00036236924 -0.00038007444 + 93580 -6252.132 -6255.4375 3.3055263 3707.2597 632.57044 -10595.268 0 158.41937 -8.7521278e-05 -0.00010120649 + 93590 -6252.3586 -6255.3946 3.0359944 3701.622 633.91922 -10590.936 0 145.50189 0.00013712104 0.00012699697 + 93600 -6252.5381 -6255.4706 2.9325207 3697.5031 634.51136 -10587.485 0 140.54285 0.00026869887 0.00025959443 + 93610 -6252.6726 -6255.6558 2.9832508 3695.7007 634.31025 -10585.667 0 142.97412 0.00028923813 0.00027837414 + 93620 -6252.7759 -6255.9047 3.1287371 3696.4675 633.4415 -10585.814 0 149.94664 0.00020503094 0.00019091309 + 93630 -6252.8673 -6256.1521 3.2847599 3699.5061 632.13032 -10587.788 0 157.42413 4.0805285e-05 2.4156206e-05 + 93640 -6252.9627 -6256.3384 3.3756219 3704.054 630.63644 -10591.029 0 161.77874 -0.00016776797 -0.00018413173 + 93650 -6253.0623 -6256.4431 3.3807907 3709.0394 629.20352 -10594.686 0 162.02646 -0.00038012293 -0.00039309303 + 93660 -6253.1435 -6256.5005 3.3569825 3713.3009 628.03046 -10597.832 0 160.88544 -0.00055583911 -0.00056467597 + 93670 -6253.1743 -6256.5684 3.394165 3715.8542 627.26313 -10599.686 0 162.66743 -0.00066093562 -0.00066834473 + 93680 -6253.1394 -6256.6692 3.5297699 3716.1369 626.99623 -10599.802 0 169.16638 -0.00067514149 -0.0006851969 + 93690 -6253.0545 -6256.7578 3.7032639 3714.1382 627.27253 -10598.169 0 177.48118 -0.00059653963 -0.00061097027 + 93700 -6252.952 -6256.7562 3.8042499 3710.3658 628.07204 -10595.194 0 182.321 -0.00044059796 -0.00045694004 + 93710 -6252.8484 -6256.6244 3.7759869 3705.6878 629.29505 -10591.607 0 180.96648 -0.00023486254 -0.00024850876 + 93720 -6252.7239 -6256.4011 3.6772392 3701.1431 630.75266 -10588.297 0 176.23393 -1.3756765e-05 -2.2256766e-05 + 93730 -6252.5332 -6256.1735 3.640313 3697.7804 632.17994 -10586.134 0 174.46422 0.00018371997 0.00017805359 + 93740 -6252.2402 -6256 3.759779 3696.5163 633.27921 -10585.796 0 180.1897 0.00031561536 0.0003073519 + 93750 -6251.8487 -6255.8599 4.011175 3697.9599 633.78784 -10587.608 0 192.23801 0.00034318508 0.00032841135 + 93760 -6251.4038 -6255.6766 4.2727945 3702.1859 633.55519 -10591.418 0 204.77629 0.00024405582 0.00022398563 + 93770 -6250.9614 -6255.3972 4.4358309 3708.5351 632.60767 -10596.54 0 212.58991 2.8027363e-05 8.2089806e-06 + 93780 -6250.5459 -6255.0573 4.5114005 3715.5925 631.17754 -10601.827 0 216.21163 -0.00025446347 -0.00026913298 + 93790 -6250.1335 -6254.7655 4.6320385 3721.4709 629.67412 -10605.911 0 221.99328 -0.00052059188 -0.00053085872 + 93800 -6249.687 -6254.6124 4.9254143 3724.3769 628.58927 -10607.579 0 236.05349 -0.00068095155 -0.00069316069 + 93810 -6249.2128 -6254.5835 5.3707298 3723.2414 628.35222 -10606.177 0 257.39551 -0.00067192616 -0.00069218737 + 93820 -6248.7739 -6254.5702 5.7962813 3718.1147 629.17369 -10601.859 0 277.79032 -0.00047852306 -0.00050652612 + 93830 -6248.4372 -6254.4771 6.0398705 3710.1604 630.93665 -10595.574 0 289.46449 -0.00013877632 -0.00016766237 + 93840 -6248.211 -6254.3182 6.1072274 3701.3142 633.18686 -10588.819 0 292.69261 0.00026720904 0.00024476221 + 93850 -6248.0386 -6254.2066 6.1680049 3693.7935 635.24304 -10583.243 0 295.6054 0.00063623356 0.00062175732 + 93860 -6247.8489 -6254.2584 6.4094893 3689.5898 636.39948 -10580.248 0 307.17869 0.00086557559 0.00085378976 + 93870 -6247.6117 -6254.4986 6.8869802 3689.9959 636.15845 -10580.653 0 330.06273 0.00087984587 0.00086308403 + 93880 -6247.3592 -6254.8363 7.477111 3695.2209 634.41765 -10584.475 0 358.34511 0.00065631447 0.00063064398 + 93890 -6247.1625 -6255.1183 7.955793 3704.1984 631.54464 -10590.861 0 381.28624 0.00024001357 0.00020852034 + 93900 -6247.0776 -6255.2272 8.1495329 3714.7166 628.29981 -10598.244 0 390.57135 -0.0002600104 -0.00028938907 + 93910 -6247.0996 -6255.1539 8.0542571 3723.9421 625.62109 -10604.717 0 386.00519 -0.00069731887 -0.00071811623 + 93920 -6247.1657 -6254.9876 7.8218711 3729.2571 624.33821 -10608.583 0 374.86795 -0.00093301613 -0.00094571674 + 93930 -6247.2095 -6254.8249 7.6153403 3729.1397 624.91216 -10608.877 0 364.96984 -0.00088443107 -0.0008961433 + 93940 -6247.2189 -6254.6792 7.4602878 3723.7211 627.28309 -10605.683 0 357.53885 -0.00055735907 -0.00057554767 + 93950 -6247.2412 -6254.4819 7.2406902 3714.7527 630.87116 -10600.106 0 347.0145 -4.6094252e-05 -7.1954965e-05 + 93960 -6247.3301 -6254.1789 6.8487612 3704.9892 634.73327 -10593.901 0 328.23107 0.00050000593 0.00047230487 + 93970 -6247.4887 -6253.8235 6.3347701 3697.2707 637.83762 -10588.932 0 303.59773 0.0009280474 0.00090572442 + 93980 -6247.6648 -6253.5648 5.8999535 3693.6887 639.37638 -10586.63 0 282.75888 0.0011286205 0.0011138708 + 93990 -6247.7987 -6253.5392 5.7404335 3695.0924 639.01139 -10587.643 0 275.11378 0.001062395 0.0010510558 + 94000 -6247.8742 -6253.7649 5.8907373 3700.9875 636.96433 -10591.717 0 282.31718 0.00076324417 0.0007491762 + 94010 -6247.9285 -6254.1296 6.2010986 3709.75 633.92114 -10597.801 0 297.19144 0.00032328365 0.00030408479 + 94020 -6248.0173 -6254.4798 6.4625092 3719.0607 630.79048 -10604.331 0 309.7197 -0.00013348743 -0.00015464661 + 94030 -6248.164 -6254.7359 6.5718902 3726.4858 628.40889 -10609.631 0 314.96185 -0.00048378577 -0.00050179683 + 94040 -6248.3419 -6254.9318 6.589855 3730.1165 627.3015 -10612.35 0 315.82283 -0.00063841209 -0.00065170592 + 94050 -6248.5073 -6255.1445 6.6371907 3729.114 627.5742 -10611.833 0 318.09142 -0.0005678989 -0.00058014865 + 94060 -6248.6506 -6255.3885 6.7379844 3723.9553 628.9485 -10608.292 0 322.92202 -0.00031023161 -0.00032647293 + 94070 -6248.8095 -6255.5838 6.7743415 3716.2485 630.89712 -10602.729 0 324.66446 4.4839841e-05 2.3606152e-05 + 94080 -6249.0298 -6255.6282 6.5983964 3708.173 632.82116 -10596.622 0 316.23218 0.00038955774 0.000367665 + 94090 -6249.3148 -6255.4992 6.1843688 3701.7902 634.21698 -10591.506 0 296.38965 0.00063480755 0.00061781674 + 94100 -6249.6157 -6255.2848 5.669142 3698.5083 634.79325 -10588.586 0 271.6971 0.00073350373 0.00072279782 + 94110 -6249.8724 -6255.1182 5.245852 3698.8554 634.51462 -10588.488 0 251.41066 0.00068374771 0.00067503815 + 94120 -6250.0639 -6255.0768 5.0129675 3702.5299 633.57097 -10591.178 0 240.24953 0.00051700559 0.00050411021 + 94130 -6250.2223 -6255.1356 4.9133146 3708.5958 632.29245 -10596.024 0 235.47361 0.00028241148 0.00026280073 + 94140 -6250.4001 -6255.2099 4.8097728 3715.7102 631.04245 -10601.963 0 230.5113 3.4887786e-05 1.1967481e-05 + 94150 -6250.622 -6255.2444 4.6224406 3722.364 630.12193 -10607.73 0 221.53329 -0.0001727177 -0.00019263135 + 94160 -6250.8629 -6255.2634 4.400477 3727.1639 629.70928 -10612.136 0 210.89555 -0.00029733209 -0.00031057773 + 94170 -6251.0724 -6255.3374 4.2650692 3729.1443 629.84533 -10614.327 0 204.40605 -0.00031468606 -0.00032330155 + 94180 -6251.2205 -6255.5022 4.2816165 3728.02 630.45609 -10613.978 0 205.19908 -0.00022606508 -0.00023562248 + 94190 -6251.3231 -6255.7093 4.3861684 3724.2531 631.39462 -10611.357 0 210.2098 -5.7473436e-05 -7.1881409e-05 + 94200 -6251.4235 -6255.8613 4.4378148 3718.887 632.48248 -10607.231 0 212.68499 0.00015000038 0.00013180466 + 94210 -6251.5508 -6255.8946 4.3438254 3713.2221 633.53911 -10602.656 0 208.18049 0.0003534363 0.00033604427 + 94220 -6251.695 -6255.8303 4.1353531 3708.4921 634.39742 -10598.72 0 198.18932 0.00051741277 0.00050457351 + 94230 -6251.8191 -6255.7506 3.9315441 3705.647 634.91055 -10596.308 0 188.42165 0.00061627173 0.00060779451 + 94240 -6251.8909 -6255.7328 3.8418963 3705.246 634.95938 -10595.938 0 184.12523 0.00063272575 0.00062496706 + 94250 -6251.9054 -6255.8 3.8946219 3707.4039 634.47171 -10597.676 0 186.65214 0.00055820706 0.00054713154 + 94260 -6251.8833 -6255.9157 4.0323239 3711.7553 633.45644 -10601.127 0 193.25159 0.00039700584 0.0003812688 + 94270 -6251.854 -6256.0174 4.1633878 3717.4553 632.03966 -10605.512 0 199.5329 0.00017190576 0.00015387579 + 94280 -6251.831 -6256.0641 4.2330419 3723.2653 630.47732 -10609.807 0 202.87112 -7.3185615e-05 -8.9153439e-05 + 94290 -6251.7976 -6256.0655 4.2679686 3727.7722 629.12388 -10612.962 0 204.545 -0.00027792354 -0.00028889015 + 94300 -6251.7121 -6256.0692 4.3570893 3729.7371 628.35498 -10614.161 0 208.81616 -0.00037936655 -0.00038639792 + 94310 -6251.534 -6256.1075 4.573512 3728.4879 628.46305 -10613.058 0 219.18836 -0.00033227051 -0.00033993754 + 94320 -6251.2527 -6256.1488 4.8961438 3724.2021 629.55561 -10609.907 0 234.65068 -0.00012841018 -0.00014117616 + 94330 -6250.8971 -6256.1007 5.2035854 3717.9389 631.48792 -10605.528 0 249.38501 0.00019425473 0.0001760029 + 94340 -6250.5143 -6255.876 5.361682 3711.3765 633.85759 -10601.11 0 256.96189 0.00055844375 0.00053913477 + 94350 -6250.1304 -6255.4715 5.3411558 3706.3477 636.07944 -10597.899 0 255.97815 0.0008689973 0.00085417826 + 94360 -6249.7279 -6254.986 5.2581499 3704.3424 637.53762 -10596.866 0 252.00004 0.0010404758 0.0010315119 + 94370 -6249.2648 -6254.5493 5.284528 3706.1261 637.77917 -10598.455 0 253.26423 0.0010208864 0.0010129567 + 94380 -6248.7255 -6254.2197 5.4941419 3711.5326 636.68435 -10602.437 0 263.31011 0.00080596874 0.00079188255 + 94390 -6248.1565 -6253.9452 5.7887132 3719.4316 634.54411 -10607.921 0 277.42762 0.00044378774 0.00042080299 + 94400 -6247.643 -6253.6403 5.9972844 3727.8825 632.00033 -10613.523 0 287.42352 2.9874406e-05 3.0310811e-06 + 94410 -6247.2343 -6253.3145 6.0801868 3734.5282 629.85475 -10617.698 0 291.39667 -0.00031045201 -0.00033267521 + 94420 -6246.8922 -6253.1229 6.2306832 3737.2444 628.81017 -10619.177 0 298.6093 -0.00045612302 -0.00047045884 + 94430 -6246.5261 -6253.2574 6.7312898 3734.9014 629.23853 -10617.397 0 322.60118 -0.0003349942 -0.0003475226 + 94440 -6246.0924 -6253.7636 7.6712871 3727.9201 631.05468 -10612.738 0 367.65112 3.9914944e-05 1.9274234e-05 + 94450 -6245.6556 -6254.4604 8.8047822 3718.2862 633.73122 -10606.478 0 421.97457 0.00056529926 0.00053298213 + 94460 -6245.3444 -6255.0566 9.7121807 3708.9117 636.45061 -10600.419 0 465.46219 0.0010824043 0.0010454847 + 94470 -6245.2366 -6255.3573 10.120764 3702.6059 638.35807 -10596.321 0 485.04379 0.0014366028 0.0014062703 + 94480 -6245.2955 -6255.3663 10.070805 3701.144 638.84178 -10595.352 0 482.6495 0.001530995 0.0015117716 + 94490 -6245.4213 -6255.2041 9.7828516 3704.8182 637.74145 -10597.764 0 468.84914 0.0013506223 0.0013363431 + 94500 -6245.5544 -6254.9526 9.3981628 3712.5274 635.40404 -10602.884 0 450.4127 0.00095610191 0.00093640568 + 94510 -6245.7173 -6254.5904 8.8730431 3722.1985 632.56534 -10609.354 0 425.24601 0.00046034209 0.00043069182 + 94520 -6245.9606 -6254.0747 8.1140529 3731.3333 630.10502 -10615.513 0 388.87094 -5.4341279e-07 -3.5251027e-05 + 94530 -6246.2862 -6253.4604 7.1742526 3737.598 628.76813 -10619.827 0 343.83044 -0.00029995163 -0.00033084877 + 94540 -6246.6328 -6252.9166 6.2837766 3739.4211 628.94824 -10621.286 0 301.15383 -0.00035532463 -0.00037761253 + 94550 -6246.9286 -6252.6264 5.6978074 3736.4602 630.58949 -10619.676 0 273.0709 -0.0001545057 -0.00017045364 + 94560 -6247.1437 -6252.6783 5.5345788 3729.7382 633.21776 -10615.634 0 265.24807 0.00023921542 0.00022345657 + 94570 -6247.3002 -6253.0367 5.7364545 3721.3464 636.08316 -10610.466 0 274.92308 0.00070770724 0.00068724108 + 94580 -6247.4477 -6253.5863 6.1385948 3713.802 638.37897 -10605.767 0 294.19591 0.0011161539 0.0010903747 + 94590 -6247.6326 -6254.1975 6.5648963 3709.2823 639.48054 -10602.96 0 314.62667 0.0013544538 0.0013267764 + 94600 -6247.8759 -6254.7743 6.8983434 3708.9879 639.12969 -10602.892 0 330.60732 0.0013685228 0.0013436454 + 94610 -6248.1655 -6255.2723 7.1068435 3712.8387 637.49913 -10605.61 0 340.59982 0.0011725901 0.0011530366 + 94620 -6248.4683 -6255.6848 7.2164825 3719.5925 635.11433 -10610.392 0 345.85433 0.00083933546 0.00082349267 + 94630 -6248.7583 -6256.0016 7.2433023 3727.3182 632.66743 -10615.987 0 347.13969 0.00047185398 0.00045525315 + 94640 -6249.0391 -6256.177 7.137955 3734.0179 630.79746 -10620.992 0 342.09085 0.00016879883 0.00014807246 + 94650 -6249.3352 -6256.1465 6.811286 3738.155 629.91506 -10624.217 0 326.43504 -2.9773539e-06 -2.6905767e-05 + 94660 -6249.6573 -6255.8915 6.2342084 3738.9493 630.12096 -10624.962 0 298.77825 -1.9482031e-05 -4.2284029e-05 + 94670 -6249.9782 -6255.4866 5.5084623 3736.4468 631.22755 -10623.161 0 263.99642 0.00010407769 8.592443e-05 + 94680 -6250.249 -6255.0726 4.8235374 3731.4307 632.85715 -10619.36 0 231.17098 0.00032417365 0.00031010668 + 94690 -6250.4384 -6254.7761 4.337732 3725.2174 634.57148 -10614.565 0 207.88845 0.00058162947 0.00056771906 + 94700 -6250.5544 -6254.6465 4.0920835 3719.3514 635.98905 -10609.987 0 196.1156 0.00081500067 0.00079765699 + 94710 -6250.6351 -6254.6554 4.0202756 3715.2425 636.86254 -10606.76 0 192.67417 0.00097433777 0.0009535061 + 94720 -6250.7162 -6254.7483 4.0320554 3713.8304 637.1049 -10605.684 0 193.23872 0.0010325811 0.0010116812 + 94730 -6250.8038 -6254.8996 4.0957629 3715.3773 636.76803 -10607.045 0 196.29194 0.00099004945 0.00097276118 + 94740 -6250.8716 -6255.1214 4.2497901 3719.4595 635.99314 -10610.574 0 203.67379 0.00086938312 0.00085614506 + 94750 -6250.8868 -6255.4205 4.5336535 3725.1469 634.95848 -10615.526 0 217.27811 0.00070364911 0.00069114449 + 94760 -6250.8421 -6255.7492 4.9070704 3731.272 633.8428 -10620.864 0 235.17435 0.00052493347 0.00050917037 + 94770 -6250.7635 -6256.0083 5.2447988 3736.6671 632.80911 -10625.484 0 251.36019 0.00035997444 0.00034006306 + 94780 -6250.6848 -6256.109 5.4242594 3740.3133 632.00365 -10628.426 0 259.96095 0.00023309249 0.00021199052 + 94790 -6250.6128 -6256.0373 5.4245444 3741.4467 631.56074 -10629.045 0 259.97461 0.0001699932 0.00015148474 + 94800 -6250.5181 -6255.8547 5.33659 3739.6931 631.60064 -10627.148 0 255.75933 0.0001951694 0.00018021865 + 94810 -6250.3587 -6255.6359 5.2771556 3735.2261 632.20629 -10623.068 0 252.91091 0.00032187449 0.00030797961 + 94820 -6250.1076 -6255.4079 5.3002612 3728.849 633.37581 -10617.633 0 254.01825 0.00054098686 0.00052479791 + 94830 -6249.7576 -6255.1484 5.3908208 3721.9033 634.96913 -10612.021 0 258.35838 0.00081652572 0.00079680284 + 94840 -6249.3055 -6254.8342 5.5286774 3716.0005 636.68498 -10607.52 0 264.96524 0.0010908989 0.0010691659 + 94850 -6248.7389 -6254.4866 5.7476927 3712.6638 638.10015 -10605.251 0 275.46168 0.0012977033 0.0012765453 + 94860 -6248.038 -6254.177 6.138971 3712.9694 638.77612 -10605.922 0 294.21394 0.001378254 0.0013589121 + 94870 -6247.1923 -6253.9909 6.798636 3717.2403 638.41015 -10609.641 0 325.82879 0.0012988967 0.0012797552 + 94880 -6246.2276 -6253.968 7.7404502 3724.846 636.98544 -10615.799 0 370.9658 0.0010657974 0.0010430054 + 94890 -6245.2315 -6254.0499 8.8183709 3734.2017 634.8526 -10623.104 0 422.62581 0.00073170975 0.00070242177 + 94900 -6244.3396 -6254.0901 9.7505758 3743.0532 632.6734 -10629.817 0 467.3023 0.00038932042 0.00035523965 + 94910 -6243.6654 -6253.9509 10.285448 3749.019 631.2184 -10634.188 0 492.93637 0.00014974186 0.00011654606 + 94920 -6243.2322 -6253.6065 10.374273 3750.2723 631.09796 -10634.977 0 497.19338 0.00010914083 8.1228063e-05 + 94930 -6242.9802 -6253.1463 10.166097 3746.1883 632.53919 -10631.874 0 487.21643 0.00031188391 0.00028805225 + 94940 -6242.8386 -6252.6829 9.8443376 3737.7047 635.28434 -10625.672 0 471.7959 0.00072547215 0.00070039075 + 94950 -6242.7802 -6252.2784 9.4982372 3727.1607 638.63529 -10618.074 0 455.20882 0.0012424307 0.0012119167 + 94960 -6242.8168 -6251.9513 9.1344913 3717.6017 641.63672 -10611.19 0 437.77608 0.0017122185 0.0016768681 + 94970 -6242.9627 -6251.7242 8.7614519 3711.809 643.3594 -10606.893 0 419.89794 0.001991205 0.0019557707 + 94980 -6243.2074 -6251.653 8.4456362 3711.4189 643.20251 -10606.274 0 404.76227 0.0019914767 0.0019612315 + 94990 -6243.5136 -6251.8185 8.3049291 3716.4349 641.10802 -10609.361 0 398.0188 0.0017107781 0.0016874833 + 95000 -6243.8386 -6252.2804 8.4417071 3725.2811 637.60218 -10615.164 0 404.57397 0.0012329037 0.0012130314 + 95010 -6244.1709 -6253.0108 8.8398998 3735.3624 633.64386 -10622.017 0 423.6576 0.00069859592 0.00067573167 + 95020 -6244.5527 -6253.8551 9.3023938 3743.9037 630.33046 -10628.089 0 445.82291 0.00025888005 0.00022939771 + 95030 -6245.0543 -6254.5831 9.5288113 3748.7492 628.55848 -10631.891 0 456.6741 2.9628369e-05 -3.2359407e-06 + 95040 -6245.702 -6255.0241 9.3221585 3748.8782 628.75117 -10632.653 0 446.77014 6.2534446e-05 3.401381e-05 + 95050 -6246.4319 -6255.1733 8.7413985 3744.5791 630.74678 -10630.499 0 418.93686 0.00033669316 0.00031743203 + 95060 -6247.1276 -6255.1622 8.0345355 3737.3241 633.88275 -10626.369 0 385.06002 0.0007673542 0.000754608 + 95070 -6247.7058 -6255.1276 7.4218018 3729.3734 637.23186 -10621.733 0 355.69439 0.0012287549 0.0012145697 + 95080 -6248.1622 -6255.1069 6.9447449 3723.1475 639.8947 -10618.149 0 332.83114 0.0015887484 0.0015669685 + 95090 -6248.5495 -6255.0421 6.4926743 3720.5064 641.25294 -10616.802 0 311.16538 0.0017482789 0.0017196846 + 95100 -6248.9188 -6254.8651 5.9463875 3722.1738 641.11645 -10618.155 0 284.98425 0.00167289 0.0016444984 + 95110 -6249.2754 -6254.5867 5.311248 3727.5273 639.73229 -10621.846 0 254.54481 0.0014029973 0.0013823423 + 95120 -6249.5769 -6254.3158 4.7388901 3734.8517 637.66322 -10626.831 0 227.11421 0.0010368664 0.0010257549 + 95130 -6249.7717 -6254.1895 4.4177662 3741.9635 635.58503 -10631.738 0 211.72415 0.00069254503 0.00068538281 + 95140 -6249.8485 -6254.2663 4.4178124 3746.9523 634.07387 -10635.292 0 211.72636 0.00046560832 0.00045396453 + 95150 -6249.8538 -6254.4806 4.626874 3748.7297 633.44843 -10636.659 0 221.74576 0.00040116802 0.00038085868 + 95160 -6249.8602 -6254.7048 4.8445576 3747.2018 633.70786 -10635.614 0 232.17838 0.00048959296 0.00046403283 + 95170 -6249.9102 -6254.8605 4.9503143 3743.0922 634.57647 -10632.529 0 237.24684 0.00068197288 0.0006588427 + 95180 -6249.9859 -6254.9739 4.988056 3737.6035 635.63166 -10628.209 0 239.05563 0.00091296768 0.00089745468 + 95190 -6250.0317 -6255.1279 5.0961378 3732.0907 636.46383 -10623.682 0 244.23552 0.0011202095 0.0011109161 + 95200 -6250.0047 -6255.367 5.3622292 3727.8061 636.80849 -10619.982 0 256.98811 0.0012567304 0.0012473021 + 95210 -6249.9086 -6255.6436 5.7350336 3725.6864 636.60879 -10617.939 0 274.85499 0.0012978706 0.00128229 + 95220 -6249.7898 -6255.8417 6.0519045 3726.1685 635.99901 -10618.009 0 290.04122 0.0012439716 0.0012211544 + 95230 -6249.7041 -6255.8514 6.1473081 3729.0754 635.22902 -10620.156 0 294.6135 0.0011185175 0.0010931026 + 95240 -6249.6755 -6255.6442 5.9686638 3733.6341 634.56593 -10623.844 0 286.05186 0.00096150666 0.00094039736 + 95250 -6249.6758 -6255.3041 5.6282856 3738.6681 634.21008 -10628.182 0 269.73903 0.0008188983 0.00080571903 + 95260 -6249.6411 -6254.9828 5.3416505 3742.9429 634.25026 -10632.176 0 256.00186 0.00072968855 0.00072125298 + 95270 -6249.5223 -6254.7942 5.2719087 3745.5487 634.66491 -10635.008 0 252.65944 0.00071389292 0.00070219363 + 95280 -6249.3284 -6254.7269 5.3985606 3746.1445 635.35693 -10636.228 0 258.72932 0.00076724066 0.00074614815 + 95290 -6249.1223 -6254.6599 5.5376537 3744.9388 636.20072 -10635.799 0 265.39544 0.00086714951 0.00083822291 + 95300 -6248.9663 -6254.4783 5.5119847 3742.4573 637.08115 -10634.017 0 264.16523 0.00098738703 0.0009592417 + 95310 -6248.8621 -6254.1872 5.3250474 3739.2895 637.9114 -10631.388 0 255.20615 0.0011114058 0.0010926051 + 95320 -6248.7391 -6253.9211 5.1820252 3735.9844 638.62735 -10628.533 0 248.35172 0.0012344406 0.0012257726 + 95330 -6248.5034 -6253.8349 5.331481 3733.1088 639.16696 -10626.111 0 255.51449 0.0013531407 0.0013460596 + 95340 -6248.1107 -6253.9625 5.8517993 3731.324 639.45047 -10624.737 0 280.45106 0.0014519729 0.001435205 + 95350 -6247.6065 -6254.169 6.5624976 3731.3062 639.37655 -10624.852 0 314.51171 0.0014996251 0.001469078 + 95360 -6247.0939 -6254.2543 7.1604068 3733.4541 638.84409 -10626.552 0 343.16687 0.0014624424 0.0014257686 + 95370 -6246.6423 -6254.1356 7.4932951 3737.5368 637.80046 -10629.473 0 359.12074 0.0013282898 0.001298819 + 95380 -6246.2151 -6253.9361 7.7209725 3742.5664 636.30454 -10632.807 0 370.03233 0.0011230313 0.0011073363 + 95390 -6245.7008 -6253.8707 8.1699028 3747.0778 634.57687 -10635.525 0 391.54758 0.00090500415 0.0008958096 + 95400 -6245.0362 -6254.0175 8.9813154 3749.6961 632.99949 -10636.713 0 430.43503 0.00074065473 0.00072310171 + 95410 -6244.3028 -6254.2053 9.9025112 3749.6353 632.03782 -10635.878 0 474.5839 0.00067985612 0.00064600561 + 95420 -6243.6844 -6254.1551 10.470683 3746.861 632.08926 -10633.105 0 501.81388 0.0007459804 0.00070306661 + 95430 -6243.3098 -6253.7438 10.433985 3741.9631 633.31049 -10629.017 0 500.05512 0.00093781569 0.0009014114 + 95440 -6243.1458 -6253.1234 9.9775777 3735.9807 635.50716 -10624.611 0 478.18151 0.0012294817 0.0012085568 + 95450 -6243.0539 -6252.586 9.5320871 3730.2979 638.15318 -10621.037 0 456.8311 0.0015644868 0.001553401 + 95460 -6242.935 -6252.3228 9.3877414 3726.4935 640.54396 -10619.36 0 449.91324 0.0018569115 0.0018411707 + 95470 -6242.8167 -6252.2955 9.4788107 3725.9806 642.02807 -10620.304 0 454.27779 0.0020128394 0.0019822306 + 95480 -6242.8205 -6252.3047 9.4842388 3729.4576 642.23152 -10623.994 0 454.53794 0.0019685087 0.0019260862 + 95490 -6243.0499 -6252.1827 9.1328043 3736.417 641.18955 -10629.789 0 437.69522 0.0017259222 0.001685513 + 95500 -6243.4933 -6251.9562 8.462896 3745.0612 639.33301 -10636.35 0 405.58946 0.0013632329 0.0013373102 + 95510 -6244.0343 -6251.8371 7.8027959 3752.8323 637.33596 -10642.005 0 373.95376 0.0010082999 0.00099672008 + 95520 -6244.5687 -6252.0346 7.4658971 3757.4013 635.8848 -10645.321 0 357.80768 0.00078544359 0.00077576247 + 95530 -6245.1111 -6252.5612 7.4501118 3757.6071 635.44762 -10645.616 0 357.05116 0.0007636147 0.00074289082 + 95540 -6245.7737 -6253.223 7.4493419 3753.8287 636.11627 -10643.168 0 357.01426 0.00093330225 0.00089976233 + 95550 -6246.6287 -6253.7898 7.1610222 3747.6577 637.57839 -10639.026 0 343.19636 0.0012202039 0.0011837381 + 95560 -6247.604 -6254.1699 6.5659214 3741.1624 639.23926 -10634.572 0 314.6758 0.0015218934 0.0014942298 + 95570 -6248.527 -6254.4409 5.9139652 3736.1736 640.44546 -10631.06 0 283.4304 0.001744775 0.0017297171 + 95580 -6249.2547 -6254.7407 5.4860142 3733.8704 640.71054 -10629.322 0 262.92058 0.0018268682 0.0018185389 + 95590 -6249.7491 -6255.1318 5.3827048 3734.6651 639.86101 -10629.658 0 257.96941 0.0017464422 0.0017349532 + 95600 -6250.066 -6255.5402 5.4741786 3738.2337 638.07783 -10631.852 0 262.35335 0.0015226586 0.0015019903 + 95610 -6250.303 -6255.8085 5.5055156 3743.5934 635.838 -10635.24 0 263.8552 0.0012116601 0.0011842561 + 95620 -6250.5341 -6255.8252 5.2910778 3749.2584 633.77053 -10638.854 0 253.57814 0.00089683929 0.00087137975 + 95630 -6250.7631 -6255.6275 4.864479 3753.5638 632.46454 -10641.656 0 233.13313 0.00066986638 0.00065352965 + 95640 -6250.933 -6255.3803 4.4472986 3755.165 632.29286 -10642.838 0 213.1395 0.00060274635 0.00059455157 + 95650 -6250.9909 -6255.2368 4.2458993 3753.5532 633.31022 -10642.1 0 203.48732 0.00071992404 0.00071158998 + 95660 -6250.9479 -6255.2108 4.2628738 3749.3083 635.25072 -10639.77 0 204.30083 0.00098540259 0.00096919589 + 95670 -6250.8759 -6255.184 4.3080503 3743.9027 637.61278 -10636.699 0 206.46594 0.0013148968 0.0012909344 + 95680 -6250.8448 -6255.0397 4.1948871 3739.1308 639.80138 -10633.972 0 201.04253 0.0016086896 0.0015846936 + 95690 -6250.861 -6254.7871 3.9261219 3736.4668 641.29121 -10632.545 0 188.16179 0.0017881824 0.00177215 + 95700 -6250.8635 -6254.5611 3.6975413 3736.6491 641.76891 -10632.979 0 177.20693 0.0018184756 0.0018112199 + 95710 -6250.7769 -6254.5061 3.72917 3739.5992 641.21336 -10635.319 0 178.72275 0.0017103021 0.0017044159 + 95720 -6250.5738 -6254.6489 4.0751279 3744.5849 639.88912 -10639.123 0 195.30299 0.0015072125 0.0014932399 + 95730 -6250.2999 -6254.8667 4.5668186 3750.4608 638.25489 -10643.582 0 218.86757 0.0012689924 0.0012437349 + 95740 -6250.0396 -6254.9819 4.9422789 3755.8857 636.81488 -10647.682 0 236.86173 0.0010586629 0.0010285653 + 95750 -6249.8431 -6254.9132 5.0700438 3759.5278 635.96117 -10650.402 0 242.98495 0.00093283168 0.00090886789 + 95760 -6249.6752 -6254.7485 5.0733109 3760.3417 635.86159 -10650.952 0 243.14153 0.00093043472 0.00091827559 + 95770 -6249.4424 -6254.6601 5.2177534 3757.9251 636.4308 -10649.016 0 250.06402 0.0010582391 0.0010526909 + 95780 -6249.0817 -6254.7295 5.647794 3752.7989 637.38528 -10644.914 0 270.67398 0.0012806888 0.0012702152 + 95790 -6248.6274 -6254.8562 6.2287525 3746.3622 638.35155 -10639.57 0 298.51677 0.0015263037 0.0015036995 + 95800 -6248.1868 -6254.8493 6.6624263 3740.4288 638.9882 -10634.266 0 319.30085 0.0017144452 0.0016833393 + 95810 -6247.8454 -6254.6093 6.7638992 3736.5534 639.08979 -10630.252 0 324.164 0.001789856 0.001760862 + 95820 -6247.5952 -6254.2185 6.6233335 3735.5265 638.64649 -10628.392 0 317.42731 0.0017438934 0.0017245664 + 95830 -6247.355 -6253.8628 6.5078844 3737.2706 637.84047 -10628.974 0 311.89434 0.0016107329 0.0015989698 + 95840 -6247.0522 -6253.6706 6.6184441 3741.0814 636.97737 -10631.729 0 317.19298 0.0014450683 0.0014314279 + 95850 -6246.6897 -6253.6129 6.9231843 3745.9769 636.37885 -10635.969 0 331.79784 0.0012977889 0.0012740318 + 95860 -6246.344 -6253.5382 7.1941662 3750.9538 636.27818 -10640.77 0 344.78481 0.0012023209 0.0011687645 + 95870 -6246.0994 -6253.3102 7.2108427 3755.0944 636.75593 -10645.161 0 345.58404 0.0011741471 0.0011396489 + 95880 -6245.9707 -6252.9385 6.9677889 3757.6155 637.73193 -10648.286 0 333.93554 0.001217239 0.0011915159 + 95890 -6245.8868 -6252.5881 6.7012889 3757.9875 639.00839 -10649.584 0 321.16337 0.0013281791 0.0013130246 + 95900 -6245.7532 -6252.4472 6.6939407 3756.1449 640.34243 -10648.935 0 320.8112 0.001493888 0.0014814388 + 95910 -6245.5375 -6252.5692 7.0316632 3752.6391 641.5174 -10646.726 0 336.99675 0.0016877741 0.0016675414 + 95920 -6245.2971 -6252.8333 7.5362306 3748.548 642.38511 -10643.766 0 361.17846 0.0018720743 0.0018401978 + 95930 -6245.1296 -6253.051 7.9214293 3745.1219 642.86764 -10641.041 0 379.63934 0.00200816 0.0019707001 + 95940 -6245.0915 -6253.1154 8.0239601 3743.3451 642.92877 -10639.389 0 384.55319 0.0020689942 0.0020367897 + 95950 -6245.1542 -6253.0743 7.9201229 3743.6471 642.54224 -10639.264 0 379.57673 0.0020460315 0.0020256627 + 95960 -6245.2324 -6253.078 7.8456648 3745.8757 641.686 -10640.64 0 376.00828 0.0019471336 0.0019353464 + 95970 -6245.2611 -6253.2462 7.9851326 3749.4713 640.37474 -10643.092 0 382.69236 0.0017887547 0.0017749552 + 95980 -6245.2586 -6253.557 8.2983971 3753.676 638.71395 -10645.947 0 397.70575 0.0015902001 0.0015653012 + 95990 -6245.3196 -6253.8573 8.5376647 3757.6404 636.93769 -10648.435 0 409.1728 0.0013759969 0.0013402897 + 96000 -6245.5356 -6253.9934 8.4578581 3760.4457 635.39443 -10649.834 0 405.34802 0.0011836251 0.0011464384 + 96010 -6245.9123 -6253.9464 8.0340599 3761.1984 634.46938 -10649.614 0 385.03723 0.0010647693 0.0010358429 + 96020 -6246.3678 -6253.8354 7.467668 3759.32 634.46491 -10647.62 0 357.89255 0.0010697974 0.0010505903 + 96030 -6246.8148 -6253.7863 6.9714753 3754.9331 635.48373 -10644.203 0 334.11221 0.0012199429 0.0012034314 + 96040 -6247.2377 -6253.8028 6.5650155 3749.0528 637.36014 -10640.216 0 314.63238 0.0014863528 0.0014650316 + 96050 -6247.6822 -6253.7804 6.0982514 3743.3613 639.66929 -10636.811 0 292.26243 0.0017936628 0.0017670271 + 96060 -6248.1784 -6253.641 5.4626174 3739.6266 641.8241 -10635.092 0 261.79928 0.0020481147 0.0020221759 + 96070 -6248.6908 -6253.4376 4.7467601 3739.0736 643.24253 -10635.754 0 227.49138 0.0021729238 0.002153307 + 96080 -6249.1474 -6253.325 4.1776236 3742.0101 643.5329 -10638.868 0 200.21516 0.0021321115 0.00211849 + 96090 -6249.5044 -6253.4338 3.9294992 3747.8022 642.62668 -10643.863 0 188.32365 0.001936641 0.0019236108 + 96100 -6249.7773 -6253.7703 3.9929688 3755.099 640.80867 -10649.678 0 191.36547 0.0016381409 0.0016207272 + 96110 -6250.0187 -6254.2216 4.2029016 3762.1672 638.63651 -10655.025 0 201.42663 0.0013165238 0.001294759 + 96120 -6250.27 -6254.6492 4.3792326 3767.2649 636.77621 -10658.69 0 209.8774 0.0010629255 0.0010415284 + 96130 -6250.529 -6254.9835 4.4545308 3769.042 635.80164 -10659.827 0 213.48611 0.00095701211 0.00094082532 + 96140 -6250.7561 -6255.2407 4.4846053 3766.9318 636.01575 -10658.188 0 214.92745 0.0010412286 0.0010308655 + 96150 -6250.9133 -6255.4627 4.5494556 3761.415 637.3475 -10654.225 0 218.03544 0.0013010755 0.0012927723 + 96160 -6250.9958 -6255.6513 4.6554878 3753.9941 639.35972 -10649.005 0 223.1171 0.0016629945 0.0016523087 + 96170 -6251.0316 -6255.7645 4.7328887 3746.8041 641.37483 -10643.943 0 226.82658 0.0020150952 0.002000505 + 96180 -6251.0531 -6255.761 4.7079146 3741.9628 642.68963 -10640.413 0 225.62968 0.0022440427 0.0022273933 + 96190 -6251.0742 -6255.6354 4.5612232 3740.9046 642.81223 -10639.352 0 218.59941 0.0022730574 0.0022573917 + 96200 -6251.0881 -6255.4155 4.327466 3743.9407 641.63449 -10640.991 0 207.39645 0.0020867731 0.0020739969 + 96210 -6251.0788 -6255.1429 4.0640972 3750.177 639.47252 -10644.792 0 194.77434 0.001735759 0.001725621 + 96220 -6251.0325 -6254.8586 3.8260917 3757.7941 636.96223 -10649.615 0 183.36778 0.0013207659 0.0013111354 + 96230 -6250.9457 -6254.5941 3.6483681 3764.5935 634.8551 -10654.043 0 174.85027 0.00096200417 0.00095012107 + 96240 -6250.8309 -6254.3614 3.5305455 3768.6355 633.7894 -10656.786 0 169.20355 0.00076293719 0.0007472966 + 96250 -6250.7124 -6254.1557 3.4432746 3768.773 634.10695 -10657.036 0 165.02104 0.00078033166 0.00076207296 + 96260 -6250.6093 -6253.9801 3.3707746 3764.9361 635.7598 -10654.676 0 161.54643 0.0010099528 0.00099220042 + 96270 -6250.5161 -6253.8713 3.3552023 3758.1247 638.32473 -10650.321 0 160.80012 0.0013905517 0.0013756934 + 96280 -6250.4026 -6253.8887 3.4860787 3750.1502 641.12082 -10645.16 0 167.07245 0.001822232 0.0018094391 + 96290 -6250.2384 -6254.0667 3.8282865 3743.1897 643.40193 -10640.658 0 183.47297 0.0021928402 0.0021783537 + 96300 -6250.0203 -6254.3687 4.3483322 3739.2279 644.5734 -10638.17 0 208.39648 0.0024067196 0.002387021 + 96310 -6249.7812 -6254.6897 4.9085519 3739.5028 644.36832 -10638.561 0 235.24535 0.0024106388 0.0023859117 + 96320 -6249.5657 -6254.9144 5.3486702 3744.1087 642.92232 -10641.945 0 256.33829 0.0022105531 0.0021851766 + 96330 -6249.392 -6254.9911 5.5991142 3751.9155 640.7165 -10647.623 0 268.34097 0.0018719082 0.0018509352 + 96340 -6249.2335 -6254.9581 5.724619 3760.8814 638.40972 -10654.249 0 274.35586 0.0014993665 0.001483768 + 96350 -6249.0463 -6254.8894 5.8431035 3768.68 636.62837 -10660.198 0 280.0343 0.001201058 0.0011864379 + 96360 -6248.8173 -6254.8078 5.9905039 3773.4013 635.7915 -10664.001 0 287.09856 0.0010526248 0.0010332515 + 96370 -6248.5841 -6254.6596 6.0755581 3774.0437 636.02153 -10664.725 0 291.17483 0.00107785 0.0010523146 + 96380 -6248.399 -6254.3812 5.9821875 3770.6453 637.15087 -10662.177 0 286.69999 0.0012521116 0.0012247822 + 96390 -6248.2763 -6253.9865 5.7101896 3764.1172 638.80558 -10656.909 0 273.66433 0.0015205034 0.0014972299 + 96400 -6248.1789 -6253.5755 5.396618 3755.954 640.53019 -10650.06 0 258.63621 0.0018167932 0.0017994762 + 96410 -6248.0552 -6253.2541 5.1988278 3747.9342 641.91165 -10643.1 0 249.157 0.0020761616 0.0020616338 + 96420 -6247.8841 -6253.0574 5.1733844 3741.8033 642.66784 -10637.529 0 247.93761 0.00224425 0.0022278135 + 96430 -6247.6812 -6252.949 5.2677701 3738.9197 642.68536 -10634.554 0 252.4611 0.0022864857 0.0022659018 + 96440 -6247.4751 -6252.8774 5.4022875 3739.9311 642.01215 -10634.821 0 258.90793 0.0021960378 0.0021725119 + 96450 -6247.2812 -6252.8227 5.541488 3744.601 640.82276 -10638.246 0 265.5792 0.0019955048 0.0019719535 + 96460 -6247.0956 -6252.8 5.7043475 3751.8549 639.37376 -10644.029 0 273.38434 0.0017308349 0.0017096181 + 96470 -6246.901 -6252.8388 5.9378054 3760.0281 637.95972 -10650.827 0 284.57295 0.0014608612 0.0014422912 + 96480 -6246.677 -6252.9587 6.2816923 3767.2503 636.87333 -10657.082 0 301.05394 0.0012462251 0.0012282384 + 96490 -6246.4168 -6253.1435 6.7266911 3771.8812 636.36955 -10661.394 0 322.38078 0.0011386915 0.0011181478 + 96500 -6246.1409 -6253.328 7.1870534 3772.8913 636.62963 -10662.849 0 344.44393 0.0011710368 0.0011463256 + 96510 -6245.8906 -6253.4247 7.5340541 3770.0867 637.71996 -10661.231 0 361.07415 0.0013492946 0.0013221273 + 96520 -6245.6984 -6253.3858 7.6873579 3764.1384 639.54952 -10657.074 0 368.42132 0.0016496663 0.0016239025 + 96530 -6245.5612 -6253.2479 7.6867248 3756.4451 641.84288 -10651.536 0 368.39098 0.0020207718 0.0019988539 + 96540 -6245.444 -6253.1136 7.6696193 3748.87 644.15462 -10646.138 0 367.57119 0.0023904153 0.0023705538 + 96550 -6245.3155 -6253.0746 7.7591068 3743.371 645.94527 -10642.391 0 371.85993 0.0026762686 0.0026532797 + 96560 -6245.1849 -6253.1296 7.9446476 3741.551 646.71603 -10641.397 0 380.75209 0.0028012676 0.0027711151 + 96570 -6245.1066 -6253.173 8.0664035 3744.1913 646.16447 -10643.529 0 386.58731 0.0027145766 0.0026789933 + 96580 -6245.1336 -6253.0825 7.9488883 3750.8965 644.30017 -10648.279 0 380.95533 0.002414253 0.0023804639 + 96590 -6245.2596 -6252.8385 7.5788515 3760.0391 641.47115 -10654.349 0 363.22109 0.0019599074 0.0019343885 + 96600 -6245.4132 -6252.5523 7.1390981 3769.1398 638.29272 -10659.985 0 342.14564 0.001462685 0.0014445209 + 96610 -6245.5224 -6252.3632 6.8407253 3775.6149 635.50586 -10663.484 0 327.84594 0.0010521742 0.0010332062 + 96620 -6245.586 -6252.307 6.7210096 3777.586 633.80156 -10663.695 0 322.10849 0.00083557805 0.00080799163 + 96630 -6245.6761 -6252.2977 6.6216084 3774.415 633.64267 -10660.355 0 317.34463 0.00086792404 0.00083197818 + 96640 -6245.8684 -6252.2386 6.3701786 3766.8141 635.11819 -10654.171 0 305.2947 0.0011414711 0.0011055616 + 96650 -6246.1692 -6252.1422 5.9730405 3756.6065 637.87682 -10646.626 0 286.26162 0.0015903065 0.0015632111 + 96660 -6246.515 -6252.1334 5.6184654 3746.2952 641.18397 -10639.613 0 269.26839 0.0021035583 0.0020865143 + 96670 -6246.8411 -6252.3342 5.4930768 3738.5269 644.11222 -10634.973 0 263.25906 0.0025466266 0.0025327234 + 96680 -6247.1478 -6252.7493 5.6014216 3735.467 645.81912 -10634.035 0 268.45155 0.0027934698 0.0027743585 + 96690 -6247.4985 -6253.2574 5.7589269 3738.1628 645.8212 -10637.241 0 276.00009 0.002766494 0.0027397372 + 96700 -6247.9553 -6253.7086 5.7532442 3746.1071 644.16023 -10643.976 0 275.72774 0.0024690196 0.0024395322 + 96710 -6248.514 -6254.0335 5.5194438 3757.2637 641.39068 -10652.688 0 264.52272 0.0019911707 0.0019660786 + 96720 -6249.1009 -6254.2724 5.1715168 3768.6527 638.39013 -10661.315 0 247.8481 0.0014808447 0.0014630589 + 96730 -6249.6304 -6254.5063 4.8758706 3777.2976 636.07126 -10667.875 0 233.67908 0.0010913742 0.0010777675 + 96740 -6250.0622 -6254.7652 4.7029337 3781.1353 635.10368 -10671.004 0 225.39097 0.000930442 0.00091548623 + 96750 -6250.409 -6255.0006 4.5916602 3779.5419 635.72917 -10670.272 0 220.05812 0.0010306253 0.0010113493 + 96760 -6250.7041 -6255.136 4.4318734 3773.3615 637.71083 -10666.208 0 212.40024 0.0013475711 0.0013254745 + 96770 -6250.9675 -6255.1354 4.1679059 3764.5332 640.4203 -10660.089 0 199.74944 0.0017800797 0.0017591579 + 96780 -6251.1937 -6255.0297 3.8359929 3755.4972 643.0334 -10653.56 0 183.8423 0.0022020153 0.0021852888 + 96790 -6251.3638 -6254.887 3.5231326 3748.5605 644.77498 -10648.222 0 168.84828 0.0024965604 0.0024840316 + 96800 -6251.4654 -6254.7626 3.2971476 3745.3554 645.13938 -10645.257 0 158.01781 0.0025854525 0.0025746612 + 96810 -6251.5036 -6254.6705 3.1669101 3746.4863 644.02331 -10645.18 0 151.7761 0.0024476406 0.0024358289 + 96820 -6251.4972 -6254.5931 3.0959053 3751.4231 641.73694 -10647.753 0 148.37315 0.0021233123 0.0021092759 + 96830 -6251.4662 -6254.5127 3.0464365 3758.6687 638.8978 -10652.079 0 146.00233 0.0017018265 0.0016862498 + 96840 -6251.421 -6254.435 3.0140284 3766.1722 636.24673 -10656.854 0 144.44915 0.0012964401 0.0012809124 + 96850 -6251.3586 -6254.3891 3.0304982 3771.8852 634.44418 -10660.718 0 145.23848 0.0010131733 0.00099886785 + 96860 -6251.2669 -6254.4079 3.1410218 3774.3102 633.90357 -10662.622 0 150.53539 0.00092284756 0.00090973159 + 96870 -6251.1322 -6254.5036 3.3714301 3772.8892 634.70128 -10662.094 0 161.57785 0.0010435504 0.0010305416 + 96880 -6250.9484 -6254.6524 3.704076 3768.1279 636.57812 -10659.358 0 177.52011 0.0013375427 0.001323477 + 96890 -6250.7206 -6254.8007 4.0801048 3761.4266 639.02518 -10655.252 0 195.54152 0.0017233988 0.0017080497 + 96900 -6250.4609 -6254.8916 4.4307626 3754.6679 641.43033 -10650.99 0 212.34701 0.0021004085 0.0020846211 + 96910 -6250.1791 -6254.8933 4.7141551 3749.6898 643.24816 -10647.831 0 225.92876 0.0023779333 0.0023626816 + 96920 -6249.8788 -6254.8043 4.9255672 3747.8023 644.14584 -10646.752 0 236.06082 0.0024998705 0.0024851312 + 96930 -6249.5627 -6254.6363 5.0735818 3749.4774 644.07782 -10648.192 0 243.15451 0.0024562149 0.0024408517 + 96940 -6249.2423 -6254.3927 5.1503772 3754.273 643.26327 -10651.929 0 246.83498 0.0022795388 0.0022624161 + 96950 -6248.937 -6254.0725 5.1354686 3760.9822 642.07817 -10657.133 0 246.12047 0.0020303523 0.0020114618 + 96960 -6248.6615 -6253.6958 5.034365 3767.9594 640.90988 -10662.565 0 241.27502 0.0017778637 0.0017580907 + 96970 -6248.4144 -6253.3164 4.9019538 3773.546 640.03692 -10666.899 0 234.92913 0.0015815905 0.0015614781 + 96980 -6248.1851 -6252.998 4.8129391 3776.4813 639.57696 -10669.056 0 230.66305 0.0014780031 0.0014572297 + 96990 -6247.9668 -6252.779 4.812215 3776.1697 639.50496 -10668.454 0 230.62835 0.0014757569 0.0014539238 + 97000 -6247.7606 -6252.6604 4.8997717 3772.7395 639.7111 -10665.111 0 234.82455 0.0015602736 0.0015377755 + 97010 -6247.5681 -6252.6221 5.0539336 3766.9352 640.06287 -10659.62 0 242.21286 0.0017038288 0.0016816521 + 97020 -6247.3827 -6252.6437 5.2610511 3759.9231 640.44712 -10653.014 0 252.13909 0.0018752206 0.0018537883 + 97030 -6247.1896 -6252.7148 5.5252656 3753.0705 640.78307 -10646.568 0 264.80173 0.0020448208 0.0020229137 + 97040 -6246.9786 -6252.8216 5.8430859 3747.7242 641.01142 -10641.557 0 280.03346 0.002184434 0.0021596256 + 97050 -6246.7628 -6252.9235 6.1607947 3744.9893 641.07494 -10638.988 0 295.25985 0.0022658276 0.0022369939 + 97060 -6246.5782 -6252.9613 6.383098 3745.496 640.90874 -10639.366 0 305.91387 0.0022643432 0.0022340389 + 97070 -6246.4499 -6252.9172 6.4672705 3749.1886 640.45442 -10642.56 0 309.94789 0.0021696299 0.0021427219 + 97080 -6246.3571 -6252.8628 6.5057838 3755.2574 639.70234 -10647.823 0 311.79367 0.0019961356 0.0019748256 + 97090 -6246.2477 -6252.9098 6.6621057 3762.3251 638.74718 -10653.982 0 319.28549 0.0017831508 0.0017638685 + 97100 -6246.098 -6253.0895 6.9914557 3768.8365 637.82165 -10659.748 0 335.06979 0.0015835036 0.0015602107 + 97110 -6245.9475 -6253.2978 7.3503021 3773.4468 637.27047 -10664.015 0 352.26772 0.0014501118 0.0014209891 + 97120 -6245.861 -6253.3816 7.5205939 3775.2618 637.45081 -10666.094 0 360.42906 0.001427237 0.0013969803 + 97130 -6245.8584 -6253.2774 7.4190113 3773.96 638.58819 -10665.826 0 355.56065 0.0015428282 0.0015175982 + 97140 -6245.8936 -6253.0497 7.156084 3769.8955 640.65068 -10663.596 0 342.9597 0.0017960046 0.0017767681 + 97150 -6245.9064 -6252.8007 6.8943172 3764.1426 643.30256 -10660.246 0 330.41436 0.0021441434 0.0021258184 + 97160 -6245.8829 -6252.5666 6.6837578 3758.337 645.96363 -10656.867 0 320.32318 0.0025032109 0.0024801275 + 97170 -6245.8605 -6252.3105 6.4500049 3754.2373 647.95853 -10654.506 0 309.12042 0.0027697533 0.0027413202 + 97180 -6245.8819 -6252.0022 6.1202664 3753.135 648.71234 -10653.85 0 293.31751 0.0028575727 0.0028286545 + 97190 -6245.9492 -6251.689 5.7398074 3755.3731 647.9324 -10654.994 0 275.08378 0.0027310091 0.0027072274 + 97200 -6246.0197 -6251.4865 5.4668014 3760.1991 645.71511 -10657.401 0 261.9998 0.0024186498 0.0024012626 + 97210 -6246.0429 -6251.4977 5.4548241 3766.0217 642.53859 -10660.058 0 261.42578 0.0020029555 0.0019878479 + 97220 -6246.0033 -6251.729 5.7256288 3770.953 639.14086 -10661.823 0 274.40426 0.0015931977 0.0015747545 + 97230 -6245.9327 -6252.0806 6.147914 3773.4025 636.31807 -10661.801 0 294.64254 0.0012940254 0.0012701832 + 97240 -6245.8786 -6252.4272 6.5485629 3772.5169 634.70011 -10659.644 0 313.84388 0.0011789299 0.0011524925 + 97250 -6245.8624 -6252.7091 6.8467095 3768.3839 634.57125 -10655.664 0 328.13273 0.0012721077 0.0012473632 + 97260 -6245.8698 -6252.946 7.0761508 3762.0174 635.79563 -10650.759 0 339.12885 0.0015406673 0.0015193177 + 97270 -6245.8787 -6253.1755 7.2967839 3755.1273 637.87389 -10646.177 0 349.70282 0.001901427 0.0018817846 + 97280 -6245.8874 -6253.3962 7.5087856 3749.6758 640.11357 -10643.186 0 359.86314 0.002244756 0.0022239602 + 97290 -6245.9184 -6253.5596 7.6412344 3747.3026 641.8585 -10642.721 0 366.21083 0.0024695698 0.0024461011 + 97300 -6246.0028 -6253.599 7.5962254 3748.798 642.70202 -10645.099 0 364.05375 0.0025165442 0.0024912528 + 97310 -6246.1598 -6253.4698 7.3099409 3753.8171 642.60943 -10649.896 0 350.33338 0.0023872072 0.0023625356 + 97320 -6246.3799 -6253.1854 6.8054442 3760.9571 641.90383 -10656.046 0 326.15507 0.0021423738 0.002120143 + 97330 -6246.6247 -6252.8243 6.1996058 3768.2038 641.12048 -10662.149 0 297.11989 0.0018798484 0.0018590499 + 97340 -6246.8541 -6252.4876 5.6335657 3773.6111 640.78727 -10666.886 0 269.99208 0.0016980676 0.00167509 + 97350 -6247.0607 -6252.2321 5.171414 3775.9453 641.21805 -10669.396 0 247.84317 0.0016593816 0.0016315025 + 97360 -6247.274 -6252.0496 4.7756139 3775.0153 642.394 -10669.459 0 228.87422 0.0017690804 0.001738168 + 97370 -6247.5222 -6251.9241 4.4018682 3771.5778 643.96891 -10667.471 0 210.96222 0.0019789082 0.0019508633 + 97380 -6247.7925 -6251.9023 4.1098735 3766.9476 645.39001 -10664.24 0 196.9682 0.0022102029 0.0021897434 + 97390 -6248.0352 -6252.0856 4.0503551 3762.5449 646.09214 -10660.723 0 194.11574 0.0023829001 0.0023686743 + 97400 -6248.2103 -6252.5346 4.3243114 3759.5338 645.69946 -10657.768 0 207.24527 0.0024387677 0.002423918 + 97410 -6248.3289 -6253.1806 4.8517264 3758.5732 644.16447 -10655.918 0 232.52195 0.002355145 0.002333167 + 97420 -6248.4519 -6253.8324 5.380461 3759.6656 641.79478 -10655.293 0 257.86188 0.0021501691 0.0021209356 + 97430 -6248.6426 -6254.2869 5.6442929 3762.1404 639.15768 -10655.585 0 270.50618 0.0018795968 0.0018500689 + 97440 -6248.908 -6254.4612 5.5532516 3764.8367 636.89641 -10656.194 0 266.14298 0.0016230693 0.0016015031 + 97450 -6249.1844 -6254.4381 5.2537384 3766.5064 635.52703 -10656.472 0 251.78862 0.0014591555 0.0014474819 + 97460 -6249.3886 -6254.3763 4.987669 3766.331 635.29115 -10655.998 0 239.03708 0.0014354617 0.0014270054 + 97470 -6249.4916 -6254.3599 4.8682599 3764.3086 636.1099 -10654.778 0 233.31433 0.0015478459 0.0015331722 + 97480 -6249.5434 -6254.3333 4.7898975 3761.2698 637.63998 -10653.243 0 229.55876 0.0017424077 0.0017180823 + 97490 -6249.6214 -6254.1847 4.5632932 3758.4789 639.40187 -10652.065 0 218.69862 0.0019416836 0.0019134503 + 97500 -6249.7556 -6253.8899 4.1342929 3757.0526 640.93754 -10651.88 0 198.13851 0.0020803613 0.0020576821 + 97510 -6249.9011 -6253.5647 3.6636019 3757.5356 641.94869 -10653.049 0 175.58036 0.0021297472 0.0021171235 + 97520 -6249.9816 -6253.379 3.3973729 3759.8176 642.36978 -10655.566 0 162.82117 0.002099914 0.0020930796 + 97530 -6249.9546 -6253.4165 3.461898 3763.3221 642.35271 -10659.091 0 165.91358 0.002024636 0.0020146199 + 97540 -6249.8431 -6253.6097 3.766599 3767.2642 642.17448 -10663.048 0 180.51656 0.0019427771 0.001923785 + 97550 -6249.711 -6253.7993 4.0882709 3770.8287 642.10873 -10666.737 0 195.93288 0.0018863569 0.0018605789 + 97560 -6249.6066 -6253.8642 4.2576296 3773.2657 642.31353 -10669.443 0 204.0495 0.001876373 0.0018517773 + 97570 -6249.5174 -6253.8081 4.2906838 3773.987 642.77713 -10670.572 0 205.63364 0.0019211796 0.0019043241 + 97580 -6249.3768 -6253.7315 4.354704 3772.7242 643.33363 -10669.789 0 208.70185 0.0020131437 0.0020032813 + 97590 -6249.1165 -6253.7156 4.5990652 3769.6952 643.73045 -10667.141 0 220.41301 0.0021254507 0.0021151438 + 97600 -6248.7238 -6253.7268 5.0030132 3765.6342 643.71663 -10663.078 0 239.77246 0.0022156957 0.0021974384 + 97610 -6248.2538 -6253.6374 5.3836177 3761.5807 643.12669 -10658.345 0 258.01317 0.0022404657 0.0022133253 + 97620 -6247.7856 -6253.3475 5.5618576 3758.4863 641.94404 -10653.778 0 266.55543 0.0021761288 0.0021463488 + 97630 -6247.359 -6252.8915 5.5324965 3756.8608 640.32902 -10650.081 0 265.14828 0.0020333683 0.0020085386 + 97640 -6246.949 -6252.4289 5.4798891 3756.6647 638.59429 -10647.688 0 262.62703 0.001854948 0.0018372306 + 97650 -6246.4993 -6252.1315 5.6321941 3757.4742 637.12175 -10646.727 0 269.92634 0.0016972005 0.0016814878 + 97660 -6245.9819 -6252.0669 6.0850524 3758.7704 636.24396 -10647.081 0 291.62986 0.0016060579 0.001584242 + 97670 -6245.4333 -6252.1624 6.7291482 3760.1632 636.13945 -10648.465 0 322.49854 0.0016004034 0.0015681016 + 97680 -6244.9387 -6252.2678 7.3291436 3761.4434 636.78963 -10650.501 0 351.25368 0.0016702185 0.0016306009 + 97690 -6244.5691 -6252.2684 7.6992159 3762.4897 638.01295 -10652.771 0 368.98963 0.0017884942 0.0017498117 + 97700 -6244.3259 -6252.161 7.8350956 3763.1639 639.55338 -10654.878 0 375.50174 0.0019276657 0.0018961643 + 97710 -6244.148 -6252.0242 7.876218 3763.33 641.1769 -10656.531 0 377.47256 0.0020691972 0.002043804 + 97720 -6243.9782 -6251.91 7.9317535 3762.9948 642.73039 -10657.635 0 380.13413 0.0022023412 0.0021763235 + 97730 -6243.8183 -6251.7735 7.9551334 3762.4146 644.14142 -10658.329 0 381.25463 0.0023180708 0.0022859526 + 97740 -6243.7169 -6251.5173 7.8004842 3762.0278 645.37105 -10658.916 0 373.84297 0.0024061627 0.0023689498 + 97750 -6243.7089 -6251.106 7.3971463 3762.2464 646.35599 -10659.708 0 354.51276 0.0024570327 0.0024208669 + 97760 -6243.7718 -6250.634 6.8622176 3763.2662 646.97713 -10660.877 0 328.87597 0.0024642165 0.0024341965 + 97770 -6243.8397 -6250.2817 6.442026 3765.0132 647.0755 -10662.37 0 308.73803 0.0024242523 0.0023995008 + 97780 -6243.858 -6250.1948 6.3368549 3767.2055 646.51309 -10663.913 0 303.69764 0.0023355322 0.0023099908 + 97790 -6243.8277 -6250.388 6.5602683 3769.4243 645.25339 -10665.066 0 314.40486 0.0022002149 0.0021682718 + 97800 -6243.8044 -6250.747 6.9425895 3771.1338 643.4244 -10665.305 0 332.72784 0.0020306195 0.0019925895 + 97810 -6243.8533 -6251.1241 7.2707553 3771.694 641.3298 -10664.148 0 348.45539 0.001856181 0.0018188149 + 97820 -6243.9929 -6251.452 7.4591622 3770.4626 639.38984 -10661.304 0 357.48491 0.0017234194 0.0016944158 + 97830 -6244.1757 -6251.7846 7.6088483 3767.0471 638.02174 -10656.853 0 364.65871 0.0016825023 0.0016632033 + 97840 -6244.3345 -6252.2132 7.8786536 3761.6454 637.5011 -10651.36 0 377.58929 0.0017619493 0.0017451835 + 97850 -6244.4577 -6252.728 8.2702613 3755.2649 637.85842 -10645.851 0 396.35733 0.0019451355 0.0019213537 + 97860 -6244.6153 -6253.1698 8.554532 3749.5764 638.85331 -10641.599 0 409.98117 0.002167238 0.0021336447 + 97870 -6244.8949 -6253.3417 8.4467762 3746.3586 640.04444 -10639.745 0 404.81691 0.0023398574 0.0023032813 + 97880 -6245.3088 -6253.1758 7.8670206 3746.7944 640.94318 -10640.913 0 377.03177 0.0023900331 0.0023603677 + 97890 -6245.7708 -6252.7899 7.0191037 3751.0021 641.19946 -10644.991 0 336.39483 0.0022900823 0.002270925 + 97900 -6246.1685 -6252.386 6.2174923 3758.0169 640.7431 -10651.146 0 297.97712 0.0020642736 0.0020499092 + 97910 -6246.4521 -6252.0956 5.6434145 3766.1396 639.81847 -10658.054 0 270.46409 0.0017761217 0.0017572096 + 97920 -6246.6589 -6251.9111 5.2522747 3773.4214 638.89936 -10664.232 0 251.71847 0.0015085234 0.0014806605 + 97930 -6246.8618 -6251.7514 4.8896472 3778.1054 638.51944 -10668.376 0 234.33933 0.0013445379 0.0013118521 + 97940 -6247.0988 -6251.5843 4.4854976 3778.9867 639.0786 -10669.65 0 214.97021 0.0013487409 0.0013197152 + 97950 -6247.3441 -6251.486 4.1418812 3775.7158 640.6866 -10667.888 0 198.50219 0.0015473486 0.0015271716 + 97960 -6247.5388 -6251.5846 4.0457446 3769.0049 643.08913 -10663.679 0 193.89478 0.0019112627 0.0018976121 + 97970 -6247.6451 -6251.9502 4.3051205 3760.6027 645.7002 -10658.253 0 206.32553 0.002352584 0.0023378863 + 97980 -6247.6767 -6252.5316 4.854937 3752.9194 647.74527 -10653.196 0 232.67582 0.0027432857 0.0027207666 + 97990 -6247.6897 -6253.1784 5.4886622 3748.3304 648.49188 -10650.001 0 263.04749 0.0029540855 0.0029227173 + 98000 -6247.748 -6253.7183 5.970274 3748.3747 647.50406 -10649.597 0 286.12903 0.0028999925 0.0028652562 + 98010 -6247.884 -6254.0378 6.1537845 3753.1591 644.82532 -10652.022 0 294.92388 0.0025743403 0.0025446398 + 98020 -6248.0758 -6254.1294 6.0536481 3761.2335 641.007 -10656.37 0 290.12479 0.0020568727 0.0020376917 + 98030 -6248.2588 -6254.0808 5.8220589 3770.0322 636.96173 -10661.075 0 279.02573 0.0014907998 0.0014802826 + 98040 -6248.3731 -6253.9985 5.6253763 3776.7403 633.6964 -10664.435 0 269.5996 0.0010357849 0.0010254856 + 98050 -6248.4158 -6253.9149 5.4991089 3779.2407 632.01961 -10665.175 0 263.54815 0.00081486151 0.00079615034 + 98060 -6248.449 -6253.766 5.3170373 3776.7551 632.31217 -10662.833 0 254.82226 0.0008768533 0.00084820599 + 98070 -6248.548 -6253.4741 4.926079 3769.9731 634.42171 -10657.869 0 236.08534 0.0011877366 0.0011562488 + 98080 -6248.7318 -6253.059 4.3271126 3760.7294 637.71102 -10651.499 0 207.37951 0.0016493259 0.001624603 + 98090 -6248.9447 -6252.6628 3.7180923 3751.4432 641.25188 -10645.358 0 178.19184 0.0021325245 0.002118388 + 98100 -6249.1063 -6252.4558 3.3494868 3744.5135 644.10671 -10641.076 0 160.5262 0.0025117452 0.0025032696 + 98110 -6249.1803 -6252.5078 3.3274721 3741.7715 645.60367 -10639.883 0 159.47113 0.0026935749 0.002681768 + 98120 -6249.1991 -6252.7392 3.5400726 3744.0435 645.51319 -10642.296 0 169.66014 0.0026378844 0.0026174914 + 98130 -6249.2295 -6252.9912 3.7616631 3750.8993 644.07538 -10647.966 0 180.28 0.002369067 0.002342715 + 98140 -6249.3121 -6253.1545 3.8423793 3760.6901 641.88261 -10655.727 0 184.14837 0.0019720606 0.0019474176 + 98150 -6249.4253 -6253.2475 3.8221754 3770.947 639.66957 -10663.864 0 183.18009 0.0015688266 0.0015515036 + 98160 -6249.5053 -6253.3776 3.8723228 3779.0766 638.08857 -10670.543 0 185.58343 0.0012793513 0.001267989 + 98170 -6249.5011 -6253.6223 4.1211122 3783.1246 637.53901 -10674.286 0 197.50682 0.001181866 0.0011697599 + 98180 -6249.4172 -6253.9447 4.5274787 3782.3096 638.08598 -10674.34 0 216.98218 0.0012899223 0.0012714034 + 98190 -6249.3036 -6254.2215 4.9178411 3777.1292 639.47236 -10670.823 0 235.69054 0.0015553982 0.0015308312 + 98200 -6249.207 -6254.3497 5.142641 3769.06 641.21349 -10664.623 0 246.46421 0.0018925668 0.0018674338 + 98210 -6249.1293 -6254.3232 5.1938805 3760.0522 642.75124 -10657.127 0 248.9199 0.0022088525 0.0021883389 + 98220 -6249.033 -6254.2058 5.1727932 3752.0459 643.62475 -10649.876 0 247.90927 0.002428852 0.0024135568 + 98230 -6248.8828 -6254.0428 5.1600507 3746.6132 643.60014 -10644.256 0 247.29858 0.0025070223 0.0024935487 + 98240 -6248.6764 -6253.8125 5.1360412 3744.7108 642.71191 -10641.235 0 246.14791 0.0024318566 0.002416642 + 98250 -6248.4382 -6253.4636 5.0254713 3746.5236 641.20895 -10641.196 0 240.84878 0.0022246903 0.002206693 + 98260 -6248.1903 -6252.9908 4.8005335 3751.4392 639.4441 -10643.874 0 230.0685 0.0019331412 0.0019132701 + 98270 -6247.9356 -6252.4658 4.530254 3758.2006 637.76694 -10648.433 0 217.11519 0.0016191094 0.0015980671 + 98280 -6247.6641 -6252.0016 4.3375427 3765.2094 636.46223 -10653.673 0 207.87938 0.0013446699 0.0013219697 + 98290 -6247.369 -6251.6847 4.31562 3770.8815 635.73878 -10658.305 0 206.82873 0.0011611356 0.001136164 + 98300 -6247.0552 -6251.5331 4.4779212 3773.951 635.74263 -10661.227 0 214.60711 0.001104061 0.0010777596 + 98310 -6246.7309 -6251.5072 4.7763616 3773.6812 636.5595 -10661.748 0 228.91005 0.0011921763 0.0011672447 + 98320 -6246.3927 -6251.5565 5.1637913 3770.0026 638.1863 -10659.745 0 247.47785 0.0014254481 0.0014043123 + 98330 -6246.0193 -6251.6584 5.6391059 3763.5986 640.4799 -10655.737 0 270.2576 0.0017795023 0.0017615721 + 98340 -6245.5861 -6251.8163 6.2301445 3755.8993 643.11743 -10650.833 0 298.58348 0.0021995285 0.0021804046 + 98350 -6245.0935 -6252.0234 6.9298773 3748.8862 645.60902 -10646.519 0 332.1186 0.0026014644 0.0025754075 + 98360 -6244.5855 -6252.2305 7.6449689 3744.6448 647.3872 -10644.263 0 366.38981 0.0028867219 0.0028510238 + 98370 -6244.1405 -6252.3473 8.2067705 3744.7281 647.96136 -10645.037 0 393.31449 0.0029695461 0.002927742 + 98380 -6243.8288 -6252.2908 8.4620177 3749.5417 647.08502 -10648.918 0 405.54737 0.0028085869 0.0027694494 + 98390 -6243.6582 -6252.0607 8.4024963 3758.0308 644.86435 -10654.956 0 402.69477 0.0024295064 0.0024009186 + 98400 -6243.5583 -6251.7665 8.2082416 3767.8855 641.76049 -10661.413 0 393.385 0.0019250007 0.0019066682 + 98410 -6243.4368 -6251.544 8.107164 3776.2566 638.48708 -10666.288 0 388.54079 0.0014274753 0.0014097132 + 98420 -6243.2672 -6251.4235 8.156346 3780.6767 635.83712 -10667.937 0 390.89786 0.0010661171 0.0010374462 + 98430 -6243.1166 -6251.2937 8.177153 3779.7737 634.48071 -10665.548 0 391.89505 0.00092922386 0.00088649236 + 98440 -6243.0829 -6251.0123 7.9293687 3773.5516 634.77749 -10659.341 0 380.01984 0.0010453957 0.00099699231 + 98450 -6243.1993 -6250.5626 7.3633438 3763.2845 636.65394 -10650.501 0 352.89275 0.0013831872 0.0013421678 + 98460 -6243.3966 -6250.1097 6.7131089 3751.1916 639.59331 -10640.895 0 321.72984 0.0018611607 0.0018342257 + 98470 -6243.5579 -6249.896 6.3380809 3740.0125 642.75933 -10632.668 0 303.7564 0.0023623243 0.0023442224 + 98480 -6243.6146 -6250.0558 6.4411984 3732.4973 645.22856 -10627.782 0 308.69837 0.0027539154 0.0027321274 + 98490 -6243.6031 -6250.5026 6.8994667 3730.7791 646.26353 -10627.545 0 330.66116 0.0029171229 0.0028828163 + 98500 -6243.6347 -6250.9886 7.3538697 3735.695 645.54123 -10632.225 0 352.4387 0.0027854947 0.0027412495 + 98510 -6243.8005 -6251.2937 7.4932533 3746.3028 643.26113 -10640.858 0 359.11874 0.0023781775 0.0023355396 + 98520 -6244.0911 -6251.3859 7.2948384 3759.9271 640.09285 -10651.406 0 349.60959 0.0018066724 0.0017754961 + 98530 -6244.4089 -6251.4139 7.0050128 3772.8912 636.97978 -10661.285 0 335.71952 0.0012428644 0.0012222288 + 98540 -6244.6648 -6251.543 6.8781204 3781.7079 634.86577 -10668.117 0 329.63812 0.00085885428 0.00083823124 + 98550 -6244.864 -6251.795 6.9310666 3784.2045 634.42592 -10670.425 0 332.1756 0.00076711312 0.00073654343 + 98560 -6245.0936 -6252.0464 6.9528106 3780.1027 635.86591 -10668.015 0 333.21769 0.00098735926 0.00094658169 + 98570 -6245.4324 -6252.1715 6.7391155 3770.9118 638.84004 -10661.923 0 322.97623 0.0014486596 0.0014066822 + 98580 -6245.8745 -6252.1754 6.3008829 3759.3256 642.52663 -10654.028 0 301.97366 0.00201782 0.0019842459 + 98590 -6246.3404 -6252.1896 5.8491456 3748.4278 645.86054 -10646.478 0 280.32388 0.0025388604 0.0025157281 + 98600 -6246.7512 -6252.3493 5.5981524 3740.9352 647.85792 -10641.142 0 268.29487 0.0028721739 0.00285331 + 98610 -6247.0906 -6252.6747 5.5841475 3738.5915 647.92127 -10639.188 0 267.62368 0.0029278476 0.0029051388 + 98620 -6247.4034 -6253.0547 5.6513267 3741.7687 646.01761 -10640.841 0 270.84329 0.0026890802 0.0026594022 + 98630 -6247.7422 -6253.3396 5.5973958 3749.3572 642.67185 -10645.369 0 268.25861 0.0022192292 0.0021861398 + 98640 -6248.1148 -6253.4554 5.3406448 3759.0381 638.78559 -10651.279 0 255.95367 0.0016459852 0.0016154514 + 98650 -6248.4778 -6253.4407 4.9629134 3767.9432 635.35402 -10656.738 0 237.85066 0.0011234118 0.0010981682 + 98660 -6248.7786 -6253.3838 4.605233 3773.5245 633.18222 -10660.09 0 220.7086 0.00078413517 0.00076201113 + 98670 -6248.9996 -6253.3325 4.332919 3774.3125 632.68651 -10660.332 0 207.65779 0.00070055282 0.00067771282 + 98680 -6249.1638 -6253.2663 4.1024645 3770.2776 633.82369 -10657.368 0 196.61312 0.0008694338 0.00084460858 + 98690 -6249.3035 -6253.1473 3.8438169 3762.7058 636.14768 -10652.001 0 184.21728 0.0012220181 0.0011974425 + 98700 -6249.4285 -6252.9845 3.5560028 3753.7219 638.96214 -10645.669 0 170.42361 0.0016507945 0.0016295009 + 98710 -6249.522 -6252.8446 3.3225872 3745.6806 641.51922 -10640.044 0 159.23702 0.00204109 0.0020237053 + 98720 -6249.5607 -6252.811 3.250308 3740.5963 643.21024 -10636.618 0 155.77299 0.0022990649 0.0022830097 + 98730 -6249.5354 -6252.9312 3.3958915 3739.7081 643.70402 -10636.343 0 162.75017 0.0023716665 0.0023530712 + 98740 -6249.4601 -6253.1912 3.7311113 3743.2278 643.00667 -10639.426 0 178.81579 0.0022558716 0.002232584 + 98750 -6249.3647 -6253.525 4.16035 3750.3019 641.43477 -10645.262 0 199.38731 0.0019961176 0.0019696756 + 98760 -6249.2738 -6253.8567 4.5829637 3759.1985 639.51061 -10652.566 0 219.64133 0.0016712676 0.0016461185 + 98770 -6249.1834 -6254.1457 4.9622809 3767.7109 637.80712 -10659.664 0 237.82034 0.0013739667 0.0013538483 + 98780 -6249.0582 -6254.3908 5.3325466 3773.726 636.78702 -10664.904 0 255.56555 0.0011855896 0.0011697815 + 98790 -6248.8632 -6254.5781 5.7148583 3775.8159 636.6855 -10667.079 0 273.88807 0.0011521708 0.0011355054 + 98800 -6248.605 -6254.6273 6.0222792 3773.6318 637.46946 -10665.729 0 288.62141 0.001270555 0.0012479399 + 98810 -6248.3377 -6254.4135 6.0758582 3767.9242 638.87705 -10661.215 0 291.18922 0.0014929958 0.0014643233 + 98820 -6248.1199 -6253.8646 5.744678 3760.2028 640.51503 -10654.582 0 275.31721 0.0017489331 0.0017193748 + 98830 -6247.9641 -6253.047 5.0829085 3752.2357 641.9769 -10647.26 0 243.6015 0.0019717542 0.0019469058 + 98840 -6247.8277 -6252.1571 4.3294309 3745.6173 642.94321 -10640.718 0 207.49062 0.0021163926 0.002096796 + 98850 -6247.6536 -6251.4143 3.7607311 3741.5185 643.23835 -10636.171 0 180.23533 0.0021622274 0.0021425141 + 98860 -6247.4235 -6250.9386 3.5150259 3740.5786 642.83932 -10634.357 0 168.45977 0.0021067665 0.0020806347 + 98870 -6247.1753 -6250.7114 3.5360383 3742.8405 641.84816 -10635.4 0 169.4668 0.0019603071 0.0019270635 + 98880 -6246.9659 -6250.6588 3.6928441 3747.6898 640.44698 -10638.796 0 176.98181 0.0017470953 0.0017132099 + 98890 -6246.8081 -6250.7726 3.9645283 3753.89 638.85615 -10643.519 0 190.00244 0.0015084635 0.0014816851 + 98900 -6246.6468 -6251.1355 4.4886665 3759.8385 637.3083 -10648.282 0 215.12208 0.0012980154 0.0012793097 + 98910 -6246.4135 -6251.8104 5.3969217 3764.0334 636.0361 -10651.88 0 258.65077 0.0011655599 0.0011472608 + 98920 -6246.1095 -6252.7074 6.5979528 3765.5452 635.25903 -10653.512 0 316.21092 0.0011392112 0.0011119076 + 98930 -6245.8269 -6253.5757 7.7488296 3764.246 635.15698 -10652.979 0 371.36739 0.0012191036 0.0011806668 + 98940 -6245.6744 -6254.1439 8.46942 3760.7137 635.82807 -10650.686 0 405.90213 0.0013854702 0.0013431681 + 98950 -6245.6842 -6254.2836 8.5993762 3755.9468 637.23953 -10647.47 0 412.13036 0.0016099565 0.0015737027 + 98960 -6245.7927 -6254.054 8.2612473 3751.0954 639.19136 -10644.341 0 395.92532 0.0018584578 0.0018321503 + 98970 -6245.9045 -6253.6035 7.6990066 3747.2901 641.32068 -10642.214 0 368.9796 0.0020867341 0.002065899 + 98980 -6245.9686 -6253.0417 7.0731062 3745.4958 643.16754 -10641.705 0 338.98294 0.0022408653 0.0022178863 + 98990 -6245.9999 -6252.3981 6.3982215 3746.2958 644.29725 -10642.991 0 306.63868 0.0022711255 0.0022422609 + 99000 -6246.0404 -6251.6805 5.6400278 3749.637 644.44086 -10645.758 0 270.30178 0.0021544272 0.0021223384 + 99010 -6246.1091 -6250.9548 4.845718 3754.6909 643.59487 -10649.241 0 232.23399 0.0019111411 0.0018816282 + 99020 -6246.183 -6250.3656 4.1826126 3759.9896 642.03237 -10652.388 0 200.45426 0.0016045228 0.0015811462 + 99030 -6246.2184 -6250.078 3.8595854 3763.851 640.21708 -10654.146 0 184.97299 0.0013215731 0.0013028729 + 99040 -6246.1831 -6250.1904 4.0072843 3764.9346 638.65308 -10653.778 0 192.05155 0.0011441468 0.0011251693 + 99050 -6246.0746 -6250.6842 4.6095975 3762.694 637.72469 -10651.103 0 220.91778 0.0011221596 0.0010983123 + 99060 -6245.9177 -6251.4309 5.513261 3757.5608 637.57996 -10646.572 0 264.2264 0.0012574507 0.0012276857 + 99070 -6245.7523 -6252.2404 6.4880588 3750.8198 638.0931 -10641.153 0 310.94418 0.0015024946 0.00147012 + 99080 -6245.6144 -6252.9279 7.3135522 3744.2302 638.91463 -10636.073 0 350.50646 0.0017749275 0.0017455748 + 99090 -6245.5119 -6253.3785 7.8665361 3739.5115 639.59163 -10632.482 0 377.00855 0.0019841135 0.0019614981 + 99100 -6245.42 -6253.5684 8.148413 3737.8631 639.72455 -10631.156 0 390.51767 0.0020599866 0.0020421765 + 99110 -6245.3095 -6253.5212 8.2117557 3739.6637 639.11636 -10632.301 0 393.55341 0.0019732622 0.0019532328 + 99120 -6245.1887 -6253.2428 8.0540937 3744.3982 637.86464 -10635.506 0 385.99736 0.0017423848 0.0017135703 + 99130 -6245.1086 -6252.718 7.6094429 3750.7768 636.35435 -10639.849 0 364.6872 0.0014292832 0.0013915479 + 99140 -6245.1155 -6251.9845 6.8690432 3757.0147 635.14074 -10644.14 0 329.20309 0.0011261955 0.0010862925 + 99150 -6245.1999 -6251.2015 6.0016667 3761.2733 634.75849 -10647.233 0 287.63354 0.00093289976 0.00089854889 + 99160 -6245.2964 -6250.6166 5.3202161 3762.2153 635.52971 -10648.362 0 254.97461 0.00092576733 0.00089892286 + 99170 -6245.3371 -6250.428 5.0908511 3759.5021 637.44163 -10647.372 0 243.98215 0.0011274534 0.0011032828 + 99180 -6245.3081 -6250.6511 5.3429634 3753.9993 640.12818 -10644.779 0 256.06479 0.0014911133 0.0014636633 + 99190 -6245.2562 -6251.1149 5.8586861 3747.5349 642.94956 -10641.599 0 280.78111 0.0019101983 0.001878903 + 99200 -6245.2363 -6251.6043 6.3679431 3742.26 645.14774 -10639.012 0 305.18756 0.0022538199 0.0022237322 + 99210 -6245.2511 -6252.0146 6.7635341 3739.8926 646.05419 -10637.961 0 324.14651 0.0024129464 0.0023882092 + 99220 -6245.252 -6252.3654 7.1134291 3741.1757 645.30804 -10638.849 0 340.91544 0.002335708 0.0023136996 + 99230 -6245.2054 -6252.6754 7.4700044 3745.7143 643.01161 -10641.401 0 358.00453 0.0020391134 0.0020123463 + 99240 -6245.1484 -6252.8563 7.7078659 3752.13 639.74549 -10644.732 0 369.40418 0.0016003687 0.00156459 + 99250 -6245.1653 -6252.7547 7.5894062 3758.4143 636.40989 -10647.579 0 363.72693 0.0011369681 0.0010968203 + 99260 -6245.3027 -6252.3083 7.0056238 3762.4305 633.93337 -10648.672 0 335.7488 0.00077884287 0.00074460284 + 99270 -6245.5126 -6251.6532 6.1405971 3762.5363 632.95696 -10647.146 0 294.29187 0.0006318279 0.00060995439 + 99280 -6245.6881 -6251.0651 5.3769525 3758.1931 633.6215 -10642.88 0 257.69373 0.00073932223 0.00072610846 + 99290 -6245.7546 -6250.7814 5.0268524 3750.302 635.53943 -10636.623 0 240.91497 0.0010601075 0.0010445721 + 99300 -6245.7271 -6250.8619 5.1348026 3741.0339 637.94957 -10629.845 0 246.08855 0.0014786833 0.001451842 + 99310 -6245.691 -6251.1934 5.5024656 3733.1393 639.9888 -10624.322 0 263.70903 0.0018479688 0.0018102276 + 99320 -6245.7301 -6251.6126 5.8825315 3728.9867 640.984 -10621.583 0 281.92392 0.0020459022 0.002006519 + 99330 -6245.8626 -6252.0317 6.1691004 3729.7418 640.66623 -10622.44 0 295.65791 0.0020197515 0.0019890651 + 99340 -6246.0322 -6252.4662 6.4340276 3735.0378 639.23612 -10626.74 0 308.35471 0.001798708 0.001779652 + 99350 -6246.1632 -6252.9536 6.790342 3743.2355 637.26547 -10633.455 0 325.43129 0.0014725167 0.0014584619 + 99360 -6246.233 -6253.4466 7.2135759 3752.0774 635.47951 -10641.003 0 345.71503 0.0011509393 0.0011315565 + 99370 -6246.2955 -6253.79 7.4944677 3759.3943 634.50247 -10647.687 0 359.17694 0.00092502025 0.00089496132 + 99380 -6246.4341 -6253.8132 7.3790905 3763.6085 634.65727 -10652.079 0 353.64742 0.00084446111 0.00080734844 + 99390 -6246.6834 -6253.4596 6.7761733 3763.9726 635.88606 -10653.318 0 324.75225 0.00091340822 0.00087803969 + 99400 -6246.995 -6252.8428 5.8478113 3760.6104 637.80711 -10651.26 0 280.25993 0.0010986621 0.0010712474 + 99410 -6247.2763 -6252.1848 4.9084923 3754.4281 639.8679 -10646.481 0 235.24249 0.0013431055 0.001322378 + 99420 -6247.4622 -6251.6866 4.2243987 3746.9078 641.52606 -10640.12 0 202.45689 0.0015804129 0.0015593644 + 99430 -6247.5567 -6251.4316 3.8749457 3739.7765 642.39603 -10633.604 0 185.70914 0.0017500941 0.0017222615 + 99440 -6247.6173 -6251.3842 3.7668994 3734.5871 642.32507 -10628.296 0 180.53096 0.0018116732 0.0017765415 + 99450 -6247.7054 -6251.4676 3.7622445 3732.3233 641.39011 -10625.181 0 180.30787 0.0017544526 0.0017178903 + 99460 -6247.841 -6251.6506 3.8096276 3733.1701 639.83092 -10624.652 0 182.57873 0.0015987195 0.0015684232 + 99470 -6247.9895 -6251.9774 3.9879028 3736.5417 637.9546 -10626.474 0 191.12268 0.0013871046 0.0013664513 + 99480 -6248.0872 -6252.5179 4.4307322 3741.3473 636.05425 -10629.919 0 212.34555 0.0011689815 0.0011538498 + 99490 -6248.0928 -6253.2682 5.1754382 3746.373 634.36993 -10634.011 0 248.03604 0.00098420789 0.00096570643 + 99500 -6248.0305 -6254.0833 6.0527926 3750.599 633.08788 -10637.77 0 290.08378 0.00085393477 0.00082560215 + 99510 -6247.9822 -6254.718 6.7357106 3753.3263 632.35098 -10640.395 0 322.81305 0.00078329118 0.00074695718 + 99520 -6248.0247 -6254.967 6.9423533 3754.136 632.25833 -10641.361 0 332.71652 0.00077285011 0.00073755728 + 99530 -6248.1607 -6254.7927 6.6320043 3752.8374 632.85228 -10640.482 0 317.84286 0.00082810316 0.00080243009 + 99540 -6248.3152 -6254.3283 6.0131049 3749.5382 634.10248 -10637.969 0 288.18172 0.00095681189 0.00094142362 + 99550 -6248.4029 -6253.7568 5.3539382 3744.798 635.8905 -10634.445 0 256.59076 0.0011547744 0.0011421691 + 99560 -6248.4002 -6253.1801 4.779901 3739.6829 637.99311 -10630.856 0 229.07968 0.0013921605 0.0013737209 + 99570 -6248.3536 -6252.6006 4.2469697 3735.5611 640.07425 -10628.236 0 203.53862 0.0016137817 0.0015872635 + 99580 -6248.3242 -6252.0171 3.6928829 3733.6738 641.71359 -10627.404 0 176.98367 0.0017560444 0.0017266177 + 99590 -6248.3277 -6251.5176 3.1898265 3734.6947 642.49516 -10628.707 0 152.87438 0.001770753 0.0017453685 + 99600 -6248.3236 -6251.2644 2.9408167 3738.4928 642.14231 -10631.899 0 140.94044 0.0016425737 0.001623571 + 99610 -6248.2483 -6251.3831 3.134808 3744.1685 640.64402 -10636.196 0 150.23759 0.001394047 0.0013776486 + 99620 -6248.0575 -6251.858 3.8004715 3750.2861 638.30919 -10640.453 0 182.13992 0.0010804335 0.0010606488 + 99630 -6247.7466 -6252.5215 4.7749012 3755.1971 635.71435 -10643.433 0 228.84006 0.00077878266 0.0007527933 + 99640 -6247.3435 -6253.146 5.8024559 3757.3926 633.55243 -10644.091 0 278.08624 0.00057272618 0.00054310502 + 99650 -6246.88 -6253.5667 6.6866893 3755.8672 632.42612 -10641.86 0 320.46367 0.00053223436 0.00050415216 + 99660 -6246.3679 -6253.7426 7.3747303 3750.4644 632.65282 -10636.86 0 353.43845 0.00068961138 0.00066565426 + 99670 -6245.8066 -6253.7124 7.9058889 3742.1024 634.14824 -10629.963 0 378.89455 0.001019285 0.00099693591 + 99680 -6245.2152 -6253.5076 8.2923972 3732.7198 636.43097 -10622.658 0 397.4182 0.0014341205 0.0014082481 + 99690 -6244.6464 -6253.1172 8.4707782 3724.8259 638.75316 -10616.696 0 405.96722 0.0018069663 0.0017744025 + 99700 -6244.1608 -6252.5275 8.3667024 3720.7375 640.32885 -10613.594 0 400.97932 0.0020124061 0.0019741162 + 99710 -6243.7913 -6251.773 7.9816243 3721.782 640.5973 -10614.152 0 382.52422 0.0019713743 0.001931174 + 99720 -6243.5335 -6250.9438 7.4102503 3727.7963 639.43228 -10618.172 0 355.14077 0.0016807682 0.0016429078 + 99730 -6243.3564 -6250.1619 6.8055419 3737.1085 637.21147 -10624.482 0 326.15975 0.0012189126 0.0011862121 + 99740 -6243.2116 -6249.5632 6.3516137 3747.0035 634.7065 -10631.273 0 304.40497 0.00072565372 0.00069774627 + 99750 -6243.0419 -6249.2724 6.2305274 3754.5414 632.82785 -10636.642 0 298.60183 0.00036014376 0.00033221052 + 99760 -6242.8118 -6249.339 6.5271736 3757.4954 632.31771 -10639.152 0 312.81878 0.00024621836 0.00021097293 + 99770 -6242.5464 -6249.6713 7.1249163 3755.0788 633.49469 -10638.245 0 341.46597 0.00042587465 0.00037961261 + 99780 -6242.3256 -6250.0767 7.7510239 3748.1489 636.12685 -10634.352 0 371.47256 0.0008441986 0.00079153122 + 99790 -6242.2127 -6250.4113 8.1986307 3738.8182 639.47763 -10628.707 0 392.92439 0.0013736403 0.0013242816 + 99800 -6242.192 -6250.6851 8.4931759 3729.7251 642.53134 -10622.942 0 407.04064 0.001861224 0.0018208294 + 99810 -6242.1986 -6250.9864 8.7877297 3723.3017 644.33667 -10618.625 0 421.15731 0.0021732393 0.002138444 + 99820 -6242.2094 -6251.3174 9.1080209 3721.1966 644.3372 -10616.851 0 436.50747 0.0022256372 0.002189063 + 99830 -6242.2804 -6251.5457 9.2653013 3723.8588 642.55092 -10617.955 0 444.04523 0.0020032299 0.0019624564 + 99840 -6242.485 -6251.5341 9.0490985 3730.3538 639.53177 -10621.42 0 433.68357 0.001568018 0.0015281836 + 99850 -6242.8255 -6251.3045 8.4790497 3738.5811 636.14665 -10626.032 0 406.36364 0.0010465113 0.0010139138 + 99860 -6243.2244 -6251.0509 7.826543 3745.9507 633.27684 -10630.278 0 375.09185 0.00058937926 0.00056372512 + 99870 -6243.606 -6250.9817 7.3757292 3750.2849 631.56328 -10632.83 0 353.48633 0.00031658899 0.00029081241 + 99880 -6243.9725 -6251.1525 7.1799806 3750.5263 631.26452 -10632.943 0 344.10495 0.00027645193 0.00024418762 + 99890 -6244.3908 -6251.4537 7.0629463 3746.94 632.23683 -10630.631 0 338.49601 0.00043959228 0.00040177366 + 99900 -6244.9101 -6251.7452 6.8350785 3740.8124 634.01986 -10626.577 0 327.57532 0.00072494869 0.00068839732 + 99910 -6245.5042 -6251.9774 6.4732513 3733.9046 636.001 -10621.883 0 310.23453 0.001036465 0.0010066773 + 99920 -6246.0972 -6252.1861 6.0889219 3727.938 637.60982 -10617.734 0 291.8153 0.0012906781 0.0012670738 + 99930 -6246.6311 -6252.4008 5.7696863 3724.2315 638.4756 -10615.108 0 276.51574 0.0014308158 0.0014088712 + 99940 -6247.097 -6252.5968 5.4998485 3723.4701 638.49722 -10614.564 0 263.5836 0.0014337522 0.0014102922 + 99950 -6247.5072 -6252.7392 5.2320714 3725.5912 637.81759 -10616.148 0 250.75022 0.0013131752 0.0012884255 + 99960 -6247.8587 -6252.8467 4.9879596 3729.8415 636.73456 -10619.423 0 239.05101 0.0011146203 0.0010896132 + 99970 -6248.1339 -6252.9787 4.8448092 3735.04 635.59293 -10623.612 0 232.19044 0.00089876681 0.00087253982 + 99980 -6248.3302 -6253.1566 4.8264764 3739.9531 634.69017 -10627.8 0 231.31183 0.00071901495 0.00068965505 + 99990 -6248.4755 -6253.3221 4.8466606 3743.5997 634.20973 -10631.132 0 232.27917 0.00060591433 0.00057392463 + 100000 -6248.6052 -6253.391 4.7858016 3745.3791 634.18825 -10632.958 0 229.36247 0.00056575294 0.00053499719 + 100010 -6248.7279 -6253.3412 4.6133586 3745.0689 634.52516 -10632.935 0 221.09803 0.00058911878 0.0005637035 + 100020 -6248.8187 -6253.2374 4.4187041 3742.7931 635.03646 -10631.067 0 211.76909 0.00065988459 0.00064025556 + 100030 -6248.8462 -6253.1723 4.326018 3738.9984 635.53412 -10627.705 0 207.32705 0.0007594285 0.00074172011 + 100040 -6248.806 -6253.1889 4.3829148 3734.402 635.89657 -10623.488 0 210.05387 0.00086773655 0.00084705003 + 100050 -6248.7289 -6253.2535 4.5245677 3729.8685 636.09656 -10619.219 0 216.84267 0.00096538069 0.00094001351 + 100060 -6248.6565 -6253.3023 4.6457395 3726.2223 636.17384 -10615.698 0 222.6499 0.0010375184 0.0010101482 + 100070 -6248.603 -6253.3157 4.7127377 3724.064 636.17123 -10613.551 0 225.86083 0.001076533 0.0010510425 + 100080 -6248.5434 -6253.3386 4.7952427 3723.6819 636.0781 -10613.099 0 229.81494 0.0010792762 0.0010564407 + 100090 -6248.444 -6253.419 4.9749869 3725.0775 635.82147 -10614.318 0 238.42929 0.0010407498 0.0010175349 + 100100 -6248.3026 -6253.5352 5.2326563 3728.0202 635.3131 -10616.869 0 250.77825 0.0009524378 0.00092570637 + 100110 -6248.1529 -6253.599 5.4461238 3732.039 634.52611 -10620.164 0 261.00881 0.00081102773 0.00078138212 + 100120 -6248.0289 -6253.5317 5.5028265 3736.3793 633.55932 -10623.47 0 263.72632 0.00063233195 0.00060377652 + 100130 -6247.9298 -6253.3301 5.4003279 3740.0535 632.65162 -10626.035 0 258.81401 0.00045743344 0.0004333832 + 100140 -6247.8226 -6253.0568 5.2342787 3742.0707 632.12764 -10627.255 0 250.85601 0.00034250549 0.00032247903 + 100150 -6247.6753 -6252.7784 5.1030696 3741.7756 632.28496 -10626.839 0 244.56773 0.00033622039 0.00031636479 + 100160 -6247.4844 -6252.5195 5.0351694 3739.1235 633.26273 -10624.906 0 241.31357 0.00045742469 0.000433894 + 100170 -6247.2717 -6252.2725 5.0008375 3734.7496 634.94761 -10621.97 0 239.66819 0.00068453773 0.00065630921 + 100180 -6247.0618 -6252.0352 4.9734206 3729.7997 636.96671 -10618.802 0 238.35422 0.00096028297 0.00092927001 + 100190 -6246.8635 -6251.8291 4.9656571 3725.5973 638.78418 -10616.211 0 237.98215 0.0012082509 0.0011774827 + 100200 -6246.6684 -6251.6851 5.016709 3723.254 639.8702 -10614.809 0 240.42884 0.0013554217 0.0013272108 + 100210 -6246.4583 -6251.6243 5.1660024 3723.3361 639.87541 -10614.836 0 247.58382 0.0013548474 0.0013297779 + 100220 -6246.2127 -6251.6547 5.4419617 3725.6907 638.74459 -10616.09 0 260.80934 0.0012018423 0.0011784767 + 100230 -6245.9175 -6251.7729 5.8554537 3729.4944 636.73511 -10618.002 0 280.62619 0.00093709633 0.00091253841 + 100240 -6245.5755 -6251.9645 6.3890177 3733.5078 634.34384 -10619.816 0 306.19757 0.00063463072 0.00060603705 + 100250 -6245.2098 -6252.2051 6.9953237 3736.4403 632.17177 -10620.817 0 335.25516 0.00037934597 0.00034559062 + 100260 -6244.855 -6252.4676 7.6126191 3737.3161 630.76344 -10620.547 0 364.83942 0.00024245958 0.00020473271 + 100270 -6244.5427 -6252.7256 8.182973 3735.7545 630.4602 -10618.94 0 392.17398 0.00026178991 0.00022264804 + 100280 -6244.291 -6252.9453 8.6542929 3732.0945 631.30511 -10616.345 0 414.76228 0.00043082672 0.00039242759 + 100290 -6244.1074 -6253.069 8.9615738 3727.3243 633.03053 -10613.424 0 429.4889 0.00069880123 0.00066185147 + 100300 -6243.9992 -6253.0093 9.0100795 3722.8107 635.13706 -10610.957 0 431.81356 0.00098335041 0.00094779967 + 100310 -6243.9756 -6252.6782 8.7026128 3719.8798 637.04249 -10609.6 0 417.07804 0.0011952291 0.0011618102 + 100320 -6244.0309 -6252.0503 8.0193411 3719.3708 638.25589 -10609.677 0 384.33182 0.0012687818 0.001239147 + 100330 -6244.1294 -6251.2136 7.0841851 3721.3356 638.52466 -10611.074 0 339.5139 0.0011856642 0.001160361 + 100340 -6244.2157 -6250.3509 6.1351486 3725.0312 637.90628 -10613.288 0 294.03075 0.00098002213 0.00095654039 + 100350 -6244.2507 -6249.6557 5.404995 3729.2103 636.73581 -10615.602 0 259.03769 0.00072320408 0.00069686135 + 100360 -6244.2363 -6249.2533 5.0170689 3732.5606 635.49291 -10617.307 0 240.44609 0.00049700356 0.0004643617 + 100370 -6244.205 -6249.1871 4.9821365 3734.1046 634.61381 -10617.905 0 238.77194 0.00036721245 0.00032874372 + 100380 -6244.1883 -6249.455 5.2667801 3733.4522 634.32326 -10617.231 0 252.41365 0.00036478323 0.00032437035 + 100390 -6244.1934 -6250.0366 5.8431883 3730.8763 634.56009 -10615.473 0 280.03837 0.00047790699 0.00043993142 + 100400 -6244.2046 -6250.8862 6.6815481 3727.204 635.02638 -10613.117 0 320.21728 0.00065697837 0.00062331241 + 100410 -6244.2038 -6251.9094 7.7056067 3723.5497 635.33179 -10610.791 0 369.29591 0.00083154128 0.00080033789 + 100420 -6244.2009 -6252.9452 8.7443309 3720.9669 635.16748 -10609.08 0 419.0774 0.00093392165 0.00090118662 + 100430 -6244.2527 -6253.7823 9.5296223 3720.1162 634.43974 -10608.338 0 456.71297 0.00092254604 0.00088562073 + 100440 -6244.4432 -6254.2323 9.7891529 3721.0367 633.31418 -10608.583 0 469.15113 0.00079815159 0.00075797228 + 100450 -6244.8302 -6254.2238 9.3935348 3723.1152 632.15521 -10609.494 0 450.1909 0.0006054442 0.00056523072 + 100460 -6245.407 -6253.8321 8.4251358 3725.3253 631.38554 -10610.543 0 403.77978 0.00041540614 0.0003776959 + 100470 -6246.1071 -6253.2166 7.1095176 3726.6641 631.31891 -10611.2 0 340.72797 0.00029434146 0.00026010565 + 100480 -6246.8323 -6252.5436 5.711317 3726.5612 632.02954 -10611.134 0 273.71836 0.0002767196 0.00024637899 + 100490 -6247.4821 -6251.9634 4.481275 3725.0549 633.31437 -10610.333 0 214.76784 0.00035550825 0.00032885168 + 100500 -6247.9932 -6251.5991 3.6059013 3722.7193 634.76773 -10609.086 0 172.81502 0.0004894936 0.0004648592 + 100510 -6248.3667 -6251.5095 3.1427359 3720.4338 635.92823 -10607.871 0 150.61754 0.00061996182 0.00059529325 + 100520 -6248.6492 -6251.6716 3.0223556 3719.0704 636.42811 -10607.17 0 144.84824 0.00069130951 0.00066633487 + 100530 -6248.8871 -6252.0213 3.1342157 3719.1745 636.09818 -10607.294 0 150.2092 0.00067079634 0.00064730394 + 100540 -6249.0964 -6252.507 3.4106598 3720.7593 635.01162 -10608.278 0 163.45796 0.00056058035 0.0005401699 + 100550 -6249.2649 -6253.0999 3.835019 3723.3149 633.46071 -10609.875 0 183.79563 0.00039628214 0.00037801062 + 100560 -6249.3765 -6253.7579 4.3814299 3726.016 631.87056 -10611.645 0 209.9827 0.00023223577 0.0002127052 + 100570 -6249.437 -6254.3899 4.9529118 3728.0209 630.67217 -10613.083 0 237.37133 0.00012029045 9.6387885e-05 + 100580 -6249.4789 -6254.8628 5.3839482 3728.728 630.17244 -10613.763 0 258.02901 9.1819227e-05 6.3811548e-05 + 100590 -6249.5389 -6255.0608 5.5218564 3727.915 630.46144 -10613.437 0 264.63834 0.00014983254 0.00012186622 + 100600 -6249.6259 -6254.9549 5.3290245 3725.753 631.38856 -10612.096 0 255.39675 0.00027185357 0.00024891321 + 100610 -6249.7083 -6254.6247 4.9163606 3722.7345 632.61773 -10609.977 0 235.61959 0.0004191521 0.00040277338 + 100620 -6249.7385 -6254.2068 4.4682228 3719.5575 633.74388 -10607.508 0 214.14231 0.00054749045 0.00053405034 + 100630 -6249.6932 -6253.8067 4.1135237 3716.981 634.42843 -10605.216 0 197.14314 0.00061750355 0.00060100666 + 100640 -6249.5949 -6253.4481 3.8532624 3715.6438 634.50447 -10603.596 0 184.66996 0.00060501613 0.00058224971 + 100650 -6249.4925 -6253.1052 3.6127701 3715.8619 634.01476 -10602.982 0 173.14421 0.00051014871 0.00048349751 + 100660 -6249.416 -6252.7846 3.3685563 3717.4858 633.1731 -10603.443 0 161.44012 0.000360515 0.00033561129 + 100670 -6249.3479 -6252.5656 3.2177113 3719.9288 632.27229 -10604.767 0 154.21078 0.00020343738 0.00018387617 + 100680 -6249.2372 -6252.5509 3.3136895 3722.3883 631.58124 -10606.52 0 158.8106 8.8064424e-05 7.2343604e-05 + 100690 -6249.0402 -6252.774 3.733773 3724.1485 631.26857 -10608.191 0 178.94335 4.6147507e-05 2.9464943e-05 + 100700 -6248.7489 -6253.1568 4.4078566 3724.8006 631.37009 -10609.327 0 211.24922 8.1932796e-05 6.050311e-05 + 100710 -6248.3883 -6253.5502 5.1618261 3724.2948 631.79978 -10609.645 0 247.38367 0.00017518905 0.00014884053 + 100720 -6247.9943 -6253.8125 5.8181618 3722.8579 632.39489 -10609.065 0 278.83896 0.0002930885 0.00026434753 + 100730 -6247.5935 -6253.8615 6.2680262 3720.8621 632.97971 -10607.703 0 300.39898 0.00040323591 0.00037451368 + 100740 -6247.1999 -6253.6781 6.4782488 3718.7115 633.42672 -10605.816 0 310.47403 0.00048244022 0.00045413005 + 100750 -6246.826 -6253.2809 6.4548435 3716.7738 633.69327 -10603.748 0 309.35232 0.00052014195 0.00049115828 + 100760 -6246.4917 -6252.7067 6.2150039 3715.3473 633.81773 -10601.872 0 297.85786 0.00051807471 0.000487977 + 100770 -6246.2165 -6252.022 5.8054784 3714.6342 633.87558 -10600.532 0 278.2311 0.00048746239 0.00045768228 + 100780 -6246.0007 -6251.3446 5.3438114 3714.7127 633.91643 -10599.974 0 256.10542 0.00044349849 0.00041613704 + 100790 -6245.818 -6250.8327 5.0146864 3715.5334 633.91628 -10600.282 0 240.33191 0.00039751608 0.0003730039 + 100800 -6245.6311 -6250.6269 4.9958278 3716.9519 633.77382 -10601.353 0 239.4281 0.00035063625 0.00032687112 + 100810 -6245.4171 -6250.7829 5.3658267 3718.7587 633.35836 -10602.9 0 257.16052 0.00029415226 0.00026804972 + 100820 -6245.1815 -6251.2447 6.0632455 3720.6611 632.59189 -10604.498 0 290.58474 0.00021814839 0.00018812522 + 100830 -6244.9532 -6251.8721 6.9189788 3722.2312 631.5284 -10605.632 0 331.59629 0.00012374684 9.099662e-05 + 100840 -6244.7674 -6252.4987 7.7313073 3722.9041 630.38847 -10605.791 0 370.52762 3.1016365e-05 -1.3099419e-06 + 100850 -6244.6468 -6252.9852 8.3384605 3722.1034 629.51948 -10604.608 0 399.62582 -2.3632556e-05 -5.2650439e-05 + 100860 -6244.5896 -6253.2513 8.66168 3719.4853 629.28176 -10602.018 0 415.11631 -1.3140722e-06 -2.6723479e-05 + 100870 -6244.5742 -6253.2758 8.7016745 3715.2027 629.89732 -10598.376 0 417.03307 0.00011888042 9.3882595e-05 + 100880 -6244.5816 -6253.0633 8.4816893 3710.0496 631.32492 -10594.438 0 406.49014 0.00032148292 0.0002921864 + 100890 -6244.6189 -6252.6079 7.9890445 3705.3567 633.22439 -10591.189 0 382.87984 0.00054954904 0.00051406028 + 100900 -6244.7094 -6251.9145 7.205112 3702.5911 635.03994 -10589.546 0 345.3094 0.00072106791 0.00068299458 + 100910 -6244.853 -6251.0684 6.2154115 3702.7971 636.18218 -10590.048 0 297.87739 0.00076250668 0.00072835691 + 100920 -6245.0047 -6250.2658 5.2611761 3706.1569 636.24413 -10592.667 0 252.14508 0.00064170818 0.00061492786 + 100930 -6245.1019 -6249.7407 4.6388203 3711.8882 635.16528 -10596.794 0 222.3183 0.00038243979 0.00036008886 + 100940 -6245.1136 -6249.6389 4.5253077 3718.4876 633.27363 -10601.4 0 216.87814 5.6054227e-05 3.1511727e-05 + 100950 -6245.0636 -6249.9479 4.8842395 3724.1646 631.18328 -10605.296 0 234.08016 -0.00024207829 -0.00027295812 + 100960 -6245.0106 -6250.5375 5.5269361 3727.3067 629.58075 -10607.425 0 264.88179 -0.0004209452 -0.00045593812 + 100970 -6244.9993 -6251.269 6.2696272 3726.8861 628.97679 -10607.132 0 300.47571 -0.0004198814 -0.00045242098 + 100980 -6245.0261 -6252.0738 7.0477256 3722.7625 629.51902 -10604.355 0 337.76656 -0.00022788646 -0.00025336415 + 100990 -6245.0514 -6252.9311 7.8796462 3715.8214 630.94241 -10599.695 0 377.63686 0.00010774776 8.7275794e-05 + 101000 -6245.0568 -6253.7692 8.7123223 3707.8534 632.67661 -10594.299 0 417.54337 0.00048838732 0.00046591871 + 101010 -6245.0875 -6254.4048 9.3172962 3701.1046 634.05951 -10589.569 0 446.53711 0.00079006482 0.0007604782 + 101020 -6245.2268 -6254.6093 9.3824659 3697.5633 634.56744 -10586.74 0 449.66041 0.00090492741 0.00087018184 + 101030 -6245.5158 -6254.2623 8.7464077 3698.2389 633.98013 -10586.481 0 419.17693 0.00078306782 0.00075046592 + 101040 -6245.9023 -6253.4573 7.5549807 3702.7821 632.43656 -10588.676 0 362.07707 0.0004536407 0.0004289798 + 101050 -6246.2755 -6252.4619 6.186406 3709.639 630.38109 -10592.482 0 296.48729 1.3281452e-05 -4.2762198e-06 + 101060 -6246.5505 -6251.5683 5.0178268 3716.6406 628.42833 -10596.637 0 240.48241 -0.00041086379 -0.00042761541 + 101070 -6246.7201 -6250.9564 4.2362895 3721.7294 627.18623 -10599.872 0 203.02676 -0.00070365334 -0.00072556188 + 101080 -6246.8384 -6250.661 3.8225584 3723.5341 627.07777 -10601.273 0 183.19845 -0.00079306744 -0.00082085427 + 101090 -6246.965 -6250.639 3.6740449 3721.653 628.20403 -10600.496 0 176.08085 -0.00066406496 -0.00069326019 + 101100 -6247.1195 -6250.8533 3.7338576 3716.6605 630.29379 -10597.808 0 178.94741 -0.00035763798 -0.00038298947 + 101110 -6247.2799 -6251.2968 4.0169343 3709.9129 632.76771 -10593.977 0 192.51403 4.0831676e-05 2.0853244e-05 + 101120 -6247.4164 -6251.9491 4.5327007 3703.2171 634.90678 -10590.073 0 217.23245 0.00042188461 0.00040435863 + 101130 -6247.5276 -6252.7247 5.1970584 3698.391 636.07352 -10587.189 0 249.0722 0.00067959925 0.00066033578 + 101140 -6247.6487 -6253.4767 5.8280004 3696.7659 635.91199 -10586.155 0 279.31048 0.00074184868 0.00071910088 + 101150 -6247.8256 -6254.0595 6.2338922 3698.7661 634.45784 -10587.283 0 298.76309 0.00059349448 0.00056875915 + 101160 -6248.0829 -6254.3949 6.3119272 3703.7502 632.11995 -10590.265 0 302.50297 0.00028155714 0.00025733582 + 101170 -6248.4145 -6254.4869 6.0723824 3710.2222 629.54094 -10594.25 0 291.02264 -0.00010194876 -0.00012450322 + 101180 -6248.7958 -6254.39 5.5942152 3716.3366 627.38742 -10598.114 0 268.10618 -0.00045231866 -0.00047360632 + 101190 -6249.1967 -6254.1769 4.9801846 3720.4757 626.14594 -10600.799 0 238.67839 -0.00068520328 -0.00070599891 + 101200 -6249.5863 -6253.9255 4.3391637 3721.6812 625.99797 -10601.605 0 207.95707 -0.00075831331 -0.00077905475 + 101210 -6249.9391 -6253.707 3.7679009 3719.8314 626.81132 -10600.35 0 180.57895 -0.00067709046 -0.00069789315 + 101220 -6250.2435 -6253.5681 3.3245539 3715.5616 628.23147 -10597.361 0 159.33128 -0.00048569083 -0.00050632355 + 101230 -6250.5021 -6253.5239 3.021817 3710.0003 629.81905 -10593.343 0 144.82243 -0.00024838084 -0.00026815853 + 101240 -6250.7219 -6253.57 2.8480579 3704.432 631.17854 -10589.181 0 136.49492 -2.8740825e-05 -4.6826253e-05 + 101250 -6250.9063 -6253.6977 2.7913874 3699.9978 632.04467 -10585.74 0 133.77894 0.00012623197 0.00011016017 + 101260 -6251.0536 -6253.8976 2.8439494 3697.4936 632.31498 -10583.706 0 136.29801 0.00019320681 0.0001785401 + 101270 -6251.1627 -6254.1506 2.9878571 3697.2769 632.03304 -10583.461 0 143.19488 0.00017104848 0.00015657125 + 101280 -6251.2372 -6254.4186 3.1813894 3699.2614 631.33856 -10585.019 0 152.47003 7.4237573e-05 5.9012429e-05 + 101290 -6251.285 -6254.6487 3.3637744 3702.9718 630.40848 -10588.029 0 161.21094 -7.4343959e-05 -9.0282028e-05 + 101300 -6251.3119 -6254.7911 3.479275 3707.6426 629.413 -10591.847 0 166.74638 -0.00024827587 -0.00026406807 + 101310 -6251.3167 -6254.8186 3.5019068 3712.3497 628.49808 -10595.666 0 167.83102 -0.00041993489 -0.00043476245 + 101320 -6251.2918 -6254.7338 3.441942 3716.1621 627.78799 -10598.684 0 164.95717 -0.00056199941 -0.00057587072 + 101330 -6251.2301 -6254.5621 3.3320403 3718.2977 627.39082 -10600.251 0 159.69007 -0.00064965795 -0.00066340448 + 101340 -6251.1313 -6254.3386 3.2072857 3718.2614 627.39369 -10599.994 0 153.71113 -0.00066372242 -0.00067819634 + 101350 -6251.002 -6254.1008 3.0987779 3715.9452 627.84559 -10597.892 0 148.51083 -0.00059393944 -0.00060921266 + 101360 -6250.8464 -6253.8925 3.0460969 3711.6718 628.73288 -10594.297 0 145.98605 -0.0004421583 -0.00045764689 + 101370 -6250.6572 -6253.7639 3.1067293 3706.1795 629.9558 -10589.899 0 148.8919 -0.00022566516 -0.00024111328 + 101380 -6250.4169 -6253.7531 3.3361327 3700.5473 631.31566 -10585.616 0 159.8862 2.0048234e-05 3.9180817e-06 + 101390 -6250.1106 -6253.8582 3.7476509 3696.0396 632.52448 -10582.422 0 179.60846 0.00024235492 0.00022439038 + 101400 -6249.7377 -6254.0296 4.2919649 3693.8515 633.2489 -10581.13 0 205.69504 0.00038034641 0.0003600376 + 101410 -6249.3155 -6254.1892 4.8737458 3694.7748 633.1943 -10582.158 0 233.57725 0.00038175164 0.00035955321 + 101420 -6248.8744 -6254.2551 5.380682 3698.8868 632.21714 -10585.359 0 257.87247 0.00022259327 0.00019941484 + 101430 -6248.4516 -6254.1551 5.703496 3705.3909 630.42586 -10589.972 0 273.34353 -7.849279e-05 -0.00010167322 + 101440 -6248.0804 -6253.8435 5.7631484 3712.7064 628.21257 -10594.763 0 276.20241 -0.00045767224 -0.00047988043 + 101450 -6247.7738 -6253.3306 5.5567875 3718.822 626.17613 -10598.329 0 266.31244 -0.00081783529 -0.00083869425 + 101460 -6247.5171 -6252.7001 5.1830548 3721.8443 624.94939 -10599.494 0 248.40107 -0.0010538965 -0.0010747341 + 101470 -6247.282 -6252.0809 4.7988716 3720.5844 624.9951 -10597.66 0 229.98885 -0.0010853887 -0.001109276 + 101480 -6247.0551 -6251.5809 4.5257278 3714.9816 626.44783 -10593.01 0 216.89827 -0.00088540563 -0.00091492437 + 101490 -6246.8526 -6251.2393 4.3867409 3706.1963 629.05168 -10586.487 0 210.23724 -0.00049398467 -0.00052802846 + 101500 -6246.7022 -6251.0444 4.3422723 3696.3193 632.20463 -10579.568 0 208.10605 -8.9997992e-06 -4.1984191e-05 + 101510 -6246.6018 -6251.0024 4.4005757 3687.7965 635.09683 -10573.896 0 210.90028 0.00044287044 0.00041715063 + 101520 -6246.4953 -6251.1798 4.68447 3682.7777 636.91767 -10570.875 0 224.50609 0.00074306477 0.00072518448 + 101530 -6246.3014 -6251.6486 5.3471574 3682.6034 637.0876 -10571.34 0 256.26579 0.00081134945 0.00079367877 + 101540 -6245.9882 -6252.3656 6.3773835 3687.5223 635.44886 -10575.337 0 305.64 0.00062208399 0.00059413259 + 101550 -6245.6266 -6253.1137 7.4870462 3696.603 632.34585 -10582.063 0 358.82126 0.00020958238 0.00016803709 + 101560 -6245.3527 -6253.6069 8.2542467 3707.8058 628.55352 -10589.966 0 395.58982 -0.0003327955 -0.00037904164 + 101570 -6245.248 -6253.6999 8.4519395 3718.2975 625.0647 -10597.062 0 405.06436 -0.00086440092 -0.00090117419 + 101580 -6245.2578 -6253.4967 8.2388885 3725.1345 622.80507 -10601.436 0 394.85377 -0.0012307106 -0.0012522079 + 101590 -6245.2503 -6253.2249 7.974571 3726.2231 622.37258 -10601.821 0 382.18619 -0.0013169876 -0.0013320619 + 101600 -6245.1572 -6252.9939 7.836643 3721.1444 623.87589 -10598.014 0 375.57591 -0.0010975907 -0.0011213585 + 101610 -6245.0398 -6252.701 7.6611818 3711.3581 626.90184 -10590.961 0 367.16682 -0.00064939962 -0.00068867049 + 101620 -6245.0138 -6252.1816 7.1678045 3699.6374 630.61895 -10582.438 0 343.52141 -0.0001189849 -0.00016624349 + 101630 -6245.125 -6251.4294 6.3043615 3689.0539 634.00812 -10574.491 0 302.14038 0.0003363674 0.00029541832 + 101640 -6245.3058 -6250.6595 5.3536773 3682.0308 636.16757 -10568.858 0 256.57826 0.00060076014 0.00057451558 + 101650 -6245.4385 -6250.169 4.7304852 3679.8195 636.5872 -10566.576 0 226.71139 0.00062453915 0.00060924885 + 101660 -6245.4483 -6250.1337 4.6854548 3682.4361 635.28656 -10567.856 0 224.55329 0.00042332261 0.00040729096 + 101670 -6245.3476 -6250.507 5.159362 3688.8783 632.76842 -10572.154 0 247.26558 6.3266e-05 3.6542668e-05 + 101680 -6245.2141 -6251.0791 5.8650304 3697.4432 629.81665 -10578.339 0 281.08516 -0.00035893903 -0.00039747314 + 101690 -6245.1295 -6251.6295 6.499991 3706.0781 627.22575 -10584.933 0 311.51604 -0.00073935546 -0.00078226635 + 101700 -6245.1259 -6252.0487 6.9228474 3712.7828 625.56782 -10590.399 0 331.78169 -0.0009916402 -0.0010292696 + 101710 -6245.1728 -6252.3581 7.1852592 3716.0495 625.0734 -10593.481 0 344.35794 -0.0010674089 -0.0010949871 + 101720 -6245.2113 -6252.6387 7.4273571 3715.2384 625.64311 -10593.52 0 355.96063 -0.00096534728 -0.00098595787 + 101730 -6245.206 -6252.9313 7.7253026 3710.7502 626.9534 -10590.635 0 370.23985 -0.00072723618 -0.00074897182 + 101740 -6245.1797 -6253.1794 7.9997343 3703.8998 628.59424 -10585.673 0 383.39215 -0.00042383479 -0.000453389 + 101750 -6245.2021 -6253.2579 8.0558055 3696.5078 630.18325 -10579.949 0 386.0794 -0.00013467072 -0.00017209381 + 101760 -6245.3364 -6253.0718 7.7353361 3690.347 631.43043 -10574.849 0 370.72071 7.3775317e-05 3.5072204e-05 + 101770 -6245.5844 -6252.6531 7.0687402 3686.6529 632.15858 -10571.465 0 338.77369 0.00016496152 0.00013268103 + 101780 -6245.8788 -6252.1731 6.2942781 3685.8831 632.29899 -10570.355 0 301.65713 0.00013713306 0.00011337509 + 101790 -6246.1376 -6251.84 5.7024478 3687.7834 631.87987 -10571.503 0 273.2933 1.4011074e-05 -6.6002391e-06 + 101800 -6246.3342 -6251.7542 5.4200295 3691.6456 631.01274 -10574.413 0 259.75823 -0.00017158211 -0.00019665362 + 101810 -6246.5163 -6251.8495 5.3332101 3696.5485 629.87133 -10578.269 0 255.59735 -0.00038890751 -0.00042068387 + 101820 -6246.7508 -6251.9843 5.23355 3701.4719 628.65804 -10582.114 0 250.82108 -0.00060909972 -0.00064234644 + 101830 -6247.052 -6252.0875 5.0355727 3705.3675 627.56566 -10585.021 0 241.3329 -0.00080001347 -0.00082763065 + 101840 -6247.3694 -6252.2056 4.8362519 3707.3278 626.75026 -10586.284 0 231.78033 -0.00092759968 -0.00094779084 + 101850 -6247.6426 -6252.4192 4.7765989 3706.8482 626.32085 -10585.588 0 228.92142 -0.00096648502 -0.00098410924 + 101860 -6247.8586 -6252.7369 4.8782942 3704.0211 626.33622 -10583.094 0 233.79523 -0.00091119933 -0.00093269013 + 101870 -6248.0567 -6253.0742 5.0174794 3699.5224 626.79588 -10579.393 0 240.46577 -0.00077885193 -0.00080620934 + 101880 -6248.2863 -6253.3241 5.0377236 3694.395 627.62332 -10575.342 0 241.43598 -0.00060217708 -0.00063145755 + 101890 -6248.5594 -6253.446 4.8865292 3689.7471 628.65479 -10571.848 0 234.1899 -0.00041904762 -0.00044424366 + 101900 -6248.8397 -6253.4937 4.6539892 3686.5024 629.653 -10569.649 0 223.04528 -0.00026537785 -0.00028388164 + 101910 -6249.0763 -6253.5581 4.4818164 3685.2736 630.35438 -10569.186 0 214.79379 -0.00017316506 -0.00018775557 + 101920 -6249.2487 -6253.6804 4.4317459 3686.3215 630.53786 -10570.54 0 212.39413 -0.00016898617 -0.00018467796 + 101930 -6249.3804 -6253.8237 4.4432909 3689.5153 630.09103 -10573.43 0 212.94743 -0.00026723637 -0.0002863896 + 101940 -6249.5093 -6253.9264 4.4171321 3694.2708 629.05501 -10577.252 0 211.69375 -0.00045895042 -0.00047959886 + 101950 -6249.6482 -6253.9731 4.3249604 3699.5605 627.63892 -10581.173 0 207.27637 -0.00070493944 -0.00072359325 + 101960 -6249.777 -6254.0021 4.2251108 3704.1034 626.19493 -10584.3 0 202.49102 -0.00094205702 -0.00095747919 + 101970 -6249.8686 -6254.0492 4.1805758 3706.7177 625.14263 -10585.91 0 200.35665 -0.0011025011 -0.0011165077 + 101980 -6249.9159 -6254.0999 4.1839755 3706.6895 624.84499 -10585.634 0 200.51958 -0.0011370529 -0.0011521719 + 101990 -6249.9327 -6254.1016 4.1689816 3703.9954 625.46955 -10583.567 0 199.80099 -0.0010319383 -0.0010489124 + 102000 -6249.9353 -6254.017 4.0817352 3699.3083 626.89526 -10580.221 0 195.61965 -0.00081400703 -0.00083150312 + 102010 -6249.926 -6253.8576 3.9316053 3693.8093 628.71978 -10576.387 0 188.42459 -0.00054398433 -0.0005601598 + 102020 -6249.8925 -6253.6738 3.7813192 3688.8731 630.37903 -10572.926 0 181.22203 -0.00030005579 -0.0003141617 + 102030 -6249.8159 -6253.5178 3.7018235 3685.7073 631.33494 -10570.56 0 177.41215 -0.00015564518 -0.00016850635 + 102040 -6249.6793 -6253.4149 3.7355741 3685.0353 631.25588 -10569.706 0 179.02967 -0.00015729786 -0.00017076059 + 102050 -6249.4701 -6253.358 3.8879498 3686.9074 630.12187 -10570.387 0 186.33237 -0.00030973959 -0.00032572333 + 102060 -6249.1806 -6253.3207 4.140084 3690.6912 628.22433 -10572.236 0 198.41605 -0.00057349524 -0.00059316261 + 102070 -6248.8088 -6253.2738 4.4650009 3695.2392 626.07256 -10574.586 0 213.9879 -0.00087603436 -0.00089924612 + 102080 -6248.3615 -6253.1956 4.8341213 3699.1864 624.24739 -10576.629 0 231.67822 -0.0011324582 -0.0011574936 + 102090 -6247.8552 -6253.0755 5.2202689 3701.3047 623.24566 -10577.626 0 250.18458 -0.0012689089 -0.001292753 + 102100 -6247.3098 -6252.9225 5.6126558 3700.838 623.34896 -10577.109 0 268.98996 -0.0012424596 -0.0012623462 + 102110 -6246.7351 -6252.7682 6.0330935 3697.7495 624.54243 -10575.06 0 289.13969 -0.0010538538 -0.0010698731 + 102120 -6246.1322 -6252.6439 6.5117256 3692.8123 626.50871 -10571.965 0 312.07843 -0.00075089703 -0.00076738713 + 102130 -6245.5197 -6252.5356 7.0159128 3687.4628 628.71236 -10568.711 0 336.24191 -0.00041934119 -0.00044243969 + 102140 -6244.9558 -6252.3665 7.4107757 3683.3789 630.56108 -10566.307 0 355.16595 -0.00015857527 -0.00019086175 + 102150 -6244.5176 -6252.0522 7.5346146 3681.879 631.59467 -10565.526 0 361.10101 -4.6306606e-05 -8.3501566e-05 + 102160 -6244.2431 -6251.5931 7.3500205 3683.392 631.6325 -10566.618 0 352.25422 -0.00010687891 -0.0001405901 + 102170 -6244.0938 -6251.1166 7.0228302 3687.2824 630.82103 -10569.22 0 336.57343 -0.0003011881 -0.00032587388 + 102180 -6243.9799 -6250.8108 6.8308579 3692.1341 629.56226 -10572.507 0 327.37304 -0.00054569087 -0.00056357412 + 102190 -6243.828 -6250.795 6.9670468 3696.3444 628.35242 -10575.492 0 333.89997 -0.00075048275 -0.00076992635 + 102200 -6243.6333 -6251.0324 7.3991371 3698.7229 627.59341 -10577.349 0 354.60817 -0.00085602927 -0.00088478138 + 102210 -6243.4592 -6251.3501 7.8908406 3698.835 627.44811 -10577.633 0 378.17336 -0.00085169041 -0.00089052182 + 102220 -6243.3858 -6251.5508 8.1650513 3696.9906 627.7948 -10576.336 0 391.31507 -0.00077087035 -0.00081265201 + 102230 -6243.4413 -6251.5402 8.0989488 3693.9515 628.29934 -10573.791 0 388.14707 -0.00066896293 -0.000704309 + 102240 -6243.5746 -6251.3783 7.8036619 3690.5595 628.57665 -10570.514 0 373.99527 -0.00059727775 -0.00062251973 + 102250 -6243.6986 -6251.2065 7.5078573 3687.4896 628.37272 -10567.069 0 359.81865 -0.00058545551 -0.00060582371 + 102260 -6243.7675 -6251.1142 7.3467494 3685.1768 627.68372 -10563.975 0 352.09746 -0.00063618063 -0.00066096171 + 102270 -6243.8115 -6251.0769 7.265421 3683.8122 626.75495 -10561.644 0 348.19974 -0.00072814739 -0.00076243469 + 102280 -6243.8991 -6251.0179 7.1188587 3683.332 625.96144 -10560.311 0 341.17565 -0.00082389313 -0.0008645756 + 102290 -6244.0723 -6250.9134 6.8410815 3683.4476 625.63156 -10559.993 0 327.86301 -0.00088283448 -0.00092157065 + 102300 -6244.3165 -6250.8353 6.5187775 3683.7772 625.89931 -10560.512 0 312.4164 -0.0008776292 -0.00090725498 + 102310 -6244.5749 -6250.915 6.3401148 3684.0417 626.64986 -10561.607 0 303.85387 -0.0008064924 -0.00082609502 + 102320 -6244.7867 -6251.2679 6.4811911 3684.2146 627.57533 -10563.058 0 310.61504 -0.00069495816 -0.00071105219 + 102330 -6244.9312 -6251.9066 6.9754069 3684.5543 628.3098 -10564.771 0 334.30064 -0.00058755486 -0.0006103275 + 102340 -6245.0604 -6252.6833 7.6228839 3685.4869 628.58011 -10566.75 0 365.33137 -0.00053326967 -0.00056891331 + 102350 -6245.2816 -6253.3331 8.0514868 3687.3367 628.30584 -10568.976 0 385.87243 -0.0005667774 -0.00061119686 + 102360 -6245.6728 -6253.636 7.9631915 3690.0035 627.61214 -10571.252 0 381.64082 -0.00068933346 -0.00073005689 + 102370 -6246.1997 -6253.5779 7.3782435 3692.8216 626.76669 -10573.166 0 353.60683 -0.00086078705 -0.00088728519 + 102380 -6246.73 -6253.3477 6.6176587 3694.7889 626.08221 -10574.219 0 317.15533 -0.0010140898 -0.0010273185 + 102390 -6247.1432 -6253.1591 6.0158257 3695.0742 625.8201 -10574.053 0 288.31212 -0.001088236 -0.0010998738 + 102400 -6247.4224 -6253.0681 5.6456589 3693.4629 626.10894 -10572.64 0 270.57165 -0.0010592156 -0.0010812485 + 102410 -6247.645 -6252.9591 5.3141072 3690.444 626.88787 -10570.291 0 254.68183 -0.00094936892 -0.00098395926 + 102420 -6247.8942 -6252.6962 4.8020039 3686.9256 627.89985 -10567.522 0 230.13897 -0.00081189019 -0.0008504495 + 102430 -6248.1831 -6252.2845 4.1014577 3683.8119 628.76088 -10564.857 0 196.56487 -0.00070358802 -0.00073489407 + 102440 -6248.4531 -6251.8951 3.4420027 3681.6994 629.0964 -10562.691 0 164.96008 -0.00066306009 -0.00068254422 + 102450 -6248.6332 -6251.7441 3.1108688 3680.8028 628.69009 -10561.237 0 149.09029 -0.00070271587 -0.00071520922 + 102460 -6248.6995 -6251.9385 3.2389992 3681.0434 627.57574 -10560.558 0 155.23102 -0.00081159908 -0.00082620277 + 102470 -6248.6912 -6252.4151 3.7238694 3682.1636 626.02943 -10560.608 0 178.46872 -0.00096164317 -0.00098382775 + 102480 -6248.6755 -6253.0105 4.3350485 3683.7838 624.4662 -10561.261 0 207.75985 -0.0011138326 -0.0011416326 + 102490 -6248.6917 -6253.5892 4.8974929 3685.4368 623.28768 -10562.314 0 234.71534 -0.0012263656 -0.0012535212 + 102500 -6248.7246 -6254.1091 5.384487 3686.6631 622.74834 -10563.521 0 258.05483 -0.0012672466 -0.0012896892 + 102510 -6248.7289 -6254.5775 5.8486764 3687.1795 622.8934 -10564.65 0 280.30139 -0.0012277697 -0.0012470991 + 102520 -6248.6789 -6254.9651 6.2862081 3687.0132 623.58005 -10565.558 0 301.27037 -0.0011281581 -0.0011494149 + 102530 -6248.5935 -6255.175 6.5814737 3686.4778 624.55671 -10566.21 0 315.42115 -0.0010094591 -0.0010361664 + 102540 -6248.5172 -6255.0936 6.5764084 3685.979 625.56241 -10566.635 0 315.17839 -0.00091483009 -0.00094603187 + 102550 -6248.4819 -6254.6691 6.187253 3685.7712 626.41312 -10566.853 0 296.52788 -0.00087029727 -0.00090155538 + 102560 -6248.4821 -6253.9544 5.4723112 3685.8184 627.04971 -10566.823 0 262.26386 -0.00087480784 -0.0009016605 + 102570 -6248.4804 -6253.0957 4.6153516 3685.8361 627.53158 -10566.463 0 221.19355 -0.00090367034 -0.00092480668 + 102580 -6248.4303 -6252.2784 3.8481342 3685.4873 627.97714 -10565.743 0 184.42418 -0.00092287348 -0.00094104414 + 102590 -6248.3007 -6251.6594 3.3587115 3684.6198 628.47585 -10564.755 0 160.9683 -0.00090718022 -0.00092737972 + 102600 -6248.0834 -6251.3175 3.234013 3683.4104 629.01351 -10563.741 0 154.99205 -0.00085340287 -0.00087948032 + 102610 -6247.779 -6251.2477 3.4687193 3682.3309 629.4476 -10563.026 0 166.24049 -0.0007826405 -0.00081461192 + 102620 -6247.372 -6251.4009 4.0288401 3681.9514 629.54467 -10562.897 0 193.08462 -0.00073098326 -0.00076501716 + 102630 -6246.82 -6251.7299 4.9099204 3682.6806 629.06605 -10563.476 0 235.31093 -0.00073384736 -0.00076518954 + 102640 -6246.0776 -6252.2 6.1224653 3684.5529 627.87725 -10564.63 0 293.42289 -0.00081100502 -0.00083810113 + 102650 -6245.1518 -6252.7474 7.5956073 3687.1437 626.04761 -10565.939 0 364.02412 -0.00095776127 -0.0009842874 + 102660 -6244.1435 -6253.2323 9.0887851 3689.6476 623.88989 -10566.77 0 435.58558 -0.0011447454 -0.0011767194 + 102670 -6243.2225 -6253.4595 10.237048 3691.0918 621.8997 -10566.451 0 490.61679 -0.0013247087 -0.0013644814 + 102680 -6242.5398 -6253.2829 10.743188 3690.6003 620.61086 -10564.494 0 514.87386 -0.0014422752 -0.001485742 + 102690 -6242.1423 -6252.7133 10.571052 3687.6568 620.42893 -10560.799 0 506.62414 -0.001445933 -0.0014865799 + 102700 -6241.9608 -6251.9219 9.9611003 3682.3509 621.50161 -10555.774 0 477.39182 -0.0013055629 -0.0013412938 + 102710 -6241.8848 -6251.1176 9.2328698 3675.5509 623.65799 -10550.326 0 442.49093 -0.0010336602 -0.0010687508 + 102720 -6241.853 -6250.4084 8.5553796 3668.8576 626.42568 -10545.692 0 410.02179 -0.0006965031 -0.00073627989 + 102730 -6241.8744 -6249.7936 7.9191863 3664.2071 629.12578 -10543.126 0 379.53184 -0.00039913026 -0.00044363054 + 102740 -6241.9702 -6249.285 7.314762 3663.2015 631.0439 -10543.53 0 350.56444 -0.00024473555 -0.00028876127 + 102750 -6242.1214 -6248.995 6.8736717 3666.4832 631.65371 -10547.132 0 329.42492 -0.00029059085 -0.00032947197 + 102760 -6242.2806 -6249.0767 6.7960673 3673.4588 630.82154 -10553.357 0 325.70568 -0.00052534018 -0.00055928943 + 102770 -6242.4224 -6249.5834 7.1609901 3682.4573 628.89269 -10560.933 0 343.19483 -0.00087517849 -0.00090802316 + 102780 -6242.5683 -6250.4 7.8317064 3691.2035 626.59521 -10568.199 0 375.33932 -0.0012299543 -0.0012649439 + 102790 -6242.7656 -6251.3047 8.5390933 3697.446 624.77816 -10573.529 0 409.24127 -0.001477625 -0.0015153974 + 102800 -6243.0497 -6252.0896 9.0398433 3699.5937 624.0862 -10575.769 0 433.24001 -0.0015397053 -0.001579712 + 102810 -6243.4294 -6252.6274 9.1979864 3697.2014 624.71336 -10574.542 0 440.81912 -0.0013996656 -0.0014417574 + 102820 -6243.8984 -6252.8655 8.9670201 3691.1124 626.34453 -10570.322 0 429.74992 -0.0011115929 -0.0011551336 + 102830 -6244.4408 -6252.8081 8.3673011 3683.1498 628.29926 -10564.257 0 401.00802 -0.00078048548 -0.00082277965 + 102840 -6245.0192 -6252.5219 7.5026363 3675.4759 629.80149 -10557.799 0 359.56843 -0.00052143332 -0.00055851722 + 102850 -6245.5736 -6252.1384 6.5648329 3669.9042 630.2584 -10552.301 0 314.62363 -0.00041789085 -0.00044762041 + 102860 -6246.0423 -6251.82 5.7776687 3667.4406 629.44596 -10548.707 0 276.8983 -0.00049759188 -0.00052205877 + 102870 -6246.3961 -6251.6907 5.2945951 3668.1688 627.55104 -10547.411 0 253.74671 -0.00073236403 -0.00075685795 + 102880 -6246.6566 -6251.7763 5.1197935 3671.4177 625.077 -10548.271 0 245.36923 -0.0010555099 -0.0010842234 + 102890 -6246.8804 -6252.0098 5.1293978 3676.0487 622.66023 -10550.719 0 245.82953 -0.0013850453 -0.0014172169 + 102900 -6247.1156 -6252.3088 5.1932204 3680.7447 620.86638 -10553.92 0 248.88826 -0.0016442808 -0.0016748443 + 102910 -6247.3635 -6252.6517 5.2881842 3684.2889 620.03844 -10556.979 0 253.43946 -0.0017777004 -0.001802327 + 102920 -6247.5846 -6253.0705 5.4858967 3685.8515 620.24216 -10559.164 0 262.91495 -0.0017627708 -0.0017824482 + 102930 -6247.7441 -6253.5687 5.8246055 3685.2206 621.30567 -10560.095 0 279.14778 -0.0016157656 -0.0016362133 + 102940 -6247.8522 -6254.0538 6.2016179 3682.8506 622.91121 -10559.816 0 297.21633 -0.0013870838 -0.0014134556 + 102950 -6247.9601 -6254.3644 6.4043182 3679.6598 624.69394 -10558.718 0 306.93086 -0.0011442066 -0.0011761673 + 102960 -6248.1136 -6254.3737 6.2601183 3676.6579 626.32384 -10557.355 0 300.01999 -0.00094779465 -0.00097960223 + 102970 -6248.309 -6254.0803 5.7712629 3674.5973 627.56476 -10556.242 0 276.5913 -0.0008323484 -0.00085780846 + 102980 -6248.4935 -6253.6102 5.1167038 3673.8135 628.30714 -10555.731 0 245.22116 -0.00080111023 -0.00081892959 + 102990 -6248.6062 -6253.1313 4.5251681 3674.2809 628.56688 -10555.979 0 216.87145 -0.00083576694 -0.00085075294 + 103000 -6248.6245 -6252.7536 4.1290683 3675.7799 628.44624 -10556.98 0 197.88812 -0.00091246031 -0.0009317355 + 103010 -6248.5778 -6252.4889 3.9111026 3678.0315 628.06814 -10558.589 0 187.44198 -0.0010135869 -0.0010409842 + 103020 -6248.5222 -6252.2958 3.773605 3680.7189 627.51304 -10560.528 0 180.85232 -0.0011299252 -0.0011630005 + 103030 -6248.4968 -6252.1637 3.6669562 3683.4247 626.79261 -10562.381 0 175.74112 -0.0012549269 -0.0012869451 + 103040 -6248.4916 -6252.1596 3.6680494 3685.5872 625.87748 -10563.624 0 175.79351 -0.0013776395 -0.001402969 + 103050 -6248.4528 -6252.3884 3.9356581 3686.5743 624.76642 -10563.729 0 188.61882 -0.0014801848 -0.001498671 + 103060 -6248.3205 -6252.8922 4.5716363 3685.8747 623.55604 -10562.323 0 219.09846 -0.0015411595 -0.0015578425 + 103070 -6248.0701 -6253.5754 5.505342 3683.3077 622.46193 -10559.345 0 263.84688 -0.0015420933 -0.001562769 + 103080 -6247.7247 -6254.2285 6.5037973 3679.1319 621.76321 -10555.124 0 311.69846 -0.0014737189 -0.0015004836 + 103090 -6247.3345 -6254.6311 7.2966385 3674.0201 621.6878 -10550.339 0 349.69586 -0.0013410158 -0.0013714268 + 103100 -6246.9417 -6254.6531 7.7113207 3668.9402 622.29625 -10545.89 0 369.56975 -0.0011665539 -0.0011963209 + 103110 -6246.5598 -6254.2934 7.7336278 3664.9818 623.42718 -10542.702 0 370.63884 -0.00098969911 -0.0010162472 + 103120 -6246.1734 -6253.6566 7.4831951 3663.1416 624.73566 -10541.534 0 358.6367 -0.00085907503 -0.00088361676 + 103130 -6245.7592 -6252.8873 7.1281471 3664.0906 625.81314 -10542.791 0 341.6208 -0.00081937557 -0.00084624213 + 103140 -6245.3135 -6252.0954 6.7818496 3667.9686 626.34249 -10546.406 0 325.02429 -0.00089678208 -0.00092997364 + 103150 -6244.8641 -6251.3231 6.4589248 3674.2406 626.22523 -10551.789 0 309.54791 -0.0010866921 -0.0011259068 + 103160 -6244.4462 -6250.5864 6.1401491 3681.6645 625.62844 -10557.879 0 294.2704 -0.00134673 -0.0013866333 + 103170 -6244.0603 -6249.9471 5.8867974 3688.4531 624.9337 -10563.334 0 282.12836 -0.0015995706 -0.0016337871 + 103180 -6243.651 -6249.5337 5.8827186 3692.6854 624.60907 -10566.828 0 281.93289 -0.0017500375 -0.0017769039 + 103190 -6243.1293 -6249.4761 6.346783 3692.8985 625.04658 -10567.421 0 304.17345 -0.0017158264 -0.0017409896 + 103200 -6242.4341 -6249.799 7.3648809 3688.662 626.40992 -10564.871 0 352.96642 -0.0014635157 -0.0014965356 + 103210 -6241.6002 -6250.3571 8.7569223 3680.8891 628.53116 -10559.777 0 419.68085 -0.0010347509 -0.0010812251 + 103220 -6240.772 -6250.8902 10.1182 3671.6756 630.89327 -10553.459 0 484.9209 -0.00054468085 -0.00060020382 + 103230 -6240.1142 -6251.1924 11.078198 3663.6347 632.73589 -10547.563 0 530.92942 -0.00014430339 -0.00019748258 + 103240 -6239.6877 -6251.2516 11.563924 3658.9948 633.29364 -10543.54 0 554.20814 3.6916332e-05 -6.6664621e-06 + 103250 -6239.4393 -6251.1983 11.758941 3658.9021 632.101 -10542.201 0 563.55441 -6.4814655e-05 -0.00010317075 + 103260 -6239.3197 -6251.1095 11.789794 3663.1812 629.22536 -10543.516 0 565.03306 -0.0004344309 -0.000477846 + 103270 -6239.363 -6250.9088 11.545826 3670.4595 625.2987 -10546.667 0 553.34079 -0.00098620264 -0.0010381562 + 103280 -6239.6181 -6250.5013 10.883273 3678.4924 621.31907 -10550.313 0 521.58749 -0.0015807833 -0.0016338064 + 103290 -6240.0339 -6249.9753 9.9414191 3684.7101 618.31497 -10553 0 476.44858 -0.0020556055 -0.0021008078 + 103300 -6240.4698 -6249.5954 9.1255819 3687.0187 617.02335 -10553.637 0 437.34909 -0.0022747576 -0.0023126578 + 103310 -6240.8217 -6249.5775 8.7557794 3684.5949 617.69021 -10551.863 0 419.62608 -0.002181656 -0.0022210669 + 103320 -6241.1031 -6249.9116 8.8084295 3678.2217 620.02281 -10548.156 0 422.14936 -0.001822735 -0.0018703 + 103330 -6241.4005 -6250.4171 9.0165978 3669.954 623.28605 -10543.657 0 432.12596 -0.001326142 -0.0013794669 + 103340 -6241.7729 -6250.9228 9.1498598 3662.33 626.5278 -10539.781 0 438.51262 -0.00084922455 -0.0009001185 + 103350 -6242.2059 -6251.3632 9.1572945 3657.5354 628.88012 -10537.779 0 438.86894 -0.00052410703 -0.0005665893 + 103360 -6242.6435 -6251.7344 9.0908459 3656.8128 629.82982 -10538.377 0 435.68434 -0.00042331932 -0.00045791949 + 103370 -6243.0454 -6252.0084 8.9629071 3660.2173 629.35125 -10541.577 0 429.5528 -0.00055012848 -0.00058178846 + 103380 -6243.4113 -6252.1108 8.6994561 3666.7019 627.85826 -10546.671 0 416.92675 -0.0008473312 -0.00088034965 + 103390 -6243.7619 -6251.9803 8.2184141 3674.4675 626.01096 -10552.459 0 393.87252 -0.0012176557 -0.0012526056 + 103400 -6244.1039 -6251.65 7.5461698 3681.4708 624.46513 -10557.586 0 361.6548 -0.0015517643 -0.0015866791 + 103410 -6244.4164 -6251.2662 6.8497985 3685.9687 623.66374 -10560.899 0 328.28078 -0.0017595532 -0.0017934082 + 103420 -6244.6754 -6251.0097 6.3342935 3686.9755 623.73675 -10561.722 0 303.57489 -0.0017966652 -0.0018308466 + 103430 -6244.8872 -6250.9814 6.0941871 3684.5007 624.51618 -10559.998 0 292.06764 -0.0016757924 -0.001711703 + 103440 -6245.089 -6251.161 6.0720238 3679.4654 625.62801 -10556.254 0 291.00545 -0.001456748 -0.001492736 + 103450 -6245.3118 -6251.4751 6.1633033 3673.3235 626.61702 -10551.416 0 295.38008 -0.0012201034 -0.0012522019 + 103460 -6245.5473 -6251.8845 6.3371552 3667.5779 627.07698 -10546.539 0 303.71204 -0.0010384665 -0.001064751 + 103470 -6245.7618 -6252.3884 6.6265983 3663.41 626.76639 -10542.565 0 317.58377 -0.00095845917 -0.00098186561 + 103480 -6245.9436 -6252.952 7.0084941 3661.5036 625.68157 -10540.137 0 335.88636 -0.00099601775 -0.0010217859 + 103490 -6246.1276 -6253.4643 7.3367592 3661.9893 624.05513 -10539.509 0 351.61867 -0.001138669 -0.0011689591 + 103500 -6246.3634 -6253.7922 7.4288365 3664.4457 622.27194 -10540.51 0 356.03153 -0.0013496175 -0.0013813999 + 103510 -6246.6623 -6253.8742 7.211974 3667.9948 620.73759 -10542.607 0 345.63826 -0.001575609 -0.001604065 + 103520 -6246.9839 -6253.7503 6.7663216 3671.5514 619.7585 -10545.06 0 324.2801 -0.0017618397 -0.0017852575 + 103530 -6247.2719 -6253.5083 6.2364255 3674.1683 619.47636 -10547.153 0 298.8845 -0.0018698722 -0.0018910847 + 103540 -6247.4959 -6253.2159 5.7200677 3675.318 619.86396 -10548.398 0 274.13774 -0.0018888448 -0.0019125053 + 103550 -6247.6652 -6252.8939 5.2287479 3674.9845 620.7663 -10548.645 0 250.59094 -0.0018338512 -0.0018624217 + 103560 -6247.8119 -6252.5405 4.7285825 3673.552 621.96497 -10548.057 0 226.6202 -0.0017337742 -0.0017654087 + 103570 -6247.9609 -6252.179 4.2180693 3671.5733 623.24356 -10546.996 0 202.15355 -0.0016164688 -0.0016463004 + 103580 -6248.1078 -6251.8892 3.7813206 3669.5526 624.43409 -10545.876 0 181.2221 -0.0014993218 -0.0015232518 + 103590 -6248.2213 -6251.791 3.5697393 3667.8521 625.43317 -10545.076 0 171.08194 -0.0013889118 -0.0014070795 + 103600 -6248.2653 -6251.9825 3.7171842 3666.7297 626.18793 -10544.9 0 178.14832 -0.0012878749 -0.0013051096 + 103610 -6248.2268 -6252.4717 4.2449828 3666.42 626.66334 -10545.555 0 203.44339 -0.0012035226 -0.0012262626 + 103620 -6248.1298 -6253.1521 5.0222221 3667.1427 626.81162 -10547.106 0 240.69306 -0.0011523029 -0.001184012 + 103630 -6248.0266 -6253.8398 5.8132255 3668.9962 626.56629 -10549.402 0 278.60238 -0.0011562523 -0.0011945572 + 103640 -6247.9655 -6254.3564 6.3908556 3671.7933 625.87247 -10552.022 0 306.28566 -0.0012318474 -0.0012696921 + 103650 -6247.9572 -6254.6057 6.6484848 3674.9658 624.74251 -10554.314 0 318.6327 -0.0013769003 -0.0014073594 + 103660 -6247.9629 -6254.5981 6.6351807 3677.6398 623.30544 -10555.543 0 317.99509 -0.0015639879 -0.0015855426 + 103670 -6247.9235 -6254.4071 6.4835236 3678.8932 621.81501 -10555.115 0 310.72683 -0.0017463123 -0.0017644409 + 103680 -6247.8094 -6254.0889 6.2794628 3678.0972 620.59874 -10552.785 0 300.94709 -0.0018744919 -0.0018976053 + 103690 -6247.6509 -6253.6379 5.9869587 3675.1716 619.95919 -10548.769 0 286.92865 -0.0019152578 -0.0019475751 + 103700 -6247.5147 -6253.0292 5.5144713 3670.6174 620.06297 -10543.71 0 264.28441 -0.0018615565 -0.0018989947 + 103710 -6247.4406 -6252.3176 4.8770947 3665.3339 620.86462 -10538.516 0 233.73774 -0.0017304887 -0.0017638593 + 103720 -6247.3968 -6251.6845 4.2876344 3660.3641 622.10509 -10534.154 0 205.4875 -0.0015548599 -0.0015779796 + 103730 -6247.2962 -6251.3549 4.0587203 3656.713 623.39354 -10531.461 0 194.51665 -0.0013762295 -0.0013915006 + 103740 -6247.0548 -6251.4401 4.385232 3655.247 624.33929 -10531.026 0 210.16492 -0.0012405871 -0.0012568348 + 103750 -6246.644 -6251.8401 5.1960536 3656.5682 624.67792 -10533.086 0 249.02404 -0.0011910924 -0.0012156685 + 103760 -6246.1003 -6252.3018 6.2015815 3660.7904 624.34678 -10537.439 0 297.21458 -0.0012538231 -0.001286091 + 103770 -6245.4893 -6252.5923 7.1030593 3667.2961 623.49542 -10543.384 0 340.41846 -0.0014207547 -0.0014529537 + 103780 -6244.8477 -6252.6478 7.8001335 3674.6819 622.44097 -10549.771 0 373.82616 -0.0016417026 -0.0016669504 + 103790 -6244.1591 -6252.5699 8.41081 3681.0642 621.5887 -10555.223 0 403.09321 -0.0018363166 -0.0018565141 + 103800 -6243.407 -6252.4691 9.0620718 3684.6993 621.33426 -10558.503 0 434.30533 -0.0019252805 -0.0019503884 + 103810 -6242.6543 -6252.312 9.65768 3684.6162 621.95535 -10558.884 0 462.85022 -0.0018639554 -0.0019021172 + 103820 -6242.0395 -6251.9449 9.9053389 3680.9146 623.50553 -10556.365 0 474.71942 -0.0016579929 -0.0017065241 + 103830 -6241.6666 -6251.2782 9.6115982 3674.6242 625.74464 -10551.647 0 460.64172 -0.0013555395 -0.001402954 + 103840 -6241.5098 -6250.4307 8.9209872 3667.3148 628.15391 -10545.899 0 427.54376 -0.0010287949 -0.001065904 + 103850 -6241.4427 -6249.6769 8.2341795 3660.6982 630.05871 -10540.434 0 394.62808 -0.00075824103 -0.00078657855 + 103860 -6241.3532 -6249.2616 7.9083344 3656.2959 630.83053 -10536.388 0 379.01176 -0.00061919326 -0.00064899653 + 103870 -6241.2251 -6249.257 8.031898 3655.1226 630.10125 -10534.481 0 384.93362 -0.0006638915 -0.00070473427 + 103880 -6241.1313 -6249.5616 8.4303327 3657.3842 627.91188 -10534.858 0 404.02885 -0.00090021306 -0.0009529586 + 103890 -6241.1628 -6250.0146 8.8518222 3662.3042 624.73388 -10537.053 0 424.22899 -0.0012780578 -0.0013345116 + 103900 -6241.3525 -6250.5238 9.1712816 3668.2356 621.34219 -10540.102 0 439.53927 -0.0016958629 -0.0017461453 + 103910 -6241.6564 -6251.0994 9.4430016 3673.1441 618.57912 -10542.823 0 452.56162 -0.0020316074 -0.0020728633 + 103920 -6242.0123 -6251.7592 9.7468497 3675.3541 617.09417 -10544.207 0 467.12373 -0.0021889085 -0.0022271163 + 103930 -6242.4172 -6252.4023 9.9851525 3674.2229 617.1508 -10543.776 0 478.54453 -0.0021362335 -0.0021790078 + 103940 -6242.9272 -6252.8121 9.8848933 3670.3533 618.56229 -10541.728 0 473.73955 -0.001916568 -0.0019645719 + 103950 -6243.5706 -6252.8154 9.2448276 3665.2286 620.77801 -10538.822 0 443.06401 -0.001622409 -0.0016688177 + 103960 -6244.2784 -6252.4348 8.1563042 3660.5489 623.09031 -10536.074 0 390.89586 -0.0013541459 -0.0013920945 + 103970 -6244.922 -6251.8776 6.9555688 3657.6613 624.87855 -10534.417 0 333.34989 -0.0011859902 -0.0012152707 + 103980 -6245.4074 -6251.396 5.9886195 3657.269 625.79081 -10534.456 0 287.00825 -0.001150132 -0.0011769654 + 103990 -6245.7269 -6251.1526 5.4257786 3659.3793 625.80673 -10536.339 0 260.03376 -0.0012363317 -0.0012679044 + 104000 -6245.9416 -6251.1717 5.2301562 3663.394 625.1878 -10539.754 0 250.65843 -0.0014014787 -0.0014402413 + 104010 -6246.1343 -6251.374 5.2397775 3668.2866 624.35277 -10544.013 0 251.11954 -0.0015850321 -0.0016263404 + 104020 -6246.3593 -6251.6628 5.3035075 3672.837 623.7189 -10548.219 0 254.17384 -0.0017261213 -0.0017608499 + 104030 -6246.6072 -6252.0127 5.405473 3675.9097 623.55218 -10551.475 0 259.0606 -0.0017789686 -0.001800412 + 104040 -6246.8093 -6252.4837 5.6744586 3676.7668 623.87737 -10553.128 0 271.9519 -0.00172598 -0.0017364805 + 104050 -6246.8972 -6253.1226 6.2254313 3675.3487 624.48607 -10552.957 0 298.3576 -0.0015871329 -0.00159794 + 104060 -6246.8781 -6253.8361 6.9580132 3672.3572 625.03906 -10551.232 0 333.46703 -0.0014188817 -0.0014415681 + 104070 -6246.8487 -6254.3859 7.5371508 3668.9885 625.21502 -10548.589 0 361.22256 -0.0012948255 -0.0013312174 + 104080 -6246.9193 -6254.5437 7.6244094 3666.3822 624.8413 -10545.767 0 365.40448 -0.001271748 -0.0013120915 + 104090 -6247.1128 -6254.2697 7.1568735 3665.1057 623.95722 -10543.333 0 342.99754 -0.0013602415 -0.0013918817 + 104100 -6247.3435 -6253.7438 6.4003317 3665.0016 622.79211 -10541.538 0 306.73981 -0.0015208291 -0.0015394059 + 104110 -6247.495 -6253.2182 5.7232052 3665.4574 621.67513 -10540.351 0 274.2881 -0.0016886839 -0.0017014844 + 104120 -6247.5194 -6252.8265 5.3071269 3665.8553 620.91563 -10539.597 0 254.3473 -0.0018087162 -0.001827522 + 104130 -6247.4664 -6252.5239 5.0574773 3665.8813 620.69594 -10539.101 0 242.38269 -0.0018576584 -0.0018882368 + 104140 -6247.4254 -6252.1999 4.7744741 3665.5475 621.01161 -10538.759 0 228.81959 -0.0018432955 -0.0018812593 + 104150 -6247.4415 -6251.8398 4.39835 3665.0284 621.68244 -10538.551 0 210.79361 -0.00178906 -0.0018251309 + 104160 -6247.4826 -6251.5738 4.091188 3664.5073 622.43312 -10538.514 0 196.07269 -0.0017192426 -0.0017480644 + 104170 -6247.4781 -6251.5751 4.0969891 3664.1357 623.00941 -10538.72 0 196.3507 -0.0016528755 -0.0016771114 + 104180 -6247.3834 -6251.9092 4.5257869 3664.0618 623.27836 -10539.249 0 216.9011 -0.0016033343 -0.0016300443 + 104190 -6247.2162 -6252.4698 5.2536536 3664.4274 623.27133 -10540.169 0 251.78456 -0.0015769662 -0.001610378 + 104200 -6247.0343 -6253.0531 6.0187742 3665.2889 623.1549 -10541.497 0 288.45343 -0.0015689982 -0.0016067441 + 104210 -6246.8793 -6253.4986 6.6192387 3666.5331 623.14453 -10543.176 0 317.23106 -0.0015624028 -0.0015986595 + 104220 -6246.7438 -6253.7617 7.0178584 3667.904 623.40075 -10545.066 0 336.33515 -0.0015366416 -0.0015683061 + 104230 -6246.5977 -6253.8618 7.2640796 3669.1577 623.9531 -10546.973 0 348.13545 -0.0014839014 -0.0015128174 + 104240 -6246.4362 -6253.8 7.3637719 3670.2044 624.67949 -10548.684 0 352.91327 -0.001419315 -0.0014488687 + 104250 -6246.2847 -6253.5569 7.2722013 3671.0914 625.3455 -10549.994 0 348.52469 -0.0013740991 -0.0014053298 + 104260 -6246.1639 -6253.1562 6.9923036 3671.8522 625.69225 -10550.701 0 335.11042 -0.0013763169 -0.0014080206 + 104270 -6246.066 -6252.6884 6.6223436 3672.3769 625.54555 -10550.611 0 317.37986 -0.0014345748 -0.0014658765 + 104280 -6245.97 -6252.2638 6.293805 3672.405 624.90191 -10549.571 0 301.63445 -0.0015341988 -0.0015656472 + 104290 -6245.8641 -6251.9538 6.0896399 3671.6224 623.94799 -10547.524 0 291.84971 -0.0016435424 -0.0016759418 + 104300 -6245.7476 -6251.7778 6.0301481 3669.7975 622.99717 -10544.572 0 288.99853 -0.0017241835 -0.0017574676 + 104310 -6245.617 -6251.7263 6.1092147 3666.921 622.36691 -10541.014 0 292.78785 -0.0017426281 -0.0017763107 + 104320 -6245.4611 -6251.7727 6.3115797 3663.3158 622.25005 -10537.339 0 302.48631 -0.0016834272 -0.0017175304 + 104330 -6245.2718 -6251.8629 6.5910977 3659.6607 622.63449 -10534.158 0 315.88239 -0.0015601192 -0.0015947819 + 104340 -6245.0534 -6251.919 6.8655445 3656.8645 623.30011 -10532.084 0 329.03541 -0.001416155 -0.0014503501 + 104350 -6244.8101 -6251.8868 7.0766783 3655.7938 623.8918 -10531.572 0 339.15413 -0.0013107097 -0.0013425423 + 104360 -6244.5226 -6251.7882 7.2656335 3656.9617 624.04855 -10532.798 0 348.20992 -0.0012944124 -0.0013238516 + 104370 -6244.1499 -6251.7069 7.5569919 3660.323 623.55406 -10535.584 0 362.17345 -0.0013879126 -0.0014189957 + 104380 -6243.6679 -6251.6984 8.0304659 3665.2511 622.4577 -10539.407 0 384.86498 -0.0015732662 -0.001612021 + 104390 -6243.111 -6251.7079 8.5969053 3670.6603 621.10939 -10543.478 0 412.01194 -0.0017982761 -0.0018467241 + 104400 -6242.5692 -6251.5956 9.0263086 3675.2051 620.07316 -10546.874 0 432.59135 -0.0019882127 -0.0020399449 + 104410 -6242.1207 -6251.2707 9.1500671 3677.5465 619.93148 -10548.749 0 438.52256 -0.0020622009 -0.0021055201 + 104420 -6241.7531 -6250.8192 9.0660835 3676.7245 621.04651 -10548.59 0 434.49759 -0.0019567107 -0.0019848748 + 104430 -6241.3647 -6250.4749 9.1101422 3672.6118 623.37668 -10546.463 0 436.60913 -0.0016560247 -0.0016756063 + 104440 -6240.8679 -6250.4297 9.5617243 3666.2457 626.43001 -10543.105 0 458.25148 -0.0012172916 -0.0012450182 + 104450 -6240.3036 -6250.6559 10.352364 3659.7185 629.38337 -10539.758 0 496.14337 -0.00076830733 -0.00081720969 + 104460 -6239.8454 -6250.9238 11.078379 3655.4681 631.34158 -10537.733 0 530.93808 -0.00046521382 -0.00053227127 + 104470 -6239.6743 -6250.9979 11.323539 3655.2178 631.66002 -10537.876 0 542.68751 -0.00042406811 -0.00049125462 + 104480 -6239.832 -6250.8268 10.994858 3659.1391 630.20611 -10540.172 0 526.93526 -0.00066395423 -0.00071250887 + 104490 -6240.1936 -6250.5638 10.370231 3665.7464 627.43192 -10543.742 0 496.99967 -0.0010972547 -0.001122945 + 104500 -6240.5856 -6250.4128 9.8272635 3672.5912 624.2102 -10547.214 0 470.97761 -0.0015730824 -0.0015892771 + 104510 -6240.9355 -6250.4414 9.50595 3677.3436 621.50308 -10549.288 0 455.57846 -0.0019459323 -0.001971879 + 104520 -6241.3157 -6250.5301 9.2143594 3678.6574 620.0084 -10549.196 0 441.6038 -0.0021296271 -0.0021741959 + 104530 -6241.8447 -6250.5079 8.6631914 3676.436 619.93279 -10546.877 0 415.18874 -0.0021128927 -0.0021680243 + 104540 -6242.5482 -6250.3424 7.7942537 3671.5509 620.98007 -10542.873 0 373.54437 -0.0019416503 -0.0019906561 + 104550 -6243.3229 -6250.1966 6.8736512 3665.3623 622.53655 -10538.095 0 329.42393 -0.001690407 -0.0017224474 + 104560 -6244.0245 -6250.3011 6.2765836 3659.3382 623.9388 -10533.578 0 300.8091 -0.0014395708 -0.0014572425 + 104570 -6244.5741 -6250.7712 6.1971828 3654.8212 624.69561 -10530.288 0 297.00377 -0.0012599135 -0.0012752526 + 104580 -6244.9915 -6251.5249 6.5333346 3652.8236 624.60071 -10528.949 0 313.11405 -0.001199114 -0.0012236646 + 104590 -6245.3573 -6252.344 6.9866802 3653.798 623.74295 -10529.885 0 334.84092 -0.0012702782 -0.0013074916 + 104600 -6245.7501 -6253.0056 7.2555488 3657.4664 622.44586 -10532.918 0 347.72661 -0.0014474519 -0.0014915962 + 104610 -6246.1988 -6253.3911 7.1922806 3662.8351 621.16054 -10537.387 0 344.69444 -0.001672052 -0.0017129643 + 104620 -6246.6669 -6253.5298 6.8628572 3668.4503 620.33026 -10542.31 0 328.90663 -0.0018697487 -0.0019001643 + 104630 -6247.0754 -6253.5624 6.4869589 3672.8418 620.25753 -10546.662 0 310.89147 -0.0019741156 -0.0019951321 + 104640 -6247.3592 -6253.6299 6.2706586 3675.0191 621.01571 -10549.665 0 300.52514 -0.0019507859 -0.0019712103 + 104650 -6247.5218 -6253.7533 6.2314551 3674.8055 622.43401 -10550.993 0 298.64629 -0.0018122778 -0.0018412988 + 104660 -6247.6389 -6253.8132 6.1743512 3672.8215 624.1546 -10550.789 0 295.90955 -0.0016134836 -0.0016522662 + 104670 -6247.797 -6253.6675 5.8704649 3670.1067 625.73894 -10549.513 0 281.34562 -0.0014268782 -0.0014668546 + 104680 -6248.0177 -6253.3031 5.2854155 3667.6142 626.79273 -10547.71 0 253.30677 -0.0013104301 -0.0013404077 + 104690 -6248.2379 -6252.8781 4.6401834 3665.8801 627.07561 -10545.834 0 222.38362 -0.0012869864 -0.0013028901 + 104700 -6248.3653 -6252.6104 4.2451779 3665.009 626.56156 -10544.181 0 203.45275 -0.00134501 -0.0013536134 + 104710 -6248.3565 -6252.6106 4.2540554 3664.8683 625.42933 -10542.908 0 203.87821 -0.0014550093 -0.0014684025 + 104720 -6248.2553 -6252.8006 4.5452619 3665.2728 623.98728 -10542.061 0 217.83445 -0.0015870977 -0.001612549 + 104730 -6248.1587 -6252.9904 4.8317366 3666.0205 622.56176 -10541.573 0 231.56393 -0.0017184636 -0.0017523143 + 104740 -6248.1366 -6253.0481 4.9115018 3666.8214 621.39297 -10541.262 0 235.38672 -0.001830782 -0.0018618558 + 104750 -6248.1714 -6253.0108 4.8394291 3667.2805 620.58092 -10540.872 0 231.93259 -0.0019068877 -0.0019265762 + 104760 -6248.1744 -6253.0319 4.857485 3667.0389 620.10088 -10540.172 0 232.79793 -0.0019346419 -0.0019445299 + 104770 -6248.0675 -6253.2127 5.1451873 3665.9993 619.87078 -10539.083 0 246.58624 -0.0019153571 -0.0019254145 + 104780 -6247.8541 -6253.4804 5.6262953 3664.4432 619.82732 -10537.751 0 269.64364 -0.0018663495 -0.0018855321 + 104790 -6247.616 -6253.6338 6.0177845 3662.9096 619.9683 -10536.512 0 288.406 -0.0018111704 -0.0018392984 + 104800 -6247.4364 -6253.5204 6.083992 3661.9048 620.34327 -10535.768 0 291.57903 -0.0017631634 -0.0017917139 + 104810 -6247.3211 -6253.183 5.8619623 3661.6668 621.00543 -10535.855 0 280.93812 -0.0017164053 -0.0017373876 + 104820 -6247.1951 -6252.834 5.6388987 3662.1599 621.95755 -10536.951 0 270.24767 -0.0016535572 -0.0016677171 + 104830 -6246.9787 -6252.6758 5.6971251 3663.2674 623.12131 -10539.064 0 273.0382 -0.0015652177 -0.0015814009 + 104840 -6246.6653 -6252.7341 6.0688183 3664.9667 624.34104 -10542.042 0 290.85183 -0.0014641257 -0.0014904213 + 104850 -6246.3284 -6252.856 6.5275917 3667.2974 625.41685 -10545.57 0 312.83882 -0.001381413 -0.0014168051 + 104860 -6246.0502 -6252.8644 6.8141503 3670.142 626.15581 -10549.162 0 326.57231 -0.0013473308 -0.0013821158 + 104870 -6245.8397 -6252.718 6.878375 3673.0364 626.42634 -10552.181 0 329.65032 -0.0013716904 -0.0013965818 + 104880 -6245.6179 -6252.528 6.9101062 3675.2232 626.19907 -10553.95 0 331.17106 -0.0014389086 -0.0014544093 + 104890 -6245.2905 -6252.421 7.1304536 3675.9628 625.56297 -10553.947 0 341.73135 -0.0015197076 -0.0015367552 + 104900 -6244.8404 -6252.3862 7.545841 3674.8914 624.71139 -10551.989 0 361.63904 -0.0015878745 -0.0016187203 + 104910 -6244.3529 -6252.2625 7.9096032 3672.1672 623.89585 -10548.326 0 379.07257 -0.0016285386 -0.0016760299 + 104920 -6243.9472 -6251.8832 7.9360704 3668.3305 623.35072 -10543.564 0 380.34102 -0.0016352688 -0.0016902223 + 104930 -6243.6771 -6251.2415 7.5643709 3664.0423 623.20764 -10538.491 0 362.5271 -0.0016048967 -0.0016535514 + 104940 -6243.4892 -6250.5264 7.0372059 3659.9198 623.43362 -10533.88 0 337.26239 -0.0015388224 -0.0015735838 + 104950 -6243.2651 -6250.0135 6.7483772 3656.5339 623.82769 -10530.375 0 323.4201 -0.0014497013 -0.0014746868 + 104960 -6242.9045 -6249.8908 6.9862877 3654.4682 624.09128 -10528.45 0 334.8221 -0.0013655096 -0.0013930823 + 104970 -6242.3919 -6250.1359 7.7439994 3654.2829 623.95334 -10528.372 0 371.1359 -0.0013242295 -0.0013649657 + 104980 -6241.8063 -6250.5355 8.7292122 3656.2982 623.2969 -10530.131 0 418.35283 -0.0013577818 -0.0014112222 + 104990 -6241.2598 -6250.8508 9.5909186 3660.2832 622.22658 -10533.361 0 459.65063 -0.0014710277 -0.001525094 + 105000 -6240.8022 -6251.0018 10.199578 3665.3011 621.04437 -10537.347 0 488.82099 -0.0016287909 -0.0016695197 + 105010 -6240.3765 -6251.1125 10.735939 3669.932 620.14539 -10541.19 0 514.52643 -0.0017638216 -0.0017879599 + 105020 -6239.8821 -6251.3683 11.486132 3672.8399 619.88134 -10544.09 0 550.4799 -0.0018067916 -0.0018262731 + 105030 -6239.3062 -6251.7967 12.490407 3673.385 620.44859 -10545.63 0 598.6104 -0.0017234488 -0.0017564719 + 105040 -6238.8116 -6252.1608 13.34917 3671.9038 621.8323 -10545.897 0 639.76713 -0.0015360875 -0.0015905896 + 105050 -6238.6625 -6252.1007 13.438195 3669.4526 623.80203 -10545.355 0 644.03372 -0.0013125154 -0.0013767728 + 105060 -6239.0038 -6251.4496 12.44587 3667.1666 625.95208 -10544.568 0 596.47594 -0.0011271003 -0.0011789381 + 105070 -6239.7067 -6250.4323 10.725608 3665.7095 627.79932 -10543.941 0 514.03134 -0.0010233043 -0.0010512493 + 105080 -6240.4799 -6249.516 9.0361654 3665.1932 628.93346 -10543.643 0 433.06375 -0.0010065563 -0.0010212664 + 105090 -6241.1337 -6249.0417 7.9080153 3665.4807 629.16006 -10543.682 0 378.99646 -0.0010637923 -0.0010872494 + 105100 -6241.7015 -6249.0066 7.3051235 3666.4321 628.55746 -10543.996 0 350.1025 -0.0011799855 -0.0012243544 + 105110 -6242.3174 -6249.1935 6.876103 3667.8441 627.41881 -10544.456 0 329.54144 -0.0013345607 -0.0013926955 + 105120 -6243.0338 -6249.456 6.4222282 3669.2795 626.12017 -10544.856 0 307.78921 -0.0014912943 -0.0015461037 + 105130 -6243.7775 -6249.8459 6.0684188 3670.1141 624.98617 -10544.946 0 290.83268 -0.0016034836 -0.0016436979 + 105140 -6244.4397 -6250.4962 6.056583 3669.847 624.20216 -10544.545 0 290.26544 -0.0016360258 -0.0016632408 + 105150 -6244.9699 -6251.43 6.4601194 3668.4273 623.78398 -10543.641 0 309.60517 -0.0015869406 -0.001610785 + 105160 -6245.3996 -6252.4866 7.0869694 3666.3474 623.59781 -10542.432 0 339.64734 -0.0014918512 -0.0015204826 + 105170 -6245.8011 -6253.4091 7.6080344 3664.4375 623.42101 -10541.268 0 364.6197 -0.0014080552 -0.0014424129 + 105180 -6246.225 -6254.0028 7.7778684 3663.4812 623.03194 -10540.516 0 372.7591 -0.001387427 -0.0014226833 + 105190 -6246.6619 -6254.236 7.5740245 3663.8624 622.30656 -10540.405 0 362.98975 -0.0014531802 -0.0014847374 + 105200 -6247.0593 -6254.2183 7.1590678 3665.4223 621.28986 -10540.93 0 343.1027 -0.0015918417 -0.0016200234 + 105210 -6247.3739 -6254.0871 6.7131444 3667.577 620.20986 -10541.874 0 321.73155 -0.001761421 -0.0017906907 + 105220 -6247.6124 -6253.9032 6.2908823 3669.5839 619.41759 -10542.905 0 301.49438 -0.0019079673 -0.001941785 + 105230 -6247.8191 -6253.647 5.8278827 3670.7915 619.26491 -10543.703 0 279.30484 -0.0019819211 -0.0020186186 + 105240 -6248.0286 -6253.3013 5.2726893 3670.7922 619.96364 -10544.057 0 252.69686 -0.0019509824 -0.0019849771 + 105250 -6248.2309 -6252.925 4.6940995 3669.5147 621.48438 -10543.924 0 224.96759 -0.0018101238 -0.0018371652 + 105260 -6248.3852 -6252.6344 4.2491434 3667.2982 623.53907 -10543.472 0 203.64279 -0.0015875632 -0.001608524 + 105270 -6248.4636 -6252.5191 4.0555054 3664.8957 625.65529 -10543.07 0 194.36257 -0.0013417007 -0.0013613117 + 105280 -6248.475 -6252.5836 4.1085824 3663.2971 627.31499 -10543.196 0 196.90632 -0.0011451733 -0.0011676103 + 105290 -6248.4531 -6252.7661 4.3129622 3663.3749 628.11127 -10544.252 0 206.70135 -0.0010597832 -0.0010856685 + 105300 -6248.4261 -6252.9937 4.5676258 3665.5108 627.87368 -10546.378 0 218.90626 -0.0011133985 -0.001140278 + 105310 -6248.4005 -6253.2177 4.8171694 3669.3988 626.72105 -10549.337 0 230.86579 -0.0012895652 -0.0013143779 + 105320 -6248.3623 -6253.4156 5.0533824 3674.105 625.02086 -10552.541 0 242.18644 -0.0015334492 -0.0015548427 + 105330 -6248.2874 -6253.5822 5.2947949 3678.3474 623.26771 -10555.197 0 253.75628 -0.0017707263 -0.001790197 + 105340 -6248.1576 -6253.7084 5.5507493 3680.8921 621.92568 -10556.526 0 266.02305 -0.0019324917 -0.0019536905 + 105350 -6247.9799 -6253.7572 5.7773222 3680.9341 621.29185 -10555.983 0 276.88169 -0.001977418 -0.0020033441 + 105360 -6247.7885 -6253.6689 5.8803828 3678.3193 621.42317 -10553.411 0 281.82094 -0.0019022485 -0.0019322899 + 105370 -6247.6158 -6253.42 5.8041067 3673.5309 622.14102 -10549.092 0 278.16536 -0.0017369937 -0.0017673616 + 105380 -6247.4563 -6253.0759 5.6196105 3667.5169 623.10526 -10543.698 0 269.32327 -0.0015307986 -0.0015586594 + 105390 -6247.2727 -6252.7574 5.4846889 3661.4938 623.93366 -10538.185 0 262.85707 -0.0013382734 -0.001364791 + 105400 -6247.0384 -6252.5466 5.5081879 3656.7521 624.32698 -10533.626 0 263.98327 -0.0012089477 -0.0012375165 + 105410 -6246.7594 -6252.4485 5.6891325 3654.391 624.15687 -10530.996 0 272.65515 -0.0011759708 -0.0012083665 + 105420 -6246.4537 -6252.4367 5.9829329 3655.0098 623.49209 -10530.939 0 286.73571 -0.0012449333 -0.001280229 + 105430 -6246.126 -6252.4971 6.3711551 3658.5148 622.56568 -10533.578 0 305.3415 -0.0013906112 -0.001427082 + 105440 -6245.7699 -6252.6131 6.8431279 3664.158 621.7007 -10538.472 0 327.96109 -0.0015659929 -0.0016026461 + 105450 -6245.3884 -6252.7309 7.3424398 3670.7559 621.21723 -10544.704 0 351.89092 -0.0017186226 -0.001754783 + 105460 -6244.9987 -6252.7682 7.7694287 3676.9699 621.34457 -10551.083 0 372.35462 -0.0018055264 -0.0018401206 + 105470 -6244.6178 -6252.6628 8.04498 3681.5749 622.16017 -10556.398 0 385.56058 -0.0018019733 -0.0018342999 + 105480 -6244.2492 -6252.4086 8.159425 3683.7051 623.56958 -10559.683 0 391.04543 -0.0017049122 -0.0017360926 + 105490 -6243.8915 -6252.0422 8.1507025 3683.048 625.3331 -10560.423 0 390.6274 -0.001532975 -0.0015657525 + 105500 -6243.5555 -6251.6043 8.0488272 3679.9138 627.13356 -10558.652 0 385.74496 -0.0013219562 -0.0013583952 + 105510 -6243.265 -6251.124 7.8589789 3675.1273 628.66599 -10554.917 0 376.64636 -0.0011143982 -0.0011537506 + 105520 -6243.0389 -6250.6315 7.5926043 3669.7902 629.71634 -10550.138 0 363.8802 -0.00094681964 -0.00098565496 + 105530 -6242.8734 -6250.1776 7.3041118 3665.0197 630.19308 -10545.39 0 350.05402 -0.00084148336 -0.00087595943 + 105540 -6242.7376 -6249.8395 7.101957 3661.74 630.09682 -10541.676 0 340.36563 -0.00080653989 -0.00083525528 + 105550 -6242.5861 -6249.706 7.1198168 3660.5537 629.45533 -10539.715 0 341.22157 -0.00084240324 -0.0008679458 + 105560 -6242.3864 -6249.8329 7.4464989 3661.687 628.28111 -10539.801 0 356.87801 -0.00094824363 -0.00097589858 + 105570 -6242.1454 -6250.1997 8.054331 3664.9626 626.59214 -10541.754 0 386.00873 -0.0011223584 -0.0011562174 + 105580 -6241.9123 -6250.7084 8.79606 3669.765 624.48349 -10544.957 0 421.55655 -0.0013543096 -0.0013936845 + 105590 -6241.7497 -6251.2424 9.4926907 3675.0296 622.1942 -10548.466 0 454.943 -0.001613748 -0.0016534083 + 105600 -6241.6944 -6251.7336 10.039211 3679.3672 620.1138 -10551.215 0 481.1353 -0.0018461537 -0.0018807922 + 105610 -6241.7494 -6252.1732 10.423854 3681.4084 618.70851 -10552.29 0 499.56958 -0.0019839031 -0.002013001 + 105620 -6241.9185 -6252.5587 10.640229 3680.2975 618.38784 -10551.244 0 509.9395 -0.0019715152 -0.0019999164 + 105630 -6242.2435 -6252.835 10.591488 3676.1091 619.35591 -10548.3 0 507.60355 -0.0017929637 -0.0018262994 + 105640 -6242.7897 -6252.9033 10.113542 3669.9416 621.4994 -10544.344 0 484.6977 -0.0014851708 -0.0015243515 + 105650 -6243.5722 -6252.7013 9.1290309 3663.5952 624.36386 -10540.66 0 437.51438 -0.0011288763 -0.0011690331 + 105660 -6244.496 -6252.2802 7.7842045 3658.9725 627.25382 -10538.507 0 373.06275 -0.00082145571 -0.00085633017 + 105670 -6245.3929 -6251.8 6.4070901 3657.4772 629.43926 -10538.716 0 307.06371 -0.00064608235 -0.00067332184 + 105680 -6246.1293 -6251.4428 5.3134651 3659.6446 630.38585 -10541.473 0 254.65106 -0.00065006017 -0.00067246053 + 105690 -6246.6709 -6251.3177 4.6468147 3665.0715 629.912 -10546.301 0 222.70143 -0.00083544874 -0.00085786343 + 105700 -6247.0622 -6251.4277 4.3654978 3672.5565 628.22802 -10552.212 0 209.21915 -0.0011589643 -0.0011842979 + 105710 -6247.3697 -6251.706 4.3362883 3680.3656 625.86485 -10557.936 0 207.81927 -0.0015397159 -0.0015672123 + 105720 -6247.6386 -6252.0812 4.4425748 3686.5969 623.51949 -10562.198 0 212.91311 -0.0018762648 -0.0019029667 + 105730 -6247.8801 -6252.5164 4.6362916 3689.6292 621.85603 -10564.002 0 222.19711 -0.0020730134 -0.0020967176 + 105740 -6248.0854 -6252.9971 4.9116472 3688.5738 621.3164 -10562.887 0 235.39369 -0.0020699585 -0.0020908859 + 105750 -6248.2496 -6253.4952 5.2456399 3683.5843 621.99409 -10559.074 0 251.4005 -0.0018644054 -0.0018843408 + 105760 -6248.3827 -6253.958 5.5752953 3675.8847 623.6063 -10553.449 0 267.19943 -0.0015144153 -0.0015347249 + 105770 -6248.5016 -6254.3314 5.8297117 3667.4729 625.57564 -10547.38 0 279.39249 -0.001121908 -0.0011426331 + 105780 -6248.6157 -6254.5869 5.9711259 3660.5773 627.20572 -10542.37 0 286.16986 -0.00080219892 -0.00082276594 + 105790 -6248.7234 -6254.7211 5.9977361 3657.0369 627.90378 -10539.662 0 287.44516 -0.00065053553 -0.00067078479 + 105800 -6248.8209 -6254.7321 5.9112045 3657.7932 627.37924 -10539.905 0 283.29809 -0.00071493658 -0.00073509919 + 105810 -6248.9104 -6254.6042 5.6937324 3662.6353 625.74548 -10542.985 0 272.8756 -0.00098175343 -0.0010015327 + 105820 -6248.995 -6254.3257 5.3306998 3670.2564 623.48375 -10548.066 0 255.47705 -0.0013779707 -0.0013962321 + 105830 -6249.0665 -6253.9249 4.8583604 3678.6109 621.28231 -10553.818 0 232.83989 -0.0017913615 -0.0018073314 + 105840 -6249.1052 -6253.4787 4.3734172 3685.4848 619.81521 -10558.779 0 209.59869 -0.0021042096 -0.0021189185 + 105850 -6249.0963 -6253.076 3.9796805 3689.1216 619.54222 -10561.74 0 190.72862 -0.0022294413 -0.0022453336 + 105860 -6249.0447 -6252.7746 3.7298922 3688.6946 620.58771 -10562.057 0 178.75736 -0.0021352613 -0.0021540696 + 105870 -6248.9676 -6252.5959 3.6283264 3684.4772 622.71864 -10559.792 0 173.88976 -0.0018501504 -0.0018714835 + 105880 -6248.8739 -6252.548 3.6741383 3677.7011 625.4146 -10555.664 0 176.08532 -0.001450425 -0.0014725413 + 105890 -6248.7554 -6252.6324 3.8769253 3670.2015 628.00666 -10550.841 0 185.80401 -0.0010382768 -0.0010596913 + 105900 -6248.5953 -6252.8289 4.2335956 3663.9514 629.84944 -10546.63 0 202.89766 -0.00071643563 -0.00073652352 + 105910 -6248.3776 -6253.0943 4.7167003 3660.5714 630.48543 -10544.151 0 226.05074 -0.00056280819 -0.00058161287 + 105920 -6248.0875 -6253.3817 5.2942023 3660.9193 629.76435 -10544.065 0 253.72788 -0.00060991383 -0.00062835738 + 105930 -6247.7132 -6253.6527 5.9394352 3664.8839 627.88924 -10546.426 0 284.65106 -0.00083623169 -0.00085650106 + 105940 -6247.2601 -6253.8592 6.5991601 3671.4471 625.37076 -10550.677 0 316.26878 -0.001173907 -0.0011985223 + 105950 -6246.7663 -6253.9247 7.158379 3678.9713 622.88894 -10555.785 0 343.06969 -0.001530098 -0.0015594511 + 105960 -6246.2946 -6253.7688 7.4741877 3685.6019 621.09238 -10560.463 0 358.20501 -0.0018133447 -0.0018441042 + 105970 -6245.8919 -6253.3746 7.4826316 3689.6907 620.40121 -10563.466 0 358.60969 -0.001956054 -0.0019830936 + 105980 -6245.554 -6252.8306 7.27667 3690.1852 620.89454 -10563.91 0 348.73886 -0.0019284326 -0.0019494039 + 105990 -6245.2352 -6252.2901 7.0548547 3686.9167 622.32854 -10561.535 0 338.10822 -0.0017431174 -0.0017612512 + 106000 -6244.8984 -6251.8704 6.9719494 3680.6819 624.26326 -10556.816 0 334.13494 -0.0014505479 -0.0014724159 + 106010 -6244.555 -6251.582 7.0269925 3673.0443 626.22587 -10550.852 0 336.77291 -0.0011249808 -0.0011547734 + 106020 -6244.2584 -6251.3483 7.0898247 3665.893 627.83869 -10545.08 0 339.78418 -0.00084303331 -0.00087839449 + 106030 -6244.0538 -6251.1007 7.0468875 3660.9094 628.8762 -10540.886 0 337.72639 -0.00066105058 -0.00069460342 + 106040 -6243.9287 -6250.8682 6.9394973 3659.1425 629.25522 -10539.266 0 332.57965 -0.00060140021 -0.00062733438 + 106050 -6243.814 -6250.7698 6.9558036 3660.8454 628.99137 -10540.607 0 333.36114 -0.0006551755 -0.00067522269 + 106060 -6243.6442 -6250.907 7.2628252 3665.5783 628.16248 -10544.648 0 348.07533 -0.00079781351 -0.00082066137 + 106070 -6243.4221 -6251.2517 7.8295914 3672.4288 626.90071 -10550.581 0 375.23795 -0.0010037643 -0.001037799 + 106080 -6243.227 -6251.6438 8.4167347 3680.1803 625.40404 -10557.228 0 403.37715 -0.0012482168 -0.0012940393 + 106090 -6243.152 -6251.9048 8.7527937 3687.3964 623.93892 -10563.24 0 419.48299 -0.0014972845 -0.0015469794 + 106100 -6243.2273 -6251.9623 8.7350469 3692.5438 622.81395 -10567.32 0 418.63246 -0.001700319 -0.0017441069 + 106110 -6243.4039 -6251.8699 8.4660908 3694.2908 622.32542 -10568.486 0 405.74257 -0.0017975553 -0.0018312874 + 106120 -6243.6091 -6251.7201 8.1110209 3691.9483 622.68648 -10566.355 0 388.72563 -0.0017428648 -0.0017694227 + 106130 -6243.8069 -6251.5602 7.7532616 3685.8276 623.94858 -10561.336 0 371.5798 -0.0015274249 -0.0015521209 + 106140 -6244.0023 -6251.4016 7.3993346 3677.2789 625.93307 -10554.614 0 354.61763 -0.0011893646 -0.0012154188 + 106150 -6244.207 -6251.2808 7.0738525 3668.3711 628.21459 -10547.867 0 339.01871 -0.00080586738 -0.00083401121 + 106160 -6244.4218 -6251.2688 6.847078 3661.3546 630.19876 -10542.822 0 328.1504 -0.00047393405 -0.00050415458 + 106170 -6244.6505 -6251.4139 6.7633305 3658.0837 631.2903 -10540.788 0 324.13675 -0.00028618253 -0.0003179937 + 106180 -6244.9119 -6251.6951 6.7831585 3659.5213 631.08975 -10542.306 0 325.08701 -0.00030496633 -0.00033625514 + 106190 -6245.2243 -6252.048 6.8237587 3665.4326 629.53616 -10547.017 0 327.0328 -0.00053995785 -0.00056725224 + 106200 -6245.5811 -6252.4304 6.8493382 3674.3824 626.94061 -10553.753 0 328.25872 -0.00093887466 -0.00096016802 + 106210 -6245.9509 -6252.8498 6.898902 3684.0944 623.90591 -10560.85 0 330.6341 -0.0013995325 -0.0014171242 + 106220 -6246.3102 -6253.315 7.0048927 3692.0998 621.16968 -10566.584 0 335.71376 -0.0018012229 -0.0018208725 + 106230 -6246.6783 -6253.764 7.0857239 3696.4497 619.4203 -10569.634 0 339.58765 -0.0020419639 -0.0020679273 + 106240 -6247.1073 -6254.0614 6.9541077 3696.2283 619.12302 -10569.413 0 333.27986 -0.0020656194 -0.002096133 + 106250 -6247.6233 -6254.0946 6.4712292 3691.7125 620.3868 -10566.194 0 310.13761 -0.001871662 -0.0019001391 + 106260 -6248.182 -6253.8743 5.6922567 3684.2174 622.90993 -10561.002 0 272.80488 -0.0015114474 -0.0015327489 + 106270 -6248.6934 -6253.531 4.8375948 3675.7476 626.04001 -10555.319 0 231.84468 -0.0010769722 -0.0010922448 + 106280 -6249.0919 -6253.2158 4.1239025 3668.5329 628.94849 -10550.697 0 197.64055 -0.00068221435 -0.00069751563 + 106290 -6249.3787 -6253.0098 3.6310758 3664.4895 630.86951 -10548.369 0 174.02153 -0.00043526189 -0.00045591208 + 106300 -6249.6049 -6252.9118 3.3069027 3664.7007 631.32344 -10548.936 0 158.48533 -0.00040615122 -0.00043223461 + 106310 -6249.8233 -6252.8924 3.0690772 3669.0794 630.2496 -10552.221 0 147.0874 -0.0006023508 -0.00062881676 + 106320 -6250.0501 -6252.9589 2.9087718 3676.3566 628.00615 -10557.322 0 139.40467 -0.00096348905 -0.00098444305 + 106330 -6250.2576 -6253.1745 2.9168422 3684.4433 625.2449 -10562.863 0 139.79144 -0.0013797539 -0.0013935852 + 106340 -6250.4017 -6253.6068 3.2050932 3691.0762 622.71261 -10567.396 0 153.60605 -0.0017283141 -0.0017394777 + 106350 -6250.4631 -6254.2419 3.7788162 3694.5198 621.04479 -10569.807 0 181.10208 -0.0019135765 -0.0019291904 + 106360 -6250.4693 -6254.9462 4.476871 3694.0569 620.60425 -10569.607 0 214.55678 -0.0018952026 -0.0019191064 + 106370 -6250.4766 -6255.5253 5.0486586 3690.0977 621.398 -10567.021 0 241.96005 -0.0016945678 -0.0017240372 + 106380 -6250.5241 -6255.8346 5.310511 3683.9318 623.09205 -10562.858 0 254.50949 -0.001381108 -0.0014091351 + 106390 -6250.6019 -6255.8502 5.2482929 3677.2837 625.12371 -10558.258 0 251.52764 -0.0010474549 -0.0010684755 + 106400 -6250.6628 -6255.6485 4.9857603 3671.8524 626.88096 -10554.382 0 238.94561 -0.00078315171 -0.00079722059 + 106410 -6250.6645 -6255.3246 4.6600874 3668.9351 627.89171 -10552.151 0 223.33753 -0.00065321482 -0.0006653348 + 106420 -6250.6053 -6254.923 4.317658 3669.1687 627.96 -10552.052 0 206.9264 -0.00068412054 -0.00069968809 + 106430 -6250.524 -6254.4353 3.9112543 3672.3973 627.20451 -10554.037 0 187.44925 -0.00085851439 -0.0008788204 + 106440 -6250.4668 -6253.856 3.3891876 3677.7025 625.98987 -10557.548 0 162.42888 -0.0011201794 -0.0011415575 + 106450 -6250.4504 -6253.2458 2.7954208 3683.6293 624.78137 -10561.657 0 133.97225 -0.0013897615 -0.0014069652 + 106460 -6250.448 -6252.7425 2.2944825 3688.5873 623.98203 -10565.312 0 109.96448 -0.0015882143 -0.0015992544 + 106470 -6250.4086 -6252.5015 2.0928325 3691.3241 623.81289 -10567.638 0 100.30027 -0.0016609496 -0.0016693822 + 106480 -6250.2945 -6252.6024 2.3078634 3691.3058 624.27044 -10568.179 0 110.60576 -0.0015942372 -0.0016067464 + 106490 -6250.1087 -6252.9912 2.8824055 3688.8498 625.15898 -10567 0 138.14105 -0.0014175814 -0.0014384749 + 106500 -6249.8915 -6253.5096 3.6180596 3684.9452 626.17108 -10564.626 0 173.39772 -0.0011908641 -0.0012179483 + 106510 -6249.6836 -6253.997 4.3133772 3680.8474 626.9848 -10561.829 0 206.72124 -0.00098122088 -0.0010069441 + 106520 -6249.4828 -6254.3853 4.9025472 3677.642 627.35355 -10559.381 0 234.95757 -0.00083952068 -0.00085717657 + 106530 -6249.2344 -6254.708 5.4735534 3675.9739 627.17221 -10557.854 0 262.32339 -0.00078691163 -0.00079706148 + 106540 -6248.876 -6255.0113 6.135309 3676.0151 626.5067 -10557.533 0 294.03843 -0.00081629136 -0.00082754844 + 106550 -6248.4041 -6255.2451 6.8409658 3677.5856 625.5769 -10558.408 0 327.85747 -0.00090437745 -0.00092690604 + 106560 -6247.9044 -6255.2419 7.3374722 3680.2727 624.68988 -10560.204 0 351.65284 -0.0010240334 -0.0010605604 + 106570 -6247.5013 -6254.8262 7.3248623 3683.4649 624.13782 -10562.429 0 351.0485 -0.0011488112 -0.0011910923 + 106580 -6247.2591 -6253.9803 6.7211795 3686.3628 624.09631 -10564.439 0 322.11663 -0.001250783 -0.0012857351 + 106590 -6247.1234 -6252.9203 5.7969771 3688.1024 624.57004 -10565.593 0 277.82367 -0.0013006645 -0.0013217803 + 106600 -6246.9666 -6251.9862 5.0196206 3688.053 625.41365 -10565.453 0 240.56839 -0.0012773798 -0.0012910353 + 106610 -6246.7014 -6251.4125 4.7111122 3686.1609 626.41168 -10563.985 0 225.78293 -0.0011824894 -0.0012023042 + 106620 -6246.3538 -6251.1855 4.8316457 3683.0659 627.36467 -10561.616 0 231.55957 -0.0010450136 -0.0010788653 + 106630 -6246.0274 -6251.1311 5.1036845 3679.8323 628.13467 -10559.098 0 244.5972 -0.00090739027 -0.00094975475 + 106640 -6245.7908 -6251.1361 5.3453649 3677.4561 628.6462 -10557.238 0 256.17988 -0.00080144621 -0.00083885261 + 106650 -6245.6012 -6251.2635 5.6623003 3676.5056 628.87169 -10556.641 0 271.3692 -0.00073477577 -0.00075887204 + 106660 -6245.3407 -6251.646 6.305225 3677.0967 628.82398 -10557.567 0 302.18176 -0.00069841197 -0.00071376241 + 106670 -6244.9318 -6252.2796 7.3477656 3679.0941 628.55286 -10559.927 0 352.14616 -0.00068603704 -0.00070547304 + 106680 -6244.4239 -6252.9334 8.5094619 3682.265 628.13244 -10563.331 0 407.82116 -0.00070488031 -0.00073726462 + 106690 -6243.967 -6253.2774 9.3103506 3686.2289 627.63855 -10567.145 0 446.20424 -0.00076757722 -0.00080971646 + 106700 -6243.6866 -6253.1209 9.4342674 3690.3085 627.13229 -10570.562 0 452.14303 -0.0008730131 -0.00091327125 + 106710 -6243.5818 -6252.5486 8.9667506 3693.5282 626.66508 -10572.742 0 429.737 -0.00099530382 -0.0010249664 + 106720 -6243.55 -6251.8355 8.2855442 3694.8986 626.30093 -10573.035 0 397.08977 -0.0010924205 -0.0011132579 + 106730 -6243.4995 -6251.2351 7.7355967 3693.8475 626.131 -10571.214 0 370.7332 -0.0011269081 -0.0011479921 + 106740 -6243.4239 -6250.8465 7.4226151 3690.5037 626.25552 -10567.606 0 355.73337 -0.0010814927 -0.001109935 + 106750 -6243.3765 -6250.6547 7.2782584 3685.6621 626.73159 -10563.048 0 348.81498 -0.00096153339 -0.0009969854 + 106760 -6243.4007 -6250.6403 7.2396591 3680.5115 627.51448 -10558.666 0 346.96509 -0.00079035889 -0.000827132 + 106770 -6243.4963 -6250.8254 7.3290895 3676.3142 628.43099 -10555.571 0 351.25109 -0.0006050865 -0.0006377844 + 106780 -6243.6343 -6251.2369 7.6026196 3674.1331 629.20913 -10554.579 0 364.36019 -0.00045203241 -0.0004794186 + 106790 -6243.7902 -6251.8503 8.0600904 3674.6149 629.56172 -10556.027 0 386.28476 -0.00037725195 -0.00040243946 + 106800 -6243.972 -6252.559 8.5870739 3677.8305 629.29649 -10559.686 0 411.54076 -0.00041253307 -0.00044010254 + 106810 -6244.2226 -6253.1909 8.9682691 3683.1964 628.40927 -10564.797 0 429.80977 -0.00056174235 -0.00059392268 + 106820 -6244.5897 -6253.5775 8.98784 3689.5209 627.11963 -10570.218 0 430.74772 -0.00079316722 -0.00082818131 + 106830 -6245.0796 -6253.6344 8.554828 3695.2364 625.82875 -10574.7 0 409.99536 -0.0010430219 -0.0010769825 + 106840 -6245.642 -6253.3889 7.7468821 3698.824 625.00469 -10577.218 0 371.27406 -0.0012326457 -0.0012628508 + 106850 -6246.1981 -6252.9441 6.745931 3699.3014 625.02397 -10577.269 0 323.30286 -0.0012952088 -0.0013217164 + 106860 -6246.684 -6252.4218 5.7378123 3696.5666 626.02186 -10575.01 0 274.98816 -0.0012014819 -0.0012261043 + 106870 -6247.0764 -6251.9253 4.8489541 3691.4547 627.81328 -10571.193 0 232.38909 -0.00097353882 -0.00099757232 + 106880 -6247.3881 -6251.5362 4.1481202 3685.4938 629.92233 -10566.952 0 198.80119 -0.00067961253 -0.00070238156 + 106890 -6247.6412 -6251.3378 3.6965499 3680.4473 631.71506 -10563.5 0 177.15941 -0.00041115591 -0.00043091191 + 106900 -6247.8435 -6251.4257 3.5821214 3677.8018 632.5956 -10561.823 0 171.67536 -0.00025188724 -0.00026837898 + 106910 -6247.9902 -6251.8681 3.8779202 3678.367 632.20405 -10562.439 0 185.8517 -0.00025189361 -0.00026772763 + 106920 -6248.0868 -6252.636 4.5491276 3682.0836 630.54843 -10565.268 0 218.01972 -0.00041480088 -0.00043349387 + 106930 -6248.1662 -6253.5741 5.4078146 3688.0426 628.01891 -10569.636 0 259.17282 -0.00069819701 -0.00072039678 + 106940 -6248.2742 -6254.4641 6.189913 3694.6866 625.27354 -10574.424 0 296.65536 -0.0010240976 -0.0010460982 + 106950 -6248.4299 -6255.1393 6.7094687 3700.179 623.03608 -10578.354 0 321.55539 -0.0012978723 -0.0013148587 + 106960 -6248.6045 -6255.5498 6.9453085 3702.918 621.88261 -10580.35 0 332.85815 -0.0014349697 -0.0014462497 + 106970 -6248.7505 -6255.7175 6.9670682 3702.0744 622.08987 -10579.882 0 333.901 -0.0013900529 -0.0014004837 + 106980 -6248.8529 -6255.6421 6.7892596 3697.9258 623.57863 -10577.147 0 325.37941 -0.0011760637 -0.0011915341 + 106990 -6248.9417 -6255.2762 6.334521 3691.7813 625.9464 -10573.004 0 303.58579 -0.00086107016 -0.00088270788 + 107000 -6249.0507 -6254.6023 5.5516421 3685.5082 628.5742 -10568.685 0 266.06584 -0.00054250593 -0.00056581893 + 107010 -6249.1744 -6253.7165 4.5421372 3680.8982 630.79078 -10565.405 0 217.6847 -0.00031225694 -0.00033175433 + 107020 -6249.2715 -6252.8206 3.5490799 3679.1537 632.0603 -10564.035 0 170.09182 -0.00022916096 -0.00024336211 + 107030 -6249.3031 -6252.1295 2.8264831 3680.636 632.13571 -10564.901 0 135.46093 -0.00030680177 -0.00031907865 + 107040 -6249.2612 -6251.7776 2.5164622 3684.8623 631.12273 -10567.763 0 120.60299 -0.00051465105 -0.00053003199 + 107050 -6249.166 -6251.7868 2.6208117 3690.682 629.43144 -10571.9 0 125.604 -0.00078798647 -0.00080930228 + 107060 -6249.0429 -6252.0963 3.0533566 3696.5752 627.6341 -10576.306 0 146.33398 -0.0010445329 -0.0010707922 + 107070 -6248.9017 -6252.6105 3.708763 3701.0285 626.27941 -10579.918 0 177.74473 -0.0012065208 -0.0012339523 + 107080 -6248.7293 -6253.2347 4.5053683 3702.9143 625.72527 -10581.874 0 215.92253 -0.0012234239 -0.0012479815 + 107090 -6248.4949 -6253.8913 5.3963972 3701.7877 626.04105 -10581.72 0 258.62563 -0.0010876297 -0.0011075579 + 107100 -6248.166 -6254.514 6.3480083 3698.0284 627.00595 -10579.548 0 304.23218 -0.0008373353 -0.00085441726 + 107110 -6247.734 -6255.0244 7.2904307 3692.7743 628.20072 -10575.999 0 349.39835 -0.00054580396 -0.00056425385 + 107120 -6247.2322 -6255.317 8.0848806 3687.6168 629.16225 -10572.096 0 387.47284 -0.00029964009 -0.00032320768 + 107130 -6246.7295 -6255.2777 8.5482315 3684.1106 629.5508 -10568.939 0 409.67922 -0.0001716232 -0.00020092688 + 107140 -6246.3012 -6254.8268 8.5256089 3683.269 629.27087 -10567.367 0 408.59502 -0.00019664388 -0.00022831348 + 107150 -6245.9923 -6253.9689 7.9765485 3685.2424 628.49509 -10567.706 0 382.28096 -0.00035950438 -0.00038770002 + 107160 -6245.7908 -6252.8337 7.042988 3689.297 627.57748 -10569.708 0 337.5395 -0.00059981419 -0.00062003936 + 107170 -6245.6291 -6251.6728 6.0436923 3694.0998 626.89941 -10572.672 0 289.64764 -0.00083366715 -0.00084705354 + 107180 -6245.4253 -6250.7709 5.3455057 3698.2129 626.72787 -10575.712 0 256.18663 -0.00098482322 -0.00099898556 + 107190 -6245.14 -6250.3056 5.1655264 3700.5948 627.14633 -10578.047 0 247.56101 -0.0010118678 -0.0010359132 + 107200 -6244.8021 -6250.2639 5.4618457 3700.8794 628.06522 -10579.209 0 261.76229 -0.000918029 -0.00095484413 + 107210 -6244.4749 -6250.4968 6.021899 3699.3218 629.27968 -10579.098 0 288.60319 -0.00073979729 -0.00078267585 + 107220 -6244.1853 -6250.8608 6.675484 3696.5217 630.53942 -10577.922 0 319.92665 -0.00052379384 -0.00056147633 + 107230 -6243.879 -6251.3087 7.4296659 3693.1707 631.61077 -10576.09 0 356.07128 -0.00030831272 -0.00033457104 + 107240 -6243.4491 -6251.8455 8.3964639 3689.9762 632.32253 -10574.144 0 402.40566 -0.00011997056 -0.00013908886 + 107250 -6242.8144 -6252.4116 9.5972215 3687.6934 632.59002 -10572.695 0 459.9527 1.8634785e-05 -4.6136886e-06 + 107260 -6241.978 -6252.8264 10.848412 3687.0703 632.4151 -10572.312 0 519.91675 8.3677366e-05 4.7172661e-05 + 107270 -6241.0158 -6252.8556 11.839815 3688.6215 631.86864 -10573.346 0 567.43039 5.6010345e-05 6.2136046e-06 + 107280 -6240.0122 -6252.3446 12.332435 3692.3368 631.06808 -10575.75 0 591.03947 -6.5592962e-05 -0.00011989047 + 107290 -6239.0001 -6251.3181 12.318005 3697.5162 630.15863 -10578.993 0 590.34793 -0.00025507402 -0.00030278182 + 107300 -6237.9483 -6249.988 12.03965 3702.8528 629.29869 -10582.139 0 577.00759 -0.00046134375 -0.00049704449 + 107310 -6236.7958 -6248.672 11.876207 3706.7724 628.64687 -10584.091 0 569.17447 -0.00062149069 -0.00064981461 + 107320 -6235.5109 -6247.6567 12.145766 3707.939 628.35033 -10583.946 0 582.09326 -0.00067946906 -0.00071264087 + 107330 -6234.1561 -6247.0723 12.916181 3705.7513 628.53146 -10581.355 0 619.01587 -0.00060395926 -0.0006528049 + 107340 -6232.9062 -6246.8681 13.961909 3700.5946 629.26171 -10576.724 0 669.133 -0.00039836073 -0.00046284986 + 107350 -6231.9759 -6246.9205 14.944618 3693.7101 630.51529 -10571.146 0 716.22994 -9.8470794e-05 -0.00016676695 + 107360 -6231.5024 -6247.1633 15.660924 3686.7946 632.12266 -10566.081 0 750.55933 0.00023801405 0.00017999254 + 107370 -6231.5033 -6247.6114 16.108093 3681.5813 633.76567 -10562.958 0 771.99019 0.000542311 0.00049943023 + 107380 -6231.9379 -6248.2798 16.341943 3679.5101 635.04197 -10562.832 0 783.19762 0.00074469453 0.00070901079 + 107390 -6232.7887 -6249.09 16.301274 3681.4472 635.58943 -10566.127 0 781.2485 0.00078755698 0.00074501388 + 107400 -6234.0697 -6249.8333 15.76356 3687.4279 635.2278 -10572.489 0 755.47823 0.00064194487 0.00058450267 + 107410 -6235.728 -6250.245 14.516985 3696.4826 634.05049 -10580.778 0 695.73538 0.00032456993 0.0002580208 + 107420 -6237.5426 -6250.1813 12.638722 3706.6889 632.40875 -10589.279 0 605.71846 -9.3778356e-05 -0.00015430927 + 107430 -6239.1936 -6249.7576 10.564041 3715.5767 630.79262 -10596.127 0 506.28814 -0.00050173297 -0.00054484725 + 107440 -6240.4548 -6249.2968 8.841936 3720.8251 629.67839 -10599.8 0 423.75518 -0.00078227898 -0.00080943591 + 107450 -6241.2877 -6249.1188 7.831042 3721.0043 629.40511 -10599.528 0 375.30747 -0.00085200728 -0.00087557329 + 107460 -6241.8014 -6249.3472 7.5457902 3716.0869 630.09132 -10595.525 0 361.6366 -0.00068981671 -0.00072278788 + 107470 -6242.1741 -6249.8769 7.7028325 3707.5028 631.58812 -10588.968 0 369.16295 -0.00034545323 -0.0003912127 + 107480 -6242.5673 -6250.5123 7.945004 3697.6785 633.48319 -10581.674 0 380.76917 7.7583239e-05 2.7220568e-05 + 107490 -6243.0491 -6251.1432 8.0941029 3689.2619 635.18087 -10575.586 0 387.91483 0.00045772352 0.00041458308 + 107500 -6243.5831 -6251.8021 8.2190899 3684.3819 636.0662 -10572.25 0 393.90491 0.00069178078 0.00066082049 + 107510 -6244.0981 -6252.5591 8.4610232 3684.1909 635.71237 -10572.462 0 405.49971 0.00071809244 0.00069404094 + 107520 -6244.5754 -6253.3778 8.8023427 3688.707 634.04801 -10576.133 0 421.85765 0.000525611 0.00049922794 + 107530 -6245.0664 -6254.0896 9.0232075 3696.8529 631.40535 -10582.348 0 432.44273 0.00015531754 0.00012230409 + 107540 -6245.6302 -6254.5124 8.8821914 3706.6579 628.42747 -10589.598 0 425.68445 -0.00030480517 -0.00034097994 + 107550 -6246.262 -6254.5839 8.3218614 3715.6831 625.87683 -10596.144 0 398.83029 -0.0007370886 -0.00077001112 + 107560 -6246.8914 -6254.3835 7.4920187 3721.6607 624.41879 -10600.463 0 359.05957 -0.0010262027 -0.0010528063 + 107570 -6247.4408 -6254.0405 6.5996902 3723.1551 624.44419 -10601.64 0 316.29419 -0.0010959581 -0.0011180504 + 107580 -6247.8773 -6253.6421 5.7647495 3719.9762 625.96895 -10599.587 0 276.27914 -0.00093384007 -0.00095484987 + 107590 -6248.2134 -6253.2195 5.0061032 3713.1869 628.62752 -10595.034 0 239.92056 -0.00059249441 -0.00061393438 + 107600 -6248.475 -6252.7988 4.3238292 3704.7411 631.76215 -10589.302 0 207.22216 -0.00017016967 -0.00019120211 + 107610 -6248.6761 -6252.4413 3.7652257 3696.9112 634.5918 -10583.944 0 180.45074 0.00021937209 0.00019983462 + 107620 -6248.819 -6252.2286 3.4095681 3691.6959 636.42044 -10580.345 0 163.40564 0.00047668433 0.00045828702 + 107630 -6248.9103 -6252.2122 3.3018926 3690.3469 636.82603 -10579.385 0 158.24522 0.0005400855 0.00052163576 + 107640 -6248.9679 -6252.3851 3.4171846 3693.0927 635.77038 -10581.248 0 163.77066 0.00040026796 0.00038156363 + 107650 -6249.0078 -6252.7072 3.6994283 3699.1022 633.59321 -10585.403 0 177.29736 0.00010338696 8.5560554e-05 + 107660 -6249.0242 -6253.1534 4.1291476 3706.715 630.89597 -10590.764 0 197.89192 -0.00026106429 -0.00027766097 + 107670 -6248.9919 -6253.7174 4.7254416 3713.9175 628.3627 -10595.998 0 226.46968 -0.0005876651 -0.00060550656 + 107680 -6248.8975 -6254.3577 5.4602141 3718.9334 626.58009 -10599.871 0 261.68409 -0.00078910228 -0.00081213966 + 107690 -6248.768 -6254.9555 6.1874782 3720.7042 625.90252 -10601.562 0 296.53867 -0.00082183008 -0.00085131536 + 107700 -6248.6582 -6255.3563 6.6980572 3719.0818 626.38467 -10600.823 0 321.00848 -0.00069250066 -0.00072464929 + 107710 -6248.6024 -6255.466 6.8636064 3714.7286 627.79141 -10597.986 0 328.94253 -0.00044672756 -0.00047542154 + 107720 -6248.584 -6255.3035 6.7194583 3708.8574 629.68173 -10593.843 0 322.03414 -0.00015088028 -0.00017295599 + 107730 -6248.5554 -6254.9598 6.4043578 3702.9373 631.5427 -10589.44 0 306.93276 0.00012405867 0.00010627408 + 107740 -6248.4844 -6254.5162 6.0318187 3698.3985 632.93079 -10585.846 0 289.0786 0.00031527599 0.00029644991 + 107750 -6248.3787 -6254.0023 5.623607 3696.3331 633.57834 -10583.914 0 269.5148 0.0003801921 0.00035674875 + 107760 -6248.2701 -6253.4225 5.1523707 3697.2276 633.43878 -10584.089 0 246.93051 0.00030734768 0.00028007699 + 107770 -6248.1807 -6252.8104 4.6296527 3700.8172 632.66749 -10586.295 0 221.87894 0.00012093623 9.360906e-05 + 107780 -6248.1027 -6252.2492 4.1464831 3706.1452 631.55513 -10589.949 0 198.72273 -0.00012570359 -0.00014984048 + 107790 -6248.0058 -6251.8423 3.8365153 3711.8276 630.4408 -10594.111 0 183.86734 -0.00036609215 -0.00038676586 + 107800 -6247.857 -6251.6627 3.8057542 3716.4365 629.62968 -10597.729 0 182.39309 -0.00053895574 -0.0005587056 + 107810 -6247.6362 -6251.7207 4.0845306 3718.8772 629.33051 -10599.928 0 195.75362 -0.00060223502 -0.00062429105 + 107820 -6247.3422 -6251.9652 4.6230431 3718.6519 629.6185 -10600.236 0 221.56217 -0.00054054494 -0.00056638987 + 107830 -6246.9883 -6252.3132 5.3249166 3715.9446 630.42539 -10598.683 0 255.19988 -0.00036674917 -0.00039494433 + 107840 -6246.5912 -6252.6901 6.0989106 3711.5271 631.55799 -10595.775 0 292.29402 -0.00011816876 -0.00014528283 + 107850 -6246.1598 -6253.0563 6.8965079 3706.5438 632.7454 -10592.345 0 330.51935 0.00015245675 0.00012931563 + 107860 -6245.6933 -6253.4025 7.7091865 3702.2471 633.70772 -10589.357 0 369.46747 0.00038969634 0.00037038389 + 107870 -6245.1935 -6253.7183 8.5248763 3699.7416 634.22831 -10587.688 0 408.5599 0.00054780851 0.00052847357 + 107880 -6244.6872 -6253.9531 9.2659184 3699.7643 634.20631 -10587.924 0 444.0748 0.00059828939 0.00057361743 + 107890 -6244.2414 -6253.997 9.755537 3702.5179 633.67254 -10590.187 0 467.54007 0.00053194151 0.00049969183 + 107900 -6243.9428 -6253.7251 9.7823397 3707.5566 632.76604 -10594.048 0 468.82461 0.00035986776 0.00032421099 + 107910 -6243.8338 -6253.1067 9.272963 3713.769 631.68546 -10598.561 0 444.41242 0.00011654492 8.5682756e-05 + 107920 -6243.8622 -6252.2881 8.4258822 3719.5623 630.64315 -10602.494 0 403.81555 -0.00014036696 -0.00016188992 + 107930 -6243.9144 -6251.5302 7.615739 3723.3104 629.84363 -10604.684 0 364.98894 -0.00034248518 -0.00035913578 + 107940 -6243.9144 -6251.0225 7.1080718 3723.9234 629.47783 -10604.424 0 340.65869 -0.00043401009 -0.00045541258 + 107950 -6243.8847 -6250.7588 6.8740904 3721.2249 629.6996 -10601.683 0 329.44498 -0.00039131814 -0.00042249612 + 107960 -6243.9036 -6250.608 6.7043484 3715.9374 630.56768 -10597.113 0 321.30999 -0.0002263471 -0.00026262958 + 107970 -6244.0102 -6250.4936 6.4833442 3709.3733 631.98001 -10591.847 0 310.71823 2.3530855e-05 -8.5687005e-06 + 107980 -6244.1596 -6250.4849 6.3252572 3703.0804 633.65199 -10587.217 0 303.14182 0.00030681259 0.00028307798 + 107990 -6244.2693 -6250.7163 6.4469659 3698.5742 635.17001 -10584.46 0 308.97478 0.00056352802 0.00054275885 + 108000 -6244.305 -6251.2272 6.9222076 3697.1086 636.10926 -10584.445 0 331.75103 0.00073001677 0.00070225108 + 108010 -6244.326 -6251.88 7.554003 3699.3894 636.17349 -10587.443 0 362.03021 0.00075180898 0.00071237355 + 108020 -6244.4459 -6252.4378 7.9919226 3705.2476 635.30455 -10592.99 0 383.01777 0.00060638065 0.00056135803 + 108030 -6244.7341 -6252.7442 8.0100422 3713.4519 633.71941 -10599.916 0 383.88617 0.00032436172 0.00028582371 + 108040 -6245.1493 -6252.8426 7.693254 3721.8968 631.85747 -10606.597 0 368.7039 -9.7348511e-06 -3.5050577e-05 + 108050 -6245.582 -6252.9103 7.3282871 3728.2489 630.25554 -10611.415 0 351.21264 -0.00028681572 -0.00030417487 + 108060 -6245.9706 -6253.0629 7.092235 3730.8063 629.39045 -10613.26 0 339.89969 -0.00041903456 -0.00044019309 + 108070 -6246.3611 -6253.2402 6.8791286 3729.1017 629.53204 -10611.874 0 329.68644 -0.00037354958 -0.00040456223 + 108080 -6246.8396 -6253.3035 6.4639057 3723.9367 630.64695 -10607.887 0 309.78663 -0.00017591905 -0.00021147595 + 108090 -6247.4194 -6253.2214 5.8019401 3716.9423 632.39311 -10602.557 0 278.06152 0.00010996826 8.0075611e-05 + 108100 -6248.0174 -6253.1273 5.109905 3710.0129 634.22304 -10597.363 0 244.89532 0.00040551351 0.00038589592 + 108110 -6248.5356 -6253.1964 4.6607097 3704.8639 635.56286 -10593.623 0 223.36736 0.00063389823 0.00062017718 + 108120 -6248.9429 -6253.4886 4.5456555 3702.7269 635.99309 -10592.209 0 217.85332 0.00073309024 0.00071742857 + 108130 -6249.278 -6253.9087 4.6306608 3704.1149 635.36561 -10593.389 0 221.92725 0.00067050766 0.00064915639 + 108140 -6249.5961 -6254.2945 4.6983975 3708.6672 633.83134 -10596.793 0 225.17357 0.00045613172 0.00043208507 + 108150 -6249.916 -6254.539 4.6229961 3715.1739 631.78648 -10601.499 0 221.55991 0.00014525084 0.00012468288 + 108160 -6250.2079 -6254.6464 4.4384656 3721.8635 629.76196 -10606.272 0 212.71617 -0.00017518731 -0.00018883997 + 108170 -6250.4224 -6254.6877 4.2653048 3726.9165 628.28649 -10609.891 0 204.41734 -0.00041392198 -0.000422963 + 108180 -6250.5345 -6254.7091 4.1746045 3729.0312 627.75273 -10611.493 0 200.07047 -0.00050543885 -0.00051562629 + 108190 -6250.5654 -6254.682 4.1165509 3727.8107 628.31315 -10610.806 0 197.28822 -0.00042985463 -0.00044521217 + 108200 -6250.5648 -6254.5407 3.9758643 3723.8221 629.83149 -10608.194 0 190.54573 -0.00021551211 -0.00023507345 + 108210 -6250.5709 -6254.265 3.6940866 3718.3433 631.91062 -10604.519 0 177.04136 7.3824215e-05 5.4629348e-05 + 108220 -6250.5848 -6253.9243 3.3395382 3712.9431 633.99924 -10600.867 0 160.04941 0.00035952167 0.00034457153 + 108230 -6250.5783 -6253.6448 3.0664901 3709.0604 635.55013 -10598.255 0 146.96341 0.00056898662 0.00055828288 + 108240 -6250.5226 -6253.5324 3.0097669 3707.6803 636.18005 -10597.393 0 144.24492 0.00065284821 0.00064288163 + 108250 -6250.4114 -6253.6157 3.2042636 3709.1346 635.7783 -10598.529 0 153.56629 0.00059641629 0.00058327429 + 108260 -6250.2635 -6253.846 3.5825583 3713.0358 634.52922 -10601.411 0 171.6963 0.00042341888 0.00040585721 + 108270 -6250.1054 -6254.1446 4.0391896 3718.3603 632.84358 -10605.348 0 193.58063 0.00019008917 0.00017017416 + 108280 -6249.9491 -6254.4546 4.5054503 3723.6955 631.22579 -10609.376 0 215.92646 -3.0437205e-05 -4.9468308e-05 + 108290 -6249.7822 -6254.758 4.9757324 3727.6249 630.12366 -10612.507 0 238.46501 -0.00016996826 -0.00018679259 + 108300 -6249.5812 -6255.0472 5.4660383 3729.1531 629.80837 -10614.009 0 261.96323 -0.0001866476 -0.00020326823 + 108310 -6249.3378 -6255.28 5.9422602 3728.0181 630.31606 -10613.614 0 284.78645 -7.8271119e-05 -9.8441309e-05 + 108320 -6249.0762 -6255.3621 6.2859086 3724.7537 631.45962 -10611.575 0 301.25601 0.00011776394 9.1941683e-05 + 108330 -6248.8436 -6255.1825 6.3389549 3720.4676 632.90029 -10608.55 0 303.79829 0.00033837097 0.00030887221 + 108340 -6248.6776 -6254.6826 6.0049999 3716.4325 634.2546 -10605.37 0 287.79329 0.00051757346 0.00048971946 + 108350 -6248.577 -6253.911 5.3340299 3713.6691 635.20417 -10602.784 0 255.63664 0.00060919554 0.00058799943 + 108360 -6248.4994 -6253.0232 4.5238324 3712.6859 635.57606 -10601.285 0 216.80743 0.00060006967 0.00058626661 + 108370 -6248.3897 -6252.2167 3.8270605 3713.4472 635.37188 -10601.036 0 183.41421 0.00050881566 0.00049775394 + 108380 -6248.2194 -6251.6385 3.419167 3715.5247 634.74177 -10601.905 0 163.86567 0.00037276827 0.00035758903 + 108390 -6248.0072 -6251.328 3.3207769 3718.3052 633.91701 -10603.55 0 159.15026 0.00023181042 0.00020902025 + 108400 -6247.8009 -6251.2469 3.4459175 3721.1401 633.12592 -10605.513 0 165.1477 0.00011818228 9.097188e-05 + 108410 -6247.6269 -6251.3737 3.7467446 3723.4137 632.52357 -10607.311 0 179.56502 5.475807e-05 3.0371618e-05 + 108420 -6247.45 -6251.7614 4.311483 3724.617 632.16275 -10608.541 0 206.63046 5.6078927e-05 3.8906171e-05 + 108430 -6247.1918 -6252.4792 5.2873779 3724.4971 632.01506 -10608.991 0 253.40082 0.00012528753 0.0001122703 + 108440 -6246.8054 -6253.4805 6.675136 3723.2142 632.02354 -10608.718 0 319.90997 0.00024804681 0.0002313893 + 108450 -6246.3398 -6254.5381 8.1982855 3721.3485 632.15288 -10608.039 0 392.90784 0.00039231608 0.00036717724 + 108460 -6245.9231 -6255.3292 9.4061008 3719.6764 632.41055 -10607.416 0 450.79313 0.00052021164 0.00048964854 + 108470 -6245.6671 -6255.6142 9.9470415 3718.8309 632.83333 -10607.278 0 476.71804 0.0006061663 0.00057813131 + 108480 -6245.5831 -6255.3539 9.7707412 3719.0689 633.45228 -10607.875 0 468.26874 0.00064698217 0.00062640563 + 108490 -6245.5939 -6254.6793 9.0853432 3720.2746 634.25744 -10609.211 0 435.42063 0.00065548003 0.00063955941 + 108500 -6245.6175 -6253.7652 8.1477085 3722.1318 635.17966 -10611.077 0 390.48391 0.00064506643 0.00062623272 + 108510 -6245.629 -6252.7371 7.1081455 3724.2861 636.09778 -10613.121 0 340.66221 0.00062028986 0.00059339013 + 108520 -6245.6519 -6251.6808 6.0288265 3726.3863 636.86914 -10614.936 0 288.93519 0.0005805493 0.00054718547 + 108530 -6245.7072 -6250.7083 5.0011098 3728.0412 637.37176 -10616.121 0 239.68124 0.00053047875 0.0004969592 + 108540 -6245.7794 -6249.9879 4.2084806 3728.8206 637.53902 -10616.348 0 201.694 0.00048500377 0.00045656839 + 108550 -6245.8267 -6249.6895 3.8627605 3728.3805 637.37066 -10615.441 0 185.12516 0.00046340878 0.00044030595 + 108560 -6245.8144 -6249.8912 4.0767934 3726.6584 636.91644 -10613.466 0 195.38282 0.00047746414 0.00045593637 + 108570 -6245.7383 -6250.5323 4.79398 3723.991 636.24388 -10610.767 0 229.75442 0.00052349855 0.00049980873 + 108580 -6245.6205 -6251.4502 5.8297382 3721.0533 635.41047 -10607.914 0 279.39376 0.00058387129 0.00055712298 + 108590 -6245.4897 -6252.4583 6.9686554 3718.6462 634.45904 -10605.564 0 333.97707 0.00063511934 0.00060675696 + 108600 -6245.3707 -6253.3935 8.0228848 3717.4487 633.43817 -10604.28 0 384.50166 0.00065625739 0.00062793541 + 108610 -6245.2899 -6254.1198 8.829933 3717.8331 632.42806 -10604.381 0 423.17993 0.00063389393 0.00060644066 + 108620 -6245.2769 -6254.5298 9.2528834 3719.7707 631.54503 -10605.846 0 443.45009 0.00056564115 0.00053942785 + 108630 -6245.3491 -6254.5752 9.2260646 3722.8224 630.91865 -10608.316 0 442.16478 0.00046325117 0.0004382733 + 108640 -6245.4965 -6254.2933 8.7968735 3726.2293 630.66327 -10611.186 0 421.59554 0.00035295512 0.0003281703 + 108650 -6245.6921 -6253.7855 8.0933233 3729.1171 630.86688 -10613.769 0 387.87746 0.00026951996 0.00024315354 + 108660 -6245.9188 -6253.1589 7.2401145 3730.7594 631.59232 -10615.511 0 346.98691 0.00024535355 0.00021706318 + 108670 -6246.1755 -6252.4997 6.3241197 3730.7878 632.86259 -10616.15 0 303.0873 0.00030064122 0.00027321364 + 108680 -6246.4532 -6251.9032 5.4500581 3729.2767 634.61549 -10615.795 0 261.19737 0.00043845106 0.00041590234 + 108690 -6246.7145 -6251.5074 4.7928299 3726.7229 636.65263 -10614.883 0 229.6993 0.00064265073 0.00062558681 + 108700 -6246.9165 -6251.4472 4.530718 3723.9751 638.63137 -10614.054 0 217.13743 0.00087549841 0.00085894719 + 108710 -6247.0581 -6251.7518 4.6936517 3722.0907 640.12819 -10613.971 0 224.94612 0.0010786083 0.001055862 + 108720 -6247.2003 -6252.2971 5.0968694 3722.0435 640.75841 -10615.099 0 244.27058 0.0011857845 0.0011549848 + 108730 -6247.4247 -6252.8824 5.4576769 3724.3119 640.30618 -10617.5 0 261.5625 0.0011489615 0.0011154663 + 108740 -6247.7698 -6253.3629 5.5931062 3728.5499 638.81496 -10620.728 0 268.05303 0.00096434976 0.00093610517 + 108750 -6248.2042 -6253.7161 5.5118702 3733.5851 636.60059 -10623.902 0 264.15975 0.00068048314 0.00066088267 + 108760 -6248.6633 -6253.9932 5.3299307 3737.8115 634.17438 -10625.979 0 255.44018 0.00038060967 0.00036576864 + 108770 -6249.1079 -6254.2234 5.1155269 3739.7979 632.09724 -10626.119 0 245.16475 0.00014950318 0.00013233916 + 108780 -6249.5432 -6254.3706 4.8274377 3738.8092 630.81285 -10623.993 0 231.3579 4.3682636e-05 2.0517388e-05 + 108790 -6249.9846 -6254.3828 4.3982519 3735.0119 630.51853 -10619.913 0 210.78891 7.7992743e-05 5.1269398e-05 + 108800 -6250.4179 -6254.2714 3.8534643 3729.3427 631.12029 -10614.734 0 184.67963 0.0002284254 0.00020357849 + 108810 -6250.8014 -6254.1322 3.3308092 3723.1861 632.2854 -10609.604 0 159.63107 0.00044356753 0.00042391283 + 108820 -6251.0984 -6254.088 2.9896802 3718.0224 633.56437 -10605.675 0 143.28225 0.00065885479 0.00064332046 + 108830 -6251.3023 -6254.209 2.9067308 3715.1174 634.53325 -10603.86 0 139.30685 0.00081207374 0.00079695871 + 108840 -6251.4365 -6254.4767 3.0401865 3715.2581 634.91296 -10604.648 0 145.70279 0.00085918999 0.00084164197 + 108850 -6251.5362 -6254.8095 3.2732479 3718.5497 634.63893 -10607.998 0 156.8724 0.00078729623 0.00076751962 + 108860 -6251.627 -6255.12 3.492975 3724.3362 633.86778 -10613.324 0 167.40296 0.00061986746 0.00060064155 + 108870 -6251.7115 -6255.3594 3.6478862 3731.3152 632.92245 -10619.597 0 174.82718 0.00041090266 0.00039514607 + 108880 -6251.7717 -6255.5226 3.7509239 3737.8537 632.19138 -10625.568 0 179.76532 0.00022868723 0.00021708159 + 108890 -6251.7845 -6255.6202 3.8356789 3742.43 632.0104 -10630.061 0 183.82726 0.00013441729 0.00012483636 + 108900 -6251.7403 -6255.6449 3.9046745 3744.0548 632.56029 -10632.26 0 187.13391 0.00016307727 0.00015214984 + 108910 -6251.6516 -6255.5616 3.9100034 3742.5302 633.80821 -10631.9 0 187.3893 0.00031282112 0.00029844197 + 108920 -6251.5466 -6255.3283 3.781724 3738.4628 635.50796 -10629.299 0 181.24143 0.00054582287 0.00052876971 + 108930 -6251.4506 -6254.9365 3.4858922 3733.0448 637.25873 -10625.24 0 167.06351 0.00079984825 0.00078322989 + 108940 -6251.3685 -6254.4393 3.0708052 3727.6986 638.60704 -10620.745 0 147.17022 0.0010065816 0.00099335733 + 108950 -6251.2811 -6253.9438 2.6627276 3723.708 639.16645 -10616.818 0 127.61285 0.0011106267 0.0011009794 + 108960 -6251.1599 -6253.5656 2.4057351 3721.9369 638.72336 -10614.226 0 115.29632 0.0010832202 0.0010739199 + 108970 -6250.989 -6253.3728 2.3837096 3722.6735 637.30049 -10613.347 0 114.24074 0.00092761897 0.00091416604 + 108980 -6250.779 -6253.3607 2.5817023 3725.5917 635.16055 -10614.113 0 123.72966 0.00067711383 0.00065723542 + 108990 -6250.5589 -6253.4801 2.9211933 3729.8147 632.74729 -10616.042 0 139.99997 0.00038848187 0.00036410128 + 109000 -6250.3488 -6253.6946 3.3458663 3734.0896 630.57735 -10618.362 0 160.35269 0.00013197026 0.00010754262 + 109010 -6250.1363 -6254.012 3.8757446 3737.0938 629.11225 -10620.218 0 185.74743 -2.3723004e-05 -4.5436435e-05 + 109020 -6249.8882 -6254.444 4.5557522 3737.8394 628.64891 -10620.932 0 218.33721 -3.1516602e-05 -5.207961e-05 + 109030 -6249.5942 -6254.9275 5.3332441 3736.0385 629.25786 -10620.224 0 255.59898 0.00011552488 9.2401282e-05 + 109040 -6249.2952 -6255.3029 6.0077012 3732.2376 630.77608 -10618.317 0 287.92275 0.00037866107 0.00035208565 + 109050 -6249.0534 -6255.401 6.3476286 3727.6213 632.84854 -10615.871 0 304.21398 0.00068726601 0.00066108458 + 109060 -6248.89 -6255.1696 6.2796691 3723.5884 635.01333 -10613.771 0 300.95698 0.00096501334 0.00094381963 + 109070 -6248.7619 -6254.7101 5.9481937 3721.3311 636.82107 -10612.862 0 285.07082 0.0011529778 0.0011363743 + 109080 -6248.6086 -6254.1805 5.5718666 3721.5777 637.95835 -10613.717 0 267.03511 0.0012195793 0.0012014731 + 109090 -6248.4177 -6253.6632 5.2455383 3724.4887 638.32822 -10616.48 0 251.39563 0.0011602756 0.0011347627 + 109100 -6248.2384 -6253.1346 4.8962743 3729.612 638.05361 -10620.8 0 234.65694 0.00099600283 0.00096399143 + 109110 -6248.1265 -6252.564 4.4375331 3735.8835 637.40679 -10625.854 0 212.67148 0.00077318453 0.00074248965 + 109120 -6248.0779 -6252.0282 3.9503095 3741.782 636.7034 -10630.514 0 189.32099 0.00055854353 0.00053668157 + 109130 -6248.02 -6251.7036 3.6836636 3745.7225 636.20721 -10633.633 0 176.54183 0.00042163861 0.00040836949 + 109140 -6247.8715 -6251.7287 3.8572405 3746.5925 636.07085 -10634.392 0 184.86061 0.00040900593 0.00039628396 + 109150 -6247.6115 -6252.0722 4.4606616 3744.1658 636.31132 -10632.549 0 213.77993 0.00052443458 0.00050397633 + 109160 -6247.2936 -6252.5452 5.2515049 3739.1654 636.81044 -10628.521 0 251.68158 0.00072842678 0.00069944241 + 109170 -6246.9919 -6252.9485 5.9566492 3732.9605 637.34108 -10623.25 0 285.47605 0.0009570167 0.00092654052 + 109180 -6246.7306 -6253.2128 6.4821454 3727.0995 637.62667 -10617.939 0 310.66078 0.0011470459 0.0011227115 + 109190 -6246.4693 -6253.4 6.930779 3722.9133 637.42956 -10613.743 0 332.16182 0.0012529976 0.0012355801 + 109200 -6246.1582 -6253.5816 7.4234325 3721.2915 636.63969 -10611.513 0 355.77254 0.0012509456 0.0012340008 + 109210 -6245.806 -6253.7242 7.9182782 3722.5754 635.32438 -10611.624 0 379.48832 0.0011370085 0.0011136563 + 109220 -6245.4859 -6253.7038 8.2179553 3726.4789 633.7158 -10613.898 0 393.85053 0.00092877322 0.00089860664 + 109230 -6245.271 -6253.4315 8.1605156 3732.0546 632.14491 -10617.631 0 391.0977 0.00066884187 0.00063800113 + 109240 -6245.165 -6252.9634 7.7984021 3737.8265 630.95618 -10621.746 0 373.74319 0.00042157882 0.0003960609 + 109250 -6245.1023 -6252.4758 7.3735492 3742.1728 630.43837 -10625.087 0 353.38185 0.00025706737 0.0002363875 + 109260 -6245.0169 -6252.1248 7.1078639 3743.8594 630.7832 -10626.767 0 340.64872 0.00022780465 0.00020565642 + 109270 -6244.9032 -6251.9309 7.0276339 3742.4655 632.05745 -10626.454 0 336.80365 0.0003513551 0.00032216614 + 109280 -6244.8068 -6251.8035 6.9966159 3738.4846 634.173 -10624.461 0 335.31709 0.00060756446 0.00057158829 + 109290 -6244.7665 -6251.6606 6.8940497 3733.1113 636.86407 -10621.636 0 330.40154 0.00094735464 0.00090936793 + 109300 -6244.7769 -6251.5058 6.7288861 3727.8864 639.70194 -10619.094 0 322.48598 0.0013043565 0.0012686357 + 109310 -6244.8058 -6251.3993 6.5934633 3724.3397 642.16787 -10617.907 0 315.99576 0.0016056108 0.0015730731 + 109320 -6244.8315 -6251.3856 6.5540344 3723.6552 643.77272 -10618.813 0 314.1061 0.0017844388 0.0017538508 + 109330 -6244.8561 -6251.4614 6.6053191 3726.3622 644.1847 -10622.008 0 316.56395 0.0017971561 0.0017676228 + 109340 -6244.8922 -6251.5957 6.7035034 3732.1291 643.32113 -10627.046 0 321.2695 0.0016380562 0.0016098841 + 109350 -6244.9454 -6251.7619 6.8164534 3739.7645 641.37285 -10632.899 0 326.68269 0.0013441412 0.0013178173 + 109360 -6245.0109 -6251.9543 6.9433278 3747.4719 638.75578 -10638.182 0 332.76323 0.00098595543 0.00096076779 + 109370 -6245.084 -6252.1776 7.0936087 3753.3063 636.00985 -10641.494 0 339.96553 0.00064829709 0.00062219582 + 109380 -6245.1755 -6252.4231 7.2475789 3755.6985 633.67712 -10641.799 0 347.34465 0.0004085076 0.00037968405 + 109390 -6245.3162 -6252.6586 7.3423851 3753.883 632.18548 -10638.727 0 351.88829 0.00031886852 0.00028776152 + 109400 -6245.5391 -6252.8477 7.3086094 3748.1044 631.75622 -10632.708 0 350.26957 0.00039578308 0.00036537498 + 109410 -6245.8558 -6252.9805 7.124688 3739.5704 632.35169 -10624.903 0 341.45503 0.00061580442 0.000589545 + 109420 -6246.2476 -6253.0808 6.8331924 3730.1904 633.68041 -10616.952 0 327.48492 0.00091909172 0.00089817306 + 109430 -6246.6787 -6253.1867 6.5080147 3722.1564 635.27031 -10610.613 0 311.90058 0.0012220194 0.0012042297 + 109440 -6247.1176 -6253.3235 6.2058994 3717.4299 636.60256 -10607.356 0 297.42152 0.0014384108 0.0014193284 + 109450 -6247.5526 -6253.4834 5.9307776 3717.2434 637.2716 -10607.998 0 284.23614 0.0015040267 0.0014798786 + 109460 -6247.992 -6253.6209 5.6288667 3721.7509 637.11673 -10612.488 0 269.76687 0.0013965609 0.001367147 + 109470 -6248.4457 -6253.6793 5.2335792 3729.9373 636.27381 -10619.89 0 250.82248 0.0011449774 0.0011143794 + 109480 -6248.8997 -6253.6431 4.7433246 3739.8369 635.12649 -10628.606 0 227.32673 0.00082446964 0.0007981955 + 109490 -6249.3103 -6253.5677 4.2574345 3749.0399 634.17833 -10636.786 0 204.04015 0.00053590001 0.00051630306 + 109500 -6249.6303 -6253.5421 3.9118526 3755.3683 633.89178 -10642.802 0 187.47792 0.00037377098 0.00035798875 + 109510 -6249.8464 -6253.6093 3.7628611 3757.5016 634.53959 -10645.65 0 180.33742 0.00039371574 0.00037645219 + 109520 -6249.9906 -6253.7309 3.7403194 3755.314 636.10342 -10645.148 0 179.25709 0.00059334487 0.00057191207 + 109530 -6250.1115 -6253.8383 3.7267976 3749.8081 638.24992 -10641.896 0 178.60905 0.00091475946 0.00089133291 + 109540 -6250.2336 -6253.9135 3.6799091 3742.7235 640.40618 -10637.043 0 176.36189 0.0012659684 0.0012449867 + 109550 -6250.3419 -6254.0102 3.6682503 3736.0126 641.9277 -10631.95 0 175.80314 0.0015500787 0.0015337383 + 109560 -6250.4034 -6254.1934 3.7899841 3731.3532 642.30668 -10627.853 0 181.6373 0.0016911385 0.0016774429 + 109570 -6250.4013 -6254.4627 4.0613999 3729.7849 641.34157 -10625.589 0 194.64507 0.0016512374 0.0016361238 + 109580 -6250.3514 -6254.7312 4.3797788 3731.5027 639.20202 -10625.436 0 209.90357 0.0014381963 0.0014194796 + 109590 -6250.289 -6254.8832 4.5941624 3735.8293 636.36926 -10627.082 0 220.17804 0.0011039966 0.0010834246 + 109600 -6250.2351 -6254.8627 4.6275899 3741.3871 633.48368 -10629.733 0 221.78007 0.00073313801 0.00071453788 + 109610 -6250.1751 -6254.717 4.5419303 3746.4711 631.16557 -10632.354 0 217.67479 0.00042101647 0.0004062094 + 109620 -6250.073 -6254.5492 4.4762507 3749.5529 629.87265 -10633.975 0 214.52705 0.00024678186 0.00023346842 + 109630 -6249.9094 -6254.4224 4.5129795 3749.7543 629.82255 -10633.999 0 216.2873 0.00025019106 0.00023424498 + 109640 -6249.7021 -6254.3113 4.6091637 3747.0975 630.97312 -10632.382 0 220.89698 0.00042224427 0.00040205363 + 109650 -6249.4861 -6254.1492 4.663176 3742.4365 633.04554 -10629.631 0 223.48556 0.0007127226 0.0006907925 + 109660 -6249.2746 -6253.911 4.6363974 3737.1454 635.58762 -10626.644 0 222.20218 0.0010487574 0.0010288391 + 109670 -6249.0452 -6253.6384 4.5932334 3732.7275 638.07704 -10624.443 0 220.13352 0.0013547265 0.0013377402 + 109680 -6248.7639 -6253.3894 4.6255168 3730.4663 640.04629 -10623.902 0 221.68072 0.0015675693 0.0015506495 + 109690 -6248.4198 -6253.1753 4.7554639 3731.146 641.19261 -10625.514 0 227.90851 0.0016476045 0.0016269139 + 109700 -6248.0367 -6252.9542 4.9174327 3734.8523 641.4382 -10629.245 0 235.67097 0.0015864097 0.0015606401 + 109710 -6247.6551 -6252.6799 5.02477 3740.8966 640.92608 -10634.503 0 240.81517 0.0014103049 0.0013816869 + 109720 -6247.3025 -6252.3577 5.0552235 3747.92 639.9592 -10640.237 0 242.27468 0.0011758141 0.0011480166 + 109730 -6246.9757 -6252.0613 5.085526 3754.1952 638.90431 -10645.161 0 243.72694 0.00095537996 0.00093017915 + 109740 -6246.6511 -6251.8932 5.242092 3758.078 638.08805 -10648.059 0 251.23046 0.00081610765 0.00079178294 + 109750 -6246.3163 -6251.9133 5.5969985 3758.4896 637.7106 -10648.114 0 268.23957 0.00079874159 0.00077200101 + 109760 -6245.9942 -6252.0984 6.1042336 3755.2505 637.79631 -10645.145 0 292.54913 0.00090578256 0.00087555015 + 109770 -6245.7258 -6252.3761 6.6503416 3749.1215 638.19523 -10639.693 0 318.72169 0.0011037806 0.0010726144 + 109780 -6245.5302 -6252.6925 7.1623812 3741.5586 638.64181 -10632.893 0 343.26149 0.00133664 0.0013079372 + 109790 -6245.3908 -6253.0297 7.6388514 3734.3236 638.85599 -10626.209 0 366.09662 0.0015418746 0.0015161736 + 109800 -6245.2841 -6253.3599 8.0757182 3729.0855 638.64496 -10621.09 0 387.03373 0.0016647953 0.0016394439 + 109810 -6245.21 -6253.6098 8.3997538 3727.0595 637.96039 -10618.63 0 402.56333 0.0016703522 0.0016424239 + 109820 -6245.1893 -6253.6843 8.4950125 3728.7184 636.89571 -10619.298 0 407.12866 0.0015517287 0.0015207119 + 109830 -6245.2392 -6253.5228 8.283604 3733.6513 635.64515 -10622.819 0 396.99678 0.001332413 0.0013004744 + 109840 -6245.3537 -6253.1364 7.7826735 3740.6411 634.45634 -10628.234 0 372.98938 0.0010606754 0.0010309498 + 109850 -6245.5011 -6252.6114 7.1102998 3747.9548 633.59223 -10634.158 0 340.76546 0.00079941379 0.00077361751 + 109860 -6245.6361 -6252.0785 6.4423703 3753.7819 633.2985 -10639.159 0 308.75453 0.00061399292 0.00059073094 + 109870 -6245.725 -6251.6514 5.9264033 3756.7125 633.76503 -10642.129 0 284.0265 0.00055796341 0.00053335284 + 109880 -6245.7692 -6251.3674 5.598191 3756.1229 635.07452 -10642.565 0 268.29673 0.00065784346 0.00062880155 + 109890 -6245.804 -6251.1846 5.3805489 3752.3317 637.14597 -10640.662 0 257.86609 0.00090261738 0.00087029333 + 109900 -6245.8655 -6251.0545 5.1889281 3746.4763 639.69761 -10637.228 0 248.68255 0.0012443207 0.0012139644 + 109910 -6245.9503 -6251.0102 5.0598612 3740.1804 642.26191 -10633.452 0 242.49694 0.0016103686 0.0015866747 + 109920 -6246.0072 -6251.177 5.169722 3735.1571 644.27336 -10630.607 0 247.76209 0.0019212041 0.0019028301 + 109930 -6245.9795 -6251.6688 5.6893433 3732.8568 645.21812 -10629.744 0 272.66525 0.0021057619 0.002084733 + 109940 -6245.8683 -6252.4473 6.5790055 3734.1661 644.79842 -10631.412 0 315.30286 0.0021135723 0.0020816666 + 109950 -6245.7567 -6253.2845 7.5278807 3739.1191 643.04416 -10635.448 0 360.77828 0.0019280513 0.0018851102 + 109960 -6245.7532 -6253.8991 8.1459068 3746.6847 640.32135 -10640.905 0 390.39756 0.0015811416 0.0015366735 + 109970 -6245.8956 -6254.1538 8.2581705 3754.8426 637.23564 -10646.232 0 395.77787 0.0011577906 0.001122913 + 109980 -6246.1169 -6254.1242 8.0072708 3761.1197 634.47569 -10649.72 0 383.75335 0.00077629301 0.00075347987 + 109990 -6246.3162 -6253.9788 7.6626034 3763.4534 632.64819 -10650.08 0 367.23495 0.00054679395 0.00052776925 + 110000 -6246.456 -6253.8083 7.3523047 3760.9646 632.13486 -10646.908 0 352.3637 0.00052960011 0.00050321829 + 110010 -6246.5862 -6253.5701 6.9838884 3754.2592 632.99269 -10640.822 0 334.70712 0.00071596468 0.0006782481 + 110020 -6246.7823 -6253.1805 6.3981235 3745.1658 634.92706 -10633.273 0 306.63398 0.0010380164 0.0009953421 + 110030 -6247.065 -6252.6489 5.5839108 3736.0953 637.36277 -10626.107 0 267.61234 0.0013976691 0.0013608636 + 110040 -6247.3764 -6252.1233 4.7469116 3729.3334 639.60548 -10621.062 0 227.49864 0.0016976962 0.0016728043 + 110050 -6247.6307 -6251.8041 4.1734027 3726.5115 641.04429 -10619.36 0 200.01287 0.001863562 0.001847457 + 110060 -6247.7846 -6251.806 4.0214472 3728.326 641.32565 -10621.458 0 192.73031 0.0018553447 0.0018393623 + 110070 -6247.8646 -6252.089 4.2243643 3734.4441 640.44326 -10626.976 0 202.45524 0.0016745098 0.0016520373 + 110080 -6247.9373 -6252.51 4.5726951 3743.5456 638.7238 -10634.779 0 219.14921 0.0013667119 0.001337882 + 110090 -6248.0536 -6252.9343 4.8807249 3753.5409 636.72366 -10643.199 0 233.91172 0.0010158332 0.00098599393 + 110100 -6248.2168 -6253.3061 5.08924 3762.0219 635.07261 -10650.401 0 243.90493 0.00072460696 0.00069902843 + 110110 -6248.3938 -6253.6345 5.240739 3766.8922 634.30456 -10654.831 0 251.16562 0.00058452373 0.00056436822 + 110120 -6248.5507 -6253.936 5.3853497 3766.9827 634.71035 -10655.629 0 258.09617 0.00064560688 0.00062793315 + 110130 -6248.6791 -6254.1942 5.5150598 3762.4187 636.24517 -10652.858 0 264.31261 0.00089837717 0.00087907476 + 110140 -6248.796 -6254.3654 5.569421 3754.5937 638.5226 -10647.482 0 266.9179 0.0012752915 0.0012520494 + 110150 -6248.926 -6254.4106 5.4845379 3745.7525 640.9126 -10641.076 0 262.84983 0.0016709224 0.001644338 + 110160 -6249.0843 -6254.3194 5.235054 3738.3259 642.72456 -10635.37 0 250.89316 0.0019734804 0.0019463525 + 110170 -6249.2691 -6254.1186 4.849495 3734.2313 643.41566 -10631.766 0 232.41501 0.0020975546 0.0020732719 + 110180 -6249.4612 -6253.8713 4.4101903 3734.3564 642.75009 -10630.978 0 211.36107 0.0020085807 0.001989224 + 110190 -6249.6298 -6253.6689 4.0391075 3738.3736 640.8578 -10632.9 0 193.57669 0.0017317499 0.0017165142 + 110200 -6249.7478 -6253.5994 3.8516105 3744.927 638.18527 -10636.712 0 184.59078 0.0013422905 0.0013274423 + 110210 -6249.8113 -6253.6967 3.8854513 3752.0925 635.36714 -10641.156 0 186.21263 0.00094102671 0.0009222745 + 110220 -6249.8471 -6253.9097 4.0625753 3757.9267 633.06142 -10644.898 0 194.7014 0.00062540113 0.0006014241 + 110230 -6249.8951 -6254.1314 4.2363209 3760.9327 631.78811 -10646.852 0 203.02827 0.00046628064 0.000440329 + 110240 -6249.9743 -6254.2721 4.2977974 3760.3678 631.80492 -10646.445 0 205.97457 0.0004949371 0.00047257897 + 110250 -6250.0632 -6254.3131 4.2498335 3756.3857 633.04782 -10643.747 0 203.67587 0.00069898167 0.00068356955 + 110260 -6250.1137 -6254.2968 4.1831805 3750.015 635.15387 -10639.466 0 200.48148 0.0010253684 0.0010150866 + 110270 -6250.0872 -6254.2663 4.1790726 3742.952 637.56505 -10634.783 0 200.28461 0.0013908908 0.0013800303 + 110280 -6249.985 -6254.2114 4.226377 3737.163 639.68646 -10631.061 0 202.5517 0.0017012131 0.0016847682 + 110290 -6249.846 -6254.0742 4.2282377 3734.3579 641.05052 -10629.483 0 202.64088 0.0018763899 0.0018542342 + 110300 -6249.7134 -6253.812 4.0985576 3735.4778 641.43393 -10630.724 0 196.42588 0.0018757264 0.0018527798 + 110310 -6249.596 -6253.4663 3.8703629 3740.3819 640.89191 -10634.74 0 185.48951 0.001711627 0.0016935676 + 110320 -6249.4534 -6253.17 3.7165994 3747.8772 639.70919 -10640.756 0 178.1203 0.0014446977 0.001432634 + 110330 -6249.2224 -6253.0685 3.846171 3756.0938 638.29818 -10647.46 0 184.3301 0.0011611988 0.00115009 + 110340 -6248.8649 -6253.2113 4.3463149 3763.0451 637.08428 -10653.341 0 208.2998 0.00094360751 0.00092639615 + 110350 -6248.4012 -6253.5079 5.1067085 3767.1399 636.40586 -10657.054 0 244.74212 0.00084802546 0.00082220288 + 110360 -6247.895 -6253.8012 5.9062143 3767.483 636.44051 -10657.725 0 283.05893 0.00089579472 0.00086611763 + 110370 -6247.3988 -6253.9881 6.5892967 3763.9754 637.16653 -10655.13 0 315.79607 0.0010760513 0.0010502076 + 110380 -6246.9141 -6254.0651 7.1510335 3757.3172 638.37081 -10649.753 0 342.71765 0.0013504574 0.0013317227 + 110390 -6246.4147 -6254.0558 7.6410698 3748.9421 639.70612 -10642.704 0 366.20294 0.0016566138 0.0016410523 + 110400 -6245.9048 -6253.9173 8.0124506 3740.7933 640.7836 -10635.494 0 384.00159 0.0019161878 0.0018969512 + 110410 -6245.4381 -6253.5431 8.1050267 3734.8655 641.27524 -10629.684 0 388.43836 0.0020541345 0.0020278357 + 110420 -6245.0767 -6252.8581 7.7813342 3732.6188 641.002 -10626.479 0 372.9252 0.002024304 0.0019932936 + 110430 -6244.8409 -6251.9065 7.0655871 3734.5104 639.98677 -10626.404 0 338.62258 0.0018277569 0.0017973016 + 110440 -6244.6954 -6250.8625 6.1670478 3739.8506 638.45499 -10629.168 0 295.55953 0.0015138693 0.001487535 + 110450 -6244.5753 -6249.9665 5.3912735 3747.0363 636.7795 -10633.782 0 258.38008 0.0011649661 0.0011417377 + 110460 -6244.4264 -6249.4219 4.9954878 3754.0657 635.38669 -10638.874 0 239.4118 0.000871827 0.00084708342 + 110470 -6244.2391 -6249.303 5.0639426 3759.1349 634.65151 -10643.089 0 242.69254 0.00070895004 0.00067908566 + 110480 -6244.046 -6249.5517 5.5056818 3761.0831 634.80436 -10645.439 0 263.86316 0.00071794751 0.00068461149 + 110490 -6243.8782 -6250.0719 6.1937194 3759.5755 635.86951 -10645.517 0 296.83779 0.00090263987 0.00087158266 + 110500 -6243.7242 -6250.8162 7.0920615 3755.1056 637.65545 -10643.577 0 339.89138 0.0012315482 0.001206656 + 110510 -6243.5452 -6251.7598 8.2146152 3748.9263 639.80302 -10640.489 0 393.69045 0.0016420183 0.0016210106 + 110520 -6243.3355 -6252.8078 9.4723723 3742.862 641.87011 -10637.54 0 453.96923 0.0020470989 0.0020234405 + 110530 -6243.1611 -6253.7558 10.594718 3738.8934 643.42419 -10636.073 0 507.75835 0.0023506427 0.0023195641 + 110540 -6243.1367 -6254.3524 11.215667 3738.5478 644.12962 -10637.03 0 537.51768 0.0024716929 0.0024349481 + 110550 -6243.349 -6254.422 11.073041 3742.3162 643.82453 -10640.563 0 530.68225 0.0023716762 0.0023370599 + 110560 -6243.7801 -6253.9748 10.194613 3749.3675 642.57189 -10645.914 0 488.58306 0.0020728709 0.0020480332 + 110570 -6244.3032 -6253.2191 8.9159543 3757.7486 640.66445 -10651.632 0 427.30256 0.0016562381 0.001641287 + 110580 -6244.7709 -6252.4342 7.6633111 3765.0363 638.57252 -10656.043 0 367.26887 0.0012351532 0.0012214205 + 110590 -6245.1229 -6251.7859 6.6630076 3769.1534 636.83714 -10657.776 0 319.32871 0.00091698522 0.00089456316 + 110600 -6245.4065 -6251.2589 5.8524045 3768.962 635.92458 -10656.146 0 280.48006 0.00077251037 0.00073981674 + 110610 -6245.6997 -6250.7738 5.074064 3764.4411 636.07863 -10651.293 0 243.17762 0.00082450143 0.00079011851 + 110620 -6246.0199 -6250.3593 4.3394756 3756.5492 637.22463 -10644.133 0 207.97202 0.001051312 0.0010259539 + 110630 -6246.3079 -6250.1982 3.8902989 3746.9806 638.97355 -10636.152 0 186.44495 0.001394851 0.0013812002 + 110640 -6246.4883 -6250.4943 4.0060226 3737.9017 640.73425 -10629.13 0 191.99108 0.0017685224 0.0017583926 + 110650 -6246.5437 -6251.2865 4.7428223 3731.5959 641.89494 -10624.777 0 227.30266 0.0020696509 0.0020508621 + 110660 -6246.5443 -6252.3721 5.8278169 3729.9365 642.01176 -10624.32 0 279.30169 0.0022025841 0.0021695978 + 110670 -6246.6078 -6253.4089 6.8010624 3733.7578 640.94729 -10628.114 0 325.94507 0.0021111933 0.0020704885 + 110680 -6246.8102 -6254.1212 7.310976 3742.3877 638.92158 -10635.43 0 350.38299 0.0018078795 0.0017730308 + 110690 -6247.1181 -6254.4522 7.33409 3753.6571 636.4623 -10644.572 0 351.49074 0.0013799742 0.0013599617 + 110700 -6247.4139 -6254.5386 7.1246173 3764.5252 634.26817 -10653.332 0 341.45164 0.00096277244 0.0009537092 + 110710 -6247.6017 -6254.5335 6.9317905 3772.1041 633.02119 -10659.659 0 332.2103 0.00068900114 0.00067730602 + 110720 -6247.6912 -6254.4486 6.7574124 3774.6058 633.19196 -10662.246 0 323.85312 0.00064081431 0.00061537666 + 110730 -6247.7779 -6254.1747 6.396794 3771.7796 634.88676 -10660.841 0 306.57026 0.00082771968 0.00078967077 + 110740 -6247.9405 -6253.6512 5.7106378 3764.7539 637.78814 -10656.193 0 273.68581 0.0011948863 0.0011558932 + 110750 -6248.1654 -6252.9979 4.8324036 3755.5297 641.22463 -10649.752 0 231.5959 0.0016481198 0.0016195966 + 110760 -6248.3659 -6252.47 4.1040695 3746.4314 644.35545 -10643.257 0 196.69004 0.0020792091 0.00206301 + 110770 -6248.4609 -6252.2857 3.8248086 3739.6524 646.40431 -10638.342 0 183.30629 0.0023860281 0.002374197 + 110780 -6248.4352 -6252.4809 4.0456866 3736.8614 646.86324 -10636.206 0 193.892 0.0024907502 0.0024730327 + 110790 -6248.3433 -6252.8982 4.5549183 3738.8263 645.61319 -10637.338 0 218.29724 0.0023583848 0.0023305797 + 110800 -6248.2653 -6253.303 5.0376791 3745.1234 642.94198 -10641.368 0 241.43385 0.0020111696 0.0019779297 + 110810 -6248.2456 -6253.5337 5.2880895 3754.0969 639.4657 -10647.096 0 253.43492 0.0015302061 0.0015005184 + 110820 -6248.2598 -6253.5835 5.323744 3763.2122 635.97682 -10652.773 0 255.14368 0.0010381102 0.0010172587 + 110830 -6248.2379 -6253.5568 5.3188692 3769.7851 633.25424 -10656.596 0 254.91006 0.00066455337 0.00064932725 + 110840 -6248.131 -6253.5449 5.4139244 3771.8446 631.8781 -10657.268 0 259.46563 0.00050601031 0.0004875009 + 110850 -6247.9609 -6253.5337 5.5728295 3768.7662 632.0923 -10654.392 0 267.08126 0.00059596059 0.00056768249 + 110860 -6247.806 -6253.4288 5.6227924 3761.4088 633.75003 -10648.588 0 269.47576 0.00089804927 0.00086205374 + 110870 -6247.7337 -6253.1711 5.4373299 3751.7526 636.35999 -10641.284 0 260.58736 0.0013233391 0.0012886893 + 110880 -6247.7415 -6252.8253 5.0837631 3742.2707 639.22472 -10634.321 0 243.64245 0.00176109 0.0017361298 + 110890 -6247.7598 -6252.5596 4.7998218 3735.3031 641.63116 -10629.494 0 230.03439 0.0021088237 0.0020940226 + 110900 -6247.7092 -6252.5342 4.825007 3732.5826 643.03598 -10628.153 0 231.24141 0.0022928867 0.0022801044 + 110910 -6247.565 -6252.7852 5.2201976 3734.9269 643.19508 -10630.907 0 250.18116 0.0022789168 0.0022577177 + 110920 -6247.3821 -6253.1901 5.8080771 3742.0604 642.20953 -10637.46 0 278.35564 0.00207617 0.0020425345 + 110930 -6247.2563 -6253.5504 6.2941525 3752.5706 640.48213 -10646.603 0 301.6511 0.0017383185 0.0016986415 + 110940 -6247.2428 -6253.7396 6.4967906 3764.0849 638.59779 -10656.422 0 311.36266 0.0013576199 0.0013236579 + 110950 -6247.3012 -6253.789 6.487805 3773.7745 637.16121 -10664.725 0 310.93202 0.0010455058 0.0010238205 + 110960 -6247.3306 -6253.8186 6.4879775 3779.1546 636.6357 -10669.609 0 310.94028 0.00089850268 0.00088422423 + 110970 -6247.2667 -6253.8745 6.6078231 3778.8936 637.22086 -10669.989 0 316.68396 0.00096221995 0.00094355822 + 110980 -6247.1419 -6253.8487 6.7068582 3773.2355 638.79492 -10665.879 0 321.43028 0.0012135511 0.0011827288 + 110990 -6247.0496 -6253.5715 6.5219063 3763.8288 640.94069 -10658.341 0 312.56634 0.0015719632 0.0015319829 + 111000 -6247.0531 -6252.9809 5.9278771 3753.1053 643.05948 -10649.146 0 284.09713 0.0019322707 0.0018937098 + 111010 -6247.1299 -6252.2059 5.0760209 3743.5447 644.54385 -10640.294 0 243.2714 0.0021998881 0.0021716138 + 111020 -6247.1967 -6251.4986 4.3019049 3737.1049 644.9486 -10633.552 0 206.17142 0.0023131577 0.0022954341 + 111030 -6247.1773 -6251.0842 3.9069679 3734.915 644.10106 -10630.1 0 187.24383 0.0022497876 0.0022349052 + 111040 -6247.0528 -6251.045 3.9921101 3737.1785 642.12581 -10630.349 0 191.32432 0.0020239506 0.0020029389 + 111050 -6246.8638 -6251.3146 4.4507631 3743.1989 639.39559 -10633.909 0 213.30554 0.0016812848 0.0016509042 + 111060 -6246.6678 -6251.7703 5.1025656 3751.4943 636.43835 -10639.703 0 244.54357 0.0012933658 0.0012578635 + 111070 -6246.4887 -6252.3338 5.8451175 3760.0463 633.83086 -10646.211 0 280.13083 0.0009477595 0.00091437376 + 111080 -6246.3 -6252.9903 6.6902828 3766.7322 632.09825 -10651.821 0 320.63589 0.00073018109 0.00070270759 + 111090 -6246.059 -6253.7195 7.6605188 3769.883 631.62545 -10655.228 0 367.13505 0.00070167097 0.00067780347 + 111100 -6245.7609 -6254.4168 8.6559787 3768.7847 632.58099 -10655.783 0 414.84307 0.00087951803 0.00085382246 + 111110 -6245.4631 -6254.8916 9.4284575 3763.9138 634.86389 -10653.669 0 451.86459 0.0012301267 0.0011994084 + 111120 -6245.2526 -6254.9521 9.6994687 3756.7986 638.09612 -10649.847 0 464.85296 0.0016766584 0.0016427903 + 111130 -6245.1817 -6254.5149 9.3331572 3749.5566 641.68073 -10645.752 0 447.29726 0.0021186202 0.0020866247 + 111140 -6245.2311 -6253.6578 8.4266408 3744.2786 644.92522 -10642.862 0 403.85191 0.0024569708 0.0024305009 + 111150 -6245.3283 -6252.5842 7.2559366 3742.4667 647.20231 -10642.253 0 347.74519 0.00261772 0.0025959288 + 111160 -6245.4005 -6251.5324 6.1318829 3744.6733 648.10316 -10644.309 0 293.87423 0.0025686321 0.0025466889 + 111170 -6245.4192 -6250.6811 5.2619126 3750.4028 647.53903 -10648.623 0 252.18038 0.0023257521 0.0022985758 + 111180 -6245.4098 -6250.1007 4.6909656 3758.254 645.76046 -10654.115 0 224.81739 0.0019491284 0.0019159548 + 111190 -6245.4216 -6249.7823 4.3606608 3766.2267 643.282 -10659.291 0 208.98733 0.0015299567 0.0014960766 + 111200 -6245.4751 -6249.7275 4.2523783 3772.1404 640.72969 -10662.598 0 203.79783 0.0011717829 0.0011448117 + 111210 -6245.5275 -6250.0064 4.4788429 3774.1562 638.66233 -10662.825 0 214.65128 0.00096663854 0.00094947597 + 111220 -6245.4989 -6250.6984 5.1994376 3771.351 637.43 -10659.479 0 249.18622 0.00096833571 0.00095549862 + 111230 -6245.3432 -6251.7572 6.4139754 3764.1386 637.11019 -10653.006 0 307.39369 0.0011714405 0.00115326 + 111240 -6245.1021 -6252.9464 7.8443385 3754.2758 637.52298 -10644.745 0 375.94472 0.001508162 0.0014794823 + 111250 -6244.8888 -6253.9321 9.0432942 3744.3564 638.30555 -10636.594 0 433.4054 0.0018691391 0.0018343235 + 111260 -6244.8073 -6254.4627 9.6553814 3736.9856 639.02448 -10630.473 0 462.74005 0.0021411296 0.0021105147 + 111270 -6244.8754 -6254.4964 9.6209245 3733.9863 639.30383 -10627.786 0 461.08868 0.0022447251 0.002225399 + 111280 -6245.0221 -6254.1833 9.161214 3735.9433 638.94233 -10629.069 0 439.05678 0.0021555915 0.0021444993 + 111290 -6245.1659 -6253.7243 8.5584029 3742.1868 637.99037 -10633.901 0 410.16669 0.0019035644 0.0018894577 + 111300 -6245.2995 -6253.2198 7.9203023 3751.1019 636.75901 -10641.081 0 379.58533 0.0015572574 0.001530672 + 111310 -6245.4927 -6252.6432 7.1505257 3760.5573 635.74152 -10648.942 0 342.69331 0.0012064789 0.0011690985 + 111320 -6245.805 -6251.9667 6.1617319 3768.3252 635.45516 -10655.747 0 295.30477 0.00094724774 0.00091117132 + 111330 -6246.1999 -6251.3062 5.106268 3772.525 636.25382 -10660.085 0 244.72102 0.00086376759 0.00084033226 + 111340 -6246.5615 -6250.9085 4.3469727 3772.1315 638.18679 -10661.227 0 208.33132 0.0010022143 0.00099115449 + 111350 -6246.7988 -6250.967 4.1681149 3767.411 640.95768 -10659.336 0 199.75945 0.0013446843 0.0013346094 + 111360 -6246.9279 -6251.4503 4.522407 3759.9845 643.9878 -10655.423 0 216.73912 0.0018024342 0.0017818462 + 111370 -6247.0527 -6252.1209 5.0681491 3752.3357 646.55715 -10651.014 0 242.89414 0.0022406917 0.0022083974 + 111380 -6247.2724 -6252.7189 5.4465643 3746.9206 647.99075 -10647.63 0 261.02992 0.0025270565 0.0024924757 + 111390 -6247.6006 -6253.1323 5.5317402 3745.2997 647.84976 -10646.282 0 265.11203 0.0025791336 0.002553378 + 111400 -6247.9651 -6253.4149 5.4497983 3747.683 646.07069 -10647.169 0 261.18491 0.0023882526 0.0023748154 + 111410 -6248.2763 -6253.6742 5.397924 3753.0162 642.99983 -10649.69 0 258.69881 0.0020130564 0.0020058242 + 111420 -6248.4975 -6253.9484 5.4508822 3759.4628 639.30508 -10652.716 0 261.23686 0.0015536675 0.0015427277 + 111430 -6248.6621 -6254.1744 5.5122951 3765.0175 635.79335 -10654.985 0 264.18011 0.0011214701 0.00110104 + 111440 -6248.8328 -6254.2583 5.4254965 3768.0377 633.19255 -10655.489 0 260.02023 0.00081335995 0.00078539565 + 111450 -6249.045 -6254.1733 5.1283537 3767.5991 631.96743 -10653.74 0 245.77949 0.00069243426 0.0006637683 + 111460 -6249.2816 -6253.9942 4.7125615 3763.6755 632.22395 -10649.894 0 225.85239 0.00077548293 0.00075184186 + 111470 -6249.4962 -6253.8449 4.3487154 3757.1515 633.72089 -10644.717 0 208.41484 0.001029692 0.0010118562 + 111480 -6249.6528 -6253.8138 4.1610527 3749.6489 635.96783 -10639.431 0 199.42099 0.0013812675 0.0013657779 + 111490 -6249.7489 -6253.9068 4.1579128 3743.1558 638.36807 -10635.431 0 199.27051 0.0017350128 0.0017177765 + 111500 -6249.81 -6254.0623 4.2522783 3739.5133 640.36608 -10633.942 0 203.79304 0.001999498 0.00197906 + 111510 -6249.8672 -6254.2027 4.3355431 3739.8942 641.57022 -10635.667 0 207.78355 0.0021108827 0.0020892315 + 111520 -6249.9349 -6254.2826 4.3477208 3744.4381 641.83062 -10640.551 0 208.36718 0.0020493794 0.0020301449 + 111530 -6250.0005 -6254.3044 4.3039019 3752.1746 641.25982 -10647.739 0 206.26713 0.001843918 0.0018293848 + 111540 -6250.0329 -6254.2972 4.2642703 3761.2748 640.19026 -10655.762 0 204.36776 0.0015627908 0.0015518749 + 111550 -6250.0046 -6254.2723 4.2676918 3769.5562 639.07422 -10662.903 0 204.53174 0.0012921785 0.0012810587 + 111560 -6249.9134 -6254.1955 4.2821116 3775.0676 638.34753 -10667.611 0 205.22282 0.0011097307 0.0010949151 + 111570 -6249.7832 -6254.0094 4.2261897 3776.5611 638.29371 -10668.864 0 202.54272 0.0010631078 0.0010444052 + 111580 -6249.6394 -6253.6971 4.0577496 3773.7278 638.95289 -10666.378 0 194.47013 0.0011604963 0.0011410452 + 111590 -6249.4802 -6253.3299 3.8497568 3767.1967 640.1108 -10660.637 0 184.50195 0.0013733836 0.0013565238 + 111600 -6249.2697 -6253.0426 3.7729078 3758.3641 641.37362 -10652.78 0 180.81891 0.0016467962 0.0016327007 + 111610 -6248.9572 -6252.9466 3.9893765 3749.1177 642.29748 -10644.362 0 191.19331 0.0019121186 0.0018973831 + 111620 -6248.5072 -6253.0496 4.5424132 3741.4817 642.52087 -10637.052 0 217.69793 0.0021006023 0.0020812332 + 111630 -6247.9248 -6253.2504 5.3256064 3737.1938 641.85833 -10632.303 0 255.23294 0.0021578286 0.0021330406 + 111640 -6247.2589 -6253.4154 6.1565004 3737.2627 640.33999 -10631.018 0 295.05404 0.0020587218 0.0020320105 + 111650 -6246.5717 -6253.4784 6.9067352 3741.6293 638.20284 -10633.311 0 331.0095 0.0018191496 0.001795001 + 111660 -6245.8991 -6253.4736 7.5744661 3749.1107 635.84648 -10638.431 0 363.01092 0.0014962569 0.0014751155 + 111670 -6245.2539 -6253.4594 8.2055196 3757.7268 633.76415 -10644.95 0 393.25454 0.0011723919 0.0011494912 + 111680 -6244.671 -6253.4079 8.7368646 3765.29 632.45167 -10651.15 0 418.71957 0.00092890681 0.00089931015 + 111690 -6244.2227 -6253.1882 8.9654634 3769.9864 632.29634 -10655.471 0 429.67531 0.00082433153 0.00078912446 + 111700 -6243.9633 -6252.6834 8.7201266 3770.7517 633.4653 -10656.9 0 417.91739 0.00088553891 0.00085175308 + 111710 -6243.8639 -6251.9249 8.0610101 3767.4427 635.83634 -10655.204 0 386.32883 0.0011077395 0.0010812655 + 111720 -6243.823 -6251.098 7.2750235 3760.8793 639.00911 -10650.986 0 348.65995 0.0014547502 0.0014337511 + 111730 -6243.7497 -6250.4081 6.6584233 3752.7448 642.39781 -10645.551 0 319.10901 0.0018590919 0.0018353102 + 111740 -6243.6342 -6249.9459 6.3117094 3745.2439 645.36839 -10640.558 0 302.49253 0.0022305998 0.0021974548 + 111750 -6243.5369 -6249.6809 6.143973 3740.5 647.37615 -10637.557 0 294.45366 0.0024793539 0.0024386195 + 111760 -6243.5157 -6249.5688 6.0531103 3739.8782 648.07361 -10637.521 0 290.09901 0.002545683 0.0025062328 + 111770 -6243.5635 -6249.6485 6.0850954 3743.5371 647.3728 -10640.558 0 291.63191 0.0024210371 0.002390942 + 111780 -6243.6103 -6250.0288 6.4184356 3750.4172 645.45539 -10645.901 0 307.60745 0.0021480316 0.0021272262 + 111790 -6243.5876 -6250.7735 7.1859417 3758.642 642.73174 -10652.147 0 344.39065 0.0018013618 0.0017814216 + 111800 -6243.501 -6251.7879 8.286876 3766.1168 639.75741 -10657.662 0 397.15359 0.0014620827 0.0014335526 + 111810 -6243.4495 -6252.8143 9.364779 3771.0637 637.11913 -10660.997 0 448.81276 0.0011984486 0.0011595051 + 111820 -6243.5605 -6253.5642 10.003775 3772.3477 635.30879 -10661.221 0 479.43704 0.001057951 0.0010164743 + 111830 -6243.8884 -6253.886 9.9975499 3769.6245 634.61245 -10658.123 0 479.13869 0.0010648655 0.0010316947 + 111840 -6244.3721 -6253.8287 9.4565116 3763.4044 635.04425 -10652.277 0 453.2091 0.0012152579 0.0011948938 + 111850 -6244.8919 -6253.5621 8.6701364 3755.0418 636.3438 -10644.948 0 415.52158 0.0014699589 0.0014573269 + 111860 -6245.3624 -6253.2419 7.8794205 3746.536 638.03937 -10637.817 0 377.62604 0.0017556019 0.0017410501 + 111870 -6245.773 -6252.9361 7.1631076 3740.0601 639.57084 -10632.567 0 343.29631 0.0019820229 0.0019591199 + 111880 -6246.1588 -6252.6422 6.4833728 3737.3193 640.45342 -10630.415 0 310.7196 0.0020722374 0.0020418634 + 111890 -6246.5501 -6252.3449 5.7948393 3738.9892 640.43641 -10631.771 0 277.72122 0.0019912847 0.0019600015 + 111900 -6246.9409 -6252.0616 5.1206785 3744.4828 639.59114 -10636.136 0 245.41165 0.0017605067 0.00173546 + 111910 -6247.2921 -6251.8556 4.5635487 3752.1419 638.28219 -10642.28 0 218.71086 0.0014513309 0.001435251 + 111920 -6247.5561 -6251.8117 4.2555325 3759.7812 637.03047 -10648.623 0 203.949 0.0011609936 0.0011502373 + 111930 -6247.7108 -6251.9812 4.2703884 3765.382 636.32783 -10653.691 0 204.66097 0.00097918922 0.00096618225 + 111940 -6247.7808 -6252.3338 4.5529616 3767.6808 636.47668 -10656.491 0 218.20347 0.00095850653 0.00093734523 + 111950 -6247.8296 -6252.7632 4.9336092 3766.4485 637.50515 -10656.717 0 236.44624 0.0011003996 0.0010716651 + 111960 -6247.9171 -6253.1585 5.2414286 3762.4025 639.17195 -10654.733 0 251.19867 0.0013608411 0.0013314129 + 111970 -6248.0535 -6253.4838 5.4303 3756.8691 641.04536 -10651.398 0 260.25044 0.0016692993 0.0016467047 + 111980 -6248.1924 -6253.7865 5.5940896 3751.3892 642.62503 -10647.801 0 268.10016 0.001949282 0.0019352671 + 111990 -6248.2741 -6254.1192 5.8450948 3747.3886 643.47169 -10644.979 0 280.12974 0.0021331211 0.0021222632 + 112000 -6248.2814 -6254.4525 6.1710947 3745.9075 643.31596 -10643.676 0 295.75349 0.002172388 0.002156984 + 112010 -6248.2562 -6254.667 6.4108237 3747.3497 642.12713 -10644.144 0 307.24264 0.0020483119 0.0020250802 + 112020 -6248.2631 -6254.6375 6.3744488 3751.3012 640.12851 -10646.067 0 305.49935 0.0017815059 0.0017542572 + 112030 -6248.3321 -6254.3379 6.0058671 3756.5446 637.75166 -10648.634 0 287.83485 0.0014340446 0.0014101606 + 112040 -6248.4312 -6253.8802 5.4490423 3761.3604 635.5338 -10650.774 0 261.14868 0.0010968729 0.0010806959 + 112050 -6248.4924 -6253.4508 4.9584478 3764.0713 633.98292 -10651.505 0 237.63664 0.00086289051 0.00085171593 + 112060 -6248.4684 -6253.1867 4.718237 3763.6341 633.44896 -10650.27 0 226.12439 0.00079552828 0.00078182343 + 112070 -6248.373 -6253.0872 4.7141386 3760.0268 634.03565 -10647.15 0 225.92797 0.00090709646 0.00088528788 + 112080 -6248.2684 -6253.0398 4.7714386 3754.2513 635.57247 -10642.864 0 228.67411 0.0011570629 0.0011288618 + 112090 -6248.2078 -6252.9414 4.7336136 3747.9616 637.65334 -10638.556 0 226.86133 0.0014696777 0.0014427395 + 112100 -6248.1836 -6252.8013 4.6176372 3742.9211 639.73845 -10635.461 0 221.30308 0.0017601361 0.0017410034 + 112110 -6248.1314 -6252.7268 4.5954541 3740.5339 641.29966 -10634.56 0 220.23995 0.0019567809 0.0019447469 + 112120 -6247.9857 -6252.8084 4.8226722 3741.563 641.97074 -10636.342 0 231.12951 0.0020143203 0.0020019896 + 112130 -6247.7357 -6253.019 5.2833288 3745.9956 641.65465 -10640.669 0 253.20676 0.0019209756 0.0019008316 + 112140 -6247.4305 -6253.2247 5.7942345 3752.9981 640.55056 -10646.773 0 277.69223 0.0017027847 0.0016736552 + 112150 -6247.1339 -6253.2921 6.1581944 3760.9893 639.08879 -10653.37 0 295.13523 0.0014225424 0.0013903399 + 112160 -6246.8674 -6253.1934 6.3259839 3767.9282 637.79286 -10658.914 0 303.17664 0.0011674079 0.0011398521 + 112170 -6246.5897 -6253.0205 6.4308713 3771.8336 637.11412 -10661.968 0 308.20343 0.0010238098 0.0010038957 + 112180 -6246.2262 -6252.9032 6.6770038 3771.4003 637.29445 -10661.598 0 319.99949 0.001047662 0.0010312287 + 112190 -6245.7204 -6252.8976 7.1772771 3766.4733 638.30073 -10657.672 0 343.97539 0.0012431117 0.001222259 + 112200 -6245.0682 -6252.9308 7.8625617 3758.1691 639.84647 -10650.946 0 376.81807 0.0015595241 0.0015291734 + 112210 -6244.3138 -6252.8444 8.5306028 3748.5677 641.48339 -10642.896 0 408.83435 0.0019078158 0.0018703274 + 112220 -6243.5055 -6252.5145 9.0089788 3740.08 642.72519 -10635.32 0 431.76081 0.0021893515 0.0021531797 + 112230 -6242.6452 -6251.9605 9.3152978 3734.7421 643.16683 -10629.869 0 446.44134 0.0023263357 0.0022989841 + 112240 -6241.6751 -6251.3493 9.6742203 3733.708 642.58192 -10627.639 0 463.64292 0.0022828504 0.0022633016 + 112250 -6240.532 -6250.8666 10.334663 3737.07 640.99775 -10628.934 0 495.29502 0.0020703562 0.0020479215 + 112260 -6239.2482 -6250.5388 11.290504 3743.9436 638.7402 -10633.223 0 541.10431 0.0017392729 0.0017020673 + 112270 -6238.0125 -6250.1715 12.158981 3752.6488 636.41126 -10639.232 0 582.72661 0.0013656609 0.0013131917 + 112280 -6237.0773 -6249.5164 12.439161 3760.9282 634.75077 -10645.195 0 596.1544 0.0010416665 0.00098856533 + 112290 -6236.5504 -6248.5515 12.001056 3766.3454 634.3891 -10649.286 0 575.15795 0.00086517178 0.00082855403 + 112300 -6236.302 -6247.5762 11.274112 3767.018 635.59431 -10650.188 0 540.3187 0.00091323632 0.00089470967 + 112310 -6236.1196 -6246.9757 10.856105 3762.4865 638.14997 -10647.612 0 520.28545 0.0012002113 0.0011827035 + 112320 -6235.937 -6246.8896 10.952614 3754.1566 641.42132 -10642.467 0 524.91074 0.0016513628 0.0016155829 + 112330 -6235.8863 -6247.1366 11.250305 3744.8633 644.56526 -10636.565 0 539.17772 0.002123325 0.00206696 + 112340 -6236.1379 -6247.4525 11.314632 3737.6957 646.79334 -10631.942 0 542.26064 0.0024667303 0.0024068466 + 112350 -6236.7095 -6247.7689 11.059367 3734.7504 647.59715 -10630.116 0 530.02694 0.0025911123 0.0025478195 + 112360 -6237.44 -6248.2542 10.814158 3736.5009 646.86749 -10631.623 0 518.27512 0.0024913657 0.0024691495 + 112370 -6238.1407 -6249.0954 10.954745 3741.9867 644.88437 -10635.967 0 525.01286 0.0022274698 0.0022119208 + 112380 -6238.7568 -6250.2442 11.487434 3749.4788 642.20224 -10641.925 0 550.54228 0.0018832745 0.0018554576 + 112390 -6239.3817 -6251.3865 12.004762 3757.0967 639.47675 -10647.96 0 575.33555 0.0015366385 0.0014907045 + 112400 -6240.1227 -6252.177 12.054304 3763.1211 637.2855 -10652.584 0 577.70988 0.0012521402 0.0011994579 + 112410 -6240.9668 -6252.5119 11.545107 3766.1399 635.99685 -10654.649 0 553.3063 0.0010830141 0.0010400112 + 112420 -6241.7838 -6252.5787 10.794909 3765.2811 635.7221 -10653.582 0 517.35261 0.0010646959 0.0010372772 + 112430 -6242.4421 -6252.6492 10.207137 3760.5622 636.34379 -10649.555 0 489.1833 0.0011985913 0.001177714 + 112440 -6242.9187 -6252.8216 9.9028491 3753.1019 637.58319 -10643.507 0 474.60009 0.0014405449 0.001411863 + 112450 -6243.3128 -6252.9465 9.6336666 3744.9104 639.07551 -10636.932 0 461.69936 0.0017091983 0.0016669487 + 112460 -6243.752 -6252.7901 9.0381097 3738.2338 640.44096 -10631.465 0 433.15693 0.0019155887 0.0018678022 + 112470 -6244.276 -6252.2701 7.9941051 3734.7666 641.35231 -10628.389 0 383.12237 0.0019978347 0.0019587245 + 112480 -6244.8066 -6251.5511 6.7445074 3735.1483 641.59679 -10628.296 0 323.23464 0.0019398034 0.0019171709 + 112490 -6245.2233 -6250.9323 5.7090327 3738.9459 641.12037 -10630.999 0 273.60888 0.0017659836 0.0017550259 + 112500 -6245.4659 -6250.6444 5.1785111 3745.0011 640.03936 -10635.685 0 248.18331 0.0015225867 0.0015105972 + 112510 -6245.5777 -6250.7225 5.1448121 3751.8577 638.61243 -10641.193 0 246.56826 0.0012605303 0.00123763 + 112520 -6245.6673 -6251.0402 5.3729755 3758.0594 637.17877 -10646.278 0 257.50313 0.0010283369 0.00099514922 + 112530 -6245.8265 -6251.4569 5.6303793 3762.307 636.07871 -10649.843 0 269.83937 0.00087180652 0.00083798227 + 112540 -6246.0666 -6251.9364 5.8697844 3763.6087 635.57856 -10651.124 0 281.313 0.0008312426 0.00080653112 + 112550 -6246.3261 -6252.5321 6.2060099 3761.5285 635.8159 -10649.876 0 297.42681 0.0009301311 0.00091614567 + 112560 -6246.5408 -6253.2619 6.7211313 3756.4575 636.76805 -10646.487 0 322.11432 0.0011591849 0.0011490265 + 112570 -6246.7094 -6254.0109 7.3014614 3749.6887 638.23998 -10641.94 0 349.927 0.0014676932 0.0014529706 + 112580 -6246.8933 -6254.5667 7.6734099 3743.1262 639.8784 -10637.571 0 367.75286 0.0017723391 0.0017505403 + 112590 -6247.1546 -6254.7612 7.6066148 3738.6849 641.23275 -10634.679 0 364.55166 0.0019830598 0.00195877 + 112600 -6247.494 -6254.5904 7.0963507 3737.643 641.87336 -10634.107 0 340.09694 0.0020343663 0.0020140679 + 112610 -6247.8479 -6254.2133 6.3654149 3740.2405 641.53983 -10635.994 0 305.0664 0.0019072222 0.0018930301 + 112620 -6248.142 -6253.8358 5.6938592 3745.6636 640.25718 -10639.757 0 272.88168 0.0016331314 0.0016210916 + 112630 -6248.3482 -6253.5762 5.2279914 3752.3525 638.35829 -10644.287 0 250.55468 0.0012823305 0.0012663535 + 112640 -6248.4967 -6253.4165 4.9198476 3758.4549 636.39054 -10648.262 0 235.7867 0.00094365815 0.00092120052 + 112650 -6248.6395 -6253.2664 4.6268917 3762.2746 634.93799 -10650.479 0 221.74661 0.00070272695 0.00067711965 + 112660 -6248.8031 -6253.0745 4.2713442 3762.6516 634.42704 -10650.153 0 204.70678 0.00062179589 0.00059934323 + 112670 -6248.9675 -6252.8894 3.9218748 3759.2549 634.98783 -10647.132 0 187.95825 0.0007235907 0.00070818947 + 112680 -6249.0867 -6252.8257 3.7389244 3752.7383 636.41619 -10641.98 0 179.19024 0.00098246424 0.00097243437 + 112690 -6249.1282 -6252.971 3.8428269 3744.6759 638.24043 -10635.887 0 184.16983 0.0013270781 0.0013166832 + 112700 -6249.098 -6253.3149 4.2169009 3737.2144 639.86409 -10630.393 0 202.09755 0.0016569089 0.0016410316 + 112710 -6249.0354 -6253.7506 4.7151169 3732.489 640.74052 -10626.98 0 225.97486 0.0018702943 0.0018484013 + 112720 -6248.9831 -6254.143 5.1598771 3731.9678 640.53228 -10626.643 0 247.29026 0.001896325 0.0018726556 + 112730 -6248.954 -6254.4076 5.4536747 3735.9582 639.21429 -10629.58 0 261.37069 0.0017193379 0.0016992228 + 112740 -6248.9214 -6254.5415 5.6200107 3743.4725 637.09267 -10635.107 0 269.34245 0.00138579 0.001371072 + 112750 -6248.8433 -6254.5845 5.7411785 3752.5133 634.73295 -10641.831 0 275.14949 0.00098998286 0.00097745894 + 112760 -6248.7018 -6254.5505 5.8487695 3760.6652 632.81484 -10648.031 0 280.30585 0.00064460776 0.00062906098 + 112770 -6248.5227 -6254.3986 5.8759755 3765.7645 631.94832 -10652.112 0 281.60972 0.00044826888 0.00042745182 + 112780 -6248.3521 -6254.0823 5.7302029 3766.4369 632.49679 -10653.016 0 274.62347 0.00046077722 0.00043752895 + 112790 -6248.2106 -6253.6283 5.4177258 3762.4071 634.45697 -10650.492 0 259.64782 0.00069016449 0.00066948825 + 112800 -6248.0725 -6253.1577 5.0852108 3754.5767 637.43556 -10645.17 0 243.71184 0.0010900268 0.001074127 + 112810 -6247.8883 -6252.8169 4.9285708 3744.8683 640.7351 -10638.42 0 236.20477 0.0015664771 0.0015527009 + 112820 -6247.6245 -6252.6837 5.0592041 3735.8149 643.5282 -10632.027 0 242.46545 0.0019969115 0.0019802167 + 112830 -6247.2833 -6252.7276 5.4442488 3729.9222 645.07608 -10627.726 0 260.91895 0.0022609064 0.002238149 + 112840 -6246.8937 -6252.8428 5.9491275 3728.9478 644.93658 -10626.727 0 285.11557 0.002276455 0.002248835 + 112850 -6246.4872 -6252.9194 6.4321121 3733.324 643.10275 -10629.346 0 308.2629 0.0020288105 0.0020008509 + 112860 -6246.0754 -6252.902 6.8265959 3741.9383 640.02185 -10634.862 0 327.16878 0.0015795787 0.0015555342 + 112870 -6245.6433 -6252.8068 7.163537 3752.3897 636.47721 -10641.674 0 343.31689 0.0010505261 0.0010307989 + 112880 -6245.1692 -6252.6864 7.5171909 3761.6738 633.36528 -10647.725 0 360.26597 0.00058658961 0.00056701019 + 112890 -6244.6569 -6252.5688 7.911934 3767.0784 631.44074 -10651.088 0 379.18427 0.00031135843 0.00028632769 + 112900 -6244.152 -6252.4258 8.2738083 3766.9704 631.11488 -10650.511 0 396.52732 0.0002915942 0.0002587339 + 112910 -6243.7203 -6252.199 8.4786942 3761.2171 632.36936 -10645.786 0 406.3466 0.00052271914 0.00048496119 + 112920 -6243.4048 -6251.8548 8.4500185 3751.1602 634.80114 -10637.816 0 404.9723 0.0009368086 0.000900203 + 112930 -6243.201 -6251.4156 8.2146454 3739.2233 637.76336 -10628.402 0 393.6919 0.0014257527 0.0013952156 + 112940 -6243.0666 -6250.9569 7.8903135 3728.293 640.53941 -10619.789 0 378.1481 0.001870215 0.0018464639 + 112950 -6242.9491 -6250.5877 7.6385935 3721.0247 642.49797 -10614.11 0 366.08426 0.0021671385 0.0021462807 + 112960 -6242.8165 -6250.4168 7.6002439 3719.2304 643.21026 -10612.857 0 364.24633 0.0022505573 0.0022264459 + 112970 -6242.6811 -6250.5017 7.8205553 3723.4684 642.53098 -10616.501 0 374.80489 0.0021030099 0.0020716929 + 112980 -6242.5983 -6250.8174 8.219115 3732.8839 640.63705 -10624.338 0 393.90611 0.0017583715 0.0017219482 + 112990 -6242.6271 -6251.2874 8.6602524 3745.318 638.00322 -10634.609 0 415.04789 0.0012975314 0.0012633379 + 113000 -6242.779 -6251.8493 9.0702615 3757.7353 635.30051 -10644.885 0 434.69783 0.00083453577 0.00080878253 + 113010 -6243.0129 -6252.4697 9.4568341 3766.9835 633.2313 -10652.685 0 453.22455 0.00048934414 0.00047070425 + 113020 -6243.2937 -6253.0795 9.78582 3770.7128 632.34418 -10656.137 0 468.9914 0.00035128027 0.00033155746 + 113030 -6243.6492 -6253.5211 9.8719356 3768.092 632.8814 -10654.494 0 473.11855 0.00044891126 0.00042096106 + 113040 -6244.148 -6253.6092 9.46119 3759.9977 634.70478 -10648.312 0 453.43331 0.00074298341 0.00070796917 + 113050 -6244.8114 -6253.2742 8.4627643 3748.6359 637.32705 -10639.237 0 405.58315 0.0011451968 0.0011117177 + 113060 -6245.557 -6252.6532 7.0961512 3736.8222 640.04595 -10629.521 0 340.08738 0.0015496102 0.0015256522 + 113070 -6246.243 -6252.0318 5.7888311 3727.2381 642.14052 -10621.41 0 277.43327 0.0018597569 0.0018454288 + 113080 -6246.7693 -6251.6761 4.9067713 3721.8791 643.06286 -10616.618 0 235.16001 0.0020043822 0.001992058 + 113090 -6247.135 -6251.6843 4.5492988 3721.7397 642.56587 -10615.99 0 218.02792 0.0019460478 0.0019271618 + 113100 -6247.4134 -6251.9688 4.5553961 3726.6781 640.74123 -10619.388 0 218.32014 0.0016883124 0.0016604363 + 113110 -6247.6829 -6252.3638 4.680888 3735.4236 637.97605 -10625.763 0 224.33442 0.0012803623 0.0012487288 + 113120 -6247.971 -6252.7633 4.792289 3745.7838 634.85323 -10633.4 0 229.67338 0.00081237842 0.00078501207 + 113130 -6248.2444 -6253.1781 4.9337238 3755.1094 632.02405 -10640.312 0 236.45173 0.00039667372 0.00037747632 + 113140 -6248.4453 -6253.6762 5.2308251 3760.9718 630.07671 -10644.725 0 250.69049 0.00013748458 0.00012310446 + 113150 -6248.5457 -6254.2713 5.7256163 3761.8535 629.41695 -10645.542 0 274.40366 9.995479e-05 8.2933491e-05 + 113160 -6248.5757 -6254.864 6.2883457 3757.5923 630.17515 -10642.631 0 301.37281 0.00029056378 0.00026590716 + 113170 -6248.6038 -6255.2879 6.6840593 3749.4026 632.16105 -10636.852 0 320.33763 0.0006563375 0.00062578826 + 113180 -6248.6823 -6255.4198 6.7374642 3739.4821 634.89051 -10629.792 0 322.89709 0.0011018617 0.0010722225 + 113190 -6248.8061 -6255.2573 6.4512003 3730.382 637.69488 -10623.334 0 309.17771 0.001515996 0.0014931914 + 113200 -6248.9221 -6254.9 5.9778766 3724.3676 639.89278 -10619.16 0 286.49339 0.0017986028 0.0017828567 + 113210 -6248.978 -6254.4619 5.4839082 3722.924 640.97395 -10618.36 0 262.81965 0.0018815651 0.0018677032 + 113220 -6248.9636 -6253.9954 5.0317723 3726.453 640.73621 -10621.185 0 241.15076 0.001742754 0.0017249893 + 113230 -6248.9153 -6253.4903 4.5749532 3734.1711 639.33236 -10626.994 0 219.25743 0.0014124099 0.0013894179 + 113240 -6248.882 -6252.9422 4.0601779 3744.2264 637.21486 -10634.383 0 194.5865 0.00096985753 0.00094593592 + 113250 -6248.8815 -6252.4281 3.5465433 3754.0698 634.99966 -10641.498 0 169.97025 0.00052807045 0.00050932778 + 113260 -6248.8809 -6252.1128 3.2318233 3761.0634 633.29638 -10646.473 0 154.8871 0.00020640256 0.00019503496 + 113270 -6248.8182 -6252.1606 3.3424805 3763.2073 632.55587 -10647.924 0 160.19042 9.7140643e-05 8.8803381e-05 + 113280 -6248.649 -6252.6083 3.9592701 3759.7611 632.96819 -10645.338 0 189.75044 0.00023628429 0.00022326663 + 113290 -6248.3847 -6253.305 4.9202986 3751.5152 634.41945 -10639.24 0 235.80832 0.00058962188 0.0005674744 + 113300 -6248.0878 -6253.984 5.8962013 3740.5822 636.50577 -10631.072 0 282.57905 0.0010606319 0.0010324912 + 113310 -6247.8237 -6254.4193 6.5956036 3729.7748 638.60946 -10622.804 0 316.09833 0.0015186495 0.0014930933 + 113320 -6247.6054 -6254.5487 6.943293 3721.8064 640.04397 -10616.399 0 332.76156 0.00183731 0.0018211306 + 113330 -6247.3859 -6254.4705 7.0846047 3718.5907 640.25127 -10613.312 0 339.53401 0.0019290738 0.001921086 + 113340 -6247.1093 -6254.3227 7.21343 3720.8249 638.99639 -10614.144 0 345.70804 0.0017652736 0.0017567783 + 113350 -6246.7747 -6254.1516 7.3769102 3727.8858 636.48199 -10618.519 0 353.54293 0.0013800245 0.0013619448 + 113360 -6246.4499 -6253.8855 7.435564 3737.9775 633.32349 -10625.186 0 356.35395 0.00086237392 0.00083303241 + 113370 -6246.2156 -6253.4368 7.2212299 3748.4863 630.37926 -10632.302 0 346.08186 0.00033966218 0.00030607798 + 113380 -6246.0902 -6252.8329 6.7426137 3756.5514 628.49443 -10637.879 0 323.14388 -4.9143794e-05 -7.7892514e-05 + 113390 -6246.0122 -6252.2381 6.2258273 3759.8168 628.25369 -10640.309 0 298.37658 -0.00018982242 -0.00021084879 + 113400 -6245.898 -6251.8381 5.9400277 3757.1758 629.82324 -10638.837 0 284.67946 -2.9927504e-05 -4.8353706e-05 + 113410 -6245.7166 -6251.6992 5.9826021 3749.2043 632.91172 -10633.815 0 286.71986 0.00039930456 0.00037640301 + 113420 -6245.508 -6251.7399 6.2318789 3738.0484 636.83917 -10626.627 0 298.6666 0.00098825365 0.00095939963 + 113430 -6245.3338 -6251.8338 6.5000756 3726.7803 640.69153 -10619.306 0 311.5201 0.001581426 0.0015522549 + 113440 -6245.2082 -6251.9371 6.7289714 3718.4763 643.53617 -10613.95 0 322.49007 0.0020244817 0.0020017372 + 113450 -6245.0784 -6252.1128 7.0343334 3715.3685 644.6599 -10612.141 0 337.12473 0.0022068853 0.0021907817 + 113460 -6244.8766 -6252.4254 7.5488308 3718.3222 643.76927 -10614.517 0 361.78233 0.0020860892 0.002068799 + 113470 -6244.5983 -6252.8095 8.2111595 3726.6895 641.0891 -10620.588 0 393.52484 0.001691635 0.0016641381 + 113480 -6244.3312 -6253.0531 8.7218874 3738.4565 637.31815 -10628.828 0 418.00178 0.0011165239 0.0010778829 + 113490 -6244.1901 -6252.9455 8.755405 3750.6235 633.44366 -10637.013 0 419.60813 0.00050112714 0.00046085529 + 113500 -6244.209 -6252.4731 8.2641327 3759.8419 630.46498 -10642.78 0 396.06361 6.5615493e-06 -2.3531778e-05 + 113510 -6244.3034 -6251.8708 7.5674752 3763.3114 629.11317 -10644.295 0 362.67587 -0.00022703646 -0.00024418974 + 113520 -6244.3545 -6251.4543 7.0998416 3759.7263 629.65362 -10640.834 0 340.26425 -0.00012922364 -0.00014241696 + 113530 -6244.3273 -6251.3855 7.0582119 3749.8487 631.82193 -10633.056 0 338.26912 0.00026874714 0.00024789096 + 113540 -6244.2988 -6251.5999 7.3011081 3736.3446 634.90246 -10622.847 0 349.91006 0.00084073401 0.00080926305 + 113550 -6244.3764 -6251.9395 7.5631125 3722.9011 637.93359 -10612.774 0 362.46679 0.0014115189 0.0013771096 + 113560 -6244.6002 -6252.3186 7.718413 3713.0377 639.99562 -10605.352 0 369.90966 0.0018182348 0.0017906689 + 113570 -6244.9268 -6252.7488 7.8220203 3709.117 640.49589 -10602.362 0 374.8751 0.0019583029 0.0019399294 + 113580 -6245.2986 -6253.2336 7.9349758 3711.8382 639.34528 -10604.417 0 380.28856 0.0018088547 0.0017933198 + 113590 -6245.7125 -6253.6767 7.96421 3720.22 636.95599 -10610.853 0 381.68963 0.0014210614 0.0014004695 + 113600 -6246.2117 -6253.9145 7.7028737 3731.9494 634.06977 -10619.934 0 369.16493 0.00090025198 0.000873003 + 113610 -6246.814 -6253.8463 7.032319 3743.9836 631.49833 -10629.328 0 337.02818 0.00037889722 0.00035071102 + 113620 -6247.4605 -6253.5375 6.0770302 3753.3044 629.8854 -10636.727 0 291.24538 -1.4978171e-05 -3.7201856e-05 + 113630 -6248.0453 -6253.1942 5.1488694 3757.6796 629.56934 -10640.443 0 246.76271 -0.00018966553 -0.0002046265 + 113640 -6248.4938 -6253.0213 4.5275081 3756.2286 630.56031 -10639.81 0 216.98359 -0.00011313051 -0.00012598983 + 113650 -6248.8079 -6253.0844 4.2765815 3749.6141 632.59193 -10635.291 0 204.95778 0.00018074997 0.00016367985 + 113660 -6249.047 -6253.2926 4.2455579 3739.7886 635.20089 -10628.282 0 203.47096 0.00060544374 0.00058259165 + 113670 -6249.2722 -6253.5046 4.2324137 3729.3868 637.81525 -10620.707 0 202.84101 0.0010489281 0.0010244607 + 113680 -6249.5024 -6253.6539 4.1514676 3720.9952 639.85467 -10614.504 0 198.96162 0.00140399 0.0013836319 + 113690 -6249.7126 -6253.7838 4.0712533 3716.539 640.84268 -10611.165 0 195.1173 0.0015916647 0.001577743 + 113700 -6249.8662 -6253.9868 4.1206211 3716.9185 640.51359 -10611.419 0 197.48329 0.0015738568 0.001563847 + 113710 -6249.9492 -6254.3147 4.3655036 3721.9003 638.88512 -10615.1 0 209.21943 0.0013568798 0.0013459865 + 113720 -6249.9801 -6254.733 4.7529212 3730.2125 636.27056 -10621.216 0 227.78665 0.00098866132 0.00097373078 + 113730 -6249.9951 -6255.1418 5.1466402 3739.8134 633.21846 -10628.174 0 246.65587 0.00055017003 0.0005317752 + 113740 -6250.0212 -6255.4353 5.4140654 3748.3145 630.38937 -10634.139 0 259.47239 0.00014027145 0.00012161344 + 113750 -6250.0572 -6255.5549 5.4977607 3753.5181 628.40036 -10637.473 0 263.48354 -0.00014539467 -0.00016164291 + 113760 -6250.0778 -6255.4997 5.4219235 3753.9734 627.6798 -10637.153 0 259.84899 -0.00023784722 -0.00025205064 + 113770 -6250.0579 -6255.2957 5.2378719 3749.3969 628.36933 -10633.062 0 251.02821 -0.00011411514 -0.00012936975 + 113780 -6249.9954 -6254.9622 4.9668642 3740.8041 630.29303 -10626.059 0 238.04 0.00019443853 0.00017512343 + 113790 -6249.9123 -6254.5106 4.5982587 3730.2706 632.99618 -10617.777 0 220.37436 0.00060895628 0.00058541111 + 113800 -6249.8344 -6253.9755 4.1411306 3720.3859 635.84442 -10610.206 0 198.46621 0.0010237154 0.00099888318 + 113810 -6249.768 -6253.4415 3.6735602 3713.577 638.1656 -10605.184 0 176.05762 0.0013339598 0.0013115692 + 113820 -6249.6929 -6253.0318 3.3389217 3711.5112 639.40649 -10603.95 0 160.01986 0.0014623102 0.0014439578 + 113830 -6249.5728 -6252.8585 3.2857008 3714.7247 639.26957 -10606.853 0 157.46922 0.0013767768 0.0013607172 + 113840 -6249.3734 -6252.9636 3.5901675 3722.5276 637.79548 -10613.287 0 172.06097 0.0010972326 0.0010797365 + 113850 -6249.078 -6253.2903 4.2123793 3733.1598 635.36779 -10621.818 0 201.88085 0.00069087769 0.00066906622 + 113860 -6248.6916 -6253.7052 5.0136345 3744.1429 632.63427 -10630.482 0 240.2815 0.00025880318 0.00023277357 + 113870 -6248.236 -6254.0597 5.8236588 3752.7846 630.3564 -10637.201 0 279.10241 -8.472653e-05 -0.00011212662 + 113880 -6247.7377 -6254.2517 6.5139505 3756.7912 629.21446 -10640.257 0 312.18506 -0.00023892363 -0.00026444413 + 113890 -6247.2202 -6254.2523 7.0320964 3754.8903 629.61033 -10638.753 0 337.01751 -0.00014535212 -0.00016778315 + 113900 -6246.7066 -6254.0925 7.3859354 3747.2861 631.52332 -10632.902 0 353.97547 0.00018930742 0.00016866311 + 113910 -6246.2241 -6253.833 7.6088518 3735.7383 634.47701 -10624.048 0 364.65887 0.00068758233 0.00066646138 + 113920 -6245.8003 -6253.5394 7.7390479 3723.159 637.65298 -10614.351 0 370.8986 0.0012191689 0.0011960779 + 113930 -6245.4538 -6253.2601 7.8062332 3712.8191 640.1343 -10606.213 0 374.1185 0.0016381877 0.0016129383 + 113940 -6245.1922 -6253.0005 7.8082982 3707.4188 641.1974 -10601.617 0 374.21746 0.0018261558 0.0017996435 + 113950 -6245.0165 -6252.7181 7.7015962 3708.3208 640.53741 -10601.576 0 369.1037 0.0017262838 0.001700317 + 113960 -6244.9196 -6252.3643 7.4447053 3715.1661 638.34105 -10605.871 0 356.79205 0.0013599144 0.001336693 + 113970 -6244.8775 -6251.9547 7.0771875 3725.9812 635.19596 -10613.132 0 339.17854 0.00082119569 0.00080172067 + 113980 -6244.8491 -6251.5983 6.7492257 3737.7497 631.89723 -10621.245 0 323.46077 0.0002507008 0.00023301686 + 113990 -6244.799 -6251.4415 6.6425449 3747.2781 629.23565 -10627.955 0 318.34802 -0.00020494362 -0.00022536921 + 114000 -6244.7277 -6251.5591 6.831399 3752.0779 627.82616 -10631.463 0 327.39897 -0.00043416519 -0.00046101713 + 114010 -6244.6778 -6251.8874 7.209547 3750.9893 627.99127 -10630.868 0 345.52194 -0.00038841011 -0.00042058772 + 114020 -6244.7008 -6252.2633 7.5624469 3744.3893 629.69428 -10626.347 0 362.43489 -8.9673994e-05 -0.00012102546 + 114030 -6244.8081 -6252.5367 7.7286505 3733.9989 632.52778 -10619.063 0 370.4003 0.00038041203 0.00035630828 + 114040 -6244.9528 -6252.6569 7.7040806 3722.4138 635.7816 -10610.852 0 369.22277 0.00090244247 0.00088620055 + 114050 -6245.0672 -6252.6653 7.5980801 3712.4968 638.60601 -10603.768 0 364.14263 0.0013456315 0.0013304772 + 114060 -6245.1232 -6252.6216 7.4984314 3706.7253 640.24436 -10599.591 0 359.3669 0.0015963182 0.0015730972 + 114070 -6245.1599 -6252.5458 7.385894 3706.5739 640.2634 -10599.383 0 353.97348 0.001586686 0.0015515568 + 114080 -6245.2508 -6252.4323 7.1814204 3712.0607 638.69261 -10603.186 0 344.17396 0.0013174893 0.0012757063 + 114090 -6245.4374 -6252.3177 6.8802896 3721.6385 636.01294 -10609.969 0 329.74208 0.00086444 0.00082650324 + 114100 -6245.6859 -6252.3215 6.6355787 3732.5674 632.9974 -10617.886 0 318.01416 0.00035974884 0.00033256477 + 114110 -6245.9127 -6252.5892 6.6764553 3741.7361 630.46804 -10624.793 0 319.9732 -4.9856737e-05 -6.9217528e-05 + 114120 -6246.0616 -6253.1572 7.0955612 3746.663 629.05925 -10628.879 0 340.05911 -0.00025370805 -0.00027550298 + 114130 -6246.1648 -6253.863 7.6982456 3746.2622 629.05666 -10629.182 0 368.94312 -0.00021361236 -0.00024584211 + 114140 -6246.3223 -6254.4146 8.0923182 3741.0496 630.34249 -10625.807 0 387.8293 3.0726106e-05 -9.9124363e-06 + 114150 -6246.6096 -6254.5839 7.9743463 3732.7713 632.45098 -10619.806 0 382.17542 0.00038640864 0.00034779886 + 114160 -6247.002 -6254.3582 7.3561587 3723.7256 634.71648 -10612.8 0 352.5484 0.00074465106 0.00071760357 + 114170 -6247.3939 -6253.9212 6.5273505 3716.1153 636.47039 -10606.507 0 312.82726 0.0010112061 0.00099636153 + 114180 -6247.6864 -6253.5001 5.8137144 3711.6013 637.22486 -10602.326 0 278.62581 0.0011226461 0.0011119538 + 114190 -6247.8569 -6253.2177 5.3607478 3711.0447 636.79065 -10601.053 0 256.91711 0.0010531943 0.0010370599 + 114200 -6247.9571 -6253.0556 5.0984019 3714.3742 635.30638 -10602.736 0 244.34403 0.00081790584 0.00079265348 + 114210 -6248.0594 -6252.9283 4.8689111 3720.58 633.18346 -10606.692 0 233.34554 0.00047197414 0.00044188475 + 114220 -6248.1982 -6252.7898 4.5915483 3727.9014 630.98743 -10611.679 0 220.05276 0.00010171783 7.4704245e-05 + 114230 -6248.349 -6252.6845 4.3355054 3734.2529 629.28759 -10616.225 0 207.78174 -0.00019552869 -0.00021468154 + 114240 -6248.4564 -6252.7086 4.2521724 3737.8205 628.51235 -10619.041 0 203.78796 -0.00033924105 -0.00035240353 + 114250 -6248.4853 -6252.9212 4.4359815 3737.6288 628.84331 -10619.393 0 212.59712 -0.00029144399 -0.00030467907 + 114260 -6248.4499 -6253.2969 4.8470135 3733.8378 630.17001 -10617.305 0 232.29608 -6.8938098e-05 -8.6732204e-05 + 114270 -6248.3965 -6253.76 5.3634582 3727.6439 632.1181 -10613.522 0 257.04701 0.00026368987 0.0002419437 + 114280 -6248.3599 -6254.2545 5.894606 3720.8554 634.15277 -10609.263 0 282.5026 0.00061625914 0.00059459642 + 114290 -6248.3378 -6254.7646 6.4267926 3715.3461 635.73686 -10605.848 0 308.00796 0.00089986498 0.00088120645 + 114300 -6248.3059 -6255.2635 6.9576081 3712.572 636.49294 -10604.328 0 333.44762 0.0010486884 0.0010321227 + 114310 -6248.2545 -6255.6528 7.3982613 3713.2448 636.30612 -10605.204 0 354.56619 0.0010324705 0.0010147296 + 114320 -6248.2081 -6255.7686 7.5604965 3717.1808 635.32751 -10608.277 0 362.34142 0.00086004416 0.00083932338 + 114330 -6248.2055 -6255.4717 7.2661284 3723.335 633.8864 -10612.693 0 348.23364 0.00057549202 0.00055366443 + 114340 -6248.2602 -6254.7585 6.4983052 3730.0358 632.36228 -10617.157 0 311.43525 0.00024761916 0.00022858373 + 114350 -6248.3404 -6253.8006 5.4601587 3735.4066 631.07792 -10620.285 0 261.68144 -4.6484483e-05 -6.0716918e-05 + 114360 -6248.3929 -6252.8701 4.4772209 3737.8792 630.24819 -10620.997 0 214.57355 -0.00024062547 -0.00025217413 + 114370 -6248.3839 -6252.2009 3.8170482 3736.6368 629.97769 -10618.815 0 182.93437 -0.00029564186 -0.00030902068 + 114380 -6248.3187 -6251.8875 3.5687659 3731.8289 630.2755 -10613.992 0 171.03529 -0.00020706959 -0.00022511094 + 114390 -6248.2222 -6251.8856 3.6633815 3724.4974 631.06058 -10607.444 0 175.5698 -2.772115e-06 -2.4062126e-05 + 114400 -6248.1018 -6252.0959 3.9940741 3716.2796 632.15529 -10600.531 0 191.41844 0.00026648519 0.00024628426 + 114410 -6247.924 -6252.4499 4.5259816 3709.0218 633.28576 -10594.757 0 216.91043 0.00053853558 0.00052254303 + 114420 -6247.6237 -6252.9311 5.3073268 3704.4135 634.11436 -10591.459 0 254.35688 0.00074998349 0.00073666491 + 114430 -6247.1465 -6253.5202 6.373753 3703.6773 634.31809 -10591.516 0 305.46601 0.00084525015 0.00082899377 + 114440 -6246.5011 -6254.127 7.625952 3707.2907 633.70172 -10595.119 0 365.47841 0.00078749438 0.00076349335 + 114450 -6245.7805 -6254.5857 8.8052513 3714.7391 632.30565 -10601.63 0 421.99705 0.00057327193 0.00054280029 + 114460 -6245.1125 -6254.7433 9.6307467 3724.4063 630.45192 -10609.601 0 461.55942 0.00024622572 0.00021665962 + 114470 -6244.5704 -6254.5666 9.9962274 3733.7976 628.68768 -10617.052 0 479.07531 -0.00010251573 -0.0001244078 + 114480 -6244.1342 -6254.1545 10.020233 3740.198 627.63291 -10621.985 0 480.22578 -0.00035784056 -0.00037327285 + 114490 -6243.7498 -6253.6278 9.8779698 3741.5904 627.78447 -10623.003 0 473.40774 -0.0004232306 -0.00044127409 + 114500 -6243.4139 -6253.014 9.6000735 3737.4071 629.34202 -10619.763 0 460.08939 -0.00026089961 -0.00029014128 + 114510 -6243.1863 -6252.2571 9.070846 3728.7316 632.10957 -10613.098 0 434.72584 9.2614563e-05 5.2368587e-05 + 114520 -6243.1198 -6251.3434 8.2235424 3717.889 635.50777 -10604.74 0 394.11829 0.00054115412 0.00049896805 + 114530 -6243.1939 -6250.4046 7.2106595 3707.6828 638.70611 -10596.794 0 345.57526 0.0009622775 0.00092838741 + 114540 -6243.3191 -6249.6956 6.3764945 3700.6167 640.84419 -10591.157 0 305.5974 0.0012426459 0.0012203277 + 114550 -6243.3984 -6249.4644 6.0660038 3698.3198 641.27601 -10589.06 0 290.71694 0.0013050005 0.0012884668 + 114560 -6243.3902 -6249.8078 6.4175662 3701.2379 639.76358 -10590.809 0 307.56578 0.0011237806 0.0011031018 + 114570 -6243.3362 -6250.602 7.2658436 3708.5683 636.56424 -10595.735 0 348.21999 0.00073027464 0.00069948686 + 114580 -6243.3369 -6251.5582 8.2213058 3718.3979 632.38453 -10602.341 0 394.0111 0.00020877597 0.00017098091 + 114590 -6243.4816 -6252.3819 8.9002744 3728.0612 628.20457 -10608.648 0 426.55109 -0.00031706624 -0.00035233224 + 114600 -6243.7798 -6252.9236 9.1438408 3734.7639 625.01667 -10612.704 0 438.22415 -0.00071127715 -0.00073673972 + 114610 -6244.1641 -6253.2003 9.0361374 3736.4155 623.55274 -10613.168 0 433.06241 -0.000865562 -0.00088276521 + 114620 -6244.5656 -6253.2929 8.7273189 3732.3898 624.08043 -10609.763 0 418.26209 -0.00073937284 -0.00075645893 + 114630 -6244.9737 -6253.2507 8.2770352 3723.8151 626.32651 -10603.392 0 396.68197 -0.000378634 -0.00040197345 + 114640 -6245.4206 -6253.0994 7.6788498 3713.1962 629.55649 -10595.852 0 368.01357 9.9802937e-05 7.1315218e-05 + 114650 -6245.9209 -6252.9073 6.9864098 3703.5436 632.79888 -10589.25 0 334.82796 0.00055067973 0.00052364711 + 114660 -6246.4428 -6252.8011 6.3582742 3697.4235 635.14859 -10585.373 0 304.72418 0.00084845512 0.00082853533 + 114670 -6246.9322 -6252.8994 5.967244 3696.2876 636.04084 -10585.228 0 285.98382 0.00092168996 0.00090913432 + 114680 -6247.3523 -6253.228 5.8756669 3700.2177 635.39505 -10588.841 0 281.59493 0.00076596071 0.00075619461 + 114690 -6247.704 -6253.6936 5.9896374 3708.0407 633.58797 -10595.322 0 287.05703 0.00043719677 0.00042480899 + 114700 -6248.0163 -6254.135 6.1186596 3717.702 631.28701 -10603.124 0 293.2405 3.1284231e-05 1.3890843e-05 + 114710 -6248.321 -6254.4132 6.0922507 3726.7868 629.21978 -10610.42 0 291.97484 -0.00034319607 -0.00036384373 + 114720 -6248.6273 -6254.4845 5.8572232 3733.0861 627.96257 -10615.533 0 280.711 -0.00059225946 -0.00061230635 + 114730 -6248.9167 -6254.4106 5.4939098 3735.1078 627.80555 -10617.324 0 263.29899 -0.00065832264 -0.00067511094 + 114740 -6249.1594 -6254.3019 5.142514 3732.43 628.71451 -10615.446 0 246.45812 -0.0005329887 -0.00054691392 + 114750 -6249.3385 -6254.2358 4.8972604 3725.8048 630.37582 -10610.416 0 234.7042 -0.00025849677 -0.00027210243 + 114760 -6249.4611 -6254.2122 4.7510548 3716.958 632.29571 -10603.466 0 227.6972 8.3500746e-05 6.7983943e-05 + 114770 -6249.5473 -6254.1744 4.6270655 3708.1216 633.92577 -10596.222 0 221.75494 0.00039436021 0.00037661281 + 114780 -6249.6119 -6254.0699 4.4579996 3701.434 634.7924 -10590.296 0 213.65236 0.00058601701 0.00056715394 + 114790 -6249.655 -6253.896 4.2409667 3698.3943 634.60872 -10586.899 0 203.25092 0.00060464811 0.00058563631 + 114800 -6249.6695 -6253.6999 4.0303906 3699.5232 633.34491 -10586.568 0 193.15893 0.0004430363 0.00042388616 + 114810 -6249.6542 -6253.5476 3.8934236 3704.291 631.23698 -10589.076 0 186.5947 0.0001396911 0.00012016769 + 114820 -6249.6163 -6253.4978 3.8815152 3711.2893 628.72868 -10593.516 0 186.02399 -0.00023229407 -0.00025159289 + 114830 -6249.5594 -6253.6001 4.0406886 3718.5869 626.36191 -10598.549 0 193.65247 -0.00058252694 -0.00060043788 + 114840 -6249.4695 -6253.8942 4.4247679 3724.2057 624.64768 -10602.748 0 212.05971 -0.00082408672 -0.00084057087 + 114850 -6249.321 -6254.3817 5.0607331 3726.6336 623.95269 -10604.968 0 242.53872 -0.00089530563 -0.00091249533 + 114860 -6249.1032 -6254.9781 5.8749082 3725.2434 624.4257 -10604.647 0 281.55856 -0.00077745331 -0.00079812835 + 114870 -6248.842 -6255.504 6.6619929 3720.4662 625.97266 -10601.943 0 319.28008 -0.00050098273 -0.00052544706 + 114880 -6248.5873 -6255.7546 7.1672947 3713.6399 628.28084 -10597.675 0 343.49698 -0.00013580946 -0.00016066322 + 114890 -6248.3708 -6255.6113 7.2404839 3706.5961 630.88799 -10593.095 0 347.00462 0.00023074753 0.00020983702 + 114900 -6248.1782 -6255.1031 6.9248696 3701.1654 633.28446 -10589.553 0 331.87861 0.00051765164 0.00050154466 + 114910 -6247.9696 -6254.368 6.3983772 3698.7608 635.02479 -10588.154 0 306.64614 0.00066614986 0.00065089235 + 114920 -6247.7246 -6253.5588 5.8341912 3700.0946 635.8203 -10589.474 0 279.60718 0.00064724038 0.00062752379 + 114930 -6247.4635 -6252.7829 5.3194065 3705.0108 635.59259 -10593.386 0 254.93581 0.00046545706 0.00043964994 + 114940 -6247.2225 -6252.1122 4.8897326 3712.4476 634.48155 -10599.041 0 234.34342 0.00016117406 0.00013310855 + 114950 -6247.0087 -6251.6256 4.6168742 3720.5903 632.81002 -10605.026 0 221.26652 -0.00019239674 -0.00021667098 + 114960 -6246.7735 -6251.4166 4.6430148 3727.2609 631.01146 -10609.689 0 222.51932 -0.00050284479 -0.00052061271 + 114970 -6246.4288 -6251.5409 5.1121064 3730.4909 629.53185 -10611.564 0 245.00082 -0.00068298535 -0.00069784802 + 114980 -6245.8989 -6251.9426 6.0437037 3729.1104 628.72103 -10609.774 0 289.64819 -0.00067870713 -0.00069802093 + 114990 -6245.1785 -6252.4373 7.2587968 3723.1415 628.73181 -10604.311 0 347.88227 -0.00048887049 -0.00051727868 + 115000 -6244.3519 -6252.8017 8.4497297 3713.8327 629.45217 -10596.087 0 404.95846 -0.00016783666 -0.00020240933 + 115010 -6243.5422 -6252.9206 9.378406 3703.3124 630.50779 -10586.741 0 449.46584 0.00019177827 0.00015965632 + 115020 -6242.8255 -6252.8662 10.040641 3693.9988 631.36892 -10578.234 0 481.20383 0.00048875459 0.0004654357 + 115030 -6242.2035 -6252.8133 10.609857 3687.9928 631.54883 -10572.355 0 508.48386 0.00064154991 0.00062463494 + 115040 -6241.6676 -6252.8548 11.187149 3686.6198 630.81048 -10570.285 0 536.15096 0.00060578101 0.00058615632 + 115050 -6241.2685 -6252.8949 11.626393 3690.1481 629.27219 -10572.315 0 557.20198 0.00038197536 0.00035254452 + 115060 -6241.0923 -6252.7344 11.642099 3697.6756 627.35859 -10577.769 0 557.9547 1.7617347e-05 -2.0363968e-05 + 115070 -6241.1704 -6252.2622 11.091814 3707.2626 625.63666 -10585.161 0 531.58195 -0.00039888699 -0.0004379402 + 115080 -6241.4322 -6251.5671 10.134905 3716.3939 624.63162 -10592.593 0 485.72153 -0.00075784941 -0.0007915973 + 115090 -6241.7552 -6250.878 9.1228265 3722.6845 624.69826 -10598.261 0 437.21703 -0.00095930808 -0.0009871389 + 115100 -6242.0504 -6250.4128 8.3624436 3724.568 625.96337 -10600.944 0 400.77522 -0.00094304904 -0.00096862292 + 115110 -6242.2974 -6250.2721 7.9746791 3721.7125 628.3134 -10600.298 0 382.19137 -0.00070513828 -0.00073192228 + 115120 -6242.5204 -6250.4366 7.9162197 3715.0583 631.40424 -10596.899 0 379.38966 -0.00029746022 -0.00032609006 + 115130 -6242.7467 -6250.8241 8.0773993 3706.5266 634.69423 -10592.045 0 387.1143 0.00018560983 0.00015656318 + 115140 -6242.9861 -6251.34 8.35394 3698.501 637.51936 -10587.36 0 400.36768 0.00062814587 0.00059977337 + 115150 -6243.2355 -6251.8918 8.6562256 3693.2074 639.22303 -10584.322 0 414.8549 0.00091784335 0.00088949301 + 115160 -6243.4975 -6252.3793 8.8818366 3692.1264 639.32603 -10583.832 0 425.66745 0.00097259119 0.00094281086 + 115170 -6243.7879 -6252.6981 8.9101533 3695.5768 637.68578 -10585.961 0 427.02454 0.00076404028 0.00073284537 + 115180 -6244.1212 -6252.7817 8.6604893 3702.5747 634.57522 -10589.932 0 415.05924 0.00033114861 0.00030086332 + 115190 -6244.4847 -6252.6606 8.1759181 3711.0469 630.63324 -10594.341 0 391.83587 -0.00022448703 -0.00025138816 + 115200 -6244.837 -6252.4687 7.6316948 3718.3987 626.69572 -10597.563 0 365.75364 -0.00076523941 -0.00078920374 + 115210 -6245.1419 -6252.3677 7.2257948 3722.2972 623.57026 -10598.235 0 346.30063 -0.0011588382 -0.0011833821 + 115220 -6245.4031 -6252.4478 7.0447432 3721.3863 621.83212 -10595.666 0 337.62362 -0.0013177063 -0.0013459216 + 115230 -6245.6604 -6252.6951 7.0346752 3715.6642 621.69644 -10590.056 0 337.1411 -0.0012205098 -0.0012516959 + 115240 -6245.9508 -6253.0388 7.0880529 3706.4306 622.99079 -10582.46 0 339.69927 -0.00091142583 -0.00094163366 + 115250 -6246.2765 -6253.4122 7.1356964 3695.9056 625.22542 -10574.543 0 341.98261 -0.00048333029 -0.00050914517 + 115260 -6246.6098 -6253.7668 7.1569656 3686.6766 627.73699 -10568.18 0 343.00195 -5.333059e-05 -7.4896931e-05 + 115270 -6246.9231 -6254.0545 7.1314007 3681.0913 629.8643 -10565.01 0 341.77673 0.00026443916 0.00024388941 + 115280 -6247.2115 -6254.2198 7.0083289 3680.6863 631.11085 -10566.017 0 335.87844 0.00038583736 0.0003631076 + 115290 -6247.4904 -6254.2218 6.7313959 3685.763 631.25789 -10571.243 0 322.60626 0.00027884494 0.00025361492 + 115300 -6247.7751 -6254.0674 6.2922887 3695.2419 630.4066 -10579.716 0 301.56178 -2.5942932e-05 -5.085383e-05 + 115310 -6248.0611 -6253.8232 5.7621383 3706.8795 628.94361 -10589.646 0 276.154 -0.000441705 -0.00046273096 + 115320 -6248.3218 -6253.5897 5.2679139 3717.8278 627.43711 -10598.855 0 252.46799 -0.00084862292 -0.00086454878 + 115330 -6248.5255 -6253.4475 4.9219997 3725.3906 626.48297 -10605.321 0 235.88984 -0.0011278775 -0.0011411382 + 115340 -6248.6584 -6253.4079 4.749478 3727.7537 626.5313 -10607.693 0 227.62164 -0.0011965365 -0.0012114981 + 115350 -6248.7377 -6253.4082 4.6704661 3724.4639 627.73457 -10605.607 0 223.83494 -0.001032636 -0.001052042 + 115360 -6248.7998 -6253.3669 4.5670381 3716.5095 629.86484 -10599.741 0 218.87809 -0.00068197043 -0.00070453437 + 115370 -6248.8718 -6253.2674 4.3956695 3705.9923 632.34101 -10591.601 0 210.66514 -0.00024396384 -0.00026539773 + 115380 -6248.9487 -6253.1994 4.2507322 3695.527 634.37971 -10583.106 0 203.71894 0.000157997 0.00014127203 + 115390 -6248.9986 -6253.3113 4.3126945 3687.5715 635.2358 -10576.119 0 206.68852 0.00041101696 0.00039877134 + 115400 -6248.99 -6253.7024 4.7123886 3683.8606 634.45302 -10572.016 0 225.84411 0.00044174438 0.0004301794 + 115410 -6248.9184 -6254.3339 5.4155168 3685.0374 632.03116 -10571.402 0 259.54195 0.00023410813 0.00021911359 + 115420 -6248.812 -6255.0285 6.2165845 3690.5233 628.44355 -10573.995 0 297.93361 -0.00016670755 -0.00018624172 + 115430 -6248.7112 -6255.5588 6.8476251 3698.6562 624.49723 -10578.712 0 328.17662 -0.00066511427 -0.00068684573 + 115440 -6248.6388 -6255.7579 7.1191604 3707.1061 621.09153 -10583.956 0 341.19011 -0.001139898 -0.0011606255 + 115450 -6248.5878 -6255.5789 6.991109 3713.5039 618.9682 -10588.051 0 335.05317 -0.0014772801 -0.0014958764 + 115460 -6248.5364 -6255.08 6.5435719 3716.1023 618.53708 -10589.719 0 313.60468 -0.0016015604 -0.0016194812 + 115470 -6248.4706 -6254.377 5.9064259 3714.2427 619.81413 -10588.434 0 283.06907 -0.0014926787 -0.0015120475 + 115480 -6248.3908 -6253.6061 5.2152978 3708.4793 622.461 -10584.546 0 249.94634 -0.0011864518 -0.0012080199 + 115490 -6248.3019 -6252.9034 4.6014507 3700.362 625.89171 -10579.157 0 220.52734 -0.00076080108 -0.00078356969 + 115500 -6248.2001 -6252.3857 4.1856018 3691.9943 629.41211 -10573.792 0 200.59752 -0.00031451623 -0.00033683342 + 115510 -6248.0664 -6252.1292 4.0627871 3685.5092 632.36365 -10570.002 0 194.71155 5.571273e-05 3.4757671e-05 + 115520 -6247.8667 -6252.1536 4.286918 3682.5825 634.24786 -10568.984 0 205.45317 0.0002755768 0.00025533869 + 115530 -6247.5577 -6252.4156 4.8578745 3684.0758 634.81176 -10571.303 0 232.81661 0.00030702285 0.00028551005 + 115540 -6247.1041 -6252.8129 5.7088349 3689.8529 634.08217 -10576.748 0 273.5994 0.00015368107 0.00012888908 + 115550 -6246.4996 -6253.2084 6.7088267 3698.7758 632.34505 -10584.329 0 321.52462 -0.00014148317 -0.0001698619 + 115560 -6245.777 -6253.4819 7.7048498 3708.8703 630.07342 -10592.426 0 369.25963 -0.00050452296 -0.00053463577 + 115570 -6244.9948 -6253.5859 8.5911651 3717.6896 627.81427 -10599.09 0 411.73684 -0.00084483313 -0.00087433935 + 115580 -6244.2132 -6253.5542 9.3410037 3722.8832 626.05654 -10602.494 0 447.67331 -0.0010762695 -0.0011045783 + 115590 -6243.4877 -6253.4466 9.958927 3722.8582 625.11672 -10601.422 0 477.28766 -0.0011413087 -0.0011697203 + 115600 -6242.8739 -6253.285 10.41111 3717.2818 625.07918 -10595.646 0 498.95879 -0.0010280638 -0.0010577246 + 115610 -6242.4192 -6253.0405 10.62134 3707.2063 625.80767 -10586.054 0 509.0342 -0.00077155579 -0.00080208469 + 115620 -6242.1406 -6252.6672 10.52653 3694.7938 627.01155 -10574.473 0 504.49036 -0.00044089477 -0.00047134419 + 115630 -6242.0197 -6252.1357 10.115941 3682.778 628.3283 -10563.242 0 484.81265 -0.00012116009 -0.0001514753 + 115640 -6242.0213 -6251.4524 9.4310579 3673.8242 629.38961 -10554.666 0 451.98921 0.00010422247 7.3583199e-05 + 115650 -6242.1135 -6250.6832 8.5696951 3669.9083 629.86843 -10550.46 0 410.70788 0.00017066934 0.00014036972 + 115660 -6242.2689 -6249.979 7.7100847 3671.832 629.53065 -10551.342 0 369.51052 4.8974822e-05 2.1170429e-05 + 115670 -6242.4567 -6249.5612 7.1045557 3679.008 628.30878 -10556.878 0 340.49017 -0.00024363715 -0.00026719304 + 115680 -6242.6454 -6249.6379 6.9924353 3689.6041 626.37956 -10565.621 0 335.11673 -0.0006440225 -0.0006642678 + 115690 -6242.8218 -6250.2787 7.4568686 3701.0169 624.194 -10575.49 0 357.37498 -0.0010568295 -0.0010774144 + 115700 -6243.0107 -6251.3357 8.3249487 3710.5327 622.40691 -10584.275 0 398.97825 -0.0013776097 -0.0014021816 + 115710 -6243.2727 -6252.4811 9.2084445 3715.9863 621.69186 -10590.159 0 441.32033 -0.0015193676 -0.0015485007 + 115720 -6243.6671 -6253.3571 9.689982 3716.2688 622.49246 -10592.118 0 464.39831 -0.0014366691 -0.0014673091 + 115730 -6244.2028 -6253.7458 9.5429791 3711.577 624.81632 -10590.139 0 457.35311 -0.0011409793 -0.001168909 + 115740 -6244.8195 -6253.6552 8.8356739 3703.34 628.17941 -10585.175 0 423.45507 -0.00070110862 -0.00072419429 + 115750 -6245.4232 -6253.2788 7.8555654 3693.824 631.74145 -10578.844 0 376.48277 -0.00022665654 -0.00024618159 + 115760 -6245.9434 -6252.8692 6.9257989 3685.5179 634.57476 -10572.962 0 331.92314 0.00016092601 0.00014165172 + 115770 -6246.3635 -6252.6107 6.2471839 3680.4806 635.94848 -10569.04 0 299.40011 0.00036054736 0.00033896215 + 115780 -6246.709 -6252.5623 5.8533208 3679.8266 635.52143 -10567.91 0 280.52398 0.00031795358 0.00029420962 + 115790 -6247.0114 -6252.6868 5.6754934 3683.4644 633.39638 -10569.548 0 272.00149 3.9943601e-05 1.6486155e-05 + 115800 -6247.2795 -6252.9243 5.6448545 3690.1463 630.05014 -10573.121 0 270.5331 -0.00040758074 -0.00042864053 + 115810 -6247.4979 -6253.2404 5.7424145 3697.8298 626.18897 -10577.259 0 275.20872 -0.00091804305 -0.00093749534 + 115820 -6247.6522 -6253.6115 5.9593763 3704.2627 622.58289 -10580.457 0 285.60675 -0.0013738585 -0.0013951188 + 115830 -6247.7562 -6253.9822 6.2259876 3707.6076 619.91226 -10581.502 0 298.38426 -0.0016771156 -0.0017028044 + 115840 -6247.8515 -6254.2624 6.4109251 3706.8982 618.63914 -10579.8 0 307.2475 -0.0017711566 -0.0017998571 + 115850 -6247.9717 -6254.3866 6.4148633 3702.2173 618.91388 -10575.518 0 307.43624 -0.0016489885 -0.0016759496 + 115860 -6248.1106 -6254.37 6.2593693 3694.6254 620.5392 -10569.535 0 299.9841 -0.001351192 -0.0013726707 + 115870 -6248.228 -6254.2931 6.0650178 3685.9208 623.01528 -10563.229 0 290.66969 -0.00095717343 -0.00097404583 + 115880 -6248.2888 -6254.2268 5.9379959 3678.2635 625.66762 -10558.158 0 284.58208 -0.00056983096 -0.00058697277 + 115890 -6248.2924 -6254.1715 5.8790372 3673.6737 627.82877 -10555.674 0 281.75645 -0.00029217204 -0.00031449889 + 115900 -6248.2717 -6254.0595 5.7877978 3673.4841 629.02364 -10556.567 0 277.38375 -0.00019897288 -0.00022769442 + 115910 -6248.2669 -6253.8095 5.5426576 3677.9133 629.10129 -10560.824 0 265.63525 -0.00031263079 -0.00034433164 + 115920 -6248.2973 -6253.394 5.0966632 3685.9305 628.26585 -10567.59 0 244.2607 -0.00059351571 -0.00062240138 + 115930 -6248.347 -6252.8846 4.537564 3695.4915 626.9903 -10575.366 0 217.46553 -0.0009503508 -0.00097224706 + 115940 -6248.3725 -6252.444 4.0714526 3704.1015 625.84317 -10582.389 0 195.12685 -0.0012686401 -0.0012841614 + 115950 -6248.3322 -6252.2532 3.9210743 3709.5421 625.29296 -10587.088 0 187.91988 -0.001447998 -0.0014622536 + 115960 -6248.2165 -6252.414 4.1974237 3710.5145 625.55916 -10588.488 0 201.1641 -0.0014347521 -0.0014532683 + 115970 -6248.054 -6252.8979 4.8438837 3706.9654 626.55492 -10586.418 0 232.14608 -0.0012371886 -0.0012613042 + 115980 -6247.8841 -6253.5784 5.6943117 3700.0014 627.93228 -10581.512 0 272.90337 -0.00091850425 -0.00094453028 + 115990 -6247.7237 -6254.3003 6.5765513 3691.4882 629.20855 -10574.997 0 315.18524 -0.00057308041 -0.00059606247 + 116000 -6247.5608 -6254.9209 7.3601605 3683.5256 629.92489 -10568.371 0 352.74019 -0.00029783928 -0.0003161733 + 116010 -6247.3809 -6255.3121 7.9312584 3677.9491 629.77933 -10563.041 0 380.11041 -0.00016843923 -0.00018493088 + 116020 -6247.1965 -6255.3646 8.1681506 3675.9285 628.69505 -10559.988 0 391.46361 -0.00022375049 -0.00024248872 + 116030 -6247.0457 -6255.0251 7.9794361 3677.7017 626.82165 -10559.549 0 382.41935 -0.00045812108 -0.00048045249 + 116040 -6246.9619 -6254.3438 7.3818956 3682.5081 624.49266 -10561.345 0 353.78186 -0.00082143902 -0.00084474996 + 116050 -6246.9428 -6253.4855 6.5427154 3688.7747 622.16135 -10564.422 0 313.56364 -0.0012286239 -0.0012488966 + 116060 -6246.9466 -6252.6787 5.732102 3694.547 620.32117 -10567.547 0 274.71449 -0.0015793111 -0.0015951451 + 116070 -6246.9189 -6252.116 5.1970687 3698.061 619.4091 -10569.586 0 249.07269 -0.0017845465 -0.0017989868 + 116080 -6246.8296 -6251.8608 5.0312242 3698.2771 619.69974 -10569.838 0 241.12449 -0.0017926269 -0.0018108724 + 116090 -6246.6913 -6251.8289 5.1376089 3695.1805 621.21368 -10568.223 0 246.22305 -0.001604377 -0.0016291743 + 116100 -6246.5427 -6251.8701 5.3273593 3689.7356 623.67507 -10565.281 0 255.31695 -0.0012715462 -0.0013005291 + 116110 -6246.4072 -6251.8933 5.4861682 3683.5373 626.55075 -10561.981 0 262.92796 -0.00087947819 -0.00090715254 + 116120 -6246.264 -6251.935 5.6709582 3678.3275 629.17977 -10559.442 0 271.78413 -0.00052199311 -0.0005446325 + 116130 -6246.0573 -6252.1126 6.055275 3675.5542 630.96142 -10558.628 0 290.20276 -0.00027784498 -0.00029677201 + 116140 -6245.733 -6252.508 6.7749589 3676.0613 631.5343 -10560.104 0 324.69404 -0.00019439952 -0.00021478908 + 116150 -6245.2747 -6253.0756 7.8008764 3679.9118 630.87615 -10563.864 0 373.86177 -0.00027982468 -0.0003062565 + 116160 -6244.7139 -6253.6427 8.9287432 3686.3381 629.28736 -10569.268 0 427.91548 -0.00050326562 -0.00053586289 + 116170 -6244.1124 -6253.9988 9.8863233 3693.8444 627.2715 -10575.115 0 473.80809 -0.00080255959 -0.00083694447 + 116180 -6243.525 -6254.0071 10.482129 3700.5061 625.36644 -10579.88 0 502.36243 -0.0010990906 -0.0011303448 + 116190 -6242.9728 -6253.6633 10.69055 3704.453 623.99435 -10582.111 0 512.35114 -0.0013179947 -0.0013453983 + 116200 -6242.4526 -6253.0658 10.613265 3704.4176 623.37875 -10580.862 0 508.64722 -0.0014088112 -0.0014370507 + 116210 -6241.973 -6252.3335 10.360504 3700.1426 623.53681 -10576.013 0 496.53348 -0.0013590457 -0.0013943161 + 116220 -6241.5774 -6251.5452 9.9678252 3692.4661 624.32085 -10568.332 0 477.71411 -0.0011946242 -0.0012386526 + 116230 -6241.3219 -6250.7495 9.427592 3683.0478 625.475 -10559.272 0 451.82311 -0.00096742357 -0.0010147726 + 116240 -6241.2252 -6250.0233 8.7981332 3673.8723 626.68707 -10550.583 0 421.65591 -0.00073690795 -0.00077850325 + 116250 -6241.2394 -6249.5058 8.2664273 3666.7558 627.63548 -10543.897 0 396.17358 -0.00055520148 -0.00058557431 + 116260 -6241.2775 -6249.3506 8.0731755 3663.0183 628.04245 -10540.411 0 386.91187 -0.00046060864 -0.00048273085 + 116270 -6241.2794 -6249.6198 8.3403977 3663.3306 627.73834 -10540.689 0 399.71866 -0.00047697404 -0.00050039808 + 116280 -6241.2659 -6250.208 8.9420499 3667.6439 626.72414 -10544.576 0 428.5532 -0.00061215203 -0.00064577243 + 116290 -6241.3367 -6250.8705 9.5338351 3675.1425 625.2024 -10551.215 0 456.91487 -0.00085200623 -0.000897033 + 116300 -6241.6077 -6251.3507 9.7430509 3684.2754 623.54641 -10559.173 0 466.94167 -0.001153807 -0.0012023176 + 116310 -6242.125 -6251.5277 9.4027046 3692.9835 622.19922 -10566.71 0 450.63036 -0.001447933 -0.0014883165 + 116320 -6242.8228 -6251.4873 8.6645629 3699.1716 621.53454 -10572.194 0 415.25447 -0.0016542318 -0.0016796998 + 116330 -6243.5681 -6251.4603 7.8922191 3701.3253 621.74119 -10574.527 0 378.23942 -0.0017095602 -0.0017231731 + 116340 -6244.2566 -6251.6607 7.4040951 3699.0274 622.78174 -10573.47 0 354.84578 -0.0015931903 -0.0016052985 + 116350 -6244.874 -6252.1409 7.2669546 3693.1224 624.42774 -10569.691 0 348.27324 -0.0013361997 -0.0013564285 + 116360 -6245.4742 -6252.7663 7.2921902 3685.4249 626.33324 -10564.524 0 349.48267 -0.0010105835 -0.0010408883 + 116370 -6246.1092 -6253.32 7.2108504 3678.1015 628.10727 -10559.529 0 345.58441 -0.00070485138 -0.00073878891 + 116380 -6246.774 -6253.6489 6.8748881 3673.0023 629.37311 -10556.024 0 329.48321 -0.00049752745 -0.00052558924 + 116390 -6247.4055 -6253.7504 6.3448648 3671.1938 629.82403 -10554.768 0 304.08152 -0.00043788653 -0.00045447126 + 116400 -6247.9251 -6253.7535 5.8283649 3672.806 629.28563 -10555.845 0 279.32795 -0.00053799277 -0.00054517914 + 116410 -6248.2885 -6253.8171 5.528619 3677.1519 627.7778 -10558.747 0 264.96244 -0.00077493301 -0.00078081158 + 116420 -6248.513 -6254.016 5.5030364 3682.9986 625.55105 -10562.566 0 263.73638 -0.0010990621 -0.0011118415 + 116430 -6248.6684 -6254.2917 5.6233329 3688.8676 623.06491 -10566.224 0 269.50166 -0.0014439923 -0.0014659036 + 116440 -6248.8329 -6254.5048 5.6718829 3693.302 620.89052 -10568.697 0 271.82845 -0.0017368101 -0.0017624727 + 116450 -6249.0387 -6254.5471 5.5083924 3695.115 619.55383 -10569.216 0 263.99307 -0.0019104283 -0.0019314131 + 116460 -6249.2501 -6254.4194 5.1692612 3693.6586 619.37207 -10567.45 0 247.74 -0.001920054 -0.0019321903 + 116470 -6249.3968 -6254.2084 4.811591 3689.0762 620.34837 -10563.633 0 230.59844 -0.0017606416 -0.0017677874 + 116480 -6249.4358 -6253.9953 4.5595126 3682.4067 622.16615 -10558.568 0 218.51743 -0.0014761404 -0.0014870304 + 116490 -6249.3888 -6253.7905 4.40168 3675.3916 624.28411 -10553.466 0 210.9532 -0.0011514278 -0.00117235 + 116500 -6249.3243 -6253.5537 4.2294162 3669.9711 626.0976 -10549.622 0 202.69736 -0.00088602706 -0.0009155572 + 116510 -6249.3033 -6253.2727 3.9694758 3667.6462 627.11471 -10548.034 0 190.23955 -0.00075942651 -0.00078940196 + 116520 -6249.3323 -6253.0238 3.69142 3668.9794 627.09293 -10549.096 0 176.91356 -0.00080329492 -0.00082513062 + 116530 -6249.355 -6252.956 3.6009869 3673.4499 626.09671 -10552.503 0 172.5795 -0.00099276273 -0.0010043639 + 116540 -6249.2874 -6253.2009 3.9135208 3679.7032 624.46398 -10557.368 0 187.55788 -0.0012596222 -0.0012677287 + 116550 -6249.0769 -6253.7576 4.6807134 3686.055 622.70039 -10562.513 0 224.32605 -0.0015200147 -0.0015357311 + 116560 -6248.7487 -6254.442 5.6932687 3691.0063 621.33598 -10566.784 0 272.85338 -0.0017030133 -0.0017331597 + 116570 -6248.3998 -6254.9627 6.562954 3693.563 620.78042 -10569.306 0 314.53358 -0.0017677654 -0.0018086718 + 116580 -6248.1288 -6255.0946 6.9657779 3693.3127 621.21117 -10569.618 0 333.83916 -0.0017053598 -0.0017449672 + 116590 -6247.9547 -6254.8217 6.8669459 3690.3748 622.52606 -10567.723 0 329.10258 -0.0015320491 -0.001559494 + 116600 -6247.8041 -6254.3266 6.5224992 3685.3655 624.37729 -10564.069 0 312.59476 -0.00128399 -0.0012984805 + 116610 -6247.5859 -6253.8346 6.2487043 3679.3854 626.27455 -10559.495 0 299.47297 -0.0010160485 -0.001026895 + 116620 -6247.2758 -6253.454 6.1782169 3673.8895 627.72038 -10555.064 0 296.09482 -0.00079679793 -0.00081480163 + 116630 -6246.9313 -6253.1508 6.2195038 3670.3308 628.33897 -10551.821 0 298.07352 -0.00069164877 -0.00072003849 + 116640 -6246.6309 -6252.8497 6.2188242 3669.6635 627.97225 -10550.485 0 298.04095 -0.00073757075 -0.00077039268 + 116650 -6246.4008 -6252.5404 6.1396167 3671.9613 626.72579 -10551.227 0 294.24488 -0.00092411481 -0.00095262009 + 116660 -6246.1954 -6252.2841 6.0886802 3676.3789 624.94886 -10553.612 0 291.80372 -0.0011945738 -0.0012151623 + 116670 -6245.9436 -6252.1263 6.1827315 3681.4853 623.14193 -10556.754 0 296.31118 -0.001468271 -0.0014848308 + 116680 -6245.6169 -6252.019 6.4021052 3685.7819 621.80694 -10559.608 0 306.8248 -0.0016712534 -0.001690284 + 116690 -6245.2534 -6251.8477 6.5943533 3688.1481 621.28303 -10561.279 0 316.03841 -0.0017589391 -0.0017826685 + 116700 -6244.914 -6251.5608 6.6468319 3688.0546 621.62974 -10561.245 0 318.55348 -0.0017222039 -0.0017468151 + 116710 -6244.6142 -6251.2707 6.6565679 3685.5733 622.61731 -10559.461 0 319.02008 -0.0015806104 -0.0016013027 + 116720 -6244.3061 -6251.1999 6.8938459 3681.3048 623.8412 -10556.346 0 330.39178 -0.0013724283 -0.0013895038 + 116730 -6243.9326 -6251.4925 7.5598835 3676.2777 624.90782 -10552.678 0 362.31204 -0.0011465394 -0.0011655769 + 116740 -6243.4963 -6252.0629 8.566582 3671.7585 625.59046 -10549.412 0 410.55868 -0.00095375715 -0.00097973125 + 116750 -6243.0734 -6252.6298 9.5563864 3668.9236 625.8734 -10547.427 0 457.99566 -0.00083476291 -0.00086668645 + 116760 -6242.7563 -6252.906 10.149685 3668.4909 625.87637 -10547.273 0 486.42983 -0.0008085247 -0.0008403343 + 116770 -6242.5826 -6252.7828 10.200181 3670.5006 625.72866 -10549.012 0 488.84993 -0.00086899485 -0.00089552751 + 116780 -6242.5212 -6252.3702 9.848954 3674.3547 625.48654 -10552.211 0 472.01714 -0.0009926091 -0.0010143935 + 116790 -6242.5237 -6251.8905 9.3668905 3679.0591 625.14277 -10556.092 0 448.91395 -0.001149785 -0.0011720532 + 116800 -6242.5805 -6251.5348 8.9543162 3683.5091 624.69948 -10559.743 0 429.14107 -0.0013113275 -0.0013387215 + 116810 -6242.7289 -6251.3863 8.6574172 3686.7071 624.2318 -10562.325 0 414.91201 -0.00144839 -0.0014807488 + 116820 -6243.0178 -6251.4307 8.4128826 3687.9172 623.88757 -10563.235 0 403.19254 -0.0015329629 -0.0015657776 + 116830 -6243.4729 -6251.6039 8.1309506 3686.8065 623.8224 -10562.233 0 389.68078 -0.0015445983 -0.0015730576 + 116840 -6244.0858 -6251.8376 7.7518049 3683.5644 624.11341 -10559.515 0 371.50999 -0.0014803419 -0.0015033444 + 116850 -6244.821 -6252.0849 7.2638721 3678.9233 624.705 -10555.713 0 348.12551 -0.0013599439 -0.0013810296 + 116860 -6245.6281 -6252.3164 6.6883701 3674.0159 625.41767 -10551.75 0 320.54422 -0.0012218083 -0.0012460886 + 116870 -6246.4486 -6252.5033 6.0546628 3670.0666 626.01213 -10548.582 0 290.17341 -0.0011109405 -0.0011403616 + 116880 -6247.2227 -6252.622 5.3992646 3668.0128 626.26979 -10546.905 0 258.76305 -0.0010642493 -0.001095531 + 116890 -6247.9016 -6252.6857 4.784078 3668.2277 626.05111 -10546.964 0 229.27986 -0.0010998352 -0.0011268549 + 116900 -6248.4568 -6252.7642 4.3073892 3670.4603 625.32135 -10548.546 0 206.43426 -0.001213447 -0.0012317514 + 116910 -6248.8746 -6252.9609 4.0863315 3673.97 624.15536 -10551.086 0 195.83993 -0.0013811475 -0.0013913003 + 116920 -6249.1517 -6253.3502 4.1984467 3677.7768 622.72983 -10553.857 0 201.21312 -0.001566601 -0.0015742623 + 116930 -6249.3057 -6253.914 4.6083304 3680.9417 621.29941 -10556.155 0 220.85705 -0.0017310027 -0.0017434824 + 116940 -6249.3833 -6254.5273 5.1440064 3682.7866 620.15191 -10557.466 0 246.52965 -0.0018421891 -0.0018635819 + 116950 -6249.4486 -6255.0125 5.5638682 3682.9981 619.54543 -10557.556 0 266.65178 -0.0018800012 -0.0019083177 + 116960 -6249.5503 -6255.2329 5.682545 3681.6207 619.6399 -10556.494 0 272.33944 -0.0018378755 -0.0018663253 + 116970 -6249.6921 -6255.1669 5.4747491 3678.9934 620.44112 -10554.601 0 262.3807 -0.0017228564 -0.0017445303 + 116980 -6249.8312 -6254.9186 5.087396 3675.6799 621.77762 -10552.376 0 243.81656 -0.0015558507 -0.001568674 + 116990 -6249.9089 -6254.6529 4.7439275 3672.4099 623.32761 -10550.39 0 227.35563 -0.0013717118 -0.0013801181 + 117000 -6249.8951 -6254.4893 4.5941687 3669.997 624.70005 -10549.186 0 220.17834 -0.0012162158 -0.0012279449 + 117010 -6249.8121 -6254.427 4.6149201 3669.1759 625.55098 -10549.154 0 221.17287 -0.001136198 -0.0011563036 + 117020 -6249.7181 -6254.3618 4.6436448 3670.3443 625.69611 -10550.402 0 222.54951 -0.0011626762 -0.0011895318 + 117030 -6249.6603 -6254.181 4.520627 3673.3192 625.17492 -10552.675 0 216.65381 -0.0012939795 -0.0013207565 + 117040 -6249.6369 -6253.8557 4.2188497 3677.2822 624.23665 -10555.375 0 202.19095 -0.0014902546 -0.0015106256 + 117050 -6249.6015 -6253.4577 3.856234 3681.0151 623.24794 -10557.721 0 184.81237 -0.0016861283 -0.001699221 + 117060 -6249.5042 -6253.1007 3.5965443 3683.3395 622.55531 -10558.996 0 172.36658 -0.0018168068 -0.00182729 + 117070 -6249.3297 -6252.8708 3.5410851 3683.5393 622.35746 -10558.767 0 169.70867 -0.001843698 -0.0018573831 + 117080 -6249.1008 -6252.8024 3.7015298 3681.5682 622.63937 -10557.01 0 177.39807 -0.0017664509 -0.0017855398 + 117090 -6248.8499 -6252.8987 4.0487884 3677.9925 623.19397 -10554.085 0 194.04066 -0.0016179302 -0.0016397259 + 117100 -6248.5859 -6253.1501 4.5641426 3673.7543 623.7175 -10550.622 0 218.73932 -0.0014484624 -0.0014680006 + 117110 -6248.2854 -6253.524 5.2386068 3669.8846 623.9317 -10547.34 0 251.06343 -0.0013086767 -0.0013228132 + 117120 -6247.9125 -6253.9417 6.0292194 3667.2563 623.67956 -10544.878 0 288.95402 -0.0012369456 -0.0012468619 + 117130 -6247.455 -6254.275 6.8200423 3666.414 622.96394 -10543.653 0 326.8547 -0.0012526191 -0.0012630593 + 117140 -6246.9473 -6254.382 7.4346982 3667.4825 621.93108 -10543.796 0 356.31245 -0.0013534428 -0.0013692556 + 117150 -6246.4601 -6254.1739 7.7137463 3670.1397 620.82231 -10545.136 0 369.686 -0.0015155761 -0.0015381737 + 117160 -6246.0597 -6253.6739 7.6141929 3673.6619 619.91721 -10547.253 0 364.91485 -0.001696648 -0.0017231745 + 117170 -6245.7697 -6253.0221 7.25236 3677.0696 619.47904 -10549.571 0 347.57379 -0.0018438792 -0.0018695984 + 117180 -6245.5659 -6252.4128 6.846887 3679.3814 619.7011 -10551.495 0 328.14124 -0.0019079044 -0.0019296425 + 117190 -6245.3998 -6252.0015 6.6016957 3679.9173 620.65283 -10552.572 0 316.3903 -0.0018589921 -0.001877054 + 117200 -6245.2293 -6251.8403 6.6109928 3678.537 622.23628 -10552.614 0 316.83587 -0.001699404 -0.00171711 + 117210 -6245.0374 -6251.8726 6.8352033 3675.7122 624.17724 -10551.762 0 327.58129 -0.0014661625 -0.0014878211 + 117220 -6244.8355 -6251.9756 7.1400333 3672.388 626.07363 -10550.437 0 342.19046 -0.0012219191 -0.0012504736 + 117230 -6244.6558 -6252.0204 7.3645462 3669.6691 627.50078 -10549.19 0 352.95037 -0.0010360524 -0.0010713719 + 117240 -6244.5334 -6251.9245 7.3910611 3668.4319 628.13948 -10548.496 0 354.22112 -0.0009619401 -0.001000535 + 117250 -6244.4845 -6251.6852 7.200735 3669.0002 627.87406 -10548.56 0 345.09963 -0.0010184205 -0.0010551248 + 117260 -6244.4921 -6251.3847 6.8926338 3671.022 626.81963 -10549.226 0 330.33369 -0.0011830904 -0.0012142128 + 117270 -6244.5132 -6251.154 6.6407887 3673.6152 625.27165 -10550.041 0 318.26386 -0.0014013092 -0.0014272156 + 117280 -6244.5077 -6251.1053 6.5975895 3675.7258 623.60352 -10550.435 0 316.19351 -0.0016076811 -0.0016325713 + 117290 -6244.467 -6251.2706 6.8035671 3676.5287 622.15332 -10549.953 0 326.06511 -0.0017500309 -0.0017787763 + 117300 -6244.4201 -6251.5904 7.1703648 3675.6901 621.13802 -10548.419 0 343.64412 -0.0018047762 -0.0018393248 + 117310 -6244.4112 -6251.9572 7.5460035 3673.4106 620.61948 -10545.987 0 361.64683 -0.0017784127 -0.0018166733 + 117320 -6244.4706 -6252.2756 7.8049977 3670.2916 620.52577 -10543.093 0 374.05928 -0.0016979713 -0.0017357772 + 117330 -6244.6008 -6252.4968 7.8959201 3667.1258 620.70946 -10540.332 0 378.41679 -0.0015978779 -0.0016319419 + 117340 -6244.7877 -6252.6179 7.8301848 3664.6919 621.0117 -10538.321 0 375.26639 -0.0015094769 -0.0015388049 + 117350 -6245.0179 -6252.6689 7.6509899 3663.5836 621.30652 -10537.559 0 366.67836 -0.0014550946 -0.0014803501 + 117360 -6245.2862 -6252.7064 7.4202043 3664.0852 621.51798 -10538.31 0 355.61782 -0.0014453921 -0.0014677331 + 117370 -6245.5928 -6252.8045 7.2117014 3666.1146 621.62022 -10540.539 0 345.6252 -0.0014789046 -0.001499596 + 117380 -6245.9421 -6253.0199 7.0777426 3669.2561 621.63417 -10543.91 0 339.20514 -0.0015438971 -0.0015643451 + 117390 -6246.3478 -6253.3442 6.9963512 3672.8688 621.62487 -10547.838 0 335.30441 -0.0016223525 -0.0016436159 + 117400 -6246.8299 -6253.683 6.8531016 3676.2314 621.69082 -10551.605 0 328.43908 -0.0016947476 -0.0017165913 + 117410 -6247.3959 -6253.8935 6.4976545 3678.6881 621.9337 -10554.515 0 311.40406 -0.0017441838 -0.0017647658 + 117420 -6248.0152 -6253.8674 5.8521557 3679.7767 622.40911 -10556.053 0 280.46814 -0.0017595236 -0.0017765384 + 117430 -6248.6157 -6253.6052 4.9894984 3679.3238 623.08009 -10556.009 0 239.12476 -0.0017379738 -0.0017506663 + 117440 -6249.1178 -6253.2263 4.1084831 3677.4813 623.80721 -10554.515 0 196.90156 -0.0016868143 -0.0016971013 + 117450 -6249.482 -6252.9034 3.4213877 3674.6897 624.39228 -10551.985 0 163.9721 -0.0016224659 -0.0016339113 + 117460 -6249.7269 -6252.7719 3.0450096 3671.5678 624.65658 -10548.996 0 145.93395 -0.0015655844 -0.0015808098 + 117470 -6249.9054 -6252.8735 2.9681655 3668.7555 624.5109 -10546.14 0 142.25114 -0.0015337145 -0.00155222 + 117480 -6250.0657 -6253.1653 3.099558 3666.754 623.98103 -10543.9 0 148.54821 -0.0015351453 -0.0015534022 + 117490 -6250.2226 -6253.5718 3.3492009 3665.8189 623.17998 -10542.571 0 160.5125 -0.0015671885 -0.001581321 + 117500 -6250.3537 -6254.0346 3.6808277 3665.9494 622.24733 -10542.231 0 176.40592 -0.001619908 -0.0016291529 + 117510 -6250.4222 -6254.5187 4.0965012 3666.9704 621.29291 -10542.782 0 196.32732 -0.0016832876 -0.0016913374 + 117520 -6250.4113 -6254.9834 4.572085 3668.6449 620.37536 -10544.004 0 219.11997 -0.0017531725 -0.0017658041 + 117530 -6250.3467 -6255.357 5.0103622 3670.7277 619.52278 -10545.608 0 240.12467 -0.0018312309 -0.001851653 + 117540 -6250.2838 -6255.5534 5.2695697 3672.9293 618.77629 -10547.259 0 252.54735 -0.0019178772 -0.0019435221 + 117550 -6250.2678 -6255.5262 5.2584732 3674.8447 618.2247 -10548.596 0 252.01554 -0.0020028447 -0.0020266767 + 117560 -6250.2953 -6255.314 5.0186709 3675.959 618.00372 -10549.277 0 240.52287 -0.0020616356 -0.0020774939 + 117570 -6250.3146 -6255.0235 4.7089494 3675.8013 618.25379 -10549.079 0 225.67928 -0.0020634959 -0.0020712948 + 117580 -6250.2665 -6254.7525 4.4859783 3674.1969 619.05362 -10548.003 0 214.99325 -0.001988368 -0.0019945947 + 117590 -6250.1346 -6254.5109 4.3763908 3671.461 620.36013 -10546.332 0 209.7412 -0.0018424099 -0.0018551364 + 117600 -6249.9603 -6254.2172 4.2568706 3668.3748 621.98483 -10544.577 0 204.01312 -0.0016610263 -0.0016834341 + 117610 -6249.8113 -6253.7809 3.9695858 3665.9142 623.62362 -10543.319 0 190.24482 -0.0014961542 -0.0015239865 + 117620 -6249.7275 -6253.207 3.4795458 3664.8681 624.93533 -10543.01 0 166.75936 -0.0013949366 -0.0014199767 + 117630 -6249.691 -6252.633 2.9419747 3665.548 625.6418 -10543.823 0 140.99594 -0.0013818947 -0.0013985284 + 117640 -6249.6406 -6252.2646 2.6239844 3667.7239 625.61172 -10545.6 0 125.75606 -0.0014530176 -0.0014625554 + 117650 -6249.5153 -6252.2552 2.7398155 3670.7702 624.89754 -10547.923 0 131.30733 -0.0015817996 -0.0015912305 + 117660 -6249.2955 -6252.6129 3.3174024 3673.9004 623.71542 -10550.229 0 158.98854 -0.0017309748 -0.001747234 + 117670 -6249.0134 -6253.2 4.1865453 3676.3621 622.37873 -10551.941 0 200.64274 -0.0018630194 -0.0018873466 + 117680 -6248.7259 -6253.8198 5.0938864 3677.5477 621.20914 -10552.577 0 244.12762 -0.0019463186 -0.0019733758 + 117690 -6248.467 -6254.3234 5.8563517 3677.0693 620.45334 -10551.846 0 280.66923 -0.0019587844 -0.0019814867 + 117700 -6248.2232 -6254.6523 6.4290843 3674.8616 620.22696 -10549.741 0 308.11779 -0.0018927548 -0.0019087091 + 117710 -6247.9592 -6254.7971 6.837916 3671.2989 620.49425 -10546.59 0 327.7113 -0.0017617948 -0.0017754063 + 117720 -6247.6695 -6254.7316 7.0621093 3667.2173 621.08085 -10543.03 0 338.4559 -0.0016039271 -0.0016220525 + 117730 -6247.3993 -6254.4077 7.0083997 3663.7281 621.7172 -10539.853 0 335.88184 -0.0014737391 -0.001498964 + 117740 -6247.2092 -6253.8266 6.6174231 3661.836 622.11407 -10537.777 0 317.14405 -0.0014221801 -0.0014501564 + 117750 -6247.1171 -6253.1089 5.9917694 3662.0421 622.06306 -10537.214 0 287.15921 -0.0014732715 -0.0014966212 + 117760 -6247.0768 -6252.4763 5.3995019 3664.152 621.53205 -10538.16 0 258.77443 -0.0016115082 -0.0016266004 + 117770 -6247.011 -6252.1332 5.1221964 3667.3947 620.70884 -10540.237 0 245.48439 -0.0017876527 -0.0017980382 + 117780 -6246.8706 -6252.13 5.2594064 3670.7672 619.95759 -10542.855 0 252.06026 -0.0019392456 -0.0019526163 + 117790 -6246.6724 -6252.3213 5.6489848 3673.4035 619.68898 -10545.414 0 270.73105 -0.0020144084 -0.0020356876 + 117800 -6246.4814 -6252.4676 5.9862456 3674.7954 620.18806 -10547.451 0 286.89448 -0.0019877903 -0.0020146289 + 117810 -6246.3497 -6252.4156 6.0659275 3674.826 621.47428 -10548.716 0 290.71328 -0.0018643782 -0.0018895061 + 117820 -6246.2653 -6252.2091 5.9437733 3673.7067 623.26671 -10549.183 0 284.85897 -0.0016746721 -0.0016930566 + 117830 -6246.1661 -6252.0328 5.866715 3671.9088 625.08078 -10549.022 0 281.1659 -0.0014667009 -0.0014804371 + 117840 -6246.0035 -6252.0417 6.0381385 3670.0818 626.41352 -10548.537 0 289.38148 -0.0012958957 -0.0013119414 + 117850 -6245.7915 -6252.2317 6.4402459 3668.883 626.92888 -10548.044 0 308.65272 -0.0012105501 -0.0012337082 + 117860 -6245.5926 -6252.4593 6.866632 3668.7179 626.56196 -10547.739 0 329.08754 -0.001234342 -0.0012625525 + 117870 -6245.4582 -6252.5731 7.1148128 3669.5229 625.50767 -10547.604 0 340.98175 -0.0013543482 -0.0013808952 + 117880 -6245.3798 -6252.5303 7.1505707 3670.7634 624.11578 -10547.41 0 342.69547 -0.0015243603 -0.0015447504 + 117890 -6245.3008 -6252.3998 7.0989735 3671.6929 622.75173 -10546.844 0 340.22264 -0.0016850855 -0.0017017916 + 117900 -6245.1768 -6252.2687 7.0918707 3671.7309 621.68386 -10545.683 0 339.88224 -0.0017907133 -0.0018110815 + 117910 -6245.023 -6252.1598 7.1368322 3670.7273 621.02893 -10543.916 0 342.03704 -0.0018260966 -0.0018553667 + 117920 -6244.9018 -6252.0406 7.1387713 3668.9658 620.75565 -10541.762 0 342.12998 -0.0018054391 -0.0018415772 + 117930 -6244.8631 -6251.907 7.0439026 3666.9512 620.73042 -10539.589 0 337.58333 -0.001756517 -0.0017918885 + 117940 -6244.8946 -6251.8421 6.9474945 3665.1607 620.78627 -10537.789 0 332.96292 -0.001703581 -0.0017319637 + 117950 -6244.934 -6251.9735 7.0395285 3663.9225 620.79467 -10536.691 0 337.3737 -0.0016600491 -0.0016823476 + 117960 -6244.9301 -6252.3551 7.4250323 3663.4389 620.71753 -10536.511 0 355.84921 -0.0016314706 -0.0016547674 + 117970 -6244.8985 -6252.883 7.9845079 3663.8355 620.62074 -10537.339 0 382.66242 -0.0016206017 -0.0016515109 + 117980 -6244.9194 -6253.3297 8.4103093 3665.1321 620.64381 -10539.106 0 403.06921 -0.0016275141 -0.001666005 + 117990 -6245.0771 -6253.479 8.4019822 3667.1481 620.93667 -10541.564 0 402.67013 -0.0016456231 -0.0016848729 + 118000 -6245.3913 -6253.2564 7.8651168 3669.4671 621.58755 -10544.311 0 376.94053 -0.0016605229 -0.0016927033 + 118010 -6245.8037 -6252.7597 6.9559982 3671.5523 622.56926 -10546.881 0 333.37047 -0.0016565886 -0.0016791 + 118020 -6246.2263 -6252.1824 5.956046 3672.9727 623.72437 -10548.879 0 285.44714 -0.0016281833 -0.0016449248 + 118030 -6246.6046 -6251.7075 5.1029491 3673.584 624.7978 -10550.089 0 244.56195 -0.0015863169 -0.0016037006 + 118040 -6246.9394 -6251.4446 4.5052129 3673.5403 625.51261 -10550.498 0 215.91508 -0.0015543536 -0.0015762194 + 118050 -6247.2653 -6251.4253 4.1599585 3673.1401 625.66729 -10550.233 0 199.36855 -0.0015549986 -0.0015804122 + 118060 -6247.6133 -6251.6295 4.0161981 3672.6239 625.21577 -10549.469 0 192.47875 -0.00159695 -0.0016216871 + 118070 -6247.9878 -6252.014 4.0262716 3672.0489 624.29081 -10548.354 0 192.96153 -0.0016691053 -0.0016889905 + 118080 -6248.3675 -6252.5299 4.1623983 3671.3051 623.15533 -10546.99 0 199.48548 -0.0017452046 -0.0017588584 + 118090 -6248.723 -6253.1261 4.4031135 3670.2498 622.10139 -10545.477 0 211.0219 -0.001796297 -0.0018057113 + 118100 -6249.0369 -6253.7477 4.7108077 3668.8701 621.34114 -10543.959 0 225.76834 -0.0018048051 -0.0018136891 + 118110 -6249.3124 -6254.3379 5.0254632 3667.3711 620.93694 -10542.646 0 240.8484 -0.0017732101 -0.0017844968 + 118120 -6249.5659 -6254.8482 5.2822233 3666.1341 620.80036 -10541.783 0 253.15378 -0.0017229873 -0.0017373155 + 118130 -6249.8121 -6255.2456 5.4334809 3665.5706 620.75863 -10541.575 0 260.40289 -0.0016844769 -0.0017004547 + 118140 -6250.0537 -6255.5066 5.4528751 3665.9508 620.65498 -10542.112 0 261.33237 -0.001682996 -0.0016985864 + 118150 -6250.2806 -6255.6053 5.3246445 3667.2834 620.43171 -10543.32 0 255.18684 -0.0017278509 -0.001741714 + 118160 -6250.4758 -6255.5156 5.03979 3669.2919 620.15527 -10544.963 0 241.53501 -0.0018087566 -0.0018209129 + 118170 -6250.6227 -6255.2287 4.6059553 3671.4901 619.97624 -10546.695 0 220.74322 -0.0019004014 -0.0019121129 + 118180 -6250.7134 -6254.7706 4.0571966 3673.3307 620.05244 -10548.154 0 194.44362 -0.0019724034 -0.0019853335 + 118190 -6250.7539 -6254.2081 3.4541981 3674.365 620.47559 -10549.049 0 165.54456 -0.0020000062 -0.0020150455 + 118200 -6250.7611 -6253.6411 2.8799993 3674.3564 621.23102 -10549.229 0 138.02573 -0.0019714575 -0.0019880486 + 118210 -6250.7514 -6253.1838 2.4324427 3673.3216 622.19748 -10548.703 0 116.5763 -0.0018906235 -0.0019071595 + 118220 -6250.7303 -6252.9357 2.2053774 3671.5141 623.17781 -10547.628 0 105.69406 -0.0017756493 -0.0017905726 + 118230 -6250.688 -6252.9501 2.2620687 3669.3676 623.9454 -10546.263 0 108.41102 -0.0016547259 -0.0016675068 + 118240 -6250.6008 -6253.2196 2.6188073 3667.4033 624.29437 -10544.917 0 125.50794 -0.001559501 -0.0015711291 + 118250 -6250.4377 -6253.6812 3.2435414 3666.1112 624.08722 -10543.88 0 155.4487 -0.0015172325 -0.0015301781 + 118260 -6250.1758 -6254.2283 4.0524431 3665.8317 623.29639 -10543.356 0 194.21581 -0.0015437465 -0.0015610138 + 118270 -6249.8215 -6254.722 4.9004947 3666.6626 622.03195 -10543.416 0 234.8592 -0.0016387415 -0.0016617725 + 118280 -6249.4189 -6255.0196 5.6006505 3668.4008 620.5409 -10543.961 0 268.4146 -0.0017835729 -0.0018102011 + 118290 -6249.0285 -6255.0317 6.0032531 3670.5345 619.16398 -10544.73 0 287.70957 -0.0019419473 -0.0019668289 + 118300 -6248.683 -6254.7774 6.094433 3672.3356 618.25107 -10545.364 0 292.07943 -0.0020661336 -0.0020845674 + 118310 -6248.3665 -6254.3783 6.0117932 3673.0929 618.05909 -10545.53 0 288.11886 -0.0021111131 -0.0021234124 + 118320 -6248.041 -6253.9757 5.9346658 3672.4226 618.6701 -10545.068 0 284.42248 -0.0020533585 -0.002065347 + 118330 -6247.6969 -6253.6367 5.9398286 3670.4858 619.96043 -10544.083 0 284.66991 -0.0019041672 -0.0019226908 + 118340 -6247.3719 -6253.328 5.9560375 3667.9583 621.63244 -10542.919 0 285.44674 -0.001707914 -0.0017351405 + 118350 -6247.1229 -6252.9741 5.851215 3665.7469 623.30075 -10542.022 0 280.42305 -0.0015243569 -0.0015558016 + 118360 -6246.9766 -6252.5433 5.5666669 3664.6073 624.60709 -10541.758 0 266.78591 -0.0014040364 -0.0014319191 + 118370 -6246.9039 -6252.0906 5.1866282 3664.8623 625.32441 -10542.277 0 248.57233 -0.0013696397 -0.0013888525 + 118380 -6246.8375 -6251.7305 4.8930064 3666.3458 625.40977 -10543.486 0 234.50032 -0.0014121529 -0.0014241794 + 118390 -6246.7197 -6251.5608 4.841073 3668.5603 624.98571 -10545.107 0 232.01138 -0.0015017398 -0.0015133625 + 118400 -6246.5443 -6251.5968 5.0524532 3670.9228 624.26265 -10546.782 0 242.14191 -0.0016049949 -0.0016226175 + 118410 -6246.3566 -6251.7738 5.4172635 3672.9436 623.44232 -10548.16 0 259.62566 -0.0016977372 -0.0017220152 + 118420 -6246.2093 -6252.0163 5.8069816 3674.2708 622.65056 -10548.938 0 278.30314 -0.0017676868 -0.0017933604 + 118430 -6246.113 -6252.2988 6.1857965 3674.663 621.93134 -10548.893 0 296.45808 -0.0018100741 -0.0018312648 + 118440 -6246.0298 -6252.6291 6.5993849 3673.9982 621.29509 -10547.922 0 316.27955 -0.0018235963 -0.0018394243 + 118450 -6245.9179 -6252.9698 7.0518959 3672.3441 620.77744 -10546.091 0 337.96642 -0.0018105268 -0.0018255568 + 118460 -6245.781 -6253.1954 7.4143507 3670.0082 620.45819 -10543.662 0 355.33729 -0.0017782629 -0.0017975623 + 118470 -6245.6684 -6253.1543 7.4859025 3667.4757 620.42287 -10541.053 0 358.76645 -0.0017376954 -0.0017616309 + 118480 -6245.6266 -6252.7974 7.1708431 3665.2477 620.69752 -10538.743 0 343.66704 -0.00169797 -0.0017218573 + 118490 -6245.6526 -6252.2571 6.6044653 3663.6849 621.21094 -10537.153 0 316.52304 -0.0016621378 -0.001680814 + 118500 -6245.6961 -6251.7945 6.0983679 3662.9582 621.81815 -10536.571 0 292.26801 -0.0016280246 -0.0016406576 + 118510 -6245.7039 -6251.6456 5.9416298 3663.1093 622.37048 -10537.125 0 284.75624 -0.0015935496 -0.0016041733 + 118520 -6245.6627 -6251.8792 6.2164758 3664.1325 622.78243 -10538.794 0 297.9284 -0.0015615041 -0.0015751222 + 118530 -6245.6055 -6252.3687 6.7631545 3665.9907 623.05124 -10541.411 0 324.12831 -0.0015396286 -0.0015577643 + 118540 -6245.5812 -6252.8873 7.3060795 3668.5512 623.22157 -10544.66 0 350.14832 -0.0015362074 -0.0015560364 + 118550 -6245.6137 -6253.2471 7.6333944 3671.5138 623.32739 -10548.088 0 365.83509 -0.0015551171 -0.0015728241 + 118560 -6245.6877 -6253.377 7.6892703 3674.416 623.35919 -10551.152 0 368.51298 -0.0015941618 -0.0016090273 + 118570 -6245.773 -6253.2997 7.5267191 3676.7355 623.283 -10553.318 0 360.72261 -0.001646671 -0.0016617021 + 118580 -6245.8596 -6253.0629 7.2033969 3678.0219 623.0943 -10554.179 0 345.2272 -0.001702932 -0.0017215728 + 118590 -6245.9637 -6252.7035 6.7398654 3677.9818 622.85853 -10553.544 0 323.01216 -0.0017495493 -0.0017721337 + 118600 -6246.1017 -6252.2651 6.163378 3676.5092 622.69854 -10551.473 0 295.38366 -0.00176958 -0.0017931259 + 118610 -6246.2654 -6251.8243 5.5589337 3673.7138 622.72941 -10548.268 0 266.41529 -0.0017476096 -0.0017687731 + 118620 -6246.4237 -6251.4821 5.0584173 3669.9663 622.98026 -10544.429 0 242.42774 -0.0016791988 -0.0016972795 + 118630 -6246.5467 -6251.3245 4.777761 3665.9153 623.35186 -10540.592 0 228.97711 -0.0015786759 -0.0015961247 + 118640 -6246.6264 -6251.3835 4.7570987 3662.4112 623.6366 -10537.431 0 227.98686 -0.0014789715 -0.0014993288 + 118650 -6246.6822 -6251.6273 4.9450538 3660.3135 623.59429 -10535.535 0 236.99472 -0.0014217219 -0.0014467527 + 118660 -6246.7484 -6251.9832 5.2348362 3660.228 623.05217 -10535.263 0 250.88272 -0.0014411086 -0.0014692348 + 118670 -6246.8521 -6252.3833 5.5311608 3662.2691 621.9878 -10536.64 0 265.08426 -0.0015481619 -0.0015753888 + 118680 -6246.9962 -6252.8026 5.8063517 3665.9579 620.56015 -10539.321 0 278.27295 -0.001722763 -0.0017456284 + 118690 -6247.1599 -6253.2604 6.1004944 3670.3301 619.07571 -10542.666 0 292.36992 -0.0019180363 -0.0019364414 + 118700 -6247.3229 -6253.7754 6.4524569 3674.2338 617.90251 -10545.912 0 309.23794 -0.0020764681 -0.0020938568 + 118710 -6247.4939 -6254.3078 6.8138764 3676.6998 617.36326 -10548.371 0 326.55919 -0.00215078 -0.0021711124 + 118720 -6247.7128 -6254.7481 7.0353185 3677.2187 617.64122 -10549.608 0 337.17194 -0.0021195719 -0.0021437107 + 118730 -6248.0175 -6254.9714 6.9538844 3675.8331 618.7254 -10549.53 0 333.26916 -0.0019914529 -0.0020164223 + 118740 -6248.4052 -6254.9105 6.5052632 3673.0623 620.41028 -10548.383 0 311.76871 -0.0017990135 -0.0018206713 + 118750 -6248.8254 -6254.588 5.7625594 3669.7355 622.34852 -10546.672 0 276.17418 -0.0015883534 -0.001604712 + 118760 -6249.2106 -6254.0964 4.8858072 3666.7858 624.13763 -10545.02 0 234.15529 -0.0014084291 -0.0014207707 + 118770 -6249.5155 -6253.5558 4.0402991 3665.0344 625.41396 -10544.004 0 193.6338 -0.0013012374 -0.0013126017 + 118780 -6249.7345 -6253.0783 3.3437817 3664.9966 625.93252 -10544.007 0 160.25278 -0.0012927484 -0.0013054646 + 118790 -6249.8915 -6252.7523 2.8607862 3666.7456 625.61959 -10545.118 0 137.10493 -0.0013857022 -0.0013999601 + 118800 -6250.0155 -6252.6388 2.6232824 3669.8753 624.58953 -10547.104 0 125.72241 -0.0015569337 -0.0015712495 + 118810 -6250.1212 -6252.7653 2.6441391 3673.5887 623.11894 -10549.473 0 126.72198 -0.0017618353 -0.0017747138 + 118820 -6250.2065 -6253.113 2.9065233 3676.9085 621.5773 -10551.599 0 139.2969 -0.0019462614 -0.0019574947 + 118830 -6250.2633 -6253.6071 3.3438041 3678.9512 620.32578 -10552.884 0 160.25386 -0.0020627017 -0.0020732375 + 118840 -6250.2888 -6254.132 3.8431613 3679.1777 619.61138 -10552.921 0 184.18585 -0.0020849694 -0.0020957296 + 118850 -6250.2874 -6254.5762 4.2887819 3677.5337 619.49273 -10551.603 0 205.54249 -0.0020157216 -0.0020267606 + 118860 -6250.2617 -6254.8793 4.6176535 3674.4442 619.83009 -10549.154 0 221.30387 -0.001884114 -0.0018949798 + 118870 -6250.2073 -6255.047 4.8396974 3670.6808 620.34959 -10546.077 0 231.94546 -0.0017350702 -0.0017457782 + 118880 -6250.1167 -6255.121 5.0042874 3667.1516 620.75892 -10543.032 0 239.83353 -0.001614566 -0.0016259591 + 118890 -6249.9873 -6255.1318 5.1445268 3664.6683 620.86514 -10540.665 0 246.55459 -0.0015559143 -0.0015689844 + 118900 -6249.8245 -6255.0713 5.2467899 3663.7481 620.64401 -10539.463 0 251.45561 -0.0015708664 -0.00158578 + 118910 -6249.6365 -6254.9035 5.2670038 3664.4992 620.23512 -10539.638 0 252.42437 -0.0016475225 -0.0016634173 + 118920 -6249.4247 -6254.5998 5.1751419 3666.6202 619.87324 -10541.093 0 248.02184 -0.0017552874 -0.0017711567 + 118930 -6249.1815 -6254.1684 4.9869198 3669.5132 619.7927 -10543.474 0 239.00118 -0.0018553702 -0.0018712036 + 118940 -6248.8979 -6253.6539 4.7559479 3672.4725 620.14669 -10546.273 0 227.93171 -0.0019133569 -0.0019302606 + 118950 -6248.5752 -6253.116 4.5407897 3674.877 620.96681 -10548.96 0 217.62012 -0.001909046 -0.0019280002 + 118960 -6248.226 -6252.6132 4.3872047 3676.319 622.16521 -10551.097 0 210.25946 -0.0018398206 -0.0018602948 + 118970 -6247.8608 -6252.2049 4.3441848 3676.6427 623.56605 -10552.414 0 208.19771 -0.0017175702 -0.0017376855 + 118980 -6247.4709 -6251.9555 4.4846079 3675.925 624.94947 -10552.83 0 214.92758 -0.0015629223 -0.0015814157 + 118990 -6247.0292 -6251.9124 4.8832571 3674.4476 626.09581 -10552.456 0 234.03308 -0.00140103 -0.0014191941 + 119000 -6246.5163 -6252.0628 5.5465126 3672.6687 626.82398 -10551.556 0 265.82 -0.0012598643 -0.0012811754 + 119010 -6245.9548 -6252.3092 6.3543896 3671.15 627.02063 -10550.48 0 304.538 -0.001167988 -0.001195221 + 119020 -6245.4123 -6252.5014 7.0891559 3670.4026 626.65623 -10549.56 0 339.75213 -0.0011485102 -0.0011808809 + 119030 -6244.9629 -6252.5137 7.5508568 3670.6906 625.78452 -10548.989 0 361.87942 -0.0012103599 -0.0012435536 + 119040 -6244.6395 -6252.3119 7.6723417 3671.901 624.52599 -10548.739 0 367.70166 -0.0013425623 -0.0013718387 + 119050 -6244.4195 -6251.9657 7.5462303 3673.5669 623.0417 -10548.574 0 361.6577 -0.0015163974 -0.0015401619 + 119060 -6244.2515 -6251.6055 7.3540148 3675.0414 621.5075 -10548.154 0 352.44565 -0.0016948267 -0.0017157583 + 119070 -6244.0979 -6251.3535 7.2555272 3675.7345 620.09602 -10547.184 0 347.72557 -0.0018438007 -0.0018666026 + 119080 -6243.9593 -6251.2744 7.315104 3675.298 618.96681 -10545.539 0 350.58083 -0.0019394392 -0.0019669435 + 119090 -6243.8635 -6251.3746 7.5110905 3673.6862 618.25918 -10543.32 0 359.9736 -0.0019684707 -0.0019994397 + 119100 -6243.8325 -6251.6348 7.8023175 3671.1126 618.08378 -10540.831 0 373.93083 -0.0019247321 -0.0019554498 + 119110 -6243.8615 -6252.0276 8.1660266 3667.9905 618.5108 -10538.529 0 391.36181 -0.0018079364 -0.0018359643 + 119120 -6243.9325 -6252.4921 8.5595391 3664.9114 619.5494 -10536.953 0 410.22114 -0.0016282457 -0.0016543921 + 119130 -6244.0442 -6252.9072 8.863027 3662.6177 621.1149 -10536.64 0 424.76598 -0.0014129704 -0.0014395013 + 119140 -6244.2192 -6253.1213 8.9020565 3661.8768 622.99723 -10537.995 0 426.6365 -0.0012070089 -0.0012343145 + 119150 -6244.4761 -6253.0428 8.5666759 3663.2439 624.86425 -10541.151 0 410.56318 -0.0010618484 -0.0010874975 + 119160 -6244.7942 -6252.7173 7.9231035 3666.81 626.32885 -10545.856 0 379.71958 -0.001017064 -0.0010385009 + 119170 -6245.1181 -6252.3104 7.1922305 3672.0888 627.07393 -10551.473 0 344.69204 -0.0010849251 -0.0011027848 + 119180 -6245.3998 -6251.9909 6.5910271 3678.1107 626.98396 -10557.085 0 315.879 -0.0012461612 -0.0012641657 + 119190 -6245.6359 -6251.8148 6.1789011 3683.6645 626.21111 -10561.69 0 296.12761 -0.0014563584 -0.0014775049 + 119200 -6245.8592 -6251.7148 5.8556713 3687.5688 625.12822 -10564.412 0 280.63662 -0.0016574953 -0.0016806463 + 119210 -6246.0955 -6251.6022 5.5067768 3688.9099 624.17961 -10564.692 0 263.91564 -0.0017914254 -0.0018122577 + 119220 -6246.3304 -6251.4757 5.1452323 3687.2547 623.69689 -10562.427 0 246.5884 -0.0018154678 -0.0018310208 + 119230 -6246.5223 -6251.4353 4.9129709 3682.8273 623.76624 -10558.029 0 235.45713 -0.0017182644 -0.0017303577 + 119240 -6246.6447 -6251.5969 4.9521708 3676.5677 624.20503 -10552.37 0 237.33581 -0.0015289116 -0.001542812 + 119250 -6246.7174 -6251.9945 5.2770644 3669.9695 624.65054 -10546.614 0 252.90654 -0.0013115016 -0.0013309911 + 119260 -6246.7953 -6252.5556 5.7602858 3664.681 624.71514 -10541.952 0 276.06522 -0.0011436864 -0.0011672055 + 119270 -6246.9265 -6253.1613 6.2347573 3661.9955 624.13999 -10539.297 0 298.80455 -0.0010874754 -0.0011091246 + 119280 -6247.1133 -6253.7254 6.612064 3662.4479 622.88945 -10539.063 0 316.88721 -0.0011661261 -0.0011809742 + 119290 -6247.3134 -6254.2222 6.9088037 3665.6984 621.16154 -10541.082 0 331.10864 -0.0013581745 -0.0013672794 + 119300 -6247.4825 -6254.6416 7.1591694 3670.7309 619.32726 -10544.7 0 343.10757 -0.0016095853 -0.0016199663 + 119310 -6247.6223 -6254.9273 7.3049917 3676.2289 617.83077 -10548.987 0 350.09619 -0.0018547968 -0.0018738429 + 119320 -6247.786 -6254.973 7.1870422 3680.9338 617.07925 -10552.986 0 344.44339 -0.0020349401 -0.0020639008 + 119330 -6248.0293 -6254.6975 6.6681908 3683.8722 617.3415 -10555.911 0 319.57712 -0.0021077922 -0.0021402217 + 119340 -6248.3529 -6254.1356 5.7826957 3684.4772 618.67253 -10557.285 0 277.13923 -0.0020521947 -0.0020789744 + 119350 -6248.6915 -6253.4579 4.7663962 3682.6777 620.88351 -10557.019 0 228.43245 -0.0018720183 -0.0018886566 + 119360 -6248.9622 -6252.8881 3.9258478 3678.9707 623.57074 -10555.429 0 188.14865 -0.0016001742 -0.0016100685 + 119370 -6249.1269 -6252.5769 3.449983 3674.3939 626.20185 -10553.173 0 165.34254 -0.0012973661 -0.0013084379 + 119380 -6249.2148 -6252.5318 3.3170505 3670.3051 628.2396 -10551.077 0 158.97167 -0.0010397424 -0.0010577143 + 119390 -6249.2917 -6252.6534 3.3617504 3667.9753 629.27288 -10549.902 0 161.11394 -0.00089600468 -0.00092020513 + 119400 -6249.4071 -6252.8366 3.4294568 3668.1513 629.11985 -10550.108 0 164.35881 -0.00090317114 -0.00092801665 + 119410 -6249.5627 -6253.0462 3.4834559 3670.7989 627.87119 -10551.716 0 166.94675 -0.001053438 -0.0010736128 + 119420 -6249.7227 -6253.3144 3.5916639 3675.1448 625.85664 -10554.316 0 172.13269 -0.0012989018 -0.0013134978 + 119430 -6249.8519 -6253.6807 3.8288004 3679.9744 623.54473 -10557.2 0 183.4976 -0.0015707011 -0.0015831418 + 119440 -6249.9469 -6254.1354 4.1884982 3684.0286 621.41135 -10559.575 0 200.73634 -0.0018023004 -0.001816703 + 119450 -6250.0379 -6254.6123 4.5744799 3686.341 619.82232 -10560.776 0 219.23474 -0.0019470428 -0.0019644286 + 119460 -6250.1614 -6255.0295 4.8680918 3686.4292 618.96446 -10560.423 0 233.30627 -0.0019855373 -0.0020030978 + 119470 -6250.3285 -6255.3368 5.008319 3684.3376 618.83717 -10558.512 0 240.02675 -0.0019242635 -0.0019381477 + 119480 -6250.5154 -6255.5283 5.0129157 3680.5823 619.29442 -10555.405 0 240.24705 -0.0017896131 -0.0017986053 + 119490 -6250.6846 -6255.6099 4.925253 3676.038 620.11274 -10551.761 0 236.04576 -0.0016206629 -0.0016273308 + 119500 -6250.8161 -6255.5626 4.746497 3671.7701 621.05763 -10548.39 0 227.47877 -0.0014611882 -0.0014694994 + 119510 -6250.9181 -6255.3485 4.4303741 3668.8 621.92985 -10546.078 0 212.32839 -0.0013501562 -0.0013619732 + 119520 -6251.0093 -6254.9605 3.9511295 3667.8397 622.58905 -10545.389 0 189.36029 -0.0013118292 -0.0013256396 + 119530 -6251.095 -6254.4681 3.3731232 3669.0902 622.96417 -10546.522 0 161.65899 -0.0013492683 -0.001362073 + 119540 -6251.1609 -6254.007 2.8460725 3672.197 623.05884 -10549.263 0 136.39976 -0.0014446367 -0.0014548487 + 119550 -6251.1867 -6253.7126 2.5258196 3676.3776 622.95039 -10553.041 0 121.05145 -0.0015659938 -0.0015746523 + 119560 -6251.1614 -6253.649 2.4876634 3680.654 622.77359 -10557.077 0 119.22279 -0.0016770445 -0.0016866385 + 119570 -6251.087 -6253.7817 2.6946115 3684.0965 622.68424 -10560.562 0 129.1409 -0.001746235 -0.0017585115 + 119580 -6250.9729 -6254.0052 3.0323155 3686.0168 622.80862 -10562.831 0 145.32557 -0.0017534004 -0.0017679792 + 119590 -6250.8248 -6254.2062 3.3814095 3686.0858 623.19587 -10563.488 0 162.05611 -0.0016934037 -0.0017081381 + 119600 -6250.637 -6254.322 3.6850647 3684.3757 623.79282 -10562.491 0 176.60898 -0.0015765452 -0.0015893566 + 119610 -6250.39 -6254.3643 3.9743186 3681.3354 624.45368 -10560.153 0 190.47165 -0.0014260088 -0.0014369532 + 119620 -6250.0599 -6254.3922 4.3323178 3677.7119 624.9833 -10557.087 0 207.62898 -0.0012733461 -0.0012852718 + 119630 -6249.6382 -6254.4524 4.8141914 3674.4168 625.19916 -10554.068 0 230.72307 -0.001152948 -0.0011697498 + 119640 -6249.1505 -6254.5283 5.3777949 3672.3298 624.98933 -10551.847 0 257.73411 -0.0010954749 -0.0011187159 + 119650 -6248.6545 -6254.5436 5.8890606 3672.0499 624.34599 -10550.939 0 282.23683 -0.001119828 -0.0011464003 + 119660 -6248.2066 -6254.4239 6.2173008 3673.6648 623.36475 -10551.454 0 297.96794 -0.0012250483 -0.0012486515 + 119670 -6247.8185 -6254.1655 6.3469704 3676.6641 622.21646 -10553.046 0 304.18243 -0.001386662 -0.0014029528 + 119680 -6247.4506 -6253.8387 6.3880774 3680.0941 621.10968 -10555.042 0 306.15251 -0.001562418 -0.0015735348 + 119690 -6247.0588 -6253.5117 6.452874 3682.9105 620.2579 -10556.68 0 309.25793 -0.0017068954 -0.0017203776 + 119700 -6246.6509 -6253.1722 6.5212795 3684.34 619.85038 -10557.363 0 312.5363 -0.00178677 -0.0018089119 + 119710 -6246.2899 -6252.7425 6.4526064 3684.0579 620.01842 -10556.819 0 309.24511 -0.0017873172 -0.0018170271 + 119720 -6246.0354 -6252.1837 6.1482842 3682.1572 620.79905 -10555.14 0 294.66027 -0.001708772 -0.0017380677 + 119730 -6245.8828 -6251.586 5.7031904 3679.0361 622.11063 -10552.733 0 273.32889 -0.0015601902 -0.0015811615 + 119740 -6245.7573 -6251.1479 5.3906063 3675.3313 623.75349 -10550.233 0 258.3481 -0.0013589081 -0.0013709359 + 119750 -6245.5689 -6251.0489 5.4799733 3671.9005 625.43969 -10548.389 0 262.63107 -0.0011357359 -0.001146561 + 119760 -6245.2838 -6251.311 6.0271389 3669.7465 626.84932 -10547.907 0 288.85432 -0.00093779869 -0.00095719588 + 119770 -6244.9552 -6251.7595 6.8043426 3669.7782 627.70603 -10549.244 0 326.10228 -0.00081978328 -0.00085080997 + 119780 -6244.6849 -6252.1316 7.4467199 3672.4264 627.85411 -10552.412 0 356.8886 -0.00082208619 -0.00085757978 + 119790 -6244.5355 -6252.2591 7.7236734 3677.3076 627.30987 -10556.877 0 370.16177 -0.00094679893 -0.00097516269 + 119800 -6244.4709 -6252.1771 7.7062476 3683.2024 626.26443 -10561.644 0 369.32663 -0.0011496114 -0.0011654529 + 119810 -6244.3938 -6252.0571 7.6632885 3688.4626 625.03339 -10565.553 0 367.26778 -0.0013574457 -0.0013669389 + 119820 -6244.2471 -6252.0347 7.7876251 3691.6499 623.96775 -10567.652 0 373.22669 -0.0015014497 -0.0015168117 + 119830 -6244.0718 -6252.1084 8.0365862 3692.0286 623.35101 -10567.488 0 385.1583 -0.0015427963 -0.0015713252 + 119840 -6243.9673 -6252.1929 8.2255748 3689.6817 623.31622 -10565.191 0 394.2157 -0.0014780495 -0.0015162259 + 119850 -6244.0038 -6252.2348 8.2309798 3685.3236 623.8142 -10561.373 0 394.47473 -0.0013297063 -0.0013668132 + 119860 -6244.173 -6252.2608 8.0878256 3680.0244 624.64087 -10556.926 0 387.61398 -0.0011351661 -0.00116188 + 119870 -6244.4084 -6252.3346 7.9262153 3674.9794 625.50162 -10552.816 0 379.86871 -0.00094042907 -0.00095499282 + 119880 -6244.6428 -6252.4864 7.8435828 3671.3258 626.08489 -10549.897 0 375.9085 -0.00079544942 -0.00080367059 + 119890 -6244.8532 -6252.6798 7.8266356 3669.9558 626.13382 -10548.769 0 375.09629 -0.00074579077 -0.0007561537 + 119900 -6245.067 -6252.8328 7.7658384 3671.3055 625.51592 -10549.654 0 372.18255 -0.00081959171 -0.00083744362 + 119910 -6245.3343 -6252.8691 7.5347527 3675.1721 624.28216 -10552.323 0 361.10763 -0.0010143605 -0.0010388215 + 119920 -6245.687 -6252.7655 7.0784343 3680.6612 622.68833 -10556.115 0 339.23829 -0.0012905341 -0.0013156929 + 119930 -6246.1109 -6252.5727 6.4617088 3686.3481 621.14996 -10560.071 0 309.68134 -0.0015772406 -0.0015966716 + 119940 -6246.5504 -6252.3971 5.8467248 3690.6626 620.12837 -10563.188 0 280.20786 -0.0017914086 -0.0018030043 + 119950 -6246.9429 -6252.343 5.4001358 3692.3937 619.98348 -10564.72 0 258.80481 -0.0018653832 -0.001872982 + 119960 -6247.2613 -6252.4431 5.1818425 3691.1221 620.84964 -10564.415 0 248.34297 -0.0017724669 -0.0017827921 + 119970 -6247.5289 -6252.6321 5.1032228 3687.3793 622.58042 -10562.592 0 244.57507 -0.0015382616 -0.0015554663 + 119980 -6247.7946 -6252.7978 5.003195 3682.4458 624.78078 -10560.024 0 239.78117 -0.0012314528 -0.0012538627 + 119990 -6248.0883 -6252.875 4.7867294 3677.8847 626.91611 -10557.676 0 229.40693 -0.00093840886 -0.00096024134 + 120000 -6248.3962 -6252.9026 4.506408 3675.0329 628.46416 -10556.4 0 215.97235 -0.00073420228 -0.00075057195 + 120010 -6248.6754 -6252.9952 4.3197713 3674.6509 629.06143 -10556.708 0 207.02768 -0.00066236967 -0.00067319163 + 120020 -6248.891 -6253.2578 4.3667247 3676.807 628.59857 -10558.663 0 209.27795 -0.00072840784 -0.00073823721 + 120030 -6249.043 -6253.7094 4.6663197 3680.9501 627.23887 -10561.898 0 223.63622 -0.00090459686 -0.0009189776 + 120040 -6249.1669 -6254.2666 5.0996951 3686.0879 625.36066 -10565.715 0 244.406 -0.0011408634 -0.0011621594 + 120050 -6249.3108 -6254.792 5.4812323 3691.009 623.44441 -10569.245 0 262.69141 -0.0013774111 -0.0014031356 + 120060 -6249.5023 -6255.1706 5.6682696 3694.5266 621.93816 -10571.635 0 271.65528 -0.0015571956 -0.0015820266 + 120070 -6249.7296 -6255.3629 5.6332696 3695.7378 621.1404 -10572.241 0 269.97789 -0.0016380732 -0.0016579957 + 120080 -6249.9534 -6255.3968 5.4434154 3694.2714 621.13423 -10570.802 0 260.87901 -0.0016039359 -0.0016190469 + 120090 -6250.1408 -6255.3119 5.1711216 3690.444 621.78788 -10567.544 0 247.82916 -0.001471268 -0.0014848155 + 120100 -6250.29 -6255.1182 4.8281934 3685.2207 622.81257 -10563.152 0 231.39412 -0.0012858917 -0.0013007066 + 120110 -6250.4216 -6254.8104 4.3888041 3679.9453 623.85474 -10558.61 0 210.33612 -0.0011082366 -0.0011242155 + 120120 -6250.5502 -6254.4156 3.8653235 3675.9349 624.59683 -10554.947 0 185.24799 -0.00099260588 -0.0010075237 + 120130 -6250.668 -6254.0132 3.3452013 3674.1129 624.84273 -10552.969 0 160.32082 -0.00097002195 -0.00098236824 + 120140 -6250.7546 -6253.7008 2.9461794 3674.8118 624.56675 -10553.079 0 141.19745 -0.0010414807 -0.0010521844 + 120150 -6250.7994 -6253.5348 2.7354254 3677.7657 623.9117 -10555.212 0 131.09694 -0.00118184 -0.0011932516 + 120160 -6250.8119 -6253.5031 2.6911842 3682.2357 623.13616 -10558.875 0 128.97665 -0.0013498158 -0.0013631817 + 120170 -6250.8102 -6253.552 2.7417854 3687.1991 622.52843 -10563.28 0 131.40174 -0.0014992191 -0.0015132557 + 120180 -6250.799 -6253.6449 2.8458951 3691.5678 622.31663 -10567.529 0 136.39126 -0.0015889432 -0.0016009485 + 120190 -6250.7556 -6253.7985 3.0429408 3694.4182 622.60497 -10570.822 0 145.8348 -0.0015912512 -0.0015997619 + 120200 -6250.6359 -6254.0657 3.4298198 3695.2026 623.35417 -10572.622 0 164.37621 -0.0014980319 -0.001504596 + 120210 -6250.3957 -6254.4756 4.0799259 3693.8906 624.40637 -10572.773 0 195.53294 -0.0013236812 -0.0013320309 + 120220 -6250.015 -6254.978 4.9630331 3690.9848 625.54041 -10571.503 0 237.85639 -0.0011028362 -0.0011158979 + 120230 -6249.5133 -6255.4398 5.9265385 3687.3841 626.5363 -10569.36 0 284.03298 -0.00088220531 -0.00089936448 + 120240 -6248.9406 -6255.7032 6.7626049 3684.1245 627.22663 -10567.054 0 324.10197 -0.00070808665 -0.00072542794 + 120250 -6248.345 -6255.6662 7.3212268 3682.086 627.52017 -10565.272 0 350.87427 -0.00061408372 -0.00062812176 + 120260 -6247.746 -6255.3224 7.5763886 3681.7786 627.39713 -10564.498 0 363.10305 -0.00061461103 -0.00062646705 + 120270 -6247.1461 -6254.7293 7.5832755 3683.2687 626.89226 -10564.89 0 363.43311 -0.00070617835 -0.00072178321 + 120280 -6246.5676 -6253.9441 7.3764101 3686.2089 626.08546 -10566.238 0 353.51896 -0.00087212852 -0.00089727552 + 120290 -6246.0685 -6252.9971 6.9285989 3689.896 625.10662 -10568 0 332.05734 -0.0010845366 -0.0011188522 + 120300 -6245.7066 -6251.9339 6.2273213 3693.3342 624.14075 -10569.409 0 298.44818 -0.0013024355 -0.0013381514 + 120310 -6245.4854 -6250.8776 5.3922015 3695.3752 623.41137 -10569.664 0 258.42455 -0.0014727133 -0.0015001885 + 120320 -6245.3333 -6250.0308 4.6974149 3695.0121 623.13137 -10568.174 0 225.12648 -0.0015407912 -0.0015564556 + 120330 -6245.143 -6249.5876 4.444647 3691.7904 623.43343 -10564.811 0 213.01242 -0.0014706798 -0.0014804703 + 120340 -6244.8395 -6249.616 4.7764538 3686.1486 624.30671 -10560.071 0 228.91447 -0.0012647065 -0.0012797821 + 120350 -6244.4274 -6250.0108 5.5834039 3679.4637 625.56839 -10555.043 0 267.58804 -0.00097046136 -0.0009985757 + 120360 -6243.9812 -6250.5651 6.5839195 3673.6957 626.88873 -10551.15 0 315.53836 -0.00066866058 -0.00070816139 + 120370 -6243.5881 -6251.1033 7.5151585 3670.7482 627.87333 -10549.725 0 360.16856 -0.00044608812 -0.00048726885 + 120380 -6243.2843 -6251.5724 8.288084 3671.8125 628.18507 -10551.57 0 397.21149 -0.00036563996 -0.00039829571 + 120390 -6243.0379 -6252.0316 8.9936712 3676.9687 627.66822 -10556.668 0 431.02719 -0.0004462291 -0.00046758592 + 120400 -6242.7952 -6252.5538 9.7585936 3685.1765 626.42879 -10564.159 0 467.68656 -0.00065937524 -0.00067624899 + 120410 -6242.555 -6253.1121 10.557103 3694.6112 624.8355 -10572.559 0 505.95562 -0.00094086995 -0.00096392803 + 120420 -6242.4046 -6253.5444 11.139815 3703.1609 623.43018 -10580.135 0 533.88246 -0.001209687 -0.0012439485 + 120430 -6242.4655 -6253.6475 11.182073 3708.9015 622.76628 -10585.315 0 535.90766 -0.0013861862 -0.001426127 + 120440 -6242.7835 -6253.3421 10.558642 3710.4814 623.22489 -10587.048 0 506.02937 -0.0014078127 -0.0014423295 + 120450 -6243.2728 -6252.7557 9.482901 3707.4479 624.87475 -10585.078 0 454.47383 -0.0012455507 -0.0012683861 + 120460 -6243.7816 -6252.1369 8.3552967 3700.4846 627.42893 -10580.05 0 400.4327 -0.00092008683 -0.00093532578 + 120470 -6244.2097 -6251.6823 7.4726361 3691.3943 630.30887 -10573.385 0 358.13065 -0.00050735949 -0.00052495224 + 120480 -6244.5606 -6251.4379 6.877302 3682.6786 632.78949 -10566.906 0 329.5989 -0.00012267658 -0.00014919053 + 120490 -6244.8998 -6251.3412 6.4414085 3676.7837 634.18639 -10562.311 0 308.70844 0.00011541169 8.2057212e-05 + 120500 -6245.2782 -6251.3297 6.0515938 3675.3079 634.04259 -10560.68 0 290.02633 0.00012663286 9.4749069e-05 + 120510 -6245.6885 -6251.4076 5.7190671 3678.5028 632.26601 -10562.176 0 274.08979 -0.00010296864 -0.00012585055 + 120520 -6246.0782 -6251.6268 5.5486576 3685.2521 629.17302 -10566.052 0 265.92281 -0.00051784638 -0.00053069741 + 120530 -6246.3945 -6252.0127 5.6182546 3693.4938 625.41996 -10570.926 0 269.25829 -0.0010132463 -0.0010218908 + 120540 -6246.6273 -6252.5028 5.875512 3700.8861 621.83933 -10575.228 0 281.5875 -0.0014679648 -0.0014801995 + 120550 -6246.8159 -6252.9594 6.1434895 3705.4625 619.22492 -10577.647 0 294.43049 -0.0017765463 -0.0017961163 + 120560 -6247.0152 -6253.2572 6.2419875 3706.0881 618.12478 -10577.47 0 299.15107 -0.0018723878 -0.0018967557 + 120570 -6247.2499 -6253.3729 6.1230157 3702.663 618.70411 -10574.74 0 293.44927 -0.0017395038 -0.0017628934 + 120580 -6247.5002 -6253.3969 5.8967086 3696.1031 620.72002 -10570.22 0 282.60336 -0.0014140471 -0.0014324605 + 120590 -6247.7273 -6253.4576 5.730357 3688.1345 623.61015 -10565.202 0 274.63086 -0.00097618386 -0.00098988823 + 120600 -6247.9078 -6253.628 5.7202334 3680.9106 626.65766 -10561.196 0 274.14568 -0.00053218852 -0.00054431764 + 120610 -6248.0481 -6253.8862 5.8381213 3676.4918 629.17934 -10559.557 0 279.79553 -0.00018876525 -0.00020216719 + 120620 -6248.1727 -6254.1438 5.9710166 3676.2996 630.68781 -10561.131 0 286.16462 -2.5373355e-05 -4.0507906e-05 + 120630 -6248.3029 -6254.309 6.0060776 3680.7026 630.99269 -10566.004 0 287.84494 -7.2645391e-05 -8.7788325e-05 + 120640 -6248.4403 -6254.341 5.9007278 3688.8754 630.22143 -10573.438 0 282.79598 -0.00030421369 -0.00031740718 + 120650 -6248.5666 -6254.2641 5.6974627 3698.9907 628.76046 -10582.015 0 273.05438 -0.00064535892 -0.00065644429 + 120660 -6248.6595 -6254.1377 5.4781039 3708.6987 627.13615 -10589.972 0 262.54148 -0.00099593885 -0.0010069608 + 120670 -6248.7118 -6254.0073 5.2955227 3715.7424 625.86856 -10595.618 0 253.79116 -0.0012595779 -0.0012731096 + 120680 -6248.7372 -6253.8793 5.1421309 3718.5168 625.33324 -10597.729 0 246.43977 -0.0013692298 -0.0013860916 + 120690 -6248.7563 -6253.737 4.9807415 3716.4215 625.66363 -10595.822 0 238.70508 -0.0013021286 -0.0013207059 + 120700 -6248.7767 -6253.5752 4.7985348 3709.9538 626.71841 -10590.247 0 229.97271 -0.0010823966 -0.0011001757 + 120710 -6248.7874 -6253.411 4.6236627 3700.5683 628.12409 -10582.103 0 221.59186 -0.0007731606 -0.00078881185 + 120720 -6248.7706 -6253.2655 4.4948468 3690.3469 629.38209 -10572.994 0 215.41828 -0.00046059817 -0.00047462341 + 120730 -6248.716 -6253.1454 4.429394 3681.532 630.00985 -10564.687 0 212.28141 -0.00023242029 -0.00024620397 + 120740 -6248.6224 -6253.0483 4.4258467 3676.0126 629.67607 -10558.737 0 212.11141 -0.00015510164 -0.00016969987 + 120750 -6248.4909 -6252.9811 4.4901812 3674.8916 628.2939 -10556.167 0 215.19468 -0.00025610653 -0.00027180971 + 120760 -6248.3163 -6252.971 4.6546489 3678.2519 626.04965 -10557.273 0 223.07689 -0.00051653477 -0.00053316922 + 120770 -6248.0823 -6253.0574 4.9751348 3685.1712 623.36355 -10561.592 0 238.43637 -0.00087597318 -0.00089341632 + 120780 -6247.7597 -6253.2707 5.5109645 3693.9662 620.79782 -10568.035 0 264.11634 -0.0012473076 -0.0012657915 + 120790 -6247.3095 -6253.6039 6.2944794 3702.592 618.93989 -10575.136 0 301.66677 -0.0015368312 -0.0015567695 + 120800 -6246.6926 -6253.9913 7.2986608 3709.1003 618.28878 -10581.38 0 349.79278 -0.0016646103 -0.0016859116 + 120810 -6245.8901 -6254.3072 8.4171688 3712.0594 619.16203 -10585.529 0 403.39796 -0.001581304 -0.0016026622 + 120820 -6244.925 -6254.3991 9.4740332 3710.8657 621.62689 -10586.892 0 454.04883 -0.0012795281 -0.0012986166 + 120830 -6243.8706 -6254.1412 10.270558 3705.9141 625.45653 -10585.512 0 492.22276 -0.00079886378 -0.00081386513 + 120840 -6242.8295 -6253.4835 10.654029 3698.5926 630.12469 -10582.201 0 510.60086 -0.0002229323 -0.00023434335 + 120850 -6241.8959 -6252.4691 10.573234 3691.039 634.86565 -10578.374 0 506.72872 0.00033385422 0.00032301261 + 120860 -6241.1286 -6251.2233 10.094656 3685.6282 638.81512 -10575.667 0 483.79254 0.00075053486 0.00073658808 + 120870 -6240.5463 -6249.923 9.3767891 3684.2863 641.21234 -10575.422 0 449.38834 0.00093052503 0.00091156745 + 120880 -6240.1392 -6248.7524 8.6132104 3687.8589 641.60647 -10578.218 0 412.79337 0.00082978577 0.00080698133 + 120890 -6239.8824 -6247.8561 7.9737448 3695.7678 639.99241 -10583.616 0 382.14659 0.00047224035 0.00044934101 + 120900 -6239.7388 -6247.3214 7.5826214 3706.0818 636.81782 -10590.221 0 363.40176 -5.3264541e-05 -7.2217881e-05 + 120910 -6239.6575 -6247.1877 7.530237 3716.0026 632.85166 -10596.042 0 360.89121 -0.00061483375 -0.00062869647 + 120920 -6239.5884 -6247.454 7.8656429 3722.6484 628.96261 -10599.065 0 376.96574 -0.0010735303 -0.001085649 + 120930 -6239.5142 -6248.0618 8.5475787 3723.9105 625.88775 -10597.86 0 409.64793 -0.0013229706 -0.0013390083 + 120940 -6239.4736 -6248.8879 9.4143936 3719.089 624.06349 -10592.04 0 451.19056 -0.0013182544 -0.0013414379 + 120950 -6239.5418 -6249.7833 10.241466 3709.0892 623.55735 -10582.43 0 490.82849 -0.0010836792 -0.0011117717 + 120960 -6239.7788 -6250.6381 10.859293 3696.1482 624.10421 -10570.891 0 520.43824 -0.00069905454 -0.00072614657 + 120970 -6240.187 -6251.416 11.229019 3683.2351 625.22425 -10559.875 0 538.15758 -0.00027352106 -0.00029517345 + 120980 -6240.7164 -6252.1269 11.410531 3673.3298 626.38176 -10551.839 0 546.85666 8.2551934e-05 6.5358876e-05 + 120990 -6241.3053 -6252.7637 11.45835 3668.7542 627.13845 -10548.656 0 549.14843 0.00028117444 0.00026269118 + 121000 -6241.9192 -6253.258 11.338838 3670.6662 627.26349 -10551.188 0 543.42076 0.00027403959 0.0002485314 + 121010 -6242.5544 -6253.4961 10.941761 3678.7897 626.78109 -10559.067 0 524.39058 6.3344396e-05 3.0165313e-05 + 121020 -6243.2097 -6253.393 10.183322 3691.432 625.95248 -10570.778 0 488.04191 -0.0002955173 -0.00033079502 + 121030 -6243.8552 -6252.9736 9.1184009 3705.8231 625.20059 -10583.997 0 437.00494 -0.00070298415 -0.00073254327 + 121040 -6244.4308 -6252.3921 7.9612849 3718.7523 624.99443 -10596.139 0 381.54944 -0.0010383976 -0.0010581291 + 121050 -6244.8779 -6251.8606 6.9826708 3727.3804 625.71636 -10604.957 0 334.64876 -0.00119375 -0.001206241 + 121060 -6245.1783 -6251.5334 6.3550914 3729.9989 627.53827 -10609.071 0 304.57164 -0.001107877 -0.0011199275 + 121070 -6245.369 -6251.4378 6.0687464 3726.4768 630.33421 -10608.249 0 290.84838 -0.00078795326 -0.00080484175 + 121080 -6245.518 -6251.5019 5.9839303 3718.2375 633.65761 -10603.397 0 286.78351 -0.0003092482 -0.00033075936 + 121090 -6245.6785 -6251.6458 5.9673562 3707.7865 636.8073 -10596.24 0 285.98919 0.0002065746 0.00018510157 + 121100 -6245.8587 -6251.8466 5.9879229 3697.9839 638.98599 -10588.816 0 286.97487 0.00062555138 0.00060853922 + 121110 -6246.0306 -6252.1242 6.0935887 3691.3017 639.51834 -10582.944 0 292.03896 0.00083598043 0.00082376828 + 121120 -6246.1673 -6252.4749 6.3076235 3689.2506 638.06109 -10579.787 0 302.29671 0.00077490935 0.00076401791 + 121130 -6246.2729 -6252.8275 6.5546266 3692.0629 634.72965 -10579.62 0 314.13448 0.00044299479 0.00042979462 + 121140 -6246.3802 -6253.0732 6.6930065 3698.6653 630.09251 -10581.831 0 320.76643 -9.3616351e-05 -0.00010950833 + 121150 -6246.5184 -6253.1476 6.6292299 3706.9513 625.03309 -10585.132 0 317.70989 -0.00071590405 -0.00073166684 + 121160 -6246.6844 -6253.0933 6.4089439 3714.335 620.52819 -10587.957 0 307.15255 -0.0012792388 -0.0012921149 + 121170 -6246.8463 -6253.0403 6.1940231 3718.4778 617.41857 -10588.937 0 296.85234 -0.0016503665 -0.001660798 + 121180 -6246.9759 -6253.1136 6.1377064 3717.9864 616.23613 -10587.336 0 294.15333 -0.0017433336 -0.0017547796 + 121190 -6247.0781 -6253.3434 6.2652762 3712.845 617.11594 -10583.304 0 300.26719 -0.0015422641 -0.0015578655 + 121200 -6247.1886 -6253.6492 6.4606128 3704.4272 619.78937 -10577.866 0 309.62881 -0.0011038314 -0.0011232004 + 121210 -6247.3432 -6253.9058 6.5625574 3695.0931 623.64638 -10572.645 0 314.51457 -0.00053996004 -0.00055919558 + 121220 -6247.5455 -6254.0304 6.4848586 3687.519 627.85974 -10569.409 0 310.79081 1.2618484e-05 -2.3537331e-06 + 121230 -6247.7623 -6254.0256 6.2632245 3683.9748 631.56259 -10569.563 0 300.16886 0.00042667252 0.00041668958 + 121240 -6247.9509 -6253.9515 6.0006322 3685.7455 634.05168 -10573.749 0 287.58396 0.00061403156 0.00060560647 + 121250 -6248.0935 -6253.8602 5.7667684 3692.8143 634.96503 -10581.64 0 276.3759 0.00054471205 0.00053313738 + 121260 -6248.2098 -6253.7518 5.5420086 3703.8463 634.3741 -10591.972 0 265.60415 0.00025303229 0.00023645295 + 121270 -6248.3355 -6253.5911 5.2555633 3716.4601 632.74911 -10602.8 0 251.87608 -0.0001702217 -0.00018907535 + 121280 -6248.4856 -6253.3672 4.8815418 3727.7528 630.79934 -10611.919 0 233.95088 -0.00059973833 -0.00061596865 + 121290 -6248.6361 -6253.1327 4.4965951 3735.0039 629.24023 -10617.377 0 215.50207 -0.00090932926 -0.00092041246 + 121300 -6248.7435 -6252.978 4.2345282 3736.4061 628.56898 -10617.953 0 202.94235 -0.0010093631 -0.0010175637 + 121310 -6248.7834 -6252.9616 4.1782096 3731.5968 628.92269 -10613.481 0 200.24325 -0.00087508373 -0.00088539237 + 121320 -6248.7714 -6253.0674 4.29595 3721.7823 630.0558 -10604.905 0 205.88603 -0.00055408807 -0.00056965984 + 121330 -6248.7471 -6253.2297 4.4825406 3709.3939 631.4324 -10594.056 0 214.8285 -0.000149641 -0.00016901219 + 121340 -6248.7379 -6253.3981 4.6602067 3697.4013 632.39948 -10583.199 0 223.34325 0.00021306401 0.00019457806 + 121350 -6248.7348 -6253.5783 4.8434709 3688.531 632.39043 -10574.5 0 232.1263 0.0004244938 0.00041068717 + 121360 -6248.6989 -6253.813 5.1141233 3684.6281 631.10192 -10569.543 0 245.09748 0.00041982999 0.00041041268 + 121370 -6248.5914 -6254.1252 5.5338268 3686.2994 628.59577 -10569.02 0 265.21203 0.00019284648 0.00018372994 + 121380 -6248.403 -6254.4717 6.0686899 3692.8618 625.29995 -10572.633 0 290.84567 -0.00020562841 -0.00021893949 + 121390 -6248.161 -6254.7476 6.5865382 3702.5504 621.91222 -10579.21 0 315.66387 -0.00068112628 -0.00069981612 + 121400 -6247.9082 -6254.8416 6.9334546 3712.9252 619.23431 -10587.001 0 332.29005 -0.0011166819 -0.0011376464 + 121410 -6247.668 -6254.703 7.0350406 3721.4213 617.97899 -10594.103 0 337.15862 -0.001398466 -0.0014170429 + 121420 -6247.4261 -6254.3662 6.9401148 3725.9679 618.59556 -10598.93 0 332.60924 -0.0014427867 -0.0014569748 + 121430 -6247.1462 -6253.9118 6.7655853 3725.5446 621.15323 -10600.61 0 324.24481 -0.0012194502 -0.0012318023 + 121440 -6246.8079 -6253.3994 6.5914835 3720.4972 625.30777 -10599.204 0 315.90087 -0.00076404251 -0.00077931928 + 121450 -6246.429 -6252.8371 6.4081378 3712.464 630.36076 -10595.662 0 307.11392 -0.00017227992 -0.00019296927 + 121460 -6246.0504 -6252.2184 6.1680346 3703.9006 635.40244 -10591.521 0 295.60683 0.0004246207 0.00040064799 + 121470 -6245.697 -6251.5838 5.8867556 3697.364 639.51066 -10588.458 0 282.12636 0.00089589295 0.00087334509 + 121480 -6245.352 -6251.0369 5.6849311 3694.8119 641.95939 -10587.808 0 272.45379 0.0011452083 0.001126953 + 121490 -6244.9689 -6250.6914 5.7224823 3697.1263 642.38052 -10590.198 0 274.25346 0.0011314613 0.0011159227 + 121500 -6244.5101 -6250.5922 6.0821028 3703.9415 640.83214 -10595.366 0 291.48849 0.00087295798 0.00085570246 + 121510 -6243.9807 -6250.6873 6.7066135 3713.743 637.75616 -10602.186 0 321.41855 0.00043857331 0.00041657559 + 121520 -6243.4276 -6250.8764 7.4488004 3724.1861 633.84325 -10608.906 0 356.98831 -6.8964207e-05 -9.4352776e-05 + 121530 -6242.9046 -6251.0982 8.1935901 3732.5997 629.85203 -10613.55 0 392.68281 -0.00053471218 -0.00055901605 + 121540 -6242.4345 -6251.3731 8.9385105 3736.6259 626.44123 -10614.44 0 428.38358 -0.00085639079 -0.00087649197 + 121550 -6242.0114 -6251.7554 9.744042 3734.8732 624.06099 -10610.69 0 466.98916 -0.00096870122 -0.00098616936 + 121560 -6241.643 -6252.2337 10.590714 3727.3806 622.91476 -10602.529 0 507.56642 -0.00086008129 -0.00087975088 + 121570 -6241.3857 -6252.6766 11.290862 3715.6966 622.972 -10591.345 0 541.12148 -0.00057477178 -0.00059974114 + 121580 -6241.3213 -6252.8914 11.570135 3702.4928 624.00349 -10579.388 0 554.50577 -0.00019794023 -0.00022613705 + 121590 -6241.4888 -6252.7562 11.267412 3690.8355 625.6289 -10569.221 0 539.9976 0.00017058042 0.0001445231 + 121600 -6241.8404 -6252.3119 10.471515 3683.3806 627.38614 -10563.079 0 501.85375 0.00044297381 0.0004223316 + 121610 -6242.2698 -6251.7376 9.4677849 3681.7614 628.83215 -10562.331 0 453.74938 0.00056143422 0.00054393138 + 121620 -6242.6868 -6251.2361 8.5493265 3686.2967 629.66148 -10567.194 0 409.7317 0.00050596766 0.00048559969 + 121630 -6243.0664 -6250.9247 7.8583213 3696.0018 629.80425 -10576.731 0 376.61485 0.00029609778 0.00026843712 + 121640 -6243.438 -6250.8083 7.3703327 3708.8219 629.45846 -10589.089 0 353.2277 -1.084912e-05 -4.4695484e-05 + 121650 -6243.835 -6250.8377 7.0026976 3722.0414 629.03105 -10601.91 0 335.60856 -0.00032735801 -0.00036163974 + 121660 -6244.2527 -6250.9848 6.7321617 3732.8482 628.99907 -10612.832 0 322.64296 -0.00055378118 -0.00058305104 + 121670 -6244.6512 -6251.2602 6.6090486 3738.9999 629.7383 -10619.998 0 316.74269 -0.00060680206 -0.00063029054 + 121680 -6244.9965 -6251.6609 6.6643309 3739.4285 631.38036 -10622.47 0 319.39213 -0.00044939441 -0.00047060454 + 121690 -6245.2931 -6252.1233 6.8301572 3734.5434 633.74335 -10620.41 0 327.33946 -0.00010776093 -0.00013010997 + 121700 -6245.5724 -6252.5516 6.9792371 3726.0773 636.35499 -10614.984 0 334.4842 0.00033447482 0.00031092096 + 121710 -6245.8549 -6252.8898 7.0348935 3716.5372 638.56401 -10607.991 0 337.15157 0.00076177024 0.00073928443 + 121720 -6246.1323 -6253.1505 7.0182509 3708.494 639.71415 -10601.359 0 336.35396 0.0010595883 0.0010395698 + 121730 -6246.3828 -6253.3742 6.9913604 3703.9354 639.33307 -10596.643 0 335.06522 0.0011435863 0.0011250552 + 121740 -6246.5975 -6253.5737 6.9762248 3703.8106 637.28016 -10594.665 0 334.33984 0.00097983415 0.0009607437 + 121750 -6246.7871 -6253.7182 6.9311016 3707.8311 633.8092 -10595.359 0 332.17728 0.0005939949 0.0005734979 + 121760 -6246.9704 -6253.7614 6.7910104 3714.5694 629.52828 -10597.859 0 325.46332 6.7711787e-05 4.7171658e-05 + 121770 -6247.1557 -6253.6852 6.5294618 3721.8471 625.26778 -10600.8 0 312.92845 -0.00047850715 -0.00049655958 + 121780 -6247.3308 -6253.524 6.1932308 3727.3368 621.8904 -10602.751 0 296.81437 -0.0009136751 -0.00092781221 + 121790 -6247.4707 -6253.3511 5.8803746 3729.2329 620.09069 -10602.675 0 281.82055 -0.0011301482 -0.001141618 + 121800 -6247.5595 -6253.2307 5.671181 3726.8078 620.23011 -10600.269 0 271.79481 -0.0010740371 -0.0010859417 + 121810 -6247.6069 -6253.178 5.5710666 3720.6712 622.24313 -10596.092 0 266.99677 -0.00076217532 -0.00077665809 + 121820 -6247.6415 -6253.1693 5.5277925 3712.6156 625.63867 -10591.424 0 264.92283 -0.00027833563 -0.0002945602 + 121830 -6247.6822 -6253.1912 5.5090095 3705.088 629.61022 -10587.889 0 264.02265 0.00025107076 0.00023577224 + 121840 -6247.7198 -6253.2672 5.5474649 3700.4759 633.24399 -10586.987 0 265.86565 0.00069295401 0.00067985172 + 121850 -6247.7297 -6253.4207 5.6910286 3700.4445 635.77409 -10589.639 0 272.74602 0.00094287465 0.0009301719 + 121860 -6247.7038 -6253.6131 5.9093819 3705.4845 636.80019 -10595.898 0 283.21074 0.00095073887 0.0009354637 + 121870 -6247.6644 -6253.734 6.0696174 3714.7413 636.38477 -10604.86 0 290.89012 0.000732773 0.0007142287 + 121880 -6247.6446 -6253.671 6.0263958 3726.159 634.99271 -10614.823 0 288.8187 0.00036761981 0.00034856862 + 121890 -6247.6531 -6253.4032 5.7501581 3736.9569 633.3022 -10623.662 0 275.57984 -2.4910926e-05 -4.0795792e-05 + 121900 -6247.6624 -6253.0318 5.3693487 3744.3663 631.96732 -10629.365 0 257.32932 -0.00031957819 -0.00033145187 + 121910 -6247.6335 -6252.7175 5.0839957 3746.4271 631.42071 -10630.565 0 243.6536 -0.00042522496 -0.00043616831 + 121920 -6247.5501 -6252.5806 5.0305362 3742.5673 631.77039 -10626.918 0 241.09152 -0.00031299623 -0.00032736259 + 121930 -6247.4304 -6252.6417 5.2112499 3733.7589 632.79896 -10619.2 0 249.75234 -2.2687438e-05 -4.2218507e-05 + 121940 -6247.3094 -6252.8392 5.5298596 3722.215 634.04577 -10609.1 0 265.0219 0.00035323233 0.00033103215 + 121950 -6247.2072 -6253.0926 5.8854005 3710.7586 634.94481 -10598.796 0 282.06141 0.00069989983 0.00067976474 + 121960 -6247.1126 -6253.3533 6.240721 3702.0788 634.98834 -10590.421 0 299.09036 0.00091340914 0.00089843448 + 121970 -6246.994 -6253.6076 6.6135891 3698.0884 633.88201 -10585.578 0 316.9603 0.00092763294 0.00091684968 + 121980 -6246.8297 -6253.8397 7.0099968 3699.5176 631.65279 -10585.01 0 335.95838 0.00072935553 0.00071882513 + 121990 -6246.6309 -6254.0034 7.3724592 3705.7929 628.67484 -10588.471 0 353.32961 0.00036084736 0.00034722175 + 122000 -6246.4353 -6254.0353 7.5999475 3715.196 625.59567 -10594.827 0 364.23213 -8.9255253e-05 -0.00010596916 + 122010 -6246.2764 -6253.8987 7.6223489 3725.28 623.17562 -10602.354 0 365.30573 -0.00050596375 -0.0005228666 + 122020 -6246.1569 -6253.6116 7.4546651 3733.4864 622.08579 -10609.184 0 357.26938 -0.00077664506 -0.00079095211 + 122030 -6246.0509 -6253.2285 7.1775745 3737.828 622.72679 -10613.783 0 343.98964 -0.0008220244 -0.00083364007 + 122040 -6245.9283 -6252.7966 6.868302 3737.4363 625.12116 -10615.354 0 329.16757 -0.00061943504 -0.00063085162 + 122050 -6245.7769 -6252.3287 6.5517784 3732.7843 628.90321 -10614.016 0 313.99798 -0.00020966101 -0.00022360541 + 122060 -6245.6045 -6251.8189 6.2144067 3725.5109 633.40088 -10610.731 0 297.82924 0.00031494092 0.00029786366 + 122070 -6245.4228 -6251.2866 5.8637885 3717.9142 637.7843 -10606.985 0 281.02564 0.00083639134 0.00081811234 + 122080 -6245.2273 -6250.8094 5.5821323 3712.2919 641.24536 -10604.347 0 267.5271 0.0012422628 0.0012255043 + 122090 -6244.9895 -6250.5151 5.5255904 3710.3373 643.16807 -10604.02 0 264.81729 0.0014525505 0.0014384753 + 122100 -6244.6648 -6250.5256 5.8608384 3712.7456 643.25289 -10606.524 0 280.88426 0.0014355131 0.001422794 + 122110 -6244.2114 -6250.8897 6.6782486 3719.0823 641.57071 -10611.543 0 320.05914 0.0012108072 0.0011968015 + 122120 -6243.6109 -6251.5474 7.9365015 3727.8852 638.53966 -10617.972 0 380.36168 0.0008422203 0.00082495776 + 122130 -6242.8849 -6252.3482 9.4632592 3736.9664 634.83152 -10624.146 0 453.53248 0.00042280774 0.00040189063 + 122140 -6242.1026 -6253.0978 10.995237 3743.9049 631.22432 -10628.227 0 526.95343 5.4035481e-05 2.998199e-05 + 122150 -6241.3722 -6253.6037 12.231469 3746.6742 628.4288 -10628.707 0 586.20065 -0.00017848966 -0.00020510459 + 122160 -6240.8143 -6253.712 12.897656 3744.2378 626.92895 -10624.879 0 618.12806 -0.00022655751 -0.00025490674 + 122170 -6240.5187 -6253.3483 12.829586 3736.8931 626.87925 -10617.121 0 614.86573 -9.0571777e-05 -0.0001188788 + 122180 -6240.5057 -6252.5552 12.049472 3726.2248 628.08574 -10606.866 0 577.47829 0.00018319166 0.00015741704 + 122190 -6240.7188 -6251.4985 10.779773 3714.6922 630.07462 -10596.265 0 516.62721 0.00051699508 0.00049547104 + 122200 -6241.0561 -6250.4234 9.3672383 3704.993 632.23042 -10587.647 0 448.93062 0.00082232909 0.00080443125 + 122210 -6241.4235 -6249.5701 8.1466276 3699.3986 633.96805 -10582.937 0 390.4321 0.0010214144 0.0010040866 + 122220 -6241.7744 -6249.0856 7.3111319 3699.2297 634.89042 -10583.206 0 350.39046 0.0010651526 0.0010449533 + 122230 -6242.1174 -6248.9797 6.8623006 3704.571 634.88405 -10588.435 0 328.87995 0.00094465542 0.00092069008 + 122240 -6242.4862 -6249.1603 6.6740257 3714.2512 634.12471 -10597.536 0 319.85676 0.00069445035 0.00066951374 + 122250 -6242.8995 -6249.5229 6.6234107 3726.0982 632.99837 -10608.619 0 317.43101 0.00038549924 0.00036385443 + 122260 -6243.3415 -6250.021 6.6795449 3737.4544 631.97211 -10619.448 0 320.12127 0.00010730638 9.0827077e-05 + 122270 -6243.7813 -6250.6599 6.8785984 3745.8573 631.45962 -10627.977 0 329.66103 -5.7391034e-05 -7.0983215e-05 + 122280 -6244.2083 -6251.4355 7.2271767 3749.6789 631.71586 -10632.83 0 346.36686 -5.6970295e-05 -7.1995609e-05 + 122290 -6244.6458 -6252.2863 7.6404661 3748.507 632.77777 -10633.571 0 366.17401 0.00011460482 9.5671665e-05 + 122300 -6245.1307 -6253.1019 7.9711661 3743.159 634.45588 -10630.717 0 382.023 0.00041735084 0.00039593569 + 122310 -6245.6782 -6253.7718 8.0935539 3735.3717 636.3757 -10625.519 0 387.88852 0.0007772695 0.00075732035 + 122320 -6246.2618 -6254.2319 7.970106 3727.2976 638.06171 -10619.591 0 381.9722 0.0011059401 0.0010905076 + 122330 -6246.8243 -6254.4788 7.6545259 3720.9633 639.04862 -10614.491 0 366.84783 0.0013219706 0.0013105641 + 122340 -6247.3106 -6254.5454 7.2347936 3717.8162 638.99792 -10611.36 0 346.73191 0.001369225 0.0013580407 + 122350 -6247.6986 -6254.4619 6.7633551 3718.438 637.79318 -10610.693 0 324.13793 0.0012288022 0.0012137531 + 122360 -6248.0051 -6254.2393 6.2342149 3722.447 635.58721 -10612.273 0 298.77856 0.00092394981 0.00090415864 + 122370 -6248.2634 -6253.8934 5.6300509 3728.5898 632.78194 -10615.265 0 269.82363 0.00051755108 0.00049631665 + 122380 -6248.4912 -6253.4874 4.9961668 3735.028 629.93966 -10618.455 0 239.44434 0.00010091136 8.3062919e-05 + 122390 -6248.6766 -6253.1393 4.4627013 3739.8067 627.64796 -10620.594 0 213.87769 -0.00022678923 -0.0002390219 + 122400 -6248.7931 -6252.971 4.1778214 3741.4169 626.37664 -10620.765 0 200.22464 -0.00038504845 -0.0003939779 + 122410 -6248.8301 -6253.0316 4.2014653 3739.2752 626.36502 -10618.672 0 201.35779 -0.00033631099 -0.00034676739 + 122420 -6248.8081 -6253.2619 4.4538572 3733.9315 627.5649 -10614.758 0 213.45383 -9.8232216e-05 -0.00011345092 + 122430 -6248.7668 -6253.5335 4.7666855 3726.9142 629.65062 -10610.098 0 228.44631 0.00026153682 0.00024238629 + 122440 -6248.7357 -6253.7291 4.9934694 3720.2733 632.09676 -10606.099 0 239.31507 0.00064593688 0.00062654049 + 122450 -6248.713 -6253.8022 5.0891934 3715.9933 634.31046 -10604.106 0 243.9027 0.00095628719 0.00093964911 + 122460 -6248.673 -6253.7781 5.1051061 3715.46 635.78704 -10605.025 0 244.66533 0.0011178964 0.0011037082 + 122470 -6248.5914 -6253.7098 5.1183663 3719.1098 636.24517 -10609.065 0 245.30083 0.0010972606 0.0010823949 + 122480 -6248.47 -6253.6337 5.1636787 3726.3132 635.70113 -10615.648 0 247.47246 0.00090889037 0.00089047019 + 122490 -6248.3346 -6253.5607 5.2261226 3735.4911 634.46 -10623.512 0 250.46512 0.00061226796 0.00059045554 + 122500 -6248.21 -6253.5057 5.2957072 3744.4471 633.0264 -10630.979 0 253.80001 0.00029928745 0.00027704766 + 122510 -6248.094 -6253.5093 5.415318 3750.8898 631.95887 -10636.358 0 259.53242 7.1872425e-05 5.1902017e-05 + 122520 -6247.9607 -6253.6118 5.6511066 3753.0629 631.70563 -10638.38 0 270.83274 1.2038108e-05 -5.8184636e-06 + 122530 -6247.7907 -6253.7963 6.0055538 3750.3011 632.46223 -10636.56 0 287.81983 0.00015294812 0.00013497868 + 122540 -6247.5948 -6253.9727 6.3778983 3743.2843 634.08867 -10631.346 0 305.66467 0.00046377235 0.00044447159 + 122550 -6247.4029 -6254.0384 6.6355361 3733.8629 636.11764 -10624.019 0 318.01212 0.0008570705 0.00083779192 + 122560 -6247.2302 -6253.9603 6.7301073 3724.5168 637.87094 -10616.348 0 322.54451 0.0012163242 0.0011991181 + 122570 -6247.0623 -6253.7932 6.7308652 3717.6565 638.6671 -10610.117 0 322.58083 0.0014316481 0.0014162594 + 122580 -6246.8769 -6253.6107 6.7337689 3714.9897 638.05854 -10606.659 0 322.71999 0.0014307727 0.0014143182 + 122590 -6246.6765 -6253.4179 6.7413382 3717.0921 636.00964 -10606.52 0 323.08275 0.001198509 0.0011786483 + 122600 -6246.4937 -6253.1395 6.6458142 3723.2472 632.93924 -10609.326 0 318.50471 0.00078315724 0.00076140698 + 122610 -6246.3562 -6252.703 6.3467192 3731.5963 629.60329 -10613.903 0 304.17039 0.00028840227 0.00026947295 + 122620 -6246.2481 -6252.137 5.8889205 3739.6239 626.86228 -10618.623 0 282.23011 -0.00015159751 -0.00016461508 + 122630 -6246.1118 -6251.58 5.4681531 3744.9078 625.4276 -10621.915 0 262.06458 -0.00041123747 -0.00042102008 + 122640 -6245.8975 -6251.1813 5.2837929 3745.9057 625.67642 -10622.763 0 253.229 -0.00041391645 -0.00042739089 + 122650 -6245.6071 -6250.9981 5.3910112 3742.4514 627.57633 -10621.026 0 258.36751 -0.00015607965 -0.00017801407 + 122660 -6245.2851 -6250.9929 5.7078096 3735.75 630.71301 -10617.456 0 273.55026 0.00029569065 0.00026769873 + 122670 -6244.9624 -6251.1229 6.1604958 3727.9207 634.39745 -10613.441 0 295.24553 0.00083037265 0.00080429485 + 122680 -6244.6057 -6251.4136 6.8079229 3721.3422 637.82792 -10610.584 0 326.27386 0.0013266217 0.0013089237 + 122690 -6244.1202 -6251.9325 7.8122704 3718.0551 640.27737 -10610.265 0 374.40783 0.0016814258 0.0016706852 + 122700 -6243.4147 -6252.679 9.264229 3719.3361 641.26913 -10613.284 0 443.99383 0.001827394 0.0018142639 + 122710 -6242.4929 -6253.4847 10.991773 3725.4224 640.70172 -10619.609 0 526.78744 0.0017410593 0.0017153497 + 122720 -6241.5045 -6254.0278 12.523243 3735.3457 638.8861 -10628.26 0 600.18405 0.0014477131 0.0014076028 + 122730 -6240.6833 -6253.9941 13.310761 3746.9384 636.46601 -10637.398 0 637.92636 0.0010240436 0.00097925261 + 122740 -6240.1858 -6253.2938 13.108016 3757.1774 634.22235 -10644.694 0 628.20968 0.00059048927 0.00055467872 + 122750 -6239.9819 -6252.15 12.168129 3762.9766 632.82232 -10647.949 0 583.16501 0.00028156873 0.0002595887 + 122760 -6239.9224 -6250.944 11.02165 3762.2612 632.61701 -10645.822 0 528.21933 0.00019649237 0.00017938867 + 122770 -6239.9084 -6249.9418 10.03336 3754.8364 633.56431 -10638.342 0 480.85491 0.00035544685 0.00032929275 + 122780 -6239.9718 -6249.1653 9.1935119 3742.5412 635.2814 -10626.988 0 440.60468 0.00069152739 0.00065106683 + 122790 -6240.1985 -6248.5163 8.3178381 3728.5764 637.18124 -10614.274 0 398.63747 0.0010840505 0.0010370103 + 122800 -6240.6075 -6247.9796 7.372089 3716.4007 638.64362 -10603.024 0 353.31187 0.0014094996 0.0013682921 + 122810 -6241.1241 -6247.6847 6.5606036 3708.7441 639.18058 -10595.609 0 314.42094 0.0015802652 0.001550869 + 122820 -6241.6577 -6247.796 6.1383326 3707.0508 638.55957 -10593.406 0 294.18334 0.0015592166 0.0015379083 + 122830 -6242.1863 -6248.3708 6.1845615 3711.3409 636.85668 -10596.568 0 296.39889 0.0013572204 0.0013363337 + 122840 -6242.7631 -6249.316 6.5529238 3720.3542 634.43079 -10604.101 0 314.05288 0.0010247248 0.0010003557 + 122850 -6243.4519 -6250.4592 7.0073193 3731.8838 631.82853 -10614.172 0 335.83006 0.00064115317 0.00061561321 + 122860 -6244.2588 -6251.6505 7.3917452 3743.2806 629.64539 -10624.576 0 354.25391 0.00029934356 0.00027730346 + 122870 -6245.1215 -6252.8027 7.6811162 3752.0811 628.38025 -10633.264 0 368.12219 8.3631811e-05 6.6826615e-05 + 122880 -6245.9566 -6253.8535 7.89693 3756.61 628.32252 -10638.786 0 378.4652 4.687973e-05 3.2659787e-05 + 122890 -6246.7098 -6254.7131 8.0032759 3756.3605 629.49624 -10640.57 0 383.56189 0.00019577858 0.00018018376 + 122900 -6247.3702 -6255.267 7.8967901 3752.0258 631.66486 -10638.958 0 378.45849 0.00049066088 0.00047234329 + 122910 -6247.946 -6255.4393 7.4932279 3745.2004 634.38692 -10635.027 0 359.11753 0.00085889723 0.00084007839 + 122920 -6248.4369 -6255.2548 6.8178912 3737.89 637.10928 -10630.254 0 326.7516 0.0012152786 0.0011992696 + 122930 -6248.8276 -6254.8397 6.0121355 3732.0022 639.28143 -10626.123 0 288.13527 0.0014817694 0.0014697719 + 122940 -6249.1052 -6254.3576 5.2523957 3728.9394 640.47058 -10623.768 0 251.72427 0.0016022212 0.0015923769 + 122950 -6249.2782 -6253.9312 4.6529585 3729.3408 640.4537 -10623.726 0 222.99588 0.0015516126 0.0015408884 + 122960 -6249.3783 -6253.6067 4.2284713 3732.9784 639.26534 -10625.85 0 202.65207 0.0013407564 0.001327672 + 122970 -6249.4408 -6253.3773 3.9365396 3738.811 637.18795 -10629.376 0 188.66106 0.0010159253 0.001001477 + 122980 -6249.4819 -6253.2342 3.7522371 3745.2114 634.68562 -10633.131 0 179.82825 0.00065108599 0.00063700052 + 122990 -6249.4921 -6253.19 3.697967 3750.3648 632.2975 -10635.852 0 177.22733 0.00033143167 0.00031766378 + 123000 -6249.4548 -6253.2526 3.7977429 3752.76 630.51738 -10636.53 0 182.00915 0.00013134885 0.00011576358 + 123010 -6249.3731 -6253.3852 4.0120971 3751.6178 629.68596 -10634.689 0 192.28221 9.4597346e-05 7.5513871e-05 + 123020 -6249.2726 -6253.5133 4.240623 3747.0974 629.91642 -10630.527 0 203.23445 0.00022438762 0.00020326089 + 123030 -6249.1776 -6253.5817 4.4041211 3740.2313 631.06786 -10624.881 0 211.07019 0.00048536582 0.0004663939 + 123040 -6249.083 -6253.6056 4.5226664 3732.6589 632.77553 -10619.04 0 216.75155 0.00081359513 0.00080024463 + 123050 -6248.9522 -6253.6588 4.70658 3726.2667 634.53634 -10614.462 0 225.56572 0.0011298474 0.0011214974 + 123060 -6248.744 -6253.8093 5.065325 3722.794 635.8355 -10612.439 0 242.7588 0.0013547459 0.001346518 + 123070 -6248.445 -6254.054 5.6090137 3723.4329 636.28846 -10613.775 0 268.81541 0.0014261741 0.0014122513 + 123080 -6248.0864 -6254.3021 6.2156417 3728.4688 635.76323 -10618.534 0 297.88843 0.0013174906 0.0012955587 + 123090 -6247.7296 -6254.4229 6.6933156 3737.06 634.44368 -10625.927 0 320.78124 0.0010515826 0.0010250369 + 123100 -6247.4245 -6254.3324 6.907918 3747.2829 632.80187 -10634.417 0 331.06619 0.00070349442 0.00067921523 + 123110 -6247.1713 -6254.0566 6.8852695 3756.5343 631.47338 -10642.064 0 329.98075 0.00038524944 0.0003680565 + 123120 -6246.9233 -6253.7104 6.7870444 3762.2604 631.0663 -10647.037 0 325.27325 0.00021236596 0.00020079416 + 123130 -6246.6372 -6253.3976 6.7604243 3762.793 631.96116 -10648.152 0 323.99746 0.00026202557 0.00024982468 + 123140 -6246.321 -6253.1247 6.8036967 3757.9438 634.16444 -10645.233 0 326.07132 0.00054150456 0.0005238492 + 123150 -6246.0266 -6252.8199 6.7932738 3749.0802 637.26633 -10639.166 0 325.5718 0.00098310014 0.00096117494 + 123160 -6245.7931 -6252.4331 6.6399946 3738.67 640.52906 -10631.632 0 318.2258 0.0014672899 0.0014464265 + 123170 -6245.6044 -6252.0001 6.39576 3729.532 643.09029 -10624.622 0 306.5207 0.0018609177 0.001844502 + 123180 -6245.4058 -6251.6062 6.2004051 3724.0785 644.21817 -10619.903 0 297.1582 0.0020540677 0.0020397291 + 123190 -6245.1585 -6251.2989 6.1403898 3723.7251 643.53111 -10618.555 0 294.28193 0.0019867375 0.0019685513 + 123200 -6244.877 -6251.0469 6.1699119 3728.5426 641.1113 -10620.701 0 295.6968 0.0016637033 0.0016381722 + 123210 -6244.6164 -6250.7887 6.1723238 3737.1902 637.48267 -10625.462 0 295.81239 0.0011570546 0.0011272682 + 123220 -6244.4191 -6250.5307 6.1116121 3747.1823 633.4679 -10631.181 0 292.90274 0.00059378415 0.00056762907 + 123230 -6244.2653 -6250.4027 6.1374393 3755.5067 629.97313 -10635.883 0 294.14053 0.00012637722 0.00010968654 + 123240 -6244.0754 -6250.5985 6.5231118 3759.5068 627.76447 -10637.87 0 312.62412 -0.00010995026 -0.00011951597 + 123250 -6243.7731 -6251.2188 7.4457081 3757.7817 627.29096 -10636.292 0 356.84011 -4.1426357e-05 -5.3655587e-05 + 123260 -6243.3648 -6252.1426 8.7778447 3750.7483 628.58373 -10631.475 0 420.68357 0.00031593439 0.00029172044 + 123270 -6242.9612 -6253.0569 10.095733 3740.5677 631.24523 -10624.87 0 483.84417 0.0008583944 0.0008215659 + 123280 -6242.7084 -6253.6445 10.93605 3730.4158 634.54188 -10618.602 0 524.1169 0.0014293564 0.0013885796 + 123290 -6242.6838 -6253.7735 11.089699 3723.4084 637.60423 -10614.786 0 531.48061 0.0018728015 0.0018384362 + 123300 -6242.8575 -6253.5339 10.676352 3721.6392 639.69327 -10614.866 0 511.67072 0.0020818559 0.0020576478 + 123310 -6243.1498 -6253.1181 9.9683394 3725.6506 640.43734 -10619.206 0 477.73876 0.0020248753 0.0020063761 + 123320 -6243.5103 -6252.6709 9.1606532 3734.4037 639.93537 -10627.01 0 439.0299 0.0017453253 0.0017253309 + 123330 -6243.9436 -6252.2274 8.2837937 3745.6494 638.67962 -10636.556 0 397.00588 0.0013415806 0.0013168698 + 123340 -6244.4691 -6251.7634 7.2943104 3756.5539 637.33593 -10645.653 0 349.58428 0.00093558216 0.00090906583 + 123350 -6245.0651 -6251.2927 6.2275614 3764.4362 636.48214 -10652.211 0 298.45969 0.00063880073 0.000615693 + 123360 -6245.6597 -6250.9131 5.2534403 3767.4649 636.4154 -10654.793 0 251.77434 0.00052291195 0.00050499572 + 123370 -6246.1808 -6250.7542 4.5734414 3765.1346 637.09487 -10652.984 0 219.18498 0.00060211079 0.00058596212 + 123380 -6246.6117 -6250.8785 4.2668778 3758.3531 638.21258 -10647.444 0 204.49273 0.00083293621 0.00081377896 + 123390 -6246.9928 -6251.2411 4.2483401 3749.0904 639.33016 -10639.662 0 203.6043 0.0011324427 0.001109366 + 123400 -6247.3729 -6251.7438 4.3708525 3739.7326 640.01539 -10631.492 0 209.47578 0.0014073866 0.0013845386 + 123410 -6247.7626 -6252.3245 4.5619212 3732.4103 639.94386 -10624.679 0 218.63286 0.0015821848 0.0015648717 + 123420 -6248.1269 -6252.9908 4.863873 3728.5357 638.96259 -10620.489 0 233.10408 0.0016156232 0.0016050568 + 123430 -6248.4179 -6253.7666 5.3486878 3728.6318 637.12282 -10619.521 0 256.33913 0.0015035638 0.0014950594 + 123440 -6248.6189 -6254.607 5.9880465 3732.3843 634.68271 -10621.674 0 286.98079 0.0012722282 0.0012585882 + 123450 -6248.764 -6255.3621 6.5981237 3738.7918 632.07222 -10626.226 0 316.21911 0.00096935377 0.00094674819 + 123460 -6248.9152 -6255.837 6.9217597 3746.3493 629.81388 -10632 0 331.72956 0.00065724921 0.00062862191 + 123470 -6249.1117 -6255.907 6.7953307 3753.2903 628.40751 -10637.605 0 325.67037 0.00040570597 0.00037861707 + 123480 -6249.3348 -6255.5988 6.2639864 3757.9398 628.20701 -10641.746 0 300.20538 0.00027979572 0.00026043573 + 123490 -6249.5248 -6255.0698 5.5449996 3759.1552 629.32645 -10643.551 0 265.7475 0.00032161734 0.0003102126 + 123500 -6249.6315 -6254.5058 4.8742797 3756.7067 631.60408 -10642.817 0 233.60283 0.00053289256 0.00052435647 + 123510 -6249.6523 -6254.0228 4.3704489 3751.4089 634.63262 -10640.064 0 209.45644 0.0008688958 0.00085769698 + 123520 -6249.6268 -6253.6449 4.0181191 3744.8989 637.84541 -10636.389 0 192.57081 0.0012492773 0.0012339175 + 123530 -6249.598 -6253.3527 3.7546568 3739.1342 640.63659 -10633.123 0 179.94422 0.0015818118 0.0015651807 + 123540 -6249.5783 -6253.1395 3.5611313 3735.8083 642.48829 -10631.436 0 170.66939 0.0017885174 0.0017744491 + 123550 -6249.5458 -6253.0216 3.4758049 3735.8968 643.07749 -10631.996 0 166.58007 0.0018243094 0.0018139348 + 123560 -6249.47 -6253.0067 3.5367457 3739.4438 642.34084 -10634.791 0 169.5007 0.0016845345 0.0016756669 + 123570 -6249.3397 -6253.0677 3.728063 3745.5853 640.48426 -10639.137 0 178.6697 0.0014035052 0.001393077 + 123580 -6249.1686 -6253.158 3.9894317 3752.7548 637.93481 -10643.848 0 191.19595 0.0010472254 0.0010340688 + 123590 -6248.9777 -6253.2536 4.2758688 3759.0297 635.24475 -10647.528 0 204.92362 0.00070107219 0.00068651008 + 123600 -6248.7744 -6253.3771 4.6026941 3762.5834 632.96908 -10648.93 0 220.58693 0.00045184449 0.00043796207 + 123610 -6248.5469 -6253.5747 5.0278208 3762.1732 631.54501 -10647.293 0 240.96138 0.00036592499 0.00035346145 + 123620 -6248.278 -6253.8641 5.5861271 3757.5407 631.19957 -10642.604 0 267.71856 0.00046939878 0.00045713581 + 123630 -6247.9644 -6254.1998 6.2353409 3749.5833 631.9026 -10635.686 0 298.83252 0.00073777051 0.00072359369 + 123640 -6247.6242 -6254.4845 6.8602785 3740.2025 633.37388 -10628.061 0 328.78304 0.0011003405 0.0010826906 + 123650 -6247.2889 -6254.6172 7.328321 3731.8367 635.14822 -10621.602 0 351.21426 0.0014587042 0.001437244 + 123660 -6246.9897 -6254.5367 7.5470447 3726.7997 636.69419 -10618.031 0 361.69673 0.0017136285 0.0016891647 + 123670 -6246.749 -6254.2357 7.4866187 3726.6166 637.56453 -10618.417 0 358.80078 0.0017925359 0.0017668874 + 123680 -6246.5764 -6253.7533 7.1768991 3731.5533 637.53564 -10622.842 0 343.95727 0.0016708372 0.0016466142 + 123690 -6246.4615 -6253.1694 6.707925 3740.4857 636.68643 -10630.342 0 321.4814 0.0013817561 0.0013611872 + 123700 -6246.3703 -6252.5977 6.2274346 3751.1645 635.38275 -10639.145 0 298.45361 0.0010101495 0.00099293544 + 123710 -6246.2576 -6252.1537 5.8960781 3760.8288 634.16736 -10647.15 0 282.57314 0.00066892611 0.00065106331 + 123720 -6246.0986 -6251.8926 5.794004 3766.9911 633.5905 -10652.474 0 277.68118 0.00046389718 0.00043977289 + 123730 -6245.9143 -6251.7637 5.8494126 3768.134 634.0347 -10653.932 0 280.33667 0.0004603555 0.0004275931 + 123740 -6245.7605 -6251.6422 5.8817561 3764.0775 635.58623 -10651.306 0 281.88675 0.00066526699 0.00062812639 + 123750 -6245.6776 -6251.4361 5.7584836 3755.9328 637.98991 -10645.359 0 275.97885 0.001030205 0.00099737129 + 123760 -6245.6455 -6251.178 5.532499 3745.7427 640.70055 -10637.621 0 265.1484 0.0014684719 0.0014461493 + 123770 -6245.5921 -6251.0111 5.4189881 3735.9918 643.01627 -10630.019 0 259.70831 0.0018755489 0.0018620361 + 123780 -6245.453 -6251.0774 5.6243772 3729.0988 644.25682 -10624.433 0 269.55171 0.0021481829 0.0021352923 + 123790 -6245.2256 -6251.4139 6.1882832 3726.8997 643.94332 -10622.257 0 296.57726 0.0022051212 0.0021853104 + 123800 -6244.9695 -6251.945 6.9754631 3730.1426 641.94209 -10624.03 0 334.30333 0.0020112946 0.0019840034 + 123810 -6244.7563 -6252.5577 7.8013295 3738.1374 638.54146 -10629.236 0 373.88348 0.001598088 0.0015696669 + 123820 -6244.6158 -6253.1712 8.555452 3748.7801 634.4329 -10636.384 0 410.02526 0.0010658884 0.001043447 + 123830 -6244.5279 -6253.7329 9.2050064 3759.0807 630.57757 -10643.391 0 441.15555 0.00055990414 0.00054489908 + 123840 -6244.4681 -6254.1601 9.6919834 3766.0747 627.96707 -10648.202 0 464.49423 0.00022451978 0.0002119973 + 123850 -6244.4548 -6254.3149 9.8601636 3767.7815 627.32864 -10649.425 0 472.55436 0.00015477175 0.00013865791 + 123860 -6244.5449 -6254.0722 9.5272973 3763.8197 628.86893 -10646.761 0 456.60154 0.00036592846 0.00034493447 + 123870 -6244.7787 -6253.436 8.6572716 3755.4653 632.1692 -10641.07 0 414.90503 0.0007922595 0.00077067966 + 123880 -6245.1342 -6252.5915 7.4572968 3745.1868 636.30323 -10634.081 0 357.3955 0.0013115095 0.0012945944 + 123890 -6245.5407 -6251.8234 6.2826862 3735.8851 640.14756 -10627.856 0 301.10158 0.0017825049 0.0017713612 + 123900 -6245.9364 -6251.3561 5.4196793 3730.0953 642.75316 -10624.205 0 259.74144 0.0020835304 0.002074342 + 123910 -6246.3106 -6251.2409 4.9303827 3729.3386 643.62212 -10624.202 0 236.2916 0.0021433347 0.0021309956 + 123920 -6246.6961 -6251.3727 4.6766166 3733.7464 642.79291 -10627.912 0 224.12971 0.0019585409 0.0019408306 + 123930 -6247.1264 -6251.6029 4.476466 3742.0478 640.73674 -10634.387 0 214.53737 0.0015919581 0.00157073 + 123940 -6247.6002 -6251.8487 4.2484995 3751.9527 638.1459 -10641.947 0 203.61194 0.0011511091 0.0011302961 + 123950 -6248.0837 -6252.1272 4.0434866 3760.8217 635.7146 -10648.663 0 193.78657 0.00075495592 0.00073763554 + 123960 -6248.5368 -6252.5145 3.9777119 3766.3937 633.97904 -10652.887 0 190.63427 0.00050153723 0.0004881319 + 123970 -6248.9355 -6253.0731 4.1376192 3767.3526 633.23294 -10653.659 0 198.29793 0.00044545528 0.00043388611 + 123980 -6249.2787 -6253.7894 4.5106244 3763.6128 633.50385 -10650.906 0 216.17443 0.00058770468 0.00057526331 + 123990 -6249.5829 -6254.5596 4.9767553 3756.2882 634.57312 -10645.421 0 238.51404 0.00087801348 0.00086361244 + 124000 -6249.866 -6255.2375 5.3715015 3747.3591 636.0338 -10638.63 0 257.43249 0.0012296123 0.0012144701 + 124010 -6250.1305 -6255.709 5.578491 3739.1319 637.38798 -10632.229 0 267.35259 0.0015434226 0.0015294468 + 124020 -6250.3593 -6255.9364 5.5771616 3733.6507 638.17527 -10627.762 0 267.28888 0.0017344455 0.001721941 + 124030 -6250.5323 -6255.943 5.4106859 3732.2189 638.10391 -10626.266 0 259.31043 0.0017524191 0.0017396291 + 124040 -6250.6484 -6255.7672 5.1187992 3735.1204 637.14191 -10628.03 0 245.32158 0.0015923926 0.0015775146 + 124050 -6250.7286 -6255.4399 4.7113229 3741.5685 635.53203 -10632.54 0 225.79303 0.0012948799 0.0012784795 + 124060 -6250.7963 -6255.0044 4.2081225 3749.8855 633.72057 -10638.61 0 201.67684 0.00093657724 0.00092165295 + 124070 -6250.8526 -6254.5461 3.6935002 3757.9047 632.22367 -10644.674 0 177.01325 0.00061231361 0.00060151855 + 124080 -6250.8729 -6254.1823 3.3093814 3763.5337 631.47796 -10649.194 0 158.60413 0.00041024467 0.00040281153 + 124090 -6250.8291 -6254 3.1709359 3765.3356 631.72415 -10651.06 0 151.96904 0.00038624081 0.00037783627 + 124100 -6250.7188 -6253.9913 3.2725553 3762.9349 632.95275 -10649.879 0 156.83921 0.00054667619 0.000532826 + 124110 -6250.574 -6254.0493 3.4753522 3757.0961 634.9162 -10646.062 0 166.55838 0.00084725589 0.00082750477 + 124120 -6250.4383 -6254.0424 3.6040955 3749.4536 637.19285 -10640.689 0 172.72848 0.0012086734 0.0011875766 + 124130 -6250.3291 -6253.9141 3.5849586 3742.0128 639.28227 -10635.209 0 171.81133 0.0015417337 0.0015253125 + 124140 -6250.2184 -6253.7275 3.5090786 3736.6244 640.71102 -10631.063 0 168.17474 0.0017706739 0.0017611184 + 124150 -6250.053 -6253.6133 3.5603071 3734.5896 641.1319 -10629.335 0 170.62989 0.0018468807 0.0018403082 + 124160 -6249.8005 -6253.6637 3.8632163 3736.4392 640.40205 -10630.505 0 185.147 0.0017533618 0.0017430639 + 124170 -6249.4805 -6253.8643 4.3838307 3741.8341 638.6274 -10634.326 0 210.09776 0.0015059013 0.0014884583 + 124180 -6249.1498 -6254.1213 4.9715229 3749.558 636.16167 -10639.841 0 238.26327 0.0011545446 0.0011331024 + 124190 -6248.8518 -6254.3484 5.4966267 3757.672 633.55109 -10645.572 0 263.42919 0.00078137049 0.00076267631 + 124200 -6248.5801 -6254.5211 5.9409879 3763.9293 631.42379 -10649.874 0 284.72547 0.00048624588 0.00047412839 + 124210 -6248.2955 -6254.6444 6.3488451 3766.4251 630.33777 -10651.407 0 304.27228 0.00035827377 0.00035008512 + 124220 -6247.9819 -6254.6861 6.7042353 3764.2535 630.62101 -10649.561 0 321.30458 0.00044327022 0.00043291727 + 124230 -6247.6765 -6254.5675 6.8909916 3757.8635 632.25345 -10644.684 0 330.25498 0.00072465479 0.00070897784 + 124240 -6247.4393 -6254.238 6.7986512 3748.9338 634.84305 -10638.015 0 325.82951 0.001128639 0.0011104568 + 124250 -6247.2936 -6253.7556 6.4620855 3739.8426 637.7238 -10631.322 0 309.6994 0.0015496532 0.0015345169 + 124260 -6247.2028 -6253.274 6.0711607 3732.9813 640.15436 -10626.41 0 290.96409 0.0018817736 0.001872143 + 124270 -6247.106 -6252.93 5.8239616 3730.1559 641.54494 -10624.631 0 279.11692 0.0020441276 0.0020369942 + 124280 -6246.9707 -6252.7339 5.7632232 3732.188 641.62447 -10626.546 0 276.20599 0.0019970791 0.0019870452 + 124290 -6246.8141 -6252.565 5.7508596 3738.7254 640.49115 -10631.782 0 275.61346 0.0017506139 0.0017349628 + 124300 -6246.6771 -6252.2789 5.6017848 3748.2736 638.54478 -10639.097 0 268.46896 0.0013642454 0.001345078 + 124310 -6246.581 -6251.8372 5.2562452 3758.4872 636.34636 -10646.671 0 251.90876 0.00093536876 0.00091717833 + 124320 -6246.5074 -6251.3535 4.8461869 3766.7195 634.46463 -10652.538 0 232.25647 0.000575806 0.00056120262 + 124330 -6246.4156 -6251.0301 4.6144463 3770.7191 633.35052 -10655.1 0 221.15016 0.00038236424 0.00036992411 + 124340 -6246.2752 -6251.0401 4.7649118 3769.2654 633.25159 -10653.557 0 228.36131 0.00041060583 0.00039641931 + 124350 -6246.085 -6251.4373 5.3522885 3762.5414 634.16513 -10648.144 0 256.5117 0.00065940169 0.00064064927 + 124360 -6245.871 -6252.1399 6.2688924 3752.1239 635.83297 -10640.097 0 300.4405 0.0010700315 0.0010474628 + 124370 -6245.6663 -6252.9827 7.316367 3740.5906 637.78768 -10631.361 0 350.64136 0.0015400164 0.0015172004 + 124380 -6245.4914 -6253.7915 8.3001144 3730.8552 639.45499 -10624.102 0 397.78805 0.001948361 0.0019282738 + 124390 -6245.3506 -6254.4292 9.0785387 3725.4187 640.30116 -10620.149 0 435.09452 0.0021858991 0.0021678892 + 124400 -6245.2502 -6254.7994 9.5492598 3725.7315 639.99273 -10620.524 0 457.65411 0.0021835476 0.0021636604 + 124410 -6245.215 -6254.8346 9.6196187 3731.8096 638.52036 -10625.165 0 461.0261 0.0019323014 0.0019070291 + 124420 -6245.2818 -6254.5069 9.2251054 3742.1815 636.23706 -10632.925 0 442.11881 0.0014900885 0.0014602275 + 124430 -6245.4641 -6253.8672 8.40313 3754.198 633.78155 -10641.847 0 402.72514 0.00097172046 0.00094240233 + 124440 -6245.7245 -6253.0699 7.3454061 3764.6835 631.90041 -10649.654 0 352.03307 0.00052075811 0.00049713594 + 124450 -6245.9888 -6252.3282 6.3393884 3770.8136 631.22714 -10654.369 0 303.81906 0.00026821879 0.00025084491 + 124460 -6246.1945 -6251.809 5.6144968 3770.9621 632.09238 -10654.864 0 269.07819 0.00029110403 0.00027558319 + 124470 -6246.3298 -6251.5503 5.2204892 3765.206 634.41883 -10651.175 0 250.19513 0.00058697024 0.00056807842 + 124480 -6246.429 -6251.4696 5.0405738 3755.2871 637.72229 -10644.479 0 241.57258 0.0010745016 0.0010507218 + 124490 -6246.5374 -6251.453 4.9156248 3744.0579 641.21628 -10636.727 0 235.58432 0.0016186169 0.0015932686 + 124500 -6246.6753 -6251.4504 4.7750815 3734.6317 644.00003 -10630.082 0 228.8487 0.0020700788 0.0020485802 + 124510 -6246.8262 -6251.5139 4.6876359 3729.5191 645.28965 -10626.323 0 224.65781 0.0023067823 0.0022924529 + 124520 -6246.9527 -6251.7603 4.8076381 3729.9942 644.63579 -10626.39 0 230.40899 0.0022652355 0.0022567591 + 124530 -6247.0273 -6252.281 5.2536878 3735.827 642.06721 -10630.175 0 251.7862 0.0019548357 0.0019472249 + 124540 -6247.0598 -6253.0565 5.9966387 3745.3985 638.11434 -10636.569 0 287.39258 0.0014533083 0.0014417398 + 124550 -6247.1008 -6253.9369 6.836088 3756.1249 633.69536 -10643.757 0 327.6237 0.00088662915 0.00087020573 + 124560 -6247.2156 -6254.7072 7.4916062 3765.0923 629.88372 -10649.683 0 359.0398 0.00039861378 0.00038081036 + 124570 -6247.4448 -6255.1932 7.7483958 3769.797 627.61391 -10652.604 0 371.3466 0.00011507126 0.00010028262 + 124580 -6247.7838 -6255.333 7.5491685 3768.8564 627.41049 -10651.6 0 361.79851 0.00010865162 9.8016635e-05 + 124590 -6248.1967 -6255.1733 6.9765568 3762.4797 629.23058 -10646.884 0 334.35575 0.0003745738 0.00036517155 + 124600 -6248.646 -6254.8205 6.1744553 3752.4711 632.48156 -10639.773 0 295.91454 0.00082931938 0.00081737483 + 124610 -6249.1057 -6254.3965 5.2908058 3741.6814 636.21802 -10632.296 0 253.5651 0.0013374101 0.0013219909 + 124620 -6249.5554 -6254.018 4.4626198 3733.0897 639.44945 -10626.557 0 213.87378 0.0017569635 0.0017405444 + 124630 -6249.9733 -6253.7807 3.8074001 3728.9025 641.43805 -10624.121 0 182.47198 0.0019840066 0.0019699082 + 124640 -6250.3379 -6253.7372 3.3993119 3730.0073 641.87506 -10625.62 0 162.9141 0.0019779712 0.0019674769 + 124650 -6250.6347 -6253.8796 3.2449029 3735.8923 640.89403 -10630.666 0 155.51396 0.0017631012 0.001754583 + 124660 -6250.862 -6254.1411 3.279063 3744.9374 638.9556 -10638.034 0 157.1511 0.0014116817 0.0014020023 + 124670 -6251.033 -6254.4225 3.3895674 3754.905 636.67235 -10646 0 162.44709 0.0010191712 0.0010060821 + 124680 -6251.17 -6254.6368 3.4667991 3763.4797 634.63665 -10652.753 0 166.14846 0.000679919 0.00066369038 + 124690 -6251.2918 -6254.7505 3.4587787 3768.7519 633.29103 -10656.794 0 165.76408 0.0004682676 0.00045138261 + 124700 -6251.402 -6254.7987 3.3966979 3769.5868 632.85591 -10657.241 0 162.78882 0.0004259848 0.00041122109 + 124710 -6251.4895 -6254.8575 3.368003 3765.8442 633.31193 -10654.014 0 161.4136 0.00055544724 0.00054395422 + 124720 -6251.5384 -6254.9922 3.4537854 3758.416 634.42626 -10647.834 0 165.52478 0.00081911421 0.00080994512 + 124730 -6251.5401 -6255.2166 3.6764897 3749.0468 635.81464 -10640.078 0 176.19802 0.0011470701 0.0011382099 + 124740 -6251.4958 -6255.4873 3.9914613 3739.9456 637.03378 -10632.467 0 191.29322 0.0014531129 0.0014428505 + 124750 -6251.4127 -6255.7289 4.3161712 3733.2607 637.69234 -10626.682 0 206.85514 0.0016562859 0.0016439075 + 124760 -6251.2991 -6255.8657 4.5665784 3730.553 637.55643 -10623.975 0 218.85606 0.0017017949 0.0016875639 + 124770 -6251.163 -6255.8451 4.682083 3732.4083 636.61736 -10624.871 0 224.39169 0.0015753164 0.0015602144 + 124780 -6251.0107 -6255.654 4.6433444 3738.292 635.09771 -10629.044 0 222.53512 0.0013071466 0.0012925039 + 124790 -6250.8425 -6255.3285 4.4860623 3746.6829 633.3937 -10635.405 0 214.99728 0.00096531391 0.00095214971 + 124800 -6250.6511 -6254.9478 4.2967928 3755.4558 631.97444 -10642.378 0 205.92642 0.00063901622 0.00062730897 + 124810 -6250.4247 -6254.6035 4.1787498 3762.4175 631.26932 -10648.29 0 200.26914 0.00041619625 0.00040475557 + 124820 -6250.1552 -6254.3557 4.2005363 3765.8549 631.57037 -10651.781 0 201.31327 0.00036118158 0.00034847539 + 124830 -6249.8438 -6254.2033 4.35958 3764.9535 632.96518 -10652.122 0 208.93553 0.00049845927 0.00048386506 + 124840 -6249.5008 -6254.0864 4.5856019 3759.9914 635.30643 -10649.384 0 219.76777 0.00080645677 0.00079084484 + 124850 -6249.139 -6253.9223 4.7833086 3752.2713 638.22072 -10644.414 0 229.24299 0.0012219796 0.0012069315 + 124860 -6248.7677 -6253.6523 4.8846731 3743.8147 641.16003 -10638.627 0 234.10094 0.0016532963 0.0016395283 + 124870 -6248.3937 -6253.2688 4.875109 3736.8833 643.49698 -10633.649 0 233.64258 0.0019988909 0.0019854908 + 124880 -6248.0297 -6252.8178 4.7880489 3733.4176 644.65595 -10630.891 0 229.47017 0.0021695393 0.0021550024 + 124890 -6247.6954 -6252.3903 4.6948689 3734.5009 644.25795 -10631.149 0 225.00446 0.0021113775 0.0020954156 + 124900 -6247.4045 -6252.1093 4.7047753 3739.9892 642.24397 -10634.343 0 225.47923 0.0018249388 0.0018089761 + 124910 -6247.1492 -6252.0991 4.9498709 3748.4525 638.93583 -10639.487 0 237.22559 0.0013720206 0.0013576522 + 124920 -6246.9021 -6252.4283 5.5261686 3757.5055 635.0006 -10644.934 0 264.845 0.00086378654 0.00085079872 + 124930 -6246.6411 -6253.0499 6.4087847 3764.4719 631.30968 -10648.831 0 307.14492 0.00043108489 0.00041728619 + 124940 -6246.3754 -6253.7872 7.4118499 3767.1794 628.71891 -10649.686 0 355.21744 0.00018677689 0.00017000011 + 124950 -6246.1463 -6254.4018 8.2555596 3764.6148 627.82873 -10646.845 0 395.65274 0.00019356945 0.00017369244 + 124960 -6245.9957 -6254.7095 8.7138147 3757.2316 628.80069 -10640.742 0 417.6149 0.00044726912 0.00042601856 + 124970 -6245.9357 -6254.6633 8.7276185 3746.837 631.30054 -10632.801 0 418.27645 0.00087846657 0.00085747869 + 124980 -6245.9486 -6254.3454 8.3967519 3736.111 634.5986 -10625.055 0 402.41946 0.0013709278 0.0013505529 + 124990 -6246.0102 -6253.8929 7.8826863 3727.8893 637.79778 -10619.58 0 377.78256 0.0017928311 0.0017728408 + 125000 -6246.104 -6253.4263 7.3222787 3724.3916 640.10796 -10617.926 0 350.92468 0.0020338957 0.0020146553 + 125010 -6246.2166 -6253.0201 6.8034958 3726.6099 641.06995 -10620.7 0 326.06169 0.0020372761 0.0020195667 + 125020 -6246.3285 -6252.7057 6.3772249 3734.0414 640.65738 -10627.404 0 305.6324 0.0018145893 0.0017982221 + 125030 -6246.418 -6252.4789 6.0608851 3744.8483 639.23671 -10636.564 0 290.47162 0.0014386957 0.0014217478 + 125040 -6246.4762 -6252.3044 5.8281631 3756.3751 637.41845 -10646.098 0 279.31828 0.0010187779 0.00099878632 + 125050 -6246.5157 -6252.1345 5.6187782 3765.8436 635.86091 -10653.839 0 269.28338 0.00066896823 0.0006452515 + 125060 -6246.5591 -6251.9511 5.3919943 3771.0206 635.08501 -10658.057 0 258.41462 0.00048087559 0.00045560816 + 125070 -6246.6165 -6251.8072 5.1907662 3770.7141 635.3397 -10657.861 0 248.77064 0.000504278 0.0004809369 + 125080 -6246.6741 -6251.822 5.147852 3765.0321 636.54052 -10653.395 0 246.71395 0.00073589355 0.00071641268 + 125090 -6246.7071 -6252.1147 5.4075867 3755.3755 638.29199 -10645.782 0 259.16189 0.0011171905 0.0011005464 + 125100 -6246.7021 -6252.7203 6.0182181 3744.1416 639.99252 -10636.854 0 288.42678 0.0015449434 0.0015283165 + 125110 -6246.6712 -6253.5478 6.8766813 3734.1497 641.00369 -10628.701 0 329.56915 0.0018964899 0.0018775626 + 125120 -6246.6483 -6254.4045 7.7561938 3727.901 640.84477 -10623.15 0 371.72033 0.0020646337 0.0020429857 + 125130 -6246.6759 -6255.0641 8.3881803 3726.878 639.35461 -10621.297 0 402.00866 0.0019906584 0.001967701 + 125140 -6246.7865 -6255.348 8.5614186 3731.1155 636.76032 -10623.224 0 410.31122 0.0016834753 0.001661568 + 125150 -6246.9853 -6255.1971 8.2117849 3739.1938 633.61928 -10628.01 0 393.55481 0.0012181818 0.0011994088 + 125160 -6247.2435 -6254.7059 7.462409 3748.6736 630.65408 -10634.034 0 357.64051 0.0007143989 0.00069929517 + 125170 -6247.5143 -6254.0863 6.5719763 3756.8354 628.54751 -10639.469 0 314.96598 0.00030139155 0.00028843519 + 125180 -6247.7646 -6253.5691 5.8045589 3761.4735 627.77411 -10642.817 0 278.18703 8.1605665e-05 6.8285544e-05 + 125190 -6247.9937 -6253.2957 5.3020708 3761.4858 628.51121 -10643.293 0 254.10498 0.00010429888 8.9262357e-05 + 125200 -6248.2256 -6253.2683 5.0426831 3757.0995 630.62603 -10640.994 0 241.67367 0.00035598339 0.00034044938 + 125210 -6248.4806 -6253.3836 4.9029441 3749.7158 633.71296 -10636.812 0 234.97659 0.00076791672 0.00075480161 + 125220 -6248.7517 -6253.5184 4.7666173 3741.473 637.16514 -10632.156 0 228.44305 0.0012361451 0.0012272889 + 125230 -6249.0069 -6253.6026 4.5956692 3734.6733 640.28196 -10628.558 0 220.25025 0.0016474533 0.0016413448 + 125240 -6249.2168 -6253.6363 4.4195819 3731.2127 642.4129 -10627.262 0 211.81116 0.001904987 0.0018974039 + 125250 -6249.3827 -6253.6585 4.2757981 3732.1178 643.11533 -10628.892 0 204.92024 0.001949565 0.0019370609 + 125260 -6249.5385 -6253.713 4.174548 3737.2675 642.27943 -10633.26 0 200.06776 0.0017742985 0.0017575484 + 125270 -6249.7204 -6253.8433 4.1228322 3745.3702 640.16999 -10639.383 0 197.58925 0.0014291584 0.0014127939 + 125280 -6249.933 -6254.0982 4.1651986 3754.2567 637.35921 -10645.714 0 199.61969 0.001010752 0.00099933183 + 125290 -6250.1443 -6254.5136 4.3693774 3761.4681 634.5657 -10650.547 0 209.40508 0.00063555224 0.00062914703 + 125300 -6250.3175 -6255.061 4.7435274 3764.99 632.45091 -10652.502 0 227.33645 0.00040316952 0.00039684891 + 125310 -6250.4511 -6255.6146 5.1635478 3763.8699 631.43758 -10650.922 0 247.46618 0.00036419855 0.00035224729 + 125320 -6250.5844 -6255.993 5.4086338 3758.4737 631.60341 -10646.07 0 259.21208 0.00050709211 0.0004881494 + 125330 -6250.7611 -6256.0685 5.3074127 3750.2934 632.67987 -10639.042 0 254.361 0.00076873539 0.00074699263 + 125340 -6250.9858 -6255.8594 4.8735642 3741.4304 634.15645 -10631.446 0 233.56854 0.0010607084 0.0010421732 + 125350 -6251.2187 -6255.5217 4.3029274 3733.9911 635.45655 -10624.969 0 206.22043 0.0012973824 0.0012849947 + 125360 -6251.4116 -6255.2463 3.8347132 3729.5945 636.12289 -10620.964 0 183.78097 0.0014162901 0.0014082975 + 125370 -6251.5444 -6255.1459 3.6014748 3729.0684 635.94842 -10620.163 0 172.60288 0.0013891723 0.0013814937 + 125380 -6251.631 -6255.2115 3.5805654 3732.33 635.01578 -10622.557 0 171.60078 0.0012256774 0.0012153915 + 125390 -6251.6978 -6255.3511 3.6533124 3738.4375 633.64682 -10627.435 0 175.08723 0.00097020433 0.00095713189 + 125400 -6251.761 -6255.458 3.6970612 3745.8177 632.2922 -10633.568 0 177.18392 0.00069098646 0.00067681543 + 125410 -6251.8188 -6255.4597 3.6408541 3752.646 631.40112 -10639.507 0 174.49016 0.00046261129 0.00044915697 + 125420 -6251.8596 -6255.3336 3.4739371 3757.2953 631.30492 -10643.934 0 166.49056 0.00034679527 0.00033496282 + 125430 -6251.8711 -6255.1055 3.2344026 3758.7311 632.13596 -10645.973 0 155.01072 0.00037723877 0.00036695096 + 125440 -6251.8453 -6254.8413 2.995942 3756.7496 633.79301 -10645.384 0 143.58235 0.00055198384 0.00054256805 + 125450 -6251.7783 -6254.6292 2.850959 3752.0052 635.95781 -10642.592 0 136.63395 0.00083389334 0.00082455037 + 125460 -6251.6656 -6254.5545 2.8889185 3745.8289 638.16132 -10638.545 0 138.45319 0.0011587359 0.0011489156 + 125470 -6251.4956 -6254.6709 3.1752786 3739.8886 639.88918 -10634.449 0 152.17717 0.0014497385 0.0014392477 + 125480 -6251.245 -6254.9775 3.7324724 3735.7768 640.70592 -10631.46 0 178.88102 0.0016359276 0.0016247334 + 125490 -6250.8849 -6255.4051 4.5201953 3734.6194 640.36897 -10630.393 0 216.63312 0.001669831 0.0016578135 + 125500 -6250.4003 -6255.8204 5.4200663 3736.7845 638.90165 -10631.507 0 259.75999 0.0015397654 0.0015267698 + 125510 -6249.8133 -6256.0596 6.2462314 3741.7469 636.59964 -10634.406 0 299.35445 0.0012734361 0.0012596714 + 125520 -6249.1842 -6255.991 6.8068525 3748.162 633.95915 -10638.112 0 326.22257 0.00093195192 0.00091823209 + 125530 -6248.582 -6255.5849 7.0029129 3754.1744 631.54164 -10641.301 0 335.61888 0.0005954 0.00058260802 + 125540 -6248.048 -6254.9398 6.8917758 3757.9196 629.82274 -10642.682 0 330.29256 0.00034296171 0.00033099117 + 125550 -6247.5865 -6254.2347 6.6481377 3758.0715 629.08749 -10641.394 0 318.61606 0.00023286022 0.00022024362 + 125560 -6247.1851 -6253.6289 6.4438421 3754.243 629.40645 -10637.278 0 308.82507 0.00028857388 0.0002735558 + 125570 -6246.8381 -6253.1777 6.3396341 3747.1064 630.67627 -10630.96 0 303.83084 0.00049521711 0.00047753627 + 125580 -6246.5508 -6252.8182 6.2673879 3738.2188 632.67507 -10623.712 0 300.3684 0.00080535195 0.00078707837 + 125590 -6246.324 -6252.4376 6.1136801 3729.6311 635.09236 -10617.161 0 293.00185 0.0011507699 0.0011349819 + 125600 -6246.1359 -6251.9772 5.8413169 3723.4039 637.53446 -10612.916 0 279.94868 0.0014566698 0.0014444974 + 125610 -6245.9461 -6251.4933 5.5472044 3721.1474 639.54569 -10612.186 0 265.85316 0.0016554959 0.0016441292 + 125620 -6245.7243 -6251.1282 5.4039392 3723.6679 640.68658 -10615.483 0 258.98709 0.0016992829 0.0016836122 + 125630 -6245.4795 -6251.0236 5.544041 3730.7445 640.668 -10622.436 0 265.70155 0.0015712134 0.0015485814 + 125640 -6245.2538 -6251.2536 5.9998478 3741.0547 639.48774 -10631.796 0 287.54637 0.0012962592 0.0012700274 + 125650 -6245.0794 -6251.82 6.7405716 3752.3197 637.49393 -10641.634 0 323.04601 0.00094581244 0.00092350115 + 125660 -6244.9418 -6252.673 7.7311832 3761.7619 635.32111 -10649.756 0 370.52168 0.00062683192 0.00061343366 + 125670 -6244.7942 -6253.7032 8.9090242 3766.8641 633.70001 -10654.267 0 426.97043 0.0004499806 0.00044244066 + 125680 -6244.6239 -6254.7028 10.078894 3766.2138 633.20243 -10654.119 0 483.03716 0.00048523526 0.00047425327 + 125690 -6244.5048 -6255.3765 10.871694 3760.0506 634.01866 -10649.446 0 521.03256 0.00072790188 0.00070650505 + 125700 -6244.5576 -6255.4685 10.910874 3750.2025 635.86001 -10641.531 0 522.91032 0.0010975732 0.001068191 + 125710 -6244.8372 -6254.9429 10.105639 3739.4117 638.04065 -10632.395 0 484.31892 0.0014721065 0.0014444103 + 125720 -6245.2698 -6254.0479 8.7780432 3730.4056 639.72191 -10624.175 0 420.69308 0.0017346496 0.0017162803 + 125730 -6245.7135 -6253.1733 7.4597986 3725.1472 640.22186 -10618.542 0 357.51541 0.0018081289 0.0017981217 + 125740 -6246.0712 -6252.6148 6.5436261 3724.4651 639.25519 -10616.335 0 313.60728 0.0016689702 0.001659861 + 125750 -6246.3411 -6252.4384 6.0973517 3728.0117 637.01082 -10617.461 0 292.21931 0.0013468474 0.0013319287 + 125760 -6246.5789 -6252.5216 5.9427713 3734.4357 634.06134 -10621.019 0 284.81095 0.00091667484 0.00089493303 + 125770 -6246.833 -6252.694 5.861034 3741.7328 631.16667 -10625.593 0 280.89363 0.00048236856 0.00045761397 + 125780 -6247.1096 -6252.8472 5.7376421 3747.7603 629.05366 -10629.661 0 274.98 0.00015151314 0.00012812831 + 125790 -6247.3831 -6252.9597 5.576582 3750.8176 628.23399 -10632.011 0 267.2611 6.2233627e-06 -1.4066149e-05 + 125800 -6247.6261 -6253.0649 5.4388504 3750.1192 628.89036 -10632.075 0 260.66023 8.0074085e-05 6.1761091e-05 + 125810 -6247.8297 -6253.2137 5.3839958 3746.0051 630.84032 -10630.059 0 258.03129 0.00034896922 0.00033054487 + 125820 -6248.0055 -6253.4491 5.443569 3739.8245 633.58173 -10626.855 0 260.88637 0.00073814608 0.0007185577 + 125830 -6248.1746 -6253.7932 5.6186193 3733.5265 636.41881 -10623.739 0 269.27576 0.0011428995 0.0011228922 + 125840 -6248.3523 -6254.2382 5.8859032 3729.0749 638.64914 -10621.962 0 282.08551 0.0014575562 0.0014388426 + 125850 -6248.5407 -6254.7376 6.1969197 3727.8699 639.76403 -10622.372 0 296.99116 0.0016046882 0.0015883745 + 125860 -6248.7336 -6255.2017 6.4680838 3730.3567 639.59527 -10625.154 0 309.98687 0.0015557948 0.0015415325 + 125870 -6248.9262 -6255.5127 6.5864294 3735.9269 638.34956 -10629.789 0 315.65865 0.00133717 0.0013237216 + 125880 -6249.1187 -6255.5725 6.4537729 3743.1152 636.5138 -10635.202 0 309.30101 0.0010195019 0.0010059915 + 125890 -6249.3103 -6255.3626 6.0522613 3750.0164 634.67163 -10640.051 0 290.05832 0.00069499977 0.00068159995 + 125900 -6249.4938 -6254.9743 5.4804458 3754.8014 633.30919 -10643.085 0 262.65372 0.00044981115 0.00043737084 + 125910 -6249.6578 -6254.5807 4.9229295 3756.201 632.68497 -10643.467 0 235.9344 0.000340627 0.00032977304 + 125920 -6249.7933 -6254.359 4.5656646 3753.8278 632.79859 -10640.985 0 218.81226 0.00038210173 0.00037264374 + 125930 -6249.8991 -6254.4049 4.5057836 3748.258 633.44611 -10636.109 0 215.94243 0.00054719296 0.00053822453 + 125940 -6249.9813 -6254.6845 4.7031741 3740.8595 634.31927 -10629.863 0 225.40249 0.00077807759 0.00076863687 + 125950 -6250.0519 -6255.0487 4.9968041 3733.4258 635.1029 -10623.577 0 239.47489 0.0010030361 0.00099287353 + 125960 -6250.1234 -6255.3064 5.1829673 3727.7129 635.54256 -10618.562 0 248.39688 0.0011549509 0.0011447599 + 125970 -6250.1994 -6255.3217 5.1223036 3724.9966 635.47983 -10615.798 0 245.48953 0.0011879812 0.0011786469 + 125980 -6250.2689 -6255.0822 4.8132537 3725.7675 634.87048 -10615.72 0 230.67813 0.0010889705 0.0010803225 + 125990 -6250.3145 -6254.6937 4.3791803 3729.6438 633.79814 -10618.136 0 209.87489 0.00088034722 0.00087080632 + 126000 -6250.3289 -6254.3101 3.9812041 3735.5062 632.47861 -10622.295 0 190.80164 0.00061366084 0.0006016031 + 126010 -6250.3222 -6254.0548 3.7326447 3741.7944 631.2349 -10627.084 0 178.88928 0.00035647114 0.00034218979 + 126020 -6250.3075 -6253.9876 3.68012 3746.8766 630.42902 -10631.293 0 176.372 0.00017683206 0.00016286278 + 126030 -6250.2774 -6254.1176 3.8402126 3749.4297 630.36116 -10633.908 0 184.04453 0.00012812921 0.00011710084 + 126040 -6250.1957 -6254.4229 4.2272586 3748.7747 631.16935 -10634.367 0 202.59395 0.00023545132 0.00022722405 + 126050 -6250.0168 -6254.8489 4.8320522 3745.096 632.76813 -10632.713 0 231.57905 0.00048562165 0.00047649293 + 126060 -6249.7198 -6255.2954 5.5755728 3739.4545 634.8512 -10629.601 0 267.21274 0.00082523666 0.00081039468 + 126070 -6249.3313 -6255.63 6.2986218 3733.5344 636.96146 -10626.126 0 301.8653 0.0011711246 0.0011487037 + 126080 -6248.9144 -6255.7415 6.8271304 3729.1545 638.61033 -10623.506 0 327.19439 0.0014335107 0.0014068054 + 126090 -6248.5244 -6255.6086 7.0842627 3727.6903 639.41161 -10622.711 0 339.51762 0.001544891 0.0015202471 + 126100 -6248.1682 -6255.3221 7.153902 3729.6313 639.18899 -10624.142 0 342.85512 0.0014818672 0.0014634472 + 126110 -6247.808 -6255.0222 7.2142794 3734.4524 638.02393 -10627.499 0 345.74875 0.0012692661 0.0012553078 + 126120 -6247.4093 -6254.7857 7.3764382 3740.8231 636.23076 -10631.84 0 353.52031 0.00096653397 0.00095092838 + 126130 -6246.9866 -6254.5588 7.572214 3747.0135 634.26901 -10635.841 0 362.90298 0.00064696646 0.00062489951 + 126140 -6246.597 -6254.2022 7.6051995 3751.323 632.62162 -10638.147 0 364.48383 0.00038091229 0.00035311198 + 126150 -6246.2901 -6253.6098 7.3196751 3752.4436 631.67488 -10637.728 0 350.7999 0.00022538104 0.00019700925 + 126160 -6246.0666 -6252.7951 6.7284986 3749.7526 631.6298 -10634.178 0 322.46741 0.00021526233 0.00019111401 + 126170 -6245.8857 -6251.886 6.0003359 3743.5111 632.45876 -10627.856 0 287.56977 0.00035359562 0.00033461192 + 126180 -6245.7046 -6251.0624 5.3578174 3734.8913 633.90772 -10619.861 0 256.77667 0.00060569448 0.00058952546 + 126190 -6245.5033 -6250.5026 4.9992712 3725.7628 635.54272 -10611.808 0 239.59313 0.0009042391 0.00088813734 + 126200 -6245.2771 -6250.3607 5.0835632 3718.261 636.84283 -10605.464 0 243.63287 0.0011667816 0.00114952 + 126210 -6245.0155 -6250.7413 5.7258483 3714.2508 637.33779 -10602.33 0 274.41478 0.0013195864 0.0013011573 + 126220 -6244.7007 -6251.6462 6.9454921 3714.8362 636.76649 -10603.249 0 332.86695 0.0013188503 0.0012993788 + 126230 -6244.3342 -6252.9166 8.5824124 3720.0378 635.20278 -10608.157 0 411.31736 0.0011630235 0.0011426934 + 126240 -6243.966 -6254.2412 10.275205 3728.7206 633.07965 -10616.041 0 492.44549 0.00089433338 0.00087409401 + 126250 -6243.6861 -6255.2652 11.579135 3738.8186 631.06971 -10625.153 0 554.93713 0.00058954044 0.00057072125 + 126260 -6243.5747 -6255.7486 12.173837 3747.8526 629.85156 -10633.453 0 583.43859 0.00033980632 0.00032219547 + 126270 -6243.6613 -6255.6601 11.998738 3753.6304 629.86637 -10639.157 0 575.04685 0.00022240385 0.00020330316 + 126280 -6243.9302 -6255.1463 11.216048 3754.8848 631.1797 -10641.211 0 537.53597 0.00027424428 0.00025079791 + 126290 -6244.3499 -6254.4252 10.075362 3751.5902 633.49646 -10639.512 0 482.86786 0.00048072226 0.00045364057 + 126300 -6244.8805 -6253.6965 8.8159756 3744.851 636.29059 -10634.838 0 422.51102 0.0007853606 0.00075954492 + 126310 -6245.4618 -6253.1029 7.6411328 3736.4817 638.97009 -10628.555 0 366.20596 0.0011119535 0.0010925377 + 126320 -6246.0159 -6252.7184 6.7025056 3728.5004 641.00978 -10622.229 0 321.22167 0.0013850878 0.0013725997 + 126330 -6246.48 -6252.5374 6.0574187 3722.6974 642.02561 -10617.26 0 290.30549 0.0015417443 0.0015313208 + 126340 -6246.8389 -6252.4806 5.6416299 3720.3099 641.80324 -10614.594 0 270.37856 0.0015375054 0.0015231024 + 126350 -6247.1261 -6252.4464 5.3202868 3721.7753 640.31024 -10614.532 0 254.97799 0.0013545106 0.0013341558 + 126360 -6247.3891 -6252.3953 5.00625 3726.5813 637.71035 -10616.687 0 239.92759 0.0010120194 0.00098927749 + 126370 -6247.6505 -6252.4018 4.7513782 3733.3057 634.37251 -10620.08 0 227.7127 0.00057187736 0.0005524274 + 126380 -6247.8964 -6252.6197 4.7233094 3739.9275 630.84729 -10623.394 0 226.36749 0.00012988272 0.00011652644 + 126390 -6248.098 -6253.1713 5.073307 3744.3795 627.78605 -10625.337 0 243.14134 -0.00020840613 -0.00021789726 + 126400 -6248.2465 -6254.0377 5.7911826 3745.1769 625.80294 -10625.018 0 277.54596 -0.00035923404 -0.00036980052 + 126410 -6248.3708 -6255.0329 6.662099 3741.8937 625.31136 -10622.238 0 319.28517 -0.00028682082 -0.00030173165 + 126420 -6248.5197 -6255.8897 7.3700842 3735.3081 626.3883 -10617.586 0 353.21579 -1.4170679e-05 -3.2749608e-05 + 126430 -6248.7227 -6256.396 7.6733094 3727.177 628.72416 -10612.297 0 367.74804 0.00038394443 0.00036465171 + 126440 -6248.968 -6256.4817 7.5137217 3719.7368 631.69357 -10607.912 0 360.0997 0.00080158417 0.00078352228 + 126450 -6249.2178 -6256.2135 6.9957184 3715.0953 634.53471 -10605.844 0 335.27408 0.0011294299 0.0011121978 + 126460 -6249.4407 -6255.7335 6.2927733 3714.6664 636.57569 -10606.976 0 301.58501 0.0012838119 0.0012660585 + 126470 -6249.6275 -6255.2009 5.5733606 3718.7778 637.42705 -10611.406 0 267.10671 0.0012302376 0.0012115982 + 126480 -6249.7829 -6254.7562 4.9732232 3726.5527 637.07637 -10618.385 0 238.34476 0.00099368589 0.00097516244 + 126490 -6249.911 -6254.4955 4.5845598 3736.1132 635.86069 -10626.469 0 219.71783 0.00065071267 0.00063353596 + 126500 -6250.0092 -6254.4472 4.4380045 3745.0635 634.33562 -10633.846 0 212.69408 0.00030534396 0.00028979022 + 126510 -6250.0729 -6254.5617 4.4888146 3751.122 633.08981 -10638.773 0 215.12918 5.7500408e-05 4.2724046e-05 + 126520 -6250.1008 -6254.7331 4.6322741 3752.7243 632.5624 -10640.02 0 222.00457 -2.5269504e-05 -4.0569814e-05 + 126530 -6250.0972 -6254.8466 4.7493997 3749.432 632.91301 -10637.192 0 227.61788 7.4821173e-05 5.803881e-05 + 126540 -6250.071 -6254.8274 4.756489 3742.0389 633.97593 -10630.842 0 227.95764 0.00032212158 0.00030386403 + 126550 -6250.0338 -6254.67 4.6362058 3732.3469 635.30872 -10622.326 0 222.193 0.00063758964 0.00061917594 + 126560 -6249.9935 -6254.4421 4.4486081 3722.6754 636.32318 -10613.441 0 213.20226 0.00092087895 0.00090457442 + 126570 -6249.9442 -6254.2659 4.3216801 3715.2484 636.46673 -10605.981 0 207.11916 0.0010795634 0.0010671514 + 126580 -6249.861 -6254.2695 4.4085219 3711.6428 635.4062 -10601.319 0 211.2811 0.0010566171 0.0010476254 + 126590 -6249.7093 -6254.5174 4.8081336 3712.4447 633.15907 -10600.121 0 230.43274 0.00084669058 0.00083795241 + 126600 -6249.4674 -6254.9518 5.4843839 3717.1699 630.12593 -10602.248 0 262.84245 0.00049649567 0.00048414171 + 126610 -6249.1458 -6255.3945 6.2486737 3724.4249 627.00395 -10606.823 0 299.47151 9.1462857e-05 7.4272735e-05 + 126620 -6248.78 -6255.6328 6.852711 3732.2425 624.59844 -10612.474 0 328.42036 -0.00026533724 -0.00028426004 + 126630 -6248.396 -6255.5491 7.1531343 3738.5401 623.58831 -10617.677 0 342.81833 -0.00047689655 -0.00049242406 + 126640 -6247.9772 -6255.1979 7.22068 3741.6431 624.32633 -10621.167 0 346.0555 -0.00047574051 -0.00048551064 + 126650 -6247.472 -6254.7601 7.2880092 3740.7654 626.74584 -10622.271 0 349.28229 -0.00024360034 -0.00025069169 + 126660 -6246.835 -6254.4079 7.5729142 3736.2795 630.39816 -10621.086 0 362.93654 0.00017917664 0.00016871678 + 126670 -6246.0631 -6254.1889 8.1258263 3729.6363 634.59018 -10618.415 0 389.43519 0.00070070623 0.00068347189 + 126680 -6245.1967 -6254.0124 8.8157332 3722.9269 638.56354 -10615.503 0 422.4994 0.0012016977 0.0011803796 + 126690 -6244.2894 -6253.7342 9.4447789 3718.2364 641.65992 -10613.63 0 452.6468 0.0015694519 0.0015504208 + 126700 -6243.3732 -6253.2565 9.8833283 3717.0234 643.43714 -10613.717 0 473.66455 0.0017289839 0.0017155458 + 126710 -6242.4581 -6252.5623 10.104277 3719.7353 643.72321 -10616.021 0 484.25363 0.0016585962 0.0016464326 + 126720 -6241.5751 -6251.6726 10.097487 3725.7431 642.61437 -10620.03 0 483.92823 0.0013861311 0.0013667838 + 126730 -6240.8106 -6250.6151 9.8045661 3733.5191 640.43093 -10624.565 0 469.88982 0.0009755412 0.00094567585 + 126740 -6240.2608 -6249.4845 9.2237184 3740.9393 637.64073 -10628.065 0 442.05234 0.00051624409 0.00048246578 + 126750 -6239.9358 -6248.535 8.5991966 3745.6959 634.75794 -10628.989 0 412.12175 0.00011370483 8.602207e-05 + 126760 -6239.7286 -6248.1376 8.4089235 3745.8884 632.23589 -10626.262 0 403.0028 -0.00013220464 -0.00015190488 + 126770 -6239.5139 -6248.5453 9.0313568 3740.719 630.38288 -10619.647 0 432.83329 -0.00016324844 -0.00018407287 + 126780 -6239.2862 -6249.6596 10.373437 3730.9558 629.32117 -10609.937 0 497.15329 8.3394016e-06 -2.3688119e-05 + 126790 -6239.1886 -6251.0596 11.871004 3718.7995 628.98809 -10598.847 0 568.92513 0.00030418803 0.00026143153 + 126800 -6239.3869 -6252.2946 12.907618 3707.1507 629.17088 -10588.616 0 618.60546 0.00061767538 0.00057472714 + 126810 -6239.9183 -6253.154 13.235731 3698.6871 629.57285 -10581.414 0 634.33049 0.00085699356 0.00082307433 + 126820 -6240.6786 -6253.6809 13.002262 3695.2001 629.90293 -10578.784 0 623.14137 0.00096590262 0.00094051945 + 126830 -6241.5329 -6253.9947 12.461821 3697.3205 629.9625 -10581.278 0 597.24039 0.00092251227 0.00089868203 + 126840 -6242.3972 -6254.1605 11.763329 3704.5033 629.69861 -10588.362 0 563.76473 0.00073506152 0.00070810473 + 126850 -6243.2281 -6254.2037 10.975577 3715.1647 629.2134 -10598.582 0 526.01122 0.0004434997 0.00041479072 + 126860 -6243.9863 -6254.1707 10.18441 3726.9905 628.74073 -10609.902 0 488.09408 0.00011797885 9.1480307e-05 + 126870 -6244.6344 -6254.1223 9.4879728 3737.4251 628.59952 -10620.147 0 454.71689 -0.00015500458 -0.00017762195 + 126880 -6245.157 -6254.0713 8.9142569 3744.2509 629.12169 -10627.444 0 427.22121 -0.00029600723 -0.00031652403 + 126890 -6245.571 -6253.951 8.3799466 3746.1087 630.55055 -10630.61 0 401.61406 -0.00025559138 -0.00027668237 + 126900 -6245.9127 -6253.664 7.7513113 3742.8189 632.92256 -10629.405 0 371.48633 -2.8977985e-05 -5.1248078e-05 + 126910 -6246.2119 -6253.1787 6.9667828 3735.4139 635.97195 -10624.565 0 333.88732 0.00034021281 0.00031870962 + 126920 -6246.4744 -6252.5975 6.1231541 3725.8689 639.11581 -10617.582 0 293.4559 0.000766898 0.0007485084 + 126930 -6246.6874 -6252.1368 5.4493925 3716.6065 641.56242 -10610.306 0 261.16546 0.0011416876 0.0011267228 + 126940 -6246.8419 -6252.0211 5.1791994 3709.9 642.53411 -10604.455 0 248.21629 0.001356939 0.0013433471 + 126950 -6246.9486 -6252.3613 5.4127028 3707.31 641.53278 -10601.204 0 259.40709 0.0013370135 0.0013222352 + 126960 -6247.0366 -6253.0932 6.05655 3709.2746 638.54257 -10600.91 0 290.26386 0.0010638759 0.001046884 + 126970 -6247.1404 -6254.0054 6.865016 3714.9676 634.08098 -10603.054 0 329.01009 0.00058780213 0.00056957892 + 126980 -6247.2867 -6254.8325 7.5457344 3722.5017 629.06925 -10606.403 0 361.63393 1.6783269e-05 -7.2641297e-07 + 126990 -6247.4871 -6255.3645 7.8773589 3729.4548 624.56746 -10609.387 0 377.52724 -0.00051354928 -0.00052883305 + 127000 -6247.733 -6255.5266 7.7936005 3733.5792 621.47334 -10610.579 0 373.51307 -0.00087907834 -0.00089192622 + 127010 -6247.9995 -6255.3972 7.3976632 3733.4702 620.29284 -10609.16 0 354.53753 -0.0010013661 -0.0010130261 + 127020 -6248.2604 -6255.1543 6.8939325 3728.9825 621.05206 -10605.189 0 330.39593 -0.00086618256 -0.00087873311 + 127030 -6248.5054 -6254.9766 6.4711508 3721.2653 623.35699 -10599.599 0 310.13385 -0.00052310405 -0.00053806955 + 127040 -6248.7461 -6254.9554 6.2093433 3712.4149 626.55245 -10593.923 0 297.58657 -6.9007427e-05 -8.5946926e-05 + 127050 -6249.0014 -6255.0689 6.0675613 3704.8639 629.91049 -10589.843 0 290.79158 0.00037893987 0.00036255517 + 127060 -6249.275 -6255.2243 5.9493332 3700.7038 632.7923 -10588.72 0 285.12543 0.00071402343 0.0007009482 + 127070 -6249.5434 -6255.3286 5.7852677 3701.1415 634.75737 -10591.228 0 277.26249 0.00086635356 0.00085680426 + 127080 -6249.7689 -6255.3318 5.5629153 3706.2296 635.61835 -10597.18 0 266.60611 0.00081700905 0.00080753414 + 127090 -6249.9319 -6255.2205 5.2886697 3714.9037 635.44844 -10605.573 0 253.46273 0.00059680301 0.00058258565 + 127100 -6250.0509 -6254.9936 4.9426993 3725.2597 634.54438 -10614.798 0 236.88188 0.00027369003 0.00025297277 + 127110 -6250.1682 -6254.6698 4.5016168 3734.9672 633.3432 -10622.98 0 215.74273 -6.4059415e-05 -8.7530677e-05 + 127120 -6250.3068 -6254.3278 4.0210873 3741.7491 632.30064 -10628.378 0 192.71307 -0.00032552162 -0.0003451367 + 127130 -6250.4428 -6254.118 3.6752262 3743.8914 631.759 -10629.768 0 176.13746 -0.00043708663 -0.00044934542 + 127140 -6250.5225 -6254.1897 3.6671612 3740.7147 631.84602 -10626.75 0 175.75094 -0.00036456154 -0.00037268144 + 127150 -6250.5126 -6254.5743 4.0616472 3732.8531 632.43828 -10619.866 0 194.65693 -0.000129711 -0.00014091773 + 127160 -6250.4345 -6255.1322 4.6977364 3722.1661 633.19905 -10610.497 0 225.14189 0.00019065412 0.00017185108 + 127170 -6250.3481 -6255.6321 5.2839735 3711.2326 633.67982 -10600.545 0 253.23766 0.00048842916 0.00046445201 + 127180 -6250.2981 -6255.9035 5.6053992 3702.5938 633.45993 -10591.957 0 268.64218 0.00066226865 0.00064008241 + 127190 -6250.2737 -6255.9341 5.660345 3698.0525 632.2876 -10586.274 0 271.27549 0.00065158202 0.00063621197 + 127200 -6250.2236 -6255.8387 5.6150908 3698.2785 630.17831 -10584.296 0 269.10666 0.0004514924 0.00044181694 + 127210 -6250.1068 -6255.7467 5.6399784 3702.782 627.43591 -10585.965 0 270.29941 0.00010727159 9.7792274e-05 + 127220 -6249.9275 -6255.7138 5.7862442 3710.152 624.58903 -10590.455 0 277.30929 -0.00030228435 -0.00031598017 + 127230 -6249.7238 -6255.72 5.9961304 3718.4252 622.26554 -10596.411 0 287.36821 -0.00068303481 -0.00070059839 + 127240 -6249.5251 -6255.7243 6.1991704 3725.5134 621.04587 -10602.284 0 297.09903 -0.00094275079 -0.00096039904 + 127250 -6249.3234 -6255.6986 6.375224 3729.6659 621.3344 -10606.699 0 305.5365 -0.0010095513 -0.0010245165 + 127260 -6249.0869 -6255.6062 6.5192633 3729.9099 623.27127 -10608.787 0 312.43968 -0.00085111686 -0.00086440281 + 127270 -6248.7997 -6255.3641 6.5644378 3726.3445 626.68842 -10608.397 0 314.60469 -0.00048829169 -0.00050296297 + 127280 -6248.4843 -6254.8664 6.3821382 3720.1449 631.10779 -10606.119 0 305.86787 5.507893e-06 -1.1676251e-05 + 127290 -6248.1797 -6254.0812 5.9015264 3713.2274 635.79167 -10603.1 0 282.83426 0.00052220045 0.00050483473 + 127300 -6247.8986 -6253.1413 5.2426754 3707.6874 639.86319 -10600.692 0 251.25842 0.0009477056 0.00093311634 + 127310 -6247.6116 -6252.3215 4.7098444 3705.2266 642.49581 -10600.044 0 225.72217 0.0011895143 0.0011774658 + 127320 -6247.2719 -6251.8943 4.6224396 3706.7357 643.12909 -10601.759 0 221.53324 0.0011954592 0.0011823747 + 127330 -6246.8493 -6251.9756 5.1262875 3712.0705 641.63693 -10605.683 0 245.68046 0.00096396627 0.00094679857 + 127340 -6246.3429 -6252.4809 6.1379629 3720.0089 638.38127 -10610.871 0 294.16562 0.00054787056 0.00052756893 + 127350 -6245.7695 -6253.2063 7.4367879 3728.4278 634.12254 -10615.757 0 356.4126 4.8368169e-05 2.8830443e-05 + 127360 -6245.1523 -6253.9444 8.7920611 3734.7831 629.80742 -10618.535 0 421.3649 -0.00040756976 -0.00042408836 + 127370 -6244.5273 -6254.5434 10.016117 3736.8547 626.30186 -10617.7 0 480.02855 -0.00070542618 -0.00072123812 + 127380 -6243.9614 -6254.9079 10.946511 3733.5074 624.16157 -10612.577 0 524.61824 -0.00078196117 -0.00080169989 + 127390 -6243.5469 -6254.9926 11.445734 3725.122 623.51829 -10603.633 0 548.54379 -0.00064402 -0.0006696216 + 127400 -6243.3582 -6254.8201 11.461903 3713.4959 624.11143 -10592.427 0 549.31869 -0.00035821361 -0.00038665765 + 127410 -6243.4045 -6254.4897 11.085255 3701.2809 625.4372 -10581.208 0 531.26762 -2.0987854e-05 -4.715965e-05 + 127420 -6243.6265 -6254.1354 10.508848 3691.2275 626.94607 -10572.309 0 503.64296 0.00027269224 0.00025126395 + 127430 -6243.9424 -6253.8437 9.9013472 3685.5134 628.21154 -10567.569 0 474.52811 0.00045057223 0.00043200904 + 127440 -6244.2944 -6253.6035 9.3090638 3685.2995 629.0188 -10567.922 0 446.14257 0.00047448413 0.00045495862 + 127450 -6244.6582 -6253.3375 8.6792983 3690.5367 629.36616 -10573.24 0 415.96068 0.0003457351 0.00032277071 + 127460 -6245.0213 -6252.9855 7.9641285 3700.0131 629.40945 -10582.408 0 381.68572 0.00010404957 7.7680025e-05 + 127470 -6245.3685 -6252.5616 7.1931542 3711.6367 629.3885 -10593.587 0 344.73631 -0.00018255662 -0.00021061729 + 127480 -6245.6852 -6252.153 6.4677561 3722.9042 629.55782 -10604.615 0 309.97116 -0.00043538682 -0.00046283183 + 127490 -6245.965 -6251.8831 5.9180908 3731.4517 630.12356 -10613.458 0 283.62812 -0.00058416447 -0.00060883141 + 127500 -6246.2062 -6251.8744 5.6681817 3735.5648 631.18582 -10618.625 0 271.65107 -0.00058254642 -0.00060331548 + 127510 -6246.4055 -6252.2107 5.8051376 3734.551 632.69544 -10619.457 0 278.21476 -0.00041871743 -0.00043649699 + 127520 -6246.5618 -6252.8939 6.3320721 3728.8995 634.44189 -10616.235 0 303.46843 -0.00012097435 -0.00013865142 + 127530 -6246.6907 -6253.8106 7.1199358 3720.1777 636.08442 -10610.073 0 341.22728 0.00024390518 0.00022333358 + 127540 -6246.8317 -6254.7437 7.9120465 3710.6471 637.22456 -10602.615 0 379.18966 0.0005831912 0.00055927165 + 127550 -6247.0304 -6255.4513 8.4208301 3702.6627 637.50091 -10595.615 0 403.57343 0.00080212001 0.00077787089 + 127560 -6247.3014 -6255.7792 8.4778152 3698.0288 636.6797 -10590.488 0 406.30447 0.00083238715 0.00081198501 + 127570 -6247.6098 -6255.7328 8.1230017 3697.536 634.72003 -10587.989 0 389.29982 0.00065303415 0.00063802661 + 127580 -6247.8977 -6255.4505 7.5528243 3700.8324 631.80343 -10588.086 0 361.97372 0.00029471112 0.00028256344 + 127590 -6248.1308 -6255.1084 6.9776108 3706.62 628.32287 -10590.051 0 334.40626 -0.00017148772 -0.00018488294 + 127600 -6248.3184 -6254.8359 6.5174883 3713.0473 624.82941 -10592.713 0 312.35461 -0.00065196861 -0.00066839664 + 127610 -6248.4913 -6254.6932 6.2018866 3718.1651 621.9402 -10594.799 0 297.2292 -0.0010484365 -0.0010660335 + 127620 -6248.6651 -6254.6887 6.0236211 3720.3793 620.22 -10595.288 0 288.68572 -0.0012751194 -0.0012907253 + 127630 -6248.8275 -6254.7904 5.9628854 3718.8577 620.05442 -10593.702 0 285.77493 -0.0012776508 -0.0012901418 + 127640 -6248.9579 -6254.918 5.9600788 3713.8084 621.53832 -10590.265 0 285.64042 -0.001051478 -0.0010625367 + 127650 -6249.0537 -6254.9533 5.8996204 3706.5055 624.4091 -10585.868 0 282.74291 -0.00065099745 -0.00066273227 + 127660 -6249.1315 -6254.8023 5.6707994 3698.9849 628.05965 -10581.847 0 271.77653 -0.00017989648 -0.00019232882 + 127670 -6249.2029 -6254.478 5.275135 3693.4667 631.65786 -10579.603 0 252.81407 0.00023791268 0.00022643658 + 127680 -6249.257 -6254.1207 4.8637428 3691.7053 634.36572 -10580.192 0 233.09784 0.00049537633 0.00048555118 + 127690 -6249.2734 -6253.9134 4.6399715 3694.4869 635.59498 -10583.995 0 222.37347 0.00053215333 0.00052241363 + 127700 -6249.2486 -6253.9553 4.706618 3701.4022 635.19886 -10590.556 0 225.56754 0.00034881205 0.00033717852 + 127710 -6249.203 -6254.2041 5.0010077 3710.9123 633.51454 -10598.631 0 239.67635 5.3499056e-06 -7.865963e-06 + 127720 -6249.158 -6254.5302 5.3721911 3720.6866 631.23408 -10606.451 0 257.46554 -0.00039384854 -0.00040612179 + 127730 -6249.1087 -6254.8202 5.7115272 3728.1776 629.15695 -10612.155 0 273.72843 -0.00072774381 -0.00073761347 + 127740 -6249.0277 -6255.0301 6.0024513 3731.33 627.924 -10614.284 0 287.67114 -0.00089521251 -0.00090498759 + 127750 -6248.9002 -6255.1583 6.258083 3729.2059 627.82936 -10612.194 0 299.92245 -0.00084888759 -0.00086305584 + 127760 -6248.7529 -6255.2018 6.4489226 3722.2765 628.75998 -10606.238 0 309.06855 -0.00061088133 -0.00063128723 + 127770 -6248.6377 -6255.1623 6.5246017 3712.2538 630.26156 -10597.678 0 312.69552 -0.00026221466 -0.0002851696 + 127780 -6248.583 -6255.0868 6.5038325 3701.5498 631.69694 -10588.334 0 311.70015 8.7951594e-05 6.9049571e-05 + 127790 -6248.5624 -6255.0725 6.5100902 3692.6056 632.44822 -10580.126 0 312.00005 0.00033727363 0.00032592732 + 127800 -6248.5162 -6255.1986 6.6823913 3687.3235 632.10528 -10574.627 0 320.25769 0.00041519452 0.00040818268 + 127810 -6248.4069 -6255.434 7.0271042 3686.706 630.58743 -10572.728 0 336.77826 0.00029404106 0.00028388718 + 127820 -6248.259 -6255.6131 7.354111 3690.6925 628.16549 -10574.471 0 352.45026 -8.9019709e-06 -2.7357306e-05 + 127830 -6248.1414 -6255.5255 7.3841712 3698.1573 625.3833 -10579.066 0 353.89092 -0.00043330376 -0.00045824526 + 127840 -6248.1042 -6255.0667 6.9624224 3707.1015 622.90866 -10585.077 0 333.67835 -0.00088311072 -0.00090748755 + 127850 -6248.1313 -6254.3271 6.1957628 3715.0928 621.36344 -10590.783 0 296.93572 -0.0012450669 -0.0012630668 + 127860 -6248.1561 -6253.5406 5.3845081 3719.9188 621.17836 -10594.638 0 258.05584 -0.0014192926 -0.0014311197 + 127870 -6248.1225 -6252.938 4.8155701 3720.2547 622.49665 -10595.689 0 230.78914 -0.0013516755 -0.0013621733 + 127880 -6248.0211 -6252.6357 4.6145469 3716.0664 625.13379 -10593.836 0 221.15498 -0.0010522237 -0.0010655687 + 127890 -6247.8693 -6252.6378 4.7684794 3708.585 628.60112 -10589.824 0 228.53229 -0.00059057519 -0.00060700233 + 127900 -6247.6645 -6252.9044 5.2398717 3699.909 632.20276 -10585.016 0 251.12405 -7.3472795e-05 -9.0868704e-05 + 127910 -6247.3657 -6253.3846 6.0189179 3692.4335 635.19638 -10581.014 0 288.46032 0.00038327585 0.00036576138 + 127920 -6246.9228 -6253.9871 7.0643077 3688.2768 636.9775 -10579.241 0 338.56126 0.00067920726 0.00066008228 + 127930 -6246.3275 -6254.5522 8.2247134 3688.7811 637.22905 -10580.562 0 394.17442 0.00074878595 0.00072672421 + 127940 -6245.636 -6254.9002 9.2642458 3694.1226 635.98737 -10585.01 0 443.99464 0.00057758957 0.00055418934 + 127950 -6244.9363 -6254.9419 10.005684 3703.1415 633.60679 -10591.69 0 479.52854 0.00021107348 0.00019005273 + 127960 -6244.2901 -6254.7462 10.456092 3713.5362 630.64569 -10598.928 0 501.11458 -0.00025351595 -0.00027031661 + 127970 -6243.7155 -6254.4829 10.767354 3722.4642 627.72532 -10604.672 0 516.03204 -0.00069568529 -0.00071097903 + 127980 -6243.224 -6254.2793 11.055348 3727.3657 625.40785 -10607.053 0 529.8343 -0.0010093981 -0.0010284384 + 127990 -6242.8588 -6254.1149 11.256096 3726.6999 624.10794 -10604.923 0 539.4553 -0.001131399 -0.0011570408 + 128000 -6242.683 -6253.8424 11.159385 3720.3435 624.02744 -10598.213 0 534.82032 -0.001050401 -0.0010801641 + 128010 -6242.7251 -6253.315 10.589907 3709.57 625.10722 -10587.992 0 507.52776 -0.00080127699 -0.00082935575 + 128020 -6242.9413 -6252.513 9.5716696 3696.6898 627.01443 -10576.217 0 458.72811 -0.00045358057 -0.00047574017 + 128030 -6243.2377 -6251.5763 8.3386415 3684.4995 629.19489 -10565.271 0 399.63449 -9.8371287e-05 -0.00011493949 + 128040 -6243.5299 -6250.7429 7.2130112 3675.6612 631.00037 -10557.404 0 345.68797 0.00016922027 0.00015444666 + 128050 -6243.7829 -6250.252 6.4690864 3672.1089 631.86522 -10554.226 0 310.03492 0.00027270365 0.00025555056 + 128060 -6244.0105 -6250.2571 6.2465701 3674.5959 631.48135 -10556.334 0 299.37069 0.00017599968 0.00015431117 + 128070 -6244.2556 -6250.7656 6.51002 3682.4942 629.91217 -10563.172 0 311.99669 -0.00010459189 -0.00012987873 + 128080 -6244.5669 -6251.6352 7.0682896 3693.907 627.5961 -10573.138 0 338.7521 -0.0005023298 -0.00052750269 + 128090 -6244.9726 -6252.6464 7.6737826 3706.0862 625.22349 -10583.956 0 367.77072 -0.00091491238 -0.00093590924 + 128100 -6245.4612 -6253.6065 8.1453205 3716.1054 623.52347 -10593.235 0 390.36946 -0.0012301144 -0.0012462837 + 128110 -6245.9932 -6254.4018 8.4085988 3721.6508 623.03925 -10599.092 0 402.98724 -0.0013581275 -0.0013738183 + 128120 -6246.5396 -6254.9736 8.4339466 3721.6787 623.97143 -10600.624 0 404.20204 -0.0012609554 -0.001282211 + 128130 -6247.1045 -6255.2808 8.1762348 3716.664 626.13161 -10598.076 0 391.85105 -0.00096574473 -0.00099436906 + 128140 -6247.7024 -6255.3152 7.6127864 3708.3333 629.0035 -10592.652 0 364.84744 -0.00055457064 -0.00058540794 + 128150 -6248.3153 -6255.1545 6.8391638 3699.0359 631.88188 -10586.072 0 327.7711 -0.00013577965 -0.00016050173 + 128160 -6248.8811 -6254.9734 6.0923259 3691.0617 634.05064 -10580.086 0 291.97844 0.00018835433 0.00017399278 + 128170 -6249.3281 -6254.9617 5.6335795 3686.1492 634.95807 -10576.069 0 269.99274 0.00034408798 0.00033611941 + 128180 -6249.6271 -6255.1923 5.5652036 3685.2354 634.34923 -10574.777 0 266.71578 0.00029535784 0.00028455629 + 128190 -6249.8169 -6255.549 5.7321702 3688.3559 632.32437 -10576.229 0 274.71776 4.5465721e-05 2.5162372e-05 + 128200 -6249.9803 -6255.7919 5.8115547 3694.621 629.30893 -10579.722 0 278.52231 -0.00036235547 -0.00039027054 + 128210 -6250.1802 -6255.7273 5.5471394 3702.3124 625.94264 -10583.982 0 265.85005 -0.00084650853 -0.00087296813 + 128220 -6250.4067 -6255.3551 4.9484255 3709.209 622.92083 -10587.485 0 237.15631 -0.0012984222 -0.0013151493 + 128230 -6250.5874 -6254.8681 4.2807133 3713.1681 620.83449 -10588.871 0 205.1558 -0.0016087183 -0.0016157283 + 128240 -6250.6535 -6254.5045 3.850985 3712.804 620.04833 -10587.357 0 184.56081 -0.001701638 -0.0017073355 + 128250 -6250.603 -6254.3801 3.7770581 3707.9777 620.63462 -10582.992 0 181.01782 -0.0015616954 -0.0015753675 + 128260 -6250.5037 -6254.4397 3.9359463 3699.8616 622.36691 -10576.668 0 188.63263 -0.0012382005 -0.0012617647 + 128270 -6250.435 -6254.5544 4.1193696 3690.5501 624.77489 -10569.879 0 197.42331 -0.00082544163 -0.00085206061 + 128280 -6250.4189 -6254.6542 4.2353107 3682.4122 627.25711 -10564.324 0 202.97985 -0.00043023676 -0.0004509627 + 128290 -6250.4047 -6254.7661 4.3613716 3677.471 629.2303 -10561.467 0 209.0214 -0.00014358053 -0.00015554883 + 128300 -6250.3205 -6254.9359 4.6154452 3676.9904 630.27397 -10562.2 0 221.19803 -2.5210403e-05 -3.3665255e-05 + 128310 -6250.1413 -6255.1376 4.9962275 3681.2714 630.22636 -10566.635 0 239.44726 -9.7661773e-05 -0.00011036355 + 128320 -6249.9109 -6255.2771 5.3662147 3689.5833 629.20785 -10574.068 0 257.17912 -0.00034254283 -0.0003623478 + 128330 -6249.6977 -6255.2923 5.5945795 3700.2203 627.5752 -10583.088 0 268.12364 -0.00069866332 -0.0007213614 + 128340 -6249.5302 -6255.2392 5.708961 3710.7682 625.82961 -10591.837 0 273.60544 -0.0010695011 -0.0010885492 + 128350 -6249.3749 -6255.2636 5.8887281 3718.6385 624.50378 -10598.406 0 282.22089 -0.0013460392 -0.0013590905 + 128360 -6249.1772 -6255.4658 6.2886101 3721.7737 624.04401 -10601.283 0 301.38548 -0.0014404599 -0.0014511723 + 128370 -6248.9214 -6255.7794 6.8579619 3719.2763 624.69573 -10599.751 0 328.67202 -0.0013165435 -0.0013303338 + 128380 -6248.6501 -6255.9866 7.3364883 3711.6965 626.41023 -10594.093 0 351.60568 -0.0010026757 -0.0010213023 + 128390 -6248.4232 -6255.8632 7.4399044 3700.8697 628.81027 -10585.543 0 356.56197 -0.00058266358 -0.00060321922 + 128400 -6248.2636 -6255.3281 7.0645182 3689.3919 631.25549 -10575.975 0 338.57135 -0.00017052561 -0.00018913543 + 128410 -6248.1461 -6254.4812 6.3350707 3679.9369 633.01261 -10567.431 0 303.61213 0.00011998185 0.00010438423 + 128420 -6248.0323 -6253.5261 5.4937888 3674.6079 633.47905 -10561.613 0 263.29318 0.00020344283 0.00018896837 + 128430 -6247.9041 -6252.67 4.7658662 3674.4525 632.3767 -10559.499 0 228.40705 4.4802733e-05 2.9189422e-05 + 128440 -6247.7638 -6252.0662 4.3023873 3679.229 629.84576 -10561.141 0 206.19454 -0.00032877352 -0.00034612125 + 128450 -6247.6122 -6251.8044 4.192223 3687.4796 626.41099 -10565.695 0 200.91485 -0.00083165409 -0.00084991376 + 128460 -6247.4324 -6251.9166 4.4841955 3696.9027 622.8398 -10571.659 0 214.90781 -0.001341009 -0.001359655 + 128470 -6247.1924 -6252.3744 5.1820188 3704.9464 619.94301 -10577.264 0 248.35142 -0.0017299946 -0.0017500813 + 128480 -6246.8668 -6253.081 6.2142567 3709.4765 618.37686 -10580.934 0 297.82205 -0.0019018711 -0.0019255612 + 128490 -6246.4628 -6253.8751 7.4123295 3709.3408 618.49176 -10581.708 0 355.24042 -0.0018143893 -0.0018428926 + 128500 -6246.0288 -6254.5692 8.5403376 3704.6593 620.25526 -10579.484 0 409.3009 -0.0014883293 -0.0015200232 + 128510 -6245.6326 -6255.0171 9.3845104 3696.7544 623.26345 -10575.035 0 449.7584 -0.00099991019 -0.0010306532 + 128520 -6245.3241 -6255.1684 9.8442555 3687.7677 626.84045 -10569.776 0 471.79196 -0.00046131037 -0.00048700778 + 128530 -6245.1154 -6255.0722 9.9568035 3680.102 630.20331 -10565.377 0 477.18589 5.3774713e-06 -1.4055358e-05 + 128540 -6244.9863 -6254.8367 9.8503196 3675.8281 632.64976 -10563.315 0 472.08259 0.00029619829 0.00028007479 + 128550 -6244.9096 -6254.5695 9.6598269 3676.1749 633.72376 -10564.468 0 462.95311 0.00034966438 0.00033059443 + 128560 -6244.8828 -6254.312 9.4292373 3681.2119 633.3249 -10568.849 0 451.90196 0.00016030242 0.0001321806 + 128570 -6244.95 -6253.9989 9.0489391 3689.7957 631.73502 -10575.53 0 433.67593 -0.00022169573 -0.00025955972 + 128580 -6245.1793 -6253.506 8.3266324 3699.7854 629.53901 -10582.83 0 399.05895 -0.00070128927 -0.00074126193 + 128590 -6245.5917 -6252.7944 7.2026856 3708.504 627.44301 -10588.741 0 345.19311 -0.0011566765 -0.0011871637 + 128600 -6246.1109 -6252.0265 5.9155976 3713.4278 626.04408 -10591.498 0 283.50863 -0.0014673782 -0.001482737 + 128610 -6246.6113 -6251.5033 4.8920001 3712.9963 625.64243 -10590.142 0 234.45209 -0.0015526955 -0.0015590865 + 128620 -6247.0342 -6251.4523 4.418183 3707.2338 626.16947 -10584.856 0 211.74412 -0.0014059822 -0.0014159132 + 128630 -6247.4424 -6251.869 4.4266581 3697.7996 627.24843 -10576.917 0 212.15029 -0.0011003651 -0.0011208846 + 128640 -6247.9427 -6252.563 4.6203561 3687.3521 628.35115 -10568.266 0 221.43339 -0.00075573676 -0.00078266191 + 128650 -6248.5639 -6253.3347 4.7708289 3678.5636 628.98476 -10560.883 0 228.64489 -0.00048663082 -0.00051004813 + 128660 -6249.2286 -6254.0913 4.8626879 3673.3255 628.83844 -10556.255 0 233.04729 -0.00036412253 -0.00037809011 + 128670 -6249.8273 -6254.8178 4.9905129 3672.4381 627.84951 -10555.105 0 239.17338 -0.00040748149 -0.00041430238 + 128680 -6250.2988 -6255.4798 5.1809989 3675.6882 626.19015 -10557.358 0 248.30254 -0.00059602875 -0.00060264476 + 128690 -6250.6539 -6255.9831 5.3291126 3682.0744 624.20064 -10562.258 0 255.40098 -0.0008839809 -0.00089517682 + 128700 -6250.9418 -6256.2325 5.2906845 3690.0437 622.2971 -10568.573 0 253.55929 -0.0012097237 -0.0012244828 + 128710 -6251.1979 -6256.2249 5.0269665 3697.759 620.87928 -10574.863 0 240.92044 -0.0015023064 -0.0015159638 + 128720 -6251.4177 -6256.0735 4.6558466 3703.4499 620.25769 -10579.781 0 223.13429 -0.0016921435 -0.0017015131 + 128730 -6251.5735 -6255.9341 4.3606161 3705.8235 620.607 -10582.365 0 208.98519 -0.0017278421 -0.0017342003 + 128740 -6251.6511 -6255.8946 4.2434646 3704.4126 621.94048 -10582.248 0 203.37063 -0.0015929067 -0.0016003839 + 128750 -6251.6685 -6255.9245 4.256054 3699.7151 624.09819 -10579.738 0 203.97399 -0.0013131512 -0.001324676 + 128760 -6251.6603 -6255.9228 4.2625064 3693.0543 626.75096 -10575.728 0 204.28323 -0.00095039785 -0.00096541839 + 128770 -6251.647 -6255.8135 4.1665831 3686.2103 629.43353 -10571.457 0 199.68604 -0.00058598811 -0.00060195114 + 128780 -6251.6215 -6255.6004 3.9788689 3680.9584 631.62037 -10568.179 0 190.68972 -0.00030193321 -0.0003173372 + 128790 -6251.5672 -6255.3392 3.7720077 3678.6501 632.83959 -10566.829 0 180.77577 -0.00016488749 -0.00018023541 + 128800 -6251.4829 -6255.0796 3.5967234 3679.9023 632.79559 -10567.778 0 172.37517 -0.00021275447 -0.00022865165 + 128810 -6251.383 -6254.8441 3.4611669 3684.4253 631.45834 -10570.728 0 165.87854 -0.00044318361 -0.00045849027 + 128820 -6251.2734 -6254.6547 3.3813138 3691.038 629.08641 -10574.779 0 162.05153 -0.00080825463 -0.00082104118 + 128830 -6251.1333 -6254.5506 3.4172922 3697.9247 626.17371 -10578.649 0 163.77582 -0.0012224462 -0.0012328413 + 128840 -6250.9275 -6254.5584 3.630939 3703.1094 623.33461 -10581.002 0 174.01497 -0.0015854733 -0.001596853 + 128850 -6250.6406 -6254.6431 4.0025381 3705.0069 621.158 -10580.808 0 191.82408 -0.0018116915 -0.0018282114 + 128860 -6250.2977 -6254.7062 4.4085338 3702.855 620.06524 -10577.626 0 211.28168 -0.0018530314 -0.0018756414 + 128870 -6249.9473 -6254.6556 4.7083254 3696.8969 620.20629 -10571.759 0 225.64937 -0.0017073852 -0.0017325498 + 128880 -6249.6196 -6254.4858 4.8662383 3688.3094 621.42482 -10564.22 0 233.21744 -0.0014140764 -0.0014367894 + 128890 -6249.3056 -6254.2893 4.9836896 3678.9486 623.30724 -10556.545 0 238.84637 -0.0010432891 -0.0010613215 + 128900 -6248.9762 -6254.1847 5.2084923 3670.9769 625.30169 -10550.463 0 249.62017 -0.00068317719 -0.00069825921 + 128910 -6248.6181 -6254.2374 5.6193316 3666.3976 626.868 -10547.503 0 269.3099 -0.00042271901 -0.00043801697 + 128920 -6248.2449 -6254.4394 6.1944928 3666.5504 627.61775 -10548.608 0 296.87485 -0.00032908972 -0.0003463635 + 128930 -6247.8788 -6254.7394 6.8606725 3671.7003 627.41609 -10553.856 0 328.80192 -0.00042576264 -0.00044520342 + 128940 -6247.5346 -6255.0646 7.5299933 3680.8863 626.42782 -10562.379 0 360.87953 -0.00068251032 -0.00070439459 + 128950 -6247.2279 -6255.3056 8.0776928 3692.1151 625.09073 -10572.511 0 387.12836 -0.0010236536 -0.0010487105 + 128960 -6246.9883 -6255.3129 8.3245519 3702.84 624.00459 -10582.157 0 398.95924 -0.0013503435 -0.0013779533 + 128970 -6246.8468 -6254.9577 8.1108907 3710.5751 623.74735 -10589.28 0 388.71939 -0.0015669166 -0.0015938961 + 128980 -6246.8005 -6254.2329 7.4323711 3713.492 624.67013 -10592.395 0 356.20093 -0.001604367 -0.0016269556 + 128990 -6246.8001 -6253.2967 6.4965762 3710.8818 626.75201 -10590.93 0 311.35238 -0.0014388161 -0.0014562998 + 129000 -6246.7847 -6252.4018 5.6170952 3703.3688 629.58092 -10585.352 0 269.20272 -0.0011022368 -0.0011179755 + 129010 -6246.7281 -6251.7583 5.0301978 3692.7857 632.47033 -10577.014 0 241.0753 -0.00067927764 -0.0006975162 + 129020 -6246.6495 -6251.4424 4.7928794 3681.7 634.66153 -10567.804 0 229.70167 -0.00028587798 -0.00030747939 + 129030 -6246.5812 -6251.4107 4.8295364 3672.7154 635.53475 -10559.661 0 231.45848 -3.4212109e-05 -5.5813313e-05 + 129040 -6246.5258 -6251.5808 5.055016 3667.7789 634.76312 -10554.123 0 242.26473 2.2466222e-06 -1.5425966e-05 + 129050 -6246.4473 -6251.8954 5.4480466 3667.7215 632.37645 -10551.993 0 261.10096 -0.00019167068 -0.00020550262 + 129060 -6246.305 -6252.3211 6.016089 3672.1501 628.73929 -10553.21 0 288.32474 -0.00057469446 -0.00058945318 + 129070 -6246.0997 -6252.8125 6.7128 3679.6496 624.46832 -10556.93 0 321.71504 -0.0010657155 -0.001086463 + 129080 -6245.885 -6253.3075 7.4225001 3688.1622 620.31298 -10561.783 0 355.72785 -0.0015630976 -0.0015899727 + 129090 -6245.7263 -6253.7716 8.0453267 3695.4357 617.01614 -10566.223 0 385.5772 -0.0019611706 -0.0019889162 + 129100 -6245.6484 -6254.2296 8.5812156 3699.5111 615.1748 -10568.915 0 411.26 -0.0021679152 -0.0021909828 + 129110 -6245.6301 -6254.718 9.0878657 3699.2256 615.12626 -10569.07 0 435.54152 -0.0021280839 -0.0021459746 + 129120 -6245.6528 -6255.1876 9.5348388 3694.6119 616.87927 -10566.679 0 456.96298 -0.0018454969 -0.0018626103 + 129130 -6245.7404 -6255.4701 9.7296904 3686.9838 620.09792 -10562.552 0 466.30136 -0.0013895339 -0.0014101398 + 129140 -6245.9372 -6255.3768 9.4396629 3678.58 624.14681 -10558.104 0 452.40161 -0.00087636018 -0.00090083448 + 129150 -6246.2473 -6254.8493 8.6019382 3671.8702 628.21277 -10554.932 0 412.25314 -0.00043222205 -0.0004583964 + 129160 -6246.6177 -6254.0108 7.3931635 3668.8119 631.49846 -10554.321 0 354.32188 -0.00015749886 -0.00018401473 + 129170 -6246.9852 -6253.0801 6.0948759 3670.3255 633.43338 -10556.839 0 292.10065 -0.00010478497 -0.00013135985 + 129180 -6247.3242 -6252.2557 4.931539 3676.0816 633.81637 -10562.154 0 236.34702 -0.00027107751 -0.00029607639 + 129190 -6247.6369 -6251.6841 4.0472293 3684.5953 632.8314 -10569.111 0 193.96594 -0.00060005693 -0.0006202724 + 129200 -6247.9159 -6251.4822 3.566265 3693.6187 630.94412 -10576.045 0 170.91543 -0.00099599217 -0.001010289 + 129210 -6248.1405 -6251.7199 3.5793912 3700.7772 628.73689 -10581.234 0 171.54451 -0.0013514932 -0.0013637839 + 129220 -6248.3113 -6252.348 4.0367755 3704.2596 626.74576 -10583.353 0 193.46493 -0.0015816253 -0.0015984874 + 129230 -6248.4762 -6253.1696 4.6934021 3703.2925 625.33848 -10581.801 0 224.93416 -0.0016485092 -0.0016730329 + 129240 -6248.7059 -6253.9263 5.2203984 3698.2378 624.64952 -10576.814 0 250.19078 -0.0015649224 -0.0015931777 + 129250 -6249.0347 -6254.4497 5.414948 3690.3571 624.57709 -10569.384 0 259.51469 -0.0013792656 -0.0014034676 + 129260 -6249.4277 -6254.7497 5.3219531 3681.4189 624.83977 -10561.008 0 255.05785 -0.0011549058 -0.0011705106 + 129270 -6249.8113 -6254.9644 5.1530287 3673.3069 625.07808 -10553.349 0 246.96205 -0.00095545822 -0.00096530889 + 129280 -6250.1411 -6255.221 5.0799531 3667.6797 624.97319 -10547.874 0 243.45986 -0.00083688287 -0.00084837388 + 129290 -6250.4379 -6255.5317 5.0938054 3665.6596 624.3489 -10545.54 0 244.12374 -0.00083926525 -0.00085732658 + 129300 -6250.7597 -6255.8072 5.0475155 3667.5599 623.22823 -10546.595 0 241.90527 -0.00097431634 -0.00099697522 + 129310 -6251.1378 -6255.9582 4.8204037 3672.7475 621.82953 -10550.535 0 231.02079 -0.001214796 -0.0012353932 + 129320 -6251.5415 -6255.9767 4.4352065 3679.773 620.50444 -10556.254 0 212.55998 -0.0014971162 -0.0015107185 + 129330 -6251.9036 -6255.9249 4.0212925 3686.7931 619.637 -10562.355 0 192.7229 -0.001741349 -0.0017490385 + 129340 -6252.1771 -6255.8573 3.6802373 3692.1345 619.53309 -10567.525 0 176.37762 -0.0018798241 -0.0018870466 + 129350 -6252.3671 -6255.7682 3.4011356 3694.7579 620.32958 -10570.856 0 163.0015 -0.0018790691 -0.0018902084 + 129360 -6252.5135 -6255.6203 3.1068683 3694.4425 621.9471 -10572.01 0 148.89856 -0.0017454496 -0.0017601277 + 129370 -6252.6481 -6255.418 2.7698871 3691.6912 624.10173 -10571.211 0 132.74853 -0.0015163233 -0.0015306333 + 129380 -6252.77 -6255.2382 2.4681833 3687.4802 626.37567 -10569.094 0 118.28919 -0.0012457287 -0.0012564991 + 129390 -6252.8559 -6255.1795 2.3235965 3682.9881 628.32523 -10566.493 0 111.35978 -0.00099197547 -0.00099957885 + 129400 -6252.8889 -6255.2785 2.3895683 3679.3509 629.58904 -10564.218 0 114.52152 -0.00080815763 -0.0008155382 + 129410 -6252.8729 -6255.4729 2.5999598 3677.4379 629.96203 -10562.873 0 124.60466 -0.00073315893 -0.00074276378 + 129420 -6252.8242 -6255.6455 2.8212875 3677.654 629.41945 -10562.719 0 135.21193 -0.00078292944 -0.00079483769 + 129430 -6252.7515 -6255.7036 2.9521391 3679.8319 628.0965 -10563.632 0 141.48307 -0.00094567017 -0.00095832745 + 129440 -6252.6469 -6255.6306 2.9837855 3683.272 626.24062 -10565.143 0 142.99974 -0.0011846967 -0.0011968694 + 129450 -6252.4906 -6255.4799 2.9892794 3686.9331 624.15451 -10566.567 0 143.26304 -0.0014484822 -0.0014603012 + 129460 -6252.2603 -6255.3345 3.0742372 3689.7043 622.14413 -10567.183 0 147.3347 -0.0016830738 -0.001695523 + 129470 -6251.9312 -6255.2671 3.3359149 3690.6698 620.48204 -10566.419 0 159.87576 -0.0018418768 -0.0018556866 + 129480 -6251.4713 -6255.3144 3.8430985 3689.3075 619.38857 -10564.011 0 184.18284 -0.001891438 -0.0019065437 + 129490 -6250.8529 -6255.465 4.6121302 3685.6142 619.02189 -10560.101 0 221.03916 -0.001815987 -0.0018318197 + 129500 -6250.0936 -6255.6507 5.5571748 3680.1779 619.45651 -10555.285 0 266.331 -0.0016242059 -0.0016402445 + 129510 -6249.2912 -6255.752 6.4608406 3674.1653 620.63728 -10550.555 0 309.63973 -0.0013558124 -0.0013717726 + 129520 -6248.5811 -6255.6379 7.0568382 3669.1153 622.33487 -10547.088 0 338.20328 -0.00107782 -0.0010935681 + 129530 -6248.0429 -6255.2343 7.1913415 3666.5105 624.16337 -10545.908 0 344.64943 -0.000865204 -0.00088099151 + 129540 -6247.6678 -6254.5656 6.8978651 3667.2955 625.69154 -10547.553 0 330.5844 -0.00077555411 -0.00079240292 + 129550 -6247.4047 -6253.7337 6.3289868 3671.5576 626.6057 -10551.897 0 303.32056 -0.00083086411 -0.00085009037 + 129560 -6247.2129 -6252.8604 5.6474505 3678.4642 626.83997 -10558.165 0 270.65752 -0.0010112562 -0.001033038 + 129570 -6247.0733 -6252.05 4.9766944 3686.4477 626.60373 -10565.101 0 238.51112 -0.0012595391 -0.0012820637 + 129580 -6246.9697 -6251.3921 4.4223453 3693.5802 626.28755 -10571.26 0 211.9436 -0.0014950682 -0.0015158141 + 129590 -6246.8694 -6250.9734 4.103926 3698.0598 626.29254 -10575.326 0 196.68316 -0.0016357117 -0.0016542781 + 129600 -6246.7295 -6250.8548 4.1252753 3698.7072 626.86639 -10576.428 0 197.70634 -0.0016242536 -0.0016437318 + 129610 -6246.5282 -6251.0178 4.4895809 3695.3331 628.01411 -10574.365 0 215.16591 -0.0014504535 -0.0014748918 + 129620 -6246.2859 -6251.3518 5.0658991 3688.8232 629.49778 -10569.673 0 242.78631 -0.0011573632 -0.001187227 + 129630 -6246.0429 -6251.7332 5.6902675 3680.8689 630.90001 -10563.502 0 272.70955 -0.00082658283 -0.00085745349 + 129640 -6245.811 -6252.1317 6.320732 3673.4557 631.72801 -10557.315 0 302.92494 -0.00054993448 -0.00057675845 + 129650 -6245.5574 -6252.6228 7.0654009 3668.3335 631.54701 -10552.503 0 338.61366 -0.0004029239 -0.0004254256 + 129660 -6245.2502 -6253.2748 8.0246106 3666.6314 630.12225 -10550.028 0 384.58437 -0.00042975417 -0.00045251456 + 129670 -6244.9198 -6254.0272 9.107473 3668.633 627.52664 -10550.187 0 436.48121 -0.00063706302 -0.00066367511 + 129680 -6244.6588 -6254.6941 10.035351 3673.6718 624.16644 -10552.532 0 480.95035 -0.00098932652 -0.0010174648 + 129690 -6244.5486 -6255.0938 10.545151 3680.2082 620.70274 -10556.005 0 505.38279 -0.0014081442 -0.0014320344 + 129700 -6244.5917 -6255.1579 10.566206 3686.2088 617.88848 -10559.255 0 506.39189 -0.0017869801 -0.0018048164 + 129710 -6244.7318 -6254.9063 10.174474 3689.8066 616.37086 -10561.084 0 487.61789 -0.002025416 -0.0020424285 + 129720 -6244.9299 -6254.3513 9.4213906 3689.956 616.51291 -10560.82 0 451.5259 -0.0020669407 -0.0020897637 + 129730 -6245.1909 -6253.4845 8.2935478 3686.7354 618.28206 -10558.502 0 397.47335 -0.0019164623 -0.0019453319 + 129740 -6245.5173 -6252.3745 6.8571841 3681.1897 621.24842 -10554.813 0 328.63474 -0.0016293826 -0.0016572907 + 129750 -6245.8624 -6251.2425 5.3801208 3674.8922 624.7089 -10550.844 0 257.84558 -0.0012852583 -0.0013048449 + 129760 -6246.1477 -6250.4002 4.2524798 3669.4847 627.89798 -10547.783 0 203.80269 -0.0009641625 -0.00097486204 + 129770 -6246.3205 -6250.0815 3.7610545 3666.3375 630.20245 -10546.622 0 180.25083 -0.00073290007 -0.00074141345 + 129780 -6246.391 -6250.3044 3.9134505 3666.319 631.30313 -10547.927 0 187.5545 -0.00063669979 -0.0006508533 + 129790 -6246.4226 -6250.8766 4.4540143 3669.6154 631.20783 -10551.7 0 213.46136 -0.00069076635 -0.00071273048 + 129800 -6246.4835 -6251.5407 5.0571853 3675.6157 630.18472 -10557.341 0 242.3687 -0.00087322805 -0.000898239 + 129810 -6246.5957 -6252.139 5.5432611 3682.9636 628.63831 -10563.741 0 265.66417 -0.0011273371 -0.001148777 + 129820 -6246.7269 -6252.6685 5.941643 3689.8639 626.98334 -10569.516 0 284.75687 -0.0013781278 -0.0013937574 + 129830 -6246.8329 -6253.2017 6.3687724 3694.5899 625.55662 -10573.348 0 305.22731 -0.0015579906 -0.0015713157 + 129840 -6246.9079 -6253.7712 6.8632834 3695.9896 624.57318 -10574.334 0 328.92705 -0.0016277197 -0.0016438511 + 129850 -6246.9919 -6254.3275 7.3356716 3693.7793 624.11152 -10572.218 0 351.56654 -0.0015834437 -0.001604255 + 129860 -6247.1357 -6254.7806 7.6448352 3688.5484 624.11686 -10567.446 0 366.3834 -0.0014507687 -0.0014738776 + 129870 -6247.3622 -6255.0583 7.6961149 3681.5395 624.42452 -10561.022 0 368.84101 -0.0012737057 -0.0012952368 + 129880 -6247.6558 -6255.132 7.4762484 3674.318 624.80744 -10554.257 0 358.30377 -0.0011035958 -0.0011214094 + 129890 -6247.9796 -6255.0105 7.0309422 3668.4154 625.03952 -10548.465 0 336.9622 -0.00098844331 -0.001003251 + 129900 -6248.296 -6254.7312 6.4352339 3665.0064 624.95653 -10544.694 0 308.41252 -0.00096222207 -0.00097668033 + 129910 -6248.5786 -6254.3557 5.7770632 3664.6748 624.49768 -10543.528 0 276.86928 -0.0010365103 -0.001053654 + 129920 -6248.8191 -6253.9551 5.1359082 3667.3159 623.72043 -10544.991 0 246.14154 -0.0011982038 -0.0012198505 + 129930 -6249.0296 -6253.5852 4.5555464 3672.1861 622.78719 -10548.559 0 218.32735 -0.0014140081 -0.0014392889 + 129940 -6249.232 -6253.2806 4.0485558 3678.0684 621.92549 -10553.274 0 194.02951 -0.0016382451 -0.0016633723 + 129950 -6249.4344 -6253.0786 3.6441907 3683.522 621.37014 -10557.971 0 174.65007 -0.0018207951 -0.0018413463 + 129960 -6249.6173 -6253.0353 3.4179922 3687.2086 621.30569 -10561.55 0 163.80936 -0.001915985 -0.0019305462 + 129970 -6249.7486 -6253.1902 3.441555 3688.252 621.82627 -10563.268 0 164.93863 -0.0018941775 -0.0019058561 + 129980 -6249.816 -6253.5068 3.6907937 3686.5137 622.91514 -10562.936 0 176.88354 -0.0017532573 -0.0017671044 + 129990 -6249.8425 -6253.8607 4.0182585 3682.6423 624.43644 -10560.939 0 192.57749 -0.001523227 -0.0015417418 + 130000 -6249.8682 -6254.1059 4.2377143 3677.857 626.13836 -10558.101 0 203.09505 -0.0012593913 -0.0012802854 + 130010 -6249.915 -6254.1742 4.259264 3673.5591 627.6805 -10555.414 0 204.12783 -0.0010261912 -0.0010445165 + 130020 -6249.9635 -6254.1262 4.1626863 3670.9331 628.69797 -10553.757 0 199.49928 -0.00087898207 -0.00089179717 + 130030 -6249.967 -6254.1083 4.1412853 3670.6699 628.89729 -10553.675 0 198.47363 -0.00085117113 -0.0008605341 + 130040 -6249.8891 -6254.2423 4.3532245 3672.8535 628.15609 -10555.252 0 208.63095 -0.000949313 -0.00096063877 + 130050 -6249.7333 -6254.5336 4.8003268 3676.9718 626.58629 -10558.092 0 230.05859 -0.0011533493 -0.0011703166 + 130060 -6249.5353 -6254.8734 5.3380258 3682.0007 624.5284 -10561.402 0 255.82815 -0.0014184601 -0.0014391584 + 130070 -6249.3223 -6255.1296 5.8072877 3686.5683 622.47094 -10564.169 0 278.31781 -0.001679455 -0.0016978032 + 130080 -6249.0749 -6255.2396 6.1647477 3689.2474 620.91984 -10565.407 0 295.4493 -0.0018626531 -0.0018743064 + 130090 -6248.7337 -6255.2166 6.4829731 3688.9784 620.26215 -10564.457 0 310.70045 -0.0019075519 -0.0019147988 + 130100 -6248.2524 -6255.0726 6.8201776 3685.4937 620.66488 -10561.231 0 326.86118 -0.0017915757 -0.0018020789 + 130110 -6247.6524 -6254.7535 7.1011118 3679.5231 622.03062 -10556.307 0 340.32512 -0.0015439897 -0.0015640092 + 130120 -6247.0223 -6254.1743 7.1519997 3672.6218 624.01619 -10550.812 0 342.76396 -0.001238082 -0.0012665505 + 130130 -6246.4545 -6253.3253 6.870828 3666.6644 626.11648 -10546.106 0 329.28863 -0.0009637527 -0.00099310802 + 130140 -6245.9775 -6252.3324 6.354906 3663.245 627.80623 -10543.384 0 304.56275 -0.00079562124 -0.00081858376 + 130150 -6245.5498 -6251.3907 5.8408759 3663.2448 628.70284 -10543.338 0 279.92754 -0.00077280097 -0.00078832023 + 130160 -6245.1149 -6250.6304 5.5155292 3666.6735 628.68628 -10545.99 0 264.33511 -0.00089483051 -0.00090777591 + 130170 -6244.6567 -6250.0498 5.393066 3672.7271 627.92071 -10550.698 0 258.46598 -0.0011269393 -0.0011429123 + 130180 -6244.2018 -6249.5748 5.3730038 3679.9727 626.77068 -10556.318 0 257.50449 -0.0014079569 -0.0014290679 + 130190 -6243.7799 -6249.1774 5.3975489 3686.643 625.65897 -10561.479 0 258.68083 -0.0016616309 -0.0016868177 + 130200 -6243.394 -6248.9284 5.5343437 3691.0416 624.93527 -10564.905 0 265.2368 -0.001814665 -0.0018425017 + 130210 -6243.0305 -6248.9453 5.9148578 3691.987 624.80056 -10565.733 0 283.47318 -0.0018181111 -0.0018479342 + 130220 -6242.6841 -6249.3109 6.6268348 3689.141 625.28574 -10563.738 0 317.59511 -0.0016619152 -0.0016926212 + 130230 -6242.3621 -6250.0417 7.6795776 3683.104 626.25845 -10559.404 0 368.04845 -0.001375821 -0.0014054793 + 130240 -6242.0723 -6251.0973 9.0250108 3675.2818 627.44572 -10553.825 0 432.52916 -0.001020336 -0.001048272 + 130250 -6241.8317 -6252.3669 10.535273 3667.5887 628.48458 -10548.44 0 504.90939 -0.00067571711 -0.0007042229 + 130260 -6241.6981 -6253.6351 11.936994 3662.0232 629.01244 -10544.671 0 572.08775 -0.00042967029 -0.00046202182 + 130270 -6241.7699 -6254.6048 12.834978 3660.1351 628.78102 -10543.521 0 615.12416 -0.00035720264 -0.00039361345 + 130280 -6242.1198 -6255.0196 12.899808 3662.5116 627.75235 -10545.284 0 618.23116 -0.00049252057 -0.00052917323 + 130290 -6242.7156 -6254.8004 12.084809 3668.5212 626.13353 -10549.455 0 579.17186 -0.0008080287 -0.00084094697 + 130300 -6243.42 -6254.0779 10.657938 3676.4932 624.32957 -10554.901 0 510.78819 -0.0012188602 -0.0012482429 + 130310 -6244.0804 -6253.0936 9.0132057 3684.27 622.82649 -10560.19 0 431.96339 -0.0016142916 -0.0016441395 + 130320 -6244.6183 -6252.0667 7.4483481 3689.8626 622.04655 -10563.976 0 356.96664 -0.0018970459 -0.001930428 + 130330 -6245.0406 -6251.137 6.0963991 3691.9426 622.2254 -10565.305 0 292.17365 -0.0020092204 -0.0020444049 + 130340 -6245.3854 -6250.3968 5.0113544 3690.071 623.34844 -10563.816 0 240.17222 -0.0019383557 -0.0019699088 + 130350 -6245.6688 -6249.9362 4.2674117 3684.7108 625.15935 -10559.806 0 204.51831 -0.0017112041 -0.0017349805 + 130360 -6245.8756 -6249.8332 3.9576041 3677.1046 627.2301 -10554.168 0 189.6706 -0.0013849436 -0.0014021238 + 130370 -6245.9905 -6250.093 4.1024505 3669.046 629.06469 -10548.204 0 196.61245 -0.0010387648 -0.0010549842 + 130380 -6246.0319 -6250.6117 4.5797408 3662.5253 630.20554 -10543.343 0 219.48687 -0.00076168412 -0.00078193213 + 130390 -6246.0505 -6251.2273 5.1768382 3659.2516 630.32092 -10540.8 0 248.10314 -0.00063228832 -0.00065651035 + 130400 -6246.0903 -6251.8336 5.743294 3660.1564 629.26815 -10541.258 0 275.25087 -0.00069398263 -0.00071788687 + 130410 -6246.1523 -6252.4489 6.2965736 3665.0757 627.13661 -10544.661 0 301.76714 -0.00093786564 -0.00095813158 + 130420 -6246.2048 -6253.1599 6.9550876 3672.7703 624.26741 -10550.198 0 333.32682 -0.0013042112 -0.0013224251 + 130430 -6246.2357 -6253.9824 7.7467028 3681.2801 621.22939 -10556.492 0 371.26547 -0.001701691 -0.0017225161 + 130440 -6246.2884 -6254.7766 8.4881877 3688.4506 618.72442 -10561.952 0 406.80158 -0.0020326811 -0.002058205 + 130450 -6246.4333 -6255.31 8.8767421 3692.4511 617.41663 -10565.178 0 425.42329 -0.0022142276 -0.0022409974 + 130460 -6246.6982 -6255.4142 8.716018 3692.196 617.72675 -10565.337 0 417.72049 -0.0021939989 -0.002216356 + 130470 -6247.0341 -6255.0866 8.0524941 3687.6427 619.67139 -10562.401 0 385.9207 -0.0019651621 -0.0019811161 + 130480 -6247.3568 -6254.4611 7.1042445 3679.8932 622.82163 -10557.176 0 340.47526 -0.0015770227 -0.0015900217 + 130490 -6247.6141 -6253.7092 6.0950644 3670.9847 626.40625 -10551.1 0 292.10968 -0.0011299412 -0.0011450436 + 130500 -6247.8078 -6252.9787 5.170922 3663.3428 629.52811 -10545.85 0 247.8196 -0.00074789248 -0.00076715949 + 130510 -6247.9631 -6252.3899 4.4268972 3659.0607 631.42423 -10542.875 0 212.16175 -0.00053783733 -0.0005596334 + 130520 -6248.0942 -6252.0363 3.9420712 3659.2832 631.68365 -10543.003 0 188.92617 -0.00055531301 -0.00057705765 + 130530 -6248.1985 -6251.954 3.7554647 3663.9124 630.3484 -10546.215 0 179.98294 -0.00079075864 -0.0008113823 + 130540 -6248.2708 -6252.0956 3.8248107 3671.6846 627.8656 -10551.646 0 183.30639 -0.0011778887 -0.0011978326 + 130550 -6248.3126 -6252.3521 4.039418 3680.5406 624.91967 -10557.812 0 193.59158 -0.0016161268 -0.001636044 + 130560 -6248.3271 -6252.6161 4.2890484 3688.1687 622.21905 -10563.004 0 205.55526 -0.001997947 -0.0020181603 + 130570 -6248.3114 -6252.8372 4.5257598 3692.5898 620.31646 -10565.743 0 216.8998 -0.0022346643 -0.0022557293 + 130580 -6248.2581 -6253.0275 4.7694285 3692.6473 619.50657 -10565.181 0 228.57778 -0.0022762842 -0.0022994784 + 130590 -6248.1633 -6253.2276 5.064311 3688.2803 619.80234 -10561.31 0 242.7102 -0.0021219852 -0.0021487397 + 130600 -6248.0338 -6253.4635 5.4297008 3680.5209 620.96991 -10554.954 0 260.22173 -0.0018187709 -0.0018492804 + 130610 -6247.8831 -6253.7286 5.8454824 3671.2234 622.60347 -10547.555 0 280.14832 -0.0014477705 -0.00148009 + 130620 -6247.7165 -6253.9969 6.2804455 3662.5964 624.22908 -10540.822 0 300.99419 -0.0011014084 -0.001132317 + 130630 -6247.5177 -6254.2435 6.7257686 3656.6646 625.4236 -10536.332 0 322.33657 -0.00085893886 -0.00088630072 + 130640 -6247.255 -6254.4375 7.1824809 3654.8091 625.92426 -10535.171 0 344.22479 -0.00076885865 -0.00079327073 + 130650 -6246.9069 -6254.5131 7.6061415 3657.4923 625.69489 -10537.7 0 364.52898 -0.00084217021 -0.00086588015 + 130660 -6246.4831 -6254.3678 7.8846705 3664.1874 624.92169 -10543.477 0 377.87765 -0.0010541035 -0.001078166 + 130670 -6246.014 -6253.9221 7.9081128 3673.484 623.93771 -10551.344 0 379.00114 -0.0013502904 -0.0013733279 + 130680 -6245.5197 -6253.1974 7.6776547 3683.3607 623.11037 -10559.668 0 367.95629 -0.0016569155 -0.001677159 + 130690 -6244.9937 -6252.3289 7.3352579 3691.6117 622.74275 -10566.683 0 351.54672 -0.0018962648 -0.0019144873 + 130700 -6244.4208 -6251.4915 7.0707616 3696.3526 623.0223 -10570.866 0 338.87057 -0.0020054182 -0.0020250467 + 130710 -6243.807 -6250.7997 6.9927362 3696.4596 624.01356 -10571.273 0 335.13115 -0.0019512866 -0.001975168 + 130720 -6243.1856 -6250.2671 7.0814575 3691.8122 625.66552 -10567.745 0 339.38318 -0.0017362503 -0.0017635233 + 130730 -6242.5922 -6249.843 7.250825 3683.304 627.80899 -10560.956 0 347.50022 -0.0013949248 -0.0014216446 + 130740 -6242.0351 -6249.4709 7.4357726 3672.6687 630.14527 -10552.285 0 356.36394 -0.00098770125 -0.0010108213 + 130750 -6241.5002 -6249.1115 7.6113487 3662.1769 632.25048 -10543.539 0 364.77854 -0.00059497788 -0.00061532579 + 130760 -6240.9815 -6248.739 7.7574987 3654.2115 633.62169 -10536.572 0 371.78286 -0.00030848691 -0.00032952944 + 130770 -6240.498 -6248.3652 7.8671672 3650.7329 633.77459 -10532.873 0 377.03879 -0.00021260455 -0.00023705625 + 130780 -6240.072 -6248.0856 8.0135825 3652.7362 632.38245 -10533.204 0 384.05584 -0.00035685233 -0.00038537958 + 130790 -6239.7074 -6248.0704 8.362983 3659.8981 629.4241 -10537.393 0 400.80107 -0.0007328115 -0.00076533597 + 130800 -6239.4017 -6248.463 9.0613609 3670.5609 625.28452 -10544.308 0 434.27126 -0.0012689255 -0.0013054172 + 130810 -6239.1782 -6249.2651 10.086912 3682.0706 620.74558 -10552.081 0 483.42141 -0.0018451466 -0.0018844228 + 130820 -6239.0949 -6250.3095 11.214635 3691.3949 616.83276 -10558.537 0 537.46826 -0.0023204784 -0.0023592294 + 130830 -6239.215 -6251.344 12.128938 3695.9114 614.53935 -10561.795 0 581.28674 -0.0025670384 -0.0026015735 + 130840 -6239.5656 -6252.1499 12.584319 3694.1976 614.50913 -10560.857 0 603.11117 -0.0025065383 -0.0025362425 + 130850 -6240.124 -6252.6105 12.486485 3686.5653 616.79799 -10555.974 0 598.42241 -0.002140945 -0.0021695277 + 130860 -6240.8395 -6252.7011 11.861586 3675.0789 620.82176 -10548.602 0 568.47376 -0.0015624905 -0.0015946457 + 130870 -6241.6555 -6252.456 10.800549 3662.9658 625.52568 -10540.947 0 517.62291 -0.00093058972 -0.00096687978 + 130880 -6242.5038 -6251.9679 9.4640676 3653.6002 629.71291 -10535.281 0 453.57122 -0.00041958711 -0.00045532027 + 130890 -6243.2972 -6251.4039 8.1066335 3649.4697 632.40228 -10533.276 0 388.51536 -0.00016088427 -0.0001907984 + 130900 -6243.9511 -6250.9688 7.0177824 3651.5356 633.08639 -10535.591 0 336.33151 -0.00020685811 -0.00023076847 + 130910 -6244.4246 -6250.8034 6.3787464 3659.1427 631.82203 -10541.768 0 305.70532 -0.00052741075 -0.00055076949 + 130920 -6244.7448 -6250.8937 6.1488312 3670.3475 629.15906 -10550.4 0 294.68649 -0.0010299655 -0.0010585395 + 130930 -6244.9885 -6251.0867 6.0982701 3682.4407 625.9537 -10559.481 0 292.26332 -0.0015870354 -0.0016208788 + 130940 -6245.2275 -6251.2188 5.9912625 3692.5269 623.12286 -10566.869 0 287.13492 -0.0020625501 -0.0020954923 + 130950 -6245.4764 -6251.2505 5.774141 3698.1359 621.4008 -10570.787 0 276.72924 -0.002338182 -0.0023637356 + 130960 -6245.6913 -6251.2834 5.5921734 3697.8309 621.15872 -10570.273 0 268.00833 -0.0023424797 -0.0023602427 + 130970 -6245.8254 -6251.446 5.6205947 3691.6625 622.32698 -10565.435 0 269.37044 -0.0020765396 -0.0020924279 + 130980 -6245.8836 -6251.7725 5.8889123 3681.2452 624.42821 -10557.446 0 282.22972 -0.0016212372 -0.0016415217 + 130990 -6245.9209 -6252.1937 6.2728348 3669.3338 626.71027 -10548.238 0 300.62944 -0.0011152514 -0.0011409011 + 131000 -6245.991 -6252.6237 6.6326995 3659.0156 628.3578 -10539.997 0 317.87618 -0.0007095636 -0.00073649048 + 131010 -6246.1045 -6253.0298 6.9253436 3652.8245 628.73901 -10534.593 0 331.90132 -0.00051889525 -0.00054292499 + 131020 -6246.2366 -6253.4107 7.1740103 3652.0893 627.61263 -10533.113 0 343.81883 -0.00059067275 -0.00061138777 + 131030 -6246.3682 -6253.7293 7.3610819 3656.6733 625.21318 -10535.616 0 352.78435 -0.00089879474 -0.0009186393 + 131040 -6246.5069 -6253.901 7.3941164 3665.1043 622.17403 -10541.179 0 354.36755 -0.0013566805 -0.0013775173 + 131050 -6246.6679 -6253.8603 7.192476 3675.0181 619.31698 -10548.195 0 344.70381 -0.0018419673 -0.0018635844 + 131060 -6246.8464 -6253.6316 6.785192 3683.8121 617.39382 -10554.837 0 325.18447 -0.0022288262 -0.0022504987 + 131070 -6247.0193 -6253.3213 6.3019481 3689.3444 616.87713 -10559.543 0 302.02471 -0.0024224617 -0.0024446763 + 131080 -6247.1708 -6253.0453 5.8745626 3690.4643 617.86252 -10561.372 0 281.542 -0.002384635 -0.0024085451 + 131090 -6247.3067 -6252.8623 5.5556762 3687.2202 620.09153 -10560.174 0 266.25918 -0.0021394706 -0.002164958 + 131100 -6247.4442 -6252.7618 5.3175863 3680.7257 623.06426 -10556.552 0 254.84857 -0.0017584965 -0.0017833449 + 131110 -6247.589 -6252.6975 5.1085193 3672.7818 626.18922 -10551.668 0 244.82891 -0.0013344729 -0.0013558339 + 131120 -6247.7242 -6252.6288 4.9045453 3665.4004 628.91783 -10546.947 0 235.05333 -0.00095676341 -0.00097368102 + 131130 -6247.8227 -6252.5356 4.7128653 3660.3594 630.8301 -10543.725 0 225.86695 -0.00069600394 -0.00071045029 + 131140 -6247.8723 -6252.4103 4.5380735 3658.8622 631.66836 -10542.941 0 217.48994 -0.00059751278 -0.00061257778 + 131150 -6247.8866 -6252.2572 4.3706693 3661.3125 631.33816 -10544.908 0 209.467 -0.00067781904 -0.0006947521 + 131160 -6247.8874 -6252.1167 4.2293826 3667.2114 629.90227 -10549.23 0 202.69575 -0.00092085219 -0.00093825288 + 131170 -6247.8769 -6252.0792 4.202259 3675.2253 627.58236 -10554.887 0 201.39583 -0.0012768354 -0.0012929122 + 131180 -6247.8336 -6252.2419 4.4082941 3683.4664 624.75904 -10560.467 0 211.27019 -0.0016696156 -0.0016846529 + 131190 -6247.7348 -6252.6293 4.8945271 3689.9402 621.93992 -10564.509 0 234.5732 -0.0020132926 -0.0020292419 + 131200 -6247.5788 -6253.1539 5.5750829 3693.0202 619.67096 -10565.845 0 267.18926 -0.0022322988 -0.002250128 + 131210 -6247.3802 -6253.6646 6.2844148 3691.8166 618.40067 -10563.882 0 301.18442 -0.0022778622 -0.0022961687 + 131220 -6247.1447 -6254.0403 6.8955964 3686.3805 618.34603 -10558.767 0 330.47567 -0.0021379025 -0.0021547964 + 131230 -6246.8568 -6254.242 7.3851361 3677.7394 619.42261 -10551.404 0 353.93716 -0.0018410222 -0.0018572634 + 131240 -6246.4984 -6254.2815 7.7830938 3667.7501 621.27377 -10543.305 0 373.00952 -0.0014545235 -0.0014740303 + 131250 -6246.0818 -6254.1538 8.0719467 3658.7377 623.38527 -10536.277 0 386.85298 -0.0010733336 -0.0010997826 + 131260 -6245.6577 -6253.8155 8.1577568 3652.939 625.23549 -10531.99 0 390.96548 -0.00079703892 -0.00082978154 + 131270 -6245.2793 -6253.2383 7.9589804 3651.8755 626.42976 -10531.544 0 381.439 -0.00069915114 -0.00073303236 + 131280 -6244.9561 -6252.4749 7.518802 3655.8866 626.78863 -10535.15 0 360.34318 -0.00080158322 -0.00083142386 + 131290 -6244.6461 -6251.6547 7.0085828 3664.0208 626.38089 -10542.056 0 335.89061 -0.0010679742 -0.0010933946 + 131300 -6244.2965 -6250.9023 6.6058272 3674.3227 625.50123 -10550.726 0 316.58831 -0.0014184227 -0.0014440913 + 131310 -6243.8916 -6250.2586 6.367002 3684.3737 624.5955 -10559.228 0 305.14246 -0.001755259 -0.001786256 + 131320 -6243.4626 -6249.6857 6.2230712 3691.8771 624.14165 -10565.704 0 298.24449 -0.0019869118 -0.0020238079 + 131330 -6243.0497 -6249.1521 6.1024863 3695.141 624.5074 -10568.801 0 292.46539 -0.0020448776 -0.0020834126 + 131340 -6242.6563 -6248.711 6.0547755 3693.4152 625.82247 -10567.949 0 290.17882 -0.0018969539 -0.0019324707 + 131350 -6242.2429 -6248.4844 6.2414895 3687.0823 627.90936 -10563.476 0 299.1272 -0.0015593066 -0.0015910556 + 131360 -6241.7672 -6248.5695 6.8022581 3677.6535 630.30135 -10556.524 0 326.00238 -0.0011019281 -0.0011326781 + 131370 -6241.2263 -6248.9683 7.7419337 3667.482 632.34724 -10548.798 0 371.0369 -0.000637338 -0.00066940063 + 131380 -6240.6586 -6249.6072 8.9486457 3659.1763 633.38058 -10542.164 0 428.86931 -0.00028966441 -0.00032267164 + 131390 -6240.1141 -6250.3934 10.279318 3654.8701 632.91701 -10538.18 0 492.64257 -0.00015594539 -0.00018892747 + 131400 -6239.6455 -6251.2157 11.570267 3655.6161 630.82681 -10537.659 0 554.5121 -0.00027823194 -0.00031226494 + 131410 -6239.3297 -6251.9026 12.572879 3661.1048 627.41792 -10540.425 0 602.5629 -0.00063543154 -0.00067227639 + 131420 -6239.2634 -6252.2425 12.979116 3669.7496 623.38091 -10545.373 0 622.03207 -0.0011497876 -0.0011881927 + 131430 -6239.4977 -6252.1096 12.611966 3679.0955 619.60147 -10550.807 0 604.4362 -0.0017018084 -0.0017373434 + 131440 -6239.976 -6251.5789 11.602884 3686.49 616.91023 -10554.979 0 556.07529 -0.0021557132 -0.0021854643 + 131450 -6240.5639 -6250.8961 10.332194 3689.8685 615.86824 -10556.633 0 495.17671 -0.0023966831 -0.0024230551 + 131460 -6241.1479 -6250.3129 9.1650359 3688.3897 616.65318 -10555.356 0 439.23994 -0.0023683001 -0.0023966123 + 131470 -6241.6986 -6249.9441 8.2454608 3682.6497 619.05122 -10551.645 0 395.16874 -0.0020905828 -0.0021228042 + 131480 -6242.2394 -6249.7694 7.5299223 3674.3998 622.52624 -10546.695 0 360.87613 -0.001648308 -0.0016803087 + 131490 -6242.7739 -6249.7426 6.9687493 3665.9433 626.3428 -10542.029 0 333.98157 -0.001158206 -0.0011840251 + 131500 -6243.2573 -6249.866 6.6087458 3659.4981 629.72548 -10539.09 0 316.72818 -0.00073462231 -0.00075323215 + 131510 -6243.6357 -6250.1553 6.5195487 3656.721 632.02628 -10538.903 0 312.45336 -0.00046730846 -0.00048455145 + 131520 -6243.902 -6250.5599 6.6578998 3658.4125 632.86094 -10541.833 0 319.08392 -0.00041027336 -0.00043379414 + 131530 -6244.1093 -6250.9532 6.8439424 3664.3472 632.18301 -10547.483 0 328.00012 -0.00057328632 -0.00060546227 + 131540 -6244.3264 -6251.2212 6.8947978 3673.2393 630.28181 -10554.742 0 330.4374 -0.00091416135 -0.00095002831 + 131550 -6244.5776 -6251.3651 6.787482 3682.9457 627.7051 -10562.016 0 325.29422 -0.0013409002 -0.00137312 + 131560 -6244.8265 -6251.5064 6.6798409 3690.9739 625.12192 -10567.602 0 320.13545 -0.0017334959 -0.0017593953 + 131570 -6245.0207 -6251.7751 6.7543977 3695.1946 623.15551 -10570.125 0 323.70864 -0.0019822678 -0.0020059381 + 131580 -6245.151 -6252.1836 7.0325489 3694.4967 622.22463 -10568.905 0 337.03921 -0.0020252995 -0.0020528783 + 131590 -6245.2646 -6252.6084 7.3437868 3689.1075 622.43277 -10564.149 0 351.95547 -0.0018662011 -0.0018994769 + 131600 -6245.4195 -6252.8985 7.479022 3680.4668 623.54147 -10556.907 0 358.4367 -0.0015661048 -0.0016010472 + 131610 -6245.6294 -6252.9982 7.3687202 3670.7568 625.04802 -10548.803 0 353.15042 -0.0012187907 -0.00125003 + 131620 -6245.8568 -6252.9689 7.1120828 3662.306 626.35037 -10541.625 0 340.85091 -0.00092298262 -0.00094901562 + 131630 -6246.0561 -6252.9099 6.8537845 3657.0459 626.94101 -10536.897 0 328.47181 -0.00075983105 -0.00078367225 + 131640 -6246.2161 -6252.8711 6.6549657 3656.102 626.55937 -10535.532 0 318.9433 -0.00077594805 -0.0008013458 + 131650 -6246.3607 -6252.8395 6.4788323 3659.5528 625.25694 -10537.649 0 310.50199 -0.00097158557 -0.00099926511 + 131660 -6246.5158 -6252.7891 6.2732881 3666.407 623.36744 -10542.564 0 300.65116 -0.0012978415 -0.0013254086 + 131670 -6246.6813 -6252.7239 6.0426214 3674.8436 621.40383 -10548.971 0 289.59632 -0.0016681112 -0.0016930381 + 131680 -6246.8347 -6252.6683 5.8336327 3682.6925 619.91765 -10555.278 0 279.58041 -0.001983193 -0.0020053714 + 131690 -6246.9559 -6252.6237 5.6677517 3688.0244 619.35651 -10560.005 0 271.63046 -0.0021608511 -0.002182319 + 131700 -6247.0433 -6252.5512 5.5079213 3689.6542 619.94973 -10562.155 0 263.97049 -0.0021577563 -0.002180586 + 131710 -6247.1072 -6252.4034 5.2962333 3687.4089 621.64545 -10561.458 0 253.82522 -0.0019774863 -0.0020023248 + 131720 -6247.1567 -6252.1706 5.0138979 3682.1114 624.11526 -10558.397 0 240.29412 -0.0016662214 -0.0016924215 + 131730 -6247.1943 -6251.8986 4.7043058 3675.3182 626.82799 -10554.045 0 225.45673 -0.0013004433 -0.0013268119 + 131740 -6247.2196 -6251.6739 4.4542984 3668.8933 629.17658 -10549.744 0 213.47497 -0.0009689113 -0.00099413892 + 131750 -6247.2295 -6251.5957 4.3662113 3664.522 630.62752 -10546.745 0 209.25334 -0.00075050528 -0.00077356181 + 131760 -6247.2118 -6251.7482 4.5363337 3663.2874 630.85663 -10545.892 0 217.40656 -0.00069280199 -0.00071388426 + 131770 -6247.145 -6252.1651 5.0201157 3665.4243 629.83718 -10547.427 0 240.59211 -0.00079945846 -0.00082082866 + 131780 -6247.0154 -6252.7854 5.770003 3670.311 627.85403 -10550.95 0 276.53092 -0.0010322468 -0.0010572124 + 131790 -6246.8422 -6253.4347 6.5924808 3676.6732 625.42981 -10555.538 0 315.94867 -0.0013259135 -0.0013555964 + 131800 -6246.6763 -6253.8877 7.2114772 3682.9024 623.17075 -10559.961 0 345.61445 -0.0016074537 -0.0016383241 + 131810 -6246.5574 -6254.0021 7.4447331 3687.4102 621.57647 -10562.989 0 356.79338 -0.0018123108 -0.0018382822 + 131820 -6246.4702 -6253.8155 7.3452584 3688.9934 620.89346 -10563.702 0 352.026 -0.0018964835 -0.0019147995 + 131830 -6246.3566 -6253.5002 7.143569 3687.1723 621.08267 -10561.755 0 342.35991 -0.0018464905 -0.0018613369 + 131840 -6246.1785 -6253.2048 7.0263557 3682.3815 621.90597 -10557.492 0 336.74239 -0.0016847412 -0.001703885 + 131850 -6245.9623 -6252.9361 6.9737746 3675.8729 623.06262 -10551.872 0 334.22241 -0.0014637382 -0.0014909396 + 131860 -6245.7737 -6252.5924 6.818717 3669.3181 624.29116 -10546.202 0 326.79118 -0.0012471707 -0.0012781261 + 131870 -6245.6456 -6252.1046 6.4589983 3664.2831 625.3974 -10541.785 0 309.55144 -0.0010866866 -0.0011130636 + 131880 -6245.5349 -6251.5339 5.9989799 3661.8266 626.23181 -10539.592 0 287.50478 -0.0010086186 -0.0010265247 + 131890 -6245.3538 -6251.0281 5.6742526 3662.3623 626.66955 -10540.06 0 271.94202 -0.0010172999 -0.0010317416 + 131900 -6245.0457 -6250.6859 5.6402057 3665.7247 626.6288 -10543.039 0 270.3103 -0.0011066217 -0.0011272646 + 131910 -6244.6321 -6250.4756 5.8434274 3671.2672 626.11893 -10547.862 0 280.04983 -0.0012648117 -0.0012968875 + 131920 -6244.1888 -6250.295 6.1062098 3677.8974 625.28099 -10553.473 0 292.64384 -0.0014666494 -0.00150568 + 131930 -6243.7684 -6250.1113 6.3428293 3684.1284 624.38413 -10558.624 0 303.98397 -0.0016630825 -0.0016987819 + 131940 -6243.3403 -6250.0308 6.6905703 3688.3159 623.76609 -10562.113 0 320.64967 -0.0017849023 -0.0018111268 + 131950 -6242.8099 -6250.2078 7.3979699 3689.1469 623.73538 -10563.09 0 354.55223 -0.0017675678 -0.0017888945 + 131960 -6242.1192 -6250.6607 8.5415547 3686.2069 624.46762 -10561.335 0 409.35923 -0.0015853143 -0.0016131909 + 131970 -6241.3375 -6251.187 9.8494856 3680.2769 625.92683 -10557.391 0 472.04261 -0.0012708257 -0.0013124531 + 131980 -6240.6372 -6251.4899 10.852624 3673.1161 627.83922 -10552.445 0 520.11864 -0.00090468516 -0.00095599524 + 131990 -6240.163 -6251.4044 11.24135 3666.8224 629.74473 -10547.971 0 538.74859 -0.0005822348 -0.00063219937 + 132000 -6239.9356 -6250.9936 11.058066 3663.1387 631.12724 -10545.26 0 529.96455 -0.00038172007 -0.00042235414 + 132010 -6239.8846 -6250.4489 10.564346 3663.0059 631.57726 -10545.032 0 506.30275 -0.00034861363 -0.00037979343 + 132020 -6239.9377 -6249.9438 10.00611 3666.4069 630.91658 -10547.267 0 479.54895 -0.00049121999 -0.00051773351 + 132030 -6240.0609 -6249.5851 9.5241517 3672.423 629.24204 -10551.25 0 456.45079 -0.00077916166 -0.000806011 + 132040 -6240.2454 -6249.4336 9.1882184 3679.4743 626.89209 -10555.8 0 440.35098 -0.0011472952 -0.0011778241 + 132050 -6240.4953 -6249.5066 9.0113152 3685.7286 624.36312 -10559.598 0 431.87279 -0.001511069 -0.0015467561 + 132060 -6240.8298 -6249.7521 8.9223792 3689.574 622.19884 -10561.525 0 427.61047 -0.0017897859 -0.0018295191 + 132070 -6241.2714 -6250.0566 8.7852228 3690.0051 620.86909 -10560.931 0 421.03717 -0.0019264012 -0.0019661919 + 132080 -6241.8166 -6250.3071 8.4905043 3686.8391 620.65713 -10557.803 0 406.91261 -0.0018969881 -0.001932067 + 132090 -6242.4192 -6250.4506 8.0313921 3680.7635 621.5825 -10552.797 0 384.90937 -0.0017128087 -0.0017409979 + 132100 -6243.0138 -6250.4964 7.4825646 3673.2213 623.38508 -10547.103 0 358.60648 -0.0014199093 -0.0014428151 + 132110 -6243.5549 -6250.4772 6.9223087 3666.1083 625.58087 -10542.166 0 331.75587 -0.0010942299 -0.0011149456 + 132120 -6244.0319 -6250.4303 6.3984 3661.3019 627.57941 -10539.312 0 306.64723 -0.00082590983 -0.00084591604 + 132130 -6244.4513 -6250.4156 5.9643172 3660.1406 628.83832 -10539.394 0 285.84355 -0.00069270997 -0.00071138875 + 132140 -6244.8128 -6250.5257 5.7128956 3663.039 629.01975 -10542.584 0 273.79401 -0.00073313364 -0.00075005837 + 132150 -6245.1086 -6250.8468 5.7382481 3669.3765 628.10339 -10548.327 0 275.00905 -0.00093283562 -0.00094983838 + 132160 -6245.341 -6251.3884 6.0474228 3677.6753 626.41155 -10555.475 0 289.82643 -0.0012301047 -0.0012504774 + 132170 -6245.538 -6252.0484 6.5103833 3685.9841 624.52287 -10562.555 0 312.0141 -0.0015358086 -0.0015611332 + 132180 -6245.7437 -6252.6601 6.9163725 3692.3464 623.08919 -10568.096 0 331.47138 -0.0017587853 -0.0017866271 + 132190 -6245.9857 -6253.0975 7.1118561 3695.2585 622.61234 -10570.968 0 340.84005 -0.0018298464 -0.0018551689 + 132200 -6246.2492 -6253.3532 7.1040459 3694.0451 623.26481 -10570.663 0 340.46574 -0.0017209992 -0.0017405186 + 132210 -6246.49 -6253.5175 7.027508 3689.0749 624.82847 -10567.421 0 336.79761 -0.001456652 -0.0014719579 + 132220 -6246.6762 -6253.6786 7.002381 3681.7217 626.77376 -10562.174 0 335.59339 -0.0011115396 -0.001127762 + 132230 -6246.8166 -6253.8374 7.0208135 3674.0148 628.44227 -10556.294 0 336.47678 -0.00079132499 -0.00081266217 + 132240 -6246.9484 -6253.909 6.960654 3668.0429 629.26232 -10551.214 0 333.59359 -0.00059901357 -0.00062546001 + 132250 -6247.0993 -6253.796 6.6967295 3665.316 628.92622 -10548.038 0 320.94485 -0.00059934738 -0.00062744028 + 132260 -6247.2619 -6253.4612 6.1993094 3666.3309 627.47645 -10547.268 0 297.10569 -0.00079685512 -0.0008232121 + 132270 -6247.4031 -6252.9432 5.5400891 3670.4958 625.27969 -10548.719 0 265.51215 -0.0011371093 -0.0011610769 + 132280 -6247.497 -6252.3211 4.8240243 3676.3987 622.90552 -10551.625 0 231.19431 -0.001528357 -0.0015513939 + 132290 -6247.546 -6251.6795 4.1334857 3682.2689 620.95478 -10554.903 0 198.09983 -0.0018711476 -0.0018941461 + 132300 -6247.5702 -6251.1113 3.5411507 3686.4598 619.8932 -10557.464 0 169.71181 -0.0020836893 -0.002105517 + 132310 -6247.5808 -6250.736 3.1552236 3687.8446 619.93753 -10558.518 0 151.21602 -0.002118056 -0.0021369379 + 132320 -6247.5648 -6250.6819 3.1170669 3686.0794 621.01964 -10557.781 0 149.38733 -0.0019684362 -0.0019844254 + 132330 -6247.4961 -6251.0238 3.5277244 3681.6959 622.82698 -10555.547 0 169.06835 -0.0016724894 -0.0016881032 + 132340 -6247.3587 -6251.7214 4.362688 3675.9846 624.89807 -10552.604 0 209.08449 -0.0013038941 -0.0013220922 + 132350 -6247.1623 -6252.6157 5.4533244 3670.6602 626.7445 -10550.02 0 261.3539 -0.00095425523 -0.00097579753 + 132360 -6246.9357 -6253.4952 6.5594884 3667.3756 627.97183 -10548.843 0 314.36749 -0.00070730175 -0.00073029625 + 132370 -6246.7055 -6254.1841 7.4786093 3667.2324 628.37379 -10549.79 0 358.41692 -0.00061439065 -0.00063664637 + 132380 -6246.4853 -6254.585 8.0996901 3670.4649 627.9781 -10553.028 0 388.1826 -0.00068197634 -0.0007035233 + 132390 -6246.2891 -6254.6604 8.3713595 3676.4 627.02865 -10558.089 0 401.20252 -0.00087544195 -0.00089805339 + 132400 -6246.1433 -6254.4042 8.2608697 3683.6648 625.90156 -10563.971 0 395.90723 -0.0011339464 -0.0011581631 + 132410 -6246.0707 -6253.858 7.7872706 3690.5332 624.97793 -10569.369 0 373.2097 -0.0013873243 -0.0014110526 + 132420 -6246.0592 -6253.1444 7.085236 3695.3269 624.52459 -10572.996 0 339.56426 -0.0015710557 -0.0015920359 + 132430 -6246.0617 -6252.4378 6.3760555 3696.8233 624.63603 -10573.897 0 305.57635 -0.0016403284 -0.0016594551 + 132440 -6246.0373 -6251.8643 5.8270198 3694.5868 625.25133 -10571.702 0 279.26349 -0.0015819739 -0.0016028522 + 132450 -6245.9866 -6251.4257 5.4391117 3689.0962 626.20936 -10566.731 0 260.67275 -0.0014181153 -0.0014428778 + 132460 -6245.9422 -6251.0369 5.0946972 3681.5938 627.29459 -10559.925 0 244.16648 -0.0011971483 -0.001223441 + 132470 -6245.9224 -6250.6454 4.7229758 3673.7291 628.25704 -10552.632 0 226.3515 -0.00097652572 -0.0009994455 + 132480 -6245.9021 -6250.3152 4.4130617 3667.1651 628.82707 -10546.307 0 211.49868 -0.00080780344 -0.00082494032 + 132490 -6245.8272 -6250.1919 4.3647478 3663.2696 628.75411 -10542.216 0 209.18321 -0.00073013643 -0.00074444011 + 132500 -6245.6551 -6250.3868 4.7316744 3662.9031 627.87693 -10541.167 0 226.76839 -0.00076876458 -0.00078625002 + 132510 -6245.38 -6250.883 5.5029686 3666.2574 626.20276 -10543.343 0 263.73313 -0.00093097061 -0.00095541299 + 132520 -6245.0215 -6251.538 6.5164649 3672.7398 623.95619 -10548.234 0 312.30556 -0.001197494 -0.0012270328 + 132530 -6244.591 -6252.165 7.5739868 3680.9714 621.56563 -10554.702 0 362.98794 -0.0015160183 -0.0015447441 + 132540 -6244.0678 -6252.6203 8.5525087 3688.9948 619.58092 -10561.196 0 409.88421 -0.0018060704 -0.0018292987 + 132550 -6243.4098 -6252.8335 9.4236707 3694.719 618.54527 -10566.098 0 451.63518 -0.0019786903 -0.0019974966 + 132560 -6242.5969 -6252.7749 10.177956 3696.5155 618.86077 -10568.151 0 487.78474 -0.0019646078 -0.0019856027 + 132570 -6241.6763 -6252.4144 10.738099 3693.7654 620.68225 -10566.862 0 514.62994 -0.0017386789 -0.0017687655 + 132580 -6240.7615 -6251.7318 10.970298 3687.1232 623.85844 -10562.713 0 525.75822 -0.001329793 -0.0013702578 + 132590 -6239.9714 -6250.7801 10.808672 3678.3627 627.93 -10557.073 0 518.01219 -0.0008135258 -0.00085890079 + 132600 -6239.3593 -6249.7244 10.365088 3669.8704 632.19476 -10551.79 0 496.75318 -0.00029360115 -0.00033612364 + 132610 -6238.8982 -6248.7944 9.8962166 3663.9981 635.84203 -10548.635 0 474.28223 0.00012037764 8.5219667e-05 + 132620 -6238.5198 -6248.1839 9.6640476 3662.4713 638.13472 -10548.79 0 463.15539 0.00033642221 0.00030739013 + 132630 -6238.1662 -6247.9726 9.8063615 3665.9705 638.59731 -10552.54 0 469.97587 0.00030278192 0.00027395796 + 132640 -6237.8291 -6248.0865 10.257485 3673.951 637.16072 -10559.198 0 491.59623 2.2758956e-05 -1.2505873e-05 + 132650 -6237.5695 -6248.3072 10.737723 3684.7172 634.21298 -10567.237 0 514.61195 -0.00044403352 -0.00048768593 + 132660 -6237.4864 -6248.367 10.880586 3695.7286 630.51519 -10574.611 0 521.45873 -0.00099257826 -0.0010391202 + 132670 -6237.6332 -6248.1172 10.483999 3704.1308 626.9872 -10579.235 0 502.45206 -0.0014926725 -0.0015333108 + 132680 -6237.9587 -6247.6425 9.6837669 3707.4958 624.43395 -10579.572 0 464.10045 -0.0018194624 -0.0018507948 + 132690 -6238.3488 -6247.2017 8.8528172 3704.6191 623.32029 -10575.141 0 424.27667 -0.0018916681 -0.0019202188 + 132700 -6238.7372 -6247.0356 8.2984289 3696.0345 623.67348 -10566.744 0 397.70727 -0.0017030245 -0.0017399272 + 132710 -6239.1693 -6247.2114 8.0421626 3683.9352 625.12511 -10556.272 0 385.42555 -0.00132787 -0.0013779838 + 132720 -6239.7519 -6247.6323 7.8803926 3671.4605 627.05367 -10546.146 0 377.67263 -0.00089314871 -0.00094913454 + 132730 -6240.5362 -6248.1817 7.6454662 3661.6582 628.77725 -10538.617 0 366.41364 -0.00052898645 -0.00057669636 + 132740 -6241.4529 -6248.845 7.3921003 3656.6018 629.74772 -10535.194 0 354.27092 -0.00032417036 -0.00035463422 + 132750 -6242.3631 -6249.6877 7.3245733 3657.0148 629.69436 -10536.397 0 351.03465 -0.00030832498 -0.00032503399 + 132760 -6243.1653 -6250.7308 7.5654949 3662.4013 628.67304 -10541.805 0 362.58097 -0.00046126592 -0.00047656547 + 132770 -6243.8517 -6251.8645 8.0128231 3671.4143 627.01351 -10550.292 0 384.01944 -0.00073273726 -0.00075757379 + 132780 -6244.4814 -6252.8895 8.4081613 3682.2085 625.19828 -10560.296 0 402.96627 -0.0010573777 -0.0010934974 + 132790 -6245.1114 -6253.6441 8.5327009 3692.7171 623.72477 -10570.086 0 408.93491 -0.001362721 -0.0014029577 + 132800 -6245.7462 -6254.0964 8.3501763 3700.9395 622.99366 -10578.03 0 400.1873 -0.0015771567 -0.0016122367 + 132810 -6246.3407 -6254.3227 7.9819698 3705.3031 623.24176 -10582.868 0 382.54078 -0.0016435199 -0.0016689676 + 132820 -6246.8437 -6254.4022 7.5584548 3705.0417 624.51006 -10583.954 0 362.24356 -0.0015362297 -0.0015540482 + 132830 -6247.237 -6254.332 7.0950707 3700.4389 626.62862 -10581.4 0 340.0356 -0.001273843 -0.0012889523 + 132840 -6247.5383 -6254.0389 6.5006732 3692.8019 629.21612 -10576.057 0 311.54873 -0.00091921387 -0.00093487126 + 132850 -6247.774 -6253.47 5.6959747 3684.1337 631.7158 -10569.32 0 272.98307 -0.00056487713 -0.00058110291 + 132860 -6247.9533 -6252.6802 4.7268804 3676.5987 633.49414 -10562.773 0 226.53863 -0.0003081015 -0.00032359566 + 132870 -6248.0681 -6251.8407 3.7725358 3671.9596 633.99997 -10557.8 0 180.80108 -0.0002244834 -0.00023925853 + 132880 -6248.1147 -6251.1628 3.0480957 3671.1559 632.93946 -10555.258 0 146.08185 -0.00034815159 -0.00036396863 + 132890 -6248.1082 -6250.8024 2.6942299 3674.1136 630.39715 -10555.313 0 129.12261 -0.00066213596 -0.00068061458 + 132900 -6248.0738 -6250.8151 2.7413561 3679.7933 626.84664 -10557.455 0 131.38116 -0.0010995847 -0.0011204278 + 132910 -6248.0239 -6251.1728 3.1488382 3686.4581 623.03845 -10560.669 0 150.90999 -0.001556988 -0.0015783264 + 132920 -6247.9474 -6251.797 3.8495947 3692.1226 619.80192 -10563.721 0 184.49418 -0.0019197082 -0.0019399092 + 132930 -6247.8215 -6252.5737 4.7522096 3695.0973 617.82684 -10565.498 0 227.75255 -0.0020944731 -0.0021132157 + 132940 -6247.635 -6253.3618 5.7268312 3694.4741 617.4887 -10565.325 0 274.46188 -0.0020372524 -0.0020550123 + 132950 -6247.3965 -6254.0232 6.6266351 3690.3969 618.76186 -10563.182 0 317.58554 -0.0017652844 -0.0017825572 + 132960 -6247.1248 -6254.4674 7.3425846 3684.0297 621.24316 -10559.74 0 351.89785 -0.0013497863 -0.0013674192 + 132970 -6246.8367 -6254.6698 7.8331133 3677.2397 624.28321 -10556.193 0 375.40674 -0.00089443363 -0.00091441158 + 132980 -6246.5508 -6254.6423 8.0914205 3672.0884 627.18814 -10553.919 0 387.78627 -0.0005077719 -0.00053258352 + 132990 -6246.2985 -6254.3906 8.0921393 3670.257 629.42209 -10554.07 0 387.82072 -0.00027572189 -0.00030601933 + 133000 -6246.1152 -6253.9108 7.7955886 3672.5456 630.73559 -10557.192 0 373.60835 -0.0002388669 -0.00027186948 + 133010 -6246.0125 -6253.2311 7.2186588 3678.6014 631.1792 -10563.012 0 345.95863 -0.00038115249 -0.00041229447 + 133020 -6245.96 -6252.4429 6.482932 3686.9975 631.01775 -10570.458 0 310.69848 -0.00063699193 -0.00066374735 + 133030 -6245.9064 -6251.6697 5.7632753 3695.6642 630.59994 -10577.934 0 276.20849 -0.00091637785 -0.00094026209 + 133040 -6245.8189 -6251.0029 5.1840319 3702.5031 630.23758 -10583.744 0 248.4479 -0.0011364086 -0.0011610322 + 133050 -6245.6994 -6250.4765 4.777048 3705.9437 630.12139 -10586.542 0 228.94295 -0.0012442831 -0.0012717997 + 133060 -6245.5659 -6250.1008 4.5349071 3705.2799 630.2798 -10585.66 0 217.33819 -0.001224997 -0.0012546642 + 133070 -6245.4232 -6249.9063 4.4831111 3700.7544 630.58107 -10581.242 0 214.85584 -0.0010973877 -0.0011271083 + 133080 -6245.253 -6249.9432 4.6901943 3693.4355 630.77807 -10574.157 0 224.78043 -0.00090533283 -0.00093395661 + 133090 -6245.026 -6250.2371 5.211172 3684.9479 630.58834 -10565.773 0 249.7486 -0.00070727395 -0.00073523881 + 133100 -6244.7225 -6250.745 6.0224931 3677.1071 629.79167 -10557.644 0 288.63166 -0.00056332773 -0.00059138125 + 133110 -6244.3433 -6251.3526 7.009237 3671.5169 628.31697 -10551.186 0 335.92196 -0.00051970169 -0.0005475762 + 133120 -6243.9053 -6251.9177 8.0123797 3669.2119 626.2878 -10547.417 0 383.99819 -0.00059448906 -0.00062130775 + 133130 -6243.4341 -6252.3164 8.8822398 3670.4455 624.007 -10546.769 0 425.68677 -0.00077212209 -0.00079783301 + 133140 -6242.969 -6252.461 9.4919239 3674.6829 621.88285 -10549.027 0 454.90625 -0.0010102283 -0.0010356023 + 133150 -6242.564 -6252.3096 9.7456825 3680.7694 620.32128 -10553.4 0 467.06779 -0.0012538828 -0.0012786897 + 133160 -6242.2634 -6251.903 9.6395455 3687.2029 619.62405 -10558.73 0 461.98111 -0.0014481177 -0.0014704992 + 133170 -6242.0672 -6251.3931 9.3259146 3692.4687 619.9332 -10563.795 0 446.95016 -0.0015454164 -0.0015644987 + 133180 -6241.9317 -6250.9932 9.0615059 3695.4135 621.23847 -10567.645 0 434.27821 -0.0015124551 -0.00153142 + 133190 -6241.8196 -6250.8449 9.0253833 3695.5741 623.42473 -10569.844 0 432.54701 -0.001339395 -0.0013644345 + 133200 -6241.7511 -6250.9083 9.1572566 3693.3174 626.31176 -10570.537 0 438.86712 -0.0010477741 -0.0010825757 + 133210 -6241.799 -6250.9831 9.1840336 3689.6902 629.65256 -10570.326 0 440.15042 -0.00068913271 -0.00073009987 + 133220 -6242.0203 -6250.8663 8.8459569 3686.0323 633.09915 -10569.998 0 423.94789 -0.00033132167 -0.00036933622 + 133230 -6242.3874 -6250.5188 8.131388 3683.5449 636.18559 -10570.249 0 389.70174 -3.9679487e-05 -6.8065862e-05 + 133240 -6242.8006 -6250.0852 7.2845889 3683.0129 638.38321 -10571.481 0 349.11837 0.00013506696 0.00011412475 + 133250 -6243.179 -6249.7521 6.5730687 3684.7203 639.23616 -10573.709 0 315.01833 0.00015922249 0.00013708307 + 133260 -6243.5294 -6249.5995 6.0701286 3688.4386 638.51911 -10576.557 0 290.91462 1.856583e-05 -1.08658e-05 + 133270 -6243.9177 -6249.5961 5.6783343 3693.3986 636.33457 -10579.329 0 272.13764 -0.00027146851 -0.00030585065 + 133280 -6244.3833 -6249.7102 5.3268835 3698.3321 633.10092 -10581.143 0 255.29415 -0.0006558577 -0.00068767022 + 133290 -6244.8947 -6249.9867 5.092058 3701.7363 629.44049 -10581.164 0 244.03999 -0.0010464936 -0.0010713012 + 133300 -6245.3893 -6250.4985 5.1091909 3702.36 626.01848 -10578.877 0 244.86109 -0.0013496892 -0.0013703444 + 133310 -6245.8415 -6251.2341 5.392561 3699.69 623.38777 -10574.312 0 258.44178 -0.0015003361 -0.0015231412 + 133320 -6246.2823 -6252.0579 5.7755599 3694.1675 621.87333 -10568.099 0 276.79724 -0.0014824707 -0.0015100633 + 133330 -6246.7538 -6252.7963 6.0424805 3687.0361 621.51185 -10561.344 0 289.58957 -0.0013274373 -0.0013561483 + 133340 -6247.2542 -6253.3655 6.1113329 3679.9454 622.06081 -10555.372 0 292.88936 -0.0010966337 -0.0011206756 + 133350 -6247.7317 -6253.8091 6.0774588 3674.5251 623.08572 -10551.42 0 291.26593 -0.00086181892 -0.0008793309 + 133360 -6248.1297 -6254.2165 6.0868136 3672.052 624.10727 -10550.376 0 291.71426 -0.00068979355 -0.00070447044 + 133370 -6248.4337 -6254.6134 6.179727 3673.2116 624.7606 -10552.586 0 296.16719 -0.00062966219 -0.0006468762 + 133380 -6248.6761 -6254.9269 6.2508204 3677.9252 624.91159 -10557.764 0 299.57439 -0.00069977158 -0.00072144216 + 133390 -6248.9009 -6255.0466 6.1456694 3685.2842 624.69193 -10565.023 0 294.53496 -0.00087742109 -0.00090054444 + 133400 -6249.1204 -6254.9175 5.7970201 3693.6791 624.44237 -10573.039 0 277.82573 -0.0010996317 -0.0011196776 + 133410 -6249.3047 -6254.5804 5.2756872 3701.1761 624.58413 -10580.341 0 252.84053 -0.0012809762 -0.0012967146 + 133420 -6249.4142 -6254.1253 4.7111224 3706.0655 625.4612 -10585.652 0 225.78342 -0.0013447003 -0.0013594766 + 133430 -6249.4442 -6253.6131 4.1689095 3707.3773 627.20071 -10588.191 0 199.79753 -0.0012531837 -0.0012711684 + 133440 -6249.4341 -6253.0583 3.6241998 3705.1366 629.63081 -10587.826 0 173.69199 -0.0010222492 -0.0010436608 + 133450 -6249.4296 -6252.4916 3.0620611 3700.2637 632.28708 -10585.042 0 146.75115 -0.00071342701 -0.00073402795 + 133460 -6249.44 -6252.0219 2.5818873 3694.2175 634.52124 -10580.761 0 123.73853 -0.00041127264 -0.00042671686 + 133470 -6249.4317 -6251.8056 2.373934 3688.5694 635.68909 -10576.064 0 113.77224 -0.00019827984 -0.00020860808 + 133480 -6249.3601 -6251.9417 2.5815485 3684.6399 635.35436 -10571.936 0 123.72229 -0.00013518751 -0.00014493918 + 133490 -6249.2062 -6252.3899 3.183692 3683.226 633.43312 -10569.049 0 152.58039 -0.00024741855 -0.00026165819 + 133500 -6248.9847 -6252.9893 4.004645 3684.4258 630.22812 -10567.643 0 191.92506 -0.00051713029 -0.00053755871 + 133510 -6248.7259 -6253.5584 4.8324731 3687.602 626.34619 -10567.507 0 231.59923 -0.00088413582 -0.00090871221 + 133520 -6248.4519 -6253.9859 5.5340054 3691.5473 622.53426 -10568.067 0 265.22059 -0.0012601709 -0.0012856977 + 133530 -6248.1722 -6254.2502 6.0780131 3694.8444 619.49258 -10568.587 0 291.29249 -0.0015546638 -0.0015790973 + 133540 -6247.8941 -6254.3808 6.4866559 3696.3048 617.72028 -10568.406 0 310.87695 -0.0017012687 -0.0017239324 + 133550 -6247.627 -6254.4192 6.7922034 3695.3291 617.42759 -10567.176 0 325.5205 -0.0016734095 -0.0016943221 + 133560 -6247.3762 -6254.3977 7.0215045 3692.0864 618.52672 -10565.011 0 336.50989 -0.0014858502 -0.0015057023 + 133570 -6247.1424 -6254.3165 7.1740625 3687.4782 620.69239 -10562.487 0 343.82133 -0.0011874845 -0.0012077022 + 133580 -6246.9328 -6254.1254 7.1926148 3682.8999 623.46462 -10560.49 0 344.71046 -0.00084984212 -0.00087153399 + 133590 -6246.7643 -6253.7421 6.9777986 3679.8468 626.3583 -10559.947 0 334.41526 -0.00055091761 -0.00057339257 + 133600 -6246.6476 -6253.1182 6.4706044 3679.4691 628.95451 -10561.542 0 310.10767 -0.00035438662 -0.00037536425 + 133610 -6246.5654 -6252.3058 5.7403731 3682.2256 630.96421 -10565.496 0 275.11089 -0.00029072027 -0.00030886321 + 133620 -6246.4769 -6251.4576 4.9807129 3687.7587 632.26379 -10571.48 0 238.70371 -0.00035017309 -0.0003674746 + 133630 -6246.3511 -6250.7432 4.3920584 3695.0154 632.90071 -10578.659 0 210.49208 -0.00049147156 -0.00051214525 + 133640 -6246.1992 -6250.2544 4.0551573 3702.5242 633.06151 -10585.84 0 194.34589 -0.00065919442 -0.0006851049 + 133650 -6246.0633 -6249.9954 3.9320844 3708.7036 632.99714 -10591.696 0 188.44755 -0.00079877042 -0.00082612467 + 133660 -6245.9638 -6249.9641 4.0003107 3712.1515 632.91953 -10595.035 0 191.71734 -0.0008650868 -0.00088710046 + 133670 -6245.8564 -6250.215 4.3586049 3711.945 632.90886 -10595.069 0 208.8888 -0.00083006425 -0.00084410929 + 133680 -6245.6548 -6250.8062 5.1514529 3707.9461 632.87777 -10591.63 0 246.88653 -0.00069405877 -0.0007059283 + 133690 -6245.3117 -6251.6715 6.3598316 3700.9854 632.61438 -10585.271 0 304.79882 -0.00049542003 -0.0005151845 + 133700 -6244.8847 -6252.5679 7.6832548 3692.7296 631.88505 -10577.183 0 368.22468 -0.0003049785 -0.000337455 + 133710 -6244.5096 -6253.1951 8.6855166 3685.1771 630.54685 -10568.919 0 416.25869 -0.00019927764 -0.00023865175 + 133720 -6244.2891 -6253.4014 9.1123489 3679.9844 628.61805 -10562.004 0 436.71489 -0.00022500061 -0.00025992607 + 133730 -6244.2097 -6253.2807 9.0709892 3677.9852 626.28283 -10557.549 0 434.7327 -0.00037926709 -0.00040374689 + 133740 -6244.1827 -6253.0563 8.8735864 3679.1255 623.84332 -10556.025 0 425.27205 -0.00061955519 -0.00063801889 + 133750 -6244.1554 -6252.8705 8.7150425 3682.7147 621.64941 -10557.235 0 417.67374 -0.00089084711 -0.00091215714 + 133760 -6244.1592 -6252.6961 8.536851 3687.7167 620.0309 -10560.444 0 409.1338 -0.001145003 -0.0011727322 + 133770 -6244.2496 -6252.4369 8.1872274 3692.9334 619.2481 -10564.618 0 392.37787 -0.0013417754 -0.0013716203 + 133780 -6244.4252 -6252.0686 7.643424 3697.1645 619.4683 -10568.701 0 366.31577 -0.0014430307 -0.0014690095 + 133790 -6244.6213 -6251.6605 7.0391998 3699.456 620.75976 -10571.876 0 337.35795 -0.0014161017 -0.001437397 + 133800 -6244.7747 -6251.2843 6.5095526 3699.392 623.0812 -10573.757 0 311.97429 -0.0012477426 -0.001268749 + 133810 -6244.8781 -6250.9397 6.061609 3697.2645 626.25541 -10574.46 0 290.50632 -0.00095647722 -0.00098098887 + 133820 -6244.97 -6250.5866 5.6166136 3693.9991 629.94322 -10574.529 0 269.17964 -0.0005918539 -0.00061834543 + 133830 -6245.0796 -6250.2479 5.1683619 3690.8593 633.6525 -10574.76 0 247.6969 -0.00022048332 -0.00024373622 + 133840 -6245.1861 -6250.0593 4.8732183 3689.0739 636.80777 -10575.941 0 233.55196 9.1116548e-05 7.3832508e-05 + 133850 -6245.2386 -6250.1858 4.9471954 3689.5376 638.87435 -10578.598 0 237.09736 0.00028728895 0.00027249448 + 133860 -6245.2146 -6250.6686 5.4540804 3692.6279 639.49569 -10582.792 0 261.39014 0.00032832757 0.00030957292 + 133870 -6245.1534 -6251.3582 6.2048142 3698.0812 638.58999 -10588.029 0 297.36951 0.00019800918 0.00017272757 + 133880 -6245.1264 -6252.0111 6.8847321 3704.9162 636.37035 -10593.298 0 329.95499 -8.4177817e-05 -0.00011173706 + 133890 -6245.1708 -6252.4631 7.2923652 3711.511 633.28779 -10597.262 0 349.49106 -0.00045617081 -0.00047926381 + 133900 -6245.2568 -6252.7181 7.4613451 3715.9547 629.92508 -10598.598 0 357.58952 -0.00082454412 -0.00084101469 + 133910 -6245.3259 -6252.8833 7.5574788 3716.6355 626.87619 -10596.395 0 362.19679 -0.0010942153 -0.0011087905 + 133920 -6245.3583 -6253.032 7.6736983 3712.829 624.63247 -10590.493 0 367.76668 -0.0012016525 -0.0012209545 + 133930 -6245.394 -6253.1388 7.7448065 3704.9993 623.4829 -10581.621 0 371.17458 -0.0011334756 -0.0011591648 + 133940 -6245.4843 -6253.1421 7.6577853 3694.6833 623.4449 -10571.27 0 367.00404 -0.00092406674 -0.00095152693 + 133950 -6245.6328 -6253.0394 7.4065356 3684.0668 624.25828 -10561.364 0 354.96274 -0.00064017993 -0.00066377702 + 133960 -6245.7918 -6252.897 7.105172 3675.4668 625.46474 -10553.829 0 340.51971 -0.00036381186 -0.00038255608 + 133970 -6245.9114 -6252.7751 6.8637468 3670.8512 626.5546 -10550.181 0 328.94926 -0.00017637382 -0.0001942592 + 133980 -6245.9808 -6252.6661 6.6853227 3671.4216 627.13005 -10551.218 0 320.39817 -0.00014046805 -0.00016223901 + 133990 -6246.0259 -6252.5105 6.4845704 3677.2872 627.03248 -10556.83 0 310.777 -0.00027941828 -0.00030660994 + 134000 -6246.0778 -6252.2578 6.1799612 3687.3335 626.39839 -10565.99 0 296.17842 -0.00056305829 -0.00059340707 + 134010 -6246.148 -6251.9112 5.7631934 3699.3899 625.62624 -10576.927 0 276.20457 -0.00090983967 -0.00093943528 + 134020 -6246.2247 -6251.5312 5.3065141 3710.7121 625.25739 -10587.501 0 254.31793 -0.0012079343 -0.0012338816 + 134030 -6246.2837 -6251.2099 4.9262175 3718.6776 625.79954 -10595.687 0 236.09198 -0.0013487584 -0.0013707268 + 134040 -6246.303 -6251.0345 4.7314511 3721.5035 627.54232 -10600.08 0 226.75769 -0.0012616655 -0.0012817772 + 134050 -6246.274 -6251.0543 4.7803293 3718.7655 630.42148 -10600.241 0 229.1002 -0.00093884859 -0.00096020001 + 134060 -6246.2049 -6251.2648 5.0598674 3711.532 633.98023 -10596.777 0 242.49723 -0.00044261534 -0.00046732994 + 134070 -6246.1177 -6251.611 5.4932869 3702.054 637.45319 -10591.118 0 263.26913 0.00010792657 8.015212e-05 + 134080 -6246.0391 -6252.01 5.9709559 3693.1051 639.9595 -10585.075 0 286.16171 0.00056824419 0.00054040076 + 134090 -6245.9858 -6252.3902 6.4043123 3687.1762 640.751 -10580.317 0 306.93058 0.00081016444 0.00078641361 + 134100 -6245.9506 -6252.7302 6.7796215 3685.7729 639.43796 -10577.941 0 324.9175 0.00076146696 0.00074410234 + 134110 -6245.9048 -6253.0612 7.1564159 3689.0324 636.12243 -10578.216 0 342.9756 0.00042847138 0.00041547084 + 134120 -6245.8271 -6253.4136 7.5865385 3695.7641 631.39892 -10580.577 0 363.58949 -0.0001075382 -0.00012165974 + 134130 -6245.736 -6253.7535 8.017503 3703.853 626.22064 -10583.827 0 384.24373 -0.00071668993 -0.0007365587 + 134140 -6245.6888 -6253.975 8.2861626 3710.8626 621.66554 -10586.503 0 397.11941 -0.0012565625 -0.0012817876 + 134150 -6245.7368 -6253.9699 8.2331759 3714.6681 618.66379 -10587.302 0 394.57999 -0.0016055307 -0.0016310892 + 134160 -6245.8767 -6253.7105 7.8338862 3714.0013 617.76551 -10585.477 0 375.44378 -0.0016888331 -0.0017101294 + 134170 -6246.0522 -6253.2581 7.2059539 3708.8205 619.01864 -10581.097 0 345.34974 -0.0014967365 -0.0015141977 + 134180 -6246.2068 -6252.6955 6.4886577 3700.3919 621.98645 -10575.074 0 310.97288 -0.0010902454 -0.0011084606 + 134190 -6246.3298 -6252.0692 5.7393606 3690.9862 625.88496 -10568.94 0 275.06236 -0.00058653032 -0.00060896279 + 134200 -6246.4479 -6251.4122 4.9642474 3683.2206 629.79403 -10564.427 0 237.91459 -0.00012309347 -0.00014828544 + 134210 -6246.5798 -6250.8106 4.2307718 3679.2654 632.89172 -10562.968 0 202.76232 0.00018661709 0.00016331603 + 134220 -6246.7078 -6250.4189 3.7111591 3680.2325 634.65622 -10565.308 0 177.85957 0.00028602418 0.0002673666 + 134230 -6246.795 -6250.3825 3.5874207 3685.9568 634.9779 -10571.317 0 171.92933 0.0001834972 0.00016751584 + 134240 -6246.8243 -6250.7307 3.906387 3695.1659 634.14323 -10580.04 0 187.21598 -6.2105811e-05 -7.9793953e-05 + 134250 -6246.8145 -6251.3501 4.5356217 3705.8695 632.69678 -10589.916 0 217.37244 -0.00036576155 -0.00038740686 + 134260 -6246.7982 -6252.0674 5.2691299 3715.8168 631.23608 -10599.12 0 252.52627 -0.00063927899 -0.00066335438 + 134270 -6246.7885 -6252.7592 5.9707216 3722.957 630.22162 -10605.938 0 286.15048 -0.00080987664 -0.00083370227 + 134280 -6246.7748 -6253.3843 6.6095164 3725.8726 629.87017 -10609.127 0 316.76511 -0.00083541751 -0.00085832037 + 134290 -6246.7518 -6253.9299 7.1781176 3724.0966 630.15024 -10608.177 0 344.01567 -0.00071431725 -0.00073750236 + 134300 -6246.742 -6254.3557 7.6137202 3718.198 630.84921 -10603.403 0 364.89219 -0.00048482 -0.00050861929 + 134310 -6246.7835 -6254.5999 7.8163587 3709.6024 631.66458 -10595.867 0 374.60376 -0.00021151565 -0.00023382281 + 134320 -6246.8939 -6254.6311 7.7371636 3700.218 632.28588 -10587.135 0 370.80829 3.5411611e-05 1.7211191e-05 + 134330 -6247.0488 -6254.4807 7.4318606 3691.9999 632.45676 -10578.937 0 356.17646 0.00019801064 0.00018341789 + 134340 -6247.2041 -6254.2105 7.006365 3686.5661 632.02126 -10572.798 0 335.78432 0.00023865105 0.00022307062 + 134350 -6247.3413 -6253.844 6.5026397 3684.9169 630.95651 -10569.717 0 311.64298 0.00014097182 0.00011950547 + 134360 -6247.4829 -6253.3479 5.8650483 3687.2458 629.38323 -10569.977 0 281.08602 -8.8104282e-05 -0.00011551081 + 134370 -6247.6557 -6252.7052 5.0495522 3692.8578 627.54537 -10573.108 0 242.00288 -0.00041301222 -0.00044092278 + 134380 -6247.8467 -6252.0019 4.155162 3700.2784 625.76396 -10578.044 0 199.13868 -0.00076912688 -0.00079164452 + 134390 -6248.0062 -6251.4208 3.4145618 3707.6107 624.37944 -10583.411 0 163.64496 -0.0010759268 -0.0010921171 + 134400 -6248.0921 -6251.1359 3.0437555 3713.0575 623.69107 -10587.884 0 145.87384 -0.0012606688 -0.0012748235 + 134410 -6248.1058 -6251.209 3.1032822 3715.4021 623.89677 -10590.508 0 148.72669 -0.0012797002 -0.0012966479 + 134420 -6248.0836 -6251.5797 3.496072 3714.2731 625.04248 -10590.895 0 167.55139 -0.0011269397 -0.0011475191 + 134430 -6248.0568 -6252.1394 4.0825406 3710.152 626.99831 -10589.29 0 195.65825 -0.00082948469 -0.00085063813 + 134440 -6248.0191 -6252.8041 4.7849289 3704.2056 629.47497 -10586.485 0 229.32064 -0.000438365 -0.00045729446 + 134450 -6247.9365 -6253.511 5.5745188 3698.0389 632.07755 -10583.627 0 267.16222 -2.1582993e-05 -3.9111997e-05 + 134460 -6247.7908 -6254.1628 6.3719442 3693.3944 634.37653 -10581.934 0 305.37932 0.0003416511 0.00032236592 + 134470 -6247.6098 -6254.6137 7.0039193 3691.7679 635.97524 -10582.357 0 335.66711 0.00057280849 0.00055053876 + 134480 -6247.445 -6254.747 7.3020103 3693.972 636.56949 -10585.288 0 349.9533 0.00061498056 0.00059233235 + 134490 -6247.3216 -6254.5697 7.2481606 3699.8053 636.00978 -10590.385 0 347.37253 0.00045425072 0.00043482732 + 134500 -6247.2192 -6254.2158 6.9966181 3708.0156 634.36539 -10596.597 0 335.3172 0.00012802569 0.00011234935 + 134510 -6247.1035 -6253.8425 6.7390364 3716.605 631.96183 -10602.409 0 322.97244 -0.0002846105 -0.00029956447 + 134520 -6246.967 -6253.52 6.5530387 3723.3548 629.34984 -10606.225 0 314.05838 -0.00068367307 -0.00070097905 + 134530 -6246.8322 -6253.2114 6.3791771 3726.3849 627.18457 -10606.781 0 305.72596 -0.00097100642 -0.00099050126 + 134540 -6246.7192 -6252.8463 6.127044 3724.6189 626.03679 -10603.502 0 293.64232 -0.0010716447 -0.0010905276 + 134550 -6246.6172 -6252.4027 5.7855276 3718.0926 626.20001 -10596.695 0 277.27494 -0.0009540121 -0.00097041746 + 134560 -6246.4943 -6251.9225 5.428183 3708.0467 627.57138 -10587.541 0 260.14899 -0.00064524845 -0.00066046392 + 134570 -6246.3309 -6251.4687 5.1377761 3696.7328 629.65878 -10577.86 0 246.23106 -0.00023210219 -0.00024892763 + 134580 -6246.1347 -6251.0965 4.9617579 3686.9014 631.71865 -10569.716 0 237.79528 0.00016031613 0.00014074252 + 134590 -6245.9203 -6250.8613 4.9410307 3681.0761 632.98632 -10564.924 0 236.80191 0.00040784898 0.00038688015 + 134600 -6245.6825 -6250.821 5.1385233 3680.8471 632.93065 -10564.599 0 246.26687 0.000428583 0.00040809539 + 134610 -6245.3963 -6250.9986 5.6022731 3686.4125 631.44865 -10568.86 0 268.49236 0.00020913192 0.00018961519 + 134620 -6245.0387 -6251.3408 6.3020905 3696.4922 628.92736 -10576.76 0 302.03154 -0.00019134252 -0.00021068614 + 134630 -6244.607 -6251.7308 7.1237662 3708.6205 626.14431 -10586.496 0 341.41085 -0.00065684489 -0.00067709758 + 134640 -6244.1163 -6252.0529 7.9366171 3719.7603 624.03666 -10595.85 0 380.36723 -0.0010445017 -0.0010671111 + 134650 -6243.5894 -6252.2476 8.6582078 3727.1191 623.41501 -10602.782 0 414.9499 -0.0012237684 -0.001251398 + 134660 -6243.0622 -6252.3019 9.2397331 3728.949 624.71479 -10605.966 0 442.81985 -0.0011171767 -0.0011527927 + 134670 -6242.5985 -6252.2027 9.6041522 3725.0545 627.85725 -10605.114 0 460.28486 -0.00072894083 -0.00077223829 + 134680 -6242.276 -6251.9328 9.6568325 3716.8011 632.25041 -10600.984 0 462.8096 -0.00014676242 -0.00019154662 + 134690 -6242.1303 -6251.5378 9.4074867 3706.6335 636.92582 -10595.097 0 450.85955 0.00048678372 0.00044946257 + 134700 -6242.1124 -6251.1734 9.0609552 3697.3393 640.78448 -10589.297 0 434.25181 0.0010193478 0.00099325189 + 134710 -6242.1211 -6251.0309 8.9097536 3691.3452 642.89523 -10585.271 0 427.00539 0.0013285053 0.0013071662 + 134720 -6242.0994 -6251.1709 9.0715338 3690.204 642.75738 -10584.132 0 434.7588 0.0013442071 0.0013153583 + 134730 -6242.1017 -6251.4231 9.3213579 3694.2636 640.43969 -10586.126 0 446.73177 0.0010583723 0.001015308 + 134740 -6242.2531 -6251.4843 9.2311258 3702.4987 636.54754 -10590.531 0 442.40734 0.00052999534 0.00047918025 + 134750 -6242.6203 -6251.1663 8.5459356 3712.6209 632.03185 -10595.819 0 409.56919 -0.00011752386 -0.00016125661 + 134760 -6243.1254 -6250.5717 7.4463289 3721.6324 627.91227 -10600.116 0 356.86986 -0.0007206635 -0.0007476933 + 134770 -6243.6071 -6250.0197 6.4125821 3726.7847 625.01333 -10601.818 0 307.32692 -0.0011256293 -0.001140219 + 134780 -6243.9677 -6249.7913 5.8235754 3726.5548 623.78684 -10600.133 0 279.09841 -0.0012431049 -0.0012583449 + 134790 -6244.2464 -6249.9426 5.6961167 3721.1465 624.2444 -10595.333 0 272.98988 -0.0010766821 -0.0011015396 + 134800 -6244.5592 -6250.3405 5.7812842 3712.2929 625.99584 -10588.629 0 277.07158 -0.00071046828 -0.00074223771 + 134810 -6244.9807 -6250.8377 5.85701 3702.5435 628.38428 -10581.766 0 280.70078 -0.00026786882 -0.00029658873 + 134820 -6245.4864 -6251.3912 5.9048133 3694.438 630.69045 -10576.52 0 282.99178 0.00013264927 0.00011354675 + 134830 -6245.9957 -6252.0257 6.0299536 3689.8946 632.34463 -10574.265 0 288.98921 0.00040526886 0.00039304141 + 134840 -6246.4589 -6252.7204 6.2614723 3689.9021 633.06893 -10575.691 0 300.08489 0.00050587529 0.00049226153 + 134850 -6246.8935 -6253.3623 6.4688727 3694.4259 632.9026 -10580.691 0 310.02468 0.00043203768 0.00041175455 + 134860 -6247.3453 -6253.8244 6.4791381 3702.4467 632.12038 -10588.392 0 310.51665 0.00022075447 0.00019590056 + 134870 -6247.8248 -6254.0787 6.253846 3712.1568 631.10024 -10597.336 0 299.71939 -5.8805311e-05 -8.1984843e-05 + 134880 -6248.2897 -6254.2207 5.9310231 3721.364 630.2041 -10605.789 0 284.24791 -0.00032288751 -0.00034049671 + 134890 -6248.6825 -6254.3771 5.6945938 3728.0469 629.70373 -10612.128 0 272.91689 -0.00049836379 -0.00051194497 + 134900 -6248.9773 -6254.588 5.6107284 3730.8759 629.74628 -10615.21 0 268.89759 -0.00054447909 -0.00055856634 + 134910 -6249.191 -6254.7733 5.582273 3729.5086 630.33895 -10614.621 0 267.53385 -0.00046105656 -0.00047857639 + 134920 -6249.358 -6254.8043 5.4463011 3724.5762 631.34591 -10610.726 0 261.01731 -0.00028178163 -0.00030192849 + 134930 -6249.497 -6254.6099 5.1129054 3717.418 632.50843 -10604.536 0 245.03911 -5.9420731e-05 -7.9393668e-05 + 134940 -6249.6027 -6254.2236 4.620935 3709.7082 633.50079 -10597.433 0 221.46113 0.00014855475 0.00013059762 + 134950 -6249.6648 -6253.7482 4.0833661 3703.0887 634.01441 -10590.851 0 195.69781 0.00029056994 0.00027461956 + 134960 -6249.6866 -6253.2931 3.6064243 3698.8563 633.84145 -10585.991 0 172.84009 0.00032977802 0.00031531924 + 134970 -6249.6807 -6252.9463 3.2655869 3697.7206 632.92766 -10583.595 0 156.50525 0.0002524475 0.00023951069 + 134980 -6249.6508 -6252.7761 3.1253758 3699.6803 631.38253 -10583.839 0 149.78554 7.2549562e-05 6.0969451e-05 + 134990 -6249.5862 -6252.8221 3.2359105 3704.0658 629.45327 -10586.341 0 155.08299 -0.00017183226 -0.00018353743 + 135000 -6249.4766 -6253.0678 3.5911498 3709.737 627.47493 -10590.28 0 172.10805 -0.0004295036 -0.00044358575 + 135010 -6249.328 -6253.4322 4.1041396 3715.3609 625.80752 -10594.601 0 196.6934 -0.00064852012 -0.00066604184 + 135020 -6249.1601 -6253.8044 4.6443517 3719.6881 624.77133 -10598.264 0 222.58339 -0.00078459264 -0.00080428039 + 135030 -6248.9883 -6254.1006 5.1122346 3721.7938 624.59178 -10600.486 0 245.00697 -0.00080562802 -0.0008249861 + 135040 -6248.8109 -6254.2949 5.484034 3721.2696 625.36051 -10600.925 0 262.82568 -0.00069629345 -0.00071396538 + 135050 -6248.6155 -6254.4024 5.7869064 3718.3424 627.01375 -10599.759 0 277.34103 -0.00046467509 -0.00048158294 + 135060 -6248.4002 -6254.4338 6.0335829 3713.8685 629.32809 -10597.63 0 289.16315 -0.00014746697 -0.00016542285 + 135070 -6248.1831 -6254.3747 6.1916085 3709.1554 631.93906 -10595.469 0 296.73662 0.00019322002 0.00017387704 + 135080 -6247.9857 -6254.2105 6.2248112 3705.622 634.3924 -10594.225 0 298.32788 0.00048447689 0.00046530108 + 135090 -6247.8085 -6253.9607 6.1522087 3704.3968 636.23391 -10594.591 0 294.84836 0.00066317207 0.0006454054 + 135100 -6247.6302 -6253.6701 6.0399323 3705.9993 637.12479 -10596.794 0 289.46744 0.00069267246 0.00067513862 + 135110 -6247.4338 -6253.3609 5.9270867 3710.2008 636.94532 -10600.507 0 284.05925 0.00057029261 0.00055022785 + 135120 -6247.2289 -6253.0072 5.7783237 3716.0698 635.83977 -10604.917 0 276.9297 0.00032708539 0.00030320672 + 135130 -6247.0425 -6252.5739 5.5314627 3722.167 634.17534 -10608.916 0 265.09873 2.2917359e-05 -2.7652945e-06 + 135140 -6246.8875 -6252.0862 5.1986727 3726.86 632.42641 -10611.373 0 249.14956 -0.00026400263 -0.00028786636 + 135150 -6246.7438 -6251.6556 4.9117934 3728.7267 631.03095 -10611.413 0 235.4007 -0.00045547016 -0.0004758222 + 135160 -6246.5737 -6251.4226 4.84884 3726.9754 630.27485 -10608.673 0 232.38362 -0.00049706102 -0.00051562747 + 135170 -6246.3561 -6251.4575 5.1013678 3721.7463 630.23641 -10603.44 0 244.48617 -0.00037774932 -0.00039730773 + 135180 -6246.1004 -6251.7157 5.6152725 3714.148 630.78881 -10596.652 0 269.11536 -0.00013438798 -0.00015540122 + 135190 -6245.8246 -6252.0838 6.2591879 3705.9863 631.64337 -10589.714 0 299.97541 0.0001615869 0.0001409852 + 135200 -6245.5287 -6252.4515 6.9228049 3699.2944 632.42379 -10584.17 0 331.77965 0.00042644298 0.0004070669 + 135210 -6245.2039 -6252.7276 7.5237184 3695.8307 632.76444 -10581.323 0 360.5788 0.00058419307 0.00056381803 + 135220 -6244.8696 -6252.8193 7.9496348 3696.647 632.41566 -10581.882 0 380.99111 0.00058186851 0.00055789779 + 135230 -6244.5812 -6252.6544 8.0732518 3701.763 631.33057 -10585.748 0 386.91552 0.00040462748 0.00037828799 + 135240 -6244.385 -6252.2624 7.8774465 3710.0356 629.71099 -10592.009 0 377.53144 8.9756243e-05 6.6038091e-05 + 135250 -6244.2689 -6251.8166 7.5477074 3719.3592 627.99554 -10599.171 0 361.72849 -0.00027217235 -0.000289658 + 135260 -6244.1711 -6251.5521 7.3810464 3727.2471 626.77583 -10605.575 0 353.74116 -0.00056001734 -0.00057357575 + 135270 -6244.0443 -6251.5971 7.5528002 3731.6207 626.63867 -10609.856 0 361.97257 -0.00066441404 -0.00068051708 + 135280 -6243.9098 -6251.8657 7.9559582 3731.4803 627.96163 -10611.308 0 381.29416 -0.00053000694 -0.00055246496 + 135290 -6243.8395 -6252.126 8.2865502 3727.1809 630.72742 -10610.034 0 397.13798 -0.00017641826 -0.0002019352 + 135300 -6243.879 -6252.1912 8.3122193 3720.2505 634.44634 -10606.888 0 398.36819 0.00030980497 0.00028812087 + 135310 -6243.9948 -6252.0561 8.061378 3712.8966 638.25271 -10603.205 0 386.34647 0.00080344806 0.00078791392 + 135320 -6244.1106 -6251.8551 7.7445023 3707.3959 641.16374 -10600.415 0 371.16001 0.001174392 0.0011590885 + 135330 -6244.1961 -6251.7018 7.5057157 3705.4995 642.40443 -10599.606 0 359.71601 0.0013192127 0.0012955658 + 135340 -6244.308 -6251.5861 7.2780527 3707.9165 641.6682 -10601.171 0 348.80512 0.0011902251 0.0011564891 + 135350 -6244.5348 -6251.4308 6.8960043 3713.9906 639.21266 -10604.634 0 330.49522 0.00081770011 0.00078214097 + 135360 -6244.899 -6251.2383 6.3393606 3721.7629 635.75781 -10608.759 0 303.81773 0.00031107614 0.00028444893 + 135370 -6245.3262 -6251.1474 5.8211067 3728.5664 632.2343 -10611.948 0 278.9801 -0.0001741161 -0.00018969793 + 135380 -6245.7264 -6251.3103 5.583828 3732.0215 629.48563 -10612.817 0 267.60837 -0.00049658414 -0.00051021154 + 135390 -6246.0993 -6251.7185 5.6192429 3730.9744 628.02774 -10610.721 0 269.30565 -0.00058527161 -0.00060779722 + 135400 -6246.5347 -6252.1899 5.6552564 3725.8686 627.92997 -10605.989 0 271.03162 -0.00045777255 -0.00049067493 + 135410 -6247.1005 -6252.5457 5.4452053 3718.4007 628.84471 -10599.791 0 260.96479 -0.00019542659 -0.00023009847 + 135420 -6247.7558 -6252.7749 5.0191435 3710.7641 630.17506 -10593.714 0 240.54552 0.00010019442 7.3284065e-05 + 135430 -6248.3907 -6253.0179 4.6271827 3704.9394 631.31217 -10589.269 0 221.76056 0.00034108234 0.00032433655 + 135440 -6248.9238 -6253.4193 4.4954718 3702.2716 631.83869 -10587.53 0 215.44823 0.00046883271 0.00045761768 + 135450 -6249.3438 -6254.0113 4.6675346 3703.3019 631.6284 -10588.942 0 223.69445 0.00046053967 0.00044862059 + 135460 -6249.6849 -6254.7048 5.0199041 3707.745 630.83873 -10593.289 0 240.58197 0.00033039255 0.00031458953 + 135470 -6249.9857 -6255.3505 5.3648379 3714.5755 629.82998 -10599.756 0 257.11313 0.00012552191 0.00010666339 + 135480 -6250.2652 -6255.8043 5.5391289 3722.2503 629.0469 -10607.101 0 265.46614 -8.6719501e-05 -0.00010559591 + 135490 -6250.5208 -6255.967 5.446178 3729.0615 628.88846 -10613.917 0 261.01141 -0.00023823233 -0.00025419564 + 135500 -6250.7356 -6255.807 5.0714296 3733.5495 629.58763 -10618.944 0 243.05136 -0.00027996298 -0.00029176599 + 135510 -6250.8883 -6255.3737 4.4854544 3734.8642 631.12806 -10621.366 0 214.96814 -0.00019552225 -0.00020423011 + 135520 -6250.9656 -6254.7864 3.8207856 3732.9718 633.22769 -10620.986 0 183.11348 -5.4161854e-06 -1.3891075e-05 + 135530 -6250.9739 -6254.1931 3.219182 3728.6357 635.40599 -10618.235 0 154.28126 0.00023866835 0.0002275036 + 135540 -6250.9396 -6253.7201 2.7805203 3723.1668 637.12114 -10614.008 0 133.25814 0.00046863071 0.00045386861 + 135550 -6250.8952 -6253.4421 2.5468624 3718.0192 637.9326 -10609.394 0 122.05994 0.00062055919 0.0006041593 + 135560 -6250.8566 -6253.3805 2.5239048 3714.3778 637.6306 -10605.389 0 120.95968 0.00065475028 0.00064021353 + 135570 -6250.8086 -6253.5209 2.7123478 3712.8754 636.28477 -10602.681 0 129.99092 0.00056722546 0.00055670717 + 135580 -6250.7108 -6253.8229 3.1120958 3713.5209 634.1981 -10601.542 0 149.14909 0.00038738715 0.00037941096 + 135590 -6250.5269 -6254.2122 3.6852332 3715.8208 631.79478 -10601.828 0 176.61705 0.00016317226 0.00015330128 + 135600 -6250.258 -6254.5769 4.3188899 3718.9967 629.49427 -10603.068 0 206.98544 -5.7535371e-05 -7.2963906e-05 + 135610 -6249.9471 -6254.8043 4.8571489 3722.1818 627.61945 -10604.605 0 232.78183 -0.00023855423 -0.00025887611 + 135620 -6249.6442 -6254.8502 5.2059966 3724.5549 626.3623 -10605.767 0 249.50057 -0.00035607522 -0.00037676428 + 135630 -6249.3615 -6254.7734 5.4119253 3725.4563 625.80321 -10606.033 0 259.36983 -0.00039404101 -0.00041118143 + 135640 -6249.0697 -6254.683 5.6132643 3724.5371 625.95669 -10605.177 0 269.01912 -0.00034305651 -0.00035736918 + 135650 -6248.7392 -6254.6288 5.8896233 3721.9141 626.80733 -10603.35 0 282.26379 -0.00020536646 -0.00022145277 + 135660 -6248.3846 -6254.5378 6.1532426 3718.2226 628.31076 -10601.071 0 294.89791 -6.2720534e-08 -2.1410172e-05 + 135670 -6248.0612 -6254.2665 6.2052538 3714.4808 630.36019 -10599.107 0 297.39058 0.00023874992 0.00021375551 + 135680 -6247.8124 -6253.7352 5.9227926 3711.7959 632.74521 -10598.276 0 283.85345 0.00047107653 0.00044756948 + 135690 -6247.6246 -6253.0194 5.3947239 3711.059 635.14139 -10599.22 0 258.54544 0.00066003314 0.00064104142 + 135700 -6247.4449 -6252.3087 4.8638119 3712.7563 637.15638 -10602.221 0 233.10115 0.00077480253 0.00075795323 + 135710 -6247.237 -6251.7817 4.5446618 3716.8955 638.42432 -10607.102 0 217.80569 0.00079115334 0.00077144768 + 135720 -6247.0114 -6251.5246 4.5132236 3722.962 638.7115 -10613.198 0 216.299 0.0006976807 0.00067295942 + 135730 -6246.7985 -6251.549 4.7505136 3729.8922 637.99461 -10619.436 0 227.67127 0.00050810148 0.00048104855 + 135740 -6246.6047 -6251.8419 5.2372118 3736.1685 636.48794 -10624.498 0 250.99658 0.0002690333 0.00024392684 + 135750 -6246.4008 -6252.3654 5.9645845 3740.1293 634.60989 -10627.105 0 285.85636 5.2156576e-05 3.0266355e-05 + 135760 -6246.1572 -6253.0082 6.8509529 3740.4543 632.88778 -10626.35 0 328.33611 -6.9463199e-05 -9.0959545e-05 + 135770 -6245.887 -6253.5609 7.6738814 3736.641 631.81194 -10622.014 0 367.77545 -4.9454058e-05 -7.4085997e-05 + 135780 -6245.6496 -6253.7809 8.131341 3729.2596 631.66962 -10614.71 0 389.69949 0.00011362212 8.5796512e-05 + 135790 -6245.502 -6253.5266 8.0246348 3719.8673 632.4153 -10605.809 0 384.58552 0.00037514577 0.00034797909 + 135800 -6245.4471 -6252.8612 7.414151 3710.6149 633.64667 -10597.123 0 355.32772 0.00065771333 0.00063516894 + 135810 -6245.4338 -6252.0325 6.5987701 3703.6984 634.7248 -10590.456 0 316.25009 0.00087166312 0.00085392368 + 135820 -6245.4056 -6251.3421 5.9365313 3700.8152 635.00771 -10587.165 0 284.51189 0.00093850775 0.00092193143 + 135830 -6245.3417 -6251.0031 5.6614218 3702.7369 634.10744 -10587.847 0 271.3271 0.00081528282 0.00079575892 + 135840 -6245.258 -6251.0725 5.8144827 3709.0691 632.06909 -10592.211 0 278.66263 0.00051436908 0.00049054157 + 135850 -6245.1814 -6251.4687 6.287359 3718.2751 629.40025 -10599.144 0 301.32552 0.00010912677 8.2810044e-05 + 135860 -6245.1277 -6252.0344 6.9067102 3728.0128 626.93197 -10606.979 0 331.0083 -0.00028210312 -0.0003080194 + 135870 -6245.1007 -6252.5969 7.4962515 3735.7537 625.55255 -10613.903 0 359.26243 -0.0005319627 -0.0005556557 + 135880 -6245.1043 -6253.0143 7.9100526 3739.5251 625.90146 -10618.441 0 379.09411 -0.00054759598 -0.00056862931 + 135890 -6245.1461 -6253.2177 8.0716082 3738.5208 628.129 -10619.868 0 386.83675 -0.00030393388 -0.00032251488 + 135900 -6245.2258 -6253.2406 8.0147547 3733.3509 631.81328 -10618.405 0 384.11202 0.00014649374 0.00012947016 + 135910 -6245.3308 -6253.1909 7.8600684 3725.85 636.07746 -10615.118 0 376.69858 0.00068885746 0.00067126191 + 135920 -6245.4542 -6253.1568 7.7025881 3718.5146 639.8694 -10611.541 0 369.15124 0.0011787779 0.001158265 + 135930 -6245.6126 -6253.1209 7.5083151 3713.7382 642.29283 -10609.152 0 359.84059 0.0014831047 0.0014597632 + 135940 -6245.8313 -6252.9728 7.1414435 3713.0561 642.86316 -10608.892 0 342.25804 0.0015198414 0.0014973678 + 135950 -6246.105 -6252.6175 6.5124849 3716.6501 641.60713 -10610.875 0 312.11482 0.0012853295 0.0012682459 + 135960 -6246.3809 -6252.079 5.6980533 3723.3131 638.99792 -10614.39 0 273.08269 0.00085544426 0.00084439874 + 135970 -6246.5942 -6251.4987 4.9045357 3730.902 635.777 -10618.178 0 235.05287 0.00035719209 0.00034748447 + 135980 -6246.725 -6251.0444 4.3194251 3737.0723 632.73469 -10620.851 0 207.01109 -7.5726895e-05 -9.0022159e-05 + 135990 -6246.8158 -6250.8334 4.0175733 3739.9739 630.507 -10621.314 0 192.54465 -0.00034151169 -0.00036170477 + 136000 -6246.9285 -6250.9365 4.0079871 3738.6902 629.42921 -10619.056 0 192.08523 -0.00039016419 -0.00041165131 + 136010 -6247.0888 -6251.4119 4.323079 3733.3963 629.47902 -10614.287 0 207.1862 -0.00022715861 -0.00024414317 + 136020 -6247.2763 -6252.2817 5.0053974 3725.306 630.32494 -10607.913 0 239.88673 9.1149476e-05 7.9890641e-05 + 136030 -6247.4681 -6253.4566 5.9885164 3716.4339 631.45928 -10601.35 0 287.00331 0.00046846883 0.00045848304 + 136040 -6247.6896 -6254.7004 7.0107261 3709.1399 632.36595 -10596.206 0 335.99333 0.0007899851 0.00077529304 + 136050 -6248.0186 -6255.7011 7.6824859 3705.4843 632.67214 -10593.858 0 368.18783 0.00095509025 0.00093329498 + 136060 -6248.5253 -6256.2135 7.6881897 3706.5678 632.24957 -10595.031 0 368.46119 0.00091218219 0.00088609506 + 136070 -6249.1965 -6256.1719 6.975484 3712.1317 631.2442 -10599.548 0 334.30433 0.00067894347 0.00065400796 + 136080 -6249.9206 -6255.701 5.7804105 3720.6331 630.02359 -10606.358 0 277.0297 0.0003352992 0.000315688 + 136090 -6250.5579 -6255.0326 4.4747364 3729.7865 629.05257 -10613.872 0 214.45447 -8.4865885e-06 -2.1976283e-05 + 136100 -6251.0256 -6254.3997 3.3740459 3737.3093 628.7397 -10620.449 0 161.70321 -0.00025113526 -0.00026070665 + 136110 -6251.3223 -6253.9618 2.6394468 3741.5551 629.31037 -10624.827 0 126.4971 -0.00032916295 -0.00033831014 + 136120 -6251.4949 -6253.7759 2.2810432 3741.8575 630.74344 -10626.377 0 109.32039 -0.0002288494 -0.0002404248 + 136130 -6251.5994 -6253.8071 2.2077533 3738.5705 632.78 -10625.158 0 105.80793 1.6243612e-05 1.4852188e-06 + 136140 -6251.6786 -6253.9693 2.2907735 3732.8625 634.99423 -10621.826 0 109.78672 0.00033853228 0.00032226261 + 136150 -6251.7528 -6254.1795 2.4267395 3726.3501 636.90443 -10617.434 0 116.30297 0.00065655542 0.00064176648 + 136160 -6251.8185 -6254.3993 2.5808832 3720.68 638.09069 -10613.17 0 123.6904 0.00089638586 0.00088535937 + 136170 -6251.8545 -6254.6444 2.7899075 3717.1633 638.28623 -10610.094 0 133.70802 0.0010080692 0.0010006365 + 136180 -6251.8364 -6254.9551 3.1186332 3716.5307 637.42337 -10608.909 0 149.4624 0.00097309925 0.00096650277 + 136190 -6251.7544 -6255.3452 3.5908394 3718.8322 635.63513 -10609.813 0 172.09317 0.0008031929 0.0007940563 + 136200 -6251.6232 -6255.7666 4.1433224 3723.4589 633.22428 -10612.45 0 198.57126 0.00053429863 0.00052149948 + 136210 -6251.4719 -6256.1205 4.6485387 3729.2612 630.61044 -10615.992 0 222.78406 0.00021992448 0.00020578966 + 136220 -6251.3174 -6256.3098 4.9924095 3734.7638 628.26089 -10619.335 0 239.26428 -7.5846406e-05 -8.7618586e-05 + 136230 -6251.1485 -6256.2804 5.1319633 3738.4894 626.61089 -10621.381 0 245.95248 -0.00028871721 -0.0002967602 + 136240 -6250.9406 -6256.017 5.0763307 3739.3499 625.98217 -10621.349 0 243.28625 -0.00036924064 -0.00037607433 + 136250 -6250.6899 -6255.5163 4.8264298 3736.9793 626.51234 -10619.008 0 231.3096 -0.00029789168 -0.00030743443 + 136260 -6250.4285 -6254.792 4.3634901 3731.8609 628.11159 -10614.765 0 209.12293 -9.1822471e-05 -0.00010522847 + 136270 -6250.2024 -6253.9224 3.7199931 3725.1899 630.46601 -10609.578 0 178.28294 0.00020134233 0.00018714595 + 136280 -6250.0291 -6253.0875 3.0583686 3718.5468 633.09976 -10604.734 0 146.57418 0.00051891035 0.00050823362 + 136290 -6249.877 -6252.5262 2.6491366 3713.5294 635.4881 -10601.544 0 126.96149 0.00079868289 0.00079249708 + 136300 -6249.6842 -6252.4106 2.7264433 3711.4485 637.18739 -10601.046 0 130.66646 0.00098848635 0.00098293031 + 136310 -6249.4057 -6252.7262 3.3204784 3713.0907 637.93771 -10603.755 0 159.13596 0.0010511352 0.0010408583 + 136320 -6249.0516 -6253.2597 4.2081312 3718.5106 637.70679 -10609.477 0 201.67726 0.00097044618 0.00095371225 + 136330 -6248.6797 -6253.7243 5.0445386 3726.8748 636.67101 -10617.27 0 241.76259 0.00076005819 0.00074047483 + 136340 -6248.3434 -6253.9307 5.5872357 3736.4833 635.15382 -10625.568 0 267.77168 0.0004688021 0.00045164921 + 136350 -6248.0478 -6253.875 5.8272919 3745.0888 633.55062 -10632.514 0 279.27652 0.00017356924 0.00016035451 + 136360 -6247.764 -6253.6854 5.9213938 3750.4821 632.25833 -10636.426 0 283.78642 -4.1778278e-05 -5.4764811e-05 + 136370 -6247.4804 -6253.4956 6.0152383 3751.1371 631.60849 -10636.241 0 288.28397 -0.00011199133 -0.00012953283 + 136380 -6247.2247 -6253.3656 6.1408447 3746.6542 631.79651 -10631.816 0 294.30373 -8.5242962e-06 -3.1200726e-05 + 136390 -6247.0333 -6253.2941 6.2608908 3737.8668 632.81473 -10623.976 0 300.05702 0.00025451399 0.00023109599 + 136400 -6246.907 -6253.2707 6.3637332 3726.6408 634.41781 -10614.329 0 304.9858 0.00062321726 0.00060403598 + 136410 -6246.8069 -6253.2873 6.4804693 3715.4796 636.15064 -10604.918 0 310.58045 0.0010117427 0.00099762312 + 136420 -6246.69 -6253.3111 6.6211762 3707.0074 637.44742 -10597.766 0 317.32391 0.0013166802 0.0013038001 + 136430 -6246.5449 -6253.2781 6.7332036 3703.3753 637.78264 -10594.436 0 322.6929 0.0014412127 0.0014245496 + 136440 -6246.3943 -6253.1325 6.738247 3705.6829 636.83733 -10595.653 0 322.9346 0.0013257569 0.0013028797 + 136450 -6246.273 -6252.8743 6.6012999 3713.5858 634.6334 -10601.093 0 316.37133 0.00097354295 0.00094612762 + 136460 -6246.2035 -6252.5724 6.3688842 3725.2553 631.58551 -10609.413 0 305.23267 0.00045894729 0.00043163371 + 136470 -6246.1799 -6252.3428 6.1629838 3737.7561 628.43504 -10618.534 0 295.36476 -8.6628896e-05 -0.00010933018 + 136480 -6246.1659 -6252.2998 6.1338587 3747.7903 626.07067 -10626.161 0 293.96892 -0.00050852175 -0.00052567479 + 136490 -6246.1169 -6252.487 6.3700808 3752.6338 625.28365 -10630.404 0 305.29002 -0.00067367357 -0.00068912435 + 136500 -6246.0156 -6252.8176 6.8020319 3750.981 626.52799 -10630.327 0 325.99153 -0.00051380178 -0.00053344138 + 136510 -6245.895 -6253.081 7.1859854 3743.3878 629.75182 -10626.221 0 344.39274 -5.1962185e-05 -7.8654212e-05 + 136520 -6245.8178 -6253.0458 7.2280542 3732.118 634.35049 -10619.514 0 346.40891 0.00059916951 0.00056865461 + 136530 -6245.8224 -6252.6135 6.7911885 3720.4428 639.27295 -10612.329 0 325.47186 0.0012692093 0.0012420364 + 136540 -6245.8837 -6251.9119 6.0282046 3711.6638 643.28023 -10606.856 0 288.90539 0.0017812518 0.0017625187 + 136550 -6245.9304 -6251.2468 5.3163685 3708.2059 645.30077 -10604.753 0 254.79021 0.0020030411 0.001991185 + 136560 -6245.9023 -6250.9316 5.029316 3711.03 644.77017 -10606.732 0 241.03304 0.0018812215 0.0018691675 + 136570 -6245.7959 -6251.1128 5.3168736 3719.4414 641.82871 -10612.383 0 254.81442 0.0014522515 0.0014335639 + 136580 -6245.6623 -6251.7101 6.0477954 3731.2621 637.29588 -10620.268 0 289.84429 0.00083229212 0.00080704744 + 136590 -6245.5623 -6252.5021 6.9398356 3743.326 632.42308 -10628.251 0 332.59586 0.0001898548 0.00016476574 + 136600 -6245.514 -6253.2734 7.7594385 3752.2616 628.50862 -10634.044 0 371.87583 -0.00029657006 -0.00031453996 + 136610 -6245.482 -6253.8975 8.415441 3755.4516 626.51143 -10635.861 0 403.31515 -0.00049042021 -0.00050129551 + 136620 -6245.428 -6254.3038 8.8757346 3751.9018 626.79412 -10633 0 425.375 -0.0003434728 -0.00035485386 + 136630 -6245.374 -6254.412 9.0380754 3742.6441 629.06087 -10626.117 0 433.15529 8.4828503e-05 6.5103533e-05 + 136640 -6245.4 -6254.1484 8.7484295 3730.4197 632.48439 -10617.053 0 419.27383 0.00064889572 0.00062072689 + 136650 -6245.5698 -6253.5428 7.9730243 3718.731 635.97528 -10608.249 0 382.11206 0.0011719755 0.0011433453 + 136660 -6245.8626 -6252.7831 6.9205355 3710.689 638.52125 -10601.993 0 331.67089 0.001508155 0.0014876217 + 136670 -6246.1868 -6252.1374 5.9506458 3708.148 639.49322 -10599.779 0 285.18834 0.0015835679 0.0015725614 + 136680 -6246.4562 -6251.7926 5.3364849 3711.3811 638.81112 -10601.985 0 255.7543 0.0014051506 0.0013971895 + 136690 -6246.652 -6251.7445 5.092475 3719.245 636.91331 -10607.903 0 244.05998 0.0010439684 0.0010307733 + 136700 -6246.8207 -6251.8299 5.0091556 3729.6232 634.55558 -10616.009 0 240.06684 0.00060758992 0.00058601117 + 136710 -6247.0201 -6251.8742 4.8541203 3739.9751 632.53032 -10624.38 0 232.63668 0.00021173029 0.00018550139 + 136720 -6247.2672 -6251.8316 4.5644034 3747.9056 631.4156 -10631.153 0 218.75182 -4.5641059e-05 -6.9992886e-05 + 136730 -6247.5325 -6251.8103 4.2778223 3751.6979 631.43594 -10634.944 0 205.01725 -0.00010630267 -0.00012487538 + 136740 -6247.7763 -6251.9809 4.2045971 3750.704 632.45774 -10635.143 0 201.50789 3.4733565e-05 2.1201381e-05 + 136750 -6247.9851 -6252.454 4.4689359 3745.4724 634.08873 -10632.015 0 214.17648 0.00033014419 0.00031831556 + 136760 -6248.177 -6253.2156 5.0386058 3737.5593 635.82679 -10626.602 0 241.47826 0.00069669138 0.000683773 + 136770 -6248.3826 -6254.1403 5.7577328 3729.0808 637.2074 -10620.429 0 275.94286 0.0010407364 0.0010257897 + 136780 -6248.6247 -6255.0451 6.4204156 3722.1538 637.91386 -10615.113 0 307.70234 0.0012828095 0.0012659962 + 136790 -6248.9128 -6255.7406 6.8277801 3718.3864 637.83136 -10611.958 0 327.22553 0.0013738784 0.0013555389 + 136800 -6249.245 -6256.0743 6.8292971 3718.531 637.04063 -10611.646 0 327.29823 0.0013019745 0.0012827952 + 136810 -6249.605 -6255.981 6.3759827 3722.3559 635.76184 -10614.099 0 305.57287 0.0010912794 0.0010726347 + 136820 -6249.9569 -6255.5222 5.565338 3728.754 634.27511 -10618.551 0 266.72222 0.00079467018 0.00077785147 + 136830 -6250.2571 -6254.8738 4.6167056 3736.0649 632.85089 -10623.79 0 221.25844 0.00047980127 0.00046480293 + 136840 -6250.4797 -6254.2501 3.7704579 3742.5156 631.71004 -10628.476 0 180.7015 0.00021203439 0.00019755625 + 136850 -6250.6297 -6253.8152 3.1854657 3746.6381 631.01161 -10631.465 0 152.66539 4.0724677e-05 2.5509011e-05 + 136860 -6250.733 -6253.6344 2.9014206 3747.5591 630.85356 -10632.047 0 139.05236 -7.0188754e-06 -2.2978465e-05 + 136870 -6250.8131 -6253.6781 2.8649563 3745.1354 631.27215 -10630.086 0 137.30478 7.3475786e-05 5.796023e-05 + 136880 -6250.877 -6253.8596 2.98259 3739.9528 632.23181 -10626.044 0 142.94245 0.00026622682 0.00025234054 + 136890 -6250.9139 -6254.0811 3.1672482 3733.2084 633.60631 -10620.896 0 151.7923 0.00053588971 0.00052351392 + 136900 -6250.9083 -6254.2666 3.3582589 3726.491 635.16339 -10615.921 0 160.94661 0.00082938434 0.00081695043 + 136910 -6250.8559 -6254.3754 3.5194718 3721.47 636.57291 -10612.418 0 168.67284 0.0010813054 0.0010672062 + 136920 -6250.7671 -6254.4108 3.6436887 3719.5186 637.45656 -10611.386 0 174.62601 0.0012264046 0.0012106916 + 136930 -6250.6529 -6254.4261 3.7731333 3721.3399 637.48423 -10613.25 0 180.82972 0.0012181142 0.0012026155 + 136940 -6250.5053 -6254.5079 4.0025345 3726.7129 636.49719 -10617.718 0 191.82391 0.0010463288 0.0010329175 + 136950 -6250.2924 -6254.7245 4.4321024 3734.4681 634.61224 -10623.805 0 212.41121 0.00074600568 0.00073472759 + 136960 -6249.9733 -6255.062 5.0887325 3742.7273 632.25333 -10630.043 0 243.88062 0.00039215882 0.00038100809 + 136970 -6249.5236 -6255.3962 5.8725389 3749.3485 630.0787 -10634.823 0 281.44502 8.2569921e-05 6.9032687e-05 + 136980 -6248.9565 -6255.5322 6.5757509 3752.4651 628.80974 -10636.807 0 315.14688 -8.7004638e-05 -0.00010410522 + 136990 -6248.3222 -6255.298 6.9758298 3750.9967 629.00557 -10635.3 0 334.3209 -4.9492186e-05 -6.9437876e-05 + 137000 -6247.6871 -6254.6388 6.9517063 3745.0102 630.85389 -10630.503 0 333.16477 0.00021083443 0.00018972101 + 137010 -6247.1056 -6253.6553 6.5497096 3735.8171 634.05578 -10623.528 0 313.89883 0.00064646681 0.00062565022 + 137020 -6246.605 -6252.5702 5.9651311 3725.7261 637.86111 -10616.157 0 285.88255 0.0011525543 0.0011328987 + 137030 -6246.1824 -6251.6473 5.4648511 3717.4689 641.26344 -10610.38 0 261.90633 0.0015933781 0.0015750911 + 137040 -6245.8103 -6251.0958 5.2854981 3713.4443 643.30491 -10607.845 0 253.31073 0.0018427039 0.0018249517 + 137050 -6245.455 -6250.9812 5.526202 3715.0113 643.39106 -10609.384 0 264.84661 0.0018231623 0.0018040354 + 137060 -6245.1038 -6251.1831 6.0792803 3722.0401 641.49616 -10614.719 0 291.35322 0.0015304846 0.0015082499 + 137070 -6244.7786 -6251.4464 6.6677882 3732.8554 638.1736 -10622.475 0 319.55782 0.0010363173 0.0010111643 + 137080 -6244.5156 -6251.5213 7.0056958 3744.6168 634.36786 -10630.506 0 335.75225 0.00047075711 0.00044495229 + 137090 -6244.3266 -6251.3127 6.9860507 3754.0699 631.11071 -10636.493 0 334.81075 -1.090029e-05 -3.5257756e-05 + 137100 -6244.1851 -6250.9353 6.750227 3758.4759 629.22215 -10638.633 0 323.50875 -0.00027076017 -0.00029432528 + 137110 -6244.0555 -6250.6299 6.5744763 3756.4408 629.10734 -10636.178 0 315.08579 -0.00023019402 -0.0002560366 + 137120 -6243.9346 -6250.606 6.6713453 3748.3652 630.68027 -10629.651 0 319.7283 0.00010317291 7.3398739e-05 + 137130 -6243.8561 -6250.9394 7.0832926 3736.3438 633.40629 -10620.69 0 339.47113 0.00063627762 0.00060559927 + 137140 -6243.8474 -6251.5857 7.7383471 3723.5428 636.44997 -10611.578 0 370.86501 0.0012210623 0.0011950868 + 137150 -6243.8914 -6252.4398 8.5483665 3713.3007 638.90799 -10604.649 0 409.68569 0.001700623 0.0016810307 + 137160 -6243.9488 -6253.3438 9.3950381 3708.2733 640.07532 -10601.692 0 450.26294 0.0019509237 0.0019318326 + 137170 -6244.0241 -6254.056 10.031968 3709.8177 639.66022 -10603.534 0 480.78819 0.0019076295 0.00188041 + 137180 -6244.1903 -6254.2946 10.104287 3717.6575 637.86652 -10609.819 0 484.25415 0.0015804755 0.0015431693 + 137190 -6244.5173 -6253.9083 9.3909601 3729.8575 635.30945 -10619.075 0 450.0675 0.0010570304 0.0010179334 + 137200 -6244.9753 -6253.0463 8.0710179 3743.221 632.80228 -10629.07 0 386.80846 0.0004872476 0.000457607 + 137210 -6245.4372 -6252.1297 6.6924982 3754.1644 631.10441 -10637.398 0 320.74207 4.0887487e-05 2.4093362e-05 + 137220 -6245.7856 -6251.594 5.8083874 3759.8354 630.72036 -10642.15 0 278.37052 -0.0001507061 -0.00016181211 + 137230 -6246.0048 -6251.6095 5.6046834 3759.0072 631.79175 -10642.408 0 268.60788 -4.0166194e-05 -5.555356e-05 + 137240 -6246.1722 -6252.0102 5.8380092 3752.3599 634.07882 -10638.449 0 279.79016 0.00032509329 0.00030209558 + 137250 -6246.3763 -6252.462 6.0857261 3742.1024 637.01869 -10631.583 0 291.66214 0.00082725371 0.00080186941 + 137260 -6246.6399 -6252.6994 6.0594809 3731.1895 639.85398 -10623.743 0 290.40432 0.0013209919 0.0013007314 + 137270 -6246.9116 -6252.6532 5.7416255 3722.4712 641.81826 -10616.943 0 275.17091 0.0016753227 0.0016626377 + 137280 -6247.1225 -6252.4228 5.3003627 3718.0176 642.3397 -10612.78 0 254.02312 0.0018029503 0.0017937077 + 137290 -6247.2488 -6252.1697 4.9209588 3718.7113 641.20324 -10612.084 0 235.83996 0.0016756807 0.0016639122 + 137300 -6247.3238 -6252.0349 4.7111051 3724.1133 638.61618 -10614.764 0 225.78259 0.0013283708 0.0013120252 + 137310 -6247.3984 -6252.1201 4.7216967 3732.5959 635.15289 -10619.869 0 226.2902 0.00085145245 0.00083369677 + 137320 -6247.4915 -6252.4933 5.0017638 3741.746 631.59824 -10625.837 0 239.71258 0.0003697269 0.00035500501 + 137330 -6247.5792 -6253.1652 5.5860141 3749.0042 628.74381 -10630.913 0 267.71314 8.6401809e-06 -2.3280444e-06 + 137340 -6247.6292 -6254.034 6.4047287 3752.3971 627.19762 -10633.629 0 306.95054 -0.00014275414 -0.0001540209 + 137350 -6247.6483 -6254.8659 7.2175933 3751.1198 627.2483 -10633.234 0 345.90757 -5.7783811e-05 -7.4256935e-05 + 137360 -6247.689 -6255.3741 7.6850282 3745.7395 628.80398 -10629.918 0 368.30967 0.00022386237 0.00020133338 + 137370 -6247.8053 -6255.3721 7.5667564 3737.9398 631.41865 -10624.73 0 362.64143 0.00061446472 0.00059008226 + 137380 -6248.0004 -6254.8914 6.8910777 3729.9405 634.41163 -10619.244 0 330.25911 0.0010085632 0.0009878767 + 137390 -6248.2238 -6254.1658 5.9419678 3723.8503 637.05832 -10615.074 0 284.77244 0.0013119774 0.0012973808 + 137400 -6248.4161 -6253.4942 5.0781369 3721.1598 638.79458 -10613.449 0 243.37281 0.0014619836 0.0014514451 + 137410 -6248.5499 -6253.0869 4.5370041 3722.4572 639.3634 -10614.908 0 217.4387 0.0014377328 0.0014270295 + 137420 -6248.6368 -6252.9855 4.3487334 3727.3611 638.85627 -10619.203 0 208.4157 0.0012615429 0.0012474381 + 137430 -6248.7077 -6253.0795 4.3718217 3734.6497 637.64396 -10625.373 0 209.52223 0.00099069266 0.00097282251 + 137440 -6248.7909 -6253.1896 4.3987696 3742.558 636.22958 -10631.977 0 210.81372 0.00070089887 0.00068170826 + 137450 -6248.8953 -6253.1746 4.2792284 3749.1927 635.07784 -10637.445 0 205.08464 0.00046621734 0.00044917734 + 137460 -6249.0038 -6253.011 4.0072586 3752.9821 634.47768 -10640.471 0 192.05032 0.00034131852 0.00032832331 + 137470 -6249.0833 -6252.804 3.7206518 3753.061 634.48009 -10640.345 0 178.31451 0.00034994674 0.00033968403 + 137480 -6249.1099 -6252.7189 3.6090595 3749.4853 634.92219 -10637.126 0 172.96638 0.00048100632 0.00046989875 + 137490 -6249.0865 -6252.8844 3.7979153 3743.2029 635.51458 -10631.602 0 182.01741 0.00069286684 0.00067817097 + 137500 -6249.0376 -6253.3282 4.2906096 3735.7804 635.95153 -10625.06 0 205.63009 0.0009256011 0.00090811398 + 137510 -6248.9828 -6253.9793 4.9965838 3728.9746 636.00477 -10618.959 0 239.46433 0.001118371 0.0011020941 + 137520 -6248.9115 -6254.712 5.8005068 3724.2967 635.57675 -10614.586 0 277.99283 0.0012258881 0.0012143769 + 137530 -6248.7862 -6255.3821 6.5959674 3722.7026 634.70693 -10612.792 0 316.11577 0.0012269409 0.0012193388 + 137540 -6248.5784 -6255.8292 7.2507786 3724.4678 633.54175 -10613.839 0 347.49799 0.0011224135 0.0011133541 + 137550 -6248.3115 -6255.8803 7.5688101 3729.1985 632.28716 -10617.366 0 362.73985 0.00092831003 0.00091273919 + 137560 -6248.0574 -6255.4137 7.3563301 3735.893 631.16225 -10622.469 0 352.55662 0.00067306432 0.00065162081 + 137570 -6247.8787 -6254.4707 6.591989 3743.0439 630.368 -10627.883 0 315.9251 0.00040156409 0.00038058565 + 137580 -6247.7715 -6253.3084 5.5369597 3748.8683 630.07862 -10632.255 0 265.36218 0.00017698196 0.00016251462 + 137590 -6247.6699 -6252.301 4.6311598 3751.7278 630.44777 -10634.477 0 221.95116 6.9806045e-05 6.1630709e-05 + 137600 -6247.5043 -6251.7306 4.226296 3750.6445 631.60605 -10633.981 0 202.54782 0.00013469028 0.00012653151 + 137610 -6247.2538 -6251.6246 4.3707593 3745.6901 633.62304 -10630.938 0 209.47131 0.00038721304 0.00037290143 + 137620 -6246.9512 -6251.7694 4.8182056 3738.0528 636.42678 -10626.249 0 230.91545 0.00079301141 0.00077240647 + 137630 -6246.6413 -6251.8876 5.2463014 3729.7483 639.71004 -10621.346 0 251.4322 0.0012731569 0.001251867 + 137640 -6246.3312 -6251.8345 5.5033029 3723.099 642.88855 -10617.822 0 263.74916 0.0017211378 0.00170424 + 137650 -6245.9822 -6251.664 5.6818132 3720.1621 645.17971 -10617.006 0 272.30437 0.0020249101 0.0020111411 + 137660 -6245.555 -6251.5367 5.9817803 3722.2178 645.81898 -10619.574 0 286.68048 0.0020916295 0.0020743032 + 137670 -6245.0631 -6251.5799 6.5168226 3729.357 644.35072 -10625.288 0 312.3227 0.0018753884 0.0018494499 + 137680 -6244.5753 -6251.8194 7.244084 3740.2336 640.87087 -10632.924 0 347.17715 0.0014032115 0.0013713706 + 137690 -6244.1592 -6252.2121 8.0529675 3752.1423 636.09724 -10640.452 0 385.94339 0.00078559137 0.00075683136 + 137700 -6243.8201 -6252.7049 8.8848085 3761.596 631.20568 -10645.507 0 425.80987 0.00019600853 0.00017695928 + 137710 -6243.5072 -6253.2299 9.7226448 3765.3854 627.47507 -10646.09 0 465.96369 -0.00018355684 -0.00019608419 + 137720 -6243.1934 -6253.6385 10.445136 3761.778 625.87281 -10641.289 0 500.58952 -0.00023192067 -0.00024881451 + 137730 -6242.9407 -6253.688 10.747329 3751.2907 626.73365 -10631.712 0 515.0723 6.1652823e-05 3.2359033e-05 + 137740 -6242.8594 -6253.1741 10.314748 3736.6064 629.64444 -10619.425 0 494.34062 0.00059446604 0.00055576756 + 137750 -6242.9927 -6252.1288 9.1361295 3721.6623 633.5794 -10607.371 0 437.85459 0.0011933309 0.0011564311 + 137760 -6243.2626 -6250.8834 7.6207957 3710.3759 637.24669 -10598.506 0 365.23129 0.0016772253 0.0016512142 + 137770 -6243.5359 -6249.91 6.3740567 3705.5528 639.52286 -10594.986 0 305.48056 0.0019110088 0.0018957307 + 137780 -6243.7267 -6249.561 5.8343155 3708.2652 639.81519 -10597.641 0 279.61314 0.0018372834 0.0018250444 + 137790 -6243.8384 -6249.8962 6.0578179 3717.7124 638.23129 -10605.84 0 290.32462 0.0014866828 0.0014693954 + 137800 -6243.9359 -6250.6906 6.7547103 3731.4769 635.51503 -10617.682 0 323.72362 0.00096879441 0.00094362848 + 137810 -6244.09 -6251.5837 7.4937101 3746.1148 632.7833 -10630.482 0 359.14064 0.00044367016 0.00041326708 + 137820 -6244.3353 -6252.2551 7.9197917 3758.0209 631.15224 -10641.428 0 379.56086 7.6201407e-05 4.4917929e-05 + 137830 -6244.6628 -6252.5319 7.8691523 3764.3985 631.36991 -10648.3 0 377.13393 -1.5655946e-05 -4.4997055e-05 + 137840 -6245.039 -6252.416 7.3770295 3764.0345 633.56668 -10650.017 0 353.54864 0.00020049809 0.00017410271 + 137850 -6245.4263 -6252.0663 6.6400289 3757.5855 637.20191 -10646.854 0 318.22744 0.00066275931 0.00063955113 + 137860 -6245.7927 -6251.7437 5.9510152 3747.2792 641.23094 -10640.254 0 285.20604 0.0012379466 0.0012174934 + 137870 -6246.1222 -6251.7041 5.5819316 3736.1858 644.44392 -10632.334 0 267.51748 0.0017637807 0.0017445338 + 137880 -6246.4241 -6252.0693 5.6451126 3727.3316 645.85822 -10625.259 0 270.54547 0.0020947001 0.0020747429 + 137890 -6246.7306 -6252.7604 6.029813 3722.8984 645.02333 -10620.682 0 288.98247 0.0021408207 0.002119563 + 137900 -6247.0738 -6253.5485 6.4746498 3723.6857 642.13424 -10619.368 0 310.30155 0.0018922777 0.0018709822 + 137910 -6247.4603 -6254.1859 6.7255561 3728.9752 637.92649 -10621.088 0 322.32638 0.0014207789 0.0014009673 + 137920 -6247.8647 -6254.5224 6.6576839 3736.8465 633.41083 -10624.78 0 319.07357 0.00085460096 0.00083622344 + 137930 -6248.2522 -6254.5408 6.2885979 3744.837 629.56124 -10628.939 0 301.3849 0.00033556194 0.00031739812 + 137940 -6248.6038 -6254.33 5.7261539 3750.6862 627.06897 -10632.085 0 274.42943 -2.2828146e-05 -4.1031608e-05 + 137950 -6248.9167 -6254.0449 5.1281954 3752.9068 626.22557 -10633.177 0 245.7719 -0.00015963908 -0.0001763477 + 137960 -6249.1872 -6253.8598 4.6726137 3751.0641 626.93703 -10631.861 0 223.93787 -7.0622935e-05 -8.4343733e-05 + 137970 -6249.4049 -6253.8953 4.4904043 3745.7867 628.82905 -10628.511 0 215.20537 0.00020022035 0.00018875733 + 137980 -6249.5641 -6254.1415 4.5774004 3738.5622 631.3882 -10624.092 0 219.37471 0.00057492685 0.00056303401 + 137990 -6249.6763 -6254.4439 4.7675947 3731.3521 634.09374 -10619.89 0 228.48989 0.00096031378 0.00094585311 + 138000 -6249.7644 -6254.5837 4.8193021 3726.0882 636.51339 -10617.185 0 230.968 0.0012703331 0.0012537185 + 138010 -6249.8427 -6254.4098 4.5670752 3724.1734 638.35342 -10616.937 0 218.87987 0.0014468045 0.0014304122 + 138020 -6249.904 -6253.9333 4.0293427 3726.142 639.46611 -10619.541 0 193.10871 0.0014707435 0.0014564457 + 138030 -6249.929 -6253.3253 3.3963208 3731.5748 639.82892 -10624.729 0 162.77075 0.001360406 0.0013478125 + 138040 -6249.9078 -6252.8298 2.921982 3739.2588 639.51464 -10631.603 0 140.03777 0.0011596011 0.0011466684 + 138050 -6249.8484 -6252.6567 2.8083081 3747.4995 638.66642 -10638.823 0 134.58988 0.00092373792 0.00090885753 + 138060 -6249.7635 -6252.9077 3.1441787 3754.4868 637.48128 -10644.876 0 150.68668 0.00070863361 0.00069197669 + 138070 -6249.655 -6253.5513 3.8962956 3758.6555 636.19664 -10648.403 0 186.73235 0.00056233101 0.00054522232 + 138080 -6249.5121 -6254.4331 4.9209466 3759.0069 635.0676 -10648.508 0 235.83937 0.00051786058 0.00050095424 + 138090 -6249.3306 -6255.313 5.982345 3755.355 634.32396 -10644.992 0 286.70754 0.00058600477 0.00056823541 + 138100 -6249.1327 -6255.926 6.7933389 3748.4286 634.1068 -10638.461 0 325.57492 0.00075007642 0.00072975789 + 138110 -6248.9639 -6256.0676 7.1037099 3739.754 634.40413 -10630.226 0 340.44964 0.00096693971 0.00094412224 + 138120 -6248.8623 -6255.6833 6.8209895 3731.2961 635.02161 -10622.001 0 326.90009 0.001176887 0.0011542912 + 138130 -6248.8268 -6254.9096 6.0828444 3724.9568 635.62146 -10615.488 0 291.52404 0.0013196005 0.0013006727 + 138140 -6248.8192 -6254.0204 5.2011335 3722.1098 635.83222 -10611.962 0 249.2675 0.001349617 0.0013355077 + 138150 -6248.7944 -6253.2927 4.4983038 3723.3067 635.39148 -10611.991 0 215.58396 0.0012466568 0.0012351638 + 138160 -6248.7286 -6252.8784 4.1498635 3728.1896 634.26115 -10615.329 0 198.88474 0.0010206242 0.0010079399 + 138170 -6248.6256 -6252.7562 4.1305532 3735.577 632.66681 -10621 0 197.95929 0.00071235996 0.00069580139 + 138180 -6248.5051 -6252.7789 4.2738437 3743.6975 631.04705 -10627.523 0 204.82657 0.00038923949 0.00036876982 + 138190 -6248.3862 -6252.7754 4.3891201 3750.5551 629.93262 -10633.263 0 210.35126 0.00013363607 0.00011143795 + 138200 -6248.2766 -6252.6458 4.3691366 3754.3851 629.79498 -10636.826 0 209.39354 2.427288e-05 3.1064379e-06 + 138210 -6248.1707 -6252.4102 4.2395255 3754.1139 630.90521 -10637.429 0 203.18185 0.00011405557 9.572143e-05 + 138220 -6248.0554 -6252.1926 4.1372148 3749.7034 633.2357 -10635.132 0 198.27855 0.0004107965 0.00039563739 + 138230 -6247.916 -6252.1603 4.2443192 3742.256 636.42682 -10630.843 0 203.41159 0.0008679456 0.00085521465 + 138240 -6247.7341 -6252.4506 4.71646 3733.8086 639.8344 -10626.094 0 226.03923 0.0013901777 0.0013783 + 138250 -6247.488 -6253.1049 5.6168864 3726.8404 642.66509 -10622.61 0 269.19271 0.0018537956 0.0018401937 + 138260 -6247.1679 -6254.0176 6.8496348 3723.6123 644.18448 -10621.814 0 328.27293 0.0021371079 0.0021186412 + 138270 -6246.8044 -6254.9266 8.1222435 3725.4988 643.94737 -10624.373 0 389.26348 0.0021538794 0.0021288067 + 138280 -6246.4734 -6255.4857 9.0123189 3732.4795 641.96833 -10629.934 0 431.92089 0.0018825192 0.0018527106 + 138290 -6246.2538 -6255.4186 9.1648006 3742.9658 638.7515 -10637.136 0 439.22867 0.0013819279 0.0013525424 + 138300 -6246.1645 -6254.6745 8.5100286 3754.1135 635.14917 -10643.937 0 407.84832 0.00078349678 0.00075929266 + 138310 -6246.1504 -6253.4714 7.3209892 3762.6187 632.09815 -10648.188 0 350.86288 0.00025465364 0.00023607616 + 138320 -6246.1358 -6252.1874 6.0515796 3765.7577 630.33972 -10648.285 0 290.02565 -5.5423641e-05 -7.2304676e-05 + 138330 -6246.0845 -6251.1841 5.0995571 3762.2654 630.22214 -10643.672 0 244.39939 -6.446011e-05 -8.4118882e-05 + 138340 -6246.0066 -6250.6813 4.6747859 3752.7242 631.63106 -10635.037 0 224.04197 0.00022017709 0.00019629627 + 138350 -6245.9194 -6250.7245 4.8050349 3739.3854 634.04427 -10624.154 0 230.28424 0.00070888254 0.00068229132 + 138360 -6245.8175 -6251.2046 5.3871166 3725.5582 636.68448 -10613.447 0 258.18086 0.0012583177 0.0012306678 + 138370 -6245.681 -6251.894 6.2130361 3714.7648 638.73239 -10605.391 0 297.76355 0.0017097111 0.0016808014 + 138380 -6245.5092 -6252.5006 6.9914008 3709.8443 639.55146 -10601.896 0 335.06716 0.001929485 0.0018983329 + 138390 -6245.3381 -6252.7627 7.4246596 3712.1774 638.86846 -10603.809 0 355.83135 0.0018465784 0.0018143247 + 138400 -6245.2154 -6252.5704 7.355055 3721.2282 636.85871 -10610.657 0 352.49551 0.0014780518 0.0014491453 + 138410 -6245.153 -6252.0507 6.8977811 3734.5949 634.1064 -10620.752 0 330.58037 0.00093141323 0.00091069667 + 138420 -6245.1045 -6251.5345 6.4299651 3748.6473 631.44627 -10631.628 0 308.16001 0.00037589462 0.00036352561 + 138430 -6244.9981 -6251.3799 6.3817644 3759.6073 629.73225 -10640.719 0 305.84996 -1.1745432e-05 -2.225408e-05 + 138440 -6244.799 -6251.7461 6.9471133 3764.6991 629.59988 -10646.045 0 332.94465 -0.00010628434 -0.00012371775 + 138450 -6244.547 -6252.4796 7.9325946 3762.9312 631.28509 -10646.696 0 380.17444 0.00012670915 9.8695265e-05 + 138460 -6244.3345 -6253.2064 8.8718923 3755.255 634.54312 -10643.005 0 425.19086 0.00062520504 0.00059151551 + 138470 -6244.2385 -6253.5596 9.3211633 3744.1351 638.68726 -10636.382 0 446.72245 0.0012554193 0.001225396 + 138480 -6244.265 -6253.3773 9.112266 3732.7712 642.7422 -10628.891 0 436.71091 0.0018527381 0.0018323875 + 138490 -6244.3578 -6252.756 8.3982551 3724.2392 645.68087 -10622.676 0 402.49151 0.0022644298 0.0022522727 + 138500 -6244.457 -6251.9664 7.5093766 3720.7375 646.69344 -10619.397 0 359.89146 0.0023855413 0.0023752687 + 138510 -6244.5476 -6251.313 6.7653863 3723.0583 645.42223 -10619.794 0 324.23527 0.0021837581 0.0021702229 + 138520 -6244.6553 -6251.0195 6.3641897 3730.3859 642.09095 -10623.496 0 305.00768 0.0017089855 0.0016916598 + 138530 -6244.8078 -6251.1657 6.3578714 3740.5061 637.47278 -10629.145 0 304.70487 0.001082504 0.0010638943 + 138540 -6245.01 -6251.6707 6.660682 3750.4257 632.68745 -10634.784 0 319.21726 0.0004641821 0.00044577865 + 138550 -6245.2545 -6252.3136 7.0591179 3757.2547 628.88085 -10638.449 0 338.31254 5.4453994e-06 -1.423831e-05 + 138560 -6245.5443 -6252.8043 7.2600002 3759.0612 626.88931 -10638.755 0 347.93995 -0.00019514541 -0.00021856563 + 138570 -6245.8916 -6252.9097 7.0181067 3755.3956 627.0032 -10635.308 0 336.34705 -0.00011614298 -0.00014327392 + 138580 -6246.2896 -6252.5833 6.2936448 3747.3156 628.91283 -10628.812 0 301.62677 0.00018997771 0.0001626421 + 138590 -6246.6994 -6252.011 5.3115806 3736.9676 631.85291 -10620.832 0 254.56075 0.00062116505 0.00059817547 + 138600 -6247.0706 -6251.5277 4.4570969 3726.9358 634.88221 -10613.346 0 213.60909 0.0010586294 0.0010421526 + 138610 -6247.3729 -6251.4528 4.0799225 3719.5896 637.18572 -10608.228 0 195.53278 0.0013976493 0.001385831 + 138620 -6247.6077 -6251.9373 4.3296827 3716.5821 638.29473 -10606.814 0 207.50269 0.0015700878 0.0015580764 + 138630 -6247.8029 -6252.8923 5.0894005 3718.556 638.1684 -10609.617 0 243.91263 0.001555216 0.0015380558 + 138640 -6248.0051 -6254.024 6.0188962 3725.0589 637.13446 -10616.217 0 288.45928 0.0013782358 0.001354068 + 138650 -6248.2637 -6254.9624 6.6986308 3734.6558 635.72898 -10625.347 0 321.03597 0.0010992226 0.0010708563 + 138660 -6248.6002 -6255.4296 6.8294069 3745.2298 634.5011 -10635.16 0 327.3035 0.00079692385 0.00077027602 + 138670 -6248.9826 -6255.3663 6.3837519 3754.4485 633.85134 -10643.666 0 305.94521 0.0005506173 0.00053058494 + 138680 -6249.3393 -6254.9388 5.5995232 3760.3203 633.94713 -10649.206 0 268.36057 0.00042163542 0.00040852008 + 138690 -6249.6094 -6254.4229 4.8134452 3761.6926 634.72033 -10650.836 0 230.6873 0.00043759756 0.0004272837 + 138700 -6249.7837 -6254.0476 4.2639108 3758.5195 635.92257 -10648.49 0 204.35053 0.00058516609 0.00057295932 + 138710 -6249.8995 -6253.9047 4.0052145 3751.8022 637.20948 -10642.916 0 191.95235 0.00081597938 0.00080049725 + 138720 -6250 -6253.9606 3.9606435 3743.246 638.23253 -10635.439 0 189.81626 0.0010639807 0.0010475098 + 138730 -6250.0972 -6254.122 4.0248715 3734.7902 638.72024 -10627.632 0 192.89443 0.0012656806 0.0012510112 + 138740 -6250.1705 -6254.2849 4.1144059 3728.1774 638.53012 -10620.992 0 197.18542 0.0013741885 0.0013614289 + 138750 -6250.1972 -6254.3477 4.1504664 3724.6451 637.65861 -10616.651 0 198.91364 0.0013640068 0.001350724 + 138760 -6250.181 -6254.2243 4.0433349 3724.736 636.21358 -10615.174 0 193.7793 0.0012307275 0.0012151586 + 138770 -6250.15 -6253.8921 3.742152 3728.204 634.37008 -10616.466 0 179.34492 0.00099113609 0.00097485786 + 138780 -6250.1251 -6253.4502 3.3250903 3734.0379 632.33529 -10619.823 0 159.35698 0.00068425001 0.00067109154 + 138790 -6250.0908 -6253.1203 3.0295136 3740.6595 630.3389 -10624.119 0 145.19129 0.00036873271 0.00036061776 + 138800 -6249.9961 -6253.1471 3.1510564 3746.3032 628.64532 -10628.096 0 151.0163 0.00011293139 0.00010677935 + 138810 -6249.7844 -6253.6389 3.8544941 3749.4826 627.56481 -10630.686 0 184.72898 -2.0567148e-05 -3.1391936e-05 + 138820 -6249.4326 -6254.4592 5.0266481 3749.3816 627.43177 -10631.273 0 240.90518 1.0066589e-05 -1.0296971e-05 + 138830 -6248.9729 -6255.2587 6.2858418 3746.0391 628.52741 -10629.825 0 301.25281 0.00021598829 0.0001877729 + 138840 -6248.4781 -6255.6428 7.1647116 3740.306 630.95198 -10626.901 0 343.37318 0.00057358029 0.00054558786 + 138850 -6248.0119 -6255.3807 7.3687091 3733.6375 634.49013 -10623.508 0 353.14989 0.001025021 0.001006058 + 138860 -6247.5831 -6254.53 6.9469396 3727.8021 638.54626 -10620.878 0 332.93633 0.001483651 0.0014762475 + 138870 -6247.149 -6253.4055 6.2564598 3724.5439 642.22247 -10620.172 0 299.84466 0.0018463701 0.0018440201 + 138880 -6246.6672 -6252.4099 5.742789 3725.2039 644.55779 -10622.172 0 275.22667 0.0020151179 0.0020062684 + 138890 -6246.1441 -6251.8253 5.6812672 3730.311 644.86329 -10627 0 272.2782 0.0019257322 0.0019020985 + 138900 -6245.643 -6251.683 6.0400222 3739.2174 643.02052 -10633.921 0 289.47175 0.0015770048 0.0015404578 + 138910 -6245.2414 -6251.7919 6.5504827 3749.9494 639.59738 -10641.339 0 313.93589 0.0010480915 0.0010103263 + 138920 -6244.9635 -6251.8981 6.9345709 3759.4917 635.69702 -10647.087 0 332.34355 0.00049037288 0.00046396725 + 138930 -6244.7474 -6251.8412 7.0938698 3764.6247 632.57845 -10649.044 0 339.97804 8.4973551e-05 7.2306153e-05 + 138940 -6244.5008 -6251.5823 7.0815198 3763.1182 631.20471 -10645.905 0 339.38616 -2.5389822e-05 -3.4610027e-05 + 138950 -6244.2021 -6251.1296 6.9274715 3754.7359 631.90034 -10637.766 0 332.0033 0.00020075654 0.00018195688 + 138960 -6243.9315 -6250.5166 6.5850543 3741.4713 634.23445 -10626.222 0 315.59275 0.00068249753 0.00065127452 + 138970 -6243.7865 -6249.8846 6.0980961 3726.8569 637.16354 -10613.905 0 292.25498 0.0012502577 0.0012164945 + 138980 -6243.7749 -6249.5326 5.7577028 3714.7444 639.39704 -10603.674 0 275.94142 0.0017132743 0.0016894088 + 138990 -6243.7992 -6249.7914 5.9921921 3708.157 639.86925 -10597.818 0 287.17947 0.0019242741 0.0019130602 + 139000 -6243.7443 -6250.7786 7.0342506 3708.5816 638.14198 -10597.502 0 337.12076 0.0018175893 0.001809334 + 139010 -6243.5895 -6252.2361 8.646569 3715.7329 634.58074 -10602.55 0 414.3921 0.0014188971 0.0014000582 + 139020 -6243.4498 -6253.6067 10.156866 3727.6813 630.23875 -10611.527 0 486.774 0.00083510079 0.00080039782 + 139030 -6243.4928 -6254.3297 10.836912 3741.2865 626.4943 -10622.111 0 519.36563 0.00022965756 0.0001870511 + 139040 -6243.7863 -6254.1681 10.381872 3752.9426 624.58204 -10631.693 0 497.55756 -0.00021704802 -0.00025321083 + 139050 -6244.2279 -6253.3349 9.1070456 3759.5636 625.19868 -10638.097 0 436.46073 -0.00035994427 -0.00038150876 + 139060 -6244.6357 -6252.3293 7.6936129 3759.55 628.31669 -10640.196 0 368.7211 -0.00013975804 -0.00015138445 + 139070 -6244.8977 -6251.6197 6.7219898 3753.3493 633.23239 -10638.201 0 322.15547 0.00039119494 0.0003768965 + 139080 -6245.0343 -6251.4116 6.3773312 3743.3126 638.79148 -10633.516 0 305.63749 0.0010833618 0.0010566402 + 139090 -6245.1456 -6251.6257 6.4801363 3732.8595 643.71299 -10628.198 0 310.56449 0.0017404348 0.0017013285 + 139100 -6245.3201 -6252.027 6.70691 3725.2945 646.93381 -10624.255 0 321.43276 0.0021849361 0.0021416994 + 139110 -6245.5792 -6252.3697 6.79053 3722.7537 647.88364 -10623.007 0 325.4403 0.0023126532 0.0022748607 + 139120 -6245.8817 -6252.4851 6.6034134 3725.6488 646.59993 -10624.734 0 316.47262 0.0021170723 0.0020896757 + 139130 -6246.1643 -6252.3191 6.1548423 3732.7204 643.64177 -10628.681 0 294.97458 0.0016794031 0.0016612944 + 139140 -6246.3799 -6251.943 5.563082 3741.5855 639.84645 -10633.375 0 266.6141 0.0011329776 0.001119318 + 139150 -6246.5157 -6251.5355 5.0198007 3749.5343 636.03925 -10637.109 0 240.57701 0.00061766438 0.00060329361 + 139160 -6246.59 -6251.324 4.7340167 3754.3087 632.81365 -10638.446 0 226.88064 0.00024037514 0.00022227129 + 139170 -6246.6354 -6251.4931 4.8577094 3754.6437 630.45029 -10636.587 0 232.80869 5.3328901e-05 3.1388657e-05 + 139180 -6246.6804 -6252.0996 5.4191963 3750.4657 628.97148 -10631.537 0 259.71829 5.3696304e-05 2.9915486e-05 + 139190 -6246.7407 -6253.0293 6.2886163 3742.7725 628.27081 -10624.073 0 301.38578 0.00019921541 0.00017603053 + 139200 -6246.8259 -6254.016 7.190118 3733.3066 628.23511 -10615.558 0 344.5908 0.00042918262 0.00040827669 + 139210 -6246.9494 -6254.7297 7.7802935 3724.136 628.79397 -10607.66 0 372.87532 0.00068187272 0.00066417963 + 139220 -6247.1212 -6254.9178 7.796595 3717.2177 629.88182 -10602.017 0 373.65658 0.00090515648 0.00089129419 + 139230 -6247.3275 -6254.5382 7.2106259 3714.0071 631.35911 -10599.904 0 345.57365 0.0010614434 0.0010513523 + 139240 -6247.5284 -6253.7975 6.269145 3715.1884 632.97221 -10601.958 0 300.4526 0.0011292386 0.0011212556 + 139250 -6247.6843 -6253.0518 5.3675073 3720.5792 634.40602 -10608.037 0 257.24106 0.001103448 0.0010943828 + 139260 -6247.7878 -6252.6223 4.8344801 3729.1988 635.41229 -10617.233 0 231.69541 0.00099604282 0.00098301602 + 139270 -6247.867 -6252.6393 4.7722864 3739.4519 635.93672 -10628.028 0 228.71474 0.00083697775 0.0008197078 + 139280 -6247.9597 -6253.0007 5.0410483 3749.3894 636.1612 -10638.551 0 241.59532 0.00067273812 0.00065404317 + 139290 -6248.0834 -6253.4568 5.3733799 3757.0506 636.42438 -10646.932 0 257.52251 0.00055875379 0.00054234613 + 139300 -6248.2231 -6253.7534 5.5302869 3760.8754 637.05248 -10651.681 0 265.04238 0.00054410241 0.00053129562 + 139310 -6248.3458 -6253.748 5.4021695 3760.1124 638.18381 -10652.044 0 258.90227 0.00065237764 0.00064072005 + 139320 -6248.4298 -6253.4486 5.0187671 3755.068 639.67367 -10648.19 0 240.52748 0.00086783513 0.0008531749 + 139330 -6248.4831 -6252.9868 4.503667 3747.0556 641.12192 -10641.164 0 215.84099 0.0011356724 0.0011159044 + 139340 -6248.5342 -6252.559 4.0247861 3738.0246 642.00588 -10632.59 0 192.89033 0.0013782194 0.001355294 + 139350 -6248.6036 -6252.3593 3.7557112 3730.0047 641.85909 -10624.223 0 179.99476 0.0015200621 0.0014984402 + 139360 -6248.6825 -6252.5151 3.8326532 3724.5794 640.42821 -10617.523 0 183.68225 0.001511082 0.0014939688 + 139370 -6248.7354 -6253.0341 4.2987181 3722.5593 637.75936 -10613.353 0 206.01869 0.0013390005 0.0013255114 + 139380 -6248.7277 -6253.7833 5.0556151 3723.9064 634.19785 -10611.888 0 242.29344 0.0010295195 0.0010151502 + 139390 -6248.6567 -6254.5211 5.8644153 3727.8527 630.31401 -10612.688 0 281.05569 0.00063792424 0.00061810511 + 139400 -6248.5611 -6254.9887 6.4276666 3733.1232 626.78186 -10614.894 0 308.04985 0.00023757474 0.00021160576 + 139410 -6248.494 -6255.029 6.5349832 3738.2064 624.24033 -10617.476 0 313.19306 -9.197184e-05 -0.00011983559 + 139420 -6248.4803 -6254.6705 6.19026 3741.6656 623.16546 -10619.502 0 296.67199 -0.00027797115 -0.00030141883 + 139430 -6248.4949 -6254.1195 5.6246454 3742.4825 623.77834 -10620.38 0 269.56457 -0.00026982238 -0.00028522691 + 139440 -6248.4827 -6253.653 5.1703421 3740.3743 626.00439 -10620.032 0 247.7918 -5.4567734e-05 -6.3778877e-05 + 139450 -6248.3984 -6253.4705 5.0721609 3735.9653 629.48863 -10618.924 0 243.08641 0.00033342831 0.00032444555 + 139460 -6248.2344 -6253.5891 5.3547553 3730.698 633.66278 -10617.95 0 256.62992 0.00081505218 0.00080057598 + 139470 -6248.0217 -6253.8392 5.817532 3726.4482 637.85397 -10618.141 0 278.80877 0.0012837452 0.0012622989 + 139480 -6247.8076 -6253.9565 6.1488966 3724.9406 641.41651 -10620.314 0 294.68963 0.0016337594 0.0016089339 + 139490 -6247.6246 -6253.7188 6.0942576 3727.1619 643.85684 -10624.738 0 292.07102 0.0017902488 0.0017679396 + 139500 -6247.4693 -6253.0622 5.5929157 3732.9939 644.91778 -10630.974 0 268.0439 0.0017303082 0.0017143926 + 139510 -6247.3086 -6252.1224 4.8138559 3741.2071 644.60119 -10637.931 0 230.70699 0.0014871251 0.0014766542 + 139520 -6247.1085 -6251.1827 4.0742123 3749.8078 643.13219 -10644.123 0 195.25911 0.0011365832 0.0011265863 + 139530 -6246.8592 -6250.5574 3.6981206 3756.5845 640.88667 -10648.029 0 177.23469 0.00077335533 0.00075870789 + 139540 -6246.5701 -6250.4748 3.9046991 3759.653 638.30639 -10648.434 0 187.13509 0.00048659846 0.00046587586 + 139550 -6246.2407 -6251.005 4.7642787 3757.8734 635.81865 -10644.697 0 228.33097 0.000341693 0.00031784339 + 139560 -6245.8451 -6252.0336 6.188459 3751.1157 633.76818 -10636.917 0 296.58568 0.0003681096 0.00034554032 + 139570 -6245.3576 -6253.2729 7.9152933 3740.3793 632.36085 -10626.013 0 379.34527 0.00055124297 0.00053205658 + 139580 -6244.7999 -6254.3222 9.5222906 3727.7133 631.61883 -10613.654 0 456.3616 0.000830081 0.00081276342 + 139590 -6244.257 -6254.7994 10.542414 3715.8479 631.35917 -10602.006 0 505.25164 0.0011073329 0.001088691 + 139600 -6243.8315 -6254.5114 10.679957 3707.5307 631.22742 -10593.27 0 511.84346 0.0012761208 0.0012542255 + 139610 -6243.5772 -6253.5652 9.9879828 3704.7422 630.81657 -10589.124 0 478.68018 0.0012568337 0.0012322459 + 139620 -6243.4765 -6252.3286 8.8520887 3708.0786 629.85924 -10590.266 0 424.24176 0.0010287085 0.0010035092 + 139630 -6243.4735 -6251.2507 7.7772126 3716.5454 628.41612 -10596.212 0 372.72767 0.00064228916 0.00061846075 + 139640 -6243.517 -6250.6475 7.1305228 3727.8353 626.95268 -10605.435 0 341.73466 0.00020851921 0.00018702042 + 139650 -6243.5776 -6250.5745 6.9968485 3738.9904 626.23269 -10615.798 0 335.32824 -0.00013176342 -0.0001511902 + 139660 -6243.6449 -6250.838 7.1931449 3747.2517 627.04196 -10625.132 0 344.73587 -0.00025075317 -0.00026944336 + 139670 -6243.7208 -6251.1173 7.3964851 3750.8558 629.84072 -10631.814 0 354.48107 -7.8222241e-05 -9.8000805e-05 + 139680 -6243.8156 -6251.1325 7.3168646 3749.5313 634.48984 -10635.154 0 350.66521 0.00036827685 0.00034631446 + 139690 -6243.9383 -6250.789 6.8506659 3744.5083 640.18334 -10635.481 0 328.32235 0.00098295605 0.00095957187 + 139700 -6244.0867 -6250.235 6.1482335 3738.0228 645.64326 -10633.901 0 294.65785 0.0016044696 0.0015821017 + 139710 -6244.2461 -6249.7955 5.5493356 3732.5088 649.51817 -10631.822 0 265.9553 0.0020684468 0.0020495161 + 139720 -6244.3974 -6249.8079 5.4105478 3729.7954 650.82806 -10630.431 0 259.30381 0.0022583753 0.0022433262 + 139730 -6244.5282 -6250.4449 5.9166606 3730.5831 649.27632 -10630.304 0 283.55957 0.0021372916 0.0021238539 + 139740 -6244.6467 -6251.6158 6.9691634 3734.328 645.31524 -10631.259 0 334.00142 0.0017522242 0.0017364893 + 139750 -6244.7948 -6252.9924 8.1975978 3739.5121 639.96211 -10632.467 0 392.87488 0.0012128838 0.0011917101 + 139760 -6245.0443 -6254.1431 9.0988231 3744.1719 634.45757 -10632.773 0 436.06666 0.00065456535 0.00062784862 + 139770 -6245.4548 -6254.7215 9.2666847 3746.5133 629.89861 -10631.133 0 444.11153 0.00019964036 0.00017054594 + 139780 -6246.0176 -6254.6185 8.6009653 3745.4412 626.96432 -10627.024 0 412.20652 -7.1149595e-05 -9.8550008e-05 + 139790 -6246.6446 -6253.997 7.3523501 3740.8684 625.80575 -10620.671 0 352.36587 -0.00013332669 -0.00015699743 + 139800 -6247.2254 -6253.1926 5.9672175 3733.7228 626.11032 -10613.026 0 285.98255 -1.8347621e-05 -3.9135403e-05 + 139810 -6247.6979 -6252.5546 4.856777 3725.6531 627.29391 -10605.502 0 232.764 0.00020180425 0.00018177843 + 139820 -6248.0694 -6252.3158 4.2463359 3718.5425 628.73795 -10599.596 0 203.50824 0.00044127124 0.00042070956 + 139830 -6248.3835 -6252.5367 4.1531422 3713.9978 629.98886 -10596.523 0 199.04188 0.00062872293 0.00060785286 + 139840 -6248.6762 -6253.1161 4.4399596 3712.9668 630.86507 -10596.948 0 212.78778 0.0007267873 0.0007065072 + 139850 -6248.9585 -6253.839 4.8805362 3715.5685 631.45342 -10600.861 0 233.90268 0.00073637678 0.00071715078 + 139860 -6249.2249 -6254.4456 5.2207133 3721.1509 632.00923 -10607.606 0 250.20587 0.00068684808 0.00066861744 + 139870 -6249.4662 -6254.7207 5.254472 3728.5203 632.80105 -10616.042 0 251.82378 0.00061865868 0.00060160343 + 139880 -6249.6722 -6254.5857 4.9134996 3736.2522 633.96167 -10624.8 0 235.48247 0.0005668102 0.00055163921 + 139890 -6249.8295 -6254.1474 4.3178441 3742.9946 635.40817 -10632.55 0 206.93532 0.00055078922 0.00053787893 + 139900 -6249.9262 -6253.6558 3.7296621 3747.7024 636.86862 -10638.227 0 178.74634 0.00057266493 0.00056103801 + 139910 -6249.9621 -6253.379 3.4169597 3749.772 638.00378 -10641.155 0 163.75988 0.00062197273 0.00060964551 + 139920 -6249.9537 -6253.4615 3.5078372 3749.0702 638.56449 -10641.096 0 168.11524 0.00068429756 0.00067012534 + 139930 -6249.9256 -6253.8551 3.929479 3745.8791 638.50299 -10638.237 0 188.32268 0.00074947065 0.00073470887 + 139940 -6249.8933 -6254.3615 4.4682778 3740.8013 637.97593 -10633.139 0 214.14495 0.00081496285 0.00080253066 + 139950 -6249.8504 -6254.7504 4.9000685 3734.676 637.23327 -10626.66 0 234.83878 0.00088143752 0.00087306218 + 139960 -6249.7754 -6254.8696 5.0942572 3728.5206 636.45385 -10619.844 0 244.14539 0.00094197358 0.00093597666 + 139970 -6249.6551 -6254.693 5.0379323 3723.4453 635.62506 -10613.763 0 241.44598 0.00097285065 0.00096512931 + 139980 -6249.5035 -6254.3098 4.8063548 3720.4688 634.54428 -10609.323 0 230.34749 0.00093597512 0.00092349904 + 139990 -6249.3547 -6253.8835 4.5287483 3720.232 632.95258 -10607.068 0 217.04303 0.00079619948 0.00077974057 + 140000 -6249.2357 -6253.5941 4.3583987 3722.7153 630.73464 -10607.044 0 208.87892 0.00054527987 0.00052891536 + 140010 -6249.1419 -6253.5723 4.4304581 3727.1203 628.07632 -10608.769 0 212.33241 0.00021803899 0.00020582621 + 140020 -6249.0357 -6253.8395 4.8037938 3732.0256 625.48945 -10611.355 0 230.22475 -0.00011007719 -0.00011771348 + 140030 -6248.8741 -6254.278 5.4038852 3735.8117 623.68041 -10613.77 0 258.9845 -0.00034514544 -0.00035244736 + 140040 -6248.6472 -6254.6524 6.005178 3737.2138 623.31305 -10615.179 0 287.80182 -0.00040769785 -0.00042081458 + 140050 -6248.3955 -6254.6971 6.3016075 3735.7728 624.76041 -10615.23 0 302.00839 -0.00026193867 -0.00028421471 + 140060 -6248.1838 -6254.2497 6.0658306 3731.9872 627.94139 -10614.178 0 290.70864 7.1077544e-05 4.1913652e-05 + 140070 -6248.0535 -6253.3593 5.3058003 3727.1193 632.30398 -10612.783 0 254.28372 0.00051988966 0.00049021325 + 140080 -6247.9946 -6252.2951 4.3005046 3722.7772 636.96053 -10612.033 0 206.10431 0.00098348783 0.00095918094 + 140090 -6247.9578 -6251.4384 3.4805365 3720.4506 640.92623 -10612.815 0 166.80684 0.0013578632 0.001340213 + 140100 -6247.8849 -6251.1097 3.224793 3721.1321 643.38324 -10615.625 0 154.55018 0.0015608507 0.0015458552 + 140110 -6247.7374 -6251.4216 3.6841604 3725.0696 643.89364 -10620.385 0 176.56564 0.0015507899 0.0015321687 + 140120 -6247.5151 -6252.2299 4.7148521 3731.6539 642.50554 -10626.389 0 225.96217 0.0013365983 0.0013103144 + 140130 -6247.2587 -6253.2071 5.9484483 3739.4705 639.72555 -10632.403 0 285.08302 0.00097746817 0.00094468118 + 140140 -6247.0287 -6253.9996 6.9709246 3746.5566 636.36272 -10636.919 0 334.08582 0.0005707434 0.00053704721 + 140150 -6246.8634 -6254.3885 7.5251239 3750.8718 633.28461 -10638.545 0 360.64616 0.00022788264 0.00019908965 + 140160 -6246.754 -6254.3642 7.6102212 3750.8955 631.15982 -10636.42 0 364.7245 4.1758519e-05 1.9510483e-05 + 140170 -6246.6663 -6254.0762 7.4098877 3746.1695 630.27257 -10630.518 0 355.1234 5.4609605e-05 3.5878405e-05 + 140180 -6246.584 -6253.7156 7.1315936 3737.5437 630.46925 -10621.729 0 341.78598 0.00024111966 0.00022201283 + 140190 -6246.521 -6253.4268 6.9058514 3726.9777 631.25026 -10611.655 0 330.96715 0.0005174556 0.00049709334 + 140200 -6246.4936 -6253.2807 6.7870563 3716.9537 631.9756 -10602.21 0 325.27382 0.00077358914 0.000753985 + 140210 -6246.4933 -6253.2691 6.7757286 3709.7498 632.11619 -10595.135 0 324.73093 0.00091344575 0.00089610257 + 140220 -6246.493 -6253.2942 6.8011824 3706.8409 631.45948 -10591.595 0 325.95082 0.00088571452 0.00086915483 + 140230 -6246.4763 -6253.1816 6.7052263 3708.585 630.18681 -10591.953 0 321.35207 0.00069638886 0.00067740614 + 140240 -6246.4546 -6252.7583 6.3037408 3714.2155 628.79033 -10595.764 0 302.11063 0.00040332687 0.00038052276 + 140250 -6246.4511 -6251.9789 5.5277996 3722.0947 627.86873 -10601.942 0 264.92317 9.7382975e-05 7.3134115e-05 + 140260 -6246.4722 -6251.0146 4.5424396 3730.1599 627.89404 -10609.069 0 217.69919 -0.00012451134 -0.00014582958 + 140270 -6246.4954 -6250.2232 3.7278023 3736.4693 629.04778 -10615.74 0 178.6572 -0.0001876399 -0.00020351317 + 140280 -6246.4809 -6249.9899 3.5090554 3739.7097 631.18161 -10620.881 0 168.17362 -6.1001055e-05 -7.3127441e-05 + 140290 -6246.3908 -6250.5242 4.133375 3739.5198 633.89506 -10623.939 0 198.09452 0.00023435224 0.00022122466 + 140300 -6246.2091 -6251.7267 5.5176163 3736.5307 636.67751 -10624.935 0 264.43513 0.00063150723 0.00061320904 + 140310 -6245.9585 -6253.2072 7.2486493 3732.1134 639.04885 -10624.369 0 347.39595 0.0010358241 0.0010118856 + 140320 -6245.6999 -6254.4559 8.7559896 3727.9105 640.64977 -10623.016 0 419.63615 0.0013507226 0.0013243282 + 140330 -6245.4979 -6255.0817 9.5837189 3725.3087 641.26932 -10621.66 0 459.30558 0.0015043667 0.0014790901 + 140340 -6245.3819 -6254.9771 9.5952275 3725.0351 640.83634 -10620.849 0 459.85714 0.0014677324 0.0014442505 + 140350 -6245.3438 -6254.3169 8.9731015 3727.0053 639.41436 -10620.737 0 430.04137 0.0012576401 0.0012339944 + 140360 -6245.3709 -6253.421 8.0501249 3730.4188 637.21319 -10621.053 0 385.80716 0.00092746993 0.00090259959 + 140370 -6245.4623 -6252.5976 7.1352776 3734.0165 634.59038 -10621.204 0 341.96254 0.00055316552 0.00052948469 + 140380 -6245.611 -6252.0509 6.4399301 3736.4207 632.00522 -10620.477 0 308.63759 0.00021774026 0.00019932882 + 140390 -6245.7827 -6251.8536 6.0708868 3736.5199 629.91598 -10618.289 0 290.95096 -7.449164e-06 -1.9617007e-05 + 140400 -6245.9308 -6251.943 6.0122583 3733.8431 628.65346 -10614.44 0 288.14115 -8.3338238e-05 -9.4012669e-05 + 140410 -6246.0399 -6252.137 6.0970491 3728.7942 628.32538 -10609.257 0 292.2048 -1.6940282e-05 -3.354039e-05 + 140420 -6246.1503 -6252.2045 6.0541467 3722.5863 628.79391 -10603.585 0 290.14868 0.00014212428 0.0001160025 + 140430 -6246.3253 -6251.9988 5.6735079 3716.835 629.73708 -10598.571 0 271.90633 0.0003238947 0.00029215948 + 140440 -6246.5906 -6251.5745 4.9838434 3712.981 630.7708 -10595.326 0 238.85374 0.00046765337 0.00043883727 + 140450 -6246.9092 -6251.1839 4.2746614 3711.8339 631.58283 -10594.601 0 204.86576 0.00054233819 0.00052285913 + 140460 -6247.2175 -6251.1421 3.9246158 3713.4337 632.02347 -10596.599 0 188.08961 0.00054915375 0.0005386542 + 140470 -6247.4786 -6251.6458 4.1671866 3717.2126 632.12044 -10600.979 0 199.71496 0.00051006269 0.0005021058 + 140480 -6247.7095 -6252.6565 4.9469681 3722.2894 632.02701 -10606.973 0 237.08647 0.00045193166 0.00043882097 + 140490 -6247.9717 -6253.9037 5.9320638 3727.7286 631.94068 -10613.573 0 284.29778 0.0003949362 0.00037304883 + 140500 -6248.3325 -6255.0042 6.6717116 3732.6819 632.03038 -10619.716 0 319.74586 0.00034970102 0.00032177386 + 140510 -6248.812 -6255.6403 6.828282 3736.4333 632.39123 -10624.465 0 327.24958 0.0003220865 0.00029480022 + 140520 -6249.353 -6255.7028 6.3498176 3738.4328 633.02807 -10627.164 0 304.31889 0.00031895161 0.00029760233 + 140530 -6249.8513 -6255.3139 5.4626024 3738.3863 633.86062 -10627.561 0 261.79856 0.00034773816 0.00033245866 + 140540 -6250.2276 -6254.7291 4.5015638 3736.3709 634.7417 -10625.842 0 215.7402 0.0004096235 0.00039633299 + 140550 -6250.4742 -6254.2027 3.7284588 3732.8739 635.48483 -10622.561 0 178.68867 0.00049335848 0.00047812389 + 140560 -6250.6398 -6253.9021 3.2623144 3728.6821 635.90143 -10618.486 0 156.34841 0.00057644972 0.00055895584 + 140570 -6250.7778 -6253.8924 3.1145979 3724.658 635.84636 -10614.397 0 149.26901 0.00063337525 0.00061658514 + 140580 -6250.9076 -6254.1496 3.2419175 3721.5188 635.26102 -10610.929 0 155.37088 0.00064485589 0.00063174093 + 140590 -6251.0132 -6254.5717 3.5584304 3719.7126 634.19527 -10608.48 0 170.53995 0.00060245275 0.00059308867 + 140600 -6251.0701 -6254.9947 3.9246096 3719.3994 632.7927 -10607.187 0 188.08931 0.00050743502 0.00049898985 + 140610 -6251.0734 -6255.2397 4.166307 3720.481 631.24268 -10606.963 0 199.67281 0.0003674446 0.00035679049 + 140620 -6251.0427 -6255.1909 4.1481928 3722.6248 629.7243 -10607.54 0 198.80467 0.00019531666 0.00018176743 + 140630 -6251.0043 -6254.866 3.8617297 3725.2798 628.37614 -10608.522 0 185.07576 1.1192767e-05 -3.0126662e-06 + 140640 -6250.9682 -6254.4228 3.4545559 3727.7317 627.30959 -10609.464 0 165.5617 -0.00015511431 -0.00016683021 + 140650 -6250.9204 -6254.0829 3.1624999 3729.2367 626.65025 -10609.97 0 151.56474 -0.00026594714 -0.00027374608 + 140660 -6250.8318 -6254.0099 3.1780189 3729.2313 626.56481 -10609.806 0 152.3085 -0.00028395265 -0.00028912043 + 140670 -6250.6757 -6254.2126 3.5369355 3727.5478 627.23299 -10608.993 0 169.50979 -0.00018483465 -0.00019006526 + 140680 -6250.4417 -6254.538 4.0962781 3724.5436 628.75654 -10607.838 0 196.31663 2.9918632e-05 2.2752504e-05 + 140690 -6250.1389 -6254.7591 4.6202367 3721.0731 631.04338 -10606.876 0 221.42767 0.0003259565 0.00031680822 + 140700 -6249.786 -6254.7062 4.9201956 3718.2917 633.73778 -10606.736 0 235.80338 0.00063916055 0.00062873019 + 140710 -6249.4002 -6254.3551 4.9548511 3717.3403 636.26289 -10607.958 0 237.46427 0.00089027076 0.00087825739 + 140720 -6248.9972 -6253.8261 4.8288357 3718.9881 637.98951 -10610.804 0 231.4249 0.0010081122 0.00099304986 + 140730 -6248.5977 -6253.3101 4.7123907 3723.3187 638.47119 -10615.1 0 225.8442 0.00095474171 0.00093588397 + 140740 -6248.2247 -6252.9818 4.7571357 3729.5564 637.63701 -10620.175 0 227.98863 0.00074369683 0.00072286272 + 140750 -6247.887 -6252.9436 5.056613 3736.1375 635.84424 -10624.925 0 242.34127 0.00044262175 0.00042350298 + 140760 -6247.5652 -6253.2042 5.6390212 3741.0883 633.75697 -10628.049 0 270.25354 0.00015515469 0.00013992993 + 140770 -6247.2219 -6253.6736 6.4516391 3742.6481 632.09937 -10628.421 0 309.19875 -1.5123907e-05 -2.902033e-05 + 140780 -6246.8401 -6254.1653 7.3252323 3739.9322 631.38807 -10625.486 0 351.06623 -5.9801413e-06 -2.528507e-05 + 140790 -6246.4574 -6254.4254 7.9680244 3733.3429 631.7508 -10619.519 0 381.87244 0.00017584888 0.00014536848 + 140800 -6246.1564 -6254.2194 8.0630886 3724.5002 632.89406 -10611.614 0 386.42845 0.00045607829 0.00041533285 + 140810 -6246.0036 -6253.4628 7.4591929 3715.6837 634.22299 -10603.37 0 357.48638 0.00072418336 0.00068142644 + 140820 -6245.9925 -6252.3083 6.3158635 3709.0403 635.06412 -10596.413 0 302.69162 0.00087821793 0.00084340415 + 140830 -6246.0444 -6251.1082 5.0637621 3705.9301 634.90928 -10591.948 0 242.68389 0.00086071169 0.00083824131 + 140840 -6246.0631 -6250.2577 4.1946035 3706.6513 633.59526 -10590.504 0 201.02894 0.00067250014 0.00065827208 + 140850 -6245.9892 -6250.013 4.0238075 3710.5501 631.36359 -10591.927 0 192.84343 0.00036551973 0.00035025742 + 140860 -6245.8237 -6250.3865 4.5627875 3716.3477 628.78932 -10595.523 0 218.67438 2.3303624e-05 -6.7847715e-07 + 140870 -6245.6168 -6251.1668 5.5499877 3722.5095 626.60767 -10600.284 0 265.98655 -0.00026232988 -0.00029583521 + 140880 -6245.4355 -6252.0386 6.6031823 3727.5709 625.49379 -10605.103 0 316.46155 -0.00041328214 -0.00044992578 + 140890 -6245.3229 -6252.7301 7.4072168 3730.4243 625.86101 -10609.015 0 354.99539 -0.000383241 -0.00041411109 + 140900 -6245.2737 -6253.1192 7.8454233 3730.5733 627.73166 -10611.424 0 375.9967 -0.00016989055 -0.00018986367 + 140910 -6245.2441 -6253.2558 8.0117543 3728.2991 630.71261 -10612.268 0 383.96822 0.00018104017 0.00016977866 + 140920 -6245.1938 -6253.2975 8.1037443 3724.6347 634.08665 -10612.019 0 388.3769 0.00058301497 0.00057283097 + 140930 -6245.128 -6253.3979 8.2698676 3721.07 637.01209 -10611.48 0 396.33846 0.00092962228 0.00091333005 + 140940 -6245.1023 -6253.6113 8.5090595 3719.0306 638.78975 -10611.432 0 407.80188 0.0011267836 0.0011031435 + 140950 -6245.1843 -6253.8629 8.6786067 3719.3201 639.10875 -10612.292 0 415.92753 0.0011263299 0.0011008843 + 140960 -6245.3995 -6253.9974 8.5979144 3721.7819 638.15568 -10613.935 0 412.0603 0.00094604414 0.00092633279 + 140970 -6245.7016 -6253.87 8.1684678 3725.3703 636.51399 -10615.754 0 391.47881 0.00066320923 0.00065195141 + 140980 -6246.0018 -6253.4134 7.4116137 3728.6242 634.88875 -10616.926 0 355.20612 0.00038013203 0.0003724861 + 140990 -6246.2349 -6252.6492 6.4142721 3730.3023 633.79411 -10616.746 0 307.40791 0.00017806827 0.00016603065 + 141000 -6246.4006 -6251.6869 5.2863217 3729.8301 633.35758 -10614.875 0 253.3502 8.6521143e-05 6.6379462e-05 + 141010 -6246.5404 -6250.7371 4.1967705 3727.3571 633.32441 -10611.419 0 201.13279 8.4379957e-05 5.9795533e-05 + 141020 -6246.6861 -6250.095 3.4089907 3723.5065 633.23989 -10606.841 0 163.37796 0.00012545559 0.00010360554 + 141030 -6246.8313 -6250.0387 3.2074851 3719.0604 632.70413 -10601.803 0 153.72068 0.00016695631 0.00015217904 + 141040 -6246.9433 -6250.6809 3.7376555 3714.7586 631.57171 -10597.011 0 179.12942 0.00018524209 0.00017598017 + 141050 -6246.9963 -6251.8795 4.883251 3711.2286 630.01191 -10593.12 0 234.03279 0.00017704764 0.00016774276 + 141060 -6247.0001 -6253.2815 6.2813409 3708.9715 628.42048 -10590.673 0 301.0371 0.00015234395 0.00013766788 + 141070 -6247.0035 -6254.4776 7.4741271 3708.3353 627.23818 -10590.051 0 358.20211 0.00012495821 0.00010286197 + 141080 -6247.0692 -6255.1737 8.1044882 3709.4616 626.76567 -10591.401 0 388.41255 0.00010440598 7.6578456e-05 + 141090 -6247.2411 -6255.2841 8.0429295 3712.2302 627.05921 -10594.573 0 385.46231 9.1446695e-05 6.2105778e-05 + 141100 -6247.5231 -6254.9252 7.4020697 3716.228 627.94633 -10599.099 0 354.74871 7.9898167e-05 5.3979599e-05 + 141110 -6247.8777 -6254.346 6.4682651 3720.7684 629.13684 -10604.251 0 309.99556 6.4333922e-05 4.5118374e-05 + 141120 -6248.2446 -6253.8263 5.5817257 3724.9986 630.36125 -10609.186 0 267.50762 4.7755582e-05 3.4600965e-05 + 141130 -6248.5759 -6253.5626 4.9866216 3728.1021 631.46721 -10613.132 0 238.98689 4.2218983e-05 3.0559505e-05 + 141140 -6248.8664 -6253.5845 4.7181454 3729.5269 632.43844 -10615.55 0 226.12 6.1996212e-05 4.6603516e-05 + 141150 -6249.1498 -6253.7642 4.614391 3729.1237 633.3432 -10616.231 0 221.14751 0.00011558507 9.4650693e-05 + 141160 -6249.4623 -6253.9185 4.4562124 3727.1385 634.24907 -10615.306 0 213.5667 0.00020191373 0.00017827042 + 141170 -6249.8047 -6253.9321 4.1273635 3724.1004 635.14691 -10613.179 0 197.80642 0.00031037272 0.00028890632 + 141180 -6250.1408 -6253.818 3.677282 3720.6843 635.91603 -10610.418 0 176.23599 0.00042168187 0.00040548093 + 141190 -6250.4257 -6253.6878 3.2621048 3717.5922 636.34275 -10607.623 0 156.33837 0.00050892352 0.00049740383 + 141200 -6250.639 -6253.6713 3.0322489 3715.4454 636.18421 -10605.301 0 145.32238 0.00054096128 0.00053104873 + 141210 -6250.7932 -6253.8451 3.051928 3714.6664 635.25473 -10603.766 0 146.26551 0.00049022174 0.00047910463 + 141220 -6250.9177 -6254.2063 3.2885881 3715.3522 633.50758 -10603.066 0 157.60759 0.00034376498 0.00033079665 + 141230 -6251.0353 -6254.6876 3.6522894 3717.1903 631.08922 -10602.967 0 175.0382 0.00011324269 9.9662225e-05 + 141240 -6251.1488 -6255.1881 4.0392916 3719.4847 628.3487 -10603.022 0 193.58552 -0.00016181848 -0.00017469497 + 141250 -6251.2451 -6255.5955 4.3503727 3721.3305 625.78971 -10602.716 0 208.49427 -0.00042090913 -0.00043314668 + 141260 -6251.312 -6255.8034 4.491363 3721.8975 623.96218 -10601.663 0 215.25131 -0.00059876408 -0.00061152244 + 141270 -6251.3507 -6255.7374 4.3867011 3720.7238 623.30971 -10599.771 0 210.23533 -0.00064572683 -0.00065958725 + 141280 -6251.3737 -6255.3969 4.0232339 3717.8998 624.01617 -10597.313 0 192.81594 -0.00054481585 -0.00055853224 + 141290 -6251.389 -6254.8877 3.498708 3714.0782 625.91395 -10594.88 0 167.67772 -0.00031902035 -0.00033019519 + 141300 -6251.3885 -6254.409 3.0204836 3710.3145 628.50723 -10593.231 0 144.75852 -2.6096954e-05 -3.335105e-05 + 141310 -6251.3481 -6254.1738 2.8256683 3707.7976 631.11952 -10593.091 0 135.42188 0.00025728731 0.00025270249 + 141320 -6251.2394 -6254.2972 3.057817 3707.5378 633.11563 -10594.951 0 146.54775 0.00045705044 0.00045186321 + 141330 -6251.0417 -6254.7189 3.67726 3710.0712 634.10996 -10598.9 0 176.23493 0.00052286139 0.00051428912 + 141340 -6250.7489 -6255.2163 4.4673844 3715.2395 634.07754 -10604.533 0 214.10213 0.00044347382 0.00043155231 + 141350 -6250.3687 -6255.5108 5.1420284 3722.116 633.32757 -10610.954 0 246.43485 0.00025163255 0.00023922598 + 141360 -6249.9149 -6255.4085 5.4935733 3729.1422 632.35879 -10616.909 0 263.28286 1.5597347e-05 5.7802691e-06 + 141370 -6249.4014 -6254.8892 5.4877877 3734.493 631.66429 -10621.046 0 263.00558 -0.00018200371 -0.0001890287 + 141380 -6248.8475 -6254.0936 5.2461855 3736.5917 631.56561 -10622.251 0 251.42665 -0.0002716622 -0.00027909925 + 141390 -6248.2881 -6253.2333 4.9452294 3734.6027 632.12825 -10619.964 0 237.00314 -0.00022024931 -0.00023182043 + 141400 -6247.7718 -6252.4946 4.7228421 3728.7098 633.16612 -10614.371 0 226.34509 -4.0826541e-05 -5.7069015e-05 + 141410 -6247.3359 -6251.9883 4.6524689 3720.0811 634.31166 -10606.381 0 222.97242 0.00021331835 0.00019576321 + 141420 -6246.9804 -6251.7434 4.7630618 3710.5538 635.12186 -10597.419 0 228.27265 0.00046562032 0.00045072583 + 141430 -6246.6678 -6251.7162 5.0484823 3702.1714 635.19685 -10589.085 0 241.9516 0.0006372483 0.00062543523 + 141440 -6246.355 -6251.8093 5.4543771 3696.7059 634.29116 -10582.806 0 261.40436 0.00066755007 0.00065468565 + 141450 -6246.0291 -6251.9102 5.8811869 3695.2559 632.39459 -10579.561 0 281.85947 0.000531063 0.00051157286 + 141460 -6245.7177 -6251.9456 6.2278591 3697.9855 629.76033 -10579.691 0 298.47395 0.00024727525 0.00021874282 + 141470 -6245.4693 -6251.9224 6.4530619 3704.062 626.86677 -10582.851 0 309.26694 -0.00012102536 -0.00015527603 + 141480 -6245.317 -6251.9333 6.616309 3711.8321 624.31488 -10588.08 0 317.09065 -0.0004819147 -0.00051426202 + 141490 -6245.2488 -6252.1237 6.8748755 3719.2294 622.68197 -10594.035 0 329.48261 -0.00073785928 -0.00076146136 + 141500 -6245.2068 -6252.6203 7.4135336 3724.3435 622.37098 -10599.335 0 355.29813 -0.00081324079 -0.00082765217 + 141510 -6245.1286 -6253.4289 8.3003048 3726.0057 623.50207 -10602.937 0 397.79718 -0.00067942724 -0.00069210084 + 141520 -6245.0118 -6254.3519 9.3401711 3724.179 625.88192 -10604.413 0 447.63341 -0.00036872191 -0.00038993591 + 141530 -6244.941 -6255.015 10.074013 3719.9426 629.05817 -10604.016 0 482.80323 3.2250218e-05 -2.1608168e-06 + 141540 -6245.0305 -6255.0367 10.006193 3715.0267 632.43906 -10602.502 0 479.5529 0.00041250664 0.00037047968 + 141550 -6245.3165 -6254.2564 8.9398953 3711.1045 635.43921 -10600.8 0 428.44995 0.00067860651 0.00064093827 + 141560 -6245.7068 -6252.8624 7.1556311 3709.2024 637.60622 -10599.671 0 342.93799 0.00078622697 0.00076189585 + 141570 -6246.0464 -6251.3203 5.2738777 3709.4995 638.6917 -10599.511 0 252.75381 0.00074452617 0.00073266328 + 141580 -6246.2331 -6250.144 3.9108898 3711.5194 638.65659 -10600.32 0 187.43178 0.00059590254 0.00058719268 + 141590 -6246.2756 -6249.6625 3.3869364 3714.483 637.62974 -10601.775 0 162.321 0.00038950057 0.00037424394 + 141600 -6246.2602 -6249.9197 3.6594236 3717.5728 635.85193 -10603.344 0 175.38011 0.0001657477 0.00014156659 + 141610 -6246.2736 -6250.7362 4.4626156 3720.0263 633.62868 -10604.391 0 213.87358 -4.4110404e-05 -7.1275401e-05 + 141620 -6246.3418 -6251.8451 5.5032585 3721.1621 631.29493 -10604.302 0 263.74703 -0.0002122771 -0.00023432819 + 141630 -6246.4297 -6252.9886 6.558957 3720.4819 629.17843 -10602.649 0 314.34202 -0.00031423599 -0.00032834554 + 141640 -6246.4934 -6253.9412 7.4477394 3717.8695 627.54818 -10599.359 0 356.93746 -0.00033768939 -0.00034806856 + 141650 -6246.5371 -6254.5175 7.9803931 3713.7454 626.55154 -10594.814 0 382.46521 -0.0002924187 -0.000305213 + 141660 -6246.6121 -6254.6293 8.0171828 3709.0088 626.16932 -10589.807 0 384.22839 -0.00020945132 -0.00022648371 + 141670 -6246.7625 -6254.3602 7.5977493 3704.749 626.22811 -10585.337 0 364.12678 -0.00012711691 -0.00014493861 + 141680 -6246.979 -6253.9574 6.9783805 3701.8893 626.48537 -10582.332 0 334.44315 -7.3963101e-05 -8.8463757e-05 + 141690 -6247.2132 -6253.6941 6.4808762 3700.9552 626.75229 -10581.402 0 310.59995 -6.0519987e-05 -7.1450098e-05 + 141700 -6247.4285 -6253.6907 6.2622287 3702.0318 626.984 -10582.706 0 300.12113 -8.2242128e-05 -9.2937116e-05 + 141710 -6247.6295 -6253.8414 6.2118501 3704.8315 627.28116 -10585.954 0 297.70671 -0.00012664859 -0.0001401076 + 141720 -6247.843 -6253.9113 6.0682792 3708.7847 627.8023 -10590.498 0 290.82599 -0.00017806487 -0.00019422582 + 141730 -6248.0761 -6253.7225 5.6464105 3713.1371 628.6443 -10595.504 0 270.60767 -0.00021999261 -0.00023688593 + 141740 -6248.3016 -6253.2782 4.9765991 3717.0873 629.76643 -10600.132 0 238.50655 -0.00023851456 -0.00025516282 + 141750 -6248.4861 -6252.7464 4.2602838 3719.9533 631.00074 -10603.7 0 204.17671 -0.00022672062 -0.00024398777 + 141760 -6248.624 -6252.3487 3.7246521 3721.3032 632.13239 -10605.784 0 178.50623 -0.00018591495 -0.00020459239 + 141770 -6248.7383 -6252.2562 3.5179332 3720.9929 632.99463 -10606.244 0 168.5991 -0.00012142213 -0.00014043683 + 141780 -6248.8497 -6252.5409 3.6912395 3719.1403 633.52483 -10605.206 0 176.90491 -3.7320258e-05 -5.4604321e-05 + 141790 -6248.9552 -6253.1631 4.2078676 3716.1027 633.75813 -10603.024 0 201.66462 6.3070164e-05 4.8065446e-05 + 141800 -6249.0395 -6253.9704 4.9309056 3712.4778 633.76854 -10600.217 0 236.31666 0.00016974883 0.00015506136 + 141810 -6249.1016 -6254.726 5.6243933 3709.0602 633.59157 -10597.378 0 269.55248 0.00025880351 0.0002417798 + 141820 -6249.1637 -6255.1917 6.0280376 3706.6802 633.17351 -10595.045 0 288.89738 0.00029452794 0.00027439588 + 141830 -6249.2501 -6255.2362 5.986125 3705.9483 632.38586 -10593.57 0 286.8887 0.00024298978 0.00022150799 + 141840 -6249.3638 -6254.8979 5.5341061 3707.0164 631.10939 -10593.024 0 265.22542 8.9784236e-05 6.968881e-05 + 141850 -6249.4845 -6254.3601 4.8756048 3709.4793 629.34589 -10593.185 0 233.66634 -0.0001484071 -0.0001653848 + 141860 -6249.5851 -6253.8615 4.276386 3712.4645 627.29152 -10593.618 0 204.94841 -0.00042432064 -0.00043837288 + 141870 -6249.6469 -6253.5975 3.9506114 3714.887 625.3234 -10593.808 0 189.33547 -0.00067196456 -0.0006849228 + 141880 -6249.6631 -6253.6545 3.9913797 3715.7889 623.89761 -10593.341 0 191.28931 -0.00082533487 -0.00083973805 + 141890 -6249.6359 -6253.9898 4.3539694 3714.6586 623.40004 -10592.049 0 208.66664 -0.0008385259 -0.00085647691 + 141900 -6249.575 -6254.4551 4.8800879 3711.623 624.01159 -10590.09 0 233.88119 -0.00070141993 -0.00072347397 + 141910 -6249.4966 -6254.8527 5.3560646 3707.4428 625.63951 -10587.935 0 256.69267 -0.00044525898 -0.00046981575 + 141920 -6249.4151 -6255.0135 5.5984423 3703.3086 627.93496 -10586.257 0 268.30877 -0.00013498611 -0.00015889721 + 141930 -6249.3306 -6254.8679 5.5372187 3700.5018 630.38372 -10585.753 0 265.37459 0.00014935253 0.00012886288 + 141940 -6249.2252 -6254.4725 5.2473795 3700.0329 632.43812 -10586.944 0 251.48387 0.00033509937 0.00031838284 + 141950 -6249.0733 -6253.9754 4.9020772 3702.3532 633.65578 -10589.984 0 234.93505 0.00037588935 0.000360415 + 141960 -6248.8621 -6253.5356 4.6735287 3707.2054 633.81694 -10594.558 0 223.98172 0.00026283336 0.00024503294 + 141970 -6248.6003 -6253.2454 4.6451042 3713.6314 632.9955 -10599.872 0 222.61946 2.7434876e-05 5.6674528e-06 + 141980 -6248.3087 -6253.1009 4.7922033 3720.1331 631.55924 -10604.793 0 229.66927 -0.00026316135 -0.00028705248 + 141990 -6247.996 -6253.0333 5.037264 3724.9773 630.0804 -10608.091 0 241.41395 -0.00051932207 -0.00054169619 + 142000 -6247.6453 -6252.9619 5.3166425 3726.6315 629.16207 -10608.756 0 254.80334 -0.00065210563 -0.00067126076 + 142010 -6247.2321 -6252.8206 5.5885567 3724.2604 629.22262 -10606.304 0 267.83499 -0.00060417208 -0.00062215963 + 142020 -6246.7628 -6252.5628 5.8000018 3718.1053 630.30966 -10600.978 0 277.96863 -0.00037716713 -0.00039718166 + 142030 -6246.2852 -6252.196 5.9107636 3709.5287 632.0241 -10593.749 0 283.27696 -3.8823773e-05 -6.0976786e-05 + 142040 -6245.847 -6251.8444 5.9973961 3700.6412 633.61575 -10586.101 0 287.42887 0.00029898158 0.00027809411 + 142050 -6245.4426 -6251.7444 6.3018475 3693.6594 634.25367 -10579.657 0 302.01989 0.00052179109 0.00050470669 + 142060 -6245.0174 -6252.1086 7.0912369 3690.2692 633.38168 -10575.759 0 339.85186 0.00055272058 0.00053705861 + 142070 -6244.5355 -6252.9311 8.3955681 3691.1943 630.99841 -10575.124 0 402.36273 0.00037524185 0.00035517519 + 142080 -6244.0482 -6253.9066 9.8584401 3696.0292 627.71438 -10577.65 0 472.47177 3.5731767e-05 8.001046e-06 + 142090 -6243.6806 -6254.5658 10.885168 3703.3369 624.53846 -10582.441 0 521.67832 -0.00036986824 -0.00040189008 + 142100 -6243.5308 -6254.5498 11.018946 3711.0232 622.48531 -10588.058 0 528.0897 -0.00072229129 -0.00075150182 + 142110 -6243.5809 -6253.8135 10.23258 3716.9563 622.19472 -10592.964 0 490.40264 -0.00091575905 -0.00093842258 + 142120 -6243.7221 -6252.609 8.8868789 3719.6531 623.73747 -10596 0 425.9091 -0.00089535382 -0.00091450232 + 142130 -6243.8561 -6251.3052 7.4491605 3718.7356 626.65796 -10596.699 0 357.00557 -0.00067678024 -0.00069850477 + 142140 -6243.9578 -6250.217 6.2592156 3714.9415 630.18143 -10595.34 0 299.97673 -0.00033647931 -0.00036377566 + 142150 -6244.0538 -6249.5342 5.4803718 3709.7253 633.47475 -10592.734 0 262.65017 2.1814428e-05 -8.6060024e-06 + 142160 -6244.1676 -6249.3288 5.1611814 3704.685 635.8724 -10589.886 0 247.35277 0.00030539404 0.00027690208 + 142170 -6244.2886 -6249.5806 5.2920326 3701.0716 637.01613 -10587.668 0 253.6239 0.00045882638 0.00043512086 + 142180 -6244.3844 -6250.1927 5.8082548 3699.5353 636.88943 -10586.617 0 278.36416 0.00047112094 0.00045028903 + 142190 -6244.4383 -6251.002 6.5636314 3700.1142 635.75696 -10586.873 0 314.56605 0.00036679714 0.00034379476 + 142200 -6244.4738 -6251.8147 7.3408423 3702.3737 634.0379 -10588.226 0 351.81435 0.00018954441 0.00016033954 + 142210 -6244.5436 -6252.4764 7.9328394 3705.5869 632.1572 -10590.221 0 380.18618 -1.3496185e-05 -4.9067317e-05 + 142220 -6244.6959 -6252.9321 8.2362 3708.9151 630.427 -10592.274 0 394.72492 -0.00020349663 -0.00024205817 + 142230 -6244.952 -6253.2277 8.2757479 3711.5741 628.99761 -10593.799 0 396.62027 -0.00035669949 -0.0003936033 + 142240 -6245.3041 -6253.4659 8.1617787 3712.961 627.88272 -10594.31 0 391.15823 -0.00046440992 -0.00049625039 + 142250 -6245.7251 -6253.7478 8.0227837 3712.7298 627.03322 -10593.511 0 384.49681 -0.00052690052 -0.00055342198 + 142260 -6246.1871 -6254.1135 7.9263571 3710.8445 626.42215 -10591.38 0 379.8755 -0.0005465858 -0.00057077436 + 142270 -6246.6816 -6254.4978 7.8162279 3707.6144 626.09953 -10588.212 0 374.5975 -0.00052531473 -0.00055093837 + 142280 -6247.2158 -6254.7476 7.5318491 3703.6642 626.18221 -10584.594 0 360.96847 -0.00046572313 -0.00049405086 + 142290 -6247.7851 -6254.7085 6.9234302 3699.8042 626.77432 -10581.287 0 331.80962 -0.00037434216 -0.00040295673 + 142300 -6248.3495 -6254.3268 5.9773099 3696.8426 627.85889 -10579.028 0 286.46623 -0.00026500624 -0.00028966105 + 142310 -6248.844 -6253.7006 4.8566038 3695.4165 629.22962 -10578.347 0 232.75571 -0.00016083567 -0.00017874328 + 142320 -6249.2134 -6253.0496 3.8362137 3695.8868 630.51608 -10579.452 0 183.85288 -9.2213442e-05 -0.00010433737 + 142330 -6249.4423 -6252.6196 3.1773262 3698.2931 631.30369 -10582.216 0 152.2753 -8.9544861e-05 -0.00010023735 + 142340 -6249.5588 -6252.5692 3.0103571 3702.3311 631.29632 -10586.197 0 144.2732 -0.00017220202 -0.00018626772 + 142350 -6249.6166 -6252.9026 3.2859425 3707.3336 630.44861 -10590.685 0 157.4808 -0.00033697211 -0.00035617157 + 142360 -6249.667 -6253.4832 3.8162227 3712.2894 629.01059 -10594.783 0 182.8948 -0.00055081873 -0.00057250675 + 142370 -6249.7344 -6254.1125 4.3781452 3715.9758 627.46309 -10597.551 0 209.82528 -0.0007535625 -0.00077274364 + 142380 -6249.806 -6254.6207 4.8146975 3717.2489 626.36132 -10598.231 0 230.74732 -0.00087390755 -0.00088732573 + 142390 -6249.8453 -6254.9194 5.0740999 3715.4403 626.1382 -10596.498 0 243.17934 -0.00085591617 -0.00086491385 + 142400 -6249.8235 -6255.0008 5.1773324 3710.6999 626.93656 -10592.637 0 248.12682 -0.00068544434 -0.00069507115 + 142410 -6249.7454 -6254.9102 5.1648294 3704.0952 628.53351 -10587.539 0 247.5276 -0.00040287226 -0.00041790892 + 142420 -6249.6468 -6254.7257 5.0788933 3697.3637 630.39351 -10582.483 0 243.40907 -9.3540585e-05 -0.00011487868 + 142430 -6249.5663 -6254.545 4.9787167 3692.3824 631.84426 -10578.772 0 238.60804 0.00014146745 0.00011718486 + 142440 -6249.5186 -6254.4579 4.9393653 3690.5605 632.31983 -10577.338 0 236.7221 0.00022158668 0.00019928821 + 142450 -6249.4889 -6254.5041 5.0152034 3692.3851 631.57663 -10578.466 0 240.35668 0.00011512528 9.8035586e-05 + 142460 -6249.4472 -6254.6477 5.2005224 3697.2738 629.79089 -10581.712 0 249.23821 -0.00015028853 -0.00016244746 + 142470 -6249.3677 -6254.7892 5.421539 3703.775 627.4974 -10586.062 0 259.83057 -0.00049768564 -0.00050833694 + 142480 -6249.2454 -6254.8071 5.5616555 3710.0324 625.39948 -10590.239 0 266.54574 -0.00082668444 -0.00084020682 + 142490 -6249.1007 -6254.6101 5.5093503 3714.3419 624.13055 -10593.083 0 264.03898 -0.0010454644 -0.001064372 + 142500 -6248.9663 -6254.1828 5.2164836 3715.6069 624.05702 -10593.847 0 250.00316 -0.0010972796 -0.0011205737 + 142510 -6248.8667 -6253.6059 4.7392251 3713.5736 625.1846 -10592.364 0 227.13026 -0.00097368359 -0.0009975064 + 142520 -6248.802 -6253.035 4.232988 3708.8335 627.18181 -10589.05 0 202.86854 -0.00071284977 -0.00073302385 + 142530 -6248.745 -6252.6455 3.9005206 3702.6366 629.49323 -10584.775 0 186.93483 -0.00038629865 -0.00040128312 + 142540 -6248.6518 -6252.5623 3.9105571 3696.5801 631.49741 -10580.64 0 187.41584 -7.9698703e-05 -9.2156574e-05 + 142550 -6248.487 -6252.7955 4.3084409 3692.2379 632.66955 -10577.703 0 206.48466 0.00012703112 0.0001115668 + 142560 -6248.2534 -6253.2146 4.9611988 3690.779 632.71726 -10576.711 0 237.76849 0.00017775788 0.00015499578 + 142570 -6247.9991 -6253.5987 5.5995817 3692.6313 631.65956 -10577.89 0 268.36337 5.5593787e-05 2.6528069e-05 + 142580 -6247.7842 -6253.7601 5.9759135 3697.2827 629.82218 -10580.865 0 286.3993 -0.00020719956 -0.00023638214 + 142590 -6247.6254 -6253.6679 6.0425011 3703.3475 627.74052 -10584.756 0 289.59056 -0.00053236362 -0.00055560316 + 142600 -6247.4786 -6253.4655 5.9869202 3708.9731 625.99576 -10588.434 0 286.92681 -0.00081832272 -0.00083571776 + 142610 -6247.2858 -6253.3531 6.0672942 3712.4732 625.03973 -10590.866 0 290.77878 -0.00097744631 -0.0009955737 + 142620 -6247.0399 -6253.4355 6.3956345 3712.8991 625.06749 -10591.402 0 306.51469 -0.00096949332 -0.00099500693 + 142630 -6246.7982 -6253.6723 6.8740966 3710.2767 625.97786 -10589.927 0 329.44528 -0.00081224834 -0.00084507731 + 142640 -6246.6295 -6253.9476 7.3181729 3705.4501 627.43353 -10586.831 0 350.72791 -0.00056553239 -0.00059866145 + 142650 -6246.551 -6254.1606 7.6096189 3699.7045 628.99805 -10582.863 0 364.69563 -0.00030227578 -0.00032821137 + 142660 -6246.5208 -6254.2461 7.7252158 3694.388 630.29003 -10578.924 0 370.23569 -8.5049621e-05 -0.00010237617 + 142670 -6246.4862 -6254.1391 7.6529292 3690.6468 631.08486 -10575.871 0 366.77131 4.3639818e-05 2.9808562e-05 + 142680 -6246.4334 -6253.7665 7.3331214 3689.2546 631.3266 -10574.348 0 351.44433 6.2093186e-05 4.5554441e-05 + 142690 -6246.3892 -6253.1104 6.7211476 3690.4818 631.06924 -10574.661 0 322.11511 -3.0404651e-05 -5.1438748e-05 + 142700 -6246.3789 -6252.2925 5.9136108 3694.0131 630.40499 -10576.711 0 283.41341 -0.00021224127 -0.00023482759 + 142710 -6246.3921 -6251.5745 5.1823462 3698.9836 629.43363 -10579.992 0 248.36711 -0.00044208008 -0.00046282305 + 142720 -6246.3929 -6251.2302 4.8373175 3704.1809 628.28401 -10583.695 0 231.8314 -0.00066880964 -0.0006874653 + 142730 -6246.3553 -6251.3729 5.017622 3708.3566 627.15071 -10586.88 0 240.4726 -0.00084484576 -0.00086350976 + 142740 -6246.2859 -6251.8782 5.5923547 3710.5231 626.29268 -10588.694 0 268.01702 -0.0009356802 -0.00095528232 + 142750 -6246.2106 -6252.4677 6.2571045 3710.1501 625.96608 -10588.584 0 299.87556 -0.00092337365 -0.0009421158 + 142760 -6246.1431 -6252.8842 6.7411065 3707.2588 626.31277 -10586.456 0 323.07165 -0.00080798788 -0.00082372066 + 142770 -6246.0694 -6253.0237 6.9543731 3702.4458 627.26576 -10582.735 0 333.29258 -0.00061086479 -0.00062451836 + 142780 -6245.9684 -6252.9468 6.9784094 3696.8184 628.535 -10578.3 0 334.44454 -0.00037691743 -0.00039268976 + 142790 -6245.8441 -6252.8005 6.9564001 3691.7772 629.69524 -10574.273 0 333.38972 -0.00016805979 -0.00018977366 + 142800 -6245.7297 -6252.733 7.003254 3688.6382 630.34252 -10571.714 0 335.63522 -4.4436779e-05 -7.1857655e-05 + 142810 -6245.6598 -6252.8427 7.18289 3688.2105 630.25047 -10571.304 0 344.24439 -4.1127946e-05 -7.0014109e-05 + 142820 -6245.6424 -6253.1511 7.5087283 3690.5238 629.45817 -10573.133 0 359.86039 -0.00015407737 -0.0001797163 + 142830 -6245.6611 -6253.5873 7.9261348 3694.8339 628.25093 -10576.672 0 379.86485 -0.0003435952 -0.00036436983 + 142840 -6245.7005 -6254.0015 8.3009754 3699.8889 627.0421 -10580.932 0 397.82932 -0.00055209383 -0.0005703385 + 142850 -6245.7669 -6254.224 8.4571211 3704.3282 626.21028 -10584.763 0 405.3127 -0.00072528018 -0.00074549319 + 142860 -6245.8887 -6254.1415 8.2527898 3707.0661 625.96921 -10587.177 0 395.51999 -0.00082732138 -0.0008532876 + 142870 -6246.0985 -6253.7452 7.6467143 3707.5474 626.32616 -10587.619 0 366.47346 -0.00084627749 -0.00087855039 + 142880 -6246.4087 -6253.1335 6.7248324 3705.8127 627.12865 -10586.075 0 322.2917 -0.00079095126 -0.00082602806 + 142890 -6246.7965 -6252.4812 5.684778 3702.3852 628.15078 -10583.017 0 272.44646 -0.00068292405 -0.00071505354 + 142900 -6247.2098 -6251.9898 4.7800018 3698.0691 629.16564 -10579.225 0 229.08451 -0.00054834855 -0.00057327738 + 142910 -6247.5924 -6251.8241 4.2316961 3693.764 629.98238 -10575.57 0 202.80662 -0.00041310348 -0.00043123098 + 142920 -6247.9113 -6252.045 4.1336489 3690.3411 630.45794 -10572.844 0 198.10765 -0.00030225047 -0.00031857882 + 142930 -6248.1733 -6252.5669 4.3936582 3688.5467 630.5019 -10571.616 0 210.56875 -0.00024108278 -0.00026150189 + 142940 -6248.4199 -6253.1821 4.7622163 3688.8705 630.08256 -10572.135 0 228.23212 -0.0002527885 -0.00027923834 + 142950 -6248.6972 -6253.6633 4.9661497 3691.3722 629.23203 -10574.268 0 238.00576 -0.00034998124 -0.00037853332 + 142960 -6249.0157 -6253.8972 4.8815138 3695.5549 628.0459 -10577.498 0 233.94953 -0.00052393438 -0.00054791276 + 142970 -6249.3358 -6253.9512 4.6154064 3700.4103 626.67661 -10581.038 0 221.19617 -0.00074043237 -0.00075621389 + 142980 -6249.5978 -6254.0154 4.4176253 3704.6833 625.32179 -10584.021 0 211.71739 -0.00094813216 -0.00095840995 + 142990 -6249.7722 -6254.2597 4.4875501 3707.2574 624.20625 -10585.723 0 215.06858 -0.0010958139 -0.0011072163 + 143000 -6249.8849 -6254.7178 4.8328052 3707.4813 623.55259 -10585.752 0 231.61514 -0.0011483819 -0.0011655928 + 143010 -6249.9965 -6255.2794 5.2829044 3705.3048 623.53532 -10584.12 0 253.18642 -0.0010941245 -0.0011158896 + 143020 -6250.1524 -6255.7765 5.6241925 3701.2267 624.22273 -10581.226 0 269.54286 -0.00094379245 -0.0009643698 + 143030 -6250.3474 -6256.0774 5.7299962 3696.1433 625.52631 -10577.747 0 274.61357 -0.00072712469 -0.00074165331 + 143040 -6250.5343 -6256.1219 5.587589 3691.1802 627.18688 -10574.489 0 267.78862 -0.00049023982 -0.00049897745 + 143050 -6250.6651 -6255.9014 5.2362613 3687.5102 628.81728 -10572.229 0 250.95102 -0.00029118811 -0.00029894644 + 143060 -6250.7278 -6255.4383 4.7104878 3686.117 629.99811 -10571.553 0 225.75301 -0.00018850268 -0.0002002932 + 143070 -6250.7464 -6254.7967 4.0502789 3687.5116 630.40035 -10572.709 0 194.11209 -0.00022247172 -0.00023956384 + 143080 -6250.7542 -6254.1033 3.349037 3691.4966 629.89751 -10575.497 0 160.50465 -0.00039661221 -0.00041616879 + 143090 -6250.7659 -6253.5319 2.7660126 3697.1142 628.62816 -10579.274 0 132.56285 -0.0006698183 -0.0006877411 + 143100 -6250.7693 -6253.2393 2.4699885 3702.8556 626.97977 -10583.075 0 118.37571 -0.00096508928 -0.00097920115 + 143110 -6250.7367 -6253.2867 2.5499177 3707.0842 625.48633 -10585.857 0 122.20637 -0.0011924858 -0.0012035249 + 143120 -6250.6409 -6253.6033 2.9624291 3708.5301 624.66153 -10586.795 0 141.97623 -0.0012778085 -0.0012880599 + 143130 -6250.4653 -6254.0253 3.5600697 3706.6848 624.8162 -10585.526 0 170.61851 -0.0011871852 -0.0011985786 + 143140 -6250.2047 -6254.3849 4.1801709 3701.9778 625.92389 -10582.287 0 200.33724 -0.00094013475 -0.00095353804 + 143150 -6249.8619 -6254.5902 4.7283513 3695.6903 627.59333 -10577.874 0 226.60913 -0.0006071329 -0.0006228581 + 143160 -6249.4465 -6254.6499 5.2033151 3689.6182 629.17643 -10573.445 0 249.37206 -0.00029111372 -0.00030941146 + 143170 -6248.9772 -6254.6376 5.660387 3685.5571 629.99126 -10570.186 0 271.27751 -9.638587e-05 -0.00011711814 + 143180 -6248.4807 -6254.6309 6.1502445 3684.7374 629.58745 -10568.956 0 294.75422 -9.3262655e-05 -0.00011520518 + 143190 -6247.9854 -6254.6615 6.6760882 3687.3906 627.9492 -10570.001 0 319.95561 -0.00029038061 -0.00031134249 + 143200 -6247.5112 -6254.7022 7.1909912 3692.6217 625.54095 -10572.865 0 344.63265 -0.00062676435 -0.0006451657 + 143210 -6247.065 -6254.683 7.6179997 3698.6791 623.16175 -10576.524 0 365.09729 -0.00099034673 -0.0010071697 + 143220 -6246.6513 -6254.5103 7.8589923 3703.5585 621.66271 -10579.732 0 376.64701 -0.0012584125 -0.0012771755 + 143230 -6246.2899 -6254.0896 7.7996807 3705.7052 621.64397 -10581.439 0 373.80446 -0.0013428119 -0.0013666793 + 143240 -6246.0135 -6253.3724 7.3589405 3704.5194 623.24749 -10581.139 0 352.68172 -0.0012189035 -0.0012474497 + 143250 -6245.8393 -6252.4214 6.5821451 3700.4745 626.11359 -10579.009 0 315.45333 -0.00092748083 -0.00095666907 + 143260 -6245.7452 -6251.4363 5.6911002 3694.8686 629.50388 -10575.809 0 272.74946 -0.00055484133 -0.00058052377 + 143270 -6245.6781 -6250.6914 5.0132978 3689.3781 632.53841 -10572.608 0 240.26536 -0.00020393019 -0.00022541533 + 143280 -6245.587 -6250.4096 4.8225825 3685.582 634.46476 -10570.456 0 231.12521 3.3664201e-05 1.331877e-05 + 143290 -6245.4501 -6250.6521 5.202026 3684.5568 634.87571 -10570.085 0 249.31027 0.00010069875 7.7575165e-05 + 143300 -6245.28 -6251.2936 6.0135886 3686.5934 633.8128 -10571.7 0 288.20491 -1.0756079e-05 -3.8285571e-05 + 143310 -6245.1104 -6252.0831 6.9727507 3691.1033 631.72663 -10574.913 0 334.17334 -0.00025719255 -0.00028757462 + 143320 -6244.9786 -6252.7455 7.7668528 3696.773 629.30773 -10578.826 0 372.23117 -0.00055805402 -0.00058787312 + 143330 -6244.9102 -6253.0767 8.166494 3701.9561 627.24463 -10582.277 0 391.38422 -0.00082347995 -0.00084941231 + 143340 -6244.9054 -6253.0183 8.1128111 3705.1794 625.99411 -10584.192 0 388.81143 -0.0009845593 -0.0010051153 + 143350 -6244.935 -6252.6866 7.751589 3705.5839 625.64821 -10583.919 0 371.49964 -0.0010139216 -0.0010308072 + 143360 -6244.958 -6252.3233 7.3652901 3703.1558 625.94872 -10581.428 0 352.98603 -0.00093015219 -0.00094820811 + 143370 -6244.9577 -6252.1682 7.2105328 3698.68 626.44049 -10577.289 0 345.56919 -0.00078638455 -0.00081083123 + 143380 -6244.9649 -6252.3288 7.3639041 3693.4335 626.69521 -10572.457 0 352.91961 -0.00064764294 -0.00067964736 + 143390 -6245.0417 -6252.7363 7.6946245 3688.7254 626.50596 -10567.968 0 368.76958 -0.00056421919 -0.00059850939 + 143400 -6245.2317 -6253.2167 7.9850545 3685.47 625.96491 -10564.652 0 382.68861 -0.0005513427 -0.00057907429 + 143410 -6245.5174 -6253.6097 8.0922633 3683.9891 625.39057 -10562.989 0 387.82666 -0.00058626733 -0.00060187745 + 143420 -6245.8288 -6253.8361 8.007319 3684.1252 625.14522 -10563.107 0 383.75566 -0.00062711379 -0.00063335588 + 143430 -6246.1009 -6253.88 7.7790832 3685.548 625.43911 -10564.867 0 372.81731 -0.00064321635 -0.00064931233 + 143440 -6246.3253 -6253.7437 7.4184104 3688.004 626.2213 -10567.969 0 355.53185 -0.0006358791 -0.00065011713 + 143450 -6246.5439 -6253.4467 6.902755 3691.3276 627.20999 -10571.984 0 330.81875 -0.00063433739 -0.00065783901 + 143460 -6246.7988 -6253.0572 6.2584128 3695.2485 628.04467 -10576.35 0 299.93826 -0.0006710584 -0.00069789668 + 143470 -6247.0905 -6252.6952 5.6046783 3699.2006 628.4782 -10580.374 0 268.60763 -0.00075535105 -0.00077801242 + 143480 -6247.3795 -6252.4817 5.1021857 3702.3247 628.50393 -10583.31 0 244.52537 -0.00086274676 -0.00087783479 + 143490 -6247.6181 -6252.4704 4.8523461 3703.7113 628.35128 -10584.533 0 232.55165 -0.00094489574 -0.0009548826 + 143500 -6247.7839 -6252.6168 4.832891 3702.7662 628.35676 -10583.74 0 231.61925 -0.00095268221 -0.00096324982 + 143510 -6247.8908 -6252.81 4.9192775 3699.5104 628.77933 -10581.1 0 235.75938 -0.00086021145 -0.00087589437 + 143520 -6247.9744 -6252.9483 4.9739244 3694.6607 629.6494 -10577.258 0 238.37837 -0.00067902112 -0.00070040555 + 143530 -6248.0679 -6253.0046 4.9366995 3689.4528 630.72044 -10573.178 0 236.59434 -0.0004573371 -0.00048124349 + 143540 -6248.1831 -6253.0437 4.8606982 3685.2828 631.54363 -10569.87 0 232.95193 -0.00026527176 -0.00028725505 + 143550 -6248.3058 -6253.1879 4.8821314 3683.2994 631.63347 -10568.121 0 233.97913 -0.00017178067 -0.00018929213 + 143560 -6248.4077 -6253.548 5.1402666 3684.08 630.65909 -10568.287 0 246.35042 -0.0002219031 -0.00023619679 + 143570 -6248.4699 -6254.1486 5.6786774 3687.4756 628.59096 -10570.215 0 272.15408 -0.00042188055 -0.00043720008 + 143580 -6248.5067 -6254.888 6.3813878 3692.6349 625.75175 -10573.275 0 305.83191 -0.00073564043 -0.00075595057 + 143590 -6248.5696 -6255.565 6.9953682 3698.1838 622.75265 -10576.501 0 335.25729 -0.0010921955 -0.0011177859 + 143600 -6248.7232 -6255.966 7.2427969 3702.5356 620.33159 -10578.833 0 347.11547 -0.0014019656 -0.001428706 + 143610 -6249.0021 -6255.967 6.9649141 3704.3019 619.13784 -10579.407 0 333.79776 -0.0015796931 -0.001601891 + 143620 -6249.382 -6255.59 6.2079772 3702.7311 619.52573 -10577.847 0 297.5211 -0.0015702392 -0.0015850834 + 143630 -6249.7897 -6254.9785 5.1887388 3698.0331 621.4268 -10574.438 0 248.67348 -0.0013702205 -0.0013800233 + 143640 -6250.1513 -6254.3147 4.1633505 3691.4218 624.35425 -10570.091 0 199.53112 -0.0010352995 -0.0010453789 + 143650 -6250.4367 -6253.743 3.3063511 3684.7839 627.54753 -10566.074 0 158.4589 -0.00066540358 -0.0006796114 + 143660 -6250.6623 -6253.3485 2.6861561 3680.068 630.20511 -10563.622 0 128.73567 -0.00037098763 -0.00038905331 + 143670 -6250.8601 -6253.1757 2.3155752 3678.6495 631.71923 -10563.544 0 110.97535 -0.00023511333 -0.00025366889 + 143680 -6251.0483 -6253.246 2.197773 3680.9214 631.83598 -10566.003 0 105.32961 -0.00028770354 -0.0003033213 + 143690 -6251.2247 -6253.5526 2.3279013 3686.2247 630.70094 -10570.478 0 111.56609 -0.00050005313 -0.00051159235 + 143700 -6251.3776 -6254.0461 2.6685762 3693.0936 628.78792 -10575.928 0 127.89314 -0.00079821812 -0.00080707936 + 143710 -6251.4992 -6254.6352 3.1360418 3699.705 626.73835 -10581.079 0 150.29672 -0.0010884309 -0.001097067 + 143720 -6251.5927 -6255.2116 3.6188728 3704.3877 625.16002 -10584.759 0 173.43669 -0.0012859123 -0.0012959916 + 143730 -6251.668 -6255.6895 4.0215076 3706.0521 624.44484 -10586.186 0 192.73321 -0.0013389511 -0.0013505078 + 143740 -6251.7321 -6256.0332 4.3010558 3704.4371 624.6624 -10585.133 0 206.13072 -0.0012420948 -0.0012540031 + 143750 -6251.7842 -6256.2534 4.4692116 3700.1267 625.56343 -10581.943 0 214.1897 -0.0010352964 -0.0010463676 + 143760 -6251.8172 -6256.3772 4.5600435 3694.3475 626.68958 -10577.414 0 218.54287 -0.00078966699 -0.00079944377 + 143770 -6251.8235 -6256.4137 4.5902545 3688.6114 627.54699 -10572.572 0 219.99075 -0.00058449383 -0.00059333773 + 143780 -6251.7987 -6256.3391 4.5404037 3684.3046 627.7786 -10568.422 0 217.60162 -0.00048298296 -0.00049163983 + 143790 -6251.7435 -6256.112 4.3685251 3682.3376 627.27314 -10565.723 0 209.36424 -0.00051437756 -0.00052344399 + 143800 -6251.6615 -6255.7078 4.0462788 3682.9445 626.17799 -10564.83 0 193.92039 -0.00066758642 -0.00067721153 + 143810 -6251.5579 -6255.1522 3.5943037 3685.6788 624.8237 -10565.655 0 172.2592 -0.00089731058 -0.00090722965 + 143820 -6251.4374 -6254.5325 3.0951352 3689.5883 623.60127 -10567.722 0 148.33624 -0.001139415 -0.0011492113 + 143830 -6251.3015 -6253.9778 2.6762578 3693.5086 622.84381 -10570.33 0 128.26129 -0.0013296318 -0.0013390404 + 143840 -6251.1455 -6253.6173 2.4717724 3696.3808 622.74954 -10572.748 0 118.4612 -0.0014197321 -0.001428821 + 143850 -6250.9534 -6253.5331 2.5796985 3697.5114 623.35645 -10574.401 0 123.63363 -0.0013876252 -0.0013968085 + 143860 -6250.6986 -6253.7277 3.0291252 3696.7184 624.5565 -10575.003 0 145.17268 -0.0012406356 -0.0012506043 + 143870 -6250.355 -6254.1167 3.7617191 3694.3483 626.13113 -10574.596 0 180.28269 -0.0010127676 -0.0010243716 + 143880 -6249.9186 -6254.5496 4.6310461 3691.1718 627.79753 -10573.519 0 221.94572 -0.00075667656 -0.00077064198 + 143890 -6249.422 -6254.8561 5.434123 3688.1723 629.2639 -10572.292 0 260.43367 -0.00053074265 -0.00054724066 + 143900 -6248.9246 -6254.9074 5.9827495 3686.2648 630.29097 -10571.463 0 286.72693 -0.0003833193 -0.00040171183 + 143910 -6248.482 -6254.6646 6.1826552 3686.0237 630.74631 -10571.435 0 296.30753 -0.00033941039 -0.00035840885 + 143920 -6248.1219 -6254.1905 6.0686476 3687.5185 630.62971 -10572.339 0 290.84364 -0.00039546999 -0.00041356379 + 143930 -6247.8403 -6253.6227 5.7824297 3690.3134 630.05361 -10573.99 0 277.12647 -0.00052388631 -0.00053997448 + 143940 -6247.6095 -6253.1279 5.5183961 3693.6177 629.18605 -10575.932 0 264.4725 -0.0006841901 -0.00069850537 + 143950 -6247.392 -6252.8445 5.4524899 3696.5308 628.18733 -10577.563 0 261.31391 -0.00083655087 -0.00085124463 + 143960 -6247.1618 -6252.824 5.6622269 3698.2975 627.1751 -10578.297 0 271.36568 -0.00095305895 -0.00097121575 + 143970 -6246.9213 -6253.0019 6.0806277 3698.4851 626.22873 -10577.716 0 291.4178 -0.001022398 -0.0010455686 + 143980 -6246.6978 -6253.2353 6.5374385 3697.0259 625.4152 -10575.676 0 313.31073 -0.0010460576 -0.0010725596 + 143990 -6246.5168 -6253.3903 6.8735294 3694.1512 624.80818 -10572.35 0 329.4181 -0.0010297789 -0.0010558594 + 144000 -6246.3775 -6253.4139 7.0364013 3690.3064 624.48279 -10568.203 0 337.22383 -0.0009778307 -0.0010008397 + 144010 -6246.2578 -6253.3368 7.0789729 3686.1046 624.48698 -10563.928 0 339.2641 -0.00089504441 -0.00091542767 + 144020 -6246.141 -6253.2224 7.0813961 3682.2917 624.80458 -10560.319 0 339.38023 -0.00079383283 -0.00081394898 + 144030 -6246.0333 -6253.1179 7.0846544 3679.65 625.33231 -10558.1 0 339.53639 -0.0006980213 -0.00071923475 + 144040 -6245.9537 -6253.0451 7.0914541 3678.816 625.89251 -10557.754 0 339.86227 -0.00063771092 -0.00065901452 + 144050 -6245.9089 -6253.0106 7.1016354 3680.0774 626.29091 -10559.379 0 340.35021 -0.0006373501 -0.00065691536 + 144060 -6245.8847 -6252.9985 7.1137999 3683.254 626.40242 -10562.655 0 340.9332 -0.00070485683 -0.00072251825 + 144070 -6245.8629 -6252.9476 7.0846889 3687.7165 626.24242 -10566.907 0 339.53805 -0.00082770661 -0.00084538574 + 144080 -6245.8424 -6252.7563 6.91396 3692.522 625.97867 -10571.257 0 331.35576 -0.00097570543 -0.00099526064 + 144090 -6245.8389 -6252.3488 6.5098924 3696.6091 625.86828 -10574.826 0 311.99057 -0.0011072278 -0.001128149 + 144100 -6245.8635 -6251.7633 5.8998164 3699.019 626.14667 -10576.929 0 282.75231 -0.0011777302 -0.0011972257 + 144110 -6245.9035 -6251.1887 5.2852268 3699.1196 626.92285 -10577.231 0 253.29772 -0.0011511362 -0.0011666458 + 144120 -6245.9272 -6250.9014 4.9742304 3696.7978 628.12956 -10575.829 0 238.39303 -0.0010126695 -0.0010243829 + 144130 -6245.905 -6251.1236 5.218643 3692.5616 629.54388 -10573.229 0 250.10666 -0.00077840448 -0.00078926933 + 144140 -6245.8316 -6251.8907 6.0591092 3687.4866 630.85643 -10570.234 0 290.38651 -0.0004962534 -0.00050936593 + 144150 -6245.7327 -6253.0149 7.2822761 3682.9723 631.75016 -10567.737 0 349.00753 -0.00023608715 -0.00025208437 + 144160 -6245.6522 -6254.1693 8.5170283 3680.3533 631.96166 -10566.484 0 408.18378 -7.1333893e-05 -8.8542629e-05 + 144170 -6245.6318 -6255.0306 9.3988128 3680.4918 631.32397 -10566.846 0 450.44384 -5.8170831e-05 -7.5263114e-05 + 144180 -6245.6978 -6255.3928 9.695 3683.4988 629.80637 -10568.698 0 464.6388 -0.00021900272 -0.00023691805 + 144190 -6245.863 -6255.2057 9.342625 3688.6671 627.55642 -10571.429 0 447.75101 -0.00053398616 -0.00055465308 + 144200 -6246.1278 -6254.5615 8.4337688 3694.6154 624.92234 -10574.099 0 404.19352 -0.00094125299 -0.0009646235 + 144210 -6246.4702 -6253.6636 7.1934625 3699.6087 622.41772 -10575.69 0 344.75109 -0.0013467614 -0.001369989 + 144220 -6246.8409 -6252.7761 5.9352239 3702.0109 620.6087 -10575.396 0 284.44923 -0.0016459472 -0.0016660408 + 144230 -6247.183 -6252.1417 4.9587592 3700.7887 619.94886 -10572.879 0 237.65156 -0.0017552934 -0.001772268 + 144240 -6247.4657 -6251.8878 4.4220654 3695.9055 620.62438 -10568.418 0 211.93019 -0.0016429775 -0.0016598733 + 144250 -6247.7004 -6251.9837 4.283309 3688.4278 622.47247 -10562.884 0 205.2802 -0.0013433309 -0.0013631859 + 144260 -6247.9229 -6252.289 4.3660902 3680.2603 625.00761 -10557.557 0 209.24754 -0.00094660885 -0.00096976816 + 144270 -6248.1611 -6252.6543 4.4932488 3673.5933 627.55314 -10553.801 0 215.3417 -0.00056865802 -0.0005929453 + 144280 -6248.4174 -6252.9992 4.5818289 3670.2646 629.44029 -10552.704 0 219.58695 -0.00031415419 -0.00033709222 + 144290 -6248.677 -6253.3222 4.6451948 3671.2461 630.21001 -10554.778 0 222.6238 -0.00024697251 -0.00026751118 + 144300 -6248.9262 -6253.6628 4.7366697 3676.3924 629.74814 -10559.803 0 227.00779 -0.00037501576 -0.00039351695 + 144310 -6249.162 -6254.0609 4.8988754 3684.4923 628.30867 -10566.862 0 234.7816 -0.00065088032 -0.00066822016 + 144320 -6249.3883 -6254.5316 5.1432844 3693.5965 626.42143 -10574.55 0 246.49505 -0.00098692408 -0.0010039951 + 144330 -6249.6106 -6255.0514 5.440846 3701.5351 624.72041 -10581.307 0 260.75587 -0.0012814144 -0.001299082 + 144340 -6249.8364 -6255.5472 5.7108102 3706.4862 623.75066 -10585.784 0 273.69407 -0.001449032 -0.0014677684 + 144350 -6250.076 -6255.9062 5.830119 3707.4334 623.81132 -10587.151 0 279.41201 -0.001445846 -0.0014650103 + 144360 -6250.3334 -6256.0197 5.6862945 3704.384 624.87594 -10585.28 0 272.51914 -0.0012800702 -0.0012978637 + 144370 -6250.5945 -6255.8436 5.2490681 3698.3069 626.6079 -10580.758 0 251.5648 -0.0010061441 -0.0010208337 + 144380 -6250.8288 -6255.4309 4.6021462 3690.8351 628.46297 -10574.729 0 220.56067 -0.00070653122 -0.00071798479 + 144390 -6251.0071 -6254.9128 3.9057194 3683.8312 629.84789 -10568.592 0 187.18399 -0.0004684283 -0.00047839135 + 144400 -6251.1219 -6254.4417 3.3198827 3678.9234 630.28984 -10563.655 0 159.1074 -0.0003613335 -0.00037201714 + 144410 -6251.1902 -6254.1356 2.9454041 3677.1176 629.57067 -10560.824 0 141.16029 -0.00041942165 -0.00043162811 + 144420 -6251.2371 -6254.0508 2.8137025 3678.5699 627.79059 -10560.411 0 134.84841 -0.00063204512 -0.00064458953 + 144430 -6251.2729 -6254.1852 2.9122493 3682.5797 625.34395 -10562.109 0 139.57133 -0.00094555148 -0.00095662055 + 144440 -6251.2841 -6254.4889 3.2048112 3687.8183 622.81367 -10565.121 0 153.59253 -0.0012778052 -0.0012870039 + 144450 -6251.2453 -6254.8682 3.6229164 3692.7354 620.81376 -10568.417 0 173.63048 -0.0015423829 -0.0015513358 + 144460 -6251.1412 -6255.1941 4.05284 3696.011 619.82349 -10571.029 0 194.23483 -0.0016742937 -0.0016849895 + 144470 -6250.9763 -6255.3422 4.3659404 3696.8935 620.05861 -10572.294 0 209.24036 -0.0016472495 -0.0016597916 + 144480 -6250.7604 -6255.2579 4.4974698 3695.3252 621.41872 -10572.002 0 215.54399 -0.0014764803 -0.0014887747 + 144490 -6250.4874 -6254.9976 4.5101954 3691.8662 623.53136 -10570.395 0 216.15387 -0.0012086183 -0.0012185431 + 144500 -6250.1273 -6254.6995 4.5722302 3687.5003 625.88146 -10568.081 0 219.12692 -0.00090558014 -0.00091348466 + 144510 -6249.6417 -6254.4923 4.8505129 3683.4023 627.97871 -10565.873 0 232.4638 -0.00062913941 -0.00063813264 + 144520 -6249.0138 -6254.4067 5.3928577 3680.6965 629.49867 -10564.602 0 258.456 -0.00042900506 -0.00044263009 + 144530 -6248.2753 -6254.3549 6.0795773 3680.206 630.3465 -10564.907 0 291.36745 -0.0003342469 -0.00035353097 + 144540 -6247.509 -6254.1933 6.6843114 3682.2181 630.62474 -10567.036 0 320.34971 -0.00034820035 -0.0003706907 + 144550 -6246.8087 -6253.8219 7.0132144 3686.3561 630.52755 -10570.706 0 336.11258 -0.00044924097 -0.00047091905 + 144560 -6246.228 -6253.2493 7.0213054 3691.6518 630.22231 -10575.123 0 336.50035 -0.00059956883 -0.00061780075 + 144570 -6245.7659 -6252.5884 6.8224649 3696.8211 629.78695 -10579.196 0 326.9708 -0.00075869654 -0.00077365488 + 144580 -6245.3903 -6252.0002 6.6099122 3700.6221 629.22768 -10581.85 0 316.78408 -0.00089402496 -0.00090800767 + 144590 -6245.0679 -6251.6245 6.5566779 3702.1587 628.54426 -10582.328 0 314.2328 -0.00098447772 -0.0010002892 + 144600 -6244.7803 -6251.5247 6.7443223 3701.055 627.78647 -10580.366 0 323.22577 -0.0010195372 -0.0010390436 + 144610 -6244.5267 -6251.6673 7.1406197 3697.4913 627.06488 -10576.223 0 342.21856 -0.00099756307 -0.0010209505 + 144620 -6244.3171 -6251.9447 7.6275953 3692.1319 626.5152 -10570.592 0 365.55717 -0.00092499276 -0.00095092894 + 144630 -6244.1635 -6252.2234 8.0598731 3685.9841 626.24044 -10564.448 0 386.27434 -0.0008162663 -0.00084282316 + 144640 -6244.0716 -6252.3925 8.3208847 3680.2149 626.26009 -10558.867 0 398.78348 -0.00069387138 -0.00071963587 + 144650 -6244.0392 -6252.3898 8.3506582 3675.945 626.48886 -10554.824 0 400.2104 -0.0005873525 -0.00061190929 + 144660 -6244.061 -6252.2054 8.1443766 3674.035 626.75592 -10552.996 0 390.32422 -0.00052926822 -0.00055263966 + 144670 -6244.1311 -6251.8795 7.7484775 3674.8888 626.86073 -10553.629 0 371.35052 -0.00054662125 -0.00056838658 + 144680 -6244.2379 -6251.5082 7.2702271 3678.3235 626.64673 -10556.478 0 348.43008 -0.00064960068 -0.00066899928 + 144690 -6244.3609 -6251.2332 6.8722271 3683.5669 626.0692 -10560.869 0 329.35568 -0.00082325989 -0.00084039074 + 144700 -6244.4782 -6251.1965 6.7183435 3689.4188 625.23656 -10565.852 0 321.98072 -0.0010274648 -0.0010441389 + 144710 -6244.5821 -6251.4732 6.8910815 3694.5409 624.40949 -10570.424 0 330.25929 -0.0012059154 -0.0012249962 + 144720 -6244.6893 -6252.0257 7.3363809 3697.7909 623.94826 -10573.765 0 351.60054 -0.0013010674 -0.0013246921 + 144730 -6244.8373 -6252.7082 7.8709163 3698.5103 624.20947 -10575.428 0 377.21847 -0.001270861 -0.0012987752 + 144740 -6245.069 -6253.322 8.2530537 3696.6951 625.40995 -10575.427 0 395.53264 -0.0011031695 -0.0011322413 + 144750 -6245.4075 -6253.7032 8.2956901 3693.0023 627.49965 -10574.205 0 397.57602 -0.00082348627 -0.00084901274 + 144760 -6245.835 -6253.8016 7.9665634 3688.5809 630.10432 -10572.487 0 381.80242 -0.00049234628 -0.00051078917 + 144770 -6246.2973 -6253.7006 7.4033168 3684.7751 632.58998 -10571.066 0 354.80848 -0.00019209516 -0.00020346251 + 144780 -6246.7363 -6253.5578 6.821421 3682.7724 634.25048 -10570.581 0 326.92077 -5.8443083e-06 -1.3714737e-05 + 144790 -6247.1248 -6253.5057 6.3809814 3683.278 634.55276 -10571.336 0 305.81243 6.5153372e-06 -2.4814174e-06 + 144800 -6247.4732 -6253.5824 6.1092349 3686.286 633.33685 -10573.205 0 292.78881 -0.00017120747 -0.00018390237 + 144810 -6247.8081 -6253.7313 5.9231629 3691.023 630.88368 -10575.638 0 283.8712 -0.00050200483 -0.00051768807 + 144820 -6248.1426 -6253.8588 5.7162395 3696.1152 627.8225 -10577.797 0 273.95427 -0.00090308243 -0.00091917187 + 144830 -6248.4642 -6253.8963 5.4321687 3699.973 624.91914 -10578.788 0 260.34001 -0.0012703113 -0.0012848457 + 144840 -6248.7479 -6253.8267 5.0787766 3701.2823 622.83235 -10577.941 0 243.40347 -0.0015115108 -0.0015244149 + 144850 -6248.9771 -6253.6778 4.7006453 3699.4278 621.92714 -10575.033 0 225.2813 -0.0015751282 -0.0015874983 + 144860 -6249.1527 -6253.5072 4.3545441 3694.6903 622.19999 -10570.398 0 208.69418 -0.0014633398 -0.0014759791 + 144870 -6249.2865 -6253.3877 4.1012333 3688.1636 623.32416 -10564.875 0 196.55411 -0.0012267864 -0.0012394809 + 144880 -6249.3904 -6253.3886 3.9982182 3681.4386 624.78413 -10559.611 0 191.61705 -0.00094563393 -0.00095751862 + 144890 -6249.4686 -6253.5533 4.0846835 3676.1674 626.04738 -10555.768 0 195.76095 -0.00070461088 -0.00071507338 + 144900 -6249.5166 -6253.8825 4.3658444 3673.6318 626.72135 -10554.236 0 209.23576 -0.00056923114 -0.00057870279 + 144910 -6249.526 -6254.3308 4.8048269 3674.4295 626.65704 -10555.417 0 230.27426 -0.000568933 -0.0005791275 + 144920 -6249.4926 -6254.8165 5.3239182 3678.3507 625.9784 -10559.146 0 255.15203 -0.00069104089 -0.00070442633 + 144930 -6249.425 -6255.239 5.8140474 3684.4602 625.03353 -10564.733 0 278.64177 -0.00088688337 -0.00090544603 + 144940 -6249.3465 -6255.4993 6.1527828 3691.3502 624.28125 -10571.131 0 294.87588 -0.0010879795 -0.0011117002 + 144950 -6249.2885 -6255.5255 6.2370074 3697.4904 624.14352 -10577.159 0 298.91239 -0.0012268192 -0.0012527887 + 144960 -6249.2706 -6255.3042 6.0336147 3701.5829 624.86554 -10581.753 0 289.16467 -0.0012554508 -0.0012788119 + 144970 -6249.2824 -6254.9054 5.6229966 3702.8504 626.42703 -10584.183 0 269.48555 -0.0011572595 -0.0011741862 + 144980 -6249.2822 -6254.4663 5.1841109 3701.2073 628.53553 -10584.209 0 248.45168 -0.00095097985 -0.00096180686 + 144990 -6249.2224 -6254.1242 4.9017902 3697.2847 630.70595 -10582.115 0 234.92129 -0.00068735309 -0.00069697226 + 145000 -6249.0823 -6253.9356 4.8533133 3692.2765 632.40071 -10578.613 0 232.59801 -0.00043773551 -0.0004522834 + 145010 -6248.8797 -6253.8469 4.9671375 3687.6061 633.18466 -10574.638 0 238.0531 -0.00027443805 -0.00029667202 + 145020 -6248.6493 -6253.7433 5.0939844 3684.4896 632.84574 -10571.079 0 244.13232 -0.0002470968 -0.0002743495 + 145030 -6248.4042 -6253.538 5.1337811 3683.5552 631.44433 -10568.538 0 246.0396 -0.00036474503 -0.00039124049 + 145040 -6248.1144 -6253.2265 5.1121855 3684.6855 629.27904 -10567.191 0 245.00461 -0.00059327573 -0.00061466518 + 145050 -6247.7197 -6252.87 5.1502514 3687.1467 626.78634 -10566.803 0 246.82895 -0.00087018267 -0.0008862423 + 145060 -6247.1659 -6252.5391 5.373174 3689.9074 624.41274 -10566.859 0 257.51265 -0.0011282241 -0.0011417344 + 145070 -6246.4346 -6252.2839 5.8493752 3691.9751 622.50206 -10566.761 0 280.33488 -0.0013157048 -0.0013293245 + 145080 -6245.5532 -6252.1495 6.5962561 3692.6293 621.23036 -10566.009 0 316.1296 -0.0014060166 -0.0014205351 + 145090 -6244.5858 -6252.1914 7.6055315 3691.5495 620.60884 -10564.35 0 364.49975 -0.001396859 -0.0014122825 + 145100 -6243.6161 -6252.4332 8.81715 3688.8749 620.55991 -10561.868 0 422.5673 -0.0013035909 -0.001321045 + 145110 -6242.7417 -6252.7864 10.044649 3685.1842 621.0325 -10559.003 0 481.39593 -0.0011506882 -0.0011719043 + 145120 -6242.0662 -6253.0348 10.968654 3681.3507 622.072 -10556.457 0 525.67946 -0.00096324122 -0.00098783636 + 145130 -6241.66 -6252.9501 11.290105 3678.3022 623.7728 -10555.025 0 541.08519 -0.00076055555 -0.00078509632 + 145140 -6241.5149 -6252.459 10.944047 3676.7921 626.13554 -10555.387 0 524.50016 -0.00055583821 -0.00057679301 + 145150 -6241.5471 -6251.7142 10.16704 3677.2763 628.93912 -10557.93 0 487.2616 -0.00036349324 -0.00038095187 + 145160 -6241.659 -6251.0043 9.3453773 3679.893 631.73504 -10562.632 0 447.88292 -0.00020740631 -0.0002251761 + 145170 -6241.8017 -6250.5829 8.7811961 3684.4617 633.98476 -10569.029 0 420.84419 -0.00011958296 -0.00014146452 + 145180 -6241.986 -6250.5418 8.5558393 3690.4485 635.26589 -10576.256 0 410.04383 -0.00012622113 -0.00015230437 + 145190 -6242.244 -6250.7967 8.5526464 3696.9349 635.43259 -10583.164 0 409.8908 -0.00023028002 -0.00025679257 + 145200 -6242.5847 -6251.1678 8.5830618 3702.6916 634.64662 -10588.506 0 411.34848 -0.00040357628 -0.00042642432 + 145210 -6242.9777 -6251.4877 8.5099571 3706.4272 633.27427 -10591.189 0 407.84489 -0.0005951175 -0.00061387302 + 145220 -6243.3774 -6251.6669 8.2894974 3707.1719 631.71856 -10590.557 0 397.27923 -0.00075158468 -0.00077002655 + 145230 -6243.7595 -6251.7029 7.9433703 3704.6232 630.27677 -10586.603 0 380.69088 -0.00083792821 -0.00086051453 + 145240 -6244.1331 -6251.6638 7.5306475 3699.2651 629.07775 -10580.007 0 360.91088 -0.000847021 -0.00087483691 + 145250 -6244.5202 -6251.6635 7.1432553 3692.2058 628.09951 -10571.969 0 342.34488 -0.00079649631 -0.00082645678 + 145260 -6244.9308 -6251.8184 6.8876174 3684.8495 627.23283 -10563.901 0 330.09327 -0.00071905496 -0.00074650054 + 145270 -6245.3558 -6252.1923 6.8364573 3678.5607 626.35048 -10557.103 0 327.64139 -0.00065252558 -0.00067455623 + 145280 -6245.7752 -6252.7612 6.9860039 3674.4093 625.35885 -10552.529 0 334.80851 -0.00063130347 -0.00064857611 + 145290 -6246.1717 -6253.4214 7.2497603 3673.0088 624.23005 -10550.66 0 347.44919 -0.00067849651 -0.00069479101 + 145300 -6246.5423 -6254.0275 7.4851948 3674.4371 623.02231 -10551.487 0 358.73254 -0.00079916693 -0.00081907064 + 145310 -6246.9016 -6254.4414 7.5397326 3678.2324 621.89003 -10554.564 0 361.34629 -0.00097637262 -0.0010022452 + 145320 -6247.2706 -6254.5802 7.3095516 3683.4741 621.07257 -10559.127 0 350.31473 -0.0011718169 -0.0012019146 + 145330 -6247.6563 -6254.4533 6.7970302 3688.9577 620.84835 -10564.259 0 325.75182 -0.0013323967 -0.0013617441 + 145340 -6248.038 -6254.1707 6.1327242 3693.4611 621.45407 -10569.086 0 293.91455 -0.0014030659 -0.0014268458 + 145350 -6248.3756 -6253.9038 5.5282138 3696.0621 622.98977 -10572.956 0 264.94302 -0.0013444506 -0.0013614817 + 145360 -6248.6351 -6253.803 5.1679347 3696.419 625.34534 -10575.567 0 247.67643 -0.0011502497 -0.0011636781 + 145370 -6248.8129 -6253.9179 5.1049349 3694.8952 628.18234 -10576.995 0 244.65712 -0.00085643879 -0.0008710017 + 145380 -6248.9381 -6254.176 5.2378599 3692.4388 630.98883 -10577.604 0 251.02764 -0.00053517503 -0.0005534679 + 145390 -6249.0489 -6254.4353 5.3863261 3690.2326 633.20154 -10577.869 0 258.14297 -0.00027286596 -0.00029385827 + 145400 -6249.1658 -6254.5665 5.4007181 3689.2524 634.36261 -10578.181 0 258.83271 -0.0001408532 -0.00016153327 + 145410 -6249.2818 -6254.507 5.2252411 3689.92 634.25602 -10578.683 0 250.42287 -0.00017171901 -0.00018980608 + 145420 -6249.3765 -6254.2694 4.8928975 3691.9801 632.96745 -10579.217 0 234.4951 -0.0003507154 -0.00036594877 + 145430 -6249.4347 -6253.9261 4.4913657 3694.6214 630.8416 -10579.389 0 215.25145 -0.000623698 -0.0006372191 + 145440 -6249.4534 -6253.5906 4.1371884 3696.7725 628.35875 -10578.722 0 198.27728 -0.00091633597 -0.00092948116 + 145450 -6249.436 -6253.3927 3.9566107 3697.4621 625.98835 -10576.843 0 189.62298 -0.0011568535 -0.0011706064 + 145460 -6249.3839 -6253.4368 4.0528809 3696.1297 624.07798 -10573.644 0 194.23679 -0.0012951843 -0.00131033 + 145470 -6249.2949 -6253.7514 4.4564914 3692.8026 622.80709 -10569.361 0 213.58008 -0.0013138772 -0.0013310541 + 145480 -6249.1704 -6254.2541 5.0837671 3688.1007 622.19766 -10564.552 0 243.64265 -0.0012292179 -0.0012482865 + 145490 -6249.0226 -6254.7687 5.7461203 3683.0744 622.15262 -10559.996 0 275.38632 -0.0010834288 -0.0011026596 + 145500 -6248.8692 -6255.1023 6.2331399 3678.9212 622.49643 -10556.52 0 298.72704 -0.0009303627 -0.00094676073 + 145510 -6248.7158 -6255.1476 6.4318424 3676.6589 623.01379 -10554.82 0 308.24998 -0.00081881263 -0.00083015741 + 145520 -6248.5459 -6254.9389 6.3930481 3676.8638 623.49916 -10555.302 0 306.39073 -0.00077884791 -0.00078602763 + 145530 -6248.3334 -6254.6169 6.2834622 3679.5483 623.82353 -10557.989 0 301.13877 -0.00081527969 -0.00082248638 + 145540 -6248.0692 -6254.3277 6.258535 3684.1874 623.9987 -10562.514 0 299.94412 -0.0009085411 -0.00092047267 + 145550 -6247.773 -6254.1336 6.3605494 3689.846 624.19855 -10568.178 0 304.83322 -0.0010204028 -0.0010385332 + 145560 -6247.4771 -6253.9952 6.518075 3695.3592 624.70611 -10574.06 0 312.38273 -0.0011026096 -0.001123871 + 145570 -6247.1946 -6253.8235 6.628935 3699.5577 625.79314 -10579.174 0 317.69576 -0.0011087228 -0.0011280481 + 145580 -6246.9025 -6253.5451 6.6425715 3701.538 627.58113 -10582.664 0 318.3493 -0.0010089985 -0.001023706 + 145590 -6246.5556 -6253.1325 6.5769214 3700.9286 629.94869 -10584.01 0 315.20297 -0.00080422725 -0.00081650404 + 145600 -6246.1201 -6252.5977 6.4775355 3698.0441 632.52844 -10583.17 0 310.43985 -0.00053135682 -0.00054669179 + 145610 -6245.6 -6251.9772 6.3772075 3693.8242 634.7947 -10580.596 0 305.63157 -0.00025561986 -0.00027839631 + 145620 -6245.0319 -6251.3362 6.3042579 3689.5351 636.20767 -10577.079 0 302.13541 -5.0188296e-05 -7.9949746e-05 + 145630 -6244.4524 -6250.7848 6.3323587 3686.339 636.36565 -10573.489 0 303.48216 2.8978266e-05 -2.4211802e-06 + 145640 -6243.86 -6250.4749 6.6149382 3684.9152 635.12092 -10570.511 0 317.02496 -3.7519248e-05 -6.4164687e-05 + 145650 -6243.2025 -6250.5514 7.3489409 3685.2917 632.62766 -10568.471 0 352.20248 -0.00022705703 -0.00024671632 + 145660 -6242.4128 -6251.0687 8.6558957 3686.9379 629.30897 -10567.316 0 414.83909 -0.00048554104 -0.00050309574 + 145670 -6241.4886 -6251.9105 10.42185 3689.0508 625.75199 -10566.713 0 499.47353 -0.00074974559 -0.00077487144 + 145680 -6240.5641 -6252.7729 12.208761 3690.8798 622.56216 -10566.215 0 585.11235 -0.00097100911 -0.0010104934 + 145690 -6239.8796 -6253.2702 13.390606 3691.9149 620.21983 -10565.405 0 641.75296 -0.0011266194 -0.0011768231 + 145700 -6239.6252 -6253.1511 13.525951 3691.872 618.982 -10564.005 0 648.23947 -0.0012126602 -0.0012603982 + 145710 -6239.7898 -6252.4797 12.689852 3690.6066 618.85883 -10561.945 0 608.1689 -0.0012286735 -0.0012618359 + 145720 -6240.1789 -6251.6095 11.430596 3688.1437 619.66923 -10559.422 0 547.81829 -0.0011717071 -0.0011899497 + 145730 -6240.5805 -6250.9498 10.36927 3684.8354 621.14522 -10556.93 0 496.95359 -0.0010444537 -0.0010594297 + 145740 -6240.9098 -6250.7135 9.8037205 3681.4516 623.03255 -10555.198 0 469.84929 -0.00086553327 -0.00089080937 + 145750 -6241.2183 -6250.8348 9.6164703 3679.0284 625.14559 -10555.009 0 460.87521 -0.00066877062 -0.00070891473 + 145760 -6241.5995 -6251.0821 9.482598 3678.4993 627.36594 -10556.947 0 454.4593 -0.00049011426 -0.00053797432 + 145770 -6242.0861 -6251.2478 9.1617167 3680.3177 629.60233 -10561.168 0 439.08087 -0.00035228959 -0.00039580868 + 145780 -6242.6183 -6251.2657 8.6473636 3684.294 631.74249 -10567.302 0 414.43018 -0.00025951912 -0.00029158151 + 145790 -6243.0976 -6251.1957 8.0980298 3689.7215 633.6245 -10574.542 0 388.10302 -0.00020593592 -0.00022883362 + 145800 -6243.4671 -6251.1317 7.6645806 3695.666 635.03946 -10581.837 0 367.32971 -0.00018892563 -0.00021043361 + 145810 -6243.7476 -6251.1391 7.3914794 3701.2141 635.76509 -10588.118 0 354.24117 -0.00021443656 -0.0002400005 + 145820 -6244.0054 -6251.2657 7.2602953 3705.5637 635.6274 -10592.457 0 347.95409 -0.00028906991 -0.00031745269 + 145830 -6244.2896 -6251.5789 7.2893779 3708.012 634.581 -10594.172 0 349.34789 -0.00040595126 -0.00043184667 + 145840 -6244.5984 -6252.1474 7.5490709 3707.9926 632.77796 -10592.918 0 361.79384 -0.00053771814 -0.0005580527 + 145850 -6244.9042 -6252.9514 8.0472276 3705.2486 630.57546 -10588.775 0 385.6683 -0.00064509782 -0.00066228647 + 145860 -6245.2056 -6253.8084 8.6028262 3700.0559 628.44301 -10582.307 0 412.2957 -0.00069690953 -0.00071578516 + 145870 -6245.5419 -6254.4243 8.8823502 3693.3029 626.78398 -10574.511 0 425.69206 -0.00068762767 -0.00070977948 + 145880 -6245.9473 -6254.5721 8.6248769 3686.317 625.75544 -10566.645 0 413.35249 -0.00064076592 -0.00066286302 + 145890 -6246.3968 -6254.2574 7.8606206 3680.51 625.20027 -10559.968 0 376.72505 -0.00059794015 -0.00061581282 + 145900 -6246.8164 -6253.7201 6.903687 3677.0184 624.74989 -10555.488 0 330.86342 -0.00060238643 -0.00061593332 + 145910 -6247.1463 -6253.2722 6.1259409 3676.4591 624.04708 -10553.778 0 293.58946 -0.00068408831 -0.00069752358 + 145920 -6247.3881 -6253.1103 5.7222586 3678.8114 622.9637 -10554.885 0 274.24274 -0.00084779705 -0.00086524545 + 145930 -6247.5934 -6253.2408 5.6474606 3683.4041 621.69932 -10558.344 0 270.658 -0.0010648545 -0.0010860928 + 145940 -6247.8116 -6253.5431 5.7314618 3689.0277 620.71762 -10563.288 0 274.68381 -0.0012740686 -0.0012948373 + 145950 -6248.0471 -6253.8851 5.8379682 3694.2225 620.55785 -10568.665 0 279.78819 -0.0013977516 -0.0014143847 + 145960 -6248.2633 -6254.184 5.9206783 3697.7206 621.61074 -10573.515 0 283.75212 -0.0013714873 -0.001385023 + 145970 -6248.4268 -6254.3846 5.9577692 3698.8891 623.95069 -10577.224 0 285.52973 -0.0011745579 -0.0011898772 + 145980 -6248.5435 -6254.4284 5.8848907 3697.9469 627.27719 -10579.652 0 282.03698 -0.0008434944 -0.00086445913 + 145990 -6248.6489 -6254.2783 5.6293643 3695.8261 630.97653 -10581.081 0 269.79072 -0.00046045247 -0.00048626632 + 146000 -6248.7698 -6253.971 5.2012074 3693.7573 634.28345 -10582.012 0 249.27104 -0.00012379062 -0.00014994133 + 146010 -6248.9008 -6253.6256 4.7247808 3692.7934 636.49399 -10582.913 0 226.43801 8.3517001e-05 6.1388945e-05 + 146020 -6249.0138 -6253.3892 4.3753647 3693.4639 637.15927 -10584.012 0 209.69203 0.00011586025 9.8937357e-05 + 146030 -6249.0805 -6253.3641 4.2836135 3695.6441 636.19817 -10585.206 0 205.29479 -2.606242e-05 -4.0044396e-05 + 146040 -6249.0882 -6253.5664 4.4781803 3698.6324 633.90168 -10586.101 0 214.61953 -0.0002980822 -0.00031301193 + 146050 -6249.0429 -6253.93 4.8870737 3701.3831 630.83955 -10586.153 0 234.21599 -0.00062528584 -0.00064441014 + 146060 -6248.9644 -6254.3421 5.3776534 3702.8235 627.70202 -10584.868 0 257.72732 -0.00092243057 -0.00094680218 + 146070 -6248.8795 -6254.6858 5.8063092 3702.1764 625.11863 -10581.981 0 278.27092 -0.0011178195 -0.0011457483 + 146080 -6248.8123 -6254.8786 6.066331 3699.206 623.49733 -10577.582 0 290.73262 -0.0011736683 -0.0012012321 + 146090 -6248.7708 -6254.9054 6.1346534 3694.3188 622.9266 -10572.151 0 294.00701 -0.0010956621 -0.001118559 + 146100 -6248.7353 -6254.8319 6.0965605 3688.4863 623.17529 -10566.493 0 292.18139 -0.0009284669 -0.00094486236 + 146110 -6248.6655 -6254.7718 6.1063258 3683.0178 623.80109 -10561.591 0 292.64939 -0.00073997209 -0.00075243639 + 146120 -6248.5286 -6254.8068 6.2781813 3679.2423 624.33719 -10558.386 0 300.88568 -0.00060022731 -0.00061448304 + 146130 -6248.3306 -6254.9082 6.5776148 3678.1652 624.48865 -10557.562 0 315.23621 -0.00056018751 -0.00058067773 + 146140 -6248.118 -6254.9321 6.8141135 3680.1632 624.25848 -10559.354 0 326.57055 -0.00063404484 -0.00065969832 + 146150 -6247.9401 -6254.7095 6.7693271 3684.81 623.94705 -10563.466 0 324.42414 -0.00079035377 -0.00081480907 + 146160 -6247.8006 -6254.1688 6.3681882 3690.9458 624.0204 -10569.135 0 305.19931 -0.00095906103 -0.00097603556 + 146170 -6247.6473 -6253.3867 5.7394204 3697.0395 624.90206 -10575.328 0 275.06523 -0.0010574497 -0.001066592 + 146180 -6247.4174 -6252.5304 5.1129623 3701.7252 626.77686 -10581.032 0 245.04184 -0.0010260932 -0.0010335311 + 146190 -6247.0911 -6251.7643 4.6732016 3704.2529 629.48473 -10585.502 0 223.96604 -0.00085568089 -0.00086872178 + 146200 -6246.696 -6251.212 4.5160027 3704.6257 632.54243 -10588.38 0 216.43219 -0.00058909759 -0.00061037123 + 146210 -6246.2648 -6250.9763 4.7114718 3703.4034 635.28666 -10589.666 0 225.80017 -0.00029918928 -0.00032534722 + 146220 -6245.7897 -6251.1413 5.3516381 3701.3426 637.09185 -10589.576 0 256.48053 -5.7057315e-05 -8.2128091e-05 + 146230 -6245.2222 -6251.7205 6.4982892 3699.084 637.58378 -10588.388 0 311.43448 9.2214435e-05 7.2464208e-05 + 146240 -6244.5239 -6252.5941 8.0701957 3697.0043 636.76039 -10586.359 0 386.76906 0.00013774838 0.00012366888 + 146250 -6243.7249 -6253.5178 9.7928941 3695.2413 634.9587 -10583.718 0 469.33043 9.6267582e-05 8.4854939e-05 + 146260 -6242.9297 -6254.2268 11.297113 3693.8214 632.67699 -10580.725 0 541.42103 -2.6246667e-06 -1.6146924e-05 + 146270 -6242.2652 -6254.5592 12.294003 3692.7941 630.35195 -10577.705 0 589.19759 -0.00013250917 -0.00015308666 + 146280 -6241.8329 -6254.4902 12.657274 3692.286 628.22469 -10575.001 0 606.60759 -0.00028155474 -0.00031177031 + 146290 -6241.6947 -6254.0733 12.378608 3692.4243 626.35755 -10572.855 0 593.25236 -0.00045235397 -0.00048922425 + 146300 -6241.8561 -6253.3916 11.535483 3693.1547 624.74799 -10571.294 0 552.84507 -0.00064750422 -0.00068248174 + 146310 -6242.2409 -6252.5707 10.329822 3694.0959 623.43769 -10570.104 0 495.06305 -0.00085104873 -0.000875844 + 146320 -6242.7056 -6251.7817 9.0761406 3694.6068 622.55253 -10568.941 0 434.97959 -0.0010234277 -0.0010373445 + 146330 -6243.1147 -6251.1712 8.0565785 3694.0892 622.27011 -10567.531 0 386.11645 -0.0011169121 -0.0011281294 + 146340 -6243.418 -6250.7715 7.3534962 3692.3407 622.74724 -10565.859 0 352.4208 -0.0010998395 -0.0011185808 + 146350 -6243.6604 -6250.4965 6.8360731 3689.7089 624.04199 -10564.247 0 327.62298 -0.00097136801 -0.0010010521 + 146360 -6243.9171 -6250.2526 6.3355068 3686.9555 626.05619 -10563.264 0 303.63304 -0.00075866523 -0.00079325722 + 146370 -6244.2174 -6250.0691 5.8517126 3684.954 628.5173 -10563.54 0 280.4469 -0.00050350398 -0.00053335407 + 146380 -6244.5238 -6250.1164 5.5926149 3684.4283 631.01345 -10565.558 0 268.02949 -0.00025101653 -0.00027141413 + 146390 -6244.7778 -6250.5836 5.8057959 3685.8357 633.08035 -10569.5 0 278.24631 -4.5947488e-05 -6.0507762e-05 + 146400 -6244.9625 -6251.5188 6.5563298 3689.3286 634.31976 -10575.167 0 314.21611 6.9415651e-05 5.2878598e-05 + 146410 -6245.1269 -6252.7647 7.637757 3694.6887 634.51491 -10581.968 0 366.04417 6.3879926e-05 4.0400759e-05 + 146420 -6245.3563 -6254.0299 8.6736538 3701.2233 633.70614 -10588.959 0 415.69016 -6.7435783e-05 -9.6401887e-05 + 146430 -6245.7108 -6255.0304 9.3195335 3707.7459 632.19619 -10594.972 0 446.64434 -0.0002912077 -0.00032020149 + 146440 -6246.1833 -6255.5996 9.4162511 3712.7713 630.47274 -10598.844 0 451.27959 -0.00053930032 -0.00056429026 + 146450 -6246.709 -6255.7102 9.0012519 3714.9375 629.06396 -10599.712 0 431.3905 -0.0007310032 -0.00075246219 + 146460 -6247.2152 -6255.4286 8.2133679 3713.4894 628.36909 -10597.287 0 393.63067 -0.00080450492 -0.00082559784 + 146470 -6247.6602 -6254.8719 7.2116856 3708.5817 628.52022 -10591.974 0 345.62444 -0.00074080987 -0.00076342167 + 146480 -6248.0324 -6254.2028 6.1704636 3701.2577 629.32939 -10584.79 0 295.72324 -0.00056871876 -0.00059189248 + 146490 -6248.3299 -6253.62 5.2900561 3693.1456 630.35024 -10577.116 0 253.52917 -0.00035212339 -0.00037399185 + 146500 -6248.5525 -6253.2981 4.7455377 3686.0351 631.03741 -10570.371 0 227.4328 -0.00016880492 -0.0001889989 + 146510 -6248.7083 -6253.3005 4.5921194 3681.4624 630.94288 -10565.706 0 220.08013 -8.8522262e-05 -0.00010813669 + 146520 -6248.8191 -6253.5392 4.7201025 3680.3644 629.87456 -10563.778 0 226.2138 -0.00015362246 -0.00017316184 + 146530 -6248.9111 -6253.8293 4.9181241 3682.8444 627.96256 -10564.636 0 235.7041 -0.00036474848 -0.00038278618 + 146540 -6248.996 -6254.0039 5.0079225 3688.1198 625.61673 -10567.74 0 240.00775 -0.0006767635 -0.00069110328 + 146550 -6249.0609 -6254.01 4.9490165 3694.717 623.39898 -10572.126 0 237.18464 -0.0010096898 -0.0010199471 + 146560 -6249.0813 -6253.9174 4.8360645 3700.89 621.86099 -10576.668 0 231.77135 -0.0012730745 -0.0012818633 + 146570 -6249.0469 -6253.8523 4.8053791 3705.1249 621.4007 -10580.378 0 230.30073 -0.001394097 -0.0014053036 + 146580 -6248.9749 -6253.9121 4.9372683 3706.5418 622.17409 -10582.628 0 236.6216 -0.001337621 -0.001353236 + 146590 -6248.8976 -6254.1182 5.2205442 3705.0672 624.07571 -10583.261 0 250.19777 -0.0011123253 -0.0011307581 + 146600 -6248.8386 -6254.4143 5.5757875 3701.3717 626.77986 -10582.566 0 267.22302 -0.00076500064 -0.00078232835 + 146610 -6248.7965 -6254.6954 5.8989203 3696.6457 629.81818 -10581.159 0 282.70936 -0.00036830853 -0.0003813372 + 146620 -6248.7492 -6254.8509 6.1016553 3692.2975 632.66606 -10579.814 0 292.42556 -5.461316e-06 -1.4279746e-05 + 146630 -6248.6703 -6254.8131 6.1427815 3689.6317 634.82564 -10579.27 0 294.39656 0.00024683751 0.00023847717 + 146640 -6248.548 -6254.5878 6.0398366 3689.5474 635.9105 -10580.046 0 289.46286 0.00033524217 0.00032199256 + 146650 -6248.3978 -6254.2481 5.850272 3692.304 635.73365 -10582.286 0 280.37786 0.00024280561 0.0002212758 + 146660 -6248.2598 -6253.897 5.6371352 3697.4034 634.37601 -10585.676 0 270.16315 -5.2474971e-06 -3.3440731e-05 + 146670 -6248.1741 -6253.6341 5.460061 3703.633 632.19239 -10589.459 0 261.67676 -0.0003448051 -0.00037302878 + 146680 -6248.143 -6253.5487 5.4056996 3709.3032 629.7254 -10592.577 0 259.07146 -0.00068610654 -0.00070710637 + 146690 -6248.1126 -6253.7109 5.5982714 3712.6881 627.5446 -10593.944 0 268.30058 -0.00093729752 -0.00094964946 + 146700 -6248.0057 -6254.1196 6.1139211 3712.5891 626.0739 -10592.783 0 293.01341 -0.0010345865 -0.001045411 + 146710 -6247.7925 -6254.6293 6.836811 3708.8072 625.47839 -10588.915 0 327.65834 -0.0009672892 -0.00098727561 + 146720 -6247.5351 -6254.9595 7.424409 3702.2536 625.64834 -10582.861 0 355.81934 -0.00078228868 -0.00081636998 + 146730 -6247.3463 -6254.8388 7.4925372 3694.5942 626.27441 -10575.707 0 359.08442 -0.00056156743 -0.00060386613 + 146740 -6247.2929 -6254.1943 6.9013453 3687.6159 626.97696 -10568.787 0 330.75119 -0.00038446803 -0.00042266963 + 146750 -6247.3378 -6253.2269 5.889118 3682.6704 627.43908 -10563.336 0 282.23958 -0.0002971762 -0.00032249151 + 146760 -6247.3744 -6252.3089 4.9345004 3680.4397 627.498 -10560.247 0 236.48895 -0.00030476975 -0.00031874433 + 146770 -6247.3107 -6251.7777 4.4670415 3681.0135 627.17309 -10559.964 0 214.08569 -0.0003835379 -0.00039638465 + 146780 -6247.1269 -6251.7665 4.6395712 3684.0914 626.63746 -10562.495 0 222.35428 -0.00049948551 -0.00052178016 + 146790 -6246.8737 -6252.1697 5.2960068 3689.1238 626.15357 -10567.447 0 253.81436 -0.00062009307 -0.0006544902 + 146800 -6246.6207 -6252.7497 6.1289987 3695.3381 625.9936 -10574.081 0 293.73601 -0.00071593591 -0.00075535671 + 146810 -6246.3927 -6253.2937 6.9010316 3701.7409 626.36327 -10581.398 0 330.73615 -0.00075853274 -0.00079224552 + 146820 -6246.1429 -6253.7053 7.5624684 3707.2369 627.34558 -10588.288 0 362.43592 -0.00072353358 -0.00074596167 + 146830 -6245.7887 -6253.9819 8.1931912 3710.8994 628.87378 -10593.755 0 392.66369 -0.00060141563 -0.00061605166 + 146840 -6245.2805 -6254.1376 8.8571051 3712.2639 630.73672 -10597.138 0 424.48217 -0.00040752288 -0.00042284705 + 146850 -6244.6394 -6254.1674 9.5279907 3711.4438 632.62019 -10598.231 0 456.63478 -0.00018054991 -0.00020226679 + 146860 -6243.9324 -6254.0767 10.144389 3708.9895 634.18729 -10597.254 0 486.17602 3.2616144e-05 5.6913546e-06 + 146870 -6243.2157 -6253.9077 10.691984 3705.609 635.18385 -10594.7 0 512.41988 0.00019564105 0.00016899152 + 146880 -6242.5086 -6253.6898 11.181251 3701.9507 635.52443 -10591.165 0 535.8683 0.00029190266 0.0002697845 + 146890 -6241.8192 -6253.3543 11.535152 3698.544 635.30239 -10587.201 0 552.82919 0.00032002613 0.00030270683 + 146900 -6241.1782 -6252.729 11.550752 3695.8247 634.70178 -10583.255 0 553.57686 0.00028336271 0.00026833064 + 146910 -6240.6287 -6251.6651 11.036456 3694.1343 633.86018 -10579.66 0 528.92888 0.00018339849 0.00016730721 + 146920 -6240.1884 -6250.1935 10.005173 3693.6693 632.78122 -10576.644 0 479.50402 2.0396045e-05 -2.7249262e-07 + 146930 -6239.8432 -6248.5654 8.7222598 3694.4113 631.36678 -10574.344 0 418.01963 -0.00020111231 -0.00022913131 + 146940 -6239.5766 -6247.155 7.5784329 3696.0603 629.54897 -10572.764 0 363.20102 -0.00046424171 -0.00049935827 + 146950 -6239.3858 -6246.316 6.9302129 3697.991 627.43248 -10571.739 0 332.13469 -0.00073122779 -0.00076871478 + 146960 -6239.2608 -6246.2789 7.0181494 3699.3106 625.35738 -10570.947 0 336.3491 -0.00094039191 -0.00097320278 + 146970 -6239.1593 -6247.1006 7.9413358 3699.1049 623.8388 -10570.044 0 380.59337 -0.0010170917 -0.0010410669 + 146980 -6239.0279 -6248.6404 9.6124748 3696.8591 623.39511 -10568.895 0 460.68373 -0.00090222413 -0.00092022862 + 146990 -6238.8759 -6250.5585 11.682558 3692.8777 624.32214 -10567.758 0 559.89373 -0.00058940852 -0.00061007647 + 147000 -6238.8403 -6252.3815 13.541166 3688.4295 626.50327 -10567.314 0 648.96864 -0.00014884606 -0.00017984734 + 147010 -6239.1464 -6253.6691 14.522652 3685.4074 629.3603 -10568.437 0 696.00695 0.00028548619 0.00024405039 + 147020 -6239.9515 -6254.2162 14.264717 3685.5562 632.01978 -10571.792 0 683.6453 0.00056846594 0.00052417688 + 147030 -6241.2005 -6254.1375 12.937063 3689.6406 633.66264 -10577.441 0 620.01665 0.00060859293 0.00057035288 + 147040 -6242.6432 -6253.7582 11.115031 3697.0269 633.88492 -10584.67 0 532.69467 0.00040550512 0.00037707479 + 147050 -6243.9993 -6253.4042 9.4049593 3705.9104 632.85799 -10592.173 0 450.73842 4.2006503e-05 2.0750695e-05 + 147060 -6245.1066 -6253.2501 8.1434167 3714.0031 631.20912 -10598.462 0 390.27822 -0.00035557589 -0.00037544599 + 147070 -6245.9424 -6253.296 7.3535493 3719.2815 629.72643 -10602.304 0 352.42334 -0.00066264713 -0.00068626849 + 147080 -6246.5605 -6253.4296 6.8691239 3720.5208 629.05433 -10603.005 0 329.20696 -0.00079193585 -0.00082156279 + 147090 -6247.0343 -6253.5038 6.4695099 3717.5527 629.48534 -10600.542 0 310.05522 -0.00071538561 -0.00074949245 + 147100 -6247.4263 -6253.4093 5.9830116 3711.2508 630.88384 -10595.544 0 286.73948 -0.00046897074 -0.00050268554 + 147110 -6247.7667 -6253.1435 5.3767915 3703.2567 632.74061 -10589.141 0 257.68602 -0.00013804562 -0.0001658448 + 147120 -6248.0449 -6252.8401 4.7952587 3695.5337 634.33647 -10582.71 0 229.81571 0.00017111594 0.0001511383 + 147130 -6248.2302 -6252.7078 4.4775801 3689.8971 634.97164 -10577.577 0 214.59076 0.00036140705 0.00034528453 + 147140 -6248.3143 -6252.8949 4.58064 3687.6268 634.19687 -10574.719 0 219.52997 0.00036775201 0.00034845671 + 147150 -6248.3379 -6253.3853 5.0474214 3689.1825 631.97424 -10574.542 0 241.90076 0.00017193685 0.00014557207 + 147160 -6248.3724 -6254.0129 5.6405026 3694.0408 628.71277 -10576.766 0 270.32454 -0.00018926186 -0.00021954997 + 147170 -6248.4657 -6254.5821 6.1163703 3700.7398 625.16257 -10580.484 0 293.13078 -0.00062646773 -0.00065313005 + 147180 -6248.6018 -6254.9843 6.382533 3707.2401 622.20042 -10584.425 0 305.88679 -0.0010179602 -0.0010363325 + 147190 -6248.7181 -6255.2085 6.4904434 3711.5778 620.57754 -10587.364 0 311.05846 -0.0012483379 -0.0012614744 + 147200 -6248.7717 -6255.2626 6.4909323 3712.5668 620.70693 -10588.536 0 311.0819 -0.0012514485 -0.0012672781 + 147210 -6248.7839 -6255.122 6.3381326 3710.2028 622.54549 -10587.87 0 303.75888 -0.0010349219 -0.0010584793 + 147220 -6248.8139 -6254.7796 5.9657186 3705.5661 625.60404 -10585.95 0 285.91071 -0.00067244354 -0.00070123632 + 147230 -6248.8949 -6254.3321 5.4371567 3700.3228 629.0962 -10583.751 0 260.57906 -0.00027020746 -0.00029714063 + 147240 -6249.0027 -6253.976 4.9732403 3696.1247 632.19211 -10582.293 0 238.34558 7.1970412e-05 5.1808717e-05 + 147250 -6249.0836 -6253.8872 4.8036676 3694.1637 634.28585 -10582.337 0 230.2187 0.00028726609 0.0002729261 + 147260 -6249.1045 -6254.0876 4.9831404 3694.9614 635.16519 -10584.214 0 238.82005 0.00035155723 0.00033845669 + 147270 -6249.0757 -6254.4198 5.3440186 3698.3396 635.01551 -10587.775 0 256.11536 0.0002807857 0.00026557493 + 147280 -6249.0304 -6254.6567 5.6262073 3703.5136 634.26787 -10592.438 0 269.63942 0.00012069369 0.0001035944 + 147290 -6248.9871 -6254.6536 5.6664542 3709.2972 633.37354 -10597.324 0 271.56828 -6.9556277e-05 -8.6655792e-05 + 147300 -6248.9354 -6254.4199 5.4844723 3714.4079 632.61702 -10601.445 0 262.84669 -0.00023750313 -0.000254155 + 147310 -6248.8568 -6254.0742 5.2173843 3717.7912 632.04816 -10603.914 0 250.04633 -0.00035385044 -0.00037154043 + 147320 -6248.7498 -6253.75 5.0001122 3718.8362 631.541 -10604.127 0 239.63343 -0.00041647207 -0.00043636529 + 147330 -6248.6289 -6253.5339 4.9049753 3717.4155 630.92234 -10601.872 0 235.07394 -0.0004403027 -0.00046133172 + 147340 -6248.5009 -6253.4585 4.957579 3713.7914 630.09319 -10597.343 0 237.595 -0.00044123221 -0.0004608975 + 147350 -6248.3475 -6253.519 5.1715535 3708.4933 629.08837 -10591.101 0 247.84986 -0.00042533608 -0.00044251533 + 147360 -6248.1324 -6253.681 5.5485315 3702.2485 628.06061 -10583.99 0 265.91676 -0.00038945469 -0.0004063993 + 147370 -6247.8307 -6253.8744 6.0436385 3695.9638 627.21048 -10577.049 0 289.64507 -0.00033037822 -0.00035167929 + 147380 -6247.454 -6254.0031 6.5491465 3690.6797 626.69874 -10571.382 0 313.87185 -0.00025424492 -0.00028339662 + 147390 -6247.0466 -6253.9894 6.9428541 3687.4244 626.57788 -10567.992 0 332.74052 -0.00017889551 -0.00021554763 + 147400 -6246.6545 -6253.8297 7.1751468 3686.9754 626.77276 -10567.578 0 343.87329 -0.00012813874 -0.00016850473 + 147410 -6246.296 -6253.6088 7.3128428 3689.6214 627.12307 -10570.353 0 350.47246 -0.00012225628 -0.00016203374 + 147420 -6245.9579 -6253.4532 7.4952922 3695.0291 627.46923 -10575.952 0 359.21646 -0.00016943387 -0.000206565 + 147430 -6245.6157 -6253.4548 7.8391131 3702.2634 627.7408 -10583.459 0 375.69428 -0.00026019925 -0.00029561843 + 147440 -6245.2578 -6253.6147 8.3568647 3709.9559 628.00813 -10591.579 0 400.50785 -0.00036581598 -0.00040221441 + 147450 -6244.9013 -6253.8296 8.9283294 3716.589 628.47756 -10598.896 0 427.89564 -0.0004424426 -0.00048206914 + 147460 -6244.5916 -6253.9248 9.3332584 3720.8384 629.42609 -10604.189 0 447.30211 -0.0004425995 -0.00048520756 + 147470 -6244.3824 -6253.7256 9.3432054 3721.8943 631.08313 -10606.703 0 447.77883 -0.00033190424 -0.00037401842 + 147480 -6244.2995 -6253.1504 8.8509026 3719.6681 633.48857 -10606.307 0 424.18492 -0.00010470876 -0.00014129196 + 147490 -6244.3144 -6252.2805 7.9661739 3714.8331 636.38479 -10603.498 0 381.78375 0.0002078263 0.00017974522 + 147500 -6244.3582 -6251.3485 6.9902349 3708.7004 639.20934 -10599.258 0 335.01128 0.00053999374 0.00051853302 + 147510 -6244.3702 -6250.6327 6.2624704 3702.9431 641.22111 -10594.797 0 300.13272 0.00080436637 0.00078380393 + 147520 -6244.3396 -6250.3251 5.98556 3699.1801 641.73047 -10591.236 0 286.86162 0.00091457873 0.00088996658 + 147530 -6244.3055 -6250.4575 6.1519439 3698.4834 640.35154 -10589.292 0 294.83567 0.00081440733 0.00078605092 + 147540 -6244.3183 -6250.9252 6.606913 3700.9641 637.17689 -10589.066 0 316.64034 0.00050373459 0.00047739743 + 147550 -6244.3938 -6251.5751 7.1812073 3705.6433 632.7975 -10590.016 0 344.16375 4.8533819e-05 3.0506577e-05 + 147560 -6244.5003 -6252.2825 7.7821942 3710.7386 628.14886 -10591.17 0 372.96641 -0.000434221 -0.00044350024 + 147570 -6244.596 -6252.9672 8.3712034 3714.311 624.23725 -10591.515 0 401.19504 -0.00081483316 -0.00082273376 + 147580 -6244.6916 -6253.5552 8.8636739 3715.0096 621.8484 -10590.413 0 424.79699 -0.00099737429 -0.0010136669 + 147590 -6244.8744 -6253.9625 9.0881607 3712.5612 621.3372 -10587.861 0 435.55566 -0.00095239534 -0.0009804894 + 147600 -6245.25 -6254.1479 8.8978458 3707.7866 622.55818 -10584.493 0 426.4347 -0.0007199608 -0.00075331094 + 147610 -6245.8467 -6254.1826 8.3359147 3702.1963 624.95338 -10581.332 0 399.50381 -0.00038503691 -0.00041299868 + 147620 -6246.5827 -6254.2274 7.6446448 3697.4395 627.76635 -10579.433 0 366.37427 -4.3495507e-05 -6.1017451e-05 + 147630 -6247.3331 -6254.4035 7.0703889 3694.8583 630.29775 -10579.559 0 338.85271 0.00022334746 0.00021183517 + 147640 -6248.0152 -6254.6775 6.6623091 3695.2252 632.09791 -10582.001 0 319.29524 0.00036186 0.00034731663 + 147650 -6248.611 -6254.8763 6.2653311 3698.6178 633.03439 -10586.529 0 300.26982 0.00035292968 0.00032953959 + 147660 -6249.1302 -6254.8217 5.6915447 3704.3958 633.24349 -10592.461 0 272.77076 0.00021549103 0.00018432058 + 147670 -6249.5732 -6254.4708 4.8976197 3711.3053 633.01908 -10598.795 0 234.72142 2.9890178e-06 -3.0363897e-05 + 147680 -6249.9273 -6253.9555 4.028203 3717.7482 632.69345 -10604.397 0 193.05409 -0.00021092944 -0.00024120954 + 147690 -6250.1849 -6253.5039 3.3189911 3722.1842 632.54155 -10608.23 0 159.06468 -0.00035486458 -0.0003801014 + 147700 -6250.3575 -6253.3144 2.9568916 3723.5569 632.71554 -10609.587 0 141.71084 -0.00038201587 -0.00040300287 + 147710 -6250.4692 -6253.471 3.0018204 3721.5951 633.2077 -10608.274 0 143.86408 -0.00028399625 -0.00030221591 + 147720 -6250.539 -6253.9383 3.3993251 3716.886 633.8463 -10604.671 0 162.91473 -9.2215838e-05 -0.00010887051 + 147730 -6250.5693 -6254.6014 4.0320097 3710.7114 634.33515 -10599.648 0 193.23653 0.00013172161 0.00011511362 + 147740 -6250.5554 -6255.3037 4.7483417 3704.7057 634.33981 -10594.349 0 227.56718 0.00031276481 0.00029403902 + 147750 -6250.5059 -6255.8742 5.3683097 3700.4233 633.6026 -10589.9 0 257.27952 0.00038306927 0.00036078993 + 147760 -6250.4503 -6256.1653 5.7150049 3698.9066 632.04954 -10587.122 0 273.8951 0.00030343287 0.0002788823 + 147770 -6250.419 -6256.1131 5.6940512 3700.3708 629.84795 -10586.332 0 272.89088 7.9707315e-05 5.6911635e-05 + 147780 -6250.4142 -6255.7814 5.3672345 3704.1294 627.38745 -10587.298 0 257.22799 -0.00023413664 -0.00025125616 + 147790 -6250.4038 -6255.341 4.937145 3708.8292 625.18569 -10589.356 0 236.61569 -0.00055143131 -0.00056244053 + 147800 -6250.3478 -6254.977 4.6292084 3712.9248 623.74895 -10591.651 0 221.85764 -0.00078223876 -0.00079075291 + 147810 -6250.2294 -6254.7884 4.5589601 3715.1998 623.43296 -10593.421 0 218.49095 -0.0008634646 -0.00087426846 + 147820 -6250.0626 -6254.7502 4.6876122 3715.1259 624.34702 -10594.223 0 224.65668 -0.0007764288 -0.00079197656 + 147830 -6249.8725 -6254.7545 4.8820638 3712.9525 626.32978 -10594.037 0 233.97589 -0.00054723394 -0.00056664225 + 147840 -6249.6727 -6254.6826 5.0099115 3709.555 629.00125 -10593.239 0 240.10307 -0.00023424154 -0.00025507734 + 147850 -6249.4601 -6254.4592 4.9990799 3706.134 631.86889 -10592.462 0 239.58396 8.9978947e-05 6.9346298e-05 + 147860 -6249.2255 -6254.0761 4.8506608 3703.8669 634.44845 -10592.392 0 232.47088 0.00035689363 0.00033643502 + 147870 -6248.965 -6253.5985 4.6335214 3703.5941 636.3611 -10593.554 0 222.06434 0.00051747967 0.00049620872 + 147880 -6248.6805 -6253.1545 4.4739542 3705.606 637.38664 -10596.147 0 214.41699 0.00055218288 0.00052920668 + 147890 -6248.3723 -6252.8949 4.5225701 3709.5745 637.47519 -10599.945 0 216.74694 0.00047263137 0.00044780985 + 147900 -6248.0352 -6252.9259 4.8907207 3714.6297 636.73242 -10604.288 0 234.39078 0.00031498939 0.00028924256 + 147910 -6247.6599 -6253.2507 5.590838 3719.5472 635.39084 -10608.189 0 267.94433 0.00012858496 0.00010356606 + 147920 -6247.2366 -6253.7583 6.5217294 3723.0218 633.76846 -10610.549 0 312.55787 -3.6095407e-05 -5.9532715e-05 + 147930 -6246.7654 -6254.2598 7.4944338 3724.0077 632.2077 -10610.475 0 359.17532 -0.00013905348 -0.00016268928 + 147940 -6246.2737 -6254.546 8.2723394 3722.0577 630.9919 -10607.596 0 396.45692 -0.00016194463 -0.00018984414 + 147950 -6245.823 -6254.4576 8.6346195 3717.5077 630.25771 -10602.223 0 413.81941 -0.00011457676 -0.00014969611 + 147960 -6245.4867 -6253.9629 8.4762263 3711.3781 629.94835 -10595.289 0 406.22833 -3.0331685e-05 -7.0832217e-05 + 147970 -6245.3074 -6253.2012 7.8937996 3705.0242 629.8528 -10588.078 0 378.31517 5.0048098e-05 1.1065114e-05 + 147980 -6245.2688 -6252.4483 7.1794959 3699.7153 629.72772 -10581.891 0 344.08173 9.7804154e-05 6.8229497e-05 + 147990 -6245.3007 -6252.0034 6.7027687 3696.338 629.43707 -10577.779 0 321.23429 0.00010706251 9.0041475e-05 + 148000 -6245.3155 -6252.0434 6.7278959 3695.3209 629.02543 -10576.39 0 322.43852 9.1111096e-05 8.2021336e-05 + 148010 -6245.2626 -6252.5151 7.2524576 3696.7329 628.68188 -10577.93 0 347.57846 6.7468503e-05 5.6636395e-05 + 148020 -6245.1668 -6253.1406 7.9738073 3700.4043 628.6175 -10582.162 0 382.14959 4.2864854e-05 2.2651751e-05 + 148030 -6245.1112 -6253.5641 8.4529211 3705.9331 628.93216 -10588.429 0 405.11141 9.7351304e-06 -1.9763181e-05 + 148040 -6245.1648 -6253.564 8.3992118 3712.5862 629.55851 -10595.709 0 402.53736 -4.2779997e-05 -7.4631881e-05 + 148050 -6245.3205 -6253.1811 7.8605965 3719.2477 630.32485 -10602.754 0 376.72389 -0.00011225276 -0.00013927116 + 148060 -6245.5065 -6252.6687 7.1621969 3724.5668 631.09266 -10608.328 0 343.25266 -0.00017434344 -0.00019504769 + 148070 -6245.6519 -6252.3119 6.6600023 3727.3045 631.86493 -10611.481 0 319.18468 -0.00018910948 -0.00020793882 + 148080 -6245.7403 -6252.2576 6.5172952 3726.734 632.7827 -10611.774 0 312.34535 -0.00011868025 -0.00014111731 + 148090 -6245.8086 -6252.4638 6.6551927 3722.9154 634.007 -10609.386 0 318.95418 5.3366991e-05 2.5778642e-05 + 148100 -6245.9034 -6252.7769 6.8735059 3716.736 635.55979 -10605.073 0 329.41697 0.00031002135 0.00028028959 + 148110 -6246.0374 -6253.0538 7.0164079 3709.7156 637.2223 -10599.992 0 336.26564 0.00060039838 0.00057222827 + 148120 -6246.1832 -6253.231 7.0478096 3703.6498 638.55606 -10595.437 0 337.77058 0.00085001651 0.00082362995 + 148130 -6246.3061 -6253.3128 7.0067271 3700.1805 639.04457 -10592.538 0 335.80168 0.00097924054 0.00095102411 + 148140 -6246.4004 -6253.3261 6.9256934 3700.3674 638.29372 -10591.987 0 331.91809 0.00092716695 0.00089330523 + 148150 -6246.496 -6253.2987 6.8027344 3704.34 636.20527 -10593.844 0 326.0252 0.00067567968 0.00063626745 + 148160 -6246.6317 -6253.2735 6.641794 3711.1377 633.05459 -10597.466 0 318.31204 0.00026459213 0.00022450217 + 148170 -6246.8194 -6253.3267 6.5072036 3718.8503 629.44528 -10601.622 0 311.86171 -0.00021122774 -0.00024568503 + 148180 -6247.0314 -6253.5495 6.5180499 3725.1054 626.16145 -10604.816 0 312.38153 -0.00062588648 -0.00065187153 + 148190 -6247.2242 -6253.979 6.7548511 3727.8089 623.96661 -10605.755 0 323.73037 -0.00086138994 -0.00088169465 + 148200 -6247.3791 -6254.5273 7.1482082 3725.883 623.39957 -10603.81 0 342.58225 -0.0008473365 -0.00086782091 + 148210 -6247.5188 -6254.9863 7.4675189 3719.6862 624.61121 -10599.284 0 357.88541 -0.00058581427 -0.00061064098 + 148220 -6247.6828 -6255.1285 7.4456336 3710.9328 627.28957 -10593.351 0 356.83654 -0.00015225619 -0.0001811835 + 148230 -6247.8884 -6254.8357 6.9472507 3702.161 630.71622 -10587.713 0 332.95123 0.00032730168 0.00029789338 + 148240 -6248.1134 -6254.1732 6.0598339 3695.9625 633.9589 -10584.095 0 290.42124 0.00071454 0.00068850557 + 148250 -6248.3133 -6253.3715 5.0582014 3694.2311 636.14923 -10583.752 0 242.41739 0.00090062128 0.00087934477 + 148260 -6248.4522 -6252.7266 4.2743181 3697.6411 636.75514 -10587.123 0 204.84931 0.00083839363 0.00082014105 + 148270 -6248.5226 -6252.4669 3.9442601 3705.4787 635.75545 -10593.701 0 189.03108 0.00055539933 0.00053694803 + 148280 -6248.5448 -6252.6512 4.1063978 3715.8373 633.65372 -10602.142 0 196.80162 0.00014485441 0.00012429739 + 148290 -6248.5521 -6253.1536 4.6014451 3726.1094 631.3172 -10610.58 0 220.52707 -0.00026158941 -0.00028292037 + 148300 -6248.5679 -6253.748 5.1800922 3733.6543 629.68202 -10617.084 0 248.25908 -0.00053172051 -0.00055017503 + 148310 -6248.5853 -6254.2394 5.6541661 3736.5068 629.41833 -10620.165 0 270.97936 -0.00057247186 -0.00058575321 + 148320 -6248.5708 -6254.5485 5.977759 3733.9641 630.6782 -10619.191 0 286.48775 -0.00036163952 -0.00037199852 + 148330 -6248.4987 -6254.6986 6.1998741 3726.8569 633.0308 -10614.586 0 297.13276 3.9734012e-05 2.6567753e-05 + 148340 -6248.3853 -6254.7468 6.3614871 3717.3391 635.61707 -10607.703 0 304.87816 0.00050358872 0.00048347824 + 148350 -6248.2833 -6254.7386 6.4553473 3708.1946 637.46685 -10600.4 0 309.37646 0.00087845079 0.00085311356 + 148360 -6248.2369 -6254.708 6.4710824 3701.9104 637.85441 -10594.473 0 310.13058 0.0010441731 0.0010202342 + 148370 -6248.2397 -6254.6886 6.448855 3699.9027 636.55241 -10591.144 0 309.06532 0.00095374473 0.0009370395 + 148380 -6248.2334 -6254.701 6.4675627 3702.2002 633.88852 -10590.79 0 309.96189 0.00064418099 0.00063407278 + 148390 -6248.1518 -6254.7144 6.5625781 3707.6434 630.6004 -10592.958 0 314.51556 0.00021445986 0.00020326647 + 148400 -6247.9769 -6254.6198 6.6429543 3714.4198 627.57091 -10596.611 0 318.36764 -0.00021521536 -0.00023645861 + 148410 -6247.7572 -6254.2689 6.5116132 3720.6463 625.55612 -10600.471 0 312.07304 -0.00054133057 -0.0005751673 + 148420 -6247.5654 -6253.5874 6.0220521 3724.7898 624.99433 -10603.372 0 288.61053 -0.00069741467 -0.00073723945 + 148430 -6247.4301 -6252.6876 5.2575109 3725.8913 625.93595 -10604.515 0 251.96942 -0.00065724693 -0.00069243822 + 148440 -6247.3061 -6251.8652 4.5590823 3723.687 628.08775 -10603.64 0 218.4968 -0.00043127168 -0.00045575942 + 148450 -6247.0997 -6251.4548 4.3551209 3718.6873 630.93117 -10601.073 0 208.72183 -6.3640972e-05 -8.0420281e-05 + 148460 -6246.7192 -6251.6363 4.9170963 3712.1703 633.86533 -10597.672 0 235.65484 0.00037189632 0.00035377008 + 148470 -6246.121 -6252.3272 6.2062007 3705.9793 636.34068 -10594.647 0 297.43596 0.00078340054 0.00075626822 + 148480 -6245.3407 -6253.2311 7.8904232 3702.0681 637.96786 -10593.267 0 378.15335 0.0010819004 0.0010450331 + 148490 -6244.4857 -6253.9911 9.5054442 3701.893 638.58774 -10594.472 0 455.55422 0.001206683 0.0011656426 + 148500 -6243.6839 -6254.3352 10.651268 3705.8978 638.28041 -10598.513 0 510.46852 0.0011426309 0.0011040876 + 148510 -6243.0298 -6254.1457 11.115959 3713.3332 637.30127 -10604.78 0 532.73913 0.0009206028 0.00088806682 + 148520 -6242.5595 -6253.4766 10.917123 3722.4698 635.97092 -10611.917 0 523.20979 0.00060414587 0.00057725759 + 148530 -6242.2525 -6252.5449 10.292438 3731.0858 634.57761 -10618.208 0 493.2714 0.0002721877 0.00024764962 + 148540 -6242.057 -6251.6606 9.6036311 3737.061 633.33833 -10622.06 0 460.25989 1.6158473e-06 -2.5579278e-05 + 148550 -6241.9367 -6251.083 9.1462507 3738.9156 632.41336 -10622.412 0 438.33965 -0.00015001041 -0.00018397871 + 148560 -6241.9011 -6250.8941 8.9929847 3736.1397 631.9311 -10618.965 0 430.99428 -0.0001565726 -0.00019710172 + 148570 -6241.986 -6250.9951 9.0090608 3729.2434 631.98667 -10612.225 0 431.76474 -2.386283e-05 -6.5694341e-05 + 148580 -6242.2031 -6251.2172 9.0140876 3719.5816 632.60936 -10603.408 0 432.00565 0.00021938565 0.00018241963 + 148590 -6242.514 -6251.4348 8.9207839 3709.0784 633.71716 -10594.23 0 427.53402 0.00052901006 0.00049829393 + 148600 -6242.8626 -6251.5891 8.7265082 3699.9252 635.08276 -10586.597 0 418.22324 0.00084480189 0.00081587376 + 148610 -6243.2297 -6251.6519 8.4221579 3694.2156 636.33403 -10582.202 0 403.63706 0.0010898103 0.0010577456 + 148620 -6243.6423 -6251.6242 7.9818829 3693.4649 637.01204 -10582.101 0 382.53662 0.0011843774 0.0011498984 + 148630 -6244.1237 -6251.5874 7.4637051 3698.1045 636.70199 -10586.394 0 357.70263 0.0010765767 0.0010457795 + 148640 -6244.6488 -6251.7136 7.0648642 3707.2036 635.21491 -10594.132 0 338.58793 0.00077106443 0.00074879385 + 148650 -6245.1586 -6252.1628 7.0041497 3718.6327 632.74337 -10603.539 0 335.67816 0.00033568393 0.00031977712 + 148660 -6245.618 -6252.9299 7.3119445 3729.6501 629.89307 -10612.473 0 350.42941 -0.00011818331 -0.00013557736 + 148670 -6246.0512 -6253.7892 7.7379751 3737.6654 627.53537 -10618.99 0 370.84718 -0.00046925967 -0.00049460792 + 148680 -6246.5155 -6254.4125 7.8969448 3740.8931 626.51218 -10621.818 0 378.46591 -0.00061956789 -0.00065224945 + 148690 -6247.0354 -6254.5821 7.5467054 3738.7392 627.31006 -10620.631 0 361.68047 -0.00051967908 -0.0005529767 + 148700 -6247.5697 -6254.3257 6.7559915 3731.8995 629.85381 -10616.079 0 323.78502 -0.00018333033 -0.00021032617 + 148710 -6248.0449 -6253.878 5.8330268 3722.1962 633.51448 -10609.589 0 279.55137 0.00031195672 0.00029358827 + 148720 -6248.4114 -6253.5292 5.1178371 3712.1671 637.31603 -10603.012 0 245.27547 0.00084172303 0.00082934635 + 148730 -6248.6655 -6253.4793 4.813764 3704.4649 640.24272 -10598.187 0 230.70258 0.0012668682 0.0012555554 + 148740 -6248.8366 -6253.7653 4.9286748 3701.1919 641.5349 -10596.492 0 236.20975 0.0014721591 0.0014576806 + 148750 -6248.9655 -6254.2686 5.3030732 3703.3369 640.8888 -10598.494 0 254.15302 0.0013989256 0.0013796499 + 148760 -6249.0889 -6254.7822 5.693376 3710.4667 638.51585 -10603.765 0 272.85852 0.0010623163 0.0010396114 + 148770 -6249.2269 -6255.1105 5.8836209 3720.7765 635.05996 -10610.947 0 281.97613 0.00054838728 0.00052541732 + 148780 -6249.3749 -6255.1544 5.7794841 3731.5277 631.41024 -10618.092 0 276.9853 -8.2855783e-06 -2.881546e-05 + 148790 -6249.5076 -6254.9419 5.4343205 3739.7825 628.46752 -10623.192 0 260.44313 -0.00046071657 -0.00047845977 + 148800 -6249.5969 -6254.5932 4.9962879 3743.2271 626.92245 -10624.743 0 239.45015 -0.00068982082 -0.00070696191 + 148810 -6249.633 -6254.2493 4.6162785 3740.8286 627.09065 -10622.169 0 221.23797 -0.00063787436 -0.00065735462 + 148820 -6249.6307 -6254.0066 4.3759233 3733.1257 628.83771 -10615.97 0 209.7188 -0.00032519102 -0.00034818083 + 148830 -6249.6181 -6253.8947 4.2765674 3722.0737 631.61375 -10607.582 0 204.95711 0.00015597768 0.00013139556 + 148840 -6249.6114 -6253.8984 4.2869435 3710.5017 634.59885 -10598.999 0 205.45439 0.00066936413 0.00064686574 + 148850 -6249.5965 -6253.9961 4.3996413 3701.351 636.93111 -10592.278 0 210.8555 0.0010750765 0.0010567065 + 148860 -6249.5343 -6254.1686 4.6343454 3696.929 637.95631 -10589.054 0 222.10384 0.0012680959 0.0012516545 + 148870 -6249.3939 -6254.3727 4.9787651 3698.3723 637.4204 -10590.165 0 238.61036 0.0012031998 0.0011832998 + 148880 -6249.1852 -6254.5212 5.3360262 3705.4084 635.5393 -10595.469 0 255.73232 0.00090273657 0.00087535953 + 148890 -6248.9584 -6254.5204 5.562078 3716.4129 632.9217 -10603.855 0 266.56599 0.00044977374 0.00041644329 + 148900 -6248.7626 -6254.3538 5.5912478 3728.7473 630.37333 -10613.474 0 267.96397 -3.0700574e-05 -6.3426882e-05 + 148910 -6248.5985 -6254.1338 5.5352872 3739.3617 628.65453 -10622.15 0 265.28202 -0.00040168174 -0.00042754215 + 148920 -6248.4119 -6254.0457 5.6337853 3745.5841 628.27622 -10627.906 0 270.0026 -0.00055161464 -0.00056998221 + 148930 -6248.1366 -6254.2069 6.0703399 3745.8829 629.39144 -10629.481 0 290.92475 -0.00042873575 -0.00044495891 + 148940 -6247.7464 -6254.5536 6.8072409 3740.3237 631.79108 -10626.668 0 326.24118 -5.8204466e-05 -7.8899122e-05 + 148950 -6247.2761 -6254.8528 7.5767223 3730.5357 634.97797 -10620.366 0 363.11904 0.00046588185 0.00043810904 + 148960 -6246.7973 -6254.8303 8.0329837 3719.2102 638.28626 -10612.327 0 384.98565 0.0010100603 0.00097819146 + 148970 -6246.3708 -6254.3277 7.9569002 3709.323 641.02013 -10604.671 0 381.3393 0.0014406384 0.0014104948 + 148980 -6246.0104 -6253.3946 7.3841617 3703.3402 642.59065 -10599.325 0 353.89046 0.0016585008 0.0016343219 + 148990 -6245.6848 -6252.2723 6.5874836 3702.6325 642.63295 -10597.538 0 315.70917 0.0016199414 0.0016016361 + 149000 -6245.3474 -6251.2873 5.9398711 3707.2199 641.08734 -10599.595 0 284.67195 0.0013412975 0.0013249347 + 149010 -6244.9627 -6250.7117 5.7490731 3715.8487 638.23005 -10604.791 0 275.52784 0.0008908585 0.00087153445 + 149020 -6244.5131 -6250.6568 6.1436579 3726.3239 634.6387 -10611.619 0 294.43856 0.00037254661 0.00034751107 + 149030 -6243.9956 -6251.0383 7.0427222 3736.0059 631.08255 -10618.127 0 337.52676 -9.5773307e-05 -0.00012560088 + 149040 -6243.42 -6251.6261 8.2060122 3742.391 628.34432 -10622.361 0 393.27815 -0.0004070214 -0.00043800804 + 149050 -6242.8098 -6252.1522 9.3424152 3743.6996 627.01289 -10622.865 0 447.74096 -0.00048879951 -0.00051757455 + 149060 -6242.198 -6252.4266 10.228596 3739.3644 627.31784 -10619.109 0 490.21172 -0.00032112402 -0.0003475963 + 149070 -6241.6242 -6252.3963 10.772114 3730.2761 629.07505 -10611.747 0 516.26016 5.6907787e-05 2.9160952e-05 + 149080 -6241.1379 -6252.1312 10.993312 3718.6477 631.76531 -10602.544 0 526.86118 0.00055474278 0.00052159004 + 149090 -6240.795 -6251.7686 10.973623 3707.46 634.70389 -10593.932 0 525.91756 0.0010529366 0.0010136823 + 149100 -6240.6373 -6251.4651 10.827768 3699.6261 637.22894 -10588.32 0 518.92739 0.0014360571 0.0013942657 + 149110 -6240.6686 -6251.3594 10.690815 3697.1654 638.85191 -10587.377 0 512.36386 0.0016245401 0.0015844925 + 149120 -6240.8597 -6251.524 10.664292 3700.6835 639.34818 -10591.556 0 511.09269 0.0015923108 0.0015544684 + 149130 -6241.1924 -6251.9027 10.710347 3709.3062 638.78843 -10599.997 0 513.29992 0.0013649444 0.0013254869 + 149140 -6241.6998 -6252.2937 10.593847 3720.9963 637.50919 -10610.799 0 507.71658 0.0010057682 0.00096139221 + 149150 -6242.441 -6252.4505 10.009585 3733.0662 636.01327 -10621.53 0 479.71548 0.0006016308 0.00055436084 + 149160 -6243.4091 -6252.2659 8.8567552 3742.7656 634.81132 -10629.843 0 424.4654 0.0002500698 0.00020603222 + 149170 -6244.4783 -6251.8682 7.3898869 3747.9304 634.26045 -10634.059 0 354.16484 3.9201223e-05 2.8452718e-06 + 149180 -6245.4718 -6251.5288 6.0570806 3747.5732 634.47027 -10633.572 0 290.28929 1.9753612e-05 -9.3031829e-06 + 149190 -6246.2819 -6251.4829 5.2010217 3742.1268 635.30633 -10628.916 0 249.26214 0.00018635092 0.00016143921 + 149200 -6246.9036 -6251.8283 4.9246208 3733.2006 636.46206 -10621.491 0 236.01546 0.00048264733 0.00045905686 + 149210 -6247.3768 -6252.5281 5.1513081 3723.0595 637.54912 -10613.137 0 246.87959 0.00082294799 0.0007989829 + 149220 -6247.7368 -6253.4453 5.7085272 3714.0943 638.18108 -10605.721 0 273.58466 0.001114474 0.0010889974 + 149230 -6248.0141 -6254.3715 6.3573821 3708.3542 638.05335 -10600.779 0 304.68142 0.0012753556 0.0012479418 + 149240 -6248.246 -6255.0718 6.8258786 3707.1161 637.01926 -10599.207 0 327.1344 0.0012515654 0.0012236029 + 149250 -6248.4675 -6255.3703 6.9028189 3710.5479 635.1444 -10601.063 0 330.82182 0.0010330978 0.0010080159 + 149260 -6248.6868 -6255.2416 6.55482 3717.6106 632.71641 -10605.569 0 314.14375 0.00066304902 0.00064417306 + 149270 -6248.8766 -6254.8359 5.9593115 3726.3108 630.20062 -10611.347 0 285.60365 0.00023118529 0.00021858708 + 149280 -6248.9999 -6254.397 5.3971573 3734.2742 628.14837 -10616.82 0 258.66206 -0.00015006875 -0.00016044048 + 149290 -6249.0463 -6254.1255 5.0792454 3739.4337 627.07588 -10620.635 0 243.42594 -0.00037874219 -0.00039227925 + 149300 -6249.0435 -6254.0846 5.0410392 3740.5817 627.33876 -10622.005 0 241.59488 -0.00039191898 -0.00041126991 + 149310 -6249.0353 -6254.2016 5.16632 3737.6276 629.03014 -10620.859 0 247.59904 -0.00018059729 -0.0002038994 + 149320 -6249.0477 -6254.3412 5.2934635 3731.5498 631.92807 -10617.819 0 253.69247 0.00021024052 0.00018742425 + 149330 -6249.073 -6254.3878 5.31481 3724.1114 635.50955 -10614.009 0 254.71551 0.00069258717 0.00067347102 + 149340 -6249.0806 -6254.29 5.2094272 3717.4235 639.03925 -10610.753 0 249.66498 0.0011537824 0.0011380211 + 149350 -6249.0472 -6254.0608 5.0136356 3713.4313 641.72787 -10609.22 0 240.28155 0.0014807064 0.0014654382 + 149360 -6248.9763 -6253.7586 4.7823188 3713.4037 642.93235 -10610.095 0 229.19555 0.0015879939 0.0015710443 + 149370 -6248.8897 -6253.4752 4.5855124 3717.5353 642.34433 -10613.355 0 219.76348 0.00144453 0.0014264854 + 149380 -6248.7974 -6253.3266 4.5291977 3724.8033 640.10158 -10618.232 0 217.06456 0.0010881203 0.0010710048 + 149390 -6248.6758 -6253.4193 4.7435436 3733.1899 636.77399 -10623.383 0 227.33722 0.00061882931 0.00060254347 + 149400 -6248.4816 -6253.7791 5.2975557 3740.2616 633.21818 -10627.259 0 253.88859 0.00016929876 0.00014978553 + 149410 -6248.198 -6254.2812 6.0831786 3743.9222 630.34083 -10628.544 0 291.54005 -0.00013800822 -0.00016590968 + 149420 -6247.8699 -6254.6649 6.794964 3743.0457 628.83832 -10626.549 0 325.6528 -0.00022871618 -0.00026565245 + 149430 -6247.5803 -6254.6718 7.0915058 3737.7517 628.98952 -10621.413 0 339.86475 -9.4153301e-05 -0.00013375056 + 149440 -6247.3803 -6254.2241 6.8438462 3729.2901 630.57298 -10614.087 0 327.99551 0.00021444656 0.00018147625 + 149450 -6247.2444 -6253.4946 6.2501434 3719.6713 632.94727 -10606.113 0 299.54194 0.00060626433 0.00058481692 + 149460 -6247.0965 -6252.806 5.7094921 3711.1979 635.27065 -10599.274 0 273.6309 0.0009751646 0.0009619704 + 149470 -6246.872 -6252.4439 5.5718431 3705.9746 636.7783 -10595.197 0 267.03399 0.0012235508 0.0012098775 + 149480 -6246.5588 -6252.5129 5.9540971 3705.4342 637.02223 -10594.969 0 285.35374 0.0012852548 0.001263306 + 149490 -6246.1957 -6252.91 6.7143076 3709.9469 636.00313 -10598.86 0 321.7873 0.0011446319 0.0011126739 + 149500 -6245.8429 -6253.4042 7.5613735 3718.6222 634.15896 -10606.185 0 362.38344 0.00084528298 0.00080813184 + 149510 -6245.5441 -6253.7632 8.2190746 3729.4232 632.21391 -10615.4 0 393.90417 0.00048164364 0.00044646032 + 149520 -6245.303 -6253.8495 8.5465904 3739.6491 630.93569 -10624.434 0 409.60057 0.00017185196 0.00014250101 + 149530 -6245.0938 -6253.6425 8.5486962 3746.7073 630.88437 -10631.234 0 409.70149 1.9150777e-05 -6.3025319e-06 + 149540 -6244.8998 -6253.1972 8.297404 3748.9171 632.23723 -10634.352 0 397.65816 7.6633444e-05 5.0147837e-05 + 149550 -6244.7359 -6252.604 7.8680929 3746.0043 634.73866 -10633.347 0 377.08316 0.00033061062 0.00030043686 + 149560 -6244.6295 -6251.987 7.3574608 3739.0767 637.77955 -10628.843 0 352.61081 0.00070893782 0.00067699736 + 149570 -6244.5832 -6251.5036 6.9203978 3730.1613 640.57942 -10622.244 0 331.66429 0.001107789 0.0010779216 + 149580 -6244.565 -6251.2934 6.7284015 3721.5685 642.42039 -10615.282 0 322.46275 0.0014240236 0.0013977097 + 149590 -6244.532 -6251.3997 6.8677107 3715.3103 642.85947 -10609.569 0 329.13923 0.001582908 0.0015574454 + 149600 -6244.463 -6251.735 7.2719928 3712.677 641.84539 -10606.257 0 348.5147 0.001554941 0.0015250816 + 149610 -6244.3791 -6252.1127 7.7335392 3714.015 639.70263 -10605.83 0 370.63459 0.0013580269 0.0013199309 + 149620 -6244.3431 -6252.329 7.9859048 3718.7135 636.99726 -10608.04 0 382.72937 0.0010464373 0.0010018434 + 149630 -6244.4217 -6252.2768 7.8550281 3725.3733 634.33826 -10611.988 0 376.45702 0.00069414806 0.00065118334 + 149640 -6244.6258 -6252.0503 7.4244645 3732.1292 632.18881 -10616.368 0 355.822 0.00037914904 0.00034695123 + 149650 -6244.8861 -6251.9382 7.052106 3737.1238 630.764 -10619.826 0 337.97649 0.00016797674 0.00014823323 + 149660 -6245.1142 -6252.241 7.1268547 3739.0713 630.05557 -10621.368 0 341.55886 9.8295647e-05 8.2247396e-05 + 149670 -6245.301 -6253.0221 7.7211661 3737.6945 629.95065 -10620.667 0 370.0416 0.00016608108 0.00014160019 + 149680 -6245.5516 -6254.019 8.4674837 3733.7714 630.35227 -10618.143 0 405.80933 0.00032926091 0.00029184854 + 149690 -6246.0023 -6254.8125 8.8101207 3728.736 631.21859 -10614.767 0 422.23042 0.00052996091 0.00048657324 + 149700 -6246.6866 -6255.1088 8.4221556 3724.0853 632.51028 -10611.704 0 403.63695 0.00072085993 0.00068279047 + 149710 -6247.4852 -6254.8951 7.4099505 3720.9379 634.10844 -10609.942 0 355.12641 0.00087646254 0.00084913153 + 149720 -6248.2193 -6254.3715 6.1521292 3719.898 635.78139 -10610.051 0 294.84455 0.00098504737 0.00096507031 + 149730 -6248.7831 -6253.7778 4.994698 3721.1074 637.22969 -10612.115 0 239.37395 0.0010361371 0.0010169361 + 149740 -6249.1815 -6253.2862 4.1047489 3724.3062 638.1793 -10615.772 0 196.7226 0.0010192867 0.00099768056 + 149750 -6249.4731 -6253.0015 3.5283436 3728.851 638.47201 -10620.324 0 169.09802 0.00093390968 0.0009113276 + 149760 -6249.7034 -6252.9906 3.2871919 3733.7762 638.11628 -10624.883 0 157.54068 0.00079802679 0.00077705002 + 149770 -6249.8846 -6253.2741 3.3895627 3737.9741 637.28371 -10628.532 0 162.44686 0.00064684671 0.00062782906 + 149780 -6250.0154 -6253.792 3.7765719 3740.4661 636.25545 -10630.514 0 180.99452 0.00052202709 0.00050301966 + 149790 -6250.1052 -6254.4009 4.295702 3740.6633 635.33857 -10630.403 0 205.87414 0.00045849575 0.00043779014 + 149800 -6250.1763 -6254.9315 4.7551572 3738.5198 634.77666 -10628.228 0 227.89381 0.00047471831 0.00045294419 + 149810 -6250.2455 -6255.273 5.0275004 3734.5443 634.67561 -10624.493 0 240.94603 0.00056797131 0.00054750417 + 149820 -6250.3074 -6255.4243 5.1168899 3729.6846 634.96297 -10620.072 0 245.23007 0.00071354278 0.00069587912 + 149830 -6250.3395 -6255.4693 5.1298271 3725.1281 635.4 -10615.997 0 245.8501 0.00086772465 0.00085160232 + 149840 -6250.326 -6255.5004 5.1743419 3722.043 635.65611 -10613.2 0 247.9835 0.00097654492 0.00095879832 + 149850 -6250.2752 -6255.5482 5.2729326 3721.2841 635.43215 -10612.264 0 252.70851 0.00099138235 0.00096973866 + 149860 -6250.2141 -6255.5681 5.3540284 3723.1146 634.59159 -10613.274 0 256.59508 0.00088809132 0.00086324992 + 149870 -6250.165 -6255.4821 5.3170298 3727.0438 633.24618 -10615.772 0 254.8219 0.00068164811 0.00065667931 + 149880 -6250.1258 -6255.2373 5.111476 3731.8903 631.75437 -10618.882 0 244.97061 0.00042776096 0.00040528691 + 149890 -6250.071 -6254.8374 4.7664468 3736.112 630.62269 -10621.572 0 228.43487 0.00020764097 0.00018736846 + 149900 -6249.9765 -6254.3315 4.3549625 3738.3176 630.33861 -10622.988 0 208.71424 0.00010028844 7.9344077e-05 + 149910 -6249.8439 -6253.7878 3.9438968 3737.7561 631.18999 -10622.734 0 189.01366 0.00015370236 0.00012958171 + 149920 -6249.6978 -6253.2893 3.59146 3734.5767 633.13539 -10621.001 0 172.12291 0.00036731868 0.00034051535 + 149930 -6249.5584 -6252.9464 3.3880092 3729.7736 635.77809 -10618.498 0 162.37241 0.00069173386 0.00066536199 + 149940 -6249.4131 -6252.8851 3.4719928 3724.8767 638.46366 -10616.225 0 166.39738 0.0010434559 0.0010202428 + 149950 -6249.2133 -6253.1861 3.9728159 3721.5203 640.47479 -10615.181 0 190.39963 0.0013280268 0.0013075188 + 149960 -6248.9022 -6253.8082 4.9060109 3720.9985 641.25919 -10616.066 0 235.12357 0.0014651897 0.0014436459 + 149970 -6248.46 -6254.5542 6.0942034 3723.8829 640.61445 -10619.052 0 292.06842 0.001411467 0.001384692 + 149980 -6247.9359 -6255.1234 7.1875366 3729.7694 638.76511 -10623.658 0 344.46708 0.0011758808 0.0011430269 + 149990 -6247.4324 -6255.2474 7.8149888 3737.248 636.29788 -10628.793 0 374.53811 0.00082357077 0.00078881669 + 150000 -6247.037 -6254.8403 7.8033666 3744.1837 633.97021 -10632.994 0 373.98111 0.00046211243 0.00043213307 + 150010 -6246.7602 -6254.066 7.305818 3748.3175 632.46312 -10634.847 0 350.13579 0.00020990424 0.00018846904 + 150020 -6246.5413 -6253.2559 6.7145346 3748.0378 632.17317 -10633.467 0 321.79817 0.00015529039 0.00013952833 + 150030 -6246.313 -6252.7196 6.40666 3743.0283 633.11088 -10628.859 0 307.04309 0.00032268107 0.00030474076 + 150040 -6246.0613 -6252.5755 6.5141789 3734.489 634.92064 -10621.985 0 312.196 0.00066085474 0.0006339943 + 150050 -6245.8329 -6252.7118 6.8789163 3724.7911 637.00084 -10614.504 0 329.67627 0.0010594677 0.0010235285 + 150060 -6245.69 -6252.8923 7.2023123 3716.6885 638.6879 -10608.269 0 345.17522 0.001388158 0.0013498141 + 150070 -6245.6546 -6252.9181 7.2635234 3712.4122 639.45569 -10604.786 0 348.1088 0.0015430475 0.001510672 + 150080 -6245.6873 -6252.7391 7.0518218 3713.0047 639.0716 -10604.815 0 337.96287 0.0014817179 0.001459066 + 150090 -6245.7168 -6252.4569 6.7401394 3718.1078 637.65911 -10608.224 0 323.0253 0.0012329775 0.0012165728 + 150100 -6245.6943 -6252.2354 6.5410446 3726.2052 635.65096 -10614.091 0 313.48356 0.00088017858 0.00086232477 + 150110 -6245.63 -6252.1899 6.5598496 3735.1467 633.65524 -10620.992 0 314.3848 0.00052919547 0.0005043302 + 150120 -6245.5793 -6252.337 6.7577202 3742.7303 632.27798 -10627.345 0 323.86787 0.00027681765 0.00024595935 + 150130 -6245.5873 -6252.6321 7.0447965 3747.1866 631.95078 -10631.77 0 337.62618 0.00018954226 0.00015840701 + 150140 -6245.6438 -6253.0265 7.3826748 3747.5453 632.8115 -10633.383 0 353.8192 0.00029197046 0.00026415645 + 150150 -6245.7015 -6253.4516 7.7500268 3743.8942 634.67498 -10632.021 0 371.42477 0.00055989083 0.00053261727 + 150160 -6245.7439 -6253.7586 8.0146959 3737.4321 637.09672 -10628.287 0 384.1092 0.00092091791 0.00088876153 + 150170 -6245.8139 -6253.7465 7.9325725 3730.1484 639.49695 -10623.392 0 380.17338 0.001272432 0.001234836 + 150180 -6245.961 -6253.3178 7.3568488 3724.1485 641.3043 -10618.771 0 352.58147 0.0015169308 0.0014802679 + 150190 -6246.1722 -6252.6173 6.4450466 3720.9475 642.09172 -10615.656 0 308.8828 0.0015970446 0.0015686299 + 150200 -6246.3732 -6251.9926 5.6194474 3721.0918 641.68022 -10614.765 0 269.31545 0.0015097334 0.0014904727 + 150210 -6246.492 -6251.7928 5.3007985 3724.2099 640.18231 -10616.185 0 254.044 0.0012957215 0.0012789202 + 150220 -6246.5178 -6252.1606 5.642827 3729.314 637.96725 -10619.442 0 270.43593 0.0010169612 0.00099403343 + 150230 -6246.5074 -6252.9648 6.4573203 3735.123 635.55707 -10623.645 0 309.47102 0.00073710828 0.00070468447 + 150240 -6246.5452 -6253.897 7.3518101 3740.3 633.4881 -10627.685 0 352.33999 0.00051107336 0.00047339922 + 150250 -6246.6846 -6254.6474 7.9627643 3743.6444 632.18157 -10630.473 0 381.62035 0.0003805749 0.00034548171 + 150260 -6246.9152 -6255.0384 8.1232221 3744.3119 631.85676 -10631.207 0 389.31038 0.00036971031 0.00034195912 + 150270 -6247.1812 -6255.0477 7.8665518 3742.0598 632.4992 -10629.607 0 377.0093 0.00047819107 0.00045627091 + 150280 -6247.4364 -6254.7436 7.3072248 3737.4058 633.88075 -10626.03 0 350.20321 0.00067654197 0.00065573719 + 150290 -6247.6762 -6254.2218 6.5455457 3731.5494 635.62202 -10621.393 0 313.69928 0.00091092534 0.00088907014 + 150300 -6247.9158 -6253.6038 5.6879966 3726.0169 637.28564 -10616.906 0 272.60071 0.0011197535 0.0010992119 + 150310 -6248.1479 -6253.0547 4.9068665 3722.1891 638.48354 -10613.727 0 235.16457 0.0012536825 0.0012375701 + 150320 -6248.3362 -6252.7416 4.4054588 3720.9495 638.97173 -10612.663 0 211.13431 0.0012872191 0.0012745964 + 150330 -6248.4506 -6252.7379 4.287313 3722.5601 638.70274 -10614.001 0 205.4721 0.0012185075 0.001204159 + 150340 -6248.5019 -6252.9649 4.4630012 3726.6938 637.81811 -10617.477 0 213.89206 0.0010636383 0.0010427206 + 150350 -6248.5398 -6253.2415 4.7016441 3732.5107 636.5884 -10622.341 0 225.32916 0.00085272277 0.00082558369 + 150360 -6248.6147 -6253.4137 4.7989909 3738.7581 635.32818 -10627.5 0 229.99457 0.0006285847 0.00060112352 + 150370 -6248.7357 -6253.4675 4.7318237 3743.9613 634.3179 -10631.747 0 226.77554 0.00044329692 0.00042239974 + 150380 -6248.8622 -6253.5382 4.6760856 3746.7516 633.75426 -10634.044 0 224.10426 0.00034807361 0.00033595437 + 150390 -6248.9359 -6253.8063 4.8703862 3746.279 633.73348 -10633.819 0 233.41623 0.00037756284 0.00036977311 + 150400 -6248.9278 -6254.3546 5.4268064 3742.5464 634.25596 -10631.157 0 260.08301 0.00053546961 0.00052419162 + 150410 -6248.8624 -6255.0908 6.2283253 3736.4937 635.23574 -10626.82 0 298.4963 0.00078942035 0.00076923937 + 150420 -6248.8045 -6255.783 6.9785331 3729.7589 636.50574 -10622.048 0 334.45046 0.0010782453 0.0010498448 + 150430 -6248.8188 -6256.1774 7.3586792 3724.1971 637.82456 -10618.199 0 352.6692 0.00132869 0.0012979995 + 150440 -6248.9295 -6256.1201 7.190549 3721.3362 638.90034 -10616.357 0 344.61145 0.0014753925 0.001449261 + 150450 -6249.1044 -6255.6216 6.5171839 3721.9531 639.4447 -10617.019 0 312.34002 0.0014780699 0.0014596841 + 150460 -6249.2771 -6254.8403 5.5631528 3725.8944 639.2544 -10619.989 0 266.6175 0.0013313657 0.0013185077 + 150470 -6249.3938 -6253.999 4.6051132 3732.1597 638.29611 -10624.455 0 220.70286 0.0010655004 0.0010527386 + 150480 -6249.4467 -6253.2906 3.8438189 3739.1742 636.75438 -10629.219 0 184.21737 0.00073933547 0.00072238703 + 150490 -6249.4674 -6252.828 3.3606365 3745.1482 635.01039 -10632.987 0 161.06056 0.0004289196 0.00040773958 + 150500 -6249.4901 -6252.6515 3.1614113 3748.459 633.54623 -10634.657 0 151.51257 0.00021288984 0.00019114305 + 150510 -6249.5189 -6252.7578 3.2388622 3748.0299 632.80154 -10633.589 0 155.22445 0.00015457767 0.00013619968 + 150520 -6249.5237 -6253.1119 3.588223 3743.6593 633.02837 -10629.8 0 171.96778 0.00028264466 0.00026851463 + 150530 -6249.4637 -6253.6374 4.173732 3736.1969 634.19266 -10624.027 0 200.02866 0.00057631331 0.00056367818 + 150540 -6249.3178 -6254.215 4.8971913 3727.4501 635.95766 -10617.623 0 234.70089 0.00096330849 0.00094808666 + 150550 -6249.0976 -6254.7123 5.6146686 3719.775 637.76301 -10612.25 0 269.08642 0.0013354692 0.001315312 + 150560 -6248.8382 -6255.0343 6.1960839 3715.433 638.98695 -10609.454 0 296.95111 0.0015796879 0.0015555038 + 150570 -6248.5755 -6255.1562 6.5806264 3715.9042 639.1505 -10610.211 0 315.38054 0.0016144384 0.0015896602 + 150580 -6248.3279 -6255.1173 6.789417 3721.3804 638.0978 -10614.595 0 325.38696 0.0014188851 0.0013973059 + 150590 -6248.0893 -6254.9857 6.8963327 3730.6192 636.08406 -10621.689 0 330.51096 0.0010438888 0.0010273097 + 150600 -6247.8372 -6254.815 6.9777731 3741.2365 633.73141 -10629.783 0 334.41404 0.00060018854 0.00058701268 + 150610 -6247.5515 -6254.6092 7.05767 3750.3739 631.85952 -10636.843 0 338.24314 0.00022622248 0.00021204684 + 150620 -6247.2363 -6254.31 7.0736178 3755.5377 631.23701 -10641.085 0 339.00745 4.5193591e-05 2.5592197e-05 + 150630 -6246.9254 -6253.8312 6.9057634 3755.3244 632.32199 -10641.478 0 330.96293 0.00012580925 9.9595274e-05 + 150640 -6246.6607 -6253.1356 6.4748844 3749.8014 635.07064 -10638.008 0 310.31279 0.00046017792 0.00043049481 + 150650 -6246.4613 -6252.3037 5.8424716 3740.457 638.88884 -10631.65 0 280.00402 0.00096545143 0.00093772529 + 150660 -6246.3086 -6251.5379 5.2292877 3729.7749 642.76725 -10624.08 0 250.61681 0.0015074026 0.0014857356 + 150670 -6246.1533 -6251.0872 4.9339347 3720.5692 645.57438 -10617.231 0 236.46184 0.0019381059 0.0019224937 + 150680 -6245.9346 -6251.131 5.1964204 3715.2545 646.41508 -10612.801 0 249.04162 0.002136842 0.0021227519 + 150690 -6245.6082 -6251.6765 6.0683409 3715.2293 644.92949 -10611.835 0 290.82894 0.0020432308 0.0020238807 + 150700 -6245.176 -6252.526 7.3499621 3720.5066 641.42304 -10614.456 0 352.25142 0.0016742376 0.0016445813 + 150710 -6244.7021 -6253.3447 8.6425831 3729.6721 636.77625 -10619.793 0 414.20108 0.0011207175 0.0010808718 + 150720 -6244.2884 -6253.8046 9.5161623 3740.2024 632.16792 -10626.175 0 456.06789 0.00052389762 0.00047963776 + 150730 -6244.0155 -6253.734 9.7185525 3749.1069 628.72022 -10631.561 0 465.76756 3.8027777e-05 -2.4599215e-06 + 150740 -6243.8888 -6253.1971 9.3082999 3753.7525 627.19695 -10634.147 0 446.10596 -0.00021005954 -0.00024159862 + 150750 -6243.8422 -6252.4563 8.6141712 3752.6462 627.84154 -10632.944 0 412.83942 -0.00015438326 -0.00017873295 + 150760 -6243.8002 -6251.8246 8.0244319 3745.9413 630.36884 -10628.135 0 384.5758 0.00019057585 0.00016603403 + 150770 -6243.7451 -6251.4992 7.7541136 3735.4646 634.0754 -10621.039 0 371.62063 0.00073056622 0.00069914708 + 150780 -6243.7234 -6251.4987 7.7753347 3724.1873 638.02642 -10613.712 0 372.63767 0.0013175678 0.0012790783 + 150790 -6243.7939 -6251.7272 7.9333563 3715.2954 641.29103 -10608.314 0 380.21095 0.0017960217 0.0017565832 + 150800 -6243.974 -6252.072 8.0979415 3711.218 643.18572 -10606.476 0 388.0988 0.0020514993 0.0020179014 + 150810 -6244.2329 -6252.4502 8.2173307 3712.9714 643.45285 -10608.874 0 393.82059 0.0020416575 0.0020156121 + 150820 -6244.5276 -6252.8015 8.2739359 3719.9962 642.29878 -10615.096 0 396.53343 0.0017992954 0.0017763553 + 150830 -6244.8458 -6253.0666 8.2207783 3730.4549 640.27368 -10623.795 0 393.98582 0.0014110903 0.001384855 + 150840 -6245.2167 -6253.1935 7.976804 3741.8077 638.0512 -10633.052 0 382.2932 0.00098511985 0.00095308198 + 150850 -6245.676 -6253.1793 7.5033129 3751.4526 636.20672 -10640.839 0 359.60085 0.00062145022 0.00058719517 + 150860 -6246.2186 -6253.1065 6.8879208 3757.2844 635.07987 -10645.471 0 330.10781 0.0003930142 0.00036259853 + 150870 -6246.7905 -6253.1128 6.3223666 3758.1215 634.75431 -10645.989 0 303.00328 0.00033569 0.0003118259 + 150880 -6247.3283 -6253.2925 5.9642272 3753.9519 635.1243 -10642.369 0 285.83923 0.00044479916 0.0004246082 + 150890 -6247.8033 -6253.612 5.8086471 3745.9228 635.98317 -10635.518 0 278.38296 0.00067845438 0.0006565651 + 150900 -6248.2271 -6253.9199 5.6928193 3736.0332 637.08373 -10627.037 0 272.83184 0.00096905008 0.00094259611 + 150910 -6248.6225 -6254.0517 5.4291998 3726.602 638.1618 -10618.815 0 260.19772 0.0012408993 0.0012118427 + 150920 -6248.9934 -6253.9492 4.9558165 3719.6845 638.94562 -10612.579 0 237.51053 0.0014284374 0.0014016811 + 150930 -6249.3187 -6253.7101 4.3914155 3716.6267 639.1796 -10609.516 0 210.46127 0.0014892338 0.0014686304 + 150940 -6249.5702 -6253.5379 3.9676308 3717.8553 638.67623 -10610.069 0 190.15113 0.0014094991 0.0013950408 + 150950 -6249.7327 -6253.6281 3.8954101 3722.8944 637.38715 -10613.91 0 186.68991 0.001203707 0.001191672 + 150960 -6249.8134 -6254.0617 4.2482332 3730.5325 635.46525 -10620.059 0 203.59917 0.00091114659 0.00089666368 + 150970 -6249.8404 -6254.7583 4.917834 3739.0747 633.28121 -10627.114 0 235.6902 0.00059060338 0.00057071903 + 150980 -6249.8528 -6255.51 5.6572163 3746.6504 631.36701 -10633.527 0 271.12555 0.00031227644 0.00028761958 + 150990 -6249.8843 -6256.0739 6.1895945 3751.5644 630.28524 -10637.924 0 296.6401 0.00014560202 0.00011973439 + 151000 -6249.9466 -6256.2775 6.3309547 3752.6603 630.45865 -10639.396 0 303.41487 0.00014327943 0.00012025013 + 151010 -6250.0228 -6256.0839 6.0610639 3749.6297 632.01984 -10637.733 0 290.48019 0.00032464574 0.0003064494 + 151020 -6250.0819 -6255.5885 5.5066168 3743.1649 634.73975 -10633.493 0 263.90798 0.00066417722 0.00064985355 + 151030 -6250.1005 -6254.9603 4.8597632 3734.8689 638.06395 -10627.893 0 232.90712 0.0010913429 0.0010781114 + 151040 -6250.0758 -6254.3669 4.291111 3726.8994 641.24637 -10622.513 0 205.65412 0.0015048014 0.0014900646 + 151050 -6250.0207 -6253.9197 3.8989177 3721.4206 643.53977 -10618.88 0 186.85801 0.001798085 0.0017808149 + 151060 -6249.9507 -6253.651 3.7002703 3720.0135 644.3879 -10618.052 0 177.33771 0.0018890097 0.0018699057 + 151070 -6249.8733 -6253.5283 3.6549368 3723.2136 643.56691 -10620.309 0 175.16508 0.0017437735 0.0017244234 + 151080 -6249.7845 -6253.4932 3.708776 3730.3123 641.24073 -10625.046 0 177.74536 0.001388678 0.0013702641 + 151090 -6249.6714 -6253.5036 3.8321857 3739.4936 637.92282 -10630.92 0 183.65984 0.0009059617 0.00088828378 + 151100 -6249.523 -6253.5515 4.0285225 3748.2857 634.35917 -10636.196 0 193.0694 0.0004144815 0.00039613315 + 151110 -6249.34 -6253.6558 4.3158273 3754.2105 631.3577 -10639.224 0 206.83866 4.010737e-05 1.9827836e-05 + 151120 -6249.1344 -6253.844 4.7096027 3755.45 629.59383 -10638.888 0 225.71058 -0.00011685042 -0.00013887394 + 151130 -6248.9193 -6254.1378 5.2185184 3751.3602 629.43294 -10634.931 0 250.10068 -9.5324536e-06 -3.1723339e-05 + 151140 -6248.6985 -6254.5364 5.8379512 3742.7113 630.82097 -10628.069 0 279.78738 0.00033943987 0.00031863414 + 151150 -6248.4668 -6254.9989 6.5320804 3731.5751 633.28773 -10619.862 0 313.05394 0.00083980183 0.0008202837 + 151160 -6248.2208 -6255.4365 7.2156474 3720.8435 636.07716 -10612.357 0 345.81431 0.0013554339 0.0013348365 + 151170 -6247.9718 -6255.7202 7.7483378 3713.4689 638.37466 -10607.564 0 371.34383 0.001741533 0.0017163682 + 151180 -6247.7535 -6255.7061 7.952563 3711.6222 639.56144 -10606.89 0 381.13144 0.0018868652 0.0018553175 + 151190 -6247.6119 -6255.2853 7.6733473 3716.0161 639.40785 -10610.709 0 367.74986 0.0017488548 0.0017134925 + 151200 -6247.5742 -6254.4575 6.8832987 3725.6102 638.13517 -10618.203 0 329.88629 0.0013705014 0.0013380319 + 151210 -6247.6165 -6253.3908 5.7742603 3737.8345 636.32561 -10627.551 0 276.73495 0.00087145238 0.00084825657 + 151220 -6247.6657 -6252.3975 4.7318477 3749.3201 634.72069 -10636.438 0 226.77669 0.00041222581 0.00039864538 + 151230 -6247.6438 -6251.7948 4.1510387 3756.9374 633.98454 -10642.717 0 198.94107 0.00014120886 0.0001301775 + 151240 -6247.5241 -6251.7263 4.2022118 3758.7716 634.50416 -10645.002 0 201.39357 0.00014417796 0.00012662559 + 151250 -6247.3481 -6252.0887 4.7406494 3754.6529 636.27262 -10643.014 0 227.19852 0.00041759721 0.0003901803 + 151260 -6247.1866 -6252.6287 5.4421313 3746.0656 638.87988 -10637.574 0 260.81747 0.00087576686 0.00084350665 + 151270 -6247.0787 -6253.115 6.0363063 3735.5664 641.6202 -10630.302 0 289.29367 0.0013844546 0.0013558876 + 151280 -6247.0062 -6253.4417 6.4354774 3726.0048 643.69457 -10623.141 0 308.42419 0.001803227 0.0017831425 + 151290 -6246.9226 -6253.6154 6.692764 3719.7967 644.44638 -10617.859 0 320.7548 0.0020216549 0.0020080687 + 151300 -6246.8014 -6253.689 6.8875226 3718.3778 643.55286 -10615.62 0 330.08873 0.0019836115 0.0019706579 + 151310 -6246.6583 -6253.7156 7.0572445 3721.8977 641.1155 -10616.729 0 338.22275 0.0016987248 0.0016818743 + 151320 -6246.5339 -6253.74 7.2061104 3729.2041 637.63136 -10620.575 0 345.35724 0.001239559 0.0012185815 + 151330 -6246.4591 -6253.8007 7.341683 3738.1467 633.86351 -10625.811 0 351.85464 0.00072322938 0.0007011096 + 151340 -6246.4351 -6253.9179 7.4828205 3746.1606 630.65111 -10630.73 0 358.61874 0.0002803621 0.00025985339 + 151350 -6246.4407 -6254.0681 7.6273811 3750.9891 628.70675 -10633.764 0 365.5469 1.982129e-05 8.5095468e-07 + 151360 -6246.4568 -6254.1734 7.7166007 3751.3295 628.4448 -10633.948 0 369.8228 -1.9823016e-07 -2.0193505e-05 + 151370 -6246.4854 -6254.1288 7.6433266 3747.1897 629.87905 -10631.198 0 366.3111 0.00021376518 0.00019043885 + 151380 -6246.5453 -6253.8645 7.3191635 3739.8331 632.61949 -10626.317 0 350.77538 0.00059532117 0.0005691926 + 151390 -6246.6481 -6253.4101 6.762065 3731.3451 635.97894 -10620.734 0 324.0761 0.0010404568 0.0010148298 + 151400 -6246.7791 -6252.9099 6.1307774 3723.9996 639.1665 -10616.076 0 293.82125 0.0014391249 0.0014173114 + 151410 -6246.9021 -6252.5619 5.6597955 3719.6562 641.50843 -10613.727 0 271.24916 0.00170459 0.0016869178 + 151420 -6246.9835 -6252.5101 5.5265929 3719.3536 642.62053 -10614.484 0 264.86534 0.0017913693 0.0017746682 + 151430 -6247.0163 -6252.7573 5.7409441 3723.145 642.47551 -10618.378 0 275.13825 0.0016992491 0.0016792865 + 151440 -6247.0251 -6253.1604 6.1353034 3730.1438 641.354 -10624.658 0 294.03816 0.0014665612 0.0014413096 + 151450 -6247.0479 -6253.5128 6.4648274 3738.7362 639.71399 -10631.963 0 309.8308 0.0011574792 0.0011284659 + 151460 -6247.1097 -6253.6562 6.5464664 3746.9347 638.03805 -10638.629 0 313.7434 0.00084671893 0.00081758893 + 151470 -6247.2068 -6253.5534 6.3466067 3752.8245 636.71078 -10643.089 0 304.165 0.00060393314 0.00057774562 + 151480 -6247.3141 -6253.2919 5.9778075 3755.0047 635.95215 -10644.249 0 286.49008 0.00048008072 0.00045745747 + 151490 -6247.4062 -6253.0282 5.6220376 3752.9209 635.80539 -10641.754 0 269.43959 0.00049755721 0.00047686305 + 151500 -6247.4779 -6252.9072 5.4292656 3747.0092 636.16366 -10636.08 0 260.20087 0.00064553129 0.00062489258 + 151510 -6247.5469 -6253.0052 5.4583119 3738.6043 636.81634 -10628.426 0 261.59293 0.00088262039 0.00086194827 + 151520 -6247.6336 -6253.3286 5.6950054 3729.6165 637.50064 -10620.446 0 272.93661 0.0011476616 0.0011283531 + 151530 -6247.7431 -6253.8399 6.0967963 3722.0783 637.95455 -10613.873 0 292.19269 0.0013747164 0.0013571277 + 151540 -6247.8749 -6254.4592 6.584354 3717.6963 637.97143 -10610.127 0 315.55919 0.0015062799 0.0014881965 + 151550 -6248.0524 -6255.0465 6.9941425 3717.492 637.4499 -10609.988 0 335.19855 0.0015029283 0.0014815763 + 151560 -6248.326 -6255.4264 7.100446 3721.5491 636.42469 -10613.4 0 340.29321 0.0013525013 0.0013281704 + 151570 -6248.7263 -6255.4806 6.7543446 3728.9136 635.06772 -10619.462 0 323.70609 0.0010791015 0.0010558226 + 151580 -6249.2152 -6255.236 6.0207851 3737.7541 633.65886 -10626.649 0 288.5498 0.00074444682 0.00072634535 + 151590 -6249.7005 -6254.8553 5.1547337 3745.8312 632.5337 -10633.22 0 247.04376 0.00043386077 0.0004210596 + 151600 -6250.1032 -6254.5287 4.4255132 3751.139 632.01606 -10637.684 0 212.09542 0.00023023244 0.0002186802 + 151610 -6250.4043 -6254.3592 3.9548915 3752.462 632.34328 -10639.164 0 189.54059 0.00018884694 0.00017395788 + 151620 -6250.6361 -6254.3288 3.6926662 3749.6531 633.5963 -10637.578 0 176.97328 0.00032350241 0.00030388479 + 151630 -6250.8402 -6254.3506 3.5104756 3743.5938 635.6507 -10633.595 0 168.24169 0.00060540489 0.00058357596 + 151640 -6251.0351 -6254.3513 3.3161999 3735.9156 638.16646 -10628.433 0 158.93091 0.00097098627 0.00095102984 + 151650 -6251.2109 -6254.3211 3.1102766 3728.589 640.63019 -10623.54 0 149.06191 0.0013351165 0.0013195726 + 151660 -6251.3448 -6254.3137 2.9688178 3723.474 642.45452 -10620.242 0 142.28241 0.0016084258 0.001596736 + 151670 -6251.4212 -6254.4077 2.9865734 3721.9023 643.1224 -10619.432 0 143.13335 0.0017176883 0.0017069152 + 151680 -6251.4414 -6254.6609 3.2195038 3724.3573 642.34405 -10621.362 0 154.29669 0.0016257511 0.0016127442 + 151690 -6251.4227 -6255.0744 3.6517403 3730.3185 640.17677 -10625.57 0 175.01189 0.0013450931 0.0013286556 + 151700 -6251.3873 -6255.5862 4.1989111 3738.3241 637.05635 -10630.967 0 201.23538 0.00093948602 0.0009212083 + 151710 -6251.3477 -6256.0936 4.745847 3746.2774 633.71127 -10636.082 0 227.44762 0.00051126718 0.00049436901 + 151720 -6251.2971 -6256.4924 5.1952815 3751.9631 630.9726 -10639.428 0 248.98704 0.00017574327 0.00016252189 + 151730 -6251.2135 -6256.705 5.4914617 3753.6687 629.53572 -10639.909 0 263.18166 2.8312616e-05 1.8085618e-05 + 151740 -6251.0796 -6256.6821 5.6024979 3750.7294 629.7532 -10637.165 0 268.50314 0.00011370552 0.00010320912 + 151750 -6250.9029 -6256.3945 5.4916631 3743.7923 631.52774 -10631.715 0 263.19131 0.00040879142 0.00039509079 + 151760 -6250.716 -6255.8451 5.1290695 3734.6666 634.33927 -10624.851 0 245.81379 0.00082765894 0.00081106551 + 151770 -6250.5508 -6255.101 4.550119 3725.7908 637.39679 -10618.288 0 218.06723 0.0012488526 0.0012328993 + 151780 -6250.4097 -6254.309 3.8992525 3719.5178 639.86931 -10613.696 0 186.87406 0.0015540124 0.0015421817 + 151790 -6250.2597 -6253.6533 3.3935809 3717.4777 641.12504 -10612.256 0 162.63944 0.0016623624 0.0016544624 + 151800 -6250.0552 -6253.2677 3.2124817 3720.201 640.90637 -10614.375 0 153.96015 0.0015499418 0.0015415451 + 151810 -6249.771 -6253.1622 3.3911733 3727.041 639.3922 -10619.595 0 162.52405 0.0012516715 0.001237406 + 151820 -6249.4203 -6253.2253 3.8050003 3736.3363 637.1359 -10626.698 0 182.35696 0.00085079021 0.00082880804 + 151830 -6249.0431 -6253.3134 4.270371 3745.7569 634.89917 -10633.969 0 204.66014 0.00046026185 0.00043381008 + 151840 -6248.6684 -6253.3589 4.6905189 3752.818 633.42564 -10639.603 0 224.79599 0.00019718687 0.00017154129 + 151850 -6248.2895 -6253.4068 5.1172902 3755.5324 633.21645 -10642.156 0 245.24926 0.00015076134 0.00012837636 + 151860 -6247.8802 -6253.5493 5.6690852 3753.0453 634.37466 -10640.969 0 271.69437 0.00035076266 0.0003295538 + 151870 -6247.4364 -6253.8293 6.3928896 3745.9895 636.5683 -10636.387 0 306.38314 0.00075102819 0.00072731439 + 151880 -6246.9935 -6254.204 7.2104984 3736.3483 639.12813 -10629.68 0 345.56754 0.0012401546 0.0012126717 + 151890 -6246.6011 -6254.5843 7.9832322 3726.8411 641.25591 -10622.681 0 382.60128 0.0016780142 0.0016485701 + 151900 -6246.2857 -6254.887 8.6013355 3720.0746 642.2815 -10617.243 0 412.22426 0.0019421892 0.0019126674 + 151910 -6246.0458 -6255.0417 8.9959166 3717.7832 641.88227 -10614.707 0 431.1348 0.0019644464 0.0019341396 + 151920 -6245.8797 -6254.962 9.0823193 3720.3929 640.1841 -10615.539 0 435.2757 0.0017458125 0.001712668 + 151930 -6245.8049 -6254.5522 8.747328 3726.9724 637.70309 -10619.228 0 419.22104 0.0013510381 0.0013155152 + 151940 -6245.8352 -6253.7877 7.9525801 3735.5265 635.15178 -10624.466 0 381.13226 0.00088879651 0.00085528022 + 151950 -6245.941 -6252.8058 6.864853 3743.5587 633.1933 -10629.558 0 329.00227 0.00048218667 0.00045535845 + 151960 -6246.0504 -6251.8958 5.8454036 3748.7922 632.24611 -10632.934 0 280.14454 0.00023391916 0.00021367281 + 151970 -6246.0972 -6251.3596 5.2624035 3749.8442 632.40438 -10633.608 0 252.2039 0.00019606652 0.00017671084 + 151980 -6246.0685 -6251.3437 5.2751862 3746.6078 633.47581 -10631.427 0 252.81652 0.00035730189 0.00033228451 + 151990 -6246.0092 -6251.7693 5.7600916 3740.1936 635.09454 -10627.057 0 276.05591 0.00065361915 0.00062138415 + 152000 -6245.9836 -6252.4009 6.4172975 3732.4868 636.85433 -10621.742 0 307.5529 0.00099615705 0.00096175734 + 152010 -6246.0259 -6252.9899 6.9640085 3725.5367 638.41367 -10616.94 0 333.75436 0.001301602 0.0012725866 + 152020 -6246.1179 -6253.3906 7.2726831 3721.0227 639.54395 -10613.957 0 348.54778 0.0015116431 0.0014918144 + 152030 -6246.2108 -6253.5832 7.3724311 3719.9407 640.12411 -10613.648 0 353.32827 0.0015969434 0.0015834378 + 152040 -6246.2726 -6253.625 7.3524411 3722.5043 640.11235 -10616.242 0 352.37023 0.0015518225 0.0015378113 + 152050 -6246.3154 -6253.5909 7.2754973 3728.1725 639.53153 -10621.295 0 348.68265 0.0013896554 0.0013698851 + 152060 -6246.3828 -6253.5452 7.1623575 3735.7469 638.4833 -10627.775 0 343.26036 0.0011430496 0.0011174761 + 152070 -6246.5134 -6253.5359 7.0224803 3743.5531 637.17283 -10634.262 0 336.55666 0.0008643808 0.00083746992 + 152080 -6246.713 -6253.5943 6.8813609 3749.7469 635.90524 -10639.247 0 329.79343 0.00061989881 0.00059666291 + 152090 -6246.9526 -6253.7301 6.7775232 3752.7388 635.02709 -10641.496 0 324.81694 0.00047492567 0.00045680173 + 152100 -6247.1936 -6253.922 6.7284369 3751.652 634.82196 -10640.396 0 322.46445 0.0004738386 0.00045748612 + 152110 -6247.4199 -6254.1142 6.6943519 3746.6511 635.40091 -10636.166 0 320.83091 0.00062283468 0.00060282346 + 152120 -6247.6514 -6254.2368 6.5854608 3738.9714 636.63609 -10629.844 0 315.61223 0.00088383778 0.00085709028 + 152130 -6247.926 -6254.2481 6.32206 3730.5876 638.1712 -10623.007 0 302.98859 0.0011835367 0.001151973 + 152140 -6248.2668 -6254.1682 5.9014654 3723.6298 639.51405 -10617.312 0 282.83133 0.0014348852 0.0014042912 + 152150 -6248.6596 -6254.0789 5.4192166 3719.7693 640.18477 -10614.033 0 259.71927 0.0015633734 0.0015393011 + 152160 -6249.0579 -6254.0841 5.0262012 3719.7887 639.86965 -10613.742 0 240.88376 0.0015285655 0.0015120695 + 152170 -6249.4118 -6254.2467 4.8349153 3723.4578 638.52849 -10616.233 0 231.71627 0.0013333775 0.0013198673 + 152180 -6249.7042 -6254.5294 4.8251753 3729.6955 636.41951 -10620.644 0 231.24947 0.0010197736 0.0010024429 + 152190 -6249.9634 -6254.7945 4.8310674 3736.8938 634.03323 -10625.721 0 231.53186 0.00065629337 0.00063178928 + 152200 -6250.2345 -6254.8863 4.6518289 3743.2755 631.95605 -10630.118 0 222.94174 0.00032387542 0.00029528621 + 152210 -6250.5329 -6254.7486 4.2156283 3747.2427 630.70782 -10632.699 0 202.03656 0.00010144469 7.5666027e-05 + 152220 -6250.8264 -6254.4791 3.6526373 3747.7277 630.60461 -10632.811 0 175.05487 4.8937484e-05 3.0773762e-05 + 152230 -6251.0626 -6254.269 3.2063345 3744.5099 631.68279 -10630.462 0 153.66554 0.00018866438 0.00017714731 + 152240 -6251.214 -6254.2783 3.06431 3738.3769 633.69416 -10626.349 0 146.85893 0.00049260169 0.0004825455 + 152250 -6251.2965 -6254.5497 3.2531575 3730.9954 636.16362 -10621.709 0 155.90956 0.00088473437 0.00087142791 + 152260 -6251.3514 -6255.0123 3.660889 3724.474 638.49652 -10617.983 0 175.45034 0.0012610243 0.0012436154 + 152270 -6251.4126 -6255.5458 4.1331828 3720.7468 640.12117 -10616.414 0 198.08531 0.0015203194 0.0015014926 + 152280 -6251.4867 -6256.0395 4.5527568 3720.9962 640.63967 -10617.675 0 218.19365 0.0015944584 0.00157753 + 152290 -6251.5562 -6256.4146 4.8584042 3725.3031 639.94525 -10621.663 0 232.84199 0.001467255 0.0014534877 + 152300 -6251.5984 -6256.6196 5.0212273 3732.6247 638.26254 -10627.507 0 240.64539 0.0011774478 0.0011655278 + 152310 -6251.603 -6256.6229 5.0198775 3741.0877 636.08862 -10633.799 0 240.5807 0.00080637685 0.00079398254 + 152320 -6251.576 -6256.4192 4.8432115 3748.4916 634.04794 -10638.959 0 232.11387 0.0004550918 0.00044092343 + 152330 -6251.529 -6256.0443 4.51524 3752.8732 632.70813 -10641.626 0 216.39563 0.00021742889 0.00020197473 + 152340 -6251.4653 -6255.5735 4.1082269 3752.9944 632.41927 -10640.987 0 196.88928 0.00015565367 0.00014038202 + 152350 -6251.3758 -6255.0943 3.7185015 3748.6488 633.22645 -10636.97 0 178.21146 0.00028442066 0.00027055113 + 152360 -6251.2438 -6254.6672 3.4234279 3740.7202 634.87268 -10630.26 0 164.06988 0.00056726912 0.00055518973 + 152370 -6251.0487 -6254.3093 3.2605776 3730.9775 636.87689 -10622.164 0 156.26517 0.00092670013 0.00091593079 + 152380 -6250.7674 -6254.0077 3.2403031 3721.6681 638.65609 -10614.332 0 155.29351 0.0012643317 0.0012535037 + 152390 -6250.3805 -6253.7449 3.3643572 3715.0225 639.66101 -10608.428 0 161.23887 0.0014847112 0.0014717386 + 152400 -6249.8895 -6253.5161 3.6266105 3712.7656 639.50573 -10605.787 0 173.80752 0.0015176815 0.0015008123 + 152410 -6249.3308 -6253.3403 4.0095142 3715.6704 638.0799 -10607.091 0 192.15842 0.0013377943 0.0013174229 + 152420 -6248.764 -6253.275 4.511 3723.2132 635.62269 -10612.111 0 216.19243 0.00097899977 0.00095841739 + 152430 -6248.2269 -6253.4186 5.1916493 3733.5151 632.71382 -10619.647 0 248.81297 0.00053638684 0.0005194357 + 152440 -6247.7065 -6253.864 6.1575063 3743.7772 630.14756 -10627.789 0 295.10225 0.00014424133 0.00013116565 + 152450 -6247.17 -6254.5999 7.4299074 3751.1515 628.71422 -10634.466 0 356.08285 -6.80772e-05 -8.1956681e-05 + 152460 -6246.6297 -6255.4354 8.805688 3753.6799 628.96194 -10638.077 0 422.01798 -2.3558767e-05 -4.3988398e-05 + 152470 -6246.1658 -6256.0415 9.8756785 3750.8911 631.0139 -10637.947 0 473.29792 0.000275019 0.00024680863 + 152480 -6245.875 -6256.1152 10.240229 3743.851 634.49958 -10634.466 0 490.76925 0.00074934577 0.00071826918 + 152490 -6245.7887 -6255.5553 9.7666057 3734.722 638.63534 -10628.913 0 468.07055 0.0012757927 0.0012488136 + 152500 -6245.8444 -6254.5198 8.6754004 3726.0613 642.44388 -10623.025 0 415.77386 0.0017246024 0.0017048521 + 152510 -6245.9374 -6253.3267 7.389325 3720.1189 645.04251 -10618.488 0 354.13791 0.0019925654 0.0019772092 + 152520 -6245.9972 -6252.281 6.2838616 3718.3119 645.89484 -10616.488 0 301.1579 0.0020235543 0.0020070238 + 152530 -6246.0182 -6251.5566 5.5384571 3720.9349 644.93741 -10617.429 0 265.43394 0.0018182628 0.0017973107 + 152540 -6246.0304 -6251.192 5.1615974 3727.1181 642.54851 -10620.859 0 247.37271 0.0014334449 0.0014092181 + 152550 -6246.0526 -6251.1549 5.1023158 3735.0508 639.39012 -10625.596 0 244.5316 0.00096792715 0.00094372755 + 152560 -6246.0742 -6251.392 5.3177887 3742.4629 636.19624 -10630.051 0 254.85827 0.00053556087 0.00051327067 + 152570 -6246.0742 -6251.8322 5.7580392 3747.2551 633.58559 -10632.673 0 275.95755 0.00023329752 0.00021211733 + 152580 -6246.0467 -6252.381 6.3342662 3748.0761 631.94542 -10632.403 0 303.57358 0.00011700063 9.4979378e-05 + 152590 -6246.0082 -6252.9431 6.9348049 3744.6582 631.39294 -10628.994 0 332.35476 0.00019271175 0.00016875388 + 152600 -6245.9859 -6253.4566 7.4707528 3737.8416 631.79848 -10623.097 0 358.04039 0.00042195506 0.00039652249 + 152610 -6246.0053 -6253.9043 7.8990242 3729.3221 632.85179 -10616.078 0 378.56556 0.00073535996 0.00071005099 + 152620 -6246.0849 -6254.2969 8.211988 3721.2057 634.15525 -10609.658 0 393.56454 0.001050485 0.0010272102 + 152630 -6246.2321 -6254.6486 8.4165269 3715.4802 635.3268 -10605.456 0 403.3672 0.0012912981 0.001271236 + 152640 -6246.4423 -6254.9562 8.5138796 3713.5333 636.09233 -10604.582 0 408.03288 0.0014055381 0.0013881382 + 152650 -6246.705 -6255.1816 8.4765899 3715.8402 636.34648 -10607.368 0 406.24575 0.0013751543 0.0013581168 + 152660 -6247.0145 -6255.2482 8.2336706 3721.8844 636.16591 -10613.298 0 394.60369 0.0012172225 0.0011981787 + 152670 -6247.3707 -6255.0691 7.6983518 3730.3043 635.76863 -10621.142 0 368.94821 0.00097697211 0.0009558735 + 152680 -6247.7639 -6254.615 6.851082 3739.2065 635.42908 -10629.251 0 328.34229 0.000716701 0.00069644176 + 152690 -6248.1584 -6253.9767 5.818273 3746.5838 635.38017 -10635.941 0 278.84429 0.00050280709 0.00048684232 + 152700 -6248.5024 -6253.3573 4.8549648 3750.774 635.7443 -10639.876 0 232.67715 0.00039141248 0.00038041448 + 152710 -6248.7596 -6252.9769 4.2172873 3750.8668 636.51873 -10640.362 0 202.11607 0.00041442007 0.0004053823 + 152720 -6248.9338 -6252.9534 4.0196584 3746.9406 637.60257 -10637.497 0 192.64459 0.0005702467 0.00055901803 + 152730 -6249.0625 -6253.2491 4.186609 3740.0382 638.82986 -10632.117 0 200.64579 0.00082311041 0.00080790349 + 152740 -6249.1886 -6253.7138 4.5252236 3731.8871 639.98453 -10625.585 0 216.8741 0.001111475 0.0010940698 + 152750 -6249.331 -6254.1822 4.8511772 3724.4552 640.80418 -10619.442 0 232.49563 0.0013626372 0.0013463346 + 152760 -6249.4771 -6254.5496 5.0725533 3719.4807 641.0015 -10615.032 0 243.10522 0.0015088121 0.0014952756 + 152770 -6249.6012 -6254.7871 5.185987 3718.0847 640.32661 -10613.198 0 248.54159 0.0015013541 0.0014893696 + 152780 -6249.6907 -6254.9112 5.2205549 3720.5265 638.66398 -10614.102 0 250.19828 0.0013223083 0.0013094005 + 152790 -6249.7556 -6254.9538 5.1982151 3726.1262 636.12585 -10617.206 0 249.12763 0.00099290194 0.0009779243 + 152800 -6249.8148 -6254.9558 5.140963 3733.3771 633.09201 -10621.425 0 246.38379 0.00057600178 0.00056006145 + 152810 -6249.8744 -6254.9701 5.0956619 3740.268 630.16079 -10625.399 0 244.21271 0.00016749406 0.00015238904 + 152820 -6249.9205 -6255.0475 5.1269809 3744.7882 628.01276 -10627.848 0 245.71369 -0.00012595131 -0.00014006902 + 152830 -6249.9347 -6255.1984 5.2637193 3745.5051 627.22529 -10627.929 0 252.26696 -0.00021829661 -0.00023340879 + 152840 -6249.9171 -6255.3626 5.445489 3742.031 628.09531 -10625.489 0 260.97839 -7.3409151e-05 -9.1451096e-05 + 152850 -6249.8912 -6255.4322 5.5409438 3735.1919 630.52471 -10621.149 0 265.55312 0.00028043104 0.00026020884 + 152860 -6249.8803 -6255.3284 5.4481709 3726.8167 634.00924 -10616.154 0 261.10692 0.00075720423 0.00073820943 + 152870 -6249.8787 -6255.0709 5.1921425 3719.2244 637.74945 -10612.045 0 248.8366 0.0012375897 0.0012227794 + 152880 -6249.8511 -6254.7707 4.9195347 3714.5977 640.86401 -10610.232 0 235.77171 0.0016012132 0.0015899743 + 152890 -6249.7603 -6254.5487 4.7883828 3714.4243 642.64199 -10611.615 0 229.48617 0.0017569979 0.0017453144 + 152900 -6249.5962 -6254.448 4.8518105 3719.1153 642.74848 -10616.312 0 232.52598 0.0016658695 0.0016497936 + 152910 -6249.3782 -6254.4144 5.0362378 3727.8453 641.31354 -10623.573 0 241.36477 0.0013525161 0.0013316833 + 152920 -6249.129 -6254.3538 5.2248411 3738.6573 638.87951 -10631.891 0 250.4037 0.00090275918 0.00088057774 + 152930 -6248.8461 -6254.209 5.3628652 3748.8621 636.23149 -10639.303 0 257.01859 0.00044379599 0.00042408819 + 152940 -6248.4987 -6253.9856 5.4868455 3755.7004 634.16998 -10643.856 0 262.96042 0.00010950192 9.2842982e-05 + 152950 -6248.0546 -6253.7171 5.6624925 3757.109 633.29005 -10644.116 0 271.37842 5.618089e-07 -1.6178446e-05 + 152960 -6247.5128 -6253.4228 5.910022 3752.3491 633.81645 -10639.588 0 283.24141 0.000153243 0.00013261354 + 152970 -6246.9129 -6253.11 6.1970838 3742.2803 635.52792 -10630.918 0 296.99903 0.00052735636 0.00050195927 + 152980 -6246.3115 -6252.8116 6.5001753 3729.1886 637.79589 -10619.796 0 311.52487 0.0010166952 0.00098963047 + 152990 -6245.7447 -6252.6145 6.8698124 3716.2062 639.74998 -10608.571 0 329.23996 0.0014788997 0.001454807 + 153000 -6245.2062 -6252.6357 7.4294835 3706.4863 640.5479 -10599.67 0 356.06254 0.0017766729 0.0017575512 + 153010 -6244.6634 -6252.9466 8.2832064 3702.3716 639.67574 -10594.994 0 396.97773 0.0018181303 0.0018007606 + 153020 -6244.1077 -6253.4879 9.3802187 3704.7937 637.16635 -10595.448 0 449.55271 0.0015835866 0.0015612051 + 153030 -6243.5977 -6254.043 10.445293 3713.0427 633.63434 -10600.72 0 500.59703 0.0011311007 0.0010988459 + 153040 -6243.2463 -6254.3187 11.072387 3724.9365 630.09326 -10609.348 0 530.6509 0.00058072915 0.00054070004 + 153050 -6243.1427 -6254.1131 10.970369 3737.3472 627.61644 -10619.077 0 525.76166 8.2960601e-05 4.3768828e-05 + 153060 -6243.2715 -6253.4611 10.189643 3747.0055 626.9798 -10627.446 0 488.34487 -0.00022149421 -0.00025151644 + 153070 -6243.5165 -6252.6287 9.1122568 3751.4252 628.43359 -10632.487 0 436.71047 -0.00024218487 -0.00026217155 + 153080 -6243.7537 -6251.9419 8.1882397 3749.6626 631.67492 -10633.279 0 392.42639 3.2359126e-05 1.5373187e-05 + 153090 -6243.9373 -6251.5911 7.653784 3742.5902 635.98798 -10630.169 0 366.81227 0.00053021329 0.00050781052 + 153100 -6244.1061 -6251.5593 7.4532293 3732.5532 640.46392 -10624.576 0 357.20057 0.0011193458 0.0010887817 + 153110 -6244.326 -6251.6949 7.3689551 3722.5706 644.22287 -10618.488 0 353.16168 0.0016493075 0.0016152849 + 153120 -6244.6259 -6251.8467 7.2207725 3715.4083 646.59034 -10613.845 0 346.05994 0.0019953472 0.0019657414 + 153130 -6244.9738 -6251.9645 6.9906307 3712.8402 647.20384 -10612.008 0 335.03025 0.0020893923 0.0020687168 + 153140 -6245.3057 -6252.1011 6.7954336 3715.297 646.04549 -10613.444 0 325.67531 0.001928759 0.0019147868 + 153150 -6245.5825 -6252.3326 6.7501223 3721.9229 643.41267 -10617.668 0 323.50374 0.0015648525 0.0015512026 + 153160 -6245.8215 -6252.6813 6.8598685 3730.9105 639.84168 -10623.433 0 328.76339 0.0010831386 0.0010652157 + 153170 -6246.0747 -6253.1144 7.0397575 3739.9564 635.99782 -10629.069 0 337.38468 0.00058426573 0.00056282196 + 153180 -6246.3791 -6253.5944 7.2153018 3746.7576 632.54848 -10632.9 0 345.79775 0.00016763625 0.00014689714 + 153190 -6246.729 -6254.1069 7.3779007 3749.5147 630.04177 -10633.663 0 353.5904 -8.5952786e-05 -0.00010309213 + 153200 -6247.0928 -6254.6316 7.5388022 3747.3795 628.81406 -10630.825 0 361.3017 -0.00013222058 -0.00014691034 + 153210 -6247.4495 -6255.0977 7.6482857 3740.7136 628.94161 -10624.753 0 366.54876 2.4612947e-05 8.861286e-06 + 153220 -6247.8028 -6255.3897 7.5869209 3731.0349 630.24114 -10616.666 0 363.60782 0.00033291886 0.00031395225 + 153230 -6248.1615 -6255.4154 7.2539005 3720.6274 632.31589 -10608.359 0 347.64761 0.00070877816 0.00068748112 + 153240 -6248.5131 -6255.1758 6.6626646 3711.9438 634.64067 -10601.76 0 319.31227 0.0010584582 0.0010371497 + 153250 -6248.8266 -6254.7692 5.94253 3707.0031 636.67415 -10598.446 0 284.79938 0.0012996233 0.0012796839 + 153260 -6249.0776 -6254.3315 5.2539739 3706.9426 637.97781 -10599.252 0 251.79991 0.0013772227 0.001358598 + 153270 -6249.263 -6253.9749 4.7118774 3711.7864 638.31432 -10604.076 0 225.8196 0.0012743198 0.0012565725 + 153280 -6249.3935 -6253.7659 4.3723938 3720.4457 637.7013 -10611.913 0 209.54964 0.0010172044 0.0010001054 + 153290 -6249.4768 -6253.7286 4.2518615 3730.9555 636.40772 -10621.092 0 203.77306 0.00067150201 0.00065452454 + 153300 -6249.515 -6253.845 4.3299221 3740.918 634.89143 -10629.654 0 207.51416 0.0003274457 0.00030934839 + 153310 -6249.5132 -6254.0529 4.539642 3748.0556 633.68637 -10635.795 0 217.56512 7.7458729e-05 5.694497e-05 + 153320 -6249.4855 -6254.2641 4.7786173 3750.7388 633.25855 -10638.261 0 229.01815 -7.4169943e-06 -3.0465957e-05 + 153330 -6249.4512 -6254.4034 4.9521848 3748.3669 633.86188 -10636.632 0 237.33648 0.00010379579 7.9866634e-05 + 153340 -6249.4243 -6254.4486 5.0243666 3741.5207 635.43483 -10631.404 0 240.79584 0.00039222221 0.00037016461 + 153350 -6249.4037 -6254.4459 5.0422831 3731.8423 637.57973 -10623.868 0 241.6545 0.00079078155 0.00077283975 + 153360 -6249.3738 -6254.4867 5.112857 3721.6613 639.65049 -10615.798 0 245.0368 0.0011981566 0.0011845605 + 153370 -6249.315 -6254.6514 5.336315 3713.4447 640.93841 -10609.034 0 255.74616 0.0015031401 0.0014917739 + 153380 -6249.2186 -6254.9497 5.7310926 3709.1967 640.90156 -10605.048 0 274.66612 0.001614119 0.0016017265 + 153390 -6249.0967 -6255.2949 6.1981961 3709.9474 639.35555 -10604.598 0 297.05233 0.0014859873 0.0014702148 + 153400 -6248.979 -6255.534 6.5550406 3715.4556 636.55113 -10607.541 0 314.15433 0.0011361265 0.0011170952 + 153410 -6248.8958 -6255.5245 6.6286467 3724.2249 633.10829 -10612.858 0 317.68194 0.00064325298 0.00062356472 + 153420 -6248.8574 -6255.2154 6.3580358 3733.8594 629.83571 -10618.911 0 304.71275 0.00012812841 0.00011112496 + 153430 -6248.8443 -6254.686 5.8417326 3741.6943 627.5075 -10623.888 0 279.9686 -0.00027846872 -0.00029119431 + 153440 -6248.8196 -6254.1139 5.2943087 3745.5326 626.6717 -10626.318 0 253.73298 -0.00047084778 -0.00048095969 + 153450 -6248.7537 -6253.6853 4.9316152 3744.2716 627.53472 -10625.492 0 236.35067 -0.00039678471 -0.0004083522 + 153460 -6248.6457 -6253.4984 4.8526484 3738.2228 629.92967 -10621.651 0 232.56614 -7.202627e-05 -8.8471157e-05 + 153470 -6248.5248 -6253.5206 4.9958039 3729.0199 633.35755 -10615.898 0 239.42695 0.00042302141 0.00040205748 + 153480 -6248.4264 -6253.6304 5.2039253 3719.1443 637.08875 -10609.863 0 249.4013 0.00096450708 0.00094351817 + 153490 -6248.3596 -6253.7123 5.3526516 3711.2256 640.31366 -10605.252 0 256.5291 0.0014187795 0.0014029196 + 153500 -6248.2919 -6253.7305 5.4386101 3707.3493 642.32343 -10603.403 0 260.64871 0.0016776492 0.0016678571 + 153510 -6248.173 -6253.7241 5.5510862 3708.5668 642.68517 -10604.976 0 266.0392 0.0016839299 0.0016751102 + 153520 -6247.9823 -6253.7383 5.7560417 3714.6902 641.3641 -10609.793 0 275.86181 0.0014417603 0.0014264561 + 153530 -6247.7573 -6253.7684 6.0110442 3724.3435 638.74778 -10616.86 0 288.08297 0.0010134623 0.000988488 + 153540 -6247.5699 -6253.7783 6.2083611 3735.2218 635.55003 -10624.55 0 297.5395 0.00050686981 0.00047686403 + 153550 -6247.4623 -6253.775 6.3126177 3744.5539 632.61249 -10630.941 0 302.53606 5.3796183e-05 2.7625065e-05 + 153560 -6247.4045 -6253.8447 6.4401753 3749.7652 630.66579 -10634.276 0 308.64934 -0.00022162692 -0.00023899861 + 153570 -6247.3199 -6254.0846 6.7647952 3749.2341 630.13206 -10633.451 0 324.20694 -0.00024054666 -0.00025305788 + 153580 -6247.1619 -6254.4798 7.3179292 3742.878 631.0285 -10628.386 0 350.71623 7.4685847e-07 -1.6439279e-05 + 153590 -6246.968 -6254.854 7.8859262 3732.2767 632.98665 -10620.117 0 377.93783 0.0004252885 0.00039707501 + 153600 -6246.834 -6254.9665 8.132432 3720.2084 635.3688 -10610.544 0 389.75177 0.00090122286 0.00086480916 + 153610 -6246.829 -6254.686 7.8570506 3709.7654 637.4487 -10601.9 0 376.55395 0.0012886883 0.0012537293 + 153620 -6246.9336 -6254.0941 7.1604707 3703.4293 638.61226 -10596.136 0 343.16994 0.0014852324 0.0014599758 + 153630 -6247.0604 -6253.4334 6.3729479 3702.465 638.52265 -10594.421 0 305.42742 0.0014501826 0.0014350259 + 153640 -6247.1277 -6252.9519 5.8242046 3706.7693 637.20045 -10596.922 0 279.12857 0.0012041098 0.0011921705 + 153650 -6247.1151 -6252.7682 5.6530566 3715.0765 635.00117 -10602.846 0 270.92619 0.00081329606 0.00079651029 + 153660 -6247.0616 -6252.8431 5.781491 3725.3389 632.50883 -10610.691 0 277.08149 0.00037071205 0.000345778 + 153670 -6247.0233 -6253.0488 6.0255132 3735.1673 630.38496 -10618.601 0 288.7764 -2.1958363e-05 -5.2221782e-05 + 153680 -6247.0304 -6253.2579 6.2274582 3742.3005 629.2118 -10624.77 0 298.45474 -0.00027252284 -0.00030238456 + 153690 -6247.0754 -6253.3932 6.3177872 3745.0841 629.35757 -10627.835 0 302.78381 -0.000317601 -0.00034272532 + 153700 -6247.1305 -6253.431 6.3005385 3742.8791 630.88304 -10627.193 0 301.95716 -0.00013948887 -0.00015898811 + 153710 -6247.1719 -6253.3904 6.2185014 3736.2668 633.50818 -10623.165 0 298.02548 0.00022608604 0.00021041421 + 153720 -6247.19 -6253.3314 6.141432 3726.9463 636.65782 -10616.936 0 294.33188 0.00069621906 0.00068164394 + 153730 -6247.1846 -6253.3476 6.1629978 3717.3202 639.5925 -10610.26 0 295.36544 0.001160444 0.0011443485 + 153740 -6247.1614 -6253.5259 6.3644978 3709.8819 641.60148 -10605.009 0 305.02244 0.0015078213 0.0014881725 + 153750 -6247.1382 -6253.8835 6.7452778 3706.5746 642.20141 -10602.66 0 323.27156 0.0016540797 0.001630321 + 153760 -6247.1489 -6254.3316 7.1826981 3708.2776 641.27063 -10603.88 0 344.23519 0.0015629032 0.0015370047 + 153770 -6247.2314 -6254.7122 7.4808174 3714.5454 639.0697 -10608.327 0 358.52275 0.001256614 0.0012326477 + 153780 -6247.4024 -6254.8886 7.4861705 3723.6924 636.14535 -10614.726 0 358.7793 0.00081175702 0.0007933184 + 153790 -6247.6411 -6254.8198 7.1786712 3733.2471 633.16155 -10621.228 0 344.0422 0.00033800662 0.00032532047 + 153800 -6247.9031 -6254.5675 6.6644213 3740.6621 630.72386 -10625.954 0 319.39646 -5.3870782e-05 -6.4373727e-05 + 153810 -6248.1547 -6254.2423 6.0876716 3744.0357 629.25255 -10627.531 0 291.75538 -0.00028241394 -0.00029532668 + 153820 -6248.3928 -6253.9405 5.5477084 3742.5843 628.92674 -10625.452 0 265.87732 -0.00031244953 -0.00032974242 + 153830 -6248.634 -6253.7184 5.0843914 3736.7412 629.68911 -10620.149 0 243.67256 -0.00015563132 -0.00017531964 + 153840 -6248.8867 -6253.6033 4.7165743 3727.9347 631.2869 -10612.825 0 226.0447 0.00013967421 0.00012152315 + 153850 -6249.1363 -6253.6092 4.4728345 3718.193 633.33014 -10605.132 0 214.36333 0.00050157117 0.00048741848 + 153860 -6249.3542 -6253.7373 4.3830745 3709.7042 635.35912 -10598.801 0 210.06152 0.0008476463 0.00083644183 + 153870 -6249.5178 -6253.967 4.4491341 3704.3885 636.92131 -10595.277 0 213.22747 0.0010986474 0.0010864399 + 153880 -6249.6272 -6254.2505 4.6233161 3703.513 637.65788 -10595.421 0 221.57525 0.0011935229 0.0011761203 + 153890 -6249.7085 -6254.5182 4.8096824 3707.3936 637.39085 -10599.303 0 230.50697 0.001104016 0.0010801388 + 153900 -6249.8014 -6254.7003 4.8989568 3715.2509 636.18696 -10606.138 0 234.7855 0.00084529654 0.00081824996 + 153910 -6249.9315 -6254.7679 4.8364748 3725.2932 634.36607 -10614.427 0 231.79101 0.00047842351 0.00045458065 + 153920 -6250.0853 -6254.767 4.6817787 3735.0766 632.4356 -10622.279 0 224.37711 0.00010035426 8.4654535e-05 + 153930 -6250.2114 -6254.8041 4.592727 3742.1158 630.96108 -10627.881 0 220.10925 -0.0001802158 -0.00018867998 + 153940 -6250.2558 -6254.9702 4.7144412 3744.5961 630.41034 -10629.977 0 225.94248 -0.0002762816 -0.00028459477 + 153950 -6250.2071 -6255.254 5.0469291 3741.9362 631.01655 -10628.207 0 241.87716 -0.00015312544 -0.00016961253 + 153960 -6250.114 -6255.5236 5.409662 3734.9661 632.6967 -10623.186 0 259.26136 0.00015775846 0.00013028553 + 153970 -6250.0521 -6255.6096 5.5574841 3725.6351 635.04939 -10616.294 0 266.34582 0.00056876525 0.00053587242 + 153980 -6250.0635 -6255.4328 5.369278 3716.3798 637.44331 -10609.256 0 257.32593 0.00096589024 0.00093758655 + 153990 -6250.1204 -6255.0701 4.949712 3709.4231 639.1859 -10603.679 0 237.21797 0.0012439903 0.001227008 + 154000 -6250.1471 -6254.6993 4.5522099 3706.257 639.72815 -10600.684 0 218.16744 0.0013332411 0.0013260196 + 154010 -6250.0802 -6254.4713 4.391079 3707.405 638.83612 -10600.712 0 210.44514 0.0012111066 0.0012055094 + 154020 -6249.9124 -6254.4119 4.4995546 3712.4143 636.66831 -10603.495 0 215.6439 0.00090301985 0.00089101171 + 154030 -6249.6904 -6254.4278 4.7374434 3719.9876 633.73532 -10608.151 0 227.04487 0.00047672938 0.00045640117 + 154040 -6249.4715 -6254.3983 4.9267946 3728.2253 630.76093 -10613.385 0 236.11964 3.118149e-05 7.3853335e-06 + 154050 -6249.2756 -6254.2721 4.9964437 3735.0022 628.49233 -10617.767 0 239.45761 -0.00032256886 -0.00034310306 + 154060 -6249.0714 -6254.0868 5.0154261 3738.4788 627.51458 -10620.08 0 240.36736 -0.00048866248 -0.0005032084 + 154070 -6248.8085 -6253.9084 5.0998666 3737.6375 628.1108 -10619.657 0 244.41422 -0.00041540623 -0.00042700318 + 154080 -6248.4642 -6253.7604 5.2962068 3732.6438 630.18904 -10616.593 0 253.82395 -0.00011440369 -0.00012843418 + 154090 -6248.0622 -6253.6174 5.5551572 3724.8554 633.28695 -10611.76 0 266.2343 0.00033961854 0.00032044175 + 154100 -6247.6506 -6253.4593 5.8086852 3716.4409 636.66543 -10606.566 0 278.38479 0.00082974996 0.00080750101 + 154110 -6247.2617 -6253.3208 6.0590703 3709.7351 639.49127 -10602.547 0 290.38464 0.001231259 0.0012106659 + 154120 -6246.8908 -6253.2769 6.3861283 3706.5624 641.07383 -10600.913 0 306.0591 0.0014472264 0.001431635 + 154130 -6246.5079 -6253.375 6.8671196 3707.7473 641.07983 -10602.202 0 329.1109 0.0014341986 0.0014229754 + 154140 -6246.0903 -6253.577 7.4866905 3712.9362 639.63832 -10606.151 0 358.80422 0.0012112357 0.0012001328 + 154150 -6245.6474 -6253.7635 8.1161254 3720.7484 637.28458 -10611.796 0 388.97027 0.00085092689 0.00083462509 + 154160 -6245.2226 -6253.7984 8.5758236 3729.1769 634.76307 -10617.738 0 411.00159 0.00045571781 0.00043081534 + 154170 -6244.8738 -6253.6048 8.7310587 3736.1117 632.77524 -10622.492 0 418.44132 0.00012755631 9.4602008e-05 + 154180 -6244.6464 -6253.2082 8.5617716 3739.8407 631.77747 -10624.826 0 410.32813 -5.8315221e-05 -9.4651665e-05 + 154190 -6244.5503 -6252.7301 8.1797604 3739.4142 631.89503 -10624.039 0 392.02001 -6.7171387e-05 -0.00010031218 + 154200 -6244.5518 -6252.3413 7.7895033 3734.8213 632.95259 -10620.115 0 373.31671 9.4124574e-05 6.8721322e-05 + 154210 -6244.5895 -6252.1848 7.5952946 3726.9886 634.57439 -10613.748 0 364.00913 0.00038270051 0.0003643127 + 154220 -6244.6119 -6252.296 7.6840934 3717.623 636.30069 -10606.22 0 368.26487 0.00072726963 0.00071019467 + 154230 -6244.6118 -6252.5689 7.9571056 3708.8833 637.68869 -10599.141 0 381.34915 0.0010396077 0.0010172651 + 154240 -6244.6297 -6252.8105 8.1807622 3702.8794 638.39042 -10594.08 0 392.06803 0.0012339765 0.0012036504 + 154250 -6244.717 -6252.8568 8.1397396 3701.0903 638.21107 -10592.158 0 390.10199 0.0012520771 0.0012164127 + 154260 -6244.8943 -6252.6688 7.7744828 3703.9073 637.14831 -10593.724 0 372.59684 0.001082875 0.0010474442 + 154270 -6245.1404 -6252.3403 7.1998539 3710.5008 635.40258 -10598.244 0 345.0574 0.00076693893 0.00073661618 + 154280 -6245.4135 -6252.0352 6.6216504 3719.0675 633.34376 -10604.446 0 317.34664 0.00038389002 0.00036065039 + 154290 -6245.6749 -6251.913 6.2381028 3727.3522 631.43002 -10610.695 0 298.96489 2.9367097e-05 1.1831051e-05 + 154300 -6245.9037 -6252.0724 6.1686735 3733.2753 630.09704 -10615.445 0 295.63745 -0.00021082702 -0.000226572 + 154310 -6246.1059 -6252.5118 6.4058344 3735.4819 629.6516 -10617.645 0 307.00353 -0.00028284967 -0.00030114367 + 154320 -6246.3161 -6253.1236 6.8075574 3733.6579 630.20096 -10616.983 0 326.25635 -0.00017705384 -0.00019996891 + 154330 -6246.5812 -6253.7404 7.1591753 3728.5311 631.63409 -10613.906 0 343.10785 7.323589e-05 4.7252723e-05 + 154340 -6246.9318 -6254.2144 7.2825932 3721.5955 633.65302 -10609.463 0 349.02273 0.00040433587 0.00037914365 + 154350 -6247.3603 -6254.4833 7.1229978 3714.6826 635.83967 -10605.006 0 341.37402 0.00073982596 0.00071847261 + 154360 -6247.8269 -6254.5814 6.7545018 3709.5115 637.74052 -10601.833 0 323.71363 0.0010069917 0.00098932297 + 154370 -6248.289 -6254.5936 6.3046305 3707.3154 638.95666 -10600.866 0 302.15327 0.0011493035 0.0011323977 + 154380 -6248.7301 -6254.5915 5.8613991 3708.5883 639.229 -10602.409 0 280.91113 0.0011355508 0.0011166702 + 154390 -6249.1602 -6254.6006 5.4403968 3712.9737 638.50143 -10606.076 0 260.73434 0.00096669876 0.0009459888 + 154400 -6249.59 -6254.6161 5.0261224 3719.3285 636.94063 -10610.885 0 240.87999 0.0006786606 0.00065898201 + 154410 -6250.0079 -6254.6342 4.6263029 3725.9899 634.90015 -10615.524 0 221.71839 0.00033685747 0.00032102666 + 154420 -6250.383 -6254.6617 4.2787817 3731.206 632.8353 -10618.703 0 205.06323 2.0818771e-05 8.9832107e-06 + 154430 -6250.6858 -6254.6998 4.0140975 3733.6069 631.19142 -10619.498 0 192.37808 -0.0001973099 -0.00020785999 + 154440 -6250.909 -6254.7296 3.8206233 3732.5657 630.2945 -10617.59 0 183.1057 -0.0002727401 -0.0002853466 + 154450 -6251.07 -6254.7208 3.6507732 3728.3407 630.26981 -10613.331 0 174.96554 -0.00019942011 -0.00021538183 + 154460 -6251.1959 -6254.6645 3.4686133 3721.9727 631.00841 -10607.646 0 166.23541 -9.464083e-06 -2.7137465e-05 + 154470 -6251.3028 -6254.6018 3.2989206 3714.9901 632.19496 -10601.787 0 158.10278 0.00023791708 0.0002215397 + 154480 -6251.3866 -6254.6132 3.2266612 3709.0247 633.39849 -10597.036 0 154.63971 0.00047306174 0.0004597781 + 154490 -6251.4316 -6254.7666 3.3350111 3705.4417 634.20551 -10594.414 0 159.83244 0.00063291576 0.00062208664 + 154500 -6251.4285 -6255.0588 3.6303303 3705.0499 634.35243 -10594.461 0 173.9858 0.00067550896 0.00066510674 + 154510 -6251.3837 -6255.4054 4.0216496 3707.9233 633.8085 -10597.137 0 192.74001 0.00059035716 0.00057894311 + 154520 -6251.3134 -6255.6889 4.3755273 3713.3655 632.77821 -10601.833 0 209.69982 0.00040254926 0.00039007981 + 154530 -6251.2291 -6255.8269 4.5978783 3720.0552 631.62628 -10607.508 0 220.35613 0.0001674133 0.00015430398 + 154540 -6251.1333 -6255.8049 4.6715915 3726.3719 630.7588 -10612.936 0 223.88888 -4.5037296e-05 -5.9081624e-05 + 154550 -6251.0286 -6255.6571 4.6284377 3730.8214 630.50536 -10616.984 0 221.8207 -0.00017130243 -0.00018699009 + 154560 -6250.9271 -6255.4302 4.5030403 3732.4195 631.03471 -10618.884 0 215.81096 -0.00017277517 -0.00018977982 + 154570 -6250.8428 -6255.1673 4.3244945 3730.9106 632.3155 -10618.393 0 207.25404 -4.4695034e-05 -6.112088e-05 + 154580 -6250.7748 -6254.915 4.1401516 3726.7838 634.12027 -10615.819 0 198.4193 0.00018482694 0.00017089581 + 154590 -6250.7016 -6254.7198 4.0181689 3721.1264 636.06805 -10611.914 0 192.5732 0.00046192058 0.00045022019 + 154600 -6250.5975 -6254.6018 4.0042779 3715.3668 637.70173 -10607.67 0 191.90746 0.00071747547 0.00070523573 + 154610 -6250.4562 -6254.5303 4.0740192 3710.9413 638.59179 -10604.063 0 195.24986 0.00088156585 0.00086574631 + 154620 -6250.2977 -6254.4365 4.1388264 3708.9248 638.44835 -10601.81 0 198.35578 0.00090200855 0.00088211459 + 154630 -6250.1509 -6254.2648 4.1138912 3709.7108 637.21198 -10601.188 0 197.16075 0.0007626478 0.00074147986 + 154640 -6250.0277 -6254.0238 3.9960863 3712.8652 635.09028 -10601.979 0 191.51488 0.0004929529 0.00047446131 + 154650 -6249.9089 -6253.7961 3.8871489 3717.2398 632.51849 -10603.554 0 186.29398 0.0001621247 0.0001480697 + 154660 -6249.756 -6253.6932 3.9372253 3721.3394 630.04961 -10605.082 0 188.69393 -0.00014197708 -0.0001537367 + 154670 -6249.5384 -6253.784 4.2456673 3723.8157 628.20668 -10605.806 0 203.4762 -0.00034093897 -0.00035494728 + 154680 -6249.2558 -6254.0481 4.7923289 3723.8949 627.34416 -10605.287 0 229.67529 -0.00038949023 -0.00040910998 + 154690 -6248.9378 -6254.3874 5.4495736 3721.583 627.56161 -10603.532 0 261.17414 -0.00028630567 -0.0003110177 + 154700 -6248.6218 -6254.6814 6.0596258 3717.5979 628.69566 -10600.975 0 290.41127 -6.9933168e-05 -9.5743432e-05 + 154710 -6248.3273 -6254.8411 6.5138577 3713.0998 630.3906 -10598.332 0 312.18061 0.0001963994 0.00017387109 + 154720 -6248.0484 -6254.8296 6.7811774 3709.341 632.22038 -10596.391 0 324.99207 0.00044470454 0.00042700504 + 154730 -6247.7674 -6254.65 6.8826589 3707.3448 633.81708 -10595.812 0 329.85563 0.00062053903 0.0006054841 + 154740 -6247.4769 -6254.3262 6.8492755 3707.6765 634.96066 -10596.963 0 328.25571 0.0006949392 0.00067856657 + 154750 -6247.1918 -6253.8938 6.7019352 3710.3287 635.6038 -10599.826 0 321.19434 0.00066786115 0.00064766689 + 154760 -6246.9404 -6253.407 6.4666035 3714.7243 635.83533 -10603.967 0 309.91593 0.00056402948 0.00054104094 + 154770 -6246.7411 -6252.9471 6.2060527 3719.8373 635.81165 -10608.596 0 297.42887 0.00042410219 0.00040210106 + 154780 -6246.5813 -6252.6122 6.0308729 3724.424 635.69305 -10612.729 0 289.03327 0.00029391096 0.00027613578 + 154790 -6246.4193 -6252.4752 6.0558708 3727.3358 635.60764 -10615.419 0 290.23131 0.00021307659 0.00019898155 + 154800 -6246.2147 -6252.5234 6.3087089 3727.8432 635.64001 -10616.007 0 302.34873 0.00020411078 0.00018937516 + 154810 -6245.9664 -6252.6318 6.6653859 3725.8532 635.82241 -10614.307 0 319.44269 0.00026522485 0.00024566715 + 154820 -6245.7196 -6252.6258 6.9061921 3721.912 636.11225 -10610.65 0 330.98348 0.00037133859 0.00034727241 + 154830 -6245.5254 -6252.4134 6.8879801 3716.9879 636.36892 -10605.77 0 330.11066 0.00048435511 0.00046077154 + 154840 -6245.3903 -6252.0798 6.6894162 3712.154 636.36882 -10600.603 0 320.59436 0.00056742266 0.00054936346 + 154850 -6245.2685 -6251.8475 6.579056 3708.328 635.88376 -10596.059 0 315.30528 0.00059539867 0.00058297076 + 154860 -6245.1047 -6251.9195 6.8147886 3706.1336 634.79791 -10592.851 0 326.60291 0.0005580282 0.00054600909 + 154870 -6244.8876 -6252.3248 7.4371464 3705.8446 633.19761 -10591.367 0 356.42979 0.00045853669 0.00044106769 + 154880 -6244.6663 -6252.8903 8.2239778 3707.3512 631.3743 -10591.616 0 394.13916 0.0003122561 0.00028825502 + 154890 -6244.5137 -6253.3587 8.844993 3710.1418 629.7286 -10593.229 0 423.90169 0.00014644147 0.00012046291 + 154900 -6244.4673 -6253.5565 9.089256 3713.3733 628.62302 -10595.553 0 435.60815 -2.5065008e-06 -2.5018517e-05 + 154910 -6244.5055 -6253.4747 8.969208 3716.0906 628.26196 -10597.827 0 429.85477 -9.8454276e-05 -0.00011669611 + 154920 -6244.5865 -6253.212 8.6255707 3717.5464 628.65655 -10599.415 0 413.38575 -0.00011894053 -0.00013703359 + 154930 -6244.7033 -6252.8684 8.1650864 3717.4545 629.67221 -10599.995 0 391.31675 -6.3261147e-05 -8.4933781e-05 + 154940 -6244.8878 -6252.5049 7.6171688 3716.025 631.10783 -10599.638 0 365.05747 5.1380517e-05 2.7586906e-05 + 154950 -6245.1607 -6252.1892 7.0284788 3713.7953 632.75373 -10598.738 0 336.84414 0.00020139651 0.00018072659 + 154960 -6245.4949 -6252.0309 6.5360034 3711.4182 634.41023 -10597.859 0 313.24196 0.00036465304 0.00035004348 + 154970 -6245.8378 -6252.1298 6.2919855 3709.5413 635.88412 -10597.555 0 301.54725 0.00051866199 0.00050692423 + 154980 -6246.1702 -6252.4803 6.3101074 3708.7507 636.99043 -10598.222 0 302.41575 0.00063527175 0.00061987472 + 154990 -6246.5305 -6252.942 6.4115069 3709.4672 637.57333 -10599.983 0 307.27538 0.00068284047 0.00066030029 + 155000 -6246.9759 -6253.3227 6.3467452 3711.7588 637.54196 -10602.623 0 304.17164 0.00063908206 0.0006123995 + 155010 -6247.5187 -6253.5065 5.9877734 3715.1891 636.90516 -10605.601 0 286.9677 0.00050602182 0.00048202134 + 155020 -6248.1023 -6253.5209 5.4185603 3718.8545 635.78558 -10608.161 0 259.68781 0.00031469974 0.00029817302 + 155030 -6248.6406 -6253.4961 4.8555713 3721.6543 634.39995 -10609.55 0 232.70622 0.00011478665 0.00010491182 + 155040 -6249.0783 -6253.5619 4.4836018 3722.6771 633.00805 -10609.247 0 214.87936 -4.4361904e-05 -5.2590674e-05 + 155050 -6249.4173 -6253.7655 4.3481934 3721.5121 631.84718 -10607.125 0 208.38982 -0.00012996954 -0.0001412541 + 155060 -6249.6959 -6254.0668 4.3708546 3718.3574 631.0735 -10603.498 0 209.47588 -0.00013273242 -0.00014807044 + 155070 -6249.9502 -6254.3917 4.4415068 3713.9229 630.72756 -10599.042 0 212.86193 -6.5153369e-05 -8.199414e-05 + 155080 -6250.1899 -6254.6854 4.4955093 3709.2154 630.73256 -10594.633 0 215.45003 4.421458e-05 2.9187177e-05 + 155090 -6250.4011 -6254.9256 4.5244974 3705.2986 630.92403 -10591.148 0 216.8393 0.00015760229 0.0001458488 + 155100 -6250.5647 -6255.1071 4.5423825 3703.0715 631.10141 -10589.28 0 217.69646 0.00023591767 0.00022645293 + 155110 -6250.673 -6255.2273 4.5543246 3703.0796 631.08881 -10589.396 0 218.26879 0.00024822045 0.00023888178 + 155120 -6250.7343 -6255.2847 4.5504424 3705.3751 630.79282 -10591.453 0 218.08273 0.00018125999 0.00017054005 + 155130 -6250.7671 -6255.2845 4.5173989 3709.4628 630.24401 -10594.991 0 216.4991 4.5855148e-05 3.4048271e-05 + 155140 -6250.7879 -6255.2424 4.4545084 3714.368 629.60852 -10599.219 0 213.48504 -0.00012278749 -0.00013384385 + 155150 -6250.7993 -6255.1811 4.3817991 3718.8446 629.15907 -10603.185 0 210.0004 -0.00027218578 -0.00028067097 + 155160 -6250.788 -6255.1161 4.328049 3721.6998 629.20384 -10606.02 0 207.42439 -0.0003466862 -0.0003525588 + 155170 -6250.736 -6255.0348 4.298799 3722.1555 629.98399 -10607.174 0 206.02257 -0.00030583216 -0.00031125312 + 155180 -6250.6387 -6254.8874 4.2487269 3720.1223 631.56569 -10606.575 0 203.62283 -0.00014140067 -0.00014913754 + 155190 -6250.5145 -6254.6102 4.0957218 3716.2642 633.76499 -10604.639 0 196.28997 0.00011438444 0.00010342927 + 155200 -6250.3927 -6254.1811 3.7884649 3711.8036 636.14587 -10602.131 0 181.56449 0.00039518772 0.00038301556 + 155210 -6250.2887 -6253.6717 3.3829852 3708.1315 638.11458 -10599.918 0 162.13163 0.0006208193 0.0006106459 + 155220 -6250.1891 -6253.2419 3.0527649 3706.373 639.09552 -10598.71 0 146.30562 0.00072338637 0.00071657126 + 155230 -6250.0601 -6253.0609 3.0008117 3707.0626 638.73065 -10598.854 0 143.81573 0.00066868272 0.00066323306 + 155240 -6249.8743 -6253.2033 3.3290125 3710.0042 637.02288 -10600.23 0 159.54496 0.00046604605 0.00045834158 + 155250 -6249.6332 -6253.5988 3.965613 3714.3193 634.35941 -10602.277 0 190.05443 0.00016589637 0.00015418295 + 155260 -6249.3654 -6254.0789 4.7135513 3718.6518 631.39784 -10604.129 0 225.89983 -0.00015274702 -0.00016651852 + 155270 -6249.1001 -6254.4866 5.3864906 3721.514 628.85467 -10604.855 0 258.15085 -0.00040253366 -0.00041469173 + 155280 -6248.8408 -6254.7571 5.9163385 3721.7323 627.27965 -10603.769 0 283.54414 -0.00051315556 -0.00052241341 + 155290 -6248.573 -6254.908 6.3349956 3718.8812 626.90464 -10600.694 0 303.60854 -0.00045551978 -0.00046477749 + 155300 -6248.2992 -6254.9631 6.6639673 3713.5192 627.6141 -10596.096 0 319.37471 -0.00025425681 -0.00026774761 + 155310 -6248.0555 -6254.9034 6.847972 3707.0653 629.02645 -10590.995 0 328.19324 2.0091187e-05 1.4634308e-06 + 155320 -6247.8849 -6254.6953 6.8104151 3701.3303 630.63987 -10586.666 0 326.39331 0.00027786419 0.00025785134 + 155330 -6247.7929 -6254.3521 6.5591888 3697.9078 631.99171 -10584.252 0 314.35313 0.00044331606 0.0004266662 + 155340 -6247.7364 -6253.9484 6.2119574 3697.6986 632.78901 -10584.436 0 297.71185 0.0004780207 0.00046555999 + 155350 -6247.6605 -6253.5629 5.9024338 3700.7286 632.97978 -10587.271 0 282.87774 0.00038656879 0.0003741403 + 155360 -6247.5459 -6253.2083 5.6623937 3706.2371 632.74787 -10592.193 0 271.37368 0.00020795457 0.00019039426 + 155370 -6247.4212 -6252.8269 5.4056488 3712.9128 632.43335 -10598.173 0 259.06902 1.4878571e-06 -2.2287165e-05 + 155380 -6247.3289 -6252.3671 5.0381521 3719.1848 632.40219 -10603.954 0 241.45652 -0.00016730924 -0.00019310386 + 155390 -6247.2803 -6251.869 4.5887298 3723.5554 632.90793 -10608.332 0 219.91768 -0.00024123805 -0.0002633192 + 155400 -6247.2425 -6251.4776 4.235088 3724.9632 633.99212 -10610.433 0 202.96918 -0.00018736386 -0.00020343514 + 155410 -6247.1644 -6251.3679 4.2034405 3723.0982 635.45554 -10609.922 0 201.45245 -1.0363918e-05 -2.3279991e-05 + 155420 -6247.0141 -6251.642 4.6278973 3718.535 636.9087 -10607.086 0 221.7948 0.00024433215 0.0002292906 + 155430 -6246.7979 -6252.2703 5.4724312 3712.5867 637.88837 -10602.745 0 262.26961 0.00050253204 0.00048214509 + 155440 -6246.5525 -6253.1076 6.5551651 3706.8944 638.00926 -10598.011 0 314.16029 0.00068581136 0.00066130674 + 155450 -6246.3201 -6253.9551 7.6349321 3702.903 637.10467 -10593.963 0 365.90879 0.00073869442 0.0007143689 + 155460 -6246.1309 -6254.6202 8.4892664 3701.4326 635.30218 -10591.355 0 406.85328 0.00064654996 0.00062638456 + 155470 -6245.9991 -6254.9542 8.9551016 3702.5031 632.99283 -10590.45 0 429.17872 0.00043728283 0.00042257763 + 155480 -6245.9272 -6254.8836 8.9564174 3705.4361 630.69488 -10591.015 0 429.24178 0.00016816817 0.00015745146 + 155490 -6245.9064 -6254.4387 8.5322896 3709.1494 628.87099 -10592.459 0 408.91519 -9.5075496e-05 -0.00010476363 + 155500 -6245.9198 -6253.7547 7.8348638 3712.5136 627.78826 -10594.057 0 375.49063 -0.00029839208 -0.00031003652 + 155510 -6245.9519 -6253.0239 7.072005 3714.6482 627.48499 -10595.157 0 338.93016 -0.00041150708 -0.00042690875 + 155520 -6245.9973 -6252.4175 6.4201116 3715.0853 627.84171 -10595.344 0 307.68777 -0.00042879212 -0.00044776005 + 155530 -6246.0608 -6252.0224 5.9616086 3713.7941 628.6961 -10594.513 0 285.71374 -0.00036128027 -0.00038158333 + 155540 -6246.1454 -6251.8285 5.6830832 3711.1103 629.92654 -10592.865 0 272.36523 -0.00022659452 -0.00024502761 + 155550 -6246.2418 -6251.7672 5.5254541 3707.6337 631.45912 -10590.86 0 264.81076 -4.3634151e-05 -5.7917691e-05 + 155560 -6246.3282 -6251.7697 5.4415492 3704.1353 633.20681 -10589.112 0 260.78957 0.00016553153 0.00015524243 + 155570 -6246.384 -6251.8058 5.4217896 3701.4659 634.99449 -10588.266 0 259.84258 0.00037043564 0.00036171598 + 155580 -6246.4037 -6251.8913 5.4876597 3700.4236 636.53353 -10588.848 0 262.99944 0.00053120423 0.00052107447 + 155590 -6246.3982 -6252.0706 5.6723422 3701.5603 637.48084 -10591.112 0 271.85047 0.00060662387 0.0005933181 + 155600 -6246.3865 -6252.3795 5.9930918 3704.9719 637.56601 -10594.917 0 287.22259 0.00056888348 0.0005525118 + 155610 -6246.3866 -6252.8057 6.41908 3710.1599 636.72329 -10599.689 0 307.63833 0.000417319 0.0003994734 + 155620 -6246.4118 -6253.2738 6.8620331 3716.0457 635.15414 -10604.474 0 328.86713 0.00018401612 0.00016670815 + 155630 -6246.4667 -6253.6761 7.2094127 3721.1727 633.28131 -10608.13 0 345.51551 -7.1861838e-05 -8.7666592e-05 + 155640 -6246.5482 -6253.9217 7.3735027 3724.0791 631.61512 -10609.616 0 353.37962 -0.00027994499 -0.00029535289 + 155650 -6246.6549 -6253.9691 7.3142056 3723.7406 630.59307 -10608.303 0 350.53777 -0.00037991707 -0.00039747791 + 155660 -6246.7959 -6253.8289 7.0330765 3719.9245 630.45277 -10604.206 0 337.06449 -0.00034083716 -0.0003622926 + 155670 -6246.9875 -6253.5547 6.5672206 3713.3088 631.16998 -10598.033 0 314.73806 -0.00017172728 -0.00019595344 + 155680 -6247.2379 -6253.2337 5.9957131 3705.3249 632.46648 -10591.025 0 287.34822 7.9970671e-05 5.6846976e-05 + 155690 -6247.5319 -6252.9756 5.4436585 3697.7919 633.88068 -10584.648 0 260.89066 0.00034131577 0.00032329523 + 155700 -6247.8309 -6252.8908 5.059828 3692.4648 634.88815 -10580.244 0 242.49535 0.0005337329 0.00052153554 + 155710 -6248.0931 -6253.0471 4.9540343 3690.623 635.05025 -10578.72 0 237.42512 0.00059334825 0.00058301288 + 155720 -6248.3033 -6253.4187 5.1154501 3692.7798 634.15431 -10580.353 0 245.16107 0.00048670739 0.00047202158 + 155730 -6248.49 -6253.8675 5.3774944 3698.5406 632.30089 -10584.709 0 257.71971 0.00022045049 0.00019800331 + 155740 -6248.7065 -6254.1996 5.4930738 3706.6148 629.9016 -10590.716 0 263.25892 -0.00015501113 -0.00018231453 + 155750 -6248.9824 -6254.2817 5.2993393 3715.0166 627.57807 -10596.876 0 253.97407 -0.0005504745 -0.00057519613 + 155760 -6249.2885 -6254.1315 4.8430285 3721.4999 625.98946 -10601.621 0 232.1051 -0.00085656324 -0.00087291536 + 155770 -6249.5553 -6253.8954 4.3401061 3724.1906 625.64322 -10603.729 0 208.00224 -0.00097627163 -0.00098502413 + 155780 -6249.7319 -6253.7297 3.9978477 3722.2201 626.74396 -10602.694 0 191.59929 -0.00086082096 -0.00086810644 + 155790 -6249.825 -6253.6963 3.8713348 3716.071 629.11737 -10598.885 0 185.53609 -0.00053134377 -0.00054278137 + 155800 -6249.8823 -6253.7636 3.8812365 3707.4567 632.23047 -10593.451 0 186.01063 -7.4440863e-05 -9.0647822e-05 + 155810 -6249.9435 -6253.884 3.9405704 3698.7866 635.31661 -10587.987 0 188.85424 0.00038606523 0.00036858705 + 155820 -6250.0086 -6254.0475 4.0389177 3692.4552 637.58539 -10584.088 0 193.5676 0.00072738543 0.00071189821 + 155830 -6250.0507 -6254.2604 4.2096062 3690.2 638.45585 -10582.916 0 201.74795 0.00086125693 0.00084787856 + 155840 -6250.0502 -6254.4944 4.4442101 3692.677 637.72924 -10584.901 0 212.99148 0.00075480024 0.00074154589 + 155850 -6250.0139 -6254.6781 4.6642288 3699.3051 635.63722 -10589.62 0 223.53601 0.00043726516 0.00042316874 + 155860 -6249.9633 -6254.749 4.7857394 3708.3942 632.75361 -10595.897 0 229.35949 -7.2580466e-06 -2.0618524e-05 + 155870 -6249.906 -6254.7156 4.8095338 3717.55 629.81109 -10602.077 0 230.49985 -0.00046118767 -0.00047137902 + 155880 -6249.8224 -6254.6607 4.8383645 3724.2929 627.49484 -10606.449 0 231.88157 -0.0008056989 -0.00081245081 + 155890 -6249.6799 -6254.6718 4.991908 3726.7388 626.27956 -10607.69 0 239.24024 -0.0009547634 -0.00096102847 + 155900 -6249.4631 -6254.7526 5.2895238 3724.1294 626.34401 -10605.226 0 253.50366 -0.00087892136 -0.00088866459 + 155910 -6249.1894 -6254.7945 5.6050964 3717.0354 627.56288 -10599.393 0 268.62767 -0.00061052757 -0.00062519633 + 155920 -6248.8976 -6254.6377 5.7400816 3707.1715 629.5587 -10591.368 0 275.09692 -0.00023024257 -0.00024726379 + 155930 -6248.6164 -6254.1796 5.5632301 3696.9064 631.79573 -10582.882 0 266.6212 0.00015842394 0.00014354221 + 155940 -6248.343 -6253.4524 5.1094652 3688.6491 633.70179 -10575.803 0 244.87424 0.00045691976 0.00044662921 + 155950 -6248.0498 -6252.6155 4.5657082 3684.2987 634.80067 -10571.715 0 218.81436 0.00059403891 0.00058641951 + 155960 -6247.712 -6251.8773 4.1653447 3684.864 634.8304 -10571.572 0 199.62669 0.00053952064 0.00052961278 + 155970 -6247.3278 -6251.4034 4.0756525 3690.2768 633.81748 -10575.498 0 195.32814 0.00030907784 0.00029282842 + 155980 -6246.9169 -6251.2652 4.348344 3699.3845 632.08231 -10582.732 0 208.39704 -3.8180533e-05 -6.0449625e-05 + 155990 -6246.4997 -6251.4461 4.9464302 3710.1284 630.16423 -10591.739 0 237.06069 -0.0004102691 -0.00043375855 + 156000 -6246.0752 -6251.8817 5.8064825 3719.9415 628.67652 -10600.5 0 278.27922 -0.00070203124 -0.00072135651 + 156010 -6245.6192 -6252.4862 6.8669717 3726.3642 628.12767 -10606.978 0 329.10381 -0.00082325222 -0.00083753631 + 156020 -6245.1168 -6253.1402 8.023319 3727.754 628.76638 -10609.661 0 384.52247 -0.00072844657 -0.00074280849 + 156030 -6244.6071 -6253.6726 9.065548 3723.8202 630.50452 -10607.997 0 434.47192 -0.00043534905 -0.00045656109 + 156040 -6244.185 -6253.8976 9.712627 3715.7122 632.94324 -10602.553 0 465.48358 -2.0529844e-05 -5.0489815e-05 + 156050 -6243.9433 -6253.7117 9.7684484 3705.6018 635.48886 -10594.802 0 468.15886 0.00040751114 0.00037413006 + 156060 -6243.9021 -6253.1748 9.2727757 3695.9722 637.51635 -10586.663 0 444.40344 0.00074401163 0.00071555899 + 156070 -6243.9937 -6252.4953 8.5015877 3688.9393 638.52832 -10579.963 0 407.44379 0.00091571909 0.000896662 + 156080 -6244.113 -6251.9191 7.8061616 3685.8249 638.26764 -10576.012 0 374.11506 0.00089249951 0.00087973247 + 156090 -6244.1874 -6251.5949 7.4075235 3687.0099 636.76475 -10575.37 0 355.01009 0.00068493599 0.00067020612 + 156100 -6244.2172 -6251.4988 7.2815623 3691.978 634.32035 -10577.797 0 348.97332 0.00033528977 0.0003118788 + 156110 -6244.2623 -6251.4712 7.2088982 3699.4519 631.43263 -10582.356 0 345.49085 -9.1563942e-05 -0.00012305187 + 156120 -6244.3839 -6251.3469 6.9629862 3707.6018 628.68431 -10587.633 0 333.70537 -0.00051545237 -0.00054708413 + 156130 -6244.5854 -6251.0905 6.505115 3714.3698 626.61456 -10592.075 0 311.76161 -0.00085021928 -0.00087302401 + 156140 -6244.8023 -6250.8323 6.0299805 3717.9421 625.60767 -10594.382 0 288.9905 -0.0010198257 -0.001031333 + 156150 -6244.9542 -6250.7725 5.8183567 3717.2809 625.82209 -10593.875 0 278.8483 -0.00098017406 -0.00098659605 + 156160 -6245.0119 -6251.0318 6.0198855 3712.5118 627.1665 -10590.71 0 288.50669 -0.00073751568 -0.00074852213 + 156170 -6245.0227 -6251.5703 6.5476059 3704.9523 629.31956 -10585.842 0 313.79801 -0.00035198118 -0.00037266041 + 156180 -6245.073 -6252.2318 7.1587996 3696.7243 631.7921 -10580.748 0 343.08984 7.8526897e-05 5.1479256e-05 + 156190 -6245.2233 -6252.8531 7.6298405 3690.0998 634.03056 -10576.983 0 365.66477 0.00044765735 0.00042254362 + 156200 -6245.4704 -6253.3379 7.8675419 3686.8484 635.54551 -10575.732 0 377.05675 0.00066987926 0.00065294058 + 156210 -6245.763 -6253.6534 7.8903954 3687.8058 636.02901 -10577.488 0 378.15202 0.0006991847 0.0006900334 + 156220 -6246.049 -6253.7935 7.744496 3692.7384 635.42237 -10581.954 0 371.1597 0.0005350326 0.00052763663 + 156230 -6246.3094 -6253.7597 7.4502479 3700.4635 633.9182 -10588.141 0 357.05768 0.00021883315 0.00020633676 + 156240 -6246.5606 -6253.573 7.0123932 3709.1455 631.90703 -10594.626 0 336.07323 -0.00017566506 -0.0001962516 + 156250 -6246.8299 -6253.2931 6.4631854 3716.6939 629.89009 -10599.877 0 309.75211 -0.00055653441 -0.00058287348 + 156260 -6247.129 -6253.0182 5.8892559 3721.2075 628.37557 -10602.601 0 282.24619 -0.00083167729 -0.00085836481 + 156270 -6247.444 -6252.8521 5.4080823 3721.4139 627.76935 -10602.035 0 259.18565 -0.00092947998 -0.00095187767 + 156280 -6247.7482 -6252.8507 5.1025164 3717.0289 628.27163 -10598.151 0 244.54121 -0.00081889692 -0.0008355528 + 156290 -6248.021 -6252.9868 4.9657472 3708.9202 629.79943 -10591.706 0 237.98647 -0.00052297581 -0.00053529927 + 156300 -6248.2575 -6253.1659 4.9084504 3698.9764 631.96451 -10584.107 0 235.24049 -0.0001188879 -0.00012919994 + 156310 -6248.4628 -6253.2898 4.8269992 3689.6632 634.13626 -10577.089 0 231.33688 0.00027922929 0.0002692447 + 156320 -6248.6417 -6253.3185 4.6768351 3683.3759 635.59823 -10572.293 0 224.14018 0.00055151633 0.00054105504 + 156330 -6248.7956 -6253.2886 4.4930717 3681.7796 635.76606 -10570.834 0 215.3332 0.00060808848 0.00059681086 + 156340 -6248.9271 -6253.2784 4.3512539 3685.3358 634.39478 -10573.009 0 208.5365 0.00041731062 0.0004052299 + 156350 -6249.044 -6253.3554 4.3114786 3693.1458 631.6928 -10578.194 0 206.63024 1.7598096e-05 5.3104225e-06 + 156360 -6249.1541 -6253.5448 4.3906133 3703.1585 628.29018 -10584.993 0 210.42282 -0.00049092911 -0.00050239978 + 156370 -6249.2586 -6253.8266 4.567987 3712.6973 625.06599 -10591.59 0 218.92357 -0.00097310036 -0.00098315473 + 156380 -6249.3508 -6254.1497 4.798884 3719.1843 622.89274 -10596.227 0 229.98945 -0.0012967564 -0.0013060422 + 156390 -6249.4255 -6254.444 5.0185877 3720.8629 622.3818 -10597.689 0 240.51888 -0.001371247 -0.0013814465 + 156400 -6249.488 -6254.6358 5.147774 3717.299 623.70649 -10595.641 0 246.71022 -0.0011742651 -0.0011867925 + 156410 -6249.5537 -6254.6716 5.1178084 3709.4996 626.55068 -10590.722 0 245.2741 -0.00075828783 -0.00077300717 + 156420 -6249.6358 -6254.5478 4.9119702 3699.6126 630.19521 -10584.356 0 235.40917 -0.00023472592 -0.00024992062 + 156430 -6249.7322 -6254.3244 4.5922425 3690.3078 633.71848 -10578.351 0 220.08603 0.00025873846 0.0002449813 + 156440 -6249.8242 -6254.1055 4.2813748 3684.0428 636.25533 -10574.404 0 205.18751 0.00059694457 0.00058505581 + 156450 -6249.889 -6253.9901 4.1010982 3682.4278 637.23711 -10573.655 0 196.54764 0.00070025995 0.00068865994 + 156460 -6249.9149 -6254.018 4.1030441 3685.8501 636.53803 -10576.406 0 196.6409 0.00055291632 0.00053917305 + 156470 -6249.9085 -6254.1461 4.2376339 3693.4189 634.48491 -10582.05 0 203.0912 0.00020335426 0.00018621514 + 156480 -6249.8876 -6254.2715 4.3838674 3703.2104 631.73426 -10589.216 0 210.09953 -0.00025143811 -0.00027073439 + 156490 -6249.8657 -6254.2916 4.4258697 3712.7433 629.06367 -10596.099 0 212.11251 -0.00069233504 -0.00071070671 + 156500 -6249.8369 -6254.1646 4.32764 3719.5873 627.14755 -10600.899 0 207.40479 -0.001008733 -0.0010236237 + 156510 -6249.777 -6253.9284 4.1513741 3721.9756 626.38465 -10602.289 0 198.95714 -0.0011266442 -0.001138216 + 156520 -6249.6614 -6253.6686 4.0072449 3719.2666 626.81936 -10599.755 0 192.04966 -0.001027308 -0.0010384211 + 156530 -6249.484 -6253.4662 3.9821435 3712.109 628.16454 -10593.74 0 190.84666 -0.00075054834 -0.0007643984 + 156540 -6249.2598 -6253.3669 4.1070415 3702.2495 629.9079 -10585.524 0 196.83248 -0.00038105413 -0.00039850941 + 156550 -6249.0082 -6253.3839 4.3757635 3692.0489 631.47048 -10576.903 0 209.71114 -2.1823841e-05 -4.0755699e-05 + 156560 -6248.7322 -6253.5096 4.7774085 3683.8698 632.37695 -10569.756 0 228.96022 0.00023593856 0.0002188192 + 156570 -6248.4143 -6253.7123 5.2980322 3679.519 632.3898 -10565.621 0 253.91143 0.00033603343 0.00032247597 + 156580 -6248.0334 -6253.9181 5.8847264 3679.8787 631.56406 -10565.361 0 282.02911 0.00026673496 0.00025578918 + 156590 -6247.593 -6254.0096 6.4166202 3684.7731 630.20236 -10568.985 0 307.52044 5.6415153e-05 4.5813897e-05 + 156600 -6247.129 -6253.8722 6.7431764 3693.0508 628.73025 -10575.653 0 323.17085 -0.0002389313 -0.00025042174 + 156610 -6246.6857 -6253.4764 6.7906924 3702.8432 627.54897 -10583.869 0 325.44808 -0.00054967592 -0.00056161635 + 156620 -6246.2819 -6252.9273 6.6453761 3711.9609 626.93294 -10591.821 0 318.48371 -0.00080532579 -0.00081731706 + 156630 -6245.9044 -6252.4175 6.5130907 3718.3719 627.009 -10597.798 0 312.14385 -0.00094659857 -0.00095995807 + 156640 -6245.5354 -6252.1051 6.569726 3720.6583 627.79919 -10600.563 0 314.85813 -0.00093635314 -0.00095322897 + 156650 -6245.1796 -6252.0113 6.831749 3718.3278 629.27042 -10599.61 0 327.41575 -0.00076651975 -0.00078712954 + 156660 -6244.8611 -6252.0242 7.1631089 3711.9024 631.33932 -10595.266 0 343.29637 -0.0004590009 -0.00048043531 + 156670 -6244.5924 -6251.996 7.4035562 3702.7917 633.82369 -10588.611 0 354.81995 -6.2338617e-05 -8.1071335e-05 + 156680 -6244.3548 -6251.8422 7.4873486 3693.0152 636.38192 -10581.239 0 358.83576 0.00035238447 0.00033652457 + 156690 -6244.1176 -6251.5637 7.4460948 3684.8239 638.50489 -10574.892 0 356.85864 0.00069709061 0.00068008495 + 156700 -6243.8766 -6251.2068 7.3301627 3680.23 639.6043 -10571.041 0 351.30253 0.0008800219 0.00085746648 + 156710 -6243.6643 -6250.8315 7.1672079 3680.4776 639.18923 -10570.498 0 343.49282 0.00083105316 0.00080279732 + 156720 -6243.5154 -6250.5202 7.0047388 3685.5904 637.0683 -10573.179 0 335.70639 0.00053190135 0.00050248067 + 156730 -6243.4264 -6250.3869 6.960528 3694.2173 633.48667 -10578.091 0 333.58756 3.4391748e-05 8.5438166e-06 + 156740 -6243.3521 -6250.5343 7.1821981 3703.9302 629.12459 -10583.589 0 344.21123 -0.00054702577 -0.00056925663 + 156750 -6243.2509 -6250.9696 7.718724 3711.922 624.94356 -10587.835 0 369.92456 -0.0010677289 -0.0010911706 + 156760 -6243.1343 -6251.5581 8.4238017 3715.8478 621.92994 -10589.336 0 403.71584 -0.001395633 -0.0014251039 + 156770 -6243.0696 -6252.0784 9.0088208 3714.4952 620.81991 -10587.393 0 431.75324 -0.0014470903 -0.0014823559 + 156780 -6243.1292 -6252.3523 9.2231368 3708.0952 621.88711 -10582.335 0 442.02447 -0.0012071864 -0.0012426483 + 156790 -6243.3349 -6252.347 9.0120569 3698.2476 624.85081 -10575.445 0 431.90833 -0.00073382586 -0.00076288082 + 156800 -6243.6466 -6252.1803 8.5337397 3687.5212 628.9325 -10568.634 0 408.98469 -0.0001461305 -0.00016610158 + 156810 -6243.9977 -6252.0439 8.0462648 3678.8195 633.05702 -10563.92 0 385.62216 0.00040327888 0.00038927098 + 156820 -6244.3438 -6252.0931 7.7492932 3674.6375 636.15689 -10562.887 0 371.38961 0.00076821816 0.00075335902 + 156830 -6244.6924 -6252.3538 7.6613304 3676.3812 637.49523 -10566.23 0 367.17394 0.00085026091 0.00082886558 + 156840 -6245.095 -6252.6979 7.6028789 3683.9199 636.89514 -10573.513 0 364.37262 0.00062867222 0.00060079351 + 156850 -6245.5976 -6252.9204 7.3227439 3695.5129 634.78147 -10583.215 0 350.94697 0.00016972698 0.00014178192 + 156860 -6246.1832 -6252.8836 6.7004237 3708.1972 632.01166 -10593.092 0 321.1219 -0.00038940655 -0.00040953758 + 156870 -6246.7608 -6252.6176 5.8567659 3718.6045 629.5638 -10600.786 0 280.68909 -0.00088153137 -0.00089136916 + 156880 -6247.2269 -6252.2887 5.0618306 3723.9831 628.20888 -10604.481 0 242.59132 -0.0011641857 -0.0011690732 + 156890 -6247.542 -6252.0703 4.5282628 3723.0386 628.28437 -10603.393 0 217.01976 -0.0011670561 -0.0011754959 + 156900 -6247.7514 -6252.0414 4.2899872 3716.256 629.62694 -10597.924 0 205.60026 -0.0009113848 -0.00092761492 + 156910 -6247.9357 -6252.1938 4.2581087 3705.6178 631.66159 -10589.473 0 204.07246 -0.00049481204 -0.00051555301 + 156920 -6248.1431 -6252.5034 4.3603744 3693.9077 633.6059 -10580.017 0 208.97361 -5.2270387e-05 -7.0350355e-05 + 156930 -6248.3594 -6252.9682 4.6087751 3683.9152 634.72352 -10571.607 0 220.87836 0.00028776876 0.00027661409 + 156940 -6248.5342 -6253.5715 5.0372581 3677.7923 634.54812 -10565.912 0 241.41367 0.00043581679 0.00042915724 + 156950 -6248.6345 -6254.2218 5.5872661 3676.6634 633.01053 -10563.896 0 267.77314 0.00035707787 0.00034810696 + 156960 -6248.6792 -6254.7464 6.0672427 3680.4727 630.4377 -10565.657 0 290.77631 7.3174948e-05 5.6847454e-05 + 156970 -6248.7252 -6254.9716 6.2464647 3688.0366 627.43656 -10570.445 0 299.36564 -0.00034557983 -0.0003680415 + 156980 -6248.8162 -6254.8375 6.0212759 3697.3042 624.71141 -10576.853 0 288.57333 -0.00079577674 -0.00081798435 + 156990 -6248.9426 -6254.4541 5.5115896 3705.8352 622.87926 -10583.169 0 264.1463 -0.001164594 -0.0011806778 + 157000 -6249.0499 -6254.0406 4.9906535 3711.4328 622.3353 -10587.809 0 239.18012 -0.0013588646 -0.0013685455 + 157010 -6249.0874 -6253.7821 4.6947462 3712.7562 623.18968 -10589.728 0 224.99858 -0.0013314233 -0.0013399495 + 157020 -6249.0489 -6253.7139 4.6650039 3709.6908 625.26772 -10588.672 0 223.57316 -0.001094589 -0.0011078352 + 157030 -6248.9747 -6253.7184 4.7437078 3703.3272 628.15745 -10585.203 0 227.34509 -0.00071474568 -0.00073406648 + 157040 -6248.9142 -6253.6326 4.7183913 3695.5684 631.2948 -10580.496 0 226.13178 -0.00029006564 -0.00031143478 + 157050 -6248.8845 -6253.3761 4.4915421 3688.539 634.07838 -10575.993 0 215.2599 7.9149528e-05 6.1257334e-05 + 157060 -6248.8592 -6253.004 4.1448514 3684.0229 635.99579 -10573.023 0 198.64454 0.00031582377 0.00030352652 + 157070 -6248.7945 -6252.6608 3.8662756 3683.0856 636.73076 -10572.477 0 185.29362 0.00037994187 0.00037027005 + 157080 -6248.667 -6252.4848 3.8178277 3685.9153 636.22154 -10574.622 0 182.97173 0.0002709147 0.00025848065 + 157090 -6248.49 -6252.538 4.0479947 3691.8389 634.65825 -10579.035 0 194.00262 2.2780647e-05 4.319319e-06 + 157100 -6248.3006 -6252.7981 4.4975401 3699.4669 632.42685 -10584.692 0 215.54736 -0.00030407025 -0.0003270668 + 157110 -6248.1278 -6253.1997 5.0718786 3706.9566 630.01772 -10590.174 0 243.07288 -0.00063391009 -0.00065667677 + 157120 -6247.9691 -6253.6734 5.7043083 3712.4034 627.91957 -10593.996 0 273.38246 -0.00089051329 -0.00090944665 + 157130 -6247.7986 -6254.1438 6.3452602 3714.3239 626.51992 -10594.988 0 304.10047 -0.0010154299 -0.0010314628 + 157140 -6247.6035 -6254.4982 6.8946997 3712.103 626.03107 -10592.632 0 330.4327 -0.00098484111 -0.0010023701 + 157150 -6247.4107 -6254.5884 7.1777492 3706.2088 626.45388 -10587.251 0 343.99801 -0.00081693896 -0.00083924519 + 157160 -6247.2696 -6254.3029 7.033268 3698.0539 627.58349 -10579.94 0 337.07367 -0.00056491706 -0.00059070878 + 157170 -6247.2071 -6253.6601 6.4529652 3689.5597 629.05647 -10572.276 0 309.2623 -0.0002989688 -0.00032341311 + 157180 -6247.2023 -6252.8395 5.6372627 3682.6217 630.43515 -10565.896 0 270.16926 -8.630025e-05 -0.00010529221 + 157190 -6247.2022 -6252.1127 4.9104675 3678.6709 631.31518 -10562.099 0 235.33716 2.3656635e-05 9.9844738e-06 + 157200 -6247.1591 -6251.7155 4.5563292 3678.4197 631.43303 -10561.568 0 218.36486 7.0625367e-06 -5.6027562e-06 + 157210 -6247.0587 -6251.7365 4.6778192 3681.7806 630.74503 -10564.262 0 224.18734 -0.00013185878 -0.00014859947 + 157220 -6246.9251 -6252.0828 5.157795 3687.9156 629.45279 -10569.451 0 247.19048 -0.00036179289 -0.00038437508 + 157230 -6246.8009 -6252.5438 5.7428407 3695.3908 627.95891 -10575.894 0 275.22915 -0.00062831823 -0.00065377289 + 157240 -6246.713 -6252.9125 6.1994844 3702.4505 626.75699 -10582.12 0 297.11408 -0.00086259039 -0.00088587097 + 157250 -6246.6516 -6253.0847 6.4330075 3707.4188 626.28559 -10586.789 0 308.30581 -0.00099691092 -0.0010153522 + 157260 -6246.5852 -6253.0729 6.4876566 3709.1578 626.79247 -10589.023 0 310.92491 -0.00098540309 -0.0010007475 + 157270 -6246.4955 -6252.9549 6.459401 3707.4126 628.2542 -10588.622 0 309.57074 -0.00082148897 -0.00083767697 + 157280 -6246.3951 -6252.8167 6.4215932 3702.8784 630.37871 -10586.074 0 307.75878 -0.00054216925 -0.00056143934 + 157290 -6246.3116 -6252.7243 6.412639 3696.9579 632.69124 -10582.373 0 307.32964 -0.00021604438 -0.000237196 + 157300 -6246.2603 -6252.7099 6.4496328 3691.322 634.67379 -10578.706 0 309.10259 7.8319431e-05 5.83711e-05 + 157310 -6246.2336 -6252.7553 6.5216788 3687.4492 635.90577 -10576.11 0 312.55544 0.00027330367 0.00025678536 + 157320 -6246.2135 -6252.7853 6.5717776 3686.2714 636.15606 -10575.213 0 314.95646 0.00032602295 0.00031298514 + 157330 -6246.1875 -6252.7012 6.5137298 3687.983 635.40355 -10576.088 0 312.17448 0.00022478742 0.00021376949 + 157340 -6246.1518 -6252.4517 6.2998602 3692.0246 633.79982 -10578.276 0 301.92465 -9.637753e-06 -2.0395503e-05 + 157350 -6246.1039 -6252.0926 5.9886341 3697.2344 631.61103 -10580.938 0 287.00895 -0.00032780301 -0.00033992362 + 157360 -6246.0389 -6251.7788 5.7398637 3702.1415 629.17251 -10583.093 0 275.08648 -0.00066154592 -0.00067657618 + 157370 -6245.9565 -6251.6806 5.7240969 3705.3353 626.86301 -10583.879 0 274.33084 -0.00093901179 -0.00095787269 + 157380 -6245.8689 -6251.8826 6.0137035 3705.8155 625.0757 -10582.774 0 288.21042 -0.0011003828 -0.0011221597 + 157390 -6245.7945 -6252.3372 6.5426595 3703.2328 624.15702 -10579.727 0 313.56096 -0.0011101355 -0.0011317752 + 157400 -6245.7416 -6252.9003 7.158721 3697.9826 624.3088 -10575.192 0 343.08608 -0.0009648318 -0.00098315031 + 157410 -6245.6975 -6253.4033 7.7057072 3691.1576 625.48998 -10570.051 0 369.30073 -0.00069724302 -0.00071211607 + 157420 -6245.6445 -6253.7025 8.0580702 3684.3678 627.37898 -10565.449 0 386.18794 -0.00037509935 -0.00039048957 + 157430 -6245.5877 -6253.6955 8.1077424 3679.4054 629.44153 -10562.542 0 388.56851 -8.9154514e-05 -0.00011009265 + 157440 -6245.5643 -6253.3377 7.7734072 3677.7581 631.09732 -10562.193 0 372.54529 7.245462e-05 4.4562699e-05 + 157450 -6245.6141 -6252.6791 7.0650367 3680.0921 631.92393 -10564.695 0 338.5962 5.686253e-05 2.6061703e-05 + 157460 -6245.7414 -6251.8842 6.142795 3685.9307 631.81011 -10569.625 0 294.3972 -0.00012950285 -0.00015668725 + 157470 -6245.9048 -6251.1927 5.2879162 3693.7238 630.98895 -10575.906 0 253.42661 -0.00041980525 -0.0004395399 + 157480 -6246.045 -6250.8255 4.780594 3701.3209 629.93639 -10582.083 0 229.11289 -0.00071092627 -0.00072505903 + 157490 -6246.1237 -6250.886 4.7622783 3706.6623 629.18184 -10586.73 0 228.2351 -0.00090181164 -0.00091643542 + 157500 -6246.1483 -6251.316 5.1676671 3708.4212 629.10995 -10588.847 0 247.6636 -0.00092927005 -0.00095011402 + 157510 -6246.1679 -6251.9316 5.7636618 3706.3708 629.82439 -10588.127 0 276.22701 -0.00078762985 -0.00081565994 + 157520 -6246.2423 -6252.5213 6.2789738 3701.3715 631.11314 -10585.006 0 300.92366 -0.00052660149 -0.00055712794 + 157530 -6246.401 -6252.9562 6.5552174 3695.0177 632.52027 -10580.494 0 314.1628 -0.00023075996 -0.00025699383 + 157540 -6246.6235 -6253.2396 6.6161229 3689.1109 633.49919 -10575.85 0 317.08173 8.9814061e-06 -9.3542826e-06 + 157550 -6246.8618 -6253.4621 6.6003247 3685.1649 633.59691 -10572.224 0 316.3246 0.00012083308 0.00010829903 + 157560 -6247.0847 -6253.7067 6.6220217 3684.0614 632.60763 -10570.376 0 317.36444 6.8885962e-05 5.6559425e-05 + 157570 -6247.301 -6253.9838 6.6827788 3685.882 630.64626 -10570.512 0 320.27626 -0.00013934066 -0.00015603959 + 157580 -6247.5439 -6254.233 6.689092 3689.9102 628.12292 -10572.266 0 320.57882 -0.00045459534 -0.00047635036 + 157590 -6247.838 -6254.3655 6.5275144 3694.8201 625.63127 -10574.817 0 312.83512 -0.00079786576 -0.00082181207 + 157600 -6248.1788 -6254.3065 6.1276184 3699.0428 623.78448 -10577.134 0 293.66985 -0.0010814358 -0.0011034609 + 157610 -6248.533 -6254.0249 5.4919509 3701.2242 623.04265 -10578.292 0 263.2051 -0.0012334512 -0.0012505509 + 157620 -6248.8532 -6253.5556 4.7024959 3700.6334 623.57826 -10577.767 0 225.36999 -0.0012183767 -0.0012300487 + 157630 -6249.0999 -6253.0027 3.9027676 3697.3881 625.2202 -10575.611 0 187.04252 -0.0010473004 -0.0010555559 + 157640 -6249.2603 -6252.5147 3.2544067 3692.4262 627.49766 -10572.439 0 155.96943 -0.00077492801 -0.00078289466 + 157650 -6249.3511 -6252.2398 2.8887458 3687.2257 629.77668 -10569.242 0 138.44491 -0.00048323228 -0.00049316237 + 157660 -6249.4039 -6252.2812 2.8772981 3683.356 631.45243 -10567.09 0 137.89627 -0.00025584886 -0.00026793262 + 157670 -6249.4431 -6252.6654 3.2222918 3682.0054 632.13768 -10566.808 0 154.4303 -0.00015159581 -0.00016436651 + 157680 -6249.473 -6253.3266 3.8535591 3683.6386 631.78034 -10568.746 0 184.68417 -0.00018698535 -0.00019875984 + 157690 -6249.4832 -6254.1124 4.6291593 3687.8885 630.66145 -10572.662 0 221.85529 -0.00033438821 -0.00034440863 + 157700 -6249.4647 -6254.8215 5.3567875 3693.6935 629.27104 -10577.786 0 256.72731 -0.00053575638 -0.0005442092 + 157710 -6249.4191 -6255.2724 5.8532492 3699.6169 628.1132 -10583.002 0 280.52055 -0.00072502214 -0.00073240787 + 157720 -6249.3529 -6255.3778 6.0249501 3704.2367 627.52567 -10587.14 0 288.74941 -0.00084942072 -0.00085637413 + 157730 -6249.2666 -6255.177 5.9104231 3706.5023 627.58964 -10589.269 0 283.26064 -0.00088252542 -0.00089023954 + 157740 -6249.1567 -6254.7952 5.6384929 3705.9702 628.15671 -10588.922 0 270.22822 -0.00082698121 -0.0008371105 + 157750 -6249.0271 -6254.3584 5.331321 3702.8645 628.95852 -10586.181 0 255.50681 -0.00070866717 -0.00072199207 + 157760 -6248.8927 -6253.9306 5.0378883 3697.9552 629.73068 -10581.616 0 241.44387 -0.00056534811 -0.00058032312 + 157770 -6248.765 -6253.5184 4.7533972 3692.3144 630.29176 -10576.125 0 227.80946 -0.00043365004 -0.00044688582 + 157780 -6248.6301 -6253.1245 4.4943214 3687.0503 630.55657 -10570.731 0 215.3931 -0.00033927984 -0.0003485265 + 157790 -6248.4454 -6252.7859 4.340509 3683.113 630.50228 -10566.401 0 208.02155 -0.00029491261 -0.00030226171 + 157800 -6248.1662 -6252.5507 4.3845518 3681.2008 630.12624 -10563.878 0 210.13232 -0.00030582723 -0.00031750066 + 157810 -6247.7873 -6252.4178 4.63054 3681.7066 629.4282 -10563.553 0 221.92146 -0.00037683998 -0.00039830888 + 157820 -6247.3589 -6252.3209 4.9619484 3684.6198 628.42578 -10565.366 0 237.80441 -0.00051156686 -0.00054159574 + 157830 -6246.9493 -6252.1998 5.2505306 3689.3777 627.18953 -10568.767 0 251.63489 -0.00070129649 -0.00073109508 + 157840 -6246.5758 -6252.0983 5.522439 3694.8041 625.87432 -10572.777 0 264.66626 -0.00091227692 -0.00093234656 + 157850 -6246.1713 -6252.1625 5.9912403 3699.3177 624.72671 -10576.207 0 287.13385 -0.0010860389 -0.0010955456 + 157860 -6245.6402 -6252.5011 6.8608721 3701.4409 624.05628 -10577.998 0 328.81148 -0.0011592318 -0.0011685618 + 157870 -6244.9719 -6253.0201 8.0482082 3700.3874 624.16666 -10577.574 0 385.71529 -0.0010925723 -0.0011150176 + 157880 -6244.2951 -6253.4161 9.1209583 3696.3867 625.25314 -10575.056 0 437.1275 -0.00088902894 -0.00092853852 + 157890 -6243.7949 -6253.3722 9.5773704 3690.5648 627.29533 -10571.232 0 459.00133 -0.00059006714 -0.00063706993 + 157900 -6243.5607 -6252.7924 9.2316827 3684.5092 629.99707 -10567.299 0 442.43403 -0.00025772799 -0.00029721323 + 157910 -6243.5262 -6251.867 8.3408026 3679.8007 632.82129 -10564.489 0 399.73806 4.1419093e-05 1.7831126e-05 + 157920 -6243.5467 -6250.94 7.3932457 3677.6869 635.1228 -10563.75 0 354.32582 0.00024496954 0.00023382886 + 157930 -6243.5147 -6250.3132 6.7985289 3678.8819 636.3333 -10565.528 0 325.82365 0.00030289355 0.00029321371 + 157940 -6243.4143 -6250.1236 6.7092675 3683.4199 636.13453 -10569.678 0 321.54574 0.00019043199 0.000172323 + 157950 -6243.3043 -6250.3291 7.0247799 3690.5558 634.56611 -10575.451 0 336.66687 -7.8415229e-05 -0.00010719921 + 157960 -6243.262 -6250.7776 7.5156283 3698.7805 632.03468 -10581.593 0 360.19108 -0.00044525954 -0.0004786913 + 157970 -6243.327 -6251.3048 7.9778126 3706.0545 629.21655 -10586.576 0 382.34155 -0.00081593345 -0.00084498365 + 157980 -6243.4788 -6251.7974 8.3186186 3710.3071 626.87448 -10588.979 0 398.67488 -0.0010847074 -0.001104427 + 157990 -6243.6636 -6252.1925 8.5289301 3710.1031 625.63373 -10587.929 0 408.75419 -0.0011685991 -0.0011814241 + 158000 -6243.8453 -6252.4446 8.5992252 3705.2136 625.77973 -10583.438 0 412.12312 -0.0010393486 -0.00105222 + 158010 -6244.0337 -6252.5146 8.4809214 3696.8004 627.1477 -10576.463 0 406.45334 -0.0007384685 -0.00075660547 + 158020 -6244.2668 -6252.3996 8.1327104 3687.09 629.15907 -10568.649 0 389.76512 -0.00036643103 -0.00038909409 + 158030 -6244.5682 -6252.1668 7.5986673 3678.6622 631.01125 -10561.84 0 364.17077 -4.8455855e-05 -7.0001892e-05 + 158040 -6244.9173 -6251.9478 7.0305006 3673.6478 631.96168 -10557.557 0 336.94104 0.00010931642 9.4282028e-05 + 158050 -6245.2597 -6251.8737 6.6139899 3673.1403 631.59852 -10556.613 0 316.97951 5.4969047e-05 4.6791947e-05 + 158060 -6245.5451 -6251.9911 6.4460414 3676.9851 629.98924 -10558.965 0 308.93047 -0.00019566051 -0.00020218828 + 158070 -6245.7629 -6252.2211 6.4581786 3683.9393 627.65036 -10563.811 0 309.51216 -0.00056878539 -0.00058028177 + 158080 -6245.9475 -6252.4045 6.4570535 3692.0752 625.35681 -10569.837 0 309.45823 -0.00095805478 -0.00097716515 + 158090 -6246.1462 -6252.4184 6.2722397 3699.2818 623.87097 -10575.571 0 300.60092 -0.0012547243 -0.0012780951 + 158100 -6246.3751 -6252.2836 5.9084362 3703.7621 623.69399 -10579.74 0 283.16541 -0.0013747801 -0.0013963016 + 158110 -6246.6054 -6252.1719 5.5664709 3704.4631 624.92509 -10581.56 0 266.77652 -0.001279622 -0.0012959339 + 158120 -6246.7944 -6252.288 5.4936077 3701.3667 627.26264 -10580.917 0 263.2845 -0.00098786575 -0.0010007562 + 158130 -6246.9294 -6252.7137 5.7842909 3695.5307 630.12178 -10578.366 0 277.21568 -0.00057373404 -0.00058734018 + 158140 -6247.04 -6253.3444 6.3043986 3688.7986 632.80966 -10574.953 0 302.14215 -0.00014820685 -0.00016443661 + 158150 -6247.1683 -6253.9618 6.7935431 3683.2322 634.70323 -10571.897 0 325.5847 0.00017402792 0.00015688427 + 158160 -6247.3277 -6254.3676 7.0398602 3680.4734 635.39259 -10570.234 0 337.3896 0.00030988283 0.00029425449 + 158170 -6247.493 -6254.4702 6.9772301 3681.2816 634.76605 -10570.518 0 334.38801 0.00023064073 0.00021611771 + 158180 -6247.6293 -6254.2809 6.6516199 3685.3861 633.02069 -10572.688 0 318.78295 -3.5642269e-05 -5.2359794e-05 + 158190 -6247.7289 -6253.8614 6.1325445 3691.6368 630.59684 -10576.095 0 293.90594 -0.00041843033 -0.00043984786 + 158200 -6247.8154 -6253.2954 5.4800339 3698.3356 628.05454 -10579.686 0 262.63397 -0.0008256846 -0.00085004825 + 158210 -6247.9124 -6252.7039 4.7914877 3703.643 625.92854 -10582.275 0 229.63497 -0.0011642002 -0.0011862634 + 158220 -6248.0095 -6252.2546 4.2451328 3706.0062 624.60494 -10582.866 0 203.45058 -0.00135812 -0.0013739055 + 158230 -6248.0636 -6252.1113 4.0476202 3704.5659 624.25128 -10580.928 0 193.98467 -0.0013661967 -0.001377218 + 158240 -6248.0368 -6252.332 4.2951703 3699.4498 624.80808 -10576.59 0 205.84866 -0.0011944913 -0.0012069926 + 158250 -6247.9369 -6252.8036 4.8667197 3691.8171 626.02929 -10570.65 0 233.24052 -0.00089730281 -0.00091672416 + 158260 -6247.8208 -6253.2912 5.4704416 3683.5669 627.55241 -10564.411 0 262.17425 -0.00056125036 -0.00058702936 + 158270 -6247.7483 -6253.5859 5.8375274 3676.7776 628.98368 -10559.347 0 279.76707 -0.00027646435 -0.0003024196 + 158280 -6247.7299 -6253.6352 5.9052128 3673.1078 629.98717 -10556.73 0 283.01093 -0.00010840188 -0.00012852249 + 158290 -6247.7218 -6253.5466 5.8248288 3673.4038 630.3612 -10557.312 0 279.15848 -8.3949258e-05 -9.7844749e-05 + 158300 -6247.6748 -6253.4755 5.8006948 3677.6028 630.08097 -10561.159 0 278.00184 -0.00019428612 -0.00020704854 + 158310 -6247.5827 -6253.5057 5.922963 3684.8438 629.2934 -10567.643 0 283.86162 -0.00040557476 -0.00042266069 + 158320 -6247.484 -6253.6171 6.1330349 3693.6623 628.26956 -10575.549 0 293.92944 -0.00066793605 -0.00069028633 + 158330 -6247.4236 -6253.7369 6.3133036 3702.2302 627.33613 -10583.303 0 302.56893 -0.00092116897 -0.00094487343 + 158340 -6247.4126 -6253.8044 6.3918085 3708.672 626.80721 -10589.284 0 306.33133 -0.0011020586 -0.0011223154 + 158350 -6247.422 -6253.7922 6.3701135 3711.4728 626.9248 -10592.19 0 305.29158 -0.0011571828 -0.001172659 + 158360 -6247.4122 -6253.6841 6.2718774 3709.8943 627.80424 -10591.383 0 300.58356 -0.0010592104 -0.0010729683 + 158370 -6247.3674 -6253.4536 6.0861517 3704.2456 629.3835 -10587.083 0 291.68254 -0.00081950016 -0.00083597115 + 158380 -6247.3052 -6253.0842 5.7789752 3695.8623 631.39186 -10580.338 0 276.96092 -0.00048963193 -0.00051068423 + 158390 -6247.2547 -6252.6198 5.3650892 3686.7674 633.36939 -10572.757 0 257.12518 -0.00014967986 -0.00017328936 + 158400 -6247.2287 -6252.1853 4.956596 3679.1326 634.76082 -10566.079 0 237.54789 0.00011259754 9.0412467e-05 + 158410 -6247.2137 -6251.9425 4.7287763 3674.7263 635.07123 -10561.74 0 226.62949 0.0002247097 0.00020679219 + 158420 -6247.1787 -6252.0054 4.8266604 3674.5015 634.0313 -10560.538 0 231.32065 0.00014837818 0.00013449961 + 158430 -6247.0942 -6252.3709 5.2766419 3678.402 631.70693 -10562.48 0 252.88629 -0.00011014221 -0.00012304339 + 158440 -6246.9523 -6252.9047 5.9524019 3685.4006 628.50791 -10566.813 0 285.2725 -0.00050095573 -0.00051664049 + 158450 -6246.7763 -6253.3952 6.6189047 3693.7382 625.08924 -10572.223 0 317.21505 -0.00094187819 -0.0009621345 + 158460 -6246.6094 -6253.6545 7.0451026 3701.3104 622.17995 -10577.145 0 337.64085 -0.0013364523 -0.0013597882 + 158470 -6246.4857 -6253.6132 7.1274676 3706.1405 620.39965 -10580.153 0 341.58824 -0.0015941823 -0.0016169521 + 158480 -6246.4078 -6253.3511 6.9432699 3706.8576 620.12112 -10580.33 0 332.76045 -0.0016497073 -0.0016688392 + 158490 -6246.3498 -6253.0434 6.6936231 3703.0749 621.40801 -10577.526 0 320.79598 -0.0014784988 -0.0014936839 + 158500 -6246.2813 -6252.8544 6.5731075 3695.5595 624.02207 -10572.436 0 315.02019 -0.0011062745 -0.001119915 + 158510 -6246.1913 -6252.8447 6.6533727 3686.1206 627.47686 -10566.442 0 318.86695 -0.00060844938 -0.00062351625 + 158520 -6246.0931 -6252.9505 6.8574787 3677.2057 631.12073 -10561.277 0 328.64885 -9.652672e-05 -0.00011431685 + 158530 -6246.0072 -6253.0405 7.0333296 3671.2797 634.2465 -10558.567 0 337.07662 0.00030783364 0.00028801014 + 158540 -6245.9428 -6253.0004 7.0575428 3670.1534 636.22897 -10559.383 0 338.23705 0.00050452791 0.0004838252 + 158550 -6245.895 -6252.786 6.890991 3674.4562 636.6747 -10563.917 0 330.25495 0.00044269047 0.00042142946 + 158560 -6245.8562 -6252.4303 6.5740841 3683.4076 635.54187 -10571.38 0 315.067 0.00013633696 0.00011429779 + 158570 -6245.8236 -6252.0279 6.2043306 3694.9514 633.17835 -10580.158 0 297.34633 -0.00033601893 -0.00035864398 + 158580 -6245.7935 -6251.7106 5.9171149 3706.2374 630.24714 -10588.195 0 283.58135 -0.00084878926 -0.00087134964 + 158590 -6245.7561 -6251.6054 5.8492977 3714.3486 627.55146 -10593.505 0 280.33116 -0.0012615768 -0.0012837826 + 158600 -6245.6989 -6251.7779 6.0790464 3717.0856 625.81007 -10594.674 0 291.34201 -0.0014587671 -0.0014811076 + 158610 -6245.6167 -6252.1932 6.5764834 3713.5808 625.44984 -10591.224 0 315.18199 -0.0013844332 -0.0014076131 + 158620 -6245.5177 -6252.7194 7.2017375 3704.5629 626.47574 -10583.758 0 345.14767 -0.001060935 -0.0010849658 + 158630 -6245.4211 -6253.1778 7.7567302 3692.2003 628.45875 -10573.837 0 371.74603 -0.00058445249 -0.00060838721 + 158640 -6245.3458 -6253.4159 8.070045 3679.5494 630.65509 -10563.62 0 386.76184 -9.7593824e-05 -0.00012039722 + 158650 -6245.2991 -6253.3675 8.0683317 3669.7464 632.23432 -10555.348 0 386.67973 0.00025282321 0.00023097918 + 158660 -6245.2793 -6253.0642 7.784893 3665.1689 632.55047 -10550.784 0 373.09575 0.00035888829 0.00033662402 + 158670 -6245.2896 -6252.6038 7.3141916 3666.8056 631.36075 -10550.77 0 350.5371 0.00018255034 0.00015916043 + 158680 -6245.3394 -6252.1182 6.7788589 3674.0003 628.90823 -10555.027 0 324.88095 -0.00023288562 -0.00025582256 + 158690 -6245.4265 -6251.7631 6.336603 3684.6385 625.84255 -10562.244 0 303.68557 -0.00077335803 -0.00079326997 + 158700 -6245.5238 -6251.6882 6.1644149 3695.7511 623.02112 -10570.46 0 295.43335 -0.0012859593 -0.0013026484 + 158710 -6245.5992 -6251.9605 6.3613224 3704.3821 621.26949 -10577.612 0 304.87026 -0.0016247851 -0.0016417598 + 158720 -6245.6544 -6252.4853 6.8308707 3708.4427 621.16703 -10582.095 0 327.37365 -0.001695372 -0.0017167506 + 158730 -6245.7366 -6253.0216 7.2850438 3707.254 622.89335 -10583.169 0 349.14017 -0.0014809855 -0.0015068965 + 158740 -6245.8988 -6253.3193 7.4204766 3701.6176 626.15792 -10581.095 0 355.63087 -0.0010425365 -0.001068295 + 158750 -6246.1455 -6253.2798 7.1343115 3693.4623 630.24141 -10576.984 0 341.91624 -0.00049624228 -0.0005166307 + 158760 -6246.4233 -6253.0089 6.5856179 3685.2453 634.16583 -10572.42 0 315.61976 1.9652913e-05 5.4346035e-06 + 158770 -6246.6701 -6252.7247 6.0546087 3679.2962 636.96441 -10568.985 0 290.17082 0.0003789762 0.00036682325 + 158780 -6246.8684 -6252.6084 5.739965 3677.2343 637.96844 -10567.811 0 275.09133 0.00049715748 0.0004822597 + 158790 -6247.0501 -6252.7124 5.6623158 3679.5584 637.00706 -10569.278 0 271.36994 0.00035242055 0.00033369629 + 158800 -6247.2567 -6252.9719 5.715165 3685.5104 634.44351 -10572.926 0 273.90277 -7.2785969e-06 -2.6727329e-05 + 158810 -6247.4993 -6253.2752 5.7759134 3693.2907 631.03453 -10577.6 0 276.81418 -0.00047772791 -0.0004940989 + 158820 -6247.7528 -6253.5235 5.7707272 3700.603 627.66964 -10581.796 0 276.56563 -0.00093172109 -0.00094415035 + 158830 -6247.9838 -6253.6531 5.669367 3705.3566 625.09288 -10584.103 0 271.70788 -0.0012601588 -0.0012711242 + 158840 -6248.1775 -6253.6423 5.4647586 3706.2692 623.70654 -10583.618 0 261.90189 -0.0014031205 -0.0014158602 + 158850 -6248.3421 -6253.5233 5.1812228 3703.1636 623.51349 -10580.2 0 248.31327 -0.0013591178 -0.0013749629 + 158860 -6248.4931 -6253.3856 4.8924663 3696.9029 624.19708 -10574.486 0 234.47444 -0.0011736102 -0.001191435 + 158870 -6248.6397 -6253.347 4.7072714 3689.0529 625.28894 -10567.689 0 225.59886 -0.00091680299 -0.00093439349 + 158880 -6248.7807 -6253.4968 4.7161199 3681.4323 626.3514 -10561.281 0 226.02293 -0.00066111346 -0.00067683723 + 158890 -6248.9099 -6253.8457 4.9357998 3675.6892 627.10731 -10556.642 0 236.55122 -0.00046411329 -0.00047772966 + 158900 -6249.0208 -6254.315 5.2941809 3672.987 627.48035 -10554.782 0 253.72686 -0.00035894383 -0.00037160091 + 158910 -6249.1102 -6254.7692 5.6590093 3673.8259 627.55024 -10556.145 0 271.21148 -0.00035292387 -0.00036671044 + 158920 -6249.1826 -6255.0615 5.8788959 3678.0042 627.46343 -10560.529 0 281.74968 -0.00043353754 -0.00045034768 + 158930 -6249.2547 -6255.0762 5.8214527 3684.6942 627.35242 -10567.123 0 278.99668 -0.00057727415 -0.00059701957 + 158940 -6249.3448 -6254.7743 5.4294922 3692.5902 627.29908 -10574.664 0 260.21173 -0.00075479506 -0.0007746284 + 158950 -6249.4499 -6254.2369 4.7870105 3700.1142 627.34404 -10581.695 0 229.4204 -0.00093065681 -0.00094701075 + 158960 -6249.5368 -6253.6566 4.119799 3705.6974 627.51874 -10586.873 0 197.44388 -0.0010635624 -0.0010757544 + 158970 -6249.5659 -6253.2467 3.6807313 3708.1312 627.86954 -10589.247 0 176.4013 -0.0011138165 -0.0011252955 + 158980 -6249.5265 -6253.1191 3.5925872 3706.8857 628.45315 -10588.458 0 172.17693 -0.0010565737 -0.0010717985 + 158990 -6249.4462 -6253.2334 3.7872678 3702.2592 629.301 -10584.794 0 181.50713 -0.00089237833 -0.00091214344 + 159000 -6249.3609 -6253.4595 4.0985273 3695.291 630.36778 -10579.118 0 196.42443 -0.00064845167 -0.00066863499 + 159010 -6249.272 -6253.6917 4.4197048 3687.4997 631.48988 -10572.681 0 211.81705 -0.0003721394 -0.00038766386 + 159020 -6249.1315 -6253.9085 4.7769964 3680.5743 632.38096 -10566.864 0 228.94047 -0.00012269518 -0.00013307943 + 159030 -6248.8762 -6254.1307 5.2544989 3676.09 632.68197 -10562.903 0 251.82507 3.5706452e-05 2.4887665e-05 + 159040 -6248.4833 -6254.3391 5.8558321 3675.2279 632.06285 -10561.63 0 280.64433 4.358135e-05 2.5370645e-05 + 159050 -6247.9981 -6254.449 6.4509679 3678.455 630.35021 -10563.254 0 309.16658 -0.00013645468 -0.00016351252 + 159060 -6247.5039 -6254.3783 6.8744263 3685.2165 627.64074 -10567.236 0 329.46108 -0.00049677117 -0.00052611061 + 159070 -6247.0515 -6254.1409 7.0894052 3693.8307 624.3559 -10572.328 0 339.76408 -0.00096883159 -0.00099092426 + 159080 -6246.6127 -6253.8604 7.2477721 3701.7901 621.20354 -10576.854 0 347.35391 -0.0014297436 -0.0014409701 + 159090 -6246.1107 -6253.6593 7.5486124 3706.5021 619.03468 -10579.196 0 361.77186 -0.0017369411 -0.0017439876 + 159100 -6245.5129 -6253.5082 7.9953442 3706.217 618.6137 -10578.339 0 383.18176 -0.0017794787 -0.001794021 + 159110 -6244.8944 -6253.1949 8.3004959 3700.7164 620.35199 -10574.263 0 397.80634 -0.0015220032 -0.0015497048 + 159120 -6244.3926 -6252.4893 8.0966697 3691.4246 624.09192 -10568.006 0 388.03784 -0.0010196853 -0.0010542446 + 159130 -6244.0842 -6251.3855 7.3013481 3680.9277 629.05115 -10561.364 0 349.92157 -0.00039905248 -0.00042785707 + 159140 -6243.9136 -6250.1919 6.2783335 3672.1796 634.0001 -10556.372 0 300.89297 0.00018175087 0.00016570819 + 159150 -6243.7466 -6249.3689 5.6223006 3667.7237 637.63633 -10554.729 0 269.45219 0.00057490194 0.00056652109 + 159160 -6243.4822 -6249.2392 5.7570616 3669.0962 639.0145 -10557.35 0 275.91069 0.00067789397 0.00066468226 + 159170 -6243.1235 -6249.7939 6.6703726 3676.4213 637.86526 -10564.08 0 319.68168 0.000460639 0.00043393685 + 159180 -6242.7662 -6250.7273 7.9610937 3688.222 634.6857 -10573.635 0 381.54028 -1.8447474e-05 -5.5843705e-05 + 159190 -6242.5165 -6251.6581 9.1415817 3701.5813 630.56587 -10583.805 0 438.11589 -0.00061776394 -0.00065463876 + 159200 -6242.406 -6252.3502 9.944126 3712.8185 626.81379 -10591.982 0 476.57831 -0.0011497549 -0.0011775216 + 159210 -6242.3882 -6252.7628 10.374502 3718.6266 624.52242 -10595.912 0 497.20434 -0.0014451911 -0.0014659454 + 159220 -6242.419 -6252.9425 10.523459 3717.252 624.2348 -10594.429 0 504.34321 -0.0014172827 -0.0014408029 + 159230 -6242.5199 -6252.9216 10.401686 3709.1358 625.80709 -10587.864 0 498.50717 -0.0010923543 -0.0011259593 + 159240 -6242.7516 -6252.7248 9.9732121 3696.6989 628.4975 -10577.921 0 477.97228 -0.00059336238 -0.00063529217 + 159250 -6243.1406 -6252.4266 9.2860079 3683.429 631.24394 -10567.1 0 445.0376 -8.9390384e-05 -0.0001311153 + 159260 -6243.6439 -6252.1553 8.5113861 3672.7319 633.03357 -10557.921 0 407.91338 0.00026309524 0.00022945241 + 159270 -6244.1771 -6252.0287 7.8516557 3666.9966 633.23196 -10552.257 0 376.2954 0.00036577804 0.00034190437 + 159280 -6244.6653 -6252.0862 7.4209227 3667.1099 631.75807 -10550.954 0 355.65226 0.00020026279 0.00018138907 + 159290 -6245.0755 -6252.2713 7.1957348 3672.4437 629.06064 -10553.776 0 344.85999 -0.00017559221 -0.00019683296 + 159300 -6245.4203 -6252.465 7.0447361 3681.2114 625.93126 -10559.608 0 337.62328 -0.00065219554 -0.00068062551 + 159310 -6245.7397 -6252.5488 6.8090545 3691.0261 623.23914 -10566.814 0 326.3281 -0.0011033754 -0.0011377105 + 159320 -6246.0672 -6252.4811 6.4139242 3699.4922 621.67866 -10573.652 0 307.39124 -0.0014193964 -0.0014528888 + 159330 -6246.3955 -6252.3553 5.9597784 3704.7175 621.59827 -10578.671 0 285.62602 -0.0015295582 -0.0015553372 + 159340 -6246.6751 -6252.3703 5.6952004 3705.7094 622.9462 -10581.026 0 272.94596 -0.0014141316 -0.0014313738 + 159350 -6246.8553 -6252.6955 5.840186 3702.612 625.33126 -10580.639 0 279.89448 -0.0011079887 -0.0011230796 + 159360 -6246.9363 -6253.3198 6.3834832 3696.6832 628.16528 -10578.168 0 305.93233 -0.00069395112 -0.00071492505 + 159370 -6246.9821 -6254.0199 7.0377516 3689.9241 630.83749 -10574.781 0 337.28854 -0.00028147586 -0.00031061693 + 159380 -6247.0749 -6254.4888 7.4139872 3684.4302 632.86914 -10571.788 0 355.31987 2.7143711e-05 -4.4412977e-06 + 159390 -6247.2445 -6254.5285 7.2840038 3681.7215 634.00458 -10570.255 0 349.09033 0.00016964455 0.0001441852 + 159400 -6247.4421 -6254.1594 6.7172511 3682.3452 634.21747 -10570.722 0 321.92836 0.0001384244 0.00012272558 + 159410 -6247.5855 -6253.5765 5.9909947 3685.8845 633.64629 -10573.107 0 287.12208 -2.9747214e-05 -4.0047385e-05 + 159420 -6247.6333 -6253.012 5.3787595 3691.2661 632.50295 -10576.781 0 257.78033 -0.00027842373 -0.00029132129 + 159430 -6247.6146 -6252.6276 5.0129553 3697.1342 631.00067 -10580.762 0 240.24895 -0.00055252605 -0.00057234514 + 159440 -6247.593 -6252.501 4.9079169 3702.1292 629.32734 -10583.957 0 235.21491 -0.00080595557 -0.00083005067 + 159450 -6247.6049 -6252.662 5.0570943 3705.0722 627.66134 -10585.396 0 242.36433 -0.00099993129 -0.0010219979 + 159460 -6247.6323 -6253.1007 5.4683512 3705.1412 626.2004 -10584.442 0 262.07407 -0.0011023456 -0.0011186169 + 159470 -6247.63 -6253.7294 6.0994111 3702.0749 625.16385 -10580.968 0 292.318 -0.001093688 -0.0011060681 + 159480 -6247.578 -6254.3593 6.7813715 3696.3326 624.74439 -10575.436 0 325.00137 -0.00097632131 -0.00098990961 + 159490 -6247.5059 -6254.754 7.2481271 3689.0836 625.02252 -10568.86 0 347.37092 -0.00077919792 -0.00079713575 + 159500 -6247.4656 -6254.7545 7.2889174 3681.9577 625.89268 -10562.605 0 349.32582 -0.00055273845 -0.00057360863 + 159510 -6247.4809 -6254.3813 6.90042 3676.625 627.05884 -10558.065 0 330.70684 -0.00035557294 -0.00037550508 + 159520 -6247.5291 -6253.8231 6.2939919 3674.3679 628.12308 -10556.314 0 301.64341 -0.00023935677 -0.00025607404 + 159530 -6247.5669 -6253.3183 5.7513988 3675.781 628.73366 -10557.833 0 275.6393 -0.00023644211 -0.00025119169 + 159540 -6247.5661 -6253.0212 5.4550284 3680.6512 628.72226 -10562.395 0 261.43557 -0.00035181362 -0.00036798084 + 159550 -6247.5292 -6252.9382 5.4090474 3688.0042 628.16879 -10569.111 0 259.2319 -0.00055998078 -0.00058013632 + 159560 -6247.4796 -6252.9575 5.477874 3696.2924 627.37185 -10576.622 0 262.53046 -0.00080815256 -0.00083195089 + 159570 -6247.4406 -6252.9426 5.5020203 3703.6943 626.74354 -10583.38 0 263.68768 -0.0010263455 -0.0010508149 + 159580 -6247.4131 -6252.8303 5.4172079 3708.5017 626.67125 -10588.003 0 259.623 -0.0011436248 -0.0011657031 + 159590 -6247.3732 -6252.6701 5.2968814 3709.544 627.39174 -10589.606 0 253.85628 -0.0011080756 -0.0011273094 + 159600 -6247.2911 -6252.5829 5.2917185 3706.551 628.90944 -10588.043 0 253.60884 -0.00090548304 -0.00092439652 + 159610 -6247.1546 -6252.6801 5.5254754 3700.3076 630.97344 -10583.961 0 264.81178 -0.00056933896 -0.0005911232 + 159620 -6246.9744 -6253.0054 6.0310194 3692.4934 633.11823 -10578.617 0 289.04029 -0.00017632459 -0.00020207989 + 159630 -6246.771 -6253.5209 6.7499333 3685.2336 634.768 -10573.522 0 323.49468 0.00017265849 0.00014475664 + 159640 -6246.5595 -6254.1211 7.5615365 3680.5062 635.39038 -10570.018 0 362.39126 0.00037998241 0.00035323149 + 159650 -6246.3454 -6254.6588 8.3134058 3679.5918 634.66119 -10568.912 0 398.42505 0.00037921334 0.00035593434 + 159660 -6246.1291 -6254.9809 8.8518607 3682.7116 632.58627 -10570.279 0 424.23083 0.00015579523 0.00013550202 + 159670 -6245.9157 -6254.9666 9.0508954 3688.953 629.53495 -10573.454 0 433.76969 -0.0002458166 -0.00026633177 + 159680 -6245.7235 -6254.5571 8.8335263 3696.5067 626.16758 -10577.231 0 423.35215 -0.00073161535 -0.00075590118 + 159690 -6245.5824 -6253.7767 8.1942757 3703.154 623.27295 -10580.204 0 392.71567 -0.0011815904 -0.0012103035 + 159700 -6245.515 -6252.7507 7.2356903 3706.86 621.55792 -10581.169 0 346.77488 -0.0014801943 -0.001509919 + 159710 -6245.512 -6251.7057 6.1936588 3706.324 621.44908 -10579.479 0 296.83488 -0.0015459438 -0.0015717742 + 159720 -6245.5276 -6250.9172 5.3895671 3701.3673 622.96874 -10575.253 0 258.2983 -0.0013543045 -0.0013741858 + 159730 -6245.5053 -6250.5972 5.0919014 3693.0716 625.72733 -10569.396 0 244.03248 -0.0009485873 -0.00096516657 + 159740 -6245.413 -6250.7854 5.3723786 3683.5905 629.03303 -10563.409 0 257.47453 -0.00043315819 -0.0004512957 + 159750 -6245.2573 -6251.3292 6.0719178 3675.616 632.08006 -10559.025 0 291.00037 5.3392586e-05 3.0859081e-05 + 159760 -6245.0716 -6251.9728 6.9011779 3671.6132 634.16017 -10557.746 0 330.74317 0.000379037 0.00035336061 + 159770 -6244.891 -6252.4875 7.5965335 3673.0621 634.84297 -10560.393 0 364.06851 0.00045902496 0.00043416951 + 159780 -6244.7337 -6252.7699 8.0362261 3679.9695 634.079 -10566.818 0 385.14105 0.00028145284 0.00026095521 + 159790 -6244.5958 -6252.8659 8.2700919 3690.8165 632.19824 -10575.881 0 396.34921 -9.0881018e-05 -0.00010645251 + 159800 -6244.4624 -6252.9243 8.4618971 3702.9643 629.80877 -10585.697 0 405.54159 -0.00054145517 -0.00055509192 + 159810 -6244.3286 -6253.0986 8.770034 3713.3903 627.63042 -10594.119 0 420.30924 -0.00093572101 -0.0009523434 + 159820 -6244.2211 -6253.4413 9.2202249 3719.527 626.3105 -10599.279 0 441.88491 -0.0011602724 -0.0011835157 + 159830 -6244.2015 -6253.851 9.6494442 3719.9432 626.26165 -10600.056 0 462.45551 -0.0011542567 -0.0011834695 + 159840 -6244.337 -6254.1196 9.7825474 3714.6744 627.54883 -10596.343 0 468.83456 -0.00092420087 -0.00095416308 + 159850 -6244.6478 -6254.0618 9.4140237 3705.1398 629.84897 -10589.051 0 451.17284 -0.00053874115 -0.00056322446 + 159860 -6245.0764 -6253.6381 8.5616797 3693.7205 632.51003 -10579.869 0 410.32373 -0.00010687979 -0.00012373245 + 159870 -6245.5185 -6252.9783 7.459795 3683.1479 634.72197 -10570.848 0 357.51523 0.00025187019 0.0002386487 + 159880 -6245.8946 -6252.2966 6.4020724 3675.8491 635.76414 -10563.91 0 306.82323 0.00043758492 0.0004210737 + 159890 -6246.1968 -6251.777 5.5801353 3673.3713 635.24142 -10560.39 0 267.4314 0.00039508143 0.00037134517 + 159900 -6246.4733 -6251.5155 5.0421524 3676.0048 633.21211 -10560.732 0 241.64824 0.00012949015 0.00010104919 + 159910 -6246.7717 -6251.5398 4.7680933 3682.7148 630.15801 -10564.413 0 228.51379 -0.00029299951 -0.00031916921 + 159920 -6247.0939 -6251.8546 4.7607573 3691.4435 626.8179 -10570.116 0 228.1622 -0.00076254354 -0.00078099897 + 159930 -6247.399 -6252.4499 5.050821 3699.728 623.95955 -10576.137 0 242.06368 -0.0011585004 -0.0011703228 + 159940 -6247.6486 -6253.2541 5.6055555 3705.4457 622.17657 -10580.876 0 268.64967 -0.0013869948 -0.0013992176 + 159950 -6247.8523 -6254.0961 6.2438408 3707.4093 621.76512 -10583.271 0 299.23989 -0.0014079266 -0.0014275097 + 159960 -6248.069 -6254.7466 6.6776115 3705.5934 622.69256 -10583.033 0 320.02861 -0.0012402698 -0.001267831 + 159970 -6248.3554 -6255.0384 6.683007 3700.9531 624.64332 -10580.635 0 320.2872 -0.00094594044 -0.00097495704 + 159980 -6248.7098 -6254.9737 6.2638951 3694.9928 627.12032 -10577.087 0 300.201 -0.00060353689 -0.00062582085 + 159990 -6249.0679 -6254.726 5.658147 3689.3126 629.57618 -10573.615 0 271.17015 -0.00028596792 -0.00029852698 + 160000 -6249.353 -6254.5264 5.17339 3685.2823 631.54173 -10571.35 0 247.93788 -4.9059239e-05 -5.642806e-05 + 160010 -6249.5339 -6254.5177 4.9837962 3683.8494 632.71904 -10571.086 0 238.85148 7.1386366e-05 6.1033517e-05 + 160020 -6249.6424 -6254.6808 5.0383747 3685.4136 633.01863 -10573.113 0 241.46719 6.0607451e-05 4.2044071e-05 + 160030 -6249.7439 -6254.8757 5.1318402 3689.7281 632.54132 -10577.145 0 245.94658 -7.2716001e-05 -9.7849947e-05 + 160040 -6249.8855 -6254.9546 5.0691729 3695.8782 631.52184 -10582.355 0 242.94321 -0.000295039 -0.0003198858 + 160050 -6250.0621 -6254.8604 4.7982828 3702.4246 630.25729 -10587.542 0 229.96064 -0.0005523998 -0.00057048302 + 160060 -6250.224 -6254.646 4.4220073 3707.7419 629.0384 -10591.426 0 211.9274 -0.00078295092 -0.00079310396 + 160070 -6250.3183 -6254.4174 4.0991325 3710.4664 628.09384 -10592.978 0 196.45343 -0.00093419143 -0.00094098354 + 160080 -6250.329 -6254.2564 3.9273988 3709.883 627.55291 -10591.692 0 188.22299 -0.00097758605 -0.00098724821 + 160090 -6250.2839 -6254.1872 3.9033247 3706.0994 627.43089 -10587.718 0 187.06922 -0.00091415464 -0.00092966732 + 160100 -6250.2257 -6254.2001 3.9744092 3699.962 627.63972 -10581.802 0 190.47599 -0.00076983329 -0.00078921615 + 160110 -6250.1745 -6254.2882 4.1136587 3692.7938 628.02119 -10575.103 0 197.14961 -0.00058501231 -0.00060374982 + 160120 -6250.1132 -6254.4512 4.3379476 3686.0787 628.39228 -10568.922 0 207.89879 -0.0004042755 -0.00041927485 + 160130 -6250.0023 -6254.6636 4.661317 3681.1813 628.5881 -10564.433 0 223.39646 -0.00026932011 -0.00028102297 + 160140 -6249.808 -6254.8489 5.0408918 3679.1215 628.49233 -10562.463 0 241.58782 -0.00021396646 -0.00022533263 + 160150 -6249.5223 -6254.8974 5.3751079 3680.3952 628.0544 -10563.347 0 257.60533 -0.00025880322 -0.00027248443 + 160160 -6249.1612 -6254.7275 5.5662702 3684.8453 627.29946 -10566.872 0 266.7669 -0.00040470685 -0.00042087531 + 160170 -6248.7442 -6254.3514 5.6071991 3691.6213 626.33645 -10572.309 0 268.72844 -0.00062720897 -0.00064379307 + 160180 -6248.271 -6253.8955 5.624486 3699.2818 625.36501 -10578.542 0 269.55693 -0.00087542455 -0.00089049548 + 160190 -6247.7153 -6253.5429 5.8276106 3706.0702 624.67407 -10584.287 0 279.2918 -0.0010788222 -0.0010929115 + 160200 -6247.046 -6253.4206 6.3745788 3710.3293 624.61541 -10588.365 0 305.50558 -0.0011627065 -0.0011786499 + 160210 -6246.2685 -6253.5032 7.2346978 3710.9524 625.52936 -10589.985 0 346.72731 -0.0010701819 -0.0010902237 + 160220 -6245.4543 -6253.6129 8.1585962 3707.7395 627.61184 -10588.964 0 391.00571 -0.0007850258 -0.00080778102 + 160230 -6244.7152 -6253.5314 8.8162341 3701.5354 630.75319 -10585.82 0 422.5234 -0.00034651465 -0.00036726401 + 160240 -6244.1273 -6253.1535 9.0261516 3694.0756 634.4348 -10581.664 0 432.58383 0.00015268001 0.00013762666 + 160250 -6243.6833 -6252.563 8.8797727 3687.552 637.78639 -10577.901 0 425.56853 0.00058766278 0.00057633903 + 160260 -6243.3282 -6251.9621 8.6339211 3684.0117 639.83921 -10575.813 0 413.78594 0.00083509695 0.00082027508 + 160270 -6243.0394 -6251.5105 8.4711649 3684.7411 639.88905 -10576.141 0 405.98576 0.00081004262 0.00078571597 + 160280 -6242.8575 -6251.2242 8.3667501 3689.7812 637.79812 -10578.803 0 400.98161 0.00049746484 0.00046586914 + 160290 -6242.8316 -6251.029 8.1974571 3697.7356 634.08107 -10582.846 0 392.86814 -3.1269047e-05 -5.9953242e-05 + 160300 -6242.9355 -6250.904 7.9684387 3706.046 629.73072 -10586.681 0 381.89229 -0.00062963087 -0.00064670891 + 160310 -6243.0579 -6250.9342 7.8763782 3711.7934 625.8749 -10588.603 0 377.48024 -0.0011213943 -0.001129764 + 160320 -6243.0971 -6251.1898 8.0926834 3712.7905 623.42357 -10587.404 0 387.8468 -0.0013661554 -0.0013796314 + 160330 -6243.0686 -6251.5733 8.5047171 3708.4443 622.82713 -10582.845 0 407.59376 -0.0013118549 -0.0013425914 + 160340 -6243.1 -6251.849 8.7490136 3699.9301 623.98776 -10575.767 0 419.30182 -0.0010060951 -0.0010522856 + 160350 -6243.308 -6251.8537 8.5457317 3689.6409 626.3226 -10567.817 0 409.55941 -0.00056507993 -0.00061157568 + 160360 -6243.6837 -6251.6756 7.9919793 3680.2977 628.96031 -10560.934 0 383.02049 -0.00012409605 -0.00015541623 + 160370 -6244.1016 -6251.6156 7.5140133 3674.1812 631.02025 -10556.817 0 360.11368 0.00020313317 0.00018981581 + 160380 -6244.4335 -6251.9608 7.527346 3672.7011 631.88582 -10556.548 0 360.75266 0.00034481222 0.00033796275 + 160390 -6244.6555 -6252.7585 8.1029771 3676.2417 631.38247 -10560.383 0 388.34013 0.00027684435 0.00026062963 + 160400 -6244.8668 -6253.7646 8.8978102 3684.1342 629.80737 -10567.706 0 426.43299 2.3925559e-05 -8.9290666e-06 + 160410 -6245.2077 -6254.5995 9.3918503 3694.7171 627.80838 -10577.125 0 450.11017 -0.00034200592 -0.00038502617 + 160420 -6245.74 -6254.9864 9.2464554 3705.5939 626.15624 -10586.737 0 443.14202 -0.00071333932 -0.00075246829 + 160430 -6246.3907 -6254.8947 8.5040238 3714.1868 625.48925 -10594.571 0 407.56054 -0.00097518886 -0.0010003501 + 160440 -6247.0095 -6254.5023 7.4927397 3718.4854 626.11557 -10599.103 0 359.09413 -0.0010446562 -0.0010567313 + 160450 -6247.481 -6254.0416 6.5605611 3717.6888 627.93008 -10599.66 0 314.4189 -0.00090241611 -0.00091075536 + 160460 -6247.7897 -6253.6639 5.8742345 3712.4362 630.45959 -10596.56 0 281.52628 -0.00059954313 -0.00061352321 + 160470 -6248.0001 -6253.4065 5.4064854 3704.5169 633.01521 -10590.939 0 259.10911 -0.00023637841 -0.00025843508 + 160480 -6248.1898 -6253.2476 5.0578274 3696.2083 634.90483 -10584.361 0 242.39947 7.556433e-05 5.0546842e-05 + 160490 -6248.3935 -6253.1707 4.777262 3689.548 635.64069 -10578.359 0 228.9532 0.00025135017 0.00023100437 + 160500 -6248.5906 -6253.1823 4.591745 3685.8209 635.07247 -10574.076 0 220.06218 0.00025550108 0.00024387909 + 160510 -6248.7336 -6253.287 4.5534348 3685.3906 633.39884 -10572.076 0 218.22615 0.00010406519 9.8856419e-05 + 160520 -6248.7889 -6253.4588 4.6698599 3687.828 631.06056 -10572.347 0 223.80589 -0.00015082454 -0.00015630666 + 160530 -6248.7656 -6253.6406 4.874951 3692.1953 628.56977 -10574.406 0 233.635 -0.00044432265 -0.0004560539 + 160540 -6248.7119 -6253.7793 5.0673715 3697.3328 626.35348 -10577.466 0 242.85688 -0.00071875179 -0.00073747213 + 160550 -6248.6807 -6253.8794 5.198686 3702.0692 624.67108 -10580.62 0 249.1502 -0.00093240533 -0.00095321451 + 160560 -6248.6878 -6254.0268 5.3390228 3705.3704 623.62221 -10583.019 0 255.87593 -0.0010581504 -0.0010747901 + 160570 -6248.7008 -6254.3396 5.638779 3706.4941 623.2151 -10584.049 0 270.24193 -0.001079657 -0.0010899133 + 160580 -6248.6721 -6254.8607 6.1885964 3705.1694 623.4396 -10583.47 0 296.59226 -0.0009922111 -0.00099964775 + 160590 -6248.5873 -6255.4767 6.8893413 3701.7312 624.29429 -10581.502 0 330.17589 -0.0008077911 -0.00081836883 + 160600 -6248.484 -6255.9446 7.4606494 3697.0957 625.7517 -10578.792 0 357.55618 -0.00055815377 -0.00057505383 + 160610 -6248.4204 -6256.0283 7.6079147 3692.533 627.6894 -10576.251 0 364.61396 -0.00029064114 -0.00031214993 + 160620 -6248.4221 -6255.6438 7.2217484 3689.3121 629.84364 -10574.8 0 346.10671 -5.7594383e-05 -7.9681664e-05 + 160630 -6248.4625 -6254.906 6.4434642 3688.3613 631.83438 -10575.102 0 308.80696 9.5180616e-05 7.4687446e-05 + 160640 -6248.4941 -6254.0463 5.5521789 3690.0541 633.26675 -10577.367 0 266.09157 0.0001370429 0.00011703472 + 160650 -6248.4929 -6253.2831 4.7902353 3694.1365 633.86402 -10581.284 0 229.57495 5.8793854e-05 3.7175937e-05 + 160660 -6248.4686 -6252.7423 4.2736925 3699.7648 633.5675 -10586.075 0 204.81932 -0.000122172 -0.00014548073 + 160670 -6248.4382 -6252.4641 4.0259215 3705.6403 632.55889 -10590.663 0 192.94475 -0.00036031135 -0.00038312507 + 160680 -6248.3939 -6252.4492 4.0552274 3710.2695 631.20028 -10593.919 0 194.34925 -0.00058908374 -0.00060971539 + 160690 -6248.3013 -6252.677 4.375705 3712.3461 629.91925 -10594.942 0 209.70833 -0.00073907669 -0.00075893431 + 160700 -6248.1279 -6253.0815 4.953653 3711.1666 629.07839 -10593.327 0 237.40685 -0.00076190352 -0.00078463588 + 160710 -6247.8731 -6253.5386 5.6655292 3706.897 628.86433 -10589.3 0 271.52395 -0.00064855983 -0.00067628525 + 160720 -6247.5638 -6253.9155 6.3516996 3700.5542 629.22489 -10583.695 0 304.40909 -0.00043275973 -0.00046347726 + 160730 -6247.2194 -6254.1507 6.9312895 3693.7127 629.87802 -10577.741 0 332.18628 -0.00017895498 -0.00020807992 + 160740 -6246.8252 -6254.2837 7.4584394 3688.0784 630.40101 -10572.763 0 357.45027 3.7410242e-05 1.2974994e-05 + 160750 -6246.3402 -6254.3981 8.0578263 3685.0735 630.37963 -10569.851 0 386.17625 0.00014969217 0.00012900984 + 160760 -6245.7325 -6254.53 8.7975271 3685.5052 629.56953 -10569.605 0 421.62686 0.0001166651 9.5880934e-05 + 160770 -6245.0103 -6254.6156 9.6052825 3689.3496 628.01291 -10571.978 0 460.33903 -6.480476e-05 -8.9102566e-05 + 160780 -6244.2276 -6254.5147 10.287112 3695.6898 626.06634 -10576.271 0 493.01612 -0.00035341151 -0.00038164248 + 160790 -6243.4596 -6254.0906 10.630982 3702.8712 624.32239 -10581.284 0 509.49631 -0.0006680757 -0.00069787307 + 160800 -6242.7653 -6253.2922 10.526899 3708.9016 623.44238 -10585.636 0 504.50808 -0.00090703091 -0.00093569535 + 160810 -6242.1639 -6252.1936 10.02969 3712.0269 623.94715 -10588.168 0 480.67904 -0.0009786445 -0.0010055349 + 160820 -6241.6429 -6250.9773 9.3343436 3711.3025 626.02854 -10588.308 0 447.35412 -0.00083378072 -0.00086053801 + 160830 -6241.1825 -6249.8787 8.6961681 3706.9438 629.44175 -10586.264 0 416.76917 -0.00048630007 -0.00051486511 + 160840 -6240.7699 -6249.124 8.3541274 3700.2982 633.5238 -10582.946 0 400.37666 -1.2385294e-05 -4.2900263e-05 + 160850 -6240.3935 -6248.872 8.4784652 3693.4364 637.35415 -10579.663 0 406.33563 0.00047125496 0.00044061483 + 160860 -6240.0377 -6249.1548 9.1170412 3688.5205 640.0243 -10577.7 0 436.93977 0.00084154991 0.00081303401 + 160870 -6239.6958 -6249.8342 10.138394 3687.1652 640.92669 -10577.926 0 485.88872 0.0010041017 0.00097895769 + 160880 -6239.3926 -6250.6268 11.234149 3689.9673 639.94596 -10580.54 0 538.40347 0.00091984642 0.00089790472 + 160890 -6239.1866 -6251.2213 12.034672 3696.3129 637.46881 -10585.003 0 576.76899 0.00061644326 0.00059610006 + 160900 -6239.1459 -6251.4317 12.285811 3704.5338 634.21557 -10590.181 0 588.80502 0.00017954367 0.00015793374 + 160910 -6239.3227 -6251.2782 11.955514 3712.3916 630.9838 -10594.654 0 572.97533 -0.00027482172 -0.00030044701 + 160920 -6239.7473 -6250.9506 11.203301 3717.7389 628.42252 -10597.112 0 536.92503 -0.00063588444 -0.0006655578 + 160930 -6240.424 -6250.7005 10.276457 3719.1212 626.90958 -10596.731 0 492.5055 -0.00082685377 -0.0008567315 + 160940 -6241.3184 -6250.7379 9.4194929 3716.1393 626.53286 -10593.41 0 451.43495 -0.00081885625 -0.00084391807 + 160950 -6242.3542 -6251.1588 8.8045582 3709.5199 627.13433 -10587.813 0 421.96383 -0.00063244309 -0.00065104878 + 160960 -6243.4378 -6251.908 8.4701923 3700.9178 628.37816 -10581.204 0 405.93914 -0.00033085548 -0.00034627595 + 160970 -6244.4881 -6252.7995 8.3113948 3692.4947 629.82812 -10575.122 0 398.32867 -4.7789338e-06 -2.2103343e-05 + 160980 -6245.4491 -6253.605 8.1559198 3686.3595 631.03591 -10571 0 390.87744 0.00025145364 0.0002295004 + 160990 -6246.2883 -6254.1649 7.8766101 3684.0256 631.63919 -10569.83 0 377.49135 0.00036620251 0.00034066849 + 161000 -6246.9939 -6254.4511 7.4572655 3686.0397 631.45478 -10571.946 0 357.394 0.00031028131 0.00028434156 + 161010 -6247.5699 -6254.5489 6.978985 3691.8685 630.53961 -10576.957 0 334.47212 0.00010375246 8.0214971e-05 + 161020 -6248.0299 -6254.5824 6.5525029 3700.0585 629.18845 -10583.829 0 314.03271 -0.00019172091 -0.00021183713 + 161030 -6248.3917 -6254.6402 6.2484957 3708.6199 627.85399 -10591.114 0 299.46297 -0.00049183276 -0.0005092925 + 161040 -6248.6737 -6254.7388 6.0651454 3715.5384 627.00721 -10597.284 0 290.6758 -0.00071375531 -0.00073036701 + 161050 -6248.8933 -6254.8293 5.9360482 3719.2811 626.98687 -10601.097 0 284.48874 -0.00079868675 -0.00081639522 + 161060 -6249.0675 -6254.8282 5.7607499 3719.1641 627.89306 -10601.885 0 276.08746 -0.00072704316 -0.00074694902 + 161070 -6249.2133 -6254.6612 5.4478577 3715.478 629.55877 -10599.698 0 261.09191 -0.00052218295 -0.00054375414 + 161080 -6249.3426 -6254.3079 4.9652799 3709.3463 631.60042 -10595.255 0 237.96407 -0.00024162141 -0.00026277855 + 161090 -6249.4555 -6253.8327 4.3771829 3702.3848 633.52358 -10589.741 0 209.77917 4.0929537e-05 2.253177e-05 + 161100 -6249.5395 -6253.3794 3.8398618 3696.2813 634.84989 -10584.511 0 184.02772 0.00025603321 0.00024121199 + 161110 -6249.5764 -6253.1231 3.5467016 3692.4171 635.23275 -10580.773 0 169.97784 0.00035476455 0.00034184645 + 161120 -6249.5551 -6253.1962 3.6410399 3691.603 634.53698 -10579.336 0 174.49906 0.00031701332 0.00030275814 + 161130 -6249.4816 -6253.6225 4.1409063 3693.9482 632.8689 -10580.44 0 198.45546 0.00015241053 0.00013455019 + 161140 -6249.3775 -6254.3041 4.9266065 3698.8496 630.5531 -10583.707 0 236.11062 -0.00010299344 -0.00012358425 + 161150 -6249.2642 -6255.0702 5.8060032 3705.0965 628.06248 -10588.229 0 278.25625 -0.00039240866 -0.00041222261 + 161160 -6249.1447 -6255.7499 6.6051929 3711.1171 625.91733 -10592.784 0 316.5579 -0.00064786466 -0.00066398895 + 161170 -6249.0056 -6256.2124 7.2067692 3715.3681 624.57494 -10596.155 0 345.38882 -0.00080572715 -0.00081875565 + 161180 -6248.8413 -6256.3629 7.5216378 3716.7746 624.32923 -10597.467 0 360.47909 -0.00082542003 -0.00083885785 + 161190 -6248.6739 -6256.1398 7.4659145 3715.0487 625.23877 -10596.427 0 357.80851 -0.0007028587 -0.00071942688 + 161200 -6248.5409 -6255.5483 7.0073612 3710.7445 627.10368 -10593.396 0 335.83207 -0.00047068083 -0.00048942772 + 161210 -6248.4595 -6254.7037 6.2442331 3705.0458 629.50973 -10589.259 0 299.25869 -0.00018537097 -0.00020272515 + 161220 -6248.4067 -6253.8185 5.4117525 3699.4116 631.93808 -10585.168 0 259.36154 9.0453608e-05 7.6856751e-05 + 161230 -6248.3373 -6253.109 4.771714 3695.2275 633.90629 -10582.243 0 228.68731 0.000301812 0.00029066085 + 161240 -6248.2195 -6252.6842 4.4647478 3693.538 635.08608 -10581.308 0 213.97576 0.00040891986 0.00039663657 + 161250 -6248.0541 -6252.5071 4.4529399 3694.8492 635.35497 -10582.711 0 213.40987 0.00039188308 0.00037622861 + 161260 -6247.8606 -6252.463 4.6023513 3698.9975 634.77625 -10586.237 0 220.5705 0.0002550568 0.00023702875 + 161270 -6247.6464 -6252.4751 4.8286509 3705.1255 633.53891 -10591.14 0 231.41605 2.9000952e-05 1.1102971e-05 + 161280 -6247.3909 -6252.5644 5.173426 3711.829 631.90133 -10596.295 0 247.9396 -0.00023393448 -0.00025098663 + 161290 -6247.0616 -6252.8081 5.746421 3717.4769 630.16326 -10600.448 0 275.40074 -0.00047095026 -0.00048927624 + 161300 -6246.6475 -6253.2436 6.5960914 3720.6115 628.65517 -10602.51 0 316.12171 -0.00062283128 -0.00064482295 + 161310 -6246.1778 -6253.8114 7.6336471 3720.3015 627.7119 -10601.825 0 365.8472 -0.0006457659 -0.00067068913 + 161320 -6245.7051 -6254.3795 8.6743445 3716.3719 627.60457 -10598.356 0 415.72326 -0.00051991545 -0.00054374918 + 161330 -6245.2716 -6254.8113 9.5396591 3709.4986 628.43923 -10592.749 0 457.19399 -0.00025687218 -0.00027611176 + 161340 -6244.8932 -6255.0076 10.114306 3701.1642 630.06829 -10586.24 0 484.73427 9.4339558e-05 7.8741859e-05 + 161350 -6244.5775 -6254.9042 10.326776 3693.4205 632.07436 -10580.399 0 494.91707 0.00044921324 0.00043204309 + 161360 -6244.3466 -6254.4669 10.120278 3688.4155 633.86326 -10576.746 0 485.02048 0.00070544051 0.00068157919 + 161370 -6244.2348 -6253.7106 9.4758232 3687.7569 634.8528 -10576.32 0 454.13462 0.00077558715 0.00074461496 + 161380 -6244.2608 -6252.7313 8.4704674 3691.9274 634.69048 -10579.349 0 405.95233 0.00062220947 0.00058944357 + 161390 -6244.4033 -6251.7179 7.3145721 3700.004 633.40428 -10585.126 0 350.55534 0.00027844292 0.00025149317 + 161400 -6244.5978 -6250.9242 6.3264028 3709.8433 631.41309 -10592.181 0 303.19672 -0.00015708894 -0.00017405512 + 161410 -6244.7645 -6250.5895 5.8249683 3718.7182 629.38837 -10598.696 0 279.16516 -0.00055109621 -0.0005611619 + 161420 -6244.8549 -6250.8225 5.9676131 3724.1933 628.02608 -10603.042 0 286.0015 -0.00078108275 -0.00079285806 + 161430 -6244.8903 -6251.5234 6.6330622 3724.9009 627.81531 -10604.24 0 317.89356 -0.00077726906 -0.00079824287 + 161440 -6244.9563 -6252.4203 7.4639234 3720.9093 628.87818 -10602.208 0 357.71309 -0.0005440423 -0.00057443338 + 161450 -6245.1472 -6253.2161 8.0688768 3713.5856 630.92696 -10597.729 0 386.70585 -0.00015415428 -0.00018685508 + 161460 -6245.5006 -6253.7394 8.2388313 3705.0908 633.3515 -10592.182 0 394.85103 0.00027833315 0.00025157795 + 161470 -6245.9789 -6253.9925 8.013587 3697.7432 635.41188 -10587.148 0 384.05606 0.00063325322 0.00061504598 + 161480 -6246.5124 -6254.0824 7.5699865 3693.4344 636.47378 -10583.991 0 362.79623 0.00081594583 0.00080178528 + 161490 -6247.0588 -6254.1115 7.0527067 3693.1919 636.20628 -10583.51 0 338.00528 0.00077929092 0.00076235799 + 161500 -6247.6212 -6254.1181 6.4968914 3696.9406 634.67579 -10585.734 0 311.36749 0.00053432515 0.00051182934 + 161510 -6248.2131 -6254.0998 5.8867611 3703.522 632.30929 -10589.931 0 282.12662 0.00014790031 0.00012321461 + 161520 -6248.8156 -6254.0766 5.2609587 3711.0098 629.74877 -10594.835 0 252.13466 -0.00027443009 -0.00029542197 + 161530 -6249.374 -6254.114 4.7399898 3717.2745 627.65673 -10599.045 0 227.16691 -0.0006183727 -0.00063283625 + 161540 -6249.8347 -6254.28 4.4452896 3720.6231 626.5386 -10601.442 0 213.04322 -0.00079495401 -0.00080531219 + 161550 -6250.1818 -6254.5772 4.3953622 3720.2894 626.62372 -10601.49 0 210.65042 -0.00076643077 -0.00077761299 + 161560 -6250.4425 -6254.9255 4.4829664 3716.6058 627.81839 -10599.35 0 214.8489 -0.00055498846 -0.00056970029 + 161570 -6250.6611 -6255.2197 4.5586212 3710.8226 629.73405 -10595.776 0 218.4747 -0.00023215799 -0.00024857596 + 161580 -6250.8634 -6255.4127 4.5492314 3704.6725 631.79099 -10591.876 0 218.02469 0.00010591222 9.2099533e-05 + 161590 -6251.04 -6255.5463 4.5062723 3699.8607 633.38274 -10588.79 0 215.96585 0.00036736101 0.00035864866 + 161600 -6251.1607 -6255.6992 4.5384782 3697.6429 634.05815 -10587.4 0 217.50934 0.00048784225 0.00048238816 + 161610 -6251.2076 -6255.8957 4.6881052 3698.5716 633.65884 -10588.126 0 224.68031 0.00044305226 0.00043621375 + 161620 -6251.1969 -6256.059 4.8621111 3702.4125 632.3593 -10590.831 0 233.01964 0.00025083392 0.00023927813 + 161630 -6251.169 -6256.053 4.8839229 3708.2076 630.59359 -10594.854 0 234.06499 -3.4999049e-05 -5.0407573e-05 + 161640 -6251.1558 -6255.783 4.6271639 3714.4833 628.89989 -10599.166 0 221.75966 -0.00033797791 -0.00035312997 + 161650 -6251.1548 -6255.2744 4.1195947 3719.6022 627.74684 -10602.623 0 197.43409 -0.00057841259 -0.0005897749 + 161660 -6251.1357 -6254.6686 3.5328355 3722.1975 627.40575 -10604.272 0 169.3133 -0.00069510895 -0.00070284427 + 161670 -6251.0702 -6254.1458 3.0755616 3721.5626 627.90195 -10603.61 0 147.39817 -0.00066232571 -0.00066998352 + 161680 -6250.9557 -6253.8384 2.8827065 3717.8509 629.04173 -10600.731 0 138.15547 -0.00049538974 -0.0005066517 + 161690 -6250.8136 -6253.7923 2.9787404 3712.0095 630.48952 -10596.291 0 142.75796 -0.0002430534 -0.00025850698 + 161700 -6250.6652 -6253.986 3.320881 3705.4846 631.86634 -10591.337 0 159.15525 2.9584101e-05 1.2852294e-05 + 161710 -6250.5071 -6254.3718 3.8647889 3699.822 632.84496 -10587.039 0 185.22237 0.00026021909 0.00024587905 + 161720 -6250.308 -6254.8937 4.5857713 3696.3056 633.22148 -10584.421 0 219.77589 0.00040345094 0.00039240827 + 161730 -6250.0336 -6255.4707 5.4371519 3695.7176 632.94857 -10584.137 0 260.57883 0.00043657527 0.00042578138 + 161740 -6249.6829 -6255.9756 6.292791 3698.228 632.12573 -10586.329 0 301.58586 0.0003586814 0.00034350024 + 161750 -6249.3048 -6256.2503 6.9454328 3703.3733 630.95722 -10590.581 0 332.86411 0.00018739081 0.00016575252 + 161760 -6248.9747 -6256.1687 7.1939796 3710.1076 629.69882 -10595.975 0 344.77587 -4.3425208e-05 -6.8634162e-05 + 161770 -6248.7419 -6255.717 6.97514 3716.9473 628.61162 -10601.276 0 334.28785 -0.00028537254 -0.00030821731 + 161780 -6248.5924 -6255.0262 6.433831 3722.252 627.92796 -10605.206 0 308.34528 -0.00048074423 -0.00049737238 + 161790 -6248.4633 -6254.3126 5.8493197 3724.6347 627.82438 -10606.772 0 280.33222 -0.00057483191 -0.00058731724 + 161800 -6248.2982 -6253.7505 5.4522652 3723.3922 628.39519 -10605.538 0 261.30314 -0.0005332163 -0.00054811922 + 161810 -6248.0949 -6253.3745 5.2795707 3718.7678 629.62583 -10601.768 0 253.02665 -0.00035561942 -0.00037808771 + 161820 -6247.901 -6253.0943 5.1933204 3711.904 631.37145 -10596.37 0 248.89305 -7.7973346e-05 -0.00010672837 + 161830 -6247.765 -6252.8099 5.0448977 3704.5038 633.35162 -10590.665 0 241.7798 0.00023836103 0.00021036219 + 161840 -6247.6857 -6252.5235 4.8378024 3698.3664 635.17424 -10586.064 0 231.85463 0.00052346749 0.00050307826 + 161850 -6247.6066 -6252.3567 4.7500868 3694.982 636.39795 -10583.737 0 227.65081 0.00071361551 0.00070143693 + 161860 -6247.4586 -6252.4582 4.9995934 3695.2684 636.63246 -10584.359 0 239.60857 0.00076083457 0.00075041192 + 161870 -6247.2182 -6252.8793 5.6611645 3699.4145 635.66043 -10587.954 0 271.31477 0.00064038986 0.00062366373 + 161880 -6246.933 -6253.5157 6.5826334 3706.7722 633.54659 -10593.835 0 315.47673 0.00036018842 0.00033480004 + 161890 -6246.6907 -6254.1647 7.4739729 3715.8216 630.68697 -10600.673 0 358.19472 -2.9438833e-05 -5.7534952e-05 + 161900 -6246.5477 -6254.6519 8.1042227 3724.3446 627.75628 -10606.753 0 388.39982 -0.0004347462 -0.0004564392 + 161910 -6246.483 -6254.9173 8.434329 3729.9309 625.54466 -10610.393 0 404.22037 -0.00073711669 -0.00074896873 + 161920 -6246.4281 -6254.9877 8.5596409 3730.7502 624.72409 -10610.462 0 410.22602 -0.00083199358 -0.00084023126 + 161930 -6246.3476 -6254.8784 8.5307829 3726.2822 625.62249 -10606.783 0 408.84298 -0.00067252811 -0.00068760218 + 161940 -6246.2836 -6254.5492 8.2656255 3717.6083 628.08753 -10600.245 0 396.13515 -0.00029347538 -0.00032004005 + 161950 -6246.3105 -6253.9784 7.6678859 3707.079 631.49817 -10592.556 0 367.48811 0.00019974407 0.00016750726 + 161960 -6246.4511 -6253.2725 6.8214046 3697.5235 634.93555 -10585.732 0 326.91998 0.00067018757 0.00064323741 + 161970 -6246.6432 -6252.6722 6.0290298 3691.3948 637.46321 -10581.53 0 288.94494 0.00099439785 0.00097883595 + 161980 -6246.7881 -6252.419 5.6309338 3690.1772 638.41456 -10581.011 0 269.86594 0.0010937372 0.001085518 + 161990 -6246.8279 -6252.5884 5.7604705 3694.1447 637.58383 -10584.317 0 276.07407 0.00094727226 0.00093586272 + 162000 -6246.7874 -6253.031 6.2436075 3702.3837 635.26489 -10590.68 0 299.2287 0.00059198338 0.00056919858 + 162010 -6246.7508 -6253.4719 6.7211091 3712.9855 632.14341 -10598.601 0 322.11326 0.00011537559 8.1775578e-05 + 162020 -6246.7943 -6253.6927 6.8983745 3723.4069 629.08992 -10606.19 0 330.60881 -0.00036061358 -0.00039675754 + 162030 -6246.9285 -6253.6572 6.7286554 3731.0299 626.91913 -10611.606 0 322.47492 -0.00070753327 -0.00073716352 + 162040 -6247.0987 -6253.4972 6.3984749 3733.8559 626.17735 -10613.53 0 306.65082 -0.0008268787 -0.00084677246 + 162050 -6247.2353 -6253.395 6.1596932 3731.1242 627.00466 -10611.524 0 295.20706 -0.00068269164 -0.00069687301 + 162060 -6247.3047 -6253.4639 6.1592651 3723.6063 629.10279 -10606.173 0 295.18654 -0.00031593886 -0.00033193944 + 162070 -6247.3247 -6253.6979 6.373262 3713.428 631.82225 -10598.948 0 305.44247 0.00016636093 0.00014286063 + 162080 -6247.3468 -6253.9988 6.6520155 3703.4513 634.3532 -10591.803 0 318.80191 0.0006239265 0.00059245465 + 162090 -6247.4216 -6254.245 6.82336 3696.4105 635.96745 -10586.623 0 327.0137 0.00092682513 0.00089180829 + 162100 -6247.5694 -6254.3582 6.7887945 3694.0987 636.23473 -10584.692 0 325.35712 0.00099533445 0.00096279729 + 162110 -6247.7718 -6254.3362 6.5643268 3696.884 635.1409 -10586.361 0 314.59937 0.00082266956 0.00079625373 + 162120 -6247.9896 -6254.2402 6.2505759 3703.7038 633.07152 -10591.016 0 299.56267 0.00047304416 0.00045193877 + 162130 -6248.1949 -6254.1504 5.9554673 3712.4946 630.67312 -10597.318 0 285.41941 5.6708095e-05 3.6868376e-05 + 162140 -6248.3958 -6254.1208 5.7249564 3720.8599 628.64549 -10603.626 0 274.37203 -0.00030744134 -0.00032973125 + 162150 -6248.6327 -6254.1666 5.5339203 3726.7378 627.5335 -10608.438 0 265.21651 -0.0005272111 -0.00055233811 + 162160 -6248.9496 -6254.2852 5.3356741 3728.8927 627.5799 -10610.758 0 255.71544 -0.00055938404 -0.00058449434 + 162170 -6249.3636 -6254.4761 5.1125195 3727.151 628.6799 -10610.307 0 245.02062 -0.00041511969 -0.00043701312 + 162180 -6249.856 -6254.7328 4.8768044 3722.3597 630.44811 -10607.541 0 233.72383 -0.00015036484 -0.00016832931 + 162190 -6250.3861 -6255.0182 4.6320571 3716.0815 632.36955 -10603.469 0 221.99417 0.00015417919 0.00013823291 + 162200 -6250.9117 -6255.2589 4.3471225 3710.1132 633.96989 -10599.342 0 208.3385 0.00041734401 0.00040129551 + 162210 -6251.3985 -6255.3785 3.9800723 3705.9809 634.93377 -10596.293 0 190.7474 0.00057875265 0.00056256437 + 162220 -6251.8202 -6255.354 3.5338914 3704.5772 635.13793 -10595.069 0 169.36391 0.00061100712 0.00059658676 + 162230 -6252.1581 -6255.2479 3.0897664 3706.025 634.61994 -10595.893 0 148.07894 0.0005207054 0.00050966583 + 162240 -6252.4035 -6255.182 2.7784208 3709.7617 633.52773 -10598.471 0 133.15751 0.00034038958 0.00033206919 + 162250 -6252.5621 -6255.2632 2.7010961 3714.7713 632.08062 -10602.115 0 129.45168 0.00011604857 0.00010778552 + 162260 -6252.6561 -6255.5157 2.8595721 3719.8649 630.54386 -10605.924 0 137.04674 -0.00010461173 -0.00011520153 + 162270 -6252.7162 -6255.87 3.1537827 3723.9294 629.20126 -10609.001 0 151.14696 -0.00027976112 -0.00029273973 + 162280 -6252.7645 -6256.2129 3.4484211 3726.1106 628.31278 -10610.636 0 165.26769 -0.00037734301 -0.00039063059 + 162290 -6252.8016 -6256.4516 3.6499451 3725.9488 628.05905 -10610.459 0 174.92585 -0.0003783803 -0.00038987312 + 162300 -6252.8121 -6256.5464 3.7343642 3723.4765 628.49093 -10608.514 0 178.97169 -0.00028144126 -0.00029087385 + 162310 -6252.7814 -6256.5034 3.72205 3719.2483 629.50666 -10605.258 0 178.38152 -0.00010602098 -0.00011485415 + 162320 -6252.7096 -6256.3532 3.6435685 3714.2516 630.87084 -10601.476 0 174.62025 0.00010938759 9.959362e-05 + 162330 -6252.6085 -6256.1392 3.530682 3709.6874 632.27309 -10598.1 0 169.21009 0.00031611086 0.00030499998 + 162340 -6252.4884 -6255.9116 3.42324 3706.6785 633.40814 -10595.998 0 164.06087 0.00046788209 0.00045617152 + 162350 -6252.3489 -6255.714 3.3650601 3705.9961 634.05093 -10595.761 0 161.27256 0.00053200325 0.00052042667 + 162360 -6252.1806 -6255.5659 3.3853045 3707.8793 634.10293 -10597.548 0 162.24279 0.00049581283 0.00048426451 + 162370 -6251.972 -6255.4565 3.4845063 3711.98 633.60092 -10601.037 0 166.99709 0.00036827964 0.00035570233 + 162380 -6251.7182 -6255.3537 3.6354718 3717.4322 632.69629 -10605.482 0 174.23221 0.00017787793 0.00016284157 + 162390 -6251.4271 -6255.2206 3.7934359 3723.0281 631.62163 -10609.87 0 181.80273 -3.2289039e-05 -5.0555979e-05 + 162400 -6251.1192 -6255.0341 3.9149016 3727.4579 630.65326 -10613.145 0 187.62405 -0.00021144591 -0.00023218752 + 162410 -6250.8166 -6254.8034 3.9868057 3729.5788 630.06649 -10614.449 0 191.0701 -0.00031000141 -0.00033115001 + 162420 -6250.5283 -6254.5735 4.045196 3728.6851 630.07663 -10613.335 0 193.86849 -0.00029070524 -0.00031029888 + 162430 -6250.2468 -6254.4025 4.1557333 3724.7456 630.76998 -10609.918 0 199.16606 -0.0001412178 -0.00015879801 + 162440 -6249.9587 -6254.326 4.367337 3718.5245 632.04558 -10604.896 0 209.30729 0.00011624405 9.9458007e-05 + 162450 -6249.6576 -6254.3386 4.6809823 3711.4904 633.59924 -10599.428 0 224.33894 0.00042425909 0.00040630187 + 162460 -6249.3498 -6254.4003 5.0505332 3705.4843 634.97776 -10594.862 0 242.04989 0.00070173706 0.00068114202 + 162470 -6249.0529 -6254.4544 5.4014785 3702.2223 635.70539 -10592.382 0 258.86916 0.00086580087 0.00084263728 + 162480 -6248.7879 -6254.4505 5.6625771 3702.7764 635.44722 -10592.674 0 271.38247 0.00085833671 0.0008344565 + 162490 -6248.5644 -6254.374 5.8095709 3707.1981 634.14681 -10595.719 0 278.42724 0.00066871386 0.00064657532 + 162500 -6248.3707 -6254.2606 5.8899227 3714.4331 632.07911 -10600.773 0 282.27814 0.00034285124 0.00032349171 + 162510 -6248.1834 -6254.1743 5.9909109 3722.591 629.79159 -10606.557 0 287.11807 -2.7587942e-05 -4.5447876e-05 + 162520 -6247.9902 -6254.1582 6.1680264 3729.4912 627.95086 -10611.6 0 295.60643 -0.00033306478 -0.00035153644 + 162530 -6247.802 -6254.2058 6.4038213 3733.2908 627.14564 -10614.642 0 306.90705 -0.00047985852 -0.00049945332 + 162540 -6247.6377 -6254.2778 6.6400592 3732.991 627.70921 -10614.978 0 318.22889 -0.00041709753 -0.00043620998 + 162550 -6247.4995 -6254.3399 6.8403995 3728.7018 629.61501 -10612.657 0 327.83033 -0.00015026117 -0.0001674232 + 162560 -6247.368 -6254.3714 7.0034648 3721.6284 632.47539 -10608.475 0 335.64533 0.00025953718 0.00024315315 + 162570 -6247.2264 -6254.3369 7.1105354 3713.7837 635.64121 -10603.762 0 340.77676 0.00070914826 0.00069015125 + 162580 -6247.0863 -6254.1686 7.0822724 3707.4586 638.37035 -10599.998 0 339.42223 0.0010788599 0.0010550359 + 162590 -6246.9828 -6253.8039 6.8211241 3704.554 640.01815 -10598.376 0 326.90654 0.0012663834 0.0012396289 + 162600 -6246.939 -6253.2598 6.3208268 3705.9736 640.20311 -10599.437 0 302.92949 0.001219894 0.0011953187 + 162610 -6246.9361 -6252.6733 5.7372245 3711.3152 638.90895 -10602.897 0 274.95999 0.00095649502 0.00093801202 + 162620 -6246.9191 -6252.2521 5.3329332 3719.0034 636.49535 -10607.751 0 255.58408 0.00055669783 0.00054305524 + 162630 -6246.8372 -6252.1552 5.3179941 3726.8151 633.60804 -10612.578 0 254.86811 0.00013699218 0.00012216677 + 162640 -6246.6827 -6252.3899 5.7072112 3732.5765 631.00333 -10615.97 0 273.52158 -0.00018725728 -0.00020922618 + 162650 -6246.4981 -6252.8111 6.3129686 3734.7685 629.33032 -10616.91 0 302.55288 -0.00033434162 -0.00036421393 + 162660 -6246.3415 -6253.2275 6.8860464 3732.8723 628.93572 -10615.036 0 330.01798 -0.00027512107 -0.00030772489 + 162670 -6246.2386 -6253.5298 7.2912059 3727.4272 629.76124 -10610.718 0 349.4355 -3.62434e-05 -6.4961491e-05 + 162680 -6246.1662 -6253.7384 7.5721885 3719.8559 631.37789 -10604.972 0 362.90176 0.00030988974 0.00028744145 + 162690 -6246.082 -6253.941 7.8590836 3712.1217 633.14971 -10599.212 0 376.65138 0.00066472866 0.00064494999 + 162700 -6245.9744 -6254.1844 8.209969 3706.2596 634.46487 -10594.909 0 393.46778 0.00092935356 0.00090630072 + 162710 -6245.8845 -6254.4151 8.5306407 3703.8419 634.94415 -10593.201 0 408.83617 0.0010322271 0.0010032267 + 162720 -6245.8776 -6254.5186 8.6409543 3705.5062 634.54941 -10594.574 0 414.12301 0.00095180977 0.00091991681 + 162730 -6245.9895 -6254.414 8.4245262 3710.7276 633.56 -10598.702 0 403.75056 0.00072450838 0.00069558197 + 162740 -6246.1949 -6254.1199 7.9249737 3717.9782 632.44142 -10604.539 0 379.80921 0.00043152766 0.00040863995 + 162750 -6246.431 -6253.7332 7.3022402 3725.2524 631.66875 -10610.654 0 349.96432 0.0001681511 0.00014859961 + 162760 -6246.6519 -6253.3471 6.6951813 3730.7404 631.57182 -10615.659 0 320.87065 9.4293511e-06 -1.2696268e-05 + 162770 -6246.8631 -6252.9927 6.1296385 3733.3485 632.24581 -10618.587 0 293.76667 -1.1590133e-05 -3.9694236e-05 + 162780 -6247.1004 -6252.6637 5.5632579 3732.8711 633.54162 -10619.076 0 266.62253 9.4499633e-05 6.2747135e-05 + 162790 -6247.3828 -6252.3886 5.0057239 3729.8474 635.12829 -10617.364 0 239.90238 0.00028696072 0.00025733982 + 162800 -6247.6901 -6252.2611 4.5709864 3725.2819 636.60176 -10614.145 0 219.06732 0.00051215929 0.00048876802 + 162810 -6247.9842 -6252.392 4.4077873 3720.3756 637.60004 -10610.368 0 211.2459 0.00071688673 0.00069907823 + 162820 -6248.2439 -6252.8317 4.5878668 3716.2955 637.88784 -10607.015 0 219.87632 0.00085712716 0.00084051887 + 162830 -6248.4816 -6253.5271 5.0455413 3713.9614 637.39511 -10604.884 0 241.81065 0.00090417783 0.00088414648 + 162840 -6248.7373 -6254.3309 5.5936023 3713.8606 636.21512 -10604.407 0 268.07681 0.00084867739 0.00082373989 + 162850 -6249.0544 -6255.0564 6.0020127 3715.9302 634.57241 -10605.559 0 287.65012 0.0007022671 0.00067524145 + 162860 -6249.4464 -6255.5581 6.111638 3719.5531 632.76729 -10607.878 0 292.90399 0.00049635041 0.00047221147 + 162870 -6249.8786 -6255.7952 5.9165733 3723.7078 631.10754 -10610.61 0 283.55539 0.00027622834 0.00025789277 + 162880 -6250.2866 -6255.8271 5.5405445 3727.2643 629.84457 -10612.936 0 265.53398 8.9376894e-05 7.5080927e-05 + 162890 -6250.6236 -6255.7445 5.1208641 3729.3276 629.13177 -10614.204 0 245.42054 -2.8706352e-05 -4.3644137e-05 + 162900 -6250.8906 -6255.6034 4.7127482 3729.4737 629.01348 -10614.091 0 225.86134 -6.3302746e-05 -8.1871959e-05 + 162910 -6251.1206 -6255.4231 4.302564 3727.7835 629.44212 -10612.649 0 206.20301 -1.8821721e-05 -3.947781e-05 + 162920 -6251.3378 -6255.2319 3.8940634 3724.7192 630.31165 -10610.263 0 186.62537 8.993105e-05 7.1557232e-05 + 162930 -6251.5337 -6255.0909 3.5572331 3720.9688 631.48896 -10607.549 0 170.48257 0.00024472192 0.00023144732 + 162940 -6251.6788 -6255.0607 3.3818724 3717.3421 632.82703 -10605.23 0 162.0783 0.00042359755 0.00041403555 + 162950 -6251.7556 -6255.1422 3.3865826 3714.6939 634.1579 -10603.994 0 162.30404 0.00059645736 0.00058653603 + 162960 -6251.7778 -6255.261 3.4832165 3713.7956 635.28256 -10604.339 0 166.93528 0.00072486416 0.00071180358 + 162970 -6251.7782 -6255.3208 3.5426416 3715.127 635.9846 -10606.432 0 169.78326 0.00077132711 0.0007561062 + 162980 -6251.7784 -6255.2837 3.505362 3718.6602 636.08319 -10610.027 0 167.99661 0.0007147309 0.00070076582 + 162990 -6251.7685 -6255.2016 3.4330669 3723.7631 635.51228 -10614.477 0 164.53183 0.00056257094 0.00055210595 + 163000 -6251.7163 -6255.1692 3.4528529 3729.3048 634.38618 -10618.86 0 165.48008 0.00035239951 0.00034417453 + 163010 -6251.5942 -6255.2395 3.6452931 3733.9414 633.00732 -10622.188 0 174.7029 0.00014189173 0.00013220552 + 163020 -6251.3993 -6255.3738 3.9744954 3736.4705 631.79571 -10623.64 0 190.48012 -7.3919224e-06 -2.137208e-05 + 163030 -6251.1506 -6255.4684 4.3178324 3736.1379 631.1566 -10622.763 0 206.93476 -4.6627404e-05 -6.4464399e-05 + 163040 -6250.8667 -6255.4326 4.5659279 3732.8263 631.33386 -10619.593 0 218.82488 4.6868663e-05 2.8199373e-05 + 163050 -6250.5461 -6255.2507 4.704532 3727.1129 632.30767 -10614.671 0 225.46757 0.00026116099 0.00024430571 + 163060 -6250.1688 -6254.9816 4.8128262 3720.2004 633.77908 -10608.961 0 230.65764 0.00054813647 0.00053295742 + 163070 -6249.7154 -6254.7085 4.9931669 3713.711 635.25053 -10603.67 0 239.30057 0.00083166499 0.00081539849 + 163080 -6249.1882 -6254.4867 5.2984562 3709.3329 636.17767 -10599.997 0 253.93175 0.0010265256 0.0010060429 + 163090 -6248.6191 -6254.323 5.703931 3708.3617 636.14886 -10598.834 0 273.36438 0.0010644636 0.0010387104 + 163100 -6248.0612 -6254.1893 6.1280411 3711.2519 635.03851 -10600.48 0 293.69011 0.0009192618 0.00089019779 + 163110 -6247.5667 -6254.0527 6.4859797 3717.3544 633.07959 -10604.487 0 310.84454 0.00062120393 0.00059254511 + 163120 -6247.1598 -6253.9033 6.7434225 3725.0004 630.81737 -10609.721 0 323.18264 0.000253373 0.00022775797 + 163130 -6246.8296 -6253.7544 6.9248025 3731.9769 628.95096 -10614.682 0 331.87539 -7.1938825e-05 -9.5280118e-05 + 163140 -6246.5507 -6253.6116 7.060911 3736.2457 628.11834 -10617.976 0 338.39847 -0.00024969174 -0.00027454982 + 163150 -6246.3147 -6253.4392 7.124496 3736.614 628.70084 -10618.754 0 341.44582 -0.00021746473 -0.00024738753 + 163160 -6246.1411 -6253.166 7.0249567 3733.0899 630.70416 -10616.96 0 336.67534 2.4128392e-05 -1.0466224e-05 + 163170 -6246.0557 -6252.7435 6.6878011 3726.8166 633.73889 -10613.299 0 320.51695 0.00041298702 0.0003788902 + 163180 -6246.0532 -6252.2221 6.168925 3719.6608 637.10216 -10608.985 0 295.6495 0.00084688275 0.00081965496 + 163190 -6246.0797 -6251.7763 5.6966178 3713.6499 639.95171 -10605.378 0 273.01389 0.001214841 0.0011963026 + 163200 -6246.0598 -6251.6227 5.5628961 3710.4589 641.543 -10603.625 0 266.60519 0.0014264671 0.0014111129 + 163210 -6245.9537 -6251.8712 5.9174626 3711.0475 641.46505 -10604.384 0 283.59801 0.0014320809 0.0014107553 + 163220 -6245.7963 -6252.4287 6.6324004 3715.4401 639.78843 -10607.657 0 317.86184 0.0012335664 0.0012012582 + 163230 -6245.6776 -6253.0495 7.371914 3722.6463 637.05478 -10612.751 0 353.30348 0.00088706278 0.0008479845 + 163240 -6245.672 -6253.5048 7.8328619 3730.8021 634.09404 -10618.401 0 375.39469 0.00049372752 0.00045845485 + 163250 -6245.7747 -6253.7325 7.9578018 3737.6306 631.73172 -10623.095 0 381.38251 0.00017272643 0.00014934328 + 163260 -6245.9113 -6253.8422 7.9308475 3741.1652 630.50756 -10625.515 0 380.09071 1.9700058e-05 6.9804696e-06 + 163270 -6246.0124 -6253.9868 7.9744238 3740.4571 630.52389 -10624.968 0 382.17913 6.9015662e-05 5.7806328e-05 + 163280 -6246.0773 -6254.2266 8.1492743 3735.91 631.47627 -10621.613 0 390.55895 0.00028188726 0.00026287138 + 163290 -6246.1714 -6254.4894 8.3179981 3729.0713 632.83186 -10616.393 0 398.64514 0.00056741261 0.00053817406 + 163300 -6246.3683 -6254.6303 8.2620904 3722.0036 634.06168 -10610.696 0 395.96573 0.00082334906 0.00078944985 + 163310 -6246.6884 -6254.529 7.8405472 3716.5515 634.8224 -10605.903 0 375.76302 0.00097483596 0.00094500775 + 163320 -6247.08 -6254.1624 7.082398 3713.818 635.02295 -10603.003 0 339.42825 0.0009947968 0.00097445834 + 163330 -6247.4522 -6253.6194 6.1672215 3714.0124 634.7779 -10602.41 0 295.56786 0.00090183776 0.00088962471 + 163340 -6247.7319 -6253.0561 5.3241289 3716.6257 634.3015 -10603.983 0 255.16213 0.0007422923 0.0007314978 + 163350 -6247.9031 -6252.6243 4.7211748 3720.7585 633.80738 -10607.19 0 226.26519 0.00056804006 0.0005514258 + 163360 -6248.0066 -6252.4115 4.4049474 3725.4218 633.45341 -10611.287 0 211.1098 0.00042022247 0.00039496414 + 163370 -6248.1077 -6252.4242 4.3164438 3729.7168 633.33172 -10615.473 0 206.86821 0.00032354348 0.00029326768 + 163380 -6248.2509 -6252.6227 4.371786 3732.9043 633.47894 -10619.006 0 209.52052 0.00028946823 0.00026179274 + 163390 -6248.428 -6252.9766 4.5485888 3734.4459 633.88335 -10621.306 0 217.9939 0.00032185133 0.00030258079 + 163400 -6248.5853 -6253.4812 4.8959019 3734.0967 634.48624 -10622.064 0 234.63909 0.00041828452 0.0004064066 + 163410 -6248.67 -6254.1134 5.4433672 3732.036 635.18913 -10621.338 0 260.8767 0.00056589219 0.00055380775 + 163420 -6248.682 -6254.7749 6.0928712 3728.9203 635.87362 -10619.569 0 292.00457 0.00073725255 0.00071671838 + 163430 -6248.6847 -6255.2996 6.6148867 3725.7361 636.42565 -10617.461 0 317.02248 0.00089367745 0.00086277033 + 163440 -6248.7587 -6255.5404 6.781689 3723.4622 636.75149 -10615.754 0 325.01659 0.00099721747 0.00096229748 + 163450 -6248.9359 -6255.4705 6.5346355 3722.7132 636.78177 -10614.965 0 313.1764 0.00102485 0.00099561342 + 163460 -6249.1714 -6255.209 6.0376303 3723.5606 636.47241 -10615.242 0 289.35712 0.00097556359 0.00095725521 + 163470 -6249.3814 -6254.943 5.5616554 3725.6108 635.81289 -10616.367 0 266.54573 0.0008661352 0.00085544626 + 163480 -6249.5099 -6254.8011 5.2912169 3728.2436 634.84391 -10617.889 0 253.5848 0.00072015507 0.00070808902 + 163490 -6249.5687 -6254.7752 5.2064701 3730.8378 633.67518 -10619.288 0 249.52326 0.00055949681 0.00053863307 + 163500 -6249.6214 -6254.7481 5.1267077 3732.8733 632.48888 -10620.11 0 245.7006 0.00040389763 0.00037410583 + 163510 -6249.7275 -6254.6012 4.8737244 3733.9252 631.51642 -10620.043 0 233.57622 0.00027610368 0.0002442416 + 163520 -6249.8925 -6254.3174 4.4249741 3733.6583 630.98618 -10618.962 0 212.06959 0.00020428224 0.00017832184 + 163530 -6250.0645 -6253.9992 3.9347126 3731.9114 631.05541 -10616.966 0 188.5735 0.00021504844 0.00019766881 + 163540 -6250.1807 -6253.7902 3.6095539 3728.8604 631.7502 -10614.401 0 172.99008 0.00031878129 0.00030587927 + 163550 -6250.2179 -6253.7711 3.5531475 3725.1296 632.93633 -10611.837 0 170.28676 0.00049722847 0.00048227616 + 163560 -6250.2038 -6253.9216 3.7177859 3721.7105 634.33592 -10609.968 0 178.17716 0.00070394901 0.00068376761 + 163570 -6250.1815 -6254.1688 3.9872617 3719.6638 635.59411 -10609.427 0 191.09195 0.00087968356 0.0008563396 + 163580 -6250.1674 -6254.4534 4.28604 3719.7429 636.38541 -10610.582 0 205.41109 0.00097444262 0.00095227732 + 163590 -6250.1404 -6254.744 4.6036564 3722.1278 636.52665 -10613.399 0 220.63305 0.0009646646 0.00094614305 + 163600 -6250.0667 -6255.0013 4.9345421 3726.3695 636.04833 -10617.419 0 236.49095 0.00085898298 0.00084335994 + 163610 -6249.93 -6255.1574 5.2273762 3731.521 635.18648 -10621.865 0 250.5252 0.00069372384 0.00067889569 + 163620 -6249.7371 -6255.152 5.4148804 3736.3768 634.29453 -10625.823 0 259.51145 0.00052245573 0.00050719043 + 163630 -6249.5007 -6254.9931 5.4924356 3739.7594 633.71581 -10628.468 0 263.22833 0.00040232634 0.00038648642 + 163640 -6249.2228 -6254.7729 5.5501549 3740.8161 633.67351 -10629.263 0 265.99457 0.00037834416 0.00036164694 + 163650 -6248.8978 -6254.6073 5.7094486 3739.2653 634.2167 -10628.089 0 273.62881 0.00046860404 0.00045021164 + 163660 -6248.5284 -6254.5477 6.0193189 3735.5028 635.22547 -10625.276 0 288.47954 0.00065638012 0.00063619018 + 163670 -6248.1309 -6254.5426 6.4116775 3730.5081 636.45338 -10621.504 0 307.28356 0.00089397267 0.0008738662 + 163680 -6247.724 -6254.4787 6.7547072 3725.5714 637.58485 -10617.635 0 323.72347 0.0011173291 0.0011001961 + 163690 -6247.3108 -6254.2601 6.9493362 3721.9474 638.29776 -10614.505 0 333.05118 0.0012646733 0.0012514604 + 163700 -6246.8785 -6253.8591 6.9806577 3720.5485 638.3331 -10612.741 0 334.55228 0.0012919021 0.0012795338 + 163710 -6246.421 -6253.3112 6.8901505 3721.7418 637.57177 -10612.625 0 330.21467 0.0011821471 0.0011649278 + 163720 -6245.9609 -6252.6778 6.7169362 3725.2554 636.10224 -10614.035 0 321.91327 0.00095109643 0.00092500314 + 163730 -6245.5446 -6252.0249 6.4802948 3730.1878 634.24491 -10616.458 0 310.57209 0.00064867896 0.00061492305 + 163740 -6245.2098 -6251.4283 6.2184931 3735.1526 632.4985 -10619.079 0 298.02508 0.00035342691 0.00031798451 + 163750 -6244.9525 -6250.981 6.0284709 3738.5998 631.40344 -10620.984 0 288.91815 0.00015484682 0.00012416153 + 163760 -6244.7253 -6250.7719 6.046521 3739.2868 631.36198 -10621.421 0 289.78321 0.00012508452 0.00010145095 + 163770 -6244.4679 -6250.8415 6.3735505 3736.7541 632.48429 -10620.08 0 305.4563 0.00029020526 0.000270369 + 163780 -6244.1467 -6251.1537 7.0070034 3731.5873 634.52563 -10617.267 0 335.81492 0.00061548663 0.00059309378 + 163790 -6243.7764 -6251.6096 7.8331295 3725.309 636.94703 -10613.866 0 375.40752 0.0010137201 0.00098346201 + 163800 -6243.4144 -6252.0926 8.6781775 3719.9028 639.08559 -10611.081 0 415.90696 0.0013740998 0.0013348611 + 163810 -6243.133 -6252.5148 9.3818046 3717.1428 640.37637 -10610.034 0 449.62872 0.0015998398 0.0015552505 + 163820 -6242.9864 -6252.8445 9.8581142 3717.9888 640.54127 -10611.375 0 472.45614 0.0016399802 0.001596159 + 163830 -6242.9875 -6253.1064 10.118963 3722.2768 639.66973 -10615.053 0 484.95746 0.0015040606 0.001465733 + 163840 -6243.112 -6253.3543 10.242257 3728.8122 638.16308 -10620.33 0 490.8664 0.0012548594 0.0012222169 + 163850 -6243.3279 -6253.6191 10.291143 3735.8094 636.57509 -10626.004 0 493.20933 0.00098239971 0.00095110506 + 163860 -6243.6285 -6253.86 10.231563 3741.4906 635.42031 -10630.771 0 490.35392 0.00077002001 0.00073487671 + 163870 -6244.0369 -6253.9601 9.9231883 3744.6108 635.01932 -10633.59 0 475.57486 0.00066715575 0.00062689043 + 163880 -6244.5695 -6253.7899 9.2203874 3744.7307 635.4226 -10633.943 0 441.8927 0.00067994254 0.00063895092 + 163890 -6245.1878 -6253.3078 8.1199721 3742.1888 636.42376 -10631.92 0 389.15462 0.0007803059 0.00074532219 + 163900 -6245.7942 -6252.6191 6.8248921 3737.8697 637.6483 -10628.137 0 327.08712 0.00092370447 0.00089796974 + 163910 -6246.285 -6251.9346 5.6495464 3732.9233 638.68228 -10623.54 0 270.75796 0.0010637793 0.0010440368 + 163920 -6246.617 -6251.4554 4.8383967 3728.5277 639.19461 -10619.178 0 231.88312 0.0011600327 0.0011393238 + 163930 -6246.8258 -6251.2796 4.4537932 3725.6767 639.01652 -10615.973 0 213.45076 0.0011831557 0.0011568582 + 163940 -6246.9861 -6251.4029 4.4167487 3724.9569 638.16594 -10614.526 0 211.67538 0.0011224347 0.00109186 + 163950 -6247.1523 -6251.7836 4.6313132 3726.3692 636.82626 -10614.979 0 221.95852 0.00099229249 0.00096277404 + 163960 -6247.3298 -6252.3829 5.053097 3729.3224 635.29492 -10617 0 242.17276 0.00083045648 0.00080640161 + 163970 -6247.4927 -6253.142 5.6492814 3732.8495 633.91144 -10619.903 0 270.74526 0.00068490752 0.00066667658 + 163980 -6247.6205 -6253.9498 6.3293176 3735.9521 632.97157 -10622.873 0 303.33641 0.00059571155 0.00058036511 + 163990 -6247.7167 -6254.6611 6.9443806 3737.909 632.64576 -10625.216 0 332.81368 0.00058156736 0.00056555868 + 164000 -6247.8012 -6255.16 7.3587259 3738.4358 632.93429 -10626.53 0 352.67143 0.0006368976 0.0006179697 + 164010 -6247.8928 -6255.4092 7.5163796 3737.6768 633.68663 -10626.773 0 360.22709 0.0007386289 0.0007161416 + 164020 -6248.0007 -6255.4437 7.4430486 3736.0754 634.68166 -10626.201 0 356.71265 0.00085766041 0.00083226049 + 164030 -6248.1275 -6255.3231 7.1955842 3734.1919 635.72769 -10625.243 0 344.85277 0.00096957381 0.00094298014 + 164040 -6248.2708 -6255.0862 6.8153542 3732.538 636.72569 -10624.35 0 326.63001 0.0010607712 0.001035453 + 164050 -6248.4198 -6254.7441 6.324322 3731.4751 637.66058 -10623.88 0 303.097 0.0011283598 0.0011065665 + 164060 -6248.5521 -6254.3066 5.7544377 3731.19 638.53167 -10624.028 0 275.78494 0.0011744536 0.0011567539 + 164070 -6248.6395 -6253.8102 5.1706718 3731.7268 639.27451 -10624.811 0 247.80761 0.0011982445 0.0011826063 + 164080 -6248.6636 -6253.3215 4.6579198 3733.0319 639.7335 -10626.087 0 223.23365 0.0011910766 0.001173599 + 164090 -6248.6304 -6252.9089 4.2784792 3734.9729 639.71267 -10627.594 0 205.04873 0.001138865 0.0011162919 + 164100 -6248.5726 -6252.6139 4.0413432 3737.3028 639.08022 -10628.997 0 193.68384 0.0010321331 0.0010046879 + 164110 -6248.5283 -6252.4531 3.9247757 3739.5933 637.86528 -10629.912 0 188.09727 0.0008787086 0.00085073587 + 164120 -6248.5094 -6252.4501 3.9406925 3741.2174 636.28764 -10629.955 0 188.86009 0.00071058528 0.00068760059 + 164130 -6248.4843 -6252.6525 4.1682181 3741.4824 634.70046 -10628.835 0 199.7644 0.00057769952 0.00056167305 + 164140 -6248.3969 -6253.0956 4.6987824 3739.9202 633.47292 -10626.489 0 225.19202 0.00052858833 0.00051553098 + 164150 -6248.2122 -6253.7388 5.5265468 3736.5964 632.86479 -10623.2 0 264.86313 0.00058704067 0.00056938882 + 164160 -6247.9523 -6254.435 6.4827005 3732.2341 632.94187 -10619.611 0 310.68738 0.0007377668 0.00070999871 + 164170 -6247.6925 -6254.9758 7.2832631 3728.037 633.56226 -10616.575 0 349.05483 0.00092979876 0.00089297732 + 164180 -6247.5144 -6255.1896 7.6752283 3725.2669 634.43711 -10614.894 0 367.84 0.0010969967 0.0010585569 + 164190 -6247.4473 -6255.0372 7.5899033 3724.7729 635.24306 -10615.053 0 363.75075 0.0011857969 0.00115426 + 164200 -6247.4463 -6254.6353 7.1889557 3726.6999 635.74307 -10617.078 0 344.53509 0.0011760023 0.001154328 + 164210 -6247.4303 -6254.1818 6.751514 3730.5006 635.87054 -10620.553 0 323.57043 0.0010846255 0.0010676112 + 164220 -6247.3495 -6253.8266 6.4770755 3735.1994 635.74843 -10624.774 0 310.4178 0.00095376538 0.00093212279 + 164230 -6247.2257 -6253.5869 6.3612237 3739.7263 635.63944 -10628.953 0 304.86553 0.00083269064 0.00080080309 + 164240 -6247.1283 -6253.376 6.2477738 3743.1597 635.84394 -10632.38 0 299.42837 0.00076424342 0.00072501634 + 164250 -6247.109 -6253.1149 6.0058724 3744.8479 636.57744 -10634.54 0 287.8351 0.00077782934 0.00074026105 + 164260 -6247.1534 -6252.818 5.6645687 3744.4939 637.86963 -10635.181 0 271.47792 0.00088434762 0.00085599592 + 164270 -6247.1944 -6252.577 5.3826177 3742.2573 639.52434 -10634.359 0 257.96524 0.0010696257 0.001050826 + 164280 -6247.1701 -6252.4698 5.2996617 3738.8146 641.15785 -10632.442 0 253.98953 0.0012903268 0.0012750193 + 164290 -6247.0705 -6252.4957 5.4252373 3735.2473 642.30211 -10630.045 0 260.00781 0.0014805293 0.0014621275 + 164300 -6246.9326 -6252.5955 5.6628452 3732.715 642.54085 -10627.851 0 271.39532 0.0015721337 0.0015486897 + 164310 -6246.7994 -6252.7209 5.9214726 3732.0225 641.64285 -10626.386 0 283.79019 0.0015218399 0.001496355 + 164320 -6246.6815 -6252.8738 6.1922703 3733.2961 639.65784 -10625.828 0 296.76834 0.0013309605 0.0013075832 + 164330 -6246.5547 -6253.0757 6.5209377 3735.933 636.94196 -10625.951 0 312.51992 0.0010475162 0.0010277114 + 164340 -6246.3883 -6253.3065 6.9182946 3738.8417 634.0897 -10626.238 0 331.5635 0.00075020171 0.00073213579 + 164350 -6246.1717 -6253.4841 7.3124834 3740.8485 631.7755 -10626.108 0 350.45523 0.00052260234 0.0005033802 + 164360 -6245.9159 -6253.5146 7.59863 3741.0982 630.54719 -10625.16 0 364.16898 0.00042781022 0.00040565857 + 164370 -6245.6343 -6253.3675 7.7331341 3739.3268 630.64631 -10623.341 0 370.61518 0.00049025181 0.00046477251 + 164380 -6245.3299 -6253.1013 7.7714393 3735.9489 631.93273 -10620.983 0 372.45098 0.00068866031 0.00066013614 + 164390 -6245.0006 -6252.8197 7.8190985 3731.9397 633.94939 -10618.709 0 374.73507 0.00096302009 0.00093252206 + 164400 -6244.6459 -6252.6086 7.9627503 3728.5302 636.09844 -10617.237 0 381.61967 0.0012351454 0.0012051144 + 164410 -6244.2585 -6252.5069 8.248452 3726.8107 637.85153 -10617.169 0 395.3121 0.0014359591 0.0014093626 + 164420 -6243.8133 -6252.5103 8.6969514 3727.3954 638.91069 -10618.816 0 416.80671 0.001527624 0.001505178 + 164430 -6243.2761 -6252.576 9.2998592 3730.2796 639.26849 -10622.124 0 445.70144 0.0015109106 0.0014885823 + 164440 -6242.6387 -6252.6135 9.9747908 3734.9046 639.16174 -10626.68 0 478.04794 0.0014165446 0.0013864511 + 164450 -6241.9588 -6252.4818 10.523026 3740.348 638.95007 -10631.78 0 504.32244 0.0012878664 0.0012435499 + 164460 -6241.3608 -6252.03 10.669197 3745.527 638.96881 -10636.526 0 511.3278 0.0011658667 0.0011088499 + 164470 -6240.9706 -6251.1982 10.227633 3749.3499 639.40767 -10639.956 0 490.16557 0.0010840337 0.001025431 + 164480 -6240.8162 -6250.1271 9.3108539 3750.8494 640.25322 -10641.23 0 446.22836 0.0010700477 0.0010232222 + 164490 -6240.7923 -6249.1568 8.3644176 3749.3976 641.30705 -10639.861 0 400.86983 0.0011424718 0.0011113794 + 164500 -6240.7439 -6248.6389 7.8950813 3745.0325 642.26186 -10635.933 0 378.3766 0.0012961301 0.0012708615 + 164510 -6240.6036 -6248.6841 8.0805303 3738.6924 642.79935 -10630.176 0 387.26435 0.0014884366 0.001454022 + 164520 -6240.4488 -6249.0923 8.6434827 3732.0524 642.6763 -10623.821 0 414.24419 0.0016476213 0.001597995 + 164530 -6240.4212 -6249.5528 9.1316198 3726.9083 641.7835 -10618.245 0 437.63846 0.0017063079 0.0016492313 + 164540 -6240.5954 -6249.9091 9.3137583 3724.465 640.17454 -10614.549 0 446.36756 0.001637141 0.0015858665 + 164550 -6240.9336 -6250.2355 9.3019687 3724.9747 638.06046 -10613.271 0 445.80253 0.0014628712 0.0014242995 + 164560 -6241.356 -6250.6998 9.3438244 3727.8577 635.76593 -10614.323 0 447.8085 0.0012371384 0.0012079394 + 164570 -6241.8319 -6251.3921 9.5602044 3732.0935 633.65452 -10617.14 0 458.17864 0.0010160498 0.00098797453 + 164580 -6242.4001 -6252.2645 9.8644055 3736.6017 632.04574 -10620.912 0 472.75766 0.00084019608 0.00080749169 + 164590 -6243.121 -6253.1724 10.051348 3740.4861 631.15094 -10624.809 0 481.717 0.00073061423 0.00069351836 + 164600 -6244.0134 -6253.9468 9.9333794 3743.1412 631.04602 -10628.134 0 476.06328 0.00069247363 0.00065582343 + 164610 -6245.0168 -6254.4588 9.4419807 3744.2649 631.68497 -10630.409 0 452.51269 0.00072127344 0.00069021896 + 164620 -6246.0065 -6254.6582 8.6517045 3743.8361 632.9425 -10631.437 0 414.63822 0.00080836697 0.00078422937 + 164630 -6246.8545 -6254.5678 7.7132916 3742.1114 634.66026 -10631.34 0 369.66421 0.00094283738 0.00092203053 + 164640 -6247.492 -6254.2453 6.7533269 3739.6215 636.66834 -10630.535 0 323.65732 0.0011091376 0.0010858767 + 164650 -6247.9282 -6253.7539 5.8257437 3737.1033 638.77312 -10629.63 0 279.20233 0.0012837445 0.0012543937 + 164660 -6248.225 -6253.1673 4.9422982 3735.3308 640.73265 -10629.231 0 236.86266 0.0014354902 0.00140139 + 164670 -6248.4518 -6252.5931 4.1412694 3734.8884 642.2563 -10629.738 0 198.47287 0.0015320096 0.0014988202 + 164680 -6248.648 -6252.1795 3.531548 3735.9801 643.05311 -10631.213 0 169.2516 0.001550162 0.0015240504 + 164690 -6248.8092 -6252.0777 3.2685005 3738.362 642.92001 -10633.36 0 156.64488 0.0014846009 0.0014677759 + 164700 -6248.9035 -6252.3688 3.4652532 3741.4313 641.8294 -10635.63 0 166.07438 0.0013494481 0.001338231 + 164710 -6248.9057 -6253.0008 4.0950462 3744.4235 639.96742 -10637.392 0 196.25759 0.0011728655 0.0011599175 + 164720 -6248.8282 -6253.7892 4.9610749 3746.623 637.69624 -10638.109 0 237.76255 0.00098870669 0.00096806228 + 164730 -6248.7225 -6254.4997 5.7772349 3747.5048 635.45205 -10637.457 0 276.87751 0.00082981216 0.00080102173 + 164740 -6248.6468 -6254.9691 6.3223058 3746.7853 633.62307 -10635.378 0 303.00037 0.00072425266 0.00069232404 + 164750 -6248.625 -6255.1791 6.5541738 3744.4363 632.46013 -10632.076 0 314.11278 0.00069227181 0.00066355421 + 164760 -6248.6372 -6255.2249 6.5877341 3740.717 632.04821 -10627.99 0 315.72118 0.00074149286 0.00071923429 + 164770 -6248.6477 -6255.2106 6.5629314 3736.2142 632.32791 -10623.753 0 314.5325 0.00086149522 0.00084464689 + 164780 -6248.6352 -6255.1651 6.5298839 3731.8105 633.13304 -10620.109 0 312.94868 0.0010220616 0.0010072582 + 164790 -6248.5995 -6255.0389 6.4393651 3728.5272 634.22429 -10617.79 0 308.61051 0.0011784529 0.0011624536 + 164800 -6248.5496 -6254.7597 6.2101629 3727.2699 635.3276 -10617.357 0 297.62585 0.001283199 0.0012640161 + 164810 -6248.4939 -6254.2886 5.7946467 3728.561 636.19466 -10619.044 0 277.71198 0.0013008603 0.0012779716 + 164820 -6248.4394 -6253.6474 5.2079708 3732.3409 636.67982 -10622.668 0 249.59518 0.0012212674 0.0011956637 + 164830 -6248.3895 -6252.9237 4.5341417 3737.9047 636.79979 -10627.628 0 217.30151 0.0010667241 0.0010405384 + 164840 -6248.339 -6252.2581 3.9190863 3744.0199 636.73834 -10633.016 0 187.8246 0.00088933236 0.00086461287 + 164850 -6248.27 -6251.8116 3.5415343 3749.2251 636.78194 -10637.819 0 169.7302 0.00075707299 0.00073424115 + 164860 -6248.1549 -6251.7125 3.5576095 3752.2382 637.20526 -10641.156 0 170.50061 0.00073160449 0.00070886528 + 164870 -6247.9654 -6252.0028 4.0373908 3752.3399 638.14816 -10642.491 0 193.49442 0.00084505864 0.00081951455 + 164880 -6247.6845 -6252.6098 4.9253036 3749.6012 639.53119 -10641.742 0 236.04818 0.0010848951 0.0010547691 + 164890 -6247.3135 -6253.3644 6.0509162 3744.8728 641.04589 -10639.283 0 289.99385 0.001393836 0.0013600729 + 164900 -6246.8699 -6254.0637 7.1937745 3739.5306 642.23353 -10635.828 0 344.76604 0.0016864477 0.0016520049 + 164910 -6246.3759 -6254.5418 8.1659698 3735.0602 642.6358 -10632.238 0 391.35909 0.0018767002 0.0018436739 + 164920 -6245.8544 -6254.7054 8.8510185 3732.6242 641.96733 -10629.297 0 424.19047 0.0019054701 0.0018727753 + 164930 -6245.3399 -6254.5233 9.1833953 3732.7474 640.23931 -10627.51 0 440.11983 0.0017580193 0.0017224232 + 164940 -6244.8835 -6254.0144 9.1308613 3735.1902 637.7764 -10626.981 0 437.6021 0.0014678469 0.0014275704 + 164950 -6244.5333 -6253.2631 8.7298224 3739.0235 635.11839 -10627.405 0 418.38207 0.0011079852 0.0010650076 + 164960 -6244.3026 -6252.4309 8.1282458 3742.8957 632.85421 -10628.181 0 389.55115 0.00077175253 0.00073041157 + 164970 -6244.1613 -6251.7153 7.5540353 3745.4375 631.462 -10628.615 0 362.03176 0.000546836 0.00051036062 + 164980 -6244.059 -6251.2616 7.2026493 3745.6912 631.21004 -10628.163 0 345.19137 0.0004903583 0.00045879463 + 164990 -6243.9596 -6251.087 7.1273765 3743.4273 632.12856 -10626.643 0 341.58387 0.00061350858 0.00058466188 + 165000 -6243.8585 -6251.0812 7.2226902 3739.2393 634.02473 -10624.345 0 346.15184 0.00088026439 0.00085229537 + 165010 -6243.7721 -6251.0939 7.3217773 3734.3784 636.51377 -10621.986 0 350.90065 0.0012192165 0.0011921829 + 165020 -6243.7109 -6251.0522 7.3413037 3730.3785 639.07011 -10620.501 0 351.83647 0.0015439418 0.0015187309 + 165030 -6243.6628 -6251.0182 7.3553725 3728.6006 641.12731 -10620.746 0 352.51072 0.0017757849 0.0017516582 + 165040 -6243.6087 -6251.1302 7.521446 3729.8525 642.23542 -10623.218 0 360.4699 0.001863109 0.0018369962 + 165050 -6243.5567 -6251.468 7.9112311 3734.1711 642.22767 -10627.867 0 379.15059 0.0017934533 0.0017626447 + 165060 -6243.5577 -6251.9596 8.4019524 3740.7753 641.30754 -10634.042 0 402.6687 0.0015973993 0.0015632569 + 165070 -6243.6773 -6252.4145 8.7372502 3748.1912 639.98686 -10640.593 0 418.73805 0.0013424512 0.0013107352 + 165080 -6243.945 -6252.653 8.7079459 3754.5849 638.87948 -10646.117 0 417.33363 0.0011143349 0.0010906982 + 165090 -6244.329 -6252.6222 8.2932216 3758.292 638.43864 -10649.353 0 397.45771 0.00098749595 0.00097189714 + 165100 -6244.7642 -6252.4121 7.6478558 3758.3874 638.7667 -10649.566 0 366.52816 0.00099570067 0.0009812739 + 165110 -6245.2102 -6252.1757 6.9655042 3755.0241 639.59536 -10646.795 0 333.82604 0.0011185671 0.0010967334 + 165120 -6245.681 -6252.0321 6.3510643 3749.3395 640.44271 -10641.814 0 304.37864 0.0012933298 0.0012611179 + 165130 -6246.2172 -6252.0284 5.8112083 3742.9594 640.85385 -10635.842 0 278.50571 0.0014464004 0.0014094929 + 165140 -6246.827 -6252.1786 5.3516704 3737.3665 640.58897 -10630.134 0 256.48208 0.0015268744 0.0014952459 + 165150 -6247.4565 -6252.519 5.0624326 3733.4677 639.67254 -10625.659 0 242.62017 0.0015230845 0.0015025411 + 165160 -6248.0206 -6253.0995 5.0789789 3731.547 638.31722 -10622.964 0 243.41317 0.0014549542 0.0014417815 + 165170 -6248.466 -6253.8989 5.4328505 3731.5126 636.80256 -10622.214 0 260.37268 0.0013513169 0.0013349948 + 165180 -6248.8142 -6254.7505 5.9362927 3733.1625 635.37906 -10623.292 0 284.50045 0.0012303728 0.001202512 + 165190 -6249.1415 -6255.3884 6.2469055 3736.2372 634.22164 -10625.847 0 299.38676 0.0010966483 0.0010584936 + 165200 -6249.5084 -6255.6051 6.0967402 3740.2765 633.425 -10629.307 0 292.19 0.00095327493 0.00091489789 + 165210 -6249.9003 -6255.3929 5.4925146 3744.504 633.02667 -10632.924 0 263.23212 0.00081588076 0.00078765935 + 165220 -6250.2373 -6254.9399 4.7026552 3747.9405 633.042 -10635.922 0 225.37763 0.00071453819 0.00069863644 + 165230 -6250.4416 -6254.4892 4.0475555 3749.7302 633.49064 -10637.71 0 193.98157 0.00068201934 0.00067118327 + 165240 -6250.5003 -6254.1824 3.6821201 3749.4773 634.39537 -10638.055 0 176.46786 0.00073793563 0.00072197155 + 165250 -6250.4708 -6254.0099 3.5391267 3747.3884 635.74898 -10637.147 0 169.61481 0.00087955882 0.00085352725 + 165260 -6250.4367 -6253.884 3.4473171 3744.1658 637.46538 -10635.515 0 165.21478 0.0010830578 0.0010506276 + 165270 -6250.4481 -6253.753 3.3049181 3740.7463 639.34432 -10633.844 0 158.39022 0.0013114028 0.0012813183 + 165280 -6250.4923 -6253.6604 3.1681402 3738.0341 641.07701 -10632.772 0 151.83505 0.0015227784 0.0015018158 + 165290 -6250.5093 -6253.7069 3.1976212 3736.7259 642.30315 -10632.736 0 153.24795 0.0016763253 0.0016643844 + 165300 -6250.4392 -6253.9578 3.5185433 3737.2306 642.70596 -10633.894 0 168.62834 0.0017366735 0.0017275247 + 165310 -6250.2647 -6254.3735 4.1088597 3739.6225 642.11363 -10636.11 0 196.91961 0.0016806144 0.0016673062 + 165320 -6250.0197 -6254.8228 4.8031352 3743.5724 640.57043 -10638.966 0 230.19319 0.0015068497 0.0014872288 + 165330 -6249.7583 -6255.167 5.4086791 3748.2877 638.35218 -10641.807 0 259.21425 0.0012448737 0.001222636 + 165340 -6249.5085 -6255.3418 5.8332418 3752.5714 635.92031 -10643.833 0 279.56168 0.00095547678 0.00093603814 + 165350 -6249.2547 -6255.3617 6.107019 3755.0959 633.82622 -10644.284 0 292.68262 0.00071730562 0.00070250681 + 165360 -6248.9648 -6255.25 6.2851546 3754.8438 632.58367 -10642.677 0 301.21987 0.00060188867 0.00058848455 + 165370 -6248.6338 -6254.975 6.3412706 3751.5214 632.53042 -10639.027 0 303.90927 0.00064763365 0.0006305994 + 165380 -6248.2968 -6254.4644 6.1676453 3745.7358 633.71191 -10633.912 0 295.58817 0.00084470652 0.00082188549 + 165390 -6248.0038 -6253.6878 5.6839377 3738.8501 635.8329 -10628.371 0 272.40619 0.0011371161 0.0011110305 + 165400 -6247.7808 -6252.7342 4.953344 3732.585 638.31514 -10623.634 0 237.39204 0.0014406054 0.0014162176 + 165410 -6247.6104 -6251.8151 4.2046843 3728.5269 640.4615 -10620.804 0 201.51207 0.0016692177 0.0016497931 + 165420 -6247.4444 -6251.1812 3.736817 3727.7105 641.67775 -10620.569 0 179.08924 0.0017611638 0.0017456342 + 165430 -6247.2332 -6250.9983 3.7651611 3730.3843 641.67172 -10623.054 0 180.44765 0.0016960266 0.001679939 + 165440 -6246.9537 -6251.2652 4.3115619 3735.977 640.55239 -10627.795 0 206.63424 0.0014993888 0.0014785626 + 165450 -6246.6163 -6251.8317 5.2154237 3743.2278 638.7868 -10633.846 0 249.95237 0.0012350919 0.0012085775 + 165460 -6246.2477 -6252.5025 6.2547238 3750.4536 637.02835 -10639.984 0 299.76146 0.00098737801 0.00095677777 + 165470 -6245.8681 -6253.1357 7.2675826 3755.9487 635.88468 -10644.969 0 348.30333 0.00083607718 0.00080213018 + 165480 -6245.4944 -6253.6561 8.1617562 3758.46 635.71931 -10647.835 0 391.15715 0.00083053189 0.00079138965 + 165490 -6245.1681 -6253.993 8.8248321 3757.566 636.55983 -10648.119 0 422.93547 0.00097195186 0.00092620492 + 165500 -6244.9625 -6254.0454 9.0829092 3753.7535 638.12941 -10645.928 0 435.30397 0.0012144136 0.0011659571 + 165510 -6244.9291 -6253.7506 8.82153 3748.1359 639.96387 -10641.85 0 422.77722 0.001486453 0.0014443039 + 165520 -6245.0302 -6253.1946 8.1643644 3742.0052 641.55786 -10636.758 0 391.28215 0.0017206402 0.0016913112 + 165530 -6245.1457 -6252.6097 7.4639991 3736.5238 642.49702 -10631.631 0 357.71672 0.0018716529 0.0018512534 + 165540 -6245.1699 -6252.2139 7.0439949 3732.6577 642.55121 -10627.423 0 337.58776 0.0019156188 0.001891194 + 165550 -6245.1009 -6252.0443 6.9433847 3731.163 641.71413 -10624.921 0 332.76595 0.0018429668 0.0018030967 + 165560 -6245.0342 -6251.9593 6.9250614 3732.4176 640.18782 -10624.565 0 331.8878 0.0016595928 0.0016043842 + 165570 -6245.0743 -6251.7933 6.7190423 3736.1586 638.32294 -10626.275 0 322.01421 0.0013955056 0.0013371729 + 165580 -6245.2464 -6251.5168 6.2704592 3741.3773 636.52912 -10629.423 0 300.51559 0.001108127 0.0010620706 + 165590 -6245.4735 -6251.2829 5.8094218 3746.5455 635.17204 -10633 0 278.42009 0.00087077763 0.00084403861 + 165600 -6245.6308 -6251.3292 5.698408 3750.1372 634.48436 -10635.951 0 273.09968 0.00074777673 0.00073338857 + 165610 -6245.6419 -6251.7877 6.1457762 3751.2198 634.51972 -10637.527 0 294.54008 0.0007672576 0.00074945729 + 165620 -6245.5498 -6252.5432 6.9934278 3749.7971 635.16339 -10637.504 0 335.1643 0.00090782394 0.0008750178 + 165630 -6245.493 -6253.2792 7.7861529 3746.6881 636.19147 -10636.159 0 373.15613 0.0011107341 0.0010654 + 165640 -6245.5894 -6253.6983 8.1088707 3743.0267 637.35744 -10634.082 0 388.62258 0.0013126423 0.0012684531 + 165650 -6245.8278 -6253.7213 7.8934206 3739.7543 638.47403 -10631.95 0 378.29701 0.0014757407 0.0014440774 + 165660 -6246.0851 -6253.4813 7.3962035 3737.4462 639.45106 -10630.379 0 354.46757 0.001592705 0.0015719486 + 165670 -6246.2511 -6253.149 6.8979865 3736.4556 640.26506 -10629.87 0 330.59022 0.0016672873 0.0016454391 + 165680 -6246.3255 -6252.794 6.4684679 3737.0595 640.88183 -10630.735 0 310.00528 0.0016937836 0.00166086 + 165690 -6246.3956 -6252.4169 6.021298 3739.369 641.19759 -10632.984 0 288.57438 0.0016561619 0.0016135097 + 165700 -6246.5373 -6252.0751 5.5377483 3743.0894 641.0623 -10636.227 0 265.39997 0.0015456172 0.0015039313 + 165710 -6246.747 -6251.9266 5.1796869 3747.4029 640.38475 -10639.714 0 248.23966 0.0013780356 0.001347508 + 165720 -6246.9542 -6252.1316 5.1773918 3751.1411 639.24373 -10642.516 0 248.12967 0.0011952627 0.0011773959 + 165730 -6247.0871 -6252.7065 5.6194537 3753.1835 637.91461 -10643.805 0 269.31575 0.00104932 0.0010364866 + 165740 -6247.1293 -6253.4677 6.3384696 3752.8761 636.77905 -10643.123 0 303.77503 0.0009806346 0.00096231694 + 165750 -6247.1319 -6254.1159 6.9840618 3750.2706 636.16342 -10640.55 0 334.71543 0.0010026811 0.0009728835 + 165760 -6247.1743 -6254.405 7.230741 3746.0847 636.19442 -10636.684 0 346.53768 0.0010993368 0.0010598587 + 165770 -6247.3061 -6254.2747 6.9685813 3741.4225 636.74847 -10632.446 0 333.97352 0.0012334124 0.0011914894 + 165780 -6247.5204 -6253.8582 6.3378749 3737.4051 637.51835 -10628.782 0 303.74653 0.0013602716 0.0013234665 + 165790 -6247.772 -6253.3768 5.6048124 3734.8699 638.15502 -10626.402 0 268.61406 0.0014411495 0.0014135198 + 165800 -6248.0121 -6253.0157 5.0036174 3734.2143 638.40669 -10625.637 0 239.80142 0.0014533214 0.00143435 + 165810 -6248.2064 -6252.8627 4.6562331 3735.3771 638.19139 -10626.431 0 223.15282 0.0013949041 0.0013801684 + 165820 -6248.3412 -6252.9097 4.5685252 3737.927 637.59054 -10628.427 0 218.94936 0.0012824734 0.0012653043 + 165830 -6248.432 -6253.0775 4.6454748 3741.2216 636.79541 -10631.094 0 222.63722 0.0011430504 0.0011176816 + 165840 -6248.5288 -6253.2489 4.720152 3744.5702 636.04462 -10633.864 0 226.21617 0.00100618 0.00097175944 + 165850 -6248.6918 -6253.3323 4.6404364 3747.3322 635.5673 -10636.232 0 222.39575 0.00090086939 0.00086301217 + 165860 -6248.9448 -6253.3361 4.3913328 3748.9613 635.53004 -10637.827 0 210.45731 0.0008551392 0.00082223978 + 165870 -6249.2517 -6253.3835 4.1318126 3749.0869 635.99168 -10638.462 0 198.01964 0.00089099271 0.00086762993 + 165880 -6249.5509 -6253.6238 4.0729323 3747.6714 636.88072 -10638.176 0 195.19777 0.0010126139 0.000996139 + 165890 -6249.8112 -6254.1072 4.2959859 3745.1415 638.00463 -10637.253 0 205.88775 0.0011958507 0.0011792631 + 165900 -6250.054 -6254.7349 4.6808849 3742.3338 639.08847 -10636.157 0 224.33427 0.001389879 0.0013677805 + 165910 -6250.3241 -6255.3195 4.9953839 3740.2175 639.83651 -10635.374 0 239.40682 0.0015335897 0.0015057752 + 165920 -6250.6455 -6255.6914 5.045893 3739.5217 640.01119 -10635.224 0 241.8275 0.0015786359 0.0015491938 + 165930 -6251.0005 -6255.7719 4.7714606 3740.4545 639.51306 -10635.74 0 228.67517 0.001507585 0.0014814222 + 165940 -6251.3413 -6255.5877 4.2463522 3742.6348 638.42951 -10636.652 0 203.50902 0.0013397831 0.0013194707 + 165950 -6251.6176 -6255.2417 3.6241047 3745.2478 637.02259 -10637.512 0 173.68743 0.0011239612 0.0011084942 + 165960 -6251.8011 -6254.8656 3.0645357 3747.3524 635.65188 -10637.87 0 146.86975 0.00092131112 0.00090701744 + 165970 -6251.8966 -6254.5698 2.6732028 3748.216 634.65949 -10637.445 0 128.11488 0.00078532239 0.00076829881 + 165980 -6251.9363 -6254.4121 2.4757227 3747.5485 634.26108 -10636.222 0 118.65052 0.00074547144 0.00072420685 + 165990 -6251.9608 -6254.3978 2.4369393 3745.5558 634.48298 -10634.437 0 116.7918 0.00080041506 0.00077692276 + 166000 -6251.9942 -6254.504 2.5097781 3742.8203 635.16703 -10632.491 0 120.28265 0.00092238821 0.00090086245 + 166010 -6252.0288 -6254.7044 2.675578 3740.0903 636.03867 -10630.833 0 128.22871 0.0010695226 0.0010532356 + 166020 -6252.0299 -6254.9716 2.9416954 3738.0759 636.80922 -10629.857 0 140.98255 0.0011998164 0.0011885167 + 166030 -6251.9596 -6255.2594 3.2997322 3737.3028 637.27116 -10629.833 0 158.14168 0.0012815452 0.0012714976 + 166040 -6251.8043 -6255.4924 3.6880745 3738.0229 637.35193 -10630.867 0 176.75322 0.0012986595 0.0012854638 + 166050 -6251.5844 -6255.5882 4.0038317 3740.1552 637.11452 -10632.858 0 191.88608 0.0012526192 0.0012346474 + 166060 -6251.3381 -6255.5043 4.1662507 3743.2651 636.7174 -10635.487 0 199.67011 0.0011620653 0.0011417344 + 166070 -6251.091 -6255.2743 4.1832741 3746.6182 636.35784 -10638.25 0 200.48596 0.0010597214 0.0010414627 + 166080 -6250.8352 -6254.9947 4.1595698 3749.3439 636.21845 -10640.557 0 199.34992 0.00098468904 0.00097115453 + 166090 -6250.5364 -6254.7608 4.2244448 3750.6907 636.42424 -10641.876 0 202.4591 0.00096987361 0.00095948499 + 166100 -6250.1666 -6254.5918 4.4252387 3750.2865 637.00915 -10641.888 0 212.08227 0.0010282081 0.0010161946 + 166110 -6249.7372 -6254.4097 4.6724815 3748.289 637.89281 -10640.592 0 223.93153 0.0011446444 0.0011268536 + 166120 -6249.3022 -6254.0987 4.7965024 3745.3345 638.87798 -10638.311 0 229.87531 0.0012800613 0.0012563787 + 166130 -6248.9235 -6253.6115 4.6880196 3742.2931 639.68551 -10635.59 0 224.6762 0.0013871194 0.0013614778 + 166140 -6248.6253 -6253.0359 4.4105283 3739.9416 640.03459 -10633.012 0 211.37726 0.0014300655 0.0014069849 + 166150 -6248.3818 -6252.5598 4.1780246 3738.7152 639.74864 -10631.024 0 200.23438 0.0013976003 0.0013784872 + 166160 -6248.1458 -6252.3547 4.2088657 3738.6374 638.84185 -10629.834 0 201.71246 0.0013037436 0.0012863087 + 166170 -6247.8867 -6252.4719 4.5851929 3739.4035 637.53809 -10629.413 0 219.74817 0.0011801615 0.0011608257 + 166180 -6247.6002 -6252.8301 5.2299431 3740.5326 636.20181 -10629.565 0 250.64822 0.0010656133 0.001041765 + 166190 -6247.2978 -6253.2749 5.9771051 3741.5368 635.20605 -10630.018 0 286.45641 0.00099424192 0.00096455202 + 166200 -6247.0025 -6253.6343 6.6317814 3742.0879 634.7969 -10630.519 0 317.83218 0.00098323599 0.00094772721 + 166210 -6246.7537 -6253.7522 6.9984909 3742.116 635.01347 -10630.882 0 335.40695 0.0010254361 0.00098685054 + 166220 -6246.5906 -6253.5432 6.9526622 3741.7613 635.69278 -10630.997 0 333.21058 0.0010946524 0.0010588012 + 166230 -6246.5107 -6253.0658 6.5550528 3741.2109 636.55303 -10630.83 0 314.15491 0.0011624915 0.0011346626 + 166240 -6246.4554 -6252.5258 6.0703576 3740.5777 637.31926 -10630.423 0 290.9256 0.001213814 0.0011935792 + 166250 -6246.3537 -6252.1608 5.8071777 3739.9309 637.83499 -10629.927 0 278.31254 0.0012492926 0.001229733 + 166260 -6246.1834 -6252.0907 5.9073691 3739.3994 638.10581 -10629.596 0 283.11427 0.0012770203 0.0012502314 + 166270 -6245.9871 -6252.2679 6.2807669 3739.1926 638.25607 -10629.717 0 301.00959 0.0013037845 0.0012675507 + 166280 -6245.8303 -6252.5506 6.7203038 3739.5021 638.43043 -10630.483 0 322.07466 0.0013322276 0.0012916397 + 166290 -6245.7469 -6252.8105 7.0636459 3740.3802 638.70237 -10631.893 0 338.52954 0.001361782 0.0013248034 + 166300 -6245.7176 -6252.9847 7.2670991 3741.6993 639.04018 -10633.724 0 348.28016 0.0013891855 0.0013603928 + 166310 -6245.6931 -6253.0626 7.3695371 3743.2091 639.33804 -10635.61 0 353.18957 0.001407837 0.0013852939 + 166320 -6245.6377 -6253.0458 7.4080935 3744.6427 639.47834 -10637.167 0 355.03741 0.0014079765 0.0013853188 + 166330 -6245.5626 -6252.9224 7.3598177 3745.8016 639.38281 -10638.107 0 352.72376 0.001379385 0.0013515044 + 166340 -6245.5186 -6252.6806 7.1619205 3746.5561 639.03275 -10638.269 0 343.23942 0.001317129 0.0012850168 + 166350 -6245.55 -6252.3571 6.8071784 3746.7621 638.47047 -10637.59 0 326.23819 0.0012289593 0.0011991779 + 166360 -6245.6463 -6252.0658 6.4195177 3746.1996 637.80237 -10636.068 0 307.65931 0.0011392797 0.001117898 + 166370 -6245.7449 -6251.9418 6.1968859 3744.6573 637.20106 -10633.8 0 296.98955 0.0010831494 0.0010697241 + 166380 -6245.7857 -6252.0285 6.2427475 3742.1563 636.87489 -10631.06 0 299.18749 0.0010896623 0.0010772555 + 166390 -6245.7641 -6252.2157 6.4516379 3739.1306 636.98138 -10628.328 0 309.19869 0.001163499 0.0011446668 + 166400 -6245.732 -6252.3115 6.579463 3736.3821 637.51325 -10626.207 0 315.32478 0.0012771802 0.0012501158 + 166410 -6245.7488 -6252.1982 6.4494134 3734.7919 638.23717 -10625.227 0 309.09208 0.0013806772 0.001350093 + 166420 -6245.83 -6251.944 6.1139992 3734.9429 638.7569 -10625.644 0 293.01715 0.0014239157 0.0013964717 + 166430 -6245.9396 -6251.7726 5.8330123 3736.8572 638.69736 -10627.327 0 279.55068 0.0013797861 0.0013584734 + 166440 -6246.0267 -6251.9099 5.8832018 3739.9693 637.91842 -10629.798 0 281.95604 0.0012563831 0.0012385826 + 166450 -6246.0721 -6252.418 6.3458677 3743.3237 636.63584 -10632.378 0 304.12959 0.001094799 0.0010752335 + 166460 -6246.1075 -6253.1382 7.0306696 3745.8883 635.36952 -10634.396 0 336.94914 0.00095525385 0.00093085403 + 166470 -6246.1923 -6253.786 7.5937004 3746.8671 634.7266 -10635.38 0 363.93273 0.00089637049 0.00086850574 + 166480 -6246.365 -6254.1266 7.7615547 3745.9395 635.11673 -10635.183 0 371.97725 0.00095290944 0.00092498274 + 166490 -6246.6122 -6254.0958 7.4836006 3743.3966 636.54343 -10634.036 0 358.65613 0.0011188857 0.0010920591 + 166500 -6246.8894 -6253.7889 6.8995257 3740.1241 638.58273 -10632.496 0 330.66399 0.0013440685 0.0013160201 + 166510 -6247.1676 -6253.3573 6.1897418 3737.3634 640.55828 -10631.279 0 296.64716 0.0015489164 0.0015170939 + 166520 -6247.4522 -6252.9264 5.4742687 3736.2577 641.81668 -10631.001 0 262.35767 0.0016548158 0.001620331 + 166530 -6247.757 -6252.5876 4.8306225 3737.3569 641.96949 -10631.914 0 231.51053 0.0016169512 0.0015845037 + 166540 -6248.0711 -6252.4234 4.352231 3740.3462 641.00843 -10633.778 0 208.58333 0.0014436392 0.0014173554 + 166550 -6248.359 -6252.5033 4.1443061 3744.1596 639.27331 -10635.936 0 198.6184 0.001192442 0.001171829 + 166560 -6248.5907 -6252.8381 4.2473739 3747.4158 637.31055 -10637.564 0 203.55799 0.00094581552 0.00092581782 + 166570 -6248.7724 -6253.339 4.5665898 3748.948 635.68534 -10637.972 0 218.85661 0.00077907317 0.0007543577 + 166580 -6248.9471 -6253.8381 4.8910097 3748.1892 634.80874 -10636.836 0 234.40463 0.00073537817 0.00070516791 + 166590 -6249.1593 -6254.1772 5.0178286 3745.2912 634.82447 -10634.293 0 240.4825 0.00081647728 0.00078546411 + 166600 -6249.4122 -6254.31 4.8978115 3741.0054 635.58102 -10630.896 0 234.73061 0.00098835136 0.00096238041 + 166610 -6249.6581 -6254.3271 4.6690193 3736.4478 636.69386 -10627.469 0 223.7656 0.0011941938 0.0011744995 + 166620 -6249.8412 -6254.3693 4.5280919 3732.8446 637.67942 -10624.893 0 217.01157 0.001368175 0.001349996 + 166630 -6249.9507 -6254.5024 4.5516937 3731.2632 638.11998 -10623.886 0 218.1427 0.0014500196 0.0014273348 + 166640 -6250.0315 -6254.6718 4.6403833 3732.3051 637.80791 -10624.785 0 222.39321 0.001403035 0.0013747937 + 166650 -6250.1401 -6254.7729 4.6327167 3735.8285 636.82335 -10627.425 0 222.02578 0.0012320297 0.0012035642 + 166660 -6250.2889 -6254.7566 4.4676583 3740.877 635.51724 -10631.151 0 214.11525 0.00098981429 0.00096790205 + 166670 -6250.432 -6254.6665 4.2344975 3745.9444 634.39992 -10635.011 0 202.94088 0.00076250567 0.00074882113 + 166680 -6250.5067 -6254.5752 4.0684813 3749.5154 633.96699 -10638.058 0 194.98445 0.00063614399 0.00062546479 + 166690 -6250.4913 -6254.4978 4.0065524 3750.6319 634.51693 -10639.647 0 192.01647 0.00066054873 0.00064550587 + 166700 -6250.4218 -6254.3808 3.9590207 3749.2048 636.02195 -10639.608 0 189.73848 0.00082951904 0.00080727175 + 166710 -6250.3544 -6254.1857 3.8312521 3745.9443 638.10604 -10638.236 0 183.6151 0.0010865653 0.0010609261 + 166720 -6250.3094 -6253.9739 3.664452 3742.007 640.15632 -10636.137 0 175.6211 0.0013501088 0.001327332 + 166730 -6250.2507 -6253.8888 3.6380417 3738.5755 641.53964 -10634.004 0 174.35537 0.0015431926 0.0015259329 + 166740 -6250.1146 -6254.0337 3.9190615 3736.5407 641.83888 -10632.413 0 187.82342 0.0016153988 0.00160073 + 166750 -6249.8575 -6254.3544 4.4969556 3736.33 641.00531 -10631.69 0 215.51935 0.001553277 0.0015362495 + 166760 -6249.4826 -6254.6386 5.1559843 3737.8439 639.36035 -10631.843 0 247.1037 0.0013810833 0.0013599286 + 166770 -6249.0293 -6254.6475 5.6182104 3740.4841 637.45032 -10632.582 0 269.25617 0.0011532478 0.0011309812 + 166780 -6248.5356 -6254.2801 5.7445065 3743.3019 635.82314 -10633.405 0 275.30898 0.00093821691 0.00091906669 + 166790 -6248.0115 -6253.6392 5.6276452 3745.2899 634.82916 -10633.758 0 269.70833 0.00079564927 0.00077999679 + 166800 -6247.4477 -6252.9542 5.5065347 3745.7361 634.53061 -10633.221 0 263.90404 0.00075518403 0.00073826345 + 166810 -6246.8488 -6252.4365 5.5876534 3744.4748 634.74628 -10631.658 0 267.7917 0.000808102 0.00078390517 + 166820 -6246.2546 -6252.1739 5.9193263 3741.8954 635.19325 -10629.263 0 283.68733 0.00091721187 0.00088402339 + 166830 -6245.7258 -6252.12 6.3942554 3738.7147 635.64695 -10626.482 0 306.4486 0.0010389195 0.0010015221 + 166840 -6245.3049 -6252.1593 6.8544071 3735.6561 636.03736 -10623.853 0 328.50165 0.001144156 0.001110578 + 166850 -6244.9826 -6252.1917 7.209066 3733.2235 636.43984 -10621.855 0 345.49889 0.0012266345 0.0012017539 + 166860 -6244.7053 -6252.1774 7.4720975 3731.683 636.98228 -10620.843 0 358.10484 0.0012955979 0.0012767639 + 166870 -6244.4233 -6252.1179 7.6946311 3731.2037 637.73542 -10621.057 0 368.7699 0.0013600258 0.0013386651 + 166880 -6244.1391 -6252.0094 7.870306 3731.9834 638.65029 -10622.643 0 377.18923 0.001416091 0.0013844411 + 166890 -6243.9097 -6251.8294 7.9196842 3734.2008 639.5679 -10625.598 0 379.5557 0.0014464976 0.0014040392 + 166900 -6243.7959 -6251.577 7.7810955 3737.8039 640.28321 -10629.664 0 372.91376 0.0014316685 0.0013856638 + 166910 -6243.8028 -6251.3232 7.5204051 3742.3112 640.62515 -10634.26 0 360.42001 0.0013645654 0.0013238911 + 166920 -6243.8677 -6251.2012 7.3334829 3746.8149 640.51991 -10638.536 0 351.46165 0.0012586215 0.0012260519 + 166930 -6243.9092 -6251.3165 7.4072898 3750.2294 640.02069 -10641.567 0 354.99889 0.0011436767 0.0011134333 + 166940 -6243.8972 -6251.6454 7.7481433 3751.6468 639.29951 -10642.592 0 371.3345 0.0010536455 0.0010165315 + 166950 -6243.8834 -6252.0144 8.1310404 3750.6125 638.60344 -10641.23 0 389.68508 0.0010144996 0.00096646455 + 166960 -6243.9622 -6252.1996 8.2374044 3747.2141 638.18109 -10637.595 0 394.78264 0.0010390192 0.00098590712 + 166970 -6244.1862 -6252.0906 7.9043215 3741.9996 638.19124 -10632.281 0 378.81944 0.0011279975 0.0010817206 + 166980 -6244.5082 -6251.7974 7.2892299 3735.8361 638.62125 -10626.255 0 349.3408 0.0012711569 0.0012396523 + 166990 -6244.8128 -6251.5912 6.7784111 3729.8192 639.25678 -10620.667 0 324.85949 0.0014421636 0.0014219921 + 167000 -6245.0174 -6251.7044 6.6870472 3725.2133 639.73373 -10616.651 0 320.48082 0.001592591 0.0015715674 + 167010 -6245.1444 -6252.1556 7.0111659 3723.2649 639.66618 -10615.087 0 336.01441 0.0016579385 0.0016257675 + 167020 -6245.3015 -6252.7489 7.4473655 3724.7956 638.8079 -10616.352 0 356.91954 0.0015823847 0.0015395153 + 167030 -6245.5869 -6253.2308 7.64394 3729.7317 637.18482 -10620.147 0 366.3405 0.0013517582 0.0013085472 + 167040 -6246.0065 -6253.4577 7.4511665 3736.894 635.13604 -10625.488 0 357.10171 0.0010126953 0.00098020002 + 167050 -6246.4739 -6253.4435 6.9696412 3744.2787 633.22985 -10630.952 0 334.02431 0.00066190137 0.00064303806 + 167060 -6246.8862 -6253.2868 6.4006056 3749.7472 632.07485 -10635.109 0 306.75294 0.00040898336 0.00039759489 + 167070 -6247.2007 -6253.0762 5.8755515 3751.7838 632.09859 -10636.959 0 281.58939 0.00033333509 0.00032074996 + 167080 -6247.4443 -6252.865 5.4207272 3749.9655 633.38393 -10636.214 0 259.79166 0.00045689033 0.00043904134 + 167090 -6247.6671 -6252.7088 5.0417487 3744.9971 635.63106 -10633.337 0 241.62889 0.00074180055 0.0007208423 + 167100 -6247.8938 -6252.687 4.7931365 3738.3984 638.25884 -10629.344 0 229.714 0.0011076212 0.0010881439 + 167110 -6248.1147 -6252.8612 4.7464842 3732.0301 640.59778 -10625.489 0 227.47815 0.0014566482 0.0014411505 + 167120 -6248.3079 -6253.2118 4.9038609 3727.6089 642.09067 -10622.911 0 235.02053 0.0016989284 0.0016863902 + 167130 -6248.4631 -6253.6243 5.1611564 3726.2956 642.42853 -10622.348 0 247.35157 0.0017732906 0.0017608434 + 167140 -6248.5863 -6253.9518 5.3654436 3728.4155 641.59486 -10623.962 0 257.14216 0.0016620328 0.0016472546 + 167150 -6248.6896 -6254.1033 5.4136789 3733.3726 639.83494 -10627.311 0 259.45387 0.0013956123 0.0013775498 + 167160 -6248.7819 -6254.0877 5.3058262 3739.7995 637.58216 -10631.469 0 254.28496 0.0010444699 0.0010234809 + 167170 -6248.8686 -6253.988 5.1194089 3745.9179 635.36289 -10635.269 0 245.3508 0.00069973544 0.00067712668 + 167180 -6248.9537 -6253.9015 4.9477973 3750.0079 633.68583 -10637.595 0 237.12621 0.00044917401 0.00042683098 + 167190 -6249.0351 -6253.8922 4.8571221 3750.8603 632.92319 -10637.676 0 232.78054 0.00035508062 0.00033459744 + 167200 -6249.1015 -6253.9725 4.8710211 3748.1062 633.20801 -10635.287 0 233.44666 0.0004382107 0.00041973818 + 167210 -6249.1381 -6254.1032 4.9651266 3742.3443 634.38514 -10630.833 0 237.95673 0.00067069968 0.00065263816 + 167220 -6249.1387 -6254.2114 5.0726381 3735.0129 636.04501 -10625.269 0 243.10928 0.00098153871 0.00096161343 + 167230 -6249.1091 -6254.2257 5.1165917 3728.0072 637.64022 -10619.873 0 245.21578 0.0012762059 0.0012529789 + 167240 -6249.059 -6254.1174 5.0584204 3723.1442 638.65204 -10615.914 0 242.42789 0.0014657786 0.0014392665 + 167250 -6248.9915 -6253.9163 4.9247853 3721.6472 638.75215 -10614.316 0 236.02334 0.0014948366 0.0014660231 + 167260 -6248.9002 -6253.6903 4.790121 3723.8233 637.90311 -10615.417 0 229.56948 0.0013573286 0.0013274472 + 167270 -6248.7728 -6253.506 4.7332471 3729.016 636.36309 -10618.885 0 226.84376 0.0010956373 0.001065974 + 167280 -6248.5932 -6253.4001 4.806935 3735.8181 634.59835 -10623.817 0 230.3753 0.00078574782 0.00075773289 + 167290 -6248.3378 -6253.3796 5.0418719 3742.4524 633.14161 -10628.974 0 241.63479 0.00051574675 0.00049043906 + 167300 -6247.9702 -6253.435 5.4648526 3747.2186 632.44763 -10633.101 0 261.9064 0.00036398746 0.00034065229 + 167310 -6247.4526 -6253.5354 6.0827607 3748.9232 632.78472 -10635.243 0 291.52002 0.00037976384 0.00035491044 + 167320 -6246.7807 -6253.5958 6.815171 3747.2105 634.177 -10634.983 0 326.62123 0.0005683187 0.00053738307 + 167330 -6246.0205 -6253.467 7.4464493 3742.6845 636.39507 -10632.547 0 356.87563 0.00088537303 0.00084709264 + 167340 -6245.2947 -6253.0082 7.7134265 3736.7192 638.99305 -10628.72 0 369.67068 0.0012485728 0.0012080399 + 167350 -6244.6999 -6252.2284 7.5284396 3730.9902 641.39615 -10624.615 0 360.80507 0.0015658832 0.001531492 + 167360 -6244.228 -6251.3635 7.1354472 3726.9491 643.03574 -10621.348 0 341.97067 0.0017666825 0.0017420759 + 167370 -6243.783 -6250.7709 6.9878456 3725.4883 643.50456 -10619.764 0 334.89677 0.0018172951 0.0017962601 + 167380 -6243.285 -6250.6847 7.3996959 3726.857 642.68485 -10620.227 0 354.63495 0.0017173465 0.001688283 + 167390 -6242.7622 -6251.0309 8.2687148 3730.685 640.80202 -10622.518 0 396.28321 0.0014905102 0.0014476797 + 167400 -6242.3382 -6251.4751 9.1369072 3735.9863 638.37068 -10625.832 0 437.89186 0.0011830565 0.0011337443 + 167410 -6242.1148 -6251.6807 9.5658904 3741.2219 636.03197 -10628.935 0 458.45114 0.00086653864 0.00082546835 + 167420 -6242.0608 -6251.5519 9.4910143 3744.6243 634.33532 -10630.511 0 454.86266 0.00062690559 0.00060167831 + 167430 -6242.0385 -6251.2458 9.2072908 3744.836 633.56203 -10629.644 0 441.26504 0.0005315891 0.00051364598 + 167440 -6241.9486 -6250.9715 9.022902 3741.5656 633.67024 -10626.207 0 432.42809 0.00059333976 0.00056462647 + 167450 -6241.8338 -6250.8097 8.9758475 3735.791 634.36863 -10620.969 0 430.17298 0.00076243317 0.00071166305 + 167460 -6241.8317 -6250.7263 8.8946165 3729.303 635.26959 -10615.299 0 426.27993 0.00095765704 0.0008901915 + 167470 -6242.0407 -6250.7001 8.6594321 3723.8843 636.05705 -10610.641 0 415.00858 0.0011124586 0.001045292 + 167480 -6242.4426 -6250.7751 8.3324809 3720.6666 636.60198 -10608.044 0 399.33924 0.0012019543 0.0011504317 + 167490 -6242.9383 -6250.9926 8.0543857 3719.9729 636.96829 -10607.934 0 386.01136 0.0012374148 0.001206048 + 167500 -6243.4289 -6251.3215 7.8926203 3721.5412 637.30252 -10610.165 0 378.25865 0.0012419299 0.0012243874 + 167510 -6243.8615 -6251.6808 7.8192743 3724.841 637.67819 -10614.2 0 374.7435 0.001228739 0.0012132184 + 167520 -6244.2323 -6252.0096 7.7773427 3729.29 638.0072 -10619.307 0 372.7339 0.001193343 0.001168552 + 167530 -6244.5802 -6252.2832 7.7029712 3734.3252 638.08727 -10624.696 0 369.1696 0.0011192566 0.0010798053 + 167540 -6244.9744 -6252.4785 7.5041677 3739.3473 637.75149 -10629.577 0 359.64182 0.00099345996 0.00094368801 + 167550 -6245.4691 -6252.5768 7.1076972 3743.5973 637.01051 -10633.185 0 340.64073 0.00082527454 0.00077789172 + 167560 -6246.0453 -6252.625 6.5797435 3746.1199 636.08937 -10634.834 0 315.33823 0.00065696306 0.00062454626 + 167570 -6246.6027 -6252.7604 6.1576701 3745.9857 635.34017 -10634.086 0 295.1101 0.00055332965 0.00053799757 + 167580 -6247.0305 -6253.1082 6.0777231 3742.7658 635.08722 -10630.961 0 291.27859 0.00056981668 0.00056064039 + 167590 -6247.3 -6253.6299 6.3299214 3736.9621 635.48269 -10626.075 0 303.36535 0.00071731818 0.00069908061 + 167600 -6247.489 -6254.0925 6.6035279 3730.0313 636.42769 -10620.551 0 316.47811 0.00094861417 0.0009145703 + 167610 -6247.7114 -6254.2284 6.517038 3723.8987 637.58473 -10615.712 0 312.33303 0.0011773812 0.0011345109 + 167620 -6248.0146 -6253.9508 5.9361991 3720.2286 638.48386 -10612.663 0 284.49597 0.0013175903 0.0012799634 + 167630 -6248.3421 -6253.4368 5.0947672 3719.8563 638.69087 -10611.984 0 244.16983 0.0013185309 0.001295215 + 167640 -6248.5866 -6253.0134 4.4268548 3722.6254 637.97357 -10613.612 0 212.15972 0.0011779511 0.0011658047 + 167650 -6248.6778 -6252.9394 4.2616173 3727.5976 636.40053 -10616.938 0 204.24061 0.00093348558 0.00092012828 + 167660 -6248.6364 -6253.2406 4.6042395 3733.4305 634.33856 -10621.01 0 220.66099 0.00064468464 0.000618855 + 167670 -6248.5618 -6253.7128 5.1509923 3738.7112 632.35131 -10624.775 0 246.86445 0.00037809212 0.00033908504 + 167680 -6248.5567 -6254.091 5.5343474 3742.1669 631.02847 -10627.286 0 265.23698 0.0001989459 0.00015699941 + 167690 -6248.6418 -6254.2463 5.6045416 3742.8377 630.7975 -10627.882 0 268.60108 0.00016243785 0.00012931687 + 167700 -6248.7446 -6254.2319 5.4872277 3740.3373 631.7819 -10626.351 0 262.97874 0.00029610612 0.00027484163 + 167710 -6248.7785 -6254.1552 5.3767236 3735.1457 633.7522 -10623.053 0 257.68276 0.00057833041 0.00056217159 + 167720 -6248.7239 -6254.0469 5.3230347 3728.667 636.17963 -10618.894 0 255.10969 0.00093213887 0.00091250224 + 167730 -6248.6282 -6253.8758 5.2475749 3722.851 638.37799 -10615.105 0 251.49323 0.0012478662 0.0012217916 + 167740 -6248.5424 -6253.6538 5.1113593 3719.5046 639.70678 -10612.865 0 244.96502 0.0014253509 0.0013956525 + 167750 -6248.4764 -6253.4719 4.9955708 3719.6507 639.78453 -10612.907 0 239.41578 0.0014114587 0.0013820332 + 167760 -6248.4095 -6253.4213 5.0118921 3723.2168 638.63507 -10615.273 0 240.19799 0.0012157265 0.0011883566 + 167770 -6248.3251 -6253.5003 5.1751329 3729.1072 636.6968 -10619.304 0 248.0214 0.0009035731 0.00087853939 + 167780 -6248.2229 -6253.6113 5.3883585 3735.5614 634.67612 -10623.849 0 258.24037 0.00057499789 0.00055273748 + 167790 -6248.1033 -6253.6459 5.5425453 3740.6773 633.29413 -10627.617 0 265.62987 0.00033493506 0.00031576082 + 167800 -6247.9555 -6253.5652 5.6097397 3742.9842 633.02546 -10629.575 0 268.8502 0.00025990539 0.00024249128 + 167810 -6247.768 -6253.4081 5.6401089 3741.9065 633.9322 -10629.247 0 270.30567 0.00037033273 0.00035183868 + 167820 -6247.5475 -6253.2463 5.6988154 3737.936 635.65318 -10626.835 0 273.11921 0.00062200447 0.00060046726 + 167830 -6247.3163 -6253.1448 5.8284343 3732.4201 637.5469 -10623.112 0 279.33127 0.00092373755 0.00090007851 + 167840 -6247.0889 -6253.1429 6.0539828 3727.0556 638.9315 -10619.13 0 290.14083 0.001173565 0.0011507981 + 167850 -6246.8546 -6253.2394 6.3847974 3723.3128 639.33043 -10615.883 0 305.99532 0.0012955652 0.0012758967 + 167860 -6246.5847 -6253.3748 6.7901048 3722.0129 638.63002 -10614.018 0 325.41992 0.0012617551 0.0012443048 + 167870 -6246.2574 -6253.4356 7.1782456 3723.1745 637.09262 -10613.703 0 344.02181 0.0010939551 0.0010749954 + 167880 -6245.8767 -6253.2971 7.4203536 3726.1185 635.23242 -10614.648 0 355.62498 0.00085012839 0.00082542838 + 167890 -6245.4707 -6252.8908 7.420164 3729.7428 633.61594 -10616.25 0 355.61589 0.00060345724 0.00057079597 + 167900 -6245.0722 -6252.2558 7.1836087 3732.8589 632.67242 -10617.787 0 344.27884 0.00042122514 0.00038148328 + 167910 -6244.7 -6251.536 6.836053 3734.5009 632.58215 -10618.619 0 327.62201 0.00034812277 0.00030474912 + 167920 -6244.3469 -6250.9275 6.5805921 3734.1438 633.26647 -10618.338 0 315.3789 0.00039727549 0.00035473264 + 167930 -6243.9746 -6250.6087 6.6340733 3731.799 634.45866 -10616.866 0 317.94202 0.00055103274 0.00051272828 + 167940 -6243.51 -6250.6832 7.1731402 3727.9839 635.81242 -10614.479 0 343.77713 0.00077045319 0.00073661216 + 167950 -6242.8569 -6251.1433 8.2864444 3723.6001 637.00903 -10611.752 0 397.13291 0.0010083807 0.00097484997 + 167960 -6241.9396 -6251.8447 9.9050879 3719.7626 637.84049 -10609.448 0 474.70739 0.001219443 0.0011790852 + 167970 -6240.7809 -6252.5017 11.720804 3717.5907 638.25387 -10608.346 0 561.72671 0.0013642562 0.0013118923 + 167980 -6239.5526 -6252.7532 13.200638 3717.9228 638.34112 -10609.017 0 632.64865 0.0014126917 0.0013511074 + 167990 -6238.5064 -6252.3296 13.823223 3720.9642 638.26899 -10611.563 0 662.48641 0.0013530865 0.0012938715 + 168000 -6237.8009 -6251.2429 13.442005 3726.0434 638.18204 -10615.468 0 644.2163 0.0012041073 0.0011595241 + 168010 -6237.3951 -6249.8274 12.43233 3731.7238 638.14092 -10619.692 0 595.82702 0.0010147556 0.00098645731 + 168020 -6237.1339 -6248.5534 11.419474 3736.3253 638.13195 -10623.011 0 547.28525 0.00084462645 0.00082078706 + 168030 -6236.9245 -6247.7415 10.817032 3738.5738 638.12239 -10624.438 0 518.41287 0.0007365013 0.00070168828 + 168040 -6236.8205 -6247.4133 10.592766 3737.9846 638.10962 -10623.508 0 507.6648 0.00070254614 0.00065163409 + 168050 -6236.9497 -6247.3882 10.438531 3734.8102 638.13557 -10620.334 0 500.27295 0.00073332264 0.0006759618 + 168060 -6237.374 -6247.5092 10.135166 3729.7422 638.26694 -10615.518 0 485.73404 0.00081717033 0.00076815904 + 168070 -6238.0355 -6247.767 9.7315042 3723.7009 638.54992 -10610.018 0 466.38828 0.00094705527 0.00091249438 + 168080 -6238.8371 -6248.2258 9.3886793 3717.8242 638.95131 -10605.001 0 449.95819 0.0011067243 0.0010803061 + 168090 -6239.7472 -6248.8929 9.1456969 3713.4359 639.31235 -10601.641 0 438.31311 0.001255016 0.0012268657 + 168100 -6240.7893 -6249.7076 8.9183099 3711.7485 639.36065 -10600.817 0 427.41545 0.0013328707 0.0012994267 + 168110 -6241.9495 -6250.6252 8.6757647 3713.3932 638.81141 -10602.83 0 415.79132 0.0012921563 0.0012569999 + 168120 -6243.137 -6251.6424 8.5053524 3718.1102 637.52229 -10607.275 0 407.62421 0.0011214043 0.001089443 + 168130 -6244.2396 -6252.7282 8.4885877 3724.7987 635.60938 -10613.136 0 406.82075 0.00085059578 0.00082372725 + 168140 -6245.1864 -6253.7579 8.5715903 3731.8333 633.4547 -10619.046 0 410.7987 0.00053948111 0.00051672408 + 168150 -6245.9621 -6254.5312 8.5691388 3737.4709 631.60202 -10623.604 0 410.68121 0.00026096538 0.000240607 + 168160 -6246.5842 -6254.8691 8.2849449 3740.2598 630.58025 -10625.709 0 397.06105 8.4080656e-05 6.4967583e-05 + 168170 -6247.0722 -6254.7218 7.6495978 3739.4004 630.7174 -10624.84 0 366.61165 5.6682929e-05 3.7828126e-05 + 168180 -6247.4359 -6254.2055 6.7696196 3734.982 632.02013 -10621.208 0 324.43816 0.00019013413 0.00016990716 + 168190 -6247.6892 -6253.5404 5.8511316 3728.0171 634.16834 -10615.726 0 280.41906 0.00045173148 0.00042847519 + 168200 -6247.8659 -6252.9401 5.0741975 3720.2266 636.6175 -10609.784 0 243.18402 0.00077067325 0.00074468645 + 168210 -6248.0091 -6252.5402 4.5311601 3713.5974 638.75639 -10604.894 0 217.15861 0.0010580511 0.0010324662 + 168220 -6248.1421 -6252.3973 4.2552009 3709.8372 640.06078 -10602.295 0 203.9331 0.0012335112 0.0012121552 + 168230 -6248.2519 -6252.515 4.2630322 3709.9153 640.20753 -10602.638 0 204.30842 0.0012473861 0.0012311651 + 168240 -6248.3076 -6252.8498 4.5421733 3713.837 639.1386 -10605.825 0 217.68643 0.0010911542 0.0010766654 + 168250 -6248.2967 -6253.3019 5.0052301 3720.6733 637.07591 -10611.051 0 239.87871 0.00079694575 0.00077906037 + 168260 -6248.2434 -6253.7326 5.4891557 3728.7787 634.48491 -10616.996 0 263.07114 0.00043068428 0.00040681822 + 168270 -6248.1919 -6254.023 5.8311056 3736.131 631.98261 -10622.137 0 279.4593 8.0764562e-05 5.2848772e-05 + 168280 -6248.1705 -6254.1311 5.9606123 3740.7715 630.19578 -10625.098 0 285.66599 -0.00015979823 -0.00018721902 + 168290 -6248.1738 -6254.0972 5.9233746 3741.304 629.59577 -10624.997 0 283.88135 -0.00021821565 -0.00024160031 + 168300 -6248.174 -6253.9994 5.8253578 3737.3315 630.35348 -10621.684 0 279.18383 -6.7274106e-05 -8.6308455e-05 + 168310 -6248.1431 -6253.9015 5.7583879 3729.666 632.26285 -10615.83 0 275.97426 0.00026002927 0.0002426684 + 168320 -6248.0687 -6253.827 5.7583484 3720.1982 634.77122 -10608.796 0 275.97236 0.00067489436 0.00065534993 + 168330 -6247.958 -6253.7579 5.7998735 3711.4273 637.12677 -10602.312 0 277.96248 0.0010566354 0.0010320643 + 168340 -6247.8344 -6253.6497 5.8153237 3705.7619 638.60904 -10598.021 0 278.70294 0.0012890182 0.0012592911 + 168350 -6247.7254 -6253.4593 5.7339027 3704.7961 638.76445 -10597.02 0 274.80079 0.0012974545 0.0012655754 + 168360 -6247.6455 -6253.1818 5.5362941 3708.8011 637.55721 -10599.54 0 265.33028 0.0010748158 0.0010454343 + 168370 -6247.5809 -6252.8807 5.299795 3716.621 635.37652 -10604.878 0 253.99591 0.00068632994 0.00066262157 + 168380 -6247.4904 -6252.6774 5.1870458 3726.0289 632.90175 -10611.608 0 248.59234 0.00024979208 0.00023064663 + 168390 -6247.3309 -6252.6861 5.3551906 3734.4229 630.8827 -10617.992 0 256.65078 -0.0001035111 -0.00012329662 + 168400 -6247.0915 -6252.9299 5.8383989 3739.598 629.91609 -10622.444 0 279.80884 -0.0002720771 -0.00029793514 + 168410 -6246.8058 -6253.3089 6.5030466 3740.3229 630.28717 -10623.919 0 311.66248 -0.0002137063 -0.0002466872 + 168420 -6246.5295 -6253.65 7.1205395 3736.5722 631.91385 -10622.136 0 341.25621 4.870075e-05 1.3124639e-05 + 168430 -6246.2992 -6253.797 7.497718 3729.4261 634.39512 -10617.618 0 359.33272 0.00044186555 0.0004103436 + 168440 -6246.1103 -6253.6718 7.5614956 3720.7379 637.13309 -10611.543 0 362.3893 0.00086611757 0.00084237917 + 168450 -6245.9309 -6253.2825 7.3516495 3712.6772 639.48225 -10605.442 0 352.33229 0.0012190976 0.0012017009 + 168460 -6245.7362 -6252.7002 6.9640468 3707.2316 640.8892 -10600.821 0 333.7562 0.0014162669 0.0014006299 + 168470 -6245.5266 -6252.04 6.5134342 3705.7408 641.00677 -10598.788 0 312.16032 0.0014086318 0.0013908631 + 168480 -6245.3166 -6251.4488 6.1322079 3708.5569 639.77578 -10599.782 0 293.88981 0.0011956481 0.0011746405 + 168490 -6245.1139 -6251.0745 5.9606328 3714.9351 637.45967 -10603.469 0 285.66697 0.000828073 0.00080486725 + 168500 -6244.9122 -6251.0064 6.0941789 3723.2081 634.60796 -10608.822 0 292.06725 0.00039699871 0.00037330675 + 168510 -6244.7023 -6251.2272 6.5248868 3731.2037 631.93221 -10614.363 0 312.70918 1.0953918e-05 -1.1399482e-05 + 168520 -6244.4796 -6251.6272 7.1476256 3736.7926 630.11023 -10618.53 0 342.55432 -0.00023220332 -0.00025152569 + 168530 -6244.2395 -6252.0768 7.8373078 3738.4385 629.57737 -10620.093 0 375.60776 -0.00027103922 -0.00028706101 + 168540 -6243.975 -6252.4908 8.5158303 3735.6283 630.38895 -10618.508 0 408.12637 -9.7888659e-05 -0.00011332314 + 168550 -6243.691 -6252.8301 9.1390187 3729.0549 632.21585 -10614.101 0 437.99306 0.00023708784 0.00021716613 + 168560 -6243.4271 -6253.0592 9.6320981 3720.4523 634.47518 -10607.987 0 461.62418 0.00063847353 0.00061019478 + 168570 -6243.2556 -6253.1197 9.8640374 3712.0893 636.53628 -10601.745 0 472.74002 0.00099389398 0.00095848541 + 168580 -6243.243 -6252.9574 9.7144563 3706.0764 637.91549 -10596.949 0 465.57125 0.0012101612 0.0011741485 + 168590 -6243.3957 -6252.583 9.1873245 3703.7443 638.38845 -10594.716 0 440.30814 0.0012427614 0.0012130232 + 168600 -6243.6472 -6252.0942 8.4469368 3705.3352 637.99699 -10595.426 0 404.82461 0.0011040657 0.0010815252 + 168610 -6243.9106 -6251.613 7.702416 3710.1007 636.97836 -10598.692 0 369.14299 0.00084711164 0.00082557218 + 168620 -6244.151 -6251.1953 7.0442887 3716.6696 635.66433 -10603.529 0 337.60184 0.00053861745 0.00051072325 + 168630 -6244.4 -6250.8232 6.4232364 3723.4429 634.38498 -10608.651 0 307.83753 0.00024017404 0.0002045282 + 168640 -6244.6998 -6250.4988 5.7989758 3728.8819 633.39733 -10612.778 0 277.91946 3.6986586e-06 -3.4330074e-05 + 168650 -6245.0496 -6250.3224 5.2727513 3731.7378 632.85081 -10614.911 0 252.69983 -0.00012847936 -0.00016246554 + 168660 -6245.4122 -6250.4533 5.0411436 3731.297 632.78922 -10614.54 0 241.59989 -0.00012933535 -0.00015735281 + 168670 -6245.7634 -6250.9881 5.2247183 3727.5973 633.17215 -10611.758 0 250.39782 2.5165313e-06 -2.2178895e-05 + 168680 -6246.1222 -6251.8748 5.7526035 3721.486 633.89367 -10607.254 0 275.69704 0.00023717065 0.00021269675 + 168690 -6246.5323 -6252.9395 6.4072188 3714.4387 634.78675 -10602.165 0 307.06988 0.00051867933 0.00049390324 + 168700 -6247.0188 -6253.9845 6.9656774 3708.1853 635.62369 -10597.794 0 333.83435 0.00077877831 0.00075474763 + 168710 -6247.5685 -6254.8587 7.2902 3704.2826 636.13857 -10595.28 0 349.38729 0.00095192537 0.00092863685 + 168720 -6248.1469 -6255.456 7.3090865 3703.7524 636.08896 -10595.297 0 350.29243 0.00098782719 0.00096406319 + 168730 -6248.7214 -6255.6983 6.9768821 3706.8347 635.34099 -10597.874 0 334.37134 0.00086300022 0.00083867484 + 168740 -6249.2613 -6255.5635 6.3022145 3712.8819 633.9377 -10602.383 0 302.03748 0.00059133274 0.00056868542 + 168750 -6249.7282 -6255.1295 5.4013174 3720.4571 632.11667 -10607.703 0 258.86143 0.00022736985 0.00020907354 + 168760 -6250.0848 -6254.5673 4.4824899 3727.6646 630.2677 -10612.5 0 214.82607 -0.00014416737 -0.00015780065 + 168770 -6250.3157 -6254.0677 3.7519457 3732.6394 628.84382 -10615.551 0 179.81429 -0.00043105862 -0.00044265939 + 168780 -6250.4384 -6253.7557 3.3172928 3734.04 628.24993 -10616.046 0 158.98329 -0.00055935983 -0.00057234919 + 168790 -6250.4935 -6253.6516 3.1581521 3731.3971 628.7342 -10613.783 0 151.35637 -0.00049286009 -0.00050865007 + 168800 -6250.5222 -6253.6948 3.1726788 3725.2385 630.30492 -10609.238 0 152.05257 -0.00024175386 -0.00025871769 + 168810 -6250.5456 -6253.8037 3.2581822 3716.9777 632.69292 -10603.474 0 156.15037 0.00013909561 0.00012411657 + 168820 -6250.5573 -6253.927 3.3696802 3708.6025 635.37704 -10597.907 0 161.49398 0.00056031213 0.00054930441 + 168830 -6250.5344 -6254.0593 3.5248302 3702.2278 637.68296 -10593.97 0 168.92964 0.00091560806 0.00090771065 + 168840 -6250.4571 -6254.2243 3.7672151 3699.5935 638.94796 -10592.766 0 180.54609 0.0011062189 0.0010982703 + 168850 -6250.3232 -6254.4453 4.1221458 3701.5992 638.71864 -10594.763 0 197.55636 0.0010686001 0.0010572815 + 168860 -6250.15 -6254.718 4.5679739 3707.9908 636.92326 -10599.632 0 218.92294 0.00079726336 0.00078127557 + 168870 -6249.9653 -6254.9962 5.0309556 3717.3092 633.9493 -10606.255 0 241.11162 0.00035325824 0.0003342322 + 168880 -6249.7928 -6255.2013 5.4085572 3727.1672 630.57565 -10612.944 0 259.20841 -0.00014727332 -0.00016569879 + 168890 -6249.6383 -6255.2555 5.6171173 3734.8323 627.75835 -10617.846 0 269.20378 -0.00056329297 -0.00057792578 + 168900 -6249.4848 -6255.1209 5.6361597 3737.993 626.33287 -10619.447 0 270.1164 -0.00077028238 -0.00078102514 + 168910 -6249.3047 -6254.8141 5.5094019 3735.4891 626.73894 -10617.042 0 264.04145 -0.00070070629 -0.00071131199 + 168920 -6249.0872 -6254.383 5.2958218 3727.7509 628.87086 -10611.005 0 253.8055 -0.00036930059 -0.00038493275 + 168930 -6248.8557 -6253.8789 5.0231449 3716.7455 632.10513 -10602.73 0 240.73729 0.0001281236 0.0001051597 + 168940 -6248.6547 -6253.3563 4.7015962 3705.4054 635.49116 -10594.253 0 225.32687 0.00064426973 0.00061701821 + 168950 -6248.5123 -6252.896 4.3837079 3696.7374 638.03999 -10587.673 0 210.09188 0.0010279278 0.0010029654 + 168960 -6248.4116 -6252.6073 4.195784 3692.9474 639.02089 -10584.576 0 201.08551 0.0011713445 0.0011538137 + 168970 -6248.2941 -6252.5857 4.2915871 3694.8704 638.17538 -10585.631 0 205.67694 0.0010405198 0.0010298305 + 168980 -6248.0968 -6252.845 4.7481904 3701.8416 635.78538 -10590.472 0 227.55993 0.00067999811 0.00066959533 + 168990 -6247.8005 -6253.2716 5.4710506 3711.9674 632.58086 -10597.82 0 262.20344 0.0001941092 0.00017600258 + 169000 -6247.4563 -6253.6456 6.1892895 3722.6558 629.51857 -10605.82 0 296.62548 -0.00028549388 -0.00031424045 + 169010 -6247.1581 -6253.7494 6.591294 3731.241 627.49676 -10612.487 0 315.89179 -0.00063386118 -0.00066794254 + 169020 -6246.9684 -6253.5099 6.5414993 3735.5796 627.09009 -10616.18 0 313.50535 -0.00076046282 -0.00079014709 + 169030 -6246.8643 -6253.0643 6.2000466 3734.5517 628.38937 -10616.005 0 297.14102 -0.0006291354 -0.00064857208 + 169040 -6246.7615 -6252.6721 5.9105591 3728.3913 630.9964 -10612.06 0 283.26715 -0.00026978863 -0.00028218628 + 169050 -6246.5947 -6252.5328 5.9381248 3718.718 634.16439 -10605.415 0 284.58826 0.00022353085 0.00020897246 + 169060 -6246.3736 -6252.6641 6.2905173 3708.1529 637.02724 -10597.844 0 301.47688 0.00071526134 0.00069164721 + 169070 -6246.1662 -6252.9321 6.7658528 3699.5504 638.84694 -10591.329 0 324.25763 0.001070009 0.0010382618 + 169080 -6246.0327 -6253.1789 7.1461495 3695.1129 639.21239 -10587.504 0 342.48358 0.0011976811 0.0011645661 + 169090 -6245.9789 -6253.3156 7.3366964 3695.7535 638.13331 -10587.202 0 351.61566 0.0010803365 0.0010520323 + 169100 -6245.9694 -6253.3179 7.3484803 3700.9453 635.99964 -10590.263 0 352.18041 0.00076899738 0.00074699039 + 169110 -6245.9715 -6253.1816 7.2101105 3709.0262 633.42429 -10595.632 0 345.54895 0.00035729867 0.00033949893 + 169120 -6245.9751 -6252.9228 6.9477086 3717.7544 631.03477 -10601.712 0 332.97318 -5.0783497e-05 -6.6917248e-05 + 169130 -6245.9775 -6252.6137 6.6362103 3724.9137 629.2992 -10606.827 0 318.04443 -0.00036661774 -0.00038297919 + 169140 -6245.9699 -6252.3776 6.4076904 3728.8358 628.44705 -10609.66 0 307.09248 -0.00053320734 -0.00055177389 + 169150 -6245.9486 -6252.3133 6.3647202 3728.7448 628.48998 -10609.548 0 305.0331 -0.00053269709 -0.00055527205 + 169160 -6245.9311 -6252.4143 6.4832077 3724.8515 629.2991 -10606.565 0 310.71169 -0.0003843354 -0.00041055699 + 169170 -6245.9494 -6252.5658 6.6163662 3718.1943 630.68118 -10601.441 0 317.09339 -0.0001332224 -0.00015930152 + 169180 -6246.019 -6252.6317 6.6127231 3710.3159 632.4156 -10595.363 0 316.91879 0.00016518346 0.00014444573 + 169190 -6246.1137 -6252.5599 6.4461721 3702.9071 634.2503 -10589.717 0 308.93673 0.00045683305 0.0004435353 + 169200 -6246.1785 -6252.4128 6.2343171 3697.5145 635.88766 -10585.815 0 298.78346 0.00069257657 0.0006828833 + 169210 -6246.1773 -6252.3039 6.126567 3695.3217 637.00129 -10584.627 0 293.61947 0.00082734505 0.00081385245 + 169220 -6246.1297 -6252.3066 6.1769186 3696.9482 637.30297 -10586.558 0 296.0326 0.00082435347 0.00080227498 + 169230 -6246.0977 -6252.4236 6.325919 3702.241 636.64289 -10591.308 0 303.17353 0.00066864864 0.00064024266 + 169240 -6246.1325 -6252.625 6.4924978 3710.1478 635.09682 -10597.87 0 311.15692 0.0003827333 0.00035562661 + 169250 -6246.2298 -6252.8948 6.665006 3718.8261 632.98983 -10604.711 0 319.42449 3.0688863e-05 1.1321042e-05 + 169260 -6246.336 -6253.2281 6.8920789 3726.07 630.83224 -10610.13 0 330.30709 -0.00029698898 -0.00030904139 + 169270 -6246.3998 -6253.5836 7.1838624 3729.9531 629.18479 -10612.722 0 344.29099 -0.00051255814 -0.00052432073 + 169280 -6246.4213 -6253.8564 7.4351068 3729.4287 628.49882 -10611.784 0 356.33203 -0.00055961725 -0.00057884031 + 169290 -6246.4532 -6253.921 7.4677995 3724.6296 628.98204 -10607.533 0 357.89885 -0.00042832226 -0.00045731951 + 169300 -6246.5544 -6253.7184 7.1640161 3716.7747 630.52932 -10601.022 0 343.33985 -0.00015450313 -0.00018875796 + 169310 -6246.7445 -6253.3068 6.5623913 3707.7794 632.73945 -10593.826 0 314.50661 0.0001918647 0.00016009313 + 169320 -6246.9948 -6252.8355 5.8407304 3699.7473 635.01504 -10587.598 0 279.92057 0.00052326192 0.00049987161 + 169330 -6247.2521 -6252.4747 5.2225489 3694.4849 636.71883 -10583.678 0 250.29385 0.00075415659 0.00073988741 + 169340 -6247.4693 -6252.3478 4.8784986 3693.1228 637.34638 -10582.817 0 233.80503 0.00082122609 0.00081131408 + 169350 -6247.6314 -6252.4849 4.8535295 3695.8947 636.67156 -10585.051 0 232.60836 0.00069947224 0.0006863485 + 169360 -6247.7713 -6252.8086 5.037357 3702.0906 634.82427 -10589.724 0 241.41841 0.00040975223 0.00038778377 + 169370 -6247.9591 -6253.1702 5.2110832 3710.1849 632.27071 -10595.626 0 249.74435 1.6358775e-05 -1.4100256e-05 + 169380 -6248.2595 -6253.4341 5.1745926 3718.1392 629.69039 -10601.264 0 247.99551 -0.00038508806 -0.00041758856 + 169390 -6248.6819 -6253.5638 4.8818618 3723.8784 627.77806 -10605.22 0 233.96621 -0.00068951987 -0.0007160664 + 169400 -6249.169 -6253.6409 4.4718528 3725.8655 627.03338 -10606.54 0 214.31628 -0.00081207504 -0.00082894193 + 169410 -6249.6409 -6253.7973 4.1564317 3723.5961 627.61405 -10605.007 0 199.19953 -0.0007171727 -0.00072712172 + 169420 -6250.0528 -6254.1115 4.0586286 3717.7944 629.30186 -10601.208 0 194.51226 -0.00043389954 -0.00044314985 + 169430 -6250.4127 -6254.551 4.1382987 3710.2017 631.5817 -10596.334 0 198.33049 -4.8573514e-05 -6.16093e-05 + 169440 -6250.7517 -6255.0023 4.2505854 3703.0265 633.79706 -10591.826 0 203.7119 0.00032362784 0.00030688373 + 169450 -6251.0859 -6255.3502 4.2642324 3698.2644 635.33553 -10588.95 0 204.36594 0.00057618444 0.00055907073 + 169460 -6251.4012 -6255.538 4.1367421 3697.1333 635.79718 -10588.468 0 198.25589 0.00064311283 0.00062877517 + 169470 -6251.6674 -6255.5741 3.9067046 3699.7897 635.09956 -10590.463 0 187.2312 0.00051482187 0.00050381176 + 169480 -6251.8619 -6255.5022 3.6403797 3705.3698 633.48787 -10594.36 0 174.46742 0.00023564873 0.00022608305 + 169490 -6251.9832 -6255.3729 3.3896464 3712.29 631.44935 -10599.112 0 162.45087 -0.00011266888 -0.00012327117 + 169500 -6252.0476 -6255.2314 3.1837812 3718.6933 629.56362 -10603.488 0 152.58466 -0.00043491246 -0.00044791233 + 169510 -6252.0764 -6255.115 3.0386045 3722.9248 628.33798 -10606.378 0 145.62698 -0.00064743647 -0.00066250218 + 169520 -6252.086 -6255.0465 2.9605256 3723.9305 628.07482 -10607.052 0 141.885 -0.00069899581 -0.00071453921 + 169530 -6252.0827 -6255.0263 2.9436198 3721.4947 628.8016 -10605.323 0 141.07478 -0.00058277864 -0.0005968371 + 169540 -6252.0615 -6255.0341 2.9725228 3716.2692 630.2743 -10601.578 0 142.45997 -0.00033673233 -0.00034796662 + 169550 -6252.0081 -6255.0432 3.0351321 3709.5944 632.04834 -10596.686 0 145.46056 -3.2272599e-05 -4.0871271e-05 + 169560 -6251.9041 -6255.0368 3.1327721 3703.1608 633.59864 -10591.796 0 150.14002 0.00024524317 0.00023719986 + 169570 -6251.7368 -6255.0113 3.2744557 3698.5907 634.46122 -10588.063 0 156.93029 0.00041887042 0.0004081225 + 169580 -6251.51 -6254.9673 3.4573124 3697.0318 634.36243 -10586.362 0 165.69381 0.00043974761 0.00042368731 + 169590 -6251.2467 -6254.8991 3.6524247 3698.853 633.30098 -10587.053 0 175.04468 0.00029991864 0.00027867023 + 169600 -6250.9796 -6254.7978 3.8182856 3703.5145 631.55614 -10589.868 0 182.99367 3.5808423e-05 1.2975752e-05 + 169610 -6250.7291 -6254.6712 3.9420606 3709.6661 629.61397 -10593.951 0 188.92566 -0.00027908454 -0.00029821699 + 169620 -6250.4845 -6254.5568 4.0722943 3715.4869 628.02969 -10598.073 0 195.16719 -0.0005526612 -0.00056487901 + 169630 -6250.2072 -6254.5027 4.2954787 3719.2133 627.26742 -10600.983 0 205.86344 -0.00070132582 -0.00070848102 + 169640 -6249.8637 -6254.5171 4.6534442 3719.7088 627.5663 -10601.792 0 223.01916 -0.00067806872 -0.00068641876 + 169650 -6249.4637 -6254.5326 5.0689424 3716.8596 628.87272 -10600.265 0 242.93216 -0.00048991094 -0.00050560531 + 169660 -6249.0669 -6254.4326 5.3657826 3711.6093 630.85938 -10596.901 0 257.15841 -0.00019519297 -0.00021936007 + 169670 -6248.7432 -6254.1369 5.3936315 3705.6017 633.02684 -10592.765 0 258.49308 0.0001192789 9.1483402e-05 + 169680 -6248.5198 -6253.6775 5.1577534 3700.5996 634.85505 -10589.132 0 247.18848 0.00036991276 0.00034529418 + 169690 -6248.3629 -6253.1979 4.8349814 3697.9471 635.95251 -10587.097 0 231.71944 0.00050161253 0.00048347405 + 169700 -6248.2091 -6252.8683 4.6592359 3698.2642 636.15152 -10587.284 0 223.29673 0.00049778904 0.00048361527 + 169710 -6248.0128 -6252.7821 4.7693393 3701.4013 635.52437 -10589.708 0 228.5735 0.00037607738 0.00035997367 + 169720 -6247.7757 -6252.9026 5.1269067 3706.5656 634.32847 -10593.797 0 245.71014 0.00017643614 0.00015414372 + 169730 -6247.5395 -6253.0921 5.5526718 3712.5214 632.9112 -10598.525 0 266.11519 -5.1447176e-05 -7.889273e-05 + 169740 -6247.3484 -6253.2058 5.8574595 3717.8224 631.6088 -10602.637 0 280.72233 -0.00025752241 -0.00028453326 + 169750 -6247.2067 -6253.1867 5.979987 3721.0883 630.66569 -10604.941 0 286.59453 -0.0003980649 -0.0004194818 + 169760 -6247.0708 -6253.0891 6.0183001 3721.338 630.19163 -10604.619 0 288.43071 -0.00044315919 -0.00045934362 + 169770 -6246.89 -6253.0084 6.1183953 3718.3121 630.16345 -10601.484 0 293.22783 -0.00038578135 -0.00040277131 + 169780 -6246.6586 -6252.9859 6.327377 3712.6231 630.46353 -10596.073 0 303.24341 -0.00024683815 -0.00027093661 + 169790 -6246.4244 -6252.9864 6.5619725 3705.6012 630.93575 -10589.523 0 314.48654 -6.9121567e-05 -0.00010103572 + 169800 -6246.2454 -6252.9601 6.7147471 3698.8755 631.43692 -10583.273 0 321.80836 9.9102032e-05 6.490403e-05 + 169810 -6246.1371 -6252.9093 6.7721228 3693.8966 631.86619 -10578.672 0 324.55812 0.00022100862 0.00019134762 + 169820 -6246.0634 -6252.8829 6.8194518 3691.6108 632.16624 -10576.66 0 326.8264 0.00027841614 0.00025574887 + 169830 -6245.9746 -6252.9109 6.9362909 3692.3542 632.30716 -10577.572 0 332.42598 0.00026782833 0.0002489604 + 169840 -6245.8539 -6252.9492 7.0953755 3695.8908 632.27341 -10581.113 0 340.0502 0.00019305169 0.00017287572 + 169850 -6245.7288 -6252.903 7.1742022 3701.4883 632.06666 -10586.458 0 343.82802 6.3296244e-05 3.9581988e-05 + 169860 -6245.6383 -6252.7148 7.0765716 3708.002 631.7222 -10592.439 0 339.14902 -0.000101832 -0.00012720403 + 169870 -6245.5911 -6252.4365 6.8453381 3714.0278 631.32647 -10597.791 0 328.06701 -0.00026773005 -0.00029183125 + 169880 -6245.5598 -6252.2082 6.6483898 3718.1833 631.02211 -10601.414 0 318.62815 -0.00038896879 -0.00041154581 + 169890 -6245.513 -6252.1544 6.6414454 3719.4737 630.98744 -10602.616 0 318.29533 -0.00042333439 -0.00044710216 + 169900 -6245.4527 -6252.2826 6.8298762 3717.6007 631.38299 -10601.266 0 327.32599 -0.00034869195 -0.0003758223 + 169910 -6245.4166 -6252.4763 7.0596899 3713.0671 632.27164 -10597.815 0 338.33995 -0.00017349006 -0.00020216052 + 169920 -6245.4383 -6252.5923 7.1540599 3707.0248 633.54208 -10593.159 0 342.86269 6.364075e-05 3.8332479e-05 + 169930 -6245.5069 -6252.571 7.0640357 3700.9578 634.88401 -10588.413 0 338.54823 0.00030286547 0.00028392778 + 169940 -6245.5742 -6252.4548 6.8806568 3696.335 635.85268 -10584.643 0 329.75968 0.00047596372 0.00046079485 + 169950 -6245.6038 -6252.3172 6.7134206 3694.2934 636.01505 -10582.626 0 321.74478 0.00052181497 0.00050406178 + 169960 -6245.6086 -6252.1949 6.5862663 3695.3456 635.11946 -10582.66 0 315.65084 0.00040533749 0.00038052912 + 169970 -6245.6368 -6252.092 6.4551977 3699.161 633.21552 -10584.468 0 309.36929 0.00013552224 0.00010490076 + 169980 -6245.7272 -6252.0291 6.3018838 3704.5502 630.67471 -10587.254 0 302.02163 -0.00022777529 -0.00025855276 + 169990 -6245.8775 -6252.0698 6.1923156 3709.7527 628.10173 -10589.924 0 296.77051 -0.00058647561 -0.00061226633 + 170000 -6246.0503 -6252.2908 6.2405845 3712.9799 626.16343 -10591.434 0 299.08382 -0.00083479018 -0.00085525922 + 170010 -6246.2114 -6252.7136 6.5021996 3713.0313 625.38753 -10591.132 0 311.62189 -0.00089641378 -0.00091614257 + 170020 -6246.3692 -6253.2505 6.8812813 3709.7429 625.99249 -10588.986 0 329.78961 -0.00075324007 -0.00077740347 + 170030 -6246.5778 -6253.7237 7.1459283 3704.0754 627.80365 -10585.603 0 342.47298 -0.00045304038 -0.00048226807 + 170040 -6246.8926 -6253.9658 7.0731728 3697.7842 630.28973 -10582.04 0 338.98613 -9.2145451e-05 -0.00012140492 + 170050 -6247.3135 -6253.9312 6.6176838 3692.805 632.71988 -10579.456 0 317.15654 0.00021892968 0.00019604407 + 170060 -6247.774 -6253.7245 5.9504623 3690.6226 634.39586 -10578.743 0 285.17954 0.00039112954 0.0003766341 + 170070 -6248.1911 -6253.5183 5.3272227 3691.866 634.87755 -10580.262 0 255.3104 0.00038041591 0.00037014758 + 170080 -6248.5253 -6253.4328 4.907474 3696.2131 634.11806 -10583.764 0 235.19369 0.00019531397 0.0001825725 + 170090 -6248.7968 -6253.4748 4.6780545 3702.539 632.46215 -10588.476 0 224.19862 -0.00010852616 -0.00012753554 + 170100 -6249.0515 -6253.5715 4.5200277 3709.2098 630.51614 -10593.297 0 216.62509 -0.00044335977 -0.00046703212 + 170110 -6249.3176 -6253.6487 4.3311185 3714.4731 628.94216 -10597.064 0 207.5715 -0.0007122205 -0.00073548264 + 170120 -6249.5877 -6253.6843 4.096562 3716.9023 628.2482 -10598.835 0 196.33024 -0.00083617891 -0.00085450256 + 170130 -6249.8313 -6253.7089 3.8776317 3715.8021 628.63651 -10598.148 0 185.83787 -0.00077853171 -0.00079079004 + 170140 -6250.0184 -6253.7762 3.7577538 3711.4433 629.94789 -10595.167 0 180.09265 -0.00055733111 -0.00056602661 + 170150 -6250.1379 -6253.9303 3.7923211 3705.0243 631.71269 -10590.667 0 181.74931 -0.00024133174 -0.00025068216 + 170160 -6250.2023 -6254.1839 3.9816475 3698.3473 633.29524 -10585.826 0 190.82289 6.9908228e-05 5.6669491e-05 + 170170 -6250.2406 -6254.5109 4.2703164 3693.2916 634.09493 -10581.897 0 204.65752 0.00027626522 0.00025891043 + 170180 -6250.2826 -6254.8544 4.571807 3691.2446 633.74564 -10579.845 0 219.10664 0.00030884059 0.00029031812 + 170190 -6250.3402 -6255.1491 4.8089281 3692.6737 632.2455 -10580.068 0 230.47082 0.00015293616 0.0001373525 + 170200 -6250.3976 -6255.3429 4.945344 3696.9954 629.96581 -10582.304 0 237.00863 -0.0001467646 -0.00015725375 + 170210 -6250.4217 -6255.4014 4.9797813 3702.7942 627.53158 -10585.727 0 238.65906 -0.0005020925 -0.00050913026 + 170220 -6250.3888 -6255.2953 4.9064602 3708.3042 625.61744 -10589.217 0 235.1451 -0.00081253592 -0.00082029491 + 170230 -6250.3054 -6254.9987 4.6932814 3711.9559 624.73421 -10591.689 0 224.92838 -0.00099808001 -0.0010097398 + 170240 -6250.1999 -6254.5224 4.3225243 3712.7829 625.08066 -10592.386 0 207.15962 -0.0010200813 -0.0010353659 + 170250 -6250.0941 -6253.9533 3.8592771 3710.5976 626.50872 -10591.06 0 184.95821 -0.00088485624 -0.00090093058 + 170260 -6249.9832 -6253.4442 3.4610077 3705.9578 628.60576 -10588.008 0 165.87091 -0.000634252 -0.00064865631 + 170270 -6249.8413 -6253.1416 3.3003357 3699.9932 630.85092 -10583.986 0 158.1706 -0.00033066018 -0.00034310981 + 170280 -6249.6366 -6253.1064 3.4698003 3694.1405 632.77663 -10580.024 0 166.2923 -4.1157089e-05 -5.2900929e-05 + 170290 -6249.3405 -6253.292 3.9515059 3689.8279 634.07722 -10577.197 0 189.37834 0.00017724561 0.00016496134 + 170300 -6248.9271 -6253.5883 4.6611956 3688.1683 634.64088 -10576.398 0 223.39065 0.00028881709 0.00027507461 + 170310 -6248.3792 -6253.8827 5.5034238 3689.7295 634.5171 -10578.129 0 263.75495 0.00028333093 0.00026656988 + 170320 -6247.7096 -6254.0842 6.3745242 3694.415 633.85344 -10582.353 0 305.50296 0.00017203506 0.00014988437 + 170330 -6246.985 -6254.1136 7.128638 3701.4503 632.8373 -10588.401 0 341.64433 -2.0393339e-05 -4.8941372e-05 + 170340 -6246.3132 -6253.9095 7.5962699 3709.4556 631.66247 -10595.028 0 364.05588 -0.0002603915 -0.00029245585 + 170350 -6245.7815 -6253.4743 7.6927946 3716.6324 630.51899 -10600.626 0 368.68188 -0.00050420771 -0.00053408996 + 170360 -6245.3989 -6252.9082 7.5093537 3721.1116 629.59081 -10603.611 0 359.89036 -0.00069823971 -0.00072235716 + 170370 -6245.105 -6252.3628 7.257748 3721.4434 629.04439 -10602.851 0 347.83201 -0.00078977593 -0.00081050618 + 170380 -6244.8383 -6251.9392 7.100889 3717.0753 629.00109 -10598.016 0 340.31444 -0.00074619527 -0.00077012376 + 170390 -6244.5916 -6251.6212 7.029612 3708.6148 629.49856 -10589.735 0 336.89845 -0.00057074251 -0.00060248351 + 170400 -6244.4076 -6251.3128 6.9051186 3697.7389 630.45372 -10579.505 0 330.93203 -0.00030421812 -0.00034163094 + 170410 -6244.3211 -6250.9554 6.6343617 3686.7677 631.6431 -10569.366 0 317.95584 -1.1966925e-05 -4.7718626e-05 + 170420 -6244.3085 -6250.619 6.3105444 3678.0769 632.7207 -10561.417 0 302.43669 0.00023460577 0.00020626941 + 170430 -6244.3001 -6250.4696 6.1694799 3673.5714 633.28931 -10557.33 0 295.67609 0.00037215636 0.00035013965 + 170440 -6244.2406 -6250.6417 6.4011317 3674.3273 633.01842 -10557.987 0 306.77815 0.00035447172 0.00033226506 + 170450 -6244.1357 -6251.139 7.0033411 3680.3729 631.77386 -10563.286 0 335.6394 0.00016287224 0.00013480665 + 170460 -6244.0434 -6251.8417 7.7983205 3690.5803 629.71208 -10572.134 0 373.73928 -0.00018022328 -0.00021424985 + 170470 -6244.0267 -6252.5872 8.5604671 3702.7464 627.29825 -10582.632 0 410.26561 -0.00060300743 -0.00063832558 + 170480 -6244.1134 -6253.2359 9.1224698 3713.9863 625.22588 -10592.448 0 437.19994 -0.00099313496 -0.0010249555 + 170490 -6244.2949 -6253.6793 9.3843931 3721.4531 624.24303 -10599.375 0 449.75277 -0.0012276361 -0.0012546175 + 170500 -6244.5517 -6253.8223 9.2705817 3723.1869 624.92162 -10601.931 0 444.29829 -0.0012143955 -0.001238117 + 170510 -6244.8664 -6253.6036 8.7371822 3718.7615 627.43259 -10599.798 0 418.73479 -0.00092728786 -0.00094948994 + 170520 -6245.211 -6253.0598 7.8488096 3709.4568 631.40935 -10593.926 0 376.159 -0.00042022927 -0.00044169992 + 170530 -6245.5403 -6252.3572 6.8168652 3697.9033 635.97587 -10586.236 0 326.70243 0.00018376354 0.00016198728 + 170540 -6245.8157 -6251.7294 5.9137469 3687.3464 639.96328 -10579.039 0 283.41993 0.00072376349 0.00069972161 + 170550 -6246.0346 -6251.3603 5.3256599 3680.7493 642.25518 -10574.365 0 255.2355 0.0010445167 0.0010169527 + 170560 -6246.23 -6251.3042 5.0742679 3679.96 642.14041 -10573.405 0 243.18739 0.0010424543 0.0010130422 + 170570 -6246.4391 -6251.4989 5.0598071 3685.156 639.5454 -10576.2 0 242.49435 0.00070096911 0.00067429306 + 170580 -6246.6703 -6251.8438 5.1735588 3694.748 635.06308 -10581.655 0 247.94596 0.00010129819 8.1740984e-05 + 170590 -6246.8932 -6252.2756 5.3823955 3705.8226 629.77189 -10587.87 0 257.95459 -0.00059859454 -0.00061092685 + 170600 -6247.0639 -6252.7788 5.7148908 3715.0238 624.91747 -10592.72 0 273.88963 -0.0012125191 -0.0012231852 + 170610 -6247.1677 -6253.3343 6.1665279 3719.5903 621.57088 -10594.495 0 295.53462 -0.0015844231 -0.0016013323 + 170620 -6247.2432 -6253.8687 6.6254562 3718.1759 620.36419 -10592.409 0 317.52904 -0.0016340179 -0.0016614792 + 170630 -6247.361 -6254.2681 6.9070952 3711.1761 621.36182 -10586.806 0 331.02676 -0.0013740147 -0.0014090757 + 170640 -6247.57 -6254.4471 6.8770837 3700.5002 624.08441 -10579.032 0 329.58844 -0.00089729215 -0.00093175202 + 170650 -6247.8575 -6254.4082 6.5506225 3688.9457 627.66942 -10571.023 0 313.94259 -0.00034386 -0.00037051264 + 170660 -6248.1577 -6254.234 6.0763506 3679.4285 631.12353 -10564.786 0 291.21281 0.00013888862 0.00012087423 + 170670 -6248.402 -6254.0203 5.6182754 3674.2836 633.59804 -10561.902 0 269.25928 0.00043208065 0.00041696544 + 170680 -6248.5687 -6253.8053 5.2365853 3674.7586 634.61004 -10563.174 0 250.96655 0.00047155508 0.00045205711 + 170690 -6248.6916 -6253.5584 4.8667766 3680.7439 634.14563 -10568.448 0 233.24324 0.00026133151 0.00023475094 + 170700 -6248.8256 -6253.2413 4.4157002 3690.7811 632.61779 -10576.64 0 211.62513 -0.00012801193 -0.00015757966 + 170710 -6248.9955 -6252.8907 3.8951812 3702.3873 630.69864 -10585.977 0 186.67894 -0.00057777173 -0.00060306508 + 170720 -6249.1736 -6252.6462 3.4726225 3712.6825 629.08907 -10594.418 0 166.42755 -0.00095466466 -0.0009717897 + 170730 -6249.3036 -6252.6807 3.3770888 3719.1821 628.30592 -10600.169 0 161.84904 -0.0011512602 -0.0011634844 + 170740 -6249.3512 -6253.0751 3.7238858 3720.4989 628.55085 -10602.125 0 178.4695 -0.001119326 -0.001134647 + 170750 -6249.3388 -6253.7399 4.4010708 3716.6859 629.68603 -10600.112 0 210.92401 -0.00088266811 -0.00090709411 + 170760 -6249.3347 -6254.4511 5.1164523 3709.0998 631.30632 -10594.857 0 245.2091 -0.00052438056 -0.00055663966 + 170770 -6249.404 -6254.9774 5.5733623 3699.8745 632.87543 -10587.727 0 267.10679 -0.00015489678 -0.00018707453 + 170780 -6249.5584 -6255.2015 5.6431173 3691.2492 633.88425 -10580.335 0 270.44984 0.00012479312 0.00010116772 + 170790 -6249.7457 -6255.1548 5.4090774 3685.0076 633.98835 -10574.151 0 259.23334 0.00024995987 0.00023733643 + 170800 -6249.891 -6254.9522 5.0611124 3682.1757 633.0895 -10570.217 0 242.5569 0.00020125068 0.00019429535 + 170810 -6249.954 -6254.6915 4.7375506 3682.969 631.34362 -10569.004 0 227.05 -1.4388714e-06 -1.1491778e-05 + 170820 -6249.9538 -6254.4003 4.4465682 3686.8843 629.10035 -10570.385 0 213.1045 -0.00031147588 -0.0003300562 + 170830 -6249.9446 -6254.0656 4.1210174 3692.844 626.80085 -10573.711 0 197.50228 -0.00066684597 -0.00069236982 + 170840 -6249.9657 -6253.7057 3.7400239 3699.3817 624.87183 -10577.959 0 179.24293 -0.00099898779 -0.0010249488 + 170850 -6250.01 -6253.4059 3.3959053 3704.9084 623.64747 -10581.962 0 162.75083 -0.0012421603 -0.0012627319 + 170860 -6250.0339 -6253.2787 3.2448336 3708.0618 623.33051 -10584.671 0 155.51063 -0.0013452601 -0.0013595069 + 170870 -6249.9917 -6253.383 3.3913118 3708.0535 623.98191 -10585.418 0 162.53069 -0.0012836092 -0.0012951961 + 170880 -6249.8655 -6253.6759 3.8104345 3704.889 625.52245 -10584.087 0 182.6174 -0.0010657643 -0.0010791591 + 170890 -6249.6683 -6254.0379 4.3696216 3699.3757 627.73867 -10581.152 0 209.41679 -0.00073212683 -0.00074894058 + 170900 -6249.4242 -6254.3495 4.9253133 3692.9197 630.29941 -10577.569 0 236.04865 -0.00034603869 -0.00036449988 + 170910 -6249.1433 -6254.5548 5.4114805 3687.1872 632.79464 -10574.537 0 259.34851 1.9058292e-05 1.4724444e-06 + 170920 -6248.8148 -6254.6609 5.846147 3683.7297 634.80217 -10573.193 0 280.18017 0.00029268074 0.0002762072 + 170930 -6248.4263 -6254.6809 6.2546178 3683.6458 635.97284 -10574.3 0 299.75638 0.00041900551 0.00040114202 + 170940 -6247.9907 -6254.5778 6.5870573 3687.3135 636.11213 -10578.003 0 315.68875 0.00036760676 0.00034565482 + 170950 -6247.5517 -6254.2706 6.7189386 3694.2223 635.23244 -10583.725 0 322.00924 0.00014294586 0.00011693827 + 170960 -6247.1561 -6253.7032 6.5471 3702.9644 633.55925 -10590.227 0 313.77377 -0.00021060865 -0.00023769818 + 170970 -6246.8196 -6252.9171 6.0974707 3711.4594 631.48812 -10595.865 0 292.22501 -0.00061329224 -0.00063844224 + 170980 -6246.5191 -6252.0588 5.539699 3717.4298 629.50138 -10598.99 0 265.49346 -0.000966634 -0.00098982685 + 170990 -6246.2202 -6251.3114 5.091256 3719.0154 628.05987 -10598.387 0 244.00155 -0.0011788691 -0.0012030389 + 171000 -6245.909 -6250.8104 4.9014204 3715.3235 627.48981 -10593.624 0 234.90357 -0.0011905132 -0.0012183901 + 171010 -6245.596 -6250.6094 5.0134085 3706.7259 627.88928 -10585.225 0 240.27066 -0.00099168856 -0.0010227898 + 171020 -6245.2924 -6250.704 5.411615 3694.8312 629.08048 -10574.616 0 259.35496 -0.00062701482 -0.00065780394 + 171030 -6244.9865 -6251.0686 6.0821739 3682.1595 630.62843 -10563.857 0 291.4919 -0.00018771023 -0.00021486132 + 171040 -6244.6442 -6251.6636 7.0193958 3671.6012 631.93572 -10555.201 0 336.40883 0.00020770236 0.00018371401 + 171050 -6244.2399 -6252.4076 8.1676841 3665.7548 632.40586 -10550.568 0 391.44125 0.0004412897 0.00041543974 + 171060 -6243.7987 -6253.1428 9.3441046 3666.2609 631.64341 -10551.047 0 447.82192 0.00042725745 0.00039346237 + 171070 -6243.4141 -6253.6393 10.225151 3673.2773 629.62826 -10556.545 0 490.04662 0.00014047612 9.7463149e-05 + 171080 -6243.2052 -6253.6795 10.474207 3685.2514 626.78615 -10565.717 0 501.98278 -0.00036568392 -0.00041122612 + 171090 -6243.2249 -6253.1983 9.9733859 3699.1478 623.90429 -10576.25 0 477.98061 -0.00096138281 -0.00099889412 + 171100 -6243.4024 -6252.3664 8.9639638 3711.2056 621.90916 -10585.481 0 429.60344 -0.0014703015 -0.0014946687 + 171110 -6243.5929 -6251.5078 7.9148677 3718.083 621.58728 -10591.178 0 379.32487 -0.001725037 -0.0017424204 + 171120 -6243.6967 -6250.8909 7.1942149 3717.9784 623.34146 -10592.211 0 344.78715 -0.0016279832 -0.0016513875 + 171130 -6243.7339 -6250.5684 6.834451 3711.229 627.04486 -10588.842 0 327.54524 -0.0011893553 -0.0012270996 + 171140 -6243.8092 -6250.409 6.5998489 3700.1213 632.02601 -10582.556 0 316.30179 -0.00052396187 -0.0005716529 + 171150 -6244.0036 -6250.2832 6.2796526 3688.042 637.20165 -10575.527 0 300.95619 0.00019036241 0.00014654792 + 171160 -6244.2951 -6250.2183 5.9231368 3678.3906 641.34416 -10569.953 0 283.86995 0.00077089419 0.00074235862 + 171170 -6244.5799 -6250.3791 5.7991254 3673.6867 643.41555 -10567.481 0 277.92663 0.0010787729 0.0010648507 + 171180 -6244.7679 -6250.9015 6.1336503 3675.0734 642.86033 -10568.835 0 293.95894 0.0010452076 0.001034143 + 171190 -6244.8657 -6251.741 6.8753023 3682.1729 639.7619 -10573.676 0 329.50307 0.00067856424 0.00065777687 + 171200 -6244.9792 -6252.671 7.6917593 3693.1874 634.81956 -10580.678 0 368.63227 6.0869631e-05 2.7411227e-05 + 171210 -6245.2323 -6253.4302 8.1978974 3705.2296 629.15834 -10587.818 0 392.88924 -0.00066481403 -0.00070250455 + 171220 -6245.6665 -6253.889 8.2224288 3714.9522 624.02907 -10592.87 0 394.06492 -0.0013223191 -0.0013526454 + 171230 -6246.2123 -6254.0916 7.8792708 3719.4524 620.48695 -10594.031 0 377.61887 -0.0017484448 -0.0017671154 + 171240 -6246.7582 -6254.1471 7.3888376 3717.2121 619.13952 -10590.499 0 354.11455 -0.0018452904 -0.0018582015 + 171250 -6247.2433 -6254.0919 6.848547 3708.6688 620.02353 -10582.784 0 328.2208 -0.0016144138 -0.001630914 + 171260 -6247.6774 -6253.8727 6.1953115 3696.0996 622.62912 -10572.601 0 296.91409 -0.0011532423 -0.0011773882 + 171270 -6248.0873 -6253.4571 5.3697559 3682.8451 626.06199 -10562.364 0 257.34883 -0.00061553655 -0.00064384964 + 171280 -6248.4677 -6252.9354 4.4677292 3672.2454 629.30793 -10554.489 0 214.11865 -0.00015755695 -0.00018383483 + 171290 -6248.787 -6252.5016 3.7146001 3666.7365 631.52584 -10550.764 0 178.02448 0.00010623917 8.5268031e-05 + 171300 -6249.0241 -6252.3393 3.3152326 3667.3541 632.27506 -10551.969 0 158.88455 0.00012682704 0.00011005288 + 171310 -6249.1855 -6252.5212 3.3357424 3673.6498 631.60559 -10557.777 0 159.86749 -7.5457047e-05 -9.1177393e-05 + 171320 -6249.2946 -6252.9904 3.6958355 3683.9213 629.99346 -10566.905 0 177.12517 -0.0004225206 -0.00043962115 + 171330 -6249.3734 -6253.6088 4.2353739 3695.6741 628.15542 -10577.438 0 202.98288 -0.00080267583 -0.00082191247 + 171340 -6249.4353 -6254.2182 4.7828514 3706.2349 626.80967 -10587.263 0 229.22108 -0.0011030342 -0.0011238695 + 171350 -6249.4885 -6254.685 5.1965259 3713.3848 626.45652 -10594.526 0 249.04668 -0.0012415324 -0.0012626416 + 171360 -6249.5377 -6254.9319 5.3941864 3715.8493 627.24022 -10598.021 0 258.51968 -0.0011880445 -0.0012077751 + 171370 -6249.5802 -6254.957 5.3767983 3713.5178 628.92779 -10597.403 0 257.68634 -0.00096814803 -0.00098539242 + 171380 -6249.6039 -6254.8241 5.220168 3707.3643 631.0062 -10593.195 0 250.17974 -0.0006505995 -0.00066570374 + 171390 -6249.5965 -6254.6202 5.0236603 3699.1224 632.86072 -10586.603 0 240.76199 -0.00032485092 -0.00033953938 + 171400 -6249.5567 -6254.4072 4.8505473 3690.8141 633.96826 -10579.19 0 232.46544 -7.6053685e-05 -9.2179407e-05 + 171410 -6249.4955 -6254.2005 4.7050017 3684.2502 634.03799 -10572.489 0 225.49008 3.6090391e-05 1.7929173e-05 + 171420 -6249.4286 -6253.9839 4.5553071 3680.6287 633.05946 -10567.672 0 218.31588 -1.016836e-05 -2.9338164e-05 + 171430 -6249.3649 -6253.741 4.3760875 3680.3237 631.25918 -10565.324 0 209.72667 -0.00019735735 -0.00021569943 + 171440 -6249.3029 -6253.4796 4.1767015 3682.8976 629.00116 -10565.378 0 200.17097 -0.00047800718 -0.00049412289 + 171450 -6249.2331 -6253.2367 4.003552 3687.3029 626.67931 -10567.219 0 191.87268 -0.00079008078 -0.00080386111 + 171460 -6249.1435 -6253.0674 3.9239072 3692.1976 624.63833 -10569.903 0 188.05565 -0.0010726608 -0.0010854503 + 171470 -6249.0249 -6253.0249 3.9999732 3696.2886 623.13557 -10572.449 0 191.70116 -0.0012774298 -0.0012915419 + 171480 -6248.8766 -6253.1347 4.2581508 3698.6241 622.33536 -10574.094 0 204.07448 -0.0013745908 -0.0013922403 + 171490 -6248.7095 -6253.3757 4.6661876 3698.7695 622.31819 -10574.463 0 223.62989 -0.0013541196 -0.0013761238 + 171500 -6248.544 -6253.6792 5.1351587 3696.841 623.0898 -10573.61 0 246.10562 -0.0012239509 -0.0012489895 + 171510 -6248.4 -6253.9487 5.5486819 3693.4179 624.58309 -10571.95 0 265.92397 -0.001006627 -0.0010316912 + 171520 -6248.2864 -6254.0917 5.8053287 3689.3861 626.65257 -10570.13 0 278.22392 -0.00073554277 -0.00075745371 + 171530 -6248.1947 -6254.0515 5.8568619 3685.7571 629.06624 -10568.875 0 280.69369 -0.00045134983 -0.00046858116 + 171540 -6248.1033 -6253.8285 5.7252207 3683.4849 631.50647 -10568.82 0 274.3847 -0.00019850421 -0.00021226399 + 171550 -6247.9914 -6253.4769 5.4855482 3683.2935 633.59674 -10570.367 0 262.89825 -2.1089214e-05 -3.4741176e-05 + 171560 -6247.8543 -6253.0802 5.2258496 3685.5199 634.9657 -10573.566 0 250.45203 4.3874903e-05 2.703126e-05 + 171570 -6247.7076 -6252.7252 5.0176197 3689.9858 635.34097 -10578.052 0 240.47249 -2.3351244e-05 -4.4265265e-05 + 171580 -6247.5716 -6252.4894 4.9178216 3695.9331 634.64407 -10583.067 0 235.6896 -0.00021401803 -0.00023694085 + 171590 -6247.451 -6252.4337 4.9826945 3702.0878 633.04698 -10587.568 0 238.79868 -0.00048506276 -0.00050684639 + 171600 -6247.3271 -6252.5852 5.2581006 3706.9024 630.95719 -10590.445 0 251.99768 -0.00076508963 -0.00078414536 + 171610 -6247.1731 -6252.911 5.737861 3708.9588 628.92091 -10590.791 0 274.9905 -0.00097356844 -0.00099093576 + 171620 -6246.9797 -6253.3052 6.3254835 3707.4157 627.46513 -10588.186 0 303.15266 -0.0010472961 -0.001065177 + 171630 -6246.767 -6253.6194 6.8523641 3702.3321 626.92627 -10582.878 0 328.40374 -0.00096319563 -0.00098250845 + 171640 -6246.5682 -6253.7311 7.1628715 3694.7255 627.32691 -10575.784 0 343.28499 -0.0007477932 -0.00076736552 + 171650 -6246.402 -6253.6034 7.201383 3686.339 628.3552 -10568.298 0 345.13068 -0.00047042484 -0.00048856995 + 171660 -6246.2625 -6253.2838 7.0213427 3679.1944 629.46785 -10561.946 0 336.50214 -0.00022371635 -0.00024017009 + 171670 -6246.134 -6252.852 6.7179645 3675.0576 630.08541 -10557.995 0 321.96255 -9.695857e-05 -0.00011299387 + 171680 -6246.0085 -6252.3734 6.364898 3674.9459 629.80675 -10557.126 0 305.04162 -0.00014801839 -0.00016505015 + 171690 -6245.8844 -6251.8962 6.011797 3678.8091 628.56357 -10559.269 0 288.11904 -0.00038119554 -0.00039987455 + 171700 -6245.7565 -6251.4735 5.7170151 3685.5044 626.66214 -10563.64 0 273.99144 -0.00074004078 -0.00076076361 + 171710 -6245.6133 -6251.1667 5.5533655 3693.104 624.70199 -10568.973 0 266.14844 -0.0011207733 -0.0011444197 + 171720 -6245.4496 -6251.0167 5.5670729 3699.4538 623.39891 -10573.869 0 266.80537 -0.0014033674 -0.0014306032 + 171730 -6245.2769 -6251.0159 5.7389933 3702.7959 623.36314 -10577.175 0 275.04476 -0.0014889983 -0.0015184091 + 171740 -6245.1126 -6251.1261 6.0134357 3702.2564 624.89235 -10578.275 0 288.19758 -0.0013302156 -0.0013578351 + 171750 -6244.9519 -6251.3359 6.3839966 3698.0791 627.8411 -10577.256 0 305.95694 -0.00094530749 -0.00096748712 + 171760 -6244.7534 -6251.6868 6.9334389 3691.5887 631.6184 -10574.894 0 332.2893 -0.00041595666 -0.00043360404 + 171770 -6244.4683 -6252.2202 7.7518925 3684.8963 635.33048 -10572.447 0 371.51418 0.00012945524 0.00010985714 + 171780 -6244.0931 -6252.8867 8.7936145 3680.3544 638.03549 -10571.277 0 421.43935 0.00054581595 0.00051646648 + 171790 -6243.7005 -6253.5092 9.8086065 3679.8298 639.03611 -10572.375 0 470.08346 0.00071217422 0.00067052651 + 171800 -6243.4135 -6253.8425 10.429029 3683.991 638.11498 -10575.949 0 499.81759 0.00057407755 0.00052632148 + 171810 -6243.328 -6253.7054 10.377442 3691.9062 635.6193 -10581.231 0 497.34523 0.00017033217 0.00012817031 + 171820 -6243.4398 -6253.0984 9.6585308 3701.2018 632.34416 -10586.644 0 462.89099 -0.00037290232 -0.00040076469 + 171830 -6243.6473 -6252.2137 8.5663933 3708.8321 629.25092 -10590.297 0 410.54963 -0.0008856215 -0.00090054265 + 171840 -6243.8379 -6251.3134 7.4754971 3712.1932 627.13604 -10590.643 0 358.26776 -0.0012189443 -0.0012311751 + 171850 -6243.9785 -6250.5772 6.5987003 3710.0814 626.38143 -10587.04 0 316.24674 -0.001299839 -0.0013195959 + 171860 -6244.1224 -6250.0561 5.9336574 3703.0488 626.87075 -10579.976 0 284.37415 -0.0011488121 -0.0011778433 + 171870 -6244.3371 -6249.7472 5.4101175 3693.0581 628.08691 -10570.892 0 259.28318 -0.00085706525 -0.00088837568 + 171880 -6244.6352 -6249.679 5.0438725 3682.714 629.34128 -10561.734 0 241.73067 -0.00054222619 -0.0005672454 + 171890 -6244.9735 -6249.9087 4.9352491 3674.4679 630.03831 -10554.415 0 236.52483 -0.00030689566 -0.00032265707 + 171900 -6245.3033 -6250.4509 5.1476351 3670.0526 629.87186 -10550.375 0 246.70356 -0.00021334779 -0.00022377509 + 171910 -6245.6143 -6251.2291 5.6148495 3670.1964 628.89009 -10550.316 0 269.09509 -0.0002750713 -0.00028688358 + 171920 -6245.9376 -6252.0975 6.1599083 3674.5708 627.43096 -10554.099 0 295.21737 -0.00046100054 -0.00047868616 + 171930 -6246.3179 -6252.9058 6.5878927 3681.9401 625.97906 -10560.825 0 315.72878 -0.00070880237 -0.0007321897 + 171940 -6246.7802 -6253.5561 6.7758664 3690.4867 625.00683 -10569.05 0 324.73754 -0.00094366293 -0.00096885118 + 171950 -6247.3103 -6254.0246 6.7143369 3698.2584 624.84656 -10577.13 0 321.7887 -0.0010980535 -0.001120563 + 171960 -6247.8595 -6254.346 6.4865063 3703.6423 625.61675 -10583.605 0 310.86978 -0.0011282436 -0.0011462377 + 171970 -6248.3711 -6254.5681 6.1970048 3705.7441 627.20899 -10587.521 0 296.99524 -0.0010245826 -0.0010399177 + 171980 -6248.8098 -6254.7072 5.8974426 3704.5622 629.32754 -10588.597 0 282.63854 -0.00081335086 -0.0008297578 + 171990 -6249.1721 -6254.7371 5.5649237 3700.9 631.5637 -10587.201 0 266.70237 -0.00054908706 -0.00056909104 + 172000 -6249.4749 -6254.6219 5.1470574 3696.0579 633.4854 -10584.165 0 246.67587 -0.00029889261 -0.00032199285 + 172010 -6249.7327 -6254.3653 4.6326041 3691.422 634.7247 -10580.512 0 222.02038 -0.00012345944 -0.00014689442 + 172020 -6249.9455 -6254.0328 4.087326 3688.0957 635.04821 -10577.177 0 195.88759 -6.1495863e-05 -8.2713405e-05 + 172030 -6250.1031 -6253.7263 3.6232059 3686.6757 634.39713 -10574.799 0 173.64436 -0.00012287141 -0.0001414172 + 172040 -6250.201 -6253.5283 3.3273284 3687.1969 632.88859 -10573.614 0 159.46425 -0.00029112142 -0.00030835135 + 172050 -6250.2486 -6253.4641 3.2155609 3689.2059 630.77891 -10573.449 0 154.10772 -0.00053131177 -0.00054860281 + 172060 -6250.2616 -6253.512 3.2504323 3691.9095 628.40042 -10573.822 0 155.77896 -0.00079867317 -0.00081627697 + 172070 -6250.2473 -6253.64 3.3927749 3694.3753 626.09238 -10574.108 0 162.60081 -0.0010465188 -0.0010641333 + 172080 -6250.2003 -6253.8248 3.6244834 3695.7629 624.14694 -10573.735 0 173.70558 -0.001234155 -0.0012520362 + 172090 -6250.1142 -6254.0389 3.9247223 3695.5368 622.78058 -10572.356 0 188.09472 -0.0013341546 -0.0013530413 + 172100 -6249.9937 -6254.2366 4.2428959 3693.5936 622.12751 -10569.958 0 203.34338 -0.0013362772 -0.0013561203 + 172110 -6249.8518 -6254.3653 4.5134332 3690.2676 622.24236 -10566.875 0 216.30904 -0.0012462818 -0.0012654783 + 172120 -6249.695 -6254.4002 4.7051708 3686.2401 623.10026 -10563.741 0 225.49819 -0.0010814468 -0.0010979413 + 172130 -6249.5107 -6254.3633 4.8526924 3682.4051 624.59077 -10561.359 0 232.56825 -0.00086701757 -0.00088057565 + 172140 -6249.2756 -6254.3005 5.0249674 3679.7291 626.51347 -10560.543 0 240.82463 -0.00063604327 -0.00064928755 + 172150 -6248.9822 -6254.2303 5.2481358 3679.0946 628.58933 -10561.914 0 251.52012 -0.00042991335 -0.0004463873 + 172160 -6248.6565 -6254.117 5.4604407 3681.0941 630.4995 -10565.711 0 261.69496 -0.00029322424 -0.00031378213 + 172170 -6248.3432 -6253.9049 5.5616905 3685.787 631.95225 -10571.644 0 266.54742 -0.00025971707 -0.0002809709 + 172180 -6248.066 -6253.5863 5.5203017 3692.5219 632.76386 -10578.872 0 264.56383 -0.0003351094 -0.0003522285 + 172190 -6247.8033 -6253.2269 5.4236393 3699.9702 632.92351 -10586.121 0 259.93123 -0.00048896709 -0.00050060248 + 172200 -6247.5092 -6252.9146 5.4053618 3706.432 632.60761 -10591.954 0 259.05527 -0.00066342435 -0.0006737702 + 172210 -6247.1629 -6252.6796 5.5167025 3710.317 632.12308 -10595.12 0 264.39134 -0.00079467468 -0.00081014913 + 172220 -6246.7961 -6252.4758 5.6796454 3710.5957 631.78904 -10594.861 0 272.20047 -0.00083509693 -0.00085862375 + 172230 -6246.4673 -6252.2473 5.7800035 3707.0553 631.7997 -10591.102 0 277.0102 -0.000766434 -0.00079501312 + 172240 -6246.2085 -6252.0101 5.8016248 3700.3295 632.1296 -10584.469 0 278.04641 -0.00060308373 -0.00063097533 + 172250 -6246.0017 -6251.8495 5.8478781 3691.7581 632.53123 -10576.139 0 280.26313 -0.00038938391 -0.00041326504 + 172260 -6245.8082 -6251.8319 6.0236467 3683.1271 632.63022 -10567.589 0 288.68695 -0.00019189479 -0.00021266308 + 172270 -6245.6118 -6251.9249 6.3130655 3676.2889 632.07378 -10560.288 0 302.55752 -8.3757684e-05 -0.00010400714 + 172280 -6245.4279 -6252.0152 6.587372 3672.6997 630.66786 -10555.383 0 315.70383 -0.00012131747 -0.0001422363 + 172290 -6245.2766 -6252.0029 6.7263596 3673.0032 628.4563 -10553.462 0 322.36489 -0.00032142583 -0.00034256719 + 172300 -6245.1572 -6251.8786 6.7214159 3676.836 625.72822 -10554.443 0 322.12796 -0.00065137502 -0.00067268597 + 172310 -6245.0538 -6251.7187 6.664984 3682.9485 622.96525 -10557.633 0 319.42343 -0.0010369533 -0.0010598381 + 172320 -6244.9606 -6251.6191 6.6585483 3689.5848 620.74654 -10561.95 0 319.115 -0.00138351 -0.0014092838 + 172330 -6244.8927 -6251.638 6.7452287 3694.9672 619.62589 -10566.231 0 323.26921 -0.0016000986 -0.0016277441 + 172340 -6244.8676 -6251.7905 6.9228215 3697.7459 619.9971 -10569.533 0 331.78045 -0.0016203778 -0.0016467159 + 172350 -6244.8815 -6252.0678 7.1862887 3697.3362 621.97498 -10571.379 0 344.40728 -0.0014194306 -0.0014419991 + 172360 -6244.9122 -6252.4329 7.520628 3694.0996 625.32677 -10571.859 0 360.43069 -0.0010256039 -0.0010450436 + 172370 -6244.947 -6252.8009 7.8539399 3689.2941 629.48323 -10571.578 0 376.40487 -0.00052152243 -0.00054074243 + 172380 -6244.9977 -6253.0535 8.0557548 3684.7326 633.64247 -10571.429 0 386.07697 -2.7197369e-05 -4.8489807e-05 + 172390 -6245.0868 -6253.0976 8.0107476 3682.2126 636.95781 -10572.268 0 383.91997 0.00033382793 0.00031050107 + 172400 -6245.2221 -6252.9191 7.6969755 3682.9122 638.7674 -10574.599 0 368.88225 0.0004731269 0.00044942983 + 172410 -6245.3887 -6252.5854 7.1966947 3686.9837 638.78831 -10578.357 0 344.90599 0.00036477751 0.00034223573 + 172420 -6245.5589 -6252.2061 6.6471897 3693.4791 637.19516 -10582.88 0 318.57063 5.1343725e-05 3.0090863e-05 + 172430 -6245.7071 -6251.8861 6.1790662 3700.6248 634.54763 -10587.059 0 296.13552 -0.00037211601 -0.00039355348 + 172440 -6245.8215 -6251.6886 5.8670629 3706.3511 631.59782 -10589.637 0 281.18257 -0.00078903553 -0.00081282232 + 172450 -6245.911 -6251.6146 5.7036215 3708.9062 629.05356 -10589.574 0 273.34955 -0.0010962221 -0.0011233862 + 172460 -6245.9987 -6251.6161 5.6173526 3707.3485 627.38 -10586.345 0 269.21506 -0.0012311589 -0.0012601474 + 172470 -6246.103 -6251.6429 5.5398875 3701.7733 626.69745 -10580.114 0 265.50249 -0.0011843538 -0.0012116884 + 172480 -6246.2192 -6251.6866 5.4674147 3693.257 626.79644 -10571.74 0 262.02919 -0.00099604617 -0.0010189139 + 172490 -6246.324 -6251.7805 5.456541 3683.5911 627.25201 -10562.624 0 261.50806 -0.00074114014 -0.00075949287 + 172500 -6246.396 -6251.9661 5.570104 3674.8739 627.58926 -10554.429 0 266.95064 -0.00050691504 -0.00052327574 + 172510 -6246.4305 -6252.2671 5.8365494 3669.022 627.44383 -10548.733 0 279.72019 -0.00036838791 -0.00038609955 + 172520 -6246.4409 -6252.6811 6.2402323 3667.3061 626.67395 -10546.661 0 299.06694 -0.00036790748 -0.00038934907 + 172530 -6246.4551 -6253.1706 6.7154815 3670.0456 625.4015 -10548.618 0 321.84355 -0.00050508628 -0.00053034137 + 172540 -6246.5097 -6253.6573 7.1476086 3676.5383 623.97523 -10554.171 0 342.55351 -0.00073885147 -0.00076517982 + 172550 -6246.6313 -6254.0437 7.4123711 3685.2324 622.86619 -10562.142 0 355.24241 -0.00099933297 -0.0010225169 + 172560 -6246.8172 -6254.2547 7.4375247 3694.11 622.5259 -10570.891 0 356.44791 -0.0012067745 -0.0012243111 + 172570 -6247.0371 -6254.2562 7.2191345 3701.2204 623.25041 -10578.727 0 345.98143 -0.001294723 -0.0013081653 + 172580 -6247.2627 -6254.0383 6.7756233 3705.2132 625.08629 -10584.338 0 324.72589 -0.0012315318 -0.0012451435 + 172590 -6247.4914 -6253.6062 6.1147751 3705.6683 627.7998 -10587.074 0 293.05433 -0.0010307105 -0.0010474352 + 172600 -6247.7355 -6253.009 5.2734525 3703.0871 630.92106 -10587.017 0 252.73344 -0.00074387683 -0.00076280373 + 172610 -6247.9942 -6252.3725 4.3783226 3698.5974 633.86271 -10584.833 0 209.83378 -0.00044008073 -0.0004578671 + 172620 -6248.2449 -6251.8779 3.6330028 3693.5517 636.08177 -10581.511 0 174.11388 -0.00018320038 -0.00019759516 + 172630 -6248.4629 -6251.6825 3.2196196 3689.1853 637.22126 -10578.089 0 154.30224 -1.7773797e-05 -2.9610034e-05 + 172640 -6248.6445 -6251.8396 3.1950892 3686.3983 637.17285 -10575.411 0 153.1266 3.4377168e-05 2.2318773e-05 + 172650 -6248.812 -6252.2783 3.466283 3685.6422 636.04635 -10573.967 0 166.12373 -2.886038e-05 -4.3109696e-05 + 172660 -6248.997 -6252.8568 3.859748 3686.8786 634.08267 -10573.818 0 184.98078 -0.00019392601 -0.00020989112 + 172670 -6249.2172 -6253.444 4.226767 3689.606 631.56779 -10574.618 0 202.57039 -0.00043462046 -0.00045019393 + 172680 -6249.467 -6253.9705 4.5034295 3692.9748 628.78747 -10575.733 0 215.82961 -0.00071514249 -0.00072868425 + 172690 -6249.7273 -6254.4222 4.6948681 3695.9861 626.02412 -10576.432 0 225.00442 -0.00099427276 -0.0010058749 + 172700 -6249.9822 -6254.8027 4.8204914 3697.7301 623.5672 -10576.1 0 231.025 -0.0012304917 -0.0012415179 + 172710 -6250.2265 -6255.1033 4.8768321 3697.599 621.70599 -10574.408 0 233.72516 -0.0013873673 -0.0013991371 + 172720 -6250.4612 -6255.3023 4.8411055 3695.43 620.69167 -10571.424 0 232.01294 -0.0014391279 -0.0014521244 + 172730 -6250.6841 -6255.3801 4.695942 3691.5536 620.67792 -10567.612 0 225.05589 -0.0013764462 -0.0013905184 + 172740 -6250.8879 -6255.3312 4.4432676 3686.7457 621.6641 -10563.741 0 212.94632 -0.0012112959 -0.0012261865 + 172750 -6251.0648 -6255.1635 4.0986604 3682.084 623.46801 -10560.715 0 196.4308 -0.00097811907 -0.00099352188 + 172760 -6251.2118 -6254.8973 3.6854567 3678.7217 625.74603 -10559.365 0 176.62776 -0.00072845098 -0.0007437148 + 172770 -6251.3285 -6254.5714 3.2429682 3677.6159 628.06235 -10560.25 0 155.42123 -0.00051886924 -0.0005330889 + 172780 -6251.4125 -6254.2472 2.8347728 3679.2789 629.99209 -10563.518 0 135.85822 -0.00039598791 -0.00040865348 + 172790 -6251.4598 -6253.9965 2.5367292 3683.6245 631.22869 -10568.85 0 121.5743 -0.00038381939 -0.00039533204 + 172800 -6251.4681 -6253.8771 2.4089645 3689.9501 631.66147 -10575.489 0 115.45109 -0.00047723376 -0.00048867214 + 172810 -6251.4387 -6253.913 2.4742852 3697.0611 631.39726 -10582.371 0 118.58163 -0.00064273789 -0.00065506462 + 172820 -6251.3723 -6254.0892 2.7169441 3703.5124 630.71838 -10588.32 0 130.21121 -0.00082630206 -0.00083971198 + 172830 -6251.2638 -6254.3612 3.0974612 3707.9204 629.98963 -10592.271 0 148.44772 -0.00096705042 -0.00098098271 + 172840 -6251.0983 -6254.6675 3.5691793 3709.2807 629.54204 -10593.49 0 171.0551 -0.0010142731 -0.0010280338 + 172850 -6250.8552 -6254.9386 4.0834074 3707.2187 629.56695 -10591.724 0 195.69979 -0.00094358564 -0.00095699169 + 172860 -6250.5186 -6255.1013 4.5826679 3702.112 630.04933 -10587.263 0 219.62716 -0.00076717586 -0.00078060539 + 172870 -6250.0905 -6255.0889 4.9984284 3695.0434 630.7582 -10580.89 0 239.55274 -0.00053384412 -0.00054772392 + 172880 -6249.5941 -6254.8634 5.2692847 3687.5697 631.30183 -10573.735 0 252.53369 -0.00031726305 -0.00033168064 + 172890 -6249.0667 -6254.4376 5.370882 3681.3452 631.24427 -10567.027 0 257.4028 -0.00019485147 -0.00020974215 + 172900 -6248.5468 -6253.8754 5.3286645 3677.6862 630.26195 -10561.824 0 255.3795 -0.00022317279 -0.0002386405 + 172910 -6248.0661 -6253.2658 5.1997391 3677.201 628.29427 -10558.761 0 249.20068 -0.00041725352 -0.00043333009 + 172920 -6247.6458 -6252.6928 5.0469167 3679.609 625.62529 -10557.927 0 241.87657 -0.00074046675 -0.00075657817 + 172930 -6247.2901 -6252.2251 4.9350324 3683.8249 622.84681 -10558.897 0 236.51444 -0.0011096603 -0.0011249316 + 172940 -6246.9814 -6251.9193 4.9378439 3688.3164 620.6989 -10560.935 0 236.64919 -0.0014171548 -0.0014317371 + 172950 -6246.6925 -6251.8062 5.1136985 3691.6341 619.83971 -10563.28 0 245.07713 -0.0015654262 -0.0015811049 + 172960 -6246.4114 -6251.8649 5.4535364 3692.9191 620.6276 -10565.412 0 261.36406 -0.001502227 -0.0015207739 + 172970 -6246.1528 -6252.0239 5.8711345 3692.1698 622.9924 -10567.186 0 281.37771 -0.0012398731 -0.0012606283 + 172980 -6245.9372 -6252.2106 6.2734131 3690.1597 626.44368 -10568.814 0 300.65715 -0.00084902013 -0.00086897755 + 172990 -6245.7613 -6252.3966 6.6353245 3688.0837 630.22166 -10570.702 0 318.00198 -0.00043151968 -0.00044841518 + 173000 -6245.6002 -6252.5776 6.9774247 3687.1158 633.54325 -10573.237 0 334.39734 -8.6960935e-05 -0.00010175118 + 173010 -6245.4407 -6252.7093 7.2685383 3688.0289 635.8463 -10576.585 0 348.34914 0.00011433208 9.8809043e-05 + 173020 -6245.3015 -6252.6899 7.3884068 3690.9469 636.92982 -10580.567 0 354.09391 0.00014711419 0.00012972089 + 173030 -6245.2105 -6252.4354 7.2248829 3695.2752 636.94033 -10584.651 0 346.25693 3.5027014e-05 1.7573441e-05 + 173040 -6245.1645 -6251.9765 6.8119302 3699.8618 636.23447 -10588.073 0 326.46592 -0.00015958951 -0.0001752167 + 173050 -6245.1241 -6251.4701 6.3459861 3703.3833 635.20039 -10590.054 0 304.13526 -0.00036011324 -0.00037539187 + 173060 -6245.054 -6251.099 6.0450116 3704.8173 634.11834 -10590.035 0 289.71088 -0.00050613718 -0.00052520252 + 173070 -6244.963 -6250.9564 5.99339 3703.7776 633.09855 -10587.833 0 287.23688 -0.00057474572 -0.00059965908 + 173080 -6244.8958 -6251.0269 6.1311381 3700.5581 632.09389 -10583.679 0 293.83854 -0.00058119485 -0.00060849689 + 173090 -6244.8821 -6251.2622 6.3800841 3695.9172 630.96717 -10578.147 0 305.76943 -0.00056134181 -0.00058434067 + 173100 -6244.9004 -6251.6499 6.7495085 3690.78 629.58719 -10572.017 0 323.47432 -0.00054980623 -0.00056487317 + 173110 -6244.8972 -6252.1931 7.2959448 3686.0221 627.92143 -10566.137 0 349.66261 -0.00056732981 -0.00057787745 + 173120 -6244.847 -6252.8273 7.9802754 3682.3688 626.0905 -10561.287 0 382.45957 -0.00061994899 -0.0006337694 + 173130 -6244.7937 -6253.3803 8.5865352 3680.3309 624.35984 -10558.071 0 411.51495 -0.00070277345 -0.00072495856 + 173140 -6244.8239 -6253.6424 8.8185553 3680.1104 623.06667 -10556.819 0 422.63465 -0.00080130593 -0.00082955021 + 173150 -6244.9907 -6253.5034 8.5126753 3681.5169 622.50899 -10557.529 0 407.97516 -0.00089123934 -0.00091822553 + 173160 -6245.2626 -6253.0321 7.7695095 3684.0055 622.84458 -10559.882 0 372.35849 -0.00094322371 -0.00096370612 + 173170 -6245.5515 -6252.4259 6.8744722 3686.8826 624.04376 -10563.352 0 329.46328 -0.00093487682 -0.00095033793 + 173180 -6245.7885 -6251.8772 6.0886498 3689.5818 625.90715 -10567.366 0 291.80226 -0.00086301889 -0.00087960784 + 173190 -6245.97 -6251.4767 5.5066151 3691.8333 628.12792 -10571.438 0 263.90789 -0.00074617943 -0.00076857021 + 173200 -6246.139 -6251.2215 5.0824468 3693.6334 630.37011 -10575.225 0 243.57937 -0.00061452867 -0.00064177918 + 173210 -6246.3336 -6251.0912 4.7576331 3695.079 632.34288 -10578.513 0 228.01247 -0.00049417412 -0.00052099785 + 173220 -6246.552 -6251.1072 4.55525 3696.2148 633.85522 -10581.177 0 218.31314 -0.00039660286 -0.00041829328 + 173230 -6246.7608 -6251.3241 4.5632585 3697.0065 634.83494 -10583.166 0 218.69695 -0.00031957195 -0.00033594263 + 173240 -6246.9308 -6251.7701 4.8393491 3697.4289 635.30313 -10584.502 0 231.92876 -0.00025703848 -0.00027215005 + 173250 -6247.0667 -6252.4012 5.3344497 3697.5604 635.31586 -10585.277 0 255.65676 -0.00020967883 -0.00022809104 + 173260 -6247.2075 -6253.1089 5.9013719 3697.5811 634.90673 -10585.597 0 282.82685 -0.00018848147 -0.00021153929 + 173270 -6247.4004 -6253.7703 6.369893 3697.6638 634.0688 -10585.503 0 305.28101 -0.00020982461 -0.00023483791 + 173280 -6247.6718 -6254.2936 6.62176 3697.8345 632.79002 -10584.918 0 317.35189 -0.00028576063 -0.00030821546 + 173290 -6248.0134 -6254.6335 6.6200902 3697.9069 631.11806 -10583.658 0 317.27187 -0.00041503117 -0.00043187284 + 173300 -6248.3902 -6254.78 6.3898538 3697.5413 629.20686 -10581.528 0 306.23765 -0.00057960782 -0.00059122658 + 173310 -6248.7625 -6254.737 5.9745307 3696.4102 627.30814 -10578.455 0 286.33304 -0.00074901005 -0.00075860328 + 173320 -6249.1055 -6254.5131 5.4076274 3694.3777 625.7065 -10574.597 0 259.16385 -0.00089041531 -0.00090137281 + 173330 -6249.4123 -6254.1359 4.7235866 3691.6002 624.63178 -10570.368 0 226.38078 -0.00097920427 -0.00099270911 + 173340 -6249.6834 -6253.6751 3.9917355 3688.5055 624.19321 -10566.374 0 191.30636 -0.0010051228 -0.0010198252 + 173350 -6249.9163 -6253.2477 3.3314686 3685.6821 624.36151 -10563.291 0 159.66267 -0.00097286995 -0.00098662245 + 173360 -6250.1045 -6252.9874 2.8828811 3683.7388 624.99574 -10561.722 0 138.16384 -0.00089900986 -0.00091099725 + 173370 -6250.245 -6252.989 2.7439968 3683.1774 625.89471 -10562.061 0 131.50773 -0.00080744282 -0.00081885706 + 173380 -6250.3458 -6253.261 2.9152484 3684.2871 626.85338 -10564.402 0 139.71506 -0.00072404078 -0.00073679505 + 173390 -6250.4254 -6253.7206 3.2951974 3687.0523 627.7111 -10568.484 0 157.92435 -0.0006699801 -0.0006847827 + 173400 -6250.5016 -6254.2384 3.7367938 3691.092 628.38388 -10573.714 0 179.08813 -0.00065456096 -0.00067028941 + 173410 -6250.5784 -6254.7002 4.1217724 3695.6828 628.87622 -10579.259 0 197.53846 -0.00067072792 -0.00068566986 + 173420 -6250.6441 -6255.0407 4.3965435 3699.902 629.2695 -10584.212 0 210.70703 -0.0006968303 -0.00071042203 + 173430 -6250.682 -6255.2375 4.5555875 3702.8683 629.6866 -10587.792 0 218.32931 -0.00070507666 -0.00071843656 + 173440 -6250.6835 -6255.2891 4.6055854 3703.991 630.23778 -10589.518 0 220.7255 -0.00067326539 -0.00068819284 + 173450 -6250.6533 -6255.1991 4.5458253 3703.1368 630.96227 -10589.298 0 217.86145 -0.00059479539 -0.00061222179 + 173460 -6250.6027 -6254.978 4.3752829 3700.6577 631.78757 -10587.423 0 209.68811 -0.00048289777 -0.0005020224 + 173470 -6250.5381 -6254.6551 4.1170429 3697.2764 632.52695 -10584.458 0 197.3118 -0.0003673914 -0.00038620664 + 173480 -6250.4511 -6254.2879 3.8368559 3693.8714 632.92374 -10581.083 0 183.88366 -0.00028539346 -0.00030229626 + 173490 -6250.3191 -6253.9492 3.6301241 3691.2408 632.73211 -10577.922 0 173.97591 -0.0002698428 -0.00028499623 + 173500 -6250.1171 -6253.6955 3.5783521 3689.912 631.80701 -10575.415 0 171.49471 -0.00033958549 -0.00035473795 + 173510 -6249.8284 -6253.5398 3.7113394 3690.0291 630.17074 -10573.74 0 177.86821 -0.00049278893 -0.00050968994 + 173520 -6249.4478 -6253.4569 4.0090409 3691.3195 628.03416 -10572.81 0 192.13573 -0.00070427735 -0.00072321015 + 173530 -6248.9779 -6253.4139 4.4360269 3693.1473 625.767 -10572.328 0 212.5993 -0.00092799441 -0.00094777075 + 173540 -6248.4271 -6253.3967 4.9696459 3694.6704 623.82273 -10571.89 0 238.17332 -0.0011063501 -0.0011256376 + 173550 -6247.8136 -6253.4079 5.5943037 3695.1005 622.62926 -10571.138 0 268.11043 -0.0011864224 -0.0012050457 + 173560 -6247.1707 -6253.4437 6.2729836 3694.0032 622.46822 -10569.915 0 300.63657 -0.0011385978 -0.0011576371 + 173570 -6246.5438 -6253.4727 6.9289417 3691.5146 623.38432 -10568.372 0 332.07377 -0.00096935865 -0.00099015701 + 173580 -6245.9794 -6253.4325 7.4530976 3688.3589 625.16864 -10566.96 0 357.19426 -0.00072123126 -0.00074429143 + 173590 -6245.5139 -6253.2412 7.7273557 3685.6345 627.42876 -10566.305 0 370.33824 -0.00045943669 -0.00048385169 + 173600 -6245.1655 -6252.8238 7.6582883 3684.4405 629.71398 -10566.978 0 367.02815 -0.00025089348 -0.00027442937 + 173610 -6244.929 -6252.156 7.2269804 3685.4809 631.6416 -10569.279 0 346.35745 -0.00014315046 -0.00016319303 + 173620 -6244.7714 -6251.3104 6.5390522 3688.7998 632.9808 -10573.091 0 313.38807 -0.00014994445 -0.00016536778 + 173630 -6244.6395 -6250.4656 5.8261007 3693.7511 633.67971 -10577.896 0 279.21944 -0.00024810404 -0.00026102828 + 173640 -6244.4835 -6249.8482 5.3646909 3699.2075 633.84627 -10582.902 0 257.10609 -0.00038698836 -0.00040255366 + 173650 -6244.2851 -6249.6291 5.3440097 3703.9069 633.69929 -10587.235 0 256.11493 -0.00050675542 -0.00052998847 + 173660 -6244.0695 -6249.8377 5.7681653 3706.7901 633.49964 -10590.127 0 276.44285 -0.00055798267 -0.00058934856 + 173670 -6243.8878 -6250.3619 6.4740912 3707.2257 633.46467 -10591.052 0 310.27477 -0.0005151494 -0.00054857038 + 173680 -6243.7721 -6251.0404 7.2682135 3705.1018 633.67823 -10589.82 0 348.33357 -0.0003809271 -0.0004074246 + 173690 -6243.6987 -6251.7673 8.0686016 3700.8404 634.02918 -10586.637 0 386.69266 -0.00018439915 -0.00019990053 + 173700 -6243.6061 -6252.5068 8.9007221 3695.3802 634.22282 -10582.11 0 426.57255 2.2061303e-05 1.1533448e-05 + 173710 -6243.4706 -6253.2032 9.7326242 3690.0762 633.88746 -10577.167 0 466.44196 0.00016876924 0.00015078076 + 173720 -6243.3662 -6253.7008 10.334687 3686.3982 632.74569 -10572.845 0 495.2962 0.00018535696 0.00015188112 + 173730 -6243.4298 -6253.7928 10.363031 3685.4142 630.77228 -10569.979 0 496.6546 3.0373182e-05 -1.3905265e-05 + 173740 -6243.7419 -6253.3819 9.639977 3687.2783 628.25309 -10568.913 0 462.00179 -0.00027967046 -0.00032013163 + 173750 -6244.2366 -6252.6066 8.370056 3691.0711 625.70805 -10569.386 0 401.14005 -0.00066462381 -0.00068898198 + 173760 -6244.7407 -6251.7947 7.0539748 3695.1772 623.71788 -10570.69 0 338.06605 -0.0010096051 -0.0010186149 + 173770 -6245.1083 -6251.2577 6.1494883 3698.0265 622.74021 -10572.024 0 294.71798 -0.0012142627 -0.0012209995 + 173780 -6245.321 -6251.0967 5.7757598 3698.7669 622.98353 -10572.847 0 276.80682 -0.0012328545 -0.0012514921 + 173790 -6245.4757 -6251.1808 5.7051131 3697.5 624.3638 -10573.045 0 273.42103 -0.00108399 -0.0011183023 + 173800 -6245.6879 -6251.3038 5.6159453 3695.0274 626.54234 -10572.874 0 269.14761 -0.00083055511 -0.00087171482 + 173810 -6245.9982 -6251.3677 5.3694567 3692.3637 629.03255 -10572.764 0 257.33449 -0.00054696108 -0.00058146702 + 173820 -6246.3536 -6251.4427 5.0890534 3690.3376 631.34392 -10573.124 0 243.896 -0.00029311737 -0.00031338811 + 173830 -6246.6631 -6251.6779 5.0148268 3689.4487 633.11178 -10574.238 0 240.33864 -0.00010461483 -0.00011379443 + 173840 -6246.8718 -6252.1572 5.2853874 3689.924 634.16557 -10576.247 0 253.30542 3.8625642e-06 -4.4722865e-06 + 173850 -6246.9982 -6252.8202 5.8219562 3691.8064 634.51942 -10579.146 0 279.02081 3.0814893e-05 1.4068634e-05 + 173860 -6247.1153 -6253.4943 6.3789565 3694.9597 634.30598 -10582.76 0 305.71539 -1.726863e-05 -4.4424573e-05 + 173870 -6247.2978 -6253.9995 6.7017634 3699.0004 633.6949 -10586.695 0 321.1861 -0.00012696369 -0.00015879427 + 173880 -6247.5702 -6254.2483 6.6780995 3703.2574 632.83481 -10590.341 0 320.052 -0.00027701486 -0.00030505374 + 173890 -6247.8918 -6254.2789 6.3871108 3706.8511 631.83707 -10592.967 0 306.10619 -0.00043901073 -0.00045866997 + 173900 -6248.1896 -6254.2052 6.0156343 3708.9114 630.79259 -10593.909 0 288.30295 -0.00058220979 -0.00059602077 + 173910 -6248.4157 -6254.1206 5.7049066 3708.8518 629.7947 -10592.767 0 273.41113 -0.00068173601 -0.00069664919 + 173920 -6248.5812 -6254.0349 5.4537459 3706.5587 628.94188 -10589.535 0 261.37411 -0.00072557668 -0.00074658325 + 173930 -6248.7379 -6253.8993 5.1614155 3702.3985 628.3153 -10584.613 0 247.36399 -0.00071570251 -0.0007413444 + 173940 -6248.9262 -6253.6921 4.7659253 3697.072 627.94864 -10578.713 0 228.40988 -0.00066321693 -0.00068698096 + 173950 -6249.1362 -6253.4785 4.3423249 3691.4346 627.81408 -10572.727 0 208.10857 -0.00058250619 -0.00059881904 + 173960 -6249.3163 -6253.3781 4.0618199 3686.3849 627.83404 -10567.597 0 194.6652 -0.00048972025 -0.00049909036 + 173970 -6249.4203 -6253.4639 4.043572 3682.8137 627.90896 -10564.187 0 193.79066 -0.00040574706 -0.00041439445 + 173980 -6249.4494 -6253.6842 4.23481 3681.5196 627.94408 -10563.148 0 202.95586 -0.00035788404 -0.00037221981 + 173990 -6249.4519 -6253.8881 4.4361621 3683.0189 627.86629 -10564.773 0 212.60578 -0.00037380688 -0.00039479828 + 174000 -6249.4808 -6253.9421 4.4613796 3687.2952 627.63733 -10568.875 0 213.81434 -0.00046782138 -0.00049036839 + 174010 -6249.5454 -6253.8395 4.2941308 3693.6443 627.27459 -10574.758 0 205.79884 -0.00062759948 -0.00064539881 + 174020 -6249.6034 -6253.7031 4.0997517 3700.7593 626.87915 -10581.342 0 196.48311 -0.00081162859 -0.00082289303 + 174030 -6249.5976 -6253.6781 4.0805329 3707.0642 626.65021 -10587.393 0 195.56203 -0.00096072078 -0.00096943525 + 174040 -6249.5017 -6253.8077 4.3060452 3711.158 626.85619 -10591.822 0 206.36985 -0.0010174524 -0.0010291901 + 174050 -6249.3316 -6254.0014 4.6698455 3712.1785 627.74868 -10593.929 0 223.8052 -0.00094385833 -0.00096035192 + 174060 -6249.1153 -6254.1216 5.0063105 3709.9764 629.43931 -10593.537 0 239.93049 -0.0007318082 -0.00074960974 + 174070 -6248.8516 -6254.105 5.2534437 3705.1152 631.79172 -10591.012 0 251.7745 -0.00040669566 -0.0004212341 + 174080 -6248.4984 -6254.0031 5.5046228 3698.7705 634.38887 -10587.162 0 263.81241 -2.6962711e-05 -3.7881008e-05 + 174090 -6248.0071 -6253.907 5.8999339 3692.5497 636.60981 -10583.067 0 282.75794 0.00032162331 0.00030939098 + 174100 -6247.3747 -6253.8376 6.4629831 3688.1784 637.80476 -10579.821 0 309.74242 0.00054189851 0.0005227368 + 174110 -6246.6695 -6253.7108 7.0412789 3687.0178 637.51494 -10578.244 0 337.45759 0.00055402175 0.00052771188 + 174120 -6245.9965 -6253.4125 7.4160563 3689.5284 635.65664 -10578.598 0 355.41903 0.00032978645 0.00030295236 + 174130 -6245.4212 -6252.9131 7.4919515 3694.951 632.58873 -10580.453 0 359.05636 -8.5142551e-05 -0.00010445984 + 174140 -6244.9235 -6252.3114 7.3879077 3701.4593 629.02509 -10582.796 0 354.06999 -0.0005785455 -0.00058877168 + 174150 -6244.4316 -6251.7599 7.3283063 3706.8 625.82676 -10584.387 0 351.21356 -0.0010101166 -0.001018892 + 174160 -6243.9069 -6251.336 7.4291552 3709.1328 623.75673 -10584.226 0 356.0468 -0.0012622973 -0.0012807023 + 174170 -6243.3937 -6250.9841 7.5903603 3707.6586 623.27625 -10581.919 0 363.77266 -0.0012776944 -0.0013107105 + 174180 -6242.9838 -6250.5897 7.6059842 3702.7779 624.43212 -10577.8 0 364.52144 -0.001068571 -0.0011105195 + 174190 -6242.7301 -6250.1145 7.384384 3695.8189 626.85963 -10572.793 0 353.90112 -0.00070191322 -0.00074109423 + 174200 -6242.5968 -6249.6586 7.0617385 3688.5714 629.89913 -10568.129 0 338.43813 -0.00027389906 -0.00030205811 + 174210 -6242.4888 -6249.397 6.9081793 3682.8462 632.78898 -10565.032 0 331.07871 0.00011465837 9.6369419e-05 + 174220 -6242.3256 -6249.4538 7.128217 3680.1245 634.87272 -10564.451 0 341.62415 0.00037855368 0.00036138659 + 174230 -6242.0956 -6249.8238 7.7282548 3681.267 635.76274 -10566.854 0 370.38133 0.00046514258 0.00043968955 + 174240 -6241.8586 -6250.3821 8.5235385 3686.2854 635.42589 -10572.093 0 408.49579 0.0003666539 0.00032936148 + 174250 -6241.7104 -6250.952 9.241608 3694.2602 634.17465 -10579.387 0 442.90971 0.00012332283 7.883584e-05 + 174260 -6241.7273 -6251.3903 9.6629621 3703.4789 632.5598 -10587.429 0 463.10336 -0.00018566038 -0.00022744837 + 174270 -6241.918 -6251.6619 9.7439247 3711.8128 631.18713 -10594.662 0 466.98354 -0.00046265191 -0.00049360566 + 174280 -6242.2201 -6251.8477 9.6275924 3717.2884 630.51963 -10599.656 0 461.40825 -0.00062045262 -0.00064057401 + 174290 -6242.5618 -6252.0574 9.495528 3718.7018 630.74114 -10601.5 0 455.07898 -0.00061245029 -0.0006296801 + 174300 -6242.9313 -6252.3188 9.3875152 3716.0103 631.72485 -10600.054 0 449.9024 -0.00045055325 -0.00047344534 + 174310 -6243.3784 -6252.5603 9.1818114 3710.2769 633.10184 -10595.939 0 440.04392 -0.00019869795 -0.00022888862 + 174320 -6243.947 -6252.6965 8.7495313 3703.2001 634.39654 -10590.293 0 419.32664 5.6357801e-05 2.4744787e-05 + 174330 -6244.6135 -6252.7146 8.1011532 3696.5089 635.18309 -10584.407 0 388.25271 0.00023978151 0.00021411547 + 174340 -6245.2945 -6252.6722 7.3777282 3691.5152 635.20979 -10579.397 0 353.58213 0.00031002817 0.0002929793 + 174350 -6245.9031 -6252.63 6.7268477 3688.934 634.45045 -10576.014 0 322.38829 0.00026071857 0.00024904193 + 174360 -6246.396 -6252.5976 6.2016031 3688.9077 633.07494 -10574.58 0 297.21562 0.00011059335 9.8594802e-05 + 174370 -6246.779 -6252.5395 5.7605268 3691.1146 631.36677 -10575.021 0 276.07677 -0.00010773327 -0.00012381073 + 174380 -6247.083 -6252.4258 5.3428614 3694.8901 629.62934 -10576.945 0 256.0599 -0.00035515388 -0.0003751609 + 174390 -6247.3355 -6252.279 4.943502 3699.3477 628.11653 -10579.743 0 236.92035 -0.00059071344 -0.00061179543 + 174400 -6247.5469 -6252.1752 4.6282971 3703.5214 627.00408 -10582.701 0 221.81397 -0.00077630781 -0.00079560759 + 174410 -6247.7142 -6252.2001 4.4858375 3706.5409 626.39574 -10585.137 0 214.9865 -0.00088208457 -0.00089860802 + 174420 -6247.8342 -6252.3971 4.562892 3707.8106 626.34282 -10586.55 0 218.67938 -0.00089092681 -0.00090551239 + 174430 -6247.9099 -6252.748 4.8381405 3707.14 626.85448 -10586.742 0 231.87084 -0.00080048366 -0.00081469435 + 174440 -6247.9483 -6253.1956 5.2472823 3704.7864 627.88963 -10585.872 0 251.47921 -0.0006230879 -0.00063848536 + 174450 -6247.9566 -6253.6765 5.7199093 3701.4067 629.33899 -10584.422 0 274.13015 -0.00038511318 -0.00040319546 + 174460 -6247.9467 -6254.13 6.1832999 3697.9349 631.01607 -10583.081 0 296.33843 -0.00012595664 -0.00014766003 + 174470 -6247.9427 -6254.4885 6.5457908 3695.3854 632.67145 -10582.545 0 313.71102 0.00010605781 8.1733052e-05 + 174480 -6247.9728 -6254.691 6.7181691 3694.5889 634.03178 -10583.312 0 321.97236 0.00026376724 0.00024025631 + 174490 -6248.0417 -6254.7244 6.6826595 3695.9278 634.85506 -10585.507 0 320.27054 0.00031511131 0.00029597026 + 174500 -6248.1178 -6254.6443 6.5264781 3699.2048 634.98987 -10588.839 0 312.78545 0.00025302295 0.00023818646 + 174510 -6248.1575 -6254.5244 6.3668737 3703.7235 634.42289 -10592.671 0 305.13631 9.4888881e-05 7.9731373e-05 + 174520 -6248.1499 -6254.377 6.2270739 3708.5141 633.29657 -10596.188 0 298.43632 -0.00012581577 -0.00014665088 + 174530 -6248.1288 -6254.1345 6.0056698 3712.5523 631.88483 -10598.572 0 287.8254 -0.00036706662 -0.00039454678 + 174540 -6248.1378 -6253.7243 5.586458 3714.9002 630.53075 -10599.155 0 267.73441 -0.00058114312 -0.00061075816 + 174550 -6248.1848 -6253.1587 4.9739162 3714.8332 629.56314 -10597.555 0 238.37797 -0.00071833018 -0.00074409749 + 174560 -6248.2348 -6252.5503 4.3154171 3712.0234 629.21211 -10593.786 0 206.819 -0.00073835163 -0.00075775729 + 174570 -6248.2428 -6252.0442 3.801313 3706.7369 629.54014 -10588.321 0 182.18025 -0.00062760464 -0.00064292458 + 174580 -6248.1886 -6251.7403 3.5516981 3699.9157 630.40466 -10582.061 0 170.2173 -0.00041157749 -0.00042705975 + 174590 -6248.0823 -6251.6705 3.5882149 3693.0362 631.47073 -10576.177 0 171.96739 -0.00015237261 -0.0001705236 + 174600 -6247.941 -6251.8321 3.8910083 3687.752 632.28814 -10571.872 0 186.47895 6.9936131e-05 4.9553776e-05 + 174610 -6247.7614 -6252.2235 4.4620987 3685.4355 632.42799 -10570.087 0 213.8488 0.00018394053 0.00016285756 + 174620 -6247.5138 -6252.8343 5.3204977 3686.7844 631.64318 -10571.262 0 254.9881 0.00015004465 0.00012838658 + 174630 -6247.1679 -6253.5953 6.4273741 3691.6199 629.99374 -10575.209 0 308.03583 -2.75073e-05 -5.1321598e-05 + 174640 -6246.7274 -6254.347 7.6196112 3698.9137 627.87851 -10581.139 0 365.17452 -0.00030094032 -0.00032793406 + 174650 -6246.24 -6254.8843 8.6443231 3707.0135 625.94265 -10587.84 0 414.28447 -0.0005894971 -0.00061809775 + 174660 -6245.7655 -6255.0608 9.2952615 3714.02 624.88002 -10593.961 0 445.48109 -0.00079902732 -0.00082622846 + 174670 -6245.335 -6254.8616 9.526556 3718.2741 625.20055 -10598.336 0 456.56602 -0.00084958769 -0.00087439782 + 174680 -6244.9489 -6254.3737 9.4247575 3718.8508 627.05339 -10600.278 0 451.68726 -0.00070450808 -0.0007293592 + 174690 -6244.6094 -6253.6939 9.084482 3715.8649 630.17047 -10599.729 0 435.37935 -0.00038734421 -0.00041532088 + 174700 -6244.3355 -6252.8787 8.5431973 3710.4152 633.94202 -10597.236 0 409.43795 2.4646315e-05 -6.4765549e-06 + 174710 -6244.1396 -6251.9734 7.833865 3704.1797 637.59004 -10593.743 0 375.44277 0.00042824194 0.00039720787 + 174720 -6244.0001 -6251.0566 7.0565239 3698.8683 640.37812 -10590.303 0 338.18822 0.00072795314 0.00070017836 + 174730 -6243.8688 -6250.2362 6.3674212 3695.7657 641.78825 -10587.79 0 305.16255 0.00086029575 0.00083605359 + 174740 -6243.6992 -6249.6097 5.9104825 3695.4751 641.61362 -10586.698 0 283.26349 0.00080379032 0.00078078431 + 174750 -6243.4622 -6249.2403 5.7780932 3697.8495 639.95834 -10587.048 0 276.91865 0.00057849477 0.00055411915 + 174760 -6243.1375 -6249.1605 6.0229734 3702.0809 637.17448 -10588.416 0 288.65468 0.00023911207 0.00021216059 + 174770 -6242.6991 -6249.3721 6.6730205 3706.9195 633.77531 -10590.067 0 319.80858 -0.00013737459 -0.00016628868 + 174780 -6242.1149 -6249.8352 7.7202801 3710.9737 630.34382 -10591.153 0 369.99914 -0.00046852222 -0.00049733756 + 174790 -6241.3606 -6250.4665 9.1059013 3713.0219 627.43507 -10590.924 0 436.40588 -0.0006843683 -0.00071085394 + 174800 -6240.4415 -6251.1608 10.719276 3712.2993 625.47329 -10588.933 0 513.72787 -0.0007426399 -0.00076683072 + 174810 -6239.4157 -6251.8066 12.39093 3708.7408 624.66724 -10585.215 0 593.84289 -0.00063863311 -0.00066476747 + 174820 -6238.4117 -6252.2764 13.86471 3703.1022 624.98438 -10580.363 0 664.47468 -0.00040737956 -0.00044229321 + 174830 -6237.6186 -6252.4184 14.799741 3696.8282 626.204 -10575.451 0 709.28665 -0.00011490323 -0.00016248221 + 174840 -6237.2232 -6252.1033 14.880105 3691.6239 628.0195 -10571.747 0 713.13814 0.00016270836 0.00010647401 + 174850 -6237.3081 -6251.3253 14.017169 3688.8772 630.12849 -10570.331 0 671.78139 0.00036652351 0.00031224393 + 174860 -6237.789 -6250.281 12.491945 3689.2143 632.26982 -10571.765 0 598.68408 0.00047434058 0.00043126787 + 174870 -6238.4626 -6249.3298 10.867237 3692.4061 634.21804 -10575.954 0 520.81898 0.00049952331 0.00046751528 + 174880 -6239.144 -6248.8138 9.6698243 3697.632 635.77847 -10582.224 0 463.43224 0.00047012213 0.00043961204 + 174890 -6239.7792 -6248.8534 9.0741916 3703.8767 636.81011 -10589.54 0 434.88617 0.00040604414 0.00036705707 + 174900 -6240.4334 -6249.2985 8.8651081 3710.1807 637.26064 -10596.74 0 424.86572 0.00031351081 0.00026518315 + 174910 -6241.1766 -6249.8875 8.7108864 3715.6574 637.17888 -10602.724 0 417.47456 0.0001983107 0.00014904162 + 174920 -6241.987 -6250.4514 8.4643966 3719.4584 636.69242 -10606.602 0 405.66138 7.977682e-05 3.8151997e-05 + 174930 -6242.7686 -6250.9645 8.1959414 3720.9027 635.9668 -10607.834 0 392.7955 -1.2254914e-05 -4.5393294e-05 + 174940 -6243.4438 -6251.4382 7.9944474 3719.7337 635.16441 -10606.336 0 383.13878 -5.4835869e-05 -8.5099151e-05 + 174950 -6244.009 -6251.8326 7.8235218 3716.2683 634.4083 -10602.509 0 374.94706 -4.5370304e-05 -7.7506623e-05 + 174960 -6244.5074 -6252.0913 7.5838883 3711.2952 633.7554 -10597.142 0 363.46248 3.6786188e-07 -3.3004294e-05 + 174970 -6244.9697 -6252.2262 7.25656 3705.8149 633.19069 -10591.232 0 347.77507 6.0024025e-05 2.9417246e-05 + 174980 -6245.3909 -6252.3308 6.9399041 3700.8017 632.64885 -10585.781 0 332.59914 0.00011375297 8.846727e-05 + 174990 -6245.7522 -6252.5034 6.7512181 3697.0671 632.05345 -10581.624 0 323.55625 0.00014537318 0.00012435731 + 175000 -6246.0531 -6252.7638 6.710714 3695.1908 631.35374 -10579.308 0 321.61507 0.00014034572 0.00012090376 + 175010 -6246.3185 -6253.0447 6.7261746 3695.4549 630.54384 -10579.043 0 322.35603 8.7513414e-05 6.8509701e-05 + 175020 -6246.5763 -6253.2641 6.6878161 3697.7729 629.6625 -10580.7 0 320.51768 -1.4467822e-05 -3.1799353e-05 + 175030 -6246.8304 -6253.4078 6.5774128 3701.6656 628.7835 -10583.857 0 315.22653 -0.00015175477 -0.00016613495 + 175040 -6247.0598 -6253.5423 6.4824387 3706.3431 628.00938 -10587.895 0 310.67484 -0.00029702457 -0.00030981374 + 175050 -6247.2478 -6253.7442 6.4963487 3710.8915 627.47213 -10592.108 0 311.34148 -0.00041812343 -0.00043296332 + 175060 -6247.4106 -6254.0129 6.60234 3714.4853 627.32879 -10595.827 0 316.42118 -0.00048748427 -0.00050668299 + 175070 -6247.5908 -6254.2558 6.6649371 3716.5326 627.73239 -10598.521 0 319.42118 -0.00048660266 -0.00050804427 + 175080 -6247.8164 -6254.3632 6.5468275 3716.7304 628.77323 -10599.867 0 313.76071 -0.00040633538 -0.00042484816 + 175090 -6248.0653 -6254.2938 6.2285342 3715.0939 630.41272 -10599.8 0 298.50631 -0.00024884251 -0.00026126274 + 175100 -6248.2804 -6254.0837 5.8033198 3712.0087 632.4475 -10598.54 0 278.12765 -3.379172e-05 -4.2531757e-05 + 175110 -6248.4185 -6253.7864 5.3678545 3708.2477 634.52913 -10596.563 0 257.25771 0.00019711993 0.00018577465 + 175120 -6248.4835 -6253.4265 4.9430065 3704.8401 636.23896 -10594.506 0 236.89661 0.00038631348 0.00036735348 + 175130 -6248.5146 -6253.0169 4.502245 3702.7708 637.19759 -10592.985 0 215.77284 0.00047870652 0.00045207408 + 175140 -6248.5497 -6252.6051 4.0554076 3702.6302 637.17672 -10592.412 0 194.35789 0.00044358034 0.00041363094 + 175150 -6248.5993 -6252.2923 3.6929198 3704.3918 636.17455 -10592.859 0 176.98544 0.00028801129 0.00026004651 + 175160 -6248.6458 -6252.2013 3.555481 3707.4184 634.42326 -10594.043 0 170.3986 5.5428469e-05 3.2354406e-05 + 175170 -6248.6572 -6252.4203 3.763152 3710.6849 632.32144 -10595.427 0 180.35136 -0.00018895717 -0.00020784922 + 175180 -6248.6049 -6252.9565 4.3516389 3713.1227 630.3174 -10596.397 0 208.55496 -0.00037913459 -0.00039711997 + 175190 -6248.4785 -6253.7183 5.2397974 3713.9658 628.78738 -10596.471 0 251.12049 -0.00046835644 -0.00048887103 + 175200 -6248.2939 -6254.5321 6.238264 3712.9852 627.94723 -10595.465 0 298.97262 -0.00044244648 -0.00046664664 + 175210 -6248.0875 -6255.1971 7.1095935 3710.5318 627.81512 -10593.544 0 340.73161 -0.00032246986 -0.0003483558 + 175220 -6247.8936 -6255.5605 7.666872 3707.3839 628.2277 -10591.172 0 367.43953 -0.00015588466 -0.00017998892 + 175230 -6247.721 -6255.5712 7.8502019 3704.48 628.90632 -10588.958 0 376.22572 4.0105083e-07 -2.0140991e-05 + 175240 -6247.5553 -6255.2738 7.7185319 3702.6489 629.56107 -10587.484 0 369.91536 9.8452355e-05 7.9855658e-05 + 175250 -6247.3837 -6254.7534 7.3697077 3702.4059 630.00105 -10587.16 0 353.19774 0.00011311762 9.3032915e-05 + 175260 -6247.2145 -6254.0852 6.8707227 3703.8286 630.20556 -10588.119 0 329.28358 4.8298733e-05 2.494481e-05 + 175270 -6247.0698 -6253.3281 6.258314 3706.5258 630.32323 -10590.177 0 299.93352 -6.4688213e-05 -8.9392864e-05 + 175280 -6246.9593 -6252.5502 5.5909345 3709.7309 630.59913 -10592.88 0 267.94895 -0.00017623265 -0.00019801778 + 175290 -6246.8606 -6251.8467 4.9861081 3712.5319 631.26121 -10595.64 0 238.96227 -0.00023396671 -0.00024988138 + 175300 -6246.725 -6251.3229 4.5978987 3714.1842 632.41063 -10597.918 0 220.35711 -0.00020148825 -0.00021281351 + 175310 -6246.5022 -6251.0502 4.5479821 3714.3871 633.95529 -10599.393 0 217.96482 -7.3918872e-05 -8.5815864e-05 + 175320 -6246.1661 -6251.0332 4.8670509 3713.3943 635.60943 -10600.037 0 233.25639 0.00011714822 9.916866e-05 + 175330 -6245.7227 -6251.2183 5.4955201 3711.889 636.96338 -10600.071 0 263.37616 0.00031344184 0.00028760672 + 175340 -6245.1962 -6251.5395 6.3432844 3710.6623 637.60949 -10599.811 0 304.00578 0.00045214595 0.00042184063 + 175350 -6244.6033 -6251.9602 7.3569333 3710.2345 637.2921 -10599.487 0 352.58552 0.00049180422 0.00046289681 + 175360 -6243.9417 -6252.4662 8.5244986 3710.6095 636.03101 -10599.107 0 408.5418 0.00043037021 0.00040628349 + 175370 -6243.2148 -6253.0033 9.7885309 3711.3017 634.15696 -10598.462 0 469.12132 0.00030545482 0.0002843337 + 175380 -6242.477 -6253.4175 10.940445 3711.6246 632.21359 -10597.256 0 524.32753 0.00017482772 0.00015185932 + 175390 -6241.8435 -6253.4892 11.645703 3711.0633 630.7392 -10595.292 0 558.12744 8.7506878e-05 6.0094781e-05 + 175400 -6241.4238 -6253.0774 11.653666 3709.5154 630.02658 -10592.619 0 558.50907 6.2690694e-05 3.2489119e-05 + 175410 -6241.2398 -6252.2566 11.016832 3707.3159 630.00271 -10589.575 0 527.9884 8.7025355e-05 5.654092e-05 + 175420 -6241.2223 -6251.303 10.080752 3705.0982 630.31089 -10586.712 0 483.12621 0.00012688192 9.5320949e-05 + 175430 -6241.2893 -6250.5273 9.2380681 3703.5744 630.54372 -10584.645 0 442.74006 0.00014586545 0.00010978632 + 175440 -6241.4169 -6250.0962 8.6793374 3703.2917 630.47965 -10583.868 0 415.96255 0.0001210631 7.9376649e-05 + 175450 -6241.6357 -6249.9867 8.3509897 3704.4162 630.18887 -10584.592 0 400.22629 5.5001899e-05 1.2540661e-05 + 175460 -6241.9675 -6250.0884 8.1209139 3706.6322 629.96612 -10586.687 0 389.19976 -2.1284555e-05 -5.650199e-05 + 175470 -6242.3734 -6250.3381 7.9646623 3709.2457 630.14802 -10589.732 0 381.71131 -5.9916202e-05 -8.4244399e-05 + 175480 -6242.7729 -6250.7479 7.9749865 3711.505 630.92778 -10593.181 0 382.2061 -2.1606483e-05 -4.0770563e-05 + 175490 -6243.1198 -6251.3114 8.1916628 3712.9886 632.26158 -10596.562 0 392.59044 9.8584023e-05 7.3103005e-05 + 175500 -6243.4534 -6251.912 8.4586191 3713.801 633.8909 -10599.604 0 405.38449 0.00026364997 0.00022444363 + 175510 -6243.8641 -6252.3587 8.4945711 3714.4142 635.4447 -10602.218 0 407.10751 0.00041266676 0.00036324376 + 175520 -6244.4 -6252.5244 8.1244202 3715.2595 636.5681 -10604.352 0 389.3678 0.0004929926 0.00044504026 + 175530 -6245.011 -6252.4495 7.4384661 3716.3815 637.03265 -10605.864 0 356.49303 0.00048520445 0.00044901497 + 175540 -6245.584 -6252.3118 6.727801 3717.4006 636.79616 -10606.509 0 322.43397 0.00040678509 0.00038360589 + 175550 -6246.0266 -6252.2974 6.2708637 3717.7732 635.99618 -10606.067 0 300.53497 0.00029711461 0.00027934412 + 175560 -6246.3217 -6252.4828 6.1610994 3717.1334 634.88535 -10604.502 0 295.27445 0.00019669426 0.00017449981 + 175570 -6246.5212 -6252.8134 6.2922197 3715.492 633.73675 -10602.042 0 301.55847 0.00013208042 0.00010046714 + 175580 -6246.699 -6253.1724 6.4734337 3713.2178 632.75561 -10599.146 0 310.24326 0.0001105077 7.1897392e-05 + 175590 -6246.9037 -6253.47 6.5662852 3710.8691 632.02795 -10596.367 0 314.69323 0.00012233677 8.3906709e-05 + 175600 -6247.1359 -6253.6937 6.5577787 3708.9932 631.5196 -10594.207 0 314.28555 0.00014794528 0.0001162873 + 175610 -6247.3565 -6253.9025 6.5459907 3707.9825 631.11955 -10593.005 0 313.7206 0.00016595047 0.00014249397 + 175620 -6247.5186 -6254.1682 6.6496098 3708.0241 630.70861 -10592.901 0 318.68661 0.00015965357 0.00013975586 + 175630 -6247.6095 -6254.4962 6.8867408 3709.117 630.22812 -10593.841 0 330.05126 0.00012016904 9.6936645e-05 + 175640 -6247.669 -6254.7844 7.1154464 3711.085 629.72298 -10595.592 0 341.01212 4.8202972e-05 1.855859e-05 + 175650 -6247.7613 -6254.8737 7.1123701 3713.5477 629.34125 -10597.763 0 340.86468 -4.2799229e-05 -7.5073514e-05 + 175660 -6247.9158 -6254.6611 6.7453434 3715.9092 629.28932 -10599.86 0 323.2747 -0.00012426514 -0.00015187291 + 175670 -6248.094 -6254.177 6.0829938 3717.4831 629.75769 -10601.418 0 291.53119 -0.00015791369 -0.00017701534 + 175680 -6248.2219 -6253.554 5.3321069 3717.7747 630.83776 -10602.166 0 255.54448 -0.00011250133 -0.00012649735 + 175690 -6248.2557 -6252.9295 4.6738256 3716.7645 632.45156 -10602.146 0 223.99595 1.5839056e-05 -5.545267e-07 + 175700 -6248.2157 -6252.3862 4.1705075 3714.9792 634.32189 -10601.687 0 199.87412 0.00019460483 0.00017097458 + 175710 -6248.1608 -6251.9788 3.8179598 3713.2688 636.01474 -10601.262 0 182.97806 0.00036618669 0.00033704033 + 175720 -6248.1334 -6251.7871 3.653714 3712.4173 637.06693 -10601.271 0 175.10648 0.00047374863 0.00044531537 + 175730 -6248.1252 -6251.9138 3.7885533 3712.8064 637.16203 -10601.882 0 181.56873 0.0004861356 0.00046373909 + 175740 -6248.088 -6252.4132 4.3251603 3714.2903 636.27231 -10602.976 0 207.28595 0.0004086787 0.00039289543 + 175750 -6247.9732 -6253.2161 5.2429262 3716.3021 634.68662 -10604.205 0 251.27044 0.00027739399 0.00026449236 + 175760 -6247.7686 -6254.1285 6.3598708 3718.101 632.89907 -10605.129 0 304.80069 0.00014278112 0.00012807141 + 175770 -6247.5037 -6254.9193 7.4155835 3719.0426 631.40867 -10605.37 0 355.39637 5.1128452e-05 3.1640743e-05 + 175780 -6247.2254 -6255.4295 8.2040551 3718.7889 630.53231 -10604.751 0 393.18435 2.8797125e-05 3.3771052e-06 + 175790 -6246.9767 -6255.6103 8.6336227 3717.4162 630.32554 -10603.352 0 413.77164 7.3557096e-05 4.2054896e-05 + 175800 -6246.7949 -6255.4794 8.6845002 3715.3776 630.63438 -10601.491 0 416.20998 0.00015721844 0.00012108277 + 175810 -6246.7096 -6255.0735 8.3638801 3713.3056 631.21903 -10599.598 0 400.84407 0.00024062775 0.00020383566 + 175820 -6246.721 -6254.4523 7.7312747 3711.7383 631.86645 -10598.057 0 370.52606 0.00029362299 0.00026105821 + 175830 -6246.7872 -6253.7136 6.9264088 3710.9393 632.44599 -10597.099 0 331.95237 0.00030688389 0.00028069103 + 175840 -6246.8488 -6252.9642 6.1154209 3710.9132 632.91101 -10596.788 0 293.08528 0.00028894748 0.0002669235 + 175850 -6246.8703 -6252.2759 5.4055991 3711.5372 633.26978 -10597.083 0 259.06664 0.00025477513 0.0002326728 + 175860 -6246.8516 -6251.6862 4.8346387 3712.6582 633.5491 -10597.894 0 231.70302 0.00021716819 0.00019209562 + 175870 -6246.8081 -6251.2408 4.4327417 3714.1094 633.76825 -10599.118 0 212.44185 0.00018519181 0.00015677529 + 175880 -6246.7479 -6251.0143 4.2664206 3715.7011 633.93039 -10600.646 0 204.47081 0.00016572636 0.00013503069 + 175890 -6246.6656 -6251.0829 4.4173264 3717.2353 634.02563 -10602.344 0 211.70307 0.00016375683 0.0001320229 + 175900 -6246.5475 -6251.4765 4.9289764 3718.5317 634.03807 -10604.046 0 236.2242 0.00018097147 0.00014939072 + 175910 -6246.3777 -6252.1476 5.7698815 3719.4424 633.95579 -10605.546 0 276.5251 0.00021483589 0.0001850026 + 175920 -6246.1403 -6252.9758 6.8355247 3719.8545 633.78482 -10606.615 0 327.5967 0.00025993776 0.00023386557 + 175930 -6245.82 -6253.8041 7.9841411 3719.696 633.5601 -10607.06 0 382.64484 0.0003110456 0.0002899141 + 175940 -6245.4061 -6254.4809 9.074797 3718.9623 633.3436 -10606.787 0 434.91519 0.00036493083 0.00034712382 + 175950 -6244.9087 -6254.8782 9.969579 3717.7658 633.20857 -10605.853 0 477.79816 0.00041844457 0.00039911344 + 175960 -6244.3805 -6254.8873 10.506758 3716.3734 633.21807 -10604.479 0 503.54278 0.00046455332 0.00043859535 + 175970 -6243.9165 -6254.4334 10.516884 3715.1639 633.40451 -10603.002 0 504.02807 0.00049194901 0.00045882997 + 175980 -6243.6049 -6253.5421 9.9372293 3714.4778 633.75236 -10601.772 0 476.24779 0.00049156168 0.00045700169 + 175990 -6243.4599 -6252.4077 8.9478483 3714.4395 634.19025 -10601.037 0 428.8311 0.0004652017 0.00043657652 + 176000 -6243.4068 -6251.3622 7.9553882 3714.9023 634.6069 -10600.871 0 381.26684 0.00042685762 0.00040599686 + 176010 -6243.3466 -6250.7091 7.3624908 3715.5809 634.89604 -10601.186 0 352.85187 0.00039343781 0.0003744997 + 176020 -6243.2418 -6250.5368 7.2949653 3716.2503 635.00875 -10601.796 0 349.61567 0.00037319948 0.00034855053 + 176030 -6243.1408 -6250.6787 7.537874 3716.8229 634.97634 -10602.478 0 361.25722 0.00036331988 0.00033158451 + 176040 -6243.1203 -6250.8671 7.746772 3717.2587 634.88392 -10603.01 0 371.26878 0.0003586042 0.00032632773 + 176050 -6243.2037 -6250.9426 7.7389422 3717.4555 634.81102 -10603.209 0 370.89353 0.00036103303 0.0003360454 + 176060 -6243.3386 -6250.939 7.6003765 3717.2817 634.77827 -10602.999 0 364.25269 0.00037842471 0.00036179052 + 176070 -6243.4555 -6250.9959 7.5403648 3716.7372 634.73434 -10602.467 0 361.37659 0.00041272356 0.00039743403 + 176080 -6243.5417 -6251.2103 7.6685911 3716.0654 634.59023 -10601.866 0 367.52192 0.00045096058 0.00042834337 + 176090 -6243.6592 -6251.5624 7.9031414 3715.6759 634.28051 -10601.519 0 378.76288 0.0004700448 0.0004375597 + 176100 -6243.8941 -6251.9528 8.0587357 3715.9078 633.81451 -10601.675 0 386.21983 0.00045268219 0.00041617757 + 176110 -6244.2851 -6252.2947 8.0095805 3716.8018 633.28405 -10602.381 0 383.86404 0.00040093117 0.00036968107 + 176120 -6244.7928 -6252.5733 7.780566 3718.0516 632.82131 -10603.446 0 372.88838 0.0003357897 0.00031475765 + 176130 -6245.3336 -6252.8272 7.4935736 3719.1825 632.53581 -10604.545 0 359.13409 0.00028309893 0.00026920067 + 176140 -6245.8472 -6253.081 7.233848 3719.8344 632.47139 -10605.387 0 346.68659 0.00025756258 0.0002430128 + 176150 -6246.329 -6253.3112 6.9822128 3719.9371 632.60306 -10605.851 0 334.62681 0.00025750479 0.00023663294 + 176160 -6246.8072 -6253.4828 6.6755646 3719.6644 632.86372 -10606.011 0 319.93051 0.00027219225 0.00024533503 + 176170 -6247.2979 -6253.6041 6.3061967 3719.2539 633.17905 -10606.037 0 302.22833 0.00029252237 0.00026447691 + 176180 -6247.7879 -6253.7347 5.9467515 3718.8593 633.49283 -10606.087 0 285.0017 0.00031580001 0.0002915825 + 176190 -6248.2476 -6253.9429 5.6953649 3718.5227 633.7735 -10606.239 0 272.95384 0.00034344656 0.00032510546 + 176200 -6248.6489 -6254.258 5.6091218 3718.2374 634.00416 -10606.5 0 268.82059 0.0003760712 0.00036195219 + 176210 -6248.9783 -6254.6451 5.6667918 3718.0331 634.16669 -10606.845 0 271.58446 0.00040957281 0.00039566957 + 176220 -6249.2437 -6255.0044 5.7607185 3718.0209 634.23298 -10607.258 0 276.08595 0.00043360899 0.00041631641 + 176230 -6249.4722 -6255.1991 5.7268903 3718.3587 634.16779 -10607.726 0 274.46472 0.000433592 0.00041253313 + 176240 -6249.6918 -6255.1218 5.4300331 3719.1379 633.93922 -10608.199 0 260.23765 0.00039708637 0.00037572024 + 176250 -6249.9034 -6254.7715 4.8680865 3720.2601 633.53214 -10608.564 0 233.30602 0.00032217967 0.00030492045 + 176260 -6250.0745 -6254.2781 4.2036544 3721.416 632.96342 -10608.658 0 201.46271 0.00022185675 0.00020977312 + 176270 -6250.1654 -6253.8365 3.6710761 3722.2091 632.29565 -10608.341 0 175.93857 0.00012009257 0.00010932825 + 176280 -6250.1671 -6253.5928 3.4256227 3722.3432 631.63897 -10607.575 0 164.17506 4.1934277e-05 2.6783163e-05 + 176290 -6250.1145 -6253.5752 3.4606884 3721.7391 631.13008 -10606.444 0 165.85561 4.5256486e-06 -1.7389729e-05 + 176300 -6250.0613 -6253.7166 3.6553579 3720.5166 630.89027 -10605.124 0 175.18526 1.4280163e-05 -1.0882605e-05 + 176310 -6250.0365 -6253.9374 3.9008622 3718.8974 630.98066 -10603.815 0 186.9512 6.9509638e-05 4.7892651e-05 + 176320 -6250.0174 -6254.2085 4.1911437 3717.1375 631.37679 -10602.723 0 200.86312 0.00016324801 0.00014940634 + 176330 -6249.9443 -6254.5411 4.5967512 3715.5422 631.97328 -10602.057 0 220.30211 0.0002818763 0.00027346177 + 176340 -6249.7707 -6254.9193 5.1486094 3714.5149 632.61247 -10602.047 0 246.75025 0.00040117693 0.00039088125 + 176350 -6249.5072 -6255.2561 5.7489717 3714.5221 633.12356 -10602.902 0 275.52298 0.00048701206 0.00046874667 + 176360 -6249.2191 -6255.4298 6.2106613 3715.9124 633.36564 -10604.708 0 297.64974 0.00050639458 0.00048064271 + 176370 -6248.9744 -6255.3785 6.4041078 3718.657 633.2748 -10607.31 0 306.92078 0.00044580686 0.00041914612 + 176380 -6248.7866 -6255.1594 6.3728334 3722.2003 632.9092 -10610.269 0 305.42193 0.0003246726 0.00030374331 + 176390 -6248.6099 -6254.8987 6.2888418 3725.5749 632.46881 -10612.942 0 301.39659 0.00019219158 0.00017786989 + 176400 -6248.3922 -6254.6664 6.2742161 3727.7651 632.25676 -10614.688 0 300.69564 0.00010676589 9.4264558e-05 + 176410 -6248.1295 -6254.3974 6.2678376 3728.1147 632.56708 -10615.079 0 300.38995 0.00010979049 9.4267317e-05 + 176420 -6247.8648 -6253.9547 6.089855 3726.5523 633.53 -10614.037 0 291.86002 0.00020873987 0.00019007432 + 176430 -6247.6337 -6253.2843 5.6506099 3723.5589 634.99511 -10611.838 0 270.80893 0.00037641345 0.00035796119 + 176440 -6247.4221 -6252.5074 5.0852433 3719.9753 636.53834 -10609.021 0 243.71339 0.00056236415 0.00054561935 + 176450 -6247.1828 -6251.8548 4.6720119 3716.7709 637.61501 -10606.241 0 223.90903 0.00070871301 0.00069045713 + 176460 -6246.886 -6251.5091 4.62311 3714.8121 637.78964 -10604.111 0 221.56537 0.00076643944 0.00074184258 + 176470 -6246.5462 -6251.4995 4.9533192 3714.6176 636.92515 -10603.042 0 237.39085 0.00071170462 0.00068005995 + 176480 -6246.1991 -6251.732 5.5328593 3716.1451 635.24024 -10603.117 0 265.16566 0.00055893393 0.00052570653 + 176490 -6245.8532 -6252.1004 6.2471771 3718.7336 633.21564 -10604.05 0 299.39978 0.00036195166 0.00033434278 + 176500 -6245.4692 -6252.5579 7.0886637 3721.3215 631.40348 -10605.283 0 339.72854 0.00019558856 0.00017545906 + 176510 -6244.9993 -6253.0788 8.0794812 3722.9064 630.23243 -10606.218 0 387.21407 0.00012203748 0.00010338782 + 176520 -6244.4585 -6253.575 9.1165309 3723.0186 629.88557 -10606.479 0 436.91531 0.00016050872 0.00013468031 + 176530 -6243.9488 -6253.8898 9.9409345 3721.914 630.27934 -10606.083 0 476.42536 0.00028039195 0.00024406666 + 176540 -6243.5951 -6253.9019 10.306834 3720.3602 631.13121 -10605.393 0 493.96132 0.00042205921 0.00037989095 + 176550 -6243.4514 -6253.6314 10.179993 3719.1786 632.08595 -10604.896 0 487.88237 0.00052920221 0.0004888601 + 176560 -6243.4772 -6253.2264 9.7492454 3718.8542 632.85952 -10604.94 0 467.23854 0.00057186874 0.00053741787 + 176570 -6243.5929 -6252.8463 9.2534024 3719.4042 633.34815 -10605.599 0 443.47496 0.00055231399 0.00052242458 + 176580 -6243.743 -6252.5602 8.8171474 3720.4783 633.6544 -10606.693 0 422.56718 0.00049876668 0.00046984388 + 176590 -6243.9089 -6252.3406 8.4316393 3721.563 634.01605 -10607.92 0 404.09146 0.00045321252 0.00042291254 + 176600 -6244.0858 -6252.1219 8.036173 3722.1951 634.67184 -10608.989 0 385.1385 0.00045513049 0.00042329295 + 176610 -6244.2658 -6251.855 7.5892816 3722.1397 635.72869 -10609.723 0 363.72096 0.00052417482 0.00049199062 + 176620 -6244.438 -6251.5325 7.0945318 3721.4868 637.08591 -10610.105 0 340.00977 0.00064940541 0.0006184779 + 176630 -6244.5905 -6251.203 6.6125453 3720.6253 638.4407 -10610.269 0 316.91027 0.00079183657 0.00076326219 + 176640 -6244.709 -6250.9722 6.2632215 3720.0959 639.37213 -10610.44 0 300.16871 0.00089936247 0.00087262635 + 176650 -6244.7818 -6250.9685 6.1866931 3720.3827 639.48213 -10610.833 0 296.50105 0.00092637984 0.00089898467 + 176660 -6244.813 -6251.2737 6.4606524 3721.7126 638.554 -10611.54 0 309.63071 0.00085010803 0.000819032 + 176670 -6244.8338 -6251.8601 7.0262821 3723.9249 636.67096 -10612.456 0 336.73886 0.00067944501 0.00064392828 + 176680 -6244.8946 -6252.5844 7.689827 3726.4533 634.23612 -10613.274 0 368.53966 0.00045530399 0.00041864377 + 176690 -6245.0361 -6253.2559 8.2197646 3728.4534 631.86351 -10613.573 0 393.93724 0.00024174881 0.00020981557 + 176700 -6245.2571 -6253.7349 8.4777755 3729.076 630.16686 -10612.978 0 406.30257 0.00010712464 8.3917405e-05 + 176710 -6245.5142 -6253.9901 8.4759256 3727.8239 629.53006 -10611.344 0 406.21391 9.7794718e-05 8.1670921e-05 + 176720 -6245.7595 -6254.0731 8.3136077 3724.8443 629.96385 -10608.881 0 398.43473 0.00021472766 0.00019918449 + 176730 -6245.9828 -6254.0554 8.0725741 3720.9768 631.11705 -10606.149 0 386.88305 0.00040804423 0.00038669937 + 176740 -6246.213 -6253.9913 7.7783184 3717.473 632.43926 -10603.904 0 372.78066 0.0005973128 0.00056849553 + 176750 -6246.4845 -6253.9166 7.4321293 3715.4992 633.42255 -10602.838 0 356.18934 0.00070825176 0.00067548631 + 176760 -6246.8072 -6253.848 7.0408354 3715.6742 633.81048 -10603.333 0 337.43634 0.00070512099 0.00067412193 + 176770 -6247.1613 -6253.7744 6.6131376 3717.8573 633.67785 -10605.31 0 316.93866 0.00060254989 0.00057774506 + 176780 -6247.5095 -6253.6636 6.1540262 3721.2547 633.35257 -10608.271 0 294.93547 0.0004543531 0.00043692819 + 176790 -6247.812 -6253.4934 5.6813108 3724.7681 633.2329 -10611.494 0 272.28029 0.00032800087 0.00031563921 + 176800 -6248.0397 -6253.2831 5.2434002 3727.4218 633.59751 -10614.302 0 251.29316 0.00027697102 0.00026489631 + 176810 -6248.1871 -6253.0917 4.9045609 3728.6979 634.49158 -10616.281 0 235.05408 0.000321251 0.00030446986 + 176820 -6248.2795 -6252.9821 4.7025719 3728.6507 635.72053 -10617.353 0 225.37363 0.00044209216 0.00041837406 + 176830 -6248.3625 -6252.9898 4.6272966 3727.7712 636.93153 -10617.693 0 221.76602 0.0005921821 0.00056402807 + 176840 -6248.473 -6253.1265 4.6534186 3726.6856 637.73924 -10617.551 0 223.01793 0.00071671477 0.00069018304 + 176850 -6248.6099 -6253.4031 4.7932714 3725.8519 637.85464 -10617.11 0 229.72046 0.00077578511 0.00075613569 + 176860 -6248.7322 -6253.8309 5.0986713 3725.4125 637.18298 -10616.426 0 244.35694 0.00075765075 0.0007449014 + 176870 -6248.7935 -6254.3801 5.5865867 3725.2496 635.86142 -10615.491 0 267.74058 0.00067766108 0.00066602602 + 176880 -6248.7871 -6254.9373 6.1502281 3725.159 634.21637 -10614.313 0 294.75344 0.00056604987 0.00054842206 + 176890 -6248.7619 -6255.3208 6.5588766 3724.9981 632.64697 -10612.966 0 314.33817 0.00045345254 0.00042757302 + 176900 -6248.7863 -6255.3772 6.5909032 3724.719 631.47763 -10611.574 0 315.87306 0.00036204845 0.00033278448 + 176910 -6248.8859 -6255.0973 6.2113555 3724.3177 630.84841 -10610.263 0 297.68301 0.00030379173 0.00027891345 + 176920 -6249.0167 -6254.6455 5.6288187 3723.8042 630.69837 -10609.148 0 269.76458 0.00028143616 0.00026446113 + 176930 -6249.1023 -6254.2622 5.1599844 3723.2434 630.84287 -10608.349 0 247.29541 0.00028868723 0.00027543674 + 176940 -6249.0993 -6254.1093 5.0099784 3722.8089 631.09028 -10608.009 0 240.10628 0.00031088771 0.00029292579 + 176950 -6249.0312 -6254.1765 5.1453155 3722.7492 631.33241 -10608.258 0 246.59239 0.00032996409 0.00030186965 + 176960 -6248.9669 -6254.3129 5.3459915 3723.2421 631.57467 -10609.13 0 256.20991 0.00033408186 0.00029841219 + 176970 -6248.9637 -6254.3496 5.3859185 3724.2222 631.91055 -10610.482 0 258.12344 0.00032720699 0.00029296539 + 176980 -6249.0166 -6254.2217 5.2051873 3725.3235 632.46536 -10612.011 0 249.46178 0.0003312057 0.00030674992 + 176990 -6249.056 -6253.9989 4.9428859 3726.0293 633.33406 -10613.362 0 236.89083 0.00037578237 0.00036183295 + 177000 -6249.0009 -6253.8071 4.8062031 3725.9837 634.52688 -10614.318 0 230.34022 0.00047923071 0.00046805513 + 177010 -6248.8218 -6253.7176 4.8958508 3725.2668 635.9287 -10614.913 0 234.63664 0.00063123379 0.00061299509 + 177020 -6248.5584 -6253.7079 5.1495068 3724.4183 637.2854 -10615.412 0 246.79326 0.00079052058 0.00076135319 + 177030 -6248.2783 -6253.7215 5.4431806 3724.1571 638.24525 -10616.124 0 260.86775 0.00090153932 0.00086643833 + 177040 -6248.0147 -6253.7458 5.731062 3724.9694 638.47293 -10617.188 0 274.66465 0.00092112541 0.00088962716 + 177050 -6247.7364 -6253.8175 6.0811039 3726.8249 637.805 -10618.447 0 291.44062 0.0008394339 0.00081816877 + 177060 -6247.3713 -6253.9534 6.5821423 3729.1753 636.3654 -10619.494 0 315.45319 0.00068423138 0.00067223586 + 177070 -6246.8652 -6254.0818 7.2166692 3731.2043 634.55939 -10619.845 0 345.86328 0.00050827311 0.00049813238 + 177080 -6246.2339 -6254.05 7.8160781 3732.1728 632.92492 -10619.148 0 374.59032 0.00036752749 0.00035114423 + 177090 -6245.5681 -6253.7207 8.1526581 3731.6816 631.90497 -10617.307 0 390.72112 0.0003006647 0.00027538553 + 177100 -6244.9782 -6253.0954 8.1172245 3729.751 631.66236 -10614.509 0 389.02294 0.00031849766 0.00028898808 + 177110 -6244.5203 -6252.3663 7.8460068 3726.7389 632.04363 -10611.149 0 376.02467 0.00040653667 0.00038076569 + 177120 -6244.1623 -6251.8376 7.6753327 3723.2061 632.70678 -10607.751 0 367.84501 0.00053623022 0.00051858547 + 177130 -6243.8195 -6251.7455 7.9260303 3719.8211 633.32288 -10604.89 0 379.85984 0.00067594074 0.00066311715 + 177140 -6243.4324 -6252.0873 8.654857 3717.3034 633.72451 -10603.115 0 414.78931 0.00079562488 0.00077897457 + 177150 -6243.0296 -6252.5858 9.5562327 3716.3219 633.92759 -10602.835 0 457.98829 0.00086733003 0.00084012247 + 177160 -6242.7183 -6252.8397 10.121344 3717.2946 634.04528 -10604.18 0 485.0716 0.00086906572 0.0008326131 + 177170 -6242.5962 -6252.5796 9.9833311 3720.1549 634.17874 -10606.913 0 478.45724 0.00079570823 0.00075853185 + 177180 -6242.6588 -6251.8571 9.1982488 3724.2465 634.36793 -10610.472 0 440.83169 0.00066974567 0.0006397915 + 177190 -6242.7994 -6251.0174 8.2180031 3728.4808 634.62273 -10614.121 0 393.85282 0.00053916793 0.00051596686 + 177200 -6242.9061 -6250.4662 7.5601752 3731.7271 634.98401 -10617.177 0 362.32602 0.00045851278 0.0004330551 + 177210 -6242.9593 -6250.4051 7.4458279 3733.2341 635.54351 -10619.183 0 356.84585 0.00046408619 0.00042722769 + 177220 -6243.0426 -6250.7399 7.6973607 3732.8464 636.39075 -10619.977 0 368.90072 0.00055973758 0.00051151063 + 177230 -6243.2602 -6251.2169 7.9567467 3730.9317 637.51573 -10619.664 0 381.33194 0.00072040651 0.00067105442 + 177240 -6243.6383 -6251.6479 8.0096043 3728.137 638.73758 -10618.522 0 383.86518 0.00090644105 0.00086757394 + 177250 -6244.1034 -6252.0218 7.9183575 3725.1813 639.723 -10616.926 0 379.49212 0.0010756468 0.0010498123 + 177260 -6244.5595 -6252.4274 7.8678885 3722.7741 640.10378 -10615.305 0 377.07336 0.0011876078 0.0011664599 + 177270 -6244.9823 -6252.9031 7.920792 3721.566 639.63452 -10614.104 0 379.60879 0.0012069915 0.0011795678 + 177280 -6245.4323 -6253.38 7.9476615 3721.9973 638.30445 -10613.682 0 380.89653 0.0011139658 0.0010766139 + 177290 -6245.9807 -6253.76 7.7793215 3724.0702 636.34761 -10614.178 0 372.82873 0.00091825808 0.00087697155 + 177300 -6246.6308 -6254.0212 7.390426 3727.2293 634.15599 -10615.407 0 354.19068 0.00066347782 0.00062767375 + 177310 -6247.3112 -6254.2336 6.9224174 3730.5048 632.14798 -10616.886 0 331.76108 0.00041337723 0.00038798514 + 177320 -6247.9313 -6254.4816 6.5502697 3732.8728 630.65398 -10618.008 0 313.92568 0.00022700248 0.00020957193 + 177330 -6248.4371 -6254.7782 6.3411533 3733.6387 629.85683 -10618.274 0 303.90364 0.00013823547 0.00012188782 + 177340 -6248.8263 -6255.0391 6.2128605 3732.6567 629.78981 -10617.486 0 297.75514 0.0001493964 0.00012814171 + 177350 -6249.1324 -6255.1258 5.9934182 3730.3181 630.3687 -10615.813 0 287.23823 0.00023765774 0.00021041845 + 177360 -6249.3952 -6254.9317 5.5364682 3727.3444 631.4277 -10613.704 0 265.33862 0.00036767356 0.00033886636 + 177370 -6249.6325 -6254.469 4.8365259 3724.5039 632.74388 -10611.717 0 231.79346 0.00050430039 0.00048057505 + 177380 -6249.8272 -6253.9019 4.0747141 3722.3884 634.05949 -10610.35 0 195.28316 0.00062121573 0.00060622415 + 177390 -6249.9404 -6253.4848 3.5444275 3721.341 635.1227 -10609.949 0 169.86885 0.0007033632 0.00069426648 + 177400 -6249.9439 -6253.4255 3.4815817 3721.5104 635.75122 -10610.687 0 166.85693 0.00074425638 0.0007330446 + 177410 -6249.8517 -6253.7555 3.9037923 3722.9174 635.8942 -10612.567 0 187.09163 0.00074223402 0.00072156277 + 177420 -6249.7261 -6254.303 4.5769581 3725.4348 635.65221 -10615.39 0 219.35351 0.00070005791 0.00066949472 + 177430 -6249.6432 -6254.7991 5.1558822 3728.6909 635.23035 -10618.72 0 247.0988 0.00062854293 0.00059589396 + 177440 -6249.6344 -6255.0518 5.417324 3732.0187 634.83964 -10621.91 0 259.62856 0.00054945352 0.00052500232 + 177450 -6249.6537 -6255.0573 5.4036104 3734.5858 634.60125 -10624.244 0 258.97133 0.00049093791 0.00047863453 + 177460 -6249.6128 -6254.9588 5.345969 3735.7039 634.51094 -10625.174 0 256.20883 0.00047451538 0.00046791735 + 177470 -6249.461 -6254.8981 5.4370615 3735.1438 634.47874 -10624.521 0 260.5745 0.0005021845 0.0004893919 + 177480 -6249.2342 -6254.8993 5.6651221 3733.2311 634.40727 -10622.538 0 271.50444 0.00055489899 0.00052858336 + 177490 -6249.029 -6254.8809 5.8518597 3730.6429 634.25466 -10619.778 0 280.45395 0.00060528105 0.00056915856 + 177500 -6248.9219 -6254.765 5.8430807 3728.05 634.04885 -10616.864 0 280.03321 0.00063573859 0.00060176261 + 177510 -6248.9026 -6254.5711 5.6685084 3725.8535 633.85663 -10614.281 0 271.66673 0.00064822365 0.0006266928 + 177520 -6248.8816 -6254.3994 5.5178431 3724.1793 633.73661 -10612.315 0 264.446 0.00065778047 0.00064882538 + 177530 -6248.7671 -6254.3187 5.5516652 3723.0854 633.70579 -10611.11 0 266.06695 0.00067492478 0.00066879797 + 177540 -6248.5432 -6254.2728 5.7295575 3722.7567 633.73016 -10610.76 0 274.59254 0.00069160774 0.00067741906 + 177550 -6248.2812 -6254.1122 5.8310306 3723.4806 633.73448 -10611.327 0 279.45571 0.00068332734 0.00065836675 + 177560 -6248.0728 -6253.7375 5.6646911 3725.3951 633.62728 -10612.76 0 271.48378 0.000627046 0.00059847419 + 177570 -6247.9477 -6253.2238 5.2760292 3728.2189 633.34282 -10614.786 0 252.85692 0.00052149455 0.00049923205 + 177580 -6247.8484 -6252.8031 4.9546746 3731.2102 632.89476 -10616.908 0 237.45581 0.00039448042 0.00038205289 + 177590 -6247.6803 -6252.7045 5.0241651 3733.4269 632.41757 -10618.549 0 240.78618 0.00029256472 0.00028407806 + 177600 -6247.3878 -6252.98 5.5921987 3734.1294 632.15923 -10619.269 0 268.00954 0.00026120152 0.00024658648 + 177610 -6246.995 -6253.4569 6.4619102 3733.0796 632.40168 -10618.938 0 309.69099 0.0003269314 0.00030037501 + 177620 -6246.5868 -6253.8463 7.2594805 3730.5965 633.32648 -10617.769 0 347.91504 0.00048803606 0.00045257363 + 177630 -6246.2481 -6253.9213 7.673249 3727.4003 634.88811 -10616.21 0 367.74515 0.00071445924 0.00067955141 + 177640 -6246.0027 -6253.6463 7.6435963 3724.3678 636.77054 -10614.785 0 366.32402 0.00095571475 0.00092999052 + 177650 -6245.7991 -6253.1898 7.3907322 3722.3145 638.46544 -10613.97 0 354.20536 0.0011542801 0.0011386678 + 177660 -6245.5537 -6252.8183 7.2645532 3721.857 639.44694 -10614.122 0 348.15815 0.0012601373 0.0012463325 + 177670 -6245.2221 -6252.7289 7.506769 3723.3292 639.36927 -10615.427 0 359.76649 0.0012424357 0.0012184182 + 177680 -6244.8461 -6252.9267 8.0806448 3726.6819 638.20673 -10617.815 0 387.26984 0.0010974505 0.0010568542 + 177690 -6244.5381 -6253.2324 8.6943069 3731.3506 636.2829 -10620.866 0 416.67997 0.00085401242 0.00080247844 + 177700 -6244.4013 -6253.4215 9.0201783 3736.193 634.17624 -10623.791 0 432.29755 0.00057489115 0.00052731554 + 177710 -6244.4394 -6253.3901 8.9507283 3739.6752 632.53044 -10625.596 0 428.96912 0.00034713845 0.00031626209 + 177720 -6244.547 -6253.2014 8.6544123 3740.3968 631.83549 -10625.434 0 414.768 0.00025428043 0.0002397388 + 177730 -6244.6081 -6252.9663 8.3582606 3737.7733 632.25857 -10622.998 0 400.57475 0.00033623214 0.00032484864 + 177740 -6244.6093 -6252.6996 8.0903083 3732.4522 633.57991 -10618.732 0 387.73297 0.00056101894 0.00053896527 + 177750 -6244.6471 -6252.3293 7.682119 3726.1204 635.25436 -10613.704 0 368.17025 0.00083321012 0.0007983703 + 177760 -6244.8246 -6251.8501 7.0255009 3720.7711 636.59355 -10609.215 0 336.70142 0.0010391889 0.0010019176 + 177770 -6245.1503 -6251.4297 6.2793377 3717.8751 637.02471 -10606.329 0 300.9411 0.0011010832 0.0010735426 + 177780 -6245.5416 -6251.3304 5.7887836 3717.9086 636.32762 -10605.567 0 277.43099 0.0010065559 0.00099148336 + 177790 -6245.9185 -6251.7052 5.7866687 3720.3985 634.73491 -10606.839 0 277.32964 0.00080237199 0.0007915588 + 177800 -6246.2917 -6252.448 6.1563022 3724.3117 632.83853 -10609.598 0 295.04454 0.00056438145 0.00054753897 + 177810 -6246.7529 -6253.2452 6.4922811 3728.4889 631.33931 -10613.073 0 311.14654 0.00036615348 0.00034110669 + 177820 -6247.368 -6253.8059 6.4378666 3731.9351 630.7542 -10616.495 0 308.53869 0.00026010629 0.00023403982 + 177830 -6248.0867 -6254.0715 5.984761 3733.9871 631.22231 -10619.281 0 286.82333 0.00026971136 0.00025082179 + 177840 -6248.779 -6254.2135 5.4344714 3734.4404 632.49846 -10621.152 0 260.45036 0.00038578867 0.00037512117 + 177850 -6249.3475 -6254.446 5.0984163 3733.6069 634.10822 -10622.161 0 244.34472 0.00056765456 0.00055927383 + 177860 -6249.7861 -6254.8503 5.0641885 3732.2012 635.55669 -10622.608 0 242.70433 0.00075493572 0.00074239922 + 177870 -6250.148 -6255.345 5.1969853 3731.0447 636.4927 -10622.882 0 249.0687 0.00088916409 0.00087096825 + 177880 -6250.4835 -6255.7777 5.2941622 3730.7197 636.78601 -10623.283 0 253.72596 0.00093568611 0.00091531906 + 177890 -6250.8013 -6256.035 5.2337734 3731.3505 636.51747 -10623.903 0 250.83179 0.00089477491 0.00087652023 + 177900 -6251.0731 -6256.0877 5.0146548 3732.6102 635.90523 -10624.603 0 240.33039 0.0007963285 0.00078124654 + 177910 -6251.2697 -6255.9609 4.6912056 3733.9252 635.2031 -10625.089 0 224.82889 0.00068209266 0.0006678199 + 177920 -6251.3911 -6255.6881 4.2970413 3734.7393 634.60924 -10625.037 0 205.93833 0.00058679784 0.00057074445 + 177930 -6251.4631 -6255.3091 3.8460324 3734.701 634.21184 -10624.222 0 184.32345 0.0005283407 0.00051041934 + 177940 -6251.5086 -6254.9007 3.3921274 3733.7279 633.98196 -10622.611 0 162.56978 0.00050813544 0.00049015081 + 177950 -6251.5289 -6254.5793 3.0504331 3731.9919 633.80694 -10620.378 0 146.19387 0.00051555017 0.00049856752 + 177960 -6251.5123 -6254.4474 2.9350186 3729.8703 633.54612 -10617.864 0 140.66256 0.00053196767 0.00051510612 + 177970 -6251.4542 -6254.5317 3.0775239 3727.8541 633.09094 -10615.477 0 147.49221 0.00053599539 0.00051784447 + 177980 -6251.3621 -6254.7735 3.4114393 3726.4036 632.41753 -10613.595 0 163.49531 0.0005123408 0.00049292281 + 177990 -6251.2433 -6255.0717 3.8283804 3725.7933 631.62046 -10612.485 0 183.47747 0.00046147295 0.00044233526 + 178000 -6251.093 -6255.3339 4.2409033 3726.0323 630.91054 -10612.277 0 203.24788 0.00040280545 0.00038530643 + 178010 -6250.8994 -6255.4947 4.5953807 3726.9084 630.56108 -10612.964 0 220.23643 0.00036684411 0.00035086346 + 178020 -6250.6612 -6255.509 4.8478834 3728.1267 630.80657 -10614.442 0 232.33778 0.00037972443 0.00036441502 + 178030 -6250.3956 -6255.3611 4.9654959 3729.4492 631.72722 -10616.537 0 237.97443 0.00044959762 0.00043504568 + 178040 -6250.1207 -6255.0983 4.9776011 3730.756 633.17659 -10619.031 0 238.55458 0.00056282229 0.00054999948 + 178050 -6249.831 -6254.842 5.0110453 3732.0297 634.80742 -10621.679 0 240.15741 0.00069046175 0.00067896652 + 178060 -6249.4996 -6254.7235 5.2238693 3733.3048 636.20691 -10624.235 0 250.35713 0.00079956985 0.0007860579 + 178070 -6249.1141 -6254.771 5.6569637 3734.6107 637.08351 -10626.465 0 271.11344 0.00086415028 0.0008444487 + 178080 -6248.7098 -6254.853 6.1432723 3735.8969 637.4011 -10628.151 0 294.42008 0.00087437844 0.00084812472 + 178090 -6248.3548 -6254.7562 6.4014406 3736.9481 637.37418 -10629.079 0 306.79295 0.00084300283 0.00081567392 + 178100 -6248.0888 -6254.3563 6.2674513 3737.372 637.31951 -10629.048 0 300.37143 0.00080373436 0.00078254622 + 178110 -6247.8818 -6253.7279 5.846038 3736.7567 637.45478 -10627.939 0 280.17494 0.00079574934 0.00078276033 + 178120 -6247.6662 -6253.0906 5.4243916 3734.9618 637.76695 -10625.819 0 259.96728 0.00083858461 0.00082840451 + 178130 -6247.4059 -6252.6551 5.2492151 3732.3335 638.01748 -10623.006 0 251.57184 0.00091480586 0.00089954097 + 178140 -6247.1232 -6252.5159 5.3927159 3729.6335 637.86509 -10620.015 0 258.44921 0.00097623396 0.00095235157 + 178150 -6246.8652 -6252.6497 5.7844533 3727.692 637.03739 -10617.379 0 277.22346 0.00097120507 0.00094165919 + 178160 -6246.6571 -6252.9612 6.3041909 3727.0028 635.47467 -10615.439 0 302.1322 0.00087387095 0.00084456276 + 178170 -6246.4904 -6253.3179 6.8274584 3727.5033 633.38679 -10614.208 0 327.21011 0.00069746174 0.00067244105 + 178180 -6246.3463 -6253.5738 7.2274886 3728.6349 631.20304 -10613.412 0 346.38181 0.0004877764 0.00046741916 + 178190 -6246.2168 -6253.6188 7.402084 3729.6126 629.43826 -10612.67 0 354.7494 0.00030547003 0.00028775968 + 178200 -6246.1018 -6253.4436 7.3417946 3729.7601 628.52827 -10611.732 0 351.85999 0.00020667964 0.00018886711 + 178210 -6245.9986 -6253.1595 7.1608752 3728.7912 628.69516 -10610.646 0 343.18932 0.00022597702 0.00020527982 + 178220 -6245.9075 -6252.9303 7.0228051 3726.9529 629.88907 -10609.772 0 336.57223 0.0003638887 0.00033853477 + 178230 -6245.8461 -6252.868 7.0219142 3724.9646 631.81886 -10609.651 0 336.52953 0.00058437842 0.00055549633 + 178240 -6245.8397 -6252.9879 7.1482032 3723.7503 634.04928 -10610.787 0 342.58201 0.0008269076 0.00079880751 + 178250 -6245.8897 -6253.2459 7.3562005 3724.0767 636.12606 -10613.449 0 352.5504 0.0010291063 0.0010059116 + 178260 -6245.9602 -6253.588 7.627803 3726.2743 637.69323 -10617.556 0 365.56712 0.0011479253 0.0011289157 + 178270 -6246.0087 -6253.948 7.9393476 3730.1475 638.57429 -10622.67 0 380.49808 0.0011688113 0.0011475764 + 178280 -6246.0365 -6254.2137 8.1771929 3735.0512 638.79894 -10628.064 0 391.89697 0.0011025571 0.0010721866 + 178290 -6246.1043 -6254.2353 8.1310684 3740.0313 638.56896 -10632.836 0 389.68642 0.00097792977 0.00093838309 + 178300 -6246.2804 -6253.9192 7.6388231 3743.9702 638.17071 -10636.06 0 366.09526 0.00083701896 0.00079728534 + 178310 -6246.5619 -6253.3521 6.7902358 3745.7692 637.86 -10636.981 0 325.4262 0.00073081633 0.00070193261 + 178320 -6246.8514 -6252.818 5.966635 3744.6492 637.76113 -10635.228 0 285.95463 0.00070567606 0.00068987529 + 178330 -6247.0332 -6252.6237 5.5904816 3740.5466 637.82177 -10630.992 0 267.92725 0.00077861701 0.00076584017 + 178340 -6247.0814 -6252.8514 5.7700082 3734.3693 637.83943 -10625.06 0 276.53117 0.00091725276 0.00089408227 + 178350 -6247.0875 -6253.2853 6.1978386 3727.809 637.54443 -10618.639 0 297.0352 0.0010466793 0.0010092617 + 178360 -6247.175 -6253.5993 6.4242677 3722.6877 636.71009 -10612.997 0 307.88695 0.0010866129 0.0010443238 + 178370 -6247.3856 -6253.6175 6.2319453 3720.2129 635.25628 -10609.087 0 298.66979 0.00099461656 0.000961273 + 178380 -6247.6488 -6253.4144 5.76556 3720.5881 633.30733 -10607.31 0 276.31799 0.0007857061 0.00076768289 + 178390 -6247.855 -6253.2122 5.3571213 3723.1303 631.17661 -10607.519 0 256.74331 0.00051967661 0.00051170226 + 178400 -6247.9477 -6253.2065 5.2588339 3726.708 629.2835 -10609.198 0 252.03283 0.00027113474 0.00026193944 + 178410 -6247.9577 -6253.4627 5.5049676 3730.1986 628.03814 -10611.699 0 263.82893 0.00010288175 8.4509404e-05 + 178420 -6247.9673 -6253.925 5.9576948 3732.7775 627.73543 -10614.438 0 285.52616 5.2837423e-05 2.5878467e-05 + 178430 -6248.0456 -6254.4859 6.4402863 3734.0184 628.48747 -10616.992 0 308.65465 0.00013199783 0.00010356004 + 178440 -6248.2095 -6255.037 6.8274382 3733.8904 630.20497 -10619.132 0 327.20915 0.00032605827 0.00030334605 + 178450 -6248.4314 -6255.4729 7.0415094 3732.7269 632.62063 -10620.82 0 337.46864 0.00059712263 0.00058228004 + 178460 -6248.6778 -6255.6861 7.0082948 3731.1686 635.33938 -10622.194 0 335.87681 0.00088807284 0.00087782582 + 178470 -6248.9387 -6255.594 6.6553801 3730.0254 637.90479 -10623.524 0 318.96316 0.0011336561 0.0011228786 + 178480 -6249.2249 -6255.1965 5.9715752 3730.0319 639.88078 -10625.109 0 286.19139 0.0012778879 0.0012635358 + 178490 -6249.5456 -6254.6097 5.0640483 3731.5591 640.94667 -10627.115 0 242.69761 0.0012915603 0.0012741623 + 178500 -6249.8922 -6254.0314 4.1391934 3734.4191 640.98418 -10629.435 0 198.37337 0.0011817215 0.001164233 + 178510 -6250.2441 -6253.6526 3.4085177 3737.8805 640.11528 -10631.648 0 163.35529 0.00098852578 0.00097405135 + 178520 -6250.5817 -6253.5781 2.9963676 3740.9027 638.6577 -10633.138 0 143.60275 0.00077096713 0.00076073464 + 178530 -6250.891 -6253.8012 2.9101676 3742.4945 637.00835 -10633.304 0 139.47156 0.00058728601 0.00057971699 + 178540 -6251.1648 -6254.2264 3.0615561 3742.0537 635.50774 -10631.788 0 146.72695 0.0004767855 0.00046833439 + 178550 -6251.4071 -6254.7121 3.3049964 3739.5627 634.34367 -10628.618 0 158.39397 0.00044900793 0.00043665791 + 178560 -6251.6331 -6255.1248 3.4917016 3735.5716 633.52407 -10624.22 0 167.34193 0.00048423754 0.00046797576 + 178570 -6251.8575 -6255.3971 3.539581 3730.9878 632.91713 -10619.302 0 169.63658 0.00054504818 0.00052809533 + 178580 -6252.0784 -6255.5604 3.4819478 3726.7796 632.33706 -10614.677 0 166.87448 0.00059323892 0.00057951699 + 178590 -6252.2733 -6255.7196 3.4463029 3723.7261 631.6425 -10611.088 0 165.16617 0.00060389402 0.00059475457 + 178600 -6252.4144 -6255.977 3.562658 3722.2906 630.81086 -10609.079 0 170.74256 0.00057092151 0.00056393628 + 178610 -6252.4904 -6256.3521 3.8616765 3722.6077 629.9599 -10608.92 0 185.0732 0.00050417101 0.00049504165 + 178620 -6252.5175 -6256.7543 4.236844 3724.5209 629.30855 -10610.584 0 203.05334 0.00042259265 0.00040860932 + 178630 -6252.5285 -6257.03 4.5015576 3727.6248 629.0947 -10613.75 0 215.7399 0.00034816307 0.00033034625 + 178640 -6252.5479 -6257.0513 4.5033886 3731.3138 629.48665 -10617.852 0 215.82765 0.00030223735 0.00028437975 + 178650 -6252.5724 -6256.7853 4.2129302 3734.8718 630.52596 -10622.183 0 201.90725 0.00030271826 0.0002881966 + 178660 -6252.5759 -6256.3001 3.7241977 3737.6238 632.11959 -10626.043 0 178.48445 0.00036000558 0.00034919573 + 178670 -6252.5353 -6255.7134 3.1780907 3739.1112 634.07114 -10628.896 0 152.31194 0.00047234595 0.00046287304 + 178680 -6252.4515 -6255.1352 2.6837209 3739.2133 636.12547 -10630.474 0 128.61896 0.00062390962 0.00061325828 + 178690 -6252.3456 -6254.6493 2.3036463 3738.1484 638.00774 -10630.805 0 110.40366 0.00078833156 0.00077609693 + 178700 -6252.2336 -6254.3295 2.0958481 3736.3624 639.45565 -10630.148 0 100.4448 0.00093650406 0.00092406736 + 178710 -6252.1038 -6254.2455 2.1417484 3734.3821 640.25339 -10628.881 0 102.6446 0.0010438945 0.0010321553 + 178720 -6251.9191 -6254.426 2.506911 3732.705 640.26942 -10627.4 0 120.14524 0.001093587 0.0010815209 + 178730 -6251.6453 -6254.8092 3.1639007 3731.7307 639.48635 -10626.026 0 151.63187 0.0010758521 0.0010616188 + 178740 -6251.2813 -6255.2425 3.9611765 3731.6889 638.00582 -10624.937 0 189.8418 0.00098807153 0.00097138239 + 178750 -6250.8662 -6255.5534 4.6872095 3732.5508 636.0215 -10624.126 0 224.63738 0.00083695802 0.00081992524 + 178760 -6250.453 -6255.6445 5.1914808 3733.9788 633.77107 -10623.394 0 248.80489 0.00064081942 0.00062616915 + 178770 -6250.0733 -6255.5396 5.4662284 3735.3829 631.49219 -10622.415 0 261.97234 0.0004282814 0.00041667473 + 178780 -6249.7288 -6255.3504 5.6216247 3736.0908 629.40598 -10620.847 0 269.4198 0.00023308838 0.00022223957 + 178790 -6249.4115 -6255.192 5.7804427 3735.562 627.73099 -10618.485 0 277.03125 8.8318549e-05 7.477086e-05 + 178800 -6249.1257 -6255.1087 5.9830019 3733.5587 626.70199 -10615.369 0 286.73902 2.2640074e-05 4.5219542e-06 + 178810 -6248.8868 -6255.0549 6.1680738 3730.2234 626.55617 -10611.834 0 295.60871 5.7117884e-05 3.5502747e-05 + 178820 -6248.707 -6254.9286 6.2216441 3726.0716 627.46788 -10608.468 0 298.17609 0.00019936807 0.00017745827 + 178830 -6248.5835 -6254.632 6.0484579 3721.9238 629.44956 -10606.005 0 289.87604 0.00043557764 0.00041677656 + 178840 -6248.4964 -6254.1339 5.6374832 3718.7826 632.26781 -10605.184 0 270.17983 0.00072606981 0.00071214601 + 178850 -6248.4129 -6253.5124 5.0994413 3717.6444 635.43252 -10606.589 0 244.39384 0.0010101482 0.0010000189 + 178860 -6248.2998 -6252.9385 4.6386717 3719.2627 638.29519 -10610.496 0 222.31117 0.001220449 0.001210313 + 178870 -6248.1432 -6252.5933 4.4501401 3723.9036 640.24159 -10616.738 0 213.27568 0.0013021457 0.0012877865 + 178880 -6247.9591 -6252.5676 4.6084841 3731.1445 640.90769 -10624.62 0 220.86442 0.0012316502 0.0012119888 + 178890 -6247.7794 -6252.8226 5.0432195 3739.7865 640.32168 -10632.931 0 241.69937 0.0010298506 0.0010086308 + 178900 -6247.6172 -6253.239 5.6217468 3747.978 638.89888 -10640.116 0 269.42565 0.0007635616 0.00074656708 + 178910 -6247.4429 -6253.6968 6.253903 3753.6251 637.28073 -10644.603 0 299.72212 0.00052878309 0.0005180189 + 178920 -6247.2045 -6254.107 6.9024632 3755.0364 636.08423 -10645.228 0 330.80477 0.00041609847 0.00040647135 + 178930 -6246.8878 -6254.379 7.4911828 3751.5624 635.66994 -10641.611 0 359.01951 0.00047147276 0.00045447439 + 178940 -6246.5543 -6254.4023 7.8480614 3743.9019 636.02072 -10634.325 0 376.12314 0.00067423238 0.00064620222 + 178950 -6246.304 -6254.1122 7.8081755 3733.8869 636.76799 -10624.767 0 374.21158 0.00094657995 0.0009132826 + 178960 -6246.1883 -6253.5877 7.3994347 3723.8629 637.34617 -10614.797 0 354.62243 0.0011883802 0.0011605638 + 178970 -6246.1614 -6253.0601 6.8986537 3715.9915 637.2125 -10606.264 0 330.62219 0.001315328 0.0012991761 + 178980 -6246.1203 -6252.7874 6.6671359 3711.7595 636.0495 -10600.596 0 319.52656 0.0012819063 0.0012733532 + 178990 -6245.9904 -6252.8863 6.8959659 3711.7685 633.88158 -10598.536 0 330.49338 0.0010861329 0.001074015 + 179000 -6245.7864 -6253.2492 7.4628125 3715.7211 631.08105 -10600.051 0 357.65985 0.00076431472 0.00073953104 + 179010 -6245.6031 -6253.6105 8.0073838 3722.5019 628.27648 -10604.389 0 383.75876 0.00038383495 0.00034697219 + 179020 -6245.5406 -6253.722 8.1814162 3730.3492 626.19302 -10610.264 0 392.09937 3.4808753e-05 -4.1811624e-06 + 179030 -6245.6201 -6253.516 7.8959064 3737.1911 625.45902 -10616.166 0 378.41614 -0.00018519129 -0.00021530663 + 179040 -6245.768 -6253.132 7.3640048 3741.1935 626.42256 -10620.748 0 352.92443 -0.00019813958 -0.00021640951 + 179050 -6245.8881 -6252.788 6.8999721 3741.3908 629.02742 -10623.206 0 330.68538 2.1800677e-05 8.8664466e-06 + 179060 -6245.9486 -6252.6159 6.667319 3738.0935 632.79234 -10623.502 0 319.53534 0.0004282491 0.0004118434 + 179070 -6245.996 -6252.6095 6.6135217 3732.7883 636.91527 -10622.313 0 316.95707 0.00091245425 0.00088955428 + 179080 -6246.0924 -6252.7039 6.6114985 3727.5362 640.49051 -10620.731 0 316.86011 0.001342365 0.0013167531 + 179090 -6246.2541 -6252.8599 6.6057818 3724.1904 642.77882 -10619.829 0 316.58613 0.0016102046 0.0015868629 + 179100 -6246.4523 -6253.0574 6.6050935 3723.8107 643.42928 -10620.297 0 316.55314 0.0016644987 0.0016444999 + 179110 -6246.6594 -6253.2436 6.5841647 3726.4482 642.55508 -10622.247 0 315.55011 0.0015167636 0.0014975895 + 179120 -6246.8786 -6253.3329 6.4542378 3731.2568 640.63338 -10625.223 0 309.32329 0.0012282649 0.0012077947 + 179130 -6247.1318 -6253.2806 6.1488357 3736.8105 638.28862 -10628.38 0 294.68671 0.00088672521 0.00086601224 + 179140 -6247.4274 -6253.1545 5.7271107 3741.5225 636.06768 -10630.745 0 274.47528 0.00058027642 0.0005625597 + 179150 -6247.748 -6253.127 5.3790634 3744.0735 634.29969 -10631.5 0 257.7949 0.00037415366 0.00036154616 + 179160 -6248.0662 -6253.3773 5.3111522 3743.76 633.07399 -10630.211 0 254.54021 0.0002957411 0.00028692619 + 179170 -6248.3736 -6253.9667 5.5931248 3740.6713 632.30917 -10626.947 0 268.05392 0.00033219187 0.00032326257 + 179180 -6248.6939 -6254.7758 6.0819176 3735.633 631.85634 -10622.265 0 291.47962 0.00044078405 0.00042841535 + 179190 -6249.0662 -6255.5537 6.4874798 3729.925 631.584 -10617.063 0 310.91643 0.00056747139 0.00055149502 + 179200 -6249.5089 -6256.0491 6.5402802 3724.8789 631.4178 -10612.346 0 313.44692 0.00066606914 0.00064921618 + 179210 -6249.9929 -6256.1348 6.1418879 3721.5136 631.33664 -10608.985 0 294.35373 0.00071072235 0.00069604544 + 179220 -6250.4533 -6255.8525 5.3991762 3720.3358 631.34514 -10607.533 0 258.75882 0.00069811345 0.00068652023 + 179230 -6250.8285 -6255.3669 4.5383532 3721.3289 631.44707 -10608.143 0 217.50335 0.0006412956 0.00063111572 + 179240 -6251.095 -6254.871 3.776026 3724.0686 631.6367 -10610.576 0 180.96835 0.00056059061 0.00054921179 + 179250 -6251.2713 -6254.5043 3.2329932 3727.8798 631.90851 -10614.293 0 154.94317 0.00047669735 0.00046277505 + 179260 -6251.3953 -6254.3233 2.9279623 3731.9791 632.27176 -10618.574 0 140.32438 0.00040796789 0.00039238426 + 179270 -6251.4936 -6254.322 2.8284304 3735.5966 632.75312 -10622.672 0 135.55426 0.00037026818 0.00035502228 + 179280 -6251.5674 -6254.4701 2.9026769 3738.0944 633.38083 -10625.945 0 139.11257 0.00037629953 0.00036227934 + 179290 -6251.6004 -6254.7296 3.1291666 3739.0911 634.15889 -10627.98 0 149.96722 0.00043261571 0.00041835684 + 179300 -6251.5821 -6255.0486 3.4665261 3738.556 635.04796 -10628.653 0 166.13538 0.00053558924 0.00051847971 + 179310 -6251.525 -6255.3556 3.8306368 3736.8195 635.96295 -10628.138 0 183.58561 0.00066965639 0.00064883876 + 179320 -6251.4592 -6255.584 4.1247772 3734.4677 636.78419 -10626.836 0 197.68247 0.00081030724 0.00078855465 + 179330 -6251.404 -6255.7178 4.3137421 3732.1563 637.37178 -10625.246 0 206.73873 0.00093077107 0.00091300573 + 179340 -6251.3427 -6255.8127 4.4699628 3730.4359 637.58041 -10623.829 0 214.2257 0.0010081749 0.00099732614 + 179350 -6251.228 -6255.9527 4.7246703 3729.6643 637.28206 -10622.899 0 226.43271 0.0010256908 0.0010195415 + 179360 -6251.0185 -6256.1621 5.1435727 3729.997 636.40312 -10622.562 0 246.50886 0.00097178499 0.000964059 + 179370 -6250.717 -6256.3469 5.6298726 3731.3843 634.97015 -10622.701 0 269.81509 0.00084139729 0.00082662579 + 179380 -6250.3755 -6256.3254 5.9498899 3733.5221 633.14448 -10622.992 0 285.15211 0.00064222189 0.00062036865 + 179390 -6250.0591 -6255.9406 5.8815535 3735.7986 631.22167 -10622.961 0 281.87704 0.00040302886 0.00037973394 + 179400 -6249.7957 -6255.1765 5.3807463 3737.3432 629.581 -10622.101 0 257.87556 0.00017566674 0.00015755919 + 179410 -6249.5582 -6254.1904 4.6321798 3737.2571 628.59176 -10620.039 0 222.00005 2.3711048e-05 1.2688504e-05 + 179420 -6249.2951 -6253.2345 3.9394308 3734.9811 628.50563 -10616.721 0 188.79963 -4.9245158e-07 -8.8516581e-06 + 179430 -6248.9789 -6252.5269 3.5480147 3730.6264 629.37318 -10612.526 0 170.04077 0.00012116575 0.00010885076 + 179440 -6248.6243 -6252.1741 3.5497747 3725.0729 631.01455 -10608.262 0 170.12512 0.00036295454 0.00034388484 + 179450 -6248.2605 -6252.1856 3.9251228 3719.7544 633.05678 -10604.997 0 188.11391 0.00066418566 0.00064156457 + 179460 -6247.8899 -6252.5259 4.6359882 3716.2264 635.0329 -10603.785 0 222.18257 0.00095007295 0.00092937377 + 179470 -6247.484 -6253.1242 5.6401891 3715.704 636.5173 -10605.345 0 270.30951 0.0011529485 0.0011360317 + 179480 -6247.0283 -6253.8369 6.8086205 3718.7219 637.25203 -10609.811 0 326.3073 0.0012269221 0.001210057 + 179490 -6246.5699 -6254.4424 7.8724682 3724.9687 637.21355 -10616.625 0 377.29285 0.0011570797 0.0011350155 + 179500 -6246.2026 -6254.7271 8.5244977 3733.2968 636.59503 -10624.619 0 408.54176 0.00096576935 0.00093754869 + 179510 -6245.9966 -6254.6176 8.6209949 3741.9109 635.72397 -10632.252 0 413.16645 0.00071246489 0.00068280644 + 179520 -6245.947 -6254.2393 8.2922281 3748.7488 634.96109 -10637.949 0 397.4101 0.00048062963 0.00045568309 + 179530 -6245.9872 -6253.8346 7.8473473 3752.019 634.6141 -10640.468 0 376.08892 0.00035176361 0.00033386835 + 179540 -6246.0436 -6253.5992 7.5555928 3750.7536 634.86931 -10639.222 0 362.1064 0.00037652227 0.00036281381 + 179550 -6246.0802 -6253.5643 7.4840847 3745.1643 635.7342 -10634.463 0 358.67933 0.00055548113 0.00054069871 + 179560 -6246.1048 -6253.6034 7.4985873 3736.6374 637.0019 -10627.243 0 359.37438 0.00083686015 0.00081717913 + 179570 -6246.1458 -6253.5389 7.3930892 3727.3504 638.26776 -10619.157 0 354.31832 0.0011314146 0.0011064737 + 179580 -6246.2252 -6253.266 7.0407858 3719.6364 639.02262 -10611.925 0 337.43396 0.0013398632 0.0013124157 + 179590 -6246.3431 -6252.8218 6.4786353 3715.3047 638.81309 -10606.94 0 310.49255 0.0013849234 0.001358972 + 179600 -6246.4792 -6252.3734 5.8941721 3715.139 637.41848 -10604.931 0 282.4818 0.0012376618 0.0012161901 + 179610 -6246.6044 -6252.1361 5.5317245 3718.7299 634.97211 -10605.838 0 265.11128 0.00092856905 0.00091196683 + 179620 -6246.6967 -6252.2634 5.5666789 3724.6781 631.96695 -10608.908 0 266.78649 0.0005388904 0.00052497736 + 179630 -6246.7535 -6252.7641 6.0105736 3731.0724 629.12958 -10612.966 0 288.06041 0.00017515633 0.0001608172 + 179640 -6246.7944 -6253.4923 6.6978969 3736.0684 627.20018 -10616.761 0 321.0008 -6.4165279e-05 -8.0988539e-05 + 179650 -6246.8507 -6254.212 7.3613772 3738.4001 626.69627 -10619.308 0 352.7985 -0.00011867019 -0.00013819144 + 179660 -6246.9485 -6254.6979 7.7493273 3737.6978 627.74724 -10620.143 0 371.39125 1.7088588e-05 -4.2241705e-06 + 179670 -6247.096 -6254.8177 7.7216388 3734.5369 630.061 -10619.416 0 370.06426 0.00029507731 0.00027287754 + 179680 -6247.2818 -6254.5703 7.288483 3730.1977 633.03088 -10617.799 0 349.305 0.00063220811 0.00060960579 + 179690 -6247.485 -6254.074 6.5889848 3726.2146 635.93549 -10616.224 0 315.78112 0.00093786845 0.00091533202 + 179700 -6247.6881 -6253.5177 5.8296342 3723.8817 638.15291 -10615.552 0 279.38878 0.0011404481 0.0011190087 + 179710 -6247.881 -6253.1005 5.219459 3723.8814 639.31629 -10616.298 0 250.14576 0.0012053667 0.0011864183 + 179720 -6248.0533 -6252.9808 4.9274953 3726.1377 639.37143 -10618.49 0 236.15322 0.0011407063 0.0011245443 + 179730 -6248.1898 -6253.2348 5.0450858 3729.9175 638.53884 -10621.691 0 241.78882 0.00098909477 0.00097334772 + 179740 -6248.2837 -6253.8117 5.5279998 3734.1288 637.21141 -10625.152 0 264.93277 0.00080850388 0.00078882492 + 179750 -6248.3601 -6254.5184 6.1582495 3737.6842 635.82516 -10628.028 0 295.13787 0.00065049793 0.00062415066 + 179760 -6248.4726 -6255.0851 6.6125357 3739.7752 634.73379 -10629.594 0 316.90981 0.00054642163 0.00051566976 + 179770 -6248.6619 -6255.3069 6.6449629 3739.9868 634.11442 -10629.408 0 318.46391 0.00050567663 0.00047693823 + 179780 -6248.9145 -6255.163 6.2485494 3738.3007 633.93234 -10627.396 0 299.46555 0.00052089038 0.00049973619 + 179790 -6249.1696 -6254.814 5.644384 3735.0718 633.97989 -10623.866 0 270.51055 0.00057249489 0.00055928963 + 179800 -6249.3724 -6254.4815 5.1090223 3730.9848 633.97663 -10619.443 0 244.85302 0.00063176459 0.00062214161 + 179810 -6249.5135 -6254.3138 4.8003116 3726.9296 633.69163 -10614.935 0 230.05787 0.00066717013 0.00065633352 + 179820 -6249.6225 -6254.3322 4.7097008 3723.7704 633.04209 -10611.145 0 225.71529 0.00065590643 0.00064226792 + 179830 -6249.7321 -6254.4593 4.7272291 3722.0936 632.13124 -10608.684 0 226.55534 0.00059473725 0.00058002934 + 179840 -6249.8528 -6254.5813 4.7284972 3722.0614 631.20914 -10607.852 0 226.61612 0.00050188655 0.00048877904 + 179850 -6249.9728 -6254.6015 4.6286952 3723.4323 630.56807 -10608.602 0 221.83305 0.00040778635 0.00039773193 + 179860 -6250.0729 -6254.4828 4.4099358 3725.7111 630.41581 -10610.61 0 211.34887 0.00034072068 0.00033339021 + 179870 -6250.1374 -6254.2722 4.134761 3728.3375 630.78726 -10613.397 0 198.16095 0.00031602807 0.00030983771 + 179880 -6250.1593 -6254.0897 3.9303594 3730.836 631.54042 -10616.466 0 188.36488 0.00033350242 0.00032645583 + 179890 -6250.141 -6254.0726 3.9316148 3732.8875 632.43856 -10619.399 0 188.42504 0.00038203914 0.00037269341 + 179900 -6250.0911 -6254.3013 4.2102207 3734.3224 633.27213 -10621.896 0 201.7774 0.00044770738 0.00043605778 + 179910 -6250.0158 -6254.7526 4.7367027 3735.0693 633.95399 -10623.776 0 227.00937 0.0005212727 0.00050888277 + 179920 -6249.91 -6255.3086 5.3986228 3735.1132 634.53941 -10624.961 0 258.7323 0.00060189701 0.00059069197 + 179930 -6249.7533 -6255.8088 6.0555 3734.5022 635.16422 -10625.475 0 290.21354 0.00069470598 0.00068487861 + 179940 -6249.5223 -6256.105 6.5827445 3733.3996 635.93713 -10625.442 0 315.48205 0.00080223206 0.00079105727 + 179950 -6249.215 -6256.0897 6.8747061 3732.1264 636.84573 -10625.062 0 329.47449 0.00091418883 0.00089763181 + 179960 -6248.8675 -6255.7064 6.838874 3731.1162 637.72641 -10624.549 0 327.75721 0.0010039323 0.00098050269 + 179970 -6248.537 -6254.9785 6.4414925 3730.7433 638.31285 -10624.035 0 308.71246 0.0010375855 0.0010107343 + 179980 -6248.2568 -6254.0461 5.7892956 3731.1052 638.33832 -10623.49 0 277.45553 0.00099180924 0.00096764866 + 179990 -6248.0056 -6253.1457 5.1400461 3731.9157 637.64568 -10622.707 0 246.33985 0.00086763105 0.00084964021 + 180000 -6247.7236 -6252.5062 4.7825384 3732.6029 636.26039 -10621.369 0 229.20608 0.00069109419 0.00067702733 + 180010 -6247.3568 -6252.2303 4.8735312 3732.5481 634.40242 -10619.181 0 233.56696 0.00050315436 0.0004869903 + 180020 -6246.8903 -6252.2561 5.3658705 3731.3229 632.43655 -10616.016 0 257.16262 0.00034732649 0.00032407993 + 180030 -6246.3536 -6252.4204 6.0668208 3728.8389 630.77602 -10612.035 0 290.75609 0.00025975724 0.00022901131 + 180040 -6245.7997 -6252.5669 6.7671349 3725.3963 629.76148 -10607.725 0 324.31907 0.00026122863 0.00022702989 + 180050 -6245.2733 -6252.6288 7.3554572 3721.6448 629.54923 -10603.823 0 352.51478 0.00035047162 0.00031813976 + 180060 -6244.7901 -6252.6433 7.8532872 3718.4648 630.05336 -10601.162 0 376.37359 0.00050102492 0.00047352034 + 180070 -6244.3446 -6252.703 8.358465 3716.7769 630.97621 -10600.456 0 400.58454 0.00066544765 0.00064198765 + 180080 -6243.9358 -6252.883 8.9472211 3717.2977 631.92477 -10602.105 0 428.80104 0.00078875897 0.00076630112 + 180090 -6243.5858 -6253.1883 9.6024349 3720.2856 632.57243 -10606.046 0 460.20256 0.0008281353 0.00080408865 + 180100 -6243.3362 -6253.5409 10.204651 3725.3547 632.80369 -10611.699 0 489.06413 0.00077153283 0.00074545614 + 180110 -6243.2266 -6253.8074 10.580763 3731.457 632.77996 -10618.044 0 507.08952 0.00064678072 0.00061999501 + 180120 -6243.2724 -6253.8467 10.574306 3737.1085 632.88644 -10623.842 0 506.78006 0.00051506516 0.00048907553 + 180130 -6243.4571 -6253.5594 10.102332 3740.83 633.56439 -10627.954 0 484.16045 0.0004486745 0.00042425402 + 180140 -6243.7392 -6252.934 9.1947661 3741.6403 635.08934 -10629.664 0 440.66479 0.00050105787 0.00047860102 + 180150 -6244.0644 -6252.083 8.0186154 3739.396 637.39296 -10628.872 0 384.29704 0.00068238274 0.00066238576 + 180160 -6244.3808 -6251.2415 6.8607339 3734.8448 640.01681 -10626.103 0 328.80487 0.0009515375 0.00093424198 + 180170 -6244.6554 -6250.7 6.044617 3729.3875 642.23007 -10622.318 0 289.69196 0.0012278054 0.0012125054 + 180180 -6244.8831 -6250.6889 5.8058212 3724.6382 643.27227 -10618.599 0 278.24753 0.001417408 0.0014024207 + 180190 -6245.0834 -6251.2684 6.1850494 3721.9255 642.63101 -10615.825 0 296.42227 0.0014452311 0.001428792 + 180200 -6245.2923 -6252.283 6.9907377 3721.8826 640.2482 -10614.414 0 335.03537 0.0012810936 0.0012626356 + 180210 -6245.5518 -6253.4137 7.8618877 3724.2499 636.56909 -10614.233 0 376.78577 0.00095206815 0.00093290367 + 180220 -6245.89 -6254.3161 8.4261346 3727.9555 632.40616 -10614.678 0 403.82765 0.00053627486 0.00051872693 + 180230 -6246.2971 -6254.7761 8.4789644 3731.4705 628.67144 -10614.918 0 406.35955 0.00013885514 0.00012399628 + 180240 -6246.7241 -6254.7863 8.0621644 3733.3431 626.09424 -10614.224 0 386.38416 -0.00014237845 -0.00015639703 + 180250 -6247.1166 -6254.5004 7.3837798 3732.7241 625.03977 -10612.264 0 353.87216 -0.0002482321 -0.00026507599 + 180260 -6247.4546 -6254.1161 6.6615193 3729.6612 625.47691 -10609.254 0 319.25738 -0.00017330026 -0.00019503265 + 180270 -6247.7558 -6253.7816 6.0258662 3725.0348 627.06654 -10605.883 0 288.79332 3.9562264e-05 1.4968538e-05 + 180280 -6248.044 -6253.5735 5.5295723 3720.2023 629.30491 -10603.081 0 265.00813 0.00031937359 0.0002969539 + 180290 -6248.3178 -6253.5196 5.201813 3716.5507 631.66553 -10601.736 0 249.30007 0.00059087666 0.00057477848 + 180300 -6248.5478 -6253.6211 5.0733315 3715.1347 633.70956 -10602.465 0 243.14251 0.00079366477 0.00078364107 + 180310 -6248.7 -6253.855 5.1550629 3716.4706 635.15583 -10605.481 0 247.05954 0.00089305603 0.00088407345 + 180320 -6248.7663 -6254.1635 5.3971972 3720.4676 635.9123 -10610.543 0 258.66397 0.00088282252 0.00086829059 + 180330 -6248.7817 -6254.4515 5.6698218 3726.4542 636.07097 -10616.977 0 271.72967 0.00078211563 0.00075895151 + 180340 -6248.8094 -6254.6172 5.8077885 3733.273 635.86395 -10623.754 0 278.34181 0.00062993583 0.00060191821 + 180350 -6248.8951 -6254.6239 5.7287751 3739.449 635.57997 -10629.653 0 274.55505 0.00047859427 0.00045439008 + 180360 -6249.0209 -6254.56 5.5391039 3743.4761 635.45772 -10633.494 0 265.46494 0.0003831282 0.00036907359 + 180370 -6249.1118 -6254.5945 5.4826685 3744.2416 635.59644 -10634.433 0 262.76024 0.00038298683 0.00037667616 + 180380 -6249.1057 -6254.8218 5.7160829 3741.4665 635.92528 -10632.214 0 273.94677 0.00048118597 0.00047297095 + 180390 -6249.0183 -6255.1385 6.1202071 3735.8897 636.24129 -10627.269 0 293.31466 0.00063651933 0.00061831369 + 180400 -6248.9323 -6255.2983 6.3660481 3729.0078 636.29258 -10620.599 0 305.09675 0.0007800064 0.00075259179 + 180410 -6248.9197 -6255.1007 6.181016 3722.4949 635.87197 -10613.468 0 296.22897 0.00084754261 0.00081935342 + 180420 -6248.9797 -6254.5371 5.5573994 3717.6446 634.89017 -10607.072 0 266.34176 0.00080739468 0.00078687766 + 180430 -6249.0483 -6253.7903 4.7419575 3715.0958 633.40626 -10602.292 0 227.26121 0.00066754966 0.00065656997 + 180440 -6249.0566 -6253.1219 4.065334 3714.8638 631.60939 -10599.595 0 194.83362 0.00046444249 0.00045770274 + 180450 -6248.9798 -6252.7444 3.7646175 3716.539 629.76618 -10599.05 0 180.4216 0.00024478549 0.00023463909 + 180460 -6248.8458 -6252.7488 3.9030407 3719.4935 628.15862 -10600.401 0 187.05561 5.1338849e-05 3.3794981e-05 + 180470 -6248.7049 -6253.1069 4.402032 3723.0113 627.03389 -10603.152 0 210.97007 -8.3142292e-05 -0.00010567744 + 180480 -6248.5886 -6253.7214 5.1328004 3726.355 626.57508 -10606.651 0 245.9926 -0.00013599278 -0.00015717864 + 180490 -6248.4862 -6254.4697 5.9835486 3728.8473 626.88866 -10610.206 0 286.76522 -9.4220794e-05 -0.00010938769 + 180500 -6248.3622 -6255.2096 6.8474106 3730.0241 627.99577 -10613.23 0 328.16634 4.2299804e-05 3.2277842e-05 + 180510 -6248.2015 -6255.7683 7.5668058 3729.8135 629.81591 -10615.398 0 362.64379 0.00025534895 0.00024541402 + 180520 -6248.0347 -6255.9739 7.9391292 3728.6038 632.14632 -10616.724 0 380.48762 0.00050697974 0.00049289666 + 180530 -6247.9145 -6255.7436 7.8290531 3727.1047 634.66011 -10617.508 0 375.21216 0.00074734025 0.00072918597 + 180540 -6247.8671 -6255.1551 7.2879913 3726.0558 636.95236 -10618.163 0 349.28144 0.0009292715 0.00091039489 + 180550 -6247.8739 -6254.4175 6.543594 3725.9494 638.63861 -10619.006 0 313.60574 0.0010216263 0.0010051227 + 180560 -6247.8948 -6253.7514 5.8565255 3726.8866 639.46855 -10620.107 0 280.67757 0.0010154356 0.001001978 + 180570 -6247.8992 -6253.2737 5.3744602 3728.5855 639.39637 -10621.256 0 257.57429 0.000922933 0.00091123136 + 180580 -6247.8761 -6252.9703 5.0941368 3730.4942 638.57061 -10622.035 0 244.13962 0.00077211949 0.0007604713 + 180590 -6247.8264 -6252.757 4.9306048 3731.9583 637.25187 -10621.967 0 236.30225 0.00059866996 0.00058586595 + 180600 -6247.7526 -6252.5704 4.8177986 3732.4018 635.70453 -10620.677 0 230.89594 0.00043656279 0.00042185915 + 180610 -6247.6559 -6252.423 4.767071 3731.4781 634.11767 -10618.019 0 228.46479 0.00031014392 0.00029306666 + 180620 -6247.5392 -6252.3961 4.8568285 3729.1567 632.58873 -10614.141 0 232.76647 0.00023087223 0.00021151745 + 180630 -6247.409 -6252.585 5.1759812 3725.7268 631.16517 -10609.477 0 248.06206 0.00019965792 0.00017929139 + 180640 -6247.2703 -6253.038 5.7676634 3721.7283 629.90478 -10604.671 0 276.41879 0.00021195544 0.00019294314 + 180650 -6247.1193 -6253.7224 6.60305 3717.8403 628.90688 -10600.47 0 316.4552 0.0002609371 0.00024531567 + 180660 -6246.9449 -6254.5228 7.5778912 3714.7736 628.28969 -10597.586 0 363.17506 0.00033601407 0.00032350507 + 180670 -6246.7452 -6255.2607 8.5154683 3713.1825 628.12893 -10596.572 0 408.10902 0.00041871687 0.00040614162 + 180680 -6246.5458 -6255.735 9.1892071 3713.5672 628.4027 -10597.705 0 440.39837 0.00048184724 0.00046495107 + 180690 -6246.3969 -6255.7852 9.3883375 3716.128 628.9868 -10600.9 0 449.94181 0.00049666566 0.0004731084 + 180700 -6246.3468 -6255.3555 9.008713 3720.6014 629.71352 -10605.67 0 431.74807 0.00044663055 0.00041787568 + 180710 -6246.412 -6254.5268 8.1148078 3726.1752 630.46292 -10611.165 0 388.90712 0.00034026003 0.00031103519 + 180720 -6246.5665 -6253.5036 6.9370792 3731.582 631.22972 -10616.315 0 332.46376 0.00021496065 0.0001904917 + 180730 -6246.753 -6252.558 5.8049779 3735.4012 632.12077 -10620.08 0 278.20711 0.0001276606 0.00011015035 + 180740 -6246.9118 -6251.9418 5.0300163 3736.5029 633.27977 -10621.724 0 241.06661 0.00013381018 0.0001205648 + 180750 -6247.0146 -6251.7865 4.771966 3734.4813 634.77708 -10621.045 0 228.69939 0.00026223941 0.00024741688 + 180760 -6247.0841 -6252.0445 4.9604729 3729.8764 636.52082 -10618.442 0 237.73369 0.00049759273 0.00047682548 + 180770 -6247.1813 -6252.5253 5.3439685 3724.047 638.2338 -10614.806 0 256.11296 0.00078055103 0.00075463564 + 180780 -6247.363 -6253.0142 5.6511612 3718.7237 639.51086 -10611.249 0 270.83536 0.0010272334 0.0010013723 + 180790 -6247.6418 -6253.3902 5.7484199 3715.4395 639.93814 -10608.768 0 275.49654 0.0011585282 0.0011377447 + 180800 -6247.9839 -6253.6606 5.6767267 3715.0729 639.23302 -10607.967 0 272.0606 0.0011258884 0.0011109666 + 180810 -6248.3451 -6253.9076 5.5624369 3717.6386 637.35615 -10608.902 0 266.58319 0.00092468136 0.00091221996 + 180820 -6248.7084 -6254.2073 5.4988708 3722.3338 634.55683 -10611.098 0 263.53674 0.00059403513 0.00058002593 + 180830 -6249.0876 -6254.5808 5.4931955 3727.777 631.33504 -10613.693 0 263.26475 0.00020661774 0.00018993704 + 180840 -6249.5011 -6254.9946 5.4934233 3732.3678 628.32902 -10615.691 0 263.27567 -0.00014828667 -0.00016540025 + 180850 -6249.9446 -6255.389 5.4444481 3734.7025 626.15752 -10616.249 0 260.9285 -0.00038612617 -0.0004005346 + 180860 -6250.3855 -6255.7026 5.3171077 3733.967 625.25874 -10614.928 0 254.82564 -0.00044964243 -0.00046019847 + 180870 -6250.7828 -6255.8803 5.0974496 3730.2052 625.76928 -10611.855 0 244.29839 -0.00032687025 -0.00033518812 + 180880 -6251.1112 -6255.8816 4.7703582 3724.3595 627.47726 -10607.718 0 228.62233 -5.7437172e-05 -6.6177956e-05 + 180890 -6251.3687 -6255.7035 4.3348009 3718.0323 629.86824 -10603.604 0 207.74798 0.00027743327 0.0002668271 + 180900 -6251.567 -6255.4083 3.8412612 3713.0233 632.2623 -10600.694 0 184.09479 0.00057936196 0.00056737055 + 180910 -6251.7182 -6255.1199 3.4017366 3710.7976 634.01234 -10599.93 0 163.0303 0.00076313909 0.00075110382 + 180920 -6251.8291 -6254.9724 3.1433109 3712.062 634.70358 -10601.738 0 150.64509 0.00078201854 0.0007708029 + 180930 -6251.9042 -6255.0388 3.1345607 3716.5721 634.28201 -10605.893 0 150.22574 0.0006401093 0.00062974605 + 180940 -6251.9472 -6255.2891 3.3418667 3723.2046 633.06065 -10611.554 0 160.161 0.00038929472 0.00037949205 + 180950 -6251.9601 -6255.6061 3.6460035 3730.2639 631.59962 -10617.47 0 174.73695 0.00011249988 0.00010308074 + 180960 -6251.9412 -6255.8444 3.9032125 3735.9394 630.50536 -10622.289 0 187.06385 -0.00010182192 -0.00011106009 + 180970 -6251.8861 -6255.8963 4.0101648 3738.7968 630.22284 -10624.916 0 192.1896 -0.00018674125 -0.00019640392 + 180980 -6251.793 -6255.7323 3.9392836 3738.1641 630.89246 -10624.789 0 188.79257 -0.00011712716 -0.00012816415 + 180990 -6251.6676 -6255.4037 3.736055 3734.2973 632.3145 -10622.016 0 179.05272 8.3562015e-05 7.0574558e-05 + 181000 -6251.5224 -6255.0161 3.4936912 3728.2772 634.02459 -10617.318 0 167.43728 0.00035223075 0.00033790869 + 181010 -6251.3674 -6254.6943 3.3269272 3721.6738 635.44871 -10611.817 0 159.44502 0.00060743961 0.00059356469 + 181020 -6251.1956 -6254.5474 3.3517764 3716.0984 636.08545 -10606.731 0 160.63593 0.00077516807 0.00076340675 + 181030 -6250.977 -6254.6355 3.658557 3712.7908 635.6595 -10603.086 0 175.33858 0.00080996853 0.00080013344 + 181040 -6250.6712 -6254.9382 4.2670089 3712.3559 634.20289 -10601.497 0 204.49901 0.00070513534 0.00069459688 + 181050 -6250.2587 -6255.3392 5.0804826 3714.6845 632.04332 -10602.067 0 243.48523 0.00049060909 0.0004758821 + 181060 -6249.7679 -6255.654 5.8861264 3719.0274 629.70532 -10604.387 0 282.0962 0.00022196271 0.00020163104 + 181070 -6249.2688 -6255.7078 6.4389791 3724.1756 627.7545 -10607.638 0 308.59201 -3.4415709e-05 -5.7946187e-05 + 181080 -6248.8297 -6255.4301 6.6003173 3728.7297 626.63517 -10610.795 0 316.32424 -0.00021631009 -0.00023826932 + 181090 -6248.472 -6254.8996 6.4276459 3731.4435 626.55699 -10612.9 0 308.04886 -0.00027955149 -0.00029663599 + 181100 -6248.1667 -6254.2998 6.1330182 3731.5773 627.46577 -10613.343 0 293.92865 -0.00020935321 -0.00022257915 + 181110 -6247.8721 -6253.8109 5.9388108 3729.1358 629.09583 -10612.042 0 284.62114 -2.5333334e-05 -3.9337931e-05 + 181120 -6247.5721 -6253.5134 5.9413798 3724.8749 631.07182 -10609.46 0 284.74426 0.00022371335 0.00020433362 + 181130 -6247.2877 -6253.3576 6.0699426 3720.0572 633.0209 -10606.436 0 290.90571 0.0004752074 0.00044963216 + 181140 -6247.0564 -6253.2119 6.155531 3716.0403 634.66256 -10603.915 0 295.00759 0.00067303811 0.00064517616 + 181150 -6246.8966 -6252.9584 6.0617944 3713.8585 635.85172 -10602.669 0 290.5152 0.00078431921 0.00076004889 + 181160 -6246.7864 -6252.5765 5.790099 3713.9577 636.56367 -10603.098 0 277.49403 0.00080503743 0.00078764948 + 181170 -6246.6756 -6252.1609 5.4853054 3716.1776 636.83334 -10605.172 0 262.88661 0.00075251933 0.00074005634 + 181180 -6246.5234 -6251.8703 5.3468845 3719.9295 636.68713 -10608.487 0 256.25271 0.0006508387 0.00063768399 + 181190 -6246.3268 -6251.851 5.524109 3724.4174 636.11378 -10612.382 0 264.7463 0.00051981276 0.00050117848 + 181200 -6246.116 -6252.1812 6.0652394 3728.7788 635.09994 -10616.06 0 290.68031 0.00037440753 0.00034987068 + 181210 -6245.9273 -6252.846 6.9187459 3732.1428 633.71294 -10618.702 0 331.58513 0.00023212819 0.00020552788 + 181220 -6245.7827 -6253.7288 7.9460929 3733.7019 632.17218 -10619.603 0 380.82136 0.00011945295 9.5743568e-05 + 181230 -6245.6896 -6254.6271 8.9375892 3732.8741 630.84148 -10618.343 0 428.33943 6.9470134e-05 5.114237e-05 + 181240 -6245.6511 -6255.3055 9.6544451 3729.5322 630.11481 -10614.953 0 462.69518 0.00010933678 9.4759496e-05 + 181250 -6245.6751 -6255.5727 9.8976256 3724.1906 630.2393 -10610.003 0 474.34975 0.00024326443 0.00022801038 + 181260 -6245.7747 -6255.3488 9.57418 3718.0104 631.17107 -10604.53 0 458.84843 0.00044132097 0.00042175305 + 181270 -6245.9576 -6254.6954 8.7378621 3712.5371 632.55275 -10599.785 0 418.76738 0.00064334156 0.00061979076 + 181280 -6246.2113 -6253.8019 7.5906144 3709.2286 633.83732 -10596.868 0 363.78483 0.00077901881 0.00075573514 + 181290 -6246.4973 -6252.927 6.4296745 3708.9675 634.50314 -10596.398 0 308.14608 0.00079476192 0.00077646841 + 181300 -6246.7626 -6252.3071 5.5445911 3711.7795 634.25788 -10598.345 0 265.72792 0.00067383059 0.00066171761 + 181310 -6246.9636 -6252.0684 5.1048438 3716.8564 633.14224 -10602.067 0 244.65276 0.00044129714 0.00043173176 + 181320 -6247.0882 -6252.1824 5.0941671 3722.8323 631.5021 -10606.517 0 244.14107 0.00015438797 0.00014138925 + 181330 -6247.1629 -6252.4946 5.3317724 3728.171 629.85783 -10610.523 0 255.52845 -0.00011498901 -0.00013536943 + 181340 -6247.2367 -6252.8166 5.5799283 3731.5316 628.7317 -10613.08 0 267.42147 -0.00029823464 -0.00032498357 + 181350 -6247.3492 -6253.0318 5.6826329 3732.05 628.49383 -10613.576 0 272.34365 -0.00034491613 -0.00037287275 + 181360 -6247.504 -6253.152 5.6480356 3729.5231 629.2652 -10611.94 0 270.68556 -0.00023425004 -0.00025800331 + 181370 -6247.6704 -6253.2891 5.6187174 3724.4923 630.89065 -10608.672 0 269.28046 1.7077436e-05 -7.0065837e-07 + 181380 -6247.8112 -6253.5664 5.7551874 3718.1889 632.97724 -10604.732 0 275.82087 0.00035360193 0.00033893573 + 181390 -6247.9132 -6254.0303 6.1170897 3712.2979 634.98799 -10601.316 0 293.16526 0.00069021864 0.00067349687 + 181400 -6248.0012 -6254.6159 6.6146899 3708.5361 636.37673 -10599.529 0 317.01305 0.00093281859 0.00091032095 + 181410 -6248.1276 -6255.1768 7.0492564 3708.1323 636.73986 -10600.049 0 337.83992 0.001006221 0.00097828176 + 181420 -6248.3432 -6255.5584 7.2151928 3711.3759 635.94564 -10602.88 0 345.79252 0.00088071413 0.00085146592 + 181430 -6248.6656 -6255.6734 7.0078119 3717.4278 634.19518 -10607.296 0 335.85367 0.00058662975 0.00056096755 + 181440 -6249.0669 -6255.5362 6.4692706 3724.5225 631.98181 -10612.041 0 310.04374 0.00020848413 0.00018847764 + 181450 -6249.4949 -6255.2352 5.7403252 3730.5314 629.9465 -10615.713 0 275.10859 -0.00014231534 -0.00015851799 + 181460 -6249.9089 -6254.8731 4.9642768 3733.6756 628.66788 -10617.217 0 237.916 -0.00036642041 -0.00038220524 + 181470 -6250.2964 -6254.5282 4.2317884 3733.0921 628.4614 -10616.082 0 202.81105 -0.00041026164 -0.00042711037 + 181480 -6250.6604 -6254.2614 3.6010158 3729.0401 629.27174 -10612.573 0 172.58088 -0.00028036582 -0.00029682205 + 181490 -6250.9978 -6254.1371 3.1393454 3722.7278 630.7074 -10607.572 0 150.45505 -3.5034539e-05 -4.8848752e-05 + 181500 -6251.2959 -6254.2141 2.9182453 3715.8933 632.19795 -10602.305 0 139.85869 0.0002390692 0.00022813131 + 181510 -6251.5443 -6254.5024 2.9580612 3710.3131 633.20036 -10598.016 0 141.76689 0.00045432745 0.00044392115 + 181520 -6251.7487 -6254.9292 3.1805127 3707.3634 633.37209 -10595.665 0 152.42801 0.00054568172 0.00053305722 + 181530 -6251.9301 -6255.3562 3.4260865 3707.6975 632.65821 -10595.712 0 164.19729 0.00048662202 0.00047145007 + 181540 -6252.1095 -6255.6514 3.5418738 3711.0891 631.27869 -10598.019 0 169.74647 0.0002955028 0.00028063956 + 181550 -6252.288 -6255.7705 3.4825855 3716.4949 629.63616 -10601.902 0 166.90504 3.0044148e-05 1.9260735e-05 + 181560 -6252.4402 -6255.7824 3.3422468 3722.3544 628.18654 -10606.323 0 160.17922 -0.00023018632 -0.00023568791 + 181570 -6252.5325 -6255.8128 3.2802462 3727.0626 627.31769 -10610.193 0 157.2078 -0.00040877644 -0.00041184837 + 181580 -6252.551 -6255.9458 3.394846 3729.4515 627.26443 -10612.662 0 162.70007 -0.00045606257 -0.00046149462 + 181590 -6252.5144 -6256.1613 3.6469588 3729.099 628.0669 -10613.327 0 174.78273 -0.00036242855 -0.0003729607 + 181600 -6252.4603 -6256.3552 3.894929 3726.3645 629.56828 -10612.288 0 186.66685 -0.0001573339 -0.00017136802 + 181610 -6252.4145 -6256.4205 4.005998 3722.1832 631.44983 -10610.053 0 191.9899 0.00010339489 9.0310274e-05 + 181620 -6252.3698 -6256.3196 3.9498438 3717.7468 633.30161 -10607.368 0 189.29868 0.00035530695 0.00034653368 + 181630 -6252.2929 -6256.0963 3.8034084 3714.1963 634.71899 -10605.012 0 182.28067 0.00054137938 0.00053622119 + 181640 -6252.153 -6255.8277 3.6747196 3712.3897 635.40272 -10603.62 0 176.11318 0.00062283579 0.00061706461 + 181650 -6251.9486 -6255.5644 3.6157464 3712.7486 635.23314 -10603.546 0 173.28685 0.00058481861 0.00057428644 + 181660 -6251.7107 -6255.3067 3.5960307 3715.1667 634.29453 -10604.768 0 172.34197 0.00043846769 0.00042286787 + 181670 -6251.4782 -6255.0359 3.5576911 3718.9926 632.84089 -10606.869 0 170.50452 0.00021969467 0.00020320661 + 181680 -6251.2621 -6254.7664 3.504365 3723.1341 631.21504 -10609.116 0 167.94883 -1.7166456e-05 -2.9388794e-05 + 181690 -6251.0278 -6254.5642 3.5363446 3726.3257 629.75078 -10610.641 0 169.48148 -0.00021266302 -0.00021963195 + 181700 -6250.7185 -6254.4942 3.7756095 3727.5231 628.69282 -10610.71 0 180.94839 -0.00032064221 -0.00032761962 + 181710 -6250.3115 -6254.5394 4.2278733 3726.278 628.15531 -10608.973 0 202.62341 -0.00032451306 -0.00033924644 + 181720 -6249.8599 -6254.578 4.7181742 3722.8932 628.1203 -10605.592 0 226.12138 -0.00024185742 -0.0002675062 + 181730 -6249.4684 -6254.4666 4.9982577 3718.2573 628.46687 -10601.191 0 239.54455 -0.00011298326 -0.00014423158 + 181740 -6249.2113 -6254.1683 4.9569756 3713.4662 629.02071 -10596.655 0 237.56608 2.0214314e-05 -6.4383718e-06 + 181750 -6249.0702 -6253.8084 4.7381996 3709.4695 629.61041 -10592.888 0 227.08111 0.00013110209 0.000115787 + 181760 -6248.9539 -6253.601 4.6470704 3706.9188 630.11172 -10590.631 0 222.71369 0.0002109182 0.00020451014 + 181770 -6248.7765 -6253.6996 4.9231233 3706.199 630.46611 -10590.365 0 235.94369 0.00025947136 0.00025214024 + 181780 -6248.5231 -6254.0848 5.5616376 3707.4917 630.67482 -10592.251 0 266.54488 0.00027476588 0.00025702561 + 181790 -6248.2578 -6254.5685 6.3106979 3710.7383 630.78104 -10596.088 0 302.44405 0.00025108386 0.0002213772 + 181800 -6248.0699 -6254.9138 6.8439235 3715.5122 630.8519 -10601.278 0 327.99921 0.00018703244 0.00015312425 + 181810 -6247.999 -6254.9854 6.9863944 3720.9311 630.96473 -10606.881 0 334.82722 9.6328135e-05 6.9100372e-05 + 181820 -6247.9998 -6254.821 6.8212641 3725.7706 631.19573 -10611.787 0 326.91325 1.0509412e-05 -4.9908347e-06 + 181830 -6247.9823 -6254.5691 6.5868009 3728.8166 631.60714 -10614.993 0 315.67646 -3.2086356e-05 -4.0616943e-05 + 181840 -6247.8934 -6254.3476 6.4541971 3729.3104 632.22869 -10615.887 0 309.32134 -5.5909983e-06 -1.6911066e-05 + 181850 -6247.7619 -6254.1582 6.3962366 3727.2246 633.03285 -10614.416 0 306.54355 8.9389688e-05 6.973653e-05 + 181860 -6247.6626 -6253.9339 6.2713273 3723.2081 633.91384 -10611.056 0 300.55719 0.00022711775 0.00020253948 + 181870 -6247.636 -6253.6545 6.0184756 3718.279 634.69047 -10606.624 0 288.43912 0.00037050122 0.00034917538 + 181880 -6247.6483 -6253.3885 5.7401487 3713.4987 635.14585 -10602.033 0 275.10013 0.0004846368 0.000471136 + 181890 -6247.6282 -6253.2169 5.5886342 3709.7831 635.09094 -10598.091 0 267.83871 0.00054136248 0.00053263313 + 181900 -6247.5353 -6253.1326 5.5972933 3707.8181 634.42036 -10595.371 0 268.2537 0.00051832232 0.00050733315 + 181910 -6247.3914 -6253.0386 5.6472125 3707.9614 633.13827 -10594.138 0 270.64611 0.0004018532 0.00038447205 + 181920 -6247.2509 -6252.8543 5.6033474 3710.1026 631.35658 -10594.313 0 268.54385 0.00019651932 0.00017484492 + 181930 -6247.1456 -6252.6255 5.4799326 3713.5843 629.28205 -10595.492 0 262.62912 -6.6099486e-05 -8.6477702e-05 + 181940 -6247.0559 -6252.5271 5.4712113 3717.3095 627.20371 -10597.04 0 262.21115 -0.00032915611 -0.00034468074 + 181950 -6246.9307 -6252.7441 5.8133817 3720.0579 625.47511 -10598.277 0 278.60987 -0.00052517983 -0.00053736263 + 181960 -6246.7328 -6253.3247 6.5919325 3720.8969 624.47244 -10598.694 0 315.92239 -0.00059703306 -0.00061069361 + 181970 -6246.472 -6254.1192 7.6471584 3719.5081 624.51238 -10598.14 0 366.49474 -0.00051612178 -0.00053504918 + 181980 -6246.2039 -6254.8501 8.6461648 3716.302 625.73742 -10596.889 0 414.37273 -0.00029225685 -0.00031644361 + 181990 -6245.994 -6255.2562 9.2621885 3712.2929 628.0135 -10595.563 0 443.89604 2.6499203e-05 -2.7646027e-08 + 182000 -6245.8795 -6255.2116 9.3321316 3708.796 630.90584 -10594.913 0 447.24811 0.00036411553 0.00033810688 + 182010 -6245.8566 -6254.7569 8.9002991 3707.036 633.77596 -10595.569 0 426.55227 0.00063615475 0.00061145466 + 182020 -6245.8983 -6254.0506 8.1523148 3707.7708 635.98043 -10597.802 0 390.70467 0.0007746241 0.00075034538 + 182030 -6245.979 -6253.2877 7.3086848 3711.0301 637.08968 -10601.407 0 350.27319 0.00074999941 0.00072536371 + 182040 -6246.0843 -6252.6331 6.5488333 3716.057 637.02771 -10605.718 0 313.85684 0.00058156131 0.00055704863 + 182050 -6246.2032 -6252.1942 5.9909557 3721.4917 636.07069 -10609.757 0 287.12021 0.00033122278 0.00030789736 + 182060 -6246.32 -6252.0171 5.6971687 3725.7659 634.71144 -10612.494 0 273.04029 8.2175087e-05 6.0024825e-05 + 182070 -6246.42 -6252.0858 5.6658208 3727.5952 633.45553 -10613.137 0 271.53792 -9.0163412e-05 -0.00011282472 + 182080 -6246.5036 -6252.3245 5.8208482 3726.3874 632.6377 -10611.35 0 278.96771 -0.00014334736 -0.00016854485 + 182090 -6246.5909 -6252.6232 6.032319 3722.4137 632.32761 -10607.365 0 289.10257 -7.9437038e-05 -0.00010745571 + 182100 -6246.7106 -6252.8839 6.173301 3716.6958 632.34674 -10601.926 0 295.85922 5.9944739e-05 3.1557491e-05 + 182110 -6246.8804 -6253.0682 6.1877737 3710.6706 632.36751 -10596.106 0 296.55284 0.00021103187 0.0001863382 + 182120 -6247.0915 -6253.2209 6.1293976 3705.7639 632.04419 -10591.029 0 293.75513 0.00031024471 0.00029210048 + 182130 -6247.3141 -6253.4459 6.131844 3703.0178 631.13446 -10587.598 0 293.87237 0.00031345453 0.00030101644 + 182140 -6247.522 -6253.834 6.3120283 3702.8727 629.5883 -10586.295 0 302.50782 0.00020692892 0.00019570622 + 182150 -6247.7203 -6254.3872 6.6668672 3705.1223 627.58962 -10587.099 0 319.51369 9.1239889e-06 -6.0670531e-06 + 182160 -6247.9504 -6254.992 7.0415858 3709.0056 625.53678 -10589.534 0 337.4723 -0.00023457521 -0.00025584078 + 182170 -6248.2633 -6255.4671 7.2037776 3713.3985 623.95197 -10592.818 0 345.24544 -0.00046215095 -0.00048691725 + 182180 -6248.6771 -6255.6589 6.9817106 3717.086 623.32839 -10596.073 0 334.60275 -0.00060970073 -0.00063270822 + 182190 -6249.1526 -6255.5222 6.3695499 3719.0889 623.95785 -10598.569 0 305.26457 -0.00062968076 -0.00064699325 + 182200 -6249.6135 -6255.1364 5.5229403 3718.967 625.80743 -10599.911 0 264.69029 -0.00050818348 -0.00051984096 + 182210 -6249.9943 -6254.6553 4.660966 3716.9774 628.50512 -10600.138 0 223.37964 -0.00027333247 -0.00028265674 + 182220 -6250.2754 -6254.2363 3.9608691 3713.9906 631.44673 -10599.674 0 189.82707 1.1398843e-05 7.4288153e-07 + 182230 -6250.4792 -6253.9908 3.5115719 3711.1815 633.98256 -10599.155 0 168.29423 0.00026790692 0.00025440073 + 182240 -6250.642 -6253.9669 3.3248741 3709.6153 635.61158 -10599.194 0 159.34662 0.00042983464 0.0004144384 + 182250 -6250.7874 -6254.1533 3.3659148 3709.8932 636.11384 -10600.16 0 161.31352 0.00046365763 0.0004482941 + 182260 -6250.9179 -6254.4913 3.5733953 3711.9826 635.5797 -10602.054 0 171.25715 0.00037641067 0.00036217015 + 182270 -6251.0247 -6254.8909 3.8661894 3715.2719 634.33508 -10604.498 0 185.28949 0.0002082418 0.00019476205 + 182280 -6251.1026 -6255.2539 4.1513728 3718.8022 632.80133 -10606.858 0 198.95708 1.4633108e-05 9.5636433e-07 + 182290 -6251.1562 -6255.5052 4.3490454 3721.5714 631.34915 -10608.426 0 208.43066 -0.00015309658 -0.00016720348 + 182300 -6251.1938 -6255.6232 4.4293204 3722.8056 630.19988 -10608.629 0 212.27789 -0.00026152005 -0.00027519896 + 182310 -6251.2158 -6255.647 4.4311673 3722.1355 629.40009 -10607.183 0 212.3664 -0.00030033612 -0.00031262105 + 182320 -6251.2115 -6255.6457 4.434211 3719.6602 628.86245 -10604.168 0 212.51227 -0.00028066076 -0.00029169585 + 182330 -6251.1687 -6255.6645 4.4957992 3715.9067 628.44262 -10600.014 0 215.46392 -0.00022874658 -0.00023984356 + 182340 -6251.0836 -6255.6902 4.6065855 3711.6876 628.01657 -10595.394 0 220.77343 -0.00017633517 -0.00018885497 + 182350 -6250.9601 -6255.6659 4.7058104 3707.8853 627.53323 -10591.084 0 225.52884 -0.00014927342 -0.00016369354 + 182360 -6250.8004 -6255.5386 4.7381369 3705.2254 627.03233 -10587.796 0 227.07811 -0.0001583736 -0.0001745318 + 182370 -6250.6002 -6255.2931 4.6929159 3704.1211 626.63019 -10586.044 0 224.91086 -0.00019705288 -0.000214895 + 182380 -6250.3553 -6254.9492 4.5939214 3704.6289 626.48195 -10586.06 0 220.16649 -0.00024653957 -0.00026597055 + 182390 -6250.0704 -6254.5423 4.4719032 3706.4951 626.73073 -10587.768 0 214.31869 -0.00028434377 -0.00030415066 + 182400 -6249.7519 -6254.1235 4.3716488 3709.2392 627.45608 -10590.819 0 209.51394 -0.00029068774 -0.0003082956 + 182410 -6249.3874 -6253.7773 4.3898846 3712.2566 628.63699 -10594.671 0 210.3879 -0.00025164955 -0.00026508284 + 182420 -6248.9348 -6253.6121 4.6773796 3714.9557 630.14504 -10598.713 0 224.16627 -0.00016189521 -0.00017267885 + 182430 -6248.3436 -6253.6951 5.3515005 3716.9241 631.77457 -10602.394 0 256.47393 -2.9093673e-05 -4.2831128e-05 + 182440 -6247.6125 -6253.9708 6.3583301 3718.0513 633.30109 -10605.323 0 304.72686 0.00012293398 0.00010022236 + 182450 -6246.8315 -6254.2488 7.417276 3718.5076 634.54571 -10607.302 0 355.47748 0.0002589883 0.00022639574 + 182460 -6246.1463 -6254.303 8.1567045 3718.5581 635.41702 -10608.278 0 390.91505 0.0003477859 0.00031139353 + 182470 -6245.6551 -6254.0159 8.3608441 3718.3389 635.91024 -10608.265 0 400.69856 0.00037869559 0.00034703269 + 182480 -6245.3472 -6253.4461 8.0988863 3717.7791 636.06551 -10607.291 0 388.14407 0.00036495273 0.00034216732 + 182490 -6245.1421 -6252.7724 7.6303174 3716.7243 635.9105 -10605.407 0 365.68762 0.00032962344 0.00031289933 + 182500 -6244.9682 -6252.1832 7.2149746 3715.1341 635.42175 -10602.739 0 345.78207 0.00028690161 0.00026971046 + 182510 -6244.8049 -6251.8012 6.9963195 3713.185 634.52972 -10599.516 0 335.30289 0.00023369079 0.00021102703 + 182520 -6244.6704 -6251.6653 6.9949137 3711.2092 633.16993 -10596.044 0 335.23551 0.00015557361 0.00012695194 + 182530 -6244.5904 -6251.7473 7.1569383 3709.5236 631.35564 -10592.627 0 343.00064 4.0855138e-05 9.7595552e-06 + 182540 -6244.5735 -6251.9805 7.4069955 3708.2602 629.23307 -10589.474 0 354.98478 -0.00010668948 -0.00013571373 + 182550 -6244.6074 -6252.2881 7.6807011 3707.3098 627.08654 -10586.684 0 368.10229 -0.00026346976 -0.00028781297 + 182560 -6244.6719 -6252.6039 7.9319855 3706.4222 625.28345 -10584.31 0 380.14525 -0.00039250102 -0.00041261065 + 182570 -6244.7561 -6252.8874 8.1313042 3705.4034 624.17289 -10582.464 0 389.69772 -0.00045750453 -0.00047581882 + 182580 -6244.8644 -6253.1345 8.2700463 3704.2822 623.97245 -10581.389 0 396.34702 -0.00043810772 -0.00045712797 + 182590 -6245.0122 -6253.3723 8.3600762 3703.3549 624.68835 -10581.416 0 400.66176 -0.00033956329 -0.00036045537 + 182600 -6245.2179 -6253.6302 8.4122972 3703.089 626.10687 -10582.826 0 403.16448 -0.00019278077 -0.00021491296 + 182610 -6245.4958 -6253.9044 8.4086699 3703.9289 627.86682 -10585.7 0 402.99064 -4.3954256e-05 -6.5293286e-05 + 182620 -6245.8456 -6254.1471 8.3014712 3706.0787 629.58615 -10589.812 0 397.85308 6.2698884e-05 4.428115e-05 + 182630 -6246.2441 -6254.2907 8.0465551 3709.3531 630.9888 -10594.633 0 385.63607 0.00010181307 8.6650371e-05 + 182640 -6246.6495 -6254.2828 7.6332908 3713.1768 631.97773 -10599.437 0 365.83013 7.5333541e-05 6.0935743e-05 + 182650 -6247.0242 -6254.1011 7.0768759 3716.7457 632.62623 -10603.473 0 339.1636 8.7156676e-06 -8.7965488e-06 + 182660 -6247.3566 -6253.7536 6.3969883 3719.271 633.09955 -10606.124 0 306.57957 -6.169339e-05 -8.4275684e-05 + 182670 -6247.6577 -6253.2906 5.6328681 3720.1858 633.55026 -10607.027 0 269.95865 -0.00010237156 -0.00012794552 + 182680 -6247.9381 -6252.8233 4.8851898 3719.2614 634.03777 -10606.122 0 234.1257 -9.2225618e-05 -0.00011607153 + 182690 -6248.1908 -6252.5114 4.3205953 3716.6537 634.50065 -10603.666 0 207.06717 -2.7854363e-05 -4.6337782e-05 + 182700 -6248.3943 -6252.5058 4.1115681 3712.8993 634.77806 -10600.183 0 197.04941 7.4338146e-05 6.0841838e-05 + 182710 -6248.5292 -6252.8784 4.3491745 3708.8459 634.66033 -10596.385 0 208.43685 0.00017970418 0.00016674722 + 182720 -6248.5973 -6253.5756 4.9782485 3705.4896 633.95382 -10593.019 0 238.5856 0.0002422564 0.0002241405 + 182730 -6248.6332 -6254.4211 5.7879633 3703.7195 632.55207 -10590.693 0 277.39168 0.00021781908 0.00019176121 + 182740 -6248.696 -6255.1782 6.4822452 3704.0115 630.50021 -10589.69 0 310.66556 8.1735709e-05 5.0638697e-05 + 182750 -6248.833 -6255.6555 6.8225508 3706.1785 628.02906 -10589.863 0 326.97492 -0.0001549448 -0.00018383449 + 182760 -6249.0389 -6255.8001 6.7612606 3709.3326 625.53584 -10590.669 0 324.03755 -0.00044059427 -0.00046108362 + 182770 -6249.2542 -6255.7025 6.4482446 3712.1653 623.50509 -10591.373 0 309.03606 -0.00069685386 -0.00070903357 + 182780 -6249.4144 -6255.5027 6.0882977 3713.4692 622.38524 -10591.357 0 291.78539 -0.00084797194 -0.00085826198 + 182790 -6249.5026 -6255.2826 5.7800437 3712.6371 622.45305 -10590.373 0 277.01212 -0.00085088906 -0.00086661714 + 182800 -6249.5558 -6255.0395 5.4836963 3709.8739 623.71154 -10588.625 0 262.8095 -0.00071023358 -0.00073379421 + 182810 -6249.6252 -6254.7426 5.1174094 3706.0589 625.86925 -10586.671 0 245.25497 -0.00047284948 -0.00050033941 + 182820 -6249.7326 -6254.3978 4.6652555 3702.3895 628.42246 -10585.21 0 223.58522 -0.0002079807 -0.00023265048 + 182830 -6249.8563 -6254.0661 4.2097188 3699.9884 630.8118 -10584.866 0 201.75335 1.6362552e-05 -9.743086e-07 + 182840 -6249.9484 -6253.8332 3.8847899 3699.6058 632.58752 -10586.026 0 186.18093 0.00015196271 0.00014108046 + 182850 -6249.9668 -6253.7567 3.7898948 3701.4759 633.51955 -10588.752 0 181.63302 0.00017915646 0.00016926701 + 182860 -6249.9042 -6253.8266 3.9224308 3705.3155 633.62116 -10592.763 0 187.98489 0.00010611938 9.145959e-05 + 182870 -6249.7895 -6253.9756 4.1861349 3710.4031 633.09325 -10597.472 0 200.62307 -3.7278349e-05 -5.8182085e-05 + 182880 -6249.6577 -6254.1406 4.4829616 3715.6959 632.22517 -10602.062 0 214.84867 -0.00020712281 -0.00023040112 + 182890 -6249.5078 -6254.3231 4.8153934 3719.9979 631.29797 -10605.619 0 230.78067 -0.00035389384 -0.00037391711 + 182900 -6249.2848 -6254.5839 5.299082 3722.2087 630.52344 -10607.316 0 253.96174 -0.00043305136 -0.00044760082 + 182910 -6248.9032 -6254.9606 6.0574317 3721.6267 630.02493 -10606.612 0 290.30612 -0.00041744445 -0.00042989805 + 182920 -6248.3014 -6255.3763 7.074919 3718.1979 629.84071 -10603.415 0 339.06981 -0.000307821 -0.00032440868 + 182930 -6247.4958 -6255.6244 8.128621 3712.589 629.92595 -10598.139 0 389.56913 -0.00013622177 -0.00016063899 + 182940 -6246.5943 -6255.4679 8.8736414 3706.0259 630.14644 -10591.64 0 425.27469 4.150514e-05 1.1582774e-05 + 182950 -6245.7391 -6254.7926 9.0534984 3699.9432 630.2843 -10585.02 0 433.89444 0.00016369485 0.00013502412 + 182960 -6245.0164 -6253.7048 8.6884307 3695.5769 630.08733 -10579.369 0 416.39835 0.00018475558 0.00016287276 + 182970 -6244.4159 -6252.4953 8.0793433 3693.6533 629.37087 -10575.519 0 387.20746 9.0759293e-05 7.4961787e-05 + 182980 -6243.8742 -6251.4883 7.6141452 3694.2728 628.13386 -10573.895 0 364.91256 -9.7468626e-05 -0.00011415516 + 182990 -6243.349 -6250.8766 7.5275211 3696.9837 626.62096 -10574.481 0 360.76105 -0.00033235421 -0.00035792442 + 183000 -6242.8608 -6250.6464 7.7855465 3700.9572 625.27839 -10576.882 0 373.12707 -0.0005533097 -0.00059013386 + 183010 -6242.4715 -6250.6383 8.1668047 3705.1753 624.60337 -10580.417 0 391.3991 -0.00070130582 -0.00074349471 + 183020 -6242.2211 -6250.6976 8.4764941 3708.6075 624.94716 -10584.252 0 406.24116 -0.00073162491 -0.00076945648 + 183030 -6242.0787 -6250.7927 8.7139666 3710.4259 626.36644 -10587.585 0 417.62217 -0.0006247474 -0.00065327014 + 183040 -6241.9699 -6250.9917 9.021822 3710.2824 628.59948 -10589.874 0 432.37633 -0.00039557828 -0.00041921863 + 183050 -6241.8625 -6251.3237 9.4612117 3708.5198 631.17276 -10591.016 0 453.43435 -9.6171973e-05 -0.00012383118 + 183060 -6241.8134 -6251.6972 9.8838451 3706.0869 633.57023 -10591.354 0 473.68931 0.00019687009 0.00016131909 + 183070 -6241.9132 -6251.9781 10.064912 3704.1103 635.38109 -10591.469 0 482.36705 0.0004104987 0.00037176519 + 183080 -6242.1939 -6252.1206 9.9266874 3703.3895 636.37992 -10591.89 0 475.74256 0.00050318834 0.00046887347 + 183090 -6242.6026 -6252.1955 9.5928594 3704.1363 636.53473 -10592.866 0 459.74365 0.00047469196 0.00044736242 + 183100 -6243.0573 -6252.3052 9.2479154 3706.0346 635.96098 -10594.301 0 443.212 0.00035459642 0.00032953501 + 183110 -6243.5154 -6252.4844 8.9690399 3708.4762 634.85471 -10595.815 0 429.84672 0.00018202073 0.00015189141 + 183120 -6243.9942 -6252.6694 8.6752066 3710.7919 633.43764 -10596.899 0 415.76458 -8.8797389e-06 -4.7008904e-05 + 183130 -6244.5333 -6252.7623 8.2289926 3712.3787 631.92191 -10597.063 0 394.3795 -0.000191366 -0.00023278405 + 183140 -6245.1319 -6252.745 7.6131085 3712.7343 630.48007 -10595.959 0 364.86287 -0.00034148351 -0.00037772143 + 183150 -6245.727 -6252.7383 7.011305 3711.5069 629.21756 -10593.463 0 336.02107 -0.00043723185 -0.00046387086 + 183160 -6246.2391 -6252.9206 6.6814906 3708.6452 628.16702 -10589.733 0 320.21452 -0.00046676206 -0.00048734183 + 183170 -6246.6412 -6253.3723 6.7311087 3704.5596 627.3135 -10585.245 0 322.59249 -0.00043821924 -0.00046021415 + 183180 -6246.9757 -6254.0015 7.0258837 3700.1062 626.63205 -10580.74 0 336.71977 -0.00037933787 -0.00040682335 + 183190 -6247.3065 -6254.6176 7.3110923 3696.3219 626.1125 -10577.052 0 350.38857 -0.00032455834 -0.00035524603 + 183200 -6247.6608 -6255.0586 7.3978423 3694.067 625.76387 -10574.89 0 354.54611 -0.00029956835 -0.00032828235 + 183210 -6248.0129 -6255.2502 7.2372494 3693.7889 625.60647 -10574.646 0 346.8496 -0.00031421568 -0.00033813486 + 183220 -6248.3183 -6255.1813 6.8629711 3695.4819 625.66007 -10576.323 0 328.91208 -0.00036542439 -0.00038583026 + 183230 -6248.5523 -6254.8652 6.3128996 3698.7673 625.93213 -10579.565 0 302.54957 -0.00044338609 -0.00046326182 + 183240 -6248.7212 -6254.3419 5.6207569 3702.9905 626.40974 -10583.742 0 269.37821 -0.00053439622 -0.00055518003 + 183250 -6248.8449 -6253.7084 4.8634977 3707.3126 627.06176 -10588.083 0 233.0861 -0.00061977348 -0.00064041592 + 183260 -6248.9364 -6253.1248 4.1883354 3710.8326 627.85337 -10591.811 0 200.72853 -0.00067518411 -0.0006937468 + 183270 -6248.9943 -6252.7681 3.7737904 3712.7691 628.76485 -10594.302 0 180.86121 -0.00067434105 -0.00069012963 + 183280 -6249.0092 -6252.7574 3.7481653 3712.6653 629.79724 -10595.22 0 179.63311 -0.00059722259 -0.00061155878 + 183290 -6248.9749 -6253.0971 4.1222211 3710.5502 630.95177 -10594.599 0 197.55996 -0.00043967691 -0.00045491739 + 183300 -6248.8971 -6253.6752 4.7781064 3706.9878 632.18483 -10592.848 0 228.99367 -0.00022029337 -0.00023802534 + 183310 -6248.7941 -6254.3175 5.5234416 3702.9734 633.35823 -10590.649 0 264.71432 1.891936e-05 -9.3051053e-07 + 183320 -6248.6873 -6254.8711 6.1837213 3699.6835 634.21788 -10588.772 0 296.35862 0.00021980406 0.00019974634 + 183330 -6248.5881 -6255.264 6.6759444 3698.1387 634.43386 -10587.837 0 319.94872 0.00032239837 0.00030384957 + 183340 -6248.4949 -6255.5055 7.0105313 3698.8877 633.71226 -10588.105 0 335.984 0.0002827265 0.00026577851 + 183350 -6248.4056 -6255.6303 7.2247021 3701.811 631.9445 -10589.386 0 346.24826 8.8881074e-05 7.2289172e-05 + 183360 -6248.3284 -6255.6431 7.3147104 3706.1029 629.32131 -10591.067 0 350.56196 -0.00022972761 -0.0002469536 + 183370 -6248.2765 -6255.5103 7.2337697 3710.4421 626.33849 -10592.291 0 346.68283 -0.00060423955 -0.00062191258 + 183380 -6248.2511 -6255.1986 6.9474991 3713.3328 623.67158 -10592.203 0 332.96314 -0.00094186653 -0.00095951362 + 183390 -6248.2359 -6254.7111 6.4752534 3713.5561 621.96543 -10590.233 0 310.33048 -0.0011530872 -0.0011713495 + 183400 -6248.2117 -6254.0883 5.8766439 3710.5999 621.62639 -10586.315 0 281.64175 -0.0011814368 -0.0012018927 + 183410 -6248.1738 -6253.3952 5.2214276 3704.8878 622.69702 -10580.98 0 250.24011 -0.0010228333 -0.001046298 + 183420 -6248.1294 -6252.7215 4.5920655 3697.7045 624.85029 -10575.276 0 220.07755 -0.00072600163 -0.00075144359 + 183430 -6248.0816 -6252.1873 4.1057206 3690.8488 627.49395 -10570.53 0 196.76917 -0.00037558887 -0.00040102303 + 183440 -6248.0177 -6251.9237 3.906051 3686.1531 629.94464 -10568.021 0 187.19988 -6.6540248e-05 -9.0867298e-05 + 183450 -6247.9127 -6252.0229 4.1102105 3685.0101 631.61786 -10568.651 0 196.98435 0.00012149648 9.7688334e-05 + 183460 -6247.7406 -6252.4891 4.7484456 3688.007 632.18237 -10572.678 0 227.57216 0.00014429872 0.00011965099 + 183470 -6247.4828 -6253.2251 5.7423294 3694.7308 631.64219 -10579.598 0 275.20465 4.7442856e-06 -2.1374392e-05 + 183480 -6247.1295 -6254.0637 6.9341958 3703.7966 630.32891 -10588.189 0 332.32557 -0.00024641161 -0.00027346891 + 183490 -6246.6798 -6254.8226 8.1427957 3713.1292 628.80654 -10596.758 0 390.24846 -0.00052262975 -0.00055008582 + 183500 -6246.1453 -6255.3503 9.2050324 3720.4703 627.70881 -10603.529 0 441.1568 -0.00072614465 -0.00075498198 + 183510 -6245.561 -6255.5411 9.9800952 3723.9952 627.54523 -10607.082 0 478.30216 -0.00077975964 -0.00081229203 + 183520 -6244.9925 -6255.3328 10.340292 3722.8424 628.52639 -10606.702 0 495.56483 -0.00065487139 -0.0006921697 + 183530 -6244.5183 -6254.7241 10.205858 3717.351 630.4665 -10602.542 0 489.12199 -0.0003827027 -0.0004220411 + 183540 -6244.1854 -6253.8123 9.6269846 3708.9145 632.81264 -10595.539 0 461.37912 -4.2593265e-05 -7.8256721e-05 + 183550 -6243.9767 -6252.7995 8.8227892 3699.5369 634.81244 -10587.149 0 422.83756 0.00026623149 0.0002387245 + 183560 -6243.8243 -6251.9224 8.0980472 3691.2854 635.77043 -10578.978 0 388.10386 0.0004556441 0.00043569768 + 183570 -6243.6588 -6251.3367 7.6779277 3685.8181 635.29251 -10572.447 0 367.96938 0.00047143231 0.00045358849 + 183580 -6243.4544 -6251.0408 7.5864726 3684.0706 633.41767 -10568.529 0 363.58633 0.00030431216 0.00028251276 + 183590 -6243.2366 -6250.904 7.6673306 3686.1086 630.58519 -10567.598 0 367.4615 -9.9367513e-06 -3.766467e-05 + 183600 -6243.0498 -6250.7865 7.7367117 3691.1418 627.459 -10569.387 0 370.78663 -0.00039999822 -0.00043048078 + 183610 -6242.9131 -6250.6606 7.7475091 3697.7168 624.6956 -10573.073 0 371.30411 -0.00077745425 -0.0008057075 + 183620 -6242.8062 -6250.633 7.8268472 3704.0891 622.76313 -10577.485 0 375.10644 -0.0010605583 -0.0010842375 + 183630 -6242.6947 -6250.8541 8.1593173 3708.6879 621.87876 -10581.421 0 391.04027 -0.0011950847 -0.0012160258 + 183640 -6242.5707 -6251.39 8.8192639 3710.5163 622.05485 -10583.961 0 422.66861 -0.0011638883 -0.0011858957 + 183650 -6242.4737 -6252.1524 9.6786984 3709.3519 623.18717 -10584.692 0 463.85753 -0.00098375478 -0.0010091586 + 183660 -6242.4811 -6252.9223 10.441202 3705.7229 625.11386 -10583.759 0 500.40098 -0.00069574353 -0.00072361206 + 183670 -6242.6713 -6253.4467 10.77543 3700.7198 627.6136 -10581.78 0 516.41905 -0.00035584565 -0.00038277345 + 183680 -6243.0759 -6253.563 10.487082 3695.7158 630.3667 -10579.645 0 502.59979 -2.6927635e-05 -4.9603584e-05 + 183690 -6243.6482 -6253.2927 9.6444688 3692.0426 632.94113 -10578.276 0 462.21706 0.00023108521 0.00021293729 + 183700 -6244.2833 -6252.8435 8.5601706 3690.6859 634.85892 -10578.388 0 410.2514 0.00037260777 0.00035487396 + 183710 -6244.889 -6252.4918 7.6027284 3692.0767 635.73893 -10580.307 0 364.3654 0.00037467738 0.00035112705 + 183720 -6245.4481 -6252.4163 6.9682009 3696.0137 635.44195 -10583.872 0 333.95529 0.00023987703 0.00020759548 + 183730 -6246.0092 -6252.6197 6.6104695 3701.6814 634.12742 -10588.428 0 316.81079 -3.2014047e-06 -3.9770579e-05 + 183740 -6246.614 -6252.9987 6.3847201 3707.7501 632.18587 -10592.935 0 305.99161 -0.00030107402 -0.0003324462 + 183750 -6247.2375 -6253.475 6.2374528 3712.6255 630.09003 -10596.19 0 298.93373 -0.00058365041 -0.00060322602 + 183760 -6247.8015 -6254.0345 6.2329079 3714.8869 628.2478 -10597.169 0 298.71592 -0.00078410074 -0.00079448154 + 183770 -6248.2458 -6254.6468 6.4010052 3713.7869 626.91672 -10595.35 0 306.77209 -0.0008635695 -0.00087472087 + 183780 -6248.5823 -6255.1844 6.6020781 3709.5448 626.1857 -10590.915 0 316.40863 -0.00082546877 -0.00084616317 + 183790 -6248.8791 -6255.4606 6.5815438 3703.2475 625.99683 -10584.705 0 315.42451 -0.00070946607 -0.00074009067 + 183800 -6249.193 -6255.3621 6.1691418 3696.4272 626.18472 -10577.974 0 295.65989 -0.0005701739 -0.00060320631 + 183810 -6249.52 -6254.9449 5.4249126 3690.5696 626.52591 -10572.04 0 259.99225 -0.00045541259 -0.0004822409 + 183820 -6249.8061 -6254.4094 4.6033307 3686.7725 626.79514 -10567.977 0 220.61744 -0.00039545914 -0.00041301801 + 183830 -6249.9975 -6253.9824 3.9849361 3685.6171 626.82032 -10566.42 0 190.9805 -0.00040349127 -0.00041559785 + 183840 -6250.0818 -6253.7992 3.7173887 3687.1751 626.5259 -10567.5 0 178.15812 -0.00047979744 -0.00049316083 + 183850 -6250.0926 -6253.8603 3.767699 3691.0551 625.95527 -10570.871 0 180.56927 -0.00061317797 -0.00063191255 + 183860 -6250.0827 -6254.0767 3.9939455 3696.4506 625.26544 -10575.793 0 191.41228 -0.00077885397 -0.0008017653 + 183870 -6250.0855 -6254.355 4.2694289 3702.2226 624.69241 -10581.27 0 204.61499 -0.00093740962 -0.00095983581 + 183880 -6250.0938 -6254.6568 4.5630642 3707.0857 624.49362 -10586.236 0 218.68764 -0.0010403018 -0.0010586331 + 183890 -6250.0721 -6254.9879 4.9158318 3709.9182 624.88073 -10589.787 0 235.59424 -0.0010436363 -0.0010583918 + 183900 -6249.9938 -6255.34 5.3461518 3710.1084 625.95433 -10591.403 0 256.21759 -0.00092551297 -0.00094024991 + 183910 -6249.8673 -6255.6561 5.7888263 3707.7734 627.65121 -10591.081 0 277.43304 -0.00069806314 -0.00071556295 + 183920 -6249.7256 -6255.8592 6.1336026 3703.7274 629.721 -10589.308 0 293.95665 -0.00040732708 -0.00042714607 + 183930 -6249.5949 -6255.9067 6.3118475 3699.2158 631.75744 -10586.88 0 302.49915 -0.00012104239 -0.00014059611 + 183940 -6249.4759 -6255.8041 6.3281957 3695.5407 633.29547 -10584.64 0 303.28264 8.9855277e-05 7.253563e-05 + 183950 -6249.3536 -6255.5677 6.2141308 3693.7058 633.94963 -10583.223 0 297.81602 0.00016978056 0.00015466405 + 183960 -6249.2157 -6255.1925 5.9767735 3694.1574 633.53727 -10582.887 0 286.44052 9.3198547e-05 7.890526e-05 + 183970 -6249.059 -6254.6629 5.6038722 3696.6696 632.13428 -10583.467 0 268.569 -0.00012755795 -0.00014254624 + 183980 -6248.8853 -6253.9924 5.1071048 3700.4095 630.0449 -10584.447 0 244.76112 -0.00044431247 -0.00046098937 + 183990 -6248.698 -6253.2521 4.5541366 3704.1682 627.70615 -10585.126 0 218.25978 -0.00078529017 -0.00080393105 + 184000 -6248.4995 -6252.5684 4.0688866 3706.6854 625.56928 -10584.823 0 195.00387 -0.0010735445 -0.0010937208 + 184010 -6248.2864 -6252.0926 3.8062194 3706.9785 623.99969 -10583.071 0 182.41539 -0.0012452717 -0.0012661029 + 184020 -6248.0419 -6251.9531 3.911219 3704.6092 623.21726 -10579.78 0 187.44756 -0.0012632383 -0.0012838161 + 184030 -6247.7322 -6252.2081 4.4758816 3699.8367 623.27466 -10575.319 0 214.50936 -0.0011237545 -0.0011435654 + 184040 -6247.3137 -6252.8208 5.5070955 3693.6181 624.05841 -10570.497 0 263.93092 -0.00085793085 -0.00087729103 + 184050 -6246.7551 -6253.6632 6.9080883 3687.4386 625.3052 -10566.407 0 331.07435 -0.00052802644 -0.00054846408 + 184060 -6246.0725 -6254.5409 8.4683963 3682.9859 626.64487 -10564.172 0 405.85307 -0.00021768771 -0.00024162584 + 184070 -6245.3507 -6255.2286 9.8778158 3681.713 627.68902 -10564.631 0 473.40036 -1.3260172e-05 -4.233499e-05 + 184080 -6244.7221 -6255.5276 10.805444 3684.3624 628.16053 -10568.051 0 517.85751 2.3733832e-05 -9.2859782e-06 + 184090 -6244.2952 -6255.3452 11.04997 3690.6005 628.01482 -10573.961 0 529.57655 -0.00011583435 -0.00014911486 + 184100 -6244.0893 -6254.749 10.659724 3698.9686 627.48357 -10581.201 0 510.87378 -0.00037779171 -0.00040864649 + 184110 -6244.0422 -6253.9246 9.8823299 3707.2894 627.00256 -10588.216 0 473.6167 -0.00066272799 -0.00069216972 + 184120 -6244.0826 -6253.0543 8.9716684 3713.3972 627.04337 -10593.495 0 429.97269 -0.00086613401 -0.00089685522 + 184130 -6244.1765 -6252.2452 8.0686306 3715.8176 627.9136 -10595.976 0 386.69405 -0.00091705324 -0.00094944577 + 184140 -6244.3063 -6251.5682 7.2618922 3714.1081 629.61048 -10595.287 0 348.03062 -0.00079701714 -0.00082911973 + 184150 -6244.44 -6251.1086 6.66861 3708.8694 631.79676 -10591.775 0 319.59721 -0.00053990116 -0.00057095223 + 184160 -6244.5467 -6250.9307 6.3839411 3701.5472 633.90849 -10586.386 0 305.95428 -0.0002208816 -0.00025267827 + 184170 -6244.6288 -6251.0165 6.3876625 3694.0594 635.33776 -10580.414 0 306.13263 6.3450158e-05 2.9442125e-05 + 184180 -6244.7185 -6251.2829 6.5643773 3688.2628 635.61246 -10575.158 0 314.60179 0.00022376463 0.00018927713 + 184190 -6244.8399 -6251.6638 6.8238946 3685.4102 634.5209 -10571.595 0 327.03932 0.00020758595 0.00017633542 + 184200 -6244.9849 -6252.1577 7.1727204 3685.8284 632.16353 -10570.15 0 343.75701 1.5839514e-05 -1.0337192e-05 + 184210 -6245.1304 -6252.7834 7.6530327 3688.9384 628.93112 -10570.653 0 366.77627 -0.00030197058 -0.00032502703 + 184220 -6245.2728 -6253.5008 8.2280455 3693.5439 625.41535 -10572.46 0 394.33411 -0.0006689319 -0.00069265722 + 184230 -6245.4385 -6254.1855 8.7470502 3698.2183 622.26962 -10574.673 0 419.20772 -0.0010051247 -0.0010318909 + 184240 -6245.6608 -6254.6806 9.0197314 3701.6733 620.05562 -10576.41 0 432.27614 -0.0012456863 -0.0012751294 + 184250 -6245.9507 -6254.8714 8.9206824 3703.054 619.11962 -10577.045 0 427.52915 -0.0013511275 -0.00138118 + 184260 -6246.286 -6254.7351 8.4490887 3702.1091 619.5296 -10576.374 0 404.92774 -0.0013120113 -0.0013407194 + 184270 -6246.6239 -6254.3479 7.7239832 3699.1975 621.08306 -10574.628 0 370.17661 -0.0011487371 -0.0011754508 + 184280 -6246.9252 -6253.8531 6.9278426 3695.1535 623.37829 -10572.385 0 332.02109 -0.00090561666 -0.0009308755 + 184290 -6247.1735 -6253.4083 6.2347893 3691.0621 625.92831 -10570.399 0 298.80609 -0.00063905241 -0.00066347518 + 184300 -6247.3737 -6253.1412 5.7674662 3687.9919 628.28398 -10569.417 0 276.40934 -0.00040248037 -0.00042599676 + 184310 -6247.5354 -6253.1246 5.5891952 3686.7398 630.12839 -10569.993 0 267.8656 -0.00023374725 -0.00025614608 + 184320 -6247.662 -6253.3594 5.6974335 3687.6627 631.317 -10572.339 0 273.05298 -0.00015011889 -0.00017207407 + 184330 -6247.7572 -6253.7617 6.0044695 3690.6394 631.86013 -10576.261 0 287.76787 -0.00015125891 -0.00017414788 + 184340 -6247.8355 -6254.1814 6.3458746 3695.1378 631.86453 -10581.184 0 304.12992 -0.00022541813 -0.00024988767 + 184350 -6247.9155 -6254.4701 6.5546309 3700.3252 631.46409 -10586.259 0 314.13469 -0.0003537036 -0.00037896569 + 184360 -6248.002 -6254.5591 6.5571634 3705.2014 630.7734 -10590.534 0 314.25606 -0.00051167918 -0.00053672883 + 184370 -6248.0833 -6254.4784 6.3951911 3708.7735 629.88445 -10593.136 0 306.49344 -0.00067134487 -0.00069637445 + 184380 -6248.1514 -6254.3031 6.1516631 3710.2616 628.89504 -10593.46 0 294.82221 -0.00080534821 -0.0008309941 + 184390 -6248.217 -6254.0921 5.8751596 3709.2635 627.92993 -10591.286 0 281.57062 -0.00089157205 -0.00091678272 + 184400 -6248.2934 -6253.8837 5.590302 3705.818 627.12358 -10586.825 0 267.91864 -0.00091583567 -0.00093770293 + 184410 -6248.3693 -6253.7281 5.3587596 3700.39 626.57023 -10580.688 0 256.82183 -0.00087373971 -0.00089057522 + 184420 -6248.4057 -6253.6898 5.2841508 3693.8351 626.27812 -10573.803 0 253.24616 -0.00077424267 -0.00078881825 + 184430 -6248.3709 -6253.7955 5.4245912 3687.3409 626.1607 -10567.297 0 259.97685 -0.00064407175 -0.00066278395 + 184440 -6248.2801 -6253.9812 5.7011602 3682.2612 626.06943 -10562.312 0 273.23159 -0.00052696582 -0.00055455983 + 184450 -6248.1943 -6254.1169 5.9226436 3679.7893 625.84894 -10559.755 0 283.84631 -0.00047180519 -0.00050631489 + 184460 -6248.172 -6254.1114 5.939437 3680.55 625.39286 -10560.054 0 284.65115 -0.00051160944 -0.00054487572 + 184470 -6248.2133 -6254.0096 5.7963569 3684.319 624.6869 -10563.016 0 277.79395 -0.00064516505 -0.00066939456 + 184480 -6248.253 -6253.9816 5.72859 3690.0593 623.83194 -10567.873 0 274.54618 -0.00083442954 -0.0008492726 + 184490 -6248.2155 -6254.1911 5.9755708 3696.2842 623.04049 -10573.516 0 286.38288 -0.0010205298 -0.0010339943 + 184500 -6248.0853 -6254.6434 6.5580987 3701.558 622.60038 -10578.802 0 314.30089 -0.0011476964 -0.0011694025 + 184510 -6247.9301 -6255.1503 7.2201816 3704.8746 622.80276 -10582.828 0 346.03161 -0.0011799904 -0.0012125428 + 184520 -6247.8465 -6255.4542 7.6077099 3705.7828 623.84443 -10585.082 0 364.60415 -0.0011042113 -0.0011408981 + 184530 -6247.8755 -6255.4046 7.5290296 3704.3337 625.73492 -10585.473 0 360.83334 -0.00092581813 -0.00095693296 + 184540 -6247.9719 -6255.0268 7.0549723 3701.0127 628.24926 -10584.289 0 338.11386 -0.00066874658 -0.00069004433 + 184550 -6248.0553 -6254.4518 6.3965003 3696.7045 630.95152 -10582.108 0 306.55618 -0.00037968087 -0.00039484252 + 184560 -6248.0813 -6253.8103 5.7290109 3692.5845 633.2847 -10579.679 0 274.56635 -0.00012602633 -0.00014200057 + 184570 -6248.062 -6253.196 5.1339957 3689.842 634.70392 -10577.742 0 246.04988 2.0470835e-05 -3.2276114e-07 + 184580 -6248.0351 -6252.6926 4.657435 3689.2891 634.82225 -10576.804 0 223.21042 9.4481937e-06 -1.4888e-05 + 184590 -6248.0212 -6252.3977 4.3764513 3691.0341 633.53104 -10576.963 0 209.7441 -0.00016665296 -0.00019029579 + 184600 -6248.004 -6252.4003 4.3962835 3694.397 631.05425 -10577.852 0 210.69457 -0.00046664176 -0.00048641362 + 184610 -6247.9403 -6252.7249 4.784549 3698.1288 627.91029 -10578.764 0 229.30244 -0.00081240496 -0.00082843794 + 184620 -6247.7836 -6253.2904 5.5068074 3700.8443 624.78271 -10578.917 0 263.91711 -0.0011128801 -0.0011278323 + 184630 -6247.5045 -6253.9286 6.4241714 3701.4841 622.33307 -10577.746 0 307.88234 -0.0012912301 -0.0013078835 + 184640 -6247.0978 -6254.4559 7.3580977 3699.6416 621.01232 -10575.11 0 352.64133 -0.0013071022 -0.0013266419 + 184650 -6246.5815 -6254.7529 8.1714527 3695.6771 620.93285 -10571.363 0 391.62186 -0.0011682177 -0.0011901612 + 184660 -6245.9901 -6254.8018 8.8117196 3690.6137 621.84933 -10567.265 0 422.30704 -0.00092768143 -0.00095078849 + 184670 -6245.3648 -6254.6661 9.3012303 3685.846 623.26442 -10563.777 0 445.76714 -0.00066639162 -0.00068959975 + 184680 -6244.7447 -6254.4354 9.6907453 3682.7244 624.63071 -10561.791 0 464.43489 -0.00046518976 -0.00048820442 + 184690 -6244.1626 -6254.164 10.001358 3682.1365 625.57346 -10561.874 0 479.32121 -0.00037678293 -0.00040019914 + 184700 -6243.6501 -6253.8348 10.184682 3684.2331 626.03532 -10564.103 0 488.1071 -0.00040871442 -0.00043348663 + 184710 -6243.2384 -6253.3734 10.134965 3688.3988 626.26944 -10568.042 0 485.72438 -0.00052409139 -0.00055061379 + 184720 -6242.9479 -6252.7119 9.7639428 3693.4679 626.6806 -10572.86 0 467.94292 -0.00065895943 -0.00068674817 + 184730 -6242.7721 -6251.8635 9.0913893 3698.1064 627.59687 -10577.567 0 435.71039 -0.00074845887 -0.00077701438 + 184740 -6242.6784 -6250.9476 8.2692003 3701.2297 629.09489 -10581.272 0 396.30648 -0.00075105006 -0.00078082203 + 184750 -6242.6317 -6250.1441 7.5124252 3702.3111 630.96291 -10583.418 0 360.03757 -0.00066158716 -0.00069350837 + 184760 -6242.6157 -6249.62 7.0042969 3701.4634 632.79732 -10583.881 0 335.68521 -0.00050923536 -0.00054322754 + 184770 -6242.63 -6249.481 6.8509759 3699.2843 634.15724 -10582.923 0 328.33721 -0.00034318875 -0.00037768156 + 184780 -6242.6736 -6249.7592 7.0856299 3696.5762 634.69892 -10581.034 0 339.58314 -0.0002139603 -0.00024733443 + 184790 -6242.7408 -6250.4127 7.671887 3694.0808 634.25563 -10578.749 0 367.67987 -0.00015805925 -0.00019050778 + 184800 -6242.8378 -6251.3225 8.484694 3692.31 632.86784 -10576.5 0 406.63415 -0.00019017895 -0.00022377068 + 184810 -6243.0021 -6252.3049 9.3027802 3691.4718 630.77398 -10574.551 0 445.84142 -0.00030257947 -0.00033908998 + 184820 -6243.2966 -6253.1595 9.8628472 3691.4637 628.35943 -10572.983 0 472.68298 -0.00046898777 -0.00050750442 + 184830 -6243.7705 -6253.7472 9.9767407 3691.9284 626.06155 -10571.737 0 478.14139 -0.00065120405 -0.0006881193 + 184840 -6244.4164 -6254.0528 9.6364483 3692.3888 624.25009 -10570.692 0 461.83267 -0.0008088013 -0.00084063331 + 184850 -6245.167 -6254.1776 9.010687 3692.4459 623.12672 -10569.75 0 431.84268 -0.00091185007 -0.00093824139 + 184860 -6245.9379 -6254.2597 8.3218149 3691.9614 622.6871 -10568.908 0 398.82807 -0.00095219443 -0.00097593501 + 184870 -6246.6743 -6254.3823 7.70799 3691.1163 622.76139 -10568.26 0 369.41013 -0.00094557381 -0.00096962259 + 184880 -6247.3588 -6254.5424 7.1835364 3690.2992 623.1125 -10567.954 0 344.27537 -0.00092113332 -0.00094584666 + 184890 -6247.9855 -6254.6852 6.6996903 3689.8916 623.5467 -10568.123 0 321.08675 -0.00090430492 -0.00092758044 + 184900 -6248.5383 -6254.7567 6.2183978 3690.089 623.98784 -10568.834 0 298.02051 -0.00090411073 -0.00092385872 + 184910 -6248.9933 -6254.7271 5.7338058 3690.8501 624.48402 -10570.061 0 274.79615 -0.00091187193 -0.00092809478 + 184920 -6249.3369 -6254.5887 5.2518423 3691.9707 625.14731 -10571.707 0 251.69775 -0.00090995285 -0.00092457352 + 184930 -6249.5775 -6254.3537 4.7762143 3693.2046 626.05859 -10573.617 0 228.90299 -0.00088368764 -0.00089864686 + 184940 -6249.7414 -6254.068 4.3266218 3694.3573 627.18722 -10575.613 0 207.356 -0.00082965435 -0.00084532245 + 184950 -6249.8546 -6253.8222 3.9675221 3695.3166 628.36908 -10577.508 0 190.14592 -0.00075717334 -0.00077258631 + 184960 -6249.9288 -6253.7318 3.8029191 3696.0381 629.35757 -10579.127 0 182.25722 -0.00068402124 -0.00069851595 + 184970 -6249.9616 -6253.8811 3.9194722 3696.5172 629.92255 -10580.321 0 187.8431 -0.00062948435 -0.0006439071 + 184980 -6249.9498 -6254.2626 4.3127242 3696.7655 629.94568 -10580.974 0 206.68994 -0.0006077566 -0.00062391343 + 184990 -6249.903 -6254.7615 4.8585594 3696.7912 629.46285 -10581.016 0 232.84943 -0.00062356418 -0.00064242445 + 185000 -6249.8416 -6255.2076 5.3660337 3696.5793 628.63528 -10580.422 0 257.17044 -0.00067091837 -0.00069145488 + 185010 -6249.7821 -6255.4659 5.6838272 3696.0853 627.67162 -10579.223 0 272.40089 -0.00073531368 -0.00075535446 + 185020 -6249.7222 -6255.5035 5.7812231 3695.2617 626.74794 -10577.513 0 277.06865 -0.00079903323 -0.00081742918 + 185030 -6249.6457 -6255.3866 5.7408625 3694.1139 625.96494 -10575.465 0 275.13434 -0.00084788131 -0.00086578659 + 185040 -6249.5404 -6255.2192 5.6788302 3692.7498 625.35065 -10573.32 0 272.16141 -0.00087623936 -0.00089616519 + 185050 -6249.4121 -6255.0767 5.6646247 3691.3779 624.88946 -10571.344 0 271.4806 -0.00088780139 -0.00091135433 + 185060 -6249.2802 -6254.9745 5.6942693 3690.2461 624.55234 -10569.773 0 272.90134 -0.00089200354 -0.00091831044 + 185070 -6249.1624 -6254.8801 5.7177272 3689.5507 624.31558 -10568.746 0 274.02557 -0.00089845071 -0.00092450601 + 185080 -6249.0588 -6254.7509 5.6921682 3689.3576 624.16915 -10568.278 0 272.80064 -0.00091188919 -0.00093466937 + 185090 -6248.9472 -6254.57 5.6228254 3689.5808 624.12136 -10568.272 0 269.47734 -0.00092967166 -0.00094867663 + 185100 -6248.7958 -6254.3533 5.5575158 3690.0387 624.20249 -10568.595 0 266.34734 -0.00094301763 -0.00096125164 + 185110 -6248.5871 -6254.1233 5.5362317 3690.5682 624.46191 -10569.153 0 265.32729 -0.00094171872 -0.00096382446 + 185120 -6248.3363 -6253.8821 5.5457701 3691.1181 624.95063 -10569.951 0 265.78442 -0.00091951726 -0.00094801514 + 185130 -6248.0825 -6253.6179 5.5353563 3691.7501 625.68975 -10571.058 0 265.28533 -0.00087662184 -0.00090928404 + 185140 -6247.8554 -6253.3472 5.4918561 3692.5452 626.63839 -10572.531 0 263.20056 -0.00081813239 -0.00084916674 + 185150 -6247.6426 -6253.146 5.5034209 3693.5014 627.68289 -10574.33 0 263.75481 -0.00075062013 -0.00077527661 + 185160 -6247.3877 -6253.1209 5.7331592 3694.5151 628.66189 -10576.298 0 274.76516 -0.00068033363 -0.00069929297 + 185170 -6247.0273 -6253.3254 6.2981332 3695.4565 629.42094 -10578.203 0 301.84188 -0.00061428604 -0.00063386679 + 185180 -6246.5429 -6253.6828 7.1399347 3696.2551 629.8693 -10579.807 0 342.18573 -0.00056200501 -0.0005894131 + 185190 -6245.9899 -6253.9909 8.0010003 3696.8975 630.00789 -10580.896 0 383.45283 -0.00053411761 -0.00057115855 + 185200 -6245.4707 -6254.03 8.5593423 3697.3246 629.91468 -10581.269 0 410.21171 -0.00053594242 -0.00057652305 + 185210 -6245.0607 -6253.7123 8.6515894 3697.3265 629.69875 -10580.738 0 414.63271 -0.00055964997 -0.0005940491 + 185220 -6244.7488 -6253.16 8.4111983 3696.5691 629.44912 -10579.178 0 403.11182 -0.00058334888 -0.00060650924 + 185230 -6244.4531 -6252.6375 8.1843772 3694.8023 629.20099 -10576.641 0 392.24128 -0.00058262005 -0.00059929813 + 185240 -6244.1038 -6252.376 8.2721741 3692.133 628.92762 -10573.437 0 396.449 -0.00054886931 -0.00057036798 + 185250 -6243.7167 -6252.4248 8.7080793 3689.1434 628.55587 -10570.124 0 417.34002 -0.00050009404 -0.00053461037 + 185260 -6243.3912 -6252.6467 9.2555679 3686.7074 627.99968 -10567.354 0 443.57875 -0.00047332127 -0.00051818122 + 185270 -6243.2285 -6252.8531 9.6246058 3685.5765 627.20355 -10565.633 0 461.26511 -0.00050194664 -0.00054528485 + 185280 -6243.2428 -6252.951 9.7082063 3686.0043 626.18439 -10565.14 0 465.27172 -0.00059424616 -0.0006254862 + 185290 -6243.3561 -6252.9666 9.6105043 3687.6725 625.0561 -10565.695 0 460.58929 -0.00072953692 -0.00074906012 + 185300 -6243.4888 -6252.9408 9.451989 3689.9417 624.01966 -10566.902 0 452.99235 -0.00087338308 -0.00089181401 + 185310 -6243.6495 -6252.838 9.1884899 3692.182 623.30943 -10568.329 0 440.36399 -0.00099658004 -0.0010244615 + 185320 -6243.9273 -6252.5872 8.6599047 3693.9253 623.1121 -10569.625 0 415.03122 -0.0010818319 -0.0011200984 + 185330 -6244.3979 -6252.2053 7.8074256 3694.8291 623.5021 -10570.536 0 374.17564 -0.0011172566 -0.0011573481 + 185340 -6245.0464 -6251.8495 6.8030961 3694.6358 624.43118 -10570.916 0 326.04254 -0.0010899187 -0.0011221362 + 185350 -6245.7818 -6251.7261 5.9443791 3693.2649 625.76508 -10570.756 0 284.888 -0.00099079399 -0.0010120461 + 185360 -6246.513 -6251.9435 5.4304545 3690.9729 627.32228 -10570.239 0 260.25785 -0.00082787739 -0.00084227092 + 185370 -6247.1978 -6252.4462 5.2483715 3688.4029 628.88464 -10569.734 0 251.53141 -0.00063352918 -0.00064729066 + 185380 -6247.8286 -6253.0776 5.249016 3686.4275 630.19569 -10569.701 0 251.5623 -0.0004575139 -0.00047424553 + 185390 -6248.4008 -6253.6939 5.2930821 3685.8527 630.98395 -10570.531 0 253.67419 -0.00035039938 -0.00037012814 + 185400 -6248.905 -6254.2329 5.3278821 3687.1299 631.02802 -10572.391 0 255.34201 -0.00034707698 -0.00036795692 + 185410 -6249.336 -6254.7064 5.3703505 3690.182 630.24391 -10575.132 0 257.37733 -0.00045584006 -0.00047591842 + 185420 -6249.6982 -6255.1508 5.4525326 3694.3807 628.7514 -10578.283 0 261.31595 -0.00065420485 -0.00067213758 + 185430 -6250.0007 -6255.5861 5.5854116 3698.6785 626.87578 -10581.14 0 267.68426 -0.00089232619 -0.00090759749 + 185440 -6250.2492 -6256.0013 5.7521036 3701.8787 625.06784 -10582.948 0 275.67308 -0.0011053527 -0.0011186386 + 185450 -6250.4455 -6256.3508 5.9053325 3702.9885 623.76573 -10583.105 0 283.01667 -0.0012336251 -0.0012468026 + 185460 -6250.5968 -6256.5567 5.9599015 3701.5492 623.25285 -10581.359 0 285.63192 -0.0012440812 -0.0012590968 + 185470 -6250.7188 -6256.5297 5.8109401 3697.806 623.56787 -10577.904 0 278.49286 -0.00114258 -0.0011598685 + 185480 -6250.8245 -6256.2196 5.3950435 3692.6409 624.50009 -10573.361 0 258.56075 -0.00097056459 -0.00098880871 + 185490 -6250.9115 -6255.6601 4.7486782 3687.3088 625.66994 -10568.639 0 227.58331 -0.00078864995 -0.00080633485 + 185500 -6250.9638 -6254.9671 4.0033515 3683.0917 626.66196 -10564.721 0 191.86307 -0.00065609229 -0.00067315906 + 185510 -6250.9705 -6254.2898 3.3192501 3680.982 627.15899 -10562.431 0 159.07709 -0.00061414276 -0.00063192625 + 185520 -6250.9388 -6253.7555 2.8167054 3681.4538 627.03109 -10562.24 0 134.99233 -0.00067649325 -0.00069604115 + 185530 -6250.8882 -6253.4449 2.5566782 3684.355 626.35617 -10564.156 0 122.53036 -0.00082671541 -0.00084727047 + 185540 -6250.8312 -6253.4014 2.5702389 3688.9376 625.37683 -10567.716 0 123.18027 -0.0010221982 -0.001041536 + 185550 -6250.7526 -6253.645 2.8924844 3694.0365 624.41756 -10572.099 0 138.62408 -0.0012046339 -0.0012212434 + 185560 -6250.6106 -6254.1615 3.5508443 3698.3755 623.7929 -10576.33 0 170.17638 -0.0013162221 -0.0013313675 + 185570 -6250.3641 -6254.8646 4.5005342 3700.9249 623.73064 -10579.52 0 215.69085 -0.001317876 -0.0013351847 + 185580 -6250.0103 -6255.576 5.5656494 3701.1861 624.32 -10581.082 0 266.73715 -0.0012027207 -0.0012249714 + 185590 -6249.5998 -6256.0719 6.4720812 3699.2899 625.48597 -10580.848 0 310.17845 -0.00099820457 -0.0010240772 + 185600 -6249.2031 -6256.1969 6.9938197 3695.8784 626.99323 -10579.068 0 335.18308 -0.00075515668 -0.00077964615 + 185610 -6248.8542 -6255.9614 7.1072139 3691.86 628.49045 -10576.312 0 340.61757 -0.00052995669 -0.00054892829 + 185620 -6248.5318 -6255.5299 6.9980818 3688.1786 629.60041 -10573.309 0 335.38735 -0.00036978957 -0.00038438176 + 185630 -6248.1995 -6255.0929 6.8933482 3685.6569 630.03757 -10570.787 0 330.36792 -0.0003057871 -0.00032176022 + 185640 -6247.8587 -6254.7292 6.8704964 3684.8673 629.70928 -10569.306 0 329.27274 -0.00035031063 -0.00037250937 + 185650 -6247.5561 -6254.3761 6.8199369 3685.9812 628.7526 -10569.11 0 326.84964 -0.00049337558 -0.00052069001 + 185660 -6247.3396 -6253.9187 6.579129 3688.6511 627.4832 -10570.053 0 315.30878 -0.00070026072 -0.00072605921 + 185670 -6247.2081 -6253.3115 6.1033931 3692.0525 626.27267 -10571.637 0 292.50884 -0.00091748748 -0.00093519991 + 185680 -6247.1054 -6252.6341 5.5287606 3695.1365 625.40663 -10573.177 0 264.96923 -0.0010897931 -0.0010986964 + 185690 -6246.9604 -6252.0529 5.0924235 3697.002 624.98902 -10574.044 0 244.05751 -0.0011806344 -0.0011869439 + 185700 -6246.7388 -6251.727 4.9881313 3697.2018 624.93741 -10573.866 0 239.05924 -0.0011839129 -0.001196252 + 185710 -6246.4644 -6251.7303 5.2658434 3695.833 625.06687 -10572.63 0 252.36876 -0.0011199864 -0.0011426905 + 185720 -6246.1969 -6252.0345 5.8375635 3693.3841 625.21211 -10570.631 0 279.7688 -0.0010196044 -0.0010490847 + 185730 -6245.9823 -6252.5498 6.5675246 3690.4614 625.31699 -10568.328 0 314.75263 -0.00090684139 -0.0009341843 + 185740 -6245.8154 -6253.1751 7.3596469 3687.5816 625.442 -10566.199 0 352.71557 -0.00079189001 -0.00081006184 + 185750 -6245.6477 -6253.8104 8.1626502 3685.1457 625.69203 -10564.648 0 391.2 -0.00067734353 -0.00068734039 + 185760 -6245.4389 -6254.3376 8.89867 3683.547 626.11501 -10564 0 426.4742 -0.00057178124 -0.00058254235 + 185770 -6245.2077 -6254.6128 9.4050441 3683.2346 626.63854 -10564.486 0 450.74248 -0.00049858384 -0.00052041662 + 185780 -6245.0344 -6254.5078 9.4733981 3684.5962 627.08764 -10566.192 0 454.01839 -0.00049050616 -0.00052697103 + 185790 -6245.0058 -6253.9904 8.9846017 3687.6821 627.27659 -10568.949 0 430.59253 -0.00057046439 -0.0006150808 + 185800 -6245.1452 -6253.1936 8.0484091 3691.9563 627.11998 -10572.27 0 385.72492 -0.00073014049 -0.00077095738 + 185810 -6245.384 -6252.4074 7.0233058 3696.2941 626.69606 -10575.397 0 336.59622 -0.00092250812 -0.00095147308 + 185820 -6245.6066 -6251.9599 6.353315 3699.3245 626.2275 -10577.512 0 304.4865 -0.0010770217 -0.0010965769 + 185830 -6245.7337 -6252.0355 6.3018798 3699.9871 625.99332 -10578.016 0 302.02144 -0.0011306516 -0.0011516313 + 185840 -6245.782 -6252.5577 6.7757539 3697.9996 626.21494 -10576.772 0 324.73214 -0.0010565696 -0.0010888335 + 185850 -6245.8517 -6253.2401 7.3884338 3693.9696 626.95868 -10574.168 0 354.09521 -0.00087451567 -0.0009183116 + 185860 -6246.0482 -6253.7768 7.728581 3689.1141 628.08608 -10570.977 0 370.39697 -0.00063980407 -0.00068536588 + 185870 -6246.3979 -6254.0269 7.6290664 3684.7875 629.272 -10568.086 0 365.62767 -0.00042073548 -0.00045641409 + 185880 -6246.8311 -6254.0587 7.2276434 3682.0819 630.09553 -10566.236 0 346.38923 -0.00027811454 -0.00029981165 + 185890 -6247.2495 -6254.0378 6.7883224 3681.6338 630.18109 -10565.853 0 325.3345 -0.0002540746 -0.00026777483 + 185900 -6247.611 -6254.0708 6.4597304 3683.5834 629.33929 -10566.993 0 309.58653 -0.00036727138 -0.0003829829 + 185910 -6247.9538 -6254.1383 6.1844683 3687.5617 627.65055 -10569.351 0 296.39442 -0.00060798235 -0.00063110382 + 185920 -6248.3458 -6254.1585 5.8127175 3692.6809 625.45837 -10572.298 0 278.57804 -0.00093293003 -0.00096073511 + 185930 -6248.8134 -6254.0966 5.2831604 3697.6338 623.27621 -10575.007 0 253.19869 -0.001267733 -0.0012932927 + 185940 -6249.3185 -6254.0106 4.6920961 3701.002 621.6419 -10576.654 0 224.87157 -0.0015243575 -0.00154333 + 185950 -6249.7973 -6253.998 4.2007245 3701.7196 620.96577 -10576.683 0 201.32229 -0.001630445 -0.0016442159 + 185960 -6250.2156 -6254.1093 3.8937007 3699.4822 621.41489 -10575.006 0 186.60799 -0.0015565583 -0.0015695856 + 185970 -6250.5843 -6254.3184 3.7341474 3694.8825 622.86272 -10572.064 0 178.9613 -0.0013268853 -0.0013418661 + 185980 -6250.9304 -6254.5719 3.6414963 3689.2105 624.91776 -10568.7 0 174.52093 -0.0010091441 -0.0010249393 + 185990 -6251.2632 -6254.8561 3.5928479 3684.0331 627.02739 -10565.917 0 172.18943 -0.00069090903 -0.00070457399 + 186000 -6251.5662 -6255.2104 3.6442653 3680.7448 628.63169 -10564.587 0 174.65364 -0.00045381533 -0.00046407205 + 186010 -6251.8137 -6255.6745 3.8607414 3680.2314 629.32379 -10565.23 0 185.02839 -0.00035383049 -0.00036258354 + 186020 -6251.994 -6256.2189 4.2248456 3682.696 628.96749 -10567.882 0 202.4783 -0.0004103361 -0.0004211005 + 186030 -6252.1186 -6256.7236 4.6050192 3687.6321 627.7338 -10572.09 0 220.69836 -0.00060357935 -0.00061844355 + 186040 -6252.2128 -6257.0281 4.8152856 3693.9248 626.04184 -10576.995 0 230.7755 -0.00087981139 -0.00089767916 + 186050 -6252.2946 -6257.0211 4.7264558 3700.0772 624.42243 -10581.521 0 226.51828 -0.0011640671 -0.0011817059 + 186060 -6252.3602 -6256.7049 4.3447098 3704.5518 623.35164 -10584.608 0 208.22287 -0.0013795251 -0.0013943967 + 186070 -6252.3915 -6256.1901 3.7985679 3706.1707 623.11237 -10585.473 0 182.04869 -0.0014691442 -0.0014813857 + 186080 -6252.3772 -6255.6306 3.2533612 3704.4533 623.72669 -10583.811 0 155.91932 -0.0014123442 -0.0014241946 + 186090 -6252.3258 -6255.1541 2.8282572 3699.7655 624.97063 -10579.89 0 135.54596 -0.0012302153 -0.0012437165 + 186100 -6252.258 -6254.8304 2.5723775 3693.2196 626.45514 -10574.505 0 123.28276 -0.00097749419 -0.00099282204 + 186110 -6252.1876 -6254.6799 2.4922467 3686.367 627.7414 -10568.788 0 119.44245 -0.00072521225 -0.00074108434 + 186120 -6252.1098 -6254.6928 2.5829585 3680.8024 628.45672 -10563.952 0 123.78986 -0.00054085034 -0.00055627939 + 186130 -6252.0061 -6254.8378 2.8316922 3677.7936 628.38302 -10561.014 0 135.71058 -0.00047192337 -0.00048743753 + 186140 -6251.8611 -6255.0632 3.2020963 3678.0114 627.50178 -10560.576 0 153.46242 -0.00053605548 -0.00055324082 + 186150 -6251.6761 -6255.3029 3.6267144 3681.3902 625.9915 -10562.685 0 173.8125 -0.00071820845 -0.00073799566 + 186160 -6251.4697 -6255.495 4.0253381 3687.1367 624.18326 -10566.815 0 192.91679 -0.00097452669 -0.00099571094 + 186170 -6251.2623 -6255.6088 4.3465347 3693.8882 622.48535 -10571.982 0 208.31033 -0.0012418143 -0.001261297 + 186180 -6251.0561 -6255.6623 4.6062136 3700.0139 621.29155 -10576.968 0 220.7556 -0.001451518 -0.0014666022 + 186190 -6250.8275 -6255.7091 4.8816474 3704.0164 620.89212 -10580.618 0 233.95594 -0.0015465999 -0.0015577619 + 186200 -6250.5452 -6255.7851 5.2399517 3704.9442 621.40875 -10582.138 0 251.12789 -0.0014979264 -0.0015093452 + 186210 -6250.205 -6255.8502 5.6452005 3702.6733 622.77082 -10581.294 0 270.54968 -0.0013143095 -0.0013308624 + 186220 -6249.8463 -6255.7851 5.9387276 3697.9292 624.73812 -10578.452 0 284.61715 -0.0010402108 -0.0010631599 + 186230 -6249.5276 -6255.4686 5.9409112 3692.0236 626.96116 -10574.453 0 284.7218 -0.00074030084 -0.00076585936 + 186240 -6249.2789 -6254.8792 5.6003381 3686.4354 629.0599 -10570.375 0 268.39962 -0.00047821399 -0.00050073105 + 186250 -6249.0788 -6254.1347 5.0559399 3682.4318 630.69748 -10567.264 0 242.30901 -0.00030042405 -0.00031730963 + 186260 -6248.877 -6253.4363 4.5593679 3680.8422 631.63115 -10565.91 0 218.51049 -0.00023100489 -0.00024485814 + 186270 -6248.6358 -6252.967 4.3311744 3681.9753 631.73635 -10566.679 0 207.57418 -0.00027436422 -0.00029058183 + 186280 -6248.3542 -6252.8151 4.4608112 3685.6036 631.01328 -10569.432 0 213.7871 -0.00041913924 -0.00044124443 + 186290 -6248.0589 -6252.9608 4.9019484 3690.9827 629.58751 -10573.531 0 234.92887 -0.00063928208 -0.00066585582 + 186300 -6247.774 -6253.3144 5.5404157 3696.9279 627.7052 -10577.947 0 265.52781 -0.00089371851 -0.00091947677 + 186310 -6247.4948 -6253.7664 6.2716112 3702.0038 625.71141 -10581.482 0 300.5708 -0.0011292359 -0.0011496798 + 186320 -6247.1888 -6254.2132 7.0243419 3704.8527 623.99817 -10583.064 0 336.64588 -0.0012904437 -0.0013064258 + 186330 -6246.8319 -6254.5441 7.7122275 3704.6017 622.92134 -10582.067 0 369.61322 -0.001336097 -0.0013538727 + 186340 -6246.4529 -6254.6283 8.1753504 3701.1873 622.70318 -10578.519 0 391.80866 -0.0012549628 -0.0012806285 + 186350 -6246.1336 -6254.3551 8.2215084 3695.4094 623.35272 -10573.117 0 394.02081 -0.0010713539 -0.0011043642 + 186360 -6245.9466 -6253.7328 7.7861982 3688.6569 624.64209 -10567.032 0 373.15831 -0.00083552505 -0.00086810021 + 186370 -6245.8883 -6252.9501 7.0618125 3682.4584 626.16535 -10561.574 0 338.44168 -0.00060510789 -0.00062885466 + 186380 -6245.8779 -6252.3072 6.4293589 3678.1054 627.46889 -10557.882 0 308.13095 -0.00042942675 -0.00044288957 + 186390 -6245.8228 -6252.0418 6.219 3676.4615 628.20088 -10556.704 0 298.04938 -0.00034269096 -0.00035268675 + 186400 -6245.688 -6252.1838 6.4957747 3677.8955 628.21566 -10558.295 0 311.31397 -0.00036254038 -0.00037837995 + 186410 -6245.5152 -6252.5537 7.0384581 3682.2287 627.59689 -10562.379 0 337.3224 -0.00048752261 -0.00051349743 + 186420 -6245.3827 -6252.9037 7.5210025 3688.6805 626.60567 -10568.19 0 360.44864 -0.00069208832 -0.00072464408 + 186430 -6245.3391 -6253.0929 7.7538781 3695.913 625.5884 -10574.594 0 371.60935 -0.00092489489 -0.00095663348 + 186440 -6245.3685 -6253.1616 7.7930865 3702.2829 624.88398 -10580.328 0 373.48843 -0.0011181912 -0.0011447641 + 186450 -6245.42 -6253.2528 7.8328323 3706.2888 624.75421 -10584.296 0 375.39327 -0.0012090089 -0.0012323666 + 186460 -6245.4691 -6253.4624 7.9932747 3707.04 625.33796 -10585.84 0 383.08257 -0.0011623688 -0.0011875596 + 186470 -6245.5479 -6253.7542 8.206266 3704.5208 626.61882 -10584.894 0 393.29031 -0.00098364089 -0.0010128813 + 186480 -6245.7127 -6254.0048 8.2920379 3699.5397 628.40493 -10581.949 0 397.40098 -0.00071490933 -0.00074520958 + 186490 -6245.9866 -6254.1144 8.1277922 3693.4362 630.33778 -10577.888 0 389.52941 -0.00042074417 -0.00044734186 + 186500 -6246.3365 -6254.0682 7.7317048 3687.7148 631.95327 -10573.736 0 370.54667 -0.0001724452 -0.00019402805 + 186510 -6246.7078 -6253.9032 7.1954016 3683.7246 632.79795 -10570.426 0 344.84402 -3.4764425e-05 -5.4684953e-05 + 186520 -6247.0728 -6253.644 6.5712466 3682.3912 632.5677 -10568.603 0 314.93101 -5.2621098e-05 -7.4985724e-05 + 186530 -6247.4387 -6253.2961 5.8573527 3683.9789 631.2133 -10568.488 0 280.71721 -0.00023632462 -0.00026155032 + 186540 -6247.8151 -6252.9004 5.0852572 3687.9554 628.96822 -10569.824 0 243.71406 -0.00055160966 -0.00057618308 + 186550 -6248.1871 -6252.575 4.3878782 3693.0887 626.28848 -10571.952 0 210.29175 -0.00092424491 -0.00094445277 + 186560 -6248.5247 -6252.4832 3.9584291 3697.8141 623.7295 -10574.027 0 189.71013 -0.0012614941 -0.0012769971 + 186570 -6248.8128 -6252.7462 3.9334173 3700.7435 621.80288 -10575.293 0 188.51143 -0.0014815431 -0.0014954934 + 186580 -6249.069 -6253.3681 4.299083 3701.0999 620.85386 -10575.322 0 206.03618 -0.0015378453 -0.0015538832 + 186590 -6249.3353 -6254.2247 4.8893626 3698.9136 620.98749 -10574.126 0 234.32569 -0.0014298238 -0.00144891 + 186600 -6249.6511 -6255.1198 5.4686452 3694.9453 622.05823 -10572.123 0 262.08816 -0.0011987245 -0.0012184534 + 186610 -6250.0273 -6255.8673 5.8400135 3690.4085 623.72336 -10569.999 0 279.88621 -0.00091256755 -0.00092926982 + 186620 -6250.4374 -6256.3537 5.916282 3686.6083 625.54358 -10568.506 0 283.54143 -0.0006461881 -0.00065795556 + 186630 -6250.8328 -6256.5563 5.7234671 3684.6082 627.10052 -10568.265 0 274.30066 -0.00046232731 -0.00047059096 + 186640 -6251.1703 -6256.5195 5.3491351 3684.9923 628.09873 -10569.61 0 256.36057 -0.00039818409 -0.00040670024 + 186650 -6251.4348 -6256.3137 4.8788567 3687.7525 628.42711 -10572.493 0 233.82219 -0.00045927375 -0.00047132611 + 186660 -6251.6406 -6256.0046 4.3639659 3692.298 628.1681 -10576.471 0 209.14573 -0.00062027285 -0.00063619976 + 186670 -6251.8129 -6255.6462 3.8332256 3697.5769 627.556 -10580.779 0 183.70968 -0.00083184254 -0.00084874248 + 186680 -6251.9654 -6255.2905 3.3250646 3702.3034 626.89783 -10584.492 0 159.35575 -0.0010325715 -0.001046444 + 186690 -6252.0894 -6254.9927 2.9032612 3705.2677 626.47815 -10586.739 0 139.14057 -0.0011647034 -0.0011734797 + 186700 -6252.1624 -6254.7987 2.6362704 3705.6672 626.47209 -10586.938 0 126.34487 -0.0011906486 -0.0011958341 + 186710 -6252.1684 -6254.7244 2.5560091 3703.3576 626.88869 -10584.971 0 122.4983 -0.0011053213 -0.0011109558 + 186720 -6252.1127 -6254.7487 2.6359674 3698.9203 627.56079 -10581.23 0 126.33035 -0.00093896334 -0.00094867025 + 186730 -6252.0203 -6254.8351 2.8148239 3693.4974 628.18971 -10576.522 0 134.90215 -0.00074778104 -0.00076217805 + 186740 -6251.9176 -6254.9671 3.0494626 3688.4469 628.4398 -10571.854 0 146.14736 -0.00059490253 -0.00061129201 + 186750 -6251.8118 -6255.1641 3.3522839 3684.9442 628.05834 -10568.167 0 160.66026 -0.00052894073 -0.00054339831 + 186760 -6251.6823 -6255.4617 3.7794247 3683.6757 626.97898 -10566.116 0 181.13124 -0.00056869135 -0.0005789864 + 186770 -6251.4927 -6255.866 4.3732218 3684.7142 625.36596 -10565.946 0 209.58933 -0.00069948682 -0.00070681456 + 186780 -6251.2179 -6256.3107 5.0928096 3687.5872 623.57734 -10567.475 0 244.07601 -0.00088145143 -0.00088972949 + 186790 -6250.8721 -6256.6519 5.7798356 3691.4775 622.05763 -10570.187 0 277.00215 -0.0010650355 -0.001078025 + 186800 -6250.5142 -6256.715 6.2007819 3695.4595 621.1985 -10573.373 0 297.17626 -0.0012066266 -0.0012248076 + 186810 -6250.2166 -6256.3848 6.1681972 3698.6923 621.21998 -10576.297 0 295.61462 -0.0012780251 -0.0012978703 + 186820 -6250.0156 -6255.6861 5.670506 3700.5488 622.11726 -10578.352 0 271.76247 -0.0012681828 -0.0012848784 + 186830 -6249.8905 -6254.7929 4.9023264 3700.7082 623.68922 -10579.19 0 234.94699 -0.0011806121 -0.0011920556 + 186840 -6249.7898 -6253.9483 4.1585086 3699.2282 625.62589 -10578.802 0 199.29906 -0.0010306097 -0.0010390491 + 186850 -6249.6752 -6253.3522 3.6770197 3696.5576 627.60682 -10577.517 0 176.22342 -0.00084299455 -0.00085296907 + 186860 -6249.5422 -6253.09 3.5478442 3693.4429 629.36899 -10575.902 0 170.0326 -0.00064858214 -0.00066329395 + 186870 -6249.4087 -6253.1342 3.725581 3690.7334 630.7301 -10574.598 0 178.55075 -0.00047877013 -0.00049796271 + 186880 -6249.2908 -6253.3907 4.099918 3689.1534 631.57919 -10574.123 0 196.49108 -0.00035984235 -0.00038044554 + 186890 -6249.1871 -6253.7502 4.5630283 3689.1201 631.85693 -10574.727 0 218.68592 -0.00030899509 -0.0003276094 + 186900 -6249.0782 -6254.1208 5.0425571 3690.6555 631.54469 -10576.321 0 241.66763 -0.00033277714 -0.00034813431 + 186910 -6248.9404 -6254.4376 5.497206 3693.4057 630.66966 -10578.513 0 263.45695 -0.00042732521 -0.00044108726 + 186920 -6248.7651 -6254.6561 5.8910393 3696.7434 629.31992 -10580.719 0 282.33166 -0.00057926498 -0.00059453228 + 186930 -6248.5688 -6254.7484 6.1795813 3699.9045 627.65425 -10582.307 0 296.16021 -0.00076626875 -0.0007848435 + 186940 -6248.3824 -6254.7169 6.3345274 3702.1144 625.89386 -10582.725 0 303.5861 -0.0009572861 -0.0009780818 + 186950 -6248.2247 -6254.6108 6.3861094 3702.7053 624.2954 -10581.612 0 306.0582 -0.0011144501 -0.0011346583 + 186960 -6248.0877 -6254.5098 6.4221044 3701.2596 623.11446 -10578.884 0 307.78328 -0.0011994731 -0.001217332 + 186970 -6247.9478 -6254.4673 6.5195641 3697.7761 622.56586 -10574.809 0 312.45409 -0.001184676 -0.0012009828 + 186980 -6247.7917 -6254.4585 6.6668179 3692.7815 622.77821 -10570.018 0 319.51132 -0.0010645639 -0.001081518 + 186990 -6247.6304 -6254.3861 6.7556749 3687.2942 623.74115 -10565.421 0 323.76985 -0.00086228467 -0.00088100536 + 187000 -6247.4888 -6254.1512 6.6624382 3682.6131 625.26122 -10562.026 0 319.30142 -0.00062721433 -0.00064637168 + 187010 -6247.381 -6253.7407 6.3596786 3679.9893 626.96113 -10560.691 0 304.79148 -0.00042321562 -0.0004400167 + 187020 -6247.295 -6253.2671 5.9721109 3680.2816 628.35596 -10561.905 0 286.21707 -0.00031051009 -0.00032319662 + 187030 -6247.1982 -6252.9239 5.7257501 3683.7003 629.00731 -10565.632 0 274.41007 -0.00032671321 -0.00033642932 + 187040 -6247.0599 -6252.8735 5.8136214 3689.7074 628.70651 -10571.287 0 278.62136 -0.00047306483 -0.00048335917 + 187050 -6246.8748 -6253.1374 6.2626603 3697.0985 627.60284 -10577.839 0 300.14182 -0.00071020213 -0.0007242824 + 187060 -6246.6691 -6253.5647 6.8956151 3704.2484 626.19761 -10584.011 0 330.47657 -0.00096554138 -0.00098346453 + 187070 -6246.4827 -6253.9098 7.4271193 3709.4744 625.17696 -10588.561 0 355.94923 -0.0011522492 -0.001170765 + 187080 -6246.3364 -6253.9716 7.6352356 3711.4618 625.13693 -10590.57 0 365.92333 -0.0011966687 -0.0012123186 + 187090 -6246.2157 -6253.698 7.4823062 3709.6617 626.32182 -10589.682 0 358.5941 -0.0010661066 -0.0010788425 + 187100 -6246.0893 -6253.1912 7.10185 3704.5264 628.50181 -10586.219 0 340.3605 -0.00078507379 -0.00079874432 + 187110 -6245.9445 -6252.632 6.6875206 3697.4447 631.04828 -10581.125 0 320.50351 -0.0004306563 -0.00044965988 + 187120 -6245.8017 -6252.1888 6.3870761 3690.3423 633.1675 -10575.699 0 306.10452 -0.00010719305 -0.00013228313 + 187130 -6245.6952 -6251.9636 6.268484 3685.0737 634.18488 -10571.222 0 300.42093 8.9592539e-05 6.2626688e-05 + 187140 -6245.6375 -6251.9901 6.3525877 3682.8434 633.76238 -10568.596 0 304.45165 0.00010470929 8.2128156e-05 + 187150 -6245.5991 -6252.2592 6.6600964 3683.8837 631.97624 -10568.119 0 319.18919 -5.9797367e-05 -7.4945581e-05 + 187160 -6245.5225 -6252.7369 7.2144166 3687.4966 629.25155 -10569.485 0 345.75533 -0.00034996066 -0.00036149662 + 187170 -6245.3701 -6253.35 7.9798877 3692.4059 626.2073 -10571.963 0 382.441 -0.00068312658 -0.00070029492 + 187180 -6245.1733 -6253.9595 8.7862303 3697.2282 623.48266 -10574.67 0 421.08545 -0.00097781618 -0.0010086009 + 187190 -6245.0387 -6254.3782 9.3394825 3700.8488 621.59413 -10576.821 0 447.60041 -0.0011762523 -0.0012199643 + 187200 -6245.0839 -6254.4593 9.3754171 3702.5836 620.83975 -10577.883 0 449.32259 -0.0012515256 -0.0012973646 + 187210 -6245.3426 -6254.2104 8.8678194 3702.1741 621.25251 -10577.637 0 424.99566 -0.0012025267 -0.001237041 + 187220 -6245.7282 -6253.8195 8.0913377 3699.7638 622.60943 -10576.193 0 387.7823 -0.0010474481 -0.0010655712 + 187230 -6246.1041 -6253.5338 7.429676 3695.9363 624.50401 -10573.974 0 356.07176 -0.00082296551 -0.00083260083 + 187240 -6246.3989 -6253.4719 7.0729429 3691.7253 626.46836 -10571.666 0 338.97511 -0.00058434344 -0.00059968552 + 187250 -6246.6553 -6253.5368 6.8815366 3688.416 628.10609 -10570.059 0 329.80184 -0.00039563976 -0.00042505732 + 187260 -6246.9707 -6253.5137 6.5429575 3687.1064 629.19033 -10569.81 0 313.57524 -0.0003072954 -0.00034668834 + 187270 -6247.3909 -6253.2633 5.8723846 3688.2408 629.69629 -10571.2 0 281.43762 -0.00033290252 -0.00037005237 + 187280 -6247.8608 -6252.8452 4.9844309 3691.4182 629.76369 -10574.027 0 238.8819 -0.00044245231 -0.00046769304 + 187290 -6248.2739 -6252.475 4.2010409 3695.6111 629.60995 -10577.696 0 201.33745 -0.00057885786 -0.00059229378 + 187300 -6248.5624 -6252.3701 3.8076229 3699.6469 629.43039 -10581.447 0 182.48265 -0.00068723652 -0.00069696898 + 187310 -6248.742 -6252.6202 3.8781775 3702.6496 629.3222 -10584.592 0 185.86403 -0.00073836773 -0.00075262727 + 187320 -6248.8867 -6253.1733 4.2865302 3704.2284 629.25806 -10586.66 0 205.43458 -0.00073436133 -0.00075496833 + 187330 -6249.0672 -6253.9119 4.8447293 3704.4036 629.11882 -10587.434 0 232.18661 -0.00069777575 -0.00071997084 + 187340 -6249.3047 -6254.7286 5.4239258 3703.4196 628.77236 -10586.921 0 259.94496 -0.00065472228 -0.00067239648 + 187350 -6249.5712 -6255.5358 5.9646411 3701.5994 628.16072 -10585.296 0 285.85907 -0.00062295884 -0.00063410191 + 187360 -6249.8264 -6256.2292 6.4027362 3699.2995 627.34827 -10582.877 0 306.85504 -0.00060941354 -0.00061722471 + 187370 -6250.0558 -6256.6712 6.6153665 3696.9171 626.50079 -10580.089 0 317.04548 -0.00061413316 -0.00062350325 + 187380 -6250.2748 -6256.7394 6.4645483 3694.8677 625.80452 -10577.412 0 309.81743 -0.00063486421 -0.00064793525 + 187390 -6250.5006 -6256.4113 5.9106737 3693.5005 625.37186 -10575.284 0 283.27265 -0.00066902722 -0.00068387904 + 187400 -6250.725 -6255.8106 5.0855967 3692.998 625.19247 -10574.001 0 243.73033 -0.00071373449 -0.00072691077 + 187410 -6250.9167 -6255.1601 4.2433434 3693.3342 625.15966 -10573.654 0 203.36482 -0.00076564266 -0.00077563671 + 187420 -6251.0481 -6254.6665 3.6184227 3694.3171 625.15178 -10574.135 0 173.41512 -0.00082092817 -0.00082930527 + 187430 -6251.1161 -6254.4176 3.3015035 3695.6739 625.11415 -10575.206 0 158.22657 -0.00087455097 -0.0008840525 + 187440 -6251.1409 -6254.3625 3.2216752 3697.1177 625.09183 -10576.572 0 154.40075 -0.00091875656 -0.0009305989 + 187450 -6251.146 -6254.3816 3.2355999 3698.3767 625.1994 -10577.958 0 155.0681 -0.00094234061 -0.00095535243 + 187460 -6251.1386 -6254.3833 3.2446836 3699.2174 625.55215 -10579.153 0 155.50345 -0.00093264449 -0.00094478378 + 187470 -6251.105 -6254.3587 3.2536051 3699.4979 626.20032 -10580.057 0 155.93101 -0.00088055998 -0.0008910348 + 187480 -6251.0222 -6254.3675 3.345296 3699.2334 627.09822 -10580.699 0 160.32535 -0.0007861198 -0.00079607983 + 187490 -6250.8697 -6254.4831 3.6134476 3698.6237 628.11552 -10581.222 0 173.17668 -0.00066116801 -0.00067258082 + 187500 -6250.6311 -6254.739 4.1079088 3698.0072 629.07706 -10581.823 0 196.87404 -0.00052731661 -0.00054123274 + 187510 -6250.2858 -6255.1048 4.8189593 3697.751 629.80989 -10582.666 0 230.95157 -0.00041024187 -0.00042591606 + 187520 -6249.8024 -6255.4946 5.6921744 3698.1199 630.1807 -10583.795 0 272.80094 -0.00033303739 -0.00034859332 + 187530 -6249.1476 -6255.7946 6.6470579 3699.1737 630.11795 -10585.086 0 318.56431 -0.00031108634 -0.0003253436 + 187540 -6248.3149 -6255.8899 7.5749773 3700.7264 629.62377 -10586.24 0 363.03541 -0.00034939368 -0.00036351957 + 187550 -6247.3594 -6255.6801 8.3207003 3702.3805 628.78311 -10586.844 0 398.77465 -0.00044158412 -0.00045883158 + 187560 -6246.4026 -6255.096 8.6933845 3703.6204 627.76833 -10586.485 0 416.63577 -0.00056912606 -0.00059207171 + 187570 -6245.5852 -6254.1374 8.5521559 3703.9284 626.82335 -10584.889 0 409.8673 -0.00070100381 -0.00072850554 + 187580 -6244.9905 -6252.9203 7.929835 3702.9009 626.21197 -10582.033 0 380.04219 -0.00079716558 -0.00082457635 + 187590 -6244.604 -6251.6817 7.0776531 3700.3794 626.13559 -10578.197 0 339.20085 -0.00081933351 -0.00084240359 + 187600 -6244.3418 -6250.7042 6.362449 3696.5942 626.65087 -10573.949 0 304.92426 -0.00074728724 -0.00076602314 + 187610 -6244.1149 -6250.1978 6.082888 3692.2471 627.62593 -10570.071 0 291.52612 -0.00059230651 -0.00061113824 + 187620 -6243.8797 -6250.2089 6.3291799 3688.425 628.76274 -10567.397 0 303.32982 -0.00039909311 -0.00042331577 + 187630 -6243.6502 -6250.6097 6.9595555 3686.3102 629.68848 -10566.608 0 333.54095 -0.00023291544 -0.00026433808 + 187640 -6243.4757 -6251.1684 7.6926988 3686.7655 630.08909 -10568.023 0 368.67729 -0.00015542055 -0.000190526 + 187650 -6243.4 -6251.6615 8.2615274 3689.9582 629.83454 -10571.454 0 395.93875 -0.00019832091 -0.00023037286 + 187660 -6243.4262 -6251.9704 8.5441423 3695.2034 629.03977 -10576.214 0 409.48324 -0.00034721868 -0.00037094267 + 187670 -6243.5145 -6252.113 8.5985422 3701.1293 628.02734 -10581.27 0 412.09039 -0.00054501395 -0.00056053501 + 187680 -6243.6142 -6252.1965 8.582267 3706.1286 627.20364 -10585.529 0 411.31039 -0.00071506237 -0.00072799936 + 187690 -6243.7096 -6252.3241 8.6144655 3708.9173 626.90472 -10588.146 0 412.85352 -0.00079312823 -0.0008103084 + 187700 -6243.8348 -6252.5264 8.6915879 3708.9509 627.27976 -10588.757 0 416.54966 -0.00075159055 -0.00077563869 + 187710 -6244.0412 -6252.7691 8.7279581 3706.5188 628.25408 -10587.542 0 418.29273 -0.00060469145 -0.00063244965 + 187720 -6244.3471 -6253.0066 8.6595205 3702.5395 629.573 -10585.119 0 415.01281 -0.00039700233 -0.00042324686 + 187730 -6244.7241 -6253.2065 8.4824567 3698.2284 630.89494 -10582.33 0 406.52692 -0.00018638485 -0.00020865171 + 187740 -6245.1281 -6253.3318 8.2036473 3694.7819 631.88907 -10580.003 0 393.16481 -2.9419055e-05 -4.896673e-05 + 187750 -6245.5342 -6253.3382 7.8040486 3693.1064 632.30673 -10578.751 0 374.0138 3.0833878e-05 1.1960677e-05 + 187760 -6245.9369 -6253.2195 7.2825902 3693.5916 632.02479 -10578.836 0 349.02258 -2.3707234e-05 -4.1987043e-05 + 187770 -6246.3302 -6253.053 6.72279 3695.9941 631.07416 -10580.121 0 322.19382 -0.00017871851 -0.00019487191 + 187780 -6246.6973 -6252.9803 6.283018 3699.5125 629.65306 -10582.146 0 301.11748 -0.0003898296 -0.00040304667 + 187790 -6247.0225 -6253.1196 6.0970594 3703.0607 628.10163 -10584.282 0 292.2053 -0.00059651598 -0.0006080258 + 187800 -6247.3061 -6253.4778 6.1717766 3705.6319 626.81623 -10585.926 0 295.78616 -0.00074261591 -0.00075472463 + 187810 -6247.5643 -6253.9365 6.3721817 3706.6053 626.11696 -10586.659 0 305.3907 -0.00079498119 -0.00080920904 + 187820 -6247.8157 -6254.3179 6.5021403 3705.8952 626.12445 -10586.338 0 311.61905 -0.00075305182 -0.00076928286 + 187830 -6248.0654 -6254.4804 6.4149991 3703.9169 626.71245 -10585.11 0 307.44275 -0.00064641978 -0.00066353871 + 187840 -6248.3017 -6254.383 6.0812858 3701.4023 627.56626 -10583.351 0 291.44934 -0.000522257 -0.00053935558 + 187850 -6248.5055 -6254.0887 5.5831571 3699.1399 628.31898 -10581.548 0 267.57622 -0.00042789626 -0.00044490405 + 187860 -6248.6654 -6253.721 5.0556438 3697.7282 628.6991 -10580.148 0 242.29482 -0.00039471337 -0.00041200654 + 187870 -6248.7839 -6253.4075 4.6235551 3697.4166 628.62373 -10579.448 0 221.5867 -0.00042824767 -0.00044579445 + 187880 -6248.8711 -6253.244 4.3728801 3698.0714 628.20481 -10579.52 0 209.57295 -0.00050754603 -0.00052467451 + 187890 -6248.931 -6253.2857 4.3546433 3699.2694 627.67883 -10580.234 0 208.69894 -0.00059421139 -0.00061047949 + 187900 -6248.9568 -6253.5453 4.5884293 3700.488 627.30152 -10581.335 0 219.90328 -0.00064812352 -0.00066446895 + 187910 -6248.9391 -6253.9852 5.0461116 3701.3247 627.2528 -10582.563 0 241.83798 -0.00064350164 -0.0006623178 + 187920 -6248.8804 -6254.5151 5.6346754 3701.6535 627.58101 -10583.75 0 270.04526 -0.00057849538 -0.00060226563 + 187930 -6248.8018 -6255.0108 6.2089661 3701.6432 628.19591 -10584.85 0 297.56849 -0.00047474155 -0.00050425949 + 187940 -6248.7352 -6255.3518 6.6166018 3701.638 628.90769 -10585.897 0 317.10468 -0.00036808738 -0.00040153794 + 187950 -6248.7086 -6255.459 6.7504305 3701.9661 629.4989 -10586.924 0 323.51851 -0.0002947542 -0.00032813536 + 187960 -6248.7311 -6255.3199 6.588838 3702.7662 629.80408 -10587.89 0 315.77409 -0.00027777088 -0.00030653225 + 187970 -6248.7839 -6254.9977 6.2138139 3703.9019 629.76658 -10588.666 0 297.80083 -0.00031823871 -0.00033973778 + 187980 -6248.8253 -6254.6134 5.7880395 3705.0071 629.45082 -10589.071 0 277.39533 -0.00039539714 -0.00041104438 + 187990 -6248.8126 -6254.2896 5.4770363 3705.6527 629.0086 -10588.951 0 262.49031 -0.00047654703 -0.00049179121 + 188000 -6248.7314 -6254.0786 5.3471979 3705.5564 628.61747 -10588.252 0 256.26773 -0.00053237969 -0.00055355325 + 188010 -6248.6099 -6253.9256 5.3157128 3704.7162 628.41621 -10587.058 0 254.75878 -0.00054923331 -0.00057887004 + 188020 -6248.5001 -6253.7112 5.2111115 3703.3879 628.45826 -10585.557 0 249.7457 -0.00053158792 -0.00056586555 + 188030 -6248.4355 -6253.3544 4.9188808 3701.9324 628.69412 -10583.981 0 235.74037 -0.00049497176 -0.00052595528 + 188040 -6248.3962 -6252.9011 4.5049005 3700.6487 628.98615 -10582.536 0 215.90011 -0.00045585384 -0.00047740649 + 188050 -6248.3129 -6252.5246 4.2116845 3699.7074 629.15181 -10581.384 0 201.84755 -0.00042580286 -0.00043855946 + 188060 -6248.1039 -6252.4251 4.3211867 3699.2028 629.02522 -10580.653 0 207.09551 -0.00041182437 -0.0004229019 + 188070 -6247.7106 -6252.7017 4.9911123 3699.2308 628.52079 -10580.453 0 239.20211 -0.00041831294 -0.0004357073 + 188080 -6247.1037 -6253.291 6.1872848 3699.8782 627.68216 -10580.851 0 296.52941 -0.00044491812 -0.00047110809 + 188090 -6246.2751 -6254.007 7.731864 3701.1101 626.70254 -10581.82 0 370.5543 -0.00048050065 -0.00051048433 + 188100 -6245.2456 -6254.6295 9.3839643 3702.6643 625.90309 -10583.197 0 449.73222 -0.00050033754 -0.0005258811 + 188110 -6244.086 -6254.9681 10.88215 3704.0938 625.65183 -10584.714 0 521.5337 -0.00047417712 -0.00049130244 + 188120 -6242.9179 -6254.8772 11.959333 3704.9935 626.22019 -10586.091 0 573.15836 -0.00038492151 -0.00039829722 + 188130 -6241.8855 -6254.2624 12.376902 3705.2719 627.62865 -10587.163 0 593.1706 -0.00024632522 -0.0002657882 + 188140 -6241.1148 -6253.1198 12.005026 3705.228 629.5821 -10587.93 0 575.34819 -0.0001033206 -0.0001351375 + 188150 -6240.6708 -6251.5917 10.920887 3705.3225 631.56804 -10588.482 0 523.39019 -9.5722365e-06 -5.0558041e-05 + 188160 -6240.5294 -6249.9737 9.44428 3705.791 633.08392 -10588.849 0 452.62289 4.1464358e-06 -3.5604438e-05 + 188170 -6240.5857 -6248.6392 8.0535556 3706.3916 633.86458 -10588.895 0 385.97157 -5.0632184e-05 -7.9811741e-05 + 188180 -6240.6995 -6247.9034 7.2039205 3706.4988 633.97707 -10588.379 0 345.25229 -0.00012519587 -0.00014311079 + 188190 -6240.7588 -6247.8866 7.1277926 3705.5114 633.73658 -10587.135 0 341.60381 -0.00016026489 -0.00017576791 + 188200 -6240.7352 -6248.4546 7.7193948 3703.3155 633.50103 -10585.271 0 369.95671 -0.00011943868 -0.00014434959 + 188210 -6240.697 -6249.2872 8.5901427 3700.4819 633.4601 -10583.229 0 411.68784 -1.09467e-05 -5.1033057e-05 + 188220 -6240.7611 -6250.0548 9.2937419 3698.0548 633.52934 -10581.639 0 445.40826 0.0001149899 6.4375379e-05 + 188230 -6241.0077 -6250.5972 9.5894273 3697.0612 633.4016 -10581.06 0 459.57916 0.00019167916 0.00014188345 + 188240 -6241.4262 -6250.983 9.556819 3698.0348 632.72439 -10581.742 0 458.01639 0.00016878782 0.00012920249 + 188250 -6241.9377 -6251.4123 9.47454 3700.8042 631.30691 -10583.523 0 454.07312 3.3800662e-05 5.3843368e-06 + 188260 -6242.4713 -6252.0327 9.561389 3704.6 629.2515 -10585.884 0 458.23541 -0.00018632364 -0.00021030573 + 188270 -6243.0189 -6252.8084 9.7895091 3708.3589 626.95093 -10588.118 0 469.16821 -0.00043812697 -0.00046541788 + 188280 -6243.6223 -6253.5342 9.911909 3711.0481 624.96115 -10589.543 0 475.0343 -0.00065889972 -0.00069172244 + 188290 -6244.3086 -6253.9762 9.6676518 3711.9128 623.80992 -10589.699 0 463.32812 -0.00079193749 -0.00082604154 + 188300 -6245.0356 -6254.0248 8.9892257 3710.635 623.81956 -10588.479 0 430.81413 -0.00079919769 -0.00082869735 + 188310 -6245.7056 -6253.7512 8.0455575 3707.4287 625.00664 -10586.186 0 385.58826 -0.00067212233 -0.00069523052 + 188320 -6246.2325 -6253.3378 7.1053203 3703.0617 627.08218 -10583.482 0 340.52682 -0.00043845365 -0.00045874266 + 188330 -6246.5985 -6252.96 6.3615872 3698.7461 629.53558 -10581.242 0 304.88295 -0.00015976523 -0.00018217466 + 188340 -6246.8523 -6252.7203 5.8680638 3695.8402 631.7689 -10580.329 0 281.23054 8.4125227e-05 5.8236252e-05 + 188350 -6247.0592 -6252.6646 5.6053609 3695.4135 633.25126 -10581.329 0 268.64034 0.00022096009 0.00019482278 + 188360 -6247.2517 -6252.8217 5.5700404 3697.8486 633.66474 -10584.335 0 266.94759 0.00021175507 0.0001895484 + 188370 -6247.4182 -6253.1967 5.7785144 3702.6744 633.00379 -10588.875 0 276.93883 6.447696e-05 4.689032e-05 + 188380 -6247.5352 -6253.721 6.1857614 3708.706 631.58753 -10594.014 0 296.45639 -0.0001700758 -0.00018667522 + 188390 -6247.6059 -6254.2249 6.6190033 3714.4113 629.96371 -10598.6 0 317.21978 -0.00041683021 -0.00043689177 + 188400 -6247.6687 -6254.4925 6.8238765 3718.3454 628.72351 -10601.561 0 327.03845 -0.00060069586 -0.00062507974 + 188410 -6247.7646 -6254.3826 6.6180871 3719.5157 628.28851 -10602.187 0 317.17587 -0.0006682495 -0.00069318964 + 188420 -6247.8974 -6253.933 6.0356315 3717.6126 628.75392 -10600.3 0 289.26133 -0.000602007 -0.00062249461 + 188430 -6248.027 -6253.3601 5.3330864 3713.0848 629.85645 -10596.301 0 255.59142 -0.00042516758 -0.00043961482 + 188440 -6248.1026 -6252.9422 4.8396764 3707.0509 631.08175 -10591.075 0 231.94445 -0.000195804 -0.0002077088 + 188450 -6248.1034 -6252.8626 4.7591682 3701.0456 631.86455 -10585.773 0 228.08604 9.3483165e-06 -5.7764457e-06 + 188460 -6248.0538 -6253.1145 5.0606827 3696.62 631.79872 -10581.533 0 242.53631 0.00011859332 9.7131712e-05 + 188470 -6248.0043 -6253.5288 5.5244822 3694.8866 630.77763 -10579.193 0 264.76418 8.9853245e-05 6.4434089e-05 + 188480 -6247.9926 -6253.8967 5.9040615 3696.1595 629.01852 -10579.075 0 282.95575 -7.3053412e-05 -9.636927e-05 + 188490 -6248.0117 -6254.0986 6.0868196 3699.8539 626.97395 -10580.926 0 291.71455 -0.00032049543 -0.00033723463 + 188500 -6248.0154 -6254.1499 6.1345482 3704.7234 625.17715 -10584.05 0 294.00197 -0.00057515698 -0.00058669271 + 188510 -6247.9597 -6254.143 6.1833131 3709.3376 624.08417 -10587.565 0 296.33906 -0.00076059806 -0.00077340235 + 188520 -6247.846 -6254.151 6.3049704 3712.5702 623.96097 -10590.682 0 302.16956 -0.00082690388 -0.00084715626 + 188530 -6247.7235 -6254.1802 6.4566355 3713.8765 624.83674 -10592.893 0 309.4382 -0.00076265603 -0.00079088717 + 188540 -6247.649 -6254.1967 6.5476605 3713.2985 626.52247 -10594.018 0 313.80063 -0.00059108819 -0.00062162197 + 188550 -6247.6378 -6254.1797 6.5418809 3711.2963 628.67906 -10594.155 0 313.52364 -0.00035636714 -0.00038213622 + 188560 -6247.6503 -6254.1409 6.490673 3708.5557 630.90944 -10593.606 0 311.06947 -0.00010877704 -0.00012745806 + 188570 -6247.6247 -6254.0902 6.4655199 3705.8513 632.84812 -10592.79 0 309.86399 0.0001052329 8.8995545e-05 + 188580 -6247.5312 -6253.9859 6.4546515 3703.9434 634.22822 -10592.157 0 309.34311 0.0002479055 0.00022632099 + 188590 -6247.4015 -6253.7302 6.3287039 3703.4371 634.91586 -10592.083 0 303.307 0.00029399733 0.00026320252 + 188600 -6247.3052 -6253.2413 5.9361116 3704.581 634.90871 -10592.731 0 284.49178 0.00023698716 0.00020141764 + 188610 -6247.2847 -6252.5664 5.2816911 3707.0906 634.30231 -10593.959 0 253.12827 9.5550796e-05 6.4958453e-05 + 188620 -6247.3034 -6251.9366 4.6332517 3710.158 633.23996 -10595.335 0 222.05142 -8.7575684e-05 -0.00010699772 + 188630 -6247.2609 -6251.6671 4.4062241 3712.7472 631.87192 -10596.286 0 211.17098 -0.0002604747 -0.0002728241 + 188640 -6247.0703 -6251.9381 4.8678026 3714.0524 630.3419 -10596.332 0 233.29242 -0.00038492067 -0.00040178157 + 188650 -6246.7256 -6252.6399 5.9142692 3713.8107 628.79582 -10595.246 0 283.44497 -0.0004507384 -0.00048072626 + 188660 -6246.3022 -6253.4339 7.1317479 3712.256 627.39363 -10593.084 0 341.79338 -0.00047033698 -0.00051092868 + 188670 -6245.8919 -6253.975 8.0830903 3709.8213 626.30746 -10590.104 0 387.38704 -0.00045958446 -0.00049889497 + 188680 -6245.5282 -6254.1073 8.579057 3706.8796 625.69792 -10586.685 0 411.15655 -0.00042219365 -0.00044899428 + 188690 -6245.1653 -6253.903 8.7377416 3703.7217 625.67084 -10583.296 0 418.7616 -0.00035010688 -0.00036339137 + 188700 -6244.7329 -6253.5488 8.8159162 3700.7233 626.23109 -10580.503 0 422.50817 -0.00023851128 -0.0002485302 + 188710 -6244.2204 -6253.1876 8.9672202 3698.4938 627.26005 -10578.941 0 429.7595 -0.00010210711 -0.00012181057 + 188720 -6243.7104 -6252.8426 9.1322529 3697.8017 628.53618 -10579.18 0 437.6688 2.2681787e-05 -1.1198498e-05 + 188730 -6243.3234 -6252.4715 9.1480474 3699.2443 629.79937 -10581.515 0 438.42576 9.4553168e-05 5.4495372e-05 + 188740 -6243.1164 -6252.0758 8.9593793 3702.8573 630.83806 -10585.771 0 429.38373 9.2197369e-05 5.9312608e-05 + 188750 -6243.0318 -6251.7374 8.7056187 3707.9521 631.56361 -10591.253 0 417.22209 2.7817091e-05 8.6049464e-06 + 188760 -6242.9532 -6251.5288 8.5755773 3713.3349 632.03684 -10596.9 0 410.98978 -6.1286524e-05 -7.3081099e-05 + 188770 -6242.8175 -6251.3937 8.576234 3717.7731 632.42986 -10601.597 0 411.02126 -0.00013469314 -0.00015200493 + 188780 -6242.6709 -6251.153 8.482161 3720.3964 632.93371 -10604.483 0 406.51275 -0.00016579708 -0.00019619195 + 188790 -6242.613 -6250.671 8.058009 3720.8198 633.6517 -10605.143 0 386.185 -0.00014361102 -0.00018303089 + 188800 -6242.6926 -6250.0299 7.3372552 3719.0577 634.53438 -10603.622 0 351.64244 -6.6275546e-05 -0.00010388421 + 188810 -6242.8664 -6249.5254 6.6589376 3715.4398 635.39187 -10600.357 0 319.13365 6.0909382e-05 3.2841347e-05 + 188820 -6243.0512 -6249.4746 6.4234296 3710.619 635.96956 -10596.063 0 307.84679 0.00022018082 0.00020095971 + 188830 -6243.1992 -6250.0037 6.804475 3705.5754 636.03738 -10591.616 0 326.10862 0.00037715422 0.00036002296 + 188840 -6243.331 -6250.9761 7.645088 3701.4822 635.45171 -10587.91 0 366.39551 0.00048550917 0.00046349684 + 188850 -6243.5196 -6252.0834 8.5637664 3699.4177 634.18301 -10585.684 0 410.42374 0.00050012398 0.00047025418 + 188860 -6243.8498 -6253.0063 9.1565329 3700.0217 632.32243 -10585.35 0 438.83243 0.00039314082 0.00035735215 + 188870 -6244.3717 -6253.5529 9.1812388 3703.2292 630.07617 -10586.858 0 440.01648 0.00016738938 0.0001309935 + 188880 -6245.0655 -6253.7246 8.6591317 3708.1992 627.7435 -10589.667 0 414.99418 -0.00013776221 -0.00016920349 + 188890 -6245.8443 -6253.6906 7.8462664 3713.5147 625.67601 -10592.881 0 376.03711 -0.00045297467 -0.00047707721 + 188900 -6246.6046 -6253.6747 7.0701574 3717.6329 624.22377 -10595.531 0 338.84161 -0.00069884511 -0.00071766837 + 188910 -6247.2842 -6253.8184 6.534125 3719.4068 623.67311 -10596.898 0 313.15193 -0.00081178521 -0.0008296142 + 188920 -6247.8771 -6254.1112 6.2341393 3718.4394 624.17847 -10596.729 0 298.77493 -0.00076409945 -0.00078378588 + 188930 -6248.4021 -6254.4281 6.0259316 3715.1476 625.70048 -10595.276 0 288.79645 -0.00057095442 -0.00059212571 + 188940 -6248.8685 -6254.624 5.7555249 3710.5817 627.97747 -10593.183 0 275.83705 -0.00028430446 -0.00030454169 + 188950 -6249.2641 -6254.6169 5.3527641 3706.114 630.55704 -10591.288 0 256.53449 2.2203566e-05 4.7730987e-06 + 188960 -6249.5679 -6254.4169 4.8489885 3703.0852 632.89418 -10590.396 0 232.39074 0.00027240146 0.00025735462 + 188970 -6249.7699 -6254.1053 4.3354204 3702.4725 634.49335 -10591.071 0 207.77767 0.00040612569 0.00039108131 + 188980 -6249.8837 -6253.7879 3.9041833 3704.6352 635.04999 -10593.473 0 187.11037 0.00039355054 0.00037623177 + 188990 -6249.9435 -6253.5583 3.6147999 3709.1953 634.5406 -10597.294 0 173.24149 0.00024318222 0.00022350342 + 189000 -6249.9827 -6253.4868 3.5041286 3715.0921 633.22445 -10601.803 0 167.93751 1.5699038e-06 -1.8181589e-05 + 189010 -6250.0116 -6253.6249 3.6133368 3720.8243 631.55234 -10606.002 0 173.17138 -0.00025754666 -0.00027489219 + 189020 -6250.0125 -6253.9914 3.9789608 3724.8501 630.01801 -10608.86 0 190.69413 -0.00045477746 -0.00046965766 + 189030 -6249.9612 -6254.532 4.5707887 3726.0466 629.01116 -10609.59 0 219.05784 -0.00053155195 -0.00054654809 + 189040 -6249.8578 -6255.0969 5.2390483 3724.0646 628.71989 -10607.881 0 251.08459 -0.00047028567 -0.00048794586 + 189050 -6249.7313 -6255.4892 5.7578664 3719.4275 629.09809 -10604.015 0 275.94927 -0.00029840589 -0.0003185869 + 189060 -6249.6119 -6255.5723 5.9604307 3713.343 629.89196 -10598.807 0 285.65728 -7.5500578e-05 -9.5861474e-05 + 189070 -6249.5019 -6255.3495 5.8476088 3707.3339 630.71666 -10593.4 0 280.25022 0.00012784535 0.00010879034 + 189080 -6249.3808 -6254.9451 5.5643616 3702.8413 631.17263 -10588.959 0 266.67543 0.00024964147 0.00023069761 + 189090 -6249.2372 -6254.5111 5.2739475 3700.8906 630.97673 -10586.378 0 252.75716 0.00025070675 0.00022975935 + 189100 -6249.0862 -6254.1451 5.0588551 3701.8471 630.06939 -10586.062 0 242.44872 0.00012478134 0.00010210163 + 189110 -6248.9494 -6253.8794 4.9300176 3705.3 628.6574 -10587.837 0 236.2741 -9.5916578e-05 -0.00011697113 + 189120 -6248.821 -6253.7172 4.896126 3710.1532 627.16897 -10591.039 0 234.64983 -0.00034507957 -0.00036129699 + 189130 -6248.6624 -6253.6462 4.9838501 3714.9676 626.12572 -10594.74 0 238.85406 -0.00054156536 -0.00055363231 + 189140 -6248.4354 -6253.6158 5.1803908 3718.4546 625.96644 -10598.037 0 248.27339 -0.00061916989 -0.00063154896 + 189150 -6248.1414 -6253.5328 5.3914393 3719.8945 626.88148 -10600.309 0 258.38802 -0.00055224237 -0.00056909375 + 189160 -6247.8195 -6253.3218 5.5023301 3719.2897 628.72581 -10601.337 0 263.70253 -0.00036275879 -0.00038429723 + 189170 -6247.5085 -6253.0054 5.4969622 3717.233 631.06007 -10601.299 0 263.44527 -0.00010660375 -0.00012956623 + 189180 -6247.2111 -6252.7168 5.5056586 3714.6179 633.31343 -10600.648 0 263.86205 0.00015056446 0.00012921604 + 189190 -6246.895 -6252.6149 5.719862 3712.3373 634.99674 -10599.949 0 274.12788 0.0003546657 0.00033469812 + 189200 -6246.5267 -6252.7631 6.2364826 3711.0585 635.86678 -10599.688 0 298.88724 0.00047470333 0.00045307048 + 189210 -6246.1094 -6253.0644 6.9550321 3711.0971 635.97025 -10600.132 0 333.32416 0.00050480749 0.00047904444 + 189220 -6245.6908 -6253.309 7.6182339 3712.3777 635.55855 -10601.245 0 365.10852 0.00046044757 0.00043157 + 189230 -6245.3268 -6253.3095 7.9826831 3714.4731 634.92762 -10602.71 0 382.57496 0.00037114885 0.00034277389 + 189240 -6245.0351 -6253.0193 7.9841857 3716.7379 634.27322 -10604.03 0 382.64698 0.00026975147 0.00024399124 + 189250 -6244.791 -6252.5406 7.7495824 3718.5303 633.63565 -10604.707 0 371.40347 0.00017971905 0.00015441958 + 189260 -6244.5685 -6252.033 7.4645548 3719.4334 632.94347 -10604.41 0 357.74335 0.00010698369 7.7710336e-05 + 189270 -6244.3736 -6251.6289 7.2553095 3719.3411 632.10466 -10603.075 0 347.71514 4.3270047e-05 7.8475649e-06 + 189280 -6244.2326 -6251.4171 7.1844852 3718.3685 631.08452 -10600.87 0 344.32084 -2.0750782e-05 -6.0131898e-05 + 189290 -6244.1587 -6251.459 7.3002501 3716.694 629.94203 -10598.095 0 349.86895 -8.3175364e-05 -0.00012203921 + 189300 -6244.1415 -6251.7757 7.6341606 3714.4785 628.82782 -10595.082 0 365.87181 -0.00012913057 -0.00016417908 + 189310 -6244.1649 -6252.3049 8.1399834 3711.9048 627.95303 -10592.163 0 390.11368 -0.00013972069 -0.00017026009 + 189320 -6244.227 -6252.8875 8.6605192 3709.258 627.5324 -10589.678 0 415.06067 -0.00010373271 -0.0001307948 + 189330 -6244.3341 -6253.3218 8.9877618 3706.9562 627.70799 -10587.986 0 430.74398 -2.450812e-05 -4.9922595e-05 + 189340 -6244.4816 -6253.4501 8.9685004 3705.5035 628.47986 -10587.433 0 429.82086 7.9339671e-05 5.2970637e-05 + 189350 -6244.653 -6253.2086 8.5556332 3705.3906 629.68182 -10588.281 0 410.03395 0.00017719159 0.00014731647 + 189360 -6244.8369 -6252.6319 7.7950432 3706.946 631.02289 -10590.601 0 373.58221 0.0002341804 0.00020069367 + 189370 -6245.0306 -6251.854 6.8234097 3710.1453 632.18196 -10594.181 0 327.01608 0.00022515643 0.00019162009 + 189380 -6245.2221 -6251.109 5.8869208 3714.4721 632.92166 -10598.503 0 282.13428 0.00015016978 0.00012120408 + 189390 -6245.3802 -6250.6721 5.2918077 3718.9781 633.18267 -10602.833 0 253.61312 4.0410675e-05 1.7317969e-05 + 189400 -6245.4741 -6250.7259 5.2517668 3722.576 633.1191 -10606.421 0 251.69413 -5.2085667e-05 -7.2632284e-05 + 189410 -6245.5039 -6251.2446 5.7407488 3724.4195 633.0446 -10608.709 0 275.12889 -7.6003759e-05 -9.8590464e-05 + 189420 -6245.5106 -6252.0003 6.4896502 3724.1728 633.29065 -10609.464 0 311.02045 -2.0873391e-06 -2.7878037e-05 + 189430 -6245.5506 -6252.7006 7.1499883 3722.0803 634.02654 -10608.807 0 342.66756 0.00016467291 0.00013936524 + 189440 -6245.6507 -6253.1665 7.5158161 3718.8656 635.12697 -10607.159 0 360.20008 0.00038506514 0.00036538146 + 189450 -6245.784 -6253.4253 7.6413703 3715.5299 636.16915 -10605.124 0 366.21734 0.00059624613 0.00058332109 + 189460 -6245.8966 -6253.6498 7.7531614 3713.107 636.58686 -10603.344 0 371.575 0.00072870713 0.00071730027 + 189470 -6245.9671 -6253.9842 8.017099 3712.403 635.92536 -10602.312 0 384.22437 0.00072577613 0.00070800668 + 189480 -6246.0407 -6254.3975 8.3568746 3713.7362 634.07813 -10602.212 0 400.50832 0.00056320815 0.00053575627 + 189490 -6246.1982 -6254.6892 8.4909718 3716.7348 631.38453 -10602.809 0 406.93501 0.0002647949 0.00023282499 + 189500 -6246.4757 -6254.6436 8.1678739 3720.3222 628.53128 -10603.497 0 391.45035 -9.475824e-05 -0.00012163911 + 189510 -6246.8127 -6254.1961 7.3834903 3723.0173 626.30135 -10603.515 0 353.85828 -0.00040918657 -0.00042597254 + 189520 -6247.093 -6253.4611 6.368055 3723.5222 625.29162 -10602.275 0 305.19293 -0.00058082903 -0.00059221198 + 189530 -6247.2439 -6252.6205 5.3766031 3721.3266 625.72141 -10599.668 0 257.67699 -0.00056233704 -0.00057827582 + 189540 -6247.2898 -6251.82 4.5302435 3716.9674 627.38729 -10596.175 0 217.11469 -0.00037449559 -0.00040072679 + 189550 -6247.3134 -6251.1743 3.8608754 3711.7891 629.75415 -10592.718 0 185.03481 -9.0429305e-05 -0.00012350067 + 189560 -6247.3727 -6250.8246 3.4518308 3707.3829 632.13965 -10590.347 0 165.4311 0.00020008304 0.00016899894 + 189570 -6247.4555 -6250.932 3.4765121 3705.04 633.93037 -10589.902 0 166.61397 0.00042307897 0.00040012946 + 189580 -6247.4997 -6251.5791 4.0794028 3705.4442 634.75832 -10591.782 0 195.50787 0.00053619361 0.00052010571 + 189590 -6247.4518 -6252.6674 5.2156359 3708.6097 634.58183 -10595.859 0 249.96254 0.00052967771 0.00051368453 + 189600 -6247.3145 -6253.916 6.60152 3713.952 633.65432 -10601.522 0 316.38188 0.00042149341 0.00039916044 + 189610 -6247.1496 -6254.9774 7.8277895 3720.4085 632.40801 -10607.794 0 375.15159 0.00025152611 0.00022122211 + 189620 -6247.0376 -6255.5888 8.5511897 3726.6206 631.30601 -10613.515 0 409.82099 7.3507328e-05 3.8705684e-05 + 189630 -6247.0303 -6255.6613 8.6310249 3731.2087 630.71391 -10617.584 0 413.64714 -5.7622877e-05 -9.1086354e-05 + 189640 -6247.1269 -6255.2776 8.1506573 3733.1034 630.81661 -10619.198 0 390.62523 -0.00010062468 -0.00012790229 + 189650 -6247.281 -6254.634 7.3530882 3731.8377 631.58298 -10618.055 0 352.40125 -3.9876065e-05 -5.9741722e-05 + 189660 -6247.4279 -6253.9581 6.530182 3727.7081 632.77753 -10614.444 0 312.96296 0.00010905066 9.3163005e-05 + 189670 -6247.5232 -6253.416 5.892773 3721.7506 634.02198 -10609.189 0 282.41475 0.00030117113 0.000282909 + 189680 -6247.5683 -6253.048 5.4797226 3715.4981 634.90112 -10603.447 0 262.61905 0.0004726115 0.00044698086 + 189690 -6247.6048 -6252.7806 5.1757724 3710.5428 635.0884 -10598.412 0 248.05205 0.00056037523 0.00052761364 + 189700 -6247.6767 -6252.5138 4.8371137 3708.0344 634.45139 -10595 0 231.82163 0.00052631293 0.00049193086 + 189710 -6247.7909 -6252.2216 4.4307114 3708.3235 633.09641 -10593.642 0 212.34455 0.00037417549 0.00034473332 + 189720 -6247.9093 -6251.987 4.077738 3710.9179 631.33108 -10594.236 0 195.42808 0.00014923031 0.00012718489 + 189730 -6247.9785 -6251.948 3.9694795 3714.7564 629.55744 -10596.262 0 190.23973 -8.100757e-05 -9.9063932e-05 + 189740 -6247.9715 -6252.199 4.2274621 3718.6426 628.13993 -10598.981 0 202.6037 -0.00025480593 -0.00027499865 + 189750 -6247.9051 -6252.7265 4.8213416 3721.6213 627.3027 -10601.65 0 231.06574 -0.00033762803 -0.0003635119 + 189760 -6247.8201 -6253.4213 5.60111 3723.1603 627.09532 -10603.677 0 268.43662 -0.000326833 -0.0003566523 + 189770 -6247.7437 -6254.1393 6.3955934 3723.1456 627.43395 -10604.719 0 306.51272 -0.00024128637 -0.00027011828 + 189780 -6247.6691 -6254.7471 7.0780166 3721.7903 628.18786 -10604.725 0 339.21827 -0.00010652314 -0.00013109641 + 189790 -6247.5719 -6255.1225 7.5505443 3719.5517 629.25647 -10603.931 0 361.86445 5.4053636e-05 3.2535049e-05 + 189800 -6247.4467 -6255.1454 7.6986617 3717.067 630.58769 -10602.8 0 368.96307 0.00021941216 0.00019713435 + 189810 -6247.323 -6254.734 7.4110478 3715.0541 632.12814 -10601.916 0 355.179 0.00036824443 0.00034331506 + 189820 -6247.2386 -6253.9311 6.6924842 3714.1407 633.74776 -10601.82 0 320.7414 0.00048026853 0.00045495734 + 189830 -6247.197 -6252.9637 5.7666175 3714.6717 635.20852 -10602.844 0 276.36867 0.00054189435 0.0005199602 + 189840 -6247.1578 -6252.1813 5.0235849 3716.6067 636.22128 -10605.009 0 240.75838 0.00055041823 0.00053253271 + 189850 -6247.0709 -6251.8719 4.801046 3719.5666 636.56853 -10608.007 0 230.09306 0.00051258712 0.00049528445 + 189860 -6246.9191 -6252.0839 5.1648593 3722.969 636.21548 -10611.268 0 247.52904 0.00044023813 0.0004198304 + 189870 -6246.7263 -6252.604 5.8777596 3726.1466 635.33366 -10614.084 0 281.69522 0.00034830754 0.00032532252 + 189880 -6246.5256 -6253.1106 6.585088 3728.4218 634.21745 -10615.75 0 315.59436 0.00025565836 0.00023439403 + 189890 -6246.3195 -6253.3735 7.0539721 3729.2089 633.14513 -10615.727 0 338.06592 0.00018341811 0.00016663473 + 189900 -6246.0797 -6253.3393 7.2595745 3728.1955 632.27094 -10613.806 0 347.91955 0.00014698019 0.00013175925 + 189910 -6245.7919 -6253.0711 7.2791768 3725.5166 631.60633 -10610.194 0 348.859 0.00014636497 0.00012640589 + 189920 -6245.4922 -6252.6478 7.1556122 3721.7607 631.08123 -10605.49 0 342.93709 0.00016503354 0.00013739039 + 189930 -6245.2449 -6252.1364 6.8915064 3717.7526 630.62765 -10600.517 0 330.27965 0.00018120431 0.00015011742 + 189940 -6245.0791 -6251.6324 6.553313 3714.2432 630.22952 -10596.105 0 314.07153 0.0001834904 0.00015673538 + 189950 -6244.9501 -6251.2776 6.3275074 3711.7153 629.91892 -10592.912 0 303.24966 0.00017722825 0.00015817605 + 189960 -6244.7709 -6251.1949 6.4240252 3710.3993 629.73878 -10591.333 0 307.87533 0.00017559445 0.00015880422 + 189970 -6244.4888 -6251.3818 6.8929404 3710.4096 629.70985 -10591.501 0 330.34838 0.00018387801 0.00015900613 + 189980 -6244.1412 -6251.6741 7.5328971 3711.8139 629.82788 -10593.316 0 361.0187 0.00019257247 0.00015361703 + 189990 -6243.8335 -6251.8488 8.0153315 3714.5267 630.08819 -10596.464 0 384.13966 0.00018769539 0.00013910535 + 190000 -6243.649 -6251.8052 8.1561562 3718.118 630.51152 -10600.435 0 390.88877 0.00017018938 0.00012346082 + 190010 -6243.5736 -6251.6658 8.0921807 3721.7724 631.1474 -10604.586 0 387.8227 0.0001651683 0.00012845367 + 190020 -6243.517 -6251.6832 8.166159 3724.5517 632.05017 -10608.285 0 391.36816 0.00020888475 0.0001796442 + 190030 -6243.4139 -6252.0174 8.6034957 3725.8405 633.23807 -10611.096 0 412.32779 0.00032201247 0.00029013203 + 190040 -6243.3002 -6252.5869 9.2867894 3725.6502 634.64956 -10612.887 0 445.07506 0.00049120028 0.00044918856 + 190050 -6243.288 -6253.125 9.8369748 3724.5496 636.11813 -10613.793 0 471.44303 0.00067313849 0.00062289651 + 190060 -6243.4675 -6253.3641 9.8966105 3723.3053 637.39239 -10614.062 0 474.30111 0.00081559592 0.00076578171 + 190070 -6243.8347 -6253.1764 9.3416844 3722.5146 638.20795 -10613.899 0 447.70593 0.00087851196 0.00083673782 + 190080 -6244.3035 -6252.5935 8.2899474 3722.427 638.37513 -10613.396 0 397.3008 0.00084430305 0.00081218566 + 190090 -6244.7688 -6251.7625 6.9937174 3722.9512 637.83161 -10612.545 0 335.17818 0.00071877376 0.00069276736 + 190100 -6245.1613 -6250.9008 5.7394335 3723.7537 636.64397 -10611.298 0 275.06585 0.00052791098 0.00050308913 + 190110 -6245.4673 -6250.2479 4.7806244 3724.3862 634.98252 -10609.617 0 229.11435 0.00031202237 0.00028527358 + 190120 -6245.7173 -6250.0011 4.2837877 3724.4217 633.09396 -10607.517 0 205.30314 0.00011646616 8.7842094e-05 + 190130 -6245.9598 -6250.2525 4.2927315 3723.5799 631.26982 -10605.102 0 205.73178 -1.9436771e-05 -4.707826e-05 + 190140 -6246.2303 -6250.9654 4.7350467 3721.8166 629.79571 -10602.578 0 226.93001 -7.1461136e-05 -9.4362429e-05 + 190150 -6246.5347 -6251.9992 5.4644751 3719.3665 628.88284 -10600.249 0 261.88831 -3.5257783e-05 -5.1626758e-05 + 190160 -6246.8565 -6253.1537 6.2972316 3716.7408 628.60789 -10598.502 0 301.79867 7.2292945e-05 6.0402294e-05 + 190170 -6247.184 -6254.2057 7.021662 3714.6623 628.89196 -10597.76 0 336.51744 0.00021462551 0.00020250754 + 190180 -6247.5296 -6254.9505 7.420907 3713.8976 629.53098 -10598.379 0 355.6515 0.00034270353 0.00032678402 + 190190 -6247.9155 -6255.2663 7.3508593 3714.9898 630.26748 -10600.524 0 352.29442 0.00041041364 0.00039120479 + 190200 -6248.3399 -6255.1738 6.8338856 3717.9906 630.88171 -10604.046 0 327.51815 0.00039385754 0.0003751314 + 190210 -6248.7625 -6254.8342 6.0716525 3722.348 631.27399 -10608.456 0 290.98766 0.00030377161 0.0002887087 + 190220 -6249.1266 -6254.4639 5.3372639 3727.0416 631.50595 -10613.011 0 255.79163 0.00018246582 0.00017046138 + 190230 -6249.397 -6254.213 4.8159886 3730.9158 631.77636 -10616.905 0 230.8092 8.6213929e-05 7.32908e-05 + 190240 -6249.5808 -6254.0916 4.510782 3733.0591 632.33015 -10619.481 0 216.18198 6.2346945e-05 4.4738136e-05 + 190250 -6249.7152 -6253.9968 4.2816553 3733.067 633.33029 -10620.394 0 205.20095 0.00013176262 0.00010931801 + 190260 -6249.835 -6253.8225 3.9874373 3731.1097 634.74514 -10619.677 0 191.10037 0.00028296628 0.00025918482 + 190270 -6249.9456 -6253.561 3.6153969 3727.8267 636.3085 -10617.696 0 173.2701 0.00047722987 0.00045594856 + 190280 -6250.0248 -6253.3191 3.2942311 3724.1291 637.58367 -10615.032 0 157.87804 0.0006604248 0.0006424265 + 190290 -6250.0487 -6253.2391 3.1904734 3720.9759 638.11322 -10612.328 0 152.90539 0.00077734833 0.00076005891 + 190300 -6250.0149 -6253.4003 3.3854081 3719.1517 637.59211 -10610.144 0 162.24775 0.00078645019 0.00076674135 + 190310 -6249.9432 -6253.7737 3.8305532 3719.0638 635.99041 -10608.828 0 183.5816 0.00067307763 0.0006502805 + 190320 -6249.8549 -6254.2558 4.4008923 3720.6075 633.57681 -10608.44 0 210.91545 0.0004571933 0.00043339079 + 190330 -6249.7521 -6254.7328 4.9806493 3723.173 630.83893 -10608.745 0 238.70066 0.00019024959 0.00016768711 + 190340 -6249.6192 -6255.115 5.4957609 3725.8337 628.33926 -10609.288 0 263.3877 -6.0644381e-05 -8.2129716e-05 + 190350 -6249.4481 -6255.3244 5.8763328 3727.6625 626.56396 -10609.551 0 281.62684 -0.00023537022 -0.00025792239 + 190360 -6249.2586 -6255.2829 6.0243269 3728.0345 625.81115 -10609.129 0 288.71955 -0.00029889828 -0.00032367268 + 190370 -6249.0871 -6254.9464 5.8592794 3726.7876 626.14137 -10607.875 0 280.80955 -0.00024675411 -0.00027198459 + 190380 -6248.9526 -6254.361 5.408487 3724.216 627.39165 -10605.969 0 259.20504 -9.9382532e-05 -0.00012191481 + 190390 -6248.8389 -6253.6735 4.834573 3720.9641 629.23883 -10603.876 0 231.69986 0.0001068306 8.8250962e-05 + 190400 -6248.7136 -6253.0679 4.35432 3717.8868 631.28797 -10602.243 0 208.68345 0.00032684949 0.00031025441 + 190410 -6248.5578 -6252.6793 4.1215702 3715.8807 633.16182 -10601.722 0 197.52877 0.00051421536 0.0004963226 + 190420 -6248.3765 -6252.5525 4.1759931 3715.6686 634.5772 -10602.798 0 200.13702 0.00063149789 0.00061045923 + 190430 -6248.1835 -6252.6577 4.474181 3717.5764 635.40239 -10605.636 0 214.42786 0.00066210156 0.00063822012 + 190440 -6247.9862 -6252.9219 4.9357643 3721.3954 635.68434 -10610.002 0 236.54952 0.00061642793 0.00059077783 + 190450 -6247.7885 -6253.2417 5.4531778 3726.4066 635.62605 -10615.274 0 261.34688 0.00052709297 0.00050027582 + 190460 -6247.6034 -6253.4947 5.8913106 3731.5596 635.50229 -10620.557 0 282.34466 0.00043512916 0.00040756813 + 190470 -6247.4513 -6253.5799 6.1286074 3735.7413 635.53425 -10624.855 0 293.71726 0.00037460483 0.00034740222 + 190480 -6247.3437 -6253.4738 6.130144 3738.048 635.78047 -10627.302 0 293.7909 0.0003624926 0.00033719188 + 190490 -6247.2692 -6253.2536 5.9843332 3737.9882 636.10623 -10627.348 0 286.80282 0.0003963257 0.00037345704 + 190500 -6247.2003 -6253.0553 5.8549747 3735.5724 636.25579 -10624.884 0 280.60324 0.00045845554 0.00043637018 + 190510 -6247.1146 -6252.9847 5.8700554 3731.2898 635.99226 -10620.267 0 281.32599 0.00052398735 0.00049953737 + 190520 -6247.0148 -6253.0399 6.025123 3725.9904 635.22846 -10614.259 0 288.7577 0.00056938505 0.00054040679 + 190530 -6246.9267 -6253.1099 6.1832465 3720.6971 634.0732 -10607.88 0 296.33587 0.0005794507 0.00054696376 + 190540 -6246.8752 -6253.0598 6.1845725 3716.3795 632.76661 -10602.206 0 296.39941 0.00055064231 0.0005183932 + 190550 -6246.8584 -6252.8361 5.9776436 3713.7533 631.54806 -10598.137 0 286.48222 0.00048902102 0.00046049506 + 190560 -6246.8477 -6252.5085 5.6607916 3713.1715 630.54361 -10596.224 0 271.29689 0.00040386041 0.00037962555 + 190570 -6246.8131 -6252.2259 5.4128683 3714.6146 629.7429 -10596.583 0 259.41502 0.00030215448 0.0002799636 + 190580 -6246.7443 -6252.132 5.3876771 3717.7323 629.07278 -10598.937 0 258.20772 0.00018948832 0.00016660134 + 190590 -6246.6515 -6252.298 5.6465863 3721.8954 628.5135 -10602.707 0 270.6161 7.6945938e-05 5.2252281e-05 + 190600 -6246.5495 -6252.697 6.1474766 3726.2659 628.17931 -10607.142 0 294.62157 -1.2618991e-05 -3.8394057e-05 + 190610 -6246.4468 -6253.2138 6.7669834 3729.9326 628.30834 -10611.455 0 324.31182 -4.6429514e-05 -7.2124874e-05 + 190620 -6246.348 -6253.6777 7.3297312 3732.1305 629.16066 -10614.969 0 351.28184 6.3608132e-06 -1.8887245e-05 + 190630 -6246.2627 -6253.9121 7.6494263 3732.4843 630.87534 -10617.272 0 366.60343 0.00015891158 0.00013378585 + 190640 -6246.2027 -6253.8036 7.6008962 3731.1488 633.35975 -10618.312 0 364.27759 0.00039672089 0.00037130244 + 190650 -6246.169 -6253.3585 7.1895139 3728.7687 636.26973 -10618.397 0 344.56185 0.00067857744 0.00065234777 + 190660 -6246.1509 -6252.6972 6.5463448 3726.2749 639.09247 -10618.065 0 313.73758 0.00094650289 0.00091884833 + 190670 -6246.1396 -6251.9906 5.8509636 3724.5936 641.28953 -10617.874 0 280.41101 0.0011405748 0.0011116424 + 190680 -6246.1339 -6251.4001 5.2662332 3724.3519 642.43348 -10618.185 0 252.38744 0.0012152482 0.0011864901 + 190690 -6246.1272 -6251.0512 4.9239731 3725.6761 642.29441 -10619.022 0 235.98442 0.0011524179 0.0011254558 + 190700 -6246.1001 -6251.0163 4.9161628 3728.1631 640.87306 -10620.052 0 235.61011 0.00096596234 0.00094077149 + 190710 -6246.029 -6251.2926 5.2635992 3731.0169 638.3968 -10620.706 0 252.26121 0.00069685034 0.00067128415 + 190720 -6245.9015 -6251.7961 5.8946312 3733.276 635.28587 -10620.358 0 282.5038 0.00040257523 0.00037357924 + 190730 -6245.7263 -6252.386 6.6596432 3734.0611 632.08542 -10618.532 0 319.16747 0.00014451557 0.0001099775 + 190740 -6245.5354 -6252.9053 7.3699189 3732.8111 629.35989 -10615.076 0 353.20787 -2.5259385e-05 -6.4886631e-05 + 190750 -6245.3739 -6253.2287 7.8547967 3729.4594 627.56121 -10610.249 0 376.44593 -7.5764355e-05 -0.00011685485 + 190760 -6245.2759 -6253.3134 8.0374731 3724.4838 626.90584 -10604.703 0 385.20081 -4.2508871e-06 -4.1503415e-05 + 190770 -6245.2398 -6253.224 7.984158 3718.8155 627.31296 -10599.352 0 382.64565 0.00016303141 0.00013320551 + 190780 -6245.232 -6253.0911 7.8591038 3713.6538 628.44431 -10595.189 0 376.65235 0.00037605786 0.00035284176 + 190790 -6245.2184 -6253.0163 7.7978892 3710.2362 629.83953 -10593.092 0 373.7186 0.00057204399 0.00055072571 + 190800 -6245.1947 -6252.9947 7.7999864 3709.5675 631.09087 -10593.653 0 373.81911 0.00069211148 0.00066739837 + 190810 -6245.1892 -6252.9136 7.7243948 3712.1275 631.98296 -10597.024 0 370.19634 0.00070029532 0.00066980962 + 190820 -6245.2397 -6252.6271 7.38739 3717.6457 632.54291 -10602.816 0 354.04518 0.00059793062 0.00056361193 + 190830 -6245.363 -6252.0607 6.6977128 3725.0614 632.98892 -10610.111 0 320.99198 0.00042641944 0.00039324511 + 190840 -6245.5385 -6251.2883 5.7498346 3732.7407 633.60858 -10617.638 0 275.56434 0.00025553659 0.00022840108 + 190850 -6245.7159 -6250.535 4.8191237 3738.9142 634.62224 -10624.071 0 230.95945 0.00016041486 0.00014083651 + 190860 -6245.8431 -6250.0923 4.2491141 3742.1974 636.08395 -10628.374 0 203.64139 0.00019501432 0.00017972796 + 190870 -6245.8963 -6250.1762 4.2799438 3742.0148 637.8484 -10630.039 0 205.11892 0.00037141384 0.00035428479 + 190880 -6245.8945 -6250.8091 4.9146565 3738.7626 639.60355 -10629.175 0 235.53792 0.00065269297 0.00062912487 + 190890 -6245.8899 -6251.8028 5.9129137 3733.6415 640.94953 -10626.394 0 283.38 0.00096294542 0.00093342223 + 190900 -6245.9372 -6252.8577 6.9205219 3728.228 641.49992 -10622.586 0 331.67024 0.0012115859 0.0011811008 + 190910 -6246.0611 -6253.704 7.6429079 3723.9685 640.98431 -10618.657 0 366.29103 0.0013227952 0.0012964739 + 190920 -6246.2484 -6254.1954 7.9469148 3721.7867 639.33162 -10615.314 0 380.86075 0.0012586825 0.0012375346 + 190930 -6246.4688 -6254.3188 7.8500808 3721.9049 636.7121 -10612.936 0 376.21992 0.0010284385 0.0010089567 + 190940 -6246.7041 -6254.1498 7.4457083 3723.873 633.52065 -10611.543 0 356.84012 0.00068266288 0.00066034504 + 190950 -6246.9593 -6253.799 6.8397412 3726.7543 630.29844 -10610.852 0 327.79877 0.00029772387 0.00027119521 + 190960 -6247.2451 -6253.3846 6.139519 3729.4045 627.60966 -10610.399 0 294.2402 -4.3355121e-05 -7.1297428e-05 + 190970 -6247.5532 -6253.0228 5.4695462 3730.7863 625.90889 -10609.718 0 262.13134 -0.00026922743 -0.00029444727 + 190980 -6247.852 -6252.8089 4.9568326 3730.2645 625.44051 -10608.514 0 237.55923 -0.00033605489 -0.0003569475 + 190990 -6248.1082 -6252.7798 4.6716244 3727.8129 626.19623 -10606.789 0 223.89045 -0.00023855368 -0.00025728242 + 191000 -6248.3121 -6252.8896 4.5774598 3724.0593 627.93382 -10604.883 0 219.37756 -1.1995007e-05 -3.2171087e-05 + 191010 -6248.4829 -6253.0342 4.5513329 3720.1222 630.24492 -10603.401 0 218.12541 0.00027808435 0.00025486518 + 191020 -6248.6486 -6253.1229 4.4743467 3717.2706 632.65503 -10603.049 0 214.4358 0.00055655234 0.00053206308 + 191030 -6248.8194 -6253.1459 4.3264642 3716.5223 634.73339 -10604.402 0 207.34844 0.0007617842 0.00073925518 + 191040 -6248.9795 -6253.1827 4.203258 3718.3377 636.18596 -10607.706 0 201.44371 0.0008612298 0.00084215396 + 191050 -6249.1047 -6253.3369 4.2322017 3722.5187 636.90651 -10612.762 0 202.83085 0.00085413128 0.00083702406 + 191060 -6249.1882 -6253.648 4.4597843 3728.3072 636.97251 -10618.928 0 213.73789 0.00076408664 0.00074630988 + 191070 -6249.2459 -6254.0571 4.811225 3734.5889 636.59067 -10625.237 0 230.5809 0.0006283442 0.00060874954 + 191080 -6249.2981 -6254.4471 5.1489615 3740.1268 636.01493 -10630.589 0 246.76712 0.00048818989 0.00046766321 + 191090 -6249.3499 -6254.7084 5.3584537 3743.8008 635.46806 -10633.977 0 256.80717 0.00038038458 0.00036013164 + 191100 -6249.3913 -6254.7753 5.3840184 3744.8423 635.08962 -10634.707 0 258.03237 0.00032914314 0.00030915656 + 191110 -6249.413 -6254.6287 5.2156262 3743.0101 634.91512 -10632.554 0 249.96207 0.00034078996 0.00032025034 + 191120 -6249.4171 -6254.2947 4.8775874 3738.6401 634.88012 -10627.815 0 233.76135 0.00040380572 0.00038257897 + 191130 -6249.4104 -6253.8508 4.4403757 3732.5523 634.8449 -10621.248 0 212.80772 0.00049412954 0.00047340961 + 191140 -6249.3923 -6253.4216 4.0293425 3725.8592 634.63872 -10613.919 0 193.1087 0.00058284765 0.00056417301 + 191150 -6249.3467 -6253.1469 3.8002068 3719.7412 634.11735 -10607.006 0 182.12723 0.00064328322 0.00062683571 + 191160 -6249.2456 -6253.1271 3.8815551 3715.2403 633.21721 -10601.585 0 186.0259 0.00065600242 0.00063968556 + 191170 -6249.0593 -6253.371 4.3116524 3713.0994 631.98647 -10598.457 0 206.63858 0.00061159739 0.00059176526 + 191180 -6248.7717 -6253.7734 5.0017303 3713.6594 630.58212 -10598.015 0 239.71098 0.00051165681 0.00048529866 + 191190 -6248.3934 -6254.1415 5.7480987 3716.804 629.23544 -10600.181 0 275.48114 0.00036843109 0.00033573445 + 191200 -6247.9635 -6254.2706 6.3070932 3721.942 628.19796 -10604.411 0 302.2713 0.00020398007 0.00016948643 + 191210 -6247.5248 -6254.0495 6.5246384 3728.0369 627.68466 -10609.771 0 312.69728 4.9458847e-05 1.9965962e-05 + 191220 -6247.0869 -6253.5361 6.4491495 3733.7461 627.83357 -10615.116 0 309.07943 -5.6769738e-05 -7.7324363e-05 + 191230 -6246.6148 -6252.9278 6.3130156 3737.729 628.69716 -10619.354 0 302.55513 -7.5603751e-05 -9.0370171e-05 + 191240 -6246.0687 -6252.423 6.354213 3739.0655 630.26075 -10621.749 0 304.52954 2.0611449e-05 2.7928859e-06 + 191250 -6245.461 -6252.0775 6.6164685 3737.587 632.4602 -10622.125 0 317.09829 0.00023523099 0.0002068443 + 191260 -6244.8701 -6251.7814 6.911375 3733.9262 635.17045 -10620.878 0 331.23187 0.00054184338 0.0005034484 + 191270 -6244.3893 -6251.3716 6.9822258 3729.2693 638.16427 -10618.805 0 334.62744 0.00088986047 0.00085028284 + 191280 -6244.0517 -6250.7847 6.7330265 3724.9657 641.0733 -10616.824 0 322.68441 0.0012172819 0.0011864917 + 191290 -6243.7983 -6250.1323 6.3340252 3722.185 643.39825 -10615.715 0 303.56203 0.0014631444 0.0014434202 + 191300 -6243.5262 -6249.6343 6.1081034 3721.7171 644.60432 -10615.956 0 292.73459 0.0015757017 0.0015588035 + 191310 -6243.182 -6249.4605 6.278471 3723.8766 644.29433 -10617.631 0 300.89956 0.0015196539 0.0014936044 + 191320 -6242.8171 -6249.6168 6.7997096 3728.3984 642.39097 -10620.406 0 325.88024 0.0012885406 0.0012491056 + 191330 -6242.544 -6249.9929 7.4488933 3734.302 639.22539 -10623.52 0 356.99276 0.00092087315 0.0008767789 + 191340 -6242.4221 -6250.5173 8.0951818 3739.9024 635.46537 -10625.885 0 387.96653 0.00050569198 0.00047084276 + 191350 -6242.3924 -6251.2278 8.8353833 3743.2146 631.90913 -10626.351 0 423.44114 0.00016074991 0.0001399102 + 191360 -6242.3477 -6252.1458 9.7981184 3742.7381 629.24713 -10624.131 0 469.58081 -1.4990992e-05 -3.2201357e-05 + 191370 -6242.2719 -6253.0919 10.820043 3738.2015 627.88939 -10619.183 0 518.55716 1.277075e-05 -1.6970393e-05 + 191380 -6242.2866 -6253.6846 11.397931 3730.7521 627.89455 -10612.331 0 546.25283 0.00020119126 0.00015252302 + 191390 -6242.5361 -6253.5758 11.039727 3722.4524 628.99231 -10605.021 0 529.08568 0.00045863705 0.00040059842 + 191400 -6243.0277 -6252.7195 9.6917918 3715.4342 630.68367 -10598.837 0 464.48505 0.00069126896 0.00064078126 + 191410 -6243.6076 -6251.4332 7.825614 3711.2136 632.39697 -10595.044 0 375.04733 0.00083664383 0.00080391523 + 191420 -6244.0866 -6250.2118 6.1252197 3710.4341 633.65665 -10594.303 0 293.5549 0.0008710791 0.00085293137 + 191430 -6244.3722 -6249.4558 5.0835784 3712.9586 634.21254 -10596.627 0 243.6336 0.00080079685 0.00078530933 + 191440 -6244.497 -6249.3043 4.8073363 3718.0853 634.09608 -10601.486 0 230.39453 0.00065276586 0.00062928802 + 191450 -6244.56 -6249.6461 5.0860446 3724.7345 633.59428 -10607.975 0 243.75179 0.00047086013 0.00043703777 + 191460 -6244.65 -6250.2545 5.6044598 3731.6044 633.14748 -10615.006 0 268.59716 0.00031202152 0.0002734659 + 191470 -6244.7974 -6250.9302 6.1328299 3737.3709 633.19365 -10621.495 0 293.91962 0.00023496861 0.00019930773 + 191480 -6244.9783 -6251.5636 6.5853668 3740.9699 634.0044 -10626.538 0 315.60773 0.00028071597 0.00025176644 + 191490 -6245.1561 -6252.1164 6.9602781 3741.8924 635.56898 -10629.578 0 333.57558 0.00045361908 0.00043018741 + 191500 -6245.3185 -6252.5835 7.2650369 3740.347 637.57154 -10630.502 0 348.18133 0.00071479278 0.00069362521 + 191510 -6245.4802 -6252.9786 7.4984277 3737.1814 639.47813 -10629.638 0 359.36673 0.0009931532 0.0009721569 + 191520 -6245.6613 -6253.329 7.6676949 3733.571 640.71216 -10627.612 0 367.47896 0.0012092208 0.0011881406 + 191530 -6245.8695 -6253.6519 7.7823783 3730.6075 640.8581 -10625.117 0 372.97523 0.0013010389 0.0012801293 + 191540 -6246.1015 -6253.9137 7.8121775 3728.9622 639.81247 -10622.688 0 374.40338 0.0012424378 0.0012215407 + 191550 -6246.3537 -6254.0175 7.6638335 3728.7361 637.81668 -10620.57 0 367.2939 0.0010489532 0.0010280727 + 191560 -6246.6192 -6253.8537 7.2344735 3729.5118 635.35708 -10618.723 0 346.71656 0.00077149827 0.00075144987 + 191570 -6246.8757 -6253.3881 6.5124422 3730.5597 632.98212 -10616.93 0 312.11277 0.00048003258 0.00046160053 + 191580 -6247.0875 -6252.7111 5.6236387 3731.1299 631.12396 -10614.965 0 269.51632 0.00024132903 0.00022384614 + 191590 -6247.2303 -6252.0023 4.7719793 3730.7321 629.99719 -10612.732 0 228.70002 9.8524437e-05 8.0088585e-05 + 191600 -6247.3108 -6251.4501 4.1392877 3729.2897 629.59443 -10610.334 0 198.37789 6.1578217e-05 4.101522e-05 + 191610 -6247.356 -6251.1912 3.8351943 3727.1165 629.75335 -10608.061 0 183.80403 0.0001123304 9.0526661e-05 + 191620 -6247.3856 -6251.2877 3.9021049 3724.7627 630.25334 -10606.304 0 187.01076 0.00021874367 0.00019773643 + 191630 -6247.3979 -6251.7176 4.3196931 3722.8332 630.9045 -10605.455 0 207.02393 0.00034863293 0.00032963365 + 191640 -6247.3799 -6252.3694 4.9895404 3721.8468 631.60087 -10605.817 0 239.12677 0.00047692221 0.00045945616 + 191650 -6247.3275 -6253.0665 5.7390192 3722.1396 632.32499 -10607.531 0 275.046 0.00058709393 0.00056976295 + 191660 -6247.2515 -6253.6303 6.3788147 3723.8007 633.11121 -10610.542 0 305.70859 0.00067060774 0.00065207515 + 191670 -6247.1663 -6253.9531 6.7867656 3726.6525 633.99336 -10614.599 0 325.25989 0.00072625038 0.00070521569 + 191680 -6247.0805 -6254.0253 6.944777 3730.2961 634.96599 -10619.287 0 332.83268 0.00075825944 0.00073312629 + 191690 -6247.0046 -6253.8978 6.8932244 3734.2082 635.97515 -10624.081 0 330.36199 0.00077232375 0.0007422448 + 191700 -6246.961 -6253.6257 6.6647772 3737.8273 636.93243 -10628.385 0 319.41352 0.0007722198 0.00073920543 + 191710 -6246.9701 -6253.2593 6.2891675 3740.5915 637.73476 -10631.586 0 301.4122 0.00076088437 0.00072998879 + 191720 -6247.0209 -6252.8781 5.8572201 3741.9714 638.28135 -10633.131 0 280.71085 0.00074457363 0.00072033844 + 191730 -6247.0638 -6252.5949 5.5310314 3741.5798 638.49222 -10632.667 0 265.07806 0.00073370373 0.00071567162 + 191740 -6247.0465 -6252.4902 5.4436423 3739.3497 638.33102 -10630.171 0 260.88988 0.00073696269 0.00071918276 + 191750 -6246.9607 -6252.5366 5.5759295 3735.6561 637.8208 -10626.014 0 267.22983 0.00075332516 0.00072918438 + 191760 -6246.8549 -6252.5991 5.7442319 3731.2569 637.0366 -10620.893 0 275.29582 0.00076986127 0.00073823033 + 191770 -6246.7957 -6252.5331 5.7373443 3727.0513 636.0701 -10615.655 0 274.96573 0.00076834968 0.00073532636 + 191780 -6246.8072 -6252.3119 5.504695 3723.7862 634.98362 -10611.082 0 263.81587 0.00073576417 0.00070975653 + 191790 -6246.8426 -6252.0713 5.2287075 3721.8768 633.78744 -10607.736 0 250.589 0.00066984293 0.00065381269 + 191800 -6246.8224 -6252.0127 5.1903023 3721.4204 632.46592 -10605.899 0 248.74841 0.00057553503 0.00056362847 + 191810 -6246.7079 -6252.2328 5.5248783 3722.3187 631.04365 -10605.595 0 264.78317 0.00045796639 0.00044033738 + 191820 -6246.543 -6252.63 6.087019 3724.3432 629.64889 -10606.622 0 291.7241 0.00032215064 0.00029396275 + 191830 -6246.4207 -6252.9743 6.553605 3727.0762 628.52828 -10608.579 0 314.08552 0.00018236106 0.00014852785 + 191840 -6246.4013 -6253.0766 6.6753083 3729.8412 627.99454 -10610.912 0 319.91823 7.1458058e-05 4.2453895e-05 + 191850 -6246.4582 -6252.9095 6.4513342 3731.8072 628.32444 -10613.041 0 309.18413 3.6371984e-05 1.8946276e-05 + 191860 -6246.5049 -6252.5898 6.0849082 3732.314 629.64746 -10614.551 0 291.62294 0.00011659606 0.00010803849 + 191870 -6246.4741 -6252.2668 5.7926899 3731.2462 631.86777 -10615.381 0 277.6182 0.00031861313 0.00030954292 + 191880 -6246.37 -6252.0347 5.6646643 3729.1878 634.64947 -10615.872 0 271.4825 0.00060483856 0.00058727411 + 191890 -6246.2518 -6251.9328 5.68105 3727.2182 637.47962 -10616.631 0 272.26779 0.00090549779 0.00087864778 + 191900 -6246.1762 -6251.9864 5.8101943 3726.4508 639.80242 -10618.24 0 278.45711 0.001145662 0.001115238 + 191910 -6246.1592 -6252.2103 6.05112 3727.5662 641.18486 -10620.961 0 290.00362 0.0012715102 0.0012447676 + 191920 -6246.1782 -6252.5712 6.3929897 3730.5496 641.44503 -10624.566 0 306.38794 0.0012644637 0.0012456575 + 191930 -6246.1973 -6252.9707 6.7734657 3734.705 640.68293 -10628.359 0 324.62248 0.0011414561 0.0011300334 + 191940 -6246.1882 -6253.2802 7.092038 3738.9065 639.2068 -10631.394 0 339.89026 0.00094503939 0.00093633489 + 191950 -6246.1448 -6253.3942 7.2494917 3741.979 637.40437 -10632.778 0 347.43632 0.00072798008 0.00071584146 + 191960 -6246.0884 -6253.2633 7.1749124 3743.0545 635.62648 -10631.944 0 343.86206 0.00053766987 0.00051817878 + 191970 -6246.0581 -6252.9037 6.8456519 3741.77 634.12361 -10628.797 0 328.08205 0.00040578994 0.0003799834 + 191980 -6246.0831 -6252.3947 6.3116204 3738.2773 633.03342 -10623.705 0 302.48826 0.00034570627 0.00031906902 + 191990 -6246.1577 -6251.8662 5.7085055 3733.1399 632.39187 -10617.398 0 273.58361 0.00035551671 0.00033404058 + 192000 -6246.2356 -6251.4673 5.2316236 3727.2115 632.14507 -10610.824 0 250.72876 0.00042196553 0.00040723018 + 192010 -6246.2558 -6251.309 5.0531874 3721.5342 632.16337 -10605.007 0 242.17709 0.00052159461 0.00050871063 + 192020 -6246.1874 -6251.3974 5.2100327 3717.219 632.27359 -10600.89 0 249.694 0.00062054747 0.00060144378 + 192030 -6246.0611 -6251.6107 5.5495233 3715.244 632.31513 -10599.17 0 265.96429 0.00067941876 0.00064975394 + 192040 -6245.9532 -6251.772 5.8188483 3716.1549 632.20234 -10600.129 0 278.87186 0.00066781991 0.00063176706 + 192050 -6245.921 -6251.7902 5.8692471 3719.7854 631.96417 -10603.54 0 281.28725 0.00058352975 0.00055130913 + 192060 -6245.9452 -6251.7553 5.8101405 3725.1997 631.74003 -10608.695 0 278.45453 0.00046176461 0.00044096547 + 192070 -6245.9367 -6251.8852 5.9485429 3730.9819 631.73171 -10614.599 0 285.08755 0.00036276064 0.00035097478 + 192080 -6245.814 -6252.3422 6.5281554 3735.774 632.12985 -10620.246 0 312.86584 0.0003415815 0.00032774878 + 192090 -6245.5836 -6253.0665 7.4828929 3738.7611 633.04108 -10624.869 0 358.62222 0.00041947594 0.00039358125 + 192100 -6245.349 -6253.7842 8.4351596 3739.8274 634.43963 -10628.051 0 404.26018 0.00057626671 0.00053861678 + 192110 -6245.2301 -6254.1872 8.9571873 3739.3505 636.16068 -10629.698 0 429.27867 0.00076683993 0.00072785937 + 192120 -6245.2646 -6254.1248 8.8602141 3737.8633 637.94012 -10629.928 0 424.63117 0.00094592271 0.00091662617 + 192130 -6245.3903 -6253.6423 8.2520106 3735.8485 639.48343 -10628.974 0 395.48265 0.0010817429 0.0010645418 + 192140 -6245.5198 -6252.8788 7.3589129 3733.7241 640.53116 -10627.134 0 352.6804 0.0011542486 0.0011428158 + 192150 -6245.6171 -6251.9653 6.3482321 3731.8756 640.89873 -10624.74 0 304.2429 0.0011498576 0.0011366294 + 192160 -6245.7 -6251.0276 5.3275694 3730.5973 640.49422 -10622.119 0 255.32702 0.0010639909 0.0010465607 + 192170 -6245.79 -6250.2389 4.4488907 3729.9737 639.33192 -10619.545 0 213.2158 0.00090873686 0.00088941357 + 192180 -6245.8794 -6249.8101 3.9306983 3729.8345 637.54647 -10617.191 0 188.38112 0.00071462202 0.00069569655 + 192190 -6245.9465 -6249.8853 3.9388688 3729.8502 635.39246 -10615.128 0 188.77269 0.0005215516 0.00050257422 + 192200 -6245.9876 -6250.435 4.4473836 3729.7014 633.2095 -10613.346 0 213.14358 0.00036516903 0.00034480093 + 192210 -6246.0264 -6251.2557 5.2293496 3729.2026 631.34904 -10611.807 0 250.61978 0.00026806488 0.00024730751 + 192220 -6246.0899 -6252.0897 5.9997693 3728.3348 630.08215 -10610.507 0 287.54261 0.00023871074 0.00022101744 + 192230 -6246.1796 -6252.7663 6.5866877 3727.2287 629.52397 -10609.519 0 315.67103 0.00027339674 0.00026115949 + 192240 -6246.2701 -6253.2557 6.9856211 3726.1517 629.60974 -10609.017 0 334.79016 0.00035625289 0.00034760609 + 192250 -6246.3421 -6253.6133 7.2711883 3725.487 630.13659 -10609.237 0 348.47614 0.00045914612 0.00044890467 + 192260 -6246.4126 -6253.8862 7.4735487 3725.6422 630.85622 -10610.385 0 358.17439 0.00054777921 0.00053187303 + 192270 -6246.5274 -6254.0665 7.5390542 3726.8699 631.58146 -10612.518 0 361.31378 0.00059568681 0.00057469772 + 192280 -6246.7206 -6254.1108 7.3902056 3729.0873 632.26125 -10615.459 0 354.18012 0.00059842776 0.0005767751 + 192290 -6246.9816 -6253.9843 7.0027259 3731.8296 632.98789 -10618.802 0 335.60992 0.00057693418 0.00055871057 + 192300 -6247.261 -6253.6845 6.4234916 3734.4047 633.92659 -10622.016 0 307.84976 0.0005660836 0.00055168462 + 192310 -6247.5064 -6253.2424 5.73601 3736.1752 635.1947 -10624.612 0 274.90178 0.00059539081 0.00058174143 + 192320 -6247.692 -6252.7215 5.0295337 3736.8059 636.75061 -10626.278 0 241.04348 0.00067345557 0.00065686513 + 192330 -6247.8238 -6252.2178 4.394036 3736.3585 638.35747 -10626.934 0 210.58686 0.00078382672 0.00076267217 + 192340 -6247.9254 -6251.8432 3.9178304 3735.2107 639.65012 -10626.704 0 187.76442 0.00089253687 0.00086811753 + 192350 -6248.0198 -6251.6928 3.6729694 3733.8616 640.27336 -10625.828 0 176.0293 0.00096241483 0.00093800892 + 192360 -6248.1142 -6251.8152 3.700999 3732.7217 640.01898 -10624.556 0 177.37264 0.0009677073 0.00094651966 + 192370 -6248.1936 -6252.2019 4.0082635 3731.978 638.89746 -10623.077 0 192.09848 0.00090331051 0.00088622547 + 192380 -6248.2294 -6252.7882 4.5588418 3731.5863 637.12246 -10621.497 0 218.48528 0.00078516633 0.00076961033 + 192390 -6248.2025 -6253.4551 5.2525678 3731.3744 635.03083 -10619.86 0 251.73252 0.00064195328 0.00062318015 + 192400 -6248.1288 -6254.0362 5.9073253 3731.1731 632.98086 -10618.19 0 283.11218 0.00050254207 0.00047732861 + 192410 -6248.0598 -6254.3575 6.2977661 3730.8818 631.26578 -10616.505 0 301.82429 0.00038652263 0.00035677167 + 192420 -6248.0455 -6254.321 6.2754939 3730.4361 630.06099 -10614.818 0 300.75688 0.00030303324 0.00027550493 + 192430 -6248.0858 -6253.9826 5.896826 3729.7523 629.41087 -10613.146 0 282.60899 0.00025595977 0.00023703205 + 192440 -6248.1207 -6253.5441 5.4233464 3728.7521 629.25364 -10611.55 0 259.91719 0.00024780592 0.00023738762 + 192450 -6248.0784 -6253.2313 5.152974 3727.4822 629.47346 -10610.187 0 246.95943 0.00027734474 0.00026799877 + 192460 -6247.9376 -6253.1465 5.2088507 3726.2109 629.95898 -10609.316 0 249.63735 0.00033497598 0.00031787514 + 192470 -6247.7477 -6253.2141 5.4663659 3725.3737 630.64726 -10609.235 0 261.97893 0.0004039976 0.00037676975 + 192480 -6247.5855 -6253.2663 5.6807879 3725.361 631.5377 -10610.165 0 272.25523 0.00047041172 0.00043971881 + 192490 -6247.4845 -6253.1916 5.7070426 3726.2955 632.67029 -10612.157 0 273.5135 0.00053390401 0.00050985498 + 192500 -6247.3968 -6253.0163 5.6194414 3727.9762 634.07528 -10615.068 0 269.31516 0.00060838322 0.00059523609 + 192510 -6247.23 -6252.8485 5.6185569 3730.0478 635.71578 -10618.612 0 269.27277 0.00070781895 0.00069950524 + 192520 -6246.9308 -6252.742 5.8111236 3732.2582 637.45083 -10622.451 0 278.50165 0.00082722491 0.00081248917 + 192530 -6246.5396 -6252.6268 6.0872204 3734.5682 639.03801 -10626.233 0 291.73376 0.00093613223 0.00090900825 + 192540 -6246.156 -6252.3915 6.2354621 3736.9943 640.18283 -10629.569 0 298.83833 0.00099361372 0.00095918633 + 192550 -6245.8441 -6252.0314 6.1872576 3739.3176 640.62929 -10631.978 0 296.5281 0.0009753383 0.00094479549 + 192560 -6245.5685 -6251.6917 6.1231962 3740.9483 640.26568 -10632.906 0 293.45792 0.00089118624 0.00087085266 + 192570 -6245.2294 -6251.5328 6.303365 3741.1167 639.19624 -10631.846 0 302.09262 0.00077941962 0.00076480026 + 192580 -6244.7662 -6251.5465 6.7803369 3739.2757 637.72778 -10628.55 0 324.95179 0.00068365928 0.00066446446 + 192590 -6244.225 -6251.5235 7.2985157 3735.4184 636.25438 -10623.196 0 349.78582 0.00063162186 0.00060244674 + 192600 -6243.7202 -6251.2344 7.514213 3730.1145 635.08254 -10616.431 0 360.12325 0.00062863696 0.00059415451 + 192610 -6243.3244 -6250.6641 7.3396935 3724.3106 634.28856 -10609.263 0 351.75929 0.0006630333 0.000632448 + 192620 -6243.0049 -6250.0673 7.0624238 3719.0855 633.69815 -10602.851 0 338.47098 0.00071215352 0.00068923515 + 192630 -6242.6716 -6249.7867 7.1150744 3715.4718 633.00981 -10598.268 0 340.99429 0.00074492779 0.00072429751 + 192640 -6242.2766 -6250.0007 7.7241642 3714.2983 631.99412 -10596.293 0 370.18529 0.00072788073 0.00070086499 + 192650 -6241.8644 -6250.6099 8.7454578 3715.9687 630.65934 -10597.238 0 419.13141 0.00064022543 0.0006037956 + 192660 -6241.5398 -6251.3268 9.7869197 3720.222 629.29657 -10600.845 0 469.04411 0.00049189336 0.00045191454 + 192670 -6241.3836 -6251.8691 10.485504 3726.0492 628.38148 -10606.3 0 502.52417 0.00033001926 0.00029583312 + 192680 -6241.3942 -6252.0993 10.705098 3731.9283 628.38367 -10612.411 0 513.04835 0.00022367826 0.00019924526 + 192690 -6241.5099 -6252.0209 10.510996 3736.3592 629.57986 -10617.96 0 503.74592 0.00023185977 0.00021215243 + 192700 -6241.6822 -6251.6836 10.001428 3738.4466 631.94962 -10622.08 0 479.32456 0.00037400487 0.00035015041 + 192710 -6241.9131 -6251.125 9.2118167 3738.193 635.17317 -10624.491 0 441.48194 0.0006216456 0.00058929572 + 192720 -6242.2225 -6250.4044 8.1819449 3736.3518 638.70737 -10625.464 0 392.12471 0.00091313714 0.00087574925 + 192730 -6242.5974 -6249.6575 7.0601681 3733.9907 641.90863 -10625.557 0 338.36287 0.0011778886 0.0011427745 + 192740 -6242.9865 -6249.0819 6.0954489 3732.0527 644.17619 -10625.311 0 292.12811 0.0013561887 0.001328243 + 192750 -6243.3347 -6248.857 5.5222285 3731.0941 645.08777 -10625.039 0 264.65617 0.0014108289 0.0013894088 + 192760 -6243.617 -6249.0626 5.4456364 3731.2156 644.49837 -10624.777 0 260.98545 0.0013332239 0.0013134796 + 192770 -6243.8472 -6249.6504 5.8032703 3732.1173 642.57707 -10624.345 0 278.12527 0.0011452715 0.0011217986 + 192780 -6244.0681 -6250.4728 6.4046833 3733.2244 639.76551 -10623.463 0 306.94836 0.00089470586 0.0008648835 + 192790 -6244.3335 -6251.3433 7.0098153 3733.8675 636.65894 -10621.87 0 335.94968 0.00064208317 0.00060767044 + 192800 -6244.6844 -6252.1042 7.419786 3733.4876 633.83653 -10619.428 0 355.59778 0.00044259595 0.00040895224 + 192810 -6245.1227 -6252.6906 7.5679149 3731.8122 631.69697 -10616.2 0 362.69694 0.00033046998 0.00030297772 + 192820 -6245.6 -6253.1547 7.5546738 3728.9625 630.36798 -10612.485 0 362.06236 0.00031153573 0.00029074758 + 192830 -6246.051 -6253.5988 7.5478651 3725.4838 629.73214 -10608.815 0 361.73605 0.00036347929 0.00034353778 + 192840 -6246.4515 -6254.0464 7.5949107 3722.267 629.54788 -10605.861 0 363.99073 0.00044244834 0.00041589258 + 192850 -6246.8379 -6254.3783 7.5403576 3720.2888 629.59124 -10604.258 0 361.37624 0.00049803379 0.00046327983 + 192860 -6247.2567 -6254.4185 7.1617869 3720.216 629.74709 -10604.382 0 343.23301 0.00049542374 0.0004592197 + 192870 -6247.6971 -6254.0926 6.3955351 3722.0857 630.02478 -10606.203 0 306.50993 0.00043373379 0.00040562312 + 192880 -6248.0829 -6253.5085 5.4256441 3725.2866 630.51511 -10609.31 0 260.02731 0.00034678755 0.00033074188 + 192890 -6248.33 -6252.8898 4.5597646 3728.8655 631.32106 -10613.076 0 218.5295 0.00028384795 0.00027478285 + 192900 -6248.4122 -6252.4311 4.0188725 3731.9586 632.49024 -10616.88 0 192.60692 0.00028272044 0.00027078472 + 192910 -6248.3802 -6252.2016 3.8213731 3734.0901 633.96962 -10620.261 0 183.14164 0.00035230021 0.00033102196 + 192920 -6248.3247 -6252.1638 3.8390815 3735.2029 635.59687 -10622.964 0 183.99033 0.00047351537 0.00044485493 + 192930 -6248.3121 -6252.2664 3.9543127 3735.4818 637.13477 -10624.883 0 189.51285 0.00061437433 0.00058650902 + 192940 -6248.3398 -6252.5075 4.1677397 3735.146 638.33793 -10625.991 0 199.74147 0.00074618713 0.00072613974 + 192950 -6248.3489 -6252.9074 4.5585603 3734.3648 639.02328 -10626.295 0 218.47179 0.00085011702 0.00083782819 + 192960 -6248.2834 -6253.4251 5.1416632 3733.3088 639.1127 -10625.847 0 246.41735 0.00091365313 0.00090267272 + 192970 -6248.1446 -6253.9181 5.7734698 3732.2177 638.63222 -10624.768 0 276.69707 0.00092566148 0.00090943589 + 192980 -6247.9884 -6254.2086 6.2201543 3731.356 637.67753 -10623.242 0 298.1047 0.00087822271 0.00085574776 + 192990 -6247.872 -6254.2086 6.3366066 3730.8653 636.37467 -10621.449 0 303.68575 0.00077441486 0.00075005591 + 193000 -6247.8046 -6253.9837 6.1790326 3730.6484 634.86319 -10619.495 0 296.13391 0.00063325977 0.00061175888 + 193010 -6247.7507 -6253.692 5.941301 3730.4096 633.30268 -10617.404 0 284.74048 0.0004851346 0.00046732265 + 193020 -6247.6716 -6253.4612 5.7895664 3729.8283 631.87699 -10615.167 0 277.46851 0.00036030442 0.00034325141 + 193030 -6247.5576 -6253.3122 5.7545682 3728.7398 630.77089 -10612.823 0 275.7912 0.00027887912 0.00025920586 + 193040 -6247.4257 -6253.1813 5.755645 3727.2113 630.12139 -10610.514 0 275.8428 0.00024743516 0.00022405447 + 193050 -6247.2964 -6252.9965 5.7001223 3725.5011 629.97301 -10608.471 0 273.18184 0.00026115571 0.00023541224 + 193060 -6247.1775 -6252.7362 5.5587174 3723.957 630.26793 -10606.961 0 266.40493 0.00030772946 0.00028183813 + 193070 -6247.0633 -6252.4368 5.3735222 3722.9165 630.87885 -10606.232 0 257.52933 0.00037130411 0.00034695128 + 193080 -6246.9413 -6252.1674 5.2261278 3722.6327 631.66394 -10606.464 0 250.46537 0.00043698767 0.00041476219 + 193090 -6246.7952 -6252.0011 5.2058867 3723.23 632.51345 -10607.745 0 249.4953 0.00049540348 0.00047455904 + 193100 -6246.607 -6251.9901 5.3830699 3724.6914 633.36896 -10610.05 0 257.98691 0.00054462444 0.00052300647 + 193110 -6246.3652 -6252.1372 5.7720222 3726.8774 634.21556 -10613.23 0 276.62769 0.00058751048 0.00056238685 + 193120 -6246.0797 -6252.3767 6.2970293 3729.5562 635.05873 -10616.992 0 301.78898 0.00062646964 0.00059658827 + 193130 -6245.783 -6252.5912 6.808139 3732.4162 635.89753 -10620.905 0 326.28422 0.00066066696 0.00062797684 + 193140 -6245.5076 -6252.674 7.1664477 3735.0576 636.70434 -10624.436 0 343.45638 0.00068840213 0.00065704348 + 193150 -6245.2565 -6252.5907 7.334189 3737.013 637.42096 -10627.025 0 351.49549 0.00071131258 0.00068389937 + 193160 -6245.0037 -6252.3782 7.3745223 3737.8465 637.97517 -10628.2 0 353.42849 0.00073440689 0.00070917357 + 193170 -6244.7291 -6252.0872 7.3581257 3737.3061 638.30586 -10627.699 0 352.64267 0.0007607909 0.0007331105 + 193180 -6244.4513 -6251.7383 7.2870052 3735.4276 638.37564 -10625.542 0 349.23418 0.00078679117 0.0007540686 + 193190 -6244.2155 -6251.3471 7.1316078 3732.5128 638.1615 -10622.021 0 341.78666 0.00080342324 0.00076834069 + 193200 -6244.0459 -6250.9893 6.9434178 3729.0075 637.63723 -10617.634 0 332.76754 0.00080318746 0.00077148975 + 193210 -6243.9124 -6250.8138 6.9013261 3725.386 636.77272 -10612.973 0 330.75027 0.00078478352 0.00075939603 + 193220 -6243.7526 -6250.9496 7.1969866 3722.119 635.56284 -10608.631 0 344.91998 0.00075001097 0.00072760379 + 193230 -6243.5355 -6251.3706 7.8351311 3719.6882 634.07126 -10605.13 0 375.50345 0.00069616316 0.00067028988 + 193240 -6243.3041 -6251.8545 8.5503277 3718.5342 632.45453 -10602.843 0 409.77968 0.00061404702 0.00058203425 + 193250 -6243.1456 -6252.11 8.9644397 3718.8845 630.93886 -10601.933 0 429.62625 0.00049732596 0.00046355749 + 193260 -6243.1105 -6251.9837 8.8732489 3720.5725 629.7545 -10602.311 0 425.25587 0.00035609453 0.00032777686 + 193270 -6243.1666 -6251.565 8.3984665 3723.0253 629.06714 -10603.658 0 402.50164 0.00022045358 0.00020011573 + 193280 -6243.2394 -6251.099 7.8596377 3725.4831 628.94993 -10605.532 0 376.67794 0.00012816675 0.00011095527 + 193290 -6243.2951 -6250.7923 7.4972046 3727.3182 629.40695 -10607.518 0 359.30811 0.00010626749 8.5087595e-05 + 193300 -6243.3739 -6250.6879 7.3139807 3728.2378 630.41551 -10609.341 0 350.52699 0.00016194715 0.00013504315 + 193310 -6243.5409 -6250.703 7.1620909 3728.2739 631.9401 -10610.917 0 343.24758 0.00028718365 0.00025996649 + 193320 -6243.8127 -6250.7573 6.9446861 3727.66 633.89871 -10612.316 0 332.82832 0.00046693963 0.00044603187 + 193330 -6244.1406 -6250.8425 6.7019181 3726.7544 636.10768 -10613.705 0 321.19352 0.00067916334 0.00066525492 + 193340 -6244.4675 -6250.9831 6.5155499 3726.0387 638.25655 -10615.278 0 312.26171 0.0008882686 0.00087551568 + 193350 -6244.7867 -6251.1736 6.3869485 3726.0622 639.95137 -10617.187 0 306.09841 0.001045607 0.0010276789 + 193360 -6245.1394 -6251.3834 6.2439924 3727.2395 640.82619 -10619.449 0 299.24715 0.0011052264 0.0010811428 + 193370 -6245.5639 -6251.6105 6.04659 3729.5879 640.67911 -10621.878 0 289.78652 0.0010466967 0.0010209382 + 193380 -6246.0567 -6251.9071 5.8503946 3732.6014 639.56238 -10624.071 0 280.38374 0.00088794665 0.00086584331 + 193390 -6246.5786 -6252.3409 5.7622943 3735.3817 637.77044 -10625.493 0 276.16147 0.00067849582 0.00066179162 + 193400 -6247.0881 -6252.9308 5.8427088 3736.9718 635.7286 -10625.631 0 280.01539 0.00047799796 0.00046404483 + 193410 -6247.5666 -6253.609 6.0424472 3736.7235 633.84435 -10624.177 0 289.58797 0.00033328692 0.00031769846 + 193420 -6248.0202 -6254.2385 6.2183492 3734.5292 632.39428 -10621.162 0 298.01819 0.00026506366 0.00024525056 + 193430 -6248.4613 -6254.6754 6.2141124 3730.8304 631.48262 -10616.988 0 297.81513 0.00026743825 0.00024431736 + 193440 -6248.888 -6254.8374 5.9494586 3726.4382 631.06222 -10612.338 0 285.13144 0.000316229 0.00029317425 + 193450 -6249.2782 -6254.7368 5.4585513 3722.2773 630.9877 -10608.002 0 261.60441 0.00037965753 0.00035991907 + 193460 -6249.6015 -6254.4642 4.8627719 3719.1627 631.07436 -10604.701 0 233.05131 0.00042749959 0.00041207854 + 193470 -6249.8356 -6254.1427 4.3070767 3717.655 631.15062 -10602.948 0 206.41928 0.00043772366 0.00042491378 + 193480 -6249.9781 -6253.8758 3.8977335 3717.9861 631.10253 -10602.964 0 186.80126 0.0004006629 0.00038729955 + 193490 -6250.0476 -6253.7144 3.66676 3720.0349 630.90784 -10604.657 0 175.73171 0.000320764 0.00030436296 + 193500 -6250.0758 -6253.651 3.5752194 3723.3435 630.64996 -10607.644 0 171.34457 0.00021607118 0.0001965823 + 193510 -6250.0921 -6253.6458 3.55368 3727.187 630.49884 -10611.332 0 170.31228 0.00011548934 9.5453756e-05 + 193520 -6250.1073 -6253.6662 3.5589355 3730.7086 630.65413 -10615.029 0 170.56416 5.3243462e-05 3.5961514e-05 + 193530 -6250.1063 -6253.7142 3.6078922 3733.1184 631.2649 -10618.098 0 172.91044 5.9789684e-05 4.6598327e-05 + 193540 -6250.0606 -6253.8155 3.754982 3733.9191 632.35728 -10620.092 0 179.95981 0.00015016063 0.00013911593 + 193550 -6249.9535 -6253.9799 4.0264163 3733.0788 633.80133 -10620.86 0 192.96846 0.00031419618 0.00030174301 + 193560 -6249.798 -6254.1768 4.3788464 3731.0537 635.33094 -10620.561 0 209.85889 0.0005152638 0.00049963151 + 193570 -6249.6239 -6254.3597 4.7357517 3728.6168 636.60976 -10619.586 0 226.9638 0.00070104399 0.00068389675 + 193580 -6249.4467 -6254.5103 5.063585 3726.5669 637.32547 -10618.403 0 242.6754 0.00082225739 0.00080665767 + 193590 -6249.2518 -6254.6416 5.3897892 3725.4658 637.28792 -10617.395 0 258.30894 0.00084937374 0.00083624386 + 193600 -6249.0164 -6254.7439 5.7274903 3725.5097 636.49916 -10616.753 0 274.49347 0.00077938316 0.00076654175 + 193610 -6248.7448 -6254.7374 5.9925956 3726.5313 635.16206 -10616.431 0 287.1988 0.00063260397 0.00061757908 + 193620 -6248.4746 -6254.5038 6.0291689 3728.069 633.61417 -10616.187 0 288.9516 0.00044509301 0.00042843032 + 193630 -6248.2428 -6253.9901 5.7473872 3729.4762 632.20953 -10615.676 0 275.44704 0.00026066475 0.00024563345 + 193640 -6248.0468 -6253.2882 5.2413956 3730.0902 631.20157 -10614.58 0 251.19709 0.00012172767 0.00011040301 + 193650 -6247.847 -6252.6025 4.7554419 3729.4567 630.68075 -10612.74 0 227.90746 5.7677859e-05 4.7751483e-05 + 193660 -6247.6078 -6252.1242 4.516434 3727.5275 630.58695 -10610.239 0 216.45286 7.4572828e-05 6.0772808e-05 + 193670 -6247.3343 -6251.917 4.5827394 3724.7119 630.77557 -10607.405 0 219.63059 0.00015324075 0.00013242138 + 193680 -6247.0686 -6251.9083 4.8396953 3721.7318 631.0947 -10604.735 0 231.94536 0.00025924631 0.00023414873 + 193690 -6246.8457 -6251.9824 5.1367299 3719.3484 631.43703 -10602.768 0 246.18092 0.00035963087 0.00033705901 + 193700 -6246.6521 -6252.0837 5.4315337 3718.1133 631.7527 -10601.95 0 260.30957 0.00043542918 0.00041980882 + 193710 -6246.4325 -6252.2283 5.7958472 3718.272 632.03457 -10602.535 0 277.76952 0.00048190507 0.00047033197 + 193720 -6246.1484 -6252.4257 6.2773715 3719.8166 632.2982 -10604.541 0 300.84687 0.0004994596 0.00048376944 + 193730 -6245.8314 -6252.6096 6.7782208 3722.5589 632.57055 -10607.739 0 324.85037 0.00048709678 0.00046161736 + 193740 -6245.5673 -6252.6738 7.1064999 3726.112 632.88651 -10611.672 0 340.58335 0.00044675022 0.00041405626 + 193750 -6245.419 -6252.5819 7.1629078 3729.827 633.28695 -10615.696 0 343.28673 0.00039328533 0.00036185099 + 193760 -6245.3687 -6252.4261 7.0574482 3732.8444 633.81324 -10619.084 0 338.23252 0.00035647253 0.00033248914 + 193770 -6245.3403 -6252.3561 7.0157891 3734.3495 634.49548 -10621.201 0 336.23598 0.00036805536 0.00034977573 + 193780 -6245.2772 -6252.4388 7.161532 3733.9203 635.33185 -10621.691 0 343.2208 0.00044222734 0.0004223932 + 193790 -6245.1939 -6252.5897 7.3957965 3731.733 636.26263 -10620.585 0 354.44807 0.00056519972 0.00053866229 + 193800 -6245.1519 -6252.6481 7.4962739 3728.4772 637.15381 -10618.279 0 359.26351 0.00070190537 0.00067050753 + 193810 -6245.1912 -6252.5218 7.3306036 3725.0527 637.81046 -10615.385 0 351.32366 0.00081323808 0.00078348505 + 193820 -6245.2914 -6252.2614 6.9700463 3722.258 638.02679 -10612.546 0 334.04373 0.00087017357 0.00084689455 + 193830 -6245.3939 -6252.0093 6.6153712 3720.6168 637.65386 -10610.28 0 317.04571 0.0008578065 0.00084022123 + 193840 -6245.4532 -6251.891 6.4378117 3720.3403 636.65262 -10608.884 0 308.53606 0.00077320658 0.00075617101 + 193850 -6245.4656 -6251.9414 6.4758199 3721.3492 635.11216 -10608.403 0 310.35763 0.00062370515 0.0006020224 + 193860 -6245.4657 -6252.0998 6.6341677 3723.3048 633.23403 -10608.639 0 317.94654 0.00042726272 0.0003995348 + 193870 -6245.4995 -6252.2567 6.7571322 3725.6412 631.29384 -10609.192 0 323.83969 0.00021257885 0.0001822706 + 193880 -6245.5915 -6252.323 6.7314662 3727.6282 629.59143 -10609.543 0 322.60963 1.6832643e-05 -1.0170765e-05 + 193890 -6245.7225 -6252.2835 6.5610277 3728.5094 628.39896 -10609.192 0 314.44126 -0.00011998527 -0.00013999744 + 193900 -6245.8423 -6252.1915 6.3492204 3727.7394 627.91504 -10607.846 0 304.29027 -0.00016480209 -0.00017954446 + 193910 -6245.9118 -6252.1051 6.1933604 3725.2498 628.22768 -10605.583 0 296.82058 -0.00010348175 -0.00011862516 + 193920 -6245.9375 -6252.0349 6.0973681 3721.575 629.28519 -10602.895 0 292.22009 5.0880938e-05 3.0858583e-05 + 193930 -6245.9626 -6251.962 5.9993814 3717.7164 630.88272 -10600.561 0 287.52402 0.00025968236 0.00023545624 + 193940 -6246.024 -6251.9018 5.8778087 3714.7998 632.68603 -10599.388 0 281.69757 0.00047096611 0.00044751541 + 193950 -6246.1196 -6251.9348 5.8152541 3713.7076 634.3088 -10599.951 0 278.69961 0.00063610086 0.00061808764 + 193960 -6246.211 -6252.1637 5.9526722 3714.8427 635.42833 -10602.435 0 285.28545 0.00072337328 0.00071081651 + 193970 -6246.258 -6252.6243 6.3662945 3718.0727 635.89216 -10606.589 0 305.10855 0.00072361492 0.00071142561 + 193980 -6246.2599 -6253.2193 6.9594106 3722.8111 635.76336 -10611.794 0 333.534 0.00064796013 0.00063001474 + 193990 -6246.2702 -6253.7366 7.4663813 3728.1526 635.27904 -10617.168 0 357.83089 0.00052206184 0.00049683488 + 194000 -6246.3616 -6253.9666 7.6050126 3733.0148 634.73916 -10621.721 0 364.47488 0.00038102169 0.00035370527 + 194010 -6246.5609 -6253.8467 7.2858951 3736.3013 634.38038 -10624.528 0 349.18098 0.00026466756 0.00024294066 + 194020 -6246.8177 -6253.5119 6.6941243 3737.1437 634.29899 -10624.955 0 320.82 0.00020902175 0.00019568183 + 194030 -6247.0481 -6253.1901 6.1420807 3735.2034 634.45237 -10622.846 0 294.36297 0.00023278149 0.00022243349 + 194040 -6247.2123 -6253.025 5.8126942 3730.888 634.71308 -10618.626 0 278.57692 0.00032545681 0.00030905396 + 194050 -6247.3506 -6252.9812 5.6306341 3725.2963 634.92454 -10613.202 0 269.85158 0.00044732292 0.0004204806 + 194060 -6247.5401 -6252.9149 5.3747235 3719.8505 634.93172 -10607.697 0 257.58691 0.00054503606 0.0005121279 + 194070 -6247.8182 -6252.7304 4.9122287 3715.7893 634.60082 -10603.121 0 235.42156 0.00057523051 0.00054545452 + 194080 -6248.147 -6252.4768 4.3297561 3713.7936 633.85221 -10600.123 0 207.50621 0.00052187992 0.00050132386 + 194090 -6248.4519 -6252.3054 3.853573 3713.903 632.70556 -10598.914 0 184.68484 0.00039821099 0.00038538363 + 194100 -6248.6876 -6252.3492 3.6616035 3715.6802 631.30679 -10599.336 0 175.48458 0.00023597442 0.00022419693 + 194110 -6248.8702 -6252.6377 3.7675699 3718.4552 629.90669 -10601 0 180.56309 7.2051739e-05 5.5534065e-05 + 194120 -6249.0537 -6253.106 4.0522837 3721.5184 628.79011 -10603.414 0 194.20817 -6.0534633e-05 -8.2513444e-05 + 194130 -6249.285 -6253.662 4.3769977 3724.2361 628.18658 -10606.085 0 209.77029 -0.00013695114 -0.00016057301 + 194140 -6249.5739 -6254.2439 4.6700431 3726.1253 628.20413 -10608.573 0 223.81467 -0.000143186 -0.00016394306 + 194150 -6249.8959 -6254.8229 4.9270152 3726.9228 628.8139 -10610.56 0 236.13022 -7.8643063e-05 -9.4902253e-05 + 194160 -6250.2194 -6255.3641 5.1446328 3726.6457 629.88238 -10611.892 0 246.55967 4.238543e-05 2.8868637e-05 + 194170 -6250.5295 -6255.7936 5.2640537 3725.5991 631.22329 -10612.616 0 252.28299 0.00019281527 0.0001792763 + 194180 -6250.828 -6256.0148 5.1868036 3724.2853 632.63859 -10612.939 0 248.58073 0.00033948338 0.00032477835 + 194190 -6251.115 -6255.9652 4.8502122 3723.2306 633.93852 -10613.134 0 232.44939 0.00045221011 0.00043731872 + 194200 -6251.376 -6255.6637 4.2876408 3722.8083 634.95245 -10613.424 0 205.48781 0.00051098896 0.00049750852 + 194210 -6251.5888 -6255.2089 3.620074 3723.1403 635.54523 -10613.894 0 173.49426 0.00050877083 0.00049732552 + 194220 -6251.7394 -6254.7362 2.9967414 3724.0998 635.64104 -10614.477 0 143.62066 0.00045066278 0.00044058158 + 194230 -6251.8296 -6254.3676 2.5379755 3725.3785 635.24464 -10614.991 0 121.63403 0.00035166352 0.00034163442 + 194240 -6251.871 -6254.1794 2.308331 3726.5782 634.44747 -10615.205 0 110.62818 0.00023369309 0.00022246205 + 194250 -6251.8765 -6254.1873 2.3108126 3727.3063 633.41237 -10614.906 0 110.7471 0.00012130511 0.00010813339 + 194260 -6251.8562 -6254.3467 2.490484 3727.2659 632.33703 -10613.95 0 119.35797 3.616573e-05 2.1303326e-05 + 194270 -6251.8171 -6254.5738 2.7567092 3726.3255 631.40311 -10612.302 0 132.11697 -7.9084047e-06 -2.2930086e-05 + 194280 -6251.7574 -6254.7894 3.0320193 3724.5495 630.72533 -10610.064 0 145.31138 -7.393134e-06 -2.0414274e-05 + 194290 -6251.6596 -6254.9612 3.3015462 3722.193 630.32014 -10607.474 0 158.22862 3.1148262e-05 2.1197346e-05 + 194300 -6251.4919 -6255.1086 3.6166913 3719.6733 630.11108 -10604.893 0 173.33214 9.2595714e-05 8.4233581e-05 + 194310 -6251.2231 -6255.2623 4.039226 3717.5182 629.97273 -10602.753 0 193.58238 0.000155612 0.00014528476 + 194320 -6250.8428 -6255.4118 4.5690321 3716.266 629.79675 -10601.475 0 218.97365 0.0001970037 0.00018161422 + 194330 -6250.3715 -6255.49 5.1184571 3716.3112 629.55133 -10601.352 0 245.30519 0.00019913254 0.00017864315 + 194340 -6249.8513 -6255.4093 5.557939 3717.7359 629.30749 -10602.453 0 266.36762 0.00015856234 0.00013622266 + 194350 -6249.3227 -6255.1192 5.7964972 3720.217 629.21919 -10604.555 0 277.80067 9.0964276e-05 7.0578291e-05 + 194360 -6248.8071 -6254.6359 5.8288096 3723.0878 629.46432 -10607.188 0 279.34926 2.7321006e-05 9.7681228e-06 + 194370 -6248.3121 -6254.0219 5.7098695 3725.5541 630.17214 -10609.748 0 273.64899 1.3408025e-06 -1.6330543e-05 + 194380 -6247.8529 -6253.3431 5.4901553 3726.9713 631.3686 -10611.683 0 263.11905 3.4789532e-05 1.3047497e-05 + 194390 -6247.4628 -6252.6483 5.1855151 3727.0454 632.95922 -10612.653 0 248.51898 0.00012962974 0.00010294346 + 194400 -6247.1735 -6251.9898 4.8163171 3725.8779 634.74827 -10612.616 0 230.82494 0.00027039622 0.0002423751 + 194410 -6246.9841 -6251.4562 4.4720692 3723.872 636.47742 -10611.806 0 214.32665 0.00043231941 0.00040819686 + 194420 -6246.8476 -6251.1694 4.3217943 3721.5891 637.86876 -10610.627 0 207.12463 0.00058799429 0.00056987911 + 194430 -6246.6958 -6251.2296 4.5337357 3719.6347 638.66931 -10609.534 0 217.28206 0.00070965471 0.00069416791 + 194440 -6246.4832 -6251.6383 5.1550584 3718.573 638.70086 -10608.912 0 247.05932 0.00077022879 0.00075076194 + 194450 -6246.2186 -6252.2661 6.0475499 3718.8147 637.91177 -10608.993 0 289.83252 0.00074796484 0.00071978177 + 194460 -6245.9604 -6252.8937 6.9333288 3720.4549 636.41357 -10609.762 0 332.28402 0.0006353254 0.00059953683 + 194470 -6245.7779 -6253.305 7.5271181 3723.1274 634.47709 -10610.91 0 360.74173 0.00044765478 0.00041112025 + 194480 -6245.7023 -6253.3876 7.6853553 3725.9904 632.47275 -10611.851 0 368.32535 0.00022537812 0.00019627565 + 194490 -6245.6991 -6253.1862 7.4871402 3727.9337 630.76824 -10611.888 0 358.82577 2.5488303e-05 7.1298232e-06 + 194500 -6245.6914 -6252.867 7.1755581 3727.9892 629.62758 -10610.484 0 343.893 -9.7407252e-05 -0.00010988827 + 194510 -6245.6235 -6252.5998 6.9763426 3725.777 629.15505 -10607.532 0 334.34548 -0.00011348515 -0.00012999045 + 194520 -6245.5101 -6252.4493 6.9391754 3721.7313 629.29535 -10603.476 0 332.56422 -3.1071311e-05 -5.8677122e-05 + 194530 -6245.4225 -6252.3721 6.9496315 3716.9437 629.87247 -10599.188 0 333.06534 0.00010857242 7.1407483e-05 + 194540 -6245.4225 -6252.3098 6.8873114 3712.7132 630.64895 -10595.672 0 330.07861 0.00025232059 0.00021419964 + 194550 -6245.5097 -6252.2674 6.7577224 3710.0743 631.39551 -10593.737 0 323.86797 0.00035825856 0.00032763669 + 194560 -6245.6271 -6252.3022 6.6751103 3709.5391 631.95661 -10593.798 0 319.90874 0.00040743947 0.00038631927 + 194570 -6245.7139 -6252.4489 6.7349901 3711.0916 632.28916 -10595.83 0 322.77851 0.00040156078 0.00038506496 + 194580 -6245.7549 -6252.6626 6.9076611 3714.323 632.45735 -10599.443 0 331.05388 0.00035375825 0.0003351423 + 194590 -6245.7866 -6252.8379 7.051275 3718.5728 632.58416 -10603.995 0 337.93666 0.00028134987 0.00025767312 + 194600 -6245.8577 -6252.8913 7.033658 3723.0277 632.78178 -10608.701 0 337.09236 0.00020353435 0.00017704627 + 194610 -6245.9821 -6252.828 6.8458709 3726.823 633.10002 -10612.751 0 328.09255 0.00014055269 0.00011510489 + 194620 -6246.1329 -6252.7226 6.5896808 3729.2045 633.52387 -10615.451 0 315.81448 0.00011014615 8.6896528e-05 + 194630 -6246.277 -6252.6326 6.3555263 3729.7228 634.0136 -10616.369 0 304.59248 0.00012210462 9.9053809e-05 + 194640 -6246.4096 -6252.5413 6.1316779 3728.3532 634.54304 -10615.437 0 293.86441 0.00017526423 0.00015042327 + 194650 -6246.5492 -6252.3908 5.8416023 3725.473 635.09551 -10612.959 0 279.96236 0.00025886786 0.00023299758 + 194660 -6246.7085 -6252.1671 5.4586421 3721.7307 635.61931 -10609.517 0 261.60876 0.00035590804 0.00033192966 + 194670 -6246.8747 -6251.9502 5.075573 3717.8877 635.98573 -10605.824 0 243.24994 0.0004456738 0.00042569799 + 194680 -6247.0191 -6251.8828 4.8637213 3714.6827 635.99702 -10602.563 0 233.09682 0.00050546097 0.0004885687 + 194690 -6247.1233 -6252.0816 4.9583572 3712.7193 635.45679 -10600.258 0 237.6323 0.00051336699 0.00049624659 + 194700 -6247.1973 -6252.5606 5.3632687 3712.3579 634.27012 -10599.189 0 257.03793 0.00045371299 0.00043347505 + 194710 -6247.2749 -6253.2199 5.9449754 3713.6181 632.51725 -10599.355 0 284.91658 0.0003243546 0.0003008825 + 194720 -6247.3912 -6253.9047 6.5135389 3716.1292 630.45743 -10600.491 0 312.16533 0.00014221446 0.00011790548 + 194730 -6247.5605 -6254.4819 6.9213802 3719.1818 628.45943 -10602.123 0 331.71137 -5.7714457e-05 -8.0488854e-05 + 194740 -6247.775 -6254.8786 7.10351 3721.9041 626.89588 -10603.679 0 340.44006 -0.00023168654 -0.00025281049 + 194750 -6248.023 -6255.0658 7.0427953 3723.5176 626.05159 -10604.635 0 337.53027 -0.00034099282 -0.00036214574 + 194760 -6248.3053 -6255.0276 6.7223196 3723.572 626.07335 -10604.673 0 322.17127 -0.00036307648 -0.0003850797 + 194770 -6248.6257 -6254.7613 6.1355922 3722.0591 626.95514 -10603.776 0 294.05201 -0.00029546129 -0.00031657093 + 194780 -6248.9673 -6254.3104 5.3431001 3719.3831 628.54169 -10602.235 0 256.07134 -0.00015385975 -0.00017123227 + 194790 -6249.2862 -6253.7787 4.4925372 3716.2384 630.5479 -10600.565 0 215.30759 3.1478707e-05 1.8633059e-05 + 194800 -6249.537 -6253.295 3.7579396 3713.456 632.60415 -10599.355 0 180.10155 0.00021989646 0.00020899047 + 194810 -6249.7054 -6252.9553 3.2498963 3711.8313 634.33046 -10599.117 0 155.75327 0.00036723327 0.00035428659 + 194820 -6249.8147 -6252.7952 2.980442 3711.9267 635.42444 -10600.146 0 142.8395 0.00043702136 0.00041994621 + 194830 -6249.904 -6252.8085 2.9044418 3713.883 635.73589 -10602.427 0 139.19715 0.00041300004 0.00039311978 + 194840 -6249.9993 -6252.9853 2.9860276 3717.3193 635.30191 -10605.607 0 143.1072 0.00030661803 0.00028733055 + 194850 -6250.1 -6253.3277 3.2277079 3721.3969 634.32831 -10609.053 0 154.68987 0.00015443176 0.00013850987 + 194860 -6250.1863 -6253.8331 3.6467429 3725.0477 633.11988 -10612.001 0 174.77238 5.4893274e-06 -6.731753e-06 + 194870 -6250.2369 -6254.4675 4.2305438 3727.2936 631.98202 -10613.743 0 202.7514 -9.5948683e-05 -0.00010645016 + 194880 -6250.2433 -6255.1522 4.9088691 3727.542 631.12865 -10613.823 0 235.26055 -0.00012518204 -0.00013671156 + 194890 -6250.2146 -6255.7737 5.559108 3725.7565 630.63036 -10612.161 0 266.42365 -8.4032592e-05 -9.8352957e-05 + 194900 -6250.1708 -6256.2124 6.0415496 3722.4439 630.41892 -10609.075 0 289.54496 1.7842425e-06 -1.5281548e-05 + 194910 -6250.1299 -6256.3761 6.2462376 3718.4675 630.34115 -10605.185 0 299.35475 9.3076436e-05 7.4628461e-05 + 194920 -6250.0975 -6256.2216 6.1241015 3714.7706 630.23621 -10601.228 0 293.50131 0.00015104311 0.0001327677 + 194930 -6250.068 -6255.7586 5.6906061 3712.1147 630.00338 -10597.877 0 272.72577 0.00014980116 0.00013273084 + 194940 -6250.0308 -6255.0477 5.016943 3710.9065 629.63472 -10595.589 0 240.44006 8.4052074e-05 6.8667932e-05 + 194950 -6249.9752 -6254.1989 4.2236824 3711.1409 629.206 -10594.546 0 202.42256 -2.9986015e-05 -4.3647037e-05 + 194960 -6249.8925 -6253.3612 3.4687488 3712.4578 628.84065 -10594.66 0 166.24191 -0.00016043073 -0.000172892 + 194970 -6249.7757 -6252.6919 2.916254 3714.2861 628.66915 -10595.647 0 139.76325 -0.0002700312 -0.00028240867 + 194980 -6249.6176 -6252.312 2.6944783 3716.0309 628.79842 -10597.141 0 129.13452 -0.00032678063 -0.00034036328 + 194990 -6249.4042 -6252.2712 2.8670085 3717.2436 629.29155 -10598.806 0 137.40313 -0.00031134033 -0.00032691538 + 195000 -6249.11 -6252.5384 3.4284424 3717.7281 630.15147 -10600.418 0 164.3102 -0.0002204466 -0.00023791011 + 195010 -6248.7048 -6253.0178 4.3130622 3717.5679 631.3057 -10601.891 0 206.70614 -6.7582703e-05 -8.6094801e-05 + 195020 -6248.1752 -6253.5772 5.4019672 3717.0754 632.60015 -10603.253 0 258.89258 0.00011831866 9.9844442e-05 + 195030 -6247.5464 -6254.0811 6.5346593 3716.6792 633.81705 -10604.577 0 313.17754 0.00029760013 0.00028000136 + 195040 -6246.8801 -6254.4215 7.5413891 3716.7673 634.72793 -10605.917 0 361.42568 0.00042981858 0.00041331293 + 195050 -6246.248 -6254.5347 8.2867129 3717.5332 635.17059 -10607.239 0 397.14578 0.00048687978 0.00047090496 + 195060 -6245.7054 -6254.3957 8.6902717 3718.8856 635.11372 -10608.395 0 416.48658 0.00046292745 0.00044647896 + 195070 -6245.2829 -6254.0006 8.7176523 3720.4614 634.66749 -10609.129 0 417.79881 0.00037522464 0.0003577771 + 195080 -6244.9878 -6253.3652 8.3774388 3721.7342 634.02582 -10609.125 0 401.49387 0.00025590858 0.00023812935 + 195090 -6244.8018 -6252.5498 7.7480536 3722.176 633.37069 -10608.096 0 371.3302 0.00013962123 0.00012270659 + 195100 -6244.6819 -6251.6804 6.9984102 3721.4284 632.79682 -10605.906 0 335.40309 5.2741478e-05 3.6532416e-05 + 195110 -6244.5774 -6250.9235 6.3460792 3719.4391 632.2987 -10602.661 0 304.13972 7.2362907e-06 -1.0832721e-05 + 195120 -6244.4591 -6250.4175 5.958329 3716.5124 631.81526 -10598.745 0 285.55656 -4.3532324e-07 -2.3682262e-05 + 195130 -6244.337 -6250.2122 5.8751694 3713.2305 631.29064 -10594.733 0 281.57108 1.4429944e-05 -1.4563113e-05 + 195140 -6244.2458 -6250.274 6.0281528 3710.2587 630.71161 -10591.244 0 288.9029 3.2882521e-05 2.2950254e-06 + 195150 -6244.2054 -6250.5504 6.345039 3708.1222 630.10952 -10588.782 0 304.08987 4.2151832e-05 1.6435879e-05 + 195160 -6244.1891 -6251.0321 6.8430125 3707.072 629.53965 -10587.644 0 327.95555 4.1491627e-05 2.3541883e-05 + 195170 -6244.1372 -6251.7373 7.6001362 3707.113 629.05955 -10587.91 0 364.24117 3.8563412e-05 2.3344881e-05 + 195180 -6244.0196 -6252.6154 8.5958343 3708.1493 628.72109 -10589.486 0 411.96061 3.7740694e-05 1.4695539e-05 + 195190 -6243.8969 -6253.4644 9.5674687 3710.0923 628.57494 -10592.132 0 458.52678 3.0943542e-05 -7.1585117e-06 + 195200 -6243.905 -6253.9812 10.076238 3712.7977 628.67333 -10595.452 0 482.90986 2.5607205e-06 -4.6719691e-05 + 195210 -6244.1474 -6253.9464 9.7989947 3715.8738 629.06086 -10598.881 0 469.62281 -5.2456505e-05 -9.9527212e-05 + 195220 -6244.5916 -6253.3924 8.8007591 3718.5888 629.75786 -10601.739 0 421.78176 -0.00011386829 -0.0001466041 + 195230 -6245.0854 -6252.5952 7.50981 3720.0706 630.74822 -10603.414 0 359.91223 -0.00014190877 -0.00015948707 + 195240 -6245.4821 -6251.8854 6.4032523 3719.7372 631.97295 -10603.596 0 306.87978 -0.00010240485 -0.00011498603 + 195250 -6245.7481 -6251.4483 5.7002118 3717.6603 633.31892 -10602.428 0 273.18614 8.4076845e-06 -1.0378773e-05 + 195260 -6245.9553 -6251.2843 5.3289752 3714.5808 634.60229 -10600.467 0 255.39439 0.0001589116 0.00013123185 + 195270 -6246.1896 -6251.3287 5.1391201 3711.5632 635.57298 -10598.465 0 246.29547 0.0002991671 0.00026888474 + 195280 -6246.4743 -6251.5718 5.0975165 3709.5448 635.97142 -10597.088 0 244.3016 0.00038494757 0.00035982667 + 195290 -6246.773 -6252.0485 5.2754945 3709.0474 635.62876 -10596.725 0 252.8313 0.0003922369 0.00037454005 + 195300 -6247.0476 -6252.7392 5.6916286 3710.1251 634.5537 -10597.418 0 272.77478 0.00031846627 0.00030469918 + 195310 -6247.3014 -6253.5137 6.2122941 3712.445 632.94641 -10598.905 0 297.72799 0.00017782158 0.00016365907 + 195320 -6247.571 -6254.1865 6.6154909 3715.3923 631.12808 -10600.707 0 317.05144 -2.8406442e-06 -1.8366471e-05 + 195330 -6247.884 -6254.6269 6.7429207 3718.1867 629.42949 -10602.243 0 323.1586 -0.00018799091 -0.00020275946 + 195340 -6248.2305 -6254.8196 6.5890932 3720.0472 628.10101 -10602.968 0 315.78632 -0.00034069684 -0.00035279646 + 195350 -6248.5745 -6254.8327 6.2581938 3720.4016 627.28041 -10602.515 0 299.92776 -0.00043261281 -0.00044267082 + 195360 -6248.8849 -6254.74 5.8550755 3719.0675 627.00825 -10600.816 0 280.60807 -0.00045174869 -0.0004622439 + 195370 -6249.1529 -6254.5738 5.4208534 3716.3159 627.25405 -10598.144 0 259.79771 -0.00040399882 -0.00041696072 + 195380 -6249.3847 -6254.3372 4.9525026 3712.7881 627.92722 -10595.052 0 237.35171 -0.00030900348 -0.00032464374 + 195390 -6249.5852 -6254.0441 4.4588653 3709.3078 628.87634 -10592.228 0 213.69384 -0.00019383679 -0.00021101803 + 195400 -6249.7533 -6253.7419 3.9886336 3706.6658 629.89966 -10590.307 0 191.1577 -8.7132185e-05 -0.00010457575 + 195410 -6249.8873 -6253.5009 3.6135493 3705.4376 630.7826 -10589.721 0 173.18156 -1.3744449e-05 -3.0617037e-05 + 195420 -6249.9905 -6253.3874 3.3969772 3705.8641 631.35527 -10590.607 0 162.80221 1.0842095e-05 -4.9101246e-06 + 195430 -6250.0672 -6253.4453 3.3781269 3707.8072 631.54489 -10592.797 0 161.89879 -1.4561698e-05 -2.8835747e-05 + 195440 -6250.1159 -6253.6875 3.5716085 3710.7897 631.3964 -10595.874 0 171.17152 -7.555527e-05 -8.8626258e-05 + 195450 -6250.1274 -6254.0913 3.9638745 3714.1207 631.0503 -10599.262 0 189.97111 -0.00014686882 -0.00016010946 + 195460 -6250.0922 -6254.5916 4.4993185 3717.0789 630.68778 -10602.358 0 215.63259 -0.00020197591 -0.00021748021 + 195470 -6250.0108 -6255.0836 5.0728583 3719.0946 630.4676 -10604.646 0 243.11983 -0.00022282956 -0.00024208322 + 195480 -6249.894 -6255.448 5.5540118 3719.8667 630.47984 -10605.795 0 266.17941 -0.00020456297 -0.0002272156 + 195490 -6249.7509 -6255.5932 5.8423497 3719.3816 630.7296 -10605.704 0 279.99818 -0.00015368523 -0.00017771038 + 195500 -6249.5744 -6255.4889 5.9144945 3717.8564 631.14956 -10604.495 0 283.45576 -8.3010935e-05 -0.0001062215 + 195510 -6249.3418 -6255.1613 5.8194939 3715.6574 631.6292 -10602.448 0 278.9028 -7.7600051e-06 -2.9107899e-05 + 195520 -6249.0293 -6254.6607 5.6313737 3713.2251 632.04539 -10599.931 0 269.88703 5.6055844e-05 3.666663e-05 + 195530 -6248.6261 -6254.0408 5.4146855 3710.9962 632.28439 -10597.321 0 259.50211 9.3353006e-05 7.6051929e-05 + 195540 -6248.1331 -6253.3692 5.2361516 3709.3231 632.25523 -10594.948 0 250.94576 9.3541825e-05 7.854027e-05 + 195550 -6247.5514 -6252.7429 5.1915042 3708.4132 631.90245 -10593.059 0 248.80601 5.4209373e-05 4.0463085e-05 + 195560 -6246.8792 -6252.2694 5.3901871 3708.3185 631.22374 -10591.812 0 258.32801 -1.8351158e-05 -3.4200775e-05 + 195570 -6246.1284 -6252.0098 5.8813908 3708.9631 630.28911 -10591.262 0 281.86925 -0.00011253988 -0.00013479357 + 195580 -6245.3497 -6251.9305 6.58079 3710.1626 629.24911 -10591.342 0 315.38838 -0.00021524862 -0.00024545784 + 195590 -6244.6279 -6251.9197 7.2918087 3711.602 628.31781 -10591.84 0 349.46439 -0.00031142091 -0.0003457922 + 195600 -6244.0331 -6251.8668 7.8337152 3712.8168 627.7279 -10592.411 0 375.43559 -0.00038030906 -0.00041169371 + 195610 -6243.5743 -6251.7343 8.1600598 3713.2704 627.66948 -10592.674 0 391.07585 -0.00039614495 -0.00041953791 + 195620 -6243.2064 -6251.5584 8.3519337 3712.5641 628.23113 -10592.354 0 400.27153 -0.00033848813 -0.00035492961 + 195630 -6242.8816 -6251.3912 8.5096154 3710.6779 629.36 -10591.429 0 407.82852 -0.00020675659 -0.00022211354 + 195640 -6242.59 -6251.2518 8.6617194 3708.0755 630.85729 -10590.185 0 415.11819 -2.7157303e-05 -4.7351058e-05 + 195650 -6242.3589 -6251.1254 8.7664691 3705.5788 632.42181 -10589.126 0 420.13839 0.00015461411 0.00012748808 + 195660 -6242.2192 -6250.9955 8.7762834 3704.0619 633.73782 -10588.795 0 420.60874 0.00029091744 0.00025877355 + 195670 -6242.1801 -6250.8668 8.6866414 3704.1193 634.57475 -10589.561 0 416.3126 0.00034955301 0.00031580951 + 195680 -6242.229 -6250.7605 8.5315133 3705.8547 634.85172 -10591.467 0 408.87799 0.00032273823 0.00029004659 + 195690 -6242.3465 -6250.7074 8.3608587 3708.8505 634.63703 -10594.195 0 400.69926 0.00022664814 0.00019620908 + 195700 -6242.5152 -6250.7531 8.2378453 3712.2987 634.09402 -10597.146 0 394.80377 9.5069504e-05 6.6693794e-05 + 195710 -6242.7237 -6250.9534 8.2296679 3715.2488 633.41399 -10599.616 0 394.41186 -3.0349711e-05 -5.797846e-05 + 195720 -6242.9763 -6251.3339 8.3576058 3716.8995 632.76788 -10601.001 0 400.54336 -0.00011254383 -0.00014070917 + 195730 -6243.2977 -6251.847 8.5492367 3716.8345 632.27706 -10600.959 0 409.72739 -0.0001314103 -0.00015956187 + 195740 -6243.715 -6252.3851 8.6701599 3715.1159 631.98703 -10599.488 0 415.52271 -9.0554339e-05 -0.00011606914 + 195750 -6244.2235 -6252.8503 8.6268128 3712.2307 631.84514 -10596.926 0 413.44527 -1.4760214e-05 -3.5623274e-05 + 195760 -6244.7766 -6253.2097 8.4331082 3708.9469 631.706 -10593.863 0 404.16186 5.9525444e-05 4.1360585e-05 + 195770 -6245.3174 -6253.4787 8.1612276 3706.1287 631.38602 -10590.993 0 391.13182 9.509227e-05 7.3741611e-05 + 195780 -6245.824 -6253.6513 7.8272832 3704.5231 630.7552 -10588.93 0 375.12733 6.3389485e-05 3.3727789e-05 + 195790 -6246.32 -6253.6642 7.3442266 3704.5288 629.81978 -10588.013 0 351.97655 -4.6359053e-05 -8.3060546e-05 + 195800 -6246.8345 -6253.45 6.6154379 3706.0082 628.74309 -10588.201 0 317.0489 -0.0002185395 -0.00025376778 + 195810 -6247.3492 -6253.0438 5.694648 3708.2599 627.78716 -10589.091 0 272.91949 -0.00040900981 -0.00043318676 + 195820 -6247.7886 -6252.6293 4.8407415 3710.2482 627.20891 -10590.086 0 231.99549 -0.00055714234 -0.00056829986 + 195830 -6248.0736 -6252.441 4.3674866 3711.0562 627.16878 -10590.666 0 209.31446 -0.00061147282 -0.00061822676 + 195840 -6248.1922 -6252.5869 4.394721 3710.3386 627.68778 -10590.613 0 210.61969 -0.00055552099 -0.00057044263 + 195850 -6248.2221 -6252.9634 4.7413085 3708.482 628.64941 -10590.095 0 227.23011 -0.0004159892 -0.00044479973 + 195860 -6248.2755 -6253.3587 5.0832275 3706.355 629.83129 -10589.545 0 243.61679 -0.00024674727 -0.00028348682 + 195870 -6248.4115 -6253.6419 5.2304241 3704.838 630.96199 -10589.442 0 250.67127 -0.0001003886 -0.00013306287 + 195880 -6248.5958 -6253.8523 5.2565568 3704.4574 631.79835 -10590.108 0 251.9237 -7.4107793e-06 -2.8447301e-05 + 195890 -6248.7434 -6254.1207 5.3773256 3705.3044 632.19917 -10591.624 0 257.71161 2.62463e-05 1.4331967e-05 + 195900 -6248.7981 -6254.5144 5.7163248 3707.1681 632.16123 -10593.844 0 273.95836 8.697536e-06 -3.3084083e-06 + 195910 -6248.7794 -6254.9541 6.1747278 3709.695 631.79936 -10596.448 0 295.9276 -4.8503107e-05 -6.8000822e-05 + 195920 -6248.7616 -6255.2653 6.5037199 3712.4494 631.2825 -10598.997 0 311.69475 -0.00013330039 -0.00015987688 + 195930 -6248.8081 -6255.3096 6.50148 3714.9013 630.76025 -10600.971 0 311.5874 -0.00023042311 -0.00025704795 + 195940 -6248.919 -6255.0815 6.1625434 3716.4509 630.31711 -10601.85 0 295.34366 -0.00032016818 -0.00033984984 + 195950 -6249.035 -6254.6973 5.6623036 3716.5683 629.97231 -10601.238 0 271.36936 -0.00038288448 -0.00039470471 + 195960 -6249.091 -6254.2977 5.2066413 3715.0057 629.71254 -10599.016 0 249.53146 -0.00040677677 -0.00041633038 + 195970 -6249.0674 -6253.9501 4.882775 3711.9564 629.52485 -10595.431 0 234.00998 -0.00039329273 -0.00040761507 + 195980 -6248.9993 -6253.6309 4.6316066 3708.0388 629.40231 -10591.072 0 221.97258 -0.00035631495 -0.0003778905 + 195990 -6248.9409 -6253.2924 4.3514974 3704.0927 629.32242 -10586.708 0 208.54817 -0.00031580131 -0.00034067737 + 196000 -6248.9171 -6252.9496 4.0325425 3700.899 629.22544 -10583.074 0 193.26206 -0.00028982659 -0.00031111641 + 196010 -6248.9015 -6252.7042 3.8026892 3698.9751 629.0228 -10580.702 0 182.2462 -0.00028912467 -0.00030271122 + 196020 -6248.8328 -6252.6854 3.8526195 3698.5216 628.64095 -10579.848 0 184.63914 -0.00031569672 -0.00032360174 + 196030 -6248.6494 -6252.9543 4.3049059 3699.4862 628.07594 -10580.516 0 206.31525 -0.00036443011 -0.00037360385 + 196040 -6248.3219 -6253.4426 5.120709 3701.65 627.42337 -10582.516 0 245.41311 -0.00042576941 -0.00044339395 + 196050 -6247.8674 -6253.9668 6.099455 3704.6655 626.86277 -10585.495 0 292.32011 -0.00048779451 -0.00051620346 + 196060 -6247.3401 -6254.3143 6.9741468 3708.0409 626.60131 -10588.957 0 334.24025 -0.00053663562 -0.00057112991 + 196070 -6246.7972 -6254.3576 7.5604122 3711.1234 626.80252 -10592.284 0 362.33737 -0.0005553384 -0.0005868429 + 196080 -6246.2541 -6254.1292 7.8750982 3713.1655 627.53326 -10594.828 0 377.4189 -0.00052370145 -0.00054538813 + 196090 -6245.6712 -6253.7928 8.1215843 3713.5366 628.75191 -10596.081 0 389.23189 -0.00042348564 -0.00043688605 + 196100 -6244.9998 -6253.5078 8.5080499 3712.0344 630.33367 -10595.876 0 407.75349 -0.00025067339 -0.00026546886 + 196110 -6244.2584 -6253.2853 9.0268734 3709.1119 632.10171 -10594.499 0 432.61843 -2.826807e-05 -5.4343718e-05 + 196120 -6243.5563 -6252.9786 9.4223186 3705.7922 633.83445 -10592.605 0 451.57037 0.00019293869 0.00015453347 + 196130 -6243.0166 -6252.4386 9.4220236 3703.2425 635.25871 -10590.94 0 451.55624 0.00035180649 0.00030967307 + 196140 -6242.6723 -6251.679 9.0066876 3702.2661 636.07614 -10590.021 0 431.65101 0.00040253947 0.00036634246 + 196150 -6242.45 -6250.8771 8.4270331 3703.0317 636.05113 -10589.96 0 403.87071 0.00033106957 0.00030270401 + 196160 -6242.2553 -6250.2237 7.968405 3705.1188 635.12333 -10590.466 0 381.89068 0.00015506709 0.00012841315 + 196170 -6242.0567 -6249.7882 7.7315023 3707.7271 633.47029 -10590.986 0 370.53697 -8.515727e-05 -0.00011692981 + 196180 -6241.8911 -6249.5207 7.629615 3709.8955 631.47261 -10590.889 0 365.65396 -0.00033596744 -0.00037367408 + 196190 -6241.8062 -6249.3566 7.5504027 3710.7116 629.59329 -10589.662 0 361.85766 -0.00053924221 -0.000577462 + 196200 -6241.8076 -6249.3056 7.4980072 3709.546 628.22432 -10587.076 0 359.34658 -0.00064483025 -0.00067722731 + 196210 -6241.8533 -6249.4516 7.5983055 3706.2851 627.56213 -10583.299 0 364.15343 -0.0006267142 -0.00065170167 + 196220 -6241.8933 -6249.8749 7.9816311 3701.4697 627.55892 -10578.904 0 382.52455 -0.00049620126 -0.00051834738 + 196230 -6241.9218 -6250.5608 8.6390346 3696.2473 627.9673 -10574.775 0 414.03101 -0.00030327605 -0.00032935893 + 196240 -6241.9998 -6251.3706 9.3707113 3692.0858 628.45639 -10571.913 0 449.09706 -0.00012129662 -0.00015423139 + 196250 -6242.2223 -6252.1119 9.889558 3690.2864 628.74616 -10571.144 0 473.96311 -1.8835047e-05 -5.4987228e-05 + 196260 -6242.6521 -6252.6561 10.004052 3691.4789 628.70572 -10572.841 0 479.45031 -3.1638308e-05 -6.4190863e-05 + 196270 -6243.2828 -6252.9973 9.7145544 3695.3652 628.38573 -10576.748 0 465.57595 -0.00014978488 -0.00017473347 + 196280 -6244.062 -6253.2093 9.1472058 3700.8523 627.98299 -10582.045 0 438.38543 -0.00032610339 -0.00034492454 + 196290 -6244.9364 -6253.3615 8.4251308 3706.4792 627.75378 -10587.595 0 403.77954 -0.00049869203 -0.00051580548 + 196300 -6245.8608 -6253.4813 7.6205033 3710.9024 627.90895 -10592.293 0 365.21728 -0.00061410464 -0.00063279771 + 196310 -6246.7752 -6253.5744 6.7991324 3713.2506 628.53344 -10595.358 0 325.85257 -0.00064186969 -0.00066282283 + 196320 -6247.6014 -6253.6516 6.0501703 3713.2791 629.56273 -10596.493 0 289.95811 -0.00057899135 -0.00060141906 + 196330 -6248.2761 -6253.7238 5.4477056 3711.3281 630.81315 -10595.865 0 261.08462 -0.00044711621 -0.00046994388 + 196340 -6248.7803 -6253.7893 5.0089982 3708.1415 632.03401 -10593.965 0 240.0593 -0.00028485277 -0.00030686997 + 196350 -6249.1334 -6253.8404 4.7069783 3704.6296 632.95623 -10591.426 0 225.58481 -0.00013744106 -0.00015736367 + 196360 -6249.3687 -6253.8796 4.5108869 3701.6484 633.338 -10588.866 0 216.18701 -4.6107129e-05 -6.3176745e-05 + 196370 -6249.5161 -6253.922 4.4058817 3699.8307 633.01586 -10586.769 0 211.15457 -3.9075915e-05 -5.3583718e-05 + 196380 -6249.5981 -6253.9805 4.3824278 3699.4719 631.95365 -10585.406 0 210.03053 -0.00012566346 -0.00013867462 + 196390 -6249.6323 -6254.0557 4.4234224 3700.4785 630.26732 -10584.802 0 211.99522 -0.00029413239 -0.00030673497 + 196400 -6249.6315 -6254.1404 4.5088871 3702.3928 628.20955 -10584.743 0 216.09117 -0.00051359711 -0.00052654034 + 196410 -6249.6022 -6254.2279 4.6256309 3704.5103 626.11731 -10584.855 0 221.68619 -0.00074031702 -0.00075417657 + 196420 -6249.5474 -6254.3126 4.7652212 3706.0713 624.33936 -10584.723 0 228.37614 -0.00092772077 -0.0009429891 + 196430 -6249.4715 -6254.3878 4.9163658 3706.4688 623.16473 -10584.021 0 235.61983 -0.0010374585 -0.0010542489 + 196440 -6249.3813 -6254.4461 5.0647575 3705.4112 622.76883 -10582.626 0 242.7316 -0.0010479682 -0.0010656541 + 196450 -6249.2842 -6254.484 5.1998144 3703.002 623.1865 -10580.673 0 249.20428 -0.00095841586 -0.00097561669 + 196460 -6249.1826 -6254.5045 5.3218734 3699.7309 624.31306 -10578.548 0 255.05404 -0.00078788426 -0.00080297692 + 196470 -6249.0704 -6254.5178 5.4473356 3696.376 625.92862 -10576.822 0 261.06689 -0.00057089521 -0.00058302294 + 196480 -6248.9321 -6254.5371 5.6050379 3693.8385 627.74068 -10576.116 0 268.62487 -0.00035068883 -0.00036081182 + 196490 -6248.7511 -6254.5643 5.8131853 3692.9437 629.44205 -10576.95 0 278.60046 -0.00017140708 -0.00018240836 + 196500 -6248.525 -6254.5698 6.0447818 3694.2413 630.77739 -10579.588 0 289.69986 -6.9655968e-05 -8.4830494e-05 + 196510 -6248.2746 -6254.4905 6.2158908 3697.8322 631.60268 -10583.925 0 297.90036 -6.5775088e-05 -8.6461835e-05 + 196520 -6248.0341 -6254.2577 6.2236811 3703.2546 631.91644 -10589.429 0 298.27372 -0.00015643964 -0.00018072054 + 196530 -6247.8283 -6253.845 6.0166901 3709.4875 631.84813 -10595.181 0 288.35355 -0.0003120563 -0.00033586361 + 196540 -6247.6539 -6253.299 5.6450963 3715.1238 631.60567 -10600.028 0 270.54469 -0.00048236609 -0.00050239702 + 196550 -6247.4799 -6252.7293 5.2493667 3718.7102 631.40083 -10602.84 0 251.57911 -0.00061061935 -0.00062690112 + 196560 -6247.2702 -6252.2587 4.9884847 3719.1668 631.3772 -10602.803 0 239.07618 -0.00065230421 -0.00066830343 + 196570 -6247.0089 -6251.9627 4.9537598 3716.1424 631.5609 -10599.666 0 237.41197 -0.00059132915 -0.00061121006 + 196580 -6246.7113 -6251.8447 5.1333963 3710.1572 631.84403 -10593.846 0 246.02116 -0.00044659405 -0.00047163507 + 196590 -6246.407 -6251.8656 5.4586754 3702.4682 632.00587 -10586.34 0 261.61035 -0.0002657242 -0.00029299643 + 196600 -6246.1097 -6251.9983 5.8885632 3694.7162 631.77385 -10578.488 0 282.21299 -0.00010883156 -0.00013352627 + 196610 -6245.8012 -6252.2515 6.4503532 3688.5021 630.91638 -10571.67 0 309.13712 -2.9522624e-05 -4.9105288e-05 + 196620 -6245.4445 -6252.6404 7.1958728 3685.0303 629.34188 -10567.013 0 344.8666 -6.0183967e-05 -7.6920126e-05 + 196630 -6245.0225 -6253.1312 8.1087363 3684.8891 627.16585 -10565.186 0 388.61614 -0.00020509972 -0.00022472766 + 196640 -6244.5721 -6253.6114 9.0392861 3687.965 624.71439 -10566.291 0 433.21331 -0.00044120242 -0.00046835598 + 196650 -6244.1831 -6253.9183 9.7352547 3693.4614 622.45493 -10569.835 0 466.56803 -0.0007237172 -0.00075739782 + 196660 -6243.9474 -6253.9285 9.9811045 3700.0129 620.87476 -10574.816 0 478.35053 -0.00099345289 -0.0010267704 + 196670 -6243.8908 -6253.6482 9.7574095 3705.9333 620.35427 -10579.936 0 467.62981 -0.0011852094 -0.0012108165 + 196680 -6243.9528 -6253.2162 9.2634037 3709.6349 621.08659 -10583.938 0 443.95428 -0.0012404617 -0.0012573849 + 196690 -6244.0449 -6252.7883 8.7433629 3710.1439 623.06185 -10585.994 0 419.03101 -0.0011257067 -0.0011405922 + 196700 -6244.1314 -6252.4025 8.2711219 3707.483 626.08731 -10585.973 0 396.39857 -0.00084957085 -0.0008703858 + 196710 -6244.2467 -6251.9654 7.7187411 3702.684 629.80215 -10584.452 0 369.92538 -0.00046662561 -0.00049490502 + 196720 -6244.4364 -6251.3851 6.9486103 3697.3994 633.68397 -10582.468 0 333.0164 -6.2306557e-05 -9.1814251e-05 + 196730 -6244.6901 -6250.7203 6.0302486 3693.3232 637.08902 -10581.133 0 289.00335 0.00027359869 0.00025053323 + 196740 -6244.9375 -6250.1966 5.2591109 3691.7013 639.36554 -10581.263 0 252.0461 0.00047072167 0.00045561438 + 196750 -6245.1098 -6250.0653 4.9555617 3693.078 640.0278 -10583.171 0 237.49832 0.00049060076 0.00047732666 + 196760 -6245.2011 -6250.4262 5.2251125 3697.2464 638.92219 -10586.595 0 250.41671 0.00032994233 0.00031064033 + 196770 -6245.2782 -6251.1627 5.8844371 3703.2981 636.30216 -10590.763 0 282.01524 2.0923872e-05 -6.3653094e-06 + 196780 -6245.4285 -6252.0403 6.6118212 3709.7439 632.76432 -10594.549 0 316.87557 -0.00037032168 -0.00039971839 + 196790 -6245.6899 -6252.8766 7.1866627 3714.7778 629.06326 -10596.718 0 344.4252 -0.00075330775 -0.00077710497 + 196800 -6246.029 -6253.6232 7.594221 3716.7511 625.88562 -10596.26 0 363.95768 -0.0010367118 -0.0010535151 + 196810 -6246.3941 -6254.2964 7.9023526 3714.7527 623.68152 -10592.731 0 378.72508 -0.0011601895 -0.0011766025 + 196820 -6246.7867 -6254.8542 8.0674938 3709.0119 622.60635 -10586.472 0 386.63957 -0.0011168958 -0.0011407388 + 196830 -6247.2634 -6255.1735 7.9101034 3700.8656 622.55761 -10578.597 0 379.09654 -0.00095152141 -0.00098376741 + 196840 -6247.8595 -6255.1565 7.2970408 3692.2825 623.25681 -10570.696 0 349.71514 -0.00073583351 -0.00076970966 + 196850 -6248.5234 -6254.8433 6.3199268 3685.2152 624.33899 -10564.397 0 302.88635 -0.00053927824 -0.00056694008 + 196860 -6249.1416 -6254.4085 5.2669336 3681.0966 625.43807 -10560.943 0 252.42101 -0.00041129859 -0.000430712 + 196870 -6249.6231 -6254.0479 4.4248245 3680.6211 626.26531 -10560.934 0 212.06242 -0.00037778135 -0.00039338818 + 196880 -6249.9544 -6253.8651 3.9107263 3683.7395 626.67137 -10564.276 0 187.42395 -0.00044298865 -0.00046074391 + 196890 -6250.1846 -6253.8455 3.6609317 3689.7423 626.67756 -10570.265 0 175.45239 -0.00058983502 -0.00061193114 + 196900 -6250.3735 -6253.9174 3.5439132 3697.377 626.4648 -10577.759 0 169.84421 -0.00077935873 -0.00080302521 + 196910 -6250.5489 -6254.0325 3.4836021 3705.0445 626.31716 -10585.394 0 166.95376 -0.00095512465 -0.00097581794 + 196920 -6250.6979 -6254.1966 3.4986751 3711.1201 626.52944 -10591.846 0 167.67614 -0.0010566519 -0.0010723704 + 196930 -6250.7917 -6254.4347 3.6430089 3714.3589 627.30096 -10596.095 0 174.59343 -0.0010396116 -0.0010524594 + 196940 -6250.819 -6254.7351 3.9160597 3714.2454 628.64765 -10597.628 0 187.67955 -0.00089417083 -0.00090799925 + 196950 -6250.8 -6255.0349 4.2349831 3711.1305 630.36552 -10596.531 0 202.96415 -0.00065159741 -0.00066824697 + 196960 -6250.7678 -6255.2638 4.4959398 3706.0853 632.06748 -10593.417 0 215.47066 -0.00037494851 -0.00039283435 + 196970 -6250.7392 -6255.3956 4.6564395 3700.5446 633.2915 -10589.232 0 223.16271 -0.00013861135 -0.00015481846 + 196980 -6250.703 -6255.4508 4.7478183 3695.8956 633.64635 -10584.993 0 227.54209 -6.512336e-06 -1.9893302e-05 + 196990 -6250.6394 -6255.4481 4.8086227 3693.1436 632.9395 -10581.531 0 230.45618 -1.6453803e-05 -2.8484633e-05 + 197000 -6250.5439 -6255.3637 4.819766 3692.7092 631.23658 -10579.309 0 230.99023 -0.00017245804 -0.00018535653 + 197010 -6250.432 -6255.1485 4.7165533 3694.365 628.83384 -10578.347 0 226.0437 -0.00044434163 -0.00045881563 + 197020 -6250.3218 -6254.7878 4.4660073 3697.3174 626.16492 -10578.27 0 214.03613 -0.00077444133 -0.00078943342 + 197030 -6250.216 -6254.3456 4.1296195 3700.4336 623.68742 -10578.467 0 197.91454 -0.0010913687 -0.0011057637 + 197040 -6250.1007 -6253.9489 3.8482333 3702.5715 621.79031 -10578.311 0 184.42893 -0.0013279094 -0.0013421494 + 197050 -6249.9605 -6253.7217 3.7611788 3702.915 620.73903 -10577.376 0 180.25679 -0.0014373491 -0.0014532156 + 197060 -6249.7925 -6253.7189 3.9264704 3701.2063 620.65182 -10575.577 0 188.17849 -0.0014029893 -0.0014218128 + 197070 -6249.6075 -6253.9052 4.2977353 3697.8063 621.49435 -10573.206 0 205.97159 -0.0012392073 -0.0012602811 + 197080 -6249.4196 -6254.1822 4.7625324 3693.5824 623.08818 -10570.853 0 228.24728 -0.00098585413 -0.0010065748 + 197090 -6249.2335 -6254.4402 5.2066863 3689.6735 625.13776 -10569.252 0 249.53362 -0.00069875464 -0.00071651331 + 197100 -6249.0396 -6254.6016 5.5619613 3687.2017 627.28194 -10569.085 0 266.5604 -0.0004382135 -0.00045264597 + 197110 -6248.8225 -6254.634 5.8115398 3686.9992 629.167 -10570.8 0 278.52159 -0.00025675941 -0.00027056068 + 197120 -6248.5781 -6254.5357 5.9576273 3689.4027 630.52639 -10574.465 0 285.52293 -0.00018772434 -0.00020509239 + 197130 -6248.3257 -6254.3116 5.9859246 3694.1407 631.24281 -10579.695 0 286.8791 -0.00023693966 -0.00026048297 + 197140 -6248.1015 -6253.969 5.8674647 3700.3353 631.36959 -10585.674 0 281.20183 -0.00038004608 -0.00040849427 + 197150 -6247.9338 -6253.5362 5.6023934 3706.6416 631.10108 -10591.279 0 268.49812 -0.00056738433 -0.00059615486 + 197160 -6247.82 -6253.0824 5.2623986 3711.5389 630.70053 -10595.322 0 252.20367 -0.00073678625 -0.00076121681 + 197170 -6247.7246 -6252.708 4.9834035 3713.7306 630.40841 -10596.847 0 238.83266 -0.00083170735 -0.0008505206 + 197180 -6247.6012 -6252.505 4.9038026 3712.537 630.35903 -10595.401 0 235.01774 -0.00081938361 -0.00083573786 + 197190 -6247.4233 -6252.5095 5.0862405 3708.1373 630.53117 -10591.178 0 243.76118 -0.00070290343 -0.00072209437 + 197200 -6247.2038 -6252.6787 5.4748406 3701.5589 630.74966 -10584.987 0 262.38508 -0.00052227938 -0.00054746973 + 197210 -6246.9883 -6252.9191 5.9307715 3694.3892 630.73974 -10578.048 0 284.23585 -0.00034218399 -0.00037138934 + 197220 -6246.8175 -6253.1581 6.340566 3688.2958 630.22063 -10571.674 0 303.8755 -0.00022910958 -0.00025650311 + 197230 -6246.6891 -6253.3985 6.7094278 3684.5432 629.01375 -10566.955 0 321.55343 -0.00022757317 -0.0002487214 + 197240 -6246.5609 -6253.6924 7.131517 3683.7031 627.1318 -10564.527 0 341.78231 -0.0003472436 -0.00036354076 + 197250 -6246.4005 -6254.0434 7.642903 3685.6286 624.81262 -10564.485 0 366.2908 -0.00056550386 -0.00058300159 + 197260 -6246.2317 -6254.3393 8.1075812 3689.5965 622.475 -10566.411 0 388.56078 -0.0008387986 -0.00086214373 + 197270 -6246.1219 -6254.4009 8.2790493 3694.4896 620.60682 -10569.497 0 396.7785 -0.0011128371 -0.0011404962 + 197280 -6246.1169 -6254.1162 7.9993109 3698.9918 619.63092 -10572.739 0 383.37186 -0.0013290947 -0.0013549922 + 197290 -6246.1916 -6253.5328 7.3411697 3701.8599 619.80309 -10575.196 0 351.83004 -0.0014331214 -0.0014530168 + 197300 -6246.2705 -6252.8245 6.5540254 3702.2773 621.16956 -10576.271 0 314.10567 -0.0013887191 -0.0014046527 + 197310 -6246.2949 -6252.1712 5.8762845 3700.1578 623.57283 -10575.902 0 281.62452 -0.0011931667 -0.0012115066 + 197320 -6246.268 -6251.6662 5.3981991 3696.2228 626.67931 -10574.568 0 258.71199 -0.00088326071 -0.00090844732 + 197330 -6246.2393 -6251.3257 5.0863572 3691.7732 630.01922 -10573.118 0 243.76678 -0.00052608827 -0.00055619951 + 197340 -6246.2499 -6251.1664 4.9165005 3688.2505 633.0508 -10572.468 0 235.62629 -0.00019815745 -0.00022644544 + 197350 -6246.29 -6251.2557 4.9657313 3686.7898 635.25948 -10573.305 0 237.98571 3.6400806e-05 1.5521213e-05 + 197360 -6246.3057 -6251.6706 5.3649562 3687.941 636.27623 -10575.888 0 257.1188 0.00013885353 0.00012491441 + 197370 -6246.2477 -6252.4007 6.1530253 3691.6058 635.97212 -10579.979 0 294.8875 9.8084245e-05 8.5114886e-05 + 197380 -6246.119 -6253.2906 7.17166 3697.1141 634.48582 -10584.89 0 343.70619 -7.2909968e-05 -9.1091873e-05 + 197390 -6245.9818 -6254.0908 8.1090768 3703.3504 632.17039 -10589.612 0 388.63246 -0.00034049359 -0.00036508916 + 197400 -6245.915 -6254.5865 8.671468 3708.9118 629.48752 -10592.986 0 415.5854 -0.00065304118 -0.0006796879 + 197410 -6245.9589 -6254.7044 8.7455525 3712.3496 626.89959 -10593.954 0 419.13595 -0.0009468592 -0.00096981853 + 197420 -6246.0968 -6254.5175 8.420677 3712.5198 624.79602 -10591.833 0 403.56609 -0.0011590589 -0.001176025 + 197430 -6246.2873 -6254.158 7.8707238 3708.9642 623.45195 -10586.574 0 377.20925 -0.001245238 -0.001258519 + 197440 -6246.5056 -6253.7265 7.2208619 3702.1523 622.99459 -10578.873 0 346.06422 -0.0011943565 -0.00120811 + 197450 -6246.7559 -6253.2672 6.5113479 3693.4454 623.36761 -10570.08 0 312.06033 -0.0010334894 -0.0010502106 + 197460 -6247.0508 -6252.8058 5.7549845 3684.7646 624.31911 -10561.889 0 275.81115 -0.0008201966 -0.00083944384 + 197470 -6247.3882 -6252.3929 5.0047245 3678.0738 625.45031 -10555.917 0 239.85448 -0.00062526749 -0.00064491758 + 197480 -6247.7472 -6252.1125 4.3652484 3674.8506 626.33395 -10553.297 0 209.2072 -0.00051134108 -0.00052965715 + 197490 -6248.1033 -6252.0511 3.9477663 3675.7124 626.66294 -10554.426 0 189.19911 -0.00051399339 -0.00053079094 + 197500 -6248.445 -6252.2569 3.8119114 3680.3004 626.3621 -10558.919 0 182.68818 -0.00063137737 -0.00064776237 + 197510 -6248.7778 -6252.7144 3.9366211 3687.4251 625.6108 -10565.75 0 188.66497 -0.00082572838 -0.0008429756 + 197520 -6249.1148 -6253.347 4.2322228 3695.4005 624.76925 -10573.517 0 202.83186 -0.0010357829 -0.0010543052 + 197530 -6249.4645 -6254.0443 4.5798234 3702.4637 624.24334 -10580.751 0 219.49084 -0.0011955677 -0.0012146639 + 197540 -6249.8235 -6254.6974 4.8738969 3707.1843 624.34283 -10586.225 0 233.58448 -0.0012536487 -0.0012720955 + 197550 -6250.1768 -6255.2245 5.0477485 3708.7787 625.18136 -10589.185 0 241.91643 -0.0011875902 -0.0012045441 + 197560 -6250.5037 -6255.5806 5.0768949 3707.2618 626.64495 -10589.487 0 243.31329 -0.0010100196 -0.0010255793 + 197570 -6250.7857 -6255.7556 4.9698754 3703.3928 628.42877 -10587.577 0 238.18431 -0.00076490195 -0.00078008095 + 197580 -6251.0125 -6255.7671 4.7545875 3698.4334 630.12289 -10584.323 0 227.86651 -0.0005153643 -0.0005315467 + 197590 -6251.1851 -6255.6477 4.4625776 3693.7906 631.31969 -10580.758 0 213.87176 -0.00032670648 -0.0003447387 + 197600 -6251.3154 -6255.4358 4.1204258 3690.6424 631.71502 -10577.793 0 197.47392 -0.00024905574 -0.00026842332 + 197610 -6251.4177 -6255.1763 3.7585632 3689.6393 631.18 -10575.996 0 180.13144 -0.00030397361 -0.00032281742 + 197620 -6251.4989 -6254.9264 3.4274178 3690.7595 629.78895 -10575.475 0 164.26109 -0.00047880554 -0.00049504221 + 197630 -6251.5537 -6254.7494 3.1956923 3693.3628 627.80014 -10575.912 0 153.15551 -0.00073080808 -0.0007435656 + 197640 -6251.5699 -6254.6926 3.1226961 3696.4225 625.59552 -10576.711 0 149.65712 -0.00099973159 -0.0010099421 + 197650 -6251.5376 -6254.7629 3.2253435 3698.854 623.5928 -10577.21 0 154.57656 -0.0012244514 -0.0012342003 + 197660 -6251.4551 -6254.9204 3.4653128 3699.8309 622.14948 -10576.901 0 166.07723 -0.0013584873 -0.0013696843 + 197670 -6251.3296 -6255.0931 3.7635076 3699.0032 621.48177 -10575.578 0 180.3684 -0.0013805976 -0.0013938343 + 197680 -6251.1729 -6255.2061 4.0331673 3696.5698 621.61991 -10573.396 0 193.29201 -0.0012983946 -0.0013126068 + 197690 -6250.9935 -6255.2122 4.2187021 3693.1952 622.41291 -10570.82 0 202.18388 -0.0011443599 -0.0011575696 + 197700 -6250.7887 -6255.1116 4.3228301 3689.8083 623.58279 -10568.503 0 207.17427 -0.00096533293 -0.00097623962 + 197710 -6250.5441 -6254.9431 4.3990334 3687.347 624.8154 -10567.105 0 210.82637 -0.00080866288 -0.00081806408 + 197720 -6250.2458 -6254.746 4.5002221 3686.5237 625.86172 -10567.131 0 215.67589 -0.00070950782 -0.00072010226 + 197730 -6249.9006 -6254.5162 4.6155673 3687.655 626.61408 -10568.785 0 221.20388 -0.0006827957 -0.00069690772 + 197740 -6249.5438 -6254.2034 4.6596435 3690.5678 627.12421 -10571.895 0 223.31626 -0.00072079217 -0.00073770664 + 197750 -6249.2187 -6253.7686 4.5499039 3694.5985 627.55105 -10575.918 0 218.05692 -0.00079559003 -0.00081141029 + 197760 -6248.9392 -6253.2607 4.3214446 3698.7252 628.06167 -10580.048 0 207.10787 -0.00086648506 -0.00087767506 + 197770 -6248.6711 -6252.8342 4.1630734 3701.8563 628.7373 -10583.428 0 199.51784 -0.00089288592 -0.00090076295 + 197780 -6248.3605 -6252.6666 4.3060865 3703.2052 629.53386 -10585.406 0 206.37182 -0.00085064429 -0.000861992 + 197790 -6247.9919 -6252.8304 4.8385277 3702.5806 630.31041 -10585.721 0 231.8894 -0.00074433026 -0.00076616309 + 197800 -6247.6185 -6253.2336 5.615046 3700.4174 630.89674 -10584.548 0 269.10451 -0.00060631713 -0.00063882946 + 197810 -6247.3255 -6253.6915 6.3659433 3697.5188 631.15377 -10582.364 0 305.09172 -0.0004806727 -0.00051550841 + 197820 -6247.151 -6254.0658 6.9147823 3694.6781 630.99952 -10579.743 0 331.39517 -0.00040201187 -0.00042879742 + 197830 -6247.0473 -6254.3341 7.2867789 3692.4268 630.4081 -10577.169 0 349.22333 -0.00038459597 -0.00040029006 + 197840 -6246.9298 -6254.5243 7.5945208 3691.0242 629.4075 -10574.956 0 363.97205 -0.00042741161 -0.00043933147 + 197850 -6246.7657 -6254.5963 7.8305532 3690.5743 628.08783 -10573.258 0 375.28405 -0.00052555005 -0.00054467413 + 197860 -6246.6089 -6254.4154 7.8064536 3691.0706 626.6052 -10572.091 0 374.12906 -0.00067360748 -0.00070439788 + 197870 -6246.5418 -6253.8674 7.3256397 3692.2998 625.16171 -10571.329 0 351.08576 -0.00085765135 -0.0008942437 + 197880 -6246.5859 -6253.0049 6.4189818 3693.7471 623.96229 -10570.714 0 307.63363 -0.0010466255 -0.0010788415 + 197890 -6246.6773 -6252.0685 5.3911701 3694.6929 623.17044 -10569.932 0 258.37512 -0.0011964342 -0.0012191791 + 197900 -6246.7257 -6251.3494 4.623737 3694.5189 622.88228 -10568.751 0 221.59542 -0.0012673792 -0.0012841985 + 197910 -6246.6888 -6251.0183 4.3294825 3693.0289 623.12102 -10567.168 0 207.4931 -0.0012419897 -0.0012603445 + 197920 -6246.5916 -6251.0643 4.4727025 3690.5637 623.84207 -10565.47 0 214.357 -0.0011302942 -0.001154207 + 197930 -6246.4868 -6251.3694 4.882614 3687.8605 624.9417 -10564.172 0 234.00226 -0.00096132633 -0.0009883693 + 197940 -6246.4018 -6251.8238 5.4220743 3685.7746 626.26821 -10563.867 0 259.85622 -0.00076991533 -0.00079446166 + 197950 -6246.3171 -6252.3791 6.0620009 3685.0276 627.6385 -10565.045 0 290.5251 -0.00058830174 -0.00060724092 + 197960 -6246.1927 -6253.0138 6.8211587 3686.0636 628.86311 -10567.941 0 326.9082 -0.00044473616 -0.00046025803 + 197970 -6246.0146 -6253.669 7.6543605 3688.9903 629.77904 -10572.438 0 366.8399 -0.00036367182 -0.00038094413 + 197980 -6245.8206 -6254.2301 8.409549 3693.5361 630.28477 -10578.051 0 403.03277 -0.00036135335 -0.00038370035 + 197990 -6245.6783 -6254.5781 8.8998018 3699.0104 630.36839 -10583.957 0 426.52844 -0.00043693417 -0.00046315644 + 198000 -6245.6371 -6254.6581 9.0209601 3704.3363 630.11948 -10589.114 0 432.33502 -0.00056623759 -0.00059231233 + 198010 -6245.698 -6254.4981 8.8000768 3708.2416 629.71553 -10592.455 0 421.74906 -0.00070569233 -0.00072869314 + 198020 -6245.8278 -6254.1624 8.3346337 3709.6096 629.3764 -10593.148 0 399.44241 -0.00080698403 -0.00082714792 + 198030 -6245.9931 -6253.6934 7.7002938 3707.8555 629.28982 -10590.839 0 369.04129 -0.00083516401 -0.0008545432 + 198040 -6246.1773 -6253.1053 6.9280544 3703.1565 629.52808 -10585.79 0 332.03124 -0.0007814393 -0.0008013275 + 198050 -6246.3708 -6252.4281 6.0573077 3696.4378 629.99207 -10578.858 0 290.30017 -0.00066643769 -0.00068638053 + 198060 -6246.5593 -6251.7472 5.1879175 3689.1383 630.41728 -10571.303 0 248.63412 -0.00053441396 -0.00055320891 + 198070 -6246.7245 -6251.1988 4.4743299 3682.8442 630.45206 -10564.495 0 214.435 -0.00044048111 -0.00045766299 + 198080 -6246.8535 -6250.9255 4.0720076 3678.8957 629.7855 -10559.607 0 195.15345 -0.00043368565 -0.00045020403 + 198090 -6246.9445 -6251.0189 4.0744121 3678.0637 628.27936 -10557.362 0 195.26869 -0.00054043457 -0.00055820485 + 198100 -6247.01 -6251.4772 4.4672414 3680.3733 626.05406 -10557.905 0 214.09527 -0.00075380703 -0.00077435252 + 198110 -6247.0754 -6252.195 5.119643 3685.1045 623.49186 -10560.791 0 245.36202 -0.0010326531 -0.0010555252 + 198120 -6247.1715 -6253.0027 5.8311233 3690.9586 621.14777 -10565.109 0 279.46015 -0.0013108604 -0.0013331937 + 198130 -6247.3171 -6253.7404 6.4233674 3696.3656 619.59426 -10569.7 0 307.84381 -0.0015142501 -0.0015325626 + 198140 -6247.505 -6254.3193 6.8143766 3699.8976 619.25446 -10573.471 0 326.58316 -0.0015812813 -0.0015945916 + 198150 -6247.7133 -6254.7221 7.0088416 3700.7044 620.28206 -10575.709 0 335.90302 -0.0014827382 -0.0014940136 + 198160 -6247.9334 -6254.9544 7.0209987 3698.8138 622.52064 -10576.289 0 336.48565 -0.0012339914 -0.0012479513 + 198170 -6248.1835 -6255.0082 6.8246811 3695.1323 625.54167 -10575.682 0 327.07701 -0.00089360121 -0.00091264497 + 198180 -6248.4892 -6254.8782 6.3890058 3691.11 628.74382 -10574.732 0 306.19701 -0.00054664243 -0.00056878638 + 198190 -6248.8501 -6254.6022 5.7521066 3688.218 631.49321 -10574.313 0 275.67322 -0.00027837506 -0.0002990354 + 198200 -6249.2297 -6254.2752 5.045578 3687.4654 633.27673 -10575.017 0 241.81241 -0.0001487083 -0.00016454772 + 198210 -6249.5759 -6254.0147 4.4388101 3689.1254 633.82733 -10576.967 0 212.73269 -0.00017714083 -0.00018867108 + 198220 -6249.8547 -6253.8994 4.0446838 3692.7278 633.17992 -10579.807 0 193.84394 -0.0003421923 -0.00035311526 + 198230 -6250.0693 -6253.926 3.8567101 3697.2582 631.63843 -10582.823 0 184.83519 -0.0005924517 -0.00060635067 + 198240 -6250.2512 -6254.0203 3.7691365 3701.4569 629.6659 -10585.143 0 180.63817 -0.00086265306 -0.00087984458 + 198250 -6250.4305 -6254.1038 3.6732783 3704.1239 627.73577 -10585.963 0 176.04411 -0.0010894415 -0.0011068858 + 198260 -6250.6088 -6254.1614 3.55255 3704.3927 626.19646 -10584.751 0 170.25813 -0.0012250968 -0.0012395713 + 198270 -6250.7601 -6254.2464 3.4862609 3701.9579 625.19601 -10581.4 0 167.08118 -0.0012488046 -0.0012602005 + 198280 -6250.8592 -6254.4165 3.5572374 3697.2073 624.68524 -10576.309 0 170.48277 -0.0011727679 -0.0011841036 + 198290 -6250.9081 -6254.6677 3.7596429 3691.1694 624.48246 -10570.32 0 180.18318 -0.0010386136 -0.0010528691 + 198300 -6250.9323 -6254.9318 3.9995165 3685.2428 624.36326 -10564.538 0 191.67927 -0.00090272815 -0.00091996135 + 198310 -6250.9549 -6255.1303 4.1754045 3680.7922 624.14358 -10560.066 0 200.10881 -0.00081598338 -0.00083356035 + 198320 -6250.9754 -6255.2239 4.2485238 3678.7793 623.73739 -10557.741 0 203.6131 -0.0008073455 -0.00082259016 + 198330 -6250.9739 -6255.2173 4.2434436 3679.5581 623.17909 -10557.955 0 203.36963 -0.00087799825 -0.00089036354 + 198340 -6250.9298 -6255.134 4.2041891 3682.8583 622.6075 -10560.6 0 201.48833 -0.0010056399 -0.001016633 + 198350 -6250.8356 -6255.0005 4.164867 3687.904 622.2186 -10565.123 0 199.60379 -0.0011537518 -0.0011653501 + 198360 -6250.6942 -6254.8504 4.1561938 3693.6094 622.20579 -10570.666 0 199.18813 -0.0012809525 -0.0012942975 + 198370 -6250.5083 -6254.7281 4.2198257 3698.8078 622.70995 -10576.246 0 202.23772 -0.0013488387 -0.001364033 + 198380 -6250.274 -6254.672 4.3980388 3702.4841 623.79271 -10580.949 0 210.7787 -0.0013288885 -0.0013453741 + 198390 -6249.982 -6254.6834 4.7014314 3703.9702 625.43027 -10584.084 0 225.31897 -0.0012085465 -0.0012252937 + 198400 -6249.6242 -6254.7099 5.0857181 3703.0713 627.51473 -10585.296 0 243.73615 -0.00099531904 -0.0010107906 + 198410 -6249.1987 -6254.6626 5.4639662 3700.1075 629.85088 -10584.621 0 261.86392 -0.00071762906 -0.00073013177 + 198420 -6248.71 -6254.4635 5.7534928 3695.8626 632.14916 -10582.475 0 275.73966 -0.00042208636 -0.00043098062 + 198430 -6248.1659 -6254.0913 5.9253532 3691.442 634.03332 -10579.567 0 283.97617 -0.00016733933 -0.00017456941 + 198440 -6247.5804 -6253.589 6.0086388 3688.0416 635.09134 -10576.722 0 287.96768 -1.4373535e-05 -2.455899e-05 + 198450 -6246.9869 -6253.0219 6.0350143 3686.6505 634.98242 -10574.655 0 289.23175 -1.2869225e-05 -3.0477431e-05 + 198460 -6246.4463 -6252.4309 5.9845403 3687.7292 633.57008 -10573.73 0 286.81275 -0.00018451697 -0.00020954609 + 198470 -6246.0214 -6251.8378 5.8164404 3690.957 631.01456 -10573.809 0 278.75646 -0.00050810667 -0.00053467416 + 198480 -6245.7264 -6251.2974 5.5710085 3695.1925 627.76502 -10574.255 0 266.99399 -0.00091557078 -0.00093623844 + 198490 -6245.5037 -6250.9202 5.4165017 3698.77 624.446 -10574.136 0 259.58915 -0.0013069537 -0.0013196936 + 198500 -6245.2646 -6250.8152 5.5505677 3700.0854 621.68726 -10572.588 0 266.01435 -0.0015823836 -0.0015933242 + 198510 -6244.9643 -6250.9937 6.0294624 3698.2253 619.96313 -10569.182 0 288.96567 -0.0016769203 -0.0016954376 + 198520 -6244.6418 -6251.3405 6.6986697 3693.3308 619.48746 -10564.159 0 321.03784 -0.0015805228 -0.0016107872 + 198530 -6244.3848 -6251.6978 7.3130371 3686.5342 620.18334 -10558.415 0 350.48177 -0.0013344197 -0.0013713758 + 198540 -6244.2489 -6251.9932 7.7442709 3679.5547 621.72761 -10553.275 0 371.14892 -0.0010100612 -0.0010438399 + 198550 -6244.2109 -6252.2872 8.0763083 3674.1877 623.65414 -10550.129 0 387.06201 -0.000685542 -0.00071026605 + 198560 -6244.1984 -6252.692 8.4935959 3671.8887 625.48585 -10550.067 0 407.06077 -0.00043015426 -0.0004490336 + 198570 -6244.1682 -6253.2333 9.0651235 3673.5012 626.85893 -10553.593 0 434.45158 -0.00029634421 -0.00031858787 + 198580 -6244.1569 -6253.7766 9.6197077 3679.0798 627.60978 -10560.466 0 461.03037 -0.000311976 -0.00034436604 + 198590 -6244.257 -6254.0862 9.8291788 3687.7801 627.80419 -10569.67 0 471.0694 -0.0004698295 -0.0005102952 + 198600 -6244.5319 -6253.9801 9.4482479 3697.8842 627.69967 -10579.564 0 452.81305 -0.00072036039 -0.00075932618 + 198610 -6244.9434 -6253.4647 8.5212625 3707.0883 627.64897 -10588.202 0 408.38671 -0.00097857382 -0.0010073027 + 198620 -6245.3674 -6252.7361 7.3687266 3713.1003 627.97549 -10593.812 0 353.15072 -0.0011501839 -0.0011686887 + 198630 -6245.6892 -6252.0413 6.3521293 3714.3834 628.86112 -10595.286 0 304.42968 -0.0011682532 -0.0011851146 + 198640 -6245.8866 -6251.5219 5.6352952 3710.6997 630.27436 -10592.496 0 270.07497 -0.0010207788 -0.0010449466 + 198650 -6246.0246 -6251.1884 5.1637476 3703.1573 631.95183 -10586.298 0 247.47576 -0.00075358218 -0.00078636417 + 198660 -6246.1789 -6251.0205 4.8415921 3693.7615 633.44553 -10578.228 0 232.03626 -0.00044936563 -0.00048412668 + 198670 -6246.3714 -6251.0554 4.6839824 3684.7542 634.24132 -10570.051 0 224.48272 -0.00019774742 -0.00022641616 + 198680 -6246.5693 -6251.3644 4.795028 3678.0455 633.92209 -10563.332 0 229.80465 -7.0782242e-05 -9.0224847e-05 + 198690 -6246.7281 -6251.9607 5.2326318 3674.8628 632.31449 -10559.138 0 250.77708 -0.00010873481 -0.00012196292 + 198700 -6246.8331 -6252.7431 5.9099967 3675.5912 629.55861 -10557.893 0 283.2402 -0.00031414579 -0.00032681303 + 198710 -6246.9111 -6253.5244 6.6132778 3679.7562 626.07552 -10559.356 0 316.94538 -0.00065233394 -0.00066817112 + 198720 -6247.0101 -6254.124 7.1138598 3686.1423 622.45219 -10562.718 0 340.93608 -0.0010584285 -0.0010770524 + 198730 -6247.1631 -6254.4579 7.2948257 3693.0555 619.29511 -10566.809 0 349.60898 -0.0014507661 -0.0014691116 + 198740 -6247.3649 -6254.5675 7.2026554 3698.7157 617.10809 -10570.391 0 345.19166 -0.0017484627 -0.0017643299 + 198750 -6247.5825 -6254.5666 6.9841026 3701.7057 616.22302 -10572.495 0 334.71738 -0.0018893279 -0.0019038435 + 198760 -6247.7891 -6254.5438 6.7547241 3701.3503 616.77511 -10572.669 0 323.72428 -0.0018440535 -0.001860715 + 198770 -6247.9901 -6254.4944 6.504297 3697.8916 618.69546 -10571.081 0 311.72241 -0.0016232594 -0.0016442673 + 198780 -6248.2147 -6254.3361 6.1214367 3692.3906 621.70641 -10568.433 0 293.37359 -0.0012750322 -0.0012983534 + 198790 -6248.4787 -6254.0016 5.5228256 3686.3933 625.33353 -10565.728 0 264.68479 -0.00087290202 -0.0008932784 + 198800 -6248.7553 -6253.5292 4.7738891 3681.5011 628.96337 -10563.994 0 228.79155 -0.00049803749 -0.00051160475 + 198810 -6248.9857 -6253.0695 4.0837463 3679.0015 631.9604 -10564.031 0 195.71604 -0.00022201719 -0.00023043467 + 198820 -6249.1254 -6252.7941 3.6687109 3679.6376 633.81756 -10566.249 0 175.82521 -9.4712173e-05 -0.00010466264 + 198830 -6249.1828 -6252.7836 3.6007711 3683.4933 634.28496 -10570.562 0 172.56915 -0.00013713777 -0.0001551103 + 198840 -6249.2172 -6252.9884 3.7712019 3689.9442 633.42504 -10576.358 0 180.73715 -0.00033687882 -0.00036354343 + 198850 -6249.2947 -6253.293 3.9982722 3697.685 631.57538 -10582.553 0 191.61964 -0.00064639628 -0.00067560235 + 198860 -6249.4374 -6253.6196 4.1822529 3704.9157 629.24005 -10587.775 0 200.43703 -0.00098876607 -0.0010124038 + 198870 -6249.6075 -6253.9744 4.366905 3709.7451 626.95407 -10590.674 0 209.28659 -0.0012751539 -0.0012898592 + 198880 -6249.7434 -6254.3951 4.651631 3710.7438 625.16213 -10590.301 0 222.93226 -0.001431556 -0.001441339 + 198890 -6249.8171 -6254.8588 5.041758 3707.4386 624.13122 -10586.429 0 241.62933 -0.0014242659 -0.00143669 + 198900 -6249.86 -6255.2472 5.3872187 3700.5132 623.90089 -10579.661 0 258.18575 -0.0012716126 -0.0012909833 + 198910 -6249.9346 -6255.4141 5.4794671 3691.6077 624.27719 -10571.299 0 262.60681 -0.0010358465 -0.0010595784 + 198920 -6250.0747 -6255.3003 5.2256711 3682.8082 624.88612 -10562.995 0 250.44348 -0.00079943972 -0.00082081278 + 198930 -6250.2519 -6254.9909 4.7390135 3676.0563 625.2927 -10556.34 0 227.12012 -0.00063767901 -0.00065223795 + 198940 -6250.4003 -6254.6602 4.2598777 3672.7028 625.1563 -10552.519 0 204.15724 -0.00059887247 -0.0006085022 + 198950 -6250.4726 -6254.4535 3.9808337 3673.2937 624.36217 -10552.109 0 190.78389 -0.00069604313 -0.0007072501 + 198960 -6250.4746 -6254.3993 3.9247122 3677.5437 623.07225 -10555.015 0 188.09423 -0.00090721376 -0.00092544721 + 198970 -6250.4544 -6254.4173 3.9628759 3684.4244 621.67555 -10560.517 0 189.92325 -0.0011805521 -0.0012055029 + 198980 -6250.4601 -6254.4039 3.9438408 3692.3462 620.66153 -10567.412 0 189.01098 -0.001443701 -0.0014693937 + 198990 -6250.4985 -6254.3234 3.8249545 3699.4677 620.46681 -10574.258 0 183.31328 -0.0016186947 -0.0016382367 + 199000 -6250.528 -6254.2321 3.7041792 3704.1359 621.34684 -10579.715 0 177.52505 -0.0016423061 -0.0016534035 + 199010 -6250.4888 -6254.2211 3.732317 3705.361 623.30367 -10582.886 0 178.87357 -0.0014872006 -0.0014939643 + 199020 -6250.345 -6254.3313 3.9863091 3703.1432 626.07603 -10583.551 0 191.0463 -0.0011754083 -0.0011851539 + 199030 -6250.1064 -6254.516 4.4096264 3698.4816 629.18565 -10582.183 0 211.33404 -0.00077638416 -0.00079421437 + 199040 -6249.8172 -6254.6727 4.8554585 3693.0353 632.03451 -10579.743 0 232.70082 -0.00038809064 -0.00041339658 + 199050 -6249.5248 -6254.708 5.1831803 3688.5635 634.04242 -10577.314 0 248.40708 -0.0001073919 -0.00013445495 + 199060 -6249.2497 -6254.5863 5.3366319 3686.3606 634.79434 -10575.741 0 255.76135 -8.6713587e-07 -2.2825053e-05 + 199070 -6248.9731 -6254.3372 5.3641385 3686.8892 634.14886 -10575.375 0 257.07962 -8.6767755e-05 -0.0001003792 + 199080 -6248.6511 -6254.0256 5.3745191 3689.721 632.26724 -10576.014 0 257.57711 -0.00033402746 -0.0003422264 + 199090 -6248.2508 -6253.7023 5.4515007 3693.7684 629.55521 -10577.026 0 261.2665 -0.00067696378 -0.00068715583 + 199100 -6247.7845 -6253.3688 5.5842676 3697.6698 626.54485 -10577.583 0 267.62944 -0.0010375328 -0.0010562735 + 199110 -6247.3121 -6252.9934 5.6812638 3700.1586 623.76023 -10576.912 0 272.27804 -0.0013447778 -0.0013726535 + 199120 -6246.9012 -6252.5725 5.6713237 3700.3207 621.60899 -10574.502 0 271.80166 -0.001545602 -0.0015766402 + 199130 -6246.5748 -6252.1796 5.6047792 3697.7564 620.32565 -10570.262 0 268.61247 -0.0016085915 -0.0016349701 + 199140 -6246.2922 -6251.9475 5.6553076 3692.6904 619.96686 -10564.605 0 271.03407 -0.0015263658 -0.001544693 + 199150 -6245.979 -6251.9881 6.0091296 3686.0178 620.43874 -10558.445 0 287.99121 -0.0013190502 -0.0013332677 + 199160 -6245.5856 -6252.3041 6.7185562 3679.2147 621.53613 -10553.055 0 321.99091 -0.0010357556 -0.0010543764 + 199170 -6245.1332 -6252.7567 7.623516 3674.0512 622.98804 -10549.796 0 365.36166 -0.00074785207 -0.00077736037 + 199180 -6244.7121 -6253.1211 8.4089699 3672.1155 624.51193 -10549.749 0 403.00502 -0.00053042057 -0.00056962167 + 199190 -6244.4228 -6253.2062 8.7833852 3674.2733 625.87414 -10553.354 0 420.9491 -0.00043620551 -0.00047620818 + 199200 -6244.2992 -6252.9674 8.6681893 3680.2842 626.9422 -10560.194 0 415.42827 -0.00047454288 -0.0005052842 + 199210 -6244.2782 -6252.5301 8.2518472 3688.7965 627.71044 -10569.037 0 395.47482 -0.00060840133 -0.00062719443 + 199220 -6244.2519 -6252.0918 7.8398249 3697.7864 628.28871 -10578.167 0 375.7284 -0.00077294082 -0.0007876384 + 199230 -6244.1624 -6251.7651 7.6027038 3705.2493 628.85408 -10585.869 0 364.36422 -0.00090478876 -0.00092764036 + 199240 -6244.0507 -6251.5045 7.4538091 3709.7744 629.57281 -10590.852 0 357.22836 -0.00096386994 -0.0010008497 + 199250 -6244.0091 -6251.1963 7.1872809 3710.7486 630.51577 -10592.461 0 344.45483 -0.00093729238 -0.00098291562 + 199260 -6244.0874 -6250.8164 6.7289999 3708.2587 631.60815 -10590.683 0 322.49143 -0.00083116486 -0.00087344815 + 199270 -6244.249 -6250.4906 6.2415472 3702.9289 632.64239 -10586.062 0 299.12997 -0.0006634764 -0.00069375506 + 199280 -6244.4045 -6250.4138 6.0093557 3695.8215 633.34296 -10579.578 0 288.00204 -0.00046355983 -0.00048269606 + 199290 -6244.4809 -6250.7142 6.2333366 3688.3492 633.44675 -10572.51 0 298.73646 -0.00027379582 -0.00029089229 + 199300 -6244.4742 -6251.3587 6.884531 3682.0954 632.77104 -10566.225 0 329.94535 -0.00014679494 -0.0001721121 + 199310 -6244.4603 -6252.156 7.6957561 3678.486 631.25814 -10561.9 0 368.82381 -0.00013414294 -0.00017104848 + 199320 -6244.552 -6252.8605 8.3084683 3678.3544 628.99378 -10560.209 0 398.18842 -0.00026753022 -0.00030925724 + 199330 -6244.8176 -6253.3229 8.5052679 3681.5718 626.20249 -10561.097 0 407.62016 -0.00053963309 -0.0005743328 + 199340 -6245.2241 -6253.5749 8.3508534 3686.9873 623.23165 -10563.794 0 400.21975 -0.00089728302 -0.00091828832 + 199350 -6245.6703 -6253.7576 8.0872664 3692.8173 620.52958 -10567.105 0 387.58719 -0.0012555792 -0.0012676929 + 199360 -6246.0873 -6253.9486 7.8613029 3697.3296 618.59752 -10569.876 0 376.75774 -0.0015276311 -0.0015427519 + 199370 -6246.4975 -6254.0637 7.5661997 3699.4361 617.88393 -10571.384 0 362.61474 -0.0016532116 -0.0016791848 + 199380 -6246.9686 -6253.9388 6.9701859 3698.9071 618.62974 -10571.476 0 334.05042 -0.0016126955 -0.0016462712 + 199390 -6247.5177 -6253.5106 5.9928872 3696.228 620.73772 -10570.476 0 287.21278 -0.0014251532 -0.0014554099 + 199400 -6248.0731 -6252.9196 4.8465678 3692.3157 623.75682 -10568.992 0 232.27472 -0.0011379526 -0.0011562102 + 199410 -6248.5286 -6252.4459 3.9172765 3688.2723 627.01109 -10567.729 0 187.73787 -0.00081486169 -0.00082191307 + 199420 -6248.8245 -6252.3312 3.5066584 3685.2063 629.81372 -10567.351 0 168.05875 -0.00052482512 -0.00052990135 + 199430 -6248.9834 -6252.625 3.6416236 3684.0592 631.66611 -10568.35 0 174.52704 -0.00032998989 -0.00034309033 + 199440 -6249.0887 -6253.1637 4.0750391 3685.3813 632.36613 -10570.911 0 195.29874 -0.00027174263 -0.0002956572 + 199450 -6249.2269 -6253.6952 4.468213 3689.093 632.00306 -10574.791 0 214.14184 -0.00035721611 -0.00038549434 + 199460 -6249.4274 -6254.0566 4.6291934 3694.3723 630.86639 -10579.295 0 221.85692 -0.00055326862 -0.00057593306 + 199470 -6249.6414 -6254.2679 4.6265227 3699.8157 629.32651 -10583.41 0 221.72893 -0.00079515316 -0.00080757349 + 199480 -6249.7849 -6254.4662 4.6812554 3703.8891 627.74097 -10586.096 0 224.35202 -0.0010096352 -0.0010167633 + 199490 -6249.8143 -6254.7473 4.9329788 3705.4768 626.40239 -10586.626 0 236.41602 -0.0011419277 -0.0011538744 + 199500 -6249.7661 -6255.0631 5.2969458 3704.2426 625.5079 -10584.814 0 253.85936 -0.0011721863 -0.0011951008 + 199510 -6249.7261 -6255.2669 5.5408746 3700.632 625.13021 -10581.029 0 265.5498 -0.0011144364 -0.0011450811 + 199520 -6249.7544 -6255.2494 5.4949497 3695.5903 625.19949 -10576.039 0 263.34882 -0.0010026976 -0.0010314437 + 199530 -6249.8382 -6255.0277 5.1894719 3690.2196 625.52238 -10570.77 0 248.70861 -0.00087572379 -0.00089471902 + 199540 -6249.9096 -6254.7175 4.8078957 3685.5469 625.84735 -10566.112 0 230.42134 -0.00076833803 -0.00077744564 + 199550 -6249.9046 -6254.4329 4.5282941 3682.413 625.95238 -10562.798 0 217.02126 -0.00070871144 -0.00071485885 + 199560 -6249.8087 -6254.2123 4.4035997 3681.3979 625.71723 -10561.327 0 211.04521 -0.00071621593 -0.00072774257 + 199570 -6249.6607 -6254.0208 4.3601215 3682.7181 625.15548 -10561.894 0 208.96149 -0.00079680684 -0.00081758702 + 199580 -6249.5208 -6253.8088 4.2880312 3686.1159 624.40285 -10564.328 0 205.50652 -0.00093779602 -0.00096504037 + 199590 -6249.4291 -6253.5768 4.1476635 3690.8197 623.67396 -10568.07 0 198.77931 -0.0011062628 -0.0011330368 + 199600 -6249.3784 -6253.3979 4.0195275 3695.6607 623.20484 -10572.263 0 192.63831 -0.0012543732 -0.0012749433 + 199610 -6249.32 -6253.3768 4.0567632 3699.3744 623.19705 -10575.948 0 194.42286 -0.0013322054 -0.0013463765 + 199620 -6249.2035 -6253.5631 4.3596363 3701.0116 623.77168 -10578.346 0 208.93823 -0.0013050298 -0.0013180268 + 199630 -6249.0192 -6253.8862 4.8670206 3700.2764 624.93366 -10579.096 0 233.25494 -0.0011680115 -0.0011859095 + 199640 -6248.808 -6254.1766 5.3685959 3697.6123 626.55031 -10578.339 0 257.29324 -0.00095031171 -0.00097501672 + 199650 -6248.6278 -6254.268 5.6401604 3693.9986 628.35875 -10576.625 0 270.30813 -0.00070550955 -0.00073361923 + 199660 -6248.5069 -6254.0989 5.5919436 3690.5846 630.01582 -10574.699 0 267.99732 -0.00049309427 -0.00051921257 + 199670 -6248.4262 -6253.7443 5.3181529 3688.3389 631.18292 -10573.266 0 254.87573 -0.00036010336 -0.00038143481 + 199680 -6248.3397 -6253.3665 5.0268081 3687.8248 631.61614 -10572.807 0 240.91285 -0.000330184 -0.00034871609 + 199690 -6248.2126 -6253.1229 4.9102321 3689.121 631.231 -10573.475 0 235.32588 -0.00040192302 -0.00042270618 + 199700 -6248.0474 -6253.0876 5.0402718 3691.8501 630.12605 -10575.064 0 241.55811 -0.00055327334 -0.00058016101 + 199710 -6247.8798 -6253.2294 5.3495888 3695.2704 628.56218 -10577.062 0 256.38231 -0.00074745662 -0.00077957431 + 199720 -6247.7495 -6253.454 5.7044498 3698.4176 626.89968 -10578.771 0 273.38924 -0.00093858229 -0.00097052349 + 199730 -6247.6647 -6253.6719 6.0071787 3700.3128 625.50213 -10579.487 0 287.89771 -0.0010793536 -0.0011052701 + 199740 -6247.5942 -6253.8367 6.2425021 3700.2382 624.63162 -10578.706 0 299.17573 -0.0011334782 -0.0011517707 + 199750 -6247.4944 -6253.9325 6.4380584 3698.0141 624.37113 -10576.318 0 308.54788 -0.0010900738 -0.0011046474 + 199760 -6247.3479 -6253.9436 6.595691 3694.1391 624.60675 -10572.689 0 316.10252 -0.00097156246 -0.00098867201 + 199770 -6247.177 -6253.8489 6.6718888 3689.6794 625.08143 -10568.61 0 319.75435 -0.00082742408 -0.00085103642 + 199780 -6247.0233 -6253.6442 6.6209746 3685.918 625.50411 -10565.066 0 317.31425 -0.00071460223 -0.00074410301 + 199790 -6246.9152 -6253.3583 6.4430974 3683.9106 625.67162 -10562.941 0 308.78938 -0.00067436374 -0.00070579991 + 199800 -6246.8537 -6253.037 6.183272 3684.1431 625.54954 -10562.73 0 296.33709 -0.00071730662 -0.00074627084 + 199810 -6246.8181 -6252.715 5.8969513 3686.4098 625.27379 -10564.399 0 282.61499 -0.00082207937 -0.00084595533 + 199820 -6246.7775 -6252.4138 5.6363375 3689.9272 625.07542 -10567.416 0 270.12492 -0.00094564631 -0.0009647473 + 199830 -6246.6992 -6252.1589 5.4596814 3693.6288 625.17299 -10570.961 0 261.65857 -0.0010397485 -0.0010575271 + 199840 -6246.5658 -6251.9761 5.4103788 3696.5424 625.68903 -10574.208 0 259.29571 -0.0010682091 -0.0010895575 + 199850 -6246.393 -6251.8635 5.4705624 3698.0981 626.61923 -10576.581 0 262.18005 -0.0010186673 -0.0010461026 + 199860 -6246.2229 -6251.7981 5.5752072 3698.2197 627.84474 -10577.862 0 267.19521 -0.00090297844 -0.00093386383 + 199870 -6246.0829 -6251.7898 5.7068707 3697.1994 629.16428 -10578.153 0 273.50526 -0.00074751768 -0.00077591186 + 199880 -6245.9523 -6251.9142 5.9619389 3695.5126 630.33594 -10577.763 0 285.72956 -0.00058204259 -0.00060414746 + 199890 -6245.772 -6252.2642 6.4921973 3693.7044 631.12881 -10577.097 0 311.14252 -0.00043436171 -0.00045251355 + 199900 -6245.4948 -6252.8537 7.3589251 3692.3422 631.38031 -10576.576 0 352.68098 -0.00033010782 -0.0003515242 + 199910 -6245.1341 -6253.5547 8.4205536 3691.9356 631.0436 -10576.534 0 403.56018 -0.00029187942 -0.00032294825 + 199920 -6244.7747 -6254.125 9.350345 3692.7708 630.20257 -10577.098 0 448.121 -0.00033378124 -0.00037428264 + 199930 -6244.5255 -6254.3248 9.7992327 3694.7154 629.04077 -10578.081 0 469.63421 -0.00045277437 -0.00049496301 + 199940 -6244.4399 -6254.0547 9.6148213 3697.136 627.7762 -10578.967 0 460.79618 -0.00062311763 -0.00065746711 + 199950 -6244.4719 -6253.4168 8.9448517 3699.0549 626.59895 -10579.071 0 428.68748 -0.00080118596 -0.00082470169 + 199960 -6244.522 -6252.6343 8.1123213 3699.5431 625.64361 -10577.821 0 388.78795 -0.00094190909 -0.00096124033 + 199970 -6244.5306 -6251.8964 7.3657722 3698.1477 624.99264 -10575.037 0 353.00913 -0.0010176749 -0.0010433444 + 199980 -6244.5249 -6251.2714 6.7465546 3695.0862 624.68239 -10571.04 0 323.33275 -0.0010265293 -0.0010635351 + 199990 -6244.5753 -6250.7564 6.1810421 3691.1 624.69836 -10566.555 0 296.23022 -0.0009851669 -0.0010289371 + 200000 -6244.719 -6250.3783 5.6592603 3687.1185 624.97337 -10562.47 0 271.22351 -0.00091502715 -0.00095596041 + 200010 -6244.9273 -6250.2248 5.2975587 3683.9716 625.40478 -10559.601 0 253.88874 -0.0008333784 -0.00086487705 + 200020 -6245.1395 -6250.3778 5.2383831 3682.2615 625.88607 -10558.525 0 251.05271 -0.00075354836 -0.00077620085 + 200030 -6245.3198 -6250.8279 5.5081514 3682.3451 626.33329 -10559.506 0 263.98152 -0.0006891191 -0.00070837865 + 200040 -6245.4843 -6251.4597 5.9754215 3684.3213 626.69171 -10562.473 0 286.37573 -0.00065473943 -0.00067543236 + 200050 -6245.6811 -6252.1228 6.4416733 3687.9793 626.92639 -10567.029 0 308.72113 -0.00066126273 -0.00068417543 + 200060 -6245.9486 -6252.7218 6.773131 3692.7576 627.01589 -10572.495 0 324.60644 -0.00070900892 -0.00073182743 +Loop time of 2.01568 on 4 procs for 200000 steps with 22 atoms + +Performance: 8.573 ns/day, 2.800 hours/ns, 99221.967 timesteps/s, 2.183 Matom-step/s +96.2% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.26442 | 0.68575 | 1.168 | 43.0 | 34.02 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.41777 | 0.90902 | 1.3357 | 38.8 | 45.10 +Output | 0.1576 | 0.16435 | 0.1838 | 2.8 | 8.15 +Modify | 0.12863 | 0.15904 | 0.18408 | 5.2 | 7.89 +Other | | 0.09753 | | | 4.84 + +Nlocal: 5.5 ave 6 max 5 min +Histogram: 2 0 0 0 0 0 0 0 0 2 +Nghost: 16.5 ave 17 max 16 min +Histogram: 2 0 0 0 0 0 0 0 0 2 +Neighs: 57.75 ave 93 max 22 min +Histogram: 1 1 0 0 0 0 0 0 1 1 + +Total # of neighbors = 231 +Ave neighs/atom = 10.5 +Neighbor list builds = 0 +Dangerous builds = 0 + + +Total wall time: 0:00:02 diff --git a/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.g++.1 b/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.g++.1 new file mode 100644 index 0000000000..2da012be6b --- /dev/null +++ b/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.g++.1 @@ -0,0 +1,185 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task + +# Created 2011-01-07 + +# General parameters + +variable sname index Si2H6 + +units electron +newton on +boundary f f f + +atom_style electron + +read_data data.${sname} +read_data data.Si2H6 +Reading data file ... + orthogonal box = (-1000 -1000 -1000) to (1000 1000 1000) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 22 atoms + read_data CPU = 0.000 seconds + +pair_style eff/cut 1000.0 ecp 1 Si +pair_coeff * * + +compute energies all pair eff/cut +variable eke equal c_energies[1] +variable epauli equal c_energies[2] +variable estatics equal c_energies[3] +variable errestrain equal c_energies[4] + +comm_modify vel yes + +compute peratom all stress/atom NULL +compute p all reduce sum c_peratom[1] c_peratom[2] c_peratom[3] +variable press equal -(c_p[1]+c_p[2]+c_p[3])/(3*vol) + +compute effTemp all temp/eff +compute effPress all pressure effTemp + +thermo 2 +thermo_style custom step etotal pe ke v_eke v_epauli v_estatics v_errestrain temp press v_press +thermo_modify temp effTemp press effPress + +# Minimization + +min_style cg +#dump 1 all xyz 2 ${sname}.min.xyz +compute 1 all property/atom spin eradius erforce +#dump 2 all custom 2 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +min_modify line quadratic +minimize 0 1.0e-5 1000 10000 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- EFF package: doi:10.1002/jcc.21637 + +@Article{Jaramillo-Botero11, + author = {A. Jaramillo-Botero and J. Su and A. Qi and Goddard, III, W. A.}, + title = {Large-Scale, Long-Term Nonadiabatic Electron Molecular Dynamics for Describing Material Properties and Phenomena in Extreme Environments}, + journal = {J.~Comp.\ Chem.}, + year = 2011, + volume = 32, + number = 3, + pages = {497--512} +} + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 1002 + ghost atom cutoff = 1002 + binsize = 501, bins = 4 4 4 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair eff/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 6.098 | 6.098 | 6.098 Mbytes + Step TotEng PotEng KinEng v_eke v_epauli v_estatics v_errestrain Temp Press v_press + 0 -8.5010994 -8.5010994 0 5.4885963 1.6463577 -15.636053 0 0 3948.0425 3948.0425 + 2 -8.67691 -8.67691 0 5.5258385 1.589403 -15.792152 0 0 3880.1721 3880.1721 + 4 -8.848848 -8.848848 0 5.5663359 1.5311327 -15.946317 0 0 3788.6697 3788.6697 + 6 -9.0177692 -9.0177692 0 5.6106795 1.4710658 -16.099514 0 0 3671.1737 3671.1737 + 8 -9.185303 -9.185303 0 5.6598348 1.4083124 -16.25345 0 0 3523.4287 3523.4287 + 10 -9.3547798 -9.3547798 0 5.7155927 1.3410774 -16.41145 0 0 3336.9891 3336.9891 + 12 -9.5342746 -9.5342746 0 5.7820671 1.2650232 -16.581365 0 0 3091.6153 3091.6153 + 14 -9.753773 -9.753773 0 5.8743943 1.1639 -16.792067 0 0 2711.1247 2711.1247 + 16 -10.097143 -10.097143 0 6.0386279 0.98467639 -17.120448 0 0 1912.0559 1912.0559 + 18 -10.206415 -10.206415 0 6.0972556 0.92111471 -17.224785 0 0 1604.9272 1604.9272 + 20 -10.28471 -10.28471 0 6.1543746 0.86786676 -17.306951 0 0 1325.3681 1325.3681 + 22 -10.343227 -10.343227 0 6.2122367 0.82042286 -17.375887 0 0 1062.6534 1062.6534 + 24 -10.386164 -10.386164 0 6.2699963 0.77763016 -17.43379 0 0 820.84479 820.84479 + 26 -10.416263 -10.416263 0 6.3255676 0.73934069 -17.481171 0 0 608.7375 608.7375 + 28 -10.436521 -10.436521 0 6.3761026 0.70612619 -17.51875 0 0 434.68899 434.68899 + 30 -10.450247 -10.450247 0 6.4147546 0.68147364 -17.546475 0 0 302.62232 302.62232 + 32 -10.456683 -10.456683 0 6.416721 0.67361461 -17.547019 0 0 223.07929 223.07929 + 34 -10.458069 -10.458069 0 6.3974543 0.66990042 -17.525424 0 0 164.78914 164.78914 + 36 -10.458558 -10.458558 0 6.3763802 0.66472241 -17.49966 0 0 100.618 100.618 + 38 -10.459231 -10.459231 0 6.3293189 0.66038284 -17.448933 0 0 -3.1075375 -3.1075375 + 40 -10.459346 -10.459346 0 6.3132377 0.65807627 -17.43066 0 0 -29.981737 -29.981737 + 42 -10.459366 -10.459366 0 6.3179452 0.65719131 -17.434503 0 0 -45.500522 -45.500522 + 44 -10.459413 -10.459413 0 6.2985544 0.66239121 -17.420359 0 0 14.638842 14.638842 + 46 -10.459499 -10.459499 0 6.3129457 0.65696218 -17.429407 0 0 -46.926115 -46.926115 + 48 -10.459522 -10.459522 0 6.3120038 0.65909539 -17.430621 0 0 -27.058486 -27.058486 + 50 -10.459532 -10.459532 0 6.3113769 0.65958039 -17.430489 0 0 -16.067028 -16.067028 + 52 -10.459536 -10.459536 0 6.3181474 0.65939215 -17.437076 0 0 -15.311526 -15.311526 + 54 -10.459539 -10.459539 0 6.3204818 0.66055005 -17.440571 0 0 -0.10049441 -0.10049441 + 56 -10.459539 -10.459539 0 6.320264 0.6605463 -17.440349 0 0 -0.12138433 -0.12138433 + 58 -10.459539 -10.459539 0 6.3204128 0.66045741 -17.440409 0 0 -1.2175181 -1.2175181 + 60 -10.459539 -10.459539 0 6.3201688 0.66048114 -17.440189 0 0 -0.80979907 -0.80979907 + 62 -10.459539 -10.459539 0 6.3201369 0.6605348 -17.440211 0 0 -0.85945578 -0.85945578 + 64 -10.459539 -10.459539 0 6.3201036 0.66047761 -17.44012 0 0 -0.95534716 -0.95534716 + 66 -10.459539 -10.459539 0 6.3201475 0.66049137 -17.440178 0 0 -0.89220676 -0.89220676 + 68 -10.459539 -10.459539 0 6.3201605 0.6605388 -17.440238 0 0 -0.44630696 -0.44630696 + 70 -10.459539 -10.459539 0 6.3202978 0.66049413 -17.440331 0 0 -0.72919073 -0.72919073 + 72 -10.459539 -10.459539 0 6.3202928 0.66056004 -17.440392 0 0 -0.049410442 -0.049410442 + 74 -10.459539 -10.459539 0 6.3204368 0.66055883 -17.440535 0 0 -0.025063323 -0.025063323 + 76 -10.459539 -10.459539 0 6.3204403 0.66054902 -17.440528 0 0 -0.010779864 -0.010779864 + 78 -10.459539 -10.459539 0 6.3203876 0.66056716 -17.440494 0 0 0.087251782 0.087251782 + 80 -10.459539 -10.459539 0 6.3203944 0.66054525 -17.440479 0 0 -0.13822668 -0.13822668 + 82 -10.459539 -10.459539 0 6.3203511 0.66055332 -17.440443 0 0 -0.043786214 -0.043786214 + 84 -10.459539 -10.459539 0 6.32037 0.66054938 -17.440458 0 0 -0.10833476 -0.10833476 + 86 -10.459539 -10.459539 0 6.3203586 0.66055472 -17.440452 0 0 -0.04772439 -0.04772439 + 88 -10.459539 -10.459539 0 6.3203709 0.66055294 -17.440463 0 0 -0.055815521 -0.055815521 +Loop time of 0.00236996 on 1 procs for 88 steps with 22 atoms + +99.5% CPU use with 1 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = force tolerance + Energy initial, next-to-last, final = + -8.50109938620961 -10.4595390706544 -10.459539070672 + Force two-norm initial, final = 3.2945156 4.8001667e-06 + Force max component initial, final = 1.8019385 2.1391495e-06 + Final line search alpha, max atom move = 1 2.1391495e-06 + Iterations, force evaluations = 88 127 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0019013 | 0.0019013 | 0.0019013 | 0.0 | 80.23 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 7.926e-06 | 7.926e-06 | 7.926e-06 | 0.0 | 0.33 +Output | 0.00027587 | 0.00027587 | 0.00027587 | 0.0 | 11.64 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.0001848 | | | 7.80 + +Nlocal: 22 ave 22 max 22 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 231 ave 231 max 231 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 231 +Ave neighs/atom = 10.5 +Neighbor list builds = 0 +Dangerous builds = 0 + +#undump 1 +#undump 2 + +Total wall time: 0:00:00 diff --git a/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.g++.4 b/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.g++.4 new file mode 100644 index 0000000000..4d5ca5074b --- /dev/null +++ b/examples/PACKAGES/eff/ECP/Si2H6/log.12Aug24.Si2H6.g++.4 @@ -0,0 +1,185 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task + +# Created 2011-01-07 + +# General parameters + +variable sname index Si2H6 + +units electron +newton on +boundary f f f + +atom_style electron + +read_data data.${sname} +read_data data.Si2H6 +Reading data file ... + orthogonal box = (-1000 -1000 -1000) to (1000 1000 1000) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 22 atoms + read_data CPU = 0.001 seconds + +pair_style eff/cut 1000.0 ecp 1 Si +pair_coeff * * + +compute energies all pair eff/cut +variable eke equal c_energies[1] +variable epauli equal c_energies[2] +variable estatics equal c_energies[3] +variable errestrain equal c_energies[4] + +comm_modify vel yes + +compute peratom all stress/atom NULL +compute p all reduce sum c_peratom[1] c_peratom[2] c_peratom[3] +variable press equal -(c_p[1]+c_p[2]+c_p[3])/(3*vol) + +compute effTemp all temp/eff +compute effPress all pressure effTemp + +thermo 2 +thermo_style custom step etotal pe ke v_eke v_epauli v_estatics v_errestrain temp press v_press +thermo_modify temp effTemp press effPress + +# Minimization + +min_style cg +#dump 1 all xyz 2 ${sname}.min.xyz +compute 1 all property/atom spin eradius erforce +#dump 2 all custom 2 ${sname}.min.lammpstrj id type q c_1[1] c_1[2] x y z fx fy fz c_1[3] +min_modify line quadratic +minimize 0 1.0e-5 1000 10000 + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Your simulation uses code contributions which should be cited: + +- EFF package: doi:10.1002/jcc.21637 + +@Article{Jaramillo-Botero11, + author = {A. Jaramillo-Botero and J. Su and A. Qi and Goddard, III, W. A.}, + title = {Large-Scale, Long-Term Nonadiabatic Electron Molecular Dynamics for Describing Material Properties and Phenomena in Extreme Environments}, + journal = {J.~Comp.\ Chem.}, + year = 2011, + volume = 32, + number = 3, + pages = {497--512} +} + +- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419 + +@Article{Gissinger24, + author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor}, + title = {Type Label Framework for Bonded Force Fields in LAMMPS}, + journal = {J. Phys. Chem. B}, + year = 2024, + volume = 128, + number = 13, + pages = {3282–-3297} +} + +CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE + +Generated 0 of 3 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 1002 + ghost atom cutoff = 1002 + binsize = 501, bins = 4 4 4 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair eff/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 6.113 | 6.113 | 6.113 Mbytes + Step TotEng PotEng KinEng v_eke v_epauli v_estatics v_errestrain Temp Press v_press + 0 -8.5010994 -8.5010994 0 5.4885963 1.6463577 -15.636053 0 0 3948.0425 3948.0425 + 2 -8.67691 -8.67691 0 5.5258385 1.589403 -15.792152 0 0 3880.1721 3880.1721 + 4 -8.848848 -8.848848 0 5.5663359 1.5311327 -15.946317 0 0 3788.6697 3788.6697 + 6 -9.0177692 -9.0177692 0 5.6106795 1.4710658 -16.099514 0 0 3671.1737 3671.1737 + 8 -9.185303 -9.185303 0 5.6598348 1.4083124 -16.25345 0 0 3523.4287 3523.4287 + 10 -9.3547798 -9.3547798 0 5.7155927 1.3410774 -16.41145 0 0 3336.9891 3336.9891 + 12 -9.5342746 -9.5342746 0 5.7820671 1.2650232 -16.581365 0 0 3091.6153 3091.6153 + 14 -9.753773 -9.753773 0 5.8743943 1.1639 -16.792067 0 0 2711.1247 2711.1247 + 16 -10.097143 -10.097143 0 6.0386279 0.98467639 -17.120448 0 0 1912.0559 1912.0559 + 18 -10.206415 -10.206415 0 6.0972556 0.92111471 -17.224785 0 0 1604.9272 1604.9272 + 20 -10.28471 -10.28471 0 6.1543746 0.86786676 -17.306951 0 0 1325.3681 1325.3681 + 22 -10.343227 -10.343227 0 6.2122367 0.82042286 -17.375887 0 0 1062.6534 1062.6534 + 24 -10.386164 -10.386164 0 6.2699963 0.77763016 -17.43379 0 0 820.84479 820.84479 + 26 -10.416263 -10.416263 0 6.3255676 0.73934069 -17.481171 0 0 608.7375 608.7375 + 28 -10.436521 -10.436521 0 6.3761026 0.70612619 -17.51875 0 0 434.68899 434.68899 + 30 -10.450247 -10.450247 0 6.4147546 0.68147364 -17.546475 0 0 302.62232 302.62232 + 32 -10.456683 -10.456683 0 6.416721 0.67361461 -17.547019 0 0 223.07929 223.07929 + 34 -10.458069 -10.458069 0 6.3974543 0.66990042 -17.525424 0 0 164.78914 164.78914 + 36 -10.458558 -10.458558 0 6.3763802 0.66472241 -17.49966 0 0 100.618 100.618 + 38 -10.459231 -10.459231 0 6.3293189 0.66038284 -17.448933 0 0 -3.1075375 -3.1075375 + 40 -10.459346 -10.459346 0 6.3132377 0.65807627 -17.43066 0 0 -29.981737 -29.981737 + 42 -10.459366 -10.459366 0 6.3179452 0.65719131 -17.434503 0 0 -45.500522 -45.500522 + 44 -10.459413 -10.459413 0 6.2985544 0.66239121 -17.420359 0 0 14.638842 14.638842 + 46 -10.459499 -10.459499 0 6.3129457 0.65696218 -17.429407 0 0 -46.926115 -46.926115 + 48 -10.459522 -10.459522 0 6.3120038 0.65909539 -17.430621 0 0 -27.058486 -27.058486 + 50 -10.459532 -10.459532 0 6.3113769 0.65958039 -17.430489 0 0 -16.067028 -16.067028 + 52 -10.459536 -10.459536 0 6.3181474 0.65939215 -17.437076 0 0 -15.311525 -15.311525 + 54 -10.459539 -10.459539 0 6.3204818 0.66055005 -17.440571 0 0 -0.1004938 -0.1004938 + 56 -10.459539 -10.459539 0 6.320264 0.6605463 -17.440349 0 0 -0.12138436 -0.12138436 + 58 -10.459539 -10.459539 0 6.3204128 0.66045741 -17.440409 0 0 -1.2175176 -1.2175176 + 60 -10.459539 -10.459539 0 6.3201688 0.66048114 -17.440189 0 0 -0.80979946 -0.80979946 + 62 -10.459539 -10.459539 0 6.3201369 0.6605348 -17.440211 0 0 -0.85945162 -0.85945162 + 64 -10.459539 -10.459539 0 6.3201036 0.66047761 -17.44012 0 0 -0.95534903 -0.95534903 + 66 -10.459539 -10.459539 0 6.3201475 0.66049137 -17.440178 0 0 -0.89220297 -0.89220297 + 68 -10.459539 -10.459539 0 6.3201605 0.6605388 -17.440238 0 0 -0.44631358 -0.44631358 + 70 -10.459539 -10.459539 0 6.3202978 0.66049413 -17.440331 0 0 -0.72919322 -0.72919322 + 72 -10.459539 -10.459539 0 6.3202928 0.66056005 -17.440392 0 0 -0.049401694 -0.049401694 + 74 -10.459539 -10.459539 0 6.3204368 0.66055883 -17.440535 0 0 -0.025056381 -0.025056381 + 76 -10.459539 -10.459539 0 6.3204403 0.66054902 -17.440528 0 0 -0.010774653 -0.010774653 + 78 -10.459539 -10.459539 0 6.3203876 0.66056716 -17.440494 0 0 0.087250755 0.087250755 + 80 -10.459539 -10.459539 0 6.3203944 0.66054525 -17.440479 0 0 -0.13822694 -0.13822694 + 82 -10.459539 -10.459539 0 6.3203511 0.66055332 -17.440443 0 0 -0.043784806 -0.043784806 + 84 -10.459539 -10.459539 0 6.32037 0.66054937 -17.440458 0 0 -0.10833935 -0.10833935 + 86 -10.459539 -10.459539 0 6.3203586 0.66055472 -17.440452 0 0 -0.047719128 -0.047719128 + 88 -10.459539 -10.459539 0 6.3203709 0.66055294 -17.440463 0 0 -0.055818341 -0.055818341 +Loop time of 0.00213866 on 4 procs for 88 steps with 22 atoms + +95.0% CPU use with 4 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = force tolerance + Energy initial, next-to-last, final = + -8.50109938620958 -10.4595390706543 -10.459539070672 + Force two-norm initial, final = 3.2945156 4.7997573e-06 + Force max component initial, final = 1.8019385 2.1386971e-06 + Final line search alpha, max atom move = 1 2.1386971e-06 + Iterations, force evaluations = 88 127 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.00027642 | 0.00052972 | 0.00096856 | 0.0 | 24.77 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.00035997 | 0.00081245 | 0.0010746 | 0.0 | 37.99 +Output | 0.00037064 | 0.00039193 | 0.00045231 | 0.0 | 18.33 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.0004046 | | | 18.92 + +Nlocal: 5.5 ave 7 max 3 min +Histogram: 1 0 0 0 0 0 0 2 0 1 +Nghost: 16.5 ave 19 max 15 min +Histogram: 1 0 2 0 0 0 0 0 0 1 +Neighs: 57.75 ave 109 max 29 min +Histogram: 1 1 0 1 0 0 0 0 0 1 + +Total # of neighbors = 231 +Ave neighs/atom = 10.5 +Neighbor list builds = 0 +Dangerous builds = 0 + +#undump 1 +#undump 2 + +Total wall time: 0:00:00 diff --git a/examples/PACKAGES/electron_stopping/AlCu.eam.alloy b/examples/PACKAGES/electron_stopping/AlCu.eam.alloy new file mode 120000 index 0000000000..c9470b2084 --- /dev/null +++ b/examples/PACKAGES/electron_stopping/AlCu.eam.alloy @@ -0,0 +1 @@ +../../../potentials/AlCu.eam.alloy \ No newline at end of file diff --git a/examples/PACKAGES/electron_stopping/SiC.tersoff.zbl b/examples/PACKAGES/electron_stopping/SiC.tersoff.zbl new file mode 120000 index 0000000000..15740788fd --- /dev/null +++ b/examples/PACKAGES/electron_stopping/SiC.tersoff.zbl @@ -0,0 +1 @@ +../../../potentials/SiC.tersoff.zbl \ No newline at end of file diff --git a/examples/PACKAGES/electron_stopping/in.cascade_AlCu b/examples/PACKAGES/electron_stopping/in.cascade_AlCu index 26a8852f24..cdbe452aa1 100644 --- a/examples/PACKAGES/electron_stopping/in.cascade_AlCu +++ b/examples/PACKAGES/electron_stopping/in.cascade_AlCu @@ -12,8 +12,8 @@ region box block -10 10 -10 10 -10 10 create_box 2 box create_atoms 1 box -pair_style eam/alloy -pair_coeff * * ../../../../potentials/AlCu.eam.alloy Al Cu +pair_style eam/alloy +pair_coeff * * AlCu.eam.alloy Al Cu mass 1 26.982 mass 2 63.546 diff --git a/examples/PACKAGES/electron_stopping/in.cascade_SiSi b/examples/PACKAGES/electron_stopping/in.cascade_SiSi index 4596f51904..65cabb3890 100644 --- a/examples/PACKAGES/electron_stopping/in.cascade_SiSi +++ b/examples/PACKAGES/electron_stopping/in.cascade_SiSi @@ -13,7 +13,7 @@ create_box 1 box create_atoms 1 box pair_style tersoff/zbl -pair_coeff * * ../../../../potentials/SiC.tersoff.zbl Si +pair_coeff * * SiC.tersoff.zbl Si mass 1 28.0855 diff --git a/examples/PACKAGES/interlayer/aip_water_2dm/COH.DMC.aip.water.2dm b/examples/PACKAGES/interlayer/aip_water_2dm/COH.DMC.aip.water.2dm new file mode 120000 index 0000000000..83fe1fed34 --- /dev/null +++ b/examples/PACKAGES/interlayer/aip_water_2dm/COH.DMC.aip.water.2dm @@ -0,0 +1 @@ +../../../../potentials/COH.DMC.aip.water.2dm \ No newline at end of file diff --git a/examples/PACKAGES/interlayer/aip_water_2dm/in.gr_water b/examples/PACKAGES/interlayer/aip_water_2dm/in.gr_water index 9f8e717a7e..7024a82e07 100644 --- a/examples/PACKAGES/interlayer/aip_water_2dm/in.gr_water +++ b/examples/PACKAGES/interlayer/aip_water_2dm/in.gr_water @@ -4,26 +4,26 @@ boundary p p p atom_style full processors * * 1 # domain decomposition over x and y read_data ./gra_water.data -mass 1 12.0107 # carbon mass (g/mole) +mass 1 12.0107 # carbon mass (g/mole) mass 2 15.9994 # oxygen mass (g/mole) -mass 3 1.008 # hydrogen mass (g/mole) +mass 3 1.008 # hydrogen mass (g/mole) # Separate atom groups -group gr molecule 1 -group water molecule 2 +group gr molecule 1 +group water molecule 2 ######################## Potential defition ############################## # Interlayer potential pair_style hybrid/overlay aip/water/2dm 16.0 lj/cut/tip4p/long 2 3 1 1 0.1546 10 8.5 #################################################################### pair_coeff 1 1 none pair_coeff 2 2 lj/cut/tip4p/long 8.0313e-3 3.1589 # O-O -pair_coeff 2 3 lj/cut/tip4p/long 0.0 0.0 # O-H -pair_coeff 3 3 lj/cut/tip4p/long 0.0 0.0 # H-H -pair_coeff * * aip/water/2dm COH.aip.water.2dm C Ow Hw # C-H2O +pair_coeff 2 3 lj/cut/tip4p/long 0.0 0.0 # O-H +pair_coeff 3 3 lj/cut/tip4p/long 0.0 0.0 # H-H +pair_coeff * * aip/water/2dm COH.DMC.aip.water.2dm C Ow Hw # C-H2O # bond and angle -bond_style harmonic -bond_coeff 1 0.0 0.9572 -angle_style harmonic -angle_coeff 1 0.0 104.52 +bond_style harmonic +bond_coeff 1 0.0 0.9572 +angle_style harmonic +angle_coeff 1 0.0 104.52 # define kspace calculation kspace_style pppm/tip4p 1E-5 # Neighbor update settings @@ -31,21 +31,21 @@ neighbor 2.0 bin neigh_modify every 1 delay 5 check yes page 1000000 one 100000 #################################################################### # Calculate pair energy -compute 1 all pair lj/cut/tip4p/long -compute 2 all pair aip/water/2dm -compute wt water temp -variable TIP4P equal c_1 -variable EILP equal c_2 # total interlayer energy -variable temp_wt equal c_wt +compute 1 all pair lj/cut/tip4p/long +compute 2 all pair aip/water/2dm +compute wt water temp +variable TIP4P equal c_1 +variable EILP equal c_2 # total interlayer energy +variable temp_wt equal c_wt ############# Output ############## thermo_style custom step etotal pe ke v_TIP4P v_EILP v_temp_wt thermo 100 thermo_modify lost error -fix subf gr setforce 0.0 0.0 0.0 -fix 1 water shake 0.0001 20 100 b 1 a 1 +fix subf gr setforce 0.0 0.0 0.0 +fix 1 water shake 0.0001 20 100 b 1 a 1 -timestep 1e-3 -velocity water create 300.0 12345 dist gaussian mom yes rot yes -fix 2 water nve -run 1000 +timestep 1e-3 +velocity water create 300.0 12345 dist gaussian mom yes rot yes +fix 2 water nve +run 1000 diff --git a/examples/PACKAGES/interlayer/aip_water_2dm/in.gr_water.opt b/examples/PACKAGES/interlayer/aip_water_2dm/in.gr_water.opt index 8494bfcb3e..0ec86ccd85 100644 --- a/examples/PACKAGES/interlayer/aip_water_2dm/in.gr_water.opt +++ b/examples/PACKAGES/interlayer/aip_water_2dm/in.gr_water.opt @@ -4,26 +4,26 @@ boundary p p p atom_style full processors * * 1 # domain decomposition over x and y read_data ./gra_water.data -mass 1 12.0107 # carbon mass (g/mole) +mass 1 12.0107 # carbon mass (g/mole) mass 2 15.9994 # oxygen mass (g/mole) -mass 3 1.008 # hydrogen mass (g/mole) +mass 3 1.008 # hydrogen mass (g/mole) # Separate atom groups -group gr molecule 1 -group water molecule 2 +group gr molecule 1 +group water molecule 2 ######################## Potential defition ############################## # Interlayer potential pair_style hybrid/overlay aip/water/2dm/opt 16.0 lj/cut/tip4p/long 2 3 1 1 0.1546 10 8.5 #################################################################### pair_coeff 1 1 none pair_coeff 2 2 lj/cut/tip4p/long 8.0313e-3 3.1589 # O-O -pair_coeff 2 3 lj/cut/tip4p/long 0.0 0.0 # O-H -pair_coeff 3 3 lj/cut/tip4p/long 0.0 0.0 # H-H -pair_coeff * * aip/water/2dm/opt COH.aip.water.2dm C Ow Hw # C-H2O +pair_coeff 2 3 lj/cut/tip4p/long 0.0 0.0 # O-H +pair_coeff 3 3 lj/cut/tip4p/long 0.0 0.0 # H-H +pair_coeff * * aip/water/2dm/opt COH.DMC.aip.water.2dm C Ow Hw # C-H2O # bond and angle -bond_style harmonic -bond_coeff 1 0.0 0.9572 -angle_style harmonic -angle_coeff 1 0.0 104.52 +bond_style harmonic +bond_coeff 1 0.0 0.9572 +angle_style harmonic +angle_coeff 1 0.0 104.52 # define kspace calculation kspace_style pppm/tip4p 1E-5 # Neighbor update settings @@ -31,21 +31,21 @@ neighbor 2.0 bin neigh_modify every 1 delay 5 check yes page 1000000 one 100000 #################################################################### # Calculate pair energy -compute 1 all pair lj/cut/tip4p/long -compute 2 all pair aip/water/2dm/opt -compute wt water temp -variable TIP4P equal c_1 -variable EILP equal c_2 # total interlayer energy -variable temp_wt equal c_wt +compute 1 all pair lj/cut/tip4p/long +compute 2 all pair aip/water/2dm/opt +compute wt water temp +variable TIP4P equal c_1 +variable EILP equal c_2 # total interlayer energy +variable temp_wt equal c_wt ############# Output ############## thermo_style custom step etotal pe ke v_TIP4P v_EILP v_temp_wt thermo 100 thermo_modify lost error -fix subf gr setforce 0.0 0.0 0.0 -fix 1 water shake 0.0001 20 100 b 1 a 1 +fix subf gr setforce 0.0 0.0 0.0 +fix 1 water shake 0.0001 20 100 b 1 a 1 -timestep 1e-3 -velocity water create 300.0 12345 dist gaussian mom yes rot yes -fix 2 water nve -run 1000 +timestep 1e-3 +velocity water create 300.0 12345 dist gaussian mom yes rot yes +fix 2 water nve +run 1000 diff --git a/examples/PACKAGES/pafi/Fe_mm.eam.fs b/examples/PACKAGES/pafi/Fe_mm.eam.fs new file mode 120000 index 0000000000..833ec1dfeb --- /dev/null +++ b/examples/PACKAGES/pafi/Fe_mm.eam.fs @@ -0,0 +1 @@ +../../../potentials/Fe_mm.eam.fs \ No newline at end of file diff --git a/examples/PACKAGES/ti/Cu_mishin1.eam.alloy b/examples/PACKAGES/ti/Cu_mishin1.eam.alloy new file mode 120000 index 0000000000..96df246acf --- /dev/null +++ b/examples/PACKAGES/ti/Cu_mishin1.eam.alloy @@ -0,0 +1 @@ +../../../potentials/Cu_mishin1.eam.alloy \ No newline at end of file diff --git a/examples/multi/data.powerlaw b/examples/multi/data.powerlaw index 2ce54cf4a6..22a4549395 100644 --- a/examples/multi/data.powerlaw +++ b/examples/multi/data.powerlaw @@ -5,7 +5,7 @@ LAMMPS data file via write_data, version 24 Dec 2020, timestep = 400000 9.95143358025075 331.8139610404791 xlo xhi 9.95143358025075 331.8139610404791 ylo yhi -0 1 zlo zhi +-0.5 0.5 zlo zhi 0 0 0 xy xz yz Atoms # sphere diff --git a/examples/template/in.mol-restart-mix b/examples/template/in.mol-restart-mix index f6fe584e0f..c24857d5d2 100644 --- a/examples/template/in.mol-restart-mix +++ b/examples/template/in.mol-restart-mix @@ -1,6 +1,12 @@ # demo for atom style template simulating a cyclohexane methane mixture # part 3: continuing from restart file +# run the first part and write out restart +include in.molecular-mix +write_restart molecular-mix.restart + +# now restart +clear molecule cychex cyclohexane.mol read_restart molecular-mix.restart @@ -9,3 +15,6 @@ thermo 100 fix 1 all nvt temp 300.0 300.0 1.0 # dump 1 all custom 100 custom template-mix.lammpstrj id xu yu zu run 2000 + +# clean up +shell rm molecular-mix.restart diff --git a/examples/template/in.tmpl-restart-mix b/examples/template/in.tmpl-restart-mix index cd9ea605a0..5f527ba362 100644 --- a/examples/template/in.tmpl-restart-mix +++ b/examples/template/in.tmpl-restart-mix @@ -1,6 +1,12 @@ # demo for atom style template simulating a cyclohexane methane mixture # part 3: continuing from restart file +# run the first part and write out restart +include in.template-mix +write_restart template-mix.restart + +# now restart +clear molecule cychex cyclohexane.mol read_restart template-mix.restart @@ -9,3 +15,6 @@ thermo 100 fix 1 all nvt temp 300.0 300.0 1.0 # dump 1 all custom 100 custom template-mix.lammpstrj id xu yu zu run 2000 + +# clean up +shell rm template-mix.restart diff --git a/examples/template/log.12Aug24.mol-restart-mix.g++.1 b/examples/template/log.12Aug24.mol-restart-mix.g++.1 new file mode 100644 index 0000000000..9e297dec0b --- /dev/null +++ b/examples/template/log.12Aug24.mol-restart-mix.g++.1 @@ -0,0 +1,302 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# demo for atom style template simulating a cyclohexane methane mixture +# part 3: continuing from restart file + +# run the first part and write out restart +include in.molecular-mix +# demo for atom style template simulating a cyclohexane methane mixture + +units real +boundary p p p +molecule cychex cyclohexane.mol +Read molecule template cychex: +LAMMPS molecule file. Cyclohexane(UA) + 1 molecules + 0 fragments + 6 atoms with max type 1 + 6 bonds with max type 1 + 6 angles with max type 1 + 6 dihedrals with max type 1 + 0 impropers with max type 0 +atom_style molecular + +pair_style lj/cut 12.0 +pair_modify mix geometric tail yes +bond_style harmonic +angle_style harmonic +dihedral_style harmonic + +lattice sc 6.0 +Lattice spacing in x,y,z = 6 6 6 +variable boxlen index 4.0 +region box block -${boxlen} ${boxlen} -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 ${boxlen} -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -4.0 ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -4.0 4.0 units lattice +create_box 2 box bond/types 1 angle/types 1 dihedral/types 1 extra/special/per/atom 6 extra/bond/per/atom 2 extra/angle/per/atom 2 extra/dihedral/per/atom 2 +Created orthogonal box = (-24 -24 -24) to (24 24 24) + 1 by 1 by 1 MPI processor grid + +create_atoms 0 box mol cychex 734594 +Created 3072 atoms + using lattice units in orthogonal box = (-24 -24 -24) to (24 24 24) + create_atoms CPU = 0.004 seconds +create_atoms 2 random 800 495437 box +Created 800 atoms + using lattice units in orthogonal box = (-24 -24 -24) to (24 24 24) + create_atoms CPU = 0.000 seconds + +mass 1 14.027 +mass 2 16.043 + +pair_coeff 1 1 0.1180 3.905 +pair_coeff 2 2 0.2940 3.730 + +bond_coeff 1 260.00 1.5260 +angle_coeff 1 63.0 112.40 +dihedral_coeff 1 2.0 1 3 + +thermo 100 +minimize 0.001 0.001 500 1000 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 7 7 7 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 12.28 | 12.28 | 12.28 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 0 4.3897851e+13 341.92144 4.3897851e+13 1.0886888e+14 + 100 0 -4351.8383 516.49891 -3835.3394 11635.037 + 190 0 -6191.8196 457.61266 -5734.2069 4365.4279 +Loop time of 2.5667 on 1 procs for 190 steps with 3872 atoms + +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = energy tolerance + Energy initial, next-to-last, final = + 43897850768892.8 -5729.17409504969 -5734.20694761353 + Force two-norm initial, final = 1.1080994e+15 72.745546 + Force max component initial, final = 4.6607099e+14 17.390179 + Final line search alpha, max atom move = 0.0041638487 0.072410076 + Iterations, force evaluations = 190 297 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 2.2379 | 2.2379 | 2.2379 | 0.0 | 87.19 +Bond | 0.070658 | 0.070658 | 0.070658 | 0.0 | 2.75 +Neigh | 0.21093 | 0.21093 | 0.21093 | 0.0 | 8.22 +Comm | 0.012111 | 0.012111 | 0.012111 | 0.0 | 0.47 +Output | 3.0458e-05 | 3.0458e-05 | 3.0458e-05 | 0.0 | 0.00 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.03504 | | | 1.37 + +Nlocal: 3872 ave 3872 max 3872 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 12122 ave 12122 max 12122 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 774375 ave 774375 max 774375 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 774375 +Ave neighs/atom = 199.99354 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 14 +Dangerous builds = 0 +reset_timestep 0 + +velocity all create 100.0 6234235 +fix 1 all nvt temp 100.0 300.0 1.0 +# dump 1 all custom 100 cychex-methane.lammpstrj id xu yu zu +run 2500 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +Per MPI rank memory allocation (min/avg/max) = 11.16 | 11.16 | 11.16 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 100 -6191.8196 457.61266 -4580.3354 4842.371 + 100 106.81292 -5670.2785 921.2043 -3516.5903 5959.4321 + 200 119.24063 -5701.0127 1040.0231 -3285.1059 6755.2619 + 300 127.28216 -5706.3887 1026.2838 -3211.4322 6076.6123 + 400 133.79038 -5734.0279 1113.6088 -3076.65 6583.9393 + 500 138.77685 -5756.2532 1192.1349 -2962.8117 6436.3524 + 600 149.39857 -5730.563 1206.6372 -2800.0582 6357.5889 + 700 155.5825 -5671.0161 929.50406 -2946.2899 7697.5164 + 800 161.24677 -5628.3833 1186.5533 -2581.2493 5840.6503 + 900 172.81747 -5638.6453 1148.683 -2495.8707 8169.3352 + 1000 182.2048 -5579.5767 909.90783 -2567.2594 6270.7354 + 1100 188.95766 -5548.999 1183.6644 -2185.0058 7711.9244 + 1200 195.22147 -5511.6798 1111.3361 -2147.7386 7656.4439 + 1300 205.15867 -5431.6966 1195.8143 -1868.6148 7021.8716 + 1400 211.44641 -5410.5687 1299.0501 -1671.6986 8903.0061 + 1500 223.70124 -5359.4567 1388.4189 -1389.8128 6919.2408 + 1600 231.75318 -5288.3343 1348.829 -1265.3712 9409.2728 + 1700 229.61746 -5259.4318 1194.5663 -1415.375 7387.4923 + 1800 245.62483 -5281.0755 1389.3362 -1057.5441 9421.7241 + 1900 250.69445 -5158.7006 1236.5167 -1029.4919 8649.4835 + 2000 259.50657 -5148.4153 1485.1392 -668.90355 9130.4701 + 2100 270.77108 -5092.6634 1418.7937 -549.51913 9666.5632 + 2200 272.30152 -5079.7585 1514.5708 -423.17779 8568.2546 + 2300 285.20945 -5085.6197 1492.5671 -302.10191 10281.574 + 2400 286.95799 -4979.8608 1544.6159 -124.11819 8797.7435 + 2500 296.10218 -4928.5152 1698.282 186.40572 10946.864 +Loop time of 17.2353 on 1 procs for 2500 steps with 3872 atoms + +Performance: 12.532 ns/day, 1.915 hours/ns, 145.052 timesteps/s, 561.639 katom-step/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 15.936 | 15.936 | 15.936 | 0.0 | 92.46 +Bond | 0.5636 | 0.5636 | 0.5636 | 0.0 | 3.27 +Neigh | 0.51213 | 0.51213 | 0.51213 | 0.0 | 2.97 +Comm | 0.098127 | 0.098127 | 0.098127 | 0.0 | 0.57 +Output | 0.00072478 | 0.00072478 | 0.00072478 | 0.0 | 0.00 +Modify | 0.10177 | 0.10177 | 0.10177 | 0.0 | 0.59 +Other | | 0.02248 | | | 0.13 + +Nlocal: 3872 ave 3872 max 3872 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 11821 ave 11821 max 11821 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 770416 ave 770416 max 770416 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 770416 +Ave neighs/atom = 198.97107 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 34 +Dangerous builds = 0 +#write_data molecular-mix.data +#write_restart molecular-mix.restart +write_restart molecular-mix.restart +System init for write_restart ... +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule + +# now restart +clear +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +molecule cychex cyclohexane.mol +Read molecule template cychex: +LAMMPS molecule file. Cyclohexane(UA) + 1 molecules + 0 fragments + 6 atoms with max type 1 + 6 bonds with max type 1 + 6 angles with max type 1 + 6 dihedrals with max type 1 + 0 impropers with max type 0 +read_restart molecular-mix.restart +Reading restart file ... + restart file = 27 Jun 2024, LAMMPS = 27 Jun 2024 + restoring atom style molecular from restart + orthogonal box = (-24 -24 -24) to (24 24 24) + 1 by 1 by 1 MPI processor grid + restoring pair style lj/cut from restart + restoring bond style harmonic from restart + restoring angle style harmonic from restart + restoring dihedral style harmonic from restart + 3872 atoms + 3072 bonds + 3072 angles + 3072 dihedrals +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0 + special bond factors coul: 0 0 0 + 2 = max # of 1-2 neighbors + 2 = max # of 1-3 neighbors + 4 = max # of 1-4 neighbors + 7 = max # of special neighbors + special bonds CPU = 0.001 seconds + read_restart CPU = 0.003 seconds + +thermo 100 + +fix 1 all nvt temp 300.0 300.0 1.0 +Resetting global fix info from restart file: + fix style: nvt, fix ID: 1 +# dump 1 all custom 100 custom template-mix.lammpstrj id xu yu zu +run 2000 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +All restart file global fix info was re-assigned +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 7 7 7 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 11.12 | 11.12 | 11.12 Mbytes + Step Temp E_pair E_mol TotEng Press + 2500 296.10218 -4928.5152 1698.282 186.40572 10946.864 + 2600 302.98473 -4910.6997 1585.9276 171.28257 9066.357 + 2700 300.75989 -4935.1005 1723.6514 258.9337 10755.67 + 2800 294.26086 -4904.3072 1594.9394 86.02469 9420.9997 + 2900 296.15059 -4961.5041 1594.1004 49.793724 10129.823 + 3000 296.65334 -4934.6622 1596.9704 85.306731 10112.636 + 3100 301.62361 -4975.5261 1671.8512 176.67422 9500.7576 + 3200 297.34385 -5017.986 1603.4388 16.419054 10451.2 + 3300 297.01108 -4882.1137 1651.6426 196.65525 9124.096 + 3400 298.13642 -4983.4532 1742.3589 199.01715 10808.599 + 3500 315.91146 -4952.209 1651.2231 344.22669 8677.2632 + 3600 295.12433 -4950.6158 1721.3273 176.06725 10904.222 + 3700 300.65909 -4967.4001 1770.4243 272.244 9230.4292 + 3800 302.15034 -4991.9549 1644.8366 139.30847 10154.524 + 3900 302.16277 -5017.0117 1672.2353 141.79397 9705.6697 + 4000 303.1458 -4946.2517 1679.8498 231.51137 9527.8793 + 4100 303.54737 -5003.8276 1639.7221 138.44129 10406.442 + 4200 291.62491 -5009.3438 1707.6 63.233087 8645.4116 + 4300 306.17115 -5084.7139 1727.9528 176.0607 10563.216 + 4400 302.65581 -5004.4302 1747.5309 235.36003 8717.1253 + 4500 296.42334 -5014.9791 1723.2084 128.57389 10492.246 +Loop time of 13.288 on 1 procs for 2000 steps with 3872 atoms + +Performance: 13.004 ns/day, 1.846 hours/ns, 150.512 timesteps/s, 582.781 katom-step/s +99.7% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 12.191 | 12.191 | 12.191 | 0.0 | 91.74 +Bond | 0.4224 | 0.4224 | 0.4224 | 0.0 | 3.18 +Neigh | 0.50894 | 0.50894 | 0.50894 | 0.0 | 3.83 +Comm | 0.07309 | 0.07309 | 0.07309 | 0.0 | 0.55 +Output | 0.00057158 | 0.00057158 | 0.00057158 | 0.0 | 0.00 +Modify | 0.077778 | 0.077778 | 0.077778 | 0.0 | 0.59 +Other | | 0.01451 | | | 0.11 + +Nlocal: 3872 ave 3872 max 3872 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 11685 ave 11685 max 11685 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 770346 ave 770346 max 770346 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 770346 +Ave neighs/atom = 198.953 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 34 +Dangerous builds = 0 + +# clean up +shell rm molecular-mix.restart +Total wall time: 0:00:33 diff --git a/examples/template/log.12Aug24.mol-restart-mix.g++.4 b/examples/template/log.12Aug24.mol-restart-mix.g++.4 new file mode 100644 index 0000000000..a0157eaaa6 --- /dev/null +++ b/examples/template/log.12Aug24.mol-restart-mix.g++.4 @@ -0,0 +1,303 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# demo for atom style template simulating a cyclohexane methane mixture +# part 3: continuing from restart file + +# run the first part and write out restart +include in.molecular-mix +# demo for atom style template simulating a cyclohexane methane mixture + +units real +boundary p p p +molecule cychex cyclohexane.mol +Read molecule template cychex: +LAMMPS molecule file. Cyclohexane(UA) + 1 molecules + 0 fragments + 6 atoms with max type 1 + 6 bonds with max type 1 + 6 angles with max type 1 + 6 dihedrals with max type 1 + 0 impropers with max type 0 +atom_style molecular + +pair_style lj/cut 12.0 +pair_modify mix geometric tail yes +bond_style harmonic +angle_style harmonic +dihedral_style harmonic + +lattice sc 6.0 +Lattice spacing in x,y,z = 6 6 6 +variable boxlen index 4.0 +region box block -${boxlen} ${boxlen} -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 ${boxlen} -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -4.0 ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -4.0 4.0 units lattice +create_box 2 box bond/types 1 angle/types 1 dihedral/types 1 extra/special/per/atom 6 extra/bond/per/atom 2 extra/angle/per/atom 2 extra/dihedral/per/atom 2 +Created orthogonal box = (-24 -24 -24) to (24 24 24) + 1 by 2 by 2 MPI processor grid + +create_atoms 0 box mol cychex 734594 +Created 3072 atoms + using lattice units in orthogonal box = (-24 -24 -24) to (24 24 24) + create_atoms CPU = 0.002 seconds +create_atoms 2 random 800 495437 box +Created 800 atoms + using lattice units in orthogonal box = (-24 -24 -24) to (24 24 24) + create_atoms CPU = 0.000 seconds + +mass 1 14.027 +mass 2 16.043 + +pair_coeff 1 1 0.1180 3.905 +pair_coeff 2 2 0.2940 3.730 + +bond_coeff 1 260.00 1.5260 +angle_coeff 1 63.0 112.40 +dihedral_coeff 1 2.0 1 3 + +thermo 100 +minimize 0.001 0.001 500 1000 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 7 7 7 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 9.623 | 9.719 | 10.01 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 0 7.5430044e+16 341.92144 7.5430044e+16 1.8707026e+17 + 100 0 -3410.6986 572.28283 -2838.4158 14603.831 + 200 0 -6109.2306 483.67771 -5625.5529 5069.1821 + 204 0 -6137.0238 483.1464 -5653.8774 4952.4083 +Loop time of 0.719327 on 4 procs for 204 steps with 3872 atoms + +99.5% CPU use with 4 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = energy tolerance + Energy initial, next-to-last, final = + 7.54300441078755e+16 -5648.75822666276 -5653.87742467986 + Force two-norm initial, final = 8.7430661e+18 74.636836 + Force max component initial, final = 4.1468626e+18 8.680078 + Final line search alpha, max atom move = 0.0032186724 0.027938327 + Iterations, force evaluations = 204 328 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.60273 | 0.60882 | 0.61181 | 0.5 | 84.64 +Bond | 0.018965 | 0.019154 | 0.019363 | 0.1 | 2.66 +Neigh | 0.054004 | 0.054008 | 0.054012 | 0.0 | 7.51 +Comm | 0.022945 | 0.026108 | 0.032071 | 2.2 | 3.63 +Output | 3.4085e-05 | 3.6968e-05 | 4.5055e-05 | 0.0 | 0.01 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.0112 | | | 1.56 + +Nlocal: 968 ave 980 max 954 min +Histogram: 1 0 1 0 0 0 0 0 1 1 +Nghost: 6630 ave 6644 max 6616 min +Histogram: 1 0 1 0 0 0 0 1 0 1 +Neighs: 193550 ave 195957 max 191376 min +Histogram: 2 0 0 0 0 0 0 0 1 1 + +Total # of neighbors = 774200 +Ave neighs/atom = 199.94835 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 14 +Dangerous builds = 0 +reset_timestep 0 + +velocity all create 100.0 6234235 +fix 1 all nvt temp 100.0 300.0 1.0 +# dump 1 all custom 100 cychex-methane.lammpstrj id xu yu zu +run 2500 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +Per MPI rank memory allocation (min/avg/max) = 8.498 | 8.785 | 8.881 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 100 -6137.0238 483.1464 -4500.0059 5429.3515 + 100 107.18608 -5623.5468 925.13787 -3461.6193 5640.5922 + 200 119.37771 -5671.054 1050.9081 -3242.6804 7494.8576 + 300 127.21216 -5646.3171 1053.2825 -3125.1696 5661.5841 + 400 133.87894 -5674.4359 1139.3079 -2990.337 7202.7 + 500 138.76354 -5679.3297 1234.4508 -2843.7258 6745.1519 + 600 150.51628 -5665.2143 1210.3078 -2718.142 6301.1312 + 700 152.13291 -5680.6166 979.71444 -2945.4837 8424.0062 + 800 161.60449 -5579.521 1209.1388 -2505.674 5226.3319 + 900 177.80597 -5626.7406 1125.8767 -2449.2113 9035.9218 + 1000 181.98782 -5509.1736 924.24027 -2485.0276 5775.8317 + 1100 189.93412 -5534.8176 1169.5911 -2173.6307 8072.3434 + 1200 194.04459 -5508.0919 1169.0571 -2100.0095 7766.2625 + 1300 203.40621 -5400.0439 1229.5897 -1823.4077 6533.8169 + 1400 211.36099 -5362.2808 1318.5794 -1604.867 9789.8496 + 1500 221.24251 -5263.1861 1410.6972 -1299.6344 6407.5052 + 1600 234.83277 -5316.3854 1299.4287 -1307.2882 10199.28 + 1700 233.61193 -5187.0022 1246.0158 -1245.4048 7482.5096 + 1800 247.00713 -5193.2051 1451.1363 -891.92372 9836.6864 + 1900 250.10386 -5165.7314 1259.876 -1019.978 8648.7513 + 2000 257.7022 -5083.7142 1486.9813 -623.18058 9076.3674 + 2100 273.9293 -5061.7945 1463.3978 -437.60445 10039.49 + 2200 276.40166 -4948.9281 1538.5962 -221.01165 9013.3961 + 2300 287.28669 -5039.6841 1535.7768 -188.98782 10739.853 + 2400 290.35344 -4947.2095 1615.8983 18.994602 8326.4501 + 2500 305.29351 -4925.5822 1669.8823 266.99522 11465.135 +Loop time of 4.32954 on 4 procs for 2500 steps with 3872 atoms + +Performance: 49.890 ns/day, 0.481 hours/ns, 577.429 timesteps/s, 2.236 Matom-step/s +99.5% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 3.8113 | 3.8529 | 3.8893 | 1.7 | 88.99 +Bond | 0.13153 | 0.13433 | 0.13718 | 0.7 | 3.10 +Neigh | 0.13036 | 0.13039 | 0.13042 | 0.0 | 3.01 +Comm | 0.13688 | 0.1751 | 0.21857 | 8.4 | 4.04 +Output | 0.00032606 | 0.00035873 | 0.00045009 | 0.0 | 0.01 +Modify | 0.027754 | 0.028116 | 0.028735 | 0.2 | 0.65 +Other | | 0.008382 | | | 0.19 + +Nlocal: 968 ave 986 max 944 min +Histogram: 1 0 0 1 0 0 0 0 0 2 +Nghost: 6379.75 ave 6407 max 6352 min +Histogram: 1 0 1 0 0 0 0 1 0 1 +Neighs: 192584 ave 196718 max 188693 min +Histogram: 1 1 0 0 0 0 0 1 0 1 + +Total # of neighbors = 770338 +Ave neighs/atom = 198.95093 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 34 +Dangerous builds = 0 +#write_data molecular-mix.data +#write_restart molecular-mix.restart +write_restart molecular-mix.restart +System init for write_restart ... +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule + +# now restart +clear +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +molecule cychex cyclohexane.mol +Read molecule template cychex: +LAMMPS molecule file. Cyclohexane(UA) + 1 molecules + 0 fragments + 6 atoms with max type 1 + 6 bonds with max type 1 + 6 angles with max type 1 + 6 dihedrals with max type 1 + 0 impropers with max type 0 +read_restart molecular-mix.restart +Reading restart file ... + restart file = 27 Jun 2024, LAMMPS = 27 Jun 2024 + restoring atom style molecular from restart + orthogonal box = (-24 -24 -24) to (24 24 24) + 1 by 2 by 2 MPI processor grid + restoring pair style lj/cut from restart + restoring bond style harmonic from restart + restoring angle style harmonic from restart + restoring dihedral style harmonic from restart + 3872 atoms + 3072 bonds + 3072 angles + 3072 dihedrals +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0 + special bond factors coul: 0 0 0 + 2 = max # of 1-2 neighbors + 2 = max # of 1-3 neighbors + 4 = max # of 1-4 neighbors + 7 = max # of special neighbors + special bonds CPU = 0.000 seconds + read_restart CPU = 0.004 seconds + +thermo 100 + +fix 1 all nvt temp 300.0 300.0 1.0 +Resetting global fix info from restart file: + fix style: nvt, fix ID: 1 +# dump 1 all custom 100 custom template-mix.lammpstrj id xu yu zu +run 2000 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +All restart file global fix info was re-assigned +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 7 7 7 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 8.475 | 8.571 | 8.857 Mbytes + Step Temp E_pair E_mol TotEng Press + 2500 305.29351 -4925.5822 1669.8823 266.99522 11465.135 + 2600 296.63161 -4937.8377 1616.2295 101.13964 8654.8533 + 2700 303.79396 -4951.8442 1732.7298 286.27771 11140.127 + 2800 297.39677 -4879.1242 1642.1355 194.58806 8993.2494 + 2900 299.13542 -4888.1435 1660.1105 223.60558 10716.3 + 3000 298.07888 -4928.2353 1650.6616 161.87369 10088.459 + 3100 304.09536 -4901.4853 1614.3116 221.69625 9505.2057 + 3200 301.51357 -4930.5129 1628.4386 177.00496 11411.933 + 3300 297.45744 -4923.6217 1700.537 209.19205 8189.571 + 3400 298.52831 -5012.7313 1736.6929 168.59495 11673.119 + 3500 295.66767 -4947.4296 1700.0072 164.20283 8222.3067 + 3600 296.7267 -5112.3707 1727.4319 38.906285 10608.481 + 3700 302.92855 -4994.4012 1789.7274 290.73255 8829.4479 + 3800 296.77191 -5034.2589 1657.2635 47.371248 9968.3521 + 3900 299.86962 -4972.7385 1744.2808 231.65266 10076.37 + 4000 304.89527 -5011.2464 1664.6779 171.53137 8926.0386 + 4100 296.81738 -5013.2169 1727.5801 139.25455 10898.733 + 4200 300.67532 -4988.3547 1782.1574 263.20975 8164.1158 + 4300 297.74901 -5023.3433 1784.7361 197.03396 11344.862 + 4400 302.0571 -5033.3547 1723.2662 175.26243 8016.975 + 4500 305.31958 -5062.5597 1767.0048 227.44095 10827.294 +Loop time of 3.58588 on 4 procs for 2000 steps with 3872 atoms + +Performance: 48.189 ns/day, 0.498 hours/ns, 557.743 timesteps/s, 2.160 Matom-step/s +99.4% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 3.0873 | 3.1383 | 3.2136 | 2.7 | 87.52 +Bond | 0.10381 | 0.10769 | 0.11168 | 0.9 | 3.00 +Neigh | 0.13651 | 0.13652 | 0.13654 | 0.0 | 3.81 +Comm | 0.094882 | 0.1741 | 0.22894 | 12.3 | 4.86 +Output | 0.00024683 | 0.00028387 | 0.00038642 | 0.0 | 0.01 +Modify | 0.021974 | 0.022331 | 0.022623 | 0.2 | 0.62 +Other | | 0.006685 | | | 0.19 + +Nlocal: 968 ave 984 max 948 min +Histogram: 1 0 0 1 0 0 0 0 1 1 +Nghost: 6349.5 ave 6370 max 6330 min +Histogram: 1 0 1 0 0 0 0 1 0 1 +Neighs: 192457 ave 196654 max 187154 min +Histogram: 1 0 0 0 1 0 0 0 1 1 + +Total # of neighbors = 769828 +Ave neighs/atom = 198.81921 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 35 +Dangerous builds = 0 + +# clean up +shell rm molecular-mix.restart +Total wall time: 0:00:08 diff --git a/examples/template/log.12Aug24.tmpl-restart-mix.g++.1 b/examples/template/log.12Aug24.tmpl-restart-mix.g++.1 new file mode 100644 index 0000000000..04c316c02c --- /dev/null +++ b/examples/template/log.12Aug24.tmpl-restart-mix.g++.1 @@ -0,0 +1,295 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# demo for atom style template simulating a cyclohexane methane mixture +# part 3: continuing from restart file + +# run the first part and write out restart +include in.template-mix +# demo for atom style template simulating a cyclohexane methane mixture +# part 1: creating system with create_atoms + +units real +boundary p p p +molecule cychex cyclohexane.mol +Read molecule template cychex: +LAMMPS molecule file. Cyclohexane(UA) + 1 molecules + 0 fragments + 6 atoms with max type 1 + 6 bonds with max type 1 + 6 angles with max type 1 + 6 dihedrals with max type 1 + 0 impropers with max type 0 +atom_style template cychex + +pair_style lj/cut 12.0 +pair_modify mix geometric tail yes +bond_style harmonic +angle_style harmonic +dihedral_style harmonic + +lattice sc 6.0 +Lattice spacing in x,y,z = 6 6 6 +variable boxlen index 4.0 +region box block -${boxlen} ${boxlen} -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 ${boxlen} -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -4.0 ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -4.0 4.0 units lattice +create_box 2 box bond/types 1 angle/types 1 dihedral/types 1 +Created orthogonal box = (-24 -24 -24) to (24 24 24) + 1 by 1 by 1 MPI processor grid + +create_atoms 0 box mol cychex 734594 +Created 3072 atoms + using lattice units in orthogonal box = (-24 -24 -24) to (24 24 24) + create_atoms CPU = 0.000 seconds +create_atoms 2 random 800 495437 box +Created 800 atoms + using lattice units in orthogonal box = (-24 -24 -24) to (24 24 24) + create_atoms CPU = 0.000 seconds + +mass 1 14.027 +mass 2 16.043 + +pair_coeff 1 1 0.1180 3.905 +pair_coeff 2 2 0.2940 3.730 + +bond_coeff 1 260.00 1.5260 +angle_coeff 1 63.0 112.40 +dihedral_coeff 1 2.0 1 3 + +thermo 100 +minimize 0.001 0.001 500 1000 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 7 7 7 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 8.05 | 8.05 | 8.05 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 0 4.3897851e+13 341.92144 4.3897851e+13 1.0886888e+14 + 100 0 -4351.8383 516.49891 -3835.3394 11635.037 + 190 0 -6191.8196 457.61266 -5734.2069 4365.4279 +Loop time of 2.46574 on 1 procs for 190 steps with 3872 atoms + +99.7% CPU use with 1 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = energy tolerance + Energy initial, next-to-last, final = + 43897850768892.8 -5729.17409504969 -5734.20694761353 + Force two-norm initial, final = 1.1080994e+15 72.745546 + Force max component initial, final = 4.6607099e+14 17.390179 + Final line search alpha, max atom move = 0.0041638487 0.072410076 + Iterations, force evaluations = 190 297 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 2.1376 | 2.1376 | 2.1376 | 0.0 | 86.69 +Bond | 0.068456 | 0.068456 | 0.068456 | 0.0 | 2.78 +Neigh | 0.21212 | 0.21212 | 0.21212 | 0.0 | 8.60 +Comm | 0.012436 | 0.012436 | 0.012436 | 0.0 | 0.50 +Output | 2.9907e-05 | 2.9907e-05 | 2.9907e-05 | 0.0 | 0.00 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.03511 | | | 1.42 + +Nlocal: 3872 ave 3872 max 3872 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 12122 ave 12122 max 12122 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 774375 ave 774375 max 774375 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 774375 +Ave neighs/atom = 199.99354 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 14 +Dangerous builds = 0 +reset_timestep 0 + +velocity all create 100.0 6234235 +fix 1 all nvt temp 100.0 300.0 1.0 +# dump 1 all custom 100 cychex-methane.lammpstrj id xu yu zu +run 2500 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +Per MPI rank memory allocation (min/avg/max) = 6.925 | 6.925 | 6.925 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 100 -6191.8196 457.61266 -4580.3354 4842.371 + 100 106.81292 -5670.2785 921.2043 -3516.5903 5959.4321 + 200 119.24063 -5701.0127 1040.0231 -3285.1059 6755.2619 + 300 127.28216 -5706.3887 1026.2838 -3211.4322 6076.6123 + 400 133.79038 -5734.0279 1113.6088 -3076.65 6583.9393 + 500 138.77685 -5756.2532 1192.1349 -2962.8117 6436.3524 + 600 149.39857 -5730.563 1206.6372 -2800.0582 6357.5889 + 700 155.5825 -5671.0161 929.50406 -2946.2899 7697.5164 + 800 161.24677 -5628.3833 1186.5533 -2581.2493 5840.6503 + 900 172.81747 -5638.6453 1148.683 -2495.8707 8169.3352 + 1000 182.2048 -5579.5767 909.90783 -2567.2594 6270.7354 + 1100 188.95766 -5548.999 1183.6644 -2185.0058 7711.9244 + 1200 195.22147 -5511.6798 1111.3361 -2147.7386 7656.4439 + 1300 205.15867 -5431.6966 1195.8143 -1868.6148 7021.8716 + 1400 211.44641 -5410.5687 1299.0501 -1671.6986 8903.0061 + 1500 223.70124 -5359.4567 1388.4189 -1389.8128 6919.2408 + 1600 231.75318 -5288.3343 1348.829 -1265.3712 9409.2728 + 1700 229.61746 -5259.4318 1194.5663 -1415.375 7387.4923 + 1800 245.62483 -5281.0755 1389.3362 -1057.5441 9421.7241 + 1900 250.69445 -5158.7006 1236.5167 -1029.4919 8649.4835 + 2000 259.50657 -5148.4153 1485.1392 -668.90355 9130.4701 + 2100 270.77108 -5092.6634 1418.7937 -549.51913 9666.5632 + 2200 272.30152 -5079.7585 1514.5708 -423.17779 8568.2546 + 2300 285.20945 -5085.6197 1492.5671 -302.10191 10281.574 + 2400 286.95799 -4979.8608 1544.6159 -124.11819 8797.7435 + 2500 296.10218 -4928.5152 1698.282 186.40572 10946.864 +Loop time of 16.1773 on 1 procs for 2500 steps with 3872 atoms + +Performance: 13.352 ns/day, 1.797 hours/ns, 154.537 timesteps/s, 598.368 katom-step/s +99.7% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 14.927 | 14.927 | 14.927 | 0.0 | 92.27 +Bond | 0.52161 | 0.52161 | 0.52161 | 0.0 | 3.22 +Neigh | 0.52299 | 0.52299 | 0.52299 | 0.0 | 3.23 +Comm | 0.090871 | 0.090871 | 0.090871 | 0.0 | 0.56 +Output | 0.00059782 | 0.00059782 | 0.00059782 | 0.0 | 0.00 +Modify | 0.096104 | 0.096104 | 0.096104 | 0.0 | 0.59 +Other | | 0.01791 | | | 0.11 + +Nlocal: 3872 ave 3872 max 3872 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 11821 ave 11821 max 11821 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 770416 ave 770416 max 770416 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 770416 +Ave neighs/atom = 198.97107 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 34 +Dangerous builds = 0 +#write_data template-mix.data +#write_restart template-mix.restart +write_restart template-mix.restart +System init for write_restart ... +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule + +# now restart +clear +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +molecule cychex cyclohexane.mol +Read molecule template cychex: +LAMMPS molecule file. Cyclohexane(UA) + 1 molecules + 0 fragments + 6 atoms with max type 1 + 6 bonds with max type 1 + 6 angles with max type 1 + 6 dihedrals with max type 1 + 0 impropers with max type 0 +read_restart template-mix.restart +Reading restart file ... + restart file = 27 Jun 2024, LAMMPS = 27 Jun 2024 + restoring atom style template from restart + orthogonal box = (-24 -24 -24) to (24 24 24) + 1 by 1 by 1 MPI processor grid + restoring pair style lj/cut from restart + restoring bond style harmonic from restart + restoring angle style harmonic from restart + restoring dihedral style harmonic from restart + 3872 atoms + 3072 template bonds + 3072 template angles + 3072 template dihedrals + read_restart CPU = 0.001 seconds + +thermo 100 + +fix 1 all nvt temp 300.0 300.0 1.0 +Resetting global fix info from restart file: + fix style: nvt, fix ID: 1 +# dump 1 all custom 100 custom template-mix.lammpstrj id xu yu zu +run 2000 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +All restart file global fix info was re-assigned +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 7 7 7 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 6.88 | 6.88 | 6.88 Mbytes + Step Temp E_pair E_mol TotEng Press + 2500 296.10218 -4928.5152 1698.282 186.40572 10946.864 + 2600 302.98473 -4910.6997 1585.9276 171.28257 9066.357 + 2700 300.75989 -4935.1005 1723.6514 258.9337 10755.67 + 2800 294.26086 -4904.3072 1594.9394 86.02469 9420.9997 + 2900 296.15059 -4961.5041 1594.1004 49.793724 10129.823 + 3000 296.65334 -4934.6622 1596.9704 85.306731 10112.636 + 3100 301.62361 -4975.5261 1671.8512 176.67422 9500.7576 + 3200 297.34385 -5017.986 1603.4388 16.419054 10451.2 + 3300 297.01108 -4882.1137 1651.6426 196.65525 9124.096 + 3400 298.13642 -4983.4532 1742.3589 199.01715 10808.599 + 3500 315.91146 -4952.209 1651.2231 344.22669 8677.2632 + 3600 295.12433 -4950.6158 1721.3273 176.06725 10904.222 + 3700 300.65909 -4967.4001 1770.4243 272.244 9230.4292 + 3800 302.15034 -4991.9549 1644.8366 139.30847 10154.524 + 3900 302.16277 -5017.0117 1672.2353 141.79397 9705.6697 + 4000 303.1458 -4946.2517 1679.8498 231.51137 9527.8793 + 4100 303.54737 -5003.8276 1639.7221 138.44129 10406.442 + 4200 291.62491 -5009.3438 1707.6 63.233087 8645.4116 + 4300 306.17115 -5084.7139 1727.9528 176.0607 10563.216 + 4400 302.65581 -5004.4302 1747.5309 235.36003 8717.1253 + 4500 296.42334 -5014.9791 1723.2084 128.57389 10492.246 +Loop time of 13.2399 on 1 procs for 2000 steps with 3872 atoms + +Performance: 13.051 ns/day, 1.839 hours/ns, 151.058 timesteps/s, 584.898 katom-step/s +99.7% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 12.13 | 12.13 | 12.13 | 0.0 | 91.61 +Bond | 0.42044 | 0.42044 | 0.42044 | 0.0 | 3.18 +Neigh | 0.52469 | 0.52469 | 0.52469 | 0.0 | 3.96 +Comm | 0.072857 | 0.072857 | 0.072857 | 0.0 | 0.55 +Output | 0.00053188 | 0.00053188 | 0.00053188 | 0.0 | 0.00 +Modify | 0.076918 | 0.076918 | 0.076918 | 0.0 | 0.58 +Other | | 0.0148 | | | 0.11 + +Nlocal: 3872 ave 3872 max 3872 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 11685 ave 11685 max 11685 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 770346 ave 770346 max 770346 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 770346 +Ave neighs/atom = 198.953 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 34 +Dangerous builds = 0 + +# clean up +shell rm template-mix.restart +Total wall time: 0:00:31 diff --git a/examples/template/log.12Aug24.tmpl-restart-mix.g++.4 b/examples/template/log.12Aug24.tmpl-restart-mix.g++.4 new file mode 100644 index 0000000000..7e4302c722 --- /dev/null +++ b/examples/template/log.12Aug24.tmpl-restart-mix.g++.4 @@ -0,0 +1,296 @@ +LAMMPS (27 Jun 2024) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +# demo for atom style template simulating a cyclohexane methane mixture +# part 3: continuing from restart file + +# run the first part and write out restart +include in.template-mix +# demo for atom style template simulating a cyclohexane methane mixture +# part 1: creating system with create_atoms + +units real +boundary p p p +molecule cychex cyclohexane.mol +Read molecule template cychex: +LAMMPS molecule file. Cyclohexane(UA) + 1 molecules + 0 fragments + 6 atoms with max type 1 + 6 bonds with max type 1 + 6 angles with max type 1 + 6 dihedrals with max type 1 + 0 impropers with max type 0 +atom_style template cychex + +pair_style lj/cut 12.0 +pair_modify mix geometric tail yes +bond_style harmonic +angle_style harmonic +dihedral_style harmonic + +lattice sc 6.0 +Lattice spacing in x,y,z = 6 6 6 +variable boxlen index 4.0 +region box block -${boxlen} ${boxlen} -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 ${boxlen} -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -${boxlen} ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 ${boxlen} -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -${boxlen} ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -4.0 ${boxlen} units lattice +region box block -4.0 4.0 -4.0 4.0 -4.0 4.0 units lattice +create_box 2 box bond/types 1 angle/types 1 dihedral/types 1 +Created orthogonal box = (-24 -24 -24) to (24 24 24) + 1 by 2 by 2 MPI processor grid + +create_atoms 0 box mol cychex 734594 +Created 3072 atoms + using lattice units in orthogonal box = (-24 -24 -24) to (24 24 24) + create_atoms CPU = 0.001 seconds +create_atoms 2 random 800 495437 box +Created 800 atoms + using lattice units in orthogonal box = (-24 -24 -24) to (24 24 24) + create_atoms CPU = 0.000 seconds + +mass 1 14.027 +mass 2 16.043 + +pair_coeff 1 1 0.1180 3.905 +pair_coeff 2 2 0.2940 3.730 + +bond_coeff 1 260.00 1.5260 +angle_coeff 1 63.0 112.40 +dihedral_coeff 1 2.0 1 3 + +thermo 100 +minimize 0.001 0.001 500 1000 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 7 7 7 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.345 | 5.441 | 5.728 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 0 7.5430044e+16 341.92144 7.5430044e+16 1.8707026e+17 + 100 0 -3410.6986 572.28283 -2838.4158 14603.831 + 200 0 -6109.2306 483.67771 -5625.5529 5069.1821 + 204 0 -6137.0238 483.1464 -5653.8774 4952.4083 +Loop time of 0.719475 on 4 procs for 204 steps with 3872 atoms + +99.6% CPU use with 4 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = energy tolerance + Energy initial, next-to-last, final = + 7.54300441078755e+16 -5648.75822666276 -5653.87742467986 + Force two-norm initial, final = 8.7430661e+18 74.636836 + Force max component initial, final = 4.1468626e+18 8.680078 + Final line search alpha, max atom move = 0.0032186724 0.027938327 + Iterations, force evaluations = 204 328 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.59281 | 0.6027 | 0.60956 | 0.8 | 83.77 +Bond | 0.018776 | 0.020785 | 0.026388 | 2.2 | 2.89 +Neigh | 0.054209 | 0.054242 | 0.054273 | 0.0 | 7.54 +Comm | 0.018189 | 0.03064 | 0.042206 | 4.9 | 4.26 +Output | 3.3034e-05 | 3.5624e-05 | 4.3263e-05 | 0.0 | 0.00 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.01107 | | | 1.54 + +Nlocal: 968 ave 980 max 954 min +Histogram: 1 0 1 0 0 0 0 0 1 1 +Nghost: 6630 ave 6644 max 6616 min +Histogram: 1 0 1 0 0 0 0 1 0 1 +Neighs: 193550 ave 195957 max 191376 min +Histogram: 2 0 0 0 0 0 0 0 1 1 + +Total # of neighbors = 774200 +Ave neighs/atom = 199.94835 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 14 +Dangerous builds = 0 +reset_timestep 0 + +velocity all create 100.0 6234235 +fix 1 all nvt temp 100.0 300.0 1.0 +# dump 1 all custom 100 cychex-methane.lammpstrj id xu yu zu +run 2500 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +Per MPI rank memory allocation (min/avg/max) = 4.22 | 4.507 | 4.603 Mbytes + Step Temp E_pair E_mol TotEng Press + 0 100 -6137.0238 483.1464 -4500.0059 5429.3515 + 100 107.18608 -5623.5468 925.13787 -3461.6193 5640.5922 + 200 119.37771 -5671.054 1050.9081 -3242.6804 7494.8576 + 300 127.21216 -5646.3171 1053.2825 -3125.1696 5661.5841 + 400 133.87894 -5674.4359 1139.3079 -2990.337 7202.7 + 500 138.76354 -5679.3297 1234.4508 -2843.7258 6745.1519 + 600 150.51628 -5665.2143 1210.3078 -2718.142 6301.1312 + 700 152.13291 -5680.6166 979.71444 -2945.4837 8424.0062 + 800 161.60449 -5579.521 1209.1388 -2505.674 5226.3319 + 900 177.80597 -5626.7406 1125.8767 -2449.2113 9035.9218 + 1000 181.98782 -5509.1736 924.24027 -2485.0276 5775.8317 + 1100 189.93412 -5534.8176 1169.5911 -2173.6307 8072.3434 + 1200 194.04459 -5508.0919 1169.0571 -2100.0095 7766.2625 + 1300 203.40621 -5400.0439 1229.5897 -1823.4077 6533.8169 + 1400 211.36099 -5362.2808 1318.5794 -1604.867 9789.8496 + 1500 221.24251 -5263.1861 1410.6972 -1299.6344 6407.5052 + 1600 234.83277 -5316.3854 1299.4287 -1307.2882 10199.28 + 1700 233.61193 -5187.0022 1246.0158 -1245.4048 7482.5096 + 1800 247.00713 -5193.2051 1451.1363 -891.92372 9836.6864 + 1900 250.10386 -5165.7314 1259.876 -1019.978 8648.7513 + 2000 257.7022 -5083.7142 1486.9813 -623.18058 9076.3674 + 2100 273.9293 -5061.7945 1463.3978 -437.60445 10039.49 + 2200 276.40166 -4948.9281 1538.5962 -221.01165 9013.3961 + 2300 287.28669 -5039.6841 1535.7768 -188.98782 10739.853 + 2400 290.35344 -4947.2095 1615.8983 18.994602 8326.4501 + 2500 305.29351 -4925.5822 1669.8823 266.99522 11465.135 +Loop time of 4.32742 on 4 procs for 2500 steps with 3872 atoms + +Performance: 49.914 ns/day, 0.481 hours/ns, 577.711 timesteps/s, 2.237 Matom-step/s +99.5% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 3.7864 | 3.836 | 3.8948 | 2.2 | 88.64 +Bond | 0.13058 | 0.13362 | 0.13735 | 0.8 | 3.09 +Neigh | 0.13597 | 0.13601 | 0.13605 | 0.0 | 3.14 +Comm | 0.12304 | 0.18542 | 0.23763 | 10.5 | 4.28 +Output | 0.00033524 | 0.00036705 | 0.00045513 | 0.0 | 0.01 +Modify | 0.027504 | 0.027917 | 0.028571 | 0.3 | 0.65 +Other | | 0.008118 | | | 0.19 + +Nlocal: 968 ave 986 max 944 min +Histogram: 1 0 0 1 0 0 0 0 0 2 +Nghost: 6379.75 ave 6407 max 6352 min +Histogram: 1 0 1 0 0 0 0 1 0 1 +Neighs: 192584 ave 196718 max 188693 min +Histogram: 1 1 0 0 0 0 0 1 0 1 + +Total # of neighbors = 770338 +Ave neighs/atom = 198.95093 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 34 +Dangerous builds = 0 +#write_data template-mix.data +#write_restart template-mix.restart +write_restart template-mix.restart +System init for write_restart ... +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule + +# now restart +clear +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98) + using 1 OpenMP thread(s) per MPI task +molecule cychex cyclohexane.mol +Read molecule template cychex: +LAMMPS molecule file. Cyclohexane(UA) + 1 molecules + 0 fragments + 6 atoms with max type 1 + 6 bonds with max type 1 + 6 angles with max type 1 + 6 dihedrals with max type 1 + 0 impropers with max type 0 +read_restart template-mix.restart +Reading restart file ... + restart file = 27 Jun 2024, LAMMPS = 27 Jun 2024 + restoring atom style template from restart + orthogonal box = (-24 -24 -24) to (24 24 24) + 1 by 2 by 2 MPI processor grid + restoring pair style lj/cut from restart + restoring bond style harmonic from restart + restoring angle style harmonic from restart + restoring dihedral style harmonic from restart + 3872 atoms + 3072 template bonds + 3072 template angles + 3072 template dihedrals + read_restart CPU = 0.001 seconds + +thermo 100 + +fix 1 all nvt temp 300.0 300.0 1.0 +Resetting global fix info from restart file: + fix style: nvt, fix ID: 1 +# dump 1 all custom 100 custom template-mix.lammpstrj id xu yu zu +run 2000 +Generated 1 of 1 mixed pair_coeff terms from geometric mixing rule +All restart file global fix info was re-assigned +Neighbor list info ... + update: every = 1 steps, delay = 0 steps, check = yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 7 7 7 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.192 | 4.288 | 4.574 Mbytes + Step Temp E_pair E_mol TotEng Press + 2500 305.29351 -4925.5822 1669.8823 266.99522 11465.135 + 2600 296.63161 -4937.8377 1616.2295 101.13964 8654.8533 + 2700 303.79396 -4951.8442 1732.7298 286.27771 11140.127 + 2800 297.39677 -4879.1242 1642.1355 194.58806 8993.2494 + 2900 299.13542 -4888.1435 1660.1105 223.60558 10716.3 + 3000 298.07888 -4928.2353 1650.6616 161.87369 10088.459 + 3100 304.09536 -4901.4853 1614.3116 221.69625 9505.2057 + 3200 301.51357 -4930.5129 1628.4386 177.00496 11411.933 + 3300 297.45744 -4923.6217 1700.537 209.19205 8189.571 + 3400 298.52831 -5012.7313 1736.6929 168.59495 11673.119 + 3500 295.66767 -4947.4296 1700.0072 164.20283 8222.3067 + 3600 296.7267 -5112.3707 1727.4319 38.906285 10608.481 + 3700 302.92855 -4994.4012 1789.7274 290.73255 8829.4479 + 3800 296.77191 -5034.2589 1657.2635 47.371248 9968.3521 + 3900 299.86962 -4972.7385 1744.2808 231.65266 10076.37 + 4000 304.89527 -5011.2464 1664.6779 171.53137 8926.0386 + 4100 296.81738 -5013.2169 1727.5801 139.25455 10898.733 + 4200 300.67532 -4988.3547 1782.1574 263.20975 8164.1158 + 4300 297.74901 -5023.3433 1784.7361 197.03396 11344.862 + 4400 302.0571 -5033.3547 1723.2662 175.26243 8016.975 + 4500 305.31958 -5062.5597 1767.0048 227.44095 10827.294 +Loop time of 3.5798 on 4 procs for 2000 steps with 3872 atoms + +Performance: 48.271 ns/day, 0.497 hours/ns, 558.691 timesteps/s, 2.163 Matom-step/s +99.3% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 3.0514 | 3.1162 | 3.2058 | 3.3 | 87.05 +Bond | 0.10377 | 0.10776 | 0.11194 | 1.0 | 3.01 +Neigh | 0.14121 | 0.14125 | 0.1413 | 0.0 | 3.95 +Comm | 0.092144 | 0.18542 | 0.25437 | 14.1 | 5.18 +Output | 0.00025632 | 0.00028151 | 0.00035298 | 0.0 | 0.01 +Modify | 0.02193 | 0.022227 | 0.022584 | 0.2 | 0.62 +Other | | 0.006618 | | | 0.18 + +Nlocal: 968 ave 984 max 948 min +Histogram: 1 0 0 1 0 0 0 0 1 1 +Nghost: 6349.5 ave 6370 max 6330 min +Histogram: 1 0 1 0 0 0 0 1 0 1 +Neighs: 192457 ave 196654 max 187154 min +Histogram: 1 0 0 0 1 0 0 0 1 1 + +Total # of neighbors = 769828 +Ave neighs/atom = 198.81921 +Ave special neighs/atom = 3.9669421 +Neighbor list builds = 35 +Dangerous builds = 0 + +# clean up +shell rm template-mix.restart +Total wall time: 0:00:08 diff --git a/examples/template/log.22Oct20.mol-restart-mix.g++.1 b/examples/template/log.22Oct20.mol-restart-mix.g++.1 deleted file mode 100644 index 2d5120f678..0000000000 --- a/examples/template/log.22Oct20.mol-restart-mix.g++.1 +++ /dev/null @@ -1,106 +0,0 @@ -LAMMPS (22 Oct 2020) - using 1 OpenMP thread(s) per MPI task -# demo for atom style template simulating a cyclohexane methane mixture -# part 3: continuing from restart file - -molecule cychex cyclohexane.mol -Read molecule template cychex: - 1 molecules - 6 atoms with max type 1 - 6 bonds with max type 1 - 6 angles with max type 1 - 6 dihedrals with max type 1 - 0 impropers with max type 0 -read_restart molecular-mix.restart -Reading restart file ... - restart file = 22 Oct 2020, LAMMPS = 22 Oct 2020 - restoring atom style molecular from restart - orthogonal box = (-24.000000 -24.000000 -24.000000) to (24.000000 24.000000 24.000000) - 1 by 1 by 1 MPI processor grid - restoring pair style lj/cut from restart - restoring bond style harmonic from restart - restoring angle style harmonic from restart - restoring dihedral style harmonic from restart - 3872 atoms - 3072 bonds - 3072 angles - 3072 dihedrals -Finding 1-2 1-3 1-4 neighbors ... - special bond factors lj: 0.0 0.0 0.0 - special bond factors coul: 0.0 0.0 0.0 - 2 = max # of 1-2 neighbors - 2 = max # of 1-3 neighbors - 4 = max # of 1-4 neighbors - 5 = max # of special neighbors - special bonds CPU = 0.002 seconds - read_restart CPU = 0.008 seconds - -thermo 100 - -fix 1 all nvt temp 300.0 300.0 1.0 -# dump 1 all custom 100 custom template-mix.lammpstrj id xu yu zu -run 2000 -Neighbor list info ... - update every 1 steps, delay 10 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 14 - ghost atom cutoff = 14 - binsize = 7, bins = 7 7 7 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/cut, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -Per MPI rank memory allocation (min/avg/max) = 10.74 | 10.74 | 10.74 Mbytes -Step Temp E_pair E_mol TotEng Press - 0 297.79426 -4928.7403 1686.5107 193.93377 11481.089 - 100 298.75004 -4870.5672 1619.1613 195.7859 8813.1304 - 200 296.49886 -4884.3039 1747.4798 284.39198 11537.322 - 300 295.24937 -4850.2788 1642.4584 198.97822 9160.666 - 400 297.73321 -4952.9967 1660.6439 143.10604 10751.859 - 500 293.58308 -4984.2337 1625.8355 29.173529 9530.8826 - 600 299.50756 -4999.965 1588.0327 44.000269 9233.8621 - 700 295.64728 -4958.2253 1646.2011 99.365838 11089.418 - 800 303.5841 -4895.0575 1719.7373 327.65045 8451.8685 - 900 300.80754 -5033.4853 1727.4591 164.90648 11497.526 - 1000 300.66472 -4887.4356 1763.3231 345.17233 8454.9551 - 1100 300.94922 -5003.5731 1766.1276 235.12197 11176.28 - 1200 299.81632 -4944.4257 1705.2357 220.30525 8879.3201 - 1300 299.95466 -5009.4367 1637.1947 88.849661 10379.762 - 1400 300.32601 -4999.539 1735.8132 201.65057 9698.2178 - 1500 304.10398 -4997.213 1627.5651 139.32157 9299.5337 - 1600 299.2676 -4960.8958 1746.7172 238.98516 10914.415 - 1700 293.13408 -5034.7742 1742.2452 89.861851 8213.6882 - 1800 301.9386 -5068.1221 1755.577 171.43863 11229.315 - 1900 297.67412 -5012.48 1734.5634 156.86041 8116.1348 - 2000 296.14819 -5089.1034 1774.3987 102.46517 10858.209 -Loop time of 15.5879 on 1 procs for 2000 steps with 3872 atoms - -Performance: 11.086 ns/day, 2.165 hours/ns, 128.305 timesteps/s -99.5% CPU use with 1 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 14.116 | 14.116 | 14.116 | 0.0 | 90.56 -Bond | 0.58742 | 0.58742 | 0.58742 | 0.0 | 3.77 -Neigh | 0.68543 | 0.68543 | 0.68543 | 0.0 | 4.40 -Comm | 0.082574 | 0.082574 | 0.082574 | 0.0 | 0.53 -Output | 0.00054698 | 0.00054698 | 0.00054698 | 0.0 | 0.00 -Modify | 0.078446 | 0.078446 | 0.078446 | 0.0 | 0.50 -Other | | 0.03761 | | | 0.24 - -Nlocal: 3872.00 ave 3872 max 3872 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 11633.0 ave 11633 max 11633 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 770365.0 ave 770365 max 770365 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 770365 -Ave neighs/atom = 198.95790 -Ave special neighs/atom = 3.9669421 -Neighbor list builds = 35 -Dangerous builds = 0 -Total wall time: 0:00:15 diff --git a/examples/template/log.22Oct20.mol-restart-mix.g++.4 b/examples/template/log.22Oct20.mol-restart-mix.g++.4 deleted file mode 100644 index 1b900d588a..0000000000 --- a/examples/template/log.22Oct20.mol-restart-mix.g++.4 +++ /dev/null @@ -1,107 +0,0 @@ -LAMMPS (22 Oct 2020) - using 1 OpenMP thread(s) per MPI task -# demo for atom style template simulating a cyclohexane methane mixture -# part 3: continuing from restart file - -molecule cychex cyclohexane.mol -Read molecule template cychex: - 1 molecules - 6 atoms with max type 1 - 6 bonds with max type 1 - 6 angles with max type 1 - 6 dihedrals with max type 1 - 0 impropers with max type 0 -read_restart molecular-mix.restart -Reading restart file ... - restart file = 22 Oct 2020, LAMMPS = 22 Oct 2020 -WARNING: Restart file used different # of processors: 1 vs. 4 (src/read_restart.cpp:697) - restoring atom style molecular from restart - orthogonal box = (-24.000000 -24.000000 -24.000000) to (24.000000 24.000000 24.000000) - 1 by 2 by 2 MPI processor grid - restoring pair style lj/cut from restart - restoring bond style harmonic from restart - restoring angle style harmonic from restart - restoring dihedral style harmonic from restart - 3872 atoms - 3072 bonds - 3072 angles - 3072 dihedrals -Finding 1-2 1-3 1-4 neighbors ... - special bond factors lj: 0.0 0.0 0.0 - special bond factors coul: 0.0 0.0 0.0 - 2 = max # of 1-2 neighbors - 2 = max # of 1-3 neighbors - 4 = max # of 1-4 neighbors - 5 = max # of special neighbors - special bonds CPU = 0.001 seconds - read_restart CPU = 0.031 seconds - -thermo 100 - -fix 1 all nvt temp 300.0 300.0 1.0 -# dump 1 all custom 100 custom template-mix.lammpstrj id xu yu zu -run 2000 -Neighbor list info ... - update every 1 steps, delay 10 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 14 - ghost atom cutoff = 14 - binsize = 7, bins = 7 7 7 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/cut, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -Per MPI rank memory allocation (min/avg/max) = 8.101 | 8.197 | 8.483 Mbytes -Step Temp E_pair E_mol TotEng Press - 0 297.79426 -4928.7403 1686.5107 193.93377 11481.089 - 100 298.75001 -4870.5672 1619.1613 195.78563 8813.1303 - 200 301.9265 -4884.8594 1745.0359 344.02042 11561.79 - 300 298.78957 -4854.0769 1638.3567 231.92774 9180.5245 - 400 302 -4951.4895 1664.5419 197.74463 10784.638 - 500 299.17946 -4983.7996 1615.0068 83.354011 9578.745 - 600 294.32777 -5000.7554 1591.1992 -13.391775 9181.3926 - 700 300.90925 -4959.9309 1653.6347 165.81003 11121.514 - 800 293.14833 -4895.5912 1707.8754 194.83943 8397.927 - 900 299.0508 -5032.8395 1726.0885 143.91128 11478.847 - 1000 295.15206 -4888.4533 1777.4719 294.69437 8388.738 - 1100 301.13534 -5004.2113 1761.645 232.14877 11246.198 - 1200 296.93159 -4944.3223 1703.1744 185.06123 8808.4178 - 1300 300.79377 -5011.7826 1642.093 101.08422 10390.705 - 1400 295.85952 -4987.9927 1708.8415 134.68768 9680.88 - 1500 296.37146 -5009.887 1637.2239 47.082942 9235.3487 - 1600 298.68972 -4962.1273 1747.402 231.77054 10941.114 - 1700 299.03141 -5022.0046 1755.8881 184.32195 8248.312 - 1800 297.26645 -5023.9459 1740.9512 147.07837 11357.02 - 1900 293.16007 -5023.8887 1754.1333 112.93534 7969.1102 - 2000 307.66497 -5046.5928 1803.9999 307.46576 11249.704 -Loop time of 5.2142 on 4 procs for 2000 steps with 3872 atoms - -Performance: 33.140 ns/day, 0.724 hours/ns, 383.568 timesteps/s -94.4% CPU use with 4 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 3.5706 | 3.6724 | 3.7809 | 4.9 | 70.43 -Bond | 0.14654 | 0.1524 | 0.15708 | 1.2 | 2.92 -Neigh | 0.18217 | 0.1822 | 0.18221 | 0.0 | 3.49 -Comm | 0.74346 | 0.8715 | 0.9808 | 10.9 | 16.71 -Output | 0.00034776 | 0.00084716 | 0.0023413 | 0.0 | 0.02 -Modify | 0.12457 | 0.18985 | 0.31013 | 17.4 | 3.64 -Other | | 0.145 | | | 2.78 - -Nlocal: 968.000 ave 979 max 948 min -Histogram: 1 0 0 0 0 0 0 1 1 1 -Nghost: 6321.25 ave 6336 max 6309 min -Histogram: 2 0 0 0 0 0 0 1 0 1 -Neighs: 192540.0 ave 195406 max 187182 min -Histogram: 1 0 0 0 0 0 1 0 0 2 - -Total # of neighbors = 770161 -Ave neighs/atom = 198.90522 -Ave special neighs/atom = 3.9669421 -Neighbor list builds = 35 -Dangerous builds = 0 -Total wall time: 0:00:05 diff --git a/examples/template/log.22Oct20.tmpl-restart-mix.g++.1 b/examples/template/log.22Oct20.tmpl-restart-mix.g++.1 deleted file mode 100644 index 3c28834098..0000000000 --- a/examples/template/log.22Oct20.tmpl-restart-mix.g++.1 +++ /dev/null @@ -1,102 +0,0 @@ -LAMMPS (22 Oct 2020) - using 1 OpenMP thread(s) per MPI task -# demo for atom style template simulating a cyclohexane methane mixture -# part 3: continuing from restart file - -molecule cychex cyclohexane.mol -Read molecule template cychex: - 1 molecules - 6 atoms with max type 1 - 6 bonds with max type 1 - 6 angles with max type 1 - 6 dihedrals with max type 1 - 0 impropers with max type 0 -read_restart template-mix.restart -Reading restart file ... - restart file = 22 Oct 2020, LAMMPS = 22 Oct 2020 -WARNING: Restart file used different # of processors: 4 vs. 1 (src/read_restart.cpp:697) - restoring atom style template from restart - orthogonal box = (-24.000000 -24.000000 -24.000000) to (24.000000 24.000000 24.000000) - 1 by 1 by 1 MPI processor grid - restoring pair style lj/cut from restart - restoring bond style harmonic from restart - restoring angle style harmonic from restart - restoring dihedral style harmonic from restart - 3872 atoms - 3072 template bonds - 3072 template angles - 3072 template dihedrals - read_restart CPU = 0.002 seconds - -thermo 100 - -fix 1 all nvt temp 300.0 300.0 1.0 -Resetting global fix info from restart file: - fix style: nvt, fix ID: 1 -# dump 1 all custom 100 custom template-mix.lammpstrj id xu yu zu -run 2000 -All restart file global fix info was re-assigned -Neighbor list info ... - update every 1 steps, delay 10 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 14 - ghost atom cutoff = 14 - binsize = 7, bins = 7 7 7 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/cut, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -Per MPI rank memory allocation (min/avg/max) = 6.879 | 6.879 | 6.879 Mbytes -Step Temp E_pair E_mol TotEng Press - 2500 297.79426 -4928.7403 1686.5107 193.93377 11481.089 - 2600 303.69861 -4872.1658 1620.5986 252.72467 8824.1501 - 2700 304.64827 -4885.5903 1747.1956 376.85504 11560.748 - 2800 298.79617 -4851.2752 1644.5913 241.04014 9198.1133 - 2900 302.323 -4949.4247 1661.0637 200.05824 10788.039 - 3000 302.8192 -4983.7441 1617.1412 127.5418 9606.2027 - 3100 305.27495 -4999.5335 1589.7081 112.65547 9258.8096 - 3200 294.9932 -4960.8253 1650.5396 93.556955 11103.25 - 3300 299.8705 -4896.6757 1711.6029 275.0477 8404.2758 - 3400 308.43113 -5035.583 1732.7837 256.09989 11520.651 - 3500 302.54 -4887.2016 1770.4336 374.15506 8359.8351 - 3600 294.00064 -5011.409 1768.0298 149.01058 11257.53 - 3700 303.26654 -4942.0636 1690.4493 247.69209 8749.4281 - 3800 294.7064 -5009.5839 1638.6276 29.577045 10460.396 - 3900 300.34826 -5011.778 1699.4384 153.29355 9558.3891 - 4000 298.76709 -5014.8089 1613.1902 45.769836 9254.1067 - 4100 297.77294 -4978.3228 1736.8967 194.49122 10810.757 - 4200 302.14768 -5049.4356 1713.0187 149.97929 8258.5093 - 4300 295.1467 -5094.2287 1757.8215 69.206733 11022.023 - 4400 305.24677 -4967.1951 1762.3252 317.28577 8423.2256 - 4500 305.53119 -5047.7285 1775.2795 252.98852 11178.338 -Loop time of 15.3536 on 1 procs for 2000 steps with 3872 atoms - -Performance: 11.255 ns/day, 2.132 hours/ns, 130.263 timesteps/s -99.6% CPU use with 1 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 13.88 | 13.88 | 13.88 | 0.0 | 90.40 -Bond | 0.58065 | 0.58065 | 0.58065 | 0.0 | 3.78 -Neigh | 0.69518 | 0.69518 | 0.69518 | 0.0 | 4.53 -Comm | 0.0826 | 0.0826 | 0.0826 | 0.0 | 0.54 -Output | 0.00053438 | 0.00053438 | 0.00053438 | 0.0 | 0.00 -Modify | 0.07779 | 0.07779 | 0.07779 | 0.0 | 0.51 -Other | | 0.03687 | | | 0.24 - -Nlocal: 3872.00 ave 3872 max 3872 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 11670.0 ave 11670 max 11670 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 770032.0 ave 770032 max 770032 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 770032 -Ave neighs/atom = 198.87190 -Ave special neighs/atom = 3.9669421 -Neighbor list builds = 35 -Dangerous builds = 0 -Total wall time: 0:00:15 diff --git a/examples/template/log.22Oct20.tmpl-restart-mix.g++.4 b/examples/template/log.22Oct20.tmpl-restart-mix.g++.4 deleted file mode 100644 index 078e7562dc..0000000000 --- a/examples/template/log.22Oct20.tmpl-restart-mix.g++.4 +++ /dev/null @@ -1,101 +0,0 @@ -LAMMPS (22 Oct 2020) - using 1 OpenMP thread(s) per MPI task -# demo for atom style template simulating a cyclohexane methane mixture -# part 3: continuing from restart file - -molecule cychex cyclohexane.mol -Read molecule template cychex: - 1 molecules - 6 atoms with max type 1 - 6 bonds with max type 1 - 6 angles with max type 1 - 6 dihedrals with max type 1 - 0 impropers with max type 0 -read_restart template-mix.restart -Reading restart file ... - restart file = 22 Oct 2020, LAMMPS = 22 Oct 2020 - restoring atom style template from restart - orthogonal box = (-24.000000 -24.000000 -24.000000) to (24.000000 24.000000 24.000000) - 1 by 2 by 2 MPI processor grid - restoring pair style lj/cut from restart - restoring bond style harmonic from restart - restoring angle style harmonic from restart - restoring dihedral style harmonic from restart - 3872 atoms - 3072 template bonds - 3072 template angles - 3072 template dihedrals - read_restart CPU = 0.006 seconds - -thermo 100 - -fix 1 all nvt temp 300.0 300.0 1.0 -Resetting global fix info from restart file: - fix style: nvt, fix ID: 1 -# dump 1 all custom 100 custom template-mix.lammpstrj id xu yu zu -run 2000 -All restart file global fix info was re-assigned -Neighbor list info ... - update every 1 steps, delay 10 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 14 - ghost atom cutoff = 14 - binsize = 7, bins = 7 7 7 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/cut, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -Per MPI rank memory allocation (min/avg/max) = 4.193 | 4.289 | 4.575 Mbytes -Step Temp E_pair E_mol TotEng Press - 2500 297.79426 -4928.7403 1686.5107 193.93377 11481.089 - 2600 303.6986 -4872.1658 1620.5986 252.72458 8824.1501 - 2700 296.80713 -4884.3012 1753.5243 293.99628 11523.482 - 2800 298.88856 -4849.1995 1639.5709 239.1615 9214.1261 - 2900 297.12578 -4949.9958 1657.7582 136.2123 10727.69 - 3000 298.19234 -4984.9797 1618.0356 73.812582 9576.9074 - 3100 301.54182 -4999.9775 1588.997 68.424766 9225.9502 - 3200 294.07259 -4962.8351 1646.3012 76.686125 11080.923 - 3300 303.55697 -4900.0696 1721.4077 323.99573 8433.7992 - 3400 297.80636 -5036.3758 1735.0734 135.00054 11440.101 - 3500 303.96121 -4882.4297 1757.4268 382.31908 8497.7685 - 3600 298.21153 -5006.6599 1759.9584 194.27658 11184.938 - 3700 300.77921 -4941.495 1688.3988 217.50964 8820.5666 - 3800 294.33206 -5011.7746 1653.7511 38.190478 10418.208 - 3900 304.38175 -5004.4071 1719.9139 227.68132 9632.0557 - 4000 302.44152 -5029.0544 1610.1577 70.889929 9237.6379 - 4100 298.82638 -4971.4109 1755.8272 232.48883 10814.056 - 4200 297.77273 -5040.0028 1718.5112 114.42322 8287.605 - 4300 300.50984 -5082.4128 1742.354 127.43881 11003.298 - 4400 310.02885 -4971.4191 1749.1209 355.03646 8502.7004 - 4500 302.62639 -5033.3284 1753.488 212.07956 11150.514 -Loop time of 4.39645 on 4 procs for 2000 steps with 3872 atoms - -Performance: 39.304 ns/day, 0.611 hours/ns, 454.913 timesteps/s -98.2% CPU use with 4 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 3.6185 | 3.6709 | 3.7028 | 1.7 | 83.50 -Bond | 0.14772 | 0.15338 | 0.1621 | 1.5 | 3.49 -Neigh | 0.17739 | 0.17747 | 0.17756 | 0.0 | 4.04 -Comm | 0.29637 | 0.33265 | 0.39131 | 6.7 | 7.57 -Output | 0.00034028 | 0.0006627 | 0.0016284 | 0.0 | 0.02 -Modify | 0.039076 | 0.041988 | 0.043469 | 0.9 | 0.96 -Other | | 0.01937 | | | 0.44 - -Nlocal: 968.000 ave 977 max 956 min -Histogram: 1 0 0 1 0 0 0 0 0 2 -Nghost: 6322.75 ave 6345 max 6308 min -Histogram: 2 0 0 0 0 1 0 0 0 1 -Neighs: 192555.0 ave 195249 max 188636 min -Histogram: 1 0 0 0 0 1 0 0 1 1 - -Total # of neighbors = 770221 -Ave neighs/atom = 198.92071 -Ave special neighs/atom = 3.9669421 -Neighbor list builds = 34 -Dangerous builds = 0 -Total wall time: 0:00:04 diff --git a/fortran/lammps.f90 b/fortran/lammps.f90 index a70a7e8af4..1617891b92 100644 --- a/fortran/lammps.f90 +++ b/fortran/lammps.f90 @@ -196,6 +196,7 @@ MODULE LIBLAMMPS PROCEDURE, NOPASS :: config_has_jpeg_support => lmp_config_has_jpeg_support PROCEDURE, NOPASS :: config_has_ffmpeg_support & => lmp_config_has_ffmpeg_support + PROCEDURE, NOPASS :: config_has_curl_support => lmp_config_has_curl_support PROCEDURE, NOPASS :: config_has_exceptions => lmp_config_has_exceptions PROCEDURE, NOPASS :: config_has_package => lmp_config_has_package PROCEDURE, NOPASS :: config_package_count => lammps_config_package_count @@ -793,6 +794,12 @@ MODULE LIBLAMMPS INTEGER(c_int) :: lammps_config_has_ffmpeg_support END FUNCTION lammps_config_has_ffmpeg_support + FUNCTION lammps_config_has_curl_support() BIND(C) + IMPORT :: c_int + IMPLICIT NONE + INTEGER(c_int) :: lammps_config_has_curl_support + END FUNCTION lammps_config_has_curl_support + FUNCTION lammps_config_has_exceptions() BIND(C) IMPORT :: c_int IMPLICIT NONE @@ -2881,6 +2888,14 @@ CONTAINS lmp_config_has_ffmpeg_support = (has_ffmpeg_support /= 0_c_int) END FUNCTION lmp_config_has_ffmpeg_support + ! equivalent function to lammps_config_has_curl_support + LOGICAL FUNCTION lmp_config_has_curl_support() + INTEGER(c_int) :: has_curl_support + + has_curl_support = lammps_config_has_curl_support() + lmp_config_has_curl_support = (has_curl_support /= 0_c_int) + END FUNCTION lmp_config_has_curl_support + ! equivalent function to lammps_config_has_exceptions LOGICAL FUNCTION lmp_config_has_exceptions() INTEGER(c_int) :: has_exceptions diff --git a/lib/colvars/Makefile.common b/lib/colvars/Makefile.common index 9e7be12958..f0282b8caf 100644 --- a/lib/colvars/Makefile.common +++ b/lib/colvars/Makefile.common @@ -25,6 +25,7 @@ COLVARS_INCFLAGS = -DCOLVARS_LAMMPS $(COLVARS_DEBUG_INCFLAGS) $(COLVARS_PYTHON_I COLVARS_SRCS = \ colvaratoms.cpp \ colvarbias_abf.cpp \ + colvarbias_abmd.cpp \ colvarbias_alb.cpp \ colvarbias.cpp \ colvarbias_histogram.cpp \ @@ -59,6 +60,7 @@ COLVARS_SRCS = \ colvarscript_commands.cpp \ colvarscript_commands_bias.cpp \ colvarscript_commands_colvar.cpp \ + colvars_memstream.cpp \ colvartypes.cpp \ colvarvalue.cpp \ colvar_neuralnetworkcompute.cpp diff --git a/lib/colvars/Makefile.deps b/lib/colvars/Makefile.deps index 6bf5171710..61f0b1a335 100644 --- a/lib/colvars/Makefile.deps +++ b/lib/colvars/Makefile.deps @@ -1,201 +1,230 @@ -$(COLVARS_OBJ_DIR)colvaratoms.o: colvaratoms.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h \ +$(COLVARS_OBJ_DIR)colvaratoms.o: colvaratoms.cpp colvardeps.h \ + colvarmodule.h colvars_version.h colvarparse.h colvarvalue.h \ + colvartypes.h ../../src/math_eigen_impl.h colvarparams.h colvarproxy.h \ colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvarparse.h colvarparams.h colvaratoms.h \ - colvardeps.h + colvarproxy_volmaps.h colvaratoms.h colvar_rotation_derivative.h $(COLVARS_OBJ_DIR)colvarbias_abf.o: colvarbias_abf.cpp colvarmodule.h \ - colvars_version.h colvar.h colvarvalue.h colvartypes.h colvarparse.h \ - colvarparams.h colvardeps.h colvarbias_abf.h colvarproxy.h \ - colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvarbias.h colvargrid.h colvar_UIestimator.h + colvars_version.h colvar.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarparse.h colvarparams.h colvardeps.h \ + colvarbias_abf.h colvarproxy.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvarbias.h colvargrid.h \ + colvar_UIestimator.h colvars_memstream.h +$(COLVARS_OBJ_DIR)colvarbias_abmd.o: colvarbias_abmd.cpp \ + colvarbias_abmd.h colvarbias_restraint.h colvarbias.h colvar.h \ + colvarmodule.h colvars_version.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarparse.h colvarparams.h colvardeps.h \ + colvarproxy.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ + colvarproxy_volmaps.h $(COLVARS_OBJ_DIR)colvarbias_alb.o: colvarbias_alb.cpp colvarmodule.h \ - colvars_version.h colvarbias.h colvar.h colvarvalue.h colvartypes.h \ - colvarparse.h colvarparams.h colvardeps.h colvarbias_alb.h + colvars_version.h colvarproxy.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvarbias.h colvar.h \ + colvarvalue.h colvarparse.h colvarparams.h colvardeps.h colvarbias_alb.h $(COLVARS_OBJ_DIR)colvarbias.o: colvarbias.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h \ - colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvarbias.h colvar.h colvarparse.h colvarparams.h \ - colvardeps.h colvargrid.h + colvars_version.h colvarproxy.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvarvalue.h colvarbias.h \ + colvar.h colvarparse.h colvarparams.h colvardeps.h colvargrid.h \ + colvars_memstream.h $(COLVARS_OBJ_DIR)colvarbias_histogram.o: colvarbias_histogram.cpp \ colvarmodule.h colvars_version.h colvarproxy.h colvartypes.h \ - colvarvalue.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvar.h colvarparse.h colvarparams.h colvardeps.h \ - colvarbias_histogram.h colvarbias.h colvargrid.h + ../../src/math_eigen_impl.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvar.h colvarvalue.h \ + colvarparse.h colvarparams.h colvardeps.h colvarbias_histogram.h \ + colvarbias.h colvargrid.h colvars_memstream.h $(COLVARS_OBJ_DIR)colvarbias_histogram_reweight_amd.o: \ colvarbias_histogram_reweight_amd.cpp \ colvarbias_histogram_reweight_amd.h colvarbias_histogram.h colvarbias.h \ colvar.h colvarmodule.h colvars_version.h colvarvalue.h colvartypes.h \ - colvarparse.h colvarparams.h colvardeps.h colvargrid.h colvarproxy.h \ - colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h + ../../src/math_eigen_impl.h colvarparse.h colvarparams.h colvardeps.h \ + colvargrid.h colvarproxy.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvars_memstream.h $(COLVARS_OBJ_DIR)colvarbias_meta.o: colvarbias_meta.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h \ - colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvar.h colvarparse.h colvarparams.h colvardeps.h \ - colvarbias_meta.h colvarbias.h colvargrid.h + colvars_version.h colvarproxy.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvar.h colvarvalue.h \ + colvarparse.h colvarparams.h colvardeps.h colvarbias_meta.h colvarbias.h \ + colvargrid.h colvars_memstream.h $(COLVARS_OBJ_DIR)colvarbias_restraint.o: colvarbias_restraint.cpp \ colvarmodule.h colvars_version.h colvarproxy.h colvartypes.h \ - colvarvalue.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvarbias_restraint.h colvarbias.h colvar.h \ - colvarparse.h colvarparams.h colvardeps.h + ../../src/math_eigen_impl.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvarvalue.h \ + colvarbias_restraint.h colvarbias.h colvar.h colvarparse.h \ + colvarparams.h colvardeps.h $(COLVARS_OBJ_DIR)colvarcomp_alchlambda.o: colvarcomp_alchlambda.cpp \ colvarmodule.h colvars_version.h colvarvalue.h colvartypes.h \ - colvarparse.h colvarparams.h colvar.h colvardeps.h colvarcomp.h \ - colvaratoms.h colvarproxy.h colvarproxy_io.h colvarproxy_system.h \ - colvarproxy_tcl.h colvarproxy_volmaps.h colvar_arithmeticpath.h \ + ../../src/math_eigen_impl.h colvar.h colvarparse.h colvarparams.h \ + colvardeps.h colvarcomp.h colvaratoms.h colvarproxy.h colvarproxy_io.h \ + colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ colvar_geometricpath.h $(COLVARS_OBJ_DIR)colvarcomp_angles.o: colvarcomp_angles.cpp \ colvarmodule.h colvars_version.h colvar.h colvarvalue.h colvartypes.h \ - colvarparse.h colvarparams.h colvardeps.h colvarcomp.h colvaratoms.h \ - colvarproxy.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvar_arithmeticpath.h colvar_geometricpath.h -$(COLVARS_OBJ_DIR)colvarcomp_apath.o: colvarcomp_apath.cpp colvarmodule.h \ - colvars_version.h colvarvalue.h colvartypes.h colvarparse.h \ - colvarparams.h colvar.h colvardeps.h colvarcomp.h colvaratoms.h \ - colvarproxy.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvar_arithmeticpath.h colvar_geometricpath.h -$(COLVARS_OBJ_DIR)colvarcomp_coordnums.o: colvarcomp_coordnums.cpp \ - colvarmodule.h colvars_version.h colvarparse.h colvarvalue.h \ - colvartypes.h colvarparams.h colvaratoms.h colvarproxy.h \ - colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvardeps.h colvar.h colvarcomp.h \ - colvar_arithmeticpath.h colvar_geometricpath.h -$(COLVARS_OBJ_DIR)colvarcomp.o: colvarcomp.cpp colvarmodule.h \ - colvars_version.h colvarvalue.h colvartypes.h colvar.h colvarparse.h \ - colvarparams.h colvardeps.h colvarcomp.h colvaratoms.h colvarproxy.h \ - colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvar_arithmeticpath.h colvar_geometricpath.h -$(COLVARS_OBJ_DIR)colvarcomp_distances.o: colvarcomp_distances.cpp \ - colvarmodule.h colvars_version.h colvarvalue.h colvartypes.h \ - colvarparse.h colvarparams.h colvar.h colvardeps.h colvarcomp.h \ - colvaratoms.h colvarproxy.h colvarproxy_io.h colvarproxy_system.h \ - colvarproxy_tcl.h colvarproxy_volmaps.h colvar_arithmeticpath.h \ + ../../src/math_eigen_impl.h colvarparse.h colvarparams.h colvardeps.h \ + colvarcomp.h colvaratoms.h colvarproxy.h colvarproxy_io.h \ + colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ colvar_geometricpath.h -$(COLVARS_OBJ_DIR)colvarcomp_gpath.o: colvarcomp_gpath.cpp colvarmodule.h \ - colvars_version.h colvarvalue.h colvartypes.h colvarparse.h \ - colvarparams.h colvar.h colvardeps.h colvarcomp.h colvaratoms.h \ - colvarproxy.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvar_arithmeticpath.h colvar_geometricpath.h -$(COLVARS_OBJ_DIR)colvarcomp_neuralnetwork.o: \ - colvarcomp_neuralnetwork.cpp colvarmodule.h colvars_version.h \ - colvarvalue.h colvartypes.h colvarparse.h colvarparams.h colvar.h \ +$(COLVARS_OBJ_DIR)colvarcomp_apath.o: colvarcomp_apath.cpp colvarvalue.h \ + colvarmodule.h colvars_version.h colvartypes.h \ + ../../src/math_eigen_impl.h colvar.h colvarparse.h colvarparams.h \ colvardeps.h colvarcomp.h colvaratoms.h colvarproxy.h colvarproxy_io.h \ colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ - colvar_arithmeticpath.h colvar_geometricpath.h \ + colvar_geometricpath.h colvar_arithmeticpath.h +$(COLVARS_OBJ_DIR)colvarcomp_coordnums.o: colvarcomp_coordnums.cpp \ + colvarmodule.h colvars_version.h colvaratoms.h colvarproxy.h \ + colvartypes.h ../../src/math_eigen_impl.h colvarproxy_io.h \ + colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ + colvarparse.h colvarvalue.h colvarparams.h colvardeps.h colvar.h \ + colvarcomp.h colvar_geometricpath.h +$(COLVARS_OBJ_DIR)colvarcomp.o: colvarcomp.cpp colvarmodule.h \ + colvars_version.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvar.h colvarparse.h colvarparams.h \ + colvardeps.h colvarcomp.h colvaratoms.h colvarproxy.h colvarproxy_io.h \ + colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ + colvar_geometricpath.h +$(COLVARS_OBJ_DIR)colvarcomp_distances.o: colvarcomp_distances.cpp \ + colvarmodule.h colvars_version.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvar.h colvarparse.h colvarparams.h \ + colvardeps.h colvarcomp.h colvaratoms.h colvarproxy.h colvarproxy_io.h \ + colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ + colvar_geometricpath.h colvar_rotation_derivative.h +$(COLVARS_OBJ_DIR)colvarcomp_gpath.o: colvarcomp_gpath.cpp colvarmodule.h \ + colvars_version.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvar.h colvarparse.h colvarparams.h \ + colvardeps.h colvarcomp.h colvaratoms.h colvarproxy.h colvarproxy_io.h \ + colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ + colvar_geometricpath.h +$(COLVARS_OBJ_DIR)colvarcomp_neuralnetwork.o: \ + colvarcomp_neuralnetwork.cpp colvarmodule.h colvars_version.h \ + colvarvalue.h colvartypes.h ../../src/math_eigen_impl.h colvar.h \ + colvarparse.h colvarparams.h colvardeps.h colvarcomp.h colvaratoms.h \ + colvarproxy.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ + colvarproxy_volmaps.h colvar_geometricpath.h \ colvar_neuralnetworkcompute.h $(COLVARS_OBJ_DIR)colvarcomp_combination.o: colvarcomp_combination.cpp \ - colvarcomp.h colvarmodule.h colvars_version.h colvar.h colvarvalue.h \ - colvartypes.h colvarparse.h colvarparams.h colvardeps.h colvaratoms.h \ - colvarproxy.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvar_arithmeticpath.h colvar_geometricpath.h + colvarcomp.h colvarmodule.h colvars_version.h colvaratoms.h \ + colvarproxy.h colvartypes.h ../../src/math_eigen_impl.h colvarproxy_io.h \ + colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ + colvarparse.h colvarvalue.h colvarparams.h colvardeps.h colvar.h \ + colvar_geometricpath.h $(COLVARS_OBJ_DIR)colvarcomp_protein.o: colvarcomp_protein.cpp \ colvarmodule.h colvars_version.h colvarvalue.h colvartypes.h \ - colvarparse.h colvarparams.h colvar.h colvardeps.h colvarcomp.h \ - colvaratoms.h colvarproxy.h colvarproxy_io.h colvarproxy_system.h \ - colvarproxy_tcl.h colvarproxy_volmaps.h colvar_arithmeticpath.h \ + ../../src/math_eigen_impl.h colvar.h colvarparse.h colvarparams.h \ + colvardeps.h colvarcomp.h colvaratoms.h colvarproxy.h colvarproxy_io.h \ + colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ colvar_geometricpath.h $(COLVARS_OBJ_DIR)colvarcomp_rotations.o: colvarcomp_rotations.cpp \ colvarmodule.h colvars_version.h colvarvalue.h colvartypes.h \ - colvarparse.h colvarparams.h colvar.h colvardeps.h colvarcomp.h \ - colvaratoms.h colvarproxy.h colvarproxy_io.h colvarproxy_system.h \ - colvarproxy_tcl.h colvarproxy_volmaps.h colvar_arithmeticpath.h \ - colvar_geometricpath.h -$(COLVARS_OBJ_DIR)colvarcomp_volmaps.o: colvarcomp_volmaps.cpp \ - colvarmodule.h colvars_version.h colvarvalue.h colvartypes.h \ - colvarparse.h colvarparams.h colvar.h colvardeps.h colvarcomp.h \ - colvaratoms.h colvarproxy.h colvarproxy_io.h colvarproxy_system.h \ - colvarproxy_tcl.h colvarproxy_volmaps.h colvar_arithmeticpath.h \ - colvar_geometricpath.h -$(COLVARS_OBJ_DIR)colvar.o: colvar.cpp colvarmodule.h colvars_version.h \ - colvarvalue.h colvartypes.h colvarparse.h colvarparams.h colvar.h \ + ../../src/math_eigen_impl.h colvar.h colvarparse.h colvarparams.h \ colvardeps.h colvarcomp.h colvaratoms.h colvarproxy.h colvarproxy_io.h \ colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ - colvar_arithmeticpath.h colvar_geometricpath.h colvarscript.h \ - colvarbias.h colvarscript_commands.h colvarscript_commands_colvar.h \ - colvarscript_commands_bias.h + colvar_geometricpath.h colvar_rotation_derivative.h +$(COLVARS_OBJ_DIR)colvarcomp_volmaps.o: colvarcomp_volmaps.cpp \ + colvarmodule.h colvars_version.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvar.h colvarparse.h colvarparams.h \ + colvardeps.h colvarcomp.h colvaratoms.h colvarproxy.h colvarproxy_io.h \ + colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ + colvar_geometricpath.h +$(COLVARS_OBJ_DIR)colvar.o: colvar.cpp colvarmodule.h colvars_version.h \ + colvarvalue.h colvartypes.h ../../src/math_eigen_impl.h colvarparse.h \ + colvarparams.h colvarcomp.h colvaratoms.h colvarproxy.h colvarproxy_io.h \ + colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ + colvardeps.h colvar.h colvar_geometricpath.h colvarbias.h \ + colvars_memstream.h $(COLVARS_OBJ_DIR)colvardeps.o: colvardeps.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h \ - colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvardeps.h colvarparse.h colvarparams.h + colvars_version.h colvarproxy.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvardeps.h colvarparse.h \ + colvarvalue.h colvarparams.h $(COLVARS_OBJ_DIR)colvargrid.o: colvargrid.cpp colvarmodule.h \ - colvars_version.h colvarvalue.h colvartypes.h colvarparse.h \ - colvarparams.h colvar.h colvardeps.h colvarcomp.h colvaratoms.h \ - colvarproxy.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvar_arithmeticpath.h colvar_geometricpath.h \ - colvargrid.h colvargrid_def.h + colvars_version.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarparse.h colvarparams.h colvar.h \ + colvardeps.h colvargrid.h colvargrid_def.h colvarproxy.h \ + colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ + colvarproxy_volmaps.h colvars_memstream.h $(COLVARS_OBJ_DIR)colvarmodule.o: colvarmodule.cpp colvarmodule.h \ colvars_version.h colvarparse.h colvarvalue.h colvartypes.h \ - colvarparams.h colvarproxy.h colvarproxy_io.h colvarproxy_system.h \ - colvarproxy_tcl.h colvarproxy_volmaps.h colvar.h colvardeps.h \ - colvarbias.h colvarbias_abf.h colvargrid.h colvar_UIestimator.h \ - colvarbias_alb.h colvarbias_histogram.h \ - colvarbias_histogram_reweight_amd.h colvarbias_meta.h \ - colvarbias_restraint.h colvarscript.h colvarscript_commands.h \ - colvarscript_commands_colvar.h colvarscript_commands_bias.h \ - colvaratoms.h colvarcomp.h colvar_arithmeticpath.h \ - colvar_geometricpath.h colvarmodule_refs.h -$(COLVARS_OBJ_DIR)colvarparams.o: colvarparams.cpp colvarmodule.h \ - colvars_version.h colvarvalue.h colvartypes.h colvarparams.h -$(COLVARS_OBJ_DIR)colvarparse.o: colvarparse.cpp colvarmodule.h \ - colvars_version.h colvarvalue.h colvartypes.h colvarparse.h \ - colvarparams.h -$(COLVARS_OBJ_DIR)colvarproxy.o: colvarproxy.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h \ + ../../src/math_eigen_impl.h colvarparams.h colvarproxy.h \ colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvarscript.h colvarbias.h colvar.h colvarparse.h \ - colvarparams.h colvardeps.h colvarscript_commands.h \ - colvarscript_commands_colvar.h colvarscript_commands_bias.h \ - colvaratoms.h colvarmodule_utils.h + colvarproxy_volmaps.h colvar.h colvardeps.h colvarbias.h \ + colvarbias_abf.h colvargrid.h colvar_UIestimator.h colvarbias_abmd.h \ + colvarbias_restraint.h colvarbias_alb.h colvarbias_histogram.h \ + colvarbias_histogram_reweight_amd.h colvarbias_meta.h colvarscript.h \ + colvarscript_commands.h colvarscript_commands_colvar.h \ + colvarscript_commands_bias.h colvaratoms.h colvarcomp.h \ + colvar_geometricpath.h colvars_memstream.h colvarmodule_refs.h +$(COLVARS_OBJ_DIR)colvarparams.o: colvarparams.cpp colvarmodule.h \ + colvars_version.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarparams.h +$(COLVARS_OBJ_DIR)colvarparse.o: colvarparse.cpp colvarmodule.h \ + colvars_version.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarparse.h colvarparams.h \ + colvars_memstream.h +$(COLVARS_OBJ_DIR)colvarproxy.o: colvarproxy.cpp colvarmodule.h \ + colvars_version.h colvarproxy.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvar.h colvarvalue.h \ + colvarparse.h colvarparams.h colvardeps.h colvarbias.h colvarscript.h \ + colvarscript_commands.h colvarscript_commands_colvar.h \ + colvarscript_commands_bias.h colvarmodule_utils.h $(COLVARS_OBJ_DIR)colvarproxy_io.o: colvarproxy_io.cpp colvarmodule.h \ colvars_version.h colvarproxy_io.h $(COLVARS_OBJ_DIR)colvarproxy_replicas.o: colvarproxy_replicas.cpp \ colvarmodule.h colvars_version.h colvarproxy.h colvartypes.h \ - colvarvalue.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h + ../../src/math_eigen_impl.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h $(COLVARS_OBJ_DIR)colvarproxy_system.o: colvarproxy_system.cpp \ - colvarmodule.h colvars_version.h colvartypes.h colvarproxy_system.h + colvarmodule.h colvars_version.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarproxy_system.h $(COLVARS_OBJ_DIR)colvarproxy_tcl.o: colvarproxy_tcl.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h \ - colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvaratoms.h colvarparse.h colvarparams.h \ - colvardeps.h + colvars_version.h colvarproxy.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvaratoms.h colvarparse.h \ + colvarvalue.h colvarparams.h colvardeps.h $(COLVARS_OBJ_DIR)colvarproxy_volmaps.o: colvarproxy_volmaps.cpp \ colvarmodule.h colvars_version.h colvarproxy_volmaps.h \ colvarmodule_utils.h $(COLVARS_OBJ_DIR)colvarscript.o: colvarscript.cpp colvarproxy.h \ - colvarmodule.h colvars_version.h colvartypes.h colvarvalue.h \ - colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvardeps.h colvarparse.h colvarparams.h \ - colvarscript.h colvarbias.h colvar.h colvarscript_commands.h \ + colvarmodule.h colvars_version.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvardeps.h colvarparse.h \ + colvarvalue.h colvarparams.h colvarscript.h colvarscript_commands.h \ colvarscript_commands_colvar.h colvarscript_commands_bias.h $(COLVARS_OBJ_DIR)colvarscript_commands.o: colvarscript_commands.cpp \ - colvarproxy.h colvarmodule.h colvars_version.h colvartypes.h \ - colvarvalue.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ - colvarproxy_volmaps.h colvardeps.h colvarparse.h colvarparams.h \ - colvarscript.h colvarbias.h colvar.h colvarscript_commands.h \ - colvarscript_commands_colvar.h colvarscript_commands_bias.h + colvar.h colvarmodule.h colvars_version.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarparse.h colvarparams.h colvardeps.h \ + colvarbias.h colvarproxy.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvarscript.h \ + colvarscript_commands.h colvarscript_commands_colvar.h \ + colvarscript_commands_bias.h $(COLVARS_OBJ_DIR)colvarscript_commands_bias.o: \ colvarscript_commands_bias.cpp colvarproxy.h colvarmodule.h \ - colvars_version.h colvartypes.h colvarvalue.h colvarproxy_io.h \ - colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ - colvardeps.h colvarparse.h colvarparams.h colvarscript.h colvarbias.h \ - colvar.h colvarscript_commands.h colvarscript_commands_colvar.h \ - colvarscript_commands_bias.h + colvars_version.h colvartypes.h ../../src/math_eigen_impl.h \ + colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ + colvarproxy_volmaps.h colvarbias.h colvar.h colvarvalue.h colvarparse.h \ + colvarparams.h colvardeps.h colvarscript.h colvarscript_commands.h \ + colvarscript_commands_colvar.h colvarscript_commands_bias.h $(COLVARS_OBJ_DIR)colvarscript_commands_colvar.o: \ - colvarscript_commands_colvar.cpp colvarproxy.h colvarmodule.h \ - colvars_version.h colvartypes.h colvarvalue.h colvarproxy_io.h \ - colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h \ - colvardeps.h colvarparse.h colvarparams.h colvarscript.h colvarbias.h \ - colvar.h colvarscript_commands.h colvarscript_commands_colvar.h \ - colvarscript_commands_bias.h + colvarscript_commands_colvar.cpp colvar.h colvarmodule.h \ + colvars_version.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarparse.h colvarparams.h colvardeps.h \ + colvarproxy.h colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ + colvarproxy_volmaps.h colvarscript.h colvarscript_commands.h \ + colvarscript_commands_colvar.h colvarscript_commands_bias.h +$(COLVARS_OBJ_DIR)colvars_memstream.o: colvars_memstream.cpp \ + colvarmodule.h colvars_version.h colvartypes.h \ + ../../src/math_eigen_impl.h colvarvalue.h colvars_memstream.h $(COLVARS_OBJ_DIR)colvartypes.o: colvartypes.cpp colvarmodule.h \ - colvars_version.h colvartypes.h colvarparse.h colvarvalue.h \ - colvarparams.h ../../src/math_eigen_impl.h + colvars_version.h colvartypes.h ../../src/math_eigen_impl.h \ + colvaratoms.h colvarproxy.h colvarproxy_io.h colvarproxy_system.h \ + colvarproxy_tcl.h colvarproxy_volmaps.h colvarparse.h colvarvalue.h \ + colvarparams.h colvardeps.h colvar_rotation_derivative.h $(COLVARS_OBJ_DIR)colvarvalue.o: colvarvalue.cpp colvarmodule.h \ - colvars_version.h colvarvalue.h colvartypes.h + colvars_version.h colvarvalue.h colvartypes.h \ + ../../src/math_eigen_impl.h colvars_memstream.h $(COLVARS_OBJ_DIR)colvar_neuralnetworkcompute.o: \ colvar_neuralnetworkcompute.cpp colvar_neuralnetworkcompute.h \ colvarparse.h colvarmodule.h colvars_version.h colvarvalue.h \ - colvartypes.h colvarparams.h colvarproxy.h colvarproxy_io.h \ - colvarproxy_system.h colvarproxy_tcl.h colvarproxy_volmaps.h + colvartypes.h ../../src/math_eigen_impl.h colvarparams.h colvarproxy.h \ + colvarproxy_io.h colvarproxy_system.h colvarproxy_tcl.h \ + colvarproxy_volmaps.h diff --git a/lib/colvars/colvar.cpp b/lib/colvars/colvar.cpp index 0cb5c1ebdb..58eb87fd0e 100644 --- a/lib/colvars/colvar.cpp +++ b/lib/colvars/colvar.cpp @@ -16,13 +16,18 @@ #include "colvarmodule.h" #include "colvarvalue.h" #include "colvarparse.h" -#include "colvar.h" #include "colvarcomp.h" -#include "colvarscript.h" +#include "colvar.h" +#include "colvarbias.h" +#include "colvars_memstream.h" + + +std::map> colvar::global_cvc_map = + std::map>(); + +std::map colvar::global_cvc_desc_map = + std::map(); -#if (__cplusplus >= 201103L) -std::map> colvar::global_cvc_map = std::map>(); -#endif colvar::colvar() { @@ -36,6 +41,8 @@ colvar::colvar() dev_null = 0.0; #endif + matching_state = false; + expand_boundaries = false; description = "uninitialized colvar"; @@ -131,7 +138,14 @@ int colvar::init(std::string const &conf) // Sort array of cvcs based on their names // Note: default CVC names are in input order for same type of CVC - std::sort(cvcs.begin(), cvcs.end(), colvar::compare_cvc); + std::sort(cvcs.begin(), cvcs.end(), + [](std::shared_ptr const &cvc1, + std::shared_ptr const &cvc2) -> bool { + if (cvc1 && cvc2) { + return cvc1->name < cvc2->name; + } + return false; + }); if(cvcs.size() > 1) { cvm::log("Sorted list of components for this scripted colvar:\n"); @@ -186,9 +200,9 @@ int colvar::init(std::string const &conf) if ((cvcs[i])->sup_np < 0) { cvm::log("Warning: you chose a negative exponent in the combination; " - "if you apply forces, the simulation may become unstable " - "when the component \""+ - (cvcs[i])->function_type+"\" approaches zero.\n"); + "if you apply forces, the simulation may become unstable " + "when the component \""+ + (cvcs[i])->function_type()+"\" approaches zero.\n"); } } } @@ -295,7 +309,7 @@ int colvar::init(std::string const &conf) error_code |= init_grid_parameters(conf); // Detect if we have a single component that is an alchemical lambda - if (is_enabled(f_cv_single_cvc) && cvcs[0]->function_type == "alchLambda") { + if (is_enabled(f_cv_single_cvc) && cvcs[0]->function_type() == "alchLambda") { enable(f_cv_external); } @@ -468,13 +482,6 @@ int colvar::init_custom_function(std::string const &conf) size_t pos = 0; if (key_lookup(conf, "customFunction", &expr, &pos)) { std::string msg("Error: customFunction requires the Lepton library."); -#if (__cplusplus < 201103L) - // NOTE: this is not ideal; testing for the Lepton library's version would - // be more accurate, but also less portable - msg += - std::string(" Note also that recent versions of Lepton require C++11: " - "please see https://colvars.github.io/README-c++11.html."); -#endif return cvm::error(msg, COLVARS_NOT_IMPLEMENTED); } @@ -697,9 +704,14 @@ int colvar::init_extended_Lagrangian(std::string const &conf) } if (ext_gamma != 0.0) { enable(f_cv_Langevin); + cvm::main()->cite_feature("BAOA integrator"); ext_gamma *= 1.0e-3; // correct as long as input is required in ps-1 and cvm::dt() is in fs // Adjust Langevin sigma for slow time step if time_step_factor != 1 - ext_sigma = cvm::sqrt(2.0 * proxy->boltzmann() * temp * ext_gamma * ext_mass / (cvm::dt() * cvm::real(time_step_factor))); + // Eq. (6a) in https://doi.org/10.1021/acs.jctc.2c00585 + ext_sigma = cvm::sqrt((1.0 - cvm::exp(-2.0 * ext_gamma * cvm::dt() * cvm::real(time_step_factor))) + * ext_mass * proxy->boltzmann() * temp); + } else { + ext_sigma = 0.0; } get_keyval_feature(this, conf, "reflectingLowerBoundary", f_cv_reflecting_lower_boundary, false); @@ -744,75 +756,56 @@ int colvar::init_output_flags(std::string const &conf) return COLVARS_OK; } -#if (__cplusplus >= 201103L) -// C++11 -template int colvar::init_components_type(std::string const &, - char const * /* def_desc */, - char const *def_config_key) { - // global_cvc_map is only supported in the C++11 case - global_cvc_map[def_config_key] = [](const std::string& cvc_conf){return new def_class_name(cvc_conf);}; - // TODO: maybe it is better to do more check to avoid duplication in the map? - return COLVARS_OK; + +template +void colvar::add_component_type(char const *def_description, char const *def_config_key) +{ + if (global_cvc_map.count(def_config_key) == 0) { + global_cvc_map[def_config_key] = []() { + return new def_class_name(); + }; + global_cvc_desc_map[def_config_key] = std::string(def_description); + } } -int colvar::init_components_type_from_global_map(const std::string& conf, - const char* def_config_key) { -#else -template int colvar::init_components_type(std::string const & conf, - char const * /* def_desc */, - char const *def_config_key) { -#endif + +int colvar::init_components_type(const std::string& conf, const char* def_config_key) { size_t def_count = 0; std::string def_conf = ""; size_t pos = 0; + int error_code = COLVARS_OK; while ( this->key_lookup(conf, def_config_key, &def_conf, &pos) ) { - if (!def_conf.size()) continue; + cvm::log("Initializing " "a new \""+std::string(def_config_key)+"\" component"+ (cvm::debug() ? ", with configuration:\n"+def_conf : ".\n")); + cvc *cvcp = global_cvc_map[def_config_key](); + if (!cvcp) { + return cvm::error("Error: in creating object of type \"" + std::string(def_config_key) + + "\".\n", + COLVARS_MEMORY_ERROR); + } + cvcs.push_back(std::shared_ptr(cvcp)); + cvm::increase_depth(); - // only the following line is different from init_components_type - // in the non-C++11 case -#if (__cplusplus >= 201103L) - cvc *cvcp = global_cvc_map.at(def_config_key)(def_conf); -#else - cvc *cvcp = new def_class_name(def_conf); -#endif - if (cvcp != NULL) { - cvcs.push_back(cvcp); - cvcp->check_keywords(def_conf, def_config_key); - cvcp->set_function_type(def_config_key); - if (cvm::get_error()) { - cvm::error("Error: in setting up component \""+ - std::string(def_config_key)+"\".\n", COLVARS_INPUT_ERROR); - return COLVARS_INPUT_ERROR; - } - cvm::decrease_depth(); - } else { - cvm::decrease_depth(); - cvm::error("Error: in allocating component \""+ - std::string(def_config_key)+"\".\n", - COLVARS_MEMORY_ERROR); - return COLVARS_MEMORY_ERROR; - } - - if ( (cvcp->period != 0.0) || (cvcp->wrap_center != 0.0) ) { - if (! cvcp->is_enabled(f_cvc_periodic)) { - cvm::error("Error: invalid use of period and/or " - "wrapAround in a \""+ - std::string(def_config_key)+ - "\" component.\n"+ - "Period: "+cvm::to_str(cvcp->period) + - " wrapAround: "+cvm::to_str(cvcp->wrap_center), - COLVARS_INPUT_ERROR); - return COLVARS_INPUT_ERROR; - } + int error_code_this = cvcp->init(def_conf); + if (error_code_this == COLVARS_OK) { + // Checking for invalid keywords only if the parsing was successful, otherwise any + // early-returns due to errors would raise false positives + error_code_this |= cvcp->check_keywords(def_conf, def_config_key); + } + cvm::decrease_depth(); + if (error_code_this != COLVARS_OK) { + error_code |= + cvm::error("Error: in setting up component \"" + std::string(def_config_key) + "\".\n", + COLVARS_INPUT_ERROR); } + // Set default name if it doesn't have one if ( ! cvcs.back()->name.size()) { std::ostringstream s; s << def_config_key << std::setfill('0') << std::setw(4) << ++def_count; @@ -822,135 +815,138 @@ template int colvar::init_components_type(std::string c cvcs.back()->setup(); if (cvm::debug()) { - cvm::log("Done initializing a \""+ - std::string(def_config_key)+ - "\" component"+ - (cvm::debug() ? - ", named \""+cvcs.back()->name+"\"" - : "")+".\n"); + cvm::log("Done initializing a \"" + std::string(def_config_key) + "\" component" + + (cvm::debug() ? ", named \"" + cvcs.back()->name + "\"" : "") + ".\n"); } + def_conf = ""; if (cvm::debug()) { - cvm::log("Parsed "+cvm::to_str(cvcs.size())+ - " components at this time.\n"); + cvm::log("Parsed " + cvm::to_str(cvcs.size()) + " components at this time.\n"); } } - return COLVARS_OK; + return error_code; } + +void colvar::define_component_types() +{ + colvarproxy *proxy = cvm::main()->proxy; + + add_component_type("distance", "distance"); + add_component_type("distance vector", "distanceVec"); + add_component_type("Cartesian coordinates", "cartesian"); + add_component_type("distance vector direction", "distanceDir"); + add_component_type("distance projection on an axis", "distanceZ"); + add_component_type("distance projection on a plane", "distanceXY"); + add_component_type("spherical polar angle theta", "polarTheta"); + add_component_type("spherical azimuthal angle phi", "polarPhi"); + add_component_type("average distance weighted by inverse power", "distanceInv"); + add_component_type("N1xN2-long vector of pairwise distances", "distancePairs"); + add_component_type("dipole magnitude", "dipoleMagnitude"); + add_component_type("coordination number", "coordNum"); + add_component_type("self-coordination number", "selfCoordNum"); + add_component_type("group-coordination number", "groupCoord"); + add_component_type("angle", "angle"); + add_component_type("dipole angle", "dipoleAngle"); + add_component_type("dihedral", "dihedral"); + add_component_type("hydrogen bond", "hBond"); + + if (proxy->check_atom_name_selections_available() == COLVARS_OK) { + add_component_type("alpha helix", "alpha"); + add_component_type("dihedral principal component", "dihedralPC"); + } + + add_component_type("orientation", "orientation"); + add_component_type("orientation angle", "orientationAngle"); + add_component_type("orientation projection", "orientationProj"); + add_component_type("tilt", "tilt"); + add_component_type("spin angle", "spinAngle"); + add_component_type("RMSD", "rmsd"); + add_component_type("radius of gyration", "gyration"); + add_component_type("moment of inertia", "inertia"); + add_component_type("moment of inertia around an axis", "inertiaZ"); + add_component_type("eigenvector", "eigenvector"); + add_component_type("alchemical coupling parameter", "alchLambda"); + add_component_type("force on alchemical coupling parameter", "alchFLambda"); + add_component_type("arithmetic path collective variables (s)", "aspath"); + add_component_type("arithmetic path collective variables (z)", "azpath"); + add_component_type("geometrical path collective variables (s)", "gspath"); + add_component_type("geometrical path collective variables (z)", "gzpath"); + add_component_type("linear combination of other collective variables", "linearCombination"); + add_component_type("geometrical path collective variables (s) for other CVs", "gspathCV"); + add_component_type("geometrical path collective variables (z) for other CVs", "gzpathCV"); + add_component_type("arithmetic path collective variables (s) for other CVs", "aspathCV"); + add_component_type("arithmetic path collective variables (s) for other CVs", "azpathCV"); + add_component_type("euler phi angle of the optimal orientation", "eulerPhi"); + add_component_type("euler psi angle of the optimal orientation", "eulerPsi"); + add_component_type("euler theta angle of the optimal orientation", "eulerTheta"); + +#ifdef LEPTON + add_component_type("CV with support of the Lepton custom function", "customColvar"); +#endif + + add_component_type("neural network CV for other CVs", "neuralNetwork"); + + if (proxy->check_volmaps_available() == COLVARS_OK) { + add_component_type("total value of atomic map", "mapTotal"); + } +} + + int colvar::init_components(std::string const &conf) { int error_code = COLVARS_OK; size_t i = 0, j = 0; - // in the non-C++11 case, the components are initialized directly by init_components_type; - // in the C++11 case, the components are stored in the global_cvc_map at first - // by init_components_type, and then the map is iterated to initialize all components. - error_code |= init_components_type(conf, "distance", "distance"); - error_code |= init_components_type(conf, "distance vector", "distanceVec"); - error_code |= init_components_type(conf, "Cartesian coordinates", "cartesian"); - error_code |= init_components_type(conf, "distance vector " - "direction", "distanceDir"); - error_code |= init_components_type(conf, "distance projection " - "on an axis", "distanceZ"); - error_code |= init_components_type(conf, "distance projection " - "on a plane", "distanceXY"); - error_code |= init_components_type(conf, "spherical polar angle theta", - "polarTheta"); - error_code |= init_components_type(conf, "spherical azimuthal angle phi", - "polarPhi"); - error_code |= init_components_type(conf, "average distance " - "weighted by inverse power", "distanceInv"); - error_code |= init_components_type(conf, "N1xN2-long vector " - "of pairwise distances", "distancePairs"); - error_code |= init_components_type(conf, "dipole magnitude", - "dipoleMagnitude"); - error_code |= init_components_type(conf, "coordination " - "number", "coordNum"); - error_code |= init_components_type(conf, "self-coordination " - "number", "selfCoordNum"); - error_code |= init_components_type(conf, "group-coordination " - "number", "groupCoord"); - error_code |= init_components_type(conf, "angle", "angle"); - error_code |= init_components_type(conf, "dipole angle", "dipoleAngle"); - error_code |= init_components_type(conf, "dihedral", "dihedral"); - error_code |= init_components_type(conf, "hydrogen bond", "hBond"); - error_code |= init_components_type(conf, "alpha helix", "alpha"); - error_code |= init_components_type(conf, "dihedral " - "principal component", "dihedralPC"); - error_code |= init_components_type(conf, "orientation", "orientation"); - error_code |= init_components_type(conf, "orientation " - "angle", "orientationAngle"); - error_code |= init_components_type(conf, "orientation " - "projection", "orientationProj"); - error_code |= init_components_type(conf, "tilt", "tilt"); - error_code |= init_components_type(conf, "spin angle", "spinAngle"); - error_code |= init_components_type(conf, "RMSD", "rmsd"); - error_code |= init_components_type(conf, "radius of " - "gyration", "gyration"); - error_code |= init_components_type(conf, "moment of " - "inertia", "inertia"); - error_code |= init_components_type(conf, "moment of inertia around an axis", "inertiaZ"); - error_code |= init_components_type(conf, "eigenvector", "eigenvector"); - error_code |= init_components_type(conf, "alchemical coupling parameter", "alchLambda"); - error_code |= init_components_type(conf, "force on alchemical coupling parameter", "alchFLambda"); - error_code |= init_components_type(conf, "geometrical path collective variables (s)", "gspath"); - error_code |= init_components_type(conf, "geometrical path collective variables (z)", "gzpath"); - error_code |= init_components_type(conf, "linear combination of other collective variables", "linearCombination"); - error_code |= init_components_type(conf, "geometrical path collective variables (s) for other CVs", "gspathCV"); - error_code |= init_components_type(conf, "geometrical path collective variables (z) for other CVs", "gzpathCV"); - error_code |= init_components_type(conf, "arithmetic path collective variables (s) for other CVs", "aspathCV"); - error_code |= init_components_type(conf, "arithmetic path collective variables (s) for other CVs", "azpathCV"); - error_code |= init_components_type(conf, "euler phi angle of the optimal orientation", "eulerPhi"); - error_code |= init_components_type(conf, "euler psi angle of the optimal orientation", "eulerPsi"); - error_code |= init_components_type(conf, "euler theta angle of the optimal orientation", "eulerTheta"); -#ifdef LEPTON - error_code |= init_components_type(conf, "CV with support of the lepton custom function", "customColvar"); -#endif - error_code |= init_components_type(conf, "neural network CV for other CVs", "NeuralNetwork"); + if (global_cvc_map.empty()) { + define_component_types(); + } - error_code |= init_components_type(conf, "total value of atomic map", "mapTotal"); -#if (__cplusplus >= 201103L) // iterate over all available CVC in the map for (auto it = global_cvc_map.begin(); it != global_cvc_map.end(); ++it) { - error_code |= init_components_type_from_global_map(conf, it->first.c_str()); + error_code |= init_components_type(conf, it->first.c_str()); // TODO: is it better to check the error code here? if (error_code != COLVARS_OK) { cvm::log("Failed to initialize " + it->first + " with the following configuration:\n"); cvm::log(conf); // TODO: should it stop here? + break; } } -#endif - if (!cvcs.size() || (error_code != COLVARS_OK)) { - cvm::error("Error: no valid components were provided " - "for this collective variable.\n", - COLVARS_INPUT_ERROR); - return COLVARS_INPUT_ERROR; + + if (!cvcs.size()) { + std::string msg("Error: no valid components were provided for this collective variable.\n"); + msg += "Currently available component types are: \n"; + for (auto it = global_cvc_desc_map.begin(); it != global_cvc_desc_map.end(); ++it) { + msg += " " + it->first + " -- " + it->second + "\n"; + } + msg += "\nPlease note that some of the above types may still be unavailable, irrespective of this error.\n"; + error_code |= cvm::error(msg, COLVARS_INPUT_ERROR); } // Check for uniqueness of CVC names (esp. if user-provided) for (i = 0; i < cvcs.size(); i++) { - for (j = i+1; j < cvcs.size(); j++) { + for (j = i + 1; j < cvcs.size(); j++) { if (cvcs[i]->name == cvcs[j]->name) { - cvm::error("Components " + cvm::to_str(i) + " and " + cvm::to_str(j) +\ - " cannot have the same name \"" + cvcs[i]->name+ "\".\n", COLVARS_INPUT_ERROR); - return COLVARS_INPUT_ERROR; + error_code |= cvm::error("Components " + cvm::to_str(i) + " and " + cvm::to_str(j) + + " cannot have the same name \"" + cvcs[i]->name + "\".\n", + COLVARS_INPUT_ERROR); } } } - n_active_cvcs = cvcs.size(); - - // Store list of children cvcs for dependency checking purposes - for (i = 0; i < cvcs.size(); i++) { - add_child(cvcs[i]); + if (error_code == COLVARS_OK) { + // Store list of children cvcs for dependency checking purposes + for (i = 0; i < cvcs.size(); i++) { + add_child(cvcs[i].get()); + } + // By default all CVCs are active at the start + n_active_cvcs = cvcs.size(); + cvm::log("All components initialized.\n"); } - cvm::log("All components initialized.\n"); - - return COLVARS_OK; + return error_code; } @@ -1220,7 +1216,7 @@ int colvar::init_dependencies() { // Initialize feature_states for each instance feature_states.reserve(f_cv_ntot); - for (i = 0; i < f_cv_ntot; i++) { + for (i = feature_states.size(); i < f_cv_ntot; i++) { feature_states.push_back(feature_state(true, false)); // Most features are available, so we set them so // and list exceptions below @@ -1283,14 +1279,10 @@ colvar::~colvar() // for dependency purposes remove_all_children(); - for (std::vector::reverse_iterator ci = cvcs.rbegin(); - ci != cvcs.rend(); - ++ci) { - // clear all children of this cvc (i.e. its atom groups) - // because the cvc base class destructor can't do it early enough - // and we don't want to have each cvc derived class do it separately + for (auto ci = cvcs.rbegin(); ci != cvcs.rend(); ++ci) { + // Clear all children of this cvc (i.e. its atom groups), because the cvc base class destructor + // can't do it early enough and we don't want to have each cvc derived class do it separately (*ci)->remove_all_children(); - delete *ci; } cvcs.clear(); @@ -1512,6 +1504,7 @@ int colvar::collect_cvc_values() cvm::to_str(x, cvm::cv_width, cvm::cv_prec)+".\n"); if (after_restart) { + x_old = x_restart; if (cvm::proxy->simulation_running()) { cvm::real const jump2 = dist2(x, x_restart) / (width*width); if (jump2 > 0.25) { @@ -1555,12 +1548,12 @@ int colvar::calc_cvc_gradients(int first_cvc, size_t num_cvcs) (cvcs[i])->debug_gradients(); } - cvm::decrease_depth(); - if (cvm::debug()) cvm::log("Done calculating gradients of colvar \""+this->name+"\".\n"); } + cvm::decrease_depth(); + return COLVARS_OK; } @@ -1706,12 +1699,13 @@ int colvar::calc_colvar_properties() // Do the same if no simulation is running (eg. VMD postprocessing) if ((cvm::step_relative() == 0 && !after_restart) || x_ext.type() == colvarvalue::type_notset || !cvm::proxy->simulation_running()) { x_ext = x; + cvm::log("Initializing extended coordinate to colvar value.\n"); if (is_enabled(f_cv_reflecting_lower_boundary) && x_ext < lower_boundary) { - cvm::log("Warning: initializing extended coordinate to reflective lower boundary, as colvar value is below."); + cvm::log("Warning: initializing extended coordinate to reflective lower boundary, as colvar value is below.\n"); x_ext = lower_boundary; } if (is_enabled(f_cv_reflecting_upper_boundary) && x_ext > upper_boundary) { - cvm::log("Warning: initializing extended coordinate to reflective upper boundary, as colvar value is above."); + cvm::log("Warning: initializing extended coordinate to reflective upper boundary, as colvar value is above.\n"); x_ext = upper_boundary; } @@ -1721,8 +1715,18 @@ int colvar::calc_colvar_properties() // Special case of a repeated timestep (eg. multiple NAMD "run" statements) // revert values of the extended coordinate and velocity prior to latest integration if (cvm::proxy->simulation_running() && cvm::step_relative() == prev_timestep) { - x_ext = prev_x_ext; - v_ext = prev_v_ext; + // Detect jumps due to discrete changes in coordinates (eg. in replica exchange schemes) + cvm::real const jump2 = dist2(x, x_old) / (width*width); + if (jump2 > 0.25) { + cvm::log("Detected discrete jump in colvar value from " + + cvm::to_str(x_old) + " to " + cvm::to_str(x) + ".\n"); + cvm::log("Reinitializing extended coordinate to colvar value.\n"); + x_ext = x; + } else { + cvm::log("Reinitializing extended coordinate to last value.\n"); + x_ext = prev_x_ext; + v_ext = prev_v_ext; + } } // report the restraint center as "value" // These position and velocities come from integration at the _previous timestep_ in update_forces_energy() @@ -1830,9 +1834,11 @@ void colvar::update_extended_Lagrangian() f += fb_actual; } - fr = f; - // External force has been scaled for a 1-timestep impulse, scale it back because we will - // integrate it with the colvar's own timestep factor + // fr: bias force on extended variable (without harmonic spring), for output in trajectory + fr = f; + + // External force has been scaled for an inner-timestep impulse (for the back-end integrator) + // here we scale it back because this integrator uses only the outer (long) timestep f_ext = f / cvm::real(time_step_factor); colvarvalue f_system(fr.type()); // force exterted by the system on the extended DOF @@ -1845,15 +1851,14 @@ void colvar::update_extended_Lagrangian() } else { // the total force is applied to the fictitious mass, while the // atoms only feel the harmonic force + wall force - // fr: bias force on extended variable (without harmonic spring), for output in trajectory // f_ext: total force on extended variable (including harmonic spring) // f: - initially, external biasing force // - after this code block, colvar force to be applied to atomic coordinates // ie. spring force (fb_actual will be added just below) f_system = (-0.5 * ext_force_k) * this->dist2_lgrad(x_ext, x); f = -1.0 * f_system; - // Coupling force is a slow force, to be applied to atomic coords impulse-style - // over a single MD timestep + // Coupling force will be applied to atomic coords impulse-style + // over an inner timestep of the back-end integrator f *= cvm::real(time_step_factor); } f_ext += f_system; @@ -1873,34 +1878,57 @@ void colvar::update_extended_Lagrangian() prev_x_ext = x_ext; prev_v_ext = v_ext; - // leapfrog: starting from x_i, f_i, v_(i-1/2) - v_ext += (0.5 * dt) * f_ext / ext_mass; - // Because of leapfrog, kinetic energy at time i is approximate + // BAOA (GSD) integrator as formulated in https://doi.org/10.1021/acs.jctc.2c00585 + // starting from x_t, f_t, v_(t-1/2) + // Variation: the velocity step is split in two to estimate the kinetic energy at time t + // so this is more of a "BBAOA" scheme: a rearranged BAOAB where the second B is deferred + // to the next time step for implementation reasons (waiting for the force calculation) + + // [B] Eq. (10a) split into two half-steps + // would reduce to leapfrog when gamma = 0 if this was the reported velocity + v_ext += 0.5 * dt * f_ext / ext_mass; + + // Kinetic energy at t kinetic_energy = 0.5 * ext_mass * v_ext * v_ext; + + // Potential energy at t potential_energy = 0.5 * ext_force_k * this->dist2(x_ext, x); - // leap to v_(i+1/2) + + // Total energy will lag behind position by one timestep + // (current kinetic energy is not accessible before the next force calculation) + + v_ext += 0.5 * dt * f_ext / ext_mass; + // Final v_ext lags behind x_ext by half a timestep + + // [A] Half step in position (10b) + x_ext += dt * v_ext / 2.0; + + // [O] leap to v_(i+1/2) (10c) if (is_enabled(f_cv_Langevin)) { - v_ext -= dt * ext_gamma * v_ext; colvarvalue rnd(x); rnd.set_random(); - v_ext += dt * ext_sigma * rnd / ext_mass; + // ext_sigma has been computed at init time according to (10c) + v_ext = cvm::exp(- 1.0 * dt * ext_gamma) * v_ext + ext_sigma * rnd / ext_mass; } - v_ext += (0.5 * dt) * f_ext / ext_mass; - x_ext += dt * v_ext; + // [A] Second half step in position (10d) + x_ext += dt * v_ext / 2.0; cvm::real delta = 0; // Length of overshoot past either reflecting boundary if ((is_enabled(f_cv_reflecting_lower_boundary) && (delta = x_ext - lower_boundary) < 0) || (is_enabled(f_cv_reflecting_upper_boundary) && (delta = x_ext - upper_boundary) > 0)) { + // Reflect arrival position x_ext -= 2.0 * delta; - v_ext *= -1.0; - if ((is_enabled(f_cv_reflecting_lower_boundary) && (delta = x_ext - lower_boundary) < 0) || - (is_enabled(f_cv_reflecting_upper_boundary) && (delta = x_ext - upper_boundary) > 0)) { + // Bounce happened on average at t+1/2 -> reflect velocity at t+1/2 + v_ext = -0.5 * (prev_v_ext + v_ext); + if ((is_enabled(f_cv_reflecting_lower_boundary) && (x_ext - lower_boundary) < 0.0) || + (is_enabled(f_cv_reflecting_upper_boundary) && (x_ext - upper_boundary) > 0.0)) { cvm::error("Error: extended coordinate value " + cvm::to_str(x_ext) + " is still outside boundaries after reflection.\n"); } } x_ext.apply_constraints(); this->wrap(x_ext); + if (is_enabled(f_cv_external)) { // Colvar value is constrained to the extended value x = x_ext; @@ -1914,9 +1942,8 @@ int colvar::end_of_step() if (cvm::debug()) cvm::log("End of step for colvar \""+this->name+"\".\n"); - if (is_enabled(f_cv_fdiff_velocity)) { - x_old = x; - } + // Used for fdiff_velocity and for detecting jumps for extended Lagrangian colvars + x_old = x; if (is_enabled(f_cv_subtract_applied_force)) { f_old = f; @@ -2256,44 +2283,65 @@ void colvar::wrap(colvarvalue &x_unwrapped) const std::istream & colvar::read_state(std::istream &is) { - std::streampos const start_pos = is.tellg(); + auto const start_pos = is.tellg(); std::string conf; - if ( !(is >> colvarparse::read_block("colvar", &conf)) ) { + if ( !(is >> colvarparse::read_block("colvar", &conf)) || + (check_matching_state(conf) != COLVARS_OK) ) { // this is not a colvar block is.clear(); - is.seekg(start_pos, std::ios::beg); + is.seekg(start_pos); is.setstate(std::ios::failbit); return is; } - { - std::string check_name = ""; - get_keyval(conf, "name", check_name, - std::string(""), colvarparse::parse_silent); - if (check_name.size() == 0) { - cvm::error("Error: Collective variable in the " - "restart file without any identifier.\n", COLVARS_INPUT_ERROR); - is.clear(); - is.seekg(start_pos, std::ios::beg); - is.setstate(std::ios::failbit); - return is; - } - - if (check_name != name) { - if (cvm::debug()) { - cvm::log("Ignoring state of colvar \""+check_name+ - "\": this colvar is named \""+name+"\".\n"); - } - is.seekg(start_pos, std::ios::beg); - return is; - } + if (!matching_state) { + // No errors reading, but this state is not for this colvar; rewind + is.seekg(start_pos); + return is; } + if (set_state_params(conf) != COLVARS_OK) { + is.clear(); + is.seekg(start_pos); + is.setstate(std::ios::failbit); + } + + return is; +} + + +int colvar::check_matching_state(std::string const &conf) +{ + std::string check_name = ""; + get_keyval(conf, "name", check_name, std::string(""), colvarparse::parse_silent); + + if (check_name.size() == 0) { + return cvm::error("Error: Collective variable in the " + "state file without any identifier.\n", COLVARS_INPUT_ERROR); + } + + if (check_name != name) { + if (cvm::debug()) { + cvm::log("Ignoring state of colvar \""+check_name+ + "\": this colvar is named \""+name+"\".\n"); + } + matching_state = false; + } else { + matching_state = true; + } + + return COLVARS_OK; +} + + +int colvar::set_state_params(std::string const &conf) +{ + int error_code = COLVARS_OK; if ( !(get_keyval(conf, "x", x, x, colvarparse::parse_silent)) ) { - cvm::log("Error: restart file does not contain " - "the value of the colvar \""+ - name+"\" .\n"); + error_code |= cvm::error("Error: restart file does not contain " + "the value of the colvar \""+ + name+"\" .\n", COLVARS_INPUT_ERROR); } else { cvm::log("Restarting collective variable \""+name+"\" from value: "+ cvm::to_str(x)+"\n"); @@ -2306,9 +2354,10 @@ std::istream & colvar::read_state(std::istream &is) colvarvalue(x.type()), colvarparse::parse_silent)) || !(get_keyval(conf, "extended_v", v_ext, colvarvalue(x.type()), colvarparse::parse_silent)) ) { - cvm::log("Error: restart file does not contain " - "\"extended_x\" or \"extended_v\" for the colvar \""+ - name+"\", but you requested \"extendedLagrangian\".\n"); + error_code |= cvm::error("Error: restart file does not contain " + "\"extended_x\" or \"extended_v\" for the colvar \""+ + name+"\", but you requested \"extendedLagrangian\".\n", + COLVARS_INPUT_ERROR); } x_reported = x_ext; } else { @@ -2319,9 +2368,10 @@ std::istream & colvar::read_state(std::istream &is) if ( !(get_keyval(conf, "v", v_fdiff, colvarvalue(x.type()), colvarparse::parse_silent)) ) { - cvm::log("Error: restart file does not contain " - "the velocity for the colvar \""+ - name+"\", but you requested \"outputVelocity\".\n"); + error_code |= cvm::error("Error: restart file does not contain " + "the velocity for the colvar \""+ + name+"\", but you requested \"outputVelocity\".\n", + COLVARS_INPUT_ERROR); } if (is_enabled(f_cv_extended_Lagrangian)) { @@ -2331,6 +2381,41 @@ std::istream & colvar::read_state(std::istream &is) } } + return error_code; +} + + +cvm::memory_stream &colvar::read_state(cvm::memory_stream &is) +{ + auto const start_pos = is.tellg(); + std::string key, data; + if (is >> key) { + if (key == "colvar") { + // Read a formatted config string, then read the state parameters from it + if (is >> data) { + if (set_state_params(data) == COLVARS_OK) { + return is; + } + } + } + } + + auto const error_pos = is.tellg(); + + is.clear(); + is.seekg(start_pos); + is.setstate(std::ios::failbit); + + std::string error_msg("Error: in reading state data for colvar \"" + name + " at position " + + cvm::to_str(error_pos) + " in unformatted stream.\n"); + if (key.size() && key != "colvar") { + error_msg += "; the keyword read was \"" + key + "\", but \"colvar\" was expected"; + } + if (data.size()) { + error_msg += "; the configuration string read was not recognized"; + } + error_msg += ".\n"; + cvm::error(error_msg, COLVARS_INPUT_ERROR); return is; } @@ -2345,7 +2430,7 @@ std::istream & colvar::read_traj(std::istream &is) cvm::log("Error: in reading the value of colvar \""+ this->name+"\" from trajectory.\n"); is.clear(); - is.seekg(start_pos, std::ios::beg); + is.seekg(start_pos); is.setstate(std::ios::failbit); return is; } @@ -2385,10 +2470,23 @@ std::istream & colvar::read_traj(std::istream &is) // ******************** OUTPUT FUNCTIONS ******************** -std::ostream & colvar::write_state(std::ostream &os) { +std::ostream & colvar::write_state(std::ostream &os) const +{ + os << "colvar {\n" << get_state_params() << "}\n\n"; - os << "colvar {\n" - << " name " << name << "\n" + if (runave_outfile.size() > 0) { + cvm::main()->proxy->flush_output_stream(runave_outfile); + } + + return os; +} + + +std::string const colvar::get_state_params() const +{ + std::ostringstream os; + + os << " name " << name << "\n" << " x " << std::setprecision(cvm::cv_prec) << std::setw(cvm::cv_width) @@ -2412,7 +2510,13 @@ std::ostream & colvar::write_state(std::ostream &os) { << v_reported << "\n"; } - os << "}\n\n"; + return os.str(); +} + + +cvm::memory_stream & colvar::write_state(cvm::memory_stream &os) const +{ + os << std::string("colvar") << get_state_params(); if (runave_outfile.size() > 0) { cvm::main()->proxy->flush_output_stream(runave_outfile); @@ -2875,14 +2979,11 @@ int colvar::calc_runave() runave_variance *= 1.0 / cvm::real(runave_length-1); if (runave_outfile.size() > 0) { - std::ostream &runave_os = proxy->output_stream(runave_outfile); - runave_os << std::setw(cvm::it_width) << cvm::step_relative() - << " " - << std::setprecision(cvm::cv_prec) - << std::setw(cvm::cv_width) - << runave << " " - << std::setprecision(cvm::cv_prec) - << std::setw(cvm::cv_width) + std::ostream &runave_os = + proxy->output_stream(runave_outfile, "running average output file"); + runave_os << std::setw(cvm::it_width) << cvm::step_relative() << " " + << std::setprecision(cvm::cv_prec) << std::setw(cvm::cv_width) << runave << " " + << std::setprecision(cvm::cv_prec) << std::setw(cvm::cv_width) << cvm::sqrt(runave_variance) << "\n"; } } diff --git a/lib/colvars/colvar.h b/lib/colvars/colvar.h index 9af26dedd3..443e1e4bdd 100644 --- a/lib/colvars/colvar.h +++ b/lib/colvars/colvar.h @@ -10,12 +10,11 @@ #ifndef COLVAR_H #define COLVAR_H -#include - -#if (__cplusplus >= 201103L) -#include #include -#endif +#include +#include +#include +#include #include "colvarmodule.h" #include "colvarvalue.h" @@ -91,7 +90,7 @@ public: /// calculations, \link colvarbias_abf \endlink, it is used to /// calculate the grid spacing in the direction of this collective /// variable. - cvm::real width; + cvm::real width = 1.0; /// \brief Implementation of the feature list for colvar static std::vector cv_features; @@ -184,13 +183,13 @@ protected: /// Previous velocity of the restraint center colvarvalue prev_v_ext; /// Mass of the restraint center - cvm::real ext_mass; + cvm::real ext_mass = 0.0; /// Restraint force constant - cvm::real ext_force_k; + cvm::real ext_force_k = 0.0; /// Friction coefficient for Langevin extended dynamics - cvm::real ext_gamma; + cvm::real ext_gamma = 0.0; /// Amplitude of Gaussian white noise for Langevin extended dynamics - cvm::real ext_sigma; + cvm::real ext_sigma = 0.0; /// \brief Applied force on extended DOF, for output (unscaled if using MTS) colvarvalue fr; @@ -224,14 +223,14 @@ public: colvarvalue ft; /// Period, if this variable is periodic - cvm::real period; + cvm::real period = 0.0; /// Center of wrapping, if this variable is periodic - cvm::real wrap_center; + cvm::real wrap_center = 0.0; /// \brief Expand the boundaries of multiples of width, to keep the /// value always within range - bool expand_boundaries; + bool expand_boundaries = false; /// \brief Location of the lower boundary colvarvalue lower_boundary; @@ -252,6 +251,9 @@ public: /// Main init function int init(std::string const &conf); + /// Populate the map of available CVC types + void define_component_types(); + /// Parse the CVC configuration and allocate their data int init_components(std::string const &conf); @@ -271,17 +273,13 @@ public: virtual int init_dependencies(); private: - /// Parse the CVC configuration for all components of a certain type - template int init_components_type(std::string const & conf, - char const *def_desc, - char const *def_config_key); -#if (__cplusplus >= 201103L) - /// For the C++11 case, the names of all available components are - /// registered in the global map at first, and then the CVC configuration - /// is parsed by this function - int init_components_type_from_global_map(const std::string& conf, - const char* def_config_key); -#endif + + /// Declare an available CVC type and its description, register them in the global map + template + void add_component_type(char const *description, char const *config_key); + + /// Initialize any CVC objects matching the given key + int init_components_type(const std::string &conf, const char *config_key); public: @@ -387,10 +385,10 @@ public: protected: /// \brief Number of CVC objects with an active flag - size_t n_active_cvcs; + size_t n_active_cvcs = 0; /// Sum of square coefficients for active cvcs - cvm::real active_cvc_square_norm; + cvm::real active_cvc_square_norm = 0.0; /// Update the sum of square coefficients for active cvcs void update_active_cvc_square_norm(); @@ -460,16 +458,35 @@ public: /// Write a label to the trajectory file (comment line) std::ostream & write_traj_label(std::ostream &os); - /// Read the collective variable from a restart file + /// Read the colvar's state from a formatted input stream std::istream & read_state(std::istream &is); - /// Write the collective variable to a restart file - std::ostream & write_state(std::ostream &os); + + /// Read the colvar's state from an unformatted input stream + cvm::memory_stream & read_state(cvm::memory_stream &is); + + /// Check the name of the bias vs. the given string, set the matching_state flag accordingly + int check_matching_state(std::string const &state_conf); + + /// Read the values of colvar mutable data from a string (used by both versions of read_state()) + int set_state_params(std::string const &state_conf); + + /// Write the state information of this colvar in a block of text, suitable for later parsing + std::string const get_state_params() const; + + /// Write the colvar's state to a formatted output stream + std::ostream & write_state(std::ostream &os) const; + + /// Write the colvar's state to an unformatted output stream + cvm::memory_stream & write_state(cvm::memory_stream &os) const; /// Write output files (if defined, e.g. in analysis mode) int write_output_files(); protected: + /// Flag used to tell if the state string being read is for this colvar + bool matching_state; + /// Previous value (to calculate velocities during analysis) colvarvalue x_old; @@ -554,15 +571,15 @@ protected: /// Current value of the running average colvarvalue runave; /// Current value of the square deviation from the running average - cvm::real runave_variance; + cvm::real runave_variance = 0.0; /// Calculate the running average and its standard deviation int calc_runave(); /// If extended Lagrangian active: colvar kinetic energy - cvm::real kinetic_energy; + cvm::real kinetic_energy = 0.0; /// If extended Lagrangian active: colvar harmonic potential - cvm::real potential_energy; + cvm::real potential_energy = 0.0; public: @@ -601,8 +618,9 @@ public: class dihedPC; class alch_lambda; class alch_Flambda; - class componentDisabled; class CartesianBasedPath; + class aspath; + class azpath; class gspath; class gzpath; class linearCombination; @@ -626,21 +644,19 @@ public: // components that do not handle any atoms directly class map_total; - /// getter of the global cvc map -#if (__cplusplus >= 201103L) /// A global mapping of cvc names to the cvc constructors - static const std::map>& get_global_cvc_map() { - return global_cvc_map; + static const std::map> &get_global_cvc_map() + { + return global_cvc_map; } -#endif /// \brief function for sorting cvcs by their names static bool compare_cvc(const colvar::cvc* const i, const colvar::cvc* const j); protected: - /// \brief Array of \link colvar::cvc \endlink objects - std::vector cvcs; + /// Array of components objects + std::vector> cvcs; /// \brief Flags to enable or disable cvcs at next colvar evaluation std::vector cvc_flags; @@ -671,10 +687,11 @@ protected: double dev_null; #endif -#if (__cplusplus >= 201103L) /// A global mapping of cvc names to the cvc constructors - static std::map> global_cvc_map; -#endif + static std::map> global_cvc_map; + + /// A global mapping of cvc names to the corresponding descriptions + static std::map global_cvc_desc_map; /// Volmap numeric IDs, one for each CVC (-1 if not available) std::vector volmap_ids_; @@ -762,4 +779,3 @@ inline void colvar::reset_bias_force() { } #endif - diff --git a/lib/colvars/colvar_arithmeticpath.h b/lib/colvars/colvar_arithmeticpath.h index bea86a1014..ee97390dfc 100644 --- a/lib/colvars/colvar_arithmeticpath.h +++ b/lib/colvars/colvar_arithmeticpath.h @@ -7,126 +7,84 @@ #include #include #include +#include namespace ArithmeticPathCV { using std::vector; -enum path_sz {S, Z}; - -template +template class ArithmeticPathBase { public: ArithmeticPathBase() {} - virtual ~ArithmeticPathBase() {} - virtual void initialize(size_t p_num_elements, size_t p_total_frames, double p_lambda, const vector& p_element, const vector& p_weights); - virtual void updateDistanceToReferenceFrames() = 0; - virtual void computeValue(); - virtual void computeDerivatives(); - virtual void compute(); - virtual void reComputeLambda(const vector& rmsd_between_refs); + ~ArithmeticPathBase() {} + void initialize(size_t p_num_elements, size_t p_total_frames, scalar_type p_lambda, const vector& p_weights); + void reComputeLambda(const vector& rmsd_between_refs); + template + void computeValue(const vector>& frame_element_distances, scalar_type *s = nullptr, scalar_type *z = nullptr); + // can only be called after computeValue() for element-wise derivatives and store derivatives of i-th frame to dsdx and dzdx + template + void computeDerivatives(const vector>& frame_element_distances, vector> *dsdx = nullptr, vector> *dzdx = nullptr); protected: scalar_type lambda; - vector weights; + vector squared_weights; size_t num_elements; size_t total_frames; - vector< vector > frame_element_distances; - scalar_type s; - scalar_type z; - vector dsdx; - vector dzdx; -private: - // intermediate variables - vector s_numerator_frame; - vector s_denominator_frame; - scalar_type numerator_s; - scalar_type denominator_s; + vector exponents; + scalar_type max_exponent; + scalar_type saved_exponent_sum; scalar_type normalization_factor; + scalar_type saved_s; }; -template -void ArithmeticPathBase::initialize(size_t p_num_elements, size_t p_total_frames, double p_lambda, const vector& p_element, const vector& p_weights) { +template +void ArithmeticPathBase::initialize(size_t p_num_elements, size_t p_total_frames, scalar_type p_lambda, const vector& p_weights) { lambda = p_lambda; - weights = p_weights; + for (size_t i = 0; i < p_weights.size(); ++i) squared_weights.push_back(p_weights[i] * p_weights[i]); num_elements = p_num_elements; total_frames = p_total_frames; - frame_element_distances.resize(total_frames, p_element); - for (size_t i_frame = 0; i_frame < frame_element_distances.size(); ++i_frame) { - for (size_t j_elem = 0; j_elem < num_elements; ++j_elem) { - frame_element_distances[i_frame][j_elem].reset(); - } - } - s = scalar_type(0); - z = scalar_type(0); - dsdx = p_element; - dzdx = p_element; - s_numerator_frame.resize(total_frames, scalar_type(0)); - s_denominator_frame.resize(total_frames, scalar_type(0)); - numerator_s = scalar_type(0); - denominator_s = scalar_type(0); + exponents.resize(total_frames); normalization_factor = 1.0 / static_cast(total_frames - 1); + saved_s = scalar_type(); + saved_exponent_sum = scalar_type(); + max_exponent = scalar_type(); } -template -void ArithmeticPathBase::computeValue() { - updateDistanceToReferenceFrames(); - numerator_s = scalar_type(0); - denominator_s = scalar_type(0); - for (size_t i_frame = 0; i_frame < frame_element_distances.size(); ++i_frame) { - scalar_type exponent_tmp = scalar_type(0); +template +template +void ArithmeticPathBase::computeValue( + const vector>& frame_element_distances, + scalar_type *s, scalar_type *z) +{ + for (size_t i_frame = 0; i_frame < total_frames; ++i_frame) { + scalar_type exponent_tmp = scalar_type(); for (size_t j_elem = 0; j_elem < num_elements; ++j_elem) { - exponent_tmp += weights[j_elem] * frame_element_distances[i_frame][j_elem] * weights[j_elem] * frame_element_distances[i_frame][j_elem]; + exponent_tmp += squared_weights[j_elem] * frame_element_distances[i_frame][j_elem] * frame_element_distances[i_frame][j_elem]; } - exponent_tmp = exponent_tmp * -1.0 * lambda; - // prevent underflow if the argument of cvm::exp is less than -708.4 - if (exponent_tmp > -708.4) { - exponent_tmp = cvm::exp(exponent_tmp); - } else { - exponent_tmp = 0; - } - numerator_s += static_cast(i_frame) * exponent_tmp; - denominator_s += exponent_tmp; - s_numerator_frame[i_frame] = static_cast(i_frame) * exponent_tmp; - s_denominator_frame[i_frame] = exponent_tmp; + exponents[i_frame] = exponent_tmp * -1.0 * lambda; + if (i_frame == 0 || exponents[i_frame] > max_exponent) max_exponent = exponents[i_frame]; } - s = numerator_s / denominator_s * normalization_factor; - z = -1.0 / lambda * cvm::logn(denominator_s); -} - -template -void ArithmeticPathBase::compute() { - computeValue(); - computeDerivatives(); -} - -template -void ArithmeticPathBase::computeDerivatives() { - for (size_t j_elem = 0; j_elem < num_elements; ++j_elem) { - element_type dsdxj_numerator_part1(dsdx[j_elem]); - element_type dsdxj_numerator_part2(dsdx[j_elem]); - element_type dzdxj_numerator(dsdx[j_elem]); - dsdxj_numerator_part1.reset(); - dsdxj_numerator_part2.reset(); - dzdxj_numerator.reset(); - for (size_t i_frame = 0; i_frame < frame_element_distances.size(); ++i_frame) { - element_type derivative_tmp = -2.0 * lambda * weights[j_elem] * weights[j_elem] * frame_element_distances[i_frame][j_elem]; - dsdxj_numerator_part1 += s_numerator_frame[i_frame] * derivative_tmp; - dsdxj_numerator_part2 += s_denominator_frame[i_frame] * derivative_tmp; - dzdxj_numerator += s_denominator_frame[i_frame] * derivative_tmp; - } - dsdxj_numerator_part1 *= denominator_s; - dsdxj_numerator_part2 *= numerator_s; - if ((dsdxj_numerator_part1 - dsdxj_numerator_part2).norm() < std::numeric_limits::min()) { - dsdx[j_elem] = 0; - } else { - dsdx[j_elem] = (dsdxj_numerator_part1 - dsdxj_numerator_part2) / (denominator_s * denominator_s) * normalization_factor; - } - dzdx[j_elem] = -1.0 / lambda * dzdxj_numerator / denominator_s; + scalar_type log_sum_exp_0 = scalar_type(); + scalar_type log_sum_exp_1 = scalar_type(); + for (size_t i_frame = 0; i_frame < total_frames; ++i_frame) { + exponents[i_frame] = cvm::exp(exponents[i_frame] - max_exponent); + log_sum_exp_0 += exponents[i_frame]; + log_sum_exp_1 += i_frame * exponents[i_frame]; + } + saved_exponent_sum = log_sum_exp_0; + log_sum_exp_0 = max_exponent + cvm::logn(log_sum_exp_0); + log_sum_exp_1 = max_exponent + cvm::logn(log_sum_exp_1); + saved_s = normalization_factor * cvm::exp(log_sum_exp_1 - log_sum_exp_0); + if (s != nullptr) { + *s = saved_s; + } + if (z != nullptr) { + *z = -1.0 / lambda * log_sum_exp_0; } } -template -void ArithmeticPathBase::reComputeLambda(const vector& rmsd_between_refs) { +template +void ArithmeticPathBase::reComputeLambda(const vector& rmsd_between_refs) { scalar_type mean_square_displacements = 0.0; for (size_t i_frame = 1; i_frame < total_frames; ++i_frame) { cvm::log(std::string("Distance between frame ") + cvm::to_str(i_frame) + " and " + cvm::to_str(i_frame + 1) + " is " + cvm::to_str(rmsd_between_refs[i_frame - 1]) + std::string("\n")); @@ -135,6 +93,45 @@ void ArithmeticPathBase::reComputeLambda(c mean_square_displacements /= scalar_type(total_frames - 1); lambda = 1.0 / mean_square_displacements; } + +// frame-wise derivatives for frames using optimal rotation +template +template +void ArithmeticPathBase::computeDerivatives( + const vector>& frame_element_distances, + vector> *dsdx, + vector> *dzdx) +{ + vector softmax_out, tmps; + softmax_out.reserve(total_frames); + tmps.reserve(total_frames); + for (size_t i_frame = 0; i_frame < total_frames; ++i_frame) { + softmax_out.push_back(exponents[i_frame] / saved_exponent_sum); + tmps.push_back( + (static_cast(i_frame) - + static_cast(total_frames - 1) * saved_s) * + normalization_factor); + } + if (dsdx != nullptr) { + for (size_t i_frame = 0; i_frame < total_frames; ++i_frame) { + for (size_t j_elem = 0; j_elem < num_elements; ++j_elem) { + (*dsdx)[i_frame][j_elem] = + -2.0 * squared_weights[j_elem] * lambda * + frame_element_distances[i_frame][j_elem] * + softmax_out[i_frame] * tmps[i_frame]; + } + } + } + if (dzdx != nullptr) { + for (size_t i_frame = 0; i_frame < total_frames; ++i_frame) { + for (size_t j_elem = 0; j_elem < num_elements; ++j_elem) { + (*dzdx)[i_frame][j_elem] = + 2.0 * squared_weights[j_elem] * softmax_out[i_frame] * + frame_element_distances[i_frame][j_elem]; + } + } + } +} } #endif // ARITHMETICPATHCV_H diff --git a/lib/colvars/colvar_geometricpath.h b/lib/colvars/colvar_geometricpath.h index 9ff78261f2..51f97bb675 100644 --- a/lib/colvars/colvar_geometricpath.h +++ b/lib/colvars/colvar_geometricpath.h @@ -8,12 +8,13 @@ // Colvars repository at GitHub. +#include +#include +#include +#include + #include "colvarmodule.h" -#include -#include -#include -#include namespace GeometricPathCV { @@ -171,10 +172,14 @@ void GeometricPathBase::determineClosestFr sign = -1; } if (cvm::fabs(static_cast(frame_index[0]) - static_cast(frame_index[1])) > 1) { - std::cout << "Warning: Geometrical pathCV relies on the assumption that the second closest frame is the neighbouring frame\n"; - std::cout << " Please check your configuration or increase restraint on z(σ)\n"; + std::string message( + "Warning: Geometrical pathCV relies on the assumption that the second closest frame is " + "the neighbouring frame\n" + " Please check your configuration or increase restraint on z(σ)\n"); for (size_t i_frame = 0; i_frame < frame_index.size(); ++i_frame) { - std::cout << "Frame index: " << frame_index[i_frame] << " ; optimal RMSD = " << frame_distances[frame_index[i_frame]] << "\n"; + message += "Frame index: " + cvm::to_str(frame_index[i_frame]) + + " ; optimal RMSD = " + cvm::to_str(frame_distances[frame_index[i_frame]]) + + "\n"; } } min_frame_index_1 = frame_index[0]; // s_m diff --git a/lib/colvars/colvar_neuralnetworkcompute.cpp b/lib/colvars/colvar_neuralnetworkcompute.cpp index a1ad717946..b77db0cfa3 100644 --- a/lib/colvars/colvar_neuralnetworkcompute.cpp +++ b/lib/colvars/colvar_neuralnetworkcompute.cpp @@ -10,7 +10,6 @@ #include #include -#if (__cplusplus >= 201103L) #include "colvar_neuralnetworkcompute.h" #include "colvarparse.h" #include "colvarproxy.h" @@ -272,9 +271,12 @@ std::vector> neuralNetworkCompute::multiply_matrix(const std const size_t t = B[0].size(); std::vector> C(m, std::vector(t, 0.0)); for (size_t i = 0; i < m; ++i) { - for (size_t j = 0; j < t; ++j) { - for (size_t k = 0; k < n; ++k) { - C[i][j] += A[i][k] * B[k][j]; + for (size_t k = 0; k < n; ++k) { + const auto tmp = A[i][k]; + auto& C_i = C[i]; + auto& B_k = B[k]; + for (size_t j = 0; j < t; ++j) { + C_i[j] += tmp * B_k[j]; } } } @@ -306,5 +308,3 @@ void neuralNetworkCompute::compute() { } } } - -#endif diff --git a/lib/colvars/colvar_neuralnetworkcompute.h b/lib/colvars/colvar_neuralnetworkcompute.h index 5a56887431..575ce3b40b 100644 --- a/lib/colvars/colvar_neuralnetworkcompute.h +++ b/lib/colvars/colvar_neuralnetworkcompute.h @@ -7,7 +7,6 @@ // If you wish to distribute your changes, please submit them to the // Colvars repository at GitHub. -#if (__cplusplus >= 201103L) #ifndef NEURALNETWORKCOMPUTE_H #define NEURALNETWORKCOMPUTE_H @@ -145,4 +144,3 @@ public: } #endif -#endif diff --git a/lib/colvars/colvar_rotation_derivative.h b/lib/colvars/colvar_rotation_derivative.h new file mode 100644 index 0000000000..50f4f1aa97 --- /dev/null +++ b/lib/colvars/colvar_rotation_derivative.h @@ -0,0 +1,627 @@ +#ifndef COLVAR_ROTATION_DERIVATIVE +#define COLVAR_ROTATION_DERIVATIVE + +#include "colvartypes.h" +#include +#include + +/// \brief Helper function for loading the ia-th atom in the vector pos to x, y and z (C++11 SFINAE is used) +template ::value, bool>::type = true> +inline void read_atom_coord( + size_t ia, const std::vector& pos, + cvm::real* x, cvm::real* y, cvm::real* z) { + *x = pos[ia].x; + *y = pos[ia].y; + *z = pos[ia].z; +} + +template ::value, bool>::type = true> +inline void read_atom_coord( + size_t ia, const std::vector& pos, + cvm::real* x, cvm::real* y, cvm::real* z) { + *x = pos[ia].pos.x; + *y = pos[ia].pos.y; + *z = pos[ia].pos.z; +} + +/// \brief Helper enum class for specifying options in rotation_derivative::prepare_derivative +enum class rotation_derivative_dldq { + /// Require the derivative of the leading eigenvalue with respect to the atom coordinats + use_dl = 1 << 0, + /// Require the derivative of the leading eigenvector with respect to the atom coordinats + use_dq = 1 << 1 +}; + +inline constexpr rotation_derivative_dldq operator|(rotation_derivative_dldq Lhs, rotation_derivative_dldq Rhs) { + return static_cast( + static_cast::type>(Lhs) | + static_cast::type>(Rhs)); +} + +inline constexpr bool operator&(rotation_derivative_dldq Lhs, rotation_derivative_dldq Rhs) +{ + return (static_cast::type>(Lhs) & + static_cast::type>(Rhs)); +} + +/// \brief Helper class for calculating the derivative of rotation +template +struct rotation_derivative { + static_assert(std::is_same::value || std::is_same::value, + "class template rotation_derivative only supports cvm::atom_pos or cvm::atom types."); + static_assert(std::is_same::value || std::is_same::value, + "class template rotation_derivative only supports cvm::atom_pos or cvm::atom types."); + /// \brief Reference to the rotation + const cvm::rotation &m_rot; + /// \brief Reference to the atom positions of group 1 + const std::vector &m_pos1; + /// \brief Reference to the atom positions of group 2 + const std::vector &m_pos2; + /// \brief Temporary variable that will be updated if prepare_derivative called + cvm::real tmp_Q0Q0[4][4]; + cvm::real tmp_Q0Q0_L[4][4][4]; + /*! @brief Constructor of the cvm::rotation::derivative class + * @param[in] rot The cvm::rotation object (must have called + * `calc_optimal_rotation` before calling + * `calc_derivative_wrt_group1` and + * `calc_derivative_wrt_group2`) + * @param[in] pos1 The atom positions of group 1 + * @param[in] pos2 The atom positions of group 2 + */ + rotation_derivative( + const cvm::rotation &rot, + const std::vector &pos1, + const std::vector &pos2): + m_rot(rot), m_pos1(pos1), m_pos2(pos2) {}; + /*! @brief This function must be called before `calc_derivative_wrt_group1` + * and `calc_derivative_wrt_group2` in order to prepare the tmp_Q0Q0 + * and tmp_Q0Q0_L. + * @param[in] require_dl_dq Require the calculation of the derivatives of L or/and Q + * with respect to atoms. + */ + void prepare_derivative(rotation_derivative_dldq require_dl_dq) { + if (require_dl_dq & rotation_derivative_dldq::use_dl) { + const auto &Q0 = m_rot.S_eigvec[0]; + tmp_Q0Q0[0][0] = Q0[0] * Q0[0]; + tmp_Q0Q0[0][1] = Q0[0] * Q0[1]; + tmp_Q0Q0[0][2] = Q0[0] * Q0[2]; + tmp_Q0Q0[0][3] = Q0[0] * Q0[3]; + tmp_Q0Q0[1][0] = Q0[1] * Q0[0]; + tmp_Q0Q0[1][1] = Q0[1] * Q0[1]; + tmp_Q0Q0[1][2] = Q0[1] * Q0[2]; + tmp_Q0Q0[1][3] = Q0[1] * Q0[3]; + tmp_Q0Q0[2][0] = Q0[2] * Q0[0]; + tmp_Q0Q0[2][1] = Q0[2] * Q0[1]; + tmp_Q0Q0[2][2] = Q0[2] * Q0[2]; + tmp_Q0Q0[2][3] = Q0[2] * Q0[3]; + tmp_Q0Q0[3][0] = Q0[3] * Q0[0]; + tmp_Q0Q0[3][1] = Q0[3] * Q0[1]; + tmp_Q0Q0[3][2] = Q0[3] * Q0[2]; + tmp_Q0Q0[3][3] = Q0[3] * Q0[3]; + } + if (require_dl_dq & rotation_derivative_dldq::use_dq) { + const auto &Q0 = m_rot.S_eigvec[0]; + const auto &Q1 = m_rot.S_eigvec[1]; + const auto &Q2 = m_rot.S_eigvec[2]; + const auto &Q3 = m_rot.S_eigvec[3]; + cvm::real const L0 = m_rot.S_eigval[0]; + cvm::real const L1 = m_rot.S_eigval[1]; + cvm::real const L2 = m_rot.S_eigval[2]; + cvm::real const L3 = m_rot.S_eigval[3]; + + tmp_Q0Q0_L[0][0][0] = (Q1[0] * Q0[0]) / (L0-L1) * Q1[0] + + (Q2[0] * Q0[0]) / (L0-L2) * Q2[0] + + (Q3[0] * Q0[0]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][0][0] = (Q1[0] * Q0[0]) / (L0-L1) * Q1[1] + + (Q2[0] * Q0[0]) / (L0-L2) * Q2[1] + + (Q3[0] * Q0[0]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][0][0] = (Q1[0] * Q0[0]) / (L0-L1) * Q1[2] + + (Q2[0] * Q0[0]) / (L0-L2) * Q2[2] + + (Q3[0] * Q0[0]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][0][0] = (Q1[0] * Q0[0]) / (L0-L1) * Q1[3] + + (Q2[0] * Q0[0]) / (L0-L2) * Q2[3] + + (Q3[0] * Q0[0]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][0][1] = (Q1[0] * Q0[1]) / (L0-L1) * Q1[0] + + (Q2[0] * Q0[1]) / (L0-L2) * Q2[0] + + (Q3[0] * Q0[1]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][0][1] = (Q1[0] * Q0[1]) / (L0-L1) * Q1[1] + + (Q2[0] * Q0[1]) / (L0-L2) * Q2[1] + + (Q3[0] * Q0[1]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][0][1] = (Q1[0] * Q0[1]) / (L0-L1) * Q1[2] + + (Q2[0] * Q0[1]) / (L0-L2) * Q2[2] + + (Q3[0] * Q0[1]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][0][1] = (Q1[0] * Q0[1]) / (L0-L1) * Q1[3] + + (Q2[0] * Q0[1]) / (L0-L2) * Q2[3] + + (Q3[0] * Q0[1]) / (L0-L3) * Q3[3]; + + + tmp_Q0Q0_L[0][0][2] = (Q1[0] * Q0[2]) / (L0-L1) * Q1[0] + + (Q2[0] * Q0[2]) / (L0-L2) * Q2[0] + + (Q3[0] * Q0[2]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][0][2] = (Q1[0] * Q0[2]) / (L0-L1) * Q1[1] + + (Q2[0] * Q0[2]) / (L0-L2) * Q2[1] + + (Q3[0] * Q0[2]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][0][2] = (Q1[0] * Q0[2]) / (L0-L1) * Q1[2] + + (Q2[0] * Q0[2]) / (L0-L2) * Q2[2] + + (Q3[0] * Q0[2]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][0][2] = (Q1[0] * Q0[2]) / (L0-L1) * Q1[3] + + (Q2[0] * Q0[2]) / (L0-L2) * Q2[3] + + (Q3[0] * Q0[2]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][0][3] = (Q1[0] * Q0[3]) / (L0-L1) * Q1[0] + + (Q2[0] * Q0[3]) / (L0-L2) * Q2[0] + + (Q3[0] * Q0[3]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][0][3] = (Q1[0] * Q0[3]) / (L0-L1) * Q1[1] + + (Q2[0] * Q0[3]) / (L0-L2) * Q2[1] + + (Q3[0] * Q0[3]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][0][3] = (Q1[0] * Q0[3]) / (L0-L1) * Q1[2] + + (Q2[0] * Q0[3]) / (L0-L2) * Q2[2] + + (Q3[0] * Q0[3]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][0][3] = (Q1[0] * Q0[3]) / (L0-L1) * Q1[3] + + (Q2[0] * Q0[3]) / (L0-L2) * Q2[3] + + (Q3[0] * Q0[3]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][1][0] = (Q1[1] * Q0[0]) / (L0-L1) * Q1[0] + + (Q2[1] * Q0[0]) / (L0-L2) * Q2[0] + + (Q3[1] * Q0[0]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][1][0] = (Q1[1] * Q0[0]) / (L0-L1) * Q1[1] + + (Q2[1] * Q0[0]) / (L0-L2) * Q2[1] + + (Q3[1] * Q0[0]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][1][0] = (Q1[1] * Q0[0]) / (L0-L1) * Q1[2] + + (Q2[1] * Q0[0]) / (L0-L2) * Q2[2] + + (Q3[1] * Q0[0]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][1][0] = (Q1[1] * Q0[0]) / (L0-L1) * Q1[3] + + (Q2[1] * Q0[0]) / (L0-L2) * Q2[3] + + (Q3[1] * Q0[0]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][1][1] = (Q1[1] * Q0[1]) / (L0-L1) * Q1[0] + + (Q2[1] * Q0[1]) / (L0-L2) * Q2[0] + + (Q3[1] * Q0[1]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][1][1] = (Q1[1] * Q0[1]) / (L0-L1) * Q1[1] + + (Q2[1] * Q0[1]) / (L0-L2) * Q2[1] + + (Q3[1] * Q0[1]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][1][1] = (Q1[1] * Q0[1]) / (L0-L1) * Q1[2] + + (Q2[1] * Q0[1]) / (L0-L2) * Q2[2] + + (Q3[1] * Q0[1]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][1][1] = (Q1[1] * Q0[1]) / (L0-L1) * Q1[3] + + (Q2[1] * Q0[1]) / (L0-L2) * Q2[3] + + (Q3[1] * Q0[1]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][1][2] = (Q1[1] * Q0[2]) / (L0-L1) * Q1[0] + + (Q2[1] * Q0[2]) / (L0-L2) * Q2[0] + + (Q3[1] * Q0[2]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][1][2] = (Q1[1] * Q0[2]) / (L0-L1) * Q1[1] + + (Q2[1] * Q0[2]) / (L0-L2) * Q2[1] + + (Q3[1] * Q0[2]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][1][2] = (Q1[1] * Q0[2]) / (L0-L1) * Q1[2] + + (Q2[1] * Q0[2]) / (L0-L2) * Q2[2] + + (Q3[1] * Q0[2]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][1][2] = (Q1[1] * Q0[2]) / (L0-L1) * Q1[3] + + (Q2[1] * Q0[2]) / (L0-L2) * Q2[3] + + (Q3[1] * Q0[2]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][1][3] = (Q1[1] * Q0[3]) / (L0-L1) * Q1[0] + + (Q2[1] * Q0[3]) / (L0-L2) * Q2[0] + + (Q3[1] * Q0[3]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][1][3] = (Q1[1] * Q0[3]) / (L0-L1) * Q1[1] + + (Q2[1] * Q0[3]) / (L0-L2) * Q2[1] + + (Q3[1] * Q0[3]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][1][3] = (Q1[1] * Q0[3]) / (L0-L1) * Q1[2] + + (Q2[1] * Q0[3]) / (L0-L2) * Q2[2] + + (Q3[1] * Q0[3]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][1][3] = (Q1[1] * Q0[3]) / (L0-L1) * Q1[3] + + (Q2[1] * Q0[3]) / (L0-L2) * Q2[3] + + (Q3[1] * Q0[3]) / (L0-L3) * Q3[3]; + + + tmp_Q0Q0_L[0][2][0] = (Q1[2] * Q0[0]) / (L0-L1) * Q1[0] + + (Q2[2] * Q0[0]) / (L0-L2) * Q2[0] + + (Q3[2] * Q0[0]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][2][0] = (Q1[2] * Q0[0]) / (L0-L1) * Q1[1] + + (Q2[2] * Q0[0]) / (L0-L2) * Q2[1] + + (Q3[2] * Q0[0]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][2][0] = (Q1[2] * Q0[0]) / (L0-L1) * Q1[2] + + (Q2[2] * Q0[0]) / (L0-L2) * Q2[2] + + (Q3[2] * Q0[0]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][2][0] = (Q1[2] * Q0[0]) / (L0-L1) * Q1[3] + + (Q2[2] * Q0[0]) / (L0-L2) * Q2[3] + + (Q3[2] * Q0[0]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][2][1] = (Q1[2] * Q0[1]) / (L0-L1) * Q1[0] + + (Q2[2] * Q0[1]) / (L0-L2) * Q2[0] + + (Q3[2] * Q0[1]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][2][1] = (Q1[2] * Q0[1]) / (L0-L1) * Q1[1] + + (Q2[2] * Q0[1]) / (L0-L2) * Q2[1] + + (Q3[2] * Q0[1]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][2][1] = (Q1[2] * Q0[1]) / (L0-L1) * Q1[2] + + (Q2[2] * Q0[1]) / (L0-L2) * Q2[2] + + (Q3[2] * Q0[1]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][2][1] = (Q1[2] * Q0[1]) / (L0-L1) * Q1[3] + + (Q2[2] * Q0[1]) / (L0-L2) * Q2[3] + + (Q3[2] * Q0[1]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][2][2] = (Q1[2] * Q0[2]) / (L0-L1) * Q1[0] + + (Q2[2] * Q0[2]) / (L0-L2) * Q2[0] + + (Q3[2] * Q0[2]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][2][2] = (Q1[2] * Q0[2]) / (L0-L1) * Q1[1] + + (Q2[2] * Q0[2]) / (L0-L2) * Q2[1] + + (Q3[2] * Q0[2]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][2][2] = (Q1[2] * Q0[2]) / (L0-L1) * Q1[2] + + (Q2[2] * Q0[2]) / (L0-L2) * Q2[2] + + (Q3[2] * Q0[2]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][2][2] = (Q1[2] * Q0[2]) / (L0-L1) * Q1[3] + + (Q2[2] * Q0[2]) / (L0-L2) * Q2[3] + + (Q3[2] * Q0[2]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][2][3] = (Q1[2] * Q0[3]) / (L0-L1) * Q1[0] + + (Q2[2] * Q0[3]) / (L0-L2) * Q2[0] + + (Q3[2] * Q0[3]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][2][3] = (Q1[2] * Q0[3]) / (L0-L1) * Q1[1] + + (Q2[2] * Q0[3]) / (L0-L2) * Q2[1] + + (Q3[2] * Q0[3]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][2][3] = (Q1[2] * Q0[3]) / (L0-L1) * Q1[2] + + (Q2[2] * Q0[3]) / (L0-L2) * Q2[2] + + (Q3[2] * Q0[3]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][2][3] = (Q1[2] * Q0[3]) / (L0-L1) * Q1[3] + + (Q2[2] * Q0[3]) / (L0-L2) * Q2[3] + + (Q3[2] * Q0[3]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][3][0] = (Q1[3] * Q0[0]) / (L0-L1) * Q1[0] + + (Q2[3] * Q0[0]) / (L0-L2) * Q2[0] + + (Q3[3] * Q0[0]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][3][0] = (Q1[3] * Q0[0]) / (L0-L1) * Q1[1] + + (Q2[3] * Q0[0]) / (L0-L2) * Q2[1] + + (Q3[3] * Q0[0]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][3][0] = (Q1[3] * Q0[0]) / (L0-L1) * Q1[2] + + (Q2[3] * Q0[0]) / (L0-L2) * Q2[2] + + (Q3[3] * Q0[0]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][3][0] = (Q1[3] * Q0[0]) / (L0-L1) * Q1[3] + + (Q2[3] * Q0[0]) / (L0-L2) * Q2[3] + + (Q3[3] * Q0[0]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][3][1] = (Q1[3] * Q0[1]) / (L0-L1) * Q1[0] + + (Q2[3] * Q0[1]) / (L0-L2) * Q2[0] + + (Q3[3] * Q0[1]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][3][1] = (Q1[3] * Q0[1]) / (L0-L1) * Q1[1] + + (Q2[3] * Q0[1]) / (L0-L2) * Q2[1] + + (Q3[3] * Q0[1]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][3][1] = (Q1[3] * Q0[1]) / (L0-L1) * Q1[2] + + (Q2[3] * Q0[1]) / (L0-L2) * Q2[2] + + (Q3[3] * Q0[1]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][3][1] = (Q1[3] * Q0[1]) / (L0-L1) * Q1[3] + + (Q2[3] * Q0[1]) / (L0-L2) * Q2[3] + + (Q3[3] * Q0[1]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][3][2] = (Q1[3] * Q0[2]) / (L0-L1) * Q1[0] + + (Q2[3] * Q0[2]) / (L0-L2) * Q2[0] + + (Q3[3] * Q0[2]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][3][2] = (Q1[3] * Q0[2]) / (L0-L1) * Q1[1] + + (Q2[3] * Q0[2]) / (L0-L2) * Q2[1] + + (Q3[3] * Q0[2]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][3][2] = (Q1[3] * Q0[2]) / (L0-L1) * Q1[2] + + (Q2[3] * Q0[2]) / (L0-L2) * Q2[2] + + (Q3[3] * Q0[2]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][3][2] = (Q1[3] * Q0[2]) / (L0-L1) * Q1[3] + + (Q2[3] * Q0[2]) / (L0-L2) * Q2[3] + + (Q3[3] * Q0[2]) / (L0-L3) * Q3[3]; + + tmp_Q0Q0_L[0][3][3] = (Q1[3] * Q0[3]) / (L0-L1) * Q1[0] + + (Q2[3] * Q0[3]) / (L0-L2) * Q2[0] + + (Q3[3] * Q0[3]) / (L0-L3) * Q3[0]; + tmp_Q0Q0_L[1][3][3] = (Q1[3] * Q0[3]) / (L0-L1) * Q1[1] + + (Q2[3] * Q0[3]) / (L0-L2) * Q2[1] + + (Q3[3] * Q0[3]) / (L0-L3) * Q3[1]; + tmp_Q0Q0_L[2][3][3] = (Q1[3] * Q0[3]) / (L0-L1) * Q1[2] + + (Q2[3] * Q0[3]) / (L0-L2) * Q2[2] + + (Q3[3] * Q0[3]) / (L0-L3) * Q3[2]; + tmp_Q0Q0_L[3][3][3] = (Q1[3] * Q0[3]) / (L0-L1) * Q1[3] + + (Q2[3] * Q0[3]) / (L0-L2) * Q2[3] + + (Q3[3] * Q0[3]) / (L0-L3) * Q3[3]; + } + } + /*! @brief Actual implementation of the derivative calculation + * @param[in] ds The derivative of matrix S with respect to an atom of + * either group 1 or group 2 + * @param[out] dl0_out The output of derivative of L + * @param[out] dq0_out The output of derivative of Q + * @param[out] ds_out The output of derivative of overlap matrix S + */ + void calc_derivative_impl( + const cvm::rvector (&ds)[4][4], + cvm::rvector* const dl0_out, + cvm::vector1d* const dq0_out, + cvm::matrix2d* const ds_out) const { + if (ds_out != nullptr) { + // this code path is for debug_gradients, so not necessary to unroll the loop + *ds_out = cvm::matrix2d(4, 4); + for (int i = 0; i < 4; ++i) { + for (int j = 0; j < 4; ++j) { + (*ds_out)[i][j] = ds[i][j]; + } + } + } + if (dl0_out != nullptr) { + /* manually loop unrolling of the following loop: + dl0_1.reset(); + for (size_t i = 0; i < 4; i++) { + for (size_t j = 0; j < 4; j++) { + dl0_1 += Q0[i] * ds_1[i][j] * Q0[j]; + } + } + */ + *dl0_out = tmp_Q0Q0[0][0] * ds[0][0] + + tmp_Q0Q0[0][1] * ds[0][1] + + tmp_Q0Q0[0][2] * ds[0][2] + + tmp_Q0Q0[0][3] * ds[0][3] + + tmp_Q0Q0[1][0] * ds[1][0] + + tmp_Q0Q0[1][1] * ds[1][1] + + tmp_Q0Q0[1][2] * ds[1][2] + + tmp_Q0Q0[1][3] * ds[1][3] + + tmp_Q0Q0[2][0] * ds[2][0] + + tmp_Q0Q0[2][1] * ds[2][1] + + tmp_Q0Q0[2][2] * ds[2][2] + + tmp_Q0Q0[2][3] * ds[2][3] + + tmp_Q0Q0[3][0] * ds[3][0] + + tmp_Q0Q0[3][1] * ds[3][1] + + tmp_Q0Q0[3][2] * ds[3][2] + + tmp_Q0Q0[3][3] * ds[3][3]; + } + if (dq0_out != nullptr) { + // we can skip this check if a fixed-size array is used + if (dq0_out->size() != 4) dq0_out->resize(4); + /* manually loop unrolling of the following loop: + dq0_1.reset(); + for (size_t p = 0; p < 4; p++) { + for (size_t i = 0; i < 4; i++) { + for (size_t j = 0; j < 4; j++) { + dq0_1[p] += + (Q1[i] * ds_1[i][j] * Q0[j]) / (L0-L1) * Q1[p] + + (Q2[i] * ds_1[i][j] * Q0[j]) / (L0-L2) * Q2[p] + + (Q3[i] * ds_1[i][j] * Q0[j]) / (L0-L3) * Q3[p]; + } + } + } + */ + (*dq0_out)[0] = tmp_Q0Q0_L[0][0][0] * ds[0][0] + + tmp_Q0Q0_L[0][0][1] * ds[0][1] + + tmp_Q0Q0_L[0][0][2] * ds[0][2] + + tmp_Q0Q0_L[0][0][3] * ds[0][3] + + tmp_Q0Q0_L[0][1][0] * ds[1][0] + + tmp_Q0Q0_L[0][1][1] * ds[1][1] + + tmp_Q0Q0_L[0][1][2] * ds[1][2] + + tmp_Q0Q0_L[0][1][3] * ds[1][3] + + tmp_Q0Q0_L[0][2][0] * ds[2][0] + + tmp_Q0Q0_L[0][2][1] * ds[2][1] + + tmp_Q0Q0_L[0][2][2] * ds[2][2] + + tmp_Q0Q0_L[0][2][3] * ds[2][3] + + tmp_Q0Q0_L[0][3][0] * ds[3][0] + + tmp_Q0Q0_L[0][3][1] * ds[3][1] + + tmp_Q0Q0_L[0][3][2] * ds[3][2] + + tmp_Q0Q0_L[0][3][3] * ds[3][3]; + + (*dq0_out)[1] = tmp_Q0Q0_L[1][0][0] * ds[0][0] + + tmp_Q0Q0_L[1][0][1] * ds[0][1] + + tmp_Q0Q0_L[1][0][2] * ds[0][2] + + tmp_Q0Q0_L[1][0][3] * ds[0][3] + + tmp_Q0Q0_L[1][1][0] * ds[1][0] + + tmp_Q0Q0_L[1][1][1] * ds[1][1] + + tmp_Q0Q0_L[1][1][2] * ds[1][2] + + tmp_Q0Q0_L[1][1][3] * ds[1][3] + + tmp_Q0Q0_L[1][2][0] * ds[2][0] + + tmp_Q0Q0_L[1][2][1] * ds[2][1] + + tmp_Q0Q0_L[1][2][2] * ds[2][2] + + tmp_Q0Q0_L[1][2][3] * ds[2][3] + + tmp_Q0Q0_L[1][3][0] * ds[3][0] + + tmp_Q0Q0_L[1][3][1] * ds[3][1] + + tmp_Q0Q0_L[1][3][2] * ds[3][2] + + tmp_Q0Q0_L[1][3][3] * ds[3][3]; + + (*dq0_out)[2] = tmp_Q0Q0_L[2][0][0] * ds[0][0] + + tmp_Q0Q0_L[2][0][1] * ds[0][1] + + tmp_Q0Q0_L[2][0][2] * ds[0][2] + + tmp_Q0Q0_L[2][0][3] * ds[0][3] + + tmp_Q0Q0_L[2][1][0] * ds[1][0] + + tmp_Q0Q0_L[2][1][1] * ds[1][1] + + tmp_Q0Q0_L[2][1][2] * ds[1][2] + + tmp_Q0Q0_L[2][1][3] * ds[1][3] + + tmp_Q0Q0_L[2][2][0] * ds[2][0] + + tmp_Q0Q0_L[2][2][1] * ds[2][1] + + tmp_Q0Q0_L[2][2][2] * ds[2][2] + + tmp_Q0Q0_L[2][2][3] * ds[2][3] + + tmp_Q0Q0_L[2][3][0] * ds[3][0] + + tmp_Q0Q0_L[2][3][1] * ds[3][1] + + tmp_Q0Q0_L[2][3][2] * ds[3][2] + + tmp_Q0Q0_L[2][3][3] * ds[3][3]; + + (*dq0_out)[3] = tmp_Q0Q0_L[3][0][0] * ds[0][0] + + tmp_Q0Q0_L[3][0][1] * ds[0][1] + + tmp_Q0Q0_L[3][0][2] * ds[0][2] + + tmp_Q0Q0_L[3][0][3] * ds[0][3] + + tmp_Q0Q0_L[3][1][0] * ds[1][0] + + tmp_Q0Q0_L[3][1][1] * ds[1][1] + + tmp_Q0Q0_L[3][1][2] * ds[1][2] + + tmp_Q0Q0_L[3][1][3] * ds[1][3] + + tmp_Q0Q0_L[3][2][0] * ds[2][0] + + tmp_Q0Q0_L[3][2][1] * ds[2][1] + + tmp_Q0Q0_L[3][2][2] * ds[2][2] + + tmp_Q0Q0_L[3][2][3] * ds[2][3] + + tmp_Q0Q0_L[3][3][0] * ds[3][0] + + tmp_Q0Q0_L[3][3][1] * ds[3][1] + + tmp_Q0Q0_L[3][3][2] * ds[3][2] + + tmp_Q0Q0_L[3][3][3] * ds[3][3]; + } + } + /*! @brief Calculate the derivatives of S, the leading eigenvalue L and + * the leading eigenvector Q with respect to `m_pos1` + * @param[in] ia The index the of atom + * @param[out] dl0_1_out The output of derivative of L with respect to + * ia-th atom of group 1 + * @param[out] dq0_1_out The output of derivative of Q with respect to + * ia-th atom of group 1 + * @param[out] ds_1_out The output of derivative of overlap matrix S with + * respect to ia-th atom of group 1 + */ + void calc_derivative_wrt_group1( + size_t ia, cvm::rvector* const dl0_1_out = nullptr, + cvm::vector1d* const dq0_1_out = nullptr, + cvm::matrix2d* const ds_1_out = nullptr) const { + if (dl0_1_out == nullptr && dq0_1_out == nullptr) return; + cvm::real a2x, a2y, a2z; + // we can get rid of the helper function read_atom_coord if C++17 (constexpr) is available + read_atom_coord(ia, m_pos2, &a2x, &a2y, &a2z); + cvm::rvector ds_1[4][4]; + ds_1[0][0].set( a2x, a2y, a2z); + ds_1[1][0].set( 0.0, a2z, -a2y); + ds_1[0][1] = ds_1[1][0]; + ds_1[2][0].set(-a2z, 0.0, a2x); + ds_1[0][2] = ds_1[2][0]; + ds_1[3][0].set( a2y, -a2x, 0.0); + ds_1[0][3] = ds_1[3][0]; + ds_1[1][1].set( a2x, -a2y, -a2z); + ds_1[2][1].set( a2y, a2x, 0.0); + ds_1[1][2] = ds_1[2][1]; + ds_1[3][1].set( a2z, 0.0, a2x); + ds_1[1][3] = ds_1[3][1]; + ds_1[2][2].set(-a2x, a2y, -a2z); + ds_1[3][2].set( 0.0, a2z, a2y); + ds_1[2][3] = ds_1[3][2]; + ds_1[3][3].set(-a2x, -a2y, a2z); + calc_derivative_impl(ds_1, dl0_1_out, dq0_1_out, ds_1_out); + } + /*! @brief Calculate the derivatives of S, the leading eigenvalue L and + * the leading eigenvector Q with respect to `m_pos2` + * @param[in] ia The index the of atom + * @param[out] dl0_2_out The output of derivative of L with respect to + * ia-th atom of group 2 + * @param[out] dq0_2_out The output of derivative of Q with respect to + * ia-th atom of group 2 + * @param[out] ds_2_out The output of derivative of overlap matrix S with + * respect to ia-th atom of group 2 + */ + void calc_derivative_wrt_group2( + size_t ia, cvm::rvector* const dl0_2_out = nullptr, + cvm::vector1d* const dq0_2_out = nullptr, + cvm::matrix2d* const ds_2_out = nullptr) const { + if (dl0_2_out == nullptr && dq0_2_out == nullptr) return; + cvm::real a1x, a1y, a1z; + // we can get rid of the helper function read_atom_coord if C++17 (constexpr) is available + read_atom_coord(ia, m_pos1, &a1x, &a1y, &a1z); + cvm::rvector ds_2[4][4]; + ds_2[0][0].set( a1x, a1y, a1z); + ds_2[1][0].set( 0.0, -a1z, a1y); + ds_2[0][1] = ds_2[1][0]; + ds_2[2][0].set( a1z, 0.0, -a1x); + ds_2[0][2] = ds_2[2][0]; + ds_2[3][0].set(-a1y, a1x, 0.0); + ds_2[0][3] = ds_2[3][0]; + ds_2[1][1].set( a1x, -a1y, -a1z); + ds_2[2][1].set( a1y, a1x, 0.0); + ds_2[1][2] = ds_2[2][1]; + ds_2[3][1].set( a1z, 0.0, a1x); + ds_2[1][3] = ds_2[3][1]; + ds_2[2][2].set(-a1x, a1y, -a1z); + ds_2[3][2].set( 0.0, a1z, a1y); + ds_2[2][3] = ds_2[3][2]; + ds_2[3][3].set(-a1x, -a1y, a1z); + calc_derivative_impl(ds_2, dl0_2_out, dq0_2_out, ds_2_out); + } +}; + +/*! @brief Function for debugging gradients (allow using either + * std::vector or std::vector for + * pos1 and pos2) + * @param[in] pos1 Atom positions of group 1 + * @param[in] pos2 Atom positions of group 2 + */ +template +void debug_gradients( + cvm::rotation &rot, + const std::vector &pos1, + const std::vector &pos2) { + static_assert(std::is_same::value || std::is_same::value, ""); + static_assert(std::is_same::value || std::is_same::value, ""); + // eigenvalues and eigenvectors + cvm::real const L0 = rot.S_eigval[0]; + cvm::real const L1 = rot.S_eigval[1]; + cvm::real const L2 = rot.S_eigval[2]; + cvm::real const L3 = rot.S_eigval[3]; + cvm::quaternion const Q0(rot.S_eigvec[0]); + cvm::quaternion const Q1(rot.S_eigvec[1]); + cvm::quaternion const Q2(rot.S_eigvec[2]); + cvm::quaternion const Q3(rot.S_eigvec[3]); + + cvm::log("L0 = "+cvm::to_str(L0, cvm::cv_width, cvm::cv_prec)+ + ", Q0 = "+cvm::to_str(Q0, cvm::cv_width, cvm::cv_prec)+ + ", Q0*Q0 = "+cvm::to_str(Q0.inner(Q0), cvm::cv_width, cvm::cv_prec)+ + "\n"); + cvm::log("L1 = "+cvm::to_str(L1, cvm::cv_width, cvm::cv_prec)+ + ", Q1 = "+cvm::to_str(Q1, cvm::cv_width, cvm::cv_prec)+ + ", Q0*Q1 = "+cvm::to_str(Q0.inner(Q1), cvm::cv_width, cvm::cv_prec)+ + "\n"); + cvm::log("L2 = "+cvm::to_str(L2, cvm::cv_width, cvm::cv_prec)+ + ", Q2 = "+cvm::to_str(Q2, cvm::cv_width, cvm::cv_prec)+ + ", Q0*Q2 = "+cvm::to_str(Q0.inner(Q2), cvm::cv_width, cvm::cv_prec)+ + "\n"); + cvm::log("L3 = "+cvm::to_str(L3, cvm::cv_width, cvm::cv_prec)+ + ", Q3 = "+cvm::to_str(Q3, cvm::cv_width, cvm::cv_prec)+ + ", Q0*Q3 = "+cvm::to_str(Q0.inner(Q3), cvm::cv_width, cvm::cv_prec)+ + "\n"); + + rotation_derivative deriv(rot, pos1, pos2); + cvm::rvector dl0_2; + cvm::vector1d dq0_2(4); + cvm::matrix2d ds_2; +#ifdef COLVARS_LAMMPS + MathEigen::Jacobi *ecalc = + reinterpret_cast *>(rot.jacobi); +#endif + deriv.prepare_derivative(rotation_derivative_dldq::use_dl | rotation_derivative_dldq::use_dq); + cvm::real S_new[4][4]; + cvm::real S_new_eigval[4]; + cvm::real S_new_eigvec[4][4]; + for (size_t ia = 0; ia < pos2.size(); ++ia) { + // cvm::real const &a1x = pos1[ia].x; + // cvm::real const &a1y = pos1[ia].y; + // cvm::real const &a1z = pos1[ia].z; + deriv.calc_derivative_wrt_group2(ia, &dl0_2, &dq0_2, &ds_2); + // make an infitesimal move along each cartesian coordinate of + // this atom, and solve again the eigenvector problem + for (size_t comp = 0; comp < 3; comp++) { + std::memcpy(S_new, rot.S_backup, sizeof(cvm::real) * 4 * 4); + std::memset(S_new_eigval, 0, sizeof(cvm::real) * 4); + std::memset(S_new_eigvec, 0, sizeof(cvm::real) * 4 * 4); + for (size_t i = 0; i < 4; i++) { + for (size_t j = 0; j < 4; j++) { + S_new[i][j] += + colvarmodule::debug_gradients_step_size * ds_2[i][j][comp]; + } + } +#ifdef COLVARS_LAMMPS + ecalc->Diagonalize(S_new, S_new_eigval, S_new_eigvec); +#else + NR::diagonalize_matrix(S_new, S_new_eigval, S_new_eigvec); +#endif + cvm::real const &L0_new = S_new_eigval[0]; + cvm::quaternion const Q0_new(S_new_eigvec[0]); + + cvm::real const DL0 = (dl0_2[comp]) * colvarmodule::debug_gradients_step_size; + cvm::quaternion const DQ0(dq0_2[0][comp] * colvarmodule::debug_gradients_step_size, + dq0_2[1][comp] * colvarmodule::debug_gradients_step_size, + dq0_2[2][comp] * colvarmodule::debug_gradients_step_size, + dq0_2[3][comp] * colvarmodule::debug_gradients_step_size); + + cvm::log( "|(l_0+dl_0) - l_0^new|/l_0 = "+ + cvm::to_str(cvm::fabs(L0+DL0 - L0_new)/L0, cvm::cv_width, cvm::cv_prec)+ + ", |(q_0+dq_0) - q_0^new| = "+ + cvm::to_str((Q0+DQ0 - Q0_new).norm(), cvm::cv_width, cvm::cv_prec)+ + "\n"); + } + } +} + +#endif // COLVAR_ROTATION_DERIVATIVE diff --git a/lib/colvars/colvaratoms.cpp b/lib/colvars/colvaratoms.cpp index e31041ea6b..e15b9301a1 100644 --- a/lib/colvars/colvaratoms.cpp +++ b/lib/colvars/colvaratoms.cpp @@ -13,10 +13,12 @@ #include #include +#include "colvardeps.h" #include "colvarmodule.h" #include "colvarproxy.h" #include "colvarparse.h" #include "colvaratoms.h" +#include "colvar_rotation_derivative.h" cvm::atom::atom() @@ -118,6 +120,11 @@ cvm::atom_group::~atom_group() fitting_group = NULL; } + if (rot_deriv != nullptr) { + delete rot_deriv; + rot_deriv = nullptr; + } + cvm::main()->unregister_named_atom_group(this); } @@ -226,6 +233,7 @@ int cvm::atom_group::init() b_dummy = false; b_user_defined_fit = false; fitting_group = NULL; + rot_deriv = nullptr; noforce = false; @@ -278,7 +286,7 @@ int cvm::atom_group::init_dependencies() { // Initialize feature_states for each instance // default as unavailable, not enabled feature_states.reserve(f_ag_ntot); - for (i = 0; i < colvardeps::f_ag_ntot; i++) { + for (i = feature_states.size(); i < colvardeps::f_ag_ntot; i++) { feature_states.push_back(feature_state(false, false)); } @@ -317,6 +325,13 @@ int cvm::atom_group::setup() return COLVARS_OK; } +void cvm::atom_group::setup_rotation_derivative() { + if (rot_deriv != nullptr) delete rot_deriv; + rot_deriv = new rotation_derivative( + rot, fitting_group ? fitting_group->atoms : this->atoms, ref_pos + ); +} + void cvm::atom_group::update_total_mass() { @@ -383,7 +398,7 @@ int cvm::atom_group::parse(std::string const &group_conf) // } // colvarparse::Parse_Mode mode = parse_normal; - int parse_error = COLVARS_OK; + int error_code = COLVARS_OK; // Optional group name will let other groups reuse atom definition if (get_keyval(group_conf, "name", name)) { @@ -433,7 +448,7 @@ int cvm::atom_group::parse(std::string const &group_conf) cvm::error("Error: cannot find atom group with name " + atoms_of + ".\n"); return COLVARS_ERROR; } - parse_error |= add_atoms_of_group(ag); + error_code |= add_atoms_of_group(ag); } } @@ -447,7 +462,7 @@ int cvm::atom_group::parse(std::string const &group_conf) std::string numbers_conf = ""; size_t pos = 0; while (key_lookup(group_conf, "atomNumbers", &numbers_conf, &pos)) { - parse_error |= add_atom_numbers(numbers_conf); + error_code |= add_atom_numbers(numbers_conf); numbers_conf = ""; } } @@ -456,7 +471,7 @@ int cvm::atom_group::parse(std::string const &group_conf) std::string index_group_name; if (get_keyval(group_conf, "indexGroup", index_group_name)) { // use an index group from the index file read globally - parse_error |= add_index_group(index_group_name); + error_code |= add_index_group(index_group_name); } } @@ -465,7 +480,7 @@ int cvm::atom_group::parse(std::string const &group_conf) size_t pos = 0; while (key_lookup(group_conf, "atomNumbersRange", &range_conf, &pos)) { - parse_error |= add_atom_numbers_range(range_conf); + error_code |= add_atom_numbers_range(range_conf); range_conf = ""; } } @@ -492,7 +507,7 @@ int cvm::atom_group::parse(std::string const &group_conf) cvm::error("Error: more instances of \"atomNameResidueRange\" than " "values of \"psfSegID\".\n", COLVARS_INPUT_ERROR); } else { - parse_error |= add_atom_name_residue_range(psf_segids.size() ? + error_code |= add_atom_name_residue_range(psf_segids.size() ? *psii : std::string(""), range_conf); if (psf_segids.size()) psii++; } @@ -517,26 +532,26 @@ int cvm::atom_group::parse(std::string const &group_conf) cvm::error("Error: atomsColValue, if provided, must be non-zero.\n", COLVARS_INPUT_ERROR); } - // NOTE: calls to add_atom() and/or add_atom_id() are in the proxy-implemented function - parse_error |= cvm::load_atoms(atoms_file_name.c_str(), *this, atoms_col, atoms_col_value); + error_code |= cvm::main()->proxy->load_atoms_pdb(atoms_file_name.c_str(), *this, atoms_col, + atoms_col_value); } } // Catch any errors from all the initialization steps above - if (parse_error || cvm::get_error()) return (parse_error || cvm::get_error()); + if (error_code || cvm::get_error()) return (error_code || cvm::get_error()); // checks of doubly-counted atoms have been handled by add_atom() already if (get_keyval(group_conf, "dummyAtom", dummy_atom_pos, cvm::atom_pos())) { - parse_error |= set_dummy(); - parse_error |= set_dummy_pos(dummy_atom_pos); + error_code |= set_dummy(); + error_code |= set_dummy_pos(dummy_atom_pos); } else { if (!(atoms_ids.size())) { - parse_error |= cvm::error("Error: no atoms defined for atom group \""+ - key+"\".\n", COLVARS_INPUT_ERROR); + error_code |= cvm::error("Error: no atoms defined for atom group \"" + key + "\".\n", + COLVARS_INPUT_ERROR); } // whether these atoms will ever receive forces or not @@ -546,7 +561,7 @@ int cvm::atom_group::parse(std::string const &group_conf) } // Now that atoms are defined we can parse the detailed fitting options - parse_error |= parse_fitting_options(group_conf); + error_code |= parse_fitting_options(group_conf); if (is_enabled(f_ag_scalable) && !b_dummy) { cvm::log("Enabling scalable calculation for group \""+this->key+"\".\n"); @@ -583,7 +598,9 @@ int cvm::atom_group::parse(std::string const &group_conf) cvm::log(print_atom_ids()); } - return (cvm::get_error() ? COLVARS_ERROR : COLVARS_OK); + if (is_enabled(f_ag_rotate)) setup_rotation_derivative(); + + return error_code; } @@ -883,8 +900,6 @@ int cvm::atom_group::parse_fitting_options(std::string const &group_conf) "to its radius of gyration), the optimal rotation and its gradients may become discontinuous. " "If that happens, use fittingGroup (or a different definition for it if already defined) " "to align the coordinates.\n"); - // initialize rot member data - rot.request_group1_gradients(group_for_fit->size()); } } @@ -912,7 +927,6 @@ void cvm::atom_group::do_feature_side_effects(int id) if (is_enabled(f_ag_center) || is_enabled(f_ag_rotate)) { atom_group *group_for_fit = fitting_group ? fitting_group : this; group_for_fit->fit_gradients.assign(group_for_fit->size(), cvm::atom_pos(0.0, 0.0, 0.0)); - rot.request_group1_gradients(group_for_fit->size()); } break; } @@ -1045,17 +1059,18 @@ void cvm::atom_group::calc_apply_roto_translation() // rotate the group (around the center of geometry if f_ag_center is // enabled, around the origin otherwise) rot.calc_optimal_rotation(fitting_group ? - fitting_group->positions() : - this->positions(), + fitting_group->atoms: + this->atoms, ref_pos); + const auto rot_mat = rot.matrix(); cvm::atom_iter ai; for (ai = this->begin(); ai != this->end(); ai++) { - ai->pos = rot.rotate(ai->pos); + ai->pos = rot_mat * ai->pos; } if (fitting_group) { for (ai = fitting_group->begin(); ai != fitting_group->end(); ai++) { - ai->pos = rot.rotate(ai->pos); + ai->pos = rot_mat * ai->pos; } } } @@ -1095,9 +1110,10 @@ void cvm::atom_group::read_velocities() if (is_enabled(f_ag_rotate)) { + const auto rot_mat = rot.matrix(); for (cvm::atom_iter ai = this->begin(); ai != this->end(); ai++) { ai->read_velocity(); - ai->vel = rot.rotate(ai->vel); + ai->vel = rot_mat * ai->vel; } } else { @@ -1116,9 +1132,10 @@ void cvm::atom_group::read_total_forces() if (is_enabled(f_ag_rotate)) { + const auto rot_mat = rot.matrix(); for (cvm::atom_iter ai = this->begin(); ai != this->end(); ai++) { ai->read_total_force(); - ai->total_force = rot.rotate(ai->total_force); + ai->total_force = rot_mat * ai->total_force; } } else { @@ -1200,52 +1217,71 @@ void cvm::atom_group::calc_fit_gradients() if (cvm::debug()) cvm::log("Calculating fit gradients.\n"); - cvm::atom_group *group_for_fit = fitting_group ? fitting_group : this; - - if (is_enabled(f_ag_center)) { - // add the center of geometry contribution to the gradients - cvm::rvector atom_grad; - - for (size_t i = 0; i < this->size(); i++) { - atom_grad += atoms[i].grad; - } - if (is_enabled(f_ag_rotate)) atom_grad = (rot.inverse()).rotate(atom_grad); - atom_grad *= (-1.0)/(cvm::real(group_for_fit->size())); - - for (size_t j = 0; j < group_for_fit->size(); j++) { - group_for_fit->fit_gradients[j] = atom_grad; - } - } - - if (is_enabled(f_ag_rotate)) { - - // add the rotation matrix contribution to the gradients - cvm::rotation const rot_inv = rot.inverse(); - - for (size_t i = 0; i < this->size(); i++) { - - // compute centered, unrotated position - cvm::atom_pos const pos_orig = - rot_inv.rotate((is_enabled(f_ag_center) ? (atoms[i].pos - ref_pos_cog) : (atoms[i].pos))); - - // calculate \partial(R(q) \vec{x}_i)/\partial q) \cdot \partial\xi/\partial\vec{x}_i - cvm::quaternion const dxdq = - rot.q.position_derivative_inner(pos_orig, atoms[i].grad); - - for (size_t j = 0; j < group_for_fit->size(); j++) { - // multiply by {\partial q}/\partial\vec{x}_j and add it to the fit gradients - for (size_t iq = 0; iq < 4; iq++) { - group_for_fit->fit_gradients[j] += dxdq[iq] * rot.dQ0_1[j][iq]; - } - } - } - } + if (is_enabled(f_ag_center) && is_enabled(f_ag_rotate)) + calc_fit_gradients_impl(); + if (is_enabled(f_ag_center) && !is_enabled(f_ag_rotate)) + calc_fit_gradients_impl(); + if (!is_enabled(f_ag_center) && is_enabled(f_ag_rotate)) + calc_fit_gradients_impl(); + if (!is_enabled(f_ag_center) && !is_enabled(f_ag_rotate)) + calc_fit_gradients_impl(); if (cvm::debug()) cvm::log("Done calculating fit gradients.\n"); } +template +void cvm::atom_group::calc_fit_gradients_impl() { + cvm::atom_group *group_for_fit = fitting_group ? fitting_group : this; + // the center of geometry contribution to the gradients + cvm::rvector atom_grad; + // the rotation matrix contribution to the gradients + const auto rot_inv = rot.inverse().matrix(); + // temporary variables for computing and summing derivatives + cvm::real sum_dxdq[4] = {0, 0, 0, 0}; + cvm::vector1d dq0_1(4); + // loop 1: iterate over the current atom group + for (size_t i = 0; i < size(); i++) { + cvm::atom_pos pos_orig; + if (B_ag_center) { + atom_grad += atoms[i].grad; + if (B_ag_rotate) pos_orig = rot_inv * (atoms[i].pos - ref_pos_cog); + } else { + if (B_ag_rotate) pos_orig = atoms[i].pos; + } + if (B_ag_rotate) { + // calculate \partial(R(q) \vec{x}_i)/\partial q) \cdot \partial\xi/\partial\vec{x}_i + cvm::quaternion const dxdq = + rot.q.position_derivative_inner(pos_orig, atoms[i].grad); + sum_dxdq[0] += dxdq[0]; + sum_dxdq[1] += dxdq[1]; + sum_dxdq[2] += dxdq[2]; + sum_dxdq[3] += dxdq[3]; + } + } + if (B_ag_center) { + if (B_ag_rotate) atom_grad = rot.inverse().matrix() * atom_grad; + atom_grad *= (-1.0)/(cvm::real(group_for_fit->size())); + } + // loop 2: iterate over the fitting group + if (B_ag_rotate) rot_deriv->prepare_derivative(rotation_derivative_dldq::use_dq); + for (size_t j = 0; j < group_for_fit->size(); j++) { + if (B_ag_center) { + group_for_fit->fit_gradients[j] = atom_grad; + } + if (B_ag_rotate) { + rot_deriv->calc_derivative_wrt_group1(j, nullptr, &dq0_1); + // multiply by {\partial q}/\partial\vec{x}_j and add it to the fit gradients + group_for_fit->fit_gradients[j] += sum_dxdq[0] * dq0_1[0] + + sum_dxdq[1] * dq0_1[1] + + sum_dxdq[2] * dq0_1[2] + + sum_dxdq[3] * dq0_1[3]; + } + } +} + + std::vector cvm::atom_group::positions() const { if (b_dummy) { @@ -1373,9 +1409,9 @@ void cvm::atom_group::apply_colvar_force(cvm::real const &force) if (is_enabled(f_ag_rotate)) { // rotate forces back to the original frame - cvm::rotation const rot_inv = rot.inverse(); + const auto rot_inv = rot.inverse().matrix(); for (cvm::atom_iter ai = this->begin(); ai != this->end(); ai++) { - ai->apply_force(rot_inv.rotate(force * ai->grad)); + ai->apply_force(rot_inv * (force * ai->grad)); } } else { @@ -1418,9 +1454,9 @@ void cvm::atom_group::apply_force(cvm::rvector const &force) if (is_enabled(f_ag_rotate)) { - cvm::rotation const rot_inv = rot.inverse(); + const auto rot_inv = rot.inverse().matrix(); for (cvm::atom_iter ai = this->begin(); ai != this->end(); ai++) { - ai->apply_force(rot_inv.rotate((ai->mass/total_mass) * force)); + ai->apply_force(rot_inv * ((ai->mass/total_mass) * force)); } } else { diff --git a/lib/colvars/colvaratoms.h b/lib/colvars/colvaratoms.h index 84c5ee137e..d16ca7bd56 100644 --- a/lib/colvars/colvaratoms.h +++ b/lib/colvars/colvaratoms.h @@ -15,6 +15,9 @@ #include "colvarparse.h" #include "colvardeps.h" +template +struct rotation_derivative; + /// \brief Stores numeric id, mass and all mutable data for an atom, /// mostly used by a \link colvar::cvc \endlink @@ -167,7 +170,7 @@ public: atom_group(std::vector const &atoms_in); /// \brief Destructor - ~atom_group(); + ~atom_group() override; /// \brief Optional name to reuse properties of this in other groups std::string name; @@ -180,7 +183,7 @@ public: int init(); /// \brief Initialize dependency tree - virtual int init_dependencies(); + int init_dependencies() override; /// \brief Update data required to calculate cvc's int setup(); @@ -221,16 +224,13 @@ public: static std::vector ag_features; /// \brief Implementation of the feature list accessor for atom group - virtual const std::vector &features() const + const std::vector &features() const override { return ag_features; } + + std::vector &modify_features() override { return ag_features; } + + static void delete_features() { - return ag_features; - } - virtual std::vector &modify_features() - { - return ag_features; - } - static void delete_features() { - for (size_t i=0; i < ag_features.size(); i++) { + for (size_t i = 0; i < ag_features.size(); i++) { delete ag_features[i]; } ag_features.clear(); @@ -330,6 +330,9 @@ public: /// The rotation calculated automatically if f_ag_rotate is defined cvm::rotation rot; + /// Rotation derivative; + rotation_derivative* rot_deriv; + /// \brief Indicates that the user has explicitly set centerToReference or /// rotateReference, and the corresponding reference: /// cvc's (eg rmsd, eigenvector) will not override the user's choice @@ -369,6 +372,8 @@ public: /// \brief (Re)calculate the optimal roto-translation void calc_apply_roto_translation(); + void setup_rotation_derivative(); + /// \brief Save aside the center of geometry of the reference positions, /// then subtract it from them /// @@ -492,6 +497,16 @@ public: /// \brief Calculate the derivatives of the fitting transformation void calc_fit_gradients(); +/*! @brief Actual implementation of `calc_fit_gradients`. The template is + * used to avoid branching inside the loops in case that the CPU + * branch prediction is broken (or further migration to GPU code). + * @tparam B_ag_center Centered the reference to origin? This should follow + * the value of `is_enabled(f_ag_center)`. + * @tparam B_ag_rotate Calculate the optimal rotation? This should follow + * the value of `is_enabled(f_ag_rotate)`. + */ + template void calc_fit_gradients_impl(); + /// \brief Derivatives of the fitting transformation std::vector fit_gradients; @@ -525,7 +540,7 @@ public: /// Implements possible actions to be carried out /// when a given feature is enabled /// This overloads the base function in colvardeps - void do_feature_side_effects(int id); + void do_feature_side_effects(int id) override; }; diff --git a/lib/colvars/colvarbias.cpp b/lib/colvars/colvarbias.cpp index 18969fc531..fdffdc1794 100644 --- a/lib/colvars/colvarbias.cpp +++ b/lib/colvars/colvarbias.cpp @@ -15,6 +15,7 @@ #include "colvarvalue.h" #include "colvarbias.h" #include "colvargrid.h" +#include "colvars_memstream.h" colvarbias::colvarbias(char const *key) @@ -166,6 +167,10 @@ int colvarbias::init_dependencies() { init_feature(f_cvb_get_total_force, "obtain_total_force", f_type_dynamic); require_feature_children(f_cvb_get_total_force, f_cv_total_force); + // Depending on back-end, we may not obtain total force at step 0 + if (!cvm::main()->proxy->total_forces_same_step()) { + exclude_feature_self(f_cvb_get_total_force, f_cvb_step_zero_data); + } init_feature(f_cvb_output_acc_work, "output_accumulated_work", f_type_user); require_feature_self(f_cvb_output_acc_work, f_cvb_apply_force); @@ -192,6 +197,8 @@ int colvarbias::init_dependencies() { init_feature(f_cvb_scale_biasing_force, "scale_biasing_force", f_type_user); require_feature_children(f_cvb_scale_biasing_force, f_cv_grid); + init_feature(f_cvb_extended, "Bias on extended-Lagrangian variables", f_type_static); + // check that everything is initialized for (i = 0; i < colvardeps::f_cvb_ntot; i++) { if (is_not_set(i)) { @@ -202,7 +209,7 @@ int colvarbias::init_dependencies() { // Initialize feature_states for each instance feature_states.reserve(f_cvb_ntot); - for (i = 0; i < f_cvb_ntot; i++) { + for (i = feature_states.size(); i < f_cvb_ntot; i++) { feature_states.push_back(feature_state(true, false)); // Most features are available, so we set them so // and list exceptions below @@ -436,43 +443,55 @@ int colvarbias::bin_num() cvm::error("Error: bin_num() not implemented.\n"); return COLVARS_NOT_IMPLEMENTED; } + int colvarbias::current_bin() { cvm::error("Error: current_bin() not implemented.\n"); return COLVARS_NOT_IMPLEMENTED; } + int colvarbias::bin_count(int /* bin_index */) { cvm::error("Error: bin_count() not implemented.\n"); return COLVARS_NOT_IMPLEMENTED; } + +int colvarbias::local_sample_count(int /* radius */) +{ + cvm::error("Error: local_sample_count() not implemented.\n"); + return COLVARS_NOT_IMPLEMENTED; +} + int colvarbias::replica_share() { cvm::error("Error: replica_share() not implemented.\n"); return COLVARS_NOT_IMPLEMENTED; } +size_t colvarbias::replica_share_freq() const +{ + return 0; +} + std::string const colvarbias::get_state_params() const { std::ostringstream os; - os << "step " << cvm::step_absolute() << "\n" - << "name " << this->name << "\n"; + os << " step " << cvm::step_absolute() << "\n" + << " name " << this->name << "\n"; return os.str(); } -int colvarbias::set_state_params(std::string const &conf) +int colvarbias::check_matching_state(std::string const &conf) { - matching_state = false; - std::string check_name = ""; colvarparse::get_keyval(conf, "name", check_name, std::string(""), colvarparse::parse_silent); if (check_name.size() == 0) { - cvm::error("Error: \""+bias_type+"\" block within the restart file " - "has no identifiers.\n", COLVARS_INPUT_ERROR); + return cvm::error("Error: \""+bias_type+"\" block within the state file " + "has no identifiers.\n", COLVARS_INPUT_ERROR); } if (check_name != this->name) { @@ -480,11 +499,17 @@ int colvarbias::set_state_params(std::string const &conf) cvm::log("Ignoring state of bias \""+check_name+ "\": this bias is named \""+name+"\".\n"); } - return COLVARS_OK; + matching_state = false; + } else { + matching_state = true; } - matching_state = true; + return COLVARS_OK; +} + +int colvarbias::set_state_params(std::string const &conf) +{ colvarparse::get_keyval(conf, "step", state_file_step, cvm::step_absolute(), colvarparse::parse_silent); @@ -495,76 +520,119 @@ int colvarbias::set_state_params(std::string const &conf) std::ostream & colvarbias::write_state(std::ostream &os) { if (cvm::debug()) { - cvm::log("Writing state file for bias \""+name+"\"\n"); + cvm::log("Writing formatted state for bias \""+name+"\"\n"); } os.setf(std::ios::scientific, std::ios::floatfield); os.precision(cvm::cv_prec); os << state_keyword << " {\n" - << " configuration {\n"; - std::istringstream is(get_state_params()); - std::string line; - while (std::getline(is, line)) { - os << " " << line << "\n"; - } - os << " }\n"; + << " configuration {\n" + << get_state_params() + << " }\n"; write_state_data(os); os << "}\n\n"; return os; } -std::istream & colvarbias::read_state(std::istream &is) +cvm::memory_stream & colvarbias::write_state(cvm::memory_stream &os) { - std::streampos const start_pos = is.tellg(); + if (cvm::debug()) { + cvm::log("Writing unformatted state for bias \""+name+"\"\n"); + } + os << state_keyword << std::string("configuration") << get_state_params(); + write_state_data(os); + return os; +} + + +template +void raise_error_rewind(IST &is, SPT start_pos, std::string const &bias_type, + std::string const &bias_name, std::string const added_msg = "") +{ + auto state = is.rdstate(); + is.clear(); + is.seekg(start_pos); + is.setstate(state | std::ios::failbit); + cvm::error("Error: in reading state for \"" + bias_type + "\" bias \"" + bias_name + + "\" at position " + cvm::to_str(static_cast(is.tellg())) + " in stream." + + added_msg + "\n", + COLVARS_INPUT_ERROR); +} + + +template IST & colvarbias::read_state_template_(IST &is) +{ + auto const start_pos = is.tellg(); std::string key, brace, conf; - if ( !(is >> key) || !(key == state_keyword || key == bias_type) || - !(is >> brace) || !(brace == "{") || - !(is >> colvarparse::read_block("configuration", &conf)) || - (set_state_params(conf) != COLVARS_OK) ) { - cvm::error("Error: in reading state configuration for \""+bias_type+ - "\" bias \""+ - this->name+"\" at position "+ - cvm::to_str(static_cast(is.tellg()))+ - " in stream.\n", COLVARS_INPUT_ERROR); - is.clear(); - is.seekg(start_pos, std::ios::beg); - is.setstate(std::ios::failbit); + if (is >> key) { + if (key == state_keyword || key == bias_type) { + + if (! std::is_same::value) { + // Formatted input only + if (!(is >> brace) || !(brace == "{") ) { + raise_error_rewind(is, start_pos, bias_type, name); + return is; + } + } + + if (!(is >> colvarparse::read_block("configuration", &conf)) || + (check_matching_state(conf) != COLVARS_OK)) { + raise_error_rewind(is, start_pos, bias_type, name); + return is; + } + + } else { + // Not a match for this bias type, rewind without error + is.seekg(start_pos); + return is; + } + + } else { + raise_error_rewind(is, start_pos, bias_type, name); return is; } - if (matching_state == false) { - // This state is not for this bias - is.seekg(start_pos, std::ios::beg); + if (!matching_state) { + // No errors, but not a match for this bias instance; rewind + is.seekg(start_pos); return is; } - cvm::log("Restarting "+bias_type+" bias \""+name+"\" from step number "+ - cvm::to_str(state_file_step)+".\n"); - - if (!read_state_data(is)) { - cvm::error("Error: in reading state data for \""+bias_type+"\" bias \""+ - this->name+"\" at position "+ - cvm::to_str(static_cast(is.tellg()))+ - " in stream.\n", COLVARS_INPUT_ERROR); - is.clear(); - is.seekg(start_pos, std::ios::beg); - is.setstate(std::ios::failbit); + if ((set_state_params(conf) != COLVARS_OK) || !read_state_data(is)) { + raise_error_rewind(is, start_pos, bias_type, name); } - is >> brace; - if (brace != "}") { - cvm::error("Error: corrupt restart information for \""+bias_type+"\" bias \""+ - this->name+"\": no matching brace at position "+ - cvm::to_str(static_cast(is.tellg()))+ - " in stream.\n"); - is.setstate(std::ios::failbit); + if (! std::is_same::value) { + is >> brace; + if (brace != "}") { + cvm::error("Error: corrupt restart information for \""+bias_type+"\" bias \""+ + this->name+"\": no matching brace at position "+ + cvm::to_str(static_cast(is.tellg()))+ + " in stream.\n"); + raise_error_rewind(is, start_pos, bias_type, name); + } } + cvm::log("Restarted " + bias_type + " bias \"" + name + "\" with step number " + + cvm::to_str(state_file_step) + ".\n"); + return is; } +std::istream &colvarbias::read_state(std::istream &is) +{ + return read_state_template_(is); +} + + +cvm::memory_stream &colvarbias::read_state(cvm::memory_stream &is) +{ + return read_state_template_(is); +} + + int colvarbias::write_state_prefix(std::string const &prefix) { std::string const filename = @@ -635,25 +703,51 @@ int colvarbias::read_state_string(char const *buffer) } -std::istream & colvarbias::read_state_data_key(std::istream &is, char const *key) +std::ostream &colvarbias::write_state_data_key(std::ostream &os, std::string const &key, + bool header) { - std::streampos const start_pos = is.tellg(); + os << (header ? "\n" : "") << key << (header ? "\n" : " "); + return os; +} + + +cvm::memory_stream &colvarbias::write_state_data_key(cvm::memory_stream &os, std::string const &key, + bool /* header */) +{ + os << std::string(key); + return os; +} + + +template +IST &colvarbias::read_state_data_key_template_(IST &is, std::string const &key) +{ + auto const start_pos = is.tellg(); std::string key_in; - if ( !(is >> key_in) || - !(to_lower_cppstr(key_in) == to_lower_cppstr(std::string(key))) ) { - cvm::error("Error: in reading restart configuration for "+ - bias_type+" bias \""+this->name+"\" at position "+ - cvm::to_str(static_cast(is.tellg()))+ - " in stream.\n", COLVARS_INPUT_ERROR); - is.clear(); - is.seekg(start_pos, std::ios::beg); - is.setstate(std::ios::failbit); - return is; + if (is >> key_in) { + if (key_in != key) { + raise_error_rewind(is, start_pos, bias_type, name, + " Expected keyword \"" + std::string(key) + "\", found \"" + key_in + + "\"."); + } + } else { + raise_error_rewind(is, start_pos, bias_type, name); } return is; } +std::istream & colvarbias::read_state_data_key(std::istream &is, std::string const &key) +{ + return read_state_data_key_template_(is, key); +} + + +cvm::memory_stream & colvarbias::read_state_data_key(cvm::memory_stream &is, std::string const &key) +{ + return read_state_data_key_template_(is, key); +} + std::ostream & colvarbias::write_traj_label(std::ostream &os) { @@ -686,28 +780,11 @@ colvarbias_ti::colvarbias_ti(char const *key) // Samples at step zero can not be collected feature_states[f_cvb_step_zero_data].available = false; } - ti_avg_forces = NULL; - ti_count = NULL; } colvarbias_ti::~colvarbias_ti() { - colvarbias_ti::clear_state_data(); -} - - -int colvarbias_ti::clear_state_data() -{ - if (ti_avg_forces != NULL) { - delete ti_avg_forces; - ti_avg_forces = NULL; - } - if (ti_count != NULL) { - delete ti_count; - ti_count = NULL; - } - return COLVARS_OK; } @@ -765,7 +842,7 @@ int colvarbias_ti::init(std::string const &conf) int colvarbias_ti::init_grids() { if (is_enabled(f_cvb_calc_ti_samples)) { - if (ti_avg_forces == NULL) { + if (!ti_avg_forces) { ti_bin.resize(num_variables()); ti_system_forces.resize(num_variables()); for (size_t icv = 0; icv < num_variables(); icv++) { @@ -773,8 +850,8 @@ int colvarbias_ti::init_grids() ti_system_forces[icv].is_derivative(); ti_system_forces[icv].reset(); } - ti_avg_forces = new colvar_grid_gradient(colvars); - ti_count = new colvar_grid_count(colvars); + ti_avg_forces.reset(new colvar_grid_gradient(colvars)); + ti_count.reset(new colvar_grid_count(colvars)); ti_avg_forces->samples = ti_count; ti_count->has_parent_data = true; } @@ -860,9 +937,22 @@ std::ostream & colvarbias_ti::write_state_data(std::ostream &os) if (! is_enabled(f_cvb_calc_ti_samples)) { return os; } - os << "\nhistogram\n"; + write_state_data_key(os, "histogram"); ti_count->write_raw(os); - os << "\nsystem_forces\n"; + write_state_data_key(os, "system_forces"); + ti_avg_forces->write_raw(os); + return os; +} + + +cvm::memory_stream & colvarbias_ti::write_state_data(cvm::memory_stream &os) +{ + if (! is_enabled(f_cvb_calc_ti_samples)) { + return os; + } + write_state_data_key(os, "histogram"); + ti_count->write_raw(os); + write_state_data_key(os, "system_forces"); ti_avg_forces->write_raw(os); return os; } @@ -895,6 +985,33 @@ std::istream & colvarbias_ti::read_state_data(std::istream &is) } +cvm::memory_stream & colvarbias_ti::read_state_data(cvm::memory_stream &is) +{ + if (! is_enabled(f_cvb_calc_ti_samples)) { + return is; + } + if (cvm::debug()) { + cvm::log("Reading state data for the TI estimator.\n"); + } + if (! read_state_data_key(is, "histogram")) { + return is; + } + if (! ti_count->read_raw(is)) { + return is; + } + if (! read_state_data_key(is, "system_forces")) { + return is; + } + if (! ti_avg_forces->read_raw(is)) { + return is; + } + if (cvm::debug()) { + cvm::log("Done reading state data for the TI estimator.\n"); + } + return is; +} + + int colvarbias_ti::write_output_files() { int error_code = COLVARS_OK; diff --git a/lib/colvars/colvarbias.h b/lib/colvars/colvarbias.h index e865902be6..03f93f4315 100644 --- a/lib/colvars/colvarbias.h +++ b/lib/colvars/colvarbias.h @@ -10,6 +10,8 @@ #ifndef COLVARBIAS_H #define COLVARBIAS_H +#include + #include "colvar.h" #include "colvarparse.h" #include "colvardeps.h" @@ -91,11 +93,16 @@ public: // FIXME this is currently 1D only virtual int current_bin(); //// Give the count at a given bin index. - // FIXME this is currently 1D only virtual int bin_count(int bin_index); + /// Return the average number of samples in a given "radius" around current bin + virtual int local_sample_count(int radius); + //// Share information between replicas, whatever it may be. virtual int replica_share(); + /// Report the frequency at which this bias needs to communicate with replicas + virtual size_t replica_share_freq() const; + /// Perform analysis tasks virtual void analyze() {} @@ -133,32 +140,87 @@ public: /// Write the values of specific mutable properties to a string virtual std::string const get_state_params() const; + /// Check the name of the bias vs. the given string, set the matching_state flag accordingly + int check_matching_state(std::string const &conf); + /// Read the values of specific mutable properties from a string virtual int set_state_params(std::string const &state_conf); - /// Write all mutable data not already written by get_state_params() + /// Write all mutable data not already written by get_state_params() to a formatted stream virtual std::ostream & write_state_data(std::ostream &os) { return os; } - /// Read all mutable data not already set by set_state_params() + /// Write all mutable data not already written by get_state_params() to an unformatted stream + virtual cvm::memory_stream & write_state_data(cvm::memory_stream &os) + { + return os; + } + + /// Read all mutable data not already set by set_state_params() from a formatted stream virtual std::istream & read_state_data(std::istream &is) { return is; } - /// Read a keyword from the state data (typically a header) - /// \param Input stream - /// \param Keyword labeling the header block - std::istream & read_state_data_key(std::istream &is, char const *key); + /// Read all mutable data not already set by set_state_params() from an unformatted stream + virtual cvm::memory_stream & read_state_data(cvm::memory_stream &is) + { + return is; + } - /// Write the bias configuration to a state file or other stream - std::ostream & write_state(std::ostream &os); + /// Write a keyword header for a data sequence to a formatted stream + /// \param[in,out] os Output stream + /// \param[in] key Keyword labeling the header block + /// \param[in] header Whether this is the header of a multi-line segment vs a single line + std::ostream &write_state_data_key(std::ostream &os, std::string const &key, bool header = true); - /// Read the bias configuration from a restart file or other stream + /// Write a keyword header for a data sequence to an unformatted stream + /// \param[in,out] os Output stream + /// \param[in] key Keyword labeling the header block + /// \param[in] header Ignored + cvm::memory_stream &write_state_data_key(cvm::memory_stream &os, std::string const &key, + bool header = true); + +private: + + /// Read a keyword header for a data sequence from a stream + /// \param[in,out] Input stream + /// \param[in] Keyword labeling the header block; an error will be raised if not matching + template IST &read_state_data_key_template_(IST &is, std::string const &key); + +public: + + /// Read a keyword header for a data sequence from a formatted stream + /// \param[in,out] Input stream + /// \param[in] Keyword labeling the header block; an error will be raised if not matching + std::istream & read_state_data_key(std::istream &is, std::string const &key); + + /// Read a keyword header for a data sequence from an unformatted stream + /// \param[in,out] Input stream + /// \param[in] Keyword labeling the header block; an error will be raised if not matching + cvm::memory_stream & read_state_data_key(cvm::memory_stream &is, std::string const &key); + +private: + + /// Generic stream reading function (formatted and not) + template IST & read_state_template_(IST &is); + +public: + + /// Write the bias configuration to a formatted stream + std::ostream &write_state(std::ostream &os); + + /// Write the bias configuration to an unformatted stream + cvm::memory_stream & write_state(cvm::memory_stream &os); + + /// Read the bias configuration from a formatted stream std::istream & read_state(std::istream &is); + /// Read the bias configuration from an unformatted stream + cvm::memory_stream & read_state(cvm::memory_stream &is); + /// Write the bias state to a file with the given prefix int write_state_prefix(std::string const &prefix); @@ -274,8 +336,6 @@ public: colvarbias_ti(char const *key); virtual ~colvarbias_ti(); - virtual int clear_state_data(); - virtual int init(std::string const &conf); virtual int init_grids(); virtual int update(); @@ -288,7 +348,9 @@ public: virtual std::string const get_state_params() const; virtual int set_state_params(std::string const &state_conf); virtual std::ostream & write_state_data(std::ostream &os); + virtual cvm::memory_stream & write_state_data(cvm::memory_stream &os); virtual std::istream & read_state_data(std::istream &is); + virtual cvm::memory_stream & read_state_data(cvm::memory_stream &is); virtual int write_output_files(); protected: @@ -297,10 +359,10 @@ protected: std::vector ti_system_forces; /// Averaged system forces - colvar_grid_gradient *ti_avg_forces; + std::shared_ptr ti_avg_forces; /// Histogram of sampled data - colvar_grid_count *ti_count; + std::shared_ptr ti_count; /// Because total forces may be from the last simulation step, /// store the index of the variables then diff --git a/lib/colvars/colvarbias_abf.cpp b/lib/colvars/colvarbias_abf.cpp index 7d6b7b7fef..6327650863 100644 --- a/lib/colvars/colvarbias_abf.cpp +++ b/lib/colvars/colvarbias_abf.cpp @@ -12,29 +12,15 @@ #include "colvarmodule.h" #include "colvar.h" #include "colvarbias_abf.h" - +#include "colvars_memstream.h" colvarbias_abf::colvarbias_abf(char const *key) : colvarbias(key), b_UI_estimator(false), b_CZAR_estimator(false), pabf_freq(0), - system_force(NULL), - gradients(NULL), - samples(NULL), - pmf(NULL), - z_gradients(NULL), - z_samples(NULL), - czar_gradients(NULL), - czar_pmf(NULL), - last_gradients(NULL), - last_samples(NULL) + system_force(NULL) { - colvarproxy *proxy = cvm::main()->proxy; - if (!proxy->total_forces_same_step()) { - // Samples at step zero can not be collected - feature_states[f_cvb_step_zero_data].available = false; - } } @@ -42,7 +28,10 @@ int colvarbias_abf::init(std::string const &conf) { colvarproxy *proxy = cvm::main()->proxy; - colvarbias::init(conf); + int err = colvarbias::init(conf); + if (err != COLVARS_OK) { + return err; + } cvm::main()->cite_feature("ABF colvar bias implementation"); enable(f_cvb_scalar_variables); @@ -54,18 +43,11 @@ int colvarbias_abf::init(std::string const &conf) // ************* parsing general ABF options *********************** - get_keyval_feature((colvarparse *)this, conf, "applyBias", f_cvb_apply_force, true); + get_keyval_feature(this, conf, "applyBias", f_cvb_apply_force, true); if (!is_enabled(f_cvb_apply_force)){ cvm::log("WARNING: ABF biases will *not* be applied!\n"); } - get_keyval(conf, "updateBias", update_bias, true); - if (update_bias) { - enable(f_cvb_history_dependent); - } else { - cvm::log("WARNING: ABF biases will *not* be updated!\n"); - } - get_keyval(conf, "hideJacobian", hide_Jacobian, false); if (hide_Jacobian) { cvm::log("Jacobian (geometric) forces will be handled internally.\n"); @@ -73,13 +55,21 @@ int colvarbias_abf::init(std::string const &conf) cvm::log("Jacobian (geometric) forces will be included in reported free energy gradients.\n"); } - get_keyval(conf, "fullSamples", full_samples, 200); - if ( full_samples <= 1 ) full_samples = 1; - min_samples = full_samples / 2; - // full_samples - min_samples >= 1 is guaranteed + full_samples = 200; + get_keyval(conf, "fullSamples", full_samples, full_samples); + get_keyval(conf, "minSamples", min_samples, full_samples / 2); + + if (full_samples <= 1 ) { + full_samples = 1; + min_samples = 0; + } + if (min_samples >= full_samples) { + return cvm::error("Error: minSamples must be lower than fullSamples\n"); + } get_keyval(conf, "inputPrefix", input_prefix, std::vector()); + history_last_step = -1; get_keyval(conf, "historyFreq", history_freq, 0); if (history_freq != 0) { if (output_freq == 0) { @@ -92,7 +82,6 @@ int colvarbias_abf::init(std::string const &conf) } } } - b_history_files = (history_freq > 0); // shared ABF get_keyval(conf, "shared", shared_on, false); @@ -105,30 +94,25 @@ int colvarbias_abf::init(std::string const &conf) } cvm::log("shared ABF will be applied among "+ cvm::to_str(proxy->num_replicas()) + " replicas.\n"); - if (cvm::proxy->smp_enabled() == COLVARS_OK) { - cvm::error("Error: shared ABF is currently not available with SMP parallelism; " - "please set \"SMP off\" at the top of the Colvars configuration file.\n", - COLVARS_NOT_IMPLEMENTED); - return COLVARS_NOT_IMPLEMENTED; - } // If shared_freq is not set, we default to output_freq get_keyval(conf, "sharedFreq", shared_freq, output_freq); + if ( shared_freq && output_freq % shared_freq ) { + return cvm::error("Error: outputFreq must be a multiple of sharedFreq.\n"); + } + + // Allocate these at init time if possible + local_samples.reset(new colvar_grid_count(colvars)); + local_gradients.reset(new colvar_grid_gradient(colvars, local_samples)); + local_pmf.reset(new integrate_potential(colvars, local_gradients)); } // ************* checking the associated colvars ******************* if (num_variables() == 0) { - cvm::error("Error: no collective variables specified for the ABF bias.\n"); - return COLVARS_ERROR; + return cvm::error("Error: no collective variables specified for the ABF bias.\n"); } - if (update_bias) { - // Request calculation of total force - if(enable(f_cvb_get_total_force)) return cvm::get_error(); - } - - bool b_extended = false; size_t i; for (i = 0; i < num_variables(); i++) { @@ -140,11 +124,10 @@ int colvarbias_abf::init(std::string const &conf) colvars[i]->enable(f_cv_hide_Jacobian); } - // If any colvar is extended-system (restrained style, not external with constraint), we are running eABF - if (colvars[i]->is_enabled(f_cv_extended_Lagrangian) - && !colvars[i]->is_enabled(f_cv_external)) { - b_extended = true; - } + // If any colvar is extended-system, we need to collect the extended + // system gradient + if (colvars[i]->is_enabled(f_cv_extended_Lagrangian)) + enable(f_cvb_extended); // Cannot mix and match coarse time steps with ABF because it gives // wrong total force averages - total force needs to be averaged over @@ -160,7 +143,15 @@ int colvarbias_abf::init(std::string const &conf) // and make it just a warning if some parameter is set? } - if (b_extended) { + get_keyval(conf, "updateBias", update_bias, true); + if (update_bias) { + enable(f_cvb_history_dependent); + enable(f_cvb_get_total_force); + } else { + cvm::log("WARNING: ABF biases will *not* be updated!\n"); + } + + if (is_enabled(f_cvb_extended)) { cvm::main()->cite_feature("eABF implementation"); } else { cvm::main()->cite_feature("Internal-forces free energy estimator"); @@ -190,13 +181,14 @@ int colvarbias_abf::init(std::string const &conf) cvm::log("Allocating count and free energy gradient grids.\n"); } - samples = new colvar_grid_count(colvars); - gradients = new colvar_grid_gradient(colvars); - gradients->samples = samples; - samples->has_parent_data = true; + samples.reset(new colvar_grid_count(colvars)); + gradients.reset(new colvar_grid_gradient(colvars, samples)); - // Data for eAB F z-based estimator - if ( b_extended ) { + gradients->full_samples = full_samples; + gradients->min_samples = min_samples; + + // Data for eABF z-based estimator + if (is_enabled(f_cvb_extended)) { get_keyval(conf, "CZARestimator", b_CZAR_estimator, true); if ( b_CZAR_estimator ) { cvm::main()->cite_feature("CZAR eABF estimator"); @@ -206,13 +198,11 @@ int colvarbias_abf::init(std::string const &conf) colvarparse::parse_silent); z_bin.assign(num_variables(), 0); - z_samples = new colvar_grid_count(colvars); + z_samples.reset(new colvar_grid_count(colvars)); z_samples->request_actual_value(); - z_gradients = new colvar_grid_gradient(colvars); + z_gradients.reset(new colvar_grid_gradient(colvars, z_samples)); z_gradients->request_actual_value(); - z_gradients->samples = z_samples; - z_samples->has_parent_data = true; - czar_gradients = new colvar_grid_gradient(colvars); + czar_gradients.reset(new colvar_grid_gradient(colvars)); } get_keyval(conf, "integrate", b_integrate, num_variables() <= 3); // Integrate for output if d<=3 @@ -222,9 +212,9 @@ int colvarbias_abf::init(std::string const &conf) cvm::error("Error: cannot integrate free energy in dimension > 3.\n"); return COLVARS_ERROR; } - pmf = new integrate_potential(colvars, gradients); - if ( b_CZAR_estimator ) { - czar_pmf = new integrate_potential(colvars, czar_gradients); + pmf.reset(new integrate_potential(colvars, gradients)); + if (b_CZAR_estimator) { + czar_pmf.reset(new integrate_potential(colvars, czar_gradients)); } // Parameters for integrating initial (and final) gradient data get_keyval(conf, "integrateMaxIterations", integrate_iterations, 10000, colvarparse::parse_silent); @@ -235,16 +225,34 @@ int colvarbias_abf::init(std::string const &conf) get_keyval(conf, "pABFintegrateTol", pabf_integrate_tol, 1e-4, colvarparse::parse_silent); } + if (b_CZAR_estimator && shared_on && cvm::main()->proxy->replica_index() == 0) { + // The pointers below are used for outputting CZAR data + // Allocate grids for collected global data, on replica 0 only + global_z_samples.reset(new colvar_grid_count(colvars)); + global_z_gradients.reset(new colvar_grid_gradient(colvars, global_z_samples)); + global_czar_gradients.reset(new colvar_grid_gradient(colvars)); + global_czar_pmf.reset(new integrate_potential(colvars, global_czar_gradients)); + } else { + // otherwise they are just aliases for the local CZAR grids + global_z_samples = z_samples; + global_z_gradients = z_gradients; + global_czar_gradients = czar_gradients; + global_czar_pmf = czar_pmf; + } + // For shared ABF, we store a second set of grids. // This used to be only if "shared" was defined, // but now we allow calling share externally (e.g. from Tcl). - last_samples = new colvar_grid_count(colvars); - last_gradients = new colvar_grid_gradient(colvars); - last_gradients->samples = last_samples; - last_samples->has_parent_data = true; - shared_last_step = -1; + if (b_CZAR_estimator) { + z_samples_in.reset(new colvar_grid_count(colvars)); + z_gradients_in.reset(new colvar_grid_gradient(colvars, z_samples_in)); + } + last_samples.reset(new colvar_grid_count(colvars)); + last_gradients.reset(new colvar_grid_gradient(colvars, last_samples)); + // Any data collected after now is new for shared ABF purposes + shared_last_step = cvm::step_absolute(); - // If custom grids are provided, read them + // Read any custom input ABF data if ( input_prefix.size() > 0 ) { read_gradients_samples(); // Update divergence to account for input data @@ -252,11 +260,15 @@ int colvarbias_abf::init(std::string const &conf) } // if extendedLangrangian is on, then call UI estimator - if (b_extended) { + if (is_enabled(f_cvb_extended)) { get_keyval(conf, "UIestimator", b_UI_estimator, false); if (b_UI_estimator) { - + if (shared_on) { + cvm::error("Error: UI estimator is not available for multiple-walker (shared) ABF.\n"); + b_UI_estimator = false; + return COLVARS_ERROR; + } cvm::main()->cite_feature("Umbrella-integration eABF estimator"); std::vector UI_lowerboundary; std::vector UI_upperboundary; @@ -290,63 +302,11 @@ int colvarbias_abf::init(std::string const &conf) /// Destructor colvarbias_abf::~colvarbias_abf() { - if (samples) { - delete samples; - samples = NULL; - } - - if (gradients) { - delete gradients; - gradients = NULL; - } - - if (pmf) { - delete pmf; - pmf = NULL; - } - - if (z_samples) { - delete z_samples; - z_samples = NULL; - } - - if (z_gradients) { - delete z_gradients; - z_gradients = NULL; - } - - if (czar_gradients) { - delete czar_gradients; - czar_gradients = NULL; - } - - if (czar_pmf) { - delete czar_pmf; - czar_pmf = NULL; - } - - // shared ABF - // We used to only do this if "shared" was defined, - // but now we can call shared externally - if (last_samples) { - delete last_samples; - last_samples = NULL; - } - - if (last_gradients) { - delete last_gradients; - last_gradients = NULL; - } - - if (system_force) { - delete [] system_force; - system_force = NULL; - } + if (system_force) delete[] system_force; } /// Update the FE gradient, compute and apply biasing force -/// also output data to disk if needed int colvarbias_abf::update() { @@ -356,68 +316,79 @@ int colvarbias_abf::update() for (i = 0; i < num_variables(); i++) { bin[i] = samples->current_bin_scalar(i); } + + + // *********************************************************** + // ****** ABF Part I: update the FE gradient estimate ****** + // *********************************************************** + + if (cvm::proxy->total_forces_same_step()) { // e.g. in LAMMPS, total forces are current force_bin = bin; } - if (cvm::step_relative() > 0 || is_enabled(f_cvb_step_zero_data)) { + if (can_accumulate_data() && is_enabled(f_cvb_history_dependent)) { - if (update_bias) { -// if (b_adiabatic_reweighting) { -// // Update gradients non-locally based on conditional distribution of -// // fictitious variable TODO -// -// } else + if (cvm::step_relative() > 0 || cvm::proxy->total_forces_same_step()) { if (samples->index_ok(force_bin)) { // Only if requested and within bounds of the grid... - for (i = 0; i < num_variables(); i++) { - // get total forces (lagging by 1 timestep) from colvars - // and subtract previous ABF force if necessary - update_system_force(i); - } - gradients->acc_force(force_bin, system_force); - if ( b_integrate ) { - pmf->update_div_neighbors(force_bin); - } - } - } + // get total forces (lagging by 1 timestep) from colvars + // and subtract previous ABF force if necessary + update_system_force(); - if ( z_gradients && update_bias ) { - for (i = 0; i < num_variables(); i++) { - z_bin[i] = z_samples->current_bin_scalar(i); + gradients->acc_force(force_bin, system_force); + if ( b_integrate ) { + pmf->update_div_neighbors(force_bin); + } } - if ( z_samples->index_ok(z_bin) ) { + + if ( z_gradients ) { for (i = 0; i < num_variables(); i++) { - // If we are outside the range of xi, the force has not been obtained above + z_bin[i] = z_samples->current_bin_scalar(i); + } + if ( z_samples->index_ok(z_bin) ) { + // If we are outside the range of z, the force has not been obtained above // the function is just an accessor, so cheap to call again anyway - update_system_force(i); + update_system_force(); + z_gradients->acc_force(z_bin, system_force); } - z_gradients->acc_force(z_bin, system_force); } - } - if ( b_integrate ) { if ( pabf_freq && cvm::step_relative() % pabf_freq == 0 ) { cvm::real err; - int iter = pmf->integrate(pabf_integrate_iterations, pabf_integrate_tol, err); - if ( iter == pabf_integrate_iterations ) { - cvm::log("Warning: PMF integration did not converge to " + cvm::to_str(pabf_integrate_tol) - + " in " + cvm::to_str(pabf_integrate_iterations) + int iter = pmf->integrate(integrate_iterations, integrate_tol, err); + if ( iter == integrate_iterations ) { + cvm::log("Warning: PMF integration did not converge to " + cvm::to_str(integrate_tol) + + " in " + cvm::to_str(integrate_iterations) + " steps. Residual error: " + cvm::to_str(err)); } - pmf->set_zero_minimum(); // TODO: do this only when necessary } } } - if (!cvm::proxy->total_forces_same_step()) { + if (!(cvm::proxy->total_forces_same_step())) { // e.g. in NAMD, total forces will be available for next timestep // hence we store the current colvar bin force_bin = bin; } + // Share data after force sample is collected for this time step + // shared_on can be true with shared_freq 0 if we are sharing via script + if (shared_on && shared_freq && + cvm::step_absolute() > shared_last_step && // time has passed since the last sharing timestep + // (avoid re-sharing at last and first ts of successive run statements) + cvm::step_absolute() % shared_freq == 0) { + // Share gradients and samples for shared ABF. + replica_share(); + } + + // ****************************************************************** + // ****** ABF Part II: calculate and apply the biasing force ****** + // ****************************************************************** + + // Reset biasing forces from previous timestep for (i = 0; i < num_variables(); i++) { colvar_forces[i].reset(); @@ -426,51 +397,20 @@ int colvarbias_abf::update() // Compute and apply the new bias, if applicable if (is_enabled(f_cvb_apply_force) && samples->index_ok(bin)) { - cvm::real count = cvm::real(samples->value(bin)); - cvm::real fact = 1.0; + std::vector force(num_variables()); + calc_biasing_force(force); - // Factor that ensures smooth introduction of the force - if ( count < full_samples ) { - fact = (count < min_samples) ? 0.0 : - (cvm::real(count - min_samples)) / (cvm::real(full_samples - min_samples)); - } - - std::vector grad(num_variables()); - - if ( pabf_freq ) { - // In projected ABF, the force is the PMF gradient estimate - pmf->vector_gradient_finite_diff(bin, grad); - } else { - // Normal ABF - gradients->vector_value(bin, grad); - } - -// if ( b_adiabatic_reweighting) { -// // Average of force according to conditional distribution of fictitious variable -// // need freshly integrated PMF, gradient TODO -// } else - if ( fact != 0.0 ) { - if ( (num_variables() == 1) && colvars[0]->periodic_boundaries() ) { - // Enforce a zero-mean bias on periodic, 1D coordinates - // in other words: boundary condition is that the biasing potential is periodic - // This is enforced naturally if using integrated PMF - colvar_forces[0].real_value = fact * (grad[0] - gradients->average ()); - } else { - for (i = 0; i < num_variables(); i++) { - // subtracting the mean force (opposite of the FE gradient) means adding the gradient - colvar_forces[i].real_value = fact * grad[i]; - } - } - if (cap_force) { - for (i = 0; i < num_variables(); i++) { - if ( colvar_forces[i].real_value * colvar_forces[i].real_value > max_force[i] * max_force[i] ) { - colvar_forces[i].real_value = (colvar_forces[i].real_value > 0 ? max_force[i] : -1.0 * max_force[i]); - } - } - } + for (size_t i = 0; i < num_variables(); i++) { + colvar_forces[i].real_value = force[i]; } } + + // ********************************* + // ****** End of ABF proper ****** + // ********************************* + + // update the output prefix; TODO: move later to setup_output() function if (cvm::main()->num_biases_feature(colvardeps::f_cvb_calc_pmf) == 1) { // This is the only bias computing PMFs @@ -479,19 +419,6 @@ int colvarbias_abf::update() output_prefix = cvm::output_prefix() + "." + this->name; } - if (shared_on && shared_last_step >= 0 && cvm::step_absolute() % shared_freq == 0) { - // Share gradients and samples for shared ABF. - replica_share(); - } - - // Prepare for the first sharing. - if (shared_last_step < 0) { - // Copy the current gradient and count values into last. - last_gradients->copy_grid(*gradients); - last_samples->copy_grid(*samples); - shared_last_step = cvm::step_absolute(); - cvm::log("Prepared sample and gradient buffers at step "+cvm::to_str(cvm::step_absolute())+".\n"); - } // update UI estimator every step if (b_UI_estimator) @@ -514,6 +441,86 @@ int colvarbias_abf::update() } + // **************************************** + // ****** Helper functions for ABF ****** + // **************************************** + + +int colvarbias_abf::update_system_force() +{ + size_t i; + // System force from atomic forces (or extended Lagrangian if applicable) + + for (i = 0; i < num_variables(); i++) { + if (colvars[i]->is_enabled(f_cv_subtract_applied_force)) { + // this colvar is already subtracting the ABF force + system_force[i] = colvars[i]->total_force().real_value; + } else { + system_force[i] = colvars[i]->total_force().real_value + - colvar_forces[i].real_value; + } + } + return COLVARS_OK; +} + + +cvm::real colvarbias_abf::smoothing_factor(cvm::real weight) +{ + cvm::real fact = 1.0; + if ( weight < full_samples ) { + if ( weight < min_samples) { + fact = 0.0; + } else { + fact = (weight - min_samples) / cvm::real(full_samples - min_samples); + } + } + return fact; +} + + +int colvarbias_abf::calc_biasing_force(std::vector &force) +{ + size_t i; + + // Pick between different types of biasing force + if ( pabf_freq ) { + // In projected ABF, the force is the PMF gradient estimate + pmf->vector_gradient_finite_diff(bin, force); + // Calculate ramp factor that ensures smooth introduction of the force + const cvm::real count = samples->value(bin); + const cvm::real fact = smoothing_factor(count); + for (i = 0; i < num_variables(); i++) { + force[i] *= fact; + } + } else { + // Normal ABF or eABF: use accumulated gradient average + gradients->vector_value_smoothed(bin, &force[0], true); + if ( (num_variables() == 1) && gradients->periodic[0] ) { + // Enforce a zero-mean bias on periodic, 1D coordinates + // in other words: boundary condition is that the biasing potential is periodic + // Only plain ABF needs this + force[0] = force[0] - gradients->average(); + } + } + + if (cap_force) { + for (i = 0; i < num_variables(); i++) { + if ( force[i] * force[i] > max_force[i] * max_force[i] ) { + force[i] = (force[i] > 0 ? max_force[i] : -1.0 * max_force[i]); + } + } + } + + return COLVARS_OK; +} + + + // ************************************ + // ****** Shared ABF functions ****** + // ************************************ + + + int colvarbias_abf::replica_share() { colvarproxy *proxy = cvm::main()->proxy; @@ -527,53 +534,82 @@ int colvarbias_abf::replica_share() { cvm::error("Error: shared ABF: Tried to apply shared ABF before any sampling had occurred.\n"); return COLVARS_ERROR; } + shared_on = true; // If called by a script, inform the rest of the code that we're sharing, eg. CZAR // Share gradients for shared ABF. cvm::log("shared ABF: Sharing gradient and samples among replicas at step "+cvm::to_str(cvm::step_absolute()) ); + if (!local_samples) { + // We arrive here if sharing has just been enabled by a script + // in which case local arrays have not been initialized yet + local_samples.reset(new colvar_grid_count(colvars)); + local_gradients.reset(new colvar_grid_gradient(colvars, local_samples)); + local_pmf.reset(new integrate_potential(colvars, local_gradients)); + } + // Calculate the delta gradient and count for the local replica + last_gradients->delta_grid(*gradients); + // Add the delta gradient and count to the accumulated local data + local_gradients->add_grid(*last_gradients); + + last_samples->delta_grid(*samples); + local_samples->add_grid(*last_samples); + + // Count of data items. - size_t data_n = gradients->raw_data_num(); - size_t samp_start = data_n*sizeof(cvm::real); - size_t msg_total = data_n*sizeof(size_t) + samp_start; + size_t samples_n = samples->raw_data_num(); + size_t gradients_n = gradients->raw_data_num(); + + size_t samp_start = gradients_n * sizeof(cvm::real); + int msg_total = samples_n * sizeof(size_t) + samp_start; char* msg_data = new char[msg_total]; - if (proxy->replica_index() == 0) { + if (cvm::main()->proxy->replica_index() == 0) { int p; // Replica 0 collects the delta gradient and count from the others. for (p = 1; p < proxy->num_replicas(); p++) { // Receive the deltas. - proxy->replica_comm_recv(msg_data, msg_total, p); + if (proxy->replica_comm_recv(msg_data, msg_total, p) != msg_total) { + cvm::error("Error getting shared ABF data from replica."); + return COLVARS_ERROR; + } // Map the deltas from the others into the grids. + // Re-use last_gradients as temp array, erasing its contents each time last_gradients->raw_data_in((cvm::real*)(&msg_data[0])); - last_samples->raw_data_in((size_t*)(&msg_data[samp_start])); - // Combine the delta gradient and count of the other replicas // with Replica 0's current state (including its delta). - gradients->add_grid( *last_gradients ); - samples->add_grid( *last_samples ); + gradients->add_grid(*last_gradients); + + last_samples->raw_data_in((size_t*)(&msg_data[samp_start])); + samples->add_grid(*last_samples); } // Now we must send the combined gradient to the other replicas. gradients->raw_data_out((cvm::real*)(&msg_data[0])); samples->raw_data_out((size_t*)(&msg_data[samp_start])); + for (p = 1; p < proxy->num_replicas(); p++) { - proxy->replica_comm_send(msg_data, msg_total, p); + if (proxy->replica_comm_send(msg_data, msg_total, p) != msg_total) { + cvm::error("Error sending shared ABF data to replica."); + return COLVARS_ERROR; + } } } else { // All other replicas send their delta gradient and count. - // Calculate the delta gradient and count. - last_gradients->delta_grid(*gradients); - last_samples->delta_grid(*samples); - // Cast the raw char data to the gradient and samples. last_gradients->raw_data_out((cvm::real*)(&msg_data[0])); last_samples->raw_data_out((size_t*)(&msg_data[samp_start])); - proxy->replica_comm_send(msg_data, msg_total, 0); + if (proxy->replica_comm_send(msg_data, msg_total, 0) != msg_total) { + cvm::error("Error sending shared ABF data to replica."); + return COLVARS_ERROR; + } // We now receive the combined gradient from Replica 0. - proxy->replica_comm_recv(msg_data, msg_total, 0); + if (proxy->replica_comm_recv(msg_data, msg_total, 0) != msg_total) { + cvm::error("Error getting shared ABF data from replica 0."); + return COLVARS_ERROR; + } // We sync to the combined gradient computed by Replica 0. gradients->raw_data_in((cvm::real*)(&msg_data[0])); samples->raw_data_in((size_t*)(&msg_data[samp_start])); @@ -590,18 +626,105 @@ int colvarbias_abf::replica_share() { last_samples->copy_grid(*samples); shared_last_step = cvm::step_absolute(); + cvm::log("RMSD btw. local and global ABF gradients: " + cvm::to_str(gradients->grid_rmsd(*local_gradients))); + if (b_integrate) { - // Update divergence to account for newly shared gradients + cvm::real err; + + // Update whole divergence field to account for newly shared gradients pmf->set_div(); + pmf->integrate(integrate_iterations, integrate_tol, err); + pmf->set_zero_minimum(); + local_pmf->set_div(); + local_pmf->integrate(integrate_iterations, integrate_tol, err); + local_pmf->set_zero_minimum(); + cvm::log("RMSD btw. local and global ABF FES: " + cvm::to_str(pmf->grid_rmsd(*local_pmf))); } return COLVARS_OK; } +int colvarbias_abf::replica_share_CZAR() { + colvarproxy *proxy = cvm::main()->proxy; + + cvm::log("shared eABF: Gathering CZAR gradient and samples from replicas at step "+cvm::to_str(cvm::step_absolute()) ); + + // Count of data items. + size_t samples_n = z_samples->raw_data_num(); + size_t gradients_n = z_gradients->raw_data_num(); + + size_t samp_start = gradients_n*sizeof(cvm::real); + int msg_total = samples_n*sizeof(size_t) + samp_start; + char* msg_data = new char[msg_total]; + + if (cvm::main()->proxy->replica_index() == 0) { + if (!global_z_samples) { + // We arrive here if sharing has just been enabled by a script + // Allocate grids for collective data, on replica 0 only + // overriding CZAR grids that are equal to local ones by default + global_z_samples.reset(new colvar_grid_count(colvars)); + global_z_gradients.reset(new colvar_grid_gradient(colvars, global_z_samples)); + global_czar_gradients.reset(new colvar_grid_gradient(colvars)); + global_czar_pmf.reset(new integrate_potential(colvars, global_czar_gradients)); + } + + // Start with data from replica 0 + global_z_gradients->copy_grid(*z_gradients); + global_z_samples->copy_grid(*z_samples); + + int p; + // Replica 0 collects the gradient and count from the others. + for (p = 1; p < proxy->num_replicas(); p++) { + if (proxy->replica_comm_recv(msg_data, msg_total, p) != msg_total) { + cvm::error("Error getting shared ABF data from replica."); + return COLVARS_ERROR; + } + + // Map the deltas from the others into the grids. + // Re-use z_gradients_in, erasing its contents each time + z_gradients_in->raw_data_in((cvm::real*)(&msg_data[0])); + z_samples_in->raw_data_in((size_t*)(&msg_data[samp_start])); + + // Combine the new gradient and count of the other replicas + // with Replica 0's current state + global_z_gradients->add_grid(*z_gradients_in); + global_z_samples->add_grid(*z_samples_in); + } + } else { + // All other replicas send their current z gradient and z count. + z_gradients->raw_data_out((cvm::real*)(&msg_data[0])); + z_samples->raw_data_out((size_t*)(&msg_data[samp_start])); + if (proxy->replica_comm_send(msg_data, msg_total, 0) != msg_total) { + cvm::error("Error sending shared ABF data to replica."); + return COLVARS_ERROR; + } + } + + // Without a barrier it's possible that one replica starts + // share 2 when other replicas haven't finished share 1. + proxy->replica_comm_barrier(); + // Done syncing the replicas. + delete[] msg_data; + + return COLVARS_OK; +} + + + // ***************************** + // ****** I/O functions ****** + // ***************************** + + +size_t colvarbias_abf::replica_share_freq() const +{ + return shared_freq; +} + + template int colvarbias_abf::write_grid_to_file(T const *grid, std::string const &filename, bool close) { - std::ostream &os = cvm::proxy->output_stream(filename); + std::ostream &os = cvm::proxy->output_stream(filename, "multicolumn grid file"); if (!os) { return cvm::error("Error opening file " + filename + " for writing.\n", COLVARS_ERROR | COLVARS_FILE_ERROR); } @@ -619,7 +742,7 @@ template int colvarbias_abf::write_grid_to_file(T const *grid, // (could be implemented as multiple dx files) if (num_variables() > 2 && close) { std::string dx = filename + ".dx"; - std::ostream &dx_os = cvm::proxy->output_stream(dx); + std::ostream &dx_os = cvm::proxy->output_stream(dx, "OpenDX grid file"); if (!dx_os) { return cvm::error("Error opening file " + dx + " for writing.\n", COLVARS_ERROR | COLVARS_FILE_ERROR); } @@ -637,45 +760,77 @@ template int colvarbias_abf::write_grid_to_file(T const *grid, } -void colvarbias_abf::write_gradients_samples(const std::string &prefix, bool close) +void colvarbias_abf::write_gradients_samples(const std::string &prefix, bool close, bool local) { colvarproxy *proxy = cvm::main()->proxy; - write_grid_to_file(samples, prefix + ".count", close); - write_grid_to_file(gradients, prefix + ".grad", close); + // The following are local aliases for the class' unique pointers + colvar_grid_count *samples_out, *z_samples_out; + colvar_grid_gradient *gradients_out, *z_gradients_out, *czar_gradients_out; + integrate_potential *pmf_out, *czar_pmf_out; + + // In shared ABF, write grids containing local data only if requested + if (local) { + samples_out = local_samples.get(); + gradients_out = local_gradients.get(); + pmf_out = local_pmf.get(); + // Update the divergence before integrating the local PMF below + // only needs to happen here, just before output + local_pmf->set_div(); + z_samples_out = z_samples.get(); + z_gradients_out = z_gradients.get(); + czar_gradients_out = czar_gradients.get(); + czar_pmf_out = czar_pmf.get(); + } else { + samples_out = samples.get(); + gradients_out = gradients.get(); + pmf_out = pmf.get(); + // Note: outside of shared ABF, "global" CZAR grids are just the local ones + z_samples_out = global_z_samples.get(); + z_gradients_out = global_z_gradients.get(); + czar_gradients_out = global_czar_gradients.get(); + czar_pmf_out = global_czar_pmf.get(); + } + + write_grid_to_file(samples_out, prefix + ".count", close); + write_grid_to_file(gradients_out, prefix + ".grad", close); if (b_integrate) { // Do numerical integration (to high precision) and output a PMF cvm::real err; - pmf->integrate(integrate_iterations, integrate_tol, err); - pmf->set_zero_minimum(); - write_grid_to_file(pmf, prefix + ".pmf", close); + // Divergence has already been updated on the fly for the global PMF (member data 'pmf') + pmf_out->integrate(integrate_iterations, integrate_tol, err); + pmf_out->set_zero_minimum(); + write_grid_to_file(pmf_out, prefix + ".pmf", close); } if (b_CZAR_estimator) { // Write eABF CZAR-related quantities - write_grid_to_file(z_samples, prefix + ".zcount", close); + write_grid_to_file(z_samples_out, prefix + ".zcount", close); if (b_czar_window_file) { - write_grid_to_file(z_gradients, prefix + ".zgrad", close); + write_grid_to_file(z_gradients_out, prefix + ".zgrad", close); } - // Calculate CZAR estimator of gradients - for (std::vector ix = czar_gradients->new_index(); - czar_gradients->index_ok(ix); czar_gradients->incr(ix)) { - for (size_t n = 0; n < czar_gradients->multiplicity(); n++) { - czar_gradients->set_value(ix, z_gradients->value_output(ix, n) - - proxy->target_temperature() * proxy->boltzmann() * z_samples->log_gradient_finite_diff(ix, n), n); + // Update the CZAR estimator of gradients, except at step 0 + // in which case we preserve any existing data (e.g. read via inputPrefix, used to join strata in stratified eABF) + if (cvm::step_relative() > 0) { + for (std::vector iz_bin = czar_gradients_out->new_index(); + czar_gradients_out->index_ok(iz_bin); czar_gradients_out->incr(iz_bin)) { + for (size_t n = 0; n < czar_gradients_out->multiplicity(); n++) { + czar_gradients_out->set_value(iz_bin, z_gradients_out->value_output(iz_bin, n) + - proxy->target_temperature() * proxy->boltzmann() * z_samples_out->log_gradient_finite_diff(iz_bin, n), n); + } } } - write_grid_to_file(czar_gradients, prefix + ".czar.grad", close); + write_grid_to_file(czar_gradients_out, prefix + ".czar.grad", close); if (b_integrate) { // Do numerical integration (to high precision) and output a PMF cvm::real err; - czar_pmf->set_div(); - czar_pmf->integrate(integrate_iterations, integrate_tol, err); - czar_pmf->set_zero_minimum(); - write_grid_to_file(czar_pmf, prefix + ".czar.pmf", close); + czar_pmf_out->set_div(); + czar_pmf_out->integrate(integrate_iterations, integrate_tol, err); + czar_pmf_out->set_zero_minimum(); + write_grid_to_file(czar_pmf_out, prefix + ".czar.pmf", close); } } return; @@ -685,80 +840,98 @@ void colvarbias_abf::write_gradients_samples(const std::string &prefix, bool clo // For Tcl implementation of selection rules. /// Give the total number of bins for a given bias. int colvarbias_abf::bin_num() { - return samples->number_of_points(0); + return samples->number_of_points(); } + /// Calculate the bin index for a given bias. int colvarbias_abf::current_bin() { - return samples->current_bin_scalar(0); + return samples->current_bin_flat_bound(); } + /// Give the count at a given bin index. int colvarbias_abf::bin_count(int bin_index) { if (bin_index < 0 || bin_index >= bin_num()) { cvm::error("Error: Tried to get bin count from invalid bin index "+cvm::to_str(bin_index)); return -1; } - std::vector ix(1,(int)bin_index); - return samples->value(ix); + return int(samples->get_value(bin_index)); } +// Return the average number of samples in a given "radius" around current bin +int colvarbias_abf::colvarbias_abf::local_sample_count(int radius) { + return samples->local_sample_count(radius); +} int colvarbias_abf::read_gradients_samples() { - int error_code = COLVARS_OK; + int err = COLVARS_OK; + // Reading the CZAR gradients is necessary for joining strata in stratified eABF + std::unique_ptr czar_gradients_in; - std::string samples_in_name, gradients_in_name, z_samples_in_name, z_gradients_in_name; + if (b_CZAR_estimator) { + // CZAR gradients are usually computed as needed from z-gradients and z_samples + // Therefore the czar_gradients grid is not linked to a sampling grid + // Here we define a temporary czar_gradients grid linked to z_samples, + // to correctly average input gradients if overlapping + czar_gradients_in.reset(new colvar_grid_gradient(colvars, z_samples)); + } for ( size_t i = 0; i < input_prefix.size(); i++ ) { - samples_in_name = input_prefix[i] + ".count"; - gradients_in_name = input_prefix[i] + ".grad"; - z_samples_in_name = input_prefix[i] + ".zcount"; - z_gradients_in_name = input_prefix[i] + ".zgrad"; + std::string prefix = input_prefix[i]; + // For user-provided files, the per-bias naming scheme may not apply - cvm::log("Reading sample count from " + samples_in_name + - " and gradient from " + gradients_in_name); - - error_code |= samples->read_multicol(samples_in_name, - "ABF samples file", - true); - - error_code |= gradients->read_multicol(gradients_in_name, - "ABF gradient file", - true); + err |= samples->read_multicol(prefix + ".count", "ABF samples file", true); + err |= gradients->read_multicol(prefix + ".grad", "ABF gradient file", true); + if (shared_on) { + last_gradients->copy_grid(*gradients); + last_samples->copy_grid(*samples); + } if (b_CZAR_estimator) { // Read eABF z-averaged data for CZAR - cvm::log("Reading z-histogram from " + z_samples_in_name + " and z-gradient from " + z_gradients_in_name); - error_code |= z_samples->read_multicol(z_samples_in_name, - "eABF z-histogram file", - true); - error_code |= z_gradients->read_multicol(z_gradients_in_name, - "eABF z-gradient file", - true); + err |= z_samples->read_multicol(prefix + ".zcount", "eABF z-histogram file", true); + err |= z_gradients->read_multicol(prefix + ".zgrad", "eABF z-gradient file", true); + err |= czar_gradients_in->read_multicol(prefix + ".czar.grad", "eABF CZAR gradient file", true); } } - return error_code; + if (b_CZAR_estimator) { + // Now copy real CZAR gradients (divided by total count) to the final grid + for (std::vector ix = czar_gradients->new_index(); + czar_gradients->index_ok(ix); czar_gradients->incr(ix)) { + for (size_t n = 0; n < czar_gradients->multiplicity(); n++) { + czar_gradients->set_value(ix, czar_gradients_in->value_output(ix, n), n); + } + } + } + return err; } -std::ostream & colvarbias_abf::write_state_data(std::ostream& os) +template OST & colvarbias_abf::write_state_data_template_(OST &os) { - std::ios::fmtflags flags(os.flags()); + auto flags = os.flags(); os.setf(std::ios::fmtflags(0), std::ios::floatfield); // default floating-point format - os << "\nsamples\n"; - samples->write_raw(os, 8); - os.flags(flags); - os << "\ngradient\n"; + write_state_data_key(os, "samples"); + samples->write_raw(os, 8); + + write_state_data_key(os, "gradient"); gradients->write_raw(os, 8); + if (shared_on) { + write_state_data_key(os, "local_samples"); + local_samples->write_raw(os, 8); + write_state_data_key(os, "local_gradient"); + local_gradients->write_raw(os, 8); + } + if (b_CZAR_estimator) { os.setf(std::ios::fmtflags(0), std::ios::floatfield); // default floating-point format - os << "\nz_samples\n"; + write_state_data_key(os, "z_samples"); z_samples->write_raw(os, 8); - os.flags(flags); - os << "\nz_gradient\n"; + write_state_data_key(os, "z_gradient"); z_gradients->write_raw(os, 8); } @@ -767,7 +940,19 @@ std::ostream & colvarbias_abf::write_state_data(std::ostream& os) } -std::istream & colvarbias_abf::read_state_data(std::istream& is) +std::ostream & colvarbias_abf::write_state_data(std::ostream& os) +{ + return write_state_data_template_(os); +} + + +cvm::memory_stream & colvarbias_abf::write_state_data(cvm::memory_stream& os) +{ + return write_state_data_template_(os); +} + + +template IST &colvarbias_abf::read_state_data_template_(IST &is) { if ( input_prefix.size() > 0 ) { cvm::error("ERROR: cannot provide both inputPrefix and a colvars state file.\n", COLVARS_INPUT_ERROR); @@ -791,6 +976,21 @@ std::istream & colvarbias_abf::read_state_data(std::istream& is) pmf->set_div(); } + if (shared_on) { + if (! read_state_data_key(is, "local_samples")) { + return is; + } + if (! local_samples->read_raw(is)) { + return is; + } + if (! read_state_data_key(is, "local_gradient")) { + return is; + } + if (! local_gradients->read_raw(is)) { + return is; + } + } + if (b_CZAR_estimator) { if (! read_state_data_key(is, "z_samples")) { @@ -808,29 +1008,64 @@ std::istream & colvarbias_abf::read_state_data(std::istream& is) } } + // Last samples / gradients must be updated after restart + // reproducing the state after the last sharing step of previous run + if (shared_on) { + last_gradients->copy_grid(*gradients); + last_samples->copy_grid(*samples); + shared_last_step = cvm::step_absolute(); + } + return is; } +std::istream & colvarbias_abf::read_state_data(std::istream& is) +{ + return read_state_data_template_(is); +} + + +cvm::memory_stream & colvarbias_abf::read_state_data(cvm::memory_stream& is) +{ + return read_state_data_template_(is); +} + + int colvarbias_abf::write_output_files() { if (cvm::debug()) { cvm::log("ABF bias trying to write gradients and samples to disk"); } - if (shared_on && cvm::main()->proxy->replica_index() > 0 - && ! (b_CZAR_estimator || b_UI_estimator) ) { - // No need to report the same data as replica 0, let it do the I/O job - // except if using an eABF FE estimator - return COLVARS_OK; + // In shared eABF/CZAR, the communication routine needs to run on all ranks + if (shared_on) { + if (b_CZAR_estimator) replica_share_CZAR(); } - write_gradients_samples(output_prefix); - if (b_history_files) { - if ((cvm::step_absolute() % history_freq) == 0) { - write_gradients_samples(output_prefix + ".hist", false); + // In shared setting, output local data for all replicas + if (shared_on) { + // Write local data on all replicas + write_gradients_samples(output_prefix, true, true); + + if (cvm::main()->proxy->replica_index() > 0) { + // No need to report the same data as replica 0, let it do the I/O job + return COLVARS_OK; } } + // In shared ABF, only replica 0 reaches this + // filename prefix for master replica + // used in mwABF to distinguish local from complete data + std::string master_prefix = (shared_on ? output_prefix + ".all" : output_prefix); + write_gradients_samples(master_prefix); + + if ((history_freq > 0) && + (!shared_on || cvm::main()->proxy->replica_index() == 0) && // if shared, only on replica 0 + (cvm::step_absolute() % history_freq == 0) && // at requested frequency + (cvm::step_absolute() != history_last_step)) { // not twice the same timestep + write_gradients_samples(master_prefix + ".hist", false); + history_last_step = cvm::step_absolute(); + } if (b_UI_estimator) { eabf_UI.calc_pmf(); @@ -848,14 +1083,13 @@ int colvarbias_abf::calc_energy(std::vector const *values) if (num_variables() > 1 || values != NULL) { // Use simple estimate: neglect effect of fullSamples, // return value at center of bin - if (pmf != NULL) { - std::vector const curr_bin = values ? + if (pmf) { + std::vector curr_bin = values ? pmf->get_colvars_index(*values) : pmf->get_colvars_index(); - - if (pmf->index_ok(curr_bin)) { - bias_energy = pmf->value(curr_bin); - } + pmf->set_zero_minimum(); + pmf->wrap_to_edge(curr_bin, curr_bin); // Closest edge if outside of grid + bias_energy = pmf->value(curr_bin); } return COLVARS_OK; } @@ -870,28 +1104,14 @@ int colvarbias_abf::calc_energy(std::vector const *values) cvm::real sum = 0.0; for (int i = 0; i < home; i++) { std::vector ix(1,i); - - // Include the full_samples factor if necessary. - unsigned int count = samples->value(ix); - cvm::real fact = 1.0; - if ( count < full_samples ) { - fact = (count < min_samples) ? 0.0 : - (cvm::real(count - min_samples)) / (cvm::real(full_samples - min_samples)); - } - if (count > 0) sum += fact*gradients->value(ix)/count*gradients->widths[0]; + // Include the smoothing factor if necessary. + sum += gradients->value_output_smoothed(ix, true) * gradients->widths[0]; } // Integrate the gradient up to the current position in the home interval, a fractional portion of a bin. std::vector ix(1,home); cvm::real frac = gradients->current_bin_scalar_fraction(0); - unsigned int count = samples->value(ix); - cvm::real fact = 1.0; - if ( count < full_samples ) { - fact = (count < min_samples) ? 0.0 : - (cvm::real(count - min_samples)) / (cvm::real(full_samples - min_samples)); - } - if (count > 0) - sum += fact*gradients->value(ix)/count*gradients->widths[0]*frac; + sum += gradients->value_output_smoothed(ix, true) * gradients->widths[0] * frac; // The applied potential is the negative integral of force samples. bias_energy = -sum; diff --git a/lib/colvars/colvarbias_abf.h b/lib/colvars/colvarbias_abf.h index f5d5bd267f..4426a8a3f4 100644 --- a/lib/colvars/colvarbias_abf.h +++ b/lib/colvars/colvarbias_abf.h @@ -14,13 +14,14 @@ #include #include #include +#include #include "colvarproxy.h" #include "colvarbias.h" #include "colvargrid.h" #include "colvar_UIestimator.h" -typedef cvm::real* gradient_t; +typedef cvm::real *gradient_t; /// ABF bias @@ -31,17 +32,14 @@ public: /// Constructor for ABF bias colvarbias_abf(char const *key); /// Initializer for ABF bias - virtual int init(std::string const &conf); + int init(std::string const &conf) override; /// Default destructor for ABF bias - virtual ~colvarbias_abf(); + ~colvarbias_abf() override; /// Per-timestep update of ABF bias - virtual int update(); + int update() override; private: - /// Filename prefix for human-readable gradient/sample count output - std::string output_prefix; - /// Base filename(s) for reading previous gradient data (replaces data from restart file) std::vector input_prefix; @@ -57,8 +55,8 @@ private: size_t full_samples; /// Number of samples per bin before applying a scaled-down biasing force size_t min_samples; - /// Write combined files with a history of all output data? - bool b_history_files; + /// Latest absolute time step at which history files were written + cvm::step_number history_last_step; /// Write CZAR output file for stratified eABF (.zgrad) bool b_czar_window_file; /// Number of timesteps between recording data in history files (if non-zero) @@ -99,75 +97,104 @@ private: gradient_t system_force; /// n-dim grid of free energy gradients - colvar_grid_gradient *gradients; + std::shared_ptr gradients; /// n-dim grid of number of samples - colvar_grid_count *samples; + std::shared_ptr samples; /// n-dim grid of pmf (dimension 1 to 3) - integrate_potential *pmf; + std::shared_ptr pmf; /// n-dim grid: average force on "real" coordinate for eABF z-based estimator - colvar_grid_gradient *z_gradients; + std::shared_ptr z_gradients; /// n-dim grid of number of samples on "real" coordinate for eABF z-based estimator - colvar_grid_count *z_samples; - /// n-dim grid containing CZAR estimator of "real" free energy gradients - colvar_grid_gradient *czar_gradients; + std::shared_ptr z_samples; + /// n-dim grid containing CZAR estimatr of "real" free energy gradients + std::shared_ptr czar_gradients; /// n-dim grid of CZAR pmf (dimension 1 to 3) - integrate_potential *czar_pmf; + std::shared_ptr czar_pmf; - inline int update_system_force(size_t i) - { - if (colvars[i]->is_enabled(f_cv_subtract_applied_force)) { - // this colvar is already subtracting the ABF force - system_force[i] = colvars[i]->total_force().real_value; - } else { - system_force[i] = colvars[i]->total_force().real_value - - colvar_forces[i].real_value; - // If hideJacobian is active then total_force has an extra term of -fj - // which is the Jacobian-compensating force at the colvar level - } - if (cvm::debug()) - cvm::log("ABF System force calc: cv " + cvm::to_str(i) + - " fs " + cvm::to_str(system_force[i]) + - " = ft " + cvm::to_str(colvars[i]->total_force().real_value) + - " - fa " + cvm::to_str(colvar_forces[i].real_value)); - return COLVARS_OK; - } + /// Calculate system force for all colvars + int update_system_force(); + + /// Calulate the biasing force for the current bin + int calc_biasing_force(std::vector &force); + + /// Calulate the smoothing factor to apply to biasing forces for given local count + cvm::real smoothing_factor(cvm::real weight); // shared ABF bool shared_on; size_t shared_freq; cvm::step_number shared_last_step; - // Share between replicas -- may be called independently of update - virtual int replica_share(); - // Store the last set for shared ABF - colvar_grid_gradient *last_gradients; - colvar_grid_count *last_samples; + // Share between replicas -- may be called independently of update + int replica_share() override; + + // Share data needed for CZAR between replicas - called before output only + int replica_share_CZAR(); + + /// Report the frequency at which this bias needs to communicate with replicas + size_t replica_share_freq() const override; + + // Data just after the last share (start of cycle) in shared ABF + std::unique_ptr last_gradients; + std::shared_ptr last_samples; + // eABF/CZAR local data last shared + std::unique_ptr z_gradients_in; + std::shared_ptr z_samples_in; + // ABF data from local replica only in shared ABF + std::shared_ptr local_gradients; + std::shared_ptr local_samples; + std::unique_ptr local_pmf; + // eABF/CZAR data collected from all replicas in shared eABF on replica 0 + // if non-shared, aliases of regular CZAR grids, for output purposes + std::shared_ptr global_z_gradients; + std::shared_ptr global_z_samples; + std::shared_ptr global_czar_gradients; + std::shared_ptr global_czar_pmf; + // For Tcl implementation of selection rules. /// Give the total number of bins for a given bias. - virtual int bin_num(); + int bin_num() override; /// Calculate the bin index for a given bias. - virtual int current_bin(); + int current_bin() override; //// Give the count at a given bin index. - virtual int bin_count(int bin_index); + int bin_count(int bin_index) override; + /// Return the average number of samples in a given "radius" around current bin + int local_sample_count(int radius) override; /// Write human-readable FE gradients and sample count, and DX file in dim > 2 - void write_gradients_samples(const std::string &prefix, bool close = true); + /// \param local write grids contining replica-local data in shared ABF + void write_gradients_samples(const std::string &prefix, bool close = true, bool local = false); /// Read human-readable FE gradients and sample count (if not using restart) int read_gradients_samples(); - /// Template used in write_gradient_samples() + /// Shorthand template used in write_gradient_samples() template int write_grid_to_file(T const *grid, std::string const &name, bool close); - virtual std::istream& read_state_data(std::istream&); - virtual std::ostream& write_state_data(std::ostream&); - virtual int write_output_files(); +private: + + /// Generic stream writing function (formatted and not) + template OST &write_state_data_template_(OST &os); + + /// Generic stream readingx function (formatted and not) + template IST &read_state_data_template_(IST &is); + +public: + + std::ostream &write_state_data(std::ostream &os) override; + + cvm::memory_stream &write_state_data(cvm::memory_stream &os) override; + + std::istream &read_state_data(std::istream &is) override; + + cvm::memory_stream &read_state_data(cvm::memory_stream &is) override; + + int write_output_files() override; /// Calculate the bias energy for 1D ABF - virtual int calc_energy(std::vector const *values); + int calc_energy(std::vector const *values) override; }; - #endif diff --git a/lib/colvars/colvarbias_abmd.cpp b/lib/colvars/colvarbias_abmd.cpp new file mode 100644 index 0000000000..4825c73be4 --- /dev/null +++ b/lib/colvars/colvarbias_abmd.cpp @@ -0,0 +1,136 @@ +// -*- c++ -*- + +// This file is part of the Collective Variables module (Colvars). +// The original version of Colvars and its updates are located at: +// https://github.com/Colvars/colvars +// Please update all Colvars source files before making any changes. +// If you wish to distribute your changes, please submit them to the +// Colvars repository at GitHub. + + +#include "colvarbias_abmd.h" +#include "colvarproxy.h" +#include + + +colvarbias_abmd::colvarbias_abmd(char const *key) + : colvarbias(key), + colvarbias_ti(key) +{ +} + + +int colvarbias_abmd::init(std::string const &conf) +{ + cvm::main()->cite_feature("ABMD bias"); + + int err = colvarbias::init(conf); + err |= colvarbias_ti::init(conf); + if (err != COLVARS_OK) return err; + + enable(f_cvb_apply_force); + + if (num_variables() != 1) { + return cvm::error("ABMD requires exactly one collective variable.\n", COLVARS_INPUT_ERROR); + } + + if ( ! (variables(0))->is_enabled(f_cv_scalar) ) { + return cvm::error("ABMD colvar must be scalar.\n", COLVARS_INPUT_ERROR); + } + + get_keyval(conf, "forceConstant", k); + get_keyval(conf, "decreasing", decreasing, decreasing); + get_keyval(conf, "stoppingValue", stopping_val); + + return COLVARS_OK; +} + + +int colvarbias_abmd::update() +{ + if (!cvm::main()->proxy->simulation_running()) { + return COLVARS_OK; + } + + colvar const *cv = variables(0); + cvm::real const val = cv->value().real_value; + + if (!ref_initialized) { + ref_val = val; + ref_initialized = true; + } + + // Compute sign factor to unify increasing and decreasing cases below + // less conditionals, more arithmetic + cvm::real const sign = decreasing ? -1. : 1.; + cvm::real const diff = (val - ref_val) * sign; + + if ( diff > 0. ) { + colvar_forces[0] = 0.; + bias_energy = 0.; + if ( (ref_val-stopping_val) * sign <= 0. ) ref_val = val; + } else { + colvar_forces[0] = - sign * k * diff; + bias_energy = 0.5 * k * diff * diff;; + } + return COLVARS_OK; +} + + +std::string const colvarbias_abmd::get_state_params() const +{ + std::ostringstream os; + os.setf(std::ios::scientific, std::ios::floatfield); + + os << " refValue " + << std::setprecision(cvm::cv_prec) << std::setw(cvm::cv_width) + << ref_val << "\n"; + os << " stoppingValue " << stopping_val << "\n"; + os << " forceConstant " << k << "\n"; + os << " decreasing " << (decreasing ? "on" : "off") << "\n"; + + return (colvarbias::get_state_params() + os.str()); +} + + +int colvarbias_abmd::set_state_params(std::string const &conf) +{ + int error_code = colvarbias::set_state_params(conf); + + if (error_code != COLVARS_OK) { + return error_code; + } + + get_keyval(conf, "refValue", ref_val, ref_val, + colvarparse::parse_restart | colvarparse::parse_required); + ref_initialized = true; + + get_keyval(conf, "forceConstant", k, k, + colvarparse::parse_restart | colvarparse::parse_required); + get_keyval(conf, "decreasing", decreasing, decreasing, + colvarparse::parse_restart | colvarparse::parse_required); + get_keyval(conf, "stoppingValue", stopping_val, stopping_val, + colvarparse::parse_restart | colvarparse::parse_required); + + return COLVARS_OK; +} + + +std::ostream & colvarbias_abmd::write_traj_label(std::ostream &os) +{ + size_t const this_cv_width = (variables(0)->value()).output_width(cvm::cv_width); + os << " ref_" + << cvm::wrap_string(variables(0)->name, this_cv_width-4); + + return os; +} + + +std::ostream & colvarbias_abmd::write_traj(std::ostream &os) +{ + os << " " + << std::setprecision(cvm::en_prec) << std::setw(cvm::en_width) + << ref_val; + + return os; +} diff --git a/lib/colvars/colvarbias_abmd.h b/lib/colvars/colvarbias_abmd.h new file mode 100644 index 0000000000..96278c2de8 --- /dev/null +++ b/lib/colvars/colvarbias_abmd.h @@ -0,0 +1,49 @@ +// -*- c++ -*- + +// This file is part of the Collective Variables module (Colvars). +// The original version of Colvars and its updates are located at: +// https://github.com/Colvars/colvars +// Please update all Colvars source files before making any changes. +// If you wish to distribute your changes, please submit them to the +// Colvars repository at GitHub. + +#ifndef COLVARBIAS_ABMD_H +#define COLVARBIAS_ABMD_H + +#include "colvarbias_restraint.h" + + +/// \brief Adiabatic Bias MD +class colvarbias_abmd + : public colvarbias_ti +{ +public: + + colvarbias_abmd(char const *key); + virtual int init(std::string const &conf); + virtual int update(); + virtual std::string const get_state_params() const; + virtual int set_state_params(std::string const &conf); + virtual std::ostream & write_traj_label(std::ostream &os); + virtual std::ostream & write_traj(std::ostream &os); + +protected: + + /// \brief Location of the moving wall + cvm::real ref_val = 0.; + + /// \brief Has ref_val already been set? + bool ref_initialized = false; + + /// \brief Value of the reference where it stops moving + cvm::real stopping_val = 0.; + + /// \brief Is the target moving down? + bool decreasing = false; + + /// \brief Restraint force constant + cvm::real k = 0.; +}; + + +#endif diff --git a/lib/colvars/colvarbias_alb.cpp b/lib/colvars/colvarbias_alb.cpp index b432659bf4..5b664b8c0b 100644 --- a/lib/colvars/colvarbias_alb.cpp +++ b/lib/colvars/colvarbias_alb.cpp @@ -9,7 +9,6 @@ #include #include -#include #include "colvarmodule.h" #include "colvarproxy.h" @@ -40,7 +39,10 @@ colvarbias_alb::colvarbias_alb(char const *key) int colvarbias_alb::init(std::string const &conf) { colvarproxy *proxy = cvm::main()->proxy; - colvarbias::init(conf); + int err = colvarbias::init(conf); + if (err != COLVARS_OK) { + return err; + } cvm::main()->cite_feature("ALB colvar bias implementation"); enable(f_cvb_scalar_variables); diff --git a/lib/colvars/colvarbias_histogram.cpp b/lib/colvars/colvarbias_histogram.cpp index 84f1a5bdee..98de275304 100644 --- a/lib/colvars/colvarbias_histogram.cpp +++ b/lib/colvars/colvarbias_histogram.cpp @@ -7,10 +7,13 @@ // If you wish to distribute your changes, please submit them to the // Colvars repository at GitHub. +#include + #include "colvarmodule.h" #include "colvarproxy.h" #include "colvar.h" #include "colvarbias_histogram.h" +#include "colvars_memstream.h" colvarbias_histogram::colvarbias_histogram(char const *key) @@ -23,7 +26,10 @@ colvarbias_histogram::colvarbias_histogram(char const *key) int colvarbias_histogram::init(std::string const &conf) { - colvarbias::init(conf); + int err = colvarbias::init(conf); + if (err != COLVARS_OK) { + return err; + } cvm::main()->cite_feature("Histogram colvar bias implementation"); enable(f_cvb_scalar_variables); @@ -125,22 +131,6 @@ int colvarbias_histogram::update() // assign a valid bin size bin.assign(num_variables(), 0); - if (out_name.size() == 0) { - // At the first timestep, we need to assign out_name since - // output_prefix is unset during the constructor - if (cvm::step_relative() == 0) { - out_name = cvm::output_prefix() + "." + this->name + ".dat"; - cvm::log("Histogram " + this->name + " will be written to file \"" + out_name + "\"\n"); - } - } - - if (out_name_dx.size() == 0) { - if (cvm::step_relative() == 0) { - out_name_dx = cvm::output_prefix() + "." + this->name + ".dx"; - cvm::log("Histogram " + this->name + " will be written to file \"" + out_name_dx + "\"\n"); - } - } - if (colvar_array_size == 0) { // update indices for scalar values size_t i; @@ -181,6 +171,16 @@ int colvarbias_histogram::write_output_files() int error_code = COLVARS_OK; + // Set default filenames, if none have been provided + if (!cvm::output_prefix().empty()) { + if (out_name.empty()) { + out_name = cvm::output_prefix() + "." + this->name + ".dat"; + } + if (out_name_dx.empty()) { + out_name_dx = cvm::output_prefix() + "." + this->name + ".dx"; + } + } + if (out_name.size() && out_name != "none") { cvm::log("Writing the histogram file \""+out_name+"\".\n"); error_code |= grid->write_multicol(out_name, "histogram output file"); @@ -197,13 +197,18 @@ int colvarbias_histogram::write_output_files() std::istream & colvarbias_histogram::read_state_data(std::istream& is) { - if (! read_state_data_key(is, "grid")) { - return is; - } - if (! grid->read_raw(is)) { - return is; + if (read_state_data_key(is, "grid")) { + grid->read_raw(is); } + return is; +} + +cvm::memory_stream & colvarbias_histogram::read_state_data(cvm::memory_stream& is) +{ + if (read_state_data_key(is, "grid")) { + grid->read_raw(is); + } return is; } @@ -212,8 +217,16 @@ std::ostream & colvarbias_histogram::write_state_data(std::ostream& os) { std::ios::fmtflags flags(os.flags()); os.setf(std::ios::fmtflags(0), std::ios::floatfield); - os << "grid\n"; + write_state_data_key(os, "grid"); grid->write_raw(os, 8); os.flags(flags); return os; } + + +cvm::memory_stream & colvarbias_histogram::write_state_data(cvm::memory_stream& os) +{ + write_state_data_key(os, "grid"); + grid->write_raw(os); + return os; +} diff --git a/lib/colvars/colvarbias_histogram.h b/lib/colvars/colvarbias_histogram.h index 6044fa189e..2c6ee84d1f 100644 --- a/lib/colvars/colvarbias_histogram.h +++ b/lib/colvars/colvarbias_histogram.h @@ -24,11 +24,16 @@ class colvarbias_histogram : public colvarbias { public: colvarbias_histogram(char const *key); - ~colvarbias_histogram(); + virtual ~colvarbias_histogram(); virtual int init(std::string const &conf); virtual int update(); virtual int write_output_files(); + virtual std::ostream & write_state_data(std::ostream &os); + virtual cvm::memory_stream & write_state_data(cvm::memory_stream &os); + virtual std::istream & read_state_data(std::istream &is); + virtual cvm::memory_stream & read_state_data(cvm::memory_stream &is); + protected: /// n-dim histogram @@ -40,9 +45,6 @@ protected: size_t colvar_array_size; /// If colvar_array_size is larger than 1, weigh each one by this number before accumulating the histogram std::vector weights; - - virtual std::istream & read_state_data(std::istream &is); - virtual std::ostream & write_state_data(std::ostream &os); }; #endif diff --git a/lib/colvars/colvarbias_histogram_reweight_amd.cpp b/lib/colvars/colvarbias_histogram_reweight_amd.cpp index 85f1bde35c..de2f6d9b8a 100644 --- a/lib/colvars/colvarbias_histogram_reweight_amd.cpp +++ b/lib/colvars/colvarbias_histogram_reweight_amd.cpp @@ -9,6 +9,7 @@ #include "colvarbias_histogram_reweight_amd.h" #include "colvarproxy.h" +#include "colvars_memstream.h" colvarbias_reweightaMD::colvarbias_reweightaMD(char const *key) : colvarbias_histogram(key), grid_count(NULL), grid_dV(NULL), @@ -343,23 +344,37 @@ void colvarbias_reweightaMD::compute_cumulant_expansion_factor( } } -std::ostream & colvarbias_reweightaMD::write_state_data(std::ostream& os) + +template OST & colvarbias_reweightaMD::write_state_data_template_(OST& os) { std::ios::fmtflags flags(os.flags()); os.setf(std::ios::fmtflags(0), std::ios::floatfield); - os << "grid\n"; + write_state_data_key(os, "grid"); grid->write_raw(os, 8); - os << "grid_count\n"; + write_state_data_key(os, "grid_count"); grid_count->write_raw(os, 8); - os << "grid_dV\n"; + write_state_data_key(os, "grid_dV"); grid_dV->write_raw(os, 8); - os << "grid_dV_square\n"; + write_state_data_key(os, "grid_dV_square"); grid_dV_square->write_raw(os, 8); os.flags(flags); return os; } -std::istream & colvarbias_reweightaMD::read_state_data(std::istream& is) + +std::ostream & colvarbias_reweightaMD::write_state_data(std::ostream& os) +{ + return write_state_data_template_(os); +} + + +cvm::memory_stream & colvarbias_reweightaMD::write_state_data(cvm::memory_stream& os) +{ + return write_state_data_template_(os); +} + + +template IST & colvarbias_reweightaMD::read_state_data_template_(IST& is) { if (! read_state_data_key(is, "grid")) { return is; @@ -387,3 +402,15 @@ std::istream & colvarbias_reweightaMD::read_state_data(std::istream& is) } return is; } + + +std::istream & colvarbias_reweightaMD::read_state_data(std::istream& is) +{ + return read_state_data_template_(is); +} + + +cvm::memory_stream & colvarbias_reweightaMD::read_state_data(cvm::memory_stream& is) +{ + return read_state_data_template_(is); +} diff --git a/lib/colvars/colvarbias_histogram_reweight_amd.h b/lib/colvars/colvarbias_histogram_reweight_amd.h index f126738305..43759b3bde 100644 --- a/lib/colvars/colvarbias_histogram_reweight_amd.h +++ b/lib/colvars/colvarbias_histogram_reweight_amd.h @@ -18,15 +18,9 @@ class colvarbias_reweightaMD : public colvarbias_histogram { public: colvarbias_reweightaMD(char const *key); virtual ~colvarbias_reweightaMD(); -#if (__cplusplus >= 201103L) virtual int init(std::string const &conf) override; virtual int update() override; virtual int write_output_files() override; -#else - virtual int init(std::string const &conf); - virtual int update(); - virtual int write_output_files(); -#endif /// @brief convert histogram to PMF by taking logarithm and multiplying /// it with -1/beta @@ -85,14 +79,15 @@ protected: /// Write gradients of the PMF? bool b_write_gradients; + template OST & write_state_data_template_(OST& os); + template IST & read_state_data_template_(IST& is); + /// save and restore -#if (__cplusplus >= 201103L) virtual std::istream & read_state_data(std::istream &is) override; + virtual cvm::memory_stream & read_state_data(cvm::memory_stream &is) override; virtual std::ostream & write_state_data(std::ostream &os) override; -#else - virtual std::istream & read_state_data(std::istream &is); - virtual std::ostream & write_state_data(std::ostream &os); -#endif + virtual cvm::memory_stream & write_state_data(cvm::memory_stream &os) override; + private: /// temporary grids for evaluating PMFs colvar_grid_scalar *pmf_grid_exp_avg; diff --git a/lib/colvars/colvarbias_meta.cpp b/lib/colvars/colvarbias_meta.cpp index 90497bf150..905cd17883 100644 --- a/lib/colvars/colvarbias_meta.cpp +++ b/lib/colvars/colvarbias_meta.cpp @@ -7,29 +7,33 @@ // If you wish to distribute your changes, please submit them to the // Colvars repository at GitHub. -#include -#include #include #include #include -// used to set the absolute path of a replica file +// Define function to get the absolute path of a replica file #if defined(_WIN32) && !defined(__CYGWIN__) #include -#define CHDIR ::_chdir -#define GETCWD ::_getcwd +#define GETCWD(BUF, SIZE) ::_getcwd(BUF, SIZE) #define PATHSEP "\\" #else #include -#define CHDIR ::chdir -#define GETCWD ::getcwd +#define GETCWD(BUF, SIZE) ::getcwd(BUF, SIZE) #define PATHSEP "/" #endif +#ifdef __cpp_lib_filesystem +// When std::filesystem is available, use it +#include +#undef GETCWD +#define GETCWD(BUF, SIZE) (std::filesystem::current_path().string().c_str()) +#endif + #include "colvarmodule.h" #include "colvarproxy.h" #include "colvar.h" #include "colvarbias_meta.h" +#include "colvars_memstream.h" colvarbias_meta::colvarbias_meta(char const *key) @@ -58,7 +62,6 @@ colvarbias_meta::colvarbias_meta(char const *key) ebmeta_equil_steps = 0L; - replica_update_freq = 0; replica_id.clear(); } @@ -392,11 +395,8 @@ colvarbias_meta::add_hill(colvarbias_meta::hill const &h) // output to trajectory (if specified) if (b_hills_traj) { - // Open trajectory file or access the one already open - std::ostream &hills_traj_os = - cvm::proxy->output_stream(hills_traj_file_name()); - hills_traj_os << (hills.back()).output_traj(); - cvm::proxy->flush_output_stream(hills_traj_file_name()); + // Save the current hill to a buffer for further traj output + hills_traj_os_buf << (hills.back()).output_traj(); } has_data = true; @@ -427,13 +427,10 @@ colvarbias_meta::delete_hill(hill_iter &h) } if (b_hills_traj) { - // output to the trajectory - std::ostream &hills_traj_os = - cvm::proxy->output_stream(hills_traj_file_name()); - hills_traj_os << "# DELETED this hill: " - << (hills.back()).output_traj() - << "\n"; - cvm::proxy->flush_output_stream(hills_traj_file_name()); + // Save the current hill to a buffer for further traj output + hills_traj_os_buf << "# DELETED this hill: " + << (hills.back()).output_traj() + << "\n"; } return hills.erase(h); @@ -624,9 +621,9 @@ int colvarbias_meta::update_bias() add_hill(hill(cvm::step_absolute(), hill_weight*hills_scale, colvar_values, colvar_sigmas, replica_id)); std::ostream &replica_hills_os = - cvm::proxy->output_stream(replica_hills_file); + cvm::proxy->output_stream(replica_hills_file, "replica hills file"); if (replica_hills_os) { - replica_hills_os << hills.back(); + write_hill(replica_hills_os, hills.back()); } else { return cvm::error("Error: in metadynamics bias \""+this->name+"\""+ ((comm != single_replica) ? ", replica \""+replica_id+"\"" : "")+ @@ -985,9 +982,9 @@ void colvarbias_meta::recount_hills_off_grid(colvarbias_meta::hill_iter h_first int colvarbias_meta::replica_share() { int error_code = COLVARS_OK; - colvarproxy *proxy = cvm::proxy; // sync with the other replicas (if needed) if (comm == multiple_replicas) { + colvarproxy *proxy = cvm::main()->proxy; // reread the replicas registry error_code |= update_replicas_registry(); // empty the output buffer @@ -998,6 +995,12 @@ int colvarbias_meta::replica_share() } +size_t colvarbias_meta::replica_share_freq() const +{ + return replica_update_freq; +} + + int colvarbias_meta::update_replicas_registry() { int error_code = COLVARS_OK; @@ -1299,21 +1302,40 @@ int colvarbias_meta::set_state_params(std::string const &state_conf) } -std::istream & colvarbias_meta::read_state_data(std::istream& is) +template +IST & colvarbias_meta::read_grid_data_template_(IST& is, std::string const &key, + GT *grid, GT *backup_grid) +{ + auto const start_pos = is.tellg(); + std::string key_in; + if (is >> key_in) { + if ((key != key_in) || !(grid->read_restart(is))) { + is.clear(); + is.seekg(start_pos); + is.setstate(std::ios::failbit); + if (!rebin_grids) { + if ((backup_grid == nullptr) || (comm == single_replica)) { + cvm::error("Error: couldn't read grid data for metadynamics bias \""+ + this->name+"\""+ + ((comm != single_replica) ? ", replica \""+replica_id+"\"" : "")+ + "; if useGrids was off when the state file was written, " + "try enabling rebinGrids now to regenerate the grids.\n", COLVARS_INPUT_ERROR); + } + } + } + } else { + is.clear(); + is.seekg(start_pos); + is.setstate(std::ios::failbit); + } + return is; +} + + +template IST &colvarbias_meta::read_state_data_template_(IST &is) { if (use_grids) { - if (expand_grids) { - // the boundaries of the colvars may have been changed; TODO: - // this reallocation is only for backward-compatibility, and may - // be deleted when grid_parameters (i.e. colvargrid's own - // internal reallocation) has kicked in - delete hills_energy; - delete hills_energy_gradients; - hills_energy = new colvar_grid_scalar(colvars); - hills_energy_gradients = new colvar_grid_gradient(colvars); - } - colvar_grid_scalar *hills_energy_backup = NULL; colvar_grid_gradient *hills_energy_gradients_backup = NULL; @@ -1328,95 +1350,26 @@ std::istream & colvarbias_meta::read_state_data(std::istream& is) hills_energy_gradients = new colvar_grid_gradient(colvars); } - std::streampos const hills_energy_pos = is.tellg(); - std::string key; - if (!(is >> key)) { - if (hills_energy_backup != NULL) { - delete hills_energy; - delete hills_energy_gradients; - hills_energy = hills_energy_backup; - hills_energy_gradients = hills_energy_gradients_backup; + read_grid_data_template_(is, "hills_energy", hills_energy, + hills_energy_backup); + + read_grid_data_template_( + is, "hills_energy_gradients", hills_energy_gradients, hills_energy_gradients_backup); + + if (is) { + cvm::log(" successfully read the biasing potential and its gradients from grids.\n"); + if (hills_energy_backup != nullptr) { + // Now that we have successfully updated the grids, delete the backup copies + delete hills_energy_backup; + delete hills_energy_gradients_backup; } - is.clear(); - is.seekg(hills_energy_pos, std::ios::beg); - is.setstate(std::ios::failbit); + } else { return is; - } else if (!(key == std::string("hills_energy")) || - !(hills_energy->read_restart(is))) { - is.clear(); - is.seekg(hills_energy_pos, std::ios::beg); - if (!rebin_grids) { - if ((hills_energy_backup == NULL) || (comm == single_replica)) { - cvm::error("Error: couldn't read the energy grid for metadynamics bias \""+ - this->name+"\""+ - ((comm != single_replica) ? ", replica \""+replica_id+"\"" : "")+ - "; if useGrids was off when the state file was written, " - "enable rebinGrids now to regenerate the grids.\n"); - } else { - delete hills_energy; - delete hills_energy_gradients; - hills_energy = hills_energy_backup; - hills_energy_gradients = hills_energy_gradients_backup; - is.setstate(std::ios::failbit); - return is; - } - } - } - - std::streampos const hills_energy_gradients_pos = is.tellg(); - if (!(is >> key)) { - if (hills_energy_backup != NULL) { - delete hills_energy; - delete hills_energy_gradients; - hills_energy = hills_energy_backup; - hills_energy_gradients = hills_energy_gradients_backup; - } - is.clear(); - is.seekg(hills_energy_gradients_pos, std::ios::beg); - is.setstate(std::ios::failbit); - return is; - } else if (!(key == std::string("hills_energy_gradients")) || - !(hills_energy_gradients->read_restart(is))) { - is.clear(); - is.seekg(hills_energy_gradients_pos, std::ios::beg); - if (!rebin_grids) { - if ((hills_energy_backup == NULL) || (comm == single_replica)) { - cvm::error("Error: couldn't read the gradients grid for metadynamics bias \""+ - this->name+"\""+ - ((comm != single_replica) ? ", replica \""+replica_id+"\"" : "")+ - "; if useGrids was off when the state file was written, " - "enable rebinGrids now to regenerate the grids.\n"); - } else { - delete hills_energy; - delete hills_energy_gradients; - hills_energy = hills_energy_backup; - hills_energy_gradients = hills_energy_gradients_backup; - is.setstate(std::ios::failbit); - return is; - } - } - } - - if (cvm::debug()) - cvm::log("Successfully read new grids for bias \""+ - this->name+"\""+ - ((comm != single_replica) ? ", replica \""+replica_id+"\"" : "")+"\n"); - - cvm::log(" read biasing energy and forces from grids.\n"); - - if (hills_energy_backup != NULL) { - // now that we have successfully updated the grids, delete the - // backup copies - if (cvm::debug()) - cvm::log("Deallocating the older grids.\n"); - - delete hills_energy_backup; - delete hills_energy_gradients_backup; } } - // Save references to the end of the list of existing hills, so that it can - // be cleared if hills are read successfully state + // Save references to the end of the list of existing hills, so that they can + // be cleared if hills are read successfully from the stream bool const existing_hills = !hills.empty(); size_t const old_hills_size = hills.size(); hill_iter old_hills_end = hills.end(); @@ -1430,17 +1383,20 @@ std::istream & colvarbias_meta::read_state_data(std::istream& is) while (read_hill(is)) { if (cvm::debug()) { cvm::log("Read a previously saved hill under the " - "metadynamics bias \""+ - this->name+"\", created at step "+ - cvm::to_str((hills.back()).it)+".\n"); + "metadynamics bias \"" + + this->name + "\", created at step " + cvm::to_str((hills.back()).it) + + "; position in stream is " + cvm::to_str(is.tellg()) + ".\n"); } } + is.clear(); + new_hills_begin = hills.end(); - cvm::log(" read "+cvm::to_str(hills.size() - old_hills_size)+ - " additional explicit hills.\n"); + cvm::log(" successfully read "+cvm::to_str(hills.size() - old_hills_size)+ + " explicit hills from state.\n"); if (existing_hills) { + // Prune any hills that pre-existed those just read hills.erase(hills.begin(), old_hills_end); hills_off_grid.erase(hills_off_grid.begin(), old_hills_off_grid_end); if (cvm::debug()) { @@ -1449,6 +1405,46 @@ std::istream & colvarbias_meta::read_state_data(std::istream& is) } } + // If rebinGrids is set, rebin the grids based on the current information + rebin_grids_after_restart(); + + if (use_grids) { + if (!hills_off_grid.empty()) { + cvm::log(cvm::to_str(hills_off_grid.size())+" hills are near the " + "grid boundaries: they will be computed analytically " + "and saved to the state files.\n"); + } + } + + colvarbias_ti::read_state_data(is); + + if (cvm::debug()) + cvm::log("colvarbias_meta::read_restart() done\n"); + + has_data = true; + + if (comm == multiple_replicas) { + read_replica_files(); + } + + return is; +} + + +std::istream & colvarbias_meta::read_state_data(std::istream& is) +{ + return read_state_data_template_(is); +} + + +cvm::memory_stream &colvarbias_meta::read_state_data(cvm::memory_stream &is) +{ + return read_state_data_template_(is); +} + + +void colvarbias_meta::rebin_grids_after_restart() +{ if (rebin_grids) { // allocate new grids (based on the new boundaries and widths just @@ -1463,9 +1459,9 @@ std::istream & colvarbias_meta::read_state_data(std::istream& is) if (cvm::debug()) { std::ostringstream tmp_os; tmp_os << "hills_energy parameters:\n"; - hills_energy->write_params(tmp_os); + tmp_os << hills_energy->get_state_params(); tmp_os << "new_hills_energy parameters:\n"; - new_hills_energy->write_params(tmp_os); + tmp_os << new_hills_energy->get_state_params(); cvm::log(tmp_os.str()); } @@ -1495,114 +1491,182 @@ std::istream & colvarbias_meta::read_state_data(std::istream& is) if (!hills.empty()) recount_hills_off_grid(hills.begin(), hills.end(), hills_energy); } +} - if (use_grids) { - if (!hills_off_grid.empty()) { - cvm::log(cvm::to_str(hills_off_grid.size())+" hills are near the " - "grid boundaries: they will be computed analytically " - "and saved to the state files.\n"); + +template +OST &colvarbias_meta::write_hill_template_(OST &os, colvarbias_meta::hill const &h) +{ + bool const formatted = !std::is_same::value; + + if (formatted) { + os.setf(std::ios::scientific, std::ios::floatfield); + } + + write_state_data_key(os, "hill", false); + + if (formatted) + os << "{\n"; + + write_state_data_key(os, "step", false); + if (formatted) + os << std::setw(cvm::it_width); + os << h.it; + if (formatted) + os << "\n"; + + write_state_data_key(os, "weight", false); + if (formatted) + os << std::setprecision(cvm::en_prec) << std::setw(cvm::en_width); + os << h.W; + if (formatted) + os << "\n"; + + size_t i; + write_state_data_key(os, "centers", false); + for (i = 0; i < (h.centers).size(); i++) { + if (formatted) + os << " " << std::setprecision(cvm::cv_prec) << std::setw(cvm::cv_width); + os << h.centers[i]; + } + if (formatted) + os << "\n"; + + // For backward compatibility, write the widths instead of the sigmas + write_state_data_key(os, "widths", false); + for (i = 0; i < (h.sigmas).size(); i++) { + if (formatted) + os << " " << std::setprecision(cvm::cv_prec) << std::setw(cvm::cv_width); + os << 2.0 * h.sigmas[i]; + } + if (formatted) + os << "\n"; + + if (h.replica.size()) { + write_state_data_key(os, "replicaID", false); + os << h.replica; + if (formatted) + os << "\n"; + } + + if (formatted) + os << "}\n"; + + return os; +} + + +std::ostream &colvarbias_meta::write_hill(std::ostream &os, colvarbias_meta::hill const &h) +{ + return write_hill_template_(os, h); +} + + +cvm::memory_stream &colvarbias_meta::write_hill(cvm::memory_stream &os, + colvarbias_meta::hill const &h) +{ + return write_hill_template_(os, h); +} + + +template IST &hill_stream_error(IST &is, size_t start_pos, std::string const &key) +{ + is.clear(); + is.seekg(start_pos); + is.setstate(std::ios::failbit); + cvm::error("Error: in reading data for keyword \"" + key + "\" from stream.\n", + COLVARS_INPUT_ERROR); + return is; +} + + +template IST &colvarbias_meta::read_hill_template_(IST &is) +{ + if (!is) + return is; // do nothing if failbit is set + + bool const formatted = !std::is_same::value; + + auto const start_pos = is.tellg(); + + std::string key; + if (!(is >> key) || (key != "hill")) { + is.clear(); + is.seekg(start_pos); + is.setstate(std::ios::failbit); + return is; + } + + if (formatted) { + std::string brace; + if (!(is >> brace) || (brace != "{")) { + return hill_stream_error(is, start_pos, "hill"); } } - colvarbias_ti::read_state_data(is); - - if (cvm::debug()) - cvm::log("colvarbias_meta::read_restart() done\n"); - - has_data = true; - - if (comm != single_replica) { - read_replica_files(); - } - - return is; -} - - -inline std::istream & reset_istream(std::istream &is, size_t start_pos) -{ - is.clear(); - is.seekg(start_pos, std::ios::beg); - is.setstate(std::ios::failbit); - return is; -} - - -std::istream & colvarbias_meta::read_hill(std::istream &is) -{ - if (!is) return is; // do nothing if failbit is set - - std::streampos const start_pos = is.tellg(); - size_t i = 0; - - std::string data; - if ( !(is >> read_block("hill", &data)) ) { - return reset_istream(is, start_pos); - } - - std::istringstream data_is(data); - cvm::step_number h_it = 0L; - cvm::real h_weight; + cvm::real h_weight = 0.0; std::vector h_centers(num_variables()); - for (i = 0; i < num_variables(); i++) { + for (size_t i = 0; i < num_variables(); i++) { h_centers[i].type(variables(i)->value()); } std::vector h_sigmas(num_variables()); std::string h_replica; - std::string keyword; - while (data_is >> keyword) { + if (!read_state_data_key(is, "step") || !(is >> h_it)) { + return hill_stream_error(is, start_pos, "step"); + } - if (keyword == "step") { - if ( !(data_is >> h_it)) { - return reset_istream(is, start_pos); - } - if ((h_it <= state_file_step) && !restart_keep_hills) { - if (cvm::debug()) - cvm::log("Skipping a hill older than the state file for metadynamics bias \""+ - this->name+"\""+ - ((comm != single_replica) ? ", replica \""+replica_id+"\"" : "")+"\n"); - return is; + if (read_state_data_key(is, "weight")) { + if (!(is >> h_weight)) { + return hill_stream_error(is, start_pos, "weight"); + } + } + + if (read_state_data_key(is, "centers")) { + for (size_t i = 0; i < num_variables(); i++) { + if (!(is >> h_centers[i])) { + return hill_stream_error(is, start_pos, "centers"); } } + } - if (keyword == "weight") { - if ( !(data_is >> h_weight)) { - return reset_istream(is, start_pos); + if (read_state_data_key(is, "widths")) { + for (size_t i = 0; i < num_variables(); i++) { + if (!(is >> h_sigmas[i])) { + return hill_stream_error(is, start_pos, "widths"); + } + // For backward compatibility, read the widths instead of the sigmas + h_sigmas[i] /= 2.0; + } + } + + if (comm != single_replica) { + if (read_state_data_key(is, "replicaID")) { + if (!(is >> h_replica)) { + return hill_stream_error(is, start_pos, "replicaID"); + } + if (h_replica != replica_id) { + cvm::error("Error: trying to read a hill created by replica \"" + h_replica + + "\" for replica \"" + replica_id + "\"; did you swap output files?\n", + COLVARS_INPUT_ERROR); + return hill_stream_error(is, start_pos, "replicaID"); } } + } - if (keyword == "centers") { - for (i = 0; i < num_variables(); i++) { - if ( !(data_is >> h_centers[i])) { - return reset_istream(is, start_pos); - } - } + if (formatted) { + std::string brace; + if (!(is >> brace) || (brace != "}")) { + return hill_stream_error(is, start_pos, "hill"); } + } - if (keyword == "widths") { - for (i = 0; i < num_variables(); i++) { - if ( !(data_is >> h_sigmas[i])) { - return reset_istream(is, start_pos); - } - // For backward compatibility, read the widths instead of the sigmas - h_sigmas[i] /= 2.0; - } - } - - if (comm != single_replica) { - if (keyword == "replicaID") { - if ( !(data_is >> h_replica)) { - return reset_istream(is, start_pos); - } - if (h_replica != replica_id) { - cvm::error("Error: trying to read a hill created by replica \""+ - h_replica+"\" for replica \""+replica_id+ - "\"; did you swap output files?\n", COLVARS_INPUT_ERROR); - } - } - } + if ((h_it <= state_file_step) && !restart_keep_hills) { + if (cvm::debug()) + cvm::log("Skipping a hill older than the state file for metadynamics bias \"" + this->name + + "\"" + ((comm != single_replica) ? ", replica \"" + replica_id + "\"" : "") + "\n"); + return is; } hill_iter const hills_end = hills.end(); @@ -1617,7 +1681,7 @@ std::istream & colvarbias_meta::read_hill(std::istream &is) // add this also to the list of hills that are off-grid, which will // be computed analytically cvm::real const min_dist = - hills_energy->bin_distance_from_boundaries((hills.back()).centers, true); + hills_energy->bin_distance_from_boundaries((hills.back()).centers, true); if (min_dist < (3.0 * cvm::floor(hill_width)) + 1.0) { hills_off_grid.push_back(hills.back()); } @@ -1628,6 +1692,18 @@ std::istream & colvarbias_meta::read_hill(std::istream &is) } +std::istream &colvarbias_meta::read_hill(std::istream &is) +{ + return read_hill_template_(is); +} + + +cvm::memory_stream &colvarbias_meta::read_hill(cvm::memory_stream &is) +{ + return read_hill_template_(is); +} + + int colvarbias_meta::setup_output() { int error_code = COLVARS_OK; @@ -1644,7 +1720,10 @@ int colvarbias_meta::setup_output() // TODO: one may want to specify the path manually for intricated filesystems? char *pwd = new char[3001]; - if (GETCWD(pwd, 3000) == NULL) { + if (GETCWD(pwd, 3000) == nullptr) { + if (pwd != nullptr) { // + delete[] pwd; + } return cvm::error("Error: cannot get the path of the current working directory.\n", COLVARS_BUG_ERROR); } @@ -1701,7 +1780,7 @@ int colvarbias_meta::setup_output() // if we're running without grids, use a growing list of "hills" files // otherwise, just one state file and one "hills" file as buffer - std::ostream &list_os = cvm::proxy->output_stream(replica_list_file); + std::ostream &list_os = cvm::proxy->output_stream(replica_list_file, "replica list file"); if (list_os) { list_os << "stateFile " << replica_state_file << "\n"; list_os << "hillsFile " << replica_hills_file << "\n"; @@ -1723,7 +1802,7 @@ int colvarbias_meta::setup_output() if (b_hills_traj) { std::ostream &hills_traj_os = - cvm::proxy->output_stream(hills_traj_file_name()); + cvm::proxy->output_stream(hills_traj_file_name(), "hills trajectory file"); if (!hills_traj_os) { error_code |= COLVARS_FILE_ERROR; } @@ -1757,36 +1836,32 @@ std::string const colvarbias_meta::get_state_params() const } -std::ostream & colvarbias_meta::write_state_data(std::ostream& os) +template OST &colvarbias_meta::write_state_data_template_(OST &os) { if (use_grids) { // this is a very good time to project hills, if you haven't done // it already! - project_hills(new_hills_begin, hills.end(), - hills_energy, hills_energy_gradients); + project_hills(new_hills_begin, hills.end(), hills_energy, hills_energy_gradients); new_hills_begin = hills.end(); // write down the grids to the restart file - os << " hills_energy\n"; + write_state_data_key(os, "hills_energy"); hills_energy->write_restart(os); - os << " hills_energy_gradients\n"; + write_state_data_key(os, "hills_energy_gradients"); hills_energy_gradients->write_restart(os); } - if ( (!use_grids) || keep_hills ) { + if ((!use_grids) || keep_hills) { // write all hills currently in memory - for (std::list::const_iterator h = this->hills.begin(); - h != this->hills.end(); - h++) { - os << *h; + for (std::list::const_iterator h = this->hills.begin(); h != this->hills.end(); h++) { + write_hill(os, *h); } } else { // write just those that are near the grid boundaries for (std::list::const_iterator h = this->hills_off_grid.begin(); - h != this->hills_off_grid.end(); - h++) { - os << *h; + h != this->hills_off_grid.end(); h++) { + write_hill(os, *h); } } @@ -1795,6 +1870,18 @@ std::ostream & colvarbias_meta::write_state_data(std::ostream& os) } +std::ostream & colvarbias_meta::write_state_data(std::ostream& os) +{ + return write_state_data_template_(os); +} + + +cvm::memory_stream &colvarbias_meta::write_state_data(cvm::memory_stream &os) +{ + return write_state_data_template_(os); +} + + int colvarbias_meta::write_state_to_replicas() { int error_code = COLVARS_OK; @@ -1816,6 +1903,15 @@ int colvarbias_meta::write_output_files() if (dump_fes) { write_pmf(); } + if (b_hills_traj) { + std::ostream &hills_traj_os = + cvm::proxy->output_stream(hills_traj_file_name(), "hills trajectory file"); + hills_traj_os << hills_traj_os_buf.str(); + cvm::proxy->flush_output_stream(hills_traj_file_name()); + // clear the buffer + hills_traj_os_buf.str(""); + hills_traj_os_buf.clear(); + } return COLVARS_OK; } @@ -1915,7 +2011,7 @@ int colvarbias_meta::write_replica_state_file() // Write to temporary state file std::string const tmp_state_file(replica_state_file+".tmp"); error_code |= proxy->remove_file(tmp_state_file); - std::ostream &rep_state_os = cvm::proxy->output_stream(tmp_state_file); + std::ostream &rep_state_os = cvm::proxy->output_stream(tmp_state_file, "temporary state file"); if (rep_state_os) { if (!write_state(rep_state_os)) { error_code |= cvm::error("Error: in writing to temporary file \""+ @@ -1934,11 +2030,11 @@ int colvarbias_meta::reopen_replica_buffer_file() { int error_code = COLVARS_OK; colvarproxy *proxy = cvm::proxy; - if (proxy->output_stream(replica_hills_file)) { + if (proxy->output_stream(replica_hills_file, "replica hills file")) { error_code |= proxy->close_output_stream(replica_hills_file); } error_code |= proxy->remove_file(replica_hills_file); - std::ostream &replica_hills_os = proxy->output_stream(replica_hills_file); + std::ostream &replica_hills_os = proxy->output_stream(replica_hills_file, "replica hills file"); if (replica_hills_os) { replica_hills_os.setf(std::ios::scientific, std::ios::floatfield); } else { @@ -2037,43 +2133,3 @@ colvarbias_meta::hill::operator = (colvarbias_meta::hill const &h) colvarbias_meta::hill::~hill() {} - - -std::ostream & operator << (std::ostream &os, colvarbias_meta::hill const &h) -{ - os.setf(std::ios::scientific, std::ios::floatfield); - - os << "hill {\n"; - os << " step " << std::setw(cvm::it_width) << h.it << "\n"; - os << " weight " - << std::setprecision(cvm::en_prec) - << std::setw(cvm::en_width) - << h.W << "\n"; - - if (h.replica.size()) - os << " replicaID " << h.replica << "\n"; - - size_t i; - os << " centers "; - for (i = 0; i < (h.centers).size(); i++) { - os << " " - << std::setprecision(cvm::cv_prec) - << std::setw(cvm::cv_width) - << h.centers[i]; - } - os << "\n"; - - // For backward compatibility, write the widths instead of the sigmas - os << " widths "; - for (i = 0; i < (h.sigmas).size(); i++) { - os << " " - << std::setprecision(cvm::cv_prec) - << std::setw(cvm::cv_width) - << 2.0 * h.sigmas[i]; - } - os << "\n"; - - os << "}\n"; - - return os; -} diff --git a/lib/colvars/colvarbias_meta.h b/lib/colvars/colvarbias_meta.h index bac2ff74d4..a765a60c71 100644 --- a/lib/colvars/colvarbias_meta.h +++ b/lib/colvars/colvarbias_meta.h @@ -17,6 +17,7 @@ #include "colvarbias.h" #include "colvargrid.h" + /// Metadynamics bias (implementation of \link colvarbias \endlink) class colvarbias_meta : public virtual colvarbias, @@ -51,14 +52,32 @@ public: virtual int update_bias(); virtual int update_grid_data(); virtual int replica_share(); + virtual size_t replica_share_freq() const; virtual int calc_energy(std::vector const *values); virtual int calc_forces(std::vector const *values); virtual std::string const get_state_params() const; virtual int set_state_params(std::string const &state_conf); - virtual std::ostream & write_state_data(std::ostream &os); - virtual std::istream & read_state_data(std::istream &os); + + virtual std::ostream &write_state_data(std::ostream &os); + virtual cvm::memory_stream &write_state_data(cvm::memory_stream &os); + virtual std::istream &read_state_data(std::istream &is); + virtual cvm::memory_stream &read_state_data(cvm::memory_stream &is); + +private: + + template + IST &read_grid_data_template_(IST &is, std::string const &key, GT *grid, GT *backup_grid); + + template IST &read_state_data_template_(IST &is); + + template OST &write_state_data_template_(OST &os); + +public: + + /// Function called by read_state_data() to execute rebinning (if requested) + void rebin_grids_after_restart(); virtual int setup_output(); virtual int write_output_files(); @@ -105,11 +124,24 @@ protected: /// Regenerate the hills_off_grid list void recount_hills_off_grid(hill_iter h_first, hill_iter h_last, - colvar_grid_scalar *ge); + colvar_grid_scalar *ge); - /// Read a hill from a file + template OST &write_hill_template_(OST &os, colvarbias_meta::hill const &h); + + /// Write a hill to a formatted stream + std::ostream &write_hill(std::ostream &os, hill const &h); + + /// Write a hill to an unformatted stream + cvm::memory_stream &write_hill(cvm::memory_stream &os, hill const &h); + + template IST &read_hill_template_(IST &is); + + /// Read a new hill from a formatted stream std::istream & read_hill(std::istream &is); + /// Read a new hill from an unformatted stream + cvm::memory_stream & read_hill(cvm::memory_stream &is); + /// \brief Add a new hill; if a .hills trajectory is written, /// write it there; if there is more than one replica, communicate /// it to the others @@ -230,7 +262,7 @@ protected: std::vector replicas; /// \brief Frequency at which data the "mirror" biases are updated - size_t replica_update_freq; + size_t replica_update_freq = 0; /// List of replicas (and their output list files): contents are /// copied into replicas_registry for convenience @@ -258,6 +290,8 @@ protected: /// Position within replica_hills_file (when reading it) std::streampos replica_hills_file_pos; + /// Cache of the hills trajectory + std::ostringstream hills_traj_os_buf; }; @@ -399,9 +433,6 @@ public: /// Represent the hill ina string suitable for a trajectory file std::string output_traj(); - /// Write the hill to an output stream - friend std::ostream & operator << (std::ostream &os, hill const &h); - }; diff --git a/lib/colvars/colvarbias_restraint.cpp b/lib/colvars/colvarbias_restraint.cpp index a7963c4f8f..6ea00375e3 100644 --- a/lib/colvars/colvarbias_restraint.cpp +++ b/lib/colvars/colvarbias_restraint.cpp @@ -27,7 +27,10 @@ colvarbias_restraint::colvarbias_restraint(char const *key) int colvarbias_restraint::init(std::string const &conf) { - colvarbias::init(conf); + int err = colvarbias::init(conf); + if (err != COLVARS_OK) { + return err; + } enable(f_cvb_apply_force); colvarbias_ti::init(conf); @@ -202,6 +205,8 @@ int colvarbias_restraint_moving::init(std::string const &conf) first_step = cvm::step_absolute(); + cvm::log("Initial step for restraint change: " + cvm::to_str(first_step) + "\n"); + get_keyval(conf, "targetNumSteps", target_nsteps, target_nsteps); if (!target_nsteps) { cvm::error("Error: targetNumSteps must be non-zero.\n", COLVARS_INPUT_ERROR); @@ -232,10 +237,9 @@ std::string const colvarbias_restraint_moving::get_state_params() const std::ostringstream os; os.setf(std::ios::scientific, std::ios::floatfield); if (b_chg_centers || b_chg_force_k) { - // TODO move this + os << "firstStep " << std::setw(cvm::it_width) << first_step << "\n"; if (target_nstages) { - os << "stage " << std::setw(cvm::it_width) - << stage << "\n"; + os << "stage " << std::setw(cvm::it_width) << stage << "\n"; } } return os.str(); @@ -245,6 +249,12 @@ std::string const colvarbias_restraint_moving::get_state_params() const int colvarbias_restraint_moving::set_state_params(std::string const &conf) { if (b_chg_centers || b_chg_force_k) { + auto first_step_flags = colvarparse::parse_restart; + if (cvm::main()->restart_version_number() > 20230906) { + // Only require the first step when the code could produce it + first_step_flags = colvarparse::parse_restart | colvarparse::parse_required; + } + get_keyval(conf, "firstStep", first_step, first_step, first_step_flags); if (target_nstages) { get_keyval(conf, "stage", stage, stage, colvarparse::parse_restart | colvarparse::parse_required); @@ -837,18 +847,6 @@ int colvarbias_restraint_harmonic::set_state_params(std::string const &conf) } -std::ostream & colvarbias_restraint_harmonic::write_state_data(std::ostream &os) -{ - return colvarbias_ti::write_state_data(os); -} - - -std::istream & colvarbias_restraint_harmonic::read_state_data(std::istream &is) -{ - return colvarbias_ti::read_state_data(is); -} - - std::ostream & colvarbias_restraint_harmonic::write_traj_label(std::ostream &os) { colvarbias_restraint::write_traj_label(os); @@ -1136,18 +1134,6 @@ int colvarbias_restraint_harmonic_walls::set_state_params(std::string const &con } -std::ostream & colvarbias_restraint_harmonic_walls::write_state_data(std::ostream &os) -{ - return colvarbias_ti::write_state_data(os); -} - - -std::istream & colvarbias_restraint_harmonic_walls::read_state_data(std::istream &is) -{ - return colvarbias_ti::read_state_data(is); -} - - std::ostream & colvarbias_restraint_harmonic_walls::write_traj_label(std::ostream &os) { colvarbias_restraint::write_traj_label(os); @@ -1293,18 +1279,6 @@ int colvarbias_restraint_linear::set_state_params(std::string const &conf) } -std::ostream & colvarbias_restraint_linear::write_state_data(std::ostream &os) -{ - return colvarbias_ti::write_state_data(os); -} - - -std::istream & colvarbias_restraint_linear::read_state_data(std::istream &is) -{ - return colvarbias_ti::read_state_data(is); -} - - std::ostream & colvarbias_restraint_linear::write_traj_label(std::ostream &os) { colvarbias_restraint::write_traj_label(os); @@ -1338,7 +1312,10 @@ int colvarbias_restraint_histogram::init(std::string const &conf) { int error_code = COLVARS_OK; - colvarbias::init(conf); + int err = colvarbias::init(conf); + if (err != COLVARS_OK) { + return err; + } enable(f_cvb_apply_force); cvm::main()->cite_feature("histogramRestraint colvar bias implementation"); diff --git a/lib/colvars/colvarbias_restraint.h b/lib/colvars/colvarbias_restraint.h index 45a96d14f8..f030a5cad7 100644 --- a/lib/colvars/colvarbias_restraint.h +++ b/lib/colvars/colvarbias_restraint.h @@ -38,9 +38,6 @@ public: virtual std::string const get_state_params() const; virtual int set_state_params(std::string const &conf); - // virtual std::ostream & write_state_data(std::ostream &os); - // virtual std::istream & read_state_data(std::istream &os); - virtual std::ostream & write_traj_label(std::ostream &os); virtual std::ostream & write_traj(std::ostream &os); @@ -242,8 +239,6 @@ public: virtual int update(); virtual std::string const get_state_params() const; virtual int set_state_params(std::string const &conf); - virtual std::ostream & write_state_data(std::ostream &os); - virtual std::istream & read_state_data(std::istream &os); virtual std::ostream & write_traj_label(std::ostream &os); virtual std::ostream & write_traj(std::ostream &os); virtual int change_configuration(std::string const &conf); @@ -269,8 +264,6 @@ public: virtual int update(); virtual std::string const get_state_params() const; virtual int set_state_params(std::string const &conf); - virtual std::ostream & write_state_data(std::ostream &os); - virtual std::istream & read_state_data(std::istream &os); virtual std::ostream & write_traj_label(std::ostream &os); virtual std::ostream & write_traj(std::ostream &os); @@ -311,8 +304,6 @@ public: virtual std::string const get_state_params() const; virtual int set_state_params(std::string const &conf); - virtual std::ostream & write_state_data(std::ostream &os); - virtual std::istream & read_state_data(std::istream &os); virtual std::ostream & write_traj_label(std::ostream &os); virtual std::ostream & write_traj(std::ostream &os); diff --git a/lib/colvars/colvarcomp.cpp b/lib/colvars/colvarcomp.cpp index abe522a249..e6729f43a7 100644 --- a/lib/colvars/colvarcomp.cpp +++ b/lib/colvars/colvarcomp.cpp @@ -19,45 +19,40 @@ colvar::cvc::cvc() { description = "uninitialized colvar component"; - b_try_scalable = true; - sup_coeff = 1.0; - sup_np = 1; - period = 0.0; - wrap_center = 0.0; - width = 0.0; cvc::init_dependencies(); } -colvar::cvc::cvc(std::string const &conf) +int colvar::cvc::update_description() { - description = "uninitialized colvar component"; - b_try_scalable = true; - sup_coeff = 1.0; - sup_np = 1; - period = 0.0; - wrap_center = 0.0; - width = 0.0; - init_dependencies(); - colvar::cvc::init(conf); + if (name.size() > 0) { + description = "cvc \"" + name + "\""; + } else { + description = "unnamed cvc"; + } + description += " of type \"" + function_type() + "\""; + return COLVARS_OK; +} + + +std::string colvar::cvc::function_type() const +{ + if (function_types.empty()) { + return "unset"; + } + return function_types.back(); } int colvar::cvc::set_function_type(std::string const &type) { - function_type = type; - if (function_types.size() == 0) { - function_types.push_back(function_type); - } else { - if (function_types.back() != function_type) { - function_types.push_back(function_type); - } - } + function_types.push_back(type); + update_description(); + cvm::main()->cite_feature(function_types[0]+" colvar component"); for (size_t i = function_types.size()-1; i > 0; i--) { cvm::main()->cite_feature(function_types[i]+" colvar component"+ " (derived from "+function_types[i-1]+")"); } - cvm::main()->cite_feature(function_types[0]+" colvar component"); return COLVARS_OK; } @@ -67,6 +62,8 @@ int colvar::cvc::init(std::string const &conf) if (cvm::debug()) cvm::log("Initializing cvc base object.\n"); + int error_code = COLVARS_OK; + std::string const old_name(name); if (name.size() > 0) { @@ -74,18 +71,14 @@ int colvar::cvc::init(std::string const &conf) } if (get_keyval(conf, "name", name, name)) { - if (name.size() > 0) { - description = "cvc \"" + name + "\" of type " + function_type; - } else { - description = "unnamed cvc"; - } if ((name != old_name) && (old_name.size() > 0)) { - cvm::error("Error: cannot rename component \""+old_name+ - "\" after initialization (new name = \""+name+"\")", - COLVARS_INPUT_ERROR); + error_code |= cvm::error("Error: cannot rename component \"" + old_name + + "\" after initialization (new name = \"" + name + "\")", + COLVARS_INPUT_ERROR); name = old_name; } } + update_description(); get_keyval(conf, "componentCoeff", sup_coeff, sup_coeff); get_keyval(conf, "componentExp", sup_np, sup_np); @@ -102,6 +95,24 @@ int colvar::cvc::init(std::string const &conf) register_param("period", reinterpret_cast(&period)); register_param("wrapAround", reinterpret_cast(&wrap_center)); + if (period != 0.0) { + if (!is_available(f_cvc_periodic)) { + error_code |= + cvm::error("Error: invalid use of period and/or " + "wrapAround in a \"" + + function_type() + "\" component.\n" + "Period: " + cvm::to_str(period) + + " wrapAround: " + cvm::to_str(wrap_center), + COLVARS_INPUT_ERROR); + } else { + enable(f_cvc_periodic); + } + } + + if ((wrap_center != 0.0) && !is_enabled(f_cvc_periodic)) { + error_code |= cvm::error("Error: wrapAround was defined for a non-periodic component.\n", + COLVARS_INPUT_ERROR); + } + get_keyval_feature(this, conf, "debugGradients", f_cvc_debug_gradient, false, parse_silent); @@ -119,7 +130,7 @@ int colvar::cvc::init(std::string const &conf) if (cvm::debug()) cvm::log("Done initializing cvc base object.\n"); - return cvm::get_error(); + return error_code; } @@ -157,10 +168,13 @@ cvm::atom_group *colvar::cvc::parse_group(std::string const &conf, char const *group_key, bool optional) { - cvm::atom_group *group = NULL; + int error_code = COLVARS_OK; + + cvm::atom_group *group = nullptr; std::string group_conf; if (key_lookup(conf, group_key, &group_conf)) { + group = new cvm::atom_group(group_key); if (b_try_scalable) { @@ -177,31 +191,42 @@ cvm::atom_group *colvar::cvc::parse_group(std::string const &conf, // TODO check for other types of parallelism here } - if (group_conf.size() == 0) { - cvm::error("Error: atom group \""+group->key+ - "\" is set, but has no definition.\n", - COLVARS_INPUT_ERROR); + if (group_conf.empty()) { + error_code |= cvm::error("Error: atom group \"" + group->key + "\" has no definition.\n", + COLVARS_INPUT_ERROR); + delete group; + group = nullptr; + // Silence unused variable warning; TODO stop returning a pointer + (void) error_code; return group; } cvm::increase_depth(); - if (group->parse(group_conf) == COLVARS_OK) { + error_code |= group->parse(group_conf); + if (error_code != COLVARS_OK) { + error_code |= + cvm::error("Error: in definition of atom group \"" + std::string(group_key) + "\".", + COLVARS_INPUT_ERROR); + delete group; + group = nullptr; + } else { register_atom_group(group); - } - group->check_keywords(group_conf, group_key); - if (cvm::get_error()) { - cvm::error("Error parsing definition for atom group \""+ - std::string(group_key)+"\".", COLVARS_INPUT_ERROR); + error_code |= group->check_keywords(group_conf, group_key); } cvm::decrease_depth(); } else { - if (! optional) { - cvm::error("Error: definition for atom group \""+ - std::string(group_key)+"\" not found.\n"); + + if (!optional) { + error_code |= + cvm::error("Error: atom group \"" + std::string(group_key) + "\" is required.\n", + COLVARS_INPUT_ERROR); } } + // Silence unused variable warning; TODO stop returning a pointer + (void) error_code; + return group; } @@ -228,6 +253,8 @@ int colvar::cvc::init_dependencies() { init_feature(f_cvc_upper_boundary, "defined_upper_boundary", f_type_static); + init_feature(f_cvc_explicit_atom_groups, "explicit_atom_groups", f_type_static); + init_feature(f_cvc_gradient, "gradient", f_type_dynamic); init_feature(f_cvc_explicit_gradient, "explicit_gradient", f_type_static); @@ -264,6 +291,7 @@ int colvar::cvc::init_dependencies() { init_feature(f_cvc_collect_atom_ids, "collect_atom_ids", f_type_dynamic); require_feature_children(f_cvc_collect_atom_ids, f_ag_collect_atom_ids); + require_feature_self(f_cvc_collect_atom_ids, f_cvc_explicit_atom_groups); // TODO only enable this when f_ag_scalable can be turned on for a pre-initialized group // require_feature_children(f_cvc_scalable, f_ag_scalable); @@ -281,7 +309,7 @@ int colvar::cvc::init_dependencies() { // default as available, not enabled // except dynamic features which default as unavailable feature_states.reserve(f_cvc_ntot); - for (i = 0; i < colvardeps::f_cvc_ntot; i++) { + for (i = feature_states.size(); i < colvardeps::f_cvc_ntot; i++) { bool avail = is_dynamic(i) ? false : true; feature_states.push_back(feature_state(avail, false)); } @@ -292,6 +320,8 @@ int colvar::cvc::init_dependencies() { feature_states[f_cvc_gradient].available = true; feature_states[f_cvc_collect_atom_ids].available = true; + feature_states[f_cvc_periodic].available = false; + // CVCs are enabled from the start - get disabled based on flags enable(f_cvc_active); @@ -314,7 +344,7 @@ int colvar::cvc::init_dependencies() { int colvar::cvc::setup() { - description = "cvc " + name; + update_description(); return COLVARS_OK; } @@ -349,6 +379,7 @@ void colvar::cvc::init_as_angle() void colvar::cvc::init_as_periodic_angle() { x.type(colvarvalue::type_scalar); + provide(f_cvc_periodic); enable(f_cvc_periodic); period = 360.0; init_scalar_boundaries(-180.0, 180.0); @@ -372,6 +403,7 @@ void colvar::cvc::register_atom_group(cvm::atom_group *ag) { atom_groups.push_back(ag); add_child(ag); + enable(f_cvc_explicit_atom_groups); } @@ -411,29 +443,21 @@ int colvar::cvc::set_param(std::string const ¶m_name, void colvar::cvc::read_data() { - size_t ig; - for (ig = 0; ig < atom_groups.size(); ig++) { - cvm::atom_group &atoms = *(atom_groups[ig]); - atoms.reset_atoms_data(); - atoms.read_positions(); - atoms.calc_required_properties(); - // each atom group will take care of its own fitting_group, if defined + if (is_enabled(f_cvc_explicit_atom_groups)) { + for (auto agi = atom_groups.begin(); agi != atom_groups.end(); agi++) { + cvm::atom_group &atoms = *(*agi); + atoms.reset_atoms_data(); + atoms.read_positions(); + atoms.calc_required_properties(); + // each atom group will take care of its own fitting_group, if defined + } } - -//// Don't try to get atom velocities, as no back-end currently implements it -// if (tasks[task_output_velocity] && !tasks[task_fdiff_velocity]) { -// for (i = 0; i < cvcs.size(); i++) { -// for (ig = 0; ig < cvcs[i]->atom_groups.size(); ig++) { -// cvcs[i]->atom_groups[ig]->read_velocities(); -// } -// } -// } } -std::vector > colvar::cvc::get_atom_lists() +std::vector> colvar::cvc::get_atom_lists() { - std::vector > lists; + std::vector> lists; std::vector::iterator agi = atom_groups.begin(); for ( ; agi != atom_groups.end(); ++agi) { @@ -462,12 +486,12 @@ void colvar::cvc::collect_gradients(std::vector const &atom_ids, std::vecto // If necessary, apply inverse rotation to get atomic // gradient in the laboratory frame if (ag.is_enabled(f_ag_rotate)) { - cvm::rotation const rot_inv = ag.rot.inverse(); + const auto rot_inv = ag.rot.inverse().matrix(); for (size_t k = 0; k < ag.size(); k++) { size_t a = std::lower_bound(atom_ids.begin(), atom_ids.end(), ag[k].id) - atom_ids.begin(); - atomic_gradients[a] += coeff * rot_inv.rotate(ag[k].grad); + atomic_gradients[a] += coeff * (rot_inv * ag[k].grad); } } else { @@ -494,7 +518,7 @@ void colvar::cvc::collect_gradients(std::vector const &atom_ids, std::vecto void colvar::cvc::calc_force_invgrads() { cvm::error("Error: calculation of inverse gradients is not implemented " - "for colvar components of type \""+function_type+"\".\n", + "for colvar components of type \""+function_type()+"\".\n", COLVARS_NOT_IMPLEMENTED); } @@ -502,7 +526,7 @@ void colvar::cvc::calc_force_invgrads() void colvar::cvc::calc_Jacobian_derivative() { cvm::error("Error: calculation of inverse gradients is not implemented " - "for colvar components of type \""+function_type+"\".\n", + "for colvar components of type \""+function_type()+"\".\n", COLVARS_NOT_IMPLEMENTED); } @@ -515,6 +539,18 @@ void colvar::cvc::calc_fit_gradients() } +void colvar::cvc::apply_force(colvarvalue const &cvforce) +{ + if (is_enabled(f_cvc_explicit_atom_groups)) { + for (auto agi = atom_groups.begin(); agi != atom_groups.end(); agi++) { + if (!(*agi)->noforce) { + (*agi)->apply_colvar_force(cvforce); + } + } + } +} + + void colvar::cvc::debug_gradients() { // this function should work for any scalar cvc: @@ -528,8 +564,8 @@ void colvar::cvc::debug_gradients() cvm::atom_group *group = atom_groups[ig]; if (group->b_dummy) continue; - cvm::rotation const rot_0 = group->rot; - cvm::rotation const rot_inv = group->rot.inverse(); + const auto rot_0 = group->rot.matrix(); + const auto rot_inv = group->rot.inverse().matrix(); cvm::real x_0 = x.real_value; if ((x.type() == colvarvalue::type_vector) && (x.size() == 1)) x_0 = x[0]; @@ -550,7 +586,7 @@ void colvar::cvc::debug_gradients() cvm::log((group->fitting_group ? std::string("refPosGroup") : group->key) + "[" + cvm::to_str(j) + "] = " + (group->is_enabled(f_ag_rotate) ? - cvm::to_str(rot_0.rotate(group_for_fit->fit_gradients[j])) : + cvm::to_str(rot_0 * (group_for_fit->fit_gradients[j])) : cvm::to_str(group_for_fit->fit_gradients[j]))); } } @@ -561,7 +597,7 @@ void colvar::cvc::debug_gradients() // tests are best conducted in the unrotated (simulation) frame cvm::rvector const atom_grad = (group->is_enabled(f_ag_rotate) ? - rot_inv.rotate((*group)[ia].grad) : + rot_inv * ((*group)[ia].grad) : (*group)[ia].grad); gradient_sum += atom_grad; @@ -634,34 +670,43 @@ void colvar::cvc::debug_gradients() } -cvm::real colvar::cvc::dist2(colvarvalue const &x1, - colvarvalue const &x2) const +cvm::real colvar::cvc::dist2(colvarvalue const &x1, colvarvalue const &x2) const { - return x1.dist2(x2); + cvm::real diff = x1.real_value - x2.real_value; + if (is_enabled(f_cvc_periodic)) { + cvm::real const shift = cvm::floor(diff / period + 0.5); + diff -= shift * period; + } + return diff * diff; } -colvarvalue colvar::cvc::dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const +colvarvalue colvar::cvc::dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const { - return x1.dist2_grad(x2); + cvm::real diff = x1.real_value - x2.real_value; + if (is_enabled(f_cvc_periodic)) { + cvm::real const shift = cvm::floor(diff / period + 0.5); + diff -= shift * period; + } + return 2.0 * diff; } -colvarvalue colvar::cvc::dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const +colvarvalue colvar::cvc::dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const { - return x2.dist2_grad(x1); + return cvc::dist2_lgrad(x1, x2); } -void colvar::cvc::wrap(colvarvalue & /* x_unwrapped */) const +void colvar::cvc::wrap(colvarvalue &x_unwrapped) const { - return; + if (is_enabled(f_cvc_periodic)) { + cvm::real const shift = cvm::floor((x_unwrapped.real_value - wrap_center) / period + 0.5); + x_unwrapped.real_value -= shift * period; + } } - // Static members std::vector colvar::cvc::cvc_features; diff --git a/lib/colvars/colvarcomp.h b/lib/colvars/colvarcomp.h index 87d3e27a8f..334fdc1f6e 100644 --- a/lib/colvars/colvarcomp.h +++ b/lib/colvars/colvarcomp.h @@ -19,20 +19,12 @@ // this can be done straightforwardly by using the macro: // simple_scalar_dist_functions (derived_class) +#include #include "colvarmodule.h" -#include "colvar.h" #include "colvaratoms.h" -#include "colvar_arithmeticpath.h" - -#if (__cplusplus >= 201103L) -// C++11-only functions +#include "colvar.h" #include "colvar_geometricpath.h" -#include -#include -#endif - -#include /// \brief Colvar component (base class for collective variables) @@ -82,37 +74,29 @@ public: /// cvc instance when debugging) std::string name; - /// \brief Description of the type of collective variable - /// - /// Normally this string is set by the parent \link colvar \endlink - /// object within its constructor, when all \link colvar::cvc \endlink - /// objects are initialized; therefore the main "config string" - /// constructor does not need to define it. If a \link colvar::cvc - /// \endlink is initialized and/or a different constructor is used, - /// this variable definition should be set within the constructor. - std::string function_type; + /// String identifier for the type of collective variable + std::string function_type() const; /// Keyword used in the input to denote this CVC std::string config_key; /// \brief Coefficient in the polynomial combination (default: 1.0) - cvm::real sup_coeff; + cvm::real sup_coeff = 1.0; + /// \brief Exponent in the polynomial combination (default: 1) - int sup_np; + int sup_np = 1; /// \brief Period of the values of this CVC (default: 0.0, non periodic) - cvm::real period; + cvm::real period = 0.0; /// \brief If the component is periodic, wrap around this value (default: 0.0) - cvm::real wrap_center; + cvm::real wrap_center = 0.0; - /// \brief Constructor - /// - /// Calls the init() function of the class - cvc(std::string const &conf); + /// Constructor + cvc(); - /// Set the value of \link function_type \endlink and its dependencies - int set_function_type(std::string const &type); + /// Destructor + virtual ~cvc(); /// An init function should be defined for every class inheriting from cvc /// \param conf Contents of the configuration file pertaining to this \link @@ -122,38 +106,20 @@ public: /// \brief Initialize dependency tree virtual int init_dependencies(); - /// \brief Within the constructor, make a group parse its own - /// options from the provided configuration string - /// Returns reference to new group - cvm::atom_group *parse_group(std::string const &conf, - char const *group_key, - bool optional = false); - - /// \brief Parse options pertaining to total force calculation - virtual int init_total_force_params(std::string const &conf); - /// \brief After construction, set data related to dependency handling int setup(); - /// \brief Default constructor (used when \link colvar::cvc \endlink - /// objects are declared within other ones) - cvc(); - - /// Destructor - virtual ~cvc(); - - /// \brief Implementation of the feature list for colvar - static std::vector cvc_features; - /// \brief Implementation of the feature list accessor for colvar virtual const std::vector &features() const { return cvc_features; } + virtual std::vector &modify_features() { return cvc_features; } + static void delete_features() { for (size_t i=0; i < cvc_features.size(); i++) { delete cvc_features[i]; @@ -211,16 +177,12 @@ public: /// collective variable force, usually coming from the biases and /// eventually manipulated by the parent \link colvar \endlink /// object - virtual void apply_force(colvarvalue const &cvforce) = 0; + virtual void apply_force(colvarvalue const &cvforce); - /// \brief Square distance between x1 and x2 (can be redefined to - /// transparently implement constraints, symmetries and - /// periodicities) - /// - /// colvar::cvc::dist2() and the related functions are - /// declared as "const" functions, but not "static", because - /// additional parameters defining the metrics (e.g. the - /// periodicity) may be specific to each colvar::cvc object. + /// Square distance between x1 and x2 (can be redefined to transparently + /// implement metrics in multi-dimensional spaces with or without + /// constraints, symmetries and periodicities). The default implementation + /// assumes scalar numbers and no symmetries or periodicities. /// /// If symmetries or periodicities are present, the /// colvar::cvc::dist2() should be redefined to return the @@ -235,12 +197,6 @@ public: /// i.e. already deprived of its component normal to the constraint /// hypersurface. /// - /// Finally, another useful application, if you are performing very - /// many operations with these functions, could be to override the - /// \link colvarvalue \endlink member functions and access directly - /// its member data. For instance: to define dist2(x1,x2) as - /// (x2.real_value-x1.real_value)*(x2.real_value-x1.real_value) in - /// case of a scalar \link colvarvalue \endlink type. virtual cvm::real dist2(colvarvalue const &x1, colvarvalue const &x2) const; @@ -273,7 +229,7 @@ public: virtual int set_param(std::string const ¶m_name, void const *new_value); /// \brief Whether or not this CVC will be computed in parallel whenever possible - bool b_try_scalable; + bool b_try_scalable = true; /// Forcibly set value of CVC - useful for driving an external coordinate, /// eg. lambda dynamics @@ -283,6 +239,22 @@ public: protected: + /// Set the value of \link function_type \endlink and its dependencies + int set_function_type(std::string const &type); + + /// Update the description string based on name and type + int update_description(); + + /// Parse a group definition + cvm::atom_group *parse_group(std::string const &conf, char const *group_key, + bool optional = false); + + /// \brief Parse options pertaining to total force calculation + virtual int init_total_force_params(std::string const &conf); + + /// \brief Implementation of the feature list for colvar + static std::vector cvc_features; + /// Record the type of this class as well as those it is derived from std::vector function_types; @@ -320,8 +292,8 @@ protected: /// \brief Location of the upper boundary (not defined by user choice) colvarvalue upper_boundary; - /// \brief CVC-specific default colvar width - cvm::real width; + /// \brief CVC-specific default colvar width (default: not provided) + cvm::real width = 0.0; }; @@ -352,26 +324,19 @@ class colvar::distance { protected: /// First atom group - cvm::atom_group *group1; + cvm::atom_group *group1 = nullptr; /// Second atom group - cvm::atom_group *group2; + cvm::atom_group *group2 = nullptr; /// Vector distance, cached to be recycled cvm::rvector dist_v; public: - distance(std::string const &conf); distance(); virtual ~distance() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void calc_force_invgrads(); virtual void calc_Jacobian_derivative(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -383,25 +348,22 @@ class colvar::distance_vec : public colvar::distance { public: - distance_vec(std::string const &conf); distance_vec(); virtual ~distance_vec() {} virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); - /// Redefined to handle the box periodicity - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the box periodicity - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the box periodicity - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual cvm::real dist2(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual colvarvalue dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual colvarvalue dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual void wrap(colvarvalue &x_unwrapped) const; }; - /// \brief Colvar component: distance unit vector (direction) between /// centers of mass of two groups (colvarvalue::type_unit3vector type, /// range [-1:1]x[-1:1]x[-1:1]) @@ -409,21 +371,19 @@ class colvar::distance_dir : public colvar::distance { public: - distance_dir(std::string const &conf); distance_dir(); virtual ~distance_dir() {} virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); - /// Redefined to override the distance ones - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to override the distance ones - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to override the distance ones - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual cvm::real dist2(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual colvarvalue dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual colvarvalue dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual void wrap(colvarvalue &x_unwrapped) const; }; @@ -435,11 +395,11 @@ class colvar::distance_z { protected: /// Main atom group - cvm::atom_group *main; + cvm::atom_group *main = nullptr; /// Reference atom group - cvm::atom_group *ref1; + cvm::atom_group *ref1 = nullptr; /// Optional, second ref atom group - cvm::atom_group *ref2; + cvm::atom_group *ref2 = nullptr; /// Vector on which the distance vector is projected cvm::rvector axis; /// Norm of the axis @@ -447,24 +407,15 @@ protected: /// Vector distance, cached to be recycled cvm::rvector dist_v; /// Flag: using a fixed axis vector? - bool fixed_axis; + bool fixed_axis = true; public: - distance_z(std::string const &conf); distance_z(); virtual ~distance_z() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void calc_force_invgrads(); virtual void calc_Jacobian_derivative(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// \brief Redefined to make use of the user-provided period - virtual void wrap(colvarvalue &x_unwrapped) const; }; @@ -480,20 +431,12 @@ protected: /// Vector distances cvm::rvector v12, v13; public: - distance_xy(std::string const &conf); distance_xy(); virtual ~distance_xy() {} virtual void calc_value(); virtual void calc_gradients(); virtual void calc_force_invgrads(); virtual void calc_Jacobian_derivative(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -502,28 +445,16 @@ public: class colvar::polar_phi : public colvar::cvc { +protected: + cvm::atom_group *atoms = nullptr; + cvm::real r, theta, phi; + public: - polar_phi(std::string const &conf); polar_phi(); virtual ~polar_phi() {} -protected: - cvm::atom_group *atoms; - cvm::real r, theta, phi; -public: + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - /// Redefined to handle the 2*PI periodicity - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the 2*PI periodicity - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the 2*PI periodicity - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the 2*PI periodicity - virtual void wrap(colvarvalue &x_unwrapped) const; }; @@ -533,27 +464,18 @@ class colvar::polar_theta : public colvar::cvc { public: - polar_theta(std::string const &conf); polar_theta(); virtual ~polar_theta() {} + virtual int init(std::string const &conf); protected: - cvm::atom_group *atoms; + cvm::atom_group *atoms = nullptr; cvm::real r, theta, phi; public: virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - /// Redefined to override the distance ones - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to override the distance ones - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to override the distance ones - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; + /// \brief Colvar component: average distance between two groups of atoms, weighted as the sixth power, /// as in NMR refinements(colvarvalue::type_scalar type, range (0:*)) class colvar::distance_inv @@ -561,23 +483,17 @@ class colvar::distance_inv { protected: /// First atom group - cvm::atom_group *group1; + cvm::atom_group *group1 = nullptr; /// Second atom group - cvm::atom_group *group2; + cvm::atom_group *group2 = nullptr; /// Components of the distance vector orthogonal to the axis - int exponent; + int exponent = 6; public: - distance_inv(std::string const &conf); + distance_inv(); virtual ~distance_inv() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -589,45 +505,41 @@ class colvar::distance_pairs { protected: /// First atom group - cvm::atom_group *group1; + cvm::atom_group *group1 = nullptr; /// Second atom group - cvm::atom_group *group2; + cvm::atom_group *group2 = nullptr; public: - distance_pairs(std::string const &conf); distance_pairs(); virtual ~distance_pairs() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); + /// Redefined to deal with multiple dimensions + virtual cvm::real dist2(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual colvarvalue dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual colvarvalue dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual void wrap(colvarvalue &x_unwrapped) const; }; - /// \brief Colvar component: dipole magnitude of a molecule class colvar::dipole_magnitude : public colvar::cvc { protected: /// Dipole atom group - cvm::atom_group *atoms; + cvm::atom_group *atoms = nullptr; cvm::atom_pos dipoleV; public: - /// Initialize by parsing the configuration - dipole_magnitude (std::string const &conf); - dipole_magnitude (cvm::atom const &a1); dipole_magnitude(); virtual ~dipole_magnitude() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); - //virtual void calc_force_invgrads(); - //virtual void calc_Jacobian_derivative(); - virtual void apply_force (colvarvalue const &force); - virtual cvm::real dist2 (colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad (colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad (colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -639,21 +551,15 @@ class colvar::gyration { protected: /// Atoms involved - cvm::atom_group *atoms; + cvm::atom_group *atoms = nullptr; public: - gyration(std::string const &conf); + gyration(); virtual ~gyration() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void calc_force_invgrads(); virtual void calc_Jacobian_derivative(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -664,19 +570,10 @@ class colvar::inertia : public colvar::gyration { public: - /// Constructor - inertia(std::string const &conf); inertia(); virtual ~inertia() {} virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -690,19 +587,11 @@ protected: /// Vector on which the inertia tensor is projected cvm::rvector axis; public: - /// Constructor - inertia_z(std::string const &conf); inertia_z(); virtual ~inertia_z() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -715,7 +604,7 @@ class colvar::eigenvector protected: /// Atom group - cvm::atom_group * atoms; + cvm::atom_group * atoms = nullptr; /// Reference coordinates std::vector ref_pos; @@ -728,20 +617,13 @@ protected: public: - /// Constructor - eigenvector(std::string const &conf); + eigenvector(); virtual ~eigenvector() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void calc_force_invgrads(); virtual void calc_Jacobian_derivative(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -754,11 +636,11 @@ class colvar::angle protected: /// Atom group - cvm::atom_group *group1; + cvm::atom_group *group1 = nullptr; /// Atom group - cvm::atom_group *group2; + cvm::atom_group *group2 = nullptr; /// Atom group - cvm::atom_group *group3; + cvm::atom_group *group3 = nullptr; /// Inter site vectors cvm::rvector r21, r23; @@ -770,25 +652,18 @@ protected: /// Compute total force on first site only to avoid unwanted /// coupling to other colvars (see e.g. Ciccotti et al., 2005) /// (or to allow dummy atoms) - bool b_1site_force; + bool b_1site_force = false; public: - /// Initialize by parsing the configuration - angle(std::string const &conf); + angle(); /// \brief Initialize the three groups after three atoms angle(cvm::atom const &a1, cvm::atom const &a2, cvm::atom const &a3); virtual ~angle() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void calc_force_invgrads(); virtual void calc_Jacobian_derivative(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -801,11 +676,11 @@ class colvar::dipole_angle protected: /// Dipole atom group - cvm::atom_group *group1; + cvm::atom_group *group1 = nullptr; /// Atom group - cvm::atom_group *group2; + cvm::atom_group *group2 = nullptr; /// Atom group - cvm::atom_group *group3; + cvm::atom_group *group3 = nullptr; /// Inter site vectors cvm::rvector r21, r23; @@ -817,24 +692,14 @@ protected: /// Compute total force on first site only to avoid unwanted /// coupling to other colvars (see e.g. Ciccotti et al., 2005) /// (or to allow dummy atoms) - bool b_1site_force; + bool b_1site_force = false; public: - /// Initialize by parsing the configuration - dipole_angle (std::string const &conf); - /// \brief Initialize the three groups after three atoms - dipole_angle (cvm::atom const &a1, cvm::atom const &a2, cvm::atom const &a3); dipole_angle(); virtual ~dipole_angle() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force (colvarvalue const &force); - virtual cvm::real dist2 (colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad (colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad (colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -847,45 +712,31 @@ class colvar::dihedral protected: /// Atom group - cvm::atom_group *group1; + cvm::atom_group *group1 = nullptr; /// Atom group - cvm::atom_group *group2; + cvm::atom_group *group2 = nullptr; /// Atom group - cvm::atom_group *group3; + cvm::atom_group *group3 = nullptr; /// Atom group - cvm::atom_group *group4; + cvm::atom_group *group4 = nullptr; /// Inter site vectors cvm::rvector r12, r23, r34; /// \brief Compute total force on first site only to avoid unwanted /// coupling to other colvars (see e.g. Ciccotti et al., 2005) - bool b_1site_force; + bool b_1site_force = false; public: - /// Initialize by parsing the configuration - dihedral(std::string const &conf); /// \brief Initialize the four groups after four atoms dihedral(cvm::atom const &a1, cvm::atom const &a2, cvm::atom const &a3, cvm::atom const &a4); dihedral(); virtual ~dihedral() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void calc_force_invgrads(); virtual void calc_Jacobian_derivative(); - virtual void apply_force(colvarvalue const &force); - - /// Redefined to handle the 2*PI periodicity - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the 2*PI periodicity - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the 2*PI periodicity - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the 2*PI periodicity - virtual void wrap(colvarvalue &x_unwrapped) const; }; @@ -897,46 +748,39 @@ class colvar::coordnum { protected: /// First atom group - cvm::atom_group *group1; + cvm::atom_group *group1 = nullptr; /// Second atom group - cvm::atom_group *group2; + cvm::atom_group *group2 = nullptr; /// \brief "Cutoff" for isotropic calculation (default) cvm::real r0; /// \brief "Cutoff vector" for anisotropic calculation cvm::rvector r0_vec; /// \brief Whether r/r0 or \vec{r}*\vec{1/r0_vec} should be used - bool b_anisotropic; + bool b_anisotropic = false; /// Integer exponent of the function numerator - int en; + int en = 6; /// Integer exponent of the function denominator - int ed; + int ed = 12; /// If true, group2 will be treated as a single atom - bool b_group2_center_only; + bool b_group2_center_only = false; /// Tolerance for the pair list - cvm::real tolerance; + cvm::real tolerance = 0.0; /// Frequency of update of the pair list - int pairlist_freq; + int pairlist_freq = 100; /// Pair list - bool *pairlist; + bool *pairlist = nullptr; public: - coordnum(std::string const &conf); - ~coordnum(); - + coordnum(); + virtual ~coordnum(); + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; enum { ef_null = 0, @@ -981,31 +825,25 @@ class colvar::selfcoordnum protected: /// Selected atoms - cvm::atom_group *group1; + cvm::atom_group *group1 = nullptr; /// \brief "Cutoff" for isotropic calculation (default) cvm::real r0; /// Integer exponent of the function numerator - int en; + int en = 6; /// Integer exponent of the function denominator - int ed; - cvm::real tolerance; - int pairlist_freq; - bool *pairlist; + int ed = 12; + cvm::real tolerance = 0.0; + int pairlist_freq = 100; + + bool *pairlist = nullptr; public: - selfcoordnum(std::string const &conf); + selfcoordnum(); ~selfcoordnum(); + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; /// Main workhorse function template int compute_selfcoordnum(); @@ -1025,25 +863,17 @@ protected: cvm::rvector r0_vec; /// \brief Wheter dist/r0 or \vec{dist}*\vec{1/r0_vec} should ne be /// used - bool b_anisotropic; + bool b_anisotropic = false; /// Integer exponent of the function numerator - int en; + int en = 6; /// Integer exponent of the function denominator - int ed; + int ed = 12; public: - /// Constructor - groupcoordnum(std::string const &conf); + groupcoordnum(); virtual ~groupcoordnum() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -1058,73 +888,22 @@ protected: /// \brief "Cutoff" distance between acceptor and donor cvm::real r0; /// Integer exponent of the function numerator - int en; + int en = 6; /// Integer exponent of the function denominator - int ed; + int ed = 8; public: - h_bond(std::string const &conf); /// Constructor for atoms already allocated h_bond(cvm::atom const &acceptor, cvm::atom const &donor, cvm::real r0, int en, int ed); h_bond(); virtual ~h_bond() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; - -/// \brief Colvar component: alpha helix content of a contiguous -/// segment of 5 or more residues, implemented as a sum of phi/psi -/// dihedral angles and hydrogen bonds (colvarvalue::type_scalar type, -/// range [0:1]) -// class colvar::alpha_dihedrals -// : public colvar::cvc -// { -// protected: - -// /// Alpha-helical reference phi value -// cvm::real phi_ref; - -// /// Alpha-helical reference psi value -// cvm::real psi_ref; - -// /// List of phi dihedral angles -// std::vector phi; - -// /// List of psi dihedral angles -// std::vector psi; - -// /// List of hydrogen bonds -// std::vector hb; - -// public: - -// alpha_dihedrals (std::string const &conf); -// alpha_dihedrals(); -// virtual ~alpha_dihedrals() {} -// virtual void calc_value(); -// virtual void calc_gradients(); -// virtual void apply_force (colvarvalue const &force); -// virtual cvm::real dist2 (colvarvalue const &x1, -// colvarvalue const &x2) const; -// virtual colvarvalue dist2_lgrad (colvarvalue const &x1, -// colvarvalue const &x2) const; -// virtual colvarvalue dist2_rgrad (colvarvalue const &x1, -// colvarvalue const &x2) const; -// }; - - - /// \brief Colvar component: alpha helix content of a contiguous /// segment of 5 or more residues, implemented as a sum of Ca-Ca-Ca /// angles and hydrogen bonds (colvarvalue::type_scalar type, range @@ -1135,10 +914,10 @@ class colvar::alpha_angles protected: /// Reference Calpha-Calpha angle (default: 88 degrees) - cvm::real theta_ref; + cvm::real theta_ref = 88.0; /// Tolerance on the Calpha-Calpha angle - cvm::real theta_tol; + cvm::real theta_tol = 15.0; /// List of Calpha-Calpha angles std::vector theta; @@ -1146,25 +925,28 @@ protected: /// List of hydrogen bonds std::vector hb; - /// Contribution of the hb terms - cvm::real hb_coeff; + /// Contribution of the HB terms + cvm::real hb_coeff = 0.5; + + /// Cutoff for HB + cvm::real r0; + + /// Integer exponent of the HB numerator + int en = 6; + + /// Integer exponent of the HB denominator + int ed = 8; public: - alpha_angles(std::string const &conf); alpha_angles(); virtual ~alpha_angles(); + virtual int init(std::string const &conf); void calc_value(); void calc_gradients(); /// Re-implementation of cvc::collect_gradients() to carry over atomic gradients of sub-cvcs void collect_gradients(std::vector const &atom_ids, std::vector &atomic_gradients); void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -1183,20 +965,14 @@ protected: public: - dihedPC(std::string const &conf); dihedPC(); - virtual ~dihedPC(); - void calc_value(); - void calc_gradients(); + virtual ~dihedPC(); + virtual int init(std::string const &conf); + virtual void calc_value(); + virtual void calc_gradients(); /// Re-implementation of cvc::collect_gradients() to carry over atomic gradients of sub-cvcs - void collect_gradients(std::vector const &atom_ids, std::vector &atomic_gradients); - void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; + virtual void collect_gradients(std::vector const &atom_ids, std::vector &atomic_gradients); + virtual void apply_force(colvarvalue const &force); }; @@ -1211,13 +987,16 @@ class colvar::orientation protected: /// Atom group - cvm::atom_group * atoms; + cvm::atom_group * atoms = nullptr; /// Center of geometry of the group cvm::atom_pos atoms_cog; /// Reference coordinates std::vector ref_pos; + /// Shifted atomic positions + std::vector shifted_pos; + /// Rotation object cvm::rotation rot; @@ -1225,45 +1004,50 @@ protected: /// quaternion, which may be annoying in the colvars trajectory cvm::quaternion ref_quat; + /// Rotation derivative + struct rotation_derivative_impl_; + std::unique_ptr rot_deriv_impl; + public: - orientation(std::string const &conf); orientation(); + virtual ~orientation(); virtual int init(std::string const &conf); - virtual ~orientation() {} virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; + /// Redefined to use quaternion metrics + virtual cvm::real dist2(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to use quaternion metrics + virtual colvarvalue dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to use quaternion metrics + virtual colvarvalue dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to use quaternion metrics + virtual void wrap(colvarvalue &x_unwrapped) const; }; - -/// \brief Colvar component: angle of rotation with respect to a set -/// of reference coordinates (colvarvalue::type_scalar type, range -/// [0:PI)) +/// Colvar component: angle of rotation with respect to a set of reference coordinates +/// (colvarvalue::type_scalar type, range [0:PI)) +/// This is also used to derive all other sub-rotation variables that return a scalar value class colvar::orientation_angle : public colvar::orientation { public: - orientation_angle(std::string const &conf); - virtual int init(std::string const &conf); + orientation_angle(); virtual ~orientation_angle() {} virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; + /// Redefined to use scalar metrics + virtual cvm::real dist2(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to use scalar metrics + virtual colvarvalue dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to use scalar metrics + virtual colvarvalue dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to use scalar metrics + virtual void wrap(colvarvalue &x_unwrapped) const; }; @@ -1272,23 +1056,14 @@ public: /// of reference coordinates (colvarvalue::type_scalar type, range /// [-1:1]) class colvar::orientation_proj - : public colvar::orientation + : public colvar::orientation_angle { public: - orientation_proj(std::string const &conf); orientation_proj(); - virtual int init(std::string const &conf); virtual ~orientation_proj() {} virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -1296,7 +1071,7 @@ public: /// \brief Colvar component: projection of the orientation vector onto /// a predefined axis (colvarvalue::type_scalar type, range [-1:1]) class colvar::tilt - : public colvar::orientation + : public colvar::orientation_proj { protected: @@ -1304,18 +1079,11 @@ protected: public: - tilt(std::string const &conf); - virtual int init(std::string const &conf); + tilt(); virtual ~tilt() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -1323,98 +1091,47 @@ public: /// \brief Colvar component: angle of rotation around a predefined /// axis (colvarvalue::type_scalar type, range [-PI:PI]) class colvar::spin_angle - : public colvar::orientation + : public colvar::tilt { -protected: - - cvm::rvector axis; - public: - spin_angle(std::string const &conf); spin_angle(); - virtual int init(std::string const &conf); virtual ~spin_angle() {} virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - /// Redefined to handle the 2*PI periodicity - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the 2*PI periodicity - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the 2*PI periodicity - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the 2*PI periodicity - virtual void wrap(colvarvalue &x_unwrapped) const; }; class colvar::euler_phi - : public colvar::orientation + : public colvar::orientation_angle { public: - euler_phi(std::string const &conf); euler_phi(); - virtual int init(std::string const &conf); virtual ~euler_phi() {} virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the 2*PI periodicity - virtual void wrap(colvarvalue &x_unwrapped) const; }; class colvar::euler_psi - : public colvar::orientation + : public colvar::orientation_angle { public: - euler_psi(std::string const &conf); euler_psi(); - virtual int init(std::string const &conf); virtual ~euler_psi() {} virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - /// Redefined to handle the 2*PI periodicity - virtual void wrap(colvarvalue &x_unwrapped) const; }; class colvar::euler_theta - : public colvar::orientation + : public colvar::orientation_angle { public: - euler_theta(std::string const &conf); euler_theta(); - virtual int init(std::string const &conf); virtual ~euler_theta() {} virtual void calc_value(); virtual void calc_gradients(); - virtual void apply_force(colvarvalue const &force); - // theta angle is a scalar variable and not periodic - // we need to override the virtual functions from orientation - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -1428,33 +1145,29 @@ class colvar::rmsd protected: /// Atom group - cvm::atom_group *atoms; + cvm::atom_group *atoms = nullptr; /// Reference coordinates (for RMSD calculation only) /// Includes sets with symmetry permutations (n_permutations * n_atoms) std::vector ref_pos; /// Number of permutations of symmetry-related atoms - size_t n_permutations; + size_t n_permutations = 1; /// Index of the permutation yielding the smallest RMSD (0 for identity) - size_t best_perm_index; -public: + size_t best_perm_index = 0; - /// Constructor - rmsd(std::string const &conf); + /// Permutation RMSD input parsing + int init_permutation(std::string const &conf); + +public: + rmsd(); virtual ~rmsd() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void calc_force_invgrads(); virtual void calc_Jacobian_derivative(); - virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -1466,16 +1179,27 @@ class colvar::cartesian { protected: /// Atom group - cvm::atom_group *atoms; + cvm::atom_group *atoms = nullptr; /// Which Cartesian coordinates to include std::vector axes; public: - cartesian(std::string const &conf); cartesian(); virtual ~cartesian() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); + /// Redefined to deal with multiple dimensions + virtual cvm::real dist2(colvarvalue const &x1, + colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual colvarvalue dist2_lgrad(colvarvalue const &x1, + colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual colvarvalue dist2_rgrad(colvarvalue const &x1, + colvarvalue const &x2) const; + /// Redefined to deal with multiple dimensions + virtual void wrap(colvarvalue &x_unwrapped) const; }; @@ -1487,18 +1211,11 @@ class colvar::alch_lambda protected: // No atom groups needed public: - alch_lambda(std::string const &conf); alch_lambda(); virtual ~alch_lambda() {} virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; @@ -1510,58 +1227,38 @@ class colvar::alch_Flambda protected: // No atom groups needed public: - alch_Flambda(std::string const &conf); alch_Flambda(); virtual ~alch_Flambda() {} virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); - virtual cvm::real dist2(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const; - virtual colvarvalue dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const; }; -class colvar::componentDisabled - : public colvar::cvc -{ -public: - componentDisabled(std::string const & /* conf */) { - cvm::error("Error: this component is not enabled in the current build; please see https://colvars.github.io/README-c++11.html"); - } - virtual ~componentDisabled() {} - virtual void calc_value() {} - virtual void calc_gradients() {} - virtual void apply_force(colvarvalue const & /* force */) {} -}; - - - -#if (__cplusplus >= 201103L) class colvar::CartesianBasedPath : public colvar::cvc { protected: + virtual void computeDistanceBetweenReferenceFrames(std::vector& result); virtual void computeDistanceToReferenceFrames(std::vector& result); /// Selected atoms - cvm::atom_group *atoms; + cvm::atom_group *atoms = nullptr; /// Fitting options - bool has_user_defined_fitting; + bool has_user_defined_fitting = false; /// Reference frames std::vector> reference_frames; std::vector> reference_fitting_frames; /// Atom groups for RMSD calculation together with reference frames std::vector comp_atoms; /// Total number of reference frames - size_t total_reference_frames; + size_t total_reference_frames = 0; public: - CartesianBasedPath(std::string const &conf); + CartesianBasedPath(); virtual ~CartesianBasedPath(); + virtual int init(std::string const &conf); virtual void calc_value() = 0; - virtual void apply_force(colvarvalue const &force) = 0; + /// Redefined to raise error because this is an abstract type + virtual void apply_force(colvarvalue const &force); }; /// \brief Colvar component: alternative path collective variable using geometry, variable s @@ -1577,8 +1274,9 @@ protected: virtual void prepareVectors(); virtual void updateDistanceToReferenceFrames(); public: - gspath(std::string const &conf); + gspath(); virtual ~gspath() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); @@ -1599,8 +1297,9 @@ protected: virtual void prepareVectors(); virtual void updateDistanceToReferenceFrames(); public: - gzpath(std::string const &conf); + gzpath(); virtual ~gzpath() {} + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); @@ -1618,11 +1317,23 @@ protected: protected: cvm::real getPolynomialFactorOfCVGradient(size_t i_cv) const; public: - linearCombination(std::string const &conf); + linearCombination(); virtual ~linearCombination(); + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); + /// Redefined to allow arbitrary dimensions + virtual cvm::real dist2(colvarvalue const &x1, + colvarvalue const &x2) const; + /// Redefined to allow arbitrary dimensions + virtual colvarvalue dist2_lgrad(colvarvalue const &x1, + colvarvalue const &x2) const; + /// Redefined to allow arbitrary dimensions + virtual colvarvalue dist2_rgrad(colvarvalue const &x1, + colvarvalue const &x2) const; + /// Redefined to allow arbitrary dimensions + virtual void wrap(colvarvalue &x_unwrapped) const; }; @@ -1631,7 +1342,7 @@ class colvar::customColvar : public colvar::linearCombination { protected: - bool use_custom_function; + bool use_custom_function = false; #ifdef LEPTON /// Vector of evaluators for custom functions using Lepton std::vector value_evaluators; @@ -1641,11 +1352,12 @@ protected: std::vector value_eval_var_refs; std::vector grad_eval_var_refs; /// Unused value that is written to when a variable simplifies out of a Lepton expression - double dev_null; + double dev_null = 0.0; #endif public: - customColvar(std::string const &conf); + customColvar(); virtual ~customColvar(); + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); @@ -1663,17 +1375,27 @@ protected: /// If all sub-cvs use explicit gradients then we also use it bool use_explicit_gradients; /// Total number of reference frames - size_t total_reference_frames; + size_t total_reference_frames = 0; protected: virtual void computeDistanceToReferenceFrames(std::vector& result); /// Helper function to determine the distance between reference frames virtual void computeDistanceBetweenReferenceFrames(std::vector& result) const; cvm::real getPolynomialFactorOfCVGradient(size_t i_cv) const; public: - CVBasedPath(std::string const &conf); + CVBasedPath(); virtual ~CVBasedPath(); + virtual int init(std::string const &conf); virtual void calc_value() = 0; - virtual void apply_force(colvarvalue const &force) = 0; + /// Redefined to raise error because this is an abstract type + virtual void apply_force(colvarvalue const &force); + /// Redefined to use the metric of the returned colvarvalue (defined at runtime) + virtual cvm::real dist2(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to use the metric of the returned colvarvalue (defined at runtime) + virtual colvarvalue dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to use the metric of the returned colvarvalue (defined at runtime) + virtual colvarvalue dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const; + /// Redefined to use the metric of the returned colvarvalue (defined at runtime) + virtual void wrap(colvarvalue &x_unwrapped) const; }; @@ -1688,8 +1410,9 @@ protected: virtual void updateDistanceToReferenceFrames(); virtual void prepareVectors(); public: - gspathCV(std::string const &conf); + gspathCV(); virtual ~gspathCV(); + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); @@ -1704,23 +1427,56 @@ protected: virtual void updateDistanceToReferenceFrames(); virtual void prepareVectors(); public: - gzpathCV(std::string const &conf); + gzpathCV(); virtual ~gzpathCV(); + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); }; +struct ArithmeticPathImpl; +class colvar::aspath + : public colvar::CartesianBasedPath +{ +private: + std::unique_ptr impl_; + friend struct ArithmeticPathImpl; +public: + aspath(); + virtual ~aspath(); + virtual int init(std::string const &conf); + virtual void calc_value(); + virtual void calc_gradients(); + virtual void apply_force(colvarvalue const &force); +}; + +class colvar::azpath + : public colvar::CartesianBasedPath +{ +private: + std::unique_ptr impl_; + friend struct ArithmeticPathImpl; +public: + azpath(); + virtual ~azpath(); + virtual int init(std::string const &conf); + virtual void calc_value(); + virtual void calc_gradients(); + virtual void apply_force(colvarvalue const &force); +}; class colvar::aspathCV - : public colvar::CVBasedPath, public ArithmeticPathCV::ArithmeticPathBase + : public colvar::CVBasedPath { -protected: - virtual void updateDistanceToReferenceFrames(); +private: + std::unique_ptr impl_; + friend struct ArithmeticPathImpl; public: - aspathCV(std::string const &conf); + aspathCV(); virtual ~aspathCV(); + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); @@ -1728,13 +1484,15 @@ public: class colvar::azpathCV - : public colvar::CVBasedPath, public ArithmeticPathCV::ArithmeticPathBase + : public colvar::CVBasedPath { -protected: - virtual void updateDistanceToReferenceFrames(); +private: + std::unique_ptr impl_; + friend struct ArithmeticPathImpl; public: - azpathCV(std::string const &conf); + azpathCV(); virtual ~azpathCV(); + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); @@ -1745,6 +1503,7 @@ namespace neuralnetworkCV { class neuralNetworkCompute; } + class colvar::neuralNetwork : public linearCombination { @@ -1752,89 +1511,27 @@ protected: /// actual computation happens in neuralnetworkCV::neuralNetworkCompute std::unique_ptr nn; /// the index of nn output components - size_t m_output_index; + size_t m_output_index = 0; public: - neuralNetwork(std::string const &conf); + neuralNetwork(); virtual ~neuralNetwork(); + virtual int init(std::string const &conf); virtual void calc_value(); virtual void calc_gradients(); virtual void apply_force(colvarvalue const &force); + /// Redefined to allow arbitrary dimensions + virtual cvm::real dist2(colvarvalue const &x1, + colvarvalue const &x2) const; + /// Redefined to allow arbitrary dimensions + virtual colvarvalue dist2_lgrad(colvarvalue const &x1, + colvarvalue const &x2) const; + /// Redefined to allow arbitrary dimensions + virtual colvarvalue dist2_rgrad(colvarvalue const &x1, + colvarvalue const &x2) const; + /// Redefined to allow arbitrary dimensions + virtual void wrap(colvarvalue &x_unwrapped) const; }; -#else // if the compiler doesn't support C++11 - -class colvar::linearCombination - : public colvar::componentDisabled -{ -public: - linearCombination(std::string const &conf) : componentDisabled(conf) {} -}; - -class colvar::CartesianBasedPath - : public colvar::componentDisabled -{ -public: - CartesianBasedPath(std::string const &conf) : componentDisabled(conf) {} -}; - -class colvar::CVBasedPath - : public colvar::componentDisabled -{ -public: - CVBasedPath(std::string const &conf) : componentDisabled(conf) {} -}; - -class colvar::gspath - : public colvar::componentDisabled -{ -public: - gspath(std::string const &conf) : componentDisabled(conf) {} -}; - -class colvar::gzpath - : public colvar::componentDisabled -{ -public: - gzpath(std::string const &conf) : componentDisabled(conf) {} -}; - -class colvar::gspathCV - : public colvar::componentDisabled -{ -public: - gspathCV(std::string const &conf) : componentDisabled(conf) {} -}; - -class colvar::gzpathCV - : public colvar::componentDisabled -{ -public: - gzpathCV(std::string const &conf) : componentDisabled(conf) {} -}; - -class colvar::aspathCV - : public colvar::componentDisabled -{ -public: - aspathCV(std::string const &conf) : componentDisabled(conf) {} -}; - -class colvar::azpathCV - : public colvar::componentDisabled -{ -public: - azpathCV(std::string const &conf) : componentDisabled(conf) {} -}; - -class colvar::neuralNetwork - : public colvar::componentDisabled -{ -public: - neuralNetwork(std::string const &conf) : componentDisabled(conf) {} -}; - -#endif // C++11 checking - // \brief Colvar component: total value of a scalar map // (usually implemented as a grid by the simulation engine) @@ -1844,7 +1541,6 @@ class colvar::map_total public: map_total(); - map_total(std::string const &conf); virtual ~map_total() {} virtual int init(std::string const &conf); virtual void calc_value(); @@ -1857,13 +1553,13 @@ protected: std::string volmap_name; /// Numeric identifier of the map object (as used by the simulation engine) - int volmap_id; + int volmap_id = -1; /// Index of the map objet in the proxy arrays - int volmap_index; + int volmap_index = -1; /// Group of atoms selected internally (optional) - cvm::atom_group *atoms; + cvm::atom_group *atoms = nullptr; /// Weights assigned to each atom (default: uniform weights) std::vector atom_weights; @@ -1871,36 +1567,4 @@ protected: -// metrics functions for cvc implementations - -// simple definitions of the distance functions; these are useful only -// for optimization (the type check performed in the default -// colvarcomp functions is skipped) - -// definitions assuming the scalar type - -#define simple_scalar_dist_functions(TYPE) \ - \ - \ - cvm::real colvar::TYPE::dist2(colvarvalue const &x1, \ - colvarvalue const &x2) const \ - { \ - return (x1.real_value - x2.real_value)*(x1.real_value - x2.real_value); \ - } \ - \ - \ - colvarvalue colvar::TYPE::dist2_lgrad(colvarvalue const &x1, \ - colvarvalue const &x2) const \ - { \ - return 2.0 * (x1.real_value - x2.real_value); \ - } \ - \ - \ - colvarvalue colvar::TYPE::dist2_rgrad(colvarvalue const &x1, \ - colvarvalue const &x2) const \ - { \ - return this->dist2_lgrad(x2, x1); \ - } \ - - #endif diff --git a/lib/colvars/colvarcomp_alchlambda.cpp b/lib/colvars/colvarcomp_alchlambda.cpp index 9f18bec776..a175ea43e8 100644 --- a/lib/colvars/colvarcomp_alchlambda.cpp +++ b/lib/colvars/colvarcomp_alchlambda.cpp @@ -12,13 +12,11 @@ #include "colvarmodule.h" #include "colvarvalue.h" -#include "colvarparse.h" #include "colvar.h" #include "colvarcomp.h" -colvar::alch_lambda::alch_lambda(std::string const &conf) - : cvc(conf) +colvar::alch_lambda::alch_lambda() { set_function_type("alchLambda"); @@ -56,12 +54,9 @@ void colvar::alch_lambda::apply_force(colvarvalue const & /* force */) cvm::proxy->set_alch_lambda(x.real_value); } -simple_scalar_dist_functions(alch_lambda) - -colvar::alch_Flambda::alch_Flambda(std::string const &conf) - : cvc(conf) +colvar::alch_Flambda::alch_Flambda() { set_function_type("alch_Flambda"); @@ -103,4 +98,3 @@ void colvar::alch_Flambda::apply_force(colvarvalue const &force) cvm::proxy->indirect_lambda_biasing_force += d2E_dlambda2 * f; } -simple_scalar_dist_functions(alch_Flambda) diff --git a/lib/colvars/colvarcomp_angles.cpp b/lib/colvars/colvarcomp_angles.cpp index d3f1bfd9aa..56894e9f5c 100644 --- a/lib/colvars/colvarcomp_angles.cpp +++ b/lib/colvars/colvarcomp_angles.cpp @@ -12,8 +12,7 @@ #include "colvarcomp.h" -colvar::angle::angle(std::string const &conf) - : cvc(conf) +colvar::angle::angle() { set_function_type("angle"); init_as_angle(); @@ -21,26 +20,25 @@ colvar::angle::angle(std::string const &conf) provide(f_cvc_inv_gradient); provide(f_cvc_Jacobian); enable(f_cvc_com_based); +} + + +int colvar::angle::init(std::string const &conf) +{ + int error_code = cvc::init(conf); group1 = parse_group(conf, "group1"); group2 = parse_group(conf, "group2"); group3 = parse_group(conf, "group3"); - init_total_force_params(conf); + error_code |= init_total_force_params(conf); + + return error_code; } -colvar::angle::angle(cvm::atom const &a1, - cvm::atom const &a2, - cvm::atom const &a3) +colvar::angle::angle(cvm::atom const &a1, cvm::atom const &a2, cvm::atom const &a3) : angle() { - set_function_type("angle"); - init_as_angle(); - - provide(f_cvc_inv_gradient); - provide(f_cvc_Jacobian); - enable(f_cvc_com_based); - group1 = new cvm::atom_group(std::vector(1, a1)); group2 = new cvm::atom_group(std::vector(1, a2)); group3 = new cvm::atom_group(std::vector(1, a3)); @@ -120,52 +118,6 @@ void colvar::angle::calc_Jacobian_derivative() } -void colvar::angle::apply_force(colvarvalue const &force) -{ - if (!group1->noforce) - group1->apply_colvar_force(force.real_value); - - if (!group2->noforce) - group2->apply_colvar_force(force.real_value); - - if (!group3->noforce) - group3->apply_colvar_force(force.real_value); -} - - -simple_scalar_dist_functions(angle) - - - -colvar::dipole_angle::dipole_angle(std::string const &conf) - : cvc(conf) -{ - set_function_type("dipoleAngle"); - init_as_angle(); - - group1 = parse_group(conf, "group1"); - group2 = parse_group(conf, "group2"); - group3 = parse_group(conf, "group3"); - - init_total_force_params(conf); -} - - -colvar::dipole_angle::dipole_angle(cvm::atom const &a1, - cvm::atom const &a2, - cvm::atom const &a3) -{ - set_function_type("dipoleAngle"); - init_as_angle(); - - group1 = new cvm::atom_group(std::vector(1, a1)); - group2 = new cvm::atom_group(std::vector(1, a2)); - group3 = new cvm::atom_group(std::vector(1, a3)); - register_atom_group(group1); - register_atom_group(group2); - register_atom_group(group3); -} - colvar::dipole_angle::dipole_angle() { @@ -174,6 +126,19 @@ colvar::dipole_angle::dipole_angle() } +int colvar::dipole_angle::init(std::string const &conf) +{ + int error_code = cvc::init(conf); + + group1 = parse_group(conf, "group1"); + group2 = parse_group(conf, "group2"); + group3 = parse_group(conf, "group3"); + + error_code |= init_total_force_params(conf); + return error_code; +} + + void colvar::dipole_angle::calc_value() { cvm::atom_pos const g1_pos = group1->center_of_mass(); @@ -229,52 +194,35 @@ void colvar::dipole_angle::calc_gradients() } -void colvar::dipole_angle::apply_force(colvarvalue const &force) -{ - if (!group1->noforce) - group1->apply_colvar_force(force.real_value); - if (!group2->noforce) - group2->apply_colvar_force(force.real_value); - - if (!group3->noforce) - group3->apply_colvar_force(force.real_value); -} - - -simple_scalar_dist_functions(dipole_angle) - - - -colvar::dihedral::dihedral(std::string const &conf) - : cvc(conf) +colvar::dihedral::dihedral() { set_function_type("dihedral"); init_as_periodic_angle(); provide(f_cvc_inv_gradient); provide(f_cvc_Jacobian); enable(f_cvc_com_based); +} + + +int colvar::dihedral::init(std::string const &conf) +{ + int error_code = cvc::init(conf); group1 = parse_group(conf, "group1"); group2 = parse_group(conf, "group2"); group3 = parse_group(conf, "group3"); group4 = parse_group(conf, "group4"); - init_total_force_params(conf); + error_code |= init_total_force_params(conf); + return error_code; } -colvar::dihedral::dihedral(cvm::atom const &a1, - cvm::atom const &a2, - cvm::atom const &a3, +colvar::dihedral::dihedral(cvm::atom const &a1, cvm::atom const &a2, cvm::atom const &a3, cvm::atom const &a4) + : dihedral() { - set_function_type("dihedral"); - init_as_periodic_angle(); - provide(f_cvc_inv_gradient); - provide(f_cvc_Jacobian); - enable(f_cvc_com_based); - b_1site_force = false; group1 = new cvm::atom_group(std::vector(1, a1)); @@ -288,16 +236,6 @@ colvar::dihedral::dihedral(cvm::atom const &a1, } -colvar::dihedral::dihedral() -{ - set_function_type("dihedral"); - init_as_periodic_angle(); - enable(f_cvc_periodic); - provide(f_cvc_inv_gradient); - provide(f_cvc_Jacobian); -} - - void colvar::dihedral::calc_value() { cvm::atom_pos const g1_pos = group1->center_of_mass(); @@ -323,7 +261,7 @@ void colvar::dihedral::calc_value() cvm::real const sin_phi = n1 * r34 * r23.norm(); x.real_value = (180.0/PI) * cvm::atan2(sin_phi, cos_phi); - this->wrap(x); + wrap(x); } @@ -349,7 +287,7 @@ void colvar::dihedral::calc_gradients() A *= rA; cvm::rvector const dcosdA = rA*(cos_phi*A-B); cvm::rvector const dcosdB = rB*(cos_phi*B-A); - rA = 1.0; + // rA = 1.0; cvm::real const K = (1.0/sin_phi) * (180.0/PI); @@ -363,7 +301,7 @@ void colvar::dihedral::calc_gradients() C *= rC; cvm::rvector const dsindC = rC*(sin_phi*C-B); cvm::rvector const dsindB = rB*(sin_phi*B-C); - rC = 1.0; + // rC = 1.0; cvm::real const K = (-1.0/cos_phi) * (180.0/PI); @@ -439,81 +377,22 @@ void colvar::dihedral::calc_Jacobian_derivative() } -void colvar::dihedral::apply_force(colvarvalue const &force) -{ - if (!group1->noforce) - group1->apply_colvar_force(force.real_value); - - if (!group2->noforce) - group2->apply_colvar_force(force.real_value); - - if (!group3->noforce) - group3->apply_colvar_force(force.real_value); - - if (!group4->noforce) - group4->apply_colvar_force(force.real_value); -} - - -// metrics functions for cvc implementations with a periodicity - -cvm::real colvar::dihedral::dist2(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return diff * diff; -} - - -colvarvalue colvar::dihedral::dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return 2.0 * diff; -} - - -colvarvalue colvar::dihedral::dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return (-2.0) * diff; -} - - -void colvar::dihedral::wrap(colvarvalue &x_unwrapped) const -{ - if ((x_unwrapped.real_value - wrap_center) >= 180.0) { - x_unwrapped.real_value -= 360.0; - return; - } - - if ((x_unwrapped.real_value - wrap_center) < -180.0) { - x_unwrapped.real_value += 360.0; - return; - } -} - - -colvar::polar_theta::polar_theta(std::string const &conf) - : cvc(conf) -{ - set_function_type("polarTheta"); - enable(f_cvc_com_based); - - atoms = parse_group(conf, "atoms"); - init_total_force_params(conf); - x.type(colvarvalue::type_scalar); -} - colvar::polar_theta::polar_theta() { + r = theta = phi = 0.0; set_function_type("polarTheta"); - x.type(colvarvalue::type_scalar); + enable(f_cvc_com_based); + init_as_angle(); +} + + +int colvar::polar_theta::init(std::string const &conf) +{ + int error_code = cvc::init(conf); + atoms = parse_group(conf, "atoms"); + error_code |= init_total_force_params(conf); + return error_code; } @@ -540,35 +419,25 @@ void colvar::polar_theta::calc_gradients() } -void colvar::polar_theta::apply_force(colvarvalue const &force) -{ - if (!atoms->noforce) - atoms->apply_colvar_force(force.real_value); -} - - -simple_scalar_dist_functions(polar_theta) - - -colvar::polar_phi::polar_phi(std::string const &conf) - : cvc(conf) -{ - set_function_type("polarPhi"); - init_as_periodic_angle(); - enable(f_cvc_com_based); - - atoms = parse_group(conf, "atoms"); - init_total_force_params(conf); -} - colvar::polar_phi::polar_phi() { + r = theta = phi = 0.0; set_function_type("polarPhi"); + enable(f_cvc_com_based); init_as_periodic_angle(); } +int colvar::polar_phi::init(std::string const &conf) +{ + int error_code = cvc::init(conf); + atoms = parse_group(conf, "atoms"); + error_code |= init_total_force_params(conf); + return error_code; +} + + void colvar::polar_phi::calc_value() { cvm::rvector pos = atoms->center_of_mass(); @@ -587,55 +456,3 @@ void colvar::polar_phi::calc_gradients() (180.0/PI) * cvm::cos(phi) / (r*cvm::sin(theta)), 0.)); } - - -void colvar::polar_phi::apply_force(colvarvalue const &force) -{ - if (!atoms->noforce) - atoms->apply_colvar_force(force.real_value); -} - - -// Same as dihedral, for polar_phi - -cvm::real colvar::polar_phi::dist2(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return diff * diff; -} - - -colvarvalue colvar::polar_phi::dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return 2.0 * diff; -} - - -colvarvalue colvar::polar_phi::dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return (-2.0) * diff; -} - - -void colvar::polar_phi::wrap(colvarvalue &x_unwrapped) const -{ - if ((x_unwrapped.real_value - wrap_center) >= 180.0) { - x_unwrapped.real_value -= 360.0; - return; - } - - if ((x_unwrapped.real_value - wrap_center) < -180.0) { - x_unwrapped.real_value += 360.0; - return; - } - - return; -} diff --git a/lib/colvars/colvarcomp_apath.cpp b/lib/colvars/colvarcomp_apath.cpp index ab759e9dea..9e8256957d 100644 --- a/lib/colvars/colvarcomp_apath.cpp +++ b/lib/colvars/colvarcomp_apath.cpp @@ -1,78 +1,312 @@ -#if (__cplusplus >= 201103L) +// -*- c++ -*- + +// This file is part of the Collective Variables module (Colvars). +// The original version of Colvars and its updates are located at: +// https://github.com/Colvars/colvars +// Please update all Colvars source files before making any changes. +// If you wish to distribute your changes, please submit them to the +// Colvars repository at GitHub. -#include #include #include -#include +#include #include +#include -#include "colvarmodule.h" #include "colvarvalue.h" -#include "colvarparse.h" #include "colvar.h" #include "colvarcomp.h" +#include "colvar_arithmeticpath.h" -colvar::aspathCV::aspathCV(std::string const &conf): CVBasedPath(conf) { + +struct ArithmeticPathImpl: public ArithmeticPathCV::ArithmeticPathBase { + std::vector> frame_element_distances; + std::vector> dsdx; + std::vector> dzdx; + template + void updateCartesianDistanceToReferenceFrames(T* obj) { + for (size_t i_frame = 0; i_frame < obj->reference_frames.size(); ++i_frame) { + for (size_t i_atom = 0; i_atom < obj->atoms->size(); ++i_atom) { + frame_element_distances[i_frame][i_atom] = (*(obj->comp_atoms[i_frame]))[i_atom].pos - obj->reference_frames[i_frame][i_atom]; + } + } + } + template + void updateCVDistanceToReferenceFrames(T* obj) { + for (size_t i_cv = 0; i_cv < obj->cv.size(); ++i_cv) { + obj->cv[i_cv]->calc_value(); + } + for (size_t i_frame = 0; i_frame < obj->ref_cv.size(); ++i_frame) { + for (size_t i_cv = 0; i_cv < obj->cv.size(); ++i_cv) { + colvarvalue ref_cv_value(obj->ref_cv[i_frame][i_cv]); + colvarvalue current_cv_value(obj->cv[i_cv]->value()); + if (current_cv_value.type() == colvarvalue::type_scalar) { + frame_element_distances[i_frame][i_cv] = 0.5 * obj->cv[i_cv]->dist2_lgrad(obj->cv[i_cv]->sup_coeff * (cvm::pow(current_cv_value.real_value, obj->cv[i_cv]->sup_np)), ref_cv_value.real_value); + } else { + frame_element_distances[i_frame][i_cv] = 0.5 * obj->cv[i_cv]->dist2_lgrad(obj->cv[i_cv]->sup_coeff * current_cv_value, ref_cv_value); + } + } + } + } + ArithmeticPathImpl(size_t p_num_elements, size_t p_total_frames, cvm::real p_lambda, const std::vector& p_weights) { + ArithmeticPathCV::ArithmeticPathBase::initialize(p_num_elements, p_total_frames, p_lambda, p_weights); + frame_element_distances.resize(p_total_frames, std::vector(p_num_elements, colvarvalue(colvarvalue::Type::type_notset))); + dsdx.resize(p_total_frames, std::vector(p_num_elements, colvarvalue(colvarvalue::Type::type_notset))); + dzdx.resize(p_total_frames, std::vector(p_num_elements, colvarvalue(colvarvalue::Type::type_notset))); + } + cvm::real get_lambda() const {return lambda;} + cvm::real compute_s() { + cvm::real s; + computeValue(frame_element_distances, &s, nullptr); + return s; + } + cvm::real compute_z() { + cvm::real z; + computeValue(frame_element_distances, nullptr, &z); + return z; + } + void compute_s_derivatives() { + computeDerivatives(frame_element_distances, &dsdx, nullptr); + } + void compute_z_derivatives() { + computeDerivatives(frame_element_distances, nullptr, &dzdx); + } + // for debug gradients of implicit sub CVs + template + colvarvalue compute_s_analytical_derivative_ij(size_t i, size_t j, cvm::real eps, T* obj) const { + ArithmeticPathImpl tmp_left(*this), tmp_right(*this); + const size_t value_size = frame_element_distances[i][j].size(); + colvarvalue result(frame_element_distances[i][j].type()); + colvarvalue ref_cv_value(obj->ref_cv[i][j]); + for (size_t k = 0; k < value_size; ++k) { + // get the current CV value + colvarvalue current_cv_value(obj->cv[j]->value()); + // save the old values in frame element distance matrices + const auto saved_left = tmp_left.frame_element_distances[i][j][k]; + const auto saved_right = tmp_right.frame_element_distances[i][j][k]; + // update frame element distance matrices + if (current_cv_value.type() == colvarvalue::type_scalar) { + tmp_left.frame_element_distances[i][j] = 0.5 * obj->cv[j]->dist2_lgrad(obj->cv[j]->sup_coeff * (cvm::pow(current_cv_value.real_value - eps, obj->cv[j]->sup_np)), ref_cv_value.real_value); + tmp_right.frame_element_distances[i][j] = 0.5 * obj->cv[j]->dist2_lgrad(obj->cv[j]->sup_coeff * (cvm::pow(current_cv_value.real_value + eps, obj->cv[j]->sup_np)), ref_cv_value.real_value); + } else { + current_cv_value[k] -= eps; + tmp_left.frame_element_distances[i][j] = 0.5 * obj->cv[j]->dist2_lgrad(obj->cv[j]->sup_coeff * current_cv_value, ref_cv_value); + current_cv_value[k] += eps + eps; + tmp_right.frame_element_distances[i][j] = 0.5 * obj->cv[j]->dist2_lgrad(obj->cv[j]->sup_coeff * current_cv_value, ref_cv_value); + } + const cvm::real s_left = tmp_left.compute_s(); + const cvm::real s_right = tmp_right.compute_s(); + result[k] = (s_right - s_left) / (2.0 * eps); + tmp_left.frame_element_distances[i][j][k] = saved_left; + tmp_right.frame_element_distances[i][j][k] = saved_right; + } + return result; + } + template + colvarvalue compute_z_analytical_derivative_ij(size_t i, size_t j, cvm::real eps, T* obj) const { + ArithmeticPathImpl tmp_left(*this), tmp_right(*this); + const size_t value_size = frame_element_distances[i][j].size(); + colvarvalue result(frame_element_distances[i][j].type()); + colvarvalue ref_cv_value(obj->ref_cv[i][j]); + for (size_t k = 0; k < value_size; ++k) { + // get the current CV value + colvarvalue current_cv_value(obj->cv[j]->value()); + // save the old values in frame element distance matrices + const auto saved_left = tmp_left.frame_element_distances[i][j][k]; + const auto saved_right = tmp_right.frame_element_distances[i][j][k]; + // update frame element distance matrices + if (current_cv_value.type() == colvarvalue::type_scalar) { + tmp_left.frame_element_distances[i][j] = 0.5 * obj->cv[j]->dist2_lgrad(obj->cv[j]->sup_coeff * (cvm::pow(current_cv_value.real_value - eps, obj->cv[j]->sup_np)), ref_cv_value.real_value); + tmp_right.frame_element_distances[i][j] = 0.5 * obj->cv[j]->dist2_lgrad(obj->cv[j]->sup_coeff * (cvm::pow(current_cv_value.real_value + eps, obj->cv[j]->sup_np)), ref_cv_value.real_value); + } else { + current_cv_value[k] -= eps; + tmp_left.frame_element_distances[i][j] = 0.5 * obj->cv[j]->dist2_lgrad(obj->cv[j]->sup_coeff * current_cv_value, ref_cv_value); + current_cv_value[k] += eps + eps; + tmp_right.frame_element_distances[i][j] = 0.5 * obj->cv[j]->dist2_lgrad(obj->cv[j]->sup_coeff * current_cv_value, ref_cv_value); + } + const cvm::real z_left = tmp_left.compute_z(); + const cvm::real z_right = tmp_right.compute_z(); + result[k] = (z_right - z_left) / (2.0 * eps); + tmp_left.frame_element_distances[i][j][k] = saved_left; + tmp_right.frame_element_distances[i][j][k] = saved_right; + } + return result; + } +}; + +colvar::aspath::aspath() +{ + set_function_type("aspath"); + x.type(colvarvalue::type_scalar); +} + + +int colvar::aspath::init(std::string const &conf) +{ + int error_code = CartesianBasedPath::init(conf); + if (error_code != COLVARS_OK) return error_code; + cvm::log(std::string("Total number of frames: ") + cvm::to_str(total_reference_frames) + std::string("\n")); + cvm::real p_lambda; + get_keyval(conf, "lambda", p_lambda, -1.0); + const size_t num_atoms = atoms->size(); + std::vector p_weights(num_atoms, std::sqrt(1.0 / num_atoms)); + // ArithmeticPathCV::ArithmeticPathBase::initialize(num_atoms, total_reference_frames, p_lambda, reference_frames[0], p_weights); + if (impl_) impl_.reset(); + impl_ = std::unique_ptr(new ArithmeticPathImpl(num_atoms, total_reference_frames, p_lambda, p_weights)); + cvm::log(std::string("Lambda is ") + cvm::to_str(impl_->get_lambda()) + std::string("\n")); + return error_code; +} + +colvar::aspath::~aspath() {} + +void colvar::aspath::calc_value() { + if (impl_->get_lambda() < 0) { + // this implies that the user may not set a valid lambda value + // so recompute it by the suggested value in Parrinello's paper + cvm::log("A non-positive value of lambda is detected, which implies that it may not set in the configuration.\n"); + cvm::log("This component (aspath) will recompute a value for lambda following the suggestion in the origin paper.\n"); + std::vector rmsd_between_refs(total_reference_frames - 1, 0.0); + computeDistanceBetweenReferenceFrames(rmsd_between_refs); + impl_->reComputeLambda(rmsd_between_refs); + cvm::log("Ok, the value of lambda is updated to " + cvm::to_str(impl_->get_lambda())); + } + impl_->updateCartesianDistanceToReferenceFrames(this); + x = impl_->compute_s(); +} + +void colvar::aspath::calc_gradients() { + impl_->compute_s_derivatives(); + for (size_t i_frame = 0; i_frame < reference_frames.size(); ++i_frame) { + for (size_t i_atom = 0; i_atom < atoms->size(); ++i_atom) { + (*(comp_atoms[i_frame]))[i_atom].grad += impl_->dsdx[i_frame][i_atom]; + } + } +} + +void colvar::aspath::apply_force(colvarvalue const &force) { + cvm::real const &F = force.real_value; + for (size_t i_frame = 0; i_frame < reference_frames.size(); ++i_frame) { + (*(comp_atoms[i_frame])).apply_colvar_force(F); + } +} + +colvar::azpath::azpath() +{ + set_function_type("azpath"); + x.type(colvarvalue::type_scalar); +} + +int colvar::azpath::init(std::string const &conf) +{ + int error_code = CartesianBasedPath::init(conf); + if (error_code != COLVARS_OK) return error_code; + cvm::log(std::string("Total number of frames: ") + cvm::to_str(total_reference_frames) + std::string("\n")); + x.type(colvarvalue::type_scalar); + cvm::real p_lambda; + get_keyval(conf, "lambda", p_lambda, -1.0); + const size_t num_atoms = atoms->size(); + std::vector p_weights(num_atoms, std::sqrt(1.0 / num_atoms)); + if (impl_) impl_.reset(); + impl_ = std::unique_ptr(new ArithmeticPathImpl(num_atoms, total_reference_frames, p_lambda, p_weights)); + cvm::log(std::string("Lambda is ") + cvm::to_str(impl_->get_lambda()) + std::string("\n")); + return error_code; +} + +colvar::azpath::~azpath() {} + +void colvar::azpath::calc_value() { + if (impl_->get_lambda() < 0) { + // this implies that the user may not set a valid lambda value + // so recompute it by the suggested value in Parrinello's paper + cvm::log("A non-positive value of lambda is detected, which implies that it may not set in the configuration.\n"); + cvm::log("This component (azpath) will recompute a value for lambda following the suggestion in the origin paper.\n"); + std::vector rmsd_between_refs(total_reference_frames - 1, 0.0); + computeDistanceBetweenReferenceFrames(rmsd_between_refs); + impl_->reComputeLambda(rmsd_between_refs); + cvm::log("Ok, the value of lambda is updated to " + cvm::to_str(impl_->get_lambda())); + } + impl_->updateCartesianDistanceToReferenceFrames(this); + x = impl_->compute_z(); +} + +void colvar::azpath::calc_gradients() { + impl_->compute_z_derivatives(); + for (size_t i_frame = 0; i_frame < reference_frames.size(); ++i_frame) { + for (size_t i_atom = 0; i_atom < atoms->size(); ++i_atom) { + (*(comp_atoms[i_frame]))[i_atom].grad += impl_->dzdx[i_frame][i_atom]; + } + } +} + +void colvar::azpath::apply_force(colvarvalue const &force) { + cvm::real const &F = force.real_value; + for (size_t i_frame = 0; i_frame < reference_frames.size(); ++i_frame) { + (*(comp_atoms[i_frame])).apply_colvar_force(F); + } +} + +colvar::aspathCV::aspathCV() +{ set_function_type("aspathCV"); + x.type(colvarvalue::type_scalar); +} + +int colvar::aspathCV::init(std::string const &conf) +{ + int error_code = CVBasedPath::init(conf); + if (error_code != COLVARS_OK) return error_code; cvm::log(std::string("Total number of frames: ") + cvm::to_str(total_reference_frames) + std::string("\n")); std::vector p_weights(cv.size(), 1.0); get_keyval(conf, "weights", p_weights, std::vector(cv.size(), 1.0)); - x.type(colvarvalue::type_scalar); use_explicit_gradients = true; cvm::real p_lambda; get_keyval(conf, "lambda", p_lambda, -1.0); - ArithmeticPathCV::ArithmeticPathBase::initialize(cv.size(), total_reference_frames, p_lambda, ref_cv[0], p_weights); - cvm::log(std::string("Lambda is ") + cvm::to_str(lambda) + std::string("\n")); + if (impl_) impl_.reset(); + impl_ = std::unique_ptr(new ArithmeticPathImpl(cv.size(), total_reference_frames, p_lambda, p_weights)); + cvm::log(std::string("Lambda is ") + cvm::to_str(impl_->get_lambda()) + std::string("\n")); for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { if (!cv[i_cv]->is_enabled(f_cvc_explicit_gradient)) { use_explicit_gradients = false; } - cvm::log(std::string("The weight of CV ") + cvm::to_str(i_cv) + std::string(" is ") + cvm::to_str(weights[i_cv]) + std::string("\n")); + cvm::log(std::string("The weight of CV ") + cvm::to_str(i_cv) + std::string(" is ") + cvm::to_str(p_weights[i_cv]) + std::string("\n")); } + return error_code; } -void colvar::aspathCV::updateDistanceToReferenceFrames() { - for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { - cv[i_cv]->calc_value(); - } - for (size_t i_frame = 0; i_frame < ref_cv.size(); ++i_frame) { - for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { - colvarvalue ref_cv_value(ref_cv[i_frame][i_cv]); - colvarvalue current_cv_value(cv[i_cv]->value()); - if (current_cv_value.type() == colvarvalue::type_scalar) { - frame_element_distances[i_frame][i_cv] = 0.5 * cv[i_cv]->dist2_lgrad(cv[i_cv]->sup_coeff * (cvm::pow(current_cv_value.real_value, cv[i_cv]->sup_np)), ref_cv_value.real_value); - } else { - frame_element_distances[i_frame][i_cv] = 0.5 * cv[i_cv]->dist2_lgrad(cv[i_cv]->sup_coeff * current_cv_value, ref_cv_value); - } - } - } -} +colvar::aspathCV::~aspathCV() {} void colvar::aspathCV::calc_value() { - if (lambda < 0) { + if (impl_->get_lambda() < 0) { // this implies that the user may not set a valid lambda value // so recompute it by the suggested value in Parrinello's paper cvm::log("A non-positive value of lambda is detected, which implies that it may not set in the configuration.\n"); cvm::log("This component (aspathCV) will recompute a value for lambda following the suggestion in the origin paper.\n"); std::vector rmsd_between_refs(total_reference_frames - 1, 0.0); computeDistanceBetweenReferenceFrames(rmsd_between_refs); - reComputeLambda(rmsd_between_refs); - cvm::log("Ok, the value of lambda is updated to " + cvm::to_str(lambda)); + impl_->reComputeLambda(rmsd_between_refs); + cvm::log("Ok, the value of lambda is updated to " + cvm::to_str(impl_->get_lambda())); } - computeValue(); - x = s; + impl_->updateCVDistanceToReferenceFrames(this); + x = impl_->compute_s(); } void colvar::aspathCV::calc_gradients() { - computeDerivatives(); + impl_->compute_s_derivatives(); for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { cv[i_cv]->calc_gradients(); if (cv[i_cv]->is_enabled(f_cvc_explicit_gradient)) { cvm::real factor_polynomial = getPolynomialFactorOfCVGradient(i_cv); + // compute the gradient (grad) with respect to the i-th CV + colvarvalue grad(cv[i_cv]->value().type()); + // sum up derivatives with respect to all frames + for (size_t m_frame = 0; m_frame < impl_->dsdx.size(); ++m_frame) { + // dsdx is the derivative of s with respect to the m-th frame + grad += impl_->dsdx[m_frame][i_cv]; + } for (size_t j_elem = 0; j_elem < cv[i_cv]->value().size(); ++j_elem) { for (size_t k_ag = 0 ; k_ag < cv[i_cv]->atom_groups.size(); ++k_ag) { for (size_t l_atom = 0; l_atom < (cv[i_cv]->atom_groups)[k_ag]->size(); ++l_atom) { - (*(cv[i_cv]->atom_groups)[k_ag])[l_atom].grad = dsdx[i_cv][j_elem] * factor_polynomial * (*(cv[i_cv]->atom_groups)[k_ag])[l_atom].grad; + (*(cv[i_cv]->atom_groups)[k_ag])[l_atom].grad = grad[j_elem] * factor_polynomial * (*(cv[i_cv]->atom_groups)[k_ag])[l_atom].grad; } } } @@ -88,97 +322,137 @@ void colvar::aspathCV::apply_force(colvarvalue const &force) { } } else { cvm::real factor_polynomial = getPolynomialFactorOfCVGradient(i_cv); - colvarvalue cv_force = dsdx[i_cv] * force.real_value * factor_polynomial; - cv[i_cv]->apply_force(cv_force); - } - } -} - -colvar::aspathCV::~aspathCV() {} - -colvar::azpathCV::azpathCV(std::string const &conf): CVBasedPath(conf) { - set_function_type("azpathCV"); - cvm::log(std::string("Total number of frames: ") + cvm::to_str(total_reference_frames) + std::string("\n")); - std::vector p_weights(cv.size(), 1.0); - get_keyval(conf, "weights", p_weights, std::vector(cv.size(), 1.0)); - x.type(colvarvalue::type_scalar); - use_explicit_gradients = true; - cvm::real p_lambda; - get_keyval(conf, "lambda", p_lambda, -1.0); - ArithmeticPathCV::ArithmeticPathBase::initialize(cv.size(), total_reference_frames, p_lambda, ref_cv[0], p_weights); - cvm::log(std::string("Lambda is ") + cvm::to_str(lambda) + std::string("\n")); - for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { - if (!cv[i_cv]->is_enabled(f_cvc_explicit_gradient)) { - use_explicit_gradients = false; - } - cvm::log(std::string("The weight of CV ") + cvm::to_str(i_cv) + std::string(" is ") + cvm::to_str(weights[i_cv]) + std::string("\n")); - } -} - -void colvar::azpathCV::updateDistanceToReferenceFrames() { - for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { - cv[i_cv]->calc_value(); - } - for (size_t i_frame = 0; i_frame < ref_cv.size(); ++i_frame) { - for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { - colvarvalue ref_cv_value(ref_cv[i_frame][i_cv]); - colvarvalue current_cv_value(cv[i_cv]->value()); - if (current_cv_value.type() == colvarvalue::type_scalar) { - frame_element_distances[i_frame][i_cv] = 0.5 * cv[i_cv]->dist2_lgrad(cv[i_cv]->sup_coeff * (cvm::pow(current_cv_value.real_value, cv[i_cv]->sup_np)), ref_cv_value.real_value); - } else { - frame_element_distances[i_frame][i_cv] = 0.5 * cv[i_cv]->dist2_lgrad(cv[i_cv]->sup_coeff * current_cv_value, ref_cv_value); + // compute the gradient (grad) with respect to the i-th CV + colvarvalue grad(cv[i_cv]->value().type()); + for (size_t m_frame = 0; m_frame < impl_->dsdx.size(); ++m_frame) { + // dsdx is the derivative of s with respect to the m-th frame + grad += impl_->dsdx[m_frame][i_cv]; + } + grad *= factor_polynomial; + cv[i_cv]->apply_force(force.real_value * grad); + // try my best to debug gradients even if the sub-CVs do not have explicit gradients + if (is_enabled(f_cvc_debug_gradient)) { + cvm::log("Debugging gradients for " + description + + " with respect to sub-CV " + cv[i_cv]->description + + ", which has no explicit gradient with respect to its own input(s)"); + colvarvalue analytical_grad(cv[i_cv]->value().type()); + for (size_t m_frame = 0; m_frame < impl_->dsdx.size(); ++m_frame) { + analytical_grad += impl_->compute_s_analytical_derivative_ij( + m_frame, i_cv, cvm::debug_gradients_step_size, this); + } + cvm::log("dx(actual) = "+cvm::to_str(analytical_grad, 21, 14)+"\n"); + cvm::log("dx(interp) = "+cvm::to_str(grad, 21, 14)+"\n"); + cvm::log("|dx(actual) - dx(interp)|/|dx(actual)| = "+ + cvm::to_str((analytical_grad - grad).norm() / + (analytical_grad).norm(), 12, 5)+"\n"); } } } } +colvar::azpathCV::azpathCV() +{ + set_function_type("azpathCV"); + x.type(colvarvalue::type_scalar); +} + +int colvar::azpathCV::init(std::string const &conf) +{ + int error_code = CVBasedPath::init(conf); + if (error_code != COLVARS_OK) return error_code; + cvm::log(std::string("Total number of frames: ") + cvm::to_str(total_reference_frames) + std::string("\n")); + std::vector p_weights(cv.size(), 1.0); + get_keyval(conf, "weights", p_weights, std::vector(cv.size(), 1.0)); + use_explicit_gradients = true; + cvm::real p_lambda; + get_keyval(conf, "lambda", p_lambda, -1.0); + if (impl_) impl_.reset(); + impl_ = std::unique_ptr(new ArithmeticPathImpl(cv.size(), total_reference_frames, p_lambda, p_weights)); + cvm::log(std::string("Lambda is ") + cvm::to_str(impl_->get_lambda()) + std::string("\n")); + for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { + if (!cv[i_cv]->is_enabled(f_cvc_explicit_gradient)) { + use_explicit_gradients = false; + } + cvm::log(std::string("The weight of CV ") + cvm::to_str(i_cv) + std::string(" is ") + cvm::to_str(p_weights[i_cv]) + std::string("\n")); + } + return error_code; +} + void colvar::azpathCV::calc_value() { - if (lambda < 0) { + if (impl_->get_lambda() < 0) { // this implies that the user may not set a valid lambda value // so recompute it by the suggested value in Parrinello's paper cvm::log("A non-positive value of lambda is detected, which implies that it may not set in the configuration.\n"); cvm::log("This component (azpathCV) will recompute a value for lambda following the suggestion in the origin paper.\n"); std::vector rmsd_between_refs(total_reference_frames - 1, 0.0); computeDistanceBetweenReferenceFrames(rmsd_between_refs); - reComputeLambda(rmsd_between_refs); - cvm::log("Ok, the value of lambda is updated to " + cvm::to_str(lambda)); + impl_->reComputeLambda(rmsd_between_refs); + cvm::log("Ok, the value of lambda is updated to " + cvm::to_str(impl_->get_lambda())); } - computeValue(); - x = z; + impl_->updateCVDistanceToReferenceFrames(this); + x = impl_->compute_z(); } void colvar::azpathCV::calc_gradients() { - computeDerivatives(); + impl_->compute_z_derivatives(); for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { cv[i_cv]->calc_gradients(); if (cv[i_cv]->is_enabled(f_cvc_explicit_gradient)) { cvm::real factor_polynomial = getPolynomialFactorOfCVGradient(i_cv); + // compute the gradient (grad) with respect to the i-th CV + colvarvalue grad(cv[i_cv]->value().type()); + // sum up derivatives with respect to all frames + for (size_t m_frame = 0; m_frame < impl_->dzdx.size(); ++m_frame) { + // dzdx is the derivative of z with respect to the m-th frame + grad += impl_->dzdx[m_frame][i_cv]; + } for (size_t j_elem = 0; j_elem < cv[i_cv]->value().size(); ++j_elem) { for (size_t k_ag = 0 ; k_ag < cv[i_cv]->atom_groups.size(); ++k_ag) { for (size_t l_atom = 0; l_atom < (cv[i_cv]->atom_groups)[k_ag]->size(); ++l_atom) { - (*(cv[i_cv]->atom_groups)[k_ag])[l_atom].grad = dzdx[i_cv][j_elem] * factor_polynomial * (*(cv[i_cv]->atom_groups)[k_ag])[l_atom].grad; + (*(cv[i_cv]->atom_groups)[k_ag])[l_atom].grad = grad[j_elem] * factor_polynomial * (*(cv[i_cv]->atom_groups)[k_ag])[l_atom].grad; } } } - } } } void colvar::azpathCV::apply_force(colvarvalue const &force) { + // the PCV component itself is a scalar, so force should be scalar for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { if (cv[i_cv]->is_enabled(f_cvc_explicit_gradient)) { for (size_t k_ag = 0 ; k_ag < cv[i_cv]->atom_groups.size(); ++k_ag) { (cv[i_cv]->atom_groups)[k_ag]->apply_colvar_force(force.real_value); } } else { - cvm::real factor_polynomial = getPolynomialFactorOfCVGradient(i_cv); - const colvarvalue cv_force = dzdx[i_cv] * force.real_value * factor_polynomial; - cv[i_cv]->apply_force(cv_force); + const cvm::real factor_polynomial = getPolynomialFactorOfCVGradient(i_cv); + // compute the gradient (grad) with respect to the i-th CV + colvarvalue grad(cv[i_cv]->value().type()); + for (size_t m_frame = 0; m_frame < impl_->dzdx.size(); ++m_frame) { + // dzdx is the derivative of z with respect to the m-th frame + grad += impl_->dzdx[m_frame][i_cv]; + } + grad *= factor_polynomial; + cv[i_cv]->apply_force(force.real_value * grad); + // try my best to debug gradients even if the sub-CVs do not have explicit gradients + if (is_enabled(f_cvc_debug_gradient)) { + cvm::log("Debugging gradients for " + description + + " with respect to sub-CV " + cv[i_cv]->description + + ", which has no explicit gradient with respect to its own input(s)"); + colvarvalue analytical_grad(cv[i_cv]->value().type()); + for (size_t m_frame = 0; m_frame < impl_->dzdx.size(); ++m_frame) { + analytical_grad += impl_->compute_z_analytical_derivative_ij( + m_frame, i_cv, cvm::debug_gradients_step_size, this); + } + cvm::log("dx(actual) = "+cvm::to_str(analytical_grad, 21, 14)+"\n"); + cvm::log("dx(interp) = "+cvm::to_str(grad, 21, 14)+"\n"); + cvm::log("|dx(actual) - dx(interp)|/|dx(actual)| = "+ + cvm::to_str((analytical_grad - grad).norm() / + (analytical_grad).norm(), 12, 5)+"\n"); + } } } } colvar::azpathCV::~azpathCV() {} -#endif diff --git a/lib/colvars/colvarcomp_combination.cpp b/lib/colvars/colvarcomp_combination.cpp index 64745b6472..01c7ffc320 100644 --- a/lib/colvars/colvarcomp_combination.cpp +++ b/lib/colvars/colvarcomp_combination.cpp @@ -1,4 +1,4 @@ -#if (__cplusplus >= 201103L) +// -*- c++ -*- // This file is part of the Collective Variables module (Colvars). // The original version of Colvars and its updates are located at: @@ -9,14 +9,26 @@ #include "colvarcomp.h" -colvar::linearCombination::linearCombination(std::string const &conf): cvc(conf) { + +colvar::linearCombination::linearCombination() +{ + set_function_type("linearCombination"); +} + + +int colvar::linearCombination::init(std::string const &conf) +{ + int error_code = cvc::init(conf); + if (error_code != COLVARS_OK) return error_code; + // Lookup all available sub-cvcs for (auto it_cv_map = colvar::get_global_cvc_map().begin(); it_cv_map != colvar::get_global_cvc_map().end(); ++it_cv_map) { if (key_lookup(conf, it_cv_map->first.c_str())) { std::vector sub_cvc_confs; get_key_string_multi_value(conf, it_cv_map->first.c_str(), sub_cvc_confs); for (auto it_sub_cvc_conf = sub_cvc_confs.begin(); it_sub_cvc_conf != sub_cvc_confs.end(); ++it_sub_cvc_conf) { - cv.push_back((it_cv_map->second)(*(it_sub_cvc_conf))); + cv.push_back((it_cv_map->second)()); + cv.back()->init(*(it_sub_cvc_conf)); } } } @@ -29,26 +41,11 @@ colvar::linearCombination::linearCombination(std::string const &conf): cvc(conf) } // Show useful error messages and prevent crashes if no sub CVC is found if (cv.size() == 0) { - cvm::error("Error: the CV " + name + - " expects one or more nesting components.\n"); - return; + return cvm::error("Error: the CV " + name + " expects one or more nesting components.\n", + COLVARS_INPUT_ERROR); } else { - // TODO: Maybe we can add an option to allow mixing scalar and vector types, - // but that's a bit complicated so we just require a consistent type - // of nesting CVs. x.type(cv[0]->value()); x.reset(); - for (size_t i_cv = 1; i_cv < cv.size(); ++i_cv) { - const auto type_i = cv[i_cv]->value().type(); - if (type_i != x.type()) { - cvm::error("Error: the type of sub-CVC " + cv[i_cv]->name + - " is " + colvarvalue::type_desc(type_i) + ", which is " - "different to the type of the first sub-CVC. Currently " - "only sub-CVCs of the same type are supported to be " - "nested.\n"); - return; - } - } } use_explicit_gradients = true; for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { @@ -59,6 +56,7 @@ colvar::linearCombination::linearCombination(std::string const &conf): cvc(conf) if (!use_explicit_gradients) { disable(f_cvc_explicit_gradient); } + return error_code; } cvm::real colvar::linearCombination::getPolynomialFactorOfCVGradient(size_t i_cv) const { @@ -138,8 +136,42 @@ void colvar::linearCombination::apply_force(colvarvalue const &force) { } } -colvar::customColvar::customColvar(std::string const &conf): linearCombination(conf) { - use_custom_function = false; + +cvm::real colvar::linearCombination::dist2(colvarvalue const &x1, colvarvalue const &x2) const +{ + return x1.dist2(x2); +} + + +colvarvalue colvar::linearCombination::dist2_lgrad(colvarvalue const &x1, + colvarvalue const &x2) const +{ + return x1.dist2_grad(x2); +} + + +colvarvalue colvar::linearCombination::dist2_rgrad(colvarvalue const &x1, + colvarvalue const &x2) const +{ + return x2.dist2_grad(x1); +} + + +void colvar::linearCombination::wrap(colvarvalue & /* x_unwrapped */) const {} + + + +colvar::customColvar::customColvar() +{ + set_function_type("customColvar"); +} + + +int colvar::customColvar::init(std::string const &conf) +{ + int error_code = linearCombination::init(conf); + if (error_code != COLVARS_OK) return error_code; + // code swipe from colvar::init_custom_function std::string expr_in, expr; size_t pos = 0; // current position in config string @@ -160,7 +192,7 @@ colvar::customColvar::customColvar(std::string const &conf): linearCombination(c pexpr = Lepton::Parser::parse(expr); pexprs.push_back(pexpr); } catch (...) { - cvm::error("Error parsing expression \"" + expr + "\".\n", COLVARS_INPUT_ERROR); + return cvm::error("Error parsing expression \"" + expr + "\".\n", COLVARS_INPUT_ERROR); } try { value_evaluators.push_back(new Lepton::CompiledExpression(pexpr.createCompiledExpression())); @@ -178,7 +210,7 @@ colvar::customColvar::customColvar(std::string const &conf): linearCombination(c } } } catch (...) { - cvm::error("Error compiling expression \"" + expr + "\".\n", COLVARS_INPUT_ERROR); + return cvm::error("Error compiling expression \"" + expr + "\".\n", COLVARS_INPUT_ERROR); } } while (key_lookup(conf, "customFunction", &expr_in, &pos)); // Now define derivative with respect to each scalar sub-component @@ -203,7 +235,7 @@ colvar::customColvar::customColvar(std::string const &conf): linearCombination(c } } if (value_evaluators.size() == 0) { - cvm::error("Error: no custom function defined.\n", COLVARS_INPUT_ERROR); + return cvm::error("Error: no custom function defined.\n", COLVARS_INPUT_ERROR); } if (value_evaluators.size() != 1) { x.type(colvarvalue::type_vector); @@ -211,14 +243,17 @@ colvar::customColvar::customColvar(std::string const &conf): linearCombination(c x.type(colvarvalue::type_scalar); } #else - cvm::error("customFunction requires the Lepton library, but it is not enabled during compilation.\n" - "Please refer to the Compilation Notes section of the Colvars manual for more information.\n", - COLVARS_INPUT_ERROR); + return cvm::error( + "customFunction requires the Lepton library, but it is not enabled during compilation.\n" + "Please refer to the Compilation Notes section of the Colvars manual for more " + "information.\n", + COLVARS_NOT_IMPLEMENTED); #endif } else { cvm::log("Warning: no customFunction specified.\n"); cvm::log("Warning: use linear combination instead.\n"); } + return error_code; } colvar::customColvar::~customColvar() { @@ -317,7 +352,8 @@ void colvar::customColvar::apply_force(colvarvalue const &force) { } } else { const colvarvalue& current_cv_value = cv[i_cv]->value(); - colvarvalue cv_force(current_cv_value.type()); + colvarvalue cv_force(current_cv_value); + cv_force.reset(); const cvm::real factor_polynomial = getPolynomialFactorOfCVGradient(i_cv); for (size_t j_elem = 0; j_elem < current_cv_value.size(); ++j_elem) { for (size_t c = 0; c < x.size(); ++c) { @@ -340,5 +376,3 @@ void colvar::customColvar::apply_force(colvarvalue const &force) { #endif } } - -#endif // __cplusplus >= 201103L diff --git a/lib/colvars/colvarcomp_coordnums.cpp b/lib/colvars/colvarcomp_coordnums.cpp index 3d618ff805..63418050d0 100644 --- a/lib/colvars/colvarcomp_coordnums.cpp +++ b/lib/colvars/colvarcomp_coordnums.cpp @@ -8,7 +8,6 @@ // Colvars repository at GitHub. #include "colvarmodule.h" -#include "colvarparse.h" #include "colvaratoms.h" #include "colvarvalue.h" #include "colvar.h" @@ -90,48 +89,47 @@ cvm::real colvar::coordnum::switching_function(cvm::real const &r0, } -colvar::coordnum::coordnum(std::string const &conf) - : cvc(conf), b_anisotropic(false), pairlist(NULL) - +colvar::coordnum::coordnum() { set_function_type("coordNum"); x.type(colvarvalue::type_scalar); - colvarproxy *proxy = cvm::main()->proxy; + r0 = proxy->angstrom_to_internal(4.0); + r0_vec = cvm::rvector(proxy->angstrom_to_internal(4.0), + proxy->angstrom_to_internal(4.0), + proxy->angstrom_to_internal(4.0)); +} + + +int colvar::coordnum::init(std::string const &conf) +{ + int error_code = cvc::init(conf); group1 = parse_group(conf, "group1"); group2 = parse_group(conf, "group2"); - if (group1 == NULL || group2 == NULL) { - cvm::error("Error: failed to initialize atom groups.\n", - COLVARS_INPUT_ERROR); - return; + if (!group1 || !group2) { + return error_code | COLVARS_INPUT_ERROR; } if (int atom_number = cvm::atom_group::overlap(*group1, *group2)) { - cvm::error("Error: group1 and group2 share a common atom (number: " + - cvm::to_str(atom_number) + ")\n", COLVARS_INPUT_ERROR); - return; + error_code |= cvm::error( + "Error: group1 and group2 share a common atom (number: " + cvm::to_str(atom_number) + ")\n", + COLVARS_INPUT_ERROR); } if (group1->b_dummy) { - cvm::error("Error: only group2 is allowed to be a dummy atom\n", - COLVARS_INPUT_ERROR); - return; + error_code |= + cvm::error("Error: only group2 is allowed to be a dummy atom\n", COLVARS_INPUT_ERROR); } - bool const b_isotropic = get_keyval(conf, "cutoff", r0, - cvm::real(proxy->angstrom_to_internal(4.0))); + bool const b_isotropic = get_keyval(conf, "cutoff", r0, r0); - if (get_keyval(conf, "cutoff3", r0_vec, - cvm::rvector(proxy->angstrom_to_internal(4.0), - proxy->angstrom_to_internal(4.0), - proxy->angstrom_to_internal(4.0)))) { + if (get_keyval(conf, "cutoff3", r0_vec, r0_vec)) { if (b_isotropic) { - cvm::error("Error: cannot specify \"cutoff\" and \"cutoff3\" " - "at the same time.\n", - COLVARS_INPUT_ERROR); - return; + error_code |= cvm::error("Error: cannot specify \"cutoff\" and \"cutoff3\" " + "at the same time.\n", + COLVARS_INPUT_ERROR); } b_anisotropic = true; @@ -141,17 +139,17 @@ colvar::coordnum::coordnum(std::string const &conf) if (r0_vec.z < 0.0) r0_vec.z *= -1.0; } - get_keyval(conf, "expNumer", en, 6); - get_keyval(conf, "expDenom", ed, 12); + get_keyval(conf, "expNumer", en, en); + get_keyval(conf, "expDenom", ed, ed); if ( (en%2) || (ed%2) ) { - cvm::error("Error: odd exponent(s) provided, can only use even ones.\n", - COLVARS_INPUT_ERROR); + error_code |= cvm::error("Error: odd exponent(s) provided, can only use even ones.\n", + COLVARS_INPUT_ERROR); } if ( (en <= 0) || (ed <= 0) ) { - cvm::error("Error: negative exponent(s) provided.\n", - COLVARS_INPUT_ERROR); + error_code |= cvm::error("Error: negative exponent(s) provided.\n", + COLVARS_INPUT_ERROR); } if (!is_enabled(f_cvc_pbc_minimum_image)) { @@ -160,14 +158,14 @@ colvar::coordnum::coordnum(std::string const &conf) get_keyval(conf, "group2CenterOnly", b_group2_center_only, group2->b_dummy); - get_keyval(conf, "tolerance", tolerance, 0.0); + get_keyval(conf, "tolerance", tolerance, tolerance); if (tolerance > 0) { cvm::main()->cite_feature("coordNum pairlist"); - get_keyval(conf, "pairListFrequency", pairlist_freq, 100); + get_keyval(conf, "pairListFrequency", pairlist_freq, pairlist_freq); if ( ! (pairlist_freq > 0) ) { - cvm::error("Error: non-positive pairlistfrequency provided.\n", - COLVARS_INPUT_ERROR); - return; // and do not allocate the pairlists below + return cvm::error("Error: non-positive pairlistfrequency provided.\n", + COLVARS_INPUT_ERROR); + // return and do not allocate the pairlists below } if (b_group2_center_only) { pairlist = new bool[group1->size()]; @@ -181,12 +179,14 @@ colvar::coordnum::coordnum(std::string const &conf) static_cast(group1->size()) : static_cast(group1->size() * group2->size())); + + return error_code; } colvar::coordnum::~coordnum() { - if (pairlist != NULL) { + if (pairlist) { delete [] pairlist; } } @@ -285,25 +285,23 @@ void colvar::coordnum::calc_gradients() } -void colvar::coordnum::apply_force(colvarvalue const &force) -{ - if (!group1->noforce) - group1->apply_colvar_force(force.real_value); - - if (!group2->noforce) - group2->apply_colvar_force(force.real_value); -} - - -simple_scalar_dist_functions(coordnum) - - // h_bond member functions -colvar::h_bond::h_bond(std::string const &conf) -: cvc(conf) +colvar::h_bond::h_bond() { + colvarproxy *proxy = cvm::main()->proxy; + r0 = proxy->angstrom_to_internal(3.3); + set_function_type("hBond"); + x.type(colvarvalue::type_scalar); + init_scalar_boundaries(0.0, 1.0); +} + + +int colvar::h_bond::init(std::string const &conf) +{ + int error_code = cvc::init(conf); + if (cvm::debug()) cvm::log("Initializing h_bond object.\n"); @@ -311,15 +309,12 @@ colvar::h_bond::h_bond(std::string const &conf) x.type(colvarvalue::type_scalar); init_scalar_boundaries(0.0, 1.0); - colvarproxy *proxy = cvm::main()->proxy; - int a_num = -1, d_num = -1; get_keyval(conf, "acceptor", a_num, a_num); get_keyval(conf, "donor", d_num, a_num); if ( (a_num == -1) || (d_num == -1) ) { - cvm::error("Error: either acceptor or donor undefined.\n"); - return; + error_code |= cvm::error("Error: either acceptor or donor undefined.\n", COLVARS_INPUT_ERROR); } cvm::atom acceptor = cvm::atom(a_num); @@ -328,34 +323,34 @@ colvar::h_bond::h_bond(std::string const &conf) atom_groups[0]->add_atom(acceptor); atom_groups[0]->add_atom(donor); - get_keyval(conf, "cutoff", r0, proxy->angstrom_to_internal(3.3)); - get_keyval(conf, "expNumer", en, 6); - get_keyval(conf, "expDenom", ed, 8); + get_keyval(conf, "cutoff", r0, r0); + get_keyval(conf, "expNumer", en, en); + get_keyval(conf, "expDenom", ed, ed); - if ( (en%2) || (ed%2) ) { - cvm::error("Error: odd exponent(s) provided, can only use even ones.\n", - COLVARS_INPUT_ERROR); + if ((en % 2) || (ed % 2)) { + error_code |= cvm::error("Error: odd exponent(s) provided, can only use even ones.\n", + COLVARS_INPUT_ERROR); } - if ( (en <= 0) || (ed <= 0) ) { - cvm::error("Error: negative exponent(s) provided.\n", - COLVARS_INPUT_ERROR); + if ((en <= 0) || (ed <= 0)) { + error_code |= cvm::error("Error: negative exponent(s) provided.\n", COLVARS_INPUT_ERROR); } if (cvm::debug()) cvm::log("Done initializing h_bond object.\n"); + + return error_code; } colvar::h_bond::h_bond(cvm::atom const &acceptor, cvm::atom const &donor, cvm::real r0_i, int en_i, int ed_i) - : r0(r0_i), en(en_i), ed(ed_i) + : h_bond() { - set_function_type("hBond"); - x.type(colvarvalue::type_scalar); - init_scalar_boundaries(0.0, 1.0); - + r0 = r0_i; + en = en_i; + ed = ed_i; register_atom_group(new cvm::atom_group); atom_groups[0]->add_atom(acceptor); atom_groups[0]->add_atom(donor); @@ -385,64 +380,63 @@ void colvar::h_bond::calc_gradients() } -void colvar::h_bond::apply_force(colvarvalue const &force) -{ - (atom_groups[0])->apply_colvar_force(force); -} - -simple_scalar_dist_functions(h_bond) - - - -colvar::selfcoordnum::selfcoordnum(std::string const &conf) - : cvc(conf), pairlist(NULL) +colvar::selfcoordnum::selfcoordnum() { set_function_type("selfCoordNum"); x.type(colvarvalue::type_scalar); + r0 = cvm::main()->proxy->angstrom_to_internal(4.0); +} - colvarproxy *proxy = cvm::main()->proxy; + +int colvar::selfcoordnum::init(std::string const &conf) +{ + int error_code = cvc::init(conf); group1 = parse_group(conf, "group1"); - get_keyval(conf, "cutoff", r0, cvm::real(proxy->angstrom_to_internal(4.0))); - get_keyval(conf, "expNumer", en, 6); - get_keyval(conf, "expDenom", ed, 12); - - - if ( (en%2) || (ed%2) ) { - cvm::error("Error: odd exponent(s) provided, can only use even ones.\n", - COLVARS_INPUT_ERROR); + if (!group1 || group1->size() == 0) { + return error_code | COLVARS_INPUT_ERROR; } - if ( (en <= 0) || (ed <= 0) ) { - cvm::error("Error: negative exponent(s) provided.\n", - COLVARS_INPUT_ERROR); + get_keyval(conf, "cutoff", r0, r0); + get_keyval(conf, "expNumer", en, en); + get_keyval(conf, "expDenom", ed, ed); + + + if ((en % 2) || (ed % 2)) { + error_code |= cvm::error("Error: odd exponent(s) provided, can only use even ones.\n", + COLVARS_INPUT_ERROR); + } + + if ((en <= 0) || (ed <= 0)) { + error_code |= cvm::error("Error: negative exponent(s) provided.\n", COLVARS_INPUT_ERROR); } if (!is_enabled(f_cvc_pbc_minimum_image)) { cvm::log("Warning: only minimum-image distances are used by this variable.\n"); } - get_keyval(conf, "tolerance", tolerance, 0.0); + get_keyval(conf, "tolerance", tolerance, tolerance); if (tolerance > 0) { - get_keyval(conf, "pairListFrequency", pairlist_freq, 100); + get_keyval(conf, "pairListFrequency", pairlist_freq, pairlist_freq); if ( ! (pairlist_freq > 0) ) { - cvm::error("Error: non-positive pairlistfrequency provided.\n", - COLVARS_INPUT_ERROR); - return; + error_code |= cvm::error("Error: non-positive pairlistfrequency provided.\n", + COLVARS_INPUT_ERROR); } pairlist = new bool[(group1->size()-1) * (group1->size()-1)]; } init_scalar_boundaries(0.0, static_cast((group1->size()-1) * (group1->size()-1))); + + return error_code; } colvar::selfcoordnum::~selfcoordnum() { - if (pairlist != NULL) { + if (pairlist) { delete [] pairlist; } } @@ -527,44 +521,36 @@ void colvar::selfcoordnum::calc_gradients() } -void colvar::selfcoordnum::apply_force(colvarvalue const &force) -{ - if (!group1->noforce) { - group1->apply_colvar_force(force.real_value); - } -} - -simple_scalar_dist_functions(selfcoordnum) - - - -// groupcoordnum member functions -colvar::groupcoordnum::groupcoordnum(std::string const &conf) - : distance(conf), b_anisotropic(false) +colvar::groupcoordnum::groupcoordnum() { set_function_type("groupCoord"); x.type(colvarvalue::type_scalar); init_scalar_boundaries(0.0, 1.0); - colvarproxy *proxy = cvm::main()->proxy; + r0 = proxy->angstrom_to_internal(4.0); + r0_vec = cvm::rvector(proxy->angstrom_to_internal(4.0), + proxy->angstrom_to_internal(4.0), + proxy->angstrom_to_internal(4.0)); +} + + +int colvar::groupcoordnum::init(std::string const &conf) +{ + int error_code = distance::init(conf); // group1 and group2 are already initialized by distance() if (group1->b_dummy || group2->b_dummy) { - cvm::error("Error: neither group can be a dummy atom\n"); - return; + return cvm::error("Error: neither group can be a dummy atom\n", COLVARS_INPUT_ERROR); } - bool const b_scale = get_keyval(conf, "cutoff", r0, - cvm::real(proxy->angstrom_to_internal(4.0))); - - if (get_keyval(conf, "cutoff3", r0_vec, - cvm::rvector(4.0, 4.0, 4.0), parse_silent)) { + bool const b_scale = get_keyval(conf, "cutoff", r0, r0); + if (get_keyval(conf, "cutoff3", r0_vec, r0_vec)) { if (b_scale) { - cvm::error("Error: cannot specify \"scale\" and " - "\"scale3\" at the same time.\n"); - return; + error_code |= + cvm::error("Error: cannot specify \"cutoff\" and \"cutoff3\" at the same time.\n", + COLVARS_INPUT_ERROR); } b_anisotropic = true; // remove meaningless negative signs @@ -573,23 +559,23 @@ colvar::groupcoordnum::groupcoordnum(std::string const &conf) if (r0_vec.z < 0.0) r0_vec.z *= -1.0; } - get_keyval(conf, "expNumer", en, 6); - get_keyval(conf, "expDenom", ed, 12); + get_keyval(conf, "expNumer", en, en); + get_keyval(conf, "expDenom", ed, ed); - if ( (en%2) || (ed%2) ) { - cvm::error("Error: odd exponent(s) provided, can only use even ones.\n", - COLVARS_INPUT_ERROR); + if ((en % 2) || (ed % 2)) { + error_code |= cvm::error("Error: odd exponent(s) provided, can only use even ones.\n", + COLVARS_INPUT_ERROR); } - if ( (en <= 0) || (ed <= 0) ) { - cvm::error("Error: negative exponent(s) provided.\n", - COLVARS_INPUT_ERROR); + if ((en <= 0) || (ed <= 0)) { + error_code |= cvm::error("Error: negative exponent(s) provided.\n", COLVARS_INPUT_ERROR); } if (!is_enabled(f_cvc_pbc_minimum_image)) { cvm::log("Warning: only minimum-image distances are used by this variable.\n"); } + return error_code; } @@ -640,16 +626,3 @@ void colvar::groupcoordnum::calc_gradients() group1->set_weighted_gradient(group1_com_atom.grad); group2->set_weighted_gradient(group2_com_atom.grad); } - - -void colvar::groupcoordnum::apply_force(colvarvalue const &force) -{ - if (!group1->noforce) - group1->apply_colvar_force(force.real_value); - - if (!group2->noforce) - group2->apply_colvar_force(force.real_value); -} - - -simple_scalar_dist_functions(groupcoordnum) diff --git a/lib/colvars/colvarcomp_distances.cpp b/lib/colvars/colvarcomp_distances.cpp index d96cb33482..319190c385 100644 --- a/lib/colvars/colvarcomp_distances.cpp +++ b/lib/colvars/colvarcomp_distances.cpp @@ -11,14 +11,12 @@ #include "colvarmodule.h" #include "colvarvalue.h" -#include "colvarparse.h" #include "colvar.h" #include "colvarcomp.h" +#include "colvar_rotation_derivative.h" - -colvar::distance::distance(std::string const &conf) - : cvc(conf) +colvar::distance::distance() { set_function_type("distance"); init_as_distance(); @@ -26,23 +24,23 @@ colvar::distance::distance(std::string const &conf) provide(f_cvc_inv_gradient); provide(f_cvc_Jacobian); enable(f_cvc_com_based); +} + + +int colvar::distance::init(std::string const &conf) +{ + int error_code = cvc::init(conf); group1 = parse_group(conf, "group1"); group2 = parse_group(conf, "group2"); - init_total_force_params(conf); -} + if (!group1 || !group2) { + return error_code | COLVARS_INPUT_ERROR; + } + error_code |= init_total_force_params(conf); -colvar::distance::distance() - : cvc() -{ - set_function_type("distance"); - init_as_distance(); - - provide(f_cvc_inv_gradient); - provide(f_cvc_Jacobian); - enable(f_cvc_com_based); + return error_code; } @@ -84,35 +82,10 @@ void colvar::distance::calc_Jacobian_derivative() } -void colvar::distance::apply_force(colvarvalue const &force) -{ - if (!group1->noforce) - group1->apply_colvar_force(force.real_value); - - if (!group2->noforce) - group2->apply_colvar_force(force.real_value); -} - - -simple_scalar_dist_functions(distance) - - - -colvar::distance_vec::distance_vec(std::string const &conf) - : distance(conf) -{ - set_function_type("distanceVec"); - enable(f_cvc_com_based); - disable(f_cvc_explicit_gradient); - x.type(colvarvalue::type_3vector); -} - colvar::distance_vec::distance_vec() - : distance() { set_function_type("distanceVec"); - enable(f_cvc_com_based); disable(f_cvc_explicit_gradient); x.type(colvarvalue::type_3vector); } @@ -146,48 +119,47 @@ void colvar::distance_vec::apply_force(colvarvalue const &force) } -cvm::real colvar::distance_vec::dist2(colvarvalue const &x1, - colvarvalue const &x2) const +cvm::real colvar::distance_vec::dist2(colvarvalue const &x1, colvarvalue const &x2) const { - return (cvm::position_distance(x1.rvector_value, x2.rvector_value)).norm2(); + if (is_enabled(f_cvc_pbc_minimum_image)) { + return (cvm::position_distance(x1.rvector_value, x2.rvector_value)).norm2(); + } + return (x2.rvector_value - x1.rvector_value).norm2(); } -colvarvalue colvar::distance_vec::dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const +colvarvalue colvar::distance_vec::dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const { - return 2.0 * cvm::position_distance(x2.rvector_value, x1.rvector_value); + if (is_enabled(f_cvc_pbc_minimum_image)) { + return 2.0 * cvm::position_distance(x2.rvector_value, x1.rvector_value); + } + return 2.0 * (x2.rvector_value - x1.rvector_value); } -colvarvalue colvar::distance_vec::dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const +colvarvalue colvar::distance_vec::dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const { - return 2.0 * cvm::position_distance(x2.rvector_value, x1.rvector_value); + return distance_vec::dist2_lgrad(x2, x1); } +void colvar::distance_vec::wrap(colvarvalue & /* x_unwrapped */) const {} -colvar::distance_z::distance_z(std::string const &conf) - : cvc(conf) + +colvar::distance_z::distance_z() { set_function_type("distanceZ"); provide(f_cvc_inv_gradient); provide(f_cvc_Jacobian); enable(f_cvc_com_based); + provide(f_cvc_periodic); x.type(colvarvalue::type_scalar); +} - // TODO detect PBC from MD engine (in simple cases) - // and then update period in real time - if (period != 0.0) { - enable(f_cvc_periodic); - } - if ((wrap_center != 0.0) && !is_enabled(f_cvc_periodic)) { - cvm::error("Error: wrapAround was defined in a distanceZ component," - " but its period has not been set.\n"); - return; - } +int colvar::distance_z::init(std::string const &conf) +{ + int error_code = cvc::init(conf); main = parse_group(conf, "main"); ref1 = parse_group(conf, "ref"); @@ -202,8 +174,7 @@ colvar::distance_z::distance_z(std::string const &conf) } else { if (get_keyval(conf, "axis", axis, cvm::rvector(0.0, 0.0, 1.0))) { if (axis.norm2() == 0.0) { - cvm::error("Axis vector is zero!"); - return; + error_code |= cvm::error("Axis vector is zero!", COLVARS_INPUT_ERROR); } if (axis.norm2() != 1.0) { axis = axis.unit(); @@ -213,18 +184,9 @@ colvar::distance_z::distance_z(std::string const &conf) fixed_axis = true; } - init_total_force_params(conf); + error_code |= init_total_force_params(conf); -} - - -colvar::distance_z::distance_z() -{ - set_function_type("distanceZ"); - provide(f_cvc_inv_gradient); - provide(f_cvc_Jacobian); - enable(f_cvc_com_based); - x.type(colvarvalue::type_scalar); + return error_code; } @@ -254,7 +216,7 @@ void colvar::distance_z::calc_value() axis = axis.unit(); } x.real_value = axis * dist_v; - this->wrap(x); + wrap(x); } @@ -303,90 +265,12 @@ void colvar::distance_z::calc_Jacobian_derivative() } -void colvar::distance_z::apply_force(colvarvalue const &force) -{ - if (!ref1->noforce) - ref1->apply_colvar_force(force.real_value); - - if (ref2 && !ref2->noforce) - ref2->apply_colvar_force(force.real_value); - - if (!main->noforce) - main->apply_colvar_force(force.real_value); -} - - -// Differences should always be wrapped around 0 (ignoring wrap_center) -cvm::real colvar::distance_z::dist2(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - if (is_enabled(f_cvc_periodic)) { - cvm::real shift = cvm::floor(diff/period + 0.5); - diff -= shift * period; - } - return diff * diff; -} - - -colvarvalue colvar::distance_z::dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - if (is_enabled(f_cvc_periodic)) { - cvm::real shift = cvm::floor(diff/period + 0.5); - diff -= shift * period; - } - return 2.0 * diff; -} - - -colvarvalue colvar::distance_z::dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - if (is_enabled(f_cvc_periodic)) { - cvm::real shift = cvm::floor(diff/period + 0.5); - diff -= shift * period; - } - return (-2.0) * diff; -} - - -void colvar::distance_z::wrap(colvarvalue &x_unwrapped) const -{ - if (!is_enabled(f_cvc_periodic)) { - // don't wrap if the period has not been set - return; - } - cvm::real shift = - cvm::floor((x_unwrapped.real_value - wrap_center) / period + 0.5); - x_unwrapped.real_value -= shift * period; -} - - - -colvar::distance_xy::distance_xy(std::string const &conf) - : distance_z(conf) -{ - set_function_type("distanceXY"); - init_as_distance(); - - provide(f_cvc_inv_gradient); - provide(f_cvc_Jacobian); - enable(f_cvc_com_based); -} - colvar::distance_xy::distance_xy() - : distance_z() { set_function_type("distanceXY"); + provide(f_cvc_periodic, false); // Disable inherited distance_z flag init_as_distance(); - - provide(f_cvc_inv_gradient); - provide(f_cvc_Jacobian); - enable(f_cvc_com_based); } @@ -462,35 +346,8 @@ void colvar::distance_xy::calc_Jacobian_derivative() } -void colvar::distance_xy::apply_force(colvarvalue const &force) -{ - if (!ref1->noforce) - ref1->apply_colvar_force(force.real_value); - - if (ref2 && !ref2->noforce) - ref2->apply_colvar_force(force.real_value); - - if (!main->noforce) - main->apply_colvar_force(force.real_value); -} - - -simple_scalar_dist_functions(distance_xy) - - - -colvar::distance_dir::distance_dir(std::string const &conf) - : distance(conf) -{ - set_function_type("distanceDir"); - enable(f_cvc_com_based); - disable(f_cvc_explicit_gradient); - x.type(colvarvalue::type_unit3vector); -} - colvar::distance_dir::distance_dir() - : distance() { set_function_type("distanceDir"); enable(f_cvc_com_based); @@ -556,31 +413,39 @@ colvarvalue colvar::distance_dir::dist2_rgrad(colvarvalue const &x1, } +void colvar::distance_dir::wrap(colvarvalue & /* x_unwrapped */) const {} -colvar::distance_inv::distance_inv(std::string const &conf) - : cvc(conf) + + +colvar::distance_inv::distance_inv() { set_function_type("distanceInv"); init_as_distance(); +} + + +int colvar::distance_inv::init(std::string const &conf) +{ + int error_code = cvc::init(conf); group1 = parse_group(conf, "group1"); group2 = parse_group(conf, "group2"); - get_keyval(conf, "exponent", exponent, 6); - if (exponent%2) { - cvm::error("Error: odd exponent provided, can only use even ones.\n"); - return; + get_keyval(conf, "exponent", exponent, exponent); + if (exponent % 2) { + error_code |= + cvm::error("Error: odd exponent provided, can only use even ones.\n", COLVARS_INPUT_ERROR); } if (exponent <= 0) { - cvm::error("Error: negative or zero exponent provided.\n"); - return; + error_code |= cvm::error("Error: negative or zero exponent provided.\n", COLVARS_INPUT_ERROR); } for (cvm::atom_iter ai1 = group1->begin(); ai1 != group1->end(); ai1++) { for (cvm::atom_iter ai2 = group2->begin(); ai2 != group2->end(); ai2++) { if (ai1->id == ai2->id) { - cvm::error("Error: group1 and group2 have some atoms in common: this is not allowed for distanceInv.\n"); - return; + error_code |= cvm::error("Error: group1 and group2 have some atoms in common: this is not " + "allowed for distanceInv.\n", + COLVARS_INPUT_ERROR); } } } @@ -590,6 +455,8 @@ colvar::distance_inv::distance_inv(std::string const &conf) "for distanceInv, because its value and gradients are computed " "simultaneously.\n"); } + + return error_code; } @@ -642,33 +509,6 @@ void colvar::distance_inv::calc_gradients() } -void colvar::distance_inv::apply_force(colvarvalue const &force) -{ - if (!group1->noforce) - group1->apply_colvar_force(force.real_value); - - if (!group2->noforce) - group2->apply_colvar_force(force.real_value); -} - - -simple_scalar_dist_functions(distance_inv) - - - -colvar::distance_pairs::distance_pairs(std::string const &conf) - : cvc(conf) -{ - set_function_type("distancePairs"); - - group1 = parse_group(conf, "group1"); - group2 = parse_group(conf, "group2"); - - x.type(colvarvalue::type_vector); - disable(f_cvc_explicit_gradient); - x.vector1d_value.resize(group1->size() * group2->size()); -} - colvar::distance_pairs::distance_pairs() { @@ -678,6 +518,18 @@ colvar::distance_pairs::distance_pairs() } +int colvar::distance_pairs::init(std::string const &conf) +{ + int error_code = cvc::init(conf); + + group1 = parse_group(conf, "group1"); + group2 = parse_group(conf, "group2"); + x.vector1d_value.resize(group1->size() * group2->size()); + + return error_code; +} + + void colvar::distance_pairs::calc_value() { x.vector1d_value.resize(group1->size() * group2->size()); @@ -740,26 +592,28 @@ void colvar::distance_pairs::apply_force(colvarvalue const &force) } - -colvar::dipole_magnitude::dipole_magnitude(std::string const &conf) - : cvc(conf) +cvm::real colvar::distance_pairs::dist2(colvarvalue const &x1, colvarvalue const &x2) const { - set_function_type("dipoleMagnitude"); - atoms = parse_group(conf, "atoms"); - init_total_force_params(conf); - x.type(colvarvalue::type_scalar); + return (x1.vector1d_value - x2.vector1d_value).norm2(); } -colvar::dipole_magnitude::dipole_magnitude(cvm::atom const &a1) +colvarvalue colvar::distance_pairs::dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const { - set_function_type("dipoleMagnitude"); - atoms = new cvm::atom_group(std::vector(1, a1)); - register_atom_group(atoms); - x.type(colvarvalue::type_scalar); + return 2.0 * (x1.vector1d_value - x2.vector1d_value); } +colvarvalue colvar::distance_pairs::dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const +{ + return distance_pairs::dist2_lgrad(x1, x2); +} + + +void colvar::distance_pairs::wrap(colvarvalue & /* x_unwrapped */) const {} + + + colvar::dipole_magnitude::dipole_magnitude() { set_function_type("dipoleMagnitude"); @@ -767,6 +621,15 @@ colvar::dipole_magnitude::dipole_magnitude() } +int colvar::dipole_magnitude::init(std::string const &conf) +{ + int error_code = cvc::init(conf); + atoms = parse_group(conf, "atoms"); + if (!atoms) error_code |= COLVARS_INPUT_ERROR; + return error_code; +} + + void colvar::dipole_magnitude::calc_value() { cvm::atom_pos const atomsCom = atoms->center_of_mass(); @@ -787,26 +650,20 @@ void colvar::dipole_magnitude::calc_gradients() } -void colvar::dipole_magnitude::apply_force(colvarvalue const &force) + +colvar::gyration::gyration() { - if (!atoms->noforce) { - atoms->apply_colvar_force(force.real_value); - } + set_function_type("gyration"); + provide(f_cvc_inv_gradient); + provide(f_cvc_Jacobian); + init_as_distance(); } -simple_scalar_dist_functions(dipole_magnitude) - - - -colvar::gyration::gyration(std::string const &conf) - : cvc(conf) +int colvar::gyration::init(std::string const &conf) { - set_function_type("gyration"); - init_as_distance(); + int error_code = cvc::init(conf); - provide(f_cvc_inv_gradient); - provide(f_cvc_Jacobian); atoms = parse_group(conf, "atoms"); if (atoms->b_user_defined_fit) { @@ -816,6 +673,8 @@ colvar::gyration::gyration(std::string const &conf) atoms->ref_pos.assign(1, cvm::atom_pos(0.0, 0.0, 0.0)); atoms->fit_gradients.assign(atoms->size(), cvm::rvector(0.0, 0.0, 0.0)); } + + return error_code; } @@ -857,22 +716,10 @@ void colvar::gyration::calc_Jacobian_derivative() } -void colvar::gyration::apply_force(colvarvalue const &force) -{ - if (!atoms->noforce) - atoms->apply_colvar_force(force.real_value); -} - -simple_scalar_dist_functions(gyration) - - - -colvar::inertia::inertia(std::string const &conf) - : gyration(conf) +colvar::inertia::inertia() { set_function_type("inertia"); - init_as_distance(); } @@ -893,32 +740,26 @@ void colvar::inertia::calc_gradients() } -void colvar::inertia::apply_force(colvarvalue const &force) + +colvar::inertia_z::inertia_z() { - if (!atoms->noforce) - atoms->apply_colvar_force(force.real_value); + set_function_type("inertiaZ"); } -simple_scalar_dist_functions(inertia_z) - - - -colvar::inertia_z::inertia_z(std::string const &conf) - : inertia(conf) +int colvar::inertia_z::init(std::string const &conf) { - set_function_type("inertiaZ"); - init_as_distance(); + int error_code = inertia::init(conf); if (get_keyval(conf, "axis", axis, cvm::rvector(0.0, 0.0, 1.0))) { if (axis.norm2() == 0.0) { - cvm::error("Axis vector is zero!", COLVARS_INPUT_ERROR); - return; + error_code |= cvm::error("Axis vector is zero!", COLVARS_INPUT_ERROR); } if (axis.norm2() != 1.0) { axis = axis.unit(); cvm::log("The normalized axis is: "+cvm::to_str(axis)+".\n"); } } + return error_code; } @@ -940,31 +781,23 @@ void colvar::inertia_z::calc_gradients() } -void colvar::inertia_z::apply_force(colvarvalue const &force) -{ - if (!atoms->noforce) - atoms->apply_colvar_force(force.real_value); -} - -simple_scalar_dist_functions(inertia) - - - - -colvar::rmsd::rmsd(std::string const &conf) - : cvc(conf) +colvar::rmsd::rmsd() { set_function_type("rmsd"); init_as_distance(); - provide(f_cvc_inv_gradient); +} + + +int colvar::rmsd::init(std::string const &conf) +{ + int error_code = cvc::init(conf); atoms = parse_group(conf, "atoms"); if (!atoms || atoms->size() == 0) { - cvm::error("Error: \"atoms\" must contain at least 1 atom to compute RMSD."); - return; + return error_code | COLVARS_INPUT_ERROR; } bool b_Jacobian_derivative = true; @@ -981,20 +814,20 @@ colvar::rmsd::rmsd(std::string const &conf) if (get_keyval(conf, "refPositions", ref_pos, ref_pos)) { cvm::log("Using reference positions from configuration file to calculate the variable.\n"); if (ref_pos.size() != atoms->size()) { - cvm::error("Error: the number of reference positions provided ("+ - cvm::to_str(ref_pos.size())+ - ") does not match the number of atoms of group \"atoms\" ("+ - cvm::to_str(atoms->size())+").\n"); - return; + error_code |= cvm::error("Error: the number of reference positions provided (" + + cvm::to_str(ref_pos.size()) + + ") does not match the number of atoms of group \"atoms\" (" + + cvm::to_str(atoms->size()) + ").\n", + COLVARS_INPUT_ERROR); } } else { // Only look for ref pos file if ref positions not already provided std::string ref_pos_file; if (get_keyval(conf, "refPositionsFile", ref_pos_file, std::string(""))) { if (ref_pos.size()) { - cvm::error("Error: cannot specify \"refPositionsFile\" and " - "\"refPositions\" at the same time.\n"); - return; + error_code |= cvm::error("Error: cannot specify \"refPositionsFile\" and " + "\"refPositions\" at the same time.\n", + COLVARS_INPUT_ERROR); } std::string ref_pos_col; @@ -1004,9 +837,9 @@ colvar::rmsd::rmsd(std::string const &conf) // if provided, use PDB column to select coordinates bool found = get_keyval(conf, "refPositionsColValue", ref_pos_col_value, 0.0); if (found && ref_pos_col_value==0.0) { - cvm::error("Error: refPositionsColValue, " - "if provided, must be non-zero.\n"); - return; + error_code |= cvm::error("Error: refPositionsColValue, " + "if provided, must be non-zero.\n", + COLVARS_INPUT_ERROR); } } @@ -1015,15 +848,17 @@ colvar::rmsd::rmsd(std::string const &conf) cvm::load_coords(ref_pos_file.c_str(), &ref_pos, atoms, ref_pos_col, ref_pos_col_value); } else { - cvm::error("Error: no reference positions for RMSD; use either refPositions of refPositionsFile."); - return; + error_code |= cvm::error( + "Error: no reference positions for RMSD; use either refPositions of refPositionsFile.", + COLVARS_INPUT_ERROR); } } if (ref_pos.size() != atoms->size()) { - cvm::error("Error: found " + cvm::to_str(ref_pos.size()) + - " reference positions for RMSD; expected " + cvm::to_str(atoms->size())); - return; + error_code |= + cvm::error("Error: found " + cvm::to_str(ref_pos.size()) + + " reference positions for RMSD; expected " + cvm::to_str(atoms->size()), + COLVARS_INPUT_ERROR); } if (atoms->b_user_defined_fit) { @@ -1042,14 +877,18 @@ colvar::rmsd::rmsd(std::string const &conf) cvm::log("This is a standard minimum RMSD, derivatives of the optimal rotation " "will not be computed as they cancel out in the gradients."); atoms->disable(f_ag_fit_gradients); - - // request the calculation of the derivatives of the rotation defined by the atom group - atoms->rot.request_group1_gradients(atoms->size()); - // request derivatives of optimal rotation wrt reference coordinates for Jacobian: - // this is only required for ABF, but we do both groups here for better caching - atoms->rot.request_group2_gradients(atoms->size()); } + atoms->setup_rotation_derivative(); + error_code |= init_permutation(conf); + + return error_code; +} + + +int colvar::rmsd::init_permutation(std::string const &conf) +{ + int error_code = COLVARS_OK; std::string perm_conf; size_t pos = 0; // current position in config string n_permutations = 1; @@ -1064,21 +903,22 @@ colvar::rmsd::rmsd(std::string const &conf) std::vector const &ids = atoms->ids(); size_t const ia = std::find(ids.begin(), ids.end(), index-1) - ids.begin(); if (ia == atoms->size()) { - cvm::error("Error: atom id " + cvm::to_str(index) + - " is not a member of group \"atoms\"."); - return; + error_code |= cvm::error("Error: atom id " + cvm::to_str(index) + + " is not a member of group \"atoms\".", + COLVARS_INPUT_ERROR); } if (std::find(perm.begin(), perm.end(), ia) != perm.end()) { - cvm::error("Error: atom id " + cvm::to_str(index) + - " is mentioned more than once in atomPermutation list."); - return; + error_code |= cvm::error("Error: atom id " + cvm::to_str(index) + + " is mentioned more than once in atomPermutation list.", + COLVARS_INPUT_ERROR); } perm.push_back(ia); } if (perm.size() != atoms->size()) { - cvm::error("Error: symmetry permutation in input contains " + cvm::to_str(perm.size()) + - " indices, but group \"atoms\" contains " + cvm::to_str(atoms->size()) + " atoms."); - return; + error_code |= cvm::error( + "Error: symmetry permutation in input contains " + cvm::to_str(perm.size()) + + " indices, but group \"atoms\" contains " + cvm::to_str(atoms->size()) + " atoms.", + COLVARS_INPUT_ERROR); } cvm::log("atomPermutation = " + cvm::to_str(perm)); n_permutations++; @@ -1088,6 +928,8 @@ colvar::rmsd::rmsd(std::string const &conf) } } } + + return error_code; } @@ -1132,13 +974,6 @@ void colvar::rmsd::calc_gradients() } -void colvar::rmsd::apply_force(colvarvalue const &force) -{ - if (!atoms->noforce) - atoms->apply_colvar_force(force.real_value); -} - - void colvar::rmsd::calc_force_invgrads() { atoms->read_total_forces(); @@ -1165,10 +1000,12 @@ void colvar::rmsd::calc_Jacobian_derivative() cvm::matrix2d grad_rot_mat(3, 3); // gradients of products of 2 quaternion components cvm::rvector g11, g22, g33, g01, g02, g03, g12, g13, g23; + cvm::vector1d dq; + atoms->rot_deriv->prepare_derivative(rotation_derivative_dldq::use_dq); for (size_t ia = 0; ia < atoms->size(); ia++) { // Gradient of optimal quaternion wrt current Cartesian position - cvm::vector1d &dq = atoms->rot.dQ0_1[ia]; + atoms->rot_deriv->calc_derivative_wrt_group1(ia, nullptr, &dq); g11 = 2.0 * (atoms->rot.q)[1]*dq[1]; g22 = 2.0 * (atoms->rot.q)[2]*dq[2]; @@ -1213,19 +1050,24 @@ void colvar::rmsd::calc_Jacobian_derivative() } -simple_scalar_dist_functions(rmsd) - - -colvar::eigenvector::eigenvector(std::string const &conf) - : cvc(conf) +colvar::eigenvector::eigenvector() { set_function_type("eigenvector"); provide(f_cvc_inv_gradient); provide(f_cvc_Jacobian); x.type(colvarvalue::type_scalar); +} + + +int colvar::eigenvector::init(std::string const &conf) +{ + int error_code = cvc::init(conf); atoms = parse_group(conf, "atoms"); + if (!atoms || atoms->size() == 0) { + return error_code | COLVARS_INPUT_ERROR; + } { bool const b_inline = get_keyval(conf, "refPositions", ref_pos, ref_pos); @@ -1233,9 +1075,9 @@ colvar::eigenvector::eigenvector(std::string const &conf) if (b_inline) { cvm::log("Using reference positions from input file.\n"); if (ref_pos.size() != atoms->size()) { - cvm::error("Error: reference positions do not " - "match the number of requested atoms.\n"); - return; + error_code |= cvm::error("Error: reference positions do not " + "match the number of requested atoms.\n", + COLVARS_INPUT_ERROR); } } @@ -1243,19 +1085,18 @@ colvar::eigenvector::eigenvector(std::string const &conf) if (get_keyval(conf, "refPositionsFile", file_name)) { if (b_inline) { - cvm::error("Error: refPositions and refPositionsFile cannot be specified at the same time.\n"); - return; + error_code |= cvm::error( + "Error: refPositions and refPositionsFile cannot be specified at the same time.\n", + COLVARS_INPUT_ERROR); } - std::string file_col; double file_col_value=0.0; if (get_keyval(conf, "refPositionsCol", file_col, std::string(""))) { // use PDB flags if column is provided bool found = get_keyval(conf, "refPositionsColValue", file_col_value, 0.0); - if (found && file_col_value==0.0) { - cvm::error("Error: refPositionsColValue, " - "if provided, must be non-zero.\n"); - return; + if (found && file_col_value == 0.0) { + error_code |= cvm::error("Error: refPositionsColValue, if provided, must be non-zero.\n", + COLVARS_INPUT_ERROR); } } @@ -1266,14 +1107,14 @@ colvar::eigenvector::eigenvector(std::string const &conf) } if (ref_pos.size() == 0) { - cvm::error("Error: reference positions were not provided.\n", COLVARS_INPUT_ERROR); - return; + error_code |= + cvm::error("Error: reference positions were not provided.\n", COLVARS_INPUT_ERROR); } if (ref_pos.size() != atoms->size()) { - cvm::error("Error: reference positions do not " - "match the number of requested atoms.\n", COLVARS_INPUT_ERROR); - return; + error_code |= cvm::error("Error: reference positions do not " + "match the number of requested atoms.\n", + COLVARS_INPUT_ERROR); } // save for later the geometric center of the provided positions (may not be the origin) @@ -1295,13 +1136,8 @@ colvar::eigenvector::eigenvector(std::string const &conf) atoms->center_ref_pos(); atoms->disable(f_ag_fit_gradients); // cancel out if group is fitted on itself // and cvc is translationally invariant - - // request the calculation of the derivatives of the rotation defined by the atom group - atoms->rot.request_group1_gradients(atoms->size()); - // request derivatives of optimal rotation wrt reference coordinates for Jacobian: - // this is only required for ABF, but we do both groups here for better caching - atoms->rot.request_group2_gradients(atoms->size()); } + atoms->setup_rotation_derivative(); { bool const b_inline = get_keyval(conf, "vector", eigenvec, eigenvec); @@ -1309,9 +1145,8 @@ colvar::eigenvector::eigenvector(std::string const &conf) if (b_inline) { cvm::log("Using vector components from input file.\n"); if (eigenvec.size() != atoms->size()) { - cvm::error("Error: vector components do not " - "match the number of requested atoms->\n"); - return; + error_code |= cvm::error("Error: vector components do not " + "match the number of requested atoms->\n", COLVARS_INPUT_ERROR); } } @@ -1319,8 +1154,9 @@ colvar::eigenvector::eigenvector(std::string const &conf) if (get_keyval(conf, "vectorFile", file_name)) { if (b_inline) { - cvm::error("Error: vector and vectorFile cannot be specified at the same time.\n"); - return; + error_code |= + cvm::error("Error: vector and vectorFile cannot be specified at the same time.\n", + COLVARS_INPUT_ERROR); } std::string file_col; @@ -1329,8 +1165,8 @@ colvar::eigenvector::eigenvector(std::string const &conf) // use PDB flags if column is provided bool found = get_keyval(conf, "vectorColValue", file_col_value, 0.0); if (found && file_col_value==0.0) { - cvm::error("Error: vectorColValue, if provided, must be non-zero.\n"); - return; + error_code |= cvm::error("Error: vectorColValue, if provided, must be non-zero.\n", + COLVARS_INPUT_ERROR); } } @@ -1341,9 +1177,8 @@ colvar::eigenvector::eigenvector(std::string const &conf) } if (!ref_pos.size() || !eigenvec.size()) { - cvm::error("Error: both reference coordinates" - "and eigenvector must be defined.\n"); - return; + error_code |= cvm::error("Error: both reference coordinates and eigenvector must be defined.\n", + COLVARS_INPUT_ERROR); } cvm::atom_pos eig_center(0.0, 0.0, 0.0); @@ -1367,8 +1202,9 @@ colvar::eigenvector::eigenvector(std::string const &conf) } if (atoms->is_enabled(f_ag_rotate)) { atoms->rot.calc_optimal_rotation(eigenvec, ref_pos); + const auto rot_mat = atoms->rot.matrix(); for (size_t i = 0; i < atoms->size(); i++) { - eigenvec[i] = atoms->rot.rotate(eigenvec[i]); + eigenvec[i] = rot_mat * eigenvec[i]; } } cvm::log("\"differenceVector\" is on: subtracting the reference positions from the provided vector: v = x_vec - x_ref.\n"); @@ -1416,6 +1252,8 @@ colvar::eigenvector::eigenvector(std::string const &conf) cvm::log("The norm of the vector is |v| = "+ cvm::to_str(1.0/cvm::sqrt(eigenvec_invnorm2))+".\n"); } + + return error_code; } @@ -1436,13 +1274,6 @@ void colvar::eigenvector::calc_gradients() } -void colvar::eigenvector::apply_force(colvarvalue const &force) -{ - if (!atoms->noforce) - atoms->apply_colvar_force(force.real_value); -} - - void colvar::eigenvector::calc_force_invgrads() { atoms->read_total_forces(); @@ -1466,12 +1297,14 @@ void colvar::eigenvector::calc_Jacobian_derivative() cvm::real sum = 0.0; + cvm::vector1d dq_1; + atoms->rot_deriv->prepare_derivative(rotation_derivative_dldq::use_dq); for (size_t ia = 0; ia < atoms->size(); ia++) { // Gradient of optimal quaternion wrt current Cartesian position // trick: d(R^-1)/dx = d(R^t)/dx = (dR/dx)^t // we can just transpose the derivatives of the direct matrix - cvm::vector1d &dq_1 = atoms->rot.dQ0_1[ia]; + atoms->rot_deriv->calc_derivative_wrt_group1(ia, nullptr, &dq_1); g11 = 2.0 * quat0[1]*dq_1[1]; g22 = 2.0 * quat0[2]*dq_1[2]; @@ -1506,14 +1339,18 @@ void colvar::eigenvector::calc_Jacobian_derivative() } -simple_scalar_dist_functions(eigenvector) - - -colvar::cartesian::cartesian(std::string const &conf) - : cvc(conf) +colvar::cartesian::cartesian() { set_function_type("cartesian"); + x.type(colvarvalue::type_vector); + disable(f_cvc_explicit_gradient); +} + + +int colvar::cartesian::init(std::string const &conf) +{ + int error_code = cvc::init(conf); atoms = parse_group(conf, "atoms"); @@ -1528,14 +1365,15 @@ colvar::cartesian::cartesian(std::string const &conf) if (use_z) axes.push_back(2); if (axes.size() == 0) { - cvm::error("Error: a \"cartesian\" component was defined with all three axes disabled.\n"); - return; + error_code |= + cvm::error("Error: a \"cartesian\" component was defined with all three axes disabled.\n", + COLVARS_INPUT_ERROR); } - x.type(colvarvalue::type_vector); - disable(f_cvc_explicit_gradient); // Don't try to access atoms if creation of the atom group failed - if (atoms != NULL) x.vector1d_value.resize(atoms->size() * axes.size()); + if (atoms) x.vector1d_value.resize(atoms->size() * axes.size()); + + return error_code; } @@ -1573,3 +1411,24 @@ void colvar::cartesian::apply_force(colvarvalue const &force) } } } + + +cvm::real colvar::cartesian::dist2(colvarvalue const &x1, colvarvalue const &x2) const +{ + return (x1.vector1d_value - x2.vector1d_value).norm2(); +} + + +colvarvalue colvar::cartesian::dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const +{ + return 2.0 * (x1.vector1d_value - x2.vector1d_value); +} + + +colvarvalue colvar::cartesian::dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const +{ + return cartesian::dist2_lgrad(x1, x2); +} + + +void colvar::cartesian::wrap(colvarvalue & /* x_unwrapped */) const {} diff --git a/lib/colvars/colvarcomp_gpath.cpp b/lib/colvars/colvarcomp_gpath.cpp index c73ab4f6c1..46d6b8e5a8 100644 --- a/lib/colvars/colvarcomp_gpath.cpp +++ b/lib/colvars/colvarcomp_gpath.cpp @@ -1,4 +1,4 @@ -#if (__cplusplus >= 201103L) +// -*- c++ -*- // This file is part of the Collective Variables module (Colvars). // The original version of Colvars and its updates are located at: @@ -10,17 +10,29 @@ #include #include #include -#include #include #include #include "colvarmodule.h" #include "colvarvalue.h" -#include "colvarparse.h" #include "colvar.h" #include "colvarcomp.h" -colvar::CartesianBasedPath::CartesianBasedPath(std::string const &conf): cvc(conf), atoms(nullptr), reference_frames(0) { + + +colvar::CartesianBasedPath::CartesianBasedPath() +{ + x.type(colvarvalue::type_scalar); + // Don't use implicit gradient + enable(f_cvc_explicit_gradient); +} + + +int colvar::CartesianBasedPath::init(std::string const &conf) +{ + int error_code = cvc::init(conf); + if (error_code != COLVARS_OK) return error_code; + // Parse selected atoms atoms = parse_group(conf, "atoms"); has_user_defined_fitting = false; @@ -31,13 +43,12 @@ colvar::CartesianBasedPath::CartesianBasedPath(std::string const &conf): cvc(con // Lookup reference column of PDB // Copied from the RMSD class std::string reference_column; - double reference_column_value; + double reference_column_value = 0.0; if (get_keyval(conf, "refPositionsCol", reference_column, std::string(""))) { - bool found = get_keyval(conf, "refPositionsColValue", reference_column_value, 0.0); + bool found = get_keyval(conf, "refPositionsColValue", reference_column_value, reference_column_value); if (found && reference_column_value == 0.0) { - cvm::error("Error: refPositionsColValue, " - "if provided, must be non-zero.\n"); - return; + return cvm::error("Error: refPositionsColValue, if provided, must be non-zero.\n", + COLVARS_INPUT_ERROR); } } // Lookup all reference frames @@ -66,9 +77,6 @@ colvar::CartesianBasedPath::CartesianBasedPath(std::string const &conf): cvc(con tmp_atoms->ref_pos = reference_frames[i_frame]; tmp_atoms->center_ref_pos(); tmp_atoms->enable(f_ag_fit_gradients); - tmp_atoms->rot.request_group1_gradients(tmp_atoms->size()); - tmp_atoms->rot.request_group2_gradients(tmp_atoms->size()); - comp_atoms.push_back(tmp_atoms); } else { // parse a group of atoms for fitting std::string fitting_group_name = std::string("fittingAtoms") + cvm::to_str(i_frame); @@ -91,15 +99,13 @@ colvar::CartesianBasedPath::CartesianBasedPath(std::string const &conf): cvc(con tmp_atoms->enable(f_ag_fit_gradients); tmp_atoms->enable(f_ag_fitting_group); tmp_atoms->fitting_group = tmp_fitting_atoms; - tmp_atoms->rot.request_group1_gradients(tmp_fitting_atoms->size()); - tmp_atoms->rot.request_group2_gradients(tmp_fitting_atoms->size()); reference_fitting_frames.push_back(reference_fitting_position); - comp_atoms.push_back(tmp_atoms); } + tmp_atoms->setup_rotation_derivative(); + comp_atoms.push_back(tmp_atoms); } - x.type(colvarvalue::type_scalar); - // Don't use implicit gradient - enable(f_cvc_explicit_gradient); + + return error_code; } colvar::CartesianBasedPath::~CartesianBasedPath() { @@ -125,8 +131,60 @@ void colvar::CartesianBasedPath::computeDistanceToReferenceFrames(std::vector& result) { + for (size_t i_frame = 0; i_frame < reference_frames.size() - 1; ++i_frame) { + std::vector this_frame_atom_pos(reference_frames[i_frame].size()); + std::vector next_frame_atom_pos(reference_frames[i_frame + 1].size()); + cvm::real frame_rmsd = 0.0; + const size_t this_index = i_frame; + const size_t next_index = i_frame + 1; + // compute COM of two successive images, respectively + cvm::atom_pos reference_cog_this, reference_cog_next; + for (size_t i_atom = 0; i_atom < atoms->size(); ++i_atom) { + reference_cog_this += reference_frames[this_index][i_atom]; + reference_cog_next += reference_frames[next_index][i_atom]; + } + reference_cog_this /= reference_frames[this_index].size(); + reference_cog_next /= reference_frames[next_index].size(); + // move all atoms to COM + for (size_t i_atom = 0; i_atom < atoms->size(); ++i_atom) { + this_frame_atom_pos[i_atom] = reference_frames[this_index][i_atom] - reference_cog_this; + next_frame_atom_pos[i_atom] = reference_frames[next_index][i_atom] - reference_cog_next; + } + cvm::rotation rot_this_to_next; + // compute the optimal rotation + rot_this_to_next.calc_optimal_rotation(this_frame_atom_pos, next_frame_atom_pos); + // compute rmsd between reference frames + for (size_t i_atom = 0; i_atom < atoms->size(); ++i_atom) { + frame_rmsd += (rot_this_to_next.q.rotate(this_frame_atom_pos[i_atom]) - next_frame_atom_pos[i_atom]).norm2(); + } + frame_rmsd /= cvm::real(atoms->size()); + frame_rmsd = cvm::sqrt(frame_rmsd); + result[i_frame] = frame_rmsd; + } +} + + +void colvar::CartesianBasedPath::apply_force(colvarvalue const &force) +{ + cvm::error("Error: using apply_force() in a component of type CartesianBasedPath, which is abstract.\n", + COLVARS_BUG_ERROR); +} + + + +colvar::gspath::gspath() +{ set_function_type("gspath"); +} + + +int colvar::gspath::init(std::string const &conf) +{ + int error_code = CartesianBasedPath::init(conf); + if (error_code != COLVARS_OK) return error_code; + get_keyval(conf, "useSecondClosestFrame", use_second_closest_frame, true); if (use_second_closest_frame == true) { cvm::log(std::string("Geometric path s(σ) will use the second closest frame to compute s_(m-1)\n")); @@ -140,12 +198,14 @@ colvar::gspath::gspath(std::string const &conf): CartesianBasedPath(conf) { cvm::log(std::string("Geometric path s(σ) will use the neighbouring frame to compute s_(m+1)\n")); } if (total_reference_frames < 2) { - cvm::error("Error: you have specified " + cvm::to_str(total_reference_frames) + " reference frames, but gspath requires at least 2 frames.\n"); - return; + return cvm::error("Error: you have specified " + cvm::to_str(total_reference_frames) + + " reference frames, but gspath requires at least 2 frames.\n", + COLVARS_INPUT_ERROR); } GeometricPathCV::GeometricPathBase::initialize(atoms->size(), cvm::atom_pos(), total_reference_frames, use_second_closest_frame, use_third_closest_frame); cvm::log(std::string("Geometric pathCV(s) is initialized.\n")); cvm::log(std::string("Geometric pathCV(s) loaded ") + cvm::to_str(reference_frames.size()) + std::string(" frames.\n")); + return error_code; } void colvar::gspath::updateDistanceToReferenceFrames() { @@ -192,8 +252,9 @@ void colvar::gspath::prepareVectors() { } else { rot_v3.calc_optimal_rotation(tmp_reference_frame_1, tmp_reference_frame_2); } + const auto rot_mat_v3 = rot_v3.matrix(); for (i_atom = 0; i_atom < atoms->size(); ++i_atom) { - v3[i_atom] = rot_v3.q.rotate(tmp_reference_frame_1[i_atom]) - tmp_reference_frame_2[i_atom]; + v3[i_atom] = rot_mat_v3 * tmp_reference_frame_1[i_atom] - tmp_reference_frame_2[i_atom]; } } else { cvm::atom_pos reference_cog_1, reference_cog_3; @@ -227,9 +288,10 @@ void colvar::gspath::prepareVectors() { } else { rot_v3.calc_optimal_rotation(tmp_reference_frame_1, tmp_reference_frame_3); } + const auto rot_mat_v3 = rot_v3.matrix(); for (i_atom = 0; i_atom < atoms->size(); ++i_atom) { // v3 = s_(m+1) - s_m - v3[i_atom] = tmp_reference_frame_3[i_atom] - rot_v3.q.rotate(tmp_reference_frame_1[i_atom]); + v3[i_atom] = tmp_reference_frame_3[i_atom] - rot_mat_v3 * tmp_reference_frame_1[i_atom]; } } } @@ -267,8 +329,17 @@ void colvar::gspath::apply_force(colvarvalue const &force) { (*(comp_atoms[min_frame_index_2])).apply_colvar_force(F); } -colvar::gzpath::gzpath(std::string const &conf): CartesianBasedPath(conf) { + +colvar::gzpath::gzpath() +{ set_function_type("gzpath"); +} + +int colvar::gzpath::init(std::string const &conf) +{ + int error_code = CartesianBasedPath::init(conf); + if (error_code != COLVARS_OK) return error_code; + get_keyval(conf, "useSecondClosestFrame", use_second_closest_frame, true); if (use_second_closest_frame == true) { cvm::log(std::string("Geometric path z(σ) will use the second closest frame to compute s_(m-1)\n")); @@ -287,13 +358,15 @@ colvar::gzpath::gzpath(std::string const &conf): CartesianBasedPath(conf) { cvm::log(std::string("Geometric path z(σ) will use the square of distance from current frame to path compute z\n")); } if (total_reference_frames < 2) { - cvm::error("Error: you have specified " + cvm::to_str(total_reference_frames) + " reference frames, but gzpath requires at least 2 frames.\n"); - return; + return cvm::error("Error: you have specified " + cvm::to_str(total_reference_frames) + + " reference frames, but gzpath requires at least 2 frames.\n", + COLVARS_INPUT_ERROR); } GeometricPathCV::GeometricPathBase::initialize(atoms->size(), cvm::atom_pos(), total_reference_frames, use_second_closest_frame, use_third_closest_frame, b_use_z_square); // Logging cvm::log(std::string("Geometric pathCV(z) is initialized.\n")); cvm::log(std::string("Geometric pathCV(z) loaded ") + cvm::to_str(reference_frames.size()) + std::string(" frames.\n")); + return error_code; } void colvar::gzpath::updateDistanceToReferenceFrames() { @@ -335,12 +408,13 @@ void colvar::gzpath::prepareVectors() { } else { rot_v4.calc_optimal_rotation(tmp_reference_frame_1, tmp_reference_frame_2); } + const auto rot_mat_v4 = rot_v4.matrix(); for (i_atom = 0; i_atom < atoms->size(); ++i_atom) { v1[i_atom] = reference_frames[min_frame_index_1][i_atom] - (*(comp_atoms[min_frame_index_1]))[i_atom].pos; v2[i_atom] = (*(comp_atoms[min_frame_index_2]))[i_atom].pos - reference_frames[min_frame_index_2][i_atom]; // v4 only computes in gzpath // v4 = s_m - s_(m-1) - v4[i_atom] = rot_v4.q.rotate(tmp_reference_frame_1[i_atom]) - tmp_reference_frame_2[i_atom]; + v4[i_atom] = rot_mat_v4 * tmp_reference_frame_1[i_atom] - tmp_reference_frame_2[i_atom]; } if (min_frame_index_3 < 0 || min_frame_index_3 > M) { v3 = v4; @@ -368,9 +442,10 @@ void colvar::gzpath::prepareVectors() { } else { rot_v3.calc_optimal_rotation(tmp_reference_frame_1, tmp_reference_frame_3); } + const auto rot_mat_v3 = rot_v3.matrix(); for (i_atom = 0; i_atom < atoms->size(); ++i_atom) { // v3 = s_(m+1) - s_m - v3[i_atom] = tmp_reference_frame_3[i_atom] - rot_v3.q.rotate(tmp_reference_frame_1[i_atom]); + v3[i_atom] = tmp_reference_frame_3[i_atom] - rot_mat_v3 * tmp_reference_frame_1[i_atom]; } } } @@ -399,14 +474,26 @@ void colvar::gzpath::apply_force(colvarvalue const &force) { } -colvar::CVBasedPath::CVBasedPath(std::string const &conf): cvc(conf) { +colvar::CVBasedPath::CVBasedPath() +{ + set_function_type("gspathCV"); + x.type(colvarvalue::type_scalar); +} + + +int colvar::CVBasedPath::init(std::string const &conf) +{ + int error_code = cvc::init(conf); + if (error_code != COLVARS_OK) return error_code; + // Lookup all available sub-cvcs for (auto it_cv_map = colvar::get_global_cvc_map().begin(); it_cv_map != colvar::get_global_cvc_map().end(); ++it_cv_map) { if (key_lookup(conf, it_cv_map->first.c_str())) { std::vector sub_cvc_confs; get_key_string_multi_value(conf, it_cv_map->first.c_str(), sub_cvc_confs); for (auto it_sub_cvc_conf = sub_cvc_confs.begin(); it_sub_cvc_conf != sub_cvc_confs.end(); ++it_sub_cvc_conf) { - cv.push_back((it_cv_map->second)(*(it_sub_cvc_conf))); + cv.push_back((it_cv_map->second)()); + cv.back()->init(*(it_sub_cvc_conf)); } } } @@ -429,7 +516,7 @@ colvar::CVBasedPath::CVBasedPath(std::string const &conf): cvc(conf) { cvm::log(std::string("Reading path file: ") + path_filename + std::string("\n")); auto &ifs_path = cvm::main()->proxy->input_stream(path_filename); if (!ifs_path) { - return; + return COLVARS_INPUT_ERROR; } std::string line; const std::string token(" "); @@ -450,8 +537,8 @@ colvar::CVBasedPath::CVBasedPath(std::string const &conf): cvc(conf) { cvm::log(cvm::to_str(tmp_cv[i_cv][i - start_index])); } } else { - cvm::error("Error: incorrect format of path file.\n"); - return; + error_code = cvm::error("Error: incorrect format of path file.\n", COLVARS_INPUT_ERROR); + return error_code; } } if (!fields.empty()) { @@ -461,15 +548,18 @@ colvar::CVBasedPath::CVBasedPath(std::string const &conf): cvc(conf) { } cvm::main()->proxy->close_input_stream(path_filename); if (total_reference_frames <= 1) { - cvm::error("Error: there is only 1 or 0 reference frame, which doesn't constitute a path.\n"); - return; + error_code = cvm::error( + "Error: there is only 1 or 0 reference frame, which doesn't constitute a path.\n", + COLVARS_INPUT_ERROR); + return error_code; } if (cv.size() == 0) { - cvm::error("Error: the CV " + name + - " expects one or more nesting components.\n"); - return; + error_code = + cvm::error("Error: the CV " + name + " expects one or more nesting components.\n", + COLVARS_INPUT_ERROR); + return error_code; } - x.type(colvarvalue::type_scalar); + use_explicit_gradients = true; for (size_t i_cv = 0; i_cv < cv.size(); ++i_cv) { if (!cv[i_cv]->is_enabled(f_cvc_explicit_gradient)) { @@ -479,6 +569,8 @@ colvar::CVBasedPath::CVBasedPath(std::string const &conf): cvc(conf) { if (!use_explicit_gradients) { disable(f_cvc_explicit_gradient); } + + return error_code; } void colvar::CVBasedPath::computeDistanceToReferenceFrames(std::vector& result) { @@ -548,8 +640,47 @@ colvar::CVBasedPath::~CVBasedPath() { atom_groups.clear(); } -colvar::gspathCV::gspathCV(std::string const &conf): CVBasedPath(conf) { + +void colvar::CVBasedPath::apply_force(colvarvalue const &force) +{ + cvm::error("Error: using apply_force() in a component of type CVBasedPath, which is abstract.\n", + COLVARS_BUG_ERROR); +} + + +cvm::real colvar::CVBasedPath::dist2(colvarvalue const &x1, colvarvalue const &x2) const +{ + return x1.dist2(x2); +} + + +colvarvalue colvar::CVBasedPath::dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const +{ + return x1.dist2_grad(x2); +} + + +colvarvalue colvar::CVBasedPath::dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const +{ + return x2.dist2_grad(x1); +} + + +void colvar::CVBasedPath::wrap(colvarvalue & /* x_unwrapped */) const {} + + + +colvar::gspathCV::gspathCV() +{ set_function_type("gspathCV"); + x.type(colvarvalue::type_scalar); +} + +int colvar::gspathCV::init(std::string const &conf) +{ + int error_code = CVBasedPath::init(conf); + if (error_code != COLVARS_OK) return error_code; + cvm::log(std::string("Total number of frames: ") + cvm::to_str(total_reference_frames) + std::string("\n")); // Initialize variables for future calculation get_keyval(conf, "useSecondClosestFrame", use_second_closest_frame, true); @@ -565,11 +696,10 @@ colvar::gspathCV::gspathCV(std::string const &conf): CVBasedPath(conf) { cvm::log(std::string("Geometric path s(σ) will use the neighbouring frame to compute s_(m+1)\n")); } if (total_reference_frames < 2) { - cvm::error("Error: you have specified " + cvm::to_str(total_reference_frames) + " reference frames, but gspathCV requires at least 2 frames.\n"); - return; + return cvm::error("Error: you have specified " + cvm::to_str(total_reference_frames) + " reference frames, but gspathCV requires at least 2 frames.\n", COLVARS_INPUT_ERROR); } GeometricPathCV::GeometricPathBase::initialize(cv.size(), ref_cv[0], total_reference_frames, use_second_closest_frame, use_third_closest_frame); - x.type(colvarvalue::type_scalar); + return error_code; } colvar::gspathCV::~gspathCV() {} @@ -671,8 +801,16 @@ void colvar::gspathCV::apply_force(colvarvalue const &force) { } } -colvar::gzpathCV::gzpathCV(std::string const &conf): CVBasedPath(conf) { +colvar::gzpathCV::gzpathCV() +{ set_function_type("gzpathCV"); +} + +int colvar::gzpathCV::init(std::string const &conf) { + + int error_code = CVBasedPath::init(conf); + if (error_code != COLVARS_OK) return error_code; + cvm::log(std::string("Total number of frames: ") + cvm::to_str(total_reference_frames) + std::string("\n")); // Initialize variables for future calculation M = cvm::real(total_reference_frames - 1); @@ -695,11 +833,13 @@ colvar::gzpathCV::gzpathCV(std::string const &conf): CVBasedPath(conf) { cvm::log(std::string("Geometric path z(σ) will use the square of distance from current frame to path compute z\n")); } if (total_reference_frames < 2) { - cvm::error("Error: you have specified " + cvm::to_str(total_reference_frames) + " reference frames, but gzpathCV requires at least 2 frames.\n"); - return; + return cvm::error("Error: you have specified " + cvm::to_str(total_reference_frames) + + " reference frames, but gzpathCV requires at least 2 frames.\n", + COLVARS_INPUT_ERROR); } GeometricPathCV::GeometricPathBase::initialize(cv.size(), ref_cv[0], total_reference_frames, use_second_closest_frame, use_third_closest_frame, b_use_z_square); - x.type(colvarvalue::type_scalar); + + return error_code; } colvar::gzpathCV::~gzpathCV() { @@ -794,5 +934,3 @@ void colvar::gzpathCV::apply_force(colvarvalue const &force) { } } } - -#endif diff --git a/lib/colvars/colvarcomp_neuralnetwork.cpp b/lib/colvars/colvarcomp_neuralnetwork.cpp index 98bd8cddd5..2d2f89d5f5 100644 --- a/lib/colvars/colvarcomp_neuralnetwork.cpp +++ b/lib/colvars/colvarcomp_neuralnetwork.cpp @@ -1,16 +1,31 @@ -#if (__cplusplus >= 201103L) +// -*- c++ -*- + +// This file is part of the Collective Variables module (Colvars). +// The original version of Colvars and its updates are located at: +// https://github.com/Colvars/colvars +// Please update all Colvars source files before making any changes. +// If you wish to distribute your changes, please submit them to the +// Colvars repository at GitHub. #include "colvarmodule.h" #include "colvarvalue.h" -#include "colvarparse.h" #include "colvar.h" #include "colvarcomp.h" #include "colvar_neuralnetworkcompute.h" using namespace neuralnetworkCV; -colvar::neuralNetwork::neuralNetwork(std::string const &conf): linearCombination(conf) { + +colvar::neuralNetwork::neuralNetwork() +{ set_function_type("neuralNetwork"); +} + + +int colvar::neuralNetwork::init(std::string const &conf) +{ + int error_code = linearCombination::init(conf); + if (error_code != COLVARS_OK) return error_code; // the output of neural network consists of multiple values // read "output_component" key to determine it get_keyval(conf, "output_component", m_output_index); @@ -59,8 +74,8 @@ colvar::neuralNetwork::neuralNetwork(std::string const &conf): linearCombination std::string function_name; get_keyval(conf, lookup_key.c_str(), function_name, std::string("")); if (activation_function_map.find(function_name) == activation_function_map.end()) { - cvm::error("Unknown activation function name: \"" + function_name + "\".\n"); - return; + return cvm::error("Unknown activation function name: \"" + function_name + "\".\n", + COLVARS_INPUT_ERROR); } activation_functions.push_back(std::make_pair(false, function_name)); cvm::log(std::string{"The activation function for layer["} + cvm::to_str(num_activation_functions + 1) + std::string{"] is "} + function_name + '\n'); @@ -79,11 +94,13 @@ colvar::neuralNetwork::neuralNetwork(std::string const &conf): linearCombination } // expect the three numbers are equal if ((num_layers_weight != num_layers_bias) || (num_layers_bias != num_activation_functions)) { - cvm::error("Error: the numbers of weights, biases and activation functions do not match.\n"); - return; + return cvm::error( + "Error: the numbers of weights, biases and activation functions do not match.\n", + COLVARS_INPUT_ERROR); } // nn = std::make_unique(); // std::make_unique is only available in C++14 + if (nn) nn.reset(); nn = std::unique_ptr(new neuralnetworkCV::neuralNetworkCompute()); for (size_t i_layer = 0; i_layer < num_layers_weight; ++i_layer) { denseLayer d; @@ -93,8 +110,9 @@ colvar::neuralNetwork::neuralNetwork(std::string const &conf): linearCombination try { d = denseLayer(weight_files[i_layer], bias_files[i_layer], activation_functions[i_layer].second); } catch (std::exception &ex) { - cvm::error("Error on initializing layer " + cvm::to_str(i_layer) + " (" + ex.what() + ")\n", COLVARS_INPUT_ERROR); - return; + return cvm::error("Error on initializing layer " + cvm::to_str(i_layer) + + " (" + ex.what() + ")\n", + COLVARS_INPUT_ERROR); } } else { #endif @@ -104,8 +122,9 @@ colvar::neuralNetwork::neuralNetwork(std::string const &conf): linearCombination try { d = denseLayer(weight_files[i_layer], bias_files[i_layer], f, df); } catch (std::exception &ex) { - cvm::error("Error on initializing layer " + cvm::to_str(i_layer) + " (" + ex.what() + ")\n", COLVARS_INPUT_ERROR); - return; + return cvm::error("Error on initializing layer " + cvm::to_str(i_layer) + + " (" + ex.what() + ")\n", + COLVARS_INPUT_ERROR); } #ifdef LEPTON } @@ -123,11 +142,11 @@ colvar::neuralNetwork::neuralNetwork(std::string const &conf): linearCombination } } } else { - cvm::error("Error: error on adding a new dense layer.\n"); - return; + return cvm::error("Error: error on adding a new dense layer.\n", COLVARS_INPUT_ERROR); } } nn->input().resize(cv.size()); + return error_code; } colvar::neuralNetwork::~neuralNetwork() { @@ -185,4 +204,24 @@ void colvar::neuralNetwork::apply_force(colvarvalue const &force) { } } -#endif + +cvm::real colvar::neuralNetwork::dist2(colvarvalue const &x1, colvarvalue const &x2) const +{ + return x1.dist2(x2); +} + + +colvarvalue colvar::neuralNetwork::dist2_lgrad(colvarvalue const &x1, colvarvalue const &x2) const +{ + return x1.dist2_grad(x2); +} + + +colvarvalue colvar::neuralNetwork::dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const +{ + return x2.dist2_grad(x1); +} + + + +void colvar::neuralNetwork::wrap(colvarvalue & /* x_unwrapped */) const {} diff --git a/lib/colvars/colvarcomp_protein.cpp b/lib/colvars/colvarcomp_protein.cpp index 80ef9b855c..f782095148 100644 --- a/lib/colvars/colvarcomp_protein.cpp +++ b/lib/colvars/colvarcomp_protein.cpp @@ -11,19 +11,23 @@ #include "colvarmodule.h" #include "colvarvalue.h" -#include "colvarparse.h" #include "colvar.h" #include "colvarcomp.h" -colvar::alpha_angles::alpha_angles(std::string const &conf) - : cvc(conf) +colvar::alpha_angles::alpha_angles() { set_function_type("alpha"); enable(f_cvc_explicit_gradient); x.type(colvarvalue::type_scalar); - colvarproxy *proxy = cvm::main()->proxy; + r0 = proxy->angstrom_to_internal(3.3); +} + + +int colvar::alpha_angles::init(std::string const &conf) +{ + int error_code = cvc::init(conf); std::string segment_id; get_keyval(conf, "psfSegID", segment_id, std::string("MAIN")); @@ -44,29 +48,29 @@ colvar::alpha_angles::alpha_angles(std::string const &conf) } } } else { - cvm::error("Error: no residues defined in \"residueRange\".\n"); - return; + error_code |= + cvm::error("Error: no residues defined in \"residueRange\".\n", COLVARS_INPUT_ERROR); } } if (residues.size() < 5) { - cvm::error("Error: not enough residues defined in \"residueRange\".\n"); - return; + error_code |= cvm::error("Error: not enough residues defined in \"residueRange\".\n", + COLVARS_INPUT_ERROR); } std::string const &sid = segment_id; std::vector const &r = residues; - get_keyval(conf, "hBondCoeff", hb_coeff, 0.5); - if ( (hb_coeff < 0.0) || (hb_coeff > 1.0) ) { - cvm::error("Error: hBondCoeff must be defined between 0 and 1.\n"); - return; + get_keyval(conf, "hBondCoeff", hb_coeff, hb_coeff); + if ((hb_coeff < 0.0) || (hb_coeff > 1.0)) { + error_code |= + cvm::error("Error: hBondCoeff must be defined between 0 and 1.\n", COLVARS_INPUT_ERROR); } - get_keyval(conf, "angleRef", theta_ref, 88.0); - get_keyval(conf, "angleTol", theta_tol, 15.0); + get_keyval(conf, "angleRef", theta_ref, theta_ref); + get_keyval(conf, "angleTol", theta_tol, theta_tol); if (hb_coeff < 1.0) { @@ -84,11 +88,9 @@ colvar::alpha_angles::alpha_angles(std::string const &conf) } { - cvm::real r0; - size_t en, ed; - get_keyval(conf, "hBondCutoff", r0, proxy->angstrom_to_internal(3.3)); - get_keyval(conf, "hBondExpNumer", en, 6); - get_keyval(conf, "hBondExpDenom", ed, 8); + get_keyval(conf, "hBondCutoff", r0, r0); + get_keyval(conf, "hBondExpNumer", en, en); + get_keyval(conf, "hBondExpDenom", ed, ed); if (hb_coeff > 0.0) { @@ -103,15 +105,8 @@ colvar::alpha_angles::alpha_angles(std::string const &conf) cvm::log("The hBondCoeff specified will disable the hydrogen bond terms.\n"); } } -} - -colvar::alpha_angles::alpha_angles() - : cvc() -{ - set_function_type("alphaAngles"); - enable(f_cvc_explicit_gradient); - x.type(colvarvalue::type_scalar); + return error_code; } @@ -273,24 +268,27 @@ void colvar::alpha_angles::apply_force(colvarvalue const &force) } -simple_scalar_dist_functions(alpha_angles) - ////////////////////////////////////////////////////////////////////// // dihedral principal component ////////////////////////////////////////////////////////////////////// -colvar::dihedPC::dihedPC(std::string const &conf) - : cvc(conf) +colvar::dihedPC::dihedPC() { - if (cvm::debug()) - cvm::log("Initializing dihedral PC object.\n"); - set_function_type("dihedPC"); // Supported through references to atom groups of children cvcs enable(f_cvc_explicit_gradient); x.type(colvarvalue::type_scalar); +} + + +int colvar::dihedPC::init(std::string const &conf) +{ + int error_code = cvc::init(conf); + + if (cvm::debug()) + cvm::log("Initializing dihedral PC object.\n"); std::string segment_id; get_keyval(conf, "psfSegID", segment_id, std::string("MAIN")); @@ -311,14 +309,14 @@ colvar::dihedPC::dihedPC(std::string const &conf) } } } else { - cvm::error("Error: no residues defined in \"residueRange\".\n"); - return; + error_code |= + cvm::error("Error: no residues defined in \"residueRange\".\n", COLVARS_INPUT_ERROR); } } if (residues.size() < 2) { - cvm::error("Error: dihedralPC requires at least two residues.\n"); - return; + error_code |= + cvm::error("Error: dihedralPC requires at least two residues.\n", COLVARS_INPUT_ERROR); } std::string const &sid = segment_id; @@ -329,15 +327,15 @@ colvar::dihedPC::dihedPC(std::string const &conf) if (get_keyval(conf, "vectorFile", vecFileName, vecFileName)) { get_keyval(conf, "vectorNumber", vecNumber, 0); if (vecNumber < 1) { - cvm::error("A positive value of vectorNumber is required."); - return; + error_code |= + cvm::error("A positive value of vectorNumber is required.", COLVARS_INPUT_ERROR); } std::istream &vecFile = cvm::main()->proxy->input_stream(vecFileName, "dihedral PCA vector file"); if (!vecFile) { - return; + return COLVARS_INPUT_ERROR; } // TODO: adapt to different formats by setting this flag @@ -383,11 +381,10 @@ colvar::dihedPC::dihedPC(std::string const &conf) } if ( coeffs.size() != 4 * (residues.size() - 1)) { - cvm::error("Error: wrong number of coefficients: " + - cvm::to_str(coeffs.size()) + ". Expected " + - cvm::to_str(4 * (residues.size() - 1)) + - " (4 coeffs per residue, minus one residue).\n"); - return; + error_code |= cvm::error("Error: wrong number of coefficients: " + cvm::to_str(coeffs.size()) + + ". Expected " + cvm::to_str(4 * (residues.size() - 1)) + + " (4 coeffs per residue, minus one residue).\n", + COLVARS_INPUT_ERROR); } for (size_t i = 0; i < residues.size()-1; i++) { @@ -413,16 +410,8 @@ colvar::dihedPC::dihedPC(std::string const &conf) if (cvm::debug()) cvm::log("Done initializing dihedPC object.\n"); -} - -colvar::dihedPC::dihedPC() - : cvc() -{ - set_function_type("dihedPC"); - // Supported through references to atom groups of children cvcs - enable(f_cvc_explicit_gradient); - x.type(colvarvalue::type_scalar); + return error_code; } @@ -491,6 +480,3 @@ void colvar::dihedPC::apply_force(colvarvalue const &force) coeffs[2*i+1] * dsindt) * force); } } - - -simple_scalar_dist_functions(dihedPC) diff --git a/lib/colvars/colvarcomp_rotations.cpp b/lib/colvars/colvarcomp_rotations.cpp index f469174a62..a04ace851a 100644 --- a/lib/colvars/colvarcomp_rotations.cpp +++ b/lib/colvars/colvarcomp_rotations.cpp @@ -9,27 +9,39 @@ #include "colvarmodule.h" #include "colvarvalue.h" -#include "colvarparse.h" #include "colvar.h" #include "colvarcomp.h" +#include "colvar_rotation_derivative.h" +struct colvar::orientation::rotation_derivative_impl_: public rotation_derivative { +public: + rotation_derivative_impl_(colvar::orientation* orientation_cvc): + rotation_derivative( + orientation_cvc->rot, orientation_cvc->ref_pos, orientation_cvc->shifted_pos) {} +}; -colvar::orientation::orientation(std::string const &conf) - : cvc() + +colvar::orientation::orientation() { set_function_type("orientation"); + rot_deriv_impl = std::unique_ptr(new rotation_derivative_impl_(this)); disable(f_cvc_explicit_gradient); x.type(colvarvalue::type_quaternion); - colvar::orientation::init(conf); } +colvar::orientation::~orientation() {} + + int colvar::orientation::init(std::string const &conf) { int error_code = cvc::init(conf); atoms = parse_group(conf, "atoms"); + if (!atoms || atoms->size() == 0) { + return error_code | COLVARS_INPUT_ERROR; + } ref_pos.reserve(atoms->size()); if (get_keyval(conf, "refPositions", ref_pos, ref_pos)) { @@ -56,17 +68,18 @@ int colvar::orientation::init(std::string const &conf) } ref_pos.resize(atoms->size()); - cvm::load_coords(file_name.c_str(), &ref_pos, atoms, + error_code |= cvm::load_coords(file_name.c_str(), &ref_pos, atoms, file_col, file_col_value); } } + if (error_code != COLVARS_OK) return error_code; + if (!ref_pos.size()) { return cvm::error("Error: must define a set of " "reference coordinates.\n", COLVARS_INPUT_ERROR); } - cvm::rvector ref_cog(0.0, 0.0, 0.0); size_t i; for (i = 0; i < ref_pos.size(); i++) { @@ -84,30 +97,21 @@ int colvar::orientation::init(std::string const &conf) get_keyval(conf, "closestToQuaternion", ref_quat, cvm::quaternion(1.0, 0.0, 0.0, 0.0)); - // initialize rot member data - if (!atoms->noforce) { - rot.request_group2_gradients(atoms->size()); - } + // If the debug gradients feature is active, debug the rotation gradients + // (note that this won't be active for the orientation CVC itself, because + // colvardeps prevents the flag's activation) + rot.b_debug_gradients = is_enabled(f_cvc_debug_gradient); return error_code; } -colvar::orientation::orientation() - : cvc() -{ - set_function_type("orientation"); - disable(f_cvc_explicit_gradient); - x.type(colvarvalue::type_quaternion); -} - - void colvar::orientation::calc_value() { - rot.b_debug_gradients = is_enabled(f_cvc_debug_gradient); atoms_cog = atoms->center_of_geometry(); - rot.calc_optimal_rotation(ref_pos, atoms->positions_shifted(-1.0 * atoms_cog)); + shifted_pos = atoms->positions_shifted(-1.0 * atoms_cog); + rot.calc_optimal_rotation(ref_pos, shifted_pos); if ((rot.q).inner(ref_quat) >= 0.0) { x.quaternion_value = rot.q; @@ -131,9 +135,12 @@ void colvar::orientation::apply_force(colvarvalue const &force) cvm::quaternion const &FQ = force.quaternion_value; if (!atoms->noforce) { + rot_deriv_impl->prepare_derivative(rotation_derivative_dldq::use_dq); + cvm::vector1d dq0_2; for (size_t ia = 0; ia < atoms->size(); ia++) { + rot_deriv_impl->calc_derivative_wrt_group2(ia, nullptr, &dq0_2); for (size_t i = 0; i < 4; i++) { - (*atoms)[ia].apply_force(FQ[i] * rot.dQ0_2[ia][i]); + (*atoms)[ia].apply_force(FQ[i] * dq0_2[i]); } } } @@ -161,20 +168,15 @@ colvarvalue colvar::orientation::dist2_rgrad(colvarvalue const &x1, } +void colvar::orientation::wrap(colvarvalue & /* x_unwrapped */) const {} -colvar::orientation_angle::orientation_angle(std::string const &conf) - : orientation() + + +colvar::orientation_angle::orientation_angle() { set_function_type("orientationAngle"); init_as_angle(); enable(f_cvc_explicit_gradient); - orientation_angle::init(conf); -} - - -int colvar::orientation_angle::init(std::string const &conf) -{ - return orientation::init(conf); } @@ -182,7 +184,8 @@ void colvar::orientation_angle::calc_value() { atoms_cog = atoms->center_of_geometry(); - rot.calc_optimal_rotation(ref_pos, atoms->positions_shifted(-1.0 * atoms_cog)); + shifted_pos = atoms->positions_shifted(-1.0 * atoms_cog); + rot.calc_optimal_rotation(ref_pos, shifted_pos); if ((rot.q).q0 >= 0.0) { x.real_value = (180.0/PI) * 2.0 * cvm::acos((rot.q).q0); @@ -199,46 +202,59 @@ void colvar::orientation_angle::calc_gradients() ((180.0 / PI) * (-2.0) / cvm::sqrt(1.0 - ((rot.q).q0 * (rot.q).q0))) : 0.0 ); + rot_deriv_impl->prepare_derivative(rotation_derivative_dldq::use_dq); + cvm::vector1d dq0_2; for (size_t ia = 0; ia < atoms->size(); ia++) { - (*atoms)[ia].grad = (dxdq0 * (rot.dQ0_2[ia])[0]); + rot_deriv_impl->calc_derivative_wrt_group2(ia, nullptr, &dq0_2); + (*atoms)[ia].grad = (dxdq0 * dq0_2[0]); } } void colvar::orientation_angle::apply_force(colvarvalue const &force) { - cvm::real const &fw = force.real_value; - if (!atoms->noforce) { - atoms->apply_colvar_force(fw); - } + cvc::apply_force(force); } -simple_scalar_dist_functions(orientation_angle) +cvm::real colvar::orientation_angle::dist2(colvarvalue const &x1, colvarvalue const &x2) const +{ + return cvc::dist2(x1, x2); +} + + +colvarvalue colvar::orientation_angle::dist2_lgrad(colvarvalue const &x1, + colvarvalue const &x2) const +{ + return cvc::dist2_lgrad(x1, x2); +} + + +colvarvalue colvar::orientation_angle::dist2_rgrad(colvarvalue const &x1, + colvarvalue const &x2) const +{ + return cvc::dist2_rgrad(x1, x2); +} + + +void colvar::orientation_angle::wrap(colvarvalue & /* x_unwrapped */) const {} -colvar::orientation_proj::orientation_proj(std::string const &conf) - : orientation() +colvar::orientation_proj::orientation_proj() { set_function_type("orientationProj"); enable(f_cvc_explicit_gradient); x.type(colvarvalue::type_scalar); init_scalar_boundaries(0.0, 1.0); - orientation_proj::init(conf); -} - - -int colvar::orientation_proj::init(std::string const &conf) -{ - return orientation::init(conf); } void colvar::orientation_proj::calc_value() { atoms_cog = atoms->center_of_geometry(); - rot.calc_optimal_rotation(ref_pos, atoms->positions_shifted(-1.0 * atoms_cog)); + shifted_pos = atoms->positions_shifted(-1.0 * atoms_cog); + rot.calc_optimal_rotation(ref_pos, shifted_pos); x.real_value = 2.0 * (rot.q).q0 * (rot.q).q0 - 1.0; } @@ -246,42 +262,28 @@ void colvar::orientation_proj::calc_value() void colvar::orientation_proj::calc_gradients() { cvm::real const dxdq0 = 2.0 * 2.0 * (rot.q).q0; + rot_deriv_impl->prepare_derivative(rotation_derivative_dldq::use_dq); + cvm::vector1d dq0_2; for (size_t ia = 0; ia < atoms->size(); ia++) { - (*atoms)[ia].grad = (dxdq0 * (rot.dQ0_2[ia])[0]); + rot_deriv_impl->calc_derivative_wrt_group2(ia, nullptr, &dq0_2); + (*atoms)[ia].grad = (dxdq0 * dq0_2[0]); } } -void colvar::orientation_proj::apply_force(colvarvalue const &force) -{ - cvm::real const &fw = force.real_value; - if (!atoms->noforce) { - atoms->apply_colvar_force(fw); - } -} - - -simple_scalar_dist_functions(orientation_proj) - - - -colvar::tilt::tilt(std::string const &conf) - : orientation() +colvar::tilt::tilt() { set_function_type("tilt"); x.type(colvarvalue::type_scalar); enable(f_cvc_explicit_gradient); init_scalar_boundaries(-1.0, 1.0); - tilt::init(conf); } int colvar::tilt::init(std::string const &conf) { - int error_code = COLVARS_OK; - - error_code |= orientation::init(conf); + int error_code = orientation_proj::init(conf); get_keyval(conf, "axis", axis, cvm::rvector(0.0, 0.0, 1.0)); if (axis.norm2() != 1.0) { @@ -297,7 +299,8 @@ void colvar::tilt::calc_value() { atoms_cog = atoms->center_of_geometry(); - rot.calc_optimal_rotation(ref_pos, atoms->positions_shifted(-1.0 * atoms_cog)); + shifted_pos = atoms->positions_shifted(-1.0 * atoms_cog); + rot.calc_optimal_rotation(ref_pos, shifted_pos); x.real_value = rot.cos_theta(axis); } @@ -307,64 +310,24 @@ void colvar::tilt::calc_gradients() { cvm::quaternion const dxdq = rot.dcos_theta_dq(axis); + rot_deriv_impl->prepare_derivative(rotation_derivative_dldq::use_dq); + cvm::vector1d dq0_2; for (size_t ia = 0; ia < atoms->size(); ia++) { (*atoms)[ia].grad = cvm::rvector(0.0, 0.0, 0.0); + rot_deriv_impl->calc_derivative_wrt_group2(ia, nullptr, &dq0_2); for (size_t iq = 0; iq < 4; iq++) { - (*atoms)[ia].grad += (dxdq[iq] * (rot.dQ0_2[ia])[iq]); + (*atoms)[ia].grad += (dxdq[iq] * dq0_2[iq]); } } } -void colvar::tilt::apply_force(colvarvalue const &force) -{ - cvm::real const &fw = force.real_value; - if (!atoms->noforce) { - atoms->apply_colvar_force(fw); - } -} - - -simple_scalar_dist_functions(tilt) - - - -colvar::spin_angle::spin_angle(std::string const &conf) - : orientation() +colvar::spin_angle::spin_angle() { set_function_type("spinAngle"); init_as_periodic_angle(); - enable(f_cvc_periodic); enable(f_cvc_explicit_gradient); - spin_angle::init(conf); -} - - -int colvar::spin_angle::init(std::string const &conf) -{ - int error_code = COLVARS_OK; - - error_code |= orientation::init(conf); - - get_keyval(conf, "axis", axis, cvm::rvector(0.0, 0.0, 1.0)); - if (axis.norm2() != 1.0) { - axis /= axis.norm(); - cvm::log("Normalizing rotation axis to "+cvm::to_str(axis)+".\n"); - } - - return error_code; -} - - -colvar::spin_angle::spin_angle() - : orientation() -{ - set_function_type("spinAngle"); - period = 360.0; - enable(f_cvc_periodic); - enable(f_cvc_explicit_gradient); - x.type(colvarvalue::type_scalar); } @@ -372,10 +335,11 @@ void colvar::spin_angle::calc_value() { atoms_cog = atoms->center_of_geometry(); - rot.calc_optimal_rotation(ref_pos, atoms->positions_shifted(-1.0 * atoms_cog)); + shifted_pos = atoms->positions_shifted(-1.0 * atoms_cog); + rot.calc_optimal_rotation(ref_pos, shifted_pos); x.real_value = rot.spin_angle(axis); - this->wrap(x); + wrap(x); } @@ -383,80 +347,20 @@ void colvar::spin_angle::calc_gradients() { cvm::quaternion const dxdq = rot.dspin_angle_dq(axis); + rot_deriv_impl->prepare_derivative(rotation_derivative_dldq::use_dq); + cvm::vector1d dq0_2; for (size_t ia = 0; ia < atoms->size(); ia++) { (*atoms)[ia].grad = cvm::rvector(0.0, 0.0, 0.0); + rot_deriv_impl->calc_derivative_wrt_group2(ia, nullptr, &dq0_2); for (size_t iq = 0; iq < 4; iq++) { - (*atoms)[ia].grad += (dxdq[iq] * (rot.dQ0_2[ia])[iq]); + (*atoms)[ia].grad += (dxdq[iq] * dq0_2[iq]); } } } -void colvar::spin_angle::apply_force(colvarvalue const &force) -{ - cvm::real const &fw = force.real_value; - - if (!atoms->noforce) { - atoms->apply_colvar_force(fw); - } -} - - -cvm::real colvar::spin_angle::dist2(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return diff * diff; -} - - -colvarvalue colvar::spin_angle::dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return 2.0 * diff; -} - - -colvarvalue colvar::spin_angle::dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return (-2.0) * diff; -} - - -void colvar::spin_angle::wrap(colvarvalue &x_unwrapped) const -{ - if ((x_unwrapped.real_value - wrap_center) >= 180.0) { - x_unwrapped.real_value -= 360.0; - return; - } - - if ((x_unwrapped.real_value - wrap_center) < -180.0) { - x_unwrapped.real_value += 360.0; - return; - } - - return; -} - - -colvar::euler_phi::euler_phi(std::string const &conf) - : orientation() -{ - set_function_type("eulerPhi"); - init_as_periodic_angle(); - enable(f_cvc_explicit_gradient); - euler_phi::init(conf); -} - colvar::euler_phi::euler_phi() - : orientation() { set_function_type("eulerPhi"); init_as_periodic_angle(); @@ -464,19 +368,12 @@ colvar::euler_phi::euler_phi() } -int colvar::euler_phi::init(std::string const &conf) -{ - int error_code = COLVARS_OK; - error_code |= orientation::init(conf); - return error_code; -} - - void colvar::euler_phi::calc_value() { atoms_cog = atoms->center_of_geometry(); - rot.calc_optimal_rotation(ref_pos, atoms->positions_shifted(-1.0 * atoms_cog)); + shifted_pos = atoms->positions_shifted(-1.0 * atoms_cog); + rot.calc_optimal_rotation(ref_pos, shifted_pos); const cvm::real& q0 = rot.q.q0; const cvm::real& q1 = rot.q.q1; @@ -499,79 +396,20 @@ void colvar::euler_phi::calc_gradients() const cvm::real dxdq1 = (180.0/PI) * (2 * q0 * (-2 * q1 * q1 - 2 * q2 * q2 + 1) - 4 * q1 * (-2 * q0 * q1 - 2 * q2 * q3)) / denominator; const cvm::real dxdq2 = (180.0/PI) * (-4 * q2 * (-2 * q0 * q1 - 2 * q2 * q3) + 2 * q3 * (-2 * q1 * q1 - 2 * q2 * q2 + 1)) / denominator; const cvm::real dxdq3 = (180.0/PI) * 2 * q2 * (-2 * q1 * q1 - 2 * q2 * q2 + 1) / denominator; + rot_deriv_impl->prepare_derivative(rotation_derivative_dldq::use_dq); + cvm::vector1d dq0_2; for (size_t ia = 0; ia < atoms->size(); ia++) { - (*atoms)[ia].grad = (dxdq0 * (rot.dQ0_2[ia])[0]) + - (dxdq1 * (rot.dQ0_2[ia])[1]) + - (dxdq2 * (rot.dQ0_2[ia])[2]) + - (dxdq3 * (rot.dQ0_2[ia])[3]); + rot_deriv_impl->calc_derivative_wrt_group2(ia, nullptr, &dq0_2); + (*atoms)[ia].grad = (dxdq0 * dq0_2[0]) + + (dxdq1 * dq0_2[1]) + + (dxdq2 * dq0_2[2]) + + (dxdq3 * dq0_2[3]); } } -void colvar::euler_phi::apply_force(colvarvalue const &force) -{ - cvm::real const &fw = force.real_value; - if (!atoms->noforce) { - atoms->apply_colvar_force(fw); - } -} - - -cvm::real colvar::euler_phi::dist2(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return diff * diff; -} - - -colvarvalue colvar::euler_phi::dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return 2.0 * diff; -} - - -colvarvalue colvar::euler_phi::dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return (-2.0) * diff; -} - - -void colvar::euler_phi::wrap(colvarvalue &x_unwrapped) const -{ - if ((x_unwrapped.real_value - wrap_center) >= 180.0) { - x_unwrapped.real_value -= 360.0; - return; - } - - if ((x_unwrapped.real_value - wrap_center) < -180.0) { - x_unwrapped.real_value += 360.0; - return; - } - - return; -} - - -colvar::euler_psi::euler_psi(std::string const &conf) - : orientation() -{ - set_function_type("eulerPsi"); - init_as_periodic_angle(); - enable(f_cvc_explicit_gradient); - euler_psi::init(conf); -} - colvar::euler_psi::euler_psi() - : orientation() { set_function_type("eulerPsi"); init_as_periodic_angle(); @@ -579,19 +417,12 @@ colvar::euler_psi::euler_psi() } -int colvar::euler_psi::init(std::string const &conf) -{ - int error_code = COLVARS_OK; - error_code |= orientation::init(conf); - return error_code; -} - - void colvar::euler_psi::calc_value() { atoms_cog = atoms->center_of_geometry(); - rot.calc_optimal_rotation(ref_pos, atoms->positions_shifted(-1.0 * atoms_cog)); + shifted_pos = atoms->positions_shifted(-1.0 * atoms_cog); + rot.calc_optimal_rotation(ref_pos, shifted_pos); const cvm::real& q0 = rot.q.q0; const cvm::real& q1 = rot.q.q1; @@ -614,79 +445,20 @@ void colvar::euler_psi::calc_gradients() const cvm::real dxdq1 = (180.0/PI) * 2 * q2 * (-2 * q2 * q2 - 2 * q3 * q3 + 1) / denominator; const cvm::real dxdq2 = (180.0/PI) * (2 * q1 * (-2 * q2 * q2 - 2 * q3 * q3 + 1) - 4 * q2 * (-2 * q0 * q3 - 2 * q1 * q2)) / denominator; const cvm::real dxdq3 = (180.0/PI) * (2 * q0 * (-2 * q2 * q2 - 2 * q3 * q3 + 1) - 4 * q3 * (-2 * q0 * q3 - 2 * q1 * q2)) / denominator; + rot_deriv_impl->prepare_derivative(rotation_derivative_dldq::use_dq); + cvm::vector1d dq0_2; for (size_t ia = 0; ia < atoms->size(); ia++) { - (*atoms)[ia].grad = (dxdq0 * (rot.dQ0_2[ia])[0]) + - (dxdq1 * (rot.dQ0_2[ia])[1]) + - (dxdq2 * (rot.dQ0_2[ia])[2]) + - (dxdq3 * (rot.dQ0_2[ia])[3]); + rot_deriv_impl->calc_derivative_wrt_group2(ia, nullptr, &dq0_2); + (*atoms)[ia].grad = (dxdq0 * dq0_2[0]) + + (dxdq1 * dq0_2[1]) + + (dxdq2 * dq0_2[2]) + + (dxdq3 * dq0_2[3]); } } -void colvar::euler_psi::apply_force(colvarvalue const &force) -{ - cvm::real const &fw = force.real_value; - if (!atoms->noforce) { - atoms->apply_colvar_force(fw); - } -} - - -cvm::real colvar::euler_psi::dist2(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return diff * diff; -} - - -colvarvalue colvar::euler_psi::dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return 2.0 * diff; -} - - -colvarvalue colvar::euler_psi::dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - cvm::real diff = x1.real_value - x2.real_value; - diff = (diff < -180.0 ? diff + 360.0 : (diff > 180.0 ? diff - 360.0 : diff)); - return (-2.0) * diff; -} - - -void colvar::euler_psi::wrap(colvarvalue &x_unwrapped) const -{ - if ((x_unwrapped.real_value - wrap_center) >= 180.0) { - x_unwrapped.real_value -= 360.0; - return; - } - - if ((x_unwrapped.real_value - wrap_center) < -180.0) { - x_unwrapped.real_value += 360.0; - return; - } - - return; -} - - -colvar::euler_theta::euler_theta(std::string const &conf) - : orientation() -{ - set_function_type("eulerTheta"); - init_as_angle(); - enable(f_cvc_explicit_gradient); - euler_theta::init(conf); -} - colvar::euler_theta::euler_theta() - : orientation() { set_function_type("eulerTheta"); init_as_angle(); @@ -694,19 +466,12 @@ colvar::euler_theta::euler_theta() } -int colvar::euler_theta::init(std::string const &conf) -{ - int error_code = COLVARS_OK; - error_code |= orientation::init(conf); - return error_code; -} - - void colvar::euler_theta::calc_value() { atoms_cog = atoms->center_of_geometry(); - rot.calc_optimal_rotation(ref_pos, atoms->positions_shifted(-1.0 * atoms_cog)); + shifted_pos = atoms->positions_shifted(-1.0 * atoms_cog); + rot.calc_optimal_rotation(ref_pos, shifted_pos); const cvm::real& q0 = rot.q.q0; const cvm::real& q1 = rot.q.q1; @@ -727,43 +492,13 @@ void colvar::euler_theta::calc_gradients() const cvm::real dxdq1 = (180.0/PI) * -2 * q3 / denominator; const cvm::real dxdq2 = (180.0/PI) * 2 * q0 / denominator; const cvm::real dxdq3 = (180.0/PI) * -2 * q1 / denominator; + rot_deriv_impl->prepare_derivative(rotation_derivative_dldq::use_dq); + cvm::vector1d dq0_2; for (size_t ia = 0; ia < atoms->size(); ia++) { - (*atoms)[ia].grad = (dxdq0 * (rot.dQ0_2[ia])[0]) + - (dxdq1 * (rot.dQ0_2[ia])[1]) + - (dxdq2 * (rot.dQ0_2[ia])[2]) + - (dxdq3 * (rot.dQ0_2[ia])[3]); + rot_deriv_impl->calc_derivative_wrt_group2(ia, nullptr, &dq0_2); + (*atoms)[ia].grad = (dxdq0 * dq0_2[0]) + + (dxdq1 * dq0_2[1]) + + (dxdq2 * dq0_2[2]) + + (dxdq3 * dq0_2[3]); } } - - -void colvar::euler_theta::apply_force(colvarvalue const &force) -{ - cvm::real const &fw = force.real_value; - if (!atoms->noforce) { - atoms->apply_colvar_force(fw); - } -} - - -cvm::real colvar::euler_theta::dist2(colvarvalue const &x1, - colvarvalue const &x2) const -{ - // theta angle is not periodic - return cvc::dist2(x1, x2); -} - - -colvarvalue colvar::euler_theta::dist2_lgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - // theta angle is not periodic - return cvc::dist2_lgrad(x1, x2); -} - - -colvarvalue colvar::euler_theta::dist2_rgrad(colvarvalue const &x1, - colvarvalue const &x2) const -{ - // theta angle is not periodic - return cvc::dist2_rgrad(x1, x2); -} diff --git a/lib/colvars/colvarcomp_volmaps.cpp b/lib/colvars/colvarcomp_volmaps.cpp index 00c7206bc1..a15501ab6a 100644 --- a/lib/colvars/colvarcomp_volmaps.cpp +++ b/lib/colvars/colvarcomp_volmaps.cpp @@ -9,35 +9,18 @@ #include "colvarmodule.h" #include "colvarvalue.h" -#include "colvarparse.h" #include "colvar.h" #include "colvarcomp.h" colvar::map_total::map_total() - : cvc() { set_function_type("mapTotal"); - volmap_id = -1; - volmap_index = -1; - atoms = NULL; x.type(colvarvalue::type_scalar); } -colvar::map_total::map_total(std::string const &conf) - : cvc() // init() will take care of this -{ - set_function_type("mapTotal"); - volmap_id = -1; - volmap_index = -1; - atoms = NULL; - x.type(colvarvalue::type_scalar); - map_total::init(conf); -} - - int colvar::map_total::init(std::string const &conf) { int error_code = cvc::init(conf); @@ -50,12 +33,12 @@ int colvar::map_total::init(std::string const &conf) if ((volmap_name.size() > 0) && (volmap_id >= 0)) { error_code |= - cvm::error("Error: mapName and mapID are mutually exclusive.\n"); + cvm::error("Error: mapName and mapID are mutually exclusive.\n", COLVARS_INPUT_ERROR); } // Parse optional group atoms = parse_group(conf, "atoms", true); - if (atoms != NULL) { + if (atoms) { // Using internal selection if (volmap_name.size()) { @@ -74,11 +57,11 @@ int colvar::map_total::init(std::string const &conf) if (volmap_id >= 0) { volmap_index = proxy->init_volmap_by_id(volmap_id); } - error_code |= volmap_index > 0 ? COLVARS_OK : COLVARS_INPUT_ERROR; + error_code |= (volmap_index >= 0) ? COLVARS_OK : COLVARS_INPUT_ERROR; } if (get_keyval(conf, "atomWeights", atom_weights, atom_weights)) { - if (atoms == NULL) { + if (!atoms) { error_code |= cvm::error("Error: weights can only be assigned when atoms " "are selected explicitly in Colvars.\n", COLVARS_INPUT_ERROR); @@ -133,11 +116,10 @@ void colvar::map_total::calc_gradients() void colvar::map_total::apply_force(colvarvalue const &force) { - colvarproxy *proxy = cvm::main()->proxy; if (atoms) { - if (!atoms->noforce) - atoms->apply_colvar_force(force.real_value); + cvc::apply_force(force); } else { + colvarproxy *proxy = cvm::main()->proxy; proxy->apply_volmap_force(volmap_index, force.real_value); } } diff --git a/lib/colvars/colvardeps.cpp b/lib/colvars/colvardeps.cpp index 2a22b1cb57..46b7917569 100644 --- a/lib/colvars/colvardeps.cpp +++ b/lib/colvars/colvardeps.cpp @@ -129,6 +129,11 @@ int colvardeps::enable(int feature_id, int res; size_t i, j; bool ok; + + if (feature_id < 0 || feature_id >= int(features().size())) { + cvm::error("Error: colvardeps::enable() called with invalid feature_id " + cvm::to_str(feature_id) + "\n"); + return COLVARS_ERROR; + } feature *f = features()[feature_id]; feature_state *fs = &feature_states[feature_id]; diff --git a/lib/colvars/colvardeps.h b/lib/colvars/colvardeps.h index cfc93d0514..1bd304b545 100644 --- a/lib/colvars/colvardeps.h +++ b/lib/colvars/colvardeps.h @@ -253,6 +253,8 @@ public: f_cvb_write_ti_pmf, /// \brief whether this bias uses an external grid to scale the biasing forces f_cvb_scale_biasing_force, + /// \brief whether this bias is applied to one or more ext-Lagrangian colvars + f_cvb_extended, f_cvb_ntot }; @@ -355,6 +357,8 @@ public: f_cvc_lower_boundary, /// This CVC provides a default value for the colvar's upper boundary f_cvc_upper_boundary, + /// CVC accesses atom groups directly (as opposed to going throuh other objects) + f_cvc_explicit_atom_groups, /// CVC calculates atom gradients f_cvc_gradient, /// CVC calculates and stores explicit atom gradients on rank 0 diff --git a/lib/colvars/colvargrid.cpp b/lib/colvars/colvargrid.cpp index 2fd385ccec..11693a7587 100644 --- a/lib/colvars/colvargrid.cpp +++ b/lib/colvars/colvargrid.cpp @@ -8,13 +8,11 @@ // Colvars repository at GitHub. #include -#include #include "colvarmodule.h" #include "colvarvalue.h" #include "colvarparse.h" #include "colvar.h" -#include "colvarcomp.h" #include "colvargrid.h" #include "colvargrid_def.h" @@ -37,6 +35,58 @@ colvar_grid_count::colvar_grid_count(std::vector &colvars, : colvar_grid(colvars, def_count, 1, margin) {} +std::string colvar_grid_count::get_state_params() const +{ + return colvar_grid::get_state_params(); +} + +int colvar_grid_count::parse_params(std::string const &conf, + colvarparse::Parse_Mode const parse_mode) +{ + return colvar_grid::parse_params(conf, parse_mode); +} + +std::istream & colvar_grid_count::read_restart(std::istream &is) +{ + return colvar_grid::read_restart(is); +} + +cvm::memory_stream & colvar_grid_count::read_restart(cvm::memory_stream &is) +{ + return colvar_grid::read_restart(is); +} + +std::ostream & colvar_grid_count::write_restart(std::ostream &os) +{ + return colvar_grid::write_restart(os); +} + +cvm::memory_stream & colvar_grid_count::write_restart(cvm::memory_stream &os) +{ + return colvar_grid::write_restart(os); +} + +std::istream &colvar_grid_count::read_raw(std::istream &is) +{ + return colvar_grid::read_raw(is); +} + +cvm::memory_stream &colvar_grid_count::read_raw(cvm::memory_stream &is) +{ + return colvar_grid::read_raw(is); +} + +std::ostream &colvar_grid_count::write_raw(std::ostream &os, size_t const buf_size) const +{ + return colvar_grid::write_raw(os, buf_size); +} + +cvm::memory_stream &colvar_grid_count::write_raw(cvm::memory_stream &os, + size_t const buf_size) const +{ + return colvar_grid::write_raw(os, buf_size); +} + std::istream & colvar_grid_count::read_multicol(std::istream &is, bool add) { return colvar_grid::read_multicol(is, add); @@ -96,6 +146,58 @@ colvar_grid_scalar::~colvar_grid_scalar() { } +std::string colvar_grid_scalar::get_state_params() const +{ + return colvar_grid::get_state_params(); +} + +int colvar_grid_scalar::parse_params(std::string const &conf, + colvarparse::Parse_Mode const parse_mode) +{ + return colvar_grid::parse_params(conf, parse_mode); +} + +std::istream &colvar_grid_scalar::read_restart(std::istream &is) +{ + return colvar_grid::read_restart(is); +} + +cvm::memory_stream &colvar_grid_scalar::read_restart(cvm::memory_stream &is) +{ + return colvar_grid::read_restart(is); +} + +std::ostream &colvar_grid_scalar::write_restart(std::ostream &os) +{ + return colvar_grid::write_restart(os); +} + +cvm::memory_stream &colvar_grid_scalar::write_restart(cvm::memory_stream &os) +{ + return colvar_grid::write_restart(os); +} + +std::istream &colvar_grid_scalar::read_raw(std::istream &is) +{ + return colvar_grid::read_raw(is); +} + +cvm::memory_stream &colvar_grid_scalar::read_raw(cvm::memory_stream &is) +{ + return colvar_grid::read_raw(is); +} + +std::ostream &colvar_grid_scalar::write_raw(std::ostream &os, size_t const buf_size) const +{ + return colvar_grid::write_raw(os, buf_size); +} + +cvm::memory_stream &colvar_grid_scalar::write_raw(cvm::memory_stream &os, + size_t const buf_size) const +{ + return colvar_grid::write_raw(os, buf_size); +} + std::istream & colvar_grid_scalar::read_multicol(std::istream &is, bool add) { return colvar_grid::read_multicol(is, add); @@ -195,30 +297,63 @@ cvm::real colvar_grid_scalar::entropy() const return bin_volume * sum; } +/// \brief Return the RMSD between this grid's data and another one +/// Grids must have the same dimensions. +cvm::real colvar_grid_scalar::grid_rmsd(colvar_grid_scalar const &other_grid) const +{ + if (other_grid.data.size() != this->data.size()) { + cvm::error("Error: trying to subtract two grids with " + "different size.\n"); + return -1.; + } + + cvm::real sum2 = 0.0; + + if (samples && other_grid.samples) { + for (size_t i = 0; i < data.size(); i++) { + size_t n = samples->get_value(i); + cvm::real us = n ? data[i] / n : 0.0; + n = other_grid.samples->get_value(i); + cvm::real them = n ? other_grid.data[i ] / n : 0.0; + cvm::real d = us - them; + sum2 += d*d; + } + } else { + for (size_t i = 0; i < data.size(); i++) { + cvm::real d = other_grid.data[i] - data[i]; + sum2 += d*d; + } + } + + return sqrt(sum2/this->data.size()); +} + colvar_grid_gradient::colvar_grid_gradient() - : colvar_grid(), - samples(NULL), - weights(NULL) + : colvar_grid(), samples(NULL), full_samples(0), min_samples(0) {} + colvar_grid_gradient::colvar_grid_gradient(std::vector const &nx_i) - : colvar_grid(nx_i, 0.0, nx_i.size()), - samples(NULL), - weights(NULL) + : colvar_grid(nx_i, 0.0, nx_i.size()), samples(NULL), full_samples(0), min_samples(0) {} + colvar_grid_gradient::colvar_grid_gradient(std::vector &colvars) - : colvar_grid(colvars, 0.0, colvars.size()), - samples(NULL), - weights(NULL) + : colvar_grid(colvars, 0.0, colvars.size()), samples(NULL), full_samples(0), min_samples(0) {} +colvar_grid_gradient::colvar_grid_gradient(std::vector &colvars, std::shared_ptr samples_in) + : colvar_grid(colvars, 0.0, colvars.size()), samples(samples_in), full_samples(0), min_samples(0) +{ + samples_in->has_parent_data = true; +} + + colvar_grid_gradient::colvar_grid_gradient(std::string &filename) : colvar_grid(), - samples(NULL), - weights(NULL) + samples(NULL) { std::istream &is = cvm::main()->proxy->input_stream(filename, "gradient file"); @@ -280,6 +415,57 @@ colvar_grid_gradient::colvar_grid_gradient(std::string &filename) cvm::main()->proxy->close_input_stream(filename); } +std::string colvar_grid_gradient::get_state_params() const +{ + return colvar_grid::get_state_params(); +} + +int colvar_grid_gradient::parse_params(std::string const &conf, + colvarparse::Parse_Mode const parse_mode) +{ + return colvar_grid::parse_params(conf, parse_mode); +} + +std::istream &colvar_grid_gradient::read_restart(std::istream &is) +{ + return colvar_grid::read_restart(is); +} + +cvm::memory_stream &colvar_grid_gradient::read_restart(cvm::memory_stream &is) +{ + return colvar_grid::read_restart(is); +} + +std::ostream &colvar_grid_gradient::write_restart(std::ostream &os) +{ + return colvar_grid::write_restart(os); +} + +cvm::memory_stream &colvar_grid_gradient::write_restart(cvm::memory_stream &os) +{ + return colvar_grid::write_restart(os); +} + +std::istream &colvar_grid_gradient::read_raw(std::istream &is) +{ + return colvar_grid::read_raw(is); +} + +cvm::memory_stream &colvar_grid_gradient::read_raw(cvm::memory_stream &is) +{ + return colvar_grid::read_raw(is); +} + +std::ostream &colvar_grid_gradient::write_raw(std::ostream &os, size_t const buf_size) const +{ + return colvar_grid::write_raw(os, buf_size); +} + +cvm::memory_stream &colvar_grid_gradient::write_raw(cvm::memory_stream &os, + size_t const buf_size) const +{ + return colvar_grid::write_raw(os, buf_size); +} std::istream & colvar_grid_gradient::read_multicol(std::istream &is, bool add) { @@ -371,9 +557,38 @@ void colvar_grid_gradient::write_1D_integral(std::ostream &os) } +/// \brief Return the RMSD between this grid's data and another one +/// Grids must have the same dimensions. +cvm::real colvar_grid_gradient::grid_rmsd(colvar_grid_gradient const &other_grid) const +{ + if (other_grid.multiplicity() != this->multiplicity()) { + cvm::error("Error: trying to subtract two grids with " + "different multiplicity.\n"); + return -1.; + } -integrate_potential::integrate_potential(std::vector &colvars, colvar_grid_gradient * gradients) + if (other_grid.data.size() != this->data.size()) { + cvm::error("Error: trying to subtract two grids with " + "different size.\n"); + return -1.; + } + + cvm::real sum2 = 0.0; + std::vector ix; + size_t imult; + for (ix = new_index(); index_ok(ix); incr(ix)) { + for (imult = 0; imult < this->multiplicity(); imult++) { + cvm::real d = this->value_output(ix, imult) - other_grid.value_output(ix, imult); + sum2 += d*d; + } + } + return sqrt(sum2/this->data.size()); +} + + +integrate_potential::integrate_potential(std::vector &colvars, std::shared_ptr gradients) : colvar_grid_scalar(colvars, true), + b_smoothed(false), gradients(gradients) { // parent class colvar_grid_scalar is constructed with margin option set to true @@ -402,8 +617,9 @@ integrate_potential::integrate_potential(std::vector &colvars, colvar_ } -integrate_potential::integrate_potential(colvar_grid_gradient * gradients) - : gradients(gradients) +integrate_potential::integrate_potential(std::shared_ptr gradients) + : b_smoothed(false), + gradients(gradients) { nd = gradients->num_variables(); nx = gradients->number_of_points_vec(); @@ -425,7 +641,7 @@ integrate_potential::integrate_potential(colvar_grid_gradient * gradients) } -int integrate_potential::integrate(const int itmax, const cvm::real &tol, cvm::real & err) +int integrate_potential::integrate(const int itmax, const cvm::real &tol, cvm::real & err, bool verbose) { int iter = 0; @@ -438,22 +654,24 @@ int integrate_potential::integrate(const int itmax, const cvm::real &tol, cvm::r } else { corr = 0.0; } - std::vector ix; // Iterate over valid indices in gradient grid for (ix = new_index(); gradients->index_ok(ix); incr(ix)) { set_value(ix, sum); - sum += (gradients->value_output(ix) - corr) * widths[0]; + cvm::real val = gradients->value_output_smoothed(ix, b_smoothed); + sum += (val - corr) * widths[0]; } if (index_ok(ix)) { // This will happen if non-periodic: then PMF grid has one extra bin wrt gradient grid + // If not, sum should be zero set_value(ix, sum); } } else if (nd <= 3) { nr_linbcg_sym(divergence, data, tol, itmax, iter, err); - cvm::log("Integrated in " + cvm::to_str(iter) + " steps, error: " + cvm::to_str(err) + "\n"); + if (verbose) + cvm::log("Integrated in " + cvm::to_str(iter) + " steps, error: " + cvm::to_str(err)); } else { cvm::error("Cannot integrate PMF in dimension > 3\n"); @@ -477,7 +695,7 @@ void integrate_potential::update_div_neighbors(const std::vector &ix0) std::vector ix(ix0); int i, j, k; - // If not periodic, expanded grid ensures that neighbors of ix0 are valid grid points + // If not periodic, expanded grid ensures that upper neighbors of ix0 are valid grid points if (nd == 1) { return; @@ -509,30 +727,23 @@ void integrate_potential::update_div_neighbors(const std::vector &ix0) } } + void integrate_potential::get_grad(cvm::real * g, std::vector &ix) { - size_t count, i; - bool edge = gradients->wrap_edge(ix); // Detect edge if non-PBC + size_t i; + bool edge = gradients->wrap_detect_edge(ix); // Detect edge if non-PBC - if (gradients->samples) { - count = gradients->samples->value(ix); - } else { - count = 1; + if (edge) { + for ( i = 0; ivalue(ix)); - cvm::real const fact = 1.0 / count; - for ( i = 0; ivector_value_smoothed(ix, g, b_smoothed); } + void integrate_potential::update_div_local(const std::vector &ix0) { const size_t linear_index = address(ix0); diff --git a/lib/colvars/colvargrid.h b/lib/colvars/colvargrid.h index e2fc1e0fe2..4cbbb10961 100644 --- a/lib/colvars/colvargrid.h +++ b/lib/colvars/colvargrid.h @@ -10,21 +10,23 @@ #ifndef COLVARGRID_H #define COLVARGRID_H -#include -#include +#include +#include #include "colvar.h" #include "colvarmodule.h" #include "colvarvalue.h" #include "colvarparse.h" + /// \brief Grid of values of a function of several collective /// variables \param T The data type /// /// Only scalar colvars supported so far: vector colvars are treated as arrays template class colvar_grid : public colvarparse { -protected: + //protected: +public: // TODO create accessors for these after all instantiations work /// Number of dimensions size_t nd; @@ -374,7 +376,7 @@ public: { for (size_t i = 0; i < nd; i++) { if (periodic[i]) { - ix[i] = (ix[i] + nx[i]) % nx[i]; //to ensure non-negative result + ix[i] = (ix[i] + nx[i]) % nx[i]; // Avoid modulo with negative operands (implementation-defined) } else { if (ix[i] < 0 || ix[i] >= nx[i]) { cvm::error("Trying to wrap illegal index vector (non-PBC) for a grid point: " @@ -387,25 +389,58 @@ public: /// Wrap an index vector around periodic boundary conditions /// or detects edges if non-periodic - inline bool wrap_edge(std::vector & ix) const + inline bool wrap_detect_edge(std::vector & ix) const { bool edge = false; for (size_t i = 0; i < nd; i++) { if (periodic[i]) { - ix[i] = (ix[i] + nx[i]) % nx[i]; //to ensure non-negative result - } else if (ix[i] == -1 || ix[i] == nx[i]) { + ix[i] = (ix[i] + nx[i]) % nx[i]; // Avoid modulo with negative operands (implementation-defined) + } else if (ix[i] < 0 || ix[i] >= nx[i]) { edge = true; } } return edge; } + /// Wrap an index vector around periodic boundary conditions + /// or brings back to nearest edge if non-periodic + inline bool wrap_to_edge(std::vector & ix, std::vector & edge_bin) const + { + bool edge = false; + edge_bin = ix; + for (size_t i = 0; i < nd; i++) { + if (periodic[i]) { + ix[i] = (ix[i] + nx[i]) % nx[i]; // Avoid modulo with negative operands (implementation-defined) + edge_bin[i] = ix[i]; + } else if (ix[i] < 0) { + edge = true; + edge_bin[i] = 0; + } else if (ix[i] >= nx[i]) { + edge = true; + edge_bin[i] = nx[i] - 1; + } + } + return edge; + } + + /// \brief Report the bin corresponding to the current value of variable i inline int current_bin_scalar(int const i) const { return value_to_bin_scalar(use_actual_value[i] ? cv[i]->actual_value() : cv[i]->value(), i); } + /// \brief Report the flattened bin address corresponding to the current value of all variables + /// and assign first or last bin if out of boundaries + inline int current_bin_flat_bound() const + { + std::vector index = new_index(); + for (size_t i = 0; i < nd; i++) { + index[i] = current_bin_scalar_bound(i); + } + return address(index); + } + /// \brief Report the bin corresponding to the current value of variable i /// and assign first or last bin if out of boundaries inline int current_bin_scalar_bound(int const i) const @@ -447,6 +482,9 @@ public: inline int value_to_bin_scalar_bound(colvarvalue const &value, const int i) const { int bin_index = cvm::floor( (value.real_value - lower_boundaries[i].real_value) / widths[i] ); + + // Wrap bins for periodic dimensions before truncating + if (periodic[i]) bin_index %= nx[i]; if (bin_index < 0) bin_index=0; if (bin_index >=int(nx[i])) bin_index=int(nx[i])-1; return (int) bin_index; @@ -490,6 +528,13 @@ public: data[i] = t; } + /// Get the value at the point with linear address i (for speed) + inline T get_value(size_t i) const + { + return data[i]; + } + + /// \brief Get the change from this to other_grid /// and store the result in this. /// this_grid := other_grid - this_grid @@ -515,6 +560,7 @@ public: has_data = true; } + /// \brief Copy data from another grid of the same type, AND /// identical definition (boundaries, widths) /// Added for shared ABF. @@ -753,6 +799,7 @@ public: has_data = true; } + // /// Get the pointer to the binned value indexed by ix // inline T const *value_p (std::vector const &ix) // { @@ -803,109 +850,12 @@ public: } } - /// Write the grid parameters (number of colvars, boundaries, width and number of points) - std::ostream & write_params(std::ostream &os) - { - size_t i; - os << "grid_parameters {\n n_colvars " << nd << "\n"; + /// Write the current grid parameters to a string + std::string get_state_params() const; - os << " lower_boundaries "; - for (i = 0; i < nd; i++) - os << " " << lower_boundaries[i]; - os << "\n"; - - os << " upper_boundaries "; - for (i = 0; i < nd; i++) - os << " " << upper_boundaries[i]; - os << "\n"; - - os << " widths "; - for (i = 0; i < nd; i++) - os << " " << widths[i]; - os << "\n"; - - os << " sizes "; - for (i = 0; i < nd; i++) - os << " " << nx[i]; - os << "\n"; - - os << "}\n"; - return os; - } - - /// Read a grid definition from a config string + /// Read new grid parameters from a string int parse_params(std::string const &conf, - colvarparse::Parse_Mode const parse_mode = colvarparse::parse_normal) - { - if (cvm::debug()) cvm::log("Reading grid configuration from string.\n"); - - std::vector old_nx = nx; - std::vector old_lb = lower_boundaries; - std::vector old_ub = upper_boundaries; - std::vector old_w = widths; - - { - size_t nd_in = 0; - // this is only used in state files - colvarparse::get_keyval(conf, "n_colvars", nd_in, nd, colvarparse::parse_silent); - if (nd_in != nd) { - cvm::error("Error: trying to read data for a grid " - "that contains a different number of colvars ("+ - cvm::to_str(nd_in)+") than the grid defined " - "in the configuration file("+cvm::to_str(nd)+ - ").\n"); - return COLVARS_ERROR; - } - } - - // underscore keywords are used in state file - colvarparse::get_keyval(conf, "lower_boundaries", - lower_boundaries, lower_boundaries, colvarparse::parse_silent); - colvarparse::get_keyval(conf, "upper_boundaries", - upper_boundaries, upper_boundaries, colvarparse::parse_silent); - - // camel case keywords are used in config file - colvarparse::get_keyval(conf, "lowerBoundaries", - lower_boundaries, lower_boundaries, parse_mode); - colvarparse::get_keyval(conf, "upperBoundaries", - upper_boundaries, upper_boundaries, parse_mode); - - colvarparse::get_keyval(conf, "widths", widths, widths, parse_mode); - - // only used in state file - colvarparse::get_keyval(conf, "sizes", nx, nx, colvarparse::parse_silent); - - if (nd < lower_boundaries.size()) nd = lower_boundaries.size(); - - if (! use_actual_value.size()) use_actual_value.assign(nd, false); - if (! periodic.size()) periodic.assign(nd, false); - if (! widths.size()) widths.assign(nd, 1.0); - - cvm::real eps = 1.e-10; - - bool new_params = false; - if (old_nx.size()) { - for (size_t i = 0; i < nd; i++) { - if (old_nx[i] != nx[i] || - cvm::sqrt(cv[i]->dist2(old_lb[i], lower_boundaries[i])) > eps || - cvm::sqrt(cv[i]->dist2(old_ub[i], upper_boundaries[i])) > eps || - cvm::fabs(old_w[i] - widths[i]) > eps) { - new_params = true; - } - } - } else { - new_params = true; - } - - // reallocate the array in case the grid params have just changed - if (new_params) { - init_from_boundaries(); - // data.clear(); // no longer needed: setup calls clear() - return this->setup(nx, T(), mult); - } - - return COLVARS_OK; - } + colvarparse::Parse_Mode const parse_mode = colvarparse::parse_normal); /// \brief Check that the grid information inside (boundaries, /// widths, ...) is consistent with the current setting of the @@ -950,83 +900,33 @@ public: } } + /// Read all grid parameters and data from a formatted stream + std::istream & read_restart(std::istream &is); - /// \brief Read grid entry in restart file - std::istream & read_restart(std::istream &is) - { - std::streampos const start_pos = is.tellg(); - std::string key, conf; - if ((is >> key) && (key == std::string("grid_parameters"))) { - is.seekg(start_pos, std::ios::beg); - is >> colvarparse::read_block("grid_parameters", &conf); - parse_params(conf, colvarparse::parse_silent); - } else { - cvm::log("Grid parameters are missing in the restart file, using those from the configuration.\n"); - is.seekg(start_pos, std::ios::beg); - } - read_raw(is); - return is; - } + /// Read all grid parameters and data from an unformatted stream + cvm::memory_stream & read_restart(cvm::memory_stream &is); - /// \brief Write grid entry in restart file - std::ostream & write_restart(std::ostream &os) - { - write_params(os); - write_raw(os); - return os; - } + /// Write all grid parameters and data to a formatted stream + std::ostream & write_restart(std::ostream &os); + /// Write all grid parameters and data to an unformatted stream + cvm::memory_stream & write_restart(cvm::memory_stream &os); - /// \brief Write the grid data without labels, as they are - /// represented in memory - /// \param buf_size Number of values per line - std::ostream & write_raw(std::ostream &os, - size_t const buf_size = 3) const - { - std::streamsize const w = os.width(); - std::streamsize const p = os.precision(); + /// Read all grid parameters and data from a formatted stream + std::istream &read_raw(std::istream &is); - std::vector ix = new_index(); - size_t count = 0; - for ( ; index_ok(ix); incr(ix)) { - for (size_t imult = 0; imult < mult; imult++) { - os << " " - << std::setw(w) << std::setprecision(p) - << value_output(ix, imult); - if (((++count) % buf_size) == 0) - os << "\n"; - } - } - // write a final newline only if buffer is not empty - if ((count % buf_size) != 0) - os << "\n"; + /// Read all grid parameters and data from an unformatted stream + cvm::memory_stream &read_raw(cvm::memory_stream &is); - return os; - } + /// Write all grid data to a formatted stream (without labels, as they are represented in memory) + /// \param[in,out] os Stream object + /// \param[in] buf_size Number of values per line + std::ostream &write_raw(std::ostream &os, size_t const buf_size = 3) const; - /// \brief Read data written by colvar_grid::write_raw() - std::istream & read_raw(std::istream &is) - { - std::streampos const start_pos = is.tellg(); - - for (std::vector ix = new_index(); index_ok(ix); incr(ix)) { - for (size_t imult = 0; imult < mult; imult++) { - T new_value; - if (is >> new_value) { - value_input(ix, new_value, imult); - } else { - is.clear(); - is.seekg(start_pos, std::ios::beg); - is.setstate(std::ios::failbit); - cvm::error("Error: failed to read all of the grid points from file. Possible explanations: grid parameters in the configuration (lowerBoundary, upperBoundary, width) are different from those in the file, or the file is corrupt/incomplete.\n"); - return is; - } - } - } - - has_data = true; - return is; - } + /// Write all grid data to an unformatted stream + /// \param[in,out] os Stream object + /// \param[in] buf_size Number of values per line (note: ignored because there is no formatting) + cvm::memory_stream &write_raw(cvm::memory_stream &os, size_t const buf_size = 3) const; /// Read a grid written by write_multicol(), incrementing if add is true std::istream & read_multicol(std::istream &is, bool add = false); @@ -1082,16 +982,50 @@ public: } /// \brief Get the binned count indexed by ix from the newly read data - inline size_t const & new_count(std::vector const &ix, - size_t const &imult = 0) + inline size_t const & new_value(std::vector const &ix) { - return new_data[address(ix) + imult]; + return new_data[address(ix)]; } + /// Write the current grid parameters to a string + std::string get_state_params() const; + + /// Read new grid parameters from a string + int parse_params(std::string const &conf, + colvarparse::Parse_Mode const parse_mode = colvarparse::parse_normal); + + /// Read all grid parameters and data from a formatted stream + std::istream & read_restart(std::istream &is); + + /// Read all grid parameters and data from an unformatted stream + cvm::memory_stream & read_restart(cvm::memory_stream &is); + + /// Write all grid parameters and data to a formatted stream + std::ostream & write_restart(std::ostream &os); + + /// Write all grid parameters and data to an unformatted stream + cvm::memory_stream & write_restart(cvm::memory_stream &os); + + /// Read all grid parameters and data from a formatted stream + std::istream &read_raw(std::istream &is); + + /// Read all grid parameters and data from an unformatted stream + cvm::memory_stream &read_raw(cvm::memory_stream &is); + + /// Write all grid data to a formatted stream (without labels, as they are represented in memory) + /// \param[in,out] os Stream object + /// \param[in] buf_size Number of values per line + std::ostream &write_raw(std::ostream &os, size_t const buf_size = 3) const; + + /// Write all grid data to an unformatted stream + /// \param[in,out] os Stream object + /// \param[in] buf_size Number of values per line (note: ignored because there is no formatting) + cvm::memory_stream &write_raw(cvm::memory_stream &os, size_t const buf_size = 3) const; + /// Read a grid written by write_multicol(), incrementin if data is true std::istream & read_multicol(std::istream &is, bool add = false); - /// Read a grid written by write_multicol(), incrementin if data is true + /// Read a grid written by write_multicol(), incrementing if add is true int read_multicol(std::string const &filename, std::string description = "grid file", bool add = false); @@ -1129,10 +1063,88 @@ public: has_data = true; } + /// \brief Return the average number of samples in a given "radius" around current bin + /// Really a hypercube of length 2*radius + 1 + inline int local_sample_count(int radius) + { + std::vector ix0 = new_index(); + std::vector ix = new_index(); + + for (size_t i = 0; i < nd; i++) { + ix0[i] = current_bin_scalar_bound(i); + } + if (radius < 1) { + // Simple case: no averaging + if (index_ok(ix0)) + return value(ix0); + else + return 0; + } + size_t count = 0; + size_t nbins = 0; + int i, j, k; + bool edge; + ix = ix0; + // Treat each dimension separately to simplify code + switch (nd) + { + case 1: + for (i = -radius; i <= radius; i++) { + ix[0] = ix0[0] + i; + edge = wrap_detect_edge(ix); + if (!edge) { + nbins++; + count += value(ix); + } + } + break; + case 2: + for (i = -radius; i <= radius; i++) { + ix[0] = ix0[0] + i; + for (j = -radius; j <= radius; j++) { + ix[1] = ix0[1] + j; + edge = wrap_detect_edge(ix); + if (!edge) { + nbins++; + count += value(ix); + } + } + } + break; + case 3: + for (i = -radius; i <= radius; i++) { + ix[0] = ix0[0] + i; + for (j = -radius; j <= radius; j++) { + ix[1] = ix0[1] + j; + for (k = -radius; k <= radius; k++) { + ix[2] = ix0[2] + k; + edge = wrap_detect_edge(ix); + if (!edge) { + nbins++; + count += value(ix); + } + } + } + } + break; + default: + cvm::error("Error: local_sample_count is not implemented for grids of dimension > 3", COLVARS_NOT_IMPLEMENTED); + break; + } + + if (nbins) + // Integer division - an error on the order of 1 doesn't matter + return count / nbins; + else + return 0.0; + } + + /// \brief Return the log-gradient from finite differences /// on the *same* grid for dimension n + /// (colvar_grid_count) inline cvm::real log_gradient_finite_diff(const std::vector &ix0, - int n = 0) + int n = 0, int offset = 0) { cvm::real A0, A1, A2; std::vector ix = ix0; @@ -1140,10 +1152,10 @@ public: // TODO this can be rewritten more concisely with wrap_edge() if (periodic[n]) { ix[n]--; wrap(ix); - A0 = value(ix); + A0 = value(ix) + offset; ix = ix0; ix[n]++; wrap(ix); - A1 = value(ix); + A1 = value(ix) + offset; if (A0 * A1 == 0) { return 0.; // can't handle empty bins } else { @@ -1152,10 +1164,10 @@ public: } } else if (ix[n] > 0 && ix[n] < nx[n]-1) { // not an edge ix[n]--; - A0 = value(ix); + A0 = value(ix) + offset; ix = ix0; ix[n]++; - A1 = value(ix); + A1 = value(ix) + offset; if (A0 * A1 == 0) { return 0.; // can't handle empty bins } else { @@ -1166,9 +1178,9 @@ public: // edge: use 2nd order derivative int increment = (ix[n] == 0 ? 1 : -1); // move right from left edge, or the other way around - A0 = value(ix); - ix[n] += increment; A1 = value(ix); - ix[n] += increment; A2 = value(ix); + A0 = value(ix) + offset; + ix[n] += increment; A1 = value(ix) + offset; + ix[n] += increment; A2 = value(ix) + offset; if (A0 * A1 * A2 == 0) { return 0.; // can't handle empty bins } else { @@ -1178,8 +1190,10 @@ public: } } + /// \brief Return the gradient of discrete count from finite differences /// on the *same* grid for dimension n + /// (colvar_grid_count) inline cvm::real gradient_finite_diff(const std::vector &ix0, int n = 0) { @@ -1261,10 +1275,45 @@ public: has_data = true; } + /// Write the current grid parameters to a string + std::string get_state_params() const; + + /// Read new grid parameters from a string + int parse_params(std::string const &conf, + colvarparse::Parse_Mode const parse_mode = colvarparse::parse_normal); + + /// Read all grid parameters and data from a formatted stream + std::istream & read_restart(std::istream &is); + + /// Read all grid parameters and data from an unformatted stream + cvm::memory_stream & read_restart(cvm::memory_stream &is); + + /// Write all grid parameters and data to a formatted stream + std::ostream & write_restart(std::ostream &os); + + /// Write all grid parameters and data to an unformatted stream + cvm::memory_stream & write_restart(cvm::memory_stream &os); + + /// Read all grid parameters and data from a formatted stream + std::istream &read_raw(std::istream &is); + + /// Read all grid parameters and data from an unformatted stream + cvm::memory_stream &read_raw(cvm::memory_stream &is); + + /// Write all grid data to a formatted stream (without labels, as they are represented in memory) + /// \param[in,out] os Stream object + /// \param[in] buf_size Number of values per line + std::ostream &write_raw(std::ostream &os, size_t const buf_size = 3) const; + + /// Write all grid data to an unformatted stream + /// \param[in,out] os Stream object + /// \param[in] buf_size Number of values per line (note: ignored because there is no formatting) + cvm::memory_stream &write_raw(cvm::memory_stream &os, size_t const buf_size = 3) const; + /// Read a grid written by write_multicol(), incrementin if data is true std::istream & read_multicol(std::istream &is, bool add = false); - /// Read a grid written by write_multicol(), incrementin if data is true + /// Read a grid written by write_multicol(), incrementing if add is true int read_multicol(std::string const &filename, std::string description = "grid file", bool add = false); @@ -1336,8 +1385,61 @@ public: } } + + /// \brief Return the log-gradient from finite differences + /// on the *same* grid for dimension n + /// (colvar_grid_scalar) + inline cvm::real log_gradient_finite_diff(const std::vector &ix0, + int n = 0, int offset = 0) + { + cvm::real A0, A1, A2; + std::vector ix = ix0; + + // TODO this can be rewritten more concisely with wrap_edge() + if (periodic[n]) { + ix[n]--; wrap(ix); + A0 = value(ix) + offset; + ix = ix0; + ix[n]++; wrap(ix); + A1 = value(ix) + offset; + if (A0 * A1 == 0) { + return 0.; // can't handle empty bins + } else { + return (cvm::logn(A1) - cvm::logn(A0)) + / (widths[n] * 2.); + } + } else if (ix[n] > 0 && ix[n] < nx[n]-1) { // not an edge + ix[n]--; + A0 = value(ix) + offset; + ix = ix0; + ix[n]++; + A1 = value(ix) + offset; + if (A0 * A1 == 0) { + return 0.; // can't handle empty bins + } else { + return (cvm::logn(A1) - cvm::logn(A0)) + / (widths[n] * 2.); + } + } else { + // edge: use 2nd order derivative + int increment = (ix[n] == 0 ? 1 : -1); + // move right from left edge, or the other way around + A0 = value(ix) + offset; + ix[n] += increment; A1 = value(ix) + offset; + ix[n] += increment; A2 = value(ix) + offset; + if (A0 * A1 * A2 == 0) { + return 0.; // can't handle empty bins + } else { + return (-1.5 * cvm::logn(A0) + 2. * cvm::logn(A1) + - 0.5 * cvm::logn(A2)) * increment / widths[n]; + } + } + } + + /// \brief Return the gradient of discrete count from finite differences /// on the *same* grid for dimension n + /// (colvar_grid_scalar) inline cvm::real gradient_finite_diff(const std::vector &ix0, int n = 0) { @@ -1365,7 +1467,7 @@ public: if (A0 * A1 == 0) { return 0.; // can't handle empty bins } else { - return (A1 - A0) / (widths[n] * 2.); + return cvm::real(A1 - A0) / (widths[n] * 2.); } } else { // edge: use 2nd order derivative @@ -1374,27 +1476,29 @@ public: A0 = value(ix); ix[n] += increment; A1 = value(ix); ix[n] += increment; A2 = value(ix); - return (-1.5 * A0 + 2. * A1 - - 0.5 * A2) * increment / widths[n]; + return (-1.5 * cvm::real(A0) + 2. * cvm::real(A1) + - 0.5 * cvm::real(A2)) * increment / widths[n]; } } + /// \brief Return the value of the function at ix divided by its /// number of samples (if the count grid is defined) - virtual cvm::real value_output(std::vector const &ix, - size_t const &imult = 0) const + virtual inline cvm::real value_output(std::vector const &ix, + size_t const &imult = 0) const override { + int s; if (imult > 0) { cvm::error("Error: trying to access a component " "larger than 1 in a scalar data grid.\n"); return 0.; } if (samples) { - return (samples->value(ix) > 0) ? - (data[address(ix)] / cvm::real(samples->value(ix))) : + return ( (s = samples->value(ix)) > 0) ? + (data[address(ix) + imult] / cvm::real(s)) : 0.0; } else { - return data[address(ix)]; + return data[address(ix) + imult]; } } @@ -1402,7 +1506,7 @@ public: virtual void value_input(std::vector const &ix, cvm::real const &new_value, size_t const &imult = 0, - bool add = false) + bool add = false) override { if (imult > 0) { cvm::error("Error: trying to access a component " @@ -1411,7 +1515,7 @@ public: } if (add) { if (samples) - data[address(ix)] += new_value * samples->new_count(ix); + data[address(ix)] += new_value * samples->new_value(ix); else data[address(ix)] += new_value; } else { @@ -1438,6 +1542,10 @@ public: /// \brief Assuming that the map is a normalized probability density, /// calculates the entropy (uses widths if they are defined) cvm::real entropy() const; + + /// \brief Return the RMSD between this grid's data and another one + /// Grids must have the same dimensions. + cvm::real grid_rmsd(colvar_grid_scalar const &other_grid) const; }; @@ -1449,11 +1557,7 @@ public: /// \brief Provide the sample count by which each binned value /// should be divided - colvar_grid_count *samples; - - /// \brief Provide the floating point weights by which each binned value - /// should be divided (alternate to samples, only one should be non-null) - colvar_grid_scalar *weights; + std::shared_ptr samples; /// Default constructor colvar_grid_gradient(); @@ -1471,26 +1575,68 @@ public: /// Constructor from a multicol file colvar_grid_gradient(std::string &filename); - /// Read a grid written by write_multicol(), incrementin if data is true - virtual std::istream & read_multicol(std::istream &is, bool add = false); + /// Constructor from a vector of colvars and a pointer to the count grid + colvar_grid_gradient(std::vector &colvars, std::shared_ptr samples_in); + + /// Parameters for smoothing data with low sampling + int full_samples; + int min_samples; + + /// Write the current grid parameters to a string + std::string get_state_params() const; + + /// Read new grid parameters from a string + int parse_params(std::string const &conf, + colvarparse::Parse_Mode const parse_mode = colvarparse::parse_normal); + + /// Read all grid parameters and data from a formatted stream + std::istream & read_restart(std::istream &is); + + /// Read all grid parameters and data from an unformatted stream + cvm::memory_stream & read_restart(cvm::memory_stream &is); + + /// Write all grid parameters and data to a formatted stream + std::ostream & write_restart(std::ostream &os); + + /// Write all grid parameters and data to an unformatted stream + cvm::memory_stream & write_restart(cvm::memory_stream &os); + + /// Read all grid parameters and data from a formatted stream + std::istream &read_raw(std::istream &is); + + /// Read all grid parameters and data from an unformatted stream + cvm::memory_stream &read_raw(cvm::memory_stream &is); + + /// Write all grid data to a formatted stream (without labels, as they are represented in memory) + /// \param[in,out] os Stream object + /// \param[in] buf_size Number of values per line + std::ostream &write_raw(std::ostream &os, size_t const buf_size = 3) const; + + /// Write all grid data to an unformatted stream + /// \param[in,out] os Stream object + /// \param[in] buf_size Number of values per line (note: ignored because there is no formatting) + cvm::memory_stream &write_raw(cvm::memory_stream &os, size_t const buf_size = 3) const; /// Read a grid written by write_multicol(), incrementin if data is true - virtual int read_multicol(std::string const &filename, + std::istream & read_multicol(std::istream &is, bool add = false); + + /// Read a grid written by write_multicol(), incrementin if data is true + int read_multicol(std::string const &filename, std::string description = "grid file", bool add = false); /// Write grid in a format which is both human-readable and gnuplot-friendly - virtual std::ostream & write_multicol(std::ostream &os) const; + std::ostream & write_multicol(std::ostream &os) const; /// Write grid in a format which is both human-readable and gnuplot-friendly - virtual int write_multicol(std::string const &filename, + int write_multicol(std::string const &filename, std::string description = "grid file") const; /// Write the grid data without labels, as they are represented in memory - virtual std::ostream & write_opendx(std::ostream &os) const; + std::ostream & write_opendx(std::ostream &os) const; /// Write the grid data without labels, as they are represented in memory - virtual int write_opendx(std::string const &filename, + int write_opendx(std::string const &filename, std::string description = "grid file") const; /// \brief Get a vector with the binned value(s) indexed by ix, normalized if applicable @@ -1516,6 +1662,7 @@ public: } } + /// \brief Accumulate the value inline void acc_value(std::vector const &ix, std::vector const &values) { for (size_t imult = 0; imult < mult; imult++) { @@ -1535,28 +1682,89 @@ public: samples->incr_count(ix); } - /// \brief Accumulate the gradient based on the force (i.e. sums the - /// opposite of the force) with a non-integer weight - inline void acc_force_weighted(std::vector const &ix, - cvm::real const *forces, - cvm::real weight) { - for (size_t imult = 0; imult < mult; imult++) { - data[address(ix) + imult] -= forces[imult] * weight; - } - weights->acc_value(ix, weight); - } - /// \brief Return the value of the function at ix divided by its /// number of samples (if the count grid is defined) virtual cvm::real value_output(std::vector const &ix, - size_t const &imult = 0) const + size_t const &imult = 0) const override { - if (samples) - return (samples->value(ix) > 0) ? - (data[address(ix) + imult] / cvm::real(samples->value(ix))) : + int s; + if (samples) { + return ( (s = samples->value(ix)) > 0) ? + (data[address(ix) + imult] / cvm::real(s)) : 0.0; - else + } else { return data[address(ix) + imult]; + } + } + + /// Compute the inverse weight corresponding to smoothing factor as in ABF + /// to normalize sums over steps into averages + inline cvm::real smooth_inverse_weight(cvm::real weight) + { + cvm::real fact; + if ( weight <= min_samples ) { + fact = 0.0; + } else if ( weight < full_samples ) { + fact = (weight - min_samples) / (weight * cvm::real(full_samples - min_samples)); + } else { + fact = 1.0 / weight; + } + return fact; + } + + + /// \brief Return the scalar value of the function at ix divided by its + /// number of samples (if the count grid is defined), possibly smoothed + /// by a ramp function going from 0 to 1 between minSamples and fullSamples. + /// Only makes sense if dimension is 1 + virtual inline cvm::real value_output_smoothed(std::vector const &ix, bool smoothed = true) + { + cvm::real weight, fact; + + if (samples) { + weight = cvm::real(samples->value(ix)); + } else { + weight = 1.; + } + + if (smoothed) { + fact = smooth_inverse_weight(weight); + } else { + fact = weight > 0. ? 1. / weight : 0.; + } + + return fact * data[address(ix)]; + } + + /// \brief Obtain the vector value of the function at ix divided by its + /// number of samples (if the count grid is defined), possibly smoothed + /// by a ramp function going from 0 to 1 between minSamples and fullSamples. + inline void vector_value_smoothed(std::vector const &ix, cvm::real *grad, bool smoothed = true) + { + cvm::real weight, fact; + + if (samples) { + weight = cvm::real(samples->value(ix)); + } else { + weight = 1.; + } + + if (smoothed) { + fact = smooth_inverse_weight(weight); + } else { + fact = weight > 0. ? 1. / weight : 0.; + } + + cvm::real *p = &(data[address(ix)]); + + // Appease Clang analyzer, which likes to assume that mult is zero + #ifdef __clang_analyzer__ + assert(mult > 0); + #endif + + for (size_t imult = 0; imult < mult; imult++) { + grad[imult] = fact * p[imult]; + } } /// \brief Get the value from a formatted output and transform it @@ -1565,11 +1773,11 @@ public: virtual void value_input(std::vector const &ix, cvm::real const &new_value, size_t const &imult = 0, - bool add = false) + bool add = false) override { if (add) { if (samples) - data[address(ix) + imult] += new_value * samples->new_count(ix); + data[address(ix) + imult] += new_value * samples->new_value(ix); else data[address(ix) + imult] += new_value; } else { @@ -1583,31 +1791,26 @@ public: /// Compute and return average value for a 1D gradient grid - inline cvm::real average() + inline cvm::real average(bool smoothed = false) { - size_t n = 0; - if (nd != 1 || nx[0] == 0) { return 0.0; } cvm::real sum = 0.0; - std::vector ix = new_index(); - if (samples) { - for ( ; index_ok(ix); incr(ix)) { - if ( (n = samples->value(ix)) ) - sum += value(ix) / n; - } - } else { - for ( ; index_ok(ix); incr(ix)) { - sum += value(ix); - } + for (std::vector ix = new_index(); index_ok(ix); incr(ix)) { + sum += value_output_smoothed(ix, smoothed); } + return (sum / cvm::real(nx[0])); } + /// \brief Return the RMSD between this grid's data and another one + /// Grids must have the same dimensions. + cvm::real grid_rmsd(colvar_grid_gradient const &other_grid) const; + /// \brief If the grid is 1-dimensional, integrate it and write the - /// integral to a file + /// integral to a file (DEPRECATED by the integrate_potential class) void write_1D_integral(std::ostream &os); }; @@ -1626,18 +1829,22 @@ class integrate_potential : public colvar_grid_scalar {} /// Constructor from a vector of colvars + gradient grid - integrate_potential(std::vector &colvars, colvar_grid_gradient * gradients); + integrate_potential(std::vector &colvars, std::shared_ptr gradients); /// Constructor from a gradient grid (for processing grid files without a Colvars config) - integrate_potential(colvar_grid_gradient * gradients); + integrate_potential(std::shared_ptr gradients); /// \brief Calculate potential from divergence (in 2D); return number of steps - int integrate(const int itmax, const cvm::real & tol, cvm::real & err); + int integrate(const int itmax, const cvm::real & tol, cvm::real & err, bool verbose = true); /// \brief Update matrix containing divergence and boundary conditions /// based on new gradient point value, in neighboring bins void update_div_neighbors(const std::vector &ix); + /// \brief Update matrix containing divergence and boundary conditions + /// called by update_div_neighbors and by colvarbias_abf::adiabatic_reweighting_update_gradient_pmf + void update_div_local(const std::vector &ix); + /// \brief Set matrix containing divergence and boundary conditions /// based on complete gradient grid void set_div(); @@ -1648,20 +1855,20 @@ class integrate_potential : public colvar_grid_scalar add_constant(-1.0 * minimum_value()); } + /// \brief Flag requesting the use of a smoothed version of the gradient (default: false) + bool b_smoothed; + + protected: // Reference to gradient grid - colvar_grid_gradient *gradients; + std::shared_ptr gradients; /// Array holding divergence + boundary terms (modified Neumann) if not periodic std::vector divergence; // std::vector inv_lap_diag; // Inverse of the diagonal of the Laplacian; for conditioning - /// \brief Update matrix containing divergence and boundary conditions - /// called by update_div_neighbors - void update_div_local(const std::vector &ix); - /// Obtain the gradient vector at given location ix, if available /// or zero if it is on the edge of the gradient grid /// ix gets wrapped in PBC diff --git a/lib/colvars/colvargrid_def.h b/lib/colvars/colvargrid_def.h index f2245f3d81..fa6531271b 100644 --- a/lib/colvars/colvargrid_def.h +++ b/lib/colvars/colvargrid_def.h @@ -19,6 +19,233 @@ #include "colvarproxy.h" #include "colvar.h" #include "colvargrid.h" +#include "colvars_memstream.h" + + +template IST &read_restart_template_(colvar_grid &g, IST &is) +{ + auto const start_pos = is.tellg(); + std::string conf; + if ((is >> colvarparse::read_block("grid_parameters", &conf)) && + (g.parse_params(conf, colvarparse::parse_restart) == COLVARS_OK) && g.read_raw(is)) { + return is; + } + auto const error_pos = is.tellg(); + is.clear(); + is.seekg(start_pos); + is.setstate(std::ios::failbit); + cvm::error("Error: in reading grid state from stream at position " + cvm::to_str(error_pos) + + "\n", + COLVARS_INPUT_ERROR); + return is; +} + + +template std::istream &colvar_grid::read_restart(std::istream &is) +{ + return read_restart_template_(*this, is); +} + + +template cvm::memory_stream &colvar_grid::read_restart(cvm::memory_stream &is) +{ + return read_restart_template_(*this, is); +} + + +template std::ostream &colvar_grid::write_restart(std::ostream &os) +{ + os << "grid_parameters {\n" << get_state_params() << "}\n"; + write_raw(os); + return os; +} + + +template cvm::memory_stream &colvar_grid::write_restart(cvm::memory_stream &os) +{ + os << std::string("grid_parameters") << get_state_params(); + write_raw(os); + return os; +} + + +template IST &read_raw_template_(colvar_grid &g, IST &is) +{ + auto const start_pos = is.tellg(); + + for (std::vector ix = g.new_index(); g.index_ok(ix); g.incr(ix)) { + for (size_t imult = 0; imult < g.mult; imult++) { + T new_value; + if (is >> new_value) { + g.value_input(ix, new_value, imult); + } else { + is.clear(); + is.seekg(start_pos); + is.setstate(std::ios::failbit); + cvm::error( + "Error: failed to read all of the grid points from file. Possible explanations: grid " + "parameters in the configuration (lowerBoundary, upperBoundary, width) are different " + "from those in the file, or the file is corrupt/incomplete.\n", + COLVARS_INPUT_ERROR); + return is; + } + } + } + + g.has_data = true; + return is; +} + + +template std::istream &colvar_grid::read_raw(std::istream &is) +{ + return read_raw_template_(*this, is); +} + + +template cvm::memory_stream &colvar_grid::read_raw(cvm::memory_stream &is) +{ + return read_raw_template_(*this, is); +} + + +template +std::ostream &colvar_grid::write_raw(std::ostream &os, size_t const buf_size) const +{ + auto const w = os.width(); + auto const p = os.precision(); + + size_t count = 0; + for (auto ix = new_index(); index_ok(ix); incr(ix)) { + for (size_t imult = 0; imult < mult; imult++) { + os << " " << std::setw(w) << std::setprecision(p) << value_output(ix, imult); + if (((++count) % buf_size) == 0) + os << "\n"; + } + } + // write a final newline only if buffer is not empty + if ((count % buf_size) != 0) + os << "\n"; + + return os; +} + + +template +cvm::memory_stream &colvar_grid::write_raw(cvm::memory_stream &os, size_t const buf_size) const +{ + for (auto ix = new_index(); index_ok(ix); incr(ix)) { + for (size_t imult = 0; imult < mult; imult++) { + os << value_output(ix, imult); + } + } + return os; +} + + +template std::string colvar_grid::get_state_params() const +{ + std::ostringstream os; + size_t i; + os << " n_colvars " << nd << "\n"; + + os << " lower_boundaries "; + for (i = 0; i < nd; i++) + os << " " << lower_boundaries[i]; + os << "\n"; + + os << " upper_boundaries "; + for (i = 0; i < nd; i++) + os << " " << upper_boundaries[i]; + os << "\n"; + + os << " widths "; + for (i = 0; i < nd; i++) + os << " " << widths[i]; + os << "\n"; + + os << " sizes "; + for (i = 0; i < nd; i++) + os << " " << nx[i]; + os << "\n"; + + return os.str(); +} + + +template int colvar_grid::parse_params(std::string const &conf, + colvarparse::Parse_Mode const parse_mode) +{ + if (cvm::debug()) + cvm::log("Reading grid configuration from string.\n"); + + std::vector old_nx = nx; + std::vector old_lb = lower_boundaries; + std::vector old_ub = upper_boundaries; + std::vector old_w = widths; + + { + size_t nd_in = 0; + // this is only used in state files + colvarparse::get_keyval(conf, "n_colvars", nd_in, nd, colvarparse::parse_silent); + if (nd_in != nd) { + cvm::error("Error: trying to read data for a grid " + "that contains a different number of colvars ("+ + cvm::to_str(nd_in)+") than the grid defined " + "in the configuration file("+cvm::to_str(nd)+ + ").\n"); + return COLVARS_ERROR; + } + } + + // underscore keywords are used in state file + colvarparse::get_keyval(conf, "lower_boundaries", + lower_boundaries, lower_boundaries, colvarparse::parse_silent); + colvarparse::get_keyval(conf, "upper_boundaries", + upper_boundaries, upper_boundaries, colvarparse::parse_silent); + + // camel case keywords are used in config file + colvarparse::get_keyval(conf, "lowerBoundaries", + lower_boundaries, lower_boundaries, parse_mode); + colvarparse::get_keyval(conf, "upperBoundaries", + upper_boundaries, upper_boundaries, parse_mode); + + colvarparse::get_keyval(conf, "widths", widths, widths, parse_mode); + + // only used in state file + colvarparse::get_keyval(conf, "sizes", nx, nx, colvarparse::parse_silent); + + if (nd < lower_boundaries.size()) nd = lower_boundaries.size(); + + if (! use_actual_value.size()) use_actual_value.assign(nd, false); + if (! periodic.size()) periodic.assign(nd, false); + if (! widths.size()) widths.assign(nd, 1.0); + + cvm::real eps = 1.e-10; + + bool new_params = false; + if (old_nx.size()) { + for (size_t i = 0; i < nd; i++) { + if (old_nx[i] != nx[i] || + cvm::sqrt(cv[i]->dist2(old_lb[i], lower_boundaries[i])) > eps || + cvm::sqrt(cv[i]->dist2(old_ub[i], upper_boundaries[i])) > eps || + cvm::fabs(old_w[i] - widths[i]) > eps) { + new_params = true; + } + } + } else { + new_params = true; + } + + // reallocate the array in case the grid params have just changed + if (new_params) { + init_from_boundaries(); + // data.clear(); // no longer needed: setup calls clear() + return this->setup(nx, T(), mult); + } + + return COLVARS_OK; +} template @@ -90,6 +317,9 @@ std::istream & colvar_grid::read_multicol(std::istream &is, bool add) for (size_t i = 0; i < nd; i++ ) { if ( !(is >> x) ) end_of_file = true; bin[i] = value_to_bin_scalar(x, i); + // if x is out of bounds and we are using PBC, wrap it + // Ignore out of bounds points in non-PBC + wrap_detect_edge(bin); } if (end_of_file) break; diff --git a/lib/colvars/colvarmodule.cpp b/lib/colvars/colvarmodule.cpp index 68cd402e1c..25b1efe209 100644 --- a/lib/colvars/colvarmodule.cpp +++ b/lib/colvars/colvarmodule.cpp @@ -7,13 +7,10 @@ // If you wish to distribute your changes, please submit them to the // Colvars repository at GitHub. -#include #include -#include -#include -#include +#include +#include #include -#include #include "colvarmodule.h" #include "colvarparse.h" @@ -21,6 +18,7 @@ #include "colvar.h" #include "colvarbias.h" #include "colvarbias_abf.h" +#include "colvarbias_abmd.h" #include "colvarbias_alb.h" #include "colvarbias_histogram.h" #include "colvarbias_histogram_reweight_amd.h" @@ -29,7 +27,7 @@ #include "colvarscript.h" #include "colvaratoms.h" #include "colvarcomp.h" - +#include "colvars_memstream.h" /// Track usage of Colvars features @@ -69,6 +67,11 @@ protected: }; +namespace { + constexpr uint32_t colvars_magic_number = 2013813594; +} + + colvarmodule::colvarmodule(colvarproxy *proxy_in) { depth_s = 0; @@ -98,16 +101,14 @@ colvarmodule::colvarmodule(colvarproxy *proxy_in) version_int = proxy->get_version_from_string(COLVARS_VERSION); cvm::log(cvm::line_marker); - cvm::log("Initializing the collective variables module, version "+ - version()+".\n"); + cvm::log( + "Initializing the collective variables module, version " + version() + + (patch_version_number() ? (" (patch " + cvm::to_str(patch_version_number()) + ")") : "") + + ".\n"); cvm::log("Please cite Fiorin et al, Mol Phys 2013:\n" " https://doi.org/10.1080/00268976.2013.813594\n" "as well as all other papers listed below for individual features used.\n"); - if (proxy->smp_enabled() == COLVARS_OK) { - cvm::log("SMP parallelism is enabled; if needed, use \"smp off\" to override this.\n"); - } - #if (__cplusplus >= 201103L) cvm::log("This version was built with the C++11 standard or higher.\n"); #else @@ -116,8 +117,38 @@ colvarmodule::colvarmodule(colvarproxy *proxy_in) " https://colvars.github.io/README-c++11.html\n"); #endif + cvm::log("Summary of compile-time features available in this build:\n"); + + if (proxy->check_smp_enabled() == COLVARS_NOT_IMPLEMENTED) { + cvm::log(" - SMP parallelism: not available\n"); + } else { + if (proxy->check_smp_enabled() == COLVARS_OK) { + cvm::log(" - SMP parallelism: enabled (num. threads = " + to_str(proxy->smp_num_threads()) + ")\n"); + } else { + cvm::log(" - SMP parallelism: available, but not enabled\n"); + } + } + +#if defined(LEPTON) + cvm::log(" - Lepton custom functions: available\n"); +#else + cvm::log(" - Lepton custom functions: not available\n"); +#endif + +#if defined(COLVARS_TCL) + cvm::log(" - Tcl interpreter: available\n"); +#else + cvm::log(" - Tcl interpreter: not available\n"); +#endif + // set initial default values + binary_restart = false; + char const *env_var = getenv("COLVARS_BINARY_RESTART"); + if (env_var && atoi(env_var)) { + binary_restart = true; + } + // "it_restart" will be set by the input state file, if any; // "it" should be updated by the proxy colvarmodule::it = colvarmodule::it_restart = 0; @@ -182,6 +213,13 @@ size_t colvarmodule::size() const } +void colvarmodule::set_initial_step(step_number it_in) +{ + cvm::log("Setting initial step number from MD engine: " + cvm::to_str(it_in) + "\n"); + it = it_restart = it_in; +} + + int colvarmodule::read_config_file(char const *config_filename) { cvm::log(cvm::line_marker); @@ -327,6 +365,7 @@ void colvarmodule::config_changed() int colvarmodule::parse_global_params(std::string const &conf) { + int error_code = COLVARS_OK; // TODO document and then echo this keyword parse->get_keyval(conf, "logLevel", log_level_, log_level_, colvarparse::parse_silent); @@ -334,10 +373,7 @@ int colvarmodule::parse_global_params(std::string const &conf) std::string units; if (parse->get_keyval(conf, "units", units)) { units = colvarparse::to_lower_cppstr(units); - int error_code = proxy->set_unit_system(units, (colvars.size() != 0)); - if (error_code != COLVARS_OK) { - return error_code; - } + error_code |= proxy->set_unit_system(units, (colvars.size() != 0)); } } @@ -346,7 +382,7 @@ int colvarmodule::parse_global_params(std::string const &conf) size_t pos = 0; while (parse->key_lookup(conf, "indexFile", &index_file_name, &pos)) { cvm::log("# indexFile = \""+index_file_name+"\"\n"); - read_index_file(index_file_name.c_str()); + error_code |= read_index_file(index_file_name.c_str()); index_file_name.clear(); } } @@ -358,9 +394,8 @@ int colvarmodule::parse_global_params(std::string const &conf) } bool b_analysis = true; - if (parse->get_keyval(conf, "analysis", b_analysis, true, - colvarparse::parse_silent)) { - cvm::log("Warning: keyword \"analysis\" is deprecated: it is now set " + if (parse->get_keyval(conf, "analysis", b_analysis, true, colvarparse::parse_silent)) { + cvm::log("Warning: keyword \"analysis\" is deprecated: it is now always set " "to true; individual analyses are performed only if requested."); } @@ -391,7 +426,12 @@ int colvarmodule::parse_global_params(std::string const &conf) parse->get_keyval(conf, "sourceTclFile", source_Tcl_script); #endif - return cvm::get_error(); + if (proxy->engine_name() == "GROMACS" && proxy->version_number() >= 20231003) { + parse->get_keyval(conf, "defaultInputStateFile", default_input_state_file_, + default_input_state_file_); + } + + return error_code; } @@ -522,6 +562,9 @@ int colvarmodule::parse_biases(std::string const &conf) /// initialize ABF instances parse_biases_type(conf, "abf"); + /// initialize ABMD instances + parse_biases_type(conf, "abmd"); + /// initialize adaptive linear biases parse_biases_type(conf, "ALB"); @@ -791,28 +834,26 @@ int colvarmodule::calc() // write restart files and similar data if (restart_out_freq && (cvm::step_relative() > 0) && - ((cvm::step_absolute() % restart_out_freq) == 0) ) { + ((cvm::step_absolute() % restart_out_freq) == 0)) { if (restart_out_name.size()) { // Write restart file, if different from main output error_code |= write_restart_file(restart_out_name); - } else { - error_code |= write_restart_file(output_prefix()+".colvars.state"); + } else if (output_prefix().size()) { + error_code |= write_restart_file(output_prefix() + ".colvars.state"); } - cvm::increase_depth(); - for (std::vector::iterator cvi = colvars.begin(); - cvi != colvars.end(); - cvi++) { - // TODO remove this when corrFunc becomes a bias - error_code |= (*cvi)->write_output_files(); + if (output_prefix().size()) { + cvm::increase_depth(); + for (std::vector::iterator cvi = colvars.begin(); cvi != colvars.end(); cvi++) { + // TODO remove this when corrFunc becomes a bias + error_code |= (*cvi)->write_output_files(); + } + for (std::vector::iterator bi = biases.begin(); bi != biases.end(); bi++) { + error_code |= (*bi)->write_state_to_replicas(); + } + cvm::decrease_depth(); } - for (std::vector::iterator bi = biases.begin(); - bi != biases.end(); - bi++) { - error_code |= (*bi)->write_state_to_replicas(); - } - cvm::decrease_depth(); } // Write output files for biases, at the specified frequency for each @@ -881,7 +922,7 @@ int colvarmodule::calc_colvars() } // if SMP support is available, split up the work - if (proxy->smp_enabled() == COLVARS_OK) { + if (proxy->check_smp_enabled() == COLVARS_OK) { // first, calculate how much work (currently, how many active CVCs) each colvar has @@ -963,8 +1004,16 @@ int colvarmodule::calc_biases() } } - // if SMP support is available, split up the work - if (proxy->smp_enabled() == COLVARS_OK) { + bool biases_need_main_thread = false; + for (bi = biases_active()->begin(); bi != biases_active()->end(); bi++) { + if ((*bi)->replica_share_freq() > 0) { + // Biases that share data with replicas need read/write access to I/O or MPI + biases_need_main_thread = true; + } + } + + // If SMP support is available, split up the work (unless biases need to use main thread's memory) + if (proxy->check_smp_enabled() == COLVARS_OK && !biases_need_main_thread) { if (use_scripted_forces && !scripting_after_biases) { // calculate biases and scripted forces in parallel @@ -980,10 +1029,12 @@ int colvarmodule::calc_biases() error_code |= calc_scripted_forces(); } + // Straight loop over biases on a single thread cvm::increase_depth(); for (bi = biases_active()->begin(); bi != biases_active()->end(); bi++) { error_code |= (*bi)->update(); if (cvm::get_error()) { + cvm::decrease_depth(); return error_code; } } @@ -994,7 +1045,7 @@ int colvarmodule::calc_biases() total_bias_energy += (*bi)->get_energy(); } - return (cvm::get_error() ? COLVARS_ERROR : COLVARS_OK); + return error_code; } @@ -1082,9 +1133,22 @@ int colvarmodule::write_restart_file(std::string const &out_name) cvm::log("Saving collective variables state to \""+out_name+"\".\n"); std::ostream &restart_out_os = proxy->output_stream(out_name, "state file"); if (!restart_out_os) return COLVARS_FILE_ERROR; - if (!write_restart(restart_out_os)) { - return cvm::error("Error: in writing restart file.\n", COLVARS_FILE_ERROR); + + if (binary_restart) { + cvm::memory_stream mem_os; + if (!write_state(mem_os)) { + return cvm::error("Error: in writing binary state information to file.\n", COLVARS_ERROR); + } + if (!restart_out_os.write(reinterpret_cast(mem_os.output_buffer()), + mem_os.length())) { + return cvm::error("Error: in writing restart file.\n", COLVARS_FILE_ERROR); + } + } else { + if (!write_state(restart_out_os)) { + return cvm::error("Error: in writing restart file.\n", COLVARS_FILE_ERROR); + } } + proxy->close_output_stream(out_name); // Take the opportunity to flush colvars.traj @@ -1097,7 +1161,7 @@ int colvarmodule::write_restart_string(std::string &output) { cvm::log("Saving state to output buffer.\n"); std::ostringstream os; - if (!write_restart(os)) { + if (!write_state(os)) { return cvm::error("Error: in writing restart to buffer.\n", COLVARS_FILE_ERROR); } output = os.str(); @@ -1207,9 +1271,17 @@ int colvarmodule::end_of_step() int colvarmodule::update_engine_parameters() { - if (this->size() == 0) return cvm::get_error(); - for (std::vector::iterator cvi = variables()->begin(); - cvi != variables()->end(); cvi++) { + if (size() == 0) { + // No-op if no variables or biases are defined + return cvm::get_error(); + } + if (proxy->simulation_running()) { + cvm::log("Current simulation parameters: initial step = " + cvm::to_str(it) + + ", integration timestep = " + cvm::to_str(dt()) + "\n"); + } + cvm::log("Updating atomic parameters (masses, charges, etc).\n"); + for (std::vector::iterator cvi = variables()->begin(); cvi != variables()->end(); + cvi++) { (*cvi)->setup(); } return (cvm::get_error() ? COLVARS_ERROR : COLVARS_OK); @@ -1250,10 +1322,10 @@ int colvarmodule::reset() parse->clear(); // Iterate backwards because we are deleting the elements as we go - for (std::vector::reverse_iterator bi = biases.rbegin(); - bi != biases.rend(); - bi++) { - delete *bi; // the bias destructor updates the biases array + while (!biases.empty()) { + colvarbias* tail = biases.back(); + biases.pop_back(); + delete tail; // the bias destructor updates the biases array } biases.clear(); biases_active_.clear(); @@ -1262,11 +1334,11 @@ int colvarmodule::reset() reinterpret_cast *>(num_biases_types_used_)->clear(); // Iterate backwards because we are deleting the elements as we go - for (std::vector::reverse_iterator cvi = colvars.rbegin(); - cvi != colvars.rend(); - cvi++) { - delete *cvi; // the colvar destructor updates the colvars array - } + while (!colvars.empty()) { + colvar* cvi = colvars.back(); + colvars.pop_back(); + delete cvi; // the colvar destructor updates the colvars array + }; colvars.clear(); reset_index_groups(); @@ -1274,64 +1346,119 @@ int colvarmodule::reset() proxy->flush_output_streams(); proxy->reset(); - return (cvm::get_error() ? COLVARS_ERROR : COLVARS_OK); + clear_error(); + + return COLVARS_OK; } int colvarmodule::setup_input() { - if (proxy->input_prefix().size()) { - // Read a state file - std::string restart_in_name(proxy->input_prefix()+ - std::string(".colvars.state")); - std::istream *input_is = &(proxy->input_stream(restart_in_name, - "restart file/channel", - false)); + if (proxy->input_prefix().empty() && (!proxy->input_stream_exists("input state string")) && + input_state_buffer_.empty()) { + // If no input sources have been defined up to this point, use defaultInputStateFile + proxy->set_input_prefix(default_input_state_file_); + } + + if (!proxy->input_prefix().empty()) { + + // Read state from a file + + std::string restart_in_name(proxy->input_prefix() + std::string(".colvars.state")); + std::istream *input_is = &(proxy->input_stream(restart_in_name, "restart file/channel", false)); if (!*input_is) { // Try without the suffix ".colvars.state" restart_in_name = proxy->input_prefix(); - input_is = &(proxy->input_stream(restart_in_name, - "restart file/channel")); + input_is = &(proxy->input_stream(restart_in_name, "restart file/channel")); if (!*input_is) { + // Error message has already been printed, return now return COLVARS_FILE_ERROR; } } - // Now that the file has been opened, clear this field so that this - // function will not be called twice - proxy->input_prefix().clear(); + // Now that the file has been opened, clear this field so that this block + // will not be executed twice + proxy->set_input_prefix(""); - cvm::log(cvm::line_marker); - cvm::log("Loading state from file \""+restart_in_name+"\".\n"); - read_restart(*input_is); cvm::log(cvm::line_marker); - proxy->close_input_stream(restart_in_name); + input_is->seekg(0, std::ios::end); + size_t const file_size = input_is->tellg(); + input_is->seekg(0, std::ios::beg); - return cvm::get_error(); - } + bool binary_state_file = false; - // TODO This could soon be redundant - if (proxy->input_buffer() != NULL) { - // Read a string buffer - char const *buffer = proxy->input_buffer(); - size_t const buffer_size = strlen(proxy->input_buffer()); - // Clear proxy pointer for the next round - proxy->input_buffer() = NULL; - if (buffer_size > 0) { - std::istringstream input_is; - // Replace the buffer of input_is; work around the lack of const in - // pubsetbuf's prototype (which also needs to support output streams) - input_is.rdbuf()->pubsetbuf(const_cast(buffer), buffer_size); - cvm::log(cvm::line_marker); - cvm::log("Loading state from input buffer.\n"); - read_restart(input_is); - cvm::log(cvm::line_marker); - return cvm::get_error(); + uint32_t file_magic_number = 0; + if (file_size > sizeof(uint32_t)) { + if (input_is->read(reinterpret_cast(&file_magic_number), sizeof(uint32_t))) { + if (file_magic_number == colvars_magic_number) { + binary_state_file = true; + } + input_is->seekg(0, std::ios::beg); + } } + + if (binary_state_file) { + cvm::log("Loading state from binary file \"" + restart_in_name + "\".\n"); + // TODO integrate istream.read() into memory_stream to avoid copying + auto *buf = new unsigned char[file_size]; + if (input_is->read(reinterpret_cast(buf), file_size)) { + cvm::memory_stream mem_is(file_size, buf); + if (!read_state(mem_is)) { + input_is->setstate(std::ios::failbit); + cvm::error("Error: cannot interpret contents of binary file \"" + restart_in_name + + "\".\n", + COLVARS_INPUT_ERROR); + } + } else { + cvm::error("Error: cannot read from binary file \"" + restart_in_name + "\".\n", + COLVARS_INPUT_ERROR); + } + delete[] buf; + } else { + cvm::log("Loading state from text file \"" + restart_in_name + "\".\n"); + read_state(*input_is); + } + cvm::log(cvm::line_marker); + + // Now that an explicit state file was read, we shall ignore any other restart info + if (proxy->input_stream_exists("input state string")) { + proxy->delete_input_stream("input state string"); + } + input_state_buffer_.clear(); + + proxy->delete_input_stream(restart_in_name); } - return COLVARS_OK; + if (proxy->input_stream_exists("input state string")) { + + if (!input_state_buffer_.empty()) { + return cvm::error("Error: formatted/text and unformatted/binary input state buffers are " + "defined at the same time.\n", + COLVARS_BUG_ERROR); + } + + cvm::log(cvm::line_marker); + cvm::log("Loading state from formatted string.\n"); + read_state(proxy->input_stream("input state string")); + cvm::log(cvm::line_marker); + + proxy->delete_input_stream("input state string"); + } + + if (!input_state_buffer_.empty()) { + cvm::log(cvm::line_marker); + cvm::log("Loading state from unformatted memory.\n"); + cvm::memory_stream ms(input_state_buffer_.size(), input_state_buffer_.data()); + read_state(ms); + cvm::log(cvm::line_marker); + + input_state_buffer_.clear(); + } + + default_input_state_file_.clear(); + + return get_error(); } @@ -1344,36 +1471,39 @@ int colvarmodule::setup_output() std::string(proxy->restart_output_prefix()+".colvars.state") : std::string(""); + std::string const state_file_format(binary_restart ? " (binary format)" : ""); + if (restart_out_name.size()) { - cvm::log("The restart output state file will be \""+ + cvm::log("The restart output state file" + state_file_format + " will be \""+ restart_out_name+"\".\n"); } - output_prefix() = proxy->output_prefix(); - if (output_prefix().size()) { - cvm::log("The final output state file will be \""+ - (output_prefix().size() ? - std::string(output_prefix()+".colvars.state") : - std::string("colvars.state"))+"\".\n"); - // cvm::log (cvm::line_marker); + if (output_prefix() != proxy->output_prefix()) { + output_prefix() = proxy->output_prefix(); + if (output_prefix().size()) { + cvm::log("The final output state file will be \"" + + (output_prefix().size() ? std::string(output_prefix() + ".colvars.state") + : std::string("colvars.state")) + + "\".\n"); + } + + if (proxy->output_stream_exists(cv_traj_name)) { + // Close old file + proxy->close_output_stream(cv_traj_name); + cv_traj_write_labels = true; + } + + cv_traj_name = + (output_prefix().size() ? std::string(output_prefix() + ".colvars.traj") : std::string("")); + + for (std::vector::iterator bi = biases.begin(); + bi != biases.end(); + bi++) { + error_code |= (*bi)->setup_output(); + } } - cv_traj_name = - (output_prefix().size() ? - std::string(output_prefix()+".colvars.traj") : - std::string("")); - - for (std::vector::iterator bi = biases.begin(); - bi != biases.end(); - bi++) { - error_code |= (*bi)->setup_output(); - } - - if (error_code != COLVARS_OK || cvm::get_error()) { - set_error_bits(COLVARS_FILE_ERROR); - } - - return cvm::get_error(); + return error_code; } @@ -1390,8 +1520,7 @@ std::string colvarmodule::state_file_prefix(char const *filename) } - -std::istream & colvarmodule::read_restart(std::istream &is) +template IST & colvarmodule::read_state_template_(IST &is) { bool warn_total_forces = false; @@ -1417,8 +1546,11 @@ std::istream & colvarmodule::read_restart(std::istream &is) } if (restart_version() != version()) { - cvm::log("This state file was generated with version "+ - restart_version()+"\n"); + cvm::log("This state file was generated with version " + restart_version() + "\n"); + if (std::is_same::value) { + cvm::log("Warning: compatibility between differetn Colvars versions is not " + "guaranteed for unformatted (binary) state files.\n"); + } } if (restart_version_number() < 20160810) { @@ -1453,35 +1585,73 @@ std::istream & colvarmodule::read_restart(std::istream &is) } +std::istream & colvarmodule::read_state(std::istream &is) +{ + return read_state_template_(is); +} + + +cvm::memory_stream &colvarmodule::read_state(cvm::memory_stream &is) +{ + uint32_t file_magic_number = 0; + if (!(is >> file_magic_number)) { + return is; + } + if (file_magic_number == colvars_magic_number) { + return read_state_template_(is); + } else { + is.setstate(std::ios::failbit); + cvm::error("Error: magic number of binary file (" + + cvm::to_str(static_cast(file_magic_number)) + + ") does not match the expected magic number for a Colvars state file (" + + cvm::to_str(static_cast(colvars_magic_number)) + ").\n", + COLVARS_INPUT_ERROR); + } + return is; +} + + +int colvarmodule::set_input_state_buffer(size_t n, unsigned char *buf) +{ + input_state_buffer_.clear(); + std::copy(buf, buf + n, std::back_inserter(input_state_buffer_)); + return COLVARS_OK; +} + + +int colvarmodule::set_input_state_buffer(std::vector &buf) +{ + input_state_buffer_ = std::move(buf); + return COLVARS_OK; +} + std::istream & colvarmodule::read_objects_state(std::istream &is) { - std::streampos pos = 0; + auto pos = is.tellg(); std::string word; - while (is.good()) { + while (is) { pos = is.tellg(); - word.clear(); - is >> word; - if (word.size()) { + if (is >> word) { - is.seekg(pos, std::ios::beg); + is.seekg(pos); if (word == "colvar") { cvm::increase_depth(); - for (std::vector::iterator cvi = colvars.begin(); - cvi != colvars.end(); - cvi++) { - if ( !((*cvi)->read_state(is)) ) { + for (std::vector::iterator cvi = colvars.begin(); cvi != colvars.end(); cvi++) { + if (!((*cvi)->read_state(is))) { // Here an error signals that the variable is a match, but the // state is corrupt; otherwise, the variable rewinds is silently - cvm::error("Error: in reading restart configuration for " - "collective variable \""+(*cvi)->name+"\".\n", + cvm::error("Error: in reading state for collective variable \"" + + (*cvi)->name + "\" at position " + cvm::to_str(is.tellg()) + + " in stream.\n", COLVARS_INPUT_ERROR); } - if (is.tellg() > pos) break; // found it + if (is.tellg() > pos) + break; // found it } cvm::decrease_depth(); @@ -1498,11 +1668,12 @@ std::istream & colvarmodule::read_objects_state(std::istream &is) } if (!((*bi)->read_state(is))) { // Same as above, an error means a match but the state is incorrect - cvm::error("Error: in reading restart configuration for bias \""+ - (*bi)->name+"\".\n", + cvm::error("Error: in reading state for bias \"" + (*bi)->name + "\" at position " + + cvm::to_str(is.tellg()) + " in stream.\n", COLVARS_INPUT_ERROR); } - if (is.tellg() > pos) break; // found it + if (is.tellg() > pos) + break; // found it } cvm::decrease_depth(); } @@ -1521,6 +1692,25 @@ std::istream & colvarmodule::read_objects_state(std::istream &is) } +cvm::memory_stream &colvarmodule::read_objects_state(cvm::memory_stream &is) +{ + // An unformatted stream must match the objects' exact configuration + cvm::increase_depth(); + for (std::vector::iterator cvi = colvars.begin(); cvi != colvars.end(); cvi++) { + if (!(*cvi)->read_state(is)) { + return is; + } + } + for (std::vector::iterator bi = biases.begin(); bi != biases.end(); bi++) { + if (!(*bi)->read_state(is)) { + return is; + } + } + cvm::decrease_depth(); + return is; +} + + int colvarmodule::print_total_forces_errning(bool warn_total_forces) { if (warn_total_forces) { @@ -1643,18 +1833,24 @@ int colvarmodule::read_traj(char const *traj_filename, } -std::ostream & colvarmodule::write_restart(std::ostream &os) +template OST &colvarmodule::write_state_template_(OST &os) { - os.setf(std::ios::scientific, std::ios::floatfield); - os << "configuration {\n" - << " step " << std::setw(it_width) - << it << "\n" - << " dt " << dt() << "\n" - << " version " << std::string(COLVARS_VERSION) << "\n"; + bool const formatted = !std::is_same::value; + + std::ostringstream oss; + oss.setf(std::ios::scientific, std::ios::floatfield); + oss << " step " << std::setw(it_width) + << it << "\n" + << " dt " << dt() << "\n" + << " version " << std::string(COLVARS_VERSION) << "\n"; if (proxy->units.size() > 0) { - os << " units " << proxy->units << "\n"; + oss << " units " << proxy->units << "\n"; } - os << "}\n\n"; + + os << std::string("configuration"); + if (formatted) os << " {\n"; + os << oss.str(); + if (formatted) os << "}\n\n"; int error_code = COLVARS_OK; @@ -1681,7 +1877,32 @@ std::ostream & colvarmodule::write_restart(std::ostream &os) } -std::ostream & colvarmodule::write_traj_label(std::ostream &os) +std::ostream &colvarmodule::write_state(std::ostream &os) +{ + return write_state_template_(os); +} + + +cvm::memory_stream &colvarmodule::write_state(cvm::memory_stream &os) +{ + if (os << colvars_magic_number) { + write_state_template_(os); + } + return os; +} + + +int colvarmodule::write_state_buffer(std::vector &buffer) +{ + cvm::memory_stream os(buffer); + if (os << colvars_magic_number) { + write_state_template_(os); + } + return os ? COLVARS_OK : COLVARS_ERROR; +} + + +std::ostream &colvarmodule::write_traj_label(std::ostream &os) { os.setf(std::ios::scientific, std::ios::floatfield); @@ -1765,7 +1986,7 @@ size_t & colvarmodule::depth() { // NOTE: do not call log() or error() here, to avoid recursion colvarmodule *cv = cvm::main(); - if (proxy->smp_enabled() == COLVARS_OK) { + if (proxy->check_smp_enabled() == COLVARS_OK) { int const nt = proxy->smp_num_threads(); if (int(cv->depth_v.size()) != nt) { proxy->smp_lock(); @@ -1810,7 +2031,7 @@ void colvarmodule::clear_error() int colvarmodule::error(std::string const &message, int code) { - set_error_bits(code); + set_error_bits(code >= 0 ? code : COLVARS_ERROR); std::string const trailing_newline = (message.size() > 0) ? (message[message.size()-1] == '\n' ? "" : "\n") : ""; @@ -1930,15 +2151,6 @@ int colvarmodule::reset_index_groups() } -int cvm::load_atoms(char const *file_name, - cvm::atom_group &atoms, - std::string const &pdb_field, - double pdb_field_value) -{ - return proxy->load_atoms(file_name, atoms, pdb_field, pdb_field_value); -} - - int cvm::load_coords(char const *file_name, std::vector *pos, cvm::atom_group *atoms, @@ -1953,7 +2165,7 @@ int cvm::load_coords(char const *file_name, atoms->create_sorted_ids(); - std::vector sorted_pos(atoms->size(), cvm::rvector(0.0)); + std::vector sorted_pos(atoms->size(), cvm::rvector(0.0)); // Differentiate between PDB and XYZ files if (colvarparse::to_lower_cppstr(ext) == std::string(".xyz")) { @@ -1965,11 +2177,12 @@ int cvm::load_coords(char const *file_name, error_code |= cvm::main()->load_coords_xyz(file_name, &sorted_pos, atoms); } else { // Otherwise, call proxy function for PDB - error_code |= proxy->load_coords(file_name, - sorted_pos, atoms->sorted_ids(), - pdb_field, pdb_field_value); + error_code |= proxy->load_coords_pdb(file_name, sorted_pos, atoms->sorted_ids(), pdb_field, + pdb_field_value); } + if (error_code != COLVARS_OK) return error_code; + std::vector const &map = atoms->sorted_ids_map(); for (size_t i = 0; i < atoms->size(); i++) { (*pos)[map[i]] = sorted_pos[i]; @@ -1985,7 +2198,7 @@ int cvm::load_coords_xyz(char const *filename, bool keep_open) { std::istream &xyz_is = proxy->input_stream(filename, "XYZ file"); - unsigned int natoms; + size_t natoms; char symbol[256]; std::string line; cvm::real x = 0.0, y = 0.0, z = 0.0; @@ -2009,12 +2222,19 @@ int cvm::load_coords_xyz(char const *filename, cvm::getline(xyz_is, line); xyz_is.width(255); } else { + proxy->close_input_stream(filename); return cvm::error(error_msg, COLVARS_INPUT_ERROR); } + if (pos->size() > natoms) { + proxy->close_input_stream(filename); + return cvm::error("File \"" + std::string(filename) + "\" contains fewer atoms (" + cvm::to_str(natoms) + + ") than expected (" + cvm::to_str(pos->size()) + ").", COLVARS_INPUT_ERROR); + } + std::vector::iterator pos_i = pos->begin(); size_t xyz_natoms = 0; - if (pos->size() != natoms) { // Use specified indices + if (pos->size() < natoms) { // Use specified indices int next = 0; // indices are zero-based if (!atoms) { // In the other branch of this test, reading all positions from the file, @@ -2022,6 +2242,13 @@ int cvm::load_coords_xyz(char const *filename, return cvm::error("Trying to read partial positions with invalid atom group pointer", COLVARS_BUG_ERROR); } + + if (static_cast(atoms->sorted_ids().back()) > natoms) { + proxy->close_input_stream(filename); + return cvm::error("File \"" + std::string(filename) + "\" contains fewer atoms (" + cvm::to_str(natoms) + + ") than expected (" + cvm::to_str(atoms->sorted_ids().back()) + ").", COLVARS_INPUT_ERROR); + } + std::vector::const_iterator index = atoms->sorted_ids().begin(); for ( ; pos_i != pos->end() ; pos_i++, index++) { @@ -2038,6 +2265,7 @@ int cvm::load_coords_xyz(char const *filename, (*pos_i)[2] = proxy->angstrom_to_internal(z); xyz_natoms++; } else { + proxy->close_input_stream(filename); return cvm::error(error_msg, COLVARS_INPUT_ERROR); } } @@ -2053,12 +2281,14 @@ int cvm::load_coords_xyz(char const *filename, (*pos_i)[2] = proxy->angstrom_to_internal(z); xyz_natoms++; } else { + proxy->close_input_stream(filename); return cvm::error(error_msg, COLVARS_INPUT_ERROR); } } } if (xyz_natoms != pos->size()) { + proxy->close_input_stream(filename); return cvm::error("Error: The number of positions read from file \""+ std::string(filename)+"\" does not match the number of "+ "positions required: "+cvm::to_str(xyz_natoms)+" vs. "+ diff --git a/lib/colvars/colvarmodule.h b/lib/colvars/colvarmodule.h index 236d432a95..fa84b1ad75 100644 --- a/lib/colvars/colvarmodule.h +++ b/lib/colvars/colvarmodule.h @@ -10,7 +10,7 @@ #ifndef COLVARMODULE_H #define COLVARMODULE_H -#include +#include #include "colvars_version.h" @@ -19,9 +19,11 @@ #endif /*! \mainpage Main page -This is the Developer's documentation for the Collective Variables Module. +This is the Developer's documentation for the Collective Variables module (Colvars). You can browse the class hierarchy or the list of source files. + +Please note that this documentation is only supported for the master branch, and its features may differ from those in a given release of a simulation package. */ /// \file colvarmodule.h @@ -33,26 +35,15 @@ You can browse the class hierarchy or the list of source files. /// shared between all object instances) to be accessed from other /// objects. -#define COLVARS_OK 0 -#define COLVARS_ERROR 1 -#define COLVARS_NOT_IMPLEMENTED (1<<1) -#define COLVARS_INPUT_ERROR (1<<2) // out of bounds or inconsistent input -#define COLVARS_BUG_ERROR (1<<3) // Inconsistent state indicating bug -#define COLVARS_FILE_ERROR (1<<4) -#define COLVARS_MEMORY_ERROR (1<<5) -#define COLVARS_NO_SUCH_FRAME (1<<6) // Cannot load the requested frame - -#include +#include +#include #include #include -#include -#include class colvarparse; class colvar; class colvarbias; class colvarproxy; -class colvarscript; class colvarvalue; @@ -67,14 +58,6 @@ class colvarvalue; /// child objects class colvarmodule { -private: - - /// Impossible to initialize the main object without arguments - colvarmodule(); - - /// Integer representing the version string (allows comparisons) - int version_int; - public: /// Get the version string (YYYY-MM-DD format) @@ -89,9 +72,21 @@ public: return version_int; } - friend class colvarproxy; - // TODO colvarscript should be unaware of colvarmodule's internals - friend class colvarscript; + /// Get the patch version number (non-zero in patch releases of other packages) + int patch_version_number() const + { + return patch_version_int; + } + +private: + + /// Integer representing the version string (allows comparisons) + int version_int = 0; + + /// Patch version number (non-zero in patch releases of other packages) + int patch_version_int = 0; + +public: /// Use a 64-bit integer to store the step number typedef long long step_number; @@ -190,7 +185,9 @@ public: template class matrix2d; class quaternion; class rotation; + class usage; + class memory_stream; /// Residue identifier typedef int residue_id; @@ -205,8 +202,6 @@ public: // allow these classes to access protected data class atom; class atom_group; - friend class atom; - friend class atom_group; typedef std::vector::iterator atom_iter; typedef std::vector::const_iterator atom_const_iter; @@ -247,6 +242,8 @@ public: return it; } + bool binary_restart; + /// \brief Finite difference step size (if there is no dynamics, or /// if gradients need to be tested independently from the size of /// dt) @@ -342,9 +339,19 @@ public: /// \param Pointer to instance of the proxy class (communicate with engine) colvarmodule(colvarproxy *proxy); +private: + + /// Cannot initialize the main object without a proxy + colvarmodule(); + +public: + /// Destructor ~colvarmodule(); + /// Set the initial step number (it is 0 otherwise); may be overridden when reading a state + void set_initial_step(step_number it); + /// Actual function called by the destructor int reset(); @@ -449,17 +456,52 @@ public: /// (Re)initialize the output trajectory and state file (does not write it yet) int setup_output(); - /// Read a restart file - std::istream & read_restart(std::istream &is); +private: + + template IST & read_state_template_(IST &is); + + /// Default input state file; if given, it is read unless the MD engine provides it + std::string default_input_state_file_; + + /// Internal state buffer, to be read as an unformatted stream + std::vector input_state_buffer_; + +public: + + /// Read all objects' state fron a formatted (text) stream + std::istream & read_state(std::istream &is); + + /// Read all objects' state fron an unformatted (binary) stream + memory_stream & read_state(memory_stream &is); + + /// Set an internal state buffer, to be read later as an unformatted stream when ready + int set_input_state_buffer(size_t n, unsigned char *buf); + + /// Same as set_input_state_buffer() for C array, but uses std::move + int set_input_state_buffer(std::vector &buf); /// Read the states of individual objects; allows for changes std::istream & read_objects_state(std::istream &is); + /// Read the states of individual objects; allows for changes + memory_stream & read_objects_state(memory_stream &is); + /// If needed (old restart file), print the warning that cannot be ignored int print_total_forces_errning(bool warn_total_forces); - /// Write the output restart file - std::ostream & write_restart(std::ostream &os); +private: + template OST &write_state_template_(OST &os); + +public: + + /// Write the state of the module to a formatted (text) file + std::ostream & write_state(std::ostream &os); + + /// Write the state of the module to an unformatted (binary) file + memory_stream & write_state(memory_stream &os); + + /// Write the state of the module to an array of bytes (wrapped as a memory_stream object) + int write_state_buffer(std::vector &buffer); /// Strips .colvars.state from filename and checks that it is not empty static std::string state_file_prefix(char const *filename); @@ -650,7 +692,7 @@ public: static void log(std::string const &message, int min_log_level = 10); /// Print a message to the main log and set global error code - static int error(std::string const &message, int code = COLVARS_ERROR); + static int error(std::string const &message, int code = -1); private: @@ -715,17 +757,6 @@ public: /// Clear the index groups loaded so far int reset_index_groups(); - /// \brief Select atom IDs from a file (usually PDB) \param filename name of - /// the file \param atoms array into which atoms read from "filename" will be - /// appended \param pdb_field (optional) if the file is a PDB and this - /// string is non-empty, select atoms for which this field is non-zero - /// \param pdb_field_value (optional) if non-zero, select only atoms whose - /// pdb_field equals this - static int load_atoms(char const *filename, - atom_group &atoms, - std::string const &pdb_field, - double pdb_field_value = 0.0); - /// \brief Load coordinates for a group of atoms from a file (PDB or XYZ); /// if "pos" is already allocated, the number of its elements must match the /// number of entries in "filename" \param filename name of the file \param @@ -755,7 +786,7 @@ public: std::string restart_out_name; /// Pseudo-random number with Gaussian distribution - static real rand_gaussian(void); + static real rand_gaussian(); protected: @@ -838,9 +869,20 @@ public: typedef colvarmodule cvm; - std::ostream & operator << (std::ostream &os, cvm::rvector const &v); std::istream & operator >> (std::istream &is, cvm::rvector &v); +namespace { + constexpr int32_t COLVARS_OK = 0; + constexpr int32_t COLVARS_ERROR = 1; + constexpr int32_t COLVARS_NOT_IMPLEMENTED = (1<<1); + constexpr int32_t COLVARS_INPUT_ERROR = (1<<2); // out of bounds or inconsistent input + constexpr int32_t COLVARS_BUG_ERROR = (1<<3); // Inconsistent state indicating bug + constexpr int32_t COLVARS_FILE_ERROR = (1<<4); + constexpr int32_t COLVARS_MEMORY_ERROR = (1<<5); + constexpr int32_t COLVARS_NO_SUCH_FRAME = (1<<6); // Cannot load the requested frame +} + + #endif diff --git a/lib/colvars/colvarmodule_refs.h b/lib/colvars/colvarmodule_refs.h index c3fccf297c..2e9615e3b4 100644 --- a/lib/colvars/colvarmodule_refs.h +++ b/lib/colvars/colvarmodule_refs.h @@ -14,6 +14,22 @@ " url = {https://doi.org/10.1016/j.softx.2015.06.001}\n" "}\n"; + paper_count_[std::string("BouRabee2010")] = 0; + paper_url_[std::string("BouRabee2010")] = "https://doi.org/10.1137/090758842"; + paper_bibtex_[std::string("BouRabee2010")] = + "\n" + "@article{BouRabee2010,\n" + " doi = {10.1137/090758842},\n" + " url = {https://doi.org/10.1137/090758842},\n" + " year = {2010},\n" + " volume = {48},\n" + " number = {1},\n" + " pages = {278--297},\n" + " author = {Nawaf Bou-Rabee and Houman Owhadi},\n" + " title = {Long-Run Accuracy of Variational Integrators in the Stochastic Context},\n" + " journal = {{SIAM} Journal on Numerical Analysis}\n" + "}\n"; + paper_count_[std::string("Chen2021")] = 0; paper_url_[std::string("Chen2021")] = "https://doi.org/10.1021/acs.jctc.1c00103"; paper_bibtex_[std::string("Chen2021")] = @@ -182,6 +198,19 @@ " url = {https://doi.org/10.1021/ct9004432}\n" "}\n"; + paper_count_[std::string("Henin2021")] = 0; + paper_url_[std::string("Henin2021")] = "https://doi.org/10.1021/acs.jctc.1c00593"; + paper_bibtex_[std::string("Henin2021")] = + "\n" + "@Article{Henin2021,\n" + " author = {H\\'enin, J.},\n" + " journal = {J. Chem. Theory Comput.},\n" + " title = {Fast and accurate multidimensional free energy integration},\n" + " year = {2021},\n" + " doi = {10.1021/acs.jctc.1c00593},\n" + " url = {https://doi.org/10.1021/acs.jctc.1c00593},\n" + "}\n"; + paper_count_[std::string("Humphrey1996")] = 0; paper_url_[std::string("Humphrey1996")] = "https://doi.org/10.1016/0263-7855(96)00018-5"; paper_bibtex_[std::string("Humphrey1996")] = @@ -215,19 +244,6 @@ " url = {https://doi.org/10.1021/acs.jpcb.6b10055}\n" "}\n"; - paper_count_[std::string("Henin2021")] = 0; - paper_url_[std::string("Henin2021")] = "https://doi.org/10.1021/acs.jctc.1c00593"; - paper_bibtex_[std::string("Henin2021")] = - "\n" - "@Article{Henin2021,\n" - " author = {H\\'enin, J.},\n" - " journal = {J. Chem. Theory Comput.},\n" - " title = {Fast and accurate multidimensional free energy integration},\n" - " year = {2021},\n" - " doi = {10.1021/acs.jctc.1c00593},\n" - " url = {https://doi.org/10.1021/acs.jctc.1c00593},\n" - "}\n"; - paper_count_[std::string("Marinelli2015")] = 0; paper_url_[std::string("Marinelli2015")] = "https://doi.org/10.1016/j.bpj.2015.05.024"; paper_bibtex_[std::string("Marinelli2015")] = @@ -335,6 +351,9 @@ feature_count_[std::string("GROMACS engine")] = 0; feature_paper_map_[std::string("GROMACS engine")] = "Abraham2015"; + feature_count_[std::string("BAOA integrator")] = 0; + feature_paper_map_[std::string("BAOA integrator")] = "BouRabee2010"; + feature_count_[std::string("reweightaMD colvar bias implementation (NAMD)")] = 0; feature_paper_map_[std::string("reweightaMD colvar bias implementation (NAMD)")] = "Chen2021"; @@ -422,14 +441,14 @@ feature_count_[std::string("orientationAngle colvar component (derived from orientation)")] = 0; feature_paper_map_[std::string("orientationAngle colvar component (derived from orientation)")] = "Fiorin2013"; - feature_count_[std::string("orientationProj colvar component (derived from orientation)")] = 0; - feature_paper_map_[std::string("orientationProj colvar component (derived from orientation)")] = "Fiorin2013"; + feature_count_[std::string("orientationProj colvar component (derived from orientationAngle)")] = 0; + feature_paper_map_[std::string("orientationProj colvar component (derived from orientationAngle)")] = "Fiorin2013"; - feature_count_[std::string("spinAngle colvar component (derived from orientation)")] = 0; - feature_paper_map_[std::string("spinAngle colvar component (derived from orientation)")] = "Fiorin2013"; + feature_count_[std::string("spinAngle colvar component (derived from tilt)")] = 0; + feature_paper_map_[std::string("spinAngle colvar component (derived from tilt)")] = "Fiorin2013"; - feature_count_[std::string("tilt colvar component (derived from orientation)")] = 0; - feature_paper_map_[std::string("tilt colvar component (derived from orientation)")] = "Fiorin2013"; + feature_count_[std::string("tilt colvar component (derived from orientationProj)")] = 0; + feature_paper_map_[std::string("tilt colvar component (derived from orientationProj)")] = "Fiorin2013"; feature_count_[std::string("alpha colvar component")] = 0; feature_paper_map_[std::string("alpha colvar component")] = "Fiorin2013"; @@ -479,14 +498,14 @@ feature_count_[std::string("polarPhi colvar component")] = 0; feature_paper_map_[std::string("polarPhi colvar component")] = "Fu2017"; - feature_count_[std::string("eulerPhi colvar component (derived from orientation)")] = 0; - feature_paper_map_[std::string("eulerPhi colvar component (derived from orientation)")] = "Fu2017"; + feature_count_[std::string("eulerPhi colvar component (derived from orientation_angle)")] = 0; + feature_paper_map_[std::string("eulerPhi colvar component (derived from orientation_angle)")] = "Fu2017"; - feature_count_[std::string("eulerTheta colvar component (derived from orientation)")] = 0; - feature_paper_map_[std::string("eulerTheta colvar component (derived from orientation)")] = "Fu2017"; + feature_count_[std::string("eulerTheta colvar component (derived from orientation_angle)")] = 0; + feature_paper_map_[std::string("eulerTheta colvar component (derived from orientation_angle)")] = "Fu2017"; - feature_count_[std::string("eulerPsi colvar component (derived from orientation)")] = 0; - feature_paper_map_[std::string("eulerPsi colvar component (derived from orientation)")] = "Fu2017"; + feature_count_[std::string("eulerPsi colvar component (derived from orientation_angle)")] = 0; + feature_paper_map_[std::string("eulerPsi colvar component (derived from orientation_angle)")] = "Fu2017"; feature_count_[std::string("dipoleAngle colvar component")] = 0; feature_paper_map_[std::string("dipoleAngle colvar component")] = "Garate2019"; @@ -500,6 +519,9 @@ feature_count_[std::string("Internal-forces free energy estimator")] = 0; feature_paper_map_[std::string("Internal-forces free energy estimator")] = "Henin2010"; + feature_count_[std::string("Poisson integration of 2D/3D free energy surfaces")] = 0; + feature_paper_map_[std::string("Poisson integration of 2D/3D free energy surfaces")] = "Henin2021"; + feature_count_[std::string("VMD engine")] = 0; feature_paper_map_[std::string("VMD engine")] = "Humphrey1996"; @@ -509,9 +531,6 @@ feature_count_[std::string("CZAR eABF estimator")] = 0; feature_paper_map_[std::string("CZAR eABF estimator")] = "Lesage2017"; - feature_count_[std::string("Poisson integration of 2D/3D free energy surfaces")] = 0; - feature_paper_map_[std::string("Poisson integration of 2D/3D free energy surfaces")] = "Henin2021"; - feature_count_[std::string("Ensemble-biased metadynamics (ebMetaD)")] = 0; feature_paper_map_[std::string("Ensemble-biased metadynamics (ebMetaD)")] = "Marinelli2015"; @@ -539,9 +558,6 @@ feature_count_[std::string("Colvars-GROMACS interface")] = 0; feature_paper_map_[std::string("Colvars-GROMACS interface")] = "n/a"; - feature_count_[std::string("Colvars Dashboard (Colvars-VMD graphical user interface)")] = 0; - feature_paper_map_[std::string("Colvars Dashboard (Colvars-VMD graphical user interface)")] = "n/a"; - feature_count_[std::string("gspath colvar component")] = 0; feature_paper_map_[std::string("gspath colvar component")] = "n/a"; @@ -571,3 +587,6 @@ feature_count_[std::string("Scripted functions (Tcl)")] = 0; feature_paper_map_[std::string("Scripted functions (Tcl)")] = "n/a"; + + feature_count_[std::string("ABMD bias")] = 0; + feature_paper_map_[std::string("ABMD bias")] = "n/a"; diff --git a/lib/colvars/colvarparse.cpp b/lib/colvars/colvarparse.cpp index 350ec1b56b..76b5c694c1 100644 --- a/lib/colvars/colvarparse.cpp +++ b/lib/colvars/colvarparse.cpp @@ -8,12 +8,12 @@ // Colvars repository at GitHub. #include -#include #include #include "colvarmodule.h" #include "colvarvalue.h" #include "colvarparse.h" +#include "colvars_memstream.h" // space & tab @@ -100,7 +100,7 @@ bool colvarparse::get_key_string_multi_value(std::string const &conf, char const *key, std::vector& data) { bool b_found = false, b_found_any = false; - size_t save_pos = 0, found_count = 0; + size_t save_pos = 0; data.clear(); @@ -110,7 +110,6 @@ bool colvarparse::get_key_string_multi_value(std::string const &conf, if (b_found) { if (!b_found_any) b_found_any = true; - found_count++; data.push_back(data_this); } } while (b_found); @@ -786,14 +785,12 @@ bool colvarparse::key_lookup(std::string const &conf, if (line[brace] == '{') brace_count++; if (line[brace] == '}') brace_count--; if (brace_count == 0) { - data_end = brace+1; break; } brace = line.find_first_of("{}", brace+1); } if (brace_count == 0) { - data_end = brace+1; break; } @@ -869,55 +866,107 @@ colvarparse::read_block::~read_block() std::istream & operator>> (std::istream &is, colvarparse::read_block const &rb) { - std::streampos start_pos = is.tellg(); - std::string read_key, next; + auto start_pos = is.tellg(); - if ( !(is >> read_key) || !(read_key == rb.key) || - !(is >> next) ) { - // the requested keyword has not been found, or it is not possible - // to read data after it + std::string read_key; + if ( !(is >> read_key) || !(read_key == rb.key) ) { + // the requested keyword has not been found is.clear(); - is.seekg(start_pos, std::ios::beg); + is.seekg(start_pos); is.setstate(std::ios::failbit); return is; } - if (next != "{") { - if (rb.data) { - *(rb.data) = next; + std::string next; + if (is >> next) { + if (next == "{") { + // Parse a formatted brace-delimited block + rb.read_block_contents(is); + } else { + if (rb.data) { + *(rb.data) = next; + } } - return is; + } else { + is.clear(); + is.seekg(start_pos); + is.setstate(std::ios::badbit); } - size_t brace_count = 1; + return is; +} + + +std::istream &colvarparse::read_block::read_block_contents(std::istream &is, + bool block_only) const +{ + int brace_count = block_only ? 0 : 1; + auto const start_pos = is.tellg(); std::string line; while (colvarparse::getline_nocomments(is, line)) { size_t br = 0, br_old = 0; - while ( (br = line.find_first_of("{}", br)) != std::string::npos) { - if (line[br] == '{') brace_count++; - if (line[br] == '}') brace_count--; + while ((br = line.find_first_of("{}", br)) != std::string::npos) { + if (line[br] == '{') + brace_count++; + if (line[br] == '}') + brace_count--; br_old = br; br++; } - if (brace_count) { - if (rb.data) { - (rb.data)->append(line + "\n"); + if (brace_count || block_only) { + // Add whole line if (1) brace are unmatched or (2) we're reading the whole stream anyway + if (data) { + data->append(line + "\n"); } - } - else { - if (rb.data) { - (rb.data)->append(line, 0, br_old); + } else { + // Not reading whole block and braces are matched; add until before the last brace + if (data) { + data->append(line.substr(0, br_old) + "\n"); } break; } } - if (brace_count) { - // end-of-file reached - // restore initial position - is.clear(); - is.seekg(start_pos, std::ios::beg); - is.setstate(std::ios::failbit); + + if (block_only) { + if (is.rdstate() & std::ios::eofbit) { + // Clear EOF errors if we were meant to read the whole block + is.clear(); + } + } else { + if (brace_count) { + // Could not match braces, restore initial position and set fail bit + is.clear(); + is.seekg(start_pos); + is.setstate(std::ios::failbit); + } } + + return is; +} + + +cvm::memory_stream &operator>>(cvm::memory_stream &is, colvarparse::read_block const &rb) +{ + auto const start_pos = is.tellg(); + + std::string read_key; + if ( !(is >> read_key) || !(read_key == rb.key) ) { + // the requested keyword has not been found + is.clear(); + is.seekg(start_pos); + is.setstate(std::ios::failbit); + return is; + } + + std::string content; + if (is >> content) { + std::istringstream iss(content); + if (!rb.read_block_contents(iss, true)) { + is.seekg(start_pos); + is.setstate(std::ios::failbit); + } + } + return is; } diff --git a/lib/colvars/colvarparse.h b/lib/colvars/colvarparse.h index d2286de6cf..105a0857a4 100644 --- a/lib/colvars/colvarparse.h +++ b/lib/colvars/colvarparse.h @@ -11,6 +11,7 @@ #define COLVARPARSE_H #include +#include #include #include "colvarmodule.h" @@ -40,7 +41,7 @@ public: void set_string(std::string const &conf); /// Default destructor - virtual ~colvarparse(); + ~colvarparse() override; /// Get the configuration string (includes comments) inline std::string const & get_config() const @@ -109,12 +110,12 @@ public: bool get_keyval(std::string const &conf, char const *key, int &value, - int const &def_value = (int)0, + int const &def_value = 0, Parse_Mode const parse_mode = parse_normal); bool get_keyval(std::string const &conf, char const *key, size_t &value, - size_t const &def_value = (size_t)0, + size_t const &def_value = 0, Parse_Mode const parse_mode = parse_normal); bool get_keyval(std::string const &conf, char const *key, @@ -134,7 +135,7 @@ public: bool get_keyval(std::string const &conf, char const *key, cvm::real &value, - cvm::real const &def_value = (cvm::real)0.0, + cvm::real const &def_value = 0.0, Parse_Mode const parse_mode = parse_normal); bool get_keyval(std::string const &conf, char const *key, @@ -159,17 +160,17 @@ public: bool get_keyval(std::string const &conf, char const *key, std::vector &values, - std::vector const &def_values = std::vector(0, (int)0), + std::vector const &def_values = std::vector(0, 0), Parse_Mode const parse_mode = parse_normal); bool get_keyval(std::string const &conf, char const *key, std::vector &values, - std::vector const &def_values = std::vector(0, (size_t)0), + std::vector const &def_values = std::vector(0, 0), Parse_Mode const parse_mode = parse_normal); bool get_keyval(std::string const &conf, char const *key, std::vector &values, - std::vector const &def_values = std::vector(0, (long)0), + std::vector const &def_values = std::vector(0, 0), Parse_Mode const parse_mode = parse_normal); bool get_keyval(std::string const &conf, char const *key, @@ -179,7 +180,7 @@ public: bool get_keyval(std::string const &conf, char const *key, std::vector &values, - std::vector const &def_values = std::vector(0, (cvm::real)0.0), + std::vector const &def_values = std::vector(0, 0.0), Parse_Mode const parse_mode = parse_normal); bool get_keyval(std::string const &conf, char const *key, @@ -262,33 +263,41 @@ public: { std::string out = ""; for (size_t i = 0; i < in.size(); i++) { - out.append(1, (char) ::tolower(in[i]) ); + out.append(1, static_cast( ::tolower(in[i])) ); } return out; } - /// \brief Helper class to read a block of the type "key { ... }" - /// from a stream and store it in a string + /// Helper class to read a block "key { ... }" from a stream and store it in a string /// - /// Useful on restarts, where the file is too big to be loaded in a - /// string by key_lookup; it can only check that the keyword is - /// correct and the block is properly delimited by braces, not - /// skipping other blocks + /// Useful on restarts, where the file is too big to be loaded in a string + /// by key_lookup(); it can only check that the keyword is correct and the + /// block is properly delimited by braces, not skipping other blocks class read_block { - - /// The keyword that identifies the block - std::string const key; - - /// Where to keep the data (may be NULL) - std::string * const data; - public: - read_block(std::string const &key_in, std::string *data_in = NULL); + read_block(std::string const &key, std::string *data = nullptr); ~read_block(); + /// Read block from stream, first check that key matches, then call read_contents() friend std::istream & operator >> (std::istream &is, read_block const &rb); + + /// Read block from stream, first check that key matches, then call read_contents() + friend cvm::memory_stream & operator >> (cvm::memory_stream &is, read_block const &rb); + + private: + + /// Keyword that identifies the block + std::string const key; + + /// Where to keep the data + std::string * const data; + + /// Read the contents of a formatted block after checking that the keyword matches + /// \param[in] is Stream object + /// \param[in] block_only If true, stream is assumed to contain only the block without braces + std::istream & read_block_contents(std::istream &is, bool block_only = false) const; }; @@ -304,8 +313,8 @@ public: /// within "conf", useful when doing multiple calls bool key_lookup(std::string const &conf, char const *key, - std::string *data = NULL, - size_t *save_pos = NULL); + std::string *data = nullptr, + size_t *save_pos = nullptr); /// \brief Reads a configuration line, adds it to config_string, and returns /// the stream \param is Input stream \param line String that will hold the diff --git a/lib/colvars/colvarproxy.cpp b/lib/colvars/colvarproxy.cpp index b09ea6667c..588b7c68d8 100644 --- a/lib/colvars/colvarproxy.cpp +++ b/lib/colvars/colvarproxy.cpp @@ -13,8 +13,9 @@ #include "colvarmodule.h" #include "colvarproxy.h" +#include "colvar.h" +#include "colvarbias.h" #include "colvarscript.h" -#include "colvaratoms.h" #include "colvarmodule_utils.h" @@ -23,6 +24,7 @@ colvarproxy_atoms::colvarproxy_atoms() { atoms_rms_applied_force_ = atoms_max_applied_force_ = 0.0; atoms_max_applied_force_id_ = -1; + modified_atom_list_ = false; updated_masses_ = updated_charges_ = false; } @@ -55,6 +57,7 @@ int colvarproxy_atoms::add_atom_slot(int atom_id) atoms_positions.push_back(cvm::rvector(0.0, 0.0, 0.0)); atoms_total_forces.push_back(cvm::rvector(0.0, 0.0, 0.0)); atoms_new_colvar_forces.push_back(cvm::rvector(0.0, 0.0, 0.0)); + modified_atom_list_ = true; return (atoms_ids.size() - 1); } @@ -71,6 +74,12 @@ int colvarproxy_atoms::check_atom_id(int /* atom_number */) } +int colvarproxy_atoms::check_atom_name_selections_available() +{ + return COLVARS_NOT_IMPLEMENTED; +} + + int colvarproxy_atoms::init_atom(cvm::residue_id const & /* residue */, std::string const & /* atom_name */, std::string const & /* segment_id */) @@ -112,29 +121,6 @@ size_t colvarproxy_atoms::get_num_active_atoms() const } -int colvarproxy_atoms::load_atoms(char const * /* filename */, - cvm::atom_group & /* atoms */, - std::string const & /* pdb_field */, - double) -{ - return cvm::error("Error: loading atom identifiers from a file " - "is currently not implemented.\n", - COLVARS_NOT_IMPLEMENTED); -} - - -int colvarproxy_atoms::load_coords(char const * /* filename */, - std::vector & /* pos */, - std::vector const & /* sorted_ids */, - std::string const & /* pdb_field */, - double) -{ - return cvm::error("Error: loading atomic coordinates from a file " - "is currently not implemented.\n", - COLVARS_NOT_IMPLEMENTED); -} - - void colvarproxy_atoms::compute_rms_atoms_applied_force() { atoms_rms_applied_force_ = @@ -280,7 +266,7 @@ colvarproxy_smp::~colvarproxy_smp() } -int colvarproxy_smp::smp_enabled() +int colvarproxy_smp::check_smp_enabled() { #if defined(_OPENMP) if (b_smp_active) { @@ -299,7 +285,7 @@ int colvarproxy_smp::smp_colvars_loop() colvarmodule *cv = cvm::main(); colvarproxy *proxy = cv->proxy; #pragma omp parallel for - for (size_t i = 0; i < cv->variables_active_smp()->size(); i++) { + for (int i = 0; i < static_cast(cv->variables_active_smp()->size()); i++) { colvar *x = (*(cv->variables_active_smp()))[i]; int x_item = (*(cv->variables_active_smp_items()))[i]; if (cvm::debug()) { @@ -324,7 +310,7 @@ int colvarproxy_smp::smp_biases_loop() #pragma omp parallel { #pragma omp for - for (size_t i = 0; i < cv->biases_active()->size(); i++) { + for (int i = 0; i < static_cast(cv->biases_active()->size()); i++) { colvarbias *b = (*(cv->biases_active()))[i]; if (cvm::debug()) { cvm::log("Calculating bias \""+b->name+"\" on thread "+ @@ -351,7 +337,7 @@ int colvarproxy_smp::smp_biases_script_loop() cv->calc_scripted_forces(); } #pragma omp for - for (size_t i = 0; i < cv->biases_active()->size(); i++) { + for (int i = 0; i < static_cast(cv->biases_active()->size()); i++) { colvarbias *b = (*(cv->biases_active()))[i]; if (cvm::debug()) { cvm::log("Calculating bias \""+b->name+"\" on thread "+ @@ -484,16 +470,21 @@ colvarproxy::~colvarproxy() bool colvarproxy::io_available() { - return (smp_enabled() == COLVARS_OK && smp_thread_id() == 0) || - (smp_enabled() != COLVARS_OK); + return (check_smp_enabled() == COLVARS_OK && smp_thread_id() == 0) || + (check_smp_enabled() != COLVARS_OK); } int colvarproxy::reset() { + if (cvm::debug()) { + cvm::log("colvarproxy::reset()\n"); + } int error_code = COLVARS_OK; error_code |= colvarproxy_atoms::reset(); error_code |= colvarproxy_atom_groups::reset(); + error_code |= colvarproxy_volmaps::reset(); + total_force_requested = false; return error_code; } @@ -541,6 +532,31 @@ int colvarproxy::parse_module_config() } +int colvarproxy::load_atoms_pdb(char const * /* filename */, + cvm::atom_group & /* atoms */, + std::string const & /* pdb_field */, + double /* pdb_field_value */) +{ + return cvm::error( + "Error: loading atom indices from a PDB file is currently not implemented in " + + engine_name() + ".\n", + COLVARS_NOT_IMPLEMENTED); +} + + +int colvarproxy::load_coords_pdb(char const * /* filename */, + std::vector & /* pos */, + std::vector const & /* sorted_ids */, + std::string const & /* pdb_field */, + double /* pdb_field_value */) +{ + return cvm::error( + "Error: loading atomic coordinates from a PDB file is currently not implemented in " + + engine_name() + ".\n", + COLVARS_NOT_IMPLEMENTED); +} + + int colvarproxy::update_input() { return COLVARS_OK; @@ -591,47 +607,78 @@ void colvarproxy::print_input_atomic_data() cvm::log(cvm::line_marker); cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atoms_ids = "+cvm::to_str(atoms_ids)+"\n"); + "atoms_ids[size = "+cvm::to_str(atoms_ids.size())+ + "] = "+cvm::to_str(atoms_ids)+"\n"); + cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atoms_refcount = "+cvm::to_str(atoms_refcount)+"\n"); + "atoms_refcount[size = "+cvm::to_str(atoms_refcount.size())+ + "] = "+cvm::to_str(atoms_refcount)+"\n"); + cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atoms_masses = "+cvm::to_str(atoms_masses)+"\n"); + "atoms_masses[size = "+cvm::to_str(atoms_masses.size())+ + "] = "+cvm::to_str(atoms_masses)+"\n"); + cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atoms_charges = "+cvm::to_str(atoms_charges)+"\n"); + "atoms_charges[size = "+cvm::to_str(atoms_charges.size())+ + "] = "+cvm::to_str(atoms_charges)+"\n"); + cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atoms_positions = "+cvm::to_str(atoms_positions, - cvm::cv_width, - cvm::cv_prec)+"\n"); + "atoms_positions[size = "+cvm::to_str(atoms_positions.size())+ + "] = "+cvm::to_str(atoms_positions, + cvm::cv_width, + cvm::cv_prec)+"\n"); + cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atoms_total_forces = "+cvm::to_str(atoms_total_forces, - cvm::cv_width, - cvm::cv_prec)+"\n"); + "atoms_total_forces[size = "+ + cvm::to_str(atoms_total_forces.size())+ + "] = "+cvm::to_str(atoms_total_forces, + cvm::cv_width, + cvm::cv_prec)+"\n"); cvm::log(cvm::line_marker); cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atom_groups_ids = "+cvm::to_str(atom_groups_ids)+"\n"); + "atom_groups_ids[size = "+cvm::to_str(atom_groups_ids.size())+ + "] = "+cvm::to_str(atom_groups_ids)+"\n"); + cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atom_groups_refcount = "+cvm::to_str(atom_groups_refcount)+"\n"); + "atom_groups_refcount[size = "+ + cvm::to_str(atom_groups_refcount.size())+ + "] = "+cvm::to_str(atom_groups_refcount)+"\n"); + cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atom_groups_masses = "+cvm::to_str(atom_groups_masses)+"\n"); + "atom_groups_masses[size = "+ + cvm::to_str(atom_groups_masses.size())+ + "] = "+cvm::to_str(atom_groups_masses)+"\n"); + cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atom_groups_charges = "+cvm::to_str(atom_groups_charges)+"\n"); + "atom_groups_charges[size = "+ + cvm::to_str(atom_groups_charges.size())+ + "] = "+cvm::to_str(atom_groups_charges)+"\n"); + cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atom_groups_coms = "+cvm::to_str(atom_groups_coms, - cvm::cv_width, - cvm::cv_prec)+"\n"); + "atom_groups_coms[size = "+ + cvm::to_str(atom_groups_coms.size())+ + "] = "+cvm::to_str(atom_groups_coms, + cvm::cv_width, + cvm::cv_prec)+"\n"); + cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "atom_groups_total_forces = "+cvm::to_str(atom_groups_total_forces, - cvm::cv_width, - cvm::cv_prec)+"\n"); + "atom_groups_total_forces[size = "+ + cvm::to_str(atom_groups_total_forces.size())+ + "] = "+cvm::to_str(atom_groups_total_forces, + cvm::cv_width, + cvm::cv_prec)+"\n"); cvm::log(cvm::line_marker); cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "volmaps_ids = "+cvm::to_str(volmaps_ids)+"\n"); + "volmaps_ids[size = "+cvm::to_str(volmaps_ids.size())+ + "] = "+cvm::to_str(volmaps_ids)+"\n"); + cvm::log("Step "+cvm::to_str(cvm::step_absolute())+", "+ - "volmaps_values = "+cvm::to_str(volmaps_values)+"\n"); + "volmaps_values[size = "+cvm::to_str(volmaps_values.size())+ + "] = "+cvm::to_str(volmaps_values)+"\n"); cvm::log(cvm::line_marker); } diff --git a/lib/colvars/colvarproxy.h b/lib/colvars/colvarproxy.h index 5733b8b66d..91db6011e9 100644 --- a/lib/colvars/colvarproxy.h +++ b/lib/colvars/colvarproxy.h @@ -12,7 +12,6 @@ #include "colvarmodule.h" #include "colvartypes.h" -#include "colvarvalue.h" #include "colvarproxy_io.h" #include "colvarproxy_system.h" #include "colvarproxy_tcl.h" @@ -56,6 +55,9 @@ public: /// corresponding atom yet virtual int check_atom_id(int atom_number); + /// Check whether it is possible to select atoms by residue number name + virtual int check_atom_name_selections_available(); + /// Select this atom for collective variables calculation, using name and /// residue number. Not all programs support this: leave this function as /// is in those cases. @@ -72,31 +74,6 @@ public: /// (costly) set the corresponding atoms_refcount to zero virtual void clear_atom(int index); - /// \brief Select atom IDs from a file (usually PDB) \param filename name of - /// the file \param atoms array to which atoms read from "filename" will be - /// appended \param pdb_field (optional) if the file is a PDB and this - /// string is non-empty, select atoms for which this field is non-zero - /// \param pdb_field_value (optional) if non-zero, select only atoms whose - /// pdb_field equals this - virtual int load_atoms(char const *filename, - cvm::atom_group &atoms, - std::string const &pdb_field, - double pdb_field_value = 0.0); - - /// \brief Load a set of coordinates from a file (usually PDB); if "pos" is - /// already allocated, the number of its elements must match the number of - /// entries in "filename" \param filename name of the file \param pos array - /// of coordinates \param sorted_ids array of sorted internal IDs, used to - /// loop through the file only once \param pdb_field (optional) if the file - /// is a PDB and this string is non-empty, select atoms for which this field - /// is non-zero \param pdb_field_value (optional) if non-zero, select only - /// atoms whose pdb_field equals this - virtual int load_coords(char const *filename, - std::vector &pos, - std::vector const &sorted_ids, - std::string const &pdb_field, - double pdb_field_value = 0.0); - /// Clear atomic data int reset(); @@ -245,6 +222,18 @@ public: return atoms_max_applied_force_id_; } + /// Whether the atom list has been modified internally + inline bool modified_atom_list() const + { + return modified_atom_list_; + } + + /// Reset the modified atom list flag + inline void reset_modified_atom_list() + { + modified_atom_list_ = false; + } + /// Record whether masses have been updated inline bool updated_masses() const { @@ -284,6 +273,9 @@ protected: /// ID of the atom with the maximum norm among all applied forces int atoms_max_applied_force_id_; + /// Whether the atom list has been modified internally + bool modified_atom_list_; + /// Whether the masses and charges have been updated from the host code bool updated_masses_, updated_charges_; @@ -466,7 +458,7 @@ public: bool b_smp_active; /// Whether threaded parallelization is available (TODO: make this a cvm::deps feature) - virtual int smp_enabled(); + virtual int check_smp_enabled(); /// Distribute calculation of colvars (and their components) across threads virtual int smp_colvars_loop(); @@ -565,9 +557,9 @@ public: -/// \brief Interface between the collective variables module and -/// the simulation or analysis program (NAMD, VMD, LAMMPS...). -/// This is the base class: each interfaced program is supported by a derived class. +/// Interface between Colvars and MD engine (GROMACS, LAMMPS, NAMD, VMD...) +/// +/// This is the base class: each engine is supported by a derived class. class colvarproxy : public colvarproxy_system, public colvarproxy_atoms, @@ -589,15 +581,20 @@ public: colvarproxy(); /// Destructor - virtual ~colvarproxy(); + ~colvarproxy() override; - virtual bool io_available() /* override */; + inline std::string const &engine_name() const + { + return engine_name_; + } + + bool io_available() override; /// Request deallocation of the module (currently only implemented by VMD) virtual int request_deletion(); /// Whether deallocation was requested - inline bool delete_requested() + inline bool delete_requested() const { return b_delete_requested; } @@ -608,6 +605,26 @@ public: /// (Re)initialize the module virtual int parse_module_config(); + /// \brief Read a selection of atom IDs from a PDB coordinate file + /// \param[in] filename name of the file + /// \param[in,out] atoms array into which atoms will be read from "filename" + /// \param[in] pdb_field if the file is a PDB and this string is non-empty, + /// select atoms for which this field is non-zero + /// \param[in] pdb_field_value if non-zero, select only atoms whose pdb_field equals this + virtual int load_atoms_pdb(char const *filename, cvm::atom_group &atoms, + std::string const &pdb_field, double pdb_field_value); + + /// \brief Load a set of coordinates from a PDB file + /// \param[in] filename name of the file + /// \param[in,out] pos array of coordinates to fill; if not empty, the number of its elements must match + /// the number of entries in "filename" + /// \param[in] sorted_ids array of sorted internal IDs, used to loop through the file only once + /// \param[in] pdb_field if non-empty, only atoms for which this field is non-zero will be processed + /// \param[in] pdb_field_value if non-zero, process only atoms whose pdb_field equals this + virtual int load_coords_pdb(char const *filename, std::vector &pos, + std::vector const &sorted_ids, std::string const &pdb_field, + double pdb_field_value); + /// (Re)initialize required member data (called after the module) virtual int setup(); @@ -703,7 +720,10 @@ protected: /// Track which features have been acknowledged during the last run size_t features_hash; -private: +protected: + + /// Name of the simulation engine that the derived proxy object supports + std::string engine_name_ = "standalone"; /// Queue of config strings or files to be fed to the module void *config_queue_; diff --git a/lib/colvars/colvarproxy_io.cpp b/lib/colvars/colvarproxy_io.cpp index 225ca40bef..4cfdfeec26 100644 --- a/lib/colvars/colvarproxy_io.cpp +++ b/lib/colvars/colvarproxy_io.cpp @@ -29,7 +29,6 @@ colvarproxy_io::colvarproxy_io() { - input_buffer_ = NULL; restart_frequency_engine = 0; input_stream_error_ = new std::istringstream(); input_stream_error_->setstate(std::ios::badbit); @@ -135,7 +134,9 @@ int colvarproxy_io::rename_file(char const *filename, char const *newfilename) int error_code = COLVARS_OK; #if defined(_WIN32) && !defined(__CYGWIN__) // On straight Windows, must remove the destination before renaming it - error_code |= remove_file(newfilename); + if (_access(newfilename, 00) == 0) { + error_code |= remove_file(newfilename); + } #endif int rename_exit_code = 0; while ((rename_exit_code = std::rename(filename, newfilename)) != 0) { @@ -151,6 +152,51 @@ int colvarproxy_io::rename_file(char const *filename, char const *newfilename) } +int colvarproxy_io::set_input_prefix(std::string const &prefix) +{ + // set input restart name and strip the extension, if present + input_prefix_str = prefix; + if (input_prefix_str.rfind(".colvars.state") != std::string::npos) { + input_prefix_str.erase(input_prefix_str.rfind(".colvars.state"), + std::string(".colvars.state").size()); + } + return COLVARS_OK; +} + + +int colvarproxy_io::set_output_prefix(std::string const &prefix) +{ + // set input restart name and strip the extension, if present + output_prefix_str = prefix; + if (output_prefix_str.rfind(".colvars.state") != std::string::npos) { + output_prefix_str.erase(output_prefix_str.rfind(".colvars.state"), + std::string(".colvars.state").size()); + } + return COLVARS_OK; +} + + +int colvarproxy_io::set_restart_output_prefix(std::string const &prefix) +{ + // set input restart name and strip the extension, if present + restart_output_prefix_str = prefix; + if (restart_output_prefix_str.rfind(".colvars.state") != std::string::npos) { + restart_output_prefix_str.erase(restart_output_prefix_str.rfind(".colvars.state"), + std::string(".colvars.state").size()); + } + return COLVARS_OK; +} + + +int colvarproxy_io::set_default_restart_frequency(int freq) +{ + // TODO check for compatibility with colvarsRestartFrequency + restart_frequency_engine = freq; + return COLVARS_OK; +} + + + std::istream &colvarproxy_io::input_stream(std::string const &input_name, std::string const description, bool error_on_fail) @@ -162,14 +208,19 @@ std::istream &colvarproxy_io::input_stream(std::string const &input_name, } if (colvarproxy_io::input_stream_exists(input_name)) { - return *(input_streams_[input_name]); + std::ifstream *ifs = + dynamic_cast(input_streams_[input_name]); + if (ifs && !ifs->is_open()) { + // This file was opened before, re-open it. Using std::ios::binary to + // work around differences in line termination conventions + // See https://github.com/Colvars/colvars/commit/8236879f7de4 + ifs->open(input_name.c_str(), std::ios::binary); + } + } else { + input_streams_[input_name] = new std::ifstream(input_name.c_str(), + std::ios::binary); } - // Using binary to work around differences in line termination conventions - // See https://github.com/Colvars/colvars/commit/8236879f7de4 - input_streams_[input_name] = new std::ifstream(input_name.c_str(), - std::ios::binary); - if (input_streams_[input_name]->fail() && error_on_fail) { cvm::error("Error: cannot open "+description+" \""+input_name+"\".\n", COLVARS_FILE_ERROR); @@ -179,6 +230,41 @@ std::istream &colvarproxy_io::input_stream(std::string const &input_name, } +std::istream & +colvarproxy_io::input_stream_from_string(std::string const &input_name, + std::string const &content, + std::string const description) +{ + if (!io_available()) { + cvm::error("Error: trying to access an input file/channel " + "from the wrong thread.\n", COLVARS_BUG_ERROR); + return *input_stream_error_; + } + + if (colvarproxy_io::input_stream_exists(input_name)) { + + std::istringstream *iss = + dynamic_cast(input_streams_[input_name]); + if (iss) { + // If there is already a stringstream, replace it + delete iss; + } else { + std::ifstream *ifs = + dynamic_cast(input_streams_[input_name]); + if (ifs) { + if (ifs->is_open()) { + ifs->close(); + } + } + } + } + + input_streams_[input_name] = new std::istringstream(content); + + return *(input_streams_[input_name]); +} + + bool colvarproxy_io::input_stream_exists(std::string const &input_name) { return (input_streams_.count(input_name) > 0); @@ -188,7 +274,38 @@ bool colvarproxy_io::input_stream_exists(std::string const &input_name) int colvarproxy_io::close_input_stream(std::string const &input_name) { if (colvarproxy_io::input_stream_exists(input_name)) { - delete input_streams_[input_name]; + std::ifstream *ifs = dynamic_cast(input_streams_[input_name]); + if (ifs) { + if (ifs->is_open()) { + ifs->close(); + } + } else { + // From a string, just rewind to the begining + std::istringstream * iss = dynamic_cast(input_streams_[input_name]); + if (iss) { + iss->clear(); + iss->seekg(0); + } + } + return COLVARS_OK; + } + return cvm::error("Error: input file/channel \""+input_name+ + "\" does not exist.\n", COLVARS_FILE_ERROR); +} + + +int colvarproxy_io::delete_input_stream(std::string const &input_name) +{ + if (colvarproxy_io::close_input_stream(input_name) == COLVARS_OK) { + std::ifstream *ifs = dynamic_cast(input_streams_[input_name]); + if (ifs) { + delete ifs; + } else { + std::istringstream * iss = dynamic_cast(input_streams_[input_name]); + if (iss) { + delete iss; + } + } input_streams_.erase(input_name); return COLVARS_OK; } @@ -199,7 +316,8 @@ int colvarproxy_io::close_input_stream(std::string const &input_name) int colvarproxy_io::close_input_streams() { - for (std::map::iterator ii = input_streams_.begin(); + for (std::map::iterator ii = input_streams_.begin(); ii != input_streams_.end(); ii++) { delete ii->second; @@ -209,6 +327,19 @@ int colvarproxy_io::close_input_streams() } +std::list colvarproxy_io::list_input_stream_names() const +{ + std::list result; + for (std::map::const_iterator ii = input_streams_.begin(); + ii != input_streams_.end(); + ii++) { + result.push_back(ii->first); + } + return result; +} + + std::ostream & colvarproxy_io::output_stream(std::string const &output_name, std::string const description) { @@ -228,7 +359,7 @@ std::ostream & colvarproxy_io::output_stream(std::string const &output_name, backup_file(output_name.c_str()); - output_streams_[output_name] = new std::ofstream(output_name.c_str()); + output_streams_[output_name] = new std::ofstream(output_name.c_str(), std::ios::binary); if (!*(output_streams_[output_name])) { cvm::error("Error: cannot write to "+description+" \""+output_name+"\".\n", COLVARS_FILE_ERROR); @@ -303,6 +434,7 @@ int colvarproxy_io::close_output_streams() osi != output_streams_.end(); osi++) { (dynamic_cast(osi->second))->close(); + delete osi->second; } output_streams_.clear(); diff --git a/lib/colvars/colvarproxy_io.h b/lib/colvars/colvarproxy_io.h index ee217362d4..726f915c97 100644 --- a/lib/colvars/colvarproxy_io.h +++ b/lib/colvars/colvarproxy_io.h @@ -10,9 +10,10 @@ #ifndef COLVARPROXY_IO_H #define COLVARPROXY_IO_H +#include +#include #include #include -#include /// Methods for data input/output @@ -66,57 +67,80 @@ public: } /// Prefix of the input state file to be read next - inline std::string & input_prefix() + inline std::string const & input_prefix() const { return input_prefix_str; } + /// Initialize input_prefix (NOTE: it will be erased after state file is read) + virtual int set_input_prefix(std::string const &prefix); + /// Default prefix to be used for all output files (final configuration) - inline std::string & output_prefix() + inline std::string const & output_prefix() const { return output_prefix_str; } + /// Set default output prefix + virtual int set_output_prefix(std::string const &prefix); + /// Prefix of the restart (checkpoint) file to be written next - inline std::string & restart_output_prefix() + inline std::string const & restart_output_prefix() const { return restart_output_prefix_str; } + /// Set default restart state file prefix + virtual int set_restart_output_prefix(std::string const &prefix); + /// Default restart frequency (as set by the simulation engine) inline int default_restart_frequency() const { return restart_frequency_engine; } - /// Buffer from which the input state information may be read - inline char const * & input_buffer() - { - return input_buffer_; - } + /// Communicate/set the restart frequency of the simulation engine + virtual int set_default_restart_frequency(int freq); + + // The input stream functions below are not virtual, because they currently + // rely on the fact that either std::ifstream or std::istringstream is used /// Returns a reference to given input stream, creating it if needed /// \param input_name File name (later only a handle) /// \param description Purpose of the file /// \param error_on_fail Raise error when failing to open (allow testing) - virtual std::istream &input_stream(std::string const &input_name, - std::string const description = "file/channel", - bool error_on_fail = true); + std::istream & input_stream(std::string const &input_name, + std::string const description = "file/channel", + bool error_on_fail = true); + + /// Returns a reference to given input stream, creating it if needed + /// \param input_name Identifier of the input stream + /// \param content Set this string as the stream's buffer + /// \param description Purpose of the stream + std::istream & input_stream_from_string(std::string const &input_name, + std::string const &content, + std::string const description = "string"); /// Check if the file/channel is open (without opening it if not) - virtual bool input_stream_exists(std::string const &input_name); + bool input_stream_exists(std::string const &input_name); /// Closes the given input stream - virtual int close_input_stream(std::string const &input_name); + int close_input_stream(std::string const &input_name); /// Closes all input streams - virtual int close_input_streams(); + int close_input_streams(); + + /// Same as close_input_stream(), but also removes the corresponding entry from memory + int delete_input_stream(std::string const &input_name); + + /// List all input streams that were opened at some point + std::list list_input_stream_names() const; /// Returns a reference to the named output file/channel (open it if needed) /// \param output_name File name or identifier /// \param description Purpose of the file virtual std::ostream &output_stream(std::string const &output_name, - std::string const description = "file/channel"); + std::string const description); /// Check if the file/channel is open (without opening it if not) virtual bool output_stream_exists(std::string const &output_name); @@ -158,9 +182,6 @@ protected: /// Object whose reference is returned when write errors occur std::ostream *output_stream_error_; - - /// Buffer from which the input state information may be read - char const *input_buffer_; }; diff --git a/lib/colvars/colvarproxy_system.cpp b/lib/colvars/colvarproxy_system.cpp index 0a2769dcc9..acab5fa4c3 100644 --- a/lib/colvars/colvarproxy_system.cpp +++ b/lib/colvars/colvarproxy_system.cpp @@ -18,6 +18,7 @@ colvarproxy_system::colvarproxy_system() { angstrom_value_ = 0.0; kcal_mol_value_ = 0.0; + timestep_ = 1.0; target_temperature_ = 0.0; boltzmann_ = 0.001987191; // Default: kcal/mol/K boundaries_type = boundaries_unsupported; @@ -46,10 +47,10 @@ int colvarproxy_system::set_target_temperature(cvm::real T) } -cvm::real colvarproxy_system::dt() +int colvarproxy_system::set_integration_timestep(cvm::real dt) { - // TODO define, document and implement a user method to set the value of this - return 1.0; + timestep_ = dt; + return COLVARS_OK; } diff --git a/lib/colvars/colvarproxy_system.h b/lib/colvars/colvarproxy_system.h index be3cd346c2..67d0938e54 100644 --- a/lib/colvars/colvarproxy_system.h +++ b/lib/colvars/colvarproxy_system.h @@ -61,8 +61,14 @@ public: /// Set the current target temperature of the simulation (K units) virtual int set_target_temperature(cvm::real T); - /// \brief Time step of the simulation (fs) - virtual cvm::real dt(); + /// Time step of the simulation (fs units) + inline double dt() const + { + return timestep_; + } + + /// Set the current integration timestep of the simulation (fs units) + virtual int set_integration_timestep(cvm::real dt); /// \brief Pseudo-random number with Gaussian distribution virtual cvm::real rand_gaussian(void); @@ -137,9 +143,12 @@ protected: /// Boltzmann constant in internal Colvars units cvm::real boltzmann_; - /// Most up to date target temperature for the system (in K) + /// Most up to date target temperature (K units); default to 0.0 if undefined cvm::real target_temperature_; + /// Current integration timestep (engine units); default to 1.0 if undefined + double timestep_; + /// \brief Value of 1 Angstrom in the internal (front-end) Colvars unit for atomic coordinates /// * defaults to 0 in the base class; derived proxy classes must set it /// * in VMD proxy, can only be changed when no variables are defined diff --git a/lib/colvars/colvarproxy_tcl.cpp b/lib/colvars/colvarproxy_tcl.cpp index 5bf97a0d98..fa06b7a3c8 100644 --- a/lib/colvars/colvarproxy_tcl.cpp +++ b/lib/colvars/colvarproxy_tcl.cpp @@ -83,7 +83,7 @@ int colvarproxy_tcl::tcl_run_file(std::string const &fileName) Tcl_Interp *const interp = get_tcl_interp(); int err = Tcl_EvalFile(interp, fileName.c_str()); if (err != TCL_OK) { - cvm::log("Error while executing Tcl script file" + fileName + ":\n"); + cvm::log("Error while executing Tcl script file \"" + fileName + "\":\n"); cvm::error(Tcl_GetStringResult(interp)); return COLVARS_ERROR; } diff --git a/lib/colvars/colvarproxy_volmaps.cpp b/lib/colvars/colvarproxy_volmaps.cpp index 6c1f11e32e..3d02d8085a 100644 --- a/lib/colvars/colvarproxy_volmaps.cpp +++ b/lib/colvars/colvarproxy_volmaps.cpp @@ -21,7 +21,7 @@ colvarproxy_volmaps::colvarproxy_volmaps() colvarproxy_volmaps::~colvarproxy_volmaps() {} -int colvarproxy_volmaps::volmaps_available() +int colvarproxy_volmaps::check_volmaps_available() { return COLVARS_NOT_IMPLEMENTED; } diff --git a/lib/colvars/colvarproxy_volmaps.h b/lib/colvars/colvarproxy_volmaps.h index f8c9ba8539..6e1ffcc7c1 100644 --- a/lib/colvars/colvarproxy_volmaps.h +++ b/lib/colvars/colvarproxy_volmaps.h @@ -18,8 +18,8 @@ public: /// Clear volumetric map data int reset(); - /// \brief Whether this implementation has capability to use volumetric maps - virtual int volmaps_available(); + /// Test whether this implementation can use volumetric maps as CVs + virtual int check_volmaps_available(); /// Create a slot for a volumetric map not requested yet int add_volmap_slot(int volmap_id); diff --git a/lib/colvars/colvars_memstream.cpp b/lib/colvars/colvars_memstream.cpp new file mode 100644 index 0000000000..13cb8fb343 --- /dev/null +++ b/lib/colvars/colvars_memstream.cpp @@ -0,0 +1,102 @@ +// -*- c++ -*- + +// This file is part of the Collective Variables module (Colvars). +// The original version of Colvars and its updates are located at: +// https://github.com/Colvars/colvars +// Please update all Colvars source files before making any changes. +// If you wish to distribute your changes, please submit them to the +// Colvars repository at GitHub. + + +#include "colvarmodule.h" +#include "colvartypes.h" +#include "colvarvalue.h" +#include "colvars_memstream.h" + + +bool cvm::memory_stream::expand_output_buffer(size_t add_bytes) +{ + auto &buffer = external_output_buffer_ ? *external_output_buffer_ : internal_buffer_; + if ((buffer.size() + add_bytes) <= max_length_) { + buffer.resize((buffer.size() + add_bytes)); + } else { + setstate(std::ios::badbit); + } + return bool(*this); +} + + +template <> void cvm::memory_stream::write_object(std::string const &t) +{ + size_t const string_length = t.size(); + size_t const new_data_size = sizeof(size_t) + sizeof(char) * string_length; + if (expand_output_buffer(new_data_size)) { + std::memcpy(output_location(), &string_length, sizeof(size_t)); + incr_write_pos(sizeof(size_t)); + std::memcpy(output_location(), t.c_str(), t.size() * sizeof(char)); + incr_write_pos(t.size() * sizeof(char)); + } +} + +template <> cvm::memory_stream &operator<<(cvm::memory_stream &os, std::string const &t) +{ + os.write_object(t); + return os; +} + +template <> void cvm::memory_stream::write_object(colvarvalue const &t) +{ + *this << t; +} + +template <> void cvm::memory_stream::write_object(cvm::vector1d const &t) +{ + return write_vector(t.data_array()); +} + +template <> +cvm::memory_stream &operator<<(cvm::memory_stream &os, cvm::vector1d const &t) +{ + os.write_vector(t.data_array()); + return os; +} + + +template <> void cvm::memory_stream::read_object(std::string &t) +{ + begin_reading(); + size_t string_length = 0; + if (has_remaining(sizeof(size_t))) { + std::memcpy(&string_length, input_location(), sizeof(size_t)); + incr_read_pos(sizeof(size_t)); + if (has_remaining(string_length * sizeof(char))) { + t.assign(reinterpret_cast(input_location()), string_length); + incr_read_pos(string_length * sizeof(char)); + done_reading(); + } else { + setstate(std::ios::failbit); + } + } +} + +template <> cvm::memory_stream &operator>>(cvm::memory_stream &is, std::string &t) +{ + is.read_object(t); + return is; +} + +template <> void cvm::memory_stream::read_object(colvarvalue &t) +{ + *this >> t; +} + +template <> void cvm::memory_stream::read_object(cvm::vector1d &t) +{ + return read_vector(t.data_array()); +} + +template <> cvm::memory_stream &operator>>(cvm::memory_stream &is, cvm::vector1d &t) +{ + is.read_vector(t.data_array()); + return is; +} diff --git a/lib/colvars/colvars_memstream.h b/lib/colvars/colvars_memstream.h new file mode 100644 index 0000000000..0d80d2794d --- /dev/null +++ b/lib/colvars/colvars_memstream.h @@ -0,0 +1,289 @@ +// -*- c++ -*- + +// This file is part of the Collective Variables module (Colvars). +// The original version of Colvars and its updates are located at: +// https://github.com/Colvars/colvars +// Please update all Colvars source files before making any changes. +// If you wish to distribute your changes, please submit them to the +// Colvars repository at GitHub. + +#ifndef MEMORY_STREAM_H +#define MEMORY_STREAM_H + +#include +#include +#include +#include +#include + + +// Work around missing std::is_trivially_copyable in old GCC and Clang versions +// TODO remove this after CentOS 7 has been beyond EOL for a while +#if (defined(__GNUC__) && (__GNUC__ < 5) && !defined(__clang__)) || (defined(__clang__) && (__clang_major__ < 7)) +// Clang needs an exception, because it defines __GNUC__ as well +#define IS_TRIVIALLY_COPYABLE(T) __has_trivial_copy(T) +#else +#define IS_TRIVIALLY_COPYABLE(T) std::is_trivially_copyable::value +#endif + + +class cvm::memory_stream { + +public: + + /// Set up an empty stream with an internal buffer, suitable for writing to + /// \param max_length Maximum allowed capacity (default is 64 GiB) + memory_stream(size_t max_length = (static_cast(1L) << 36)) : max_length_(max_length) {} + + /// Set up a stream based on an external input buffer + memory_stream(size_t n, unsigned char const *buf) + : external_input_buffer_(buf), internal_buffer_(), data_length_(n), max_length_(data_length_) + { + } + + /// Set up a stream based on an external output buffer + memory_stream(std::vector &buf) : memory_stream() + { + external_output_buffer_ = &buf; + } + + /// Length of the buffer + inline size_t length() const { return data_length_; } + + /// Output buffer + inline unsigned char *output_buffer() + { + return (external_output_buffer_ ? external_output_buffer_->data() : internal_buffer_.data()); + } + + /// Next location to write to + inline unsigned char *output_location() { return output_buffer() + data_length_; } + + /// Input buffer + inline unsigned char const *input_buffer() const + { + return (external_input_buffer_ ? external_input_buffer_ : internal_buffer_.data()); + } + + /// Next location to read from + inline unsigned char const *input_location() const { return input_buffer() + read_pos_; } + + /// Cast operator to be used to test for errors + inline explicit operator bool() const { return state_ == std::ios::goodbit; } + + /// Write a simple object to the output buffer + template void write_object(T const &t); + + /// Wrapper to write_object() + template friend memory_stream &operator<<(memory_stream &os, T const &t); + + /// Write a vector of simple objects to the output buffer + template void write_vector(std::vector const &t); + + /// Wrapper to write_vector() + template + friend memory_stream &operator<<(memory_stream &os, std::vector const &t); + + /// Read a simple object from the buffer + template void read_object(T &t); + + /// Wrapper to read_object() + template friend memory_stream &operator>>(memory_stream &is, T &t); + + /// Read a vector of simple objects from the buffer + template void read_vector(std::vector &t); + + /// Wrapper to read_vector() + template friend memory_stream &operator>>(memory_stream &is, std::vector &t); + + + // Compatibility with STL stream functions + + /// Report the current position in the buffer + inline size_t tellg() const { return read_pos_; } + + /// Report the current position in the buffer + inline memory_stream & seekg(size_t pos) { read_pos_ = pos; return *this; } + + /// Ignore formatting operators + inline void setf(decltype(std::ios::fmtflags(0)), decltype(std::ios::floatfield)) {} + + /// Ignore formatting operators + inline void flags(decltype(std::ios::fmtflags(0))) {} + + /// Get the current formatting flags (i.e. none because this stream is unformatted) + inline decltype(std::ios::fmtflags(0)) flags() const { return std::ios::fmtflags(0); } + + /// Get the error code + inline std::ios::iostate rdstate() const { return state_; } + + /// Set the error code + inline void setstate(std::ios::iostate new_state) { state_ |= new_state; } + + /// Clear the error code + inline void clear() { state_ = std::ios::goodbit; } + +protected: + + /// External output buffer + std::vector *external_output_buffer_ = nullptr; + + /// External input buffer + unsigned char const *external_input_buffer_ = nullptr; + + /// Internal buffer (may server for both input and output) + std::vector internal_buffer_; + + /// Length of the data buffer (either internal or external) + size_t data_length_ = 0L; + + /// Largest allowed capacity of the data buffer + size_t const max_length_; + + /// Error status + std::ios::iostate state_ = std::ios::goodbit; + + /// Add the requester number of bytes to the array capacity; return false if buffer is external + bool expand_output_buffer(size_t add_bytes); + + /// Move the buffer position past the data just written + inline void incr_write_pos(size_t c) { data_length_ += c; } + + /// Current position when reading from the buffer + size_t read_pos_ = 0L; + + /// Begin an attempt to read an object; assume EOF unless there is space remaining + inline void begin_reading() { setstate(std::ios::eofbit); } + + /// Mark the reading attempt succesful + inline void done_reading() { clear(); } + + /// Move the buffer position past the data just read + inline void incr_read_pos(size_t c) { read_pos_ += c; } + + /// Check that the buffer contains enough bytes to read as the argument says, set error + /// otherwise + inline bool has_remaining(size_t c) { return c <= (data_length_ - read_pos_); } + }; + +template void cvm::memory_stream::write_object(T const &t) +{ + static_assert(IS_TRIVIALLY_COPYABLE(T), "Cannot use write_object() on complex type"); + size_t const new_data_size = sizeof(T); + if (expand_output_buffer(new_data_size)) { + std::memcpy(output_location(), &t, sizeof(T)); + incr_write_pos(new_data_size); + } +} + +template cvm::memory_stream &operator<<(cvm::memory_stream &os, T const &t) +{ + os.write_object(t); + return os; +} + +template void cvm::memory_stream::write_vector(std::vector const &t) +{ + static_assert(IS_TRIVIALLY_COPYABLE(T), "Cannot use write_vector() on complex type"); + size_t const vector_length = t.size(); + size_t const new_data_size = sizeof(size_t) + sizeof(T) * vector_length; + if (expand_output_buffer(new_data_size)) { + std::memcpy(output_location(), &vector_length, sizeof(size_t)); + incr_write_pos(sizeof(T)); + std::memcpy(output_location(), t.data(), t.size() * sizeof(T)); + incr_write_pos(t.size() * sizeof(T)); + } +} + +template +cvm::memory_stream &operator<<(cvm::memory_stream &os, std::vector const &t) +{ + os.write_vector(t); + return os; +} + +template void cvm::memory_stream::read_object(T &t) +{ + static_assert(IS_TRIVIALLY_COPYABLE(T), "Cannot use read_object() on complex type"); + begin_reading(); + if (has_remaining(sizeof(T))) { + std::memcpy(&t, input_location(), sizeof(T)); + incr_read_pos(sizeof(T)); + done_reading(); + } +} + +template cvm::memory_stream &operator>>(cvm::memory_stream &is, T &t) +{ + is.read_object(t); + return is; +} + +template void cvm::memory_stream::read_vector(std::vector &t) +{ + static_assert(IS_TRIVIALLY_COPYABLE(T), "Cannot use read_vector() on complex type"); + begin_reading(); + size_t vector_length = 0; + if (has_remaining(sizeof(size_t))) { + std::memcpy(&vector_length, input_location(), sizeof(size_t)); + incr_read_pos(sizeof(size_t)); + if (has_remaining(vector_length * sizeof(T))) { + t.resize(vector_length); + std::memcpy(t.data(), input_location(), vector_length * sizeof(T)); + incr_read_pos(vector_length * sizeof(T)); + done_reading(); + } else { + setstate(std::ios::failbit); + } + } +} + +template cvm::memory_stream &operator>>(cvm::memory_stream &is, std::vector &t) +{ + is.read_vector(t); + return is; +} + +template cvm::memory_stream &operator<<(cvm::memory_stream &os, + decltype(std::setprecision(10)) const &) +{ + return os; +} + +#if !defined(_MSC_VER) && !defined(__SUNPRO_CC) +// Visual Studio and MSVC use the same return type for both modifiers +template cvm::memory_stream &operator<<(cvm::memory_stream &os, + decltype(std::setw(10)) const &) +{ + return os; +} +#endif + +// Declare specializations + +template <> void cvm::memory_stream::write_object(std::string const &t); + +template <> cvm::memory_stream &operator<<(cvm::memory_stream &os, std::string const &t); + +template <> void cvm::memory_stream::write_object(colvarvalue const &t); + +template <> cvm::memory_stream &operator<<(cvm::memory_stream &os, colvarvalue const &x); + +template <> void cvm::memory_stream::write_object(cvm::vector1d const &t); + +template <> +cvm::memory_stream &operator<<(cvm::memory_stream &os, cvm::vector1d const &t); + +template <> void cvm::memory_stream::read_object(std::string &t); + +template <> cvm::memory_stream &operator>>(cvm::memory_stream &is, std::string &t); + +template <> void cvm::memory_stream::read_object(colvarvalue &t); + +template <> cvm::memory_stream &operator>>(cvm::memory_stream &is, colvarvalue &t); + +template <> void cvm::memory_stream::read_object(cvm::vector1d &t); + +template <> cvm::memory_stream &operator>>(cvm::memory_stream &is, cvm::vector1d &t); + +#endif diff --git a/lib/colvars/colvars_version.h b/lib/colvars/colvars_version.h index d500c0e5ec..d50a00fff5 100644 --- a/lib/colvars/colvars_version.h +++ b/lib/colvars/colvars_version.h @@ -1,3 +1,3 @@ #ifndef COLVARS_VERSION -#define COLVARS_VERSION "2023-05-01" +#define COLVARS_VERSION "2024-06-04" #endif diff --git a/lib/colvars/colvarscript.cpp b/lib/colvars/colvarscript.cpp index 68dd218a62..085319bd40 100644 --- a/lib/colvars/colvarscript.cpp +++ b/lib/colvars/colvarscript.cpp @@ -7,8 +7,6 @@ // If you wish to distribute your changes, please submit them to the // Colvars repository at GitHub. -#include -#include #include #include "colvarproxy.h" @@ -35,6 +33,7 @@ colvarscript::colvarscript(colvarproxy *p, colvarmodule *m) : proxy_(p), colvars(m) { + cmdline_main_cmd_ = std::string("cv"); cmd_names = NULL; init_commands(); #ifdef COLVARS_TCL @@ -141,7 +140,7 @@ int colvarscript::init_command(colvarscript::command const &comm, } cmd_full_help[comm] = cmd_help[comm]+"\n"; - if (cmd_n_args_min[comm] > 0) { + if (cmd_n_args_max[comm] > 0) { cmd_full_help[comm] += "\nParameters\n"; cmd_full_help[comm] += "----------\n\n"; size_t i; @@ -281,11 +280,15 @@ std::string colvarscript::get_command_cmdline_syntax(colvarscript::Object_type t switch (t) { case use_module: - return std::string("cv "+cmdline_cmd+cmdline_args); break; + return std::string(cmdline_main_cmd_ + " " + cmdline_cmd + cmdline_args); + break; case use_colvar: - return std::string("cv colvar name "+cmdline_cmd+cmdline_args); break; + return std::string(cmdline_main_cmd_ + " colvar name " + cmdline_cmd+ + cmdline_args); + break; case use_bias: - return std::string("cv bias name "+cmdline_cmd+cmdline_args); break; + return std::string(cmdline_main_cmd_ + " bias name " + cmdline_cmd+cmdline_args); + break; default: // Already handled, but silence the warning return std::string(""); @@ -353,7 +356,7 @@ int colvarscript::run(int objc, unsigned char *const objv[]) } if (objc < 2) { - set_result_str("No commands given: use \"cv help\" " + set_result_str("No commands given: use \""+cmdline_main_cmd_+" help\" " "for a list of commands."); return COLVARSCRIPT_ERROR; } @@ -436,7 +439,8 @@ int colvarscript::run(int objc, unsigned char *const objv[]) error_code = (*cmd_fn)(obj_for_cmd, objc, objv); } else { add_error_msg("Syntax error: "+cmdline+"\n" - " Run \"cv help\" or \"cv help \" " + " Run \""+main_cmd+" help\" or \""+ + main_cmd+" help \" " "to get the correct syntax.\n"); error_code = COLVARSCRIPT_ERROR; } @@ -763,7 +767,7 @@ extern "C" int tcl_run_colvarscript_command(ClientData /* clientData */, int colvarscript::set_result_text_from_str(std::string const &x_str, unsigned char *obj) { if (obj) { - strcpy(reinterpret_cast(obj), x_str.c_str()); + std::memcpy(reinterpret_cast(obj), x_str.c_str(), x_str.size()); } else { set_result_str(x_str); } diff --git a/lib/colvars/colvarscript.h b/lib/colvars/colvarscript.h index d624d9ce38..229fe0ff39 100644 --- a/lib/colvars/colvarscript.h +++ b/lib/colvars/colvarscript.h @@ -16,7 +16,6 @@ #include "colvarmodule.h" #include "colvarvalue.h" -#include "colvarbias.h" #include "colvarproxy.h" @@ -25,6 +24,8 @@ #define COLVARSCRIPT_OK 0 +class colvardeps; + class colvarscript { private: @@ -161,6 +162,11 @@ public: /// \param cmd Name of the command's function (e.g. "cv_units") int get_command_n_args_max(char const *cmd); + /// Set the main command for the CLI, when it is not "cv" (e.g. LAMMPS) + inline void set_cmdline_main_cmd(std::string const &cmd) { + cmdline_main_cmd_ = cmd; + } + /// Get help string for a command (does not specify how it is launched) /// \param cmd Name of the command's function (e.g. "cv_units") char const *get_command_full_help(char const *cmd); @@ -263,6 +269,9 @@ private: // TODO /// Internal identifiers of command strings std::map cmd_str_map; + /// Main command used in command line ("cv" by default) + std::string cmdline_main_cmd_; + /// Inverse of cmd_str_map (to be exported outside this class) char const **cmd_names; diff --git a/lib/colvars/colvarscript_commands.cpp b/lib/colvars/colvarscript_commands.cpp index c0a28825bf..5db3b96f03 100644 --- a/lib/colvars/colvarscript_commands.cpp +++ b/lib/colvars/colvarscript_commands.cpp @@ -8,9 +8,9 @@ // Colvars repository at GitHub. #include -#include -#include +#include "colvar.h" +#include "colvarbias.h" #include "colvarproxy.h" #include "colvardeps.h" #include "colvarscript.h" diff --git a/lib/colvars/colvarscript_commands.h b/lib/colvars/colvarscript_commands.h index 6dd63d82d2..bdad74e433 100644 --- a/lib/colvars/colvarscript_commands.h +++ b/lib/colvars/colvarscript_commands.h @@ -47,14 +47,10 @@ // If CVSCRIPT is not defined, this file yields the function prototypes #ifndef CVSCRIPT -#ifdef __cplusplus #define CVSCRIPT_COMM_PROTO(COMM) \ extern "C" int CVSCRIPT_COMM_FNAME(COMM)(void *, \ - int, unsigned char *const *); -#else -#define CVSCRIPT_COMM_PROTO(COMM) \ - int CVSCRIPT_COMM_FNAME(COMM)(void *, int, unsigned char *const *); -#endif + int, \ + unsigned char *const *); #define CVSCRIPT(COMM,HELP,N_ARGS_MIN,N_ARGS_MAX,ARGS,FN_BODY) \ CVSCRIPT_COMM_PROTO(COMM) @@ -454,7 +450,8 @@ CVSCRIPT(cv_listcommands, ) CVSCRIPT(cv_listindexfiles, - "Get a list of the index files loaded in this session", + "Get a list of the index files loaded in this session\n" + "list : sequence of strings - List of index file names", 0, 0, "", int const n_files = script->module()->index_file_names.size(); @@ -467,19 +464,36 @@ CVSCRIPT(cv_listindexfiles, return COLVARS_OK; ) +CVSCRIPT(cv_listinputfiles, + "Get a list of all input/configuration files loaded in this session\n" + "list : sequence of strings - List of file names", + 0, 0, + "", + std::list const l = + script->proxy()->list_input_stream_names(); + std::string result; + for (std::list::const_iterator li = l.begin(); + li != l.end(); li++) { + if (li != l.begin()) result.append(1, ' '); + result.append(*li); + } + script->set_result_str(result); + return COLVARS_OK; + ) + CVSCRIPT(cv_load, "Load data from a state file into all matching colvars and biases", 1, 1, "prefix : string - Path to existing state file or input prefix", char const *arg = script->obj_to_str(script->get_module_cmd_arg(0, objc, objv)); - script->proxy()->input_prefix() = cvm::state_file_prefix(arg); - if (script->module()->setup_input() == COLVARS_OK) { - return COLVARS_OK; - } else { + int error_code = + script->proxy()->set_input_prefix(cvm::state_file_prefix(arg)); + error_code |= script->module()->setup_input(); + if (error_code != COLVARS_OK) { script->add_error_msg("Error loading state file"); - return COLVARSCRIPT_ERROR; } + return error_code; ) CVSCRIPT(cv_loadfromstring, @@ -488,7 +502,8 @@ CVSCRIPT(cv_loadfromstring, "buffer : string - String buffer containing the state information", char const *arg = script->obj_to_str(script->get_module_cmd_arg(0, objc, objv)); - script->proxy()->input_buffer() = arg; + script->proxy()->input_stream_from_string("input state string", + std::string(arg)); if (script->module()->setup_input() == COLVARS_OK) { return COLVARS_OK; } else { @@ -560,8 +575,7 @@ CVSCRIPT(cv_save, "prefix : string - Output prefix with trailing \".colvars.state\" gets removed)", std::string const prefix = cvm::state_file_prefix(script->obj_to_str(script->get_module_cmd_arg(0, objc, objv))); - script->proxy()->output_prefix() = prefix; - int error_code = COLVARS_OK; + int error_code = script->proxy()->set_output_prefix(prefix); error_code |= script->module()->setup_output(); error_code |= script->module()->write_restart_file(prefix+ ".colvars.state"); @@ -578,10 +592,10 @@ CVSCRIPT(cv_savetostring, ) CVSCRIPT(cv_targettemperature, - "Get/set target temperature, overriding what the MD engine provides\n" + "Get/set target temperature, overriding internally what the MD engine reports\n" "T : float - Current target temperature in K", 0, 1, - "T : float - New target temperature in K", + "T : float - New target temperature in K (internal use)", char const *Targ = script->obj_to_str(script->get_module_cmd_arg(0, objc, objv)); if (Targ == NULL) { @@ -591,6 +605,20 @@ CVSCRIPT(cv_targettemperature, } ) +CVSCRIPT(cv_timestep, + "Get/set integration timestep, overriding internally what the MD engine reports\n" + "dt : float - Current integration timestep in MD engine units", + 0, 1, + "dt : float - New integration timestep in MD engine units", + char const *arg = + script->obj_to_str(script->get_module_cmd_arg(0, objc, objv)); + if (arg == NULL) { + return script->set_result_real(script->proxy()->dt()); + } else { + return script->proxy()->set_integration_timestep(strtod(arg, NULL)); + } + ) + CVSCRIPT(cv_units, "Get or set the current Colvars unit system\n" "units : string - The current unit system", diff --git a/lib/colvars/colvarscript_commands_bias.cpp b/lib/colvars/colvarscript_commands_bias.cpp index 2a94efb07e..0efab64a59 100644 --- a/lib/colvars/colvarscript_commands_bias.cpp +++ b/lib/colvars/colvarscript_commands_bias.cpp @@ -9,11 +9,9 @@ #include -#include -#include -#include #include "colvarproxy.h" +#include "colvarbias.h" #include "colvardeps.h" #include "colvarscript.h" #include "colvarscript_commands.h" diff --git a/lib/colvars/colvarscript_commands_bias.h b/lib/colvars/colvarscript_commands_bias.h index 420bbabcc0..5cecfcacaf 100644 --- a/lib/colvars/colvarscript_commands_bias.h +++ b/lib/colvars/colvarscript_commands_bias.h @@ -9,7 +9,7 @@ CVSCRIPT(bias_bin, - "Get the current grid bin index (1D ABF only for now)\n" + "Get the current grid bin index (flattened if more than 1d)\n" "bin : integer - Bin index", 0, 0, "", @@ -17,6 +17,8 @@ CVSCRIPT(bias_bin, return COLVARS_OK; ) +/// This is deprecated in the context of mwABF; no other known uses +/// But removing it may break user scripts CVSCRIPT(bias_bincount, "Get the number of samples at the given grid bin (1D ABF only for now)\n" "samples : integer - Number of samples", @@ -36,6 +38,25 @@ CVSCRIPT(bias_bincount, return COLVARS_OK; ) +CVSCRIPT(bias_local_sample_count, + "Get the number of samples around the current bin" + "samples : integer - Number of samples", + 0, 1, + "radius : integer - Sum over radius bins around current bin", + int radius = 0; + char const *arg = + script->obj_to_str(script->get_bias_cmd_arg(0, objc, objv)); + if (arg) { + std::string const param(arg); + if (!(std::istringstream(param) >> radius)) { + script->add_error_msg("local_sample_count: error parsing radius"); + return COLVARSCRIPT_ERROR; + } + } + script->set_result_str(cvm::to_str(this_bias->local_sample_count(radius))); + return COLVARS_OK; + ) + CVSCRIPT(bias_binnum, "Get the total number of grid points of this bias (1D ABF only for now)\n" "Bins : integer - Number of grid points", diff --git a/lib/colvars/colvarscript_commands_colvar.cpp b/lib/colvars/colvarscript_commands_colvar.cpp index da1f74d11d..0d03baaa8c 100644 --- a/lib/colvars/colvarscript_commands_colvar.cpp +++ b/lib/colvars/colvarscript_commands_colvar.cpp @@ -11,8 +11,8 @@ #include #include #include -#include +#include "colvar.h" #include "colvarproxy.h" #include "colvardeps.h" #include "colvarscript.h" diff --git a/lib/colvars/colvarscript_commands_colvar.h b/lib/colvars/colvarscript_commands_colvar.h index 103ff22daf..f6bb6b8c98 100644 --- a/lib/colvars/colvarscript_commands_colvar.h +++ b/lib/colvars/colvarscript_commands_colvar.h @@ -9,7 +9,7 @@ CVSCRIPT(colvar_addforce, - "Apply the given force onto this colvar and return the same\n" + "Apply the given force onto this colvar (no effects outside run)\n" "force : float or array - Applied force; matches colvar dimensionality", 1, 1, "force : float or array - Applied force; must match colvar dimensionality", diff --git a/lib/colvars/colvartypes.cpp b/lib/colvars/colvartypes.cpp index 04e007cbc0..f51791d015 100644 --- a/lib/colvars/colvartypes.cpp +++ b/lib/colvars/colvartypes.cpp @@ -7,12 +7,10 @@ // If you wish to distribute your changes, please submit them to the // Colvars repository at GitHub. -#include -#include - #include "colvarmodule.h" #include "colvartypes.h" -#include "colvarparse.h" +#include "colvaratoms.h" +#include "colvar_rotation_derivative.h" #ifdef COLVARS_LAMMPS // Use open-source Jacobi implementation @@ -204,14 +202,6 @@ cvm::quaternion::position_derivative_inner(cvm::rvector const &pos, return result; } - - - -// Calculate the optimal rotation between two groups, and implement it -// as a quaternion. Uses the method documented in: Coutsias EA, -// Seok C, Dill KA. Using quaternions to calculate RMSD. J Comput -// Chem. 25(15):1849-57 (2004) DOI: 10.1002/jcc.20110 PubMed: 15376254 - #ifdef COLVARS_LAMMPS namespace { inline void *new_Jacobi_solver(int size) { @@ -226,7 +216,7 @@ namespace { int colvarmodule::rotation::init() { b_debug_gradients = false; - lambda = 0.0; + // lambda = 0.0; cvm::main()->cite_feature("Optimal rotation via flexible fitting"); return COLVARS_OK; } @@ -300,6 +290,25 @@ void colvarmodule::rotation::build_correlation_matrix( } } +void colvarmodule::rotation::build_correlation_matrix( + std::vector const &pos1, + std::vector const &pos2) +{ + // build the correlation matrix + size_t i; + for (i = 0; i < pos1.size(); i++) { + C.xx += pos1[i].pos.x * pos2[i].x; + C.xy += pos1[i].pos.x * pos2[i].y; + C.xz += pos1[i].pos.x * pos2[i].z; + C.yx += pos1[i].pos.y * pos2[i].x; + C.yy += pos1[i].pos.y * pos2[i].y; + C.yz += pos1[i].pos.y * pos2[i].z; + C.zx += pos1[i].pos.z * pos2[i].x; + C.zy += pos1[i].pos.z * pos2[i].y; + C.zz += pos1[i].pos.z * pos2[i].z; + } +} + void colvarmodule::rotation::compute_overlap_matrix() { @@ -325,28 +334,26 @@ void colvarmodule::rotation::compute_overlap_matrix() #ifndef COLVARS_LAMMPS -namespace { +namespace NR { -void diagonalize_matrix(cvm::matrix2d &m, - cvm::vector1d &eigval, - cvm::matrix2d &eigvec) +void diagonalize_matrix(cvm::real m[4][4], + cvm::real eigval[4], + cvm::real eigvec[4][4]) { - eigval.resize(4); - eigval.reset(); - eigvec.resize(4, 4); - eigvec.reset(); + std::memset(eigval, 0, sizeof(cvm::real) * 4); + std::memset(eigvec, 0, sizeof(cvm::real) * 4 * 4); // diagonalize int jac_nrot = 0; - if (NR_Jacobi::jacobi(m.c_array(), eigval.c_array(), eigvec.c_array(), &jac_nrot) != + if (NR_Jacobi::jacobi(m, eigval, eigvec, &jac_nrot) != COLVARS_OK) { cvm::error("Too many iterations in jacobi diagonalization.\n" "This is usually the result of an ill-defined set of atoms for " "rotational alignment (RMSD, rotateReference, etc).\n"); } - NR_Jacobi::eigsrt(eigval.c_array(), eigvec.c_array()); + NR_Jacobi::eigsrt(eigval, eigvec); // jacobi saves eigenvectors by columns - NR_Jacobi::transpose(eigvec.c_array()); + NR_Jacobi::transpose(eigvec); // normalize eigenvectors for (size_t ie = 0; ie < 4; ie++) { @@ -375,27 +382,51 @@ void colvarmodule::rotation::calc_optimal_rotation( C.reset(); build_correlation_matrix(pos1, pos2); - S.resize(4, 4); - S.reset(); + calc_optimal_rotation_impl(); + + if (b_debug_gradients) debug_gradients(*this, pos1, pos2); +} + +void colvarmodule::rotation::calc_optimal_rotation( + std::vector const &pos1, + std::vector const &pos2) +{ + C.reset(); + build_correlation_matrix(pos1, pos2); + + calc_optimal_rotation_impl(); + + if (b_debug_gradients) debug_gradients(*this, pos1, pos2); +} + +// Calculate the optimal rotation between two groups, and implement it +// as a quaternion. Uses the method documented in: Coutsias EA, +// Seok C, Dill KA. Using quaternions to calculate RMSD. J Comput +// Chem. 25(15):1849-57 (2004) DOI: 10.1002/jcc.20110 PubMed: 15376254 +void colvarmodule::rotation::calc_optimal_rotation_impl() { compute_overlap_matrix(); - S_backup.resize(4, 4); - S_backup = S; + // S_backup = S; + std::memcpy(&S_backup[0][0], &S, 4*4*sizeof(cvm::real)); if (b_debug_gradients) { - cvm::log("S = "+cvm::to_str(S_backup, cvm::cv_width, cvm::cv_prec)+"\n"); + cvm::matrix2d S_backup_out(4, 4); + for (size_t i = 0; i < 4; ++i) { + for (size_t j = 0; j < 4; ++j) { + S_backup_out[i][j] = S_backup[i][j]; + } + } + cvm::log("S = "+cvm::to_str(S_backup_out, cvm::cv_width, cvm::cv_prec)+"\n"); } - S_eigval.resize(4); - S_eigvec.resize(4, 4); #ifdef COLVARS_LAMMPS MathEigen::Jacobi &, - cvm::matrix2d &> *ecalc = + cvm::real[4], + cvm::real[4][4]> *ecalc = reinterpret_cast &, - cvm::matrix2d &> *>(jacobi); + cvm::real[4], + cvm::real[4][4]> *>(jacobi); int ierror = ecalc->Diagonalize(S, S_eigval, S_eigvec); if (ierror) { @@ -404,22 +435,9 @@ void colvarmodule::rotation::calc_optimal_rotation( "rotational alignment (RMSD, rotateReference, etc).\n"); } #else - diagonalize_matrix(S, S_eigval, S_eigvec); + NR::diagonalize_matrix(S, S_eigval, S_eigvec); #endif - - - // eigenvalues and eigenvectors - cvm::real const L0 = S_eigval[0]; - cvm::real const L1 = S_eigval[1]; - cvm::real const L2 = S_eigval[2]; - cvm::real const L3 = S_eigval[3]; - cvm::quaternion const Q0(S_eigvec[0]); - cvm::quaternion const Q1(S_eigvec[1]); - cvm::quaternion const Q2(S_eigvec[2]); - cvm::quaternion const Q3(S_eigvec[3]); - - lambda = L0; - q = Q0; + q = cvm::quaternion{S_eigvec[0][0], S_eigvec[0][1], S_eigvec[0][2], S_eigvec[0][3]}; if (cvm::rotation::monitor_crossings) { if (q_old.norm2() > 0.0) { @@ -431,178 +449,4 @@ void colvarmodule::rotation::calc_optimal_rotation( } q_old = q; } - - if (b_debug_gradients) { - cvm::log("L0 = "+cvm::to_str(L0, cvm::cv_width, cvm::cv_prec)+ - ", Q0 = "+cvm::to_str(Q0, cvm::cv_width, cvm::cv_prec)+ - ", Q0*Q0 = "+cvm::to_str(Q0.inner(Q0), cvm::cv_width, cvm::cv_prec)+ - "\n"); - cvm::log("L1 = "+cvm::to_str(L1, cvm::cv_width, cvm::cv_prec)+ - ", Q1 = "+cvm::to_str(Q1, cvm::cv_width, cvm::cv_prec)+ - ", Q0*Q1 = "+cvm::to_str(Q0.inner(Q1), cvm::cv_width, cvm::cv_prec)+ - "\n"); - cvm::log("L2 = "+cvm::to_str(L2, cvm::cv_width, cvm::cv_prec)+ - ", Q2 = "+cvm::to_str(Q2, cvm::cv_width, cvm::cv_prec)+ - ", Q0*Q2 = "+cvm::to_str(Q0.inner(Q2), cvm::cv_width, cvm::cv_prec)+ - "\n"); - cvm::log("L3 = "+cvm::to_str(L3, cvm::cv_width, cvm::cv_prec)+ - ", Q3 = "+cvm::to_str(Q3, cvm::cv_width, cvm::cv_prec)+ - ", Q0*Q3 = "+cvm::to_str(Q0.inner(Q3), cvm::cv_width, cvm::cv_prec)+ - "\n"); - } - - // calculate derivatives of L0 and Q0 with respect to each atom in - // either group; note: if dS_1 is a null vector, nothing will be - // calculated - size_t ia; - for (ia = 0; ia < dS_1.size(); ia++) { - - cvm::real const &a2x = pos2[ia].x; - cvm::real const &a2y = pos2[ia].y; - cvm::real const &a2z = pos2[ia].z; - - cvm::matrix2d &ds_1 = dS_1[ia]; - - // derivative of the S matrix - ds_1.reset(); - ds_1[0][0].set( a2x, a2y, a2z); - ds_1[1][0].set( 0.0, a2z, -a2y); - ds_1[0][1] = ds_1[1][0]; - ds_1[2][0].set(-a2z, 0.0, a2x); - ds_1[0][2] = ds_1[2][0]; - ds_1[3][0].set( a2y, -a2x, 0.0); - ds_1[0][3] = ds_1[3][0]; - ds_1[1][1].set( a2x, -a2y, -a2z); - ds_1[2][1].set( a2y, a2x, 0.0); - ds_1[1][2] = ds_1[2][1]; - ds_1[3][1].set( a2z, 0.0, a2x); - ds_1[1][3] = ds_1[3][1]; - ds_1[2][2].set(-a2x, a2y, -a2z); - ds_1[3][2].set( 0.0, a2z, a2y); - ds_1[2][3] = ds_1[3][2]; - ds_1[3][3].set(-a2x, -a2y, a2z); - - cvm::rvector &dl0_1 = dL0_1[ia]; - cvm::vector1d &dq0_1 = dQ0_1[ia]; - - // matrix multiplications; derivatives of L_0 and Q_0 are - // calculated using Hellmann-Feynman theorem (i.e. exploiting the - // fact that the eigenvectors Q_i form an orthonormal basis) - - dl0_1.reset(); - for (size_t i = 0; i < 4; i++) { - for (size_t j = 0; j < 4; j++) { - dl0_1 += Q0[i] * ds_1[i][j] * Q0[j]; - } - } - - dq0_1.reset(); - for (size_t p = 0; p < 4; p++) { - for (size_t i = 0; i < 4; i++) { - for (size_t j = 0; j < 4; j++) { - dq0_1[p] += - (Q1[i] * ds_1[i][j] * Q0[j]) / (L0-L1) * Q1[p] + - (Q2[i] * ds_1[i][j] * Q0[j]) / (L0-L2) * Q2[p] + - (Q3[i] * ds_1[i][j] * Q0[j]) / (L0-L3) * Q3[p]; - } - } - } - } - - // do the same for the second group - for (ia = 0; ia < dS_2.size(); ia++) { - - cvm::real const &a1x = pos1[ia].x; - cvm::real const &a1y = pos1[ia].y; - cvm::real const &a1z = pos1[ia].z; - - cvm::matrix2d &ds_2 = dS_2[ia]; - - ds_2.reset(); - ds_2[0][0].set( a1x, a1y, a1z); - ds_2[1][0].set( 0.0, -a1z, a1y); - ds_2[0][1] = ds_2[1][0]; - ds_2[2][0].set( a1z, 0.0, -a1x); - ds_2[0][2] = ds_2[2][0]; - ds_2[3][0].set(-a1y, a1x, 0.0); - ds_2[0][3] = ds_2[3][0]; - ds_2[1][1].set( a1x, -a1y, -a1z); - ds_2[2][1].set( a1y, a1x, 0.0); - ds_2[1][2] = ds_2[2][1]; - ds_2[3][1].set( a1z, 0.0, a1x); - ds_2[1][3] = ds_2[3][1]; - ds_2[2][2].set(-a1x, a1y, -a1z); - ds_2[3][2].set( 0.0, a1z, a1y); - ds_2[2][3] = ds_2[3][2]; - ds_2[3][3].set(-a1x, -a1y, a1z); - - cvm::rvector &dl0_2 = dL0_2[ia]; - cvm::vector1d &dq0_2 = dQ0_2[ia]; - - dl0_2.reset(); - for (size_t i = 0; i < 4; i++) { - for (size_t j = 0; j < 4; j++) { - dl0_2 += Q0[i] * ds_2[i][j] * Q0[j]; - } - } - - dq0_2.reset(); - for (size_t p = 0; p < 4; p++) { - for (size_t i = 0; i < 4; i++) { - for (size_t j = 0; j < 4; j++) { - dq0_2[p] += - (Q1[i] * ds_2[i][j] * Q0[j]) / (L0-L1) * Q1[p] + - (Q2[i] * ds_2[i][j] * Q0[j]) / (L0-L2) * Q2[p] + - (Q3[i] * ds_2[i][j] * Q0[j]) / (L0-L3) * Q3[p]; - } - } - } - - if (b_debug_gradients) { - - cvm::matrix2d S_new(4, 4); - cvm::vector1d S_new_eigval(4); - cvm::matrix2d S_new_eigvec(4, 4); - - // make an infitesimal move along each cartesian coordinate of - // this atom, and solve again the eigenvector problem - for (size_t comp = 0; comp < 3; comp++) { - - S_new = S_backup; - // diagonalize the new overlap matrix - for (size_t i = 0; i < 4; i++) { - for (size_t j = 0; j < 4; j++) { - S_new[i][j] += - colvarmodule::debug_gradients_step_size * ds_2[i][j][comp]; - } - } - - // cvm::log("S_new = "+cvm::to_str(cvm::to_str (S_new), cvm::cv_width, cvm::cv_prec)+"\n"); - -#ifdef COLVARS_LAMMPS - ecalc->Diagonalize(S_new, S_new_eigval, S_new_eigvec); -#else - diagonalize_matrix(S_new, S_new_eigval, S_new_eigvec); -#endif - - cvm::real const &L0_new = S_new_eigval[0]; - cvm::quaternion const Q0_new(S_new_eigvec[0]); - - cvm::real const DL0 = (dl0_2[comp]) * colvarmodule::debug_gradients_step_size; - cvm::quaternion const DQ0(dq0_2[0][comp] * colvarmodule::debug_gradients_step_size, - dq0_2[1][comp] * colvarmodule::debug_gradients_step_size, - dq0_2[2][comp] * colvarmodule::debug_gradients_step_size, - dq0_2[3][comp] * colvarmodule::debug_gradients_step_size); - - cvm::log( "|(l_0+dl_0) - l_0^new|/l_0 = "+ - cvm::to_str(cvm::fabs(L0+DL0 - L0_new)/L0, cvm::cv_width, cvm::cv_prec)+ - ", |(q_0+dq_0) - q_0^new| = "+ - cvm::to_str((Q0+DQ0 - Q0_new).norm(), cvm::cv_width, cvm::cv_prec)+ - "\n"); - } - } - } } - - - diff --git a/lib/colvars/colvartypes.h b/lib/colvars/colvartypes.h index 13b6a5bdb3..455e628f1b 100644 --- a/lib/colvars/colvartypes.h +++ b/lib/colvars/colvartypes.h @@ -10,8 +10,14 @@ #ifndef COLVARTYPES_H #define COLVARTYPES_H +#include // TODO specialize templates and replace this with iosfwd #include +#ifdef COLVARS_LAMMPS +// Use open-source Jacobi implementation +#include "math_eigen_impl.h" +#endif + #include "colvarmodule.h" #ifndef PI @@ -53,6 +59,12 @@ public: } } + /// Explicit Copy constructor + inline vector1d(const vector1d&) = default; + + /// Explicit Copy assignement + inline vector1d& operator=(const vector1d&) = default; + /// Return a pointer to the data location inline T * c_array() { @@ -69,6 +81,12 @@ public: return data; } + /// Return a reference to the data + inline std::vector const &data_array() const + { + return data; + } + inline ~vector1d() { data.clear(); @@ -493,6 +511,12 @@ public: return data; } + /// Return a reference to the data + inline std::vector const &data_array() const + { + return data; + } + inline row & operator [] (size_t const i) { return rows[i]; @@ -896,9 +920,6 @@ public: zz = zzi; } - /// Destructor - inline ~rmatrix() - {} inline void reset() { @@ -1278,59 +1299,50 @@ public: }; +#ifndef COLVARS_LAMMPS +namespace NR { +void diagonalize_matrix(cvm::real m[4][4], + cvm::real eigval[4], + cvm::real eigvec[4][4]); +} +#endif + /// \brief A rotation between two sets of coordinates (for the moment /// a wrapper for colvarmodule::quaternion) class colvarmodule::rotation { -public: - - /// \brief The rotation itself (implemented as a quaternion) - cvm::quaternion q; - - /// \brief Eigenvalue corresponding to the optimal rotation - cvm::real lambda; - - /// \brief Perform gradient tests - bool b_debug_gradients; - +private: /// Correlation matrix C (3, 3) cvm::rmatrix C; /// Overlap matrix S (4, 4) - cvm::matrix2d S; + cvm::real S[4][4]; /// Eigenvalues of S - cvm::vector1d S_eigval; + cvm::real S_eigval[4]; /// Eigenvectors of S - cvm::matrix2d S_eigvec; + cvm::real S_eigvec[4][4]; /// Used for debugging gradients - cvm::matrix2d S_backup; + cvm::real S_backup[4][4]; - /// Derivatives of S - std::vector< cvm::matrix2d > dS_1, dS_2; - /// Derivatives of leading eigenvalue - std::vector< cvm::rvector > dL0_1, dL0_2; - /// Derivatives of leading eigenvector - std::vector< cvm::vector1d > dQ0_1, dQ0_2; +public: + /// \brief Perform gradient tests + bool b_debug_gradients; - /// Allocate space for the derivatives of the rotation - inline void request_group1_gradients(size_t n) - { - dS_1.resize(n, cvm::matrix2d(4, 4)); - dL0_1.resize(n, cvm::rvector(0.0, 0.0, 0.0)); - dQ0_1.resize(n, cvm::vector1d(4)); - } + /// \brief The rotation itself (implemented as a quaternion) + cvm::quaternion q; - /// Allocate space for the derivatives of the rotation - inline void request_group2_gradients(size_t n) - { - dS_2.resize(n, cvm::matrix2d(4, 4)); - dL0_2.resize(n, cvm::rvector(0.0, 0.0, 0.0)); - dQ0_2.resize(n, cvm::vector1d(4)); - } + template + friend struct rotation_derivative; + + template + friend void debug_gradients( + cvm::rotation &rot, + const std::vector &pos1, + const std::vector &pos2); /// \brief Calculate the optimal rotation and store the /// corresponding eigenvalue and eigenvector in the arguments l0 and @@ -1344,6 +1356,8 @@ public: /// DOI: 10.1002/jcc.20110 PubMed: 15376254 void calc_optimal_rotation(std::vector const &pos1, std::vector const &pos2); + void calc_optimal_rotation(std::vector const &pos1, + std::vector const &pos2); /// Initialize member data int init(); @@ -1478,6 +1492,11 @@ protected: /// Build the correlation matrix C (used by calc_optimal_rotation()) void build_correlation_matrix(std::vector const &pos1, std::vector const &pos2); + void build_correlation_matrix(std::vector const &pos1, + std::vector const &pos2); + + /// \brief Actual implementation of `calc_optimal_rotation` (and called by it) + void calc_optimal_rotation_impl(); /// Compute the overlap matrix S (used by calc_optimal_rotation()) void compute_overlap_matrix(); diff --git a/lib/colvars/colvarvalue.cpp b/lib/colvars/colvarvalue.cpp index e57859dfa3..3b8077d2e7 100644 --- a/lib/colvars/colvarvalue.cpp +++ b/lib/colvars/colvarvalue.cpp @@ -8,11 +8,10 @@ // Colvars repository at GitHub. #include -#include -#include #include "colvarmodule.h" #include "colvarvalue.h" +#include "colvars_memstream.h" @@ -721,29 +720,43 @@ int colvarvalue::from_simple_string(std::string const &s) return COLVARS_ERROR; } -std::ostream & operator << (std::ostream &os, colvarvalue const &x) + +template void colvarvalue::write_to_stream_template_(OST &os) const { - switch (x.type()) { + switch (type()) { case colvarvalue::type_scalar: - os << x.real_value; + os << real_value; break; case colvarvalue::type_3vector: case colvarvalue::type_unit3vector: case colvarvalue::type_unit3vectorderiv: - os << x.rvector_value; + os << rvector_value; break; case colvarvalue::type_quaternion: case colvarvalue::type_quaternionderiv: - os << x.quaternion_value; + os << quaternion_value; break; case colvarvalue::type_vector: - os << x.vector1d_value; + os << vector1d_value; break; case colvarvalue::type_notset: default: os << "not set"; break; } +} + + +std::ostream & operator << (std::ostream &os, colvarvalue const &x) +{ + x.write_to_stream_template_(os); + return os; +} + + +cvm::memory_stream & operator << (cvm::memory_stream &os, colvarvalue const &x) +{ + x.write_to_stream_template_(os); return os; } @@ -758,44 +771,55 @@ std::ostream & operator << (std::ostream &os, std::vector const &v) } -std::istream & operator >> (std::istream &is, colvarvalue &x) +template void colvarvalue::read_from_stream_template_(IST &is) { - if (x.type() == colvarvalue::type_notset) { + if (type() == colvarvalue::type_notset) { cvm::error("Trying to read from a stream a colvarvalue, " "which has not yet been assigned a data type.\n"); - return is; } - switch (x.type()) { + switch (type()) { case colvarvalue::type_scalar: - is >> x.real_value; + is >> real_value; break; case colvarvalue::type_3vector: case colvarvalue::type_unit3vectorderiv: - is >> x.rvector_value; + is >> rvector_value; break; case colvarvalue::type_unit3vector: - is >> x.rvector_value; - x.apply_constraints(); + is >> rvector_value; + apply_constraints(); break; case colvarvalue::type_quaternion: - is >> x.quaternion_value; - x.apply_constraints(); + is >> quaternion_value; + apply_constraints(); break; case colvarvalue::type_quaternionderiv: - is >> x.quaternion_value; + is >> quaternion_value; break; case colvarvalue::type_vector: - is >> x.vector1d_value; + is >> vector1d_value; break; case colvarvalue::type_notset: default: - x.undef_op(); + undef_op(); } +} + + +std::istream & operator >> (std::istream &is, colvarvalue &x) +{ + x.read_from_stream_template_(is); return is; } +cvm::memory_stream & operator >> (cvm::memory_stream &is, colvarvalue &x) +{ + x.read_from_stream_template_(is); + return is; +} + size_t colvarvalue::output_width(size_t const &real_width) const { switch (this->value_type) { diff --git a/lib/colvars/colvarvalue.h b/lib/colvars/colvarvalue.h index 9ab8dbe31d..e8a6a849d3 100644 --- a/lib/colvars/colvarvalue.h +++ b/lib/colvars/colvarvalue.h @@ -10,6 +10,8 @@ #ifndef COLVARVALUE_H #define COLVARVALUE_H +#include + #include "colvarmodule.h" #include "colvartypes.h" @@ -120,7 +122,8 @@ public: /// number and always behaves like it unless you change its type colvarvalue(); - /// Constructor from a type specification + /// Constructor from a type flag (note: type_vector also needs the vector length to be set) + /// \param[in] vti Value of the \link Type \endlink enum colvarvalue(Type const &vti); /// Copy constructor from real base type @@ -297,12 +300,31 @@ public: /// Undefined operation void undef_op() const; +private: - /// \brief Formatted output operator - friend std::ostream & operator << (std::ostream &os, colvarvalue const &q); + /// Generic stream writing function (formatted and not) + template void write_to_stream_template_(OST &os) const; - /// \brief Formatted input operator - friend std::istream & operator >> (std::istream &is, colvarvalue &q); +public: + + /// Formatted output operator + friend std::ostream & operator << (std::ostream &os, colvarvalue const &x); + + /// Unformatted output operator + friend cvm::memory_stream & operator << (cvm::memory_stream &os, colvarvalue const &x); + +private: + + /// Generic stream reading function (formatted and not) + template void read_from_stream_template_(IST &is); + +public: + + /// Formatted input operator + friend std::istream & operator >> (std::istream &is, colvarvalue &x); + + /// Unformatted input operator + friend cvm::memory_stream & operator >> (cvm::memory_stream &is, colvarvalue &x); /// Give the number of characters required to output this /// colvarvalue, given the current type assigned and the number of diff --git a/potentials/CBNOH.aip.water.2dm b/potentials/CBNOH.aip.water.2dm old mode 100755 new mode 100644 diff --git a/potentials/MoCoNiVFeAlCr_2nn.meam b/potentials/MoCoNiVFeAlCr_2nn.meam new file mode 100644 index 0000000000..708b7a07f0 --- /dev/null +++ b/potentials/MoCoNiVFeAlCr_2nn.meam @@ -0,0 +1,919 @@ +# DATE: 2024-08-08 UNITS: metal CONTRIBUTOR: Axel Kohlmeyer, akohlmey@gmail.com CITATION: Wang, J., Kwon, H., Kim, H.S. et al. A neural network model for high entropy alloy design. npj Comput Mater 9, 60 (2023). https://doi.org/10.1038/s41524-023-01010-x +# Use with library_2nn.meam like this: pair_coeff * * library_2nn Mo Co Ni V Fe Al Cr MoCoNiVFeAlCr_2nn.meam ... +rc = 4.8 +delr = 0.1 +augt1 = 0 +erose_form = 2 +ialloy = 2 +zbl(1,1) = 0 +nn2(1,1) = 1 +rho0(1) = 1.000 +Ec(1,1) = 6.810 +re(1,1) = 2.7250 +alpha(1,1) = 5.83817808 +repuls(1,1) = 0.00 +attrac(1,1) = 0.00 +Cmin(1,1,1) = 0.82 +Cmax(1,1,1) = 2.50 +zbl(2,2) = 0 +nn2(2,2) = 1 +rho0(2) = 1.000 +Ec(2,2) = 4.410 +re(2,2) = 2.5000 +alpha(2,2) = 5.23561475 +repuls(2,2) = 0.00 +attrac(2,2) = 0.00 +Cmin(2,2,2) = 0.49 +Cmax(2,2,2) = 2.00 +zbl(3,3) = 0 +nn2(3,3) = 1 +rho0(3) = 1.000 +Ec(3,3) = 4.450 +re(3,3) = 2.4900 +alpha(3,3) = 5.08421758 +repuls(3,3) = 0.05 +attrac(3,3) = 0.05 +Cmin(3,3,3) = 0.81 +Cmax(3,3,3) = 2.80 +zbl(4,4) = 0 +nn2(4,4) = 1 +rho0(4) = 1.000 +Ec(4,4) = 5.300 +re(4,4) = 2.6250 +alpha(4,4) = 4.81370392 +repuls(4,4) = 0.00 +attrac(4,4) = 0.00 +Cmin(4,4,4) = 0.49 +Cmax(4,4,4) = 2.80 +zbl(5,5) = 0 +nn2(5,5) = 1 +rho0(5) = 1.000 +Ec(5,5) = 4.290 +re(5,5) = 2.4800 +alpha(5,5) = 5.15716154 +repuls(5,5) = 0.05 +attrac(5,5) = 0.05 +Cmin(5,5,5) = 0.36 +Cmax(5,5,5) = 2.80 +zbl(6,6) = 0 +nn2(6,6) = 1 +rho0(6) = 1.000 +Ec(6,6) = 3.360 +re(6,6) = 2.8600 +alpha(6,6) = 4.68559768 +repuls(6,6) = 0.05 +attrac(6,6) = 0.05 +Cmin(6,6,6) = 0.49 +Cmax(6,6,6) = 2.80 +zbl(7,7) = 0 +nn2(7,7) = 1 +rho0(7) = 1.000 +Ec(7,7) = 4.100 +re(7,7) = 2.4950 +alpha(7,7) = 5.58007164 +repuls(7,7) = 0.10 +attrac(7,7) = 0.02 +Cmin(7,7,7) = 0.71 +Cmax(7,7,7) = 2.80 +zbl(1,2) = 0 +nn2(1,2) = 1 +lattce(1,2) = 'b2' +Ec(1,2) = 5.6550 +re(1,2) = 2.52000 +alpha(1,2) = 5.60086116 +repuls(1,2) = 0.0000 +attrac(1,2) = 0.0000 +Cmin(1,1,2) = 0.90 +Cmin(2,2,1) = 0.49 +Cmin(1,2,1) = 0.64 +Cmin(2,1,1) = 0.64 +Cmin(1,2,2) = 0.64 +Cmin(2,1,2) = 0.64 +Cmax(1,1,2) = 2.80 +Cmax(2,2,1) = 2.40 +Cmax(1,2,1) = 1.80 +Cmax(2,1,1) = 1.80 +Cmax(1,2,2) = 1.00 +Cmax(2,1,2) = 1.00 +zbl(1,3) = 0 +nn2(1,3) = 1 +lattce(1,3) = 'b2' +Ec(1,3) = 5.6320 +re(1,3) = 2.55000 +alpha(1,3) = 5.58643786 +repuls(1,3) = 0.0250 +attrac(1,3) = 0.0250 +Cmin(1,1,3) = 0.32 +Cmin(3,3,1) = 1.01 +Cmin(1,3,1) = 1.76 +Cmin(3,1,1) = 1.76 +Cmin(1,3,3) = 0.81 +Cmin(3,1,3) = 0.81 +Cmax(1,1,3) = 2.70 +Cmax(3,3,1) = 1.85 +Cmax(1,3,1) = 2.65 +Cmax(3,1,1) = 2.65 +Cmax(1,3,3) = 2.65 +Cmax(3,1,3) = 2.65 +zbl(1,4) = 0 +nn2(1,4) = 1 +lattce(1,4) = 'b2' +Ec(1,4) = 5.9850 +re(1,4) = 2.65480 +alpha(1,4) = 5.34338663 +repuls(1,4) = 0.0000 +attrac(1,4) = 0.0000 +Cmin(1,1,4) = 0.93 +Cmin(4,4,1) = 0.39 +Cmin(1,4,1) = 0.04 +Cmin(4,1,1) = 0.04 +Cmin(1,4,4) = 0.16 +Cmin(4,1,4) = 0.16 +Cmax(1,1,4) = 2.80 +Cmax(4,4,1) = 2.80 +Cmax(1,4,1) = 2.50 +Cmax(4,1,1) = 2.50 +Cmax(1,4,4) = 2.50 +Cmax(4,1,4) = 2.50 +zbl(1,5) = 0 +nn2(1,5) = 1 +lattce(1,5) = 'l12' +Ec(1,5) = 6.0675 +re(1,5) = 2.74000 +alpha(1,5) = 5.87549822 +repuls(1,5) = 0.0125 +attrac(1,5) = 0.0125 +Cmin(1,1,5) = 0.64 +Cmin(5,5,1) = 0.36 +Cmin(1,5,1) = 0.57 +Cmin(5,1,1) = 0.57 +Cmin(1,5,5) = 0.57 +Cmin(5,1,5) = 0.57 +Cmax(1,1,5) = 2.80 +Cmax(5,5,1) = 2.80 +Cmax(1,5,1) = 2.80 +Cmax(5,1,1) = 2.80 +Cmax(1,5,5) = 2.80 +Cmax(5,1,5) = 2.80 +zbl(1,6) = 0 +nn2(1,6) = 1 +lattce(1,6) = 'b2' +Ec(1,6) = 5.4800 +re(1,6) = 2.71450 +alpha(1,6) = 5.70174422 +repuls(1,6) = 0.0250 +attrac(1,6) = 0.0250 +Cmin(1,1,6) = 0.82 +Cmin(6,6,1) = 0.49 +Cmin(1,6,1) = 0.64 +Cmin(6,1,1) = 0.64 +Cmin(1,6,6) = 0.64 +Cmin(6,1,6) = 0.64 +Cmax(1,1,6) = 2.50 +Cmax(6,6,1) = 2.80 +Cmax(1,6,1) = 2.80 +Cmax(6,1,1) = 2.80 +Cmax(1,6,6) = 2.80 +Cmax(6,1,6) = 2.80 +zbl(1,7) = 0 +nn2(1,7) = 1 +lattce(1,7) = 'b2' +Ec(1,7) = 5.4100 +re(1,7) = 2.61000 +alpha(1,7) = 5.68832966 +repuls(1,7) = 0.05 +attrac(1,7) = 0.01 +Cmin(1,1,7) = 0.82 +Cmin(7,7,1) = 0.71 +Cmin(1,7,1) = 0.76 +Cmin(7,1,1) = 0.76 +Cmin(1,7,7) = 0.76 +Cmin(7,1,7) = 0.76 +Cmax(1,1,7) = 2.50 +Cmax(7,7,1) = 2.80 +Cmax(1,7,1) = 2.65 +Cmax(7,1,1) = 2.65 +Cmax(1,7,7) = 2.65 +Cmax(7,1,7) = 2.65 +zbl(2,3) = 0 +nn2(2,3) = 1 +lattce(2,3) = 'b2' +Ec(2,3) = 4.3100 +re(2,3) = 2.43000 +alpha(2,3) = 5.19486200 +repuls(2,3) = 0.0250 +attrac(2,3) = 0.0250 +Cmin(2,2,3) = 0.49 +Cmin(3,3,2) = 0.81 +Cmin(2,3,2) = 0.64 +Cmin(3,2,2) = 0.64 +Cmin(2,3,3) = 0.64 +Cmin(3,2,3) = 0.64 +Cmax(2,2,3) = 2.80 +Cmax(3,3,2) = 2.80 +Cmax(2,3,2) = 2.80 +Cmax(3,2,2) = 2.80 +Cmax(2,3,3) = 2.80 +Cmax(3,2,3) = 2.80 + +zbl(2,4) = 0 +nn2(2,4) = 1 +lattce(2,4) = 'l12' +Ec(2,4) = 4.7725 +re(2,4) = 2.51100 +alpha(2,4) = 4.94121413 +repuls(2,4) = 0.0000 +attrac(2,4) = 0.0000 +Cmin(2,2,4) = 0.14 +Cmin(4,4,2) = 1.20 +Cmin(2,4,2) = 0.20 +Cmin(4,2,2) = 0.20 +Cmin(2,4,4) = 0.49 +Cmin(4,2,4) = 0.49 +Cmax(2,2,4) = 2.80 +Cmax(4,4,2) = 2.80 +Cmax(2,4,2) = 1.96 +Cmax(4,2,2) = 1.96 +Cmax(2,4,4) = 2.80 +Cmax(4,2,4) = 2.80 +zbl(2,5) = 0 +nn2(2,5) = 1 +lattce(2,5) = 'b2' +Ec(2,5) = 4.4400 +re(2,5) = 2.47270 +alpha(2,5) = 5.65470181 +repuls(2,5) = 0.0250 +attrac(2,5) = 0.0250 +Cmin(2,2,5) = 0.49 +Cmin(5,5,2) = 0.81 +Cmin(2,5,2) = 0.422500 +Cmin(5,2,2) = 0.422500 +Cmin(2,5,5) = 0.422500 +Cmin(5,2,5) = 0.422500 +Cmax(2,2,5) = 1.44 +Cmax(5,5,2) = 2.00 +Cmax(2,5,2) = 2.00 +Cmax(5,2,2) = 2.00 +Cmax(2,5,5) = 2.00 +Cmax(5,2,5) = 2.00 +zbl(2,6) = 0 +nn2(2,6) = 1 +lattce(2,6) = 'b2' +Ec(2,6) = 4.4500 +re(2,6) = 2.47680 +alpha(2,6) = 4.89086013 +repuls(2,6) = 0.0250 +attrac(2,6) = 0.0250 +Cmin(2,2,6) = 0.49 +Cmin(6,6,2) = 1.10 +Cmin(2,6,2) = 0.490000 +Cmin(6,2,2) = 0.490000 +Cmin(2,6,6) = 0.490000 +Cmin(6,2,6) = 0.490000 +Cmax(2,2,6) = 2.00 +Cmax(6,6,2) = 2.80 +Cmax(2,6,2) = 2.80 +Cmax(6,2,2) = 2.80 +Cmax(2,6,6) = 2.80 +Cmax(6,2,6) = 2.80 +zbl(2,7) = 0 +nn2(2,7) = 1 +lattce(2,7) = 'b2' +Ec(2,7) = 4.1750 +re(2,7) = 2.44000 +alpha(2,7) = 5.38091823 +repuls(2,7) = 0.0500 +attrac(2,7) = 0.0100 +Cmin(2,2,7) = 0.49 +Cmin(7,7,2) = 0.73 +Cmin(2,7,2) = 2.00 +Cmin(7,2,2) = 2.00 +Cmin(2,7,7) = 2.00 +Cmin(7,2,7) = 2.00 +Cmax(2,2,7) = 2.80 +Cmax(7,7,2) = 2.80 +Cmax(2,7,2) = 2.80 +Cmax(7,2,2) = 2.80 +Cmax(2,7,7) = 2.80 +Cmax(7,2,7) = 2.80 +zbl(3,4) = 0 +nn2(3,4) = 1 +lattce(3,4) = 'l12' +Ec(3,4) = 4.7575 +re(3,4) = 2.54800 +alpha(3,4) = 5.32204421 +repuls(3,4) = 0.0375 +attrac(3,4) = 0.0375 +Cmin(3,3,4) = 0.81 +Cmin(4,4,3) = 1.00 +Cmin(3,4,3) = 1.00 +Cmin(4,3,3) = 1.00 +Cmin(3,4,4) = 1.00 +Cmin(4,3,4) = 1.00 +Cmax(3,3,4) = 2.80 +Cmax(4,4,3) = 1.44 +Cmax(3,4,3) = 1.44 +Cmax(4,3,3) = 1.44 +Cmax(3,4,4) = 1.44 +Cmax(4,3,4) = 1.44 +zbl(3,5) = 0 +nn2(3,5) = 1 +lattce(3,5) = 'l12' +Ec(3,5) = 4.4960 +re(3,5) = 2.51300 +alpha(3,5) = 5.07820562 +repuls(3,5) = 0.0500 +attrac(3,5) = 0.0500 +Cmin(3,3,5) = 0.63 +Cmin(5,5,3) = 0.36 +Cmin(3,5,3) = 0.56 +Cmin(5,3,3) = 0.56 +Cmin(3,5,5) = 0.56 +Cmin(5,3,5) = 0.56 +Cmax(3,3,5) = 1.44 +Cmax(5,5,3) = 1.44 +Cmax(3,5,3) = 2.80 +Cmax(5,3,3) = 2.80 +Cmax(3,5,5) = 2.80 +Cmax(5,3,5) = 2.80 +zbl(3,6) = 0 +nn2(3,6) = 1 +lattce(3,6) = 'b2' +Ec(3,6) = 4.5307 +re(3,6) = 2.49160 +alpha(3,6) = 4.82953835 +repuls(3,6) = 0.0500 +attrac(3,6) = 0.0500 +Cmin(3,3,6) = 1.60 +Cmin(6,6,3) = 0.49 +Cmin(3,6,3) = 0.640000 +Cmin(6,3,3) = 0.640000 +Cmin(3,6,6) = 0.640000 +Cmin(6,3,6) = 0.640000 +Cmax(3,3,6) = 2.80 +Cmax(6,6,3) = 2.80 +Cmax(3,6,3) = 1.44 +Cmax(6,3,3) = 1.44 +Cmax(3,6,6) = 2.80 +Cmax(6,3,6) = 2.80 +zbl(3,7) = 0 +nn2(3,7) = 1 +lattce(3,7) = 'l12' +Ec(3,7) = 4.3425 +re(3,7) = 2.50500 +alpha(3,7) = 5.20198292 +repuls(3,7) = 0.0625 +attrac(3,7) = 0.0425 +Cmin(3,3,7) = 0.81 +Cmin(7,7,3) = 1.00 +Cmin(3,7,3) = 0.76 +Cmin(7,3,3) = 0.76 +Cmin(3,7,7) = 0.76 +Cmin(7,3,7) = 0.76 +Cmax(3,3,7) = 2.80 +Cmax(7,7,3) = 2.80 +Cmax(3,7,3) = 2.80 +Cmax(7,3,3) = 2.80 +Cmax(3,7,7) = 2.80 +Cmax(7,3,7) = 2.80 +zbl(4,5) = 0 +nn2(4,5) = 1 +lattce(4,5) = 'b2' +Ec(4,5) = 4.9130 +re(4,5) = 2.52000 +alpha(4,5) = 4.82086228 +repuls(4,5) = 0.0250 +attrac(4,5) = 0.0250 +Cmin(4,4,5) = 0.36 +Cmin(5,5,4) = 0.81 +Cmin(4,5,4) = 0.36 +Cmin(5,4,4) = 0.36 +Cmin(4,5,5) = 0.80 +Cmin(5,4,5) = 0.80 +Cmax(4,4,5) = 2.80 +Cmax(5,5,4) = 2.80 +Cmax(4,5,4) = 2.80 +Cmax(5,4,4) = 2.80 +Cmax(4,5,5) = 2.80 +Cmax(5,4,5) = 2.80 +zbl(4,6) = 0 +nn2(4,6) = 1 +lattce(4,6) = 'b1' +Ec(4,6) = 3.9600 +re(4,6) = 2.67800 +alpha(4,6) = 5.67183077 +repuls(4,6) = 0.0250 +attrac(4,6) = 0.0250 +Cmin(4,4,6) = 0.49 +Cmin(6,6,4) = 0.36 +Cmin(4,6,4) = 0.25 +Cmin(6,4,4) = 0.25 +Cmin(4,6,6) = 0.49 +Cmin(6,4,6) = 0.49 +Cmax(4,4,6) = 2.80 +Cmax(6,6,4) = 2.80 +Cmax(4,6,4) = 2.80 +Cmax(6,4,4) = 2.80 +Cmax(4,6,6) = 2.80 +Cmax(6,4,6) = 2.80 +zbl(4,7) = 0 +nn2(4,7) = 1 +lattce(4,7) = 'b2' +Ec(4,7) = 4.7300 +re(4,7) = 2.56000 +alpha(4,7) = 5.15933838 +repuls(4,7) = 0.05 +attrac(4,7) = 0.01 +Cmin(4,4,7) = 0.50 +Cmin(7,7,4) = 0.40 +Cmin(4,7,4) = 0.59 +Cmin(7,4,4) = 0.59 +Cmin(4,7,7) = 0.59 +Cmin(7,4,7) = 0.59 +Cmax(4,4,7) = 2.80 +Cmax(7,7,4) = 2.80 +Cmax(4,7,4) = 2.80 +Cmax(7,4,4) = 2.80 +Cmax(4,7,7) = 2.80 +Cmax(7,4,7) = 2.80 +zbl(5,6) = 0 +nn2(5,6) = 1 +lattce(5,6) = 'l12' +Ec(5,6) = 4.2375 +re(5,6) = 2.59000 +alpha(5,6) = 4.93572094 +repuls(5,6) = 0.0500 +attrac(5,6) = 0.0500 +Cmin(5,5,6) = 0.36 +Cmin(6,6,5) = 1.21 +Cmin(5,6,5) = 1.00 +Cmin(6,5,5) = 1.00 +Cmin(5,6,6) = 0.422500 +Cmin(6,5,6) = 0.422500 +Cmax(5,5,6) = 2.80 +Cmax(6,6,5) = 2.80 +Cmax(5,6,5) = 2.80 +Cmax(6,5,5) = 2.80 +Cmax(5,6,6) = 2.80 +Cmax(6,5,6) = 2.80 +zbl(5,7) = 0 +nn2(5,7) = 1 +lattce(5,7) = 'b2' +Ec(5,7) = 4.0980 +re(5,7) = 2.48750 +alpha(5,7) = 5.43004072 +repuls(5,7) = 0.0750 +attrac(5,7) = 0.0350 +Cmin(5,5,7) = 0.36 +Cmin(7,7,5) = 0.71 +Cmin(5,7,5) = 0.52 +Cmin(7,5,5) = 0.52 +Cmin(5,7,7) = 0.52 +Cmin(7,5,7) = 0.52 +Cmax(5,5,7) = 2.80 +Cmax(7,7,5) = 2.80 +Cmax(5,7,5) = 2.80 +Cmax(7,5,5) = 2.80 +Cmax(5,7,7) = 2.80 +Cmax(7,5,7) = 2.80 +zbl(6,7) = 0 +nn2(6,7) = 1 +lattce(6,7) = 'l12' +Ec(6,7) = 3.6090 +re(6,7) = 2.72300 +alpha(6,7) = 5.02063218 +repuls(6,7) = 0.0625 +attrac(6,7) = 0.0425 +Cmin(6,6,7) = 2.18 +Cmin(7,7,6) = 1.60 +Cmin(6,7,6) = 0.77 +Cmin(7,6,6) = 0.77 +Cmin(6,7,7) = 2.70 +Cmin(7,6,7) = 2.70 +Cmax(6,6,7) = 3.73 +Cmax(7,7,6) = 2.94 +Cmax(6,7,6) = 2.40 +Cmax(7,6,6) = 2.40 +Cmax(6,7,7) = 3.19 +Cmax(7,6,7) = 3.19 +Cmin(1,2,3) = 0.72 +Cmin(2,1,3) = 0.72 +Cmin(1,3,2) = 0.72 +Cmin(3,1,2) = 0.72 +Cmin(2,3,1) = 0.73 +Cmin(3,2,1) = 0.73 +Cmax(1,2,3) = 1.73 +Cmax(2,1,3) = 1.73 +Cmax(1,3,2) = 1.73 +Cmax(3,1,2) = 1.73 +Cmax(2,3,1) = 2.12 +Cmax(3,2,1) = 2.12 +Cmin(1,2,4) = 0.36 +Cmin(2,1,4) = 0.36 +Cmin(1,4,2) = 0.36 +Cmin(4,1,2) = 0.36 +Cmin(2,4,1) = 0.44 +Cmin(4,2,1) = 0.44 +Cmax(1,2,4) = 1.67 +Cmax(2,1,4) = 1.67 +Cmax(1,4,2) = 1.67 +Cmax(4,1,2) = 1.67 +Cmax(2,4,1) = 2.60 +Cmax(4,2,1) = 2.60 +Cmin(1,2,5) = 0.60 +Cmin(2,1,5) = 0.60 +Cmin(1,5,2) = 0.60 +Cmin(5,1,2) = 0.60 +Cmin(2,5,1) = 0.42 +Cmin(5,2,1) = 0.42 +Cmax(1,2,5) = 1.79 +Cmax(2,1,5) = 1.79 +Cmax(1,5,2) = 1.79 +Cmax(5,1,2) = 1.79 +Cmax(2,5,1) = 2.60 +Cmax(5,2,1) = 2.60 +Cmin(1,2,6) = 0.64 +Cmin(2,1,6) = 0.64 +Cmin(1,6,2) = 0.56 +Cmin(6,1,2) = 0.56 +Cmin(2,6,1) = 0.56 +Cmin(6,2,1) = 0.56 +Cmax(1,2,6) = 2.24 +Cmax(2,1,6) = 2.24 +Cmax(1,6,2) = 2.80 +Cmax(6,1,2) = 2.80 +Cmax(2,6,1) = 2.80 +Cmax(6,2,1) = 2.80 +Cmin(1,2,7) = 1.23 +Cmin(2,1,7) = 1.23 +Cmin(1,7,2) = 0.81 +Cmin(7,1,2) = 0.81 +Cmin(2,7,1) = 1.23 +Cmin(7,2,1) = 1.23 +Cmax(1,2,7) = 2.27 +Cmax(2,1,7) = 2.27 +Cmax(1,7,2) = 2.80 +Cmax(7,1,2) = 2.80 +Cmax(2,7,1) = 2.27 +Cmax(7,2,1) = 2.27 +Cmin(1,3,4) = 0.42 +Cmin(3,1,4) = 0.42 +Cmin(1,4,3) = 0.42 +Cmin(4,1,3) = 0.42 +Cmin(3,4,1) = 0.66 +Cmin(4,3,1) = 0.66 +Cmax(1,3,4) = 2.57 +Cmax(3,1,4) = 2.57 +Cmax(1,4,3) = 2.57 +Cmax(4,1,3) = 2.57 +Cmax(3,4,1) = 2.30 +Cmax(4,3,1) = 2.30 +Cmin(1,3,5) = 0.68 +Cmin(3,1,5) = 0.68 +Cmin(1,5,3) = 0.68 +Cmin(5,1,3) = 0.68 +Cmin(3,5,1) = 0.64 +Cmin(5,3,1) = 0.64 +Cmax(1,3,5) = 2.72 +Cmax(3,1,5) = 2.72 +Cmax(1,5,3) = 2.72 +Cmax(5,1,3) = 2.72 +Cmax(3,5,1) = 2.30 +Cmax(5,3,1) = 2.30 +Cmin(1,3,6) = 1.18 +Cmin(3,1,6) = 1.18 +Cmin(1,6,3) = 0.64 +Cmin(6,1,3) = 0.64 +Cmin(3,6,1) = 0.64 +Cmin(6,3,1) = 0.64 +Cmax(1,3,6) = 2.65 +Cmax(3,1,6) = 2.65 +Cmax(1,6,3) = 2.06 +Cmax(6,1,3) = 2.06 +Cmax(3,6,1) = 2.06 +Cmax(6,3,1) = 2.06 +Cmin(1,3,7) = 1.21 +Cmin(3,1,7) = 1.21 +Cmin(1,7,3) = 0.61 +Cmin(7,1,3) = 0.61 +Cmin(3,7,1) = 1.21 +Cmin(7,3,1) = 1.21 +Cmax(1,3,7) = 2.72 +Cmax(3,1,7) = 2.72 +Cmax(1,7,3) = 2.75 +Cmax(7,1,3) = 2.75 +Cmax(3,7,1) = 2.72 +Cmax(7,3,1) = 2.72 +Cmin(1,4,5) = 0.33 +Cmin(4,1,5) = 0.33 +Cmin(1,5,4) = 0.33 +Cmin(5,1,4) = 0.33 +Cmin(4,5,1) = 0.37 +Cmin(5,4,1) = 0.37 +Cmax(1,4,5) = 2.65 +Cmax(4,1,5) = 2.65 +Cmax(1,5,4) = 2.65 +Cmax(5,1,4) = 2.65 +Cmax(4,5,1) = 2.80 +Cmax(5,4,1) = 2.80 +Cmin(1,4,6) = 0.64 +Cmin(4,1,6) = 0.64 +Cmin(1,6,4) = 0.42 +Cmin(6,1,4) = 0.42 +Cmin(4,6,1) = 0.42 +Cmin(6,4,1) = 0.42 +Cmax(1,4,6) = 2.65 +Cmax(4,1,6) = 2.65 +Cmax(1,6,4) = 2.80 +Cmax(6,1,4) = 2.80 +Cmax(4,6,1) = 2.80 +Cmax(6,4,1) = 2.80 +Cmin(1,4,7) = 0.23 +Cmin(4,1,7) = 0.23 +Cmin(1,7,4) = 0.64 +Cmin(7,1,4) = 0.64 +Cmin(4,7,1) = 0.23 +Cmin(7,4,1) = 0.23 +Cmax(1,4,7) = 2.65 +Cmax(4,1,7) = 2.65 +Cmax(1,7,4) = 2.80 +Cmax(7,1,4) = 2.80 +Cmax(4,7,1) = 2.65 +Cmax(7,4,1) = 2.65 +Cmin(1,5,6) = 0.57 +Cmin(5,1,6) = 0.57 +Cmin(1,6,5) = 0.81 +Cmin(6,1,5) = 0.81 +Cmin(5,6,1) = 0.81 +Cmin(6,5,1) = 0.81 +Cmax(1,5,6) = 2.65 +Cmax(5,1,6) = 2.65 +Cmax(1,6,5) = 2.80 +Cmax(6,1,5) = 2.80 +Cmax(5,6,1) = 2.80 +Cmax(6,5,1) = 2.80 +Cmin(1,5,7) = 0.54 +Cmin(5,1,7) = 0.54 +Cmin(1,7,5) = 0.67 +Cmin(7,1,5) = 0.67 +Cmin(5,7,1) = 0.54 +Cmin(7,5,1) = 0.54 +Cmax(1,5,7) = 2.80 +Cmax(5,1,7) = 2.80 +Cmax(1,7,5) = 2.80 +Cmax(7,1,5) = 2.80 +Cmax(5,7,1) = 2.80 +Cmax(7,5,1) = 2.80 +Cmin(1,6,7) = 1.49 +Cmin(6,1,7) = 1.49 +Cmin(1,7,6) = 1.18 +Cmin(7,1,6) = 1.18 +Cmin(6,7,1) = 1.49 +Cmin(7,6,1) = 1.49 +Cmax(1,6,7) = 2.99 +Cmax(6,1,7) = 2.99 +Cmax(1,7,6) = 2.72 +Cmax(7,1,6) = 2.72 +Cmax(6,7,1) = 2.99 +Cmax(7,6,1) = 2.99 +Cmin(2,3,4) = 0.41 +Cmin(3,2,4) = 0.41 +Cmin(2,4,3) = 0.52 +Cmin(4,2,3) = 0.52 +Cmin(3,4,2) = 0.52 +Cmin(4,3,2) = 0.52 +Cmax(2,3,4) = 2.80 +Cmax(3,2,4) = 2.80 +Cmax(2,4,3) = 1.69 +Cmax(4,2,3) = 1.69 +Cmax(3,4,2) = 1.69 +Cmax(4,3,2) = 1.69 +Cmin(2,3,5) = 0.56 +Cmin(3,2,5) = 0.56 +Cmin(2,5,3) = 0.49 +Cmin(5,2,3) = 0.49 +Cmin(3,5,2) = 0.49 +Cmin(5,3,2) = 0.49 +Cmax(2,3,5) = 1.44 +Cmax(3,2,5) = 1.44 +Cmax(2,5,3) = 2.38 +Cmax(5,2,3) = 2.38 +Cmax(3,5,2) = 2.38 +Cmax(5,3,2) = 2.38 +Cmin(2,3,6) = 0.97 +Cmin(3,2,6) = 0.97 +Cmin(2,6,3) = 0.56 +Cmin(6,2,3) = 0.56 +Cmin(3,6,2) = 0.56 +Cmin(6,3,2) = 0.56 +Cmax(2,3,6) = 2.38 +Cmax(3,2,6) = 2.38 +Cmax(2,6,3) = 2.06 +Cmax(6,2,3) = 2.06 +Cmax(3,6,2) = 2.06 +Cmax(6,3,2) = 2.06 +Cmin(2,3,7) = 0.64 +Cmin(3,2,7) = 0.64 +Cmin(2,7,3) = 1.31 +Cmin(7,2,3) = 1.31 +Cmin(3,7,2) = 1.31 +Cmin(7,3,2) = 1.31 +Cmax(2,3,7) = 2.80 +Cmax(3,2,7) = 2.80 +Cmax(2,7,3) = 2.80 +Cmax(7,2,3) = 2.80 +Cmax(3,7,2) = 2.80 +Cmax(7,3,2) = 2.80 +Cmin(2,4,5) = 0.46 +Cmin(4,2,5) = 0.46 +Cmin(2,5,4) = 0.46 +Cmin(5,2,4) = 0.46 +Cmin(4,5,2) = 1.00 +Cmin(5,4,2) = 1.00 +Cmax(2,4,5) = 2.38 +Cmax(4,2,5) = 2.38 +Cmax(2,5,4) = 2.38 +Cmax(5,2,4) = 2.38 +Cmax(4,5,2) = 2.38 +Cmax(5,4,2) = 2.38 +Cmin(2,4,6) = 0.49 +Cmin(4,2,6) = 0.49 +Cmin(2,6,4) = 0.36 +Cmin(6,2,4) = 0.36 +Cmin(4,6,2) = 0.36 +Cmin(6,4,2) = 0.36 +Cmax(2,4,6) = 2.38 +Cmax(4,2,6) = 2.38 +Cmax(2,6,4) = 2.80 +Cmax(6,2,4) = 2.80 +Cmax(4,6,2) = 2.80 +Cmax(6,4,2) = 2.80 +Cmin(2,4,7) = 1.12 +Cmin(4,2,7) = 1.12 +Cmin(2,7,4) = 1.12 +Cmin(7,2,4) = 1.12 +Cmin(4,7,2) = 0.95 +Cmin(7,4,2) = 0.95 +Cmax(2,4,7) = 2.80 +Cmax(4,2,7) = 2.80 +Cmax(2,7,4) = 2.80 +Cmax(7,2,4) = 2.80 +Cmax(4,7,2) = 2.80 +Cmax(7,4,2) = 2.80 +Cmin(2,5,6) = 0.42 +Cmin(5,2,6) = 0.42 +Cmin(2,6,5) = 0.72 +Cmin(6,2,5) = 0.72 +Cmin(5,6,2) = 0.72 +Cmin(6,5,2) = 0.72 +Cmax(2,5,6) = 2.38 +Cmax(5,2,6) = 2.38 +Cmax(2,6,5) = 2.80 +Cmax(6,2,5) = 2.80 +Cmax(5,6,2) = 2.80 +Cmax(6,5,2) = 2.80 +Cmin(2,5,7) = 1.07 +Cmin(5,2,7) = 1.07 +Cmin(2,7,5) = 1.07 +Cmin(7,2,5) = 1.07 +Cmin(5,7,2) = 0.77 +Cmin(7,5,2) = 0.77 +Cmax(2,5,7) = 2.38 +Cmax(5,2,7) = 2.38 +Cmax(2,7,5) = 2.38 +Cmax(7,2,5) = 2.38 +Cmax(5,7,2) = 2.38 +Cmax(7,5,2) = 2.38 +Cmin(2,6,7) = 1.37 +Cmin(6,2,7) = 1.37 +Cmin(2,7,6) = 0.97 +Cmin(7,2,6) = 0.97 +Cmin(6,7,2) = 1.37 +Cmin(7,6,2) = 1.37 +Cmax(2,6,7) = 2.99 +Cmax(6,2,7) = 2.99 +Cmax(2,7,6) = 2.45 +Cmax(7,2,6) = 2.45 +Cmax(6,7,2) = 2.99 +Cmax(7,6,2) = 2.99 +Cmin(3,4,5) = 0.76 +Cmin(4,3,5) = 0.76 +Cmin(3,5,4) = 0.76 +Cmin(5,3,4) = 0.76 +Cmin(4,5,3) = 0.64 +Cmin(5,4,3) = 0.64 +Cmax(3,4,5) = 2.06 +Cmax(4,3,5) = 2.06 +Cmax(3,5,4) = 2.06 +Cmax(5,3,4) = 2.06 +Cmax(4,5,3) = 1.44 +Cmax(5,4,3) = 1.44 +Cmin(3,4,6) = 0.97 +Cmin(4,3,6) = 0.97 +Cmin(3,6,4) = 0.42 +Cmin(6,3,4) = 0.42 +Cmin(4,6,3) = 0.42 +Cmin(6,4,3) = 0.42 +Cmax(3,4,6) = 2.80 +Cmax(4,3,6) = 2.80 +Cmax(3,6,4) = 2.06 +Cmax(6,3,4) = 2.06 +Cmax(4,6,3) = 2.06 +Cmax(6,4,3) = 2.06 +Cmin(3,4,7) = 0.88 +Cmin(4,3,7) = 0.88 +Cmin(3,7,4) = 0.88 +Cmin(7,3,4) = 0.88 +Cmin(4,7,3) = 1.00 +Cmin(7,4,3) = 1.00 +Cmax(3,4,7) = 2.06 +Cmax(4,3,7) = 2.06 +Cmax(3,7,4) = 2.06 +Cmax(7,3,4) = 2.06 +Cmax(4,7,3) = 2.06 +Cmax(7,4,3) = 2.06 +Cmin(3,5,6) = 0.87 +Cmin(5,3,6) = 0.87 +Cmin(3,6,5) = 0.81 +Cmin(6,3,5) = 0.81 +Cmin(5,6,3) = 0.81 +Cmin(6,5,3) = 0.81 +Cmax(3,5,6) = 2.80 +Cmax(5,3,6) = 2.80 +Cmax(3,6,5) = 2.06 +Cmax(6,3,5) = 2.06 +Cmax(5,6,3) = 2.06 +Cmax(6,5,3) = 2.06 +Cmin(3,5,7) = 0.66 +Cmin(5,3,7) = 0.66 +Cmin(3,7,5) = 0.66 +Cmin(7,3,5) = 0.66 +Cmin(5,7,3) = 0.64 +Cmin(7,5,3) = 0.64 +Cmax(3,5,7) = 2.80 +Cmax(5,3,7) = 2.80 +Cmax(3,7,5) = 2.80 +Cmax(7,3,5) = 2.80 +Cmax(5,7,3) = 2.06 +Cmax(7,5,3) = 2.06 +Cmin(3,6,7) = 1.49 +Cmin(6,3,7) = 1.49 +Cmin(3,7,6) = 1.60 +Cmin(7,3,6) = 1.60 +Cmin(6,7,3) = 1.49 +Cmin(7,6,3) = 1.49 +Cmax(3,6,7) = 2.23 +Cmax(6,3,7) = 2.23 +Cmax(3,7,6) = 2.87 +Cmax(7,3,6) = 2.87 +Cmax(6,7,3) = 2.23 +Cmax(7,6,3) = 2.23 +Cmin(4,5,6) = 0.42 +Cmin(5,4,6) = 0.42 +Cmin(4,6,5) = 0.56 +Cmin(6,4,5) = 0.56 +Cmin(5,6,4) = 0.56 +Cmin(6,5,4) = 0.56 +Cmax(4,5,6) = 2.80 +Cmax(5,4,6) = 2.80 +Cmax(4,6,5) = 2.80 +Cmax(6,4,5) = 2.80 +Cmax(5,6,4) = 2.80 +Cmax(6,5,4) = 2.80 +Cmin(4,5,7) = 0.69 +Cmin(5,4,7) = 0.69 +Cmin(4,7,5) = 0.69 +Cmin(7,4,5) = 0.69 +Cmin(5,7,4) = 0.59 +Cmin(7,5,4) = 0.59 +Cmax(4,5,7) = 2.80 +Cmax(5,4,7) = 2.80 +Cmax(4,7,5) = 2.80 +Cmax(7,4,5) = 2.80 +Cmax(5,7,4) = 2.80 +Cmax(7,5,4) = 2.80 +Cmin(4,6,7) = 1.15 +Cmin(6,4,7) = 1.15 +Cmin(4,7,6) = 0.97 +Cmin(7,4,6) = 0.97 +Cmin(6,7,4) = 1.15 +Cmin(7,6,4) = 1.15 +Cmax(4,6,7) = 2.99 +Cmax(6,4,7) = 2.99 +Cmax(4,7,6) = 2.87 +Cmax(7,4,6) = 2.87 +Cmax(6,7,4) = 2.99 +Cmax(7,6,4) = 2.99 +Cmin(5,6,7) = 1.75 +Cmin(6,5,7) = 1.75 +Cmin(5,7,6) = 0.87 +Cmin(7,5,6) = 0.87 +Cmin(6,7,5) = 1.75 +Cmin(7,6,5) = 1.75 +Cmax(5,6,7) = 2.99 +Cmax(6,5,7) = 2.99 +Cmax(5,7,6) = 2.87 +Cmax(7,5,6) = 2.87 +Cmax(6,7,5) = 2.99 +Cmax(7,6,5) = 2.99 + diff --git a/potentials/library.meam b/potentials/library.meam index 0a0bbe0408..a3ee1ad141 100644 --- a/potentials/library.meam +++ b/potentials/library.meam @@ -1,4 +1,4 @@ -# DATE: 2012-06-29 UNITS: metal DATE: 2007-06-11 CONTRIBUTOR: Greg Wagner, gjwagne@sandia.gov CITATION: Baskes, Phys Rev B, 46, 2727-2742 (1992) +# DATE: 2012-06-29 UNITS: metal CONTRIBUTOR: Greg Wagner, gjwagne@sandia.gov CITATION: Baskes, Phys Rev B, 46, 2727-2742 (1992) # meam data from vax files fcc,bcc,dia 11/4/92 # elt lat z ielement atwt # alpha b0 b1 b2 b3 alat esub asub diff --git a/potentials/library_2nn.meam b/potentials/library_2nn.meam new file mode 100644 index 0000000000..4923362953 --- /dev/null +++ b/potentials/library_2nn.meam @@ -0,0 +1,26 @@ +# DATE: 2024-08-08 UNITS: metal CONTRIBUTOR: Axel Kohlmeyer, akohlmey@gmail.com CITATION: Wang, J., Kwon, H., Kim, H.S. et al. A neural network model for high entropy alloy design. npj Comput Mater 9, 60 (2023). https://doi.org/10.1038/s41524-023-01010-x +# Use with MoCoNiVFeAlCr_2nn.meam like this: pair_coeff * * library_2nn Mo Co Ni V Fe Al Cr MoCoNiVFeAlCr_2nn.meam ... +# elt lat z ielement atwt +# alpha b0 b1 b2 b3 alat esub asub +# t0 t1 t2 t3 rozero ibar +'Mo' 'bcc' 8 1 89.9600 +5.8381780760 5.950 9.000 3.000 1.000 3.1465589671 6.810 0.610 +1.00 2.000 7.750 -7.000 1.000 3 +'Co' 'hcp' 12 1 58.9330 +5.2356147485 3.500 0.000 0.000 4.000 2.5000000000 4.410 0.900 +1.00 3.000 5.000 -1.000 1.000 3 +'Ni' 'fcc' 12 1 58.6900 +5.0842175782 2.560 1.500 6.000 1.500 3.5213917703 4.450 0.940 +1.00 3.100 1.800 4.360 1.000 3 +'V' 'bcc' 8 1 50.9420 +4.8137039168 4.740 1.000 2.500 1.000 3.0310889132 5.300 0.730 +1.00 3.300 3.200 -2.000 1.000 3 +'Fe' 'bcc' 8 1 55.8470 +5.1571615396 4.150 1.000 1.000 1.000 2.8636573352 4.290 0.560 +1.00 2.600 1.800 -7.200 1.000 3 +'Al' 'fcc' 12 1 26.9820 +4.6855976824 3.200 2.600 6.000 2.600 4.0446507884 3.360 1.160 +1.00 3.050 0.510 7.750 1.000 3 +'Cr' 'bcc' 8 1 51.9600 +5.5800716432 6.490 1.000 6.000 1.000 2.8809778433 4.100 0.520 +1.00 2.000 6.800 -8.000 1.000 3 diff --git a/python/lammps/core.py b/python/lammps/core.py index 97bcb5157d..9080dd9c56 100644 --- a/python/lammps/core.py +++ b/python/lammps/core.py @@ -342,8 +342,8 @@ class lammps(object): if self.has_mpi_support: try: from mpi4py import __version__ as mpi4py_version - # tested to work with mpi4py versions 2 and 3 - self.has_mpi4py = mpi4py_version.split('.')[0] in ['2','3'] + # tested to work with mpi4py versions 2, 3, and 4 + self.has_mpi4py = mpi4py_version.split('.')[0] in ['2','3','4'] except ImportError: # ignore failing import pass @@ -369,7 +369,7 @@ class lammps(object): if not self.has_mpi_support: raise Exception('LAMMPS not compiled with real MPI library') if not self.has_mpi4py: - raise Exception('Python mpi4py version is not 2 or 3') + raise Exception('Python mpi4py version is not 2, 3, or 4') if self.MPI._sizeof(self.MPI.Comm) == sizeof(c_int): MPI_Comm = c_int else: @@ -1969,6 +1969,21 @@ class lammps(object): # ------------------------------------------------------------------------- + @property + def has_curl_support(self): + """ Report whether the LAMMPS shared library was compiled with support + for downloading files through libcurl. + + This is a wrapper around the :cpp:func:`lammps_config_has_curl_support` + function of the library interface. + + :return: state of CURL support + :rtype: bool + """ + return self.lib.lammps_config_has_curl_support() != 0 + + # ------------------------------------------------------------------------- + def has_package(self, name): """ Report if the named package has been enabled in the LAMMPS shared library. diff --git a/src/.gitignore b/src/.gitignore index 5b13a7d55a..c26eaaba30 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -1075,6 +1075,8 @@ /fix_wall_srd.h /fix_widom.cpp /fix_widom.h +/geturl.cpp +/geturl.h /gpu_extra.h /group_ndx.cpp /group_ndx.h diff --git a/src/BPM/bond_bpm_rotational.cpp b/src/BPM/bond_bpm_rotational.cpp index aba3709dc9..00e6f61e74 100644 --- a/src/BPM/bond_bpm_rotational.cpp +++ b/src/BPM/bond_bpm_rotational.cpp @@ -280,10 +280,8 @@ double BondBPMRotational::elastic_forces(int i1, int i2, int type, double r_mag, temp = sqrt(q21[0] * q21[0] + q21[3] * q21[3]); if (temp != 0.0) { - c = q21[0] / temp; - psi = 2.0 * acos_limit(c); + psi = 2.0 * acos_limit(q21[0] / temp); } else { - c = 0.0; psi = 0.0; } diff --git a/src/COLVARS/colvarproxy_lammps.cpp b/src/COLVARS/colvarproxy_lammps.cpp index 1c5d84d62a..a2073a1d35 100644 --- a/src/COLVARS/colvarproxy_lammps.cpp +++ b/src/COLVARS/colvarproxy_lammps.cpp @@ -8,81 +8,40 @@ // If you wish to distribute your changes, please submit them to the // Colvars repository at GitHub. - #include "colvarproxy_lammps.h" -#include "lammps.h" +#include "domain.h" #include "error.h" -#include "output.h" -#include "random_park.h" +#include "force.h" +#include "lammps.h" // includes , , , +#include "update.h" +#include "utils.h" #include "colvarmodule.h" #include "colvarproxy.h" - -#include +#include "colvarscript.h" #define HASH_FAIL -1 +/* ---------------------------------------------------------------------- */ -colvarproxy_lammps::colvarproxy_lammps(LAMMPS_NS::LAMMPS *lmp, - const char *inp_name, - const char *out_name, - const int seed, - const double temp, - MPI_Comm root2root) - : _lmp(lmp), inter_comm(root2root) +colvarproxy_lammps::colvarproxy_lammps(LAMMPS_NS::LAMMPS *lmp) : _lmp(lmp), _random(nullptr) { - if (cvm::debug()) - log("Initializing the colvars proxy object.\n"); + engine_name_ = "LAMMPS"; - _random = new LAMMPS_NS::RanPark(lmp,seed); + first_timestep = true; + previous_step = -1; + do_exit = false; - first_timestep=true; - previous_step=-1; - do_exit=false; + inter_me = 0; + inter_num = 1; + bias_energy = 0.0; engine_ready_ = false; - - // set input restart name and strip the extension, if present - input_prefix_str = std::string(inp_name ? inp_name : ""); - if (input_prefix_str.rfind(".colvars.state") != std::string::npos) - input_prefix_str.erase(input_prefix_str.rfind(".colvars.state"), - std::string(".colvars.state").size()); - - // output prefix is always given - output_prefix_str = std::string(out_name); - // not so for restarts - restart_output_prefix_str = std::string("rest"); - - // check if it is possible to save output configuration - if ((!output_prefix_str.size()) && (!restart_output_prefix_str.size())) { - error("Error: neither the final output state file or " - "the output restart file could be defined, exiting.\n"); - } - - // try to extract a restart prefix from a potential restart command. - LAMMPS_NS::Output *outp = _lmp->output; - if ((outp->restart_every_single > 0) && (outp->restart1 != nullptr)) { - restart_frequency_engine = outp->restart_every_single; - restart_output_prefix_str = std::string(outp->restart1); - } else if ((outp->restart_every_double > 0) && (outp->restart2a != nullptr)) { - restart_frequency_engine = outp->restart_every_double; - restart_output_prefix_str = std::string(outp->restart2a); - } - // trim off unwanted stuff from the restart prefix - if (restart_output_prefix_str.rfind(".*") != std::string::npos) - restart_output_prefix_str.erase(restart_output_prefix_str.rfind(".*"),2); - - // initialize multi-replica support, if available - if (replica_enabled() == COLVARS_OK) { - MPI_Comm_rank(inter_comm, &inter_me); - MPI_Comm_size(inter_comm, &inter_num); - } - - if (cvm::debug()) - log("Done initializing the colvars proxy object.\n"); + inter_comm = MPI_COMM_NULL; } +/* ---------------------------------------------------------------------- */ void colvarproxy_lammps::init() { @@ -91,78 +50,78 @@ void colvarproxy_lammps::init() // create the colvarmodule instance colvars = new colvarmodule(this); - cvm::log("Using LAMMPS interface, version "+ - cvm::to_str(COLVARPROXY_VERSION)+".\n"); + // Create instance of scripting interface + script = new colvarscript(this, colvars); + + cvm::log("Using LAMMPS interface, version " + cvm::to_str(COLVARPROXY_VERSION) + ".\n"); colvars->cite_feature("LAMMPS engine"); colvars->cite_feature("Colvars-LAMMPS interface"); - my_angstrom = _lmp->force->angstrom; - // Front-end unit is the same as back-end - angstrom_value_ = my_angstrom; - - // my_kcal_mol = _lmp->force->qe2f / 23.060549; - // force->qe2f is 1eV expressed in LAMMPS' energy unit (1 if unit is eV, 23 if kcal/mol) + angstrom_value_ = _lmp->force->angstrom; boltzmann_ = _lmp->force->boltz; - my_timestep = _lmp->update->dt * _lmp->force->femtosecond; + set_integration_timestep(_lmp->update->dt * _lmp->force->femtosecond); if (_lmp->update->ntimestep != 0) { - cvm::log("Setting initial step number from LAMMPS: "+ - cvm::to_str(_lmp->update->ntimestep)+"\n"); - colvarmodule::it = colvarmodule::it_restart = - static_cast(_lmp->update->ntimestep); - } - - if (cvm::debug()) { - cvm::log("atoms_ids = "+cvm::to_str(atoms_ids)+"\n"); - cvm::log("atoms_refcount = "+cvm::to_str(atoms_refcount)+"\n"); - cvm::log("atoms_positions = "+cvm::to_str(atoms_positions)+"\n"); - cvm::log(cvm::line_marker); - cvm::log("Info: done initializing the colvars proxy object.\n"); + colvars->set_initial_step(static_cast(_lmp->update->ntimestep)); } } -int colvarproxy_lammps::add_config_file(const char *conf_file) -{ - return colvars->read_config_file(conf_file); -} - -int colvarproxy_lammps::add_config_string(const std::string &conf) -{ - return colvars->read_config_string(conf); -} - -int colvarproxy_lammps::read_state_file(char const *state_filename) -{ - input_prefix() = std::string(state_filename); - return colvars->setup_input(); -} +/* ---------------------------------------------------------------------- */ colvarproxy_lammps::~colvarproxy_lammps() { - delete _random; + if (_random) delete _random; } -// re-initialize data where needed +/* ---------------------------------------------------------------------- */ + +void colvarproxy_lammps::set_random_seed(int seed) +{ + if (_random) delete _random; + + _random = new LAMMPS_NS::RanPark(_lmp, seed); +} + +/* ---------------------------------------------------------------------- */ + +void colvarproxy_lammps::set_replicas_communicator(MPI_Comm root2root) +{ + inter_comm = root2root; + + // initialize multi-replica support, if available + if (replica_enabled() == COLVARS_OK) { + MPI_Comm_rank(inter_comm, &inter_me); + MPI_Comm_size(inter_comm, &inter_num); + } +} + +/* ---------------------------------------------------------------------- + re-initialize data where needed +------------------------------------------------------------------------- */ + int colvarproxy_lammps::setup() { int error_code = colvarproxy::setup(); - my_timestep = _lmp->update->dt * _lmp->force->femtosecond; + set_integration_timestep(_lmp->update->dt * _lmp->force->femtosecond); error_code |= colvars->update_engine_parameters(); error_code |= colvars->setup_input(); error_code |= colvars->setup_output(); return error_code; } -// trigger colvars computation +/* ---------------------------------------------------------------------- + trigger colvars computation +------------------------------------------------------------------------- */ + double colvarproxy_lammps::compute() { if (cvm::debug()) { - cvm::log(std::string(cvm::line_marker)+ - "colvarproxy_lammps step no. "+ - cvm::to_str(_lmp->update->ntimestep)+" [first - last = "+ - cvm::to_str(_lmp->update->beginstep)+" - "+ - cvm::to_str(_lmp->update->endstep)+"]\n"); + cvm::log(std::string(cvm::line_marker) + + "colvarproxy_lammps step no. " + + cvm::to_str(_lmp->update->ntimestep) + " [first - last = " + + cvm::to_str(_lmp->update->beginstep) + " - " + + cvm::to_str(_lmp->update->endstep) + "]\n"); } if (first_timestep) { @@ -204,60 +163,39 @@ double colvarproxy_lammps::compute() } if (cvm::debug()) { - cvm::log(std::string(cvm::line_marker)+ - "colvarproxy_lammps, step no. "+cvm::to_str(colvarmodule::it)+"\n"+ + cvm::log(std::string(cvm::line_marker) + + "colvarproxy_lammps, step no. " + cvm::to_str(colvarmodule::it) + "\n" + "Updating internal data.\n"); } // zero the forces on the atoms, so that they can be accumulated by the colvars - for (size_t i = 0; i < atoms_new_colvar_forces.size(); i++) { + for (size_t i = 0; i < atoms_new_colvar_forces.size(); i++) atoms_new_colvar_forces[i].reset(); - } bias_energy = 0.0; if (cvm::debug()) { - cvm::log("atoms_ids = "+cvm::to_str(atoms_ids)+"\n"); - cvm::log("atoms_refcount = "+cvm::to_str(atoms_refcount)+"\n"); - cvm::log("atoms_positions = "+cvm::to_str(atoms_positions)+"\n"); - cvm::log("atoms_new_colvar_forces = "+cvm::to_str(atoms_new_colvar_forces)+"\n"); + cvm::log("atoms_ids = " + cvm::to_str(atoms_ids) + "\n"); + cvm::log("atoms_refcount = " + cvm::to_str(atoms_refcount) + "\n"); + cvm::log("atoms_positions = " + cvm::to_str(atoms_positions) + "\n"); + cvm::log("atoms_new_colvar_forces = " + cvm::to_str(atoms_new_colvar_forces) + "\n"); } // Call the collective variable module - if (colvars->calc() != COLVARS_OK) { + if (colvars->calc() != COLVARS_OK) cvm::error("Error in the collective variables module.\n", COLVARS_ERROR); - } if (cvm::debug()) { - cvm::log("atoms_ids = "+cvm::to_str(atoms_ids)+"\n"); - cvm::log("atoms_refcount = "+cvm::to_str(atoms_refcount)+"\n"); - cvm::log("atoms_positions = "+cvm::to_str(atoms_positions)+"\n"); - cvm::log("atoms_new_colvar_forces = "+cvm::to_str(atoms_new_colvar_forces)+"\n"); + cvm::log("atoms_ids = " + cvm::to_str(atoms_ids) + "\n"); + cvm::log("atoms_refcount = " + cvm::to_str(atoms_refcount) + "\n"); + cvm::log("atoms_positions = " + cvm::to_str(atoms_positions) + "\n"); + cvm::log("atoms_new_colvar_forces = " + cvm::to_str(atoms_new_colvar_forces) + "\n"); } return bias_energy; } -void colvarproxy_lammps::serialize_status(std::string &rst) -{ - std::ostringstream os; - colvars->write_restart(os); - rst = os.str(); -} - -// set status from string -bool colvarproxy_lammps::deserialize_status(std::string &rst) -{ - std::istringstream is; - is.str(rst); - - if (!colvars->read_restart(is)) { - return false; - } else { - return true; - } -} - +/* ---------------------------------------------------------------------- */ cvm::rvector colvarproxy_lammps::position_distance(cvm::atom_pos const &pos1, cvm::atom_pos const &pos2) @@ -270,67 +208,88 @@ cvm::rvector colvarproxy_lammps::position_distance(cvm::atom_pos const &pos1, return {xtmp, ytmp, ztmp}; } +/* ---------------------------------------------------------------------- */ void colvarproxy_lammps::log(std::string const &message) { - std::istringstream is(message); - std::string line; - while (std::getline(is, line)) { - if (_lmp->screen) - fprintf(_lmp->screen,"colvars: %s\n",line.c_str()); - if (_lmp->logfile) - fprintf(_lmp->logfile,"colvars: %s\n",line.c_str()); - } + auto lines = LAMMPS_NS::utils::split_lines(message); + for (const auto &line : lines) + LAMMPS_NS::utils::logmesg(_lmp, message); } +/* ---------------------------------------------------------------------- */ void colvarproxy_lammps::error(std::string const &message) { log(message); - _lmp->error->one(FLERR, - "Fatal error in the collective variables module.\n"); + _lmp->error->one(FLERR, "Fatal error in the collective variables module"); } +/* ---------------------------------------------------------------------- */ + +char const *colvarproxy_lammps::script_obj_to_str(unsigned char *obj) +{ + // For now we assume that all objects passed by FixColvars are strings + return reinterpret_cast(obj); +} + +/* ---------------------------------------------------------------------- */ + +std::vector colvarproxy_lammps::script_obj_to_str_vector(unsigned char *obj) +{ + if (cvm::debug()) { + cvm::log("Called colvarproxy_lammps::script_obj_to_str_vector().\n"); + } + std::string const input(reinterpret_cast(obj)); + return LAMMPS_NS::utils::split_words(input); // :-))) +} + +/* ---------------------------------------------------------------------- */ int colvarproxy_lammps::set_unit_system(std::string const &units_in, bool /*check_only*/) { std::string lmp_units = _lmp->update->unit_style; if (units_in != lmp_units) { - cvm::error("Error: Specified unit system for Colvars \"" + units_in + "\" is incompatible with LAMMPS internal units (" + lmp_units + ").\n"); + cvm::error("Error: Specified unit system for Colvars \"" + units_in + + "\" is incompatible with LAMMPS internal units (" + lmp_units + ").\n"); return COLVARS_ERROR; } return COLVARS_OK; } - -// multi-replica support +/* ---------------------------------------------------------------------- + multi-replica support +------------------------------------------------------------------------- */ int colvarproxy_lammps::replica_enabled() { return (inter_comm != MPI_COMM_NULL) ? COLVARS_OK : COLVARS_NOT_IMPLEMENTED; } +/* ---------------------------------------------------------------------- */ int colvarproxy_lammps::replica_index() { return inter_me; } +/* ---------------------------------------------------------------------- */ int colvarproxy_lammps::num_replicas() { return inter_num; } +/* ---------------------------------------------------------------------- */ void colvarproxy_lammps::replica_comm_barrier() { MPI_Barrier(inter_comm); } +/* ---------------------------------------------------------------------- */ -int colvarproxy_lammps::replica_comm_recv(char* msg_data, - int buf_len, int src_rep) +int colvarproxy_lammps::replica_comm_recv(char* msg_data, int buf_len, int src_rep) { MPI_Status status; int retval; @@ -342,9 +301,9 @@ int colvarproxy_lammps::replica_comm_recv(char* msg_data, return retval; } +/* ---------------------------------------------------------------------- */ -int colvarproxy_lammps::replica_comm_send(char* msg_data, - int msg_len, int dest_rep) +int colvarproxy_lammps::replica_comm_send(char* msg_data, int msg_len, int dest_rep) { int retval; retval = MPI_Send(msg_data,msg_len,MPI_CHAR,dest_rep,0,inter_comm); @@ -354,26 +313,26 @@ int colvarproxy_lammps::replica_comm_send(char* msg_data, return retval; } - +/* ---------------------------------------------------------------------- */ int colvarproxy_lammps::check_atom_id(int atom_number) { int const aid = atom_number; if (cvm::debug()) - log("Adding atom "+cvm::to_str(atom_number)+ - " for collective variables calculation.\n"); + log("Adding atom " + cvm::to_str(atom_number) + " for collective variables calculation.\n"); // TODO add upper boundary check? if ((aid < 0)) { - cvm::error("Error: invalid atom number specified, "+ - cvm::to_str(atom_number)+"\n", COLVARS_INPUT_ERROR); + cvm::error("Error: invalid atom number specified, " + + cvm::to_str(atom_number) + "\n", COLVARS_INPUT_ERROR); return COLVARS_INPUT_ERROR; } return aid; } +/* ---------------------------------------------------------------------- */ int colvarproxy_lammps::init_atom(int atom_number) { @@ -388,9 +347,7 @@ int colvarproxy_lammps::init_atom(int atom_number) } aid = check_atom_id(atom_number); - if (aid < 0) { - return aid; - } + if (aid < 0) return aid; int const index = colvarproxy::add_atom_slot(aid); // add entries for the LAMMPS-specific fields @@ -398,4 +355,3 @@ int colvarproxy_lammps::init_atom(int atom_number) return index; } - diff --git a/src/COLVARS/colvarproxy_lammps.h b/src/COLVARS/colvarproxy_lammps.h index 0fc9f1ba12..d98be37b09 100644 --- a/src/COLVARS/colvarproxy_lammps.h +++ b/src/COLVARS/colvarproxy_lammps.h @@ -16,11 +16,15 @@ #include "colvarproxy.h" #include "colvartypes.h" -#include "domain.h" // IWYU pragma: keep -#include "force.h" // IWYU pragma: keep -#include "lammps.h" // IWYU pragma: keep +#include + #include "random_park.h" -#include "update.h" // IWYU pragma: keep + +// forward declarations + +namespace LAMMPS_NS { +class LAMMPS; +} // namespace LAMMPS_NS /// \brief Communication between colvars and LAMMPS /// (implementation of \link colvarproxy \endlink) @@ -33,9 +37,8 @@ class colvarproxy_lammps : public colvarproxy { LAMMPS_NS::RanPark *_random; // state of LAMMPS properties - double my_timestep, my_angstrom; double bias_energy; - int previous_step; + cvm::step_number previous_step; bool first_timestep; bool do_exit; @@ -47,20 +50,27 @@ class colvarproxy_lammps : public colvarproxy { public: friend class cvm::atom; - colvarproxy_lammps(LAMMPS_NS::LAMMPS *lmp, const char *, const char *, const int, const double, - MPI_Comm); + + colvarproxy_lammps(LAMMPS_NS::LAMMPS *lmp); ~colvarproxy_lammps() override; + void init(); + + /// Set the internal seed used by \link rand_gaussian() \endlink + void set_random_seed(int seed); + + /// Set the multiple replicas communicator + void set_replicas_communicator(MPI_Comm root2root); + int setup() override; // disable default and copy constructor private: - colvarproxy_lammps(){}; - colvarproxy_lammps(const colvarproxy_lammps &){}; + colvarproxy_lammps() {}; + colvarproxy_lammps(const colvarproxy_lammps &) {}; // methods for lammps to move data or trigger actions in the proxy public: - bool total_forces_enabled() const override { return total_force_requested; }; bool total_forces_same_step() const override { return true; }; bool want_exit() const { return do_exit; }; @@ -68,28 +78,14 @@ class colvarproxy_lammps : public colvarproxy { // perform colvars computation. returns biasing energy double compute(); - // dump status to string - void serialize_status(std::string &); - - // set status from string - bool deserialize_status(std::string &); - - // read additional config from file - int add_config_file(char const *config_filename); - - // read additional config from string - int add_config_string(const std::string &config); - - // load a state file - int read_state_file(char const *state_filename); - // Request to set the units used internally by Colvars int set_unit_system(std::string const &units_in, bool check_only) override; - inline cvm::real dt() override - { - return my_timestep; - }; // return _lmp->update->dt * _lmp->force->femtosecond; }; + /// Convert a command-line argument to string + char const *script_obj_to_str(unsigned char *obj); + + /// Convert a command-line argument to a vector of strings + std::vector script_obj_to_str_vector(unsigned char *obj); void add_energy(cvm::real energy) override { bias_energy += energy; }; void request_total_force(bool yesno) override { total_force_requested = yesno; }; @@ -97,7 +93,8 @@ class colvarproxy_lammps : public colvarproxy { void log(std::string const &message) override; void error(std::string const &message) override; - cvm::rvector position_distance(cvm::atom_pos const &pos1, cvm::atom_pos const &pos2) const override; + cvm::rvector position_distance(cvm::atom_pos const &pos1, + cvm::atom_pos const &pos2) const override; cvm::real rand_gaussian(void) override { return _random->gaussian(); }; diff --git a/src/COLVARS/colvarproxy_lammps_version.h b/src/COLVARS/colvarproxy_lammps_version.h index 4228740554..5901044b1e 100644 --- a/src/COLVARS/colvarproxy_lammps_version.h +++ b/src/COLVARS/colvarproxy_lammps_version.h @@ -1,3 +1,3 @@ #ifndef COLVARPROXY_VERSION -#define COLVARPROXY_VERSION "2023-04-12" +#define COLVARPROXY_VERSION "2024-07-05" #endif diff --git a/src/COLVARS/fix_colvars.cpp b/src/COLVARS/fix_colvars.cpp index 0b496ee71b..ecfec3e46c 100644 --- a/src/COLVARS/fix_colvars.cpp +++ b/src/COLVARS/fix_colvars.cpp @@ -23,235 +23,45 @@ /* ---------------------------------------------------------------------- Contributing author: Axel Kohlmeyer (Temple U) + Currently maintained by: Giacomo Fiorin (NIH) ------------------------------------------------------------------------- */ #include "fix_colvars.h" +#include "inthash.h" #include "atom.h" #include "citeme.h" #include "comm.h" #include "domain.h" #include "error.h" +#include "input.h" #include "memory.h" #include "modify.h" +#include "output.h" #include "respa.h" #include "universe.h" #include "update.h" -#include -#include - -#include "colvarproxy_lammps.h" #include "colvarmodule.h" - +#include "colvarproxy.h" +#include "colvarproxy_lammps.h" +#include "colvars_memstream.h" +#include "colvarscript.h" /* struct for packed data communication of coordinates and forces. */ struct LAMMPS_NS::commdata { - int tag,type; - double x,y,z,m,q; + int tag, type; + double x, y, z, m, q; }; -inline std::ostream & operator<< (std::ostream &out, const LAMMPS_NS::commdata &cd) -{ - out << " (" << cd.tag << "/" << cd.type << ": " - << cd.x << ", " << cd.y << ", " << cd.z << ") "; - return out; -} - -/* re-usable integer hash table code with static linkage. */ - -/** hash table top level data structure */ -typedef struct inthash_t { - struct inthash_node_t **bucket; /* array of hash nodes */ - int size; /* size of the array */ - int entries; /* number of entries in table */ - int downshift; /* shift cound, used in hash function */ - int mask; /* used to select bits for hashing */ -} inthash_t; - -/** hash table node data structure */ -typedef struct inthash_node_t { - int data; /* data in hash node */ - int key; /* key for hash lookup */ - struct inthash_node_t *next; /* next node in hash chain */ -} inthash_node_t; - -#define HASH_FAIL -1 -#define HASH_LIMIT 0.5 - -/* initialize new hash table */ -static void inthash_init(inthash_t *tptr, int buckets); -/* lookup entry in hash table */ -static int inthash_lookup(void *tptr, int key); -/* insert an entry into hash table. */ -static int inthash_insert(inthash_t *tptr, int key, int data); -/* delete the hash table */ -static void inthash_destroy(inthash_t *tptr); - -/************************************************************************ - * integer hash code: - ************************************************************************/ - -/* inthash() - Hash function returns a hash number for a given key. - * tptr: Pointer to a hash table, key: The key to create a hash number for */ -static int inthash(const inthash_t *tptr, int key) { - int hashvalue; - - hashvalue = (((key*1103515249)>>tptr->downshift) & tptr->mask); - if (hashvalue < 0) { - hashvalue = 0; - } - - return hashvalue; -} - -/* - * rebuild_table_int() - Create new hash table when old one fills up. - * - * tptr: Pointer to a hash table - */ -static void rebuild_table_int(inthash_t *tptr) { - inthash_node_t **old_bucket, *old_hash, *tmp; - int old_size, h, i; - - old_bucket=tptr->bucket; - old_size=tptr->size; - - /* create a new table and rehash old buckets */ - inthash_init(tptr, old_size<<1); - for (i=0; inext; - h=inthash(tptr, tmp->key); - tmp->next=tptr->bucket[h]; - tptr->bucket[h]=tmp; - tptr->entries++; - } /* while */ - } /* for */ - - /* free memory used by old table */ - free(old_bucket); -} - -/* - * inthash_init() - Initialize a new hash table. - * - * tptr: Pointer to the hash table to initialize - * buckets: The number of initial buckets to create - */ -void inthash_init(inthash_t *tptr, int buckets) { - - /* make sure we allocate something */ - if (buckets==0) - buckets=16; - - /* initialize the table */ - tptr->entries=0; - tptr->size=2; - tptr->mask=1; - tptr->downshift=29; - - /* ensure buckets is a power of 2 */ - while (tptr->sizesize<<=1; - tptr->mask=(tptr->mask<<1)+1; - tptr->downshift--; - } /* while */ - - /* allocate memory for table */ - tptr->bucket=(inthash_node_t **) calloc(tptr->size, sizeof(inthash_node_t *)); -} - -/* - * inthash_lookup() - Lookup an entry in the hash table and return a pointer to - * it or HASH_FAIL if it wasn't found. - * - * tptr: Pointer to the hash table - * key: The key to lookup - */ -int inthash_lookup(void *ptr, int key) { - const inthash_t *tptr = (const inthash_t *) ptr; - int h; - inthash_node_t *node; - - - /* find the entry in the hash table */ - h=inthash(tptr, key); - for (node=tptr->bucket[h]; node!=nullptr; node=node->next) { - if (node->key == key) - break; - } - - /* return the entry if it exists, or HASH_FAIL */ - return(node ? node->data : HASH_FAIL); -} - -/* - * inthash_insert() - Insert an entry into the hash table. If the entry already - * exists return a pointer to it, otherwise return HASH_FAIL. - * - * tptr: A pointer to the hash table - * key: The key to insert into the hash table - * data: A pointer to the data to insert into the hash table - */ -int inthash_insert(inthash_t *tptr, int key, int data) { - int tmp; - inthash_node_t *node; - int h; - - /* check to see if the entry exists */ - if ((tmp=inthash_lookup(tptr, key)) != HASH_FAIL) - return(tmp); - - /* expand the table if needed */ - while (tptr->entries>=HASH_LIMIT*tptr->size) - rebuild_table_int(tptr); - - /* insert the new entry */ - h=inthash(tptr, key); - node=(struct inthash_node_t *) malloc(sizeof(inthash_node_t)); - node->data=data; - node->key=key; - node->next=tptr->bucket[h]; - tptr->bucket[h]=node; - tptr->entries++; - - return HASH_FAIL; -} - -/* - * inthash_destroy() - Delete the entire table, and all remaining entries. - * - */ -void inthash_destroy(inthash_t *tptr) { - inthash_node_t *node, *last; - int i; - - for (i=0; isize; i++) { - node = tptr->bucket[i]; - while (node != nullptr) { - last = node; - node = node->next; - free(last); - } - } - - /* free the entire array of buckets */ - if (tptr->bucket != nullptr) { - free(tptr->bucket); - memset(tptr, 0, sizeof(inthash_t)); - } -} - /***************************************************************/ using namespace LAMMPS_NS; using namespace FixConst; +using namespace IntHash_NS; // initialize static class members -int FixColvars::instances=0; +int FixColvars::instances = 0; /*************************************************************** create class and parse arguments in LAMMPS script. Syntax: @@ -285,74 +95,138 @@ FixColvars::FixColvars(LAMMPS *lmp, int narg, char **arg) : restart_global = 1; energy_global_flag = 1; - me = comm->me; root2root = MPI_COMM_NULL; + proxy = nullptr; + + if (strcmp(arg[3], "none") == 0) { + conf_file = nullptr; + } else { + conf_file = utils::strdup(arg[3]); + } - conf_file = utils::strdup(arg[3]); rng_seed = 1966; unwrap_flag = 1; inp_name = nullptr; out_name = nullptr; - tmp_name = nullptr; - - /* parse optional arguments */ - int iarg = 4; - while (iarg < narg) { - // we have keyword/value pairs. check if value is missing - if (iarg+1 == narg) - error->all(FLERR,"Missing argument to keyword"); - - if (0 == strcmp(arg[iarg], "input")) { - inp_name = utils::strdup(arg[iarg+1]); - } else if (0 == strcmp(arg[iarg], "output")) { - out_name = utils::strdup(arg[iarg+1]); - } else if (0 == strcmp(arg[iarg], "seed")) { - rng_seed = utils::inumeric(FLERR,arg[iarg+1],false,lmp); - } else if (0 == strcmp(arg[iarg], "unwrap")) { - unwrap_flag = utils::logical(FLERR,arg[iarg+1],false,lmp); - } else if (0 == strcmp(arg[iarg], "tstat")) { - tmp_name = utils::strdup(arg[iarg+1]); - } else { - error->all(FLERR,"Unknown fix colvars parameter"); - } - ++iarg; ++iarg; - } - - if (!out_name) out_name = utils::strdup("out"); + tfix_name = nullptr; /* initialize various state variables. */ - tstat_fix = nullptr; energy = 0.0; nlevels_respa = 0; init_flag = 0; num_coords = 0; comm_buf = nullptr; + taglist = nullptr; force_buf = nullptr; - proxy = nullptr; idmap = nullptr; + script_args[0] = reinterpret_cast(utils::strdup("fix_modify")); + + parse_fix_arguments(narg, arg, true); + + if (!out_name) out_name = utils::strdup("out"); + + if (comm->me == 0) { +#ifdef LAMMPS_BIGBIG + utils::logmesg(lmp, "colvars: Warning: cannot handle atom ids > 2147483647\n"); +#endif + proxy = new colvarproxy_lammps(lmp); + proxy->init(); + proxy->set_random_seed(rng_seed); + proxy->set_target_temperature(t_target); + if (conf_file) { + proxy->add_config("configfile", conf_file); + } + } + /* storage required to communicate a single coordinate or force. */ size_one = sizeof(struct commdata); } -/********************************* - * Clean up on deleting the fix. * - *********************************/ + +int FixColvars::parse_fix_arguments(int narg, char **arg, bool fix_constructor) +{ + int const iarg_start = fix_constructor ? 4 : 0; + int iarg = iarg_start; + while (iarg < narg) { + + bool is_fix_keyword = false; + + if (0 == strcmp(arg[iarg], "input")) { + inp_name = utils::strdup(arg[iarg+1]); + // input prefix is set in FixColvars::setup() + is_fix_keyword = true; + } else if (0 == strcmp(arg[iarg], "output")) { + out_name = utils::strdup(arg[iarg+1]); + // output prefix is set in FixColvars::setup() + is_fix_keyword = true; + } else if (0 == strcmp(arg[iarg], "seed")) { + rng_seed = utils::inumeric(FLERR, arg[iarg+1], false, lmp); + is_fix_keyword = true; + } else if (0 == strcmp(arg[iarg], "unwrap")) { + unwrap_flag = utils::logical(FLERR, arg[iarg+1], false, lmp); + is_fix_keyword = true; + } else if (0 == strcmp(arg[iarg], "tstat")) { + tfix_name = utils::strdup(arg[iarg+1]); + if (comm->me == 0) set_thermostat_temperature(); + is_fix_keyword = true; + } + + if (is_fix_keyword) { + + // Valid LAMMPS fix keyword: raise error if it has no argument + if (iarg + 1 == narg) { + if (fix_constructor) { + error->all(FLERR, ("Missing argument to keyword \""+ + std::string(arg[iarg]) +"\"")); + } else { + // Error code consistent with Fix::modify_param() + return 0; + } + } + + } else { + + if (fix_constructor) { + error->all(FLERR, "Unrecognized fix colvars argument: please note that " + "Colvars script commands are not allowed until after the " + "fix is created"); + } else { + if (iarg > iarg_start) { + error->all(FLERR, + "Unrecognized fix colvars argument: please note that " + "you cannot combine fix colvars keywords and Colvars " + "script commands in the same line"); + } else { + // Return negative error code to try the Colvars script commands + return -1; + } + } + } + + iarg += 2; + } + + return iarg; +} + FixColvars::~FixColvars() { delete[] conf_file; delete[] inp_name; delete[] out_name; - delete[] tmp_name; + delete[] tfix_name; + delete[] script_args[0]; + memory->sfree(comm_buf); - if (proxy) { - delete proxy; - inthash_t *hashtable = (inthash_t *)idmap; - inthash_destroy(hashtable); - delete hashtable; + if (proxy) delete proxy; + + if (idmap) { + inthash_destroy(idmap); + delete idmap; } if (root2root != MPI_COMM_NULL) @@ -374,31 +248,21 @@ int FixColvars::setmask() return mask; } -/* ---------------------------------------------------------------------- */ - -// initial checks for colvars run. void FixColvars::init() { + const auto me = comm->me; if (atom->tag_enable == 0) - error->all(FLERR,"Cannot use fix colvars without atom IDs"); + error->all(FLERR, "Cannot use fix colvars without atom IDs"); if (atom->map_style == Atom::MAP_NONE) - error->all(FLERR,"Fix colvars requires an atom map, see atom_modify"); + error->all(FLERR, "Fix colvars requires an atom map, see atom_modify"); if ((me == 0) && (update->whichflag == 2)) - error->warning(FLERR,"Using fix colvars with minimization"); + error->warning(FLERR, "Using fix colvars with minimization"); - if (utils::strmatch(update->integrate_style,"^respa")) + if (utils::strmatch(update->integrate_style, "^respa")) nlevels_respa = ((Respa *) update->integrate)->nlevels; -} - - -/* ---------------------------------------------------------------------- */ - -void FixColvars::one_time_init() -{ - int i,tmp; if (init_flag) return; init_flag = 1; @@ -406,115 +270,202 @@ void FixColvars::one_time_init() if (universe->nworlds > 1) { // create inter root communicator int color = 1; - if (me == 0) color = 0; - MPI_Comm_split(universe->uworld,color,universe->iworld,&root2root); + if (me == 0) { + color = 0; + } + MPI_Comm_split(universe->uworld, color, universe->iworld, &root2root); + if (me == 0) { + proxy->set_replicas_communicator(root2root); + } } +} - // create and initialize the colvars proxy - if (me == 0) { - utils::logmesg(lmp,"colvars: Creating proxy instance\n"); - -#ifdef LAMMPS_BIGBIG - utils::logmesg(lmp,"colvars: cannot handle atom ids > 2147483647\n"); -#endif - - if (inp_name) { - if (strcmp(inp_name,"NULL") == 0) { - delete[] inp_name; - inp_name = nullptr; +void FixColvars::set_thermostat_temperature() +{ + if (comm->me == 0) { + if (tfix_name) { + if (strcmp(tfix_name, "NULL") != 0) { + Fix *tstat_fix = modify->get_fix_by_id(tfix_name); + if (!tstat_fix) { + error->one(FLERR, "Could not find thermostat fix ID {}", tfix_name); + } + int tmp = 0; + double *tt = reinterpret_cast(tstat_fix->extract("t_target", tmp)); + if (tt) { + t_target = *tt; + } else { + error->one(FLERR, "Fix ID {} is not a thermostat fix", tfix_name); + } } } - - // try to determine thermostat target temperature - double t_target = 0.0; - if (tmp_name) { - if (strcmp(tmp_name,"NULL") == 0) { - tstat_fix = nullptr; - } else { - tstat_fix = modify->get_fix_by_id(tmp_name); - if (!tstat_fix) error->one(FLERR, "Could not find thermostat fix ID {}", tmp_name); - double *tt = (double*) tstat_fix->extract("t_target", tmp); - if (tt) t_target = *tt; - else error->one(FLERR, "Fix ID {} is not a thermostat fix", tmp_name); - } - } - - proxy = new colvarproxy_lammps(lmp,inp_name,out_name,rng_seed,t_target,root2root); - proxy->init(); - proxy->add_config("configfile", conf_file); - proxy->parse_module_config(); - - num_coords = (proxy->modify_atom_positions()->size()); } +} - // send the list of all colvar atom IDs to all nodes. - // also initialize and build hashtable on master. +/* ---------------------------------------------------------------------- */ - MPI_Bcast(&num_coords, 1, MPI_INT, 0, world); - memory->create(taglist,num_coords,"colvars:taglist"); - memory->create(force_buf,3*num_coords,"colvars:force_buf"); +void FixColvars::init_taglist() +{ + int new_taglist_size = -1; + const auto me = comm->me; if (me == 0) { + + // Number of atoms requested by Colvars + num_coords = static_cast(proxy->modify_atom_positions()->size()); + + if (proxy->modified_atom_list()) { + new_taglist_size = num_coords; + proxy->reset_modified_atom_list(); + } else { + new_taglist_size = -1; + } + } + + // Broadcast number of colvar atoms; negative means no updates + MPI_Bcast(&new_taglist_size, 1, MPI_INT, 0, world); + + if (new_taglist_size < 0) { + return; + } + + num_coords = new_taglist_size; + + if (taglist) { + memory->destroy(taglist); + memory->destroy(force_buf); + } + memory->create(taglist, num_coords, "colvars:taglist"); + memory->create(force_buf, 3*num_coords, "colvars:force_buf"); + + if (me == 0) { + + // Initialize and build hashtable on MPI rank 0 + std::vector const &tl = *(proxy->get_atom_ids()); - inthash_t *hashtable=new inthash_t; - inthash_init(hashtable, num_coords); - idmap = (void *)hashtable; - for (i=0; i < num_coords; ++i) { + if (idmap) { + delete idmap; + idmap = nullptr; + } + + idmap = new inthash_t; + inthash_init(idmap, num_coords); + for (int i = 0; i < num_coords; ++i) { taglist[i] = tl[i]; - inthash_insert(hashtable, tl[i], i); + inthash_insert(idmap, tl[i], i); } } + + // Broadcast colvar atom ID list MPI_Bcast(taglist, num_coords, MPI_LMP_TAGINT, 0, world); } -/* ---------------------------------------------------------------------- */ int FixColvars::modify_param(int narg, char **arg) { - if (strcmp(arg[0],"configfile") == 0) { - if (narg < 2) error->all(FLERR,"Illegal fix_modify command"); - if (me == 0) { - if (! proxy) - error->one(FLERR,"Cannot use fix_modify before initialization"); - return proxy->add_config_file(arg[1]) == COLVARS_OK ? 2 : 0; - } - return 2; - } else if (strcmp(arg[0],"config") == 0) { - if (narg < 2) error->all(FLERR,"Illegal fix_modify command"); - if (me == 0) { - if (! proxy) - error->one(FLERR,"Cannot use fix_modify before initialization"); - std::string const conf(arg[1]); - return proxy->add_config_string(conf) == COLVARS_OK ? 2 : 0; - } - return 2; - } else if (strcmp(arg[0],"load") == 0) { - if (narg < 2) error->all(FLERR,"Illegal fix_modify command"); - if (me == 0) { - if (! proxy) - error->one(FLERR,"Cannot use fix_modify before initialization"); - return proxy->read_state_file(arg[1]) == COLVARS_OK ? 2 : 0; - } + if (narg >= 100) { + error->one(FLERR, "Too many arguments for fix_modify command"); return 2; } + + // Parse arguments to fix colvars + int return_code = parse_fix_arguments(narg, arg, false); + + if (return_code >= 0) { + // A fix colvars argument was detected, return directly + return return_code; + } + + // Any unknown arguments will go through the Colvars scripting interface + if (comm->me == 0) { + int error_code = COLVARSCRIPT_OK; + colvarscript *script = proxy->script; + script->set_cmdline_main_cmd("fix_modify " + std::string(id)); + + for (int i = 0; i < narg; i++) { + + // Substitute LAMMPS variables + + char *new_arg = arg[i]; + int ncopy = strlen(new_arg) + 1; + int nwork = ncopy; + auto *copy = (char *) memory->smalloc(ncopy * sizeof(char), "fix/colvar:copy"); + auto *work = (char *) memory->smalloc(ncopy * sizeof(char), "fix/colvar:work"); + strncpy(copy, new_arg, ncopy); + lmp->input->substitute(copy,work,ncopy,nwork,0); + memory->sfree(work); + new_arg = copy; + + script_args[i+1] = reinterpret_cast(new_arg); + } + + // Run the command through Colvars + error_code |= script->run(narg+1, script_args); + + std::string const result = proxy->get_error_msgs() + script->str_result(); + if (result.size()) utils::logmesg(lmp, result); + + // free allocated memory + for (int i = 0; i < narg; i++) memory->sfree(script_args[i+1]); + return (error_code == COLVARSCRIPT_OK) ? narg : 0; + + } else { + + // Return without error, don't block Fix::modify_params() + return narg; + } + return 0; } -/* ---------------------------------------------------------------------- */ + +void FixColvars::setup_io() +{ + if (comm->me == 0) { + proxy->set_input_prefix(std::string(inp_name ? inp_name : "")); + if (proxy->input_prefix().size() > 0) { + proxy->log("Will read input state from file \""+ + proxy->input_prefix()+".colvars.state\""); + } + + proxy->set_output_prefix(std::string(out_name ? out_name : "")); + + // Try to extract a restart prefix from a potential restart command + LAMMPS_NS::Output *outp = lmp->output; + if ((outp->restart_every_single > 0) && + (outp->restart1 != nullptr)) { + + proxy->set_default_restart_frequency(outp->restart_every_single); + proxy->set_restart_output_prefix(std::string(outp->restart1)); + + } else if ((outp->restart_every_double > 0) && + (outp->restart2a != nullptr)) { + + proxy->set_default_restart_frequency(outp->restart_every_double); + proxy->set_restart_output_prefix(std::string(outp->restart2a)); + } + } +} + void FixColvars::setup(int vflag) { const tagint * const tag = atom->tag; const int * const type = atom->type; int i,nme,tmp,ndata; - int nlocal = atom->nlocal; + const auto nlocal = atom->nlocal; + const auto me = comm->me; MPI_Status status; MPI_Request request; - one_time_init(); + if (me == 0) { + setup_io(); + proxy->parse_module_config(); + } + + init_taglist(); // determine size of comm buffer nme=0; @@ -671,23 +622,12 @@ void FixColvars::setup(int vflag) * Send coodinates and add colvar forces to atoms. */ void FixColvars::post_force(int /*vflag*/) { + const auto me = comm->me; + // some housekeeping: update status of the proxy as needed. if (me == 0) { if (proxy->want_exit()) error->one(FLERR,"Run aborted on request from colvars module.\n"); - - if (!tstat_fix) { - proxy->set_target_temperature(0.0); - } else { - int tmp; - // get thermostat target temperature from corresponding fix, - // if the fix supports extraction. - double *tt = (double *) tstat_fix->extract("t_target", tmp); - if (tt) - proxy->set_target_temperature(*tt); - else - proxy->set_target_temperature(0.0); - } } const tagint * const tag = atom->tag; @@ -873,7 +813,7 @@ void FixColvars::end_of_step() MPI_Request request; int tmp, ndata; - if (me == 0) { + if (comm->me == 0) { // store old force data std::vector &of = *(proxy->modify_atom_total_forces()); @@ -934,14 +874,18 @@ void FixColvars::end_of_step() void FixColvars::write_restart(FILE *fp) { - if (me == 0) { - std::string rest_text; - proxy->serialize_status(rest_text); - // TODO call write_output_files() - const char *cvm_state = rest_text.c_str(); - int len = strlen(cvm_state) + 1; // need to include terminating null byte. - fwrite(&len,sizeof(int),1,fp); - fwrite(cvm_state,1,len,fp); + if (comm->me == 0) { + cvm::memory_stream ms; + if (proxy->colvars->write_state(ms)) { + int len_cv_state = ms.length(); + // Will write the buffer's length twice, so that the fix can read it later, too + int len = len_cv_state + sizeof(int); + fwrite(&len, sizeof(int), 1, fp); + fwrite(&len, sizeof(int), 1, fp); + fwrite(ms.output_buffer(), 1, len_cv_state, fp); + } else { + error->all(FLERR, "Failed to write Colvars state to binary file"); + } } } @@ -949,11 +893,13 @@ void FixColvars::write_restart(FILE *fp) void FixColvars::restart(char *buf) { - one_time_init(); - - if (me == 0) { - std::string rest_text(buf); - proxy->deserialize_status(rest_text); + if (comm->me == 0) { + // Read the buffer's length, then load it into Colvars starting right past that location + int length = *(reinterpret_cast(buf)); + unsigned char *colvars_state_buffer = reinterpret_cast(buf + sizeof(int)); + if (proxy->colvars->set_input_state_buffer(length, colvars_state_buffer) != COLVARS_OK) { + error->all(FLERR, "Failed to set the Colvars input state from string buffer"); + } } } @@ -961,7 +907,7 @@ void FixColvars::restart(char *buf) void FixColvars::post_run() { - if (me == 0) { + if (comm->me == 0) { proxy->post_run(); if (lmp->citeme) { lmp->citeme->add(proxy->colvars->feature_report(1)); diff --git a/src/COLVARS/fix_colvars.h b/src/COLVARS/fix_colvars.h index 45fe09af78..c2f8802957 100644 --- a/src/COLVARS/fix_colvars.h +++ b/src/COLVARS/fix_colvars.h @@ -21,7 +21,8 @@ ------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- - Contributing author: Axel Kohlmeyer (Temple U) + Contributing author: Axel Kohlmeyer (Temple U) + Currently maintained by: Giacomo Fiorin (NIH) ------------------------------------------------------------------------- */ #ifdef FIX_CLASS @@ -35,6 +36,10 @@ FixStyle(colvars,FixColvars); #include "fix.h" +// Forward declarations +namespace IntHash_NS { +class inthash_t; +} class colvarproxy_lammps; namespace LAMMPS_NS { @@ -66,12 +71,11 @@ class FixColvars : public Fix { char *conf_file; // name of colvars config file char *inp_name; // name/prefix of colvars restart file char *out_name; // prefix string for all output files - char *tmp_name; // name of thermostat fix. + char *tfix_name; // name of thermostat fix. int rng_seed; // seed to initialize random number generator - Fix *tstat_fix; // pointer to thermostat fix + double t_target = 0.0; // thermostat target temperature double energy; // biasing energy of the fix - int me; // my MPI rank in this "world". int num_coords; // total number of atoms controlled by this fix tagint *taglist; // list of all atom IDs referenced by colvars. @@ -80,8 +84,10 @@ class FixColvars : public Fix { struct commdata *comm_buf; // communication buffer double *force_buf; // communication buffer - void *idmap; // hash for mapping atom indices to consistent order. - int *rev_idmap; // list of the hash keys for reverse mapping. + /// Arguments passed from fix_modify to the Colvars script interface + unsigned char *script_args[100]; + + IntHash_NS::inthash_t *idmap; // hash for mapping atom indices to consistent order. int nlevels_respa; // flag to determine respa levels. int store_forces; // flag to determine whether to store total forces @@ -90,7 +96,20 @@ class FixColvars : public Fix { static int instances; // count fix instances, since colvars currently // only supports one instance at a time MPI_Comm root2root; // inter-root communicator for multi-replica support - void one_time_init(); // one time initialization + + void init_taglist(); // initialize list of atom tags and hash table + + /// Share with Colvars the thermostat fix named by tfix_name + void set_thermostat_temperature(); + + /// Tell Colvars where to get its state from and where to save it + void setup_io(); + + /// Parse LAMMPS-specific arguments to either fix or fix_modify + /// \param narg Number of arguments + /// \param arg Array of strings + /// \param fix_constructor If false, try Colvars commands if LAMMPS ones fail + int parse_fix_arguments(int narg, char **arg, bool fix_constructor = true); }; } // namespace LAMMPS_NS diff --git a/src/COLVARS/inthash.cpp b/src/COLVARS/inthash.cpp new file mode 100644 index 0000000000..0ae349f839 --- /dev/null +++ b/src/COLVARS/inthash.cpp @@ -0,0 +1,169 @@ +// clang-format off +// -*- c++ -*- + +#include +#include +#include + +#include "inthash.h" + + +namespace IntHash_NS { + +/************************************************************************ + * integer hash code: + ************************************************************************/ + +/* inthash() - Hash function returns a hash number for a given key. + * tptr: Pointer to a hash table, key: The key to create a hash number for */ +int inthash(const inthash_t *tptr, int key) { + int hashvalue; + + hashvalue = (((key*1103515249)>>tptr->downshift) & tptr->mask); + if (hashvalue < 0) { + hashvalue = 0; + } + + return hashvalue; +} + +/* + * rebuild_table_int() - Create new hash table when old one fills up. + * + * tptr: Pointer to a hash table + */ +void rebuild_table_int(inthash_t *tptr) { + inthash_node_t **old_bucket, *old_hash, *tmp; + int old_size, h, i; + + old_bucket=tptr->bucket; + old_size=tptr->size; + + /* create a new table and rehash old buckets */ + inthash_init(tptr, old_size<<1); + for (i=0; inext; + h=inthash(tptr, tmp->key); + tmp->next=tptr->bucket[h]; + tptr->bucket[h]=tmp; + tptr->entries++; + } /* while */ + } /* for */ + + /* free memory used by old table */ + free(old_bucket); +} + +/* + * inthash_init() - Initialize a new hash table. + * + * tptr: Pointer to the hash table to initialize + * buckets: The number of initial buckets to create + */ +void inthash_init(inthash_t *tptr, int buckets) { + + /* make sure we allocate something */ + if (buckets==0) + buckets=16; + + /* initialize the table */ + tptr->entries=0; + tptr->size=2; + tptr->mask=1; + tptr->downshift=29; + + /* ensure buckets is a power of 2 */ + while (tptr->sizesize<<=1; + tptr->mask=(tptr->mask<<1)+1; + tptr->downshift--; + } /* while */ + + /* allocate memory for table */ + tptr->bucket=(inthash_node_t **) calloc(tptr->size, sizeof(inthash_node_t *)); +} + +/* + * inthash_lookup() - Lookup an entry in the hash table and return a pointer to + * it or HASH_FAIL if it wasn't found. + * + * tptr: Pointer to the hash table + * key: The key to lookup + */ +int inthash_lookup(inthash_t *tptr, int key) { + int h; + inthash_node_t *node; + + + /* find the entry in the hash table */ + h=inthash(tptr, key); + for (node=tptr->bucket[h]; node!=nullptr; node=node->next) { + if (node->key == key) + break; + } + + /* return the entry if it exists, or HASH_FAIL */ + return(node ? node->data : HASH_FAIL); +} + +/* + * inthash_insert() - Insert an entry into the hash table. If the entry already + * exists return a pointer to it, otherwise return HASH_FAIL. + * + * tptr: A pointer to the hash table + * key: The key to insert into the hash table + * data: A pointer to the data to insert into the hash table + */ +int inthash_insert(inthash_t *tptr, int key, int data) { + int tmp; + inthash_node_t *node; + int h; + + /* check to see if the entry exists */ + if ((tmp=inthash_lookup(tptr, key)) != HASH_FAIL) + return(tmp); + + /* expand the table if needed */ + while (tptr->entries>=HASH_LIMIT*tptr->size) + rebuild_table_int(tptr); + + /* insert the new entry */ + h=inthash(tptr, key); + node=(struct inthash_node_t *) malloc(sizeof(inthash_node_t)); + node->data=data; + node->key=key; + node->next=tptr->bucket[h]; + tptr->bucket[h]=node; + tptr->entries++; + + return HASH_FAIL; +} + +/* + * inthash_destroy() - Delete the entire table, and all remaining entries. + * + */ +void inthash_destroy(inthash_t *tptr) { + inthash_node_t *node, *last; + int i; + + for (i=0; isize; i++) { + node = tptr->bucket[i]; + while (node != nullptr) { + last = node; + node = node->next; + free(last); + } + } + + /* free the entire array of buckets */ + if (tptr->bucket != nullptr) { + free(tptr->bucket); + memset(tptr, 0, sizeof(inthash_t)); + } +} + +} diff --git a/src/COLVARS/inthash.h b/src/COLVARS/inthash.h new file mode 100644 index 0000000000..6427f0acd9 --- /dev/null +++ b/src/COLVARS/inthash.h @@ -0,0 +1,38 @@ +#ifndef INTHASH_H +#define INTHASH_H + +namespace IntHash_NS { + + /* re-usable integer hash table code. */ + + /** hash table top level data structure */ + typedef struct inthash_t { + struct inthash_node_t **bucket; /* array of hash nodes */ + int size; /* size of the array */ + int entries; /* number of entries in table */ + int downshift; /* shift cound, used in hash function */ + int mask; /* used to select bits for hashing */ + } inthash_t; + + /** hash table node data structure */ + typedef struct inthash_node_t { + int data; /* data in hash node */ + int key; /* key for hash lookup */ + struct inthash_node_t *next; /* next node in hash chain */ + } inthash_node_t; + +#define HASH_FAIL -1 +#define HASH_LIMIT 0.5 + + /* initialize new hash table */ + void inthash_init(inthash_t *tptr, int buckets); + /* lookup entry in hash table */ + int inthash_lookup(inthash_t *tptr, int key); + /* insert an entry into hash table. */ + int inthash_insert(inthash_t *tptr, int key, int data); + /* delete the hash table */ + void inthash_destroy(inthash_t *tptr); + +} // namespace IntHash_NS + +#endif diff --git a/src/COMPRESS/dump_atom_gz.cpp b/src/COMPRESS/dump_atom_gz.cpp index d4fb01a3e6..e6d8d9534b 100644 --- a/src/COMPRESS/dump_atom_gz.cpp +++ b/src/COMPRESS/dump_atom_gz.cpp @@ -106,7 +106,7 @@ void DumpAtomGZ::write_header(bigint ndump) } header += fmt::format("ITEM: ATOMS {}\n", columns); - writer.write(header.c_str(), header.length()); + (void) writer.write(header.c_str(), header.length()); } } @@ -115,7 +115,7 @@ void DumpAtomGZ::write_header(bigint ndump) void DumpAtomGZ::write_data(int n, double *mybuf) { if (buffer_flag == 1) { - writer.write(mybuf, n); + (void) writer.write(mybuf, n); } else { constexpr size_t VBUFFER_SIZE = 256; char vbuffer[VBUFFER_SIZE]; @@ -133,7 +133,7 @@ void DumpAtomGZ::write_data(int n, double *mybuf) static_cast(mybuf[m + 1]), mybuf[m + 2], mybuf[m + 3], mybuf[m + 4]); } if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump atom/gz output"); } diff --git a/src/COMPRESS/dump_atom_zstd.cpp b/src/COMPRESS/dump_atom_zstd.cpp index a1a098eb19..55800a82b6 100644 --- a/src/COMPRESS/dump_atom_zstd.cpp +++ b/src/COMPRESS/dump_atom_zstd.cpp @@ -112,7 +112,7 @@ void DumpAtomZstd::write_header(bigint ndump) } header += fmt::format("ITEM: ATOMS {}\n", columns); - writer.write(header.c_str(), header.length()); + (void) writer.write(header.c_str(), header.length()); } } @@ -121,7 +121,7 @@ void DumpAtomZstd::write_header(bigint ndump) void DumpAtomZstd::write_data(int n, double *mybuf) { if (buffer_flag == 1) { - writer.write(mybuf, n); + (void) writer.write(mybuf, n); } else { constexpr size_t VBUFFER_SIZE = 256; char vbuffer[VBUFFER_SIZE]; @@ -139,7 +139,7 @@ void DumpAtomZstd::write_data(int n, double *mybuf) static_cast(mybuf[m + 1]), mybuf[m + 2], mybuf[m + 3], mybuf[m + 4]); } if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump atom/gz output"); } diff --git a/src/COMPRESS/dump_cfg_gz.cpp b/src/COMPRESS/dump_cfg_gz.cpp index e4d5ae76cc..04b75a98b7 100644 --- a/src/COMPRESS/dump_cfg_gz.cpp +++ b/src/COMPRESS/dump_cfg_gz.cpp @@ -111,7 +111,7 @@ void DumpCFGGZ::write_header(bigint n) header += fmt::format("entry_count = {}\n", nfield - 2); for (int i = 0; i < nfield - 5; i++) header += fmt::format("auxiliary[{}] = {}\n", i, auxname[i]); - writer.write(header.c_str(), header.length()); + (void) writer.write(header.c_str(), header.length()); } /* ---------------------------------------------------------------------- */ @@ -119,7 +119,7 @@ void DumpCFGGZ::write_header(bigint n) void DumpCFGGZ::write_data(int n, double *mybuf) { if (buffer_flag) { - writer.write(mybuf, n); + (void) writer.write(mybuf, n); } else { constexpr size_t VBUFFER_SIZE = 256; char vbuffer[VBUFFER_SIZE]; @@ -143,13 +143,13 @@ void DumpCFGGZ::write_data(int n, double *mybuf) written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast(mybuf[m])); } if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump cfg/gz output"); } m++; } - writer.write("\n", 1); + (void) writer.write("\n", 1); } } else if (unwrapflag == 1) { int m = 0; @@ -174,13 +174,13 @@ void DumpCFGGZ::write_data(int n, double *mybuf) written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast(mybuf[m])); } if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump cfg/gz output"); } m++; } - writer.write("\n", 1); + (void) writer.write("\n", 1); } } } diff --git a/src/COMPRESS/dump_cfg_zstd.cpp b/src/COMPRESS/dump_cfg_zstd.cpp index c52f9e0942..62d6c6bf4b 100644 --- a/src/COMPRESS/dump_cfg_zstd.cpp +++ b/src/COMPRESS/dump_cfg_zstd.cpp @@ -119,7 +119,7 @@ void DumpCFGZstd::write_header(bigint n) header += fmt::format("entry_count = {}\n", nfield - 2); for (int i = 0; i < nfield - 5; i++) header += fmt::format("auxiliary[{}] = {}\n", i, auxname[i]); - writer.write(header.c_str(), header.length()); + (void) writer.write(header.c_str(), header.length()); } /* ---------------------------------------------------------------------- */ @@ -127,7 +127,7 @@ void DumpCFGZstd::write_header(bigint n) void DumpCFGZstd::write_data(int n, double *mybuf) { if (buffer_flag) { - writer.write(mybuf, n); + (void) writer.write(mybuf, n); } else { constexpr size_t VBUFFER_SIZE = 256; char vbuffer[VBUFFER_SIZE]; @@ -151,13 +151,13 @@ void DumpCFGZstd::write_data(int n, double *mybuf) written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast(mybuf[m])); } if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump cfg/gz output"); } m++; } - writer.write("\n", 1); + (void) writer.write("\n", 1); } } else if (unwrapflag == 1) { int m = 0; @@ -182,13 +182,13 @@ void DumpCFGZstd::write_data(int n, double *mybuf) written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast(mybuf[m])); } if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump cfg/gz output"); } m++; } - writer.write("\n", 1); + (void) writer.write("\n", 1); } } } diff --git a/src/COMPRESS/dump_custom_gz.cpp b/src/COMPRESS/dump_custom_gz.cpp index 3ff0124b24..35515d3f47 100644 --- a/src/COMPRESS/dump_custom_gz.cpp +++ b/src/COMPRESS/dump_custom_gz.cpp @@ -104,7 +104,7 @@ void DumpCustomGZ::write_header(bigint ndump) } header += fmt::format("ITEM: ATOMS {}\n", columns); - writer.write(header.c_str(), header.length()); + (void) writer.write(header.c_str(), header.length()); } } @@ -113,7 +113,7 @@ void DumpCustomGZ::write_header(bigint ndump) void DumpCustomGZ::write_data(int n, double *mybuf) { if (buffer_flag == 1) { - writer.write(mybuf, n); + (void) writer.write(mybuf, n); } else { constexpr size_t VBUFFER_SIZE = 256; char vbuffer[VBUFFER_SIZE]; @@ -132,13 +132,13 @@ void DumpCustomGZ::write_data(int n, double *mybuf) } if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump custom/gz output"); } m++; } - writer.write("\n", 1); + (void) writer.write("\n", 1); } } } diff --git a/src/COMPRESS/dump_custom_zstd.cpp b/src/COMPRESS/dump_custom_zstd.cpp index 10d6d3e440..a2c4ae448c 100644 --- a/src/COMPRESS/dump_custom_zstd.cpp +++ b/src/COMPRESS/dump_custom_zstd.cpp @@ -122,7 +122,7 @@ void DumpCustomZstd::write_header(bigint ndump) } header += fmt::format("ITEM: ATOMS {}\n", columns); - writer.write(header.c_str(), header.length()); + (void) writer.write(header.c_str(), header.length()); } } @@ -131,7 +131,7 @@ void DumpCustomZstd::write_header(bigint ndump) void DumpCustomZstd::write_data(int n, double *mybuf) { if (buffer_flag == 1) { - writer.write(mybuf, n); + (void) writer.write(mybuf, n); } else { constexpr size_t VBUFFER_SIZE = 256; char vbuffer[VBUFFER_SIZE]; @@ -150,13 +150,13 @@ void DumpCustomZstd::write_data(int n, double *mybuf) } if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump custom/gz output"); } m++; } - writer.write("\n", 1); + (void) writer.write("\n", 1); } } } diff --git a/src/COMPRESS/dump_local_gz.cpp b/src/COMPRESS/dump_local_gz.cpp index b39f6bc7ac..0a00c750fa 100644 --- a/src/COMPRESS/dump_local_gz.cpp +++ b/src/COMPRESS/dump_local_gz.cpp @@ -104,7 +104,7 @@ void DumpLocalGZ::write_header(bigint ndump) } header += fmt::format("ITEM: {} {}\n", label, columns); - writer.write(header.c_str(), header.length()); + (void) writer.write(header.c_str(), header.length()); } } @@ -113,7 +113,7 @@ void DumpLocalGZ::write_header(bigint ndump) void DumpLocalGZ::write_data(int n, double *mybuf) { if (buffer_flag == 1) { - writer.write(mybuf, sizeof(char) * n); + (void) writer.write(mybuf, sizeof(char) * n); } else { constexpr size_t VBUFFER_SIZE = 256; char vbuffer[VBUFFER_SIZE]; @@ -132,13 +132,13 @@ void DumpLocalGZ::write_data(int n, double *mybuf) } if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump local/gz output"); } m++; } - writer.write("\n", 1); + (void) writer.write("\n", 1); } } } diff --git a/src/COMPRESS/dump_local_zstd.cpp b/src/COMPRESS/dump_local_zstd.cpp index cb805750e1..66e9df03f8 100644 --- a/src/COMPRESS/dump_local_zstd.cpp +++ b/src/COMPRESS/dump_local_zstd.cpp @@ -112,7 +112,7 @@ void DumpLocalZstd::write_header(bigint ndump) } header += fmt::format("ITEM: {} {}\n", label, columns); - writer.write(header.c_str(), header.length()); + (void) writer.write(header.c_str(), header.length()); } } @@ -121,7 +121,7 @@ void DumpLocalZstd::write_header(bigint ndump) void DumpLocalZstd::write_data(int n, double *mybuf) { if (buffer_flag == 1) { - writer.write(mybuf, sizeof(char) * n); + (void) writer.write(mybuf, sizeof(char) * n); } else { constexpr size_t VBUFFER_SIZE = 256; char vbuffer[VBUFFER_SIZE]; @@ -140,13 +140,13 @@ void DumpLocalZstd::write_data(int n, double *mybuf) } if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump local/gz output"); } m++; } - writer.write("\n", 1); + (void) writer.write("\n", 1); } } } diff --git a/src/COMPRESS/dump_xyz_gz.cpp b/src/COMPRESS/dump_xyz_gz.cpp index f4d4361de4..9d70e39409 100644 --- a/src/COMPRESS/dump_xyz_gz.cpp +++ b/src/COMPRESS/dump_xyz_gz.cpp @@ -84,7 +84,7 @@ void DumpXYZGZ::write_header(bigint ndump) auto header = fmt::format("{}\n Atoms. Timestep: {}", ndump, update->ntimestep); if (time_flag) header += fmt::format(" Time: {:.6f}", compute_time()); header += "\n"; - writer.write(header.c_str(), header.length()); + (void) writer.write(header.c_str(), header.length()); } } @@ -93,7 +93,7 @@ void DumpXYZGZ::write_header(bigint ndump) void DumpXYZGZ::write_data(int n, double *mybuf) { if (buffer_flag) { - writer.write(mybuf, n); + (void) writer.write(mybuf, n); } else { constexpr size_t VBUFFER_SIZE = 256; char vbuffer[VBUFFER_SIZE]; @@ -103,7 +103,7 @@ void DumpXYZGZ::write_data(int n, double *mybuf) snprintf(vbuffer, VBUFFER_SIZE, format, typenames[static_cast(mybuf[m + 1])], mybuf[m + 2], mybuf[m + 3], mybuf[m + 4]); if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump xyz/gz output"); } diff --git a/src/COMPRESS/dump_xyz_zstd.cpp b/src/COMPRESS/dump_xyz_zstd.cpp index 976979675a..b51b292839 100644 --- a/src/COMPRESS/dump_xyz_zstd.cpp +++ b/src/COMPRESS/dump_xyz_zstd.cpp @@ -92,7 +92,7 @@ void DumpXYZZstd::write_header(bigint ndump) auto header = fmt::format("{}\n Atoms. Timestep: {}", ndump, update->ntimestep); if (time_flag) header += fmt::format(" Time: {:.6f}", compute_time()); header += "\n"; - writer.write(header.c_str(), header.length()); + (void) writer.write(header.c_str(), header.length()); } } @@ -101,7 +101,7 @@ void DumpXYZZstd::write_header(bigint ndump) void DumpXYZZstd::write_data(int n, double *mybuf) { if (buffer_flag) { - writer.write(mybuf, n); + (void) writer.write(mybuf, n); } else { constexpr size_t VBUFFER_SIZE = 256; char vbuffer[VBUFFER_SIZE]; @@ -111,7 +111,7 @@ void DumpXYZZstd::write_data(int n, double *mybuf) snprintf(vbuffer, VBUFFER_SIZE, format, typenames[static_cast(mybuf[m + 1])], mybuf[m + 2], mybuf[m + 3], mybuf[m + 4]); if (written > 0) { - writer.write(vbuffer, written); + (void) writer.write(vbuffer, written); } else if (written < 0) { error->one(FLERR, "Error while writing dump xyz/gz output"); } diff --git a/src/EXTRA-COMMAND/geturl.cpp b/src/EXTRA-COMMAND/geturl.cpp new file mode 100644 index 0000000000..64cf622984 --- /dev/null +++ b/src/EXTRA-COMMAND/geturl.cpp @@ -0,0 +1,119 @@ +/* ---------------------------------------------------------------------- + LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator + https://www.lammps.org/, Sandia National Laboratories + LAMMPS development team: developers@lammps.org + + Copyright (2003) Sandia Corporation. Under the terms of Contract + DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains + certain rights in this software. This software is distributed under + the GNU General Public License. + + See the README file in the top-level LAMMPS directory. +------------------------------------------------------------------------- */ + +/* ---------------------------------------------------------------------- + Contributing authors: Axel Kohlmeyer (Temple U), +------------------------------------------------------------------------- */ + +#include "geturl.h" + +#include "comm.h" +#include "error.h" + +#if defined(LAMMPS_CURL) +#include +#endif + +using namespace LAMMPS_NS; + +/* ---------------------------------------------------------------------- */ + +void GetURL::command(int narg, char **arg) +{ +#if !defined(LAMMPS_CURL) + error->all(FLERR, "LAMMPS has not been compiled with libcurl support"); +#else + if (narg < 1) utils::missing_cmd_args(FLERR, "geturl", error); + int verify = 1; + int overwrite = 1; + int verbose = 0; + + // process arguments + + std::string url = arg[0]; + + // sanity check + + if ((url.find(':') == std::string::npos) || (url.find('/') == std::string::npos)) + error->all(FLERR, "URL '{}' is not a supported URL", url); + + std::string output = url.substr(url.find_last_of('/') + 1); + if (output.empty()) error->all(FLERR, "URL '{}' must end in a file string", url); + + int iarg = 1; + while (iarg < narg) { + if (strcmp(arg[iarg], "output") == 0) { + if (iarg + 2 > narg) utils::missing_cmd_args(FLERR, "geturl output", error); + output = arg[iarg + 1]; + ++iarg; + } else if (strcmp(arg[iarg], "overwrite") == 0) { + if (iarg + 2 > narg) utils::missing_cmd_args(FLERR, "geturl overwrite", error); + overwrite = utils::logical(FLERR, arg[iarg + 1], false, lmp); + ++iarg; + } else if (strcmp(arg[iarg], "verify") == 0) { + if (iarg + 2 > narg) utils::missing_cmd_args(FLERR, "geturl verify", error); + verify = utils::logical(FLERR, arg[iarg + 1], false, lmp); + ++iarg; + } else if (strcmp(arg[iarg], "verbose") == 0) { + if (iarg + 2 > narg) utils::missing_cmd_args(FLERR, "geturl verbose", error); + verbose = utils::logical(FLERR, arg[iarg + 1], false, lmp); + ++iarg; + } else { + error->all(FLERR, "Unknown geturl keyword: {}", arg[iarg]); + } + ++iarg; + } + + // only download files from rank 0 + + if (comm->me != 0) return; + + if (!overwrite && platform::file_is_readable(output)) return; + + // open output file for writing + + FILE *out = fopen(output.c_str(), "wb"); + if (!out) + error->all(FLERR, "Cannot open output file {} for writing: {}", output, utils::getsyserror()); + + // initialize curl and perform download + + CURL *curl; + curl_global_init(CURL_GLOBAL_DEFAULT); + curl = curl_easy_init(); + if (curl) { + (void) curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); + (void) curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *) out); + (void) curl_easy_setopt(curl, CURLOPT_FILETIME, 1L); + (void) curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); + if (verbose && screen) { + (void) curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); + (void) curl_easy_setopt(curl, CURLOPT_STDERR, (void *) screen); + } + if (!verify) { + (void) curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); + (void) curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); + } + auto res = curl_easy_perform(curl); + if (res != CURLE_OK) { + long response = 0L; + curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response); + error->one(FLERR, "Download of {} failed with: {} {}", output, curl_easy_strerror(res), + response); + } + curl_easy_cleanup(curl); + } + curl_global_cleanup(); + fclose(out); +#endif +} diff --git a/src/EXTRA-COMMAND/geturl.h b/src/EXTRA-COMMAND/geturl.h new file mode 100644 index 0000000000..2f4cf8ccb3 --- /dev/null +++ b/src/EXTRA-COMMAND/geturl.h @@ -0,0 +1,34 @@ +/* -*- c++ -*- ---------------------------------------------------------- + LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator + https://www.lammps.org/, Sandia National Laboratories + LAMMPS development team: developers@lammps.org + + Copyright (2003) Sandia Corporation. Under the terms of Contract + DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains + certain rights in this software. This software is distributed under + the GNU General Public License. + + See the README file in the top-level LAMMPS directory. +------------------------------------------------------------------------- */ + +#ifdef COMMAND_CLASS +// clang-format off +CommandStyle(geturl,GetURL); +// clang-format on +#else + +#ifndef LMP_GETURL_H +#define LMP_GETURL_H + +#include "command.h" + +namespace LAMMPS_NS { + +class GetURL : public Command { + public: + GetURL(class LAMMPS *lmp) : Command(lmp) {}; + void command(int, char **) override; +}; +} // namespace LAMMPS_NS +#endif +#endif diff --git a/src/EXTRA-COMPUTE/compute_basal_atom.cpp b/src/EXTRA-COMPUTE/compute_basal_atom.cpp index e16cf9db45..81641473ca 100644 --- a/src/EXTRA-COMPUTE/compute_basal_atom.cpp +++ b/src/EXTRA-COMPUTE/compute_basal_atom.cpp @@ -1,4 +1,3 @@ -// clang-format off /* ---------------------------------------------------------------------- LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator https://www.lammps.org/, Sandia National Laboratories @@ -37,10 +36,9 @@ using namespace LAMMPS_NS; /* ---------------------------------------------------------------------- */ -ComputeBasalAtom::ComputeBasalAtom(LAMMPS *lmp, int narg, char **arg) : - Compute(lmp, narg, arg) +ComputeBasalAtom::ComputeBasalAtom(LAMMPS *lmp, int narg, char **arg) : Compute(lmp, narg, arg) { - if (narg != 3) error->all(FLERR,"Illegal compute basal/atom command"); + if (narg != 3) error->all(FLERR, "Illegal compute basal/atom command"); peratom_flag = 1; size_peratom_cols = 3; @@ -74,7 +72,7 @@ void ComputeBasalAtom::init() neighbor->add_request(this, NeighConst::REQ_FULL | NeighConst::REQ_OCCASIONAL); if ((modify->get_compute_by_style("basal/atom").size() > 1) && (comm->me == 0)) - error->warning(FLERR,"More than one compute basal/atom"); + error->warning(FLERR, "More than one compute basal/atom"); } /* ---------------------------------------------------------------------- */ @@ -88,16 +86,16 @@ void ComputeBasalAtom::init_list(int /*id*/, NeighList *ptr) void ComputeBasalAtom::compute_peratom() { - int i,j,ii,jj,k,n,inum,jnum; - double xtmp,ytmp,ztmp,delx,dely,delz,rsq,var5,var6,var7; - int *ilist,*jlist,*numneigh,**firstneigh; + int i, j, ii, jj, k, n, inum, jnum; + double xtmp, ytmp, ztmp, delx, dely, delz, rsq, var5, var6, var7; + int *ilist, *jlist, *numneigh, **firstneigh; int chi[8]; int value; int count; int k2[3]; int j1[3]; - double x4[3],y4[3],z4[3],x5[3],y5[3],z5[3],x6[3],y6[3],z6[3]; - double x7[3],y7[3],z7[3]; + double x4[3], y4[3], z4[3], x5[3], y5[3], z5[3], x6[3], y6[3], z6[3]; + double x7[3], y7[3], z7[3]; invoked_peratom = update->ntimestep; @@ -106,7 +104,7 @@ void ComputeBasalAtom::compute_peratom() if (atom->nmax > nmax) { memory->destroy(BPV); nmax = atom->nmax; - memory->create(BPV,nmax,3,"basal/atom:basal"); + memory->create(BPV, nmax, 3, "basal/atom:basal"); array_atom = BPV; } @@ -143,10 +141,10 @@ void ComputeBasalAtom::compute_peratom() memory->destroy(nearest_n0); memory->destroy(nearest_n1); maxneigh = jnum; - memory->create(distsq,maxneigh,"compute/basal/atom:distsq"); - memory->create(nearest,maxneigh,"compute/basal/atom:nearest"); - memory->create(nearest_n0,maxneigh,"compute/basal/atom:nearest_n0"); - memory->create(nearest_n1,maxneigh,"compute/basal/atom:nearest_n1"); + memory->create(distsq, maxneigh, "compute/basal/atom:distsq"); + memory->create(nearest, maxneigh, "compute/basal/atom:nearest"); + memory->create(nearest_n0, maxneigh, "compute/basal/atom:nearest_n0"); + memory->create(nearest_n1, maxneigh, "compute/basal/atom:nearest_n1"); } // neighbor selection is identical to ackland/atom algorithm @@ -162,7 +160,7 @@ void ComputeBasalAtom::compute_peratom() delx = xtmp - x[j][0]; dely = ytmp - x[j][1]; delz = ztmp - x[j][2]; - rsq = delx*delx + dely*dely + delz*delz; + rsq = delx * delx + dely * dely + delz * delz; if (rsq < cutsq) { distsq[n] = rsq; nearest[n++] = j; @@ -171,7 +169,7 @@ void ComputeBasalAtom::compute_peratom() // Select 6 nearest neighbors - select2(6,n,distsq,nearest); + select2(6, n, distsq, nearest); // Mean squared separation @@ -182,248 +180,258 @@ void ComputeBasalAtom::compute_peratom() // n0 near neighbors with: distsq<1.45*r0_sq // n1 near neighbors with: distsq<1.55*r0_sq - double n0_dist_sq = 1.45*r0_sq, - n1_dist_sq = 1.55*r0_sq; + double n0_dist_sq = 1.45 * r0_sq, n1_dist_sq = 1.55 * r0_sq; int n0 = 0, n1 = 0; for (j = 0; j < n; j++) { - if (distsq[j] < n1_dist_sq) { - nearest_n1[n1++] = nearest[j]; - if (distsq[j] < n0_dist_sq) { - nearest_n0[n0++] = nearest[j]; - } - } + if (distsq[j] < n1_dist_sq) { + nearest_n1[n1++] = nearest[j]; + if (distsq[j] < n0_dist_sq) nearest_n0[n0++] = nearest[j]; + } } // Evaluate all angles <(r_ij,rik) forall n0 particles with: distsq<1.45*r0_sq double bond_angle; double norm_j, norm_k; chi[0] = chi[1] = chi[2] = chi[3] = chi[4] = chi[5] = chi[6] = chi[7] = 0; - double x_ij, y_ij, z_ij, x_ik, y_ik, z_ik, xmean5, ymean5, zmean5, - xmean6, ymean6, zmean6, xmean7, ymean7, zmean7; + double x_ij, y_ij, z_ij, x_ik, y_ik, z_ik, xmean5, ymean5, zmean5, xmean6, ymean6, zmean6, + xmean7, ymean7, zmean7; auto x3 = new double[n0]; auto y3 = new double[n0]; auto z3 = new double[n0]; for (j = 0; j < n0; j++) { - x_ij = x[i][0]-x[nearest_n0[j]][0]; - y_ij = x[i][1]-x[nearest_n0[j]][1]; - z_ij = x[i][2]-x[nearest_n0[j]][2]; - norm_j = sqrt (x_ij*x_ij + y_ij*y_ij + z_ij*z_ij); - if (norm_j <= 0.) {continue;} - for (k = j+1; k < n0; k++) { - x_ik = x[i][0]-x[nearest_n0[k]][0]; - y_ik = x[i][1]-x[nearest_n0[k]][1]; - z_ik = x[i][2]-x[nearest_n0[k]][2]; - norm_k = sqrt (x_ik*x_ik + y_ik*y_ik + z_ik*z_ik); - if (norm_k <= 0.) {continue;} - bond_angle = (x_ij*x_ik + y_ij*y_ik + z_ij*z_ik) / (norm_j*norm_k); + x_ij = x[i][0] - x[nearest_n0[j]][0]; + y_ij = x[i][1] - x[nearest_n0[j]][1]; + z_ij = x[i][2] - x[nearest_n0[j]][2]; + norm_j = sqrt(x_ij * x_ij + y_ij * y_ij + z_ij * z_ij); + if (norm_j <= 0.0) continue; + for (k = j + 1; k < n0; k++) { + x_ik = x[i][0] - x[nearest_n0[k]][0]; + y_ik = x[i][1] - x[nearest_n0[k]][1]; + z_ik = x[i][2] - x[nearest_n0[k]][2]; + norm_k = sqrt(x_ik * x_ik + y_ik * y_ik + z_ik * z_ik); + if (norm_k <= 0.) { continue; } + bond_angle = (x_ij * x_ik + y_ij * y_ik + z_ij * z_ik) / (norm_j * norm_k); //find all bond angles that are about 180 degrees if (-1. <= bond_angle && bond_angle < -0.945) { - x3[chi[0]] = x_ik - x_ij; - y3[chi[0]] = y_ik - y_ij; - z3[chi[0]] = z_ik - z_ij; - chi[0]++; + x3[chi[0]] = x_ik - x_ij; + y3[chi[0]] = y_ik - y_ij; + z3[chi[0]] = z_ik - z_ij; + chi[0]++; } } } // for atoms that have 2 or 3 ~180 bond angles: if (2 == chi[0] || 3 == chi[0]) { - count = value = 0; - if (chi[0] == 2) { - k2[0] = 0; - j1[0] = 1; - } - else { - k2[0] = 0; - k2[1] = 0; - k2[2] = 1; - j1[0]=1; - j1[1]=2; - j1[2]=2; - } - xmean5 = ymean5 = zmean5 = xmean6 = ymean6 = zmean6 = xmean7 = ymean7 = zmean7 = 0.0; - for (j = 0; j < chi[0]; j++) { - for (k = j+1; k < chi[0]; k++) { - //get cross products - x4[count] = y3[j1[count]]*z3[k2[count]]-y3[k2[count]]*z3[j1[count]]; - y4[count] = z3[j1[count]]*x3[k2[count]]-z3[k2[count]]*x3[j1[count]]; - z4[count] = x3[j1[count]]*y3[k2[count]]-x3[k2[count]]*y3[j1[count]]; - //get all sign combinations of cross products - x5[count] = x4[count]*copysign(1.0,x4[count]); - y5[count] = y4[count]*copysign(1.0,x4[count]); - z5[count] = z4[count]*copysign(1.0,x4[count]); - x6[count] = x4[count]*copysign(1.0,y4[count]); - y6[count] = y4[count]*copysign(1.0,y4[count]); - z6[count] = z4[count]*copysign(1.0,y4[count]); - x7[count] = x4[count]*copysign(1.0,z4[count]); - y7[count] = y4[count]*copysign(1.0,z4[count]); - z7[count] = z4[count]*copysign(1.0,z4[count]); - //get average cross products - xmean5 += x5[count]; - ymean5 += y5[count]; - zmean5 += z5[count]; - xmean6 += x6[count]; - ymean6 += y6[count]; - zmean6 += z6[count]; - xmean7 += x7[count]; - ymean7 += y7[count]; - zmean6 += z7[count]; - count++; - } - } - if (count > 0) { - xmean5 /= count; - xmean6 /= count; - xmean7 /= count; - ymean5 /= count; - ymean6 /= count; - ymean7 /= count; - zmean5 /= count; - zmean6 /= count; - zmean7 /= count; - } - var5 = var6 = var7 = 0.0; - //find standard deviations - for (j=0;j 3) { - double x44[3], y44[3], z44[3], S0; - int l, m; - count = value = 0; - S0 = 100000; + count = 0; + if (chi[0] == 2) { + k2[0] = 0; + j1[0] = 1; + } else { k2[0] = 0; k2[1] = 0; k2[2] = 1; - j1[0]=1; - j1[1]=2; - j1[2]=2; - //algorithm is as above, but now all combinations of three 180 degree angles are compared, and the combination with minimum standard deviation is chosen - for (j=0; j= chi[0] || l >= chi[0]) continue; - //get unique combination of three neighbor vectors - x4[0] = x3[j]; - x4[1] = x3[k]; - x4[2] = x3[l]; - y4[0] = y3[j]; - y4[1] = y3[k]; - y4[2] = y3[l]; - z4[0] = z3[j]; - z4[1] = z3[k]; - z4[2] = z3[l]; - xmean5 = ymean5 = zmean5 = xmean6 = ymean6 = zmean6 = xmean7 = ymean7 = zmean7 = 0; - for (m=0;m<3;m++) { - //get cross products - x44[m] = y4[j1[m]]*z4[k2[m]]-y4[k2[m]]*z4[j1[m]]; - y44[m] = z4[j1[m]]*x4[k2[m]]-z4[k2[m]]*x4[j1[m]]; - z44[m] = x4[j1[m]]*y4[k2[m]]-x4[k2[m]]*y4[j1[m]]; - x5[m] = x44[m]*copysign(1.0,x44[m]); - y5[m] = y44[m]*copysign(1.0,x44[m]); - z5[m] = z44[m]*copysign(1.0,x44[m]); - x6[m] = x44[m]*copysign(1.0,y44[m]); - y6[m] = y44[m]*copysign(1.0,y44[m]); - z6[m] = z44[m]*copysign(1.0,y44[m]); - x7[m] = x44[m]*copysign(1.0,z44[m]); - y7[m] = y44[m]*copysign(1.0,z44[m]); - z7[m] = z44[m]*copysign(1.0,z44[m]); - //get average cross products - xmean5 = xmean5 + x5[m]; - ymean5 = ymean5 + y5[m]; - zmean5 = zmean5 + z5[m]; - xmean6 = xmean6 + x6[m]; - ymean6 = ymean6 + y6[m]; - zmean6 = zmean6 + z6[m]; - xmean7 = xmean7 + x7[m]; - ymean7 = ymean7 + y7[m]; - zmean6 = zmean6 + z7[m]; - } - xmean5 = xmean5/3; - xmean6 = xmean6/3; - xmean7 = xmean7/3; - ymean5 = ymean5/3; - ymean6 = ymean6/3; - ymean7 = ymean7/3; - zmean5 = zmean5/3; - zmean6 = zmean6/3; - zmean7 = zmean7/3; - var5 = var6 = var7 = 0; - //get standard deviations - for (m=0;m<3;m++) { - var5 = var5 + x5[m]*x5[m]-2*x5[m]*xmean5+xmean5*xmean5+y5[m]*y5[m]-2*y5[m]*ymean5+ymean5*ymean5+z5[m]*z5[m]-2*z5[m]*zmean5+zmean5*zmean5; - var6 = var6 + x6[m]*x6[m]-2*x6[m]*xmean6+xmean6*xmean6+y6[m]*y6[m]-2*y6[m]*ymean6+ymean6*ymean6+z6[m]*z6[m]-2*z6[m]*zmean6+zmean6*zmean6; - var7 = var7 + x7[m]*x7[m]-2*x7[m]*xmean7+xmean7*xmean7+y7[m]*y7[m]-2*y7[m]*ymean7+ymean7*ymean7+z7[m]*z7[m]-2*z7[m]*zmean7+zmean7*zmean7; - } - //choose minimum standard deviation - if (var5 < S0) { - S0 = var5; - BPV[i][0] = (x5[0]+x5[1]+x5[2])/3; - BPV[i][1] = (y5[0]+y5[1]+x5[2])/3; - BPV[i][2] = (z5[0]+z5[1]+z5[2])/3; - } - if (var6 < S0) { - S0 = var6; - BPV[i][0] = (x6[0]+x6[1]+x6[2])/3; - BPV[i][1] = (y6[0]+y6[1]+x6[2])/3; - BPV[i][2] = (z6[0]+z6[1]+z6[2])/3; - } - if (var7 < S0) { - S0 = var7; - BPV[i][0] = (x7[0]+x7[1]+x7[2])/3; - BPV[i][1] = (y7[0]+y7[1]+x7[2])/3; - BPV[i][2] = (z7[0]+z7[1]+z7[2])/3; - } - } - } + j1[0] = 1; + j1[1] = 2; + j1[2] = 2; + } + xmean5 = ymean5 = zmean5 = xmean6 = ymean6 = zmean6 = xmean7 = ymean7 = zmean7 = 0.0; + for (j = 0; j < chi[0]; j++) { + for (k = j + 1; k < chi[0]; k++) { + //get cross products + x4[count] = y3[j1[count]] * z3[k2[count]] - y3[k2[count]] * z3[j1[count]]; + y4[count] = z3[j1[count]] * x3[k2[count]] - z3[k2[count]] * x3[j1[count]]; + z4[count] = x3[j1[count]] * y3[k2[count]] - x3[k2[count]] * y3[j1[count]]; + //get all sign combinations of cross products + x5[count] = x4[count] * copysign(1.0, x4[count]); + y5[count] = y4[count] * copysign(1.0, x4[count]); + z5[count] = z4[count] * copysign(1.0, x4[count]); + x6[count] = x4[count] * copysign(1.0, y4[count]); + y6[count] = y4[count] * copysign(1.0, y4[count]); + z6[count] = z4[count] * copysign(1.0, y4[count]); + x7[count] = x4[count] * copysign(1.0, z4[count]); + y7[count] = y4[count] * copysign(1.0, z4[count]); + z7[count] = z4[count] * copysign(1.0, z4[count]); + //get average cross products + xmean5 += x5[count]; + ymean5 += y5[count]; + zmean5 += z5[count]; + xmean6 += x6[count]; + ymean6 += y6[count]; + zmean6 += z6[count]; + xmean7 += x7[count]; + ymean7 += y7[count]; + zmean6 += z7[count]; + count++; } - //if there are less than two ~180 degree bond angles, the algorithm returns null - } else BPV[i][0] = BPV[i][1] = BPV[i][2] = 0.0; + } + if (count > 0) { + xmean5 /= count; + xmean6 /= count; + xmean7 /= count; + ymean5 /= count; + ymean6 /= count; + ymean7 /= count; + zmean5 /= count; + zmean6 /= count; + zmean7 /= count; + } + var5 = var6 = var7 = 0.0; + //find standard deviations + for (j = 0; j < count; j++) { + var5 = var5 + x5[j] * x5[j] - 2 * x5[j] * xmean5 + xmean5 * xmean5 + y5[j] * y5[j] - + 2 * y5[j] * ymean5 + ymean5 * ymean5 + z5[j] * z5[j] - 2 * z5[j] * zmean5 + + zmean5 * zmean5; + var6 = var6 + x6[j] * x6[j] - 2 * x6[j] * xmean6 + xmean6 * xmean6 + y6[j] * y6[j] - + 2 * y6[j] * ymean6 + ymean6 * ymean6 + z6[j] * z6[j] - 2 * z6[j] * zmean6 + + zmean6 * zmean6; + var7 = var7 + x7[j] * x7[j] - 2 * x7[j] * xmean7 + xmean7 * xmean7 + y7[j] * y7[j] - + 2 * y7[j] * ymean7 + ymean7 * ymean7 + z7[j] * z7[j] - 2 * z7[j] * zmean7 + + zmean7 * zmean7; + } + //select sign combination with minimum standard deviation + if (var5 < var6) { + if (var5 < var7) + value = 0; + else + value = 2; + } else if (var6 < var7) { + value = 1; + } else + value = 2; + //BPV is average of cross products of all neighbor vectors which are part of 180 degree angles + BPV[i][0] = 0; + BPV[i][1] = 0; + BPV[i][2] = 0; + for (k = 0; k < count; k++) { + if (value == 0) { + BPV[i][0] = BPV[i][0] + x5[k]; + BPV[i][1] = BPV[i][1] + y5[k]; + BPV[i][2] = BPV[i][2] + z5[k]; + } else if (value == 1) { + BPV[i][0] = BPV[i][0] + x6[k]; + BPV[i][1] = BPV[i][1] + y6[k]; + BPV[i][2] = BPV[i][2] + z6[k]; + } else { + BPV[i][0] = BPV[i][0] + x7[k]; + BPV[i][1] = BPV[i][1] + y7[k]; + BPV[i][2] = BPV[i][2] + z7[k]; + } + } + } + //for atoms with more than three 180 degree bond angles: + else if (chi[0] > 3) { + double x44[3], y44[3], z44[3], S0; + int l, m; + count = 0; + S0 = 100000; + k2[0] = 0; + k2[1] = 0; + k2[2] = 1; + j1[0] = 1; + j1[1] = 2; + j1[2] = 2; + //algorithm is as above, but now all combinations of three 180 degree angles are compared, and the combination with minimum standard deviation is chosen + for (j = 0; j < chi[0]; j++) { + for (k = j + 1; k < chi[0]; k++) { + for (l = k + 1; l < chi[0]; l++) { + if (k >= chi[0] || l >= chi[0]) continue; + //get unique combination of three neighbor vectors + x4[0] = x3[j]; + x4[1] = x3[k]; + x4[2] = x3[l]; + y4[0] = y3[j]; + y4[1] = y3[k]; + y4[2] = y3[l]; + z4[0] = z3[j]; + z4[1] = z3[k]; + z4[2] = z3[l]; + xmean5 = ymean5 = zmean5 = xmean6 = ymean6 = zmean6 = xmean7 = ymean7 = zmean7 = 0; + for (m = 0; m < 3; m++) { + //get cross products + x44[m] = y4[j1[m]] * z4[k2[m]] - y4[k2[m]] * z4[j1[m]]; + y44[m] = z4[j1[m]] * x4[k2[m]] - z4[k2[m]] * x4[j1[m]]; + z44[m] = x4[j1[m]] * y4[k2[m]] - x4[k2[m]] * y4[j1[m]]; + x5[m] = x44[m] * copysign(1.0, x44[m]); + y5[m] = y44[m] * copysign(1.0, x44[m]); + z5[m] = z44[m] * copysign(1.0, x44[m]); + x6[m] = x44[m] * copysign(1.0, y44[m]); + y6[m] = y44[m] * copysign(1.0, y44[m]); + z6[m] = z44[m] * copysign(1.0, y44[m]); + x7[m] = x44[m] * copysign(1.0, z44[m]); + y7[m] = y44[m] * copysign(1.0, z44[m]); + z7[m] = z44[m] * copysign(1.0, z44[m]); + //get average cross products + xmean5 = xmean5 + x5[m]; + ymean5 = ymean5 + y5[m]; + zmean5 = zmean5 + z5[m]; + xmean6 = xmean6 + x6[m]; + ymean6 = ymean6 + y6[m]; + zmean6 = zmean6 + z6[m]; + xmean7 = xmean7 + x7[m]; + ymean7 = ymean7 + y7[m]; + zmean6 = zmean6 + z7[m]; + } + xmean5 = xmean5 / 3; + xmean6 = xmean6 / 3; + xmean7 = xmean7 / 3; + ymean5 = ymean5 / 3; + ymean6 = ymean6 / 3; + ymean7 = ymean7 / 3; + zmean5 = zmean5 / 3; + zmean6 = zmean6 / 3; + zmean7 = zmean7 / 3; + var5 = var6 = var7 = 0; + //get standard deviations + for (m = 0; m < 3; m++) { + var5 = var5 + x5[m] * x5[m] - 2 * x5[m] * xmean5 + xmean5 * xmean5 + y5[m] * y5[m] - + 2 * y5[m] * ymean5 + ymean5 * ymean5 + z5[m] * z5[m] - 2 * z5[m] * zmean5 + + zmean5 * zmean5; + var6 = var6 + x6[m] * x6[m] - 2 * x6[m] * xmean6 + xmean6 * xmean6 + y6[m] * y6[m] - + 2 * y6[m] * ymean6 + ymean6 * ymean6 + z6[m] * z6[m] - 2 * z6[m] * zmean6 + + zmean6 * zmean6; + var7 = var7 + x7[m] * x7[m] - 2 * x7[m] * xmean7 + xmean7 * xmean7 + y7[m] * y7[m] - + 2 * y7[m] * ymean7 + ymean7 * ymean7 + z7[m] * z7[m] - 2 * z7[m] * zmean7 + + zmean7 * zmean7; + } + //choose minimum standard deviation + if (var5 < S0) { + S0 = var5; + BPV[i][0] = (x5[0] + x5[1] + x5[2]) / 3; + BPV[i][1] = (y5[0] + y5[1] + x5[2]) / 3; + BPV[i][2] = (z5[0] + z5[1] + z5[2]) / 3; + } + if (var6 < S0) { + S0 = var6; + BPV[i][0] = (x6[0] + x6[1] + x6[2]) / 3; + BPV[i][1] = (y6[0] + y6[1] + x6[2]) / 3; + BPV[i][2] = (z6[0] + z6[1] + z6[2]) / 3; + } + if (var7 < S0) { + S0 = var7; + BPV[i][0] = (x7[0] + x7[1] + x7[2]) / 3; + BPV[i][1] = (y7[0] + y7[1] + x7[2]) / 3; + BPV[i][2] = (z7[0] + z7[1] + z7[2]) / 3; + } + } + } + } + //if there are less than two ~180 degree bond angles, the algorithm returns null + } else + BPV[i][0] = BPV[i][1] = BPV[i][2] = 0.0; delete[] x3; delete[] y3; delete[] z3; //normalize BPV: - double Mag = sqrt(BPV[i][0]*BPV[i][0] + - BPV[i][1]*BPV[i][1] + BPV[i][2]*BPV[i][2]); + double Mag = sqrt(BPV[i][0] * BPV[i][0] + BPV[i][1] * BPV[i][1] + BPV[i][2] * BPV[i][2]); if (Mag > 0) { - BPV[i][0] = BPV[i][0]/Mag; - BPV[i][1] = BPV[i][1]/Mag; - BPV[i][2] = BPV[i][2]/Mag; + BPV[i][0] = BPV[i][0] / Mag; + BPV[i][1] = BPV[i][1] / Mag; + BPV[i][2] = BPV[i][2] / Mag; } - } else BPV[i][0] = BPV[i][1] = BPV[i][2] = 0.0; + } else + BPV[i][0] = BPV[i][1] = BPV[i][2] = 0.0; } } /* ---------------------------------------------------------------------- @@ -433,35 +441,37 @@ void ComputeBasalAtom::compute_peratom() ------------------------------------------------------------------------- */ void ComputeBasalAtom::select(int k, int n, double *arr) - { - int i,ir,j,l,mid; +{ + int i, ir, j, l, mid; double a; arr--; l = 1; ir = n; while (true) { - if (ir <= l+1) { - if (ir == l+1 && arr[ir] < arr[l]) std::swap(arr[l],arr[ir]); + if (ir <= l + 1) { + if (ir == l + 1 && arr[ir] < arr[l]) std::swap(arr[l], arr[ir]); return; } else { - mid=(l+ir) >> 1; - std::swap(arr[mid],arr[l+1]); - if (arr[l] > arr[ir]) std::swap(arr[l],arr[ir]); - if (arr[l+1] > arr[ir]) std::swap(arr[l+1],arr[ir]); - if (arr[l] > arr[l+1]) std::swap(arr[l],arr[l+1]); - i = l+1; + mid = (l + ir) >> 1; + std::swap(arr[mid], arr[l + 1]); + if (arr[l] > arr[ir]) std::swap(arr[l], arr[ir]); + if (arr[l + 1] > arr[ir]) std::swap(arr[l + 1], arr[ir]); + if (arr[l] > arr[l + 1]) std::swap(arr[l], arr[l + 1]); + i = l + 1; j = ir; - a = arr[l+1]; + a = arr[l + 1]; while (true) { - do i++; while (arr[i] < a); - do j--; while (arr[j] > a); + do i++; + while (arr[i] < a); + do j--; + while (arr[j] > a); if (j < i) break; - std::swap(arr[i],arr[j]); + std::swap(arr[i], arr[j]); } - arr[l+1] = arr[j]; + arr[l + 1] = arr[j]; arr[j] = a; - if (j >= k) ir = j-1; + if (j >= k) ir = j - 1; if (j <= k) l = i; } } @@ -471,7 +481,7 @@ void ComputeBasalAtom::select(int k, int n, double *arr) void ComputeBasalAtom::select2(int k, int n, double *arr, int *iarr) { - int i,ir,j,l,mid,ia; + int i, ir, j, l, mid, ia; double a; arr--; @@ -479,44 +489,46 @@ void ComputeBasalAtom::select2(int k, int n, double *arr, int *iarr) l = 1; ir = n; while (true) { - if (ir <= l+1) { - if (ir == l+1 && arr[ir] < arr[l]) { - std::swap(arr[l],arr[ir]); - std::swap(iarr[l],iarr[ir]); + if (ir <= l + 1) { + if (ir == l + 1 && arr[ir] < arr[l]) { + std::swap(arr[l], arr[ir]); + std::swap(iarr[l], iarr[ir]); } return; } else { - mid=(l+ir) >> 1; - std::swap(arr[mid],arr[l+1]); - std::swap(iarr[mid],iarr[l+1]); + mid = (l + ir) >> 1; + std::swap(arr[mid], arr[l + 1]); + std::swap(iarr[mid], iarr[l + 1]); if (arr[l] > arr[ir]) { - std::swap(arr[l],arr[ir]); - std::swap(iarr[l],iarr[ir]); + std::swap(arr[l], arr[ir]); + std::swap(iarr[l], iarr[ir]); } - if (arr[l+1] > arr[ir]) { - std::swap(arr[l+1],arr[ir]); - std::swap(iarr[l+1],iarr[ir]); + if (arr[l + 1] > arr[ir]) { + std::swap(arr[l + 1], arr[ir]); + std::swap(iarr[l + 1], iarr[ir]); } - if (arr[l] > arr[l+1]) { - std::swap(arr[l],arr[l+1]); - std::swap(iarr[l],iarr[l+1]); + if (arr[l] > arr[l + 1]) { + std::swap(arr[l], arr[l + 1]); + std::swap(iarr[l], iarr[l + 1]); } - i = l+1; + i = l + 1; j = ir; - a = arr[l+1]; - ia = iarr[l+1]; + a = arr[l + 1]; + ia = iarr[l + 1]; while (true) { - do i++; while (arr[i] < a); - do j--; while (arr[j] > a); + do i++; + while (arr[i] < a); + do j--; + while (arr[j] > a); if (j < i) break; - std::swap(arr[i],arr[j]); - std::swap(iarr[i],iarr[j]); + std::swap(arr[i], arr[j]); + std::swap(iarr[i], iarr[j]); } - arr[l+1] = arr[j]; + arr[l + 1] = arr[j]; arr[j] = a; - iarr[l+1] = iarr[j]; + iarr[l + 1] = iarr[j]; iarr[j] = ia; - if (j >= k) ir = j-1; + if (j >= k) ir = j - 1; if (j <= k) l = i; } } @@ -528,6 +540,6 @@ void ComputeBasalAtom::select2(int k, int n, double *arr, int *iarr) double ComputeBasalAtom::memory_usage() { - double bytes = 3*nmax * sizeof(double); + double bytes = 3 * nmax * sizeof(double); return bytes; } diff --git a/src/EXTRA-DUMP/dump_dcd.cpp b/src/EXTRA-DUMP/dump_dcd.cpp index f7e7ab2737..56261338b5 100644 --- a/src/EXTRA-DUMP/dump_dcd.cpp +++ b/src/EXTRA-DUMP/dump_dcd.cpp @@ -300,12 +300,12 @@ void DumpDCD::write_frame() nframes++; out_integer = nframes; - fseek(fp,NFILE_POS,SEEK_SET); + (void) fseek(fp,NFILE_POS,SEEK_SET); fwrite_int32(fp,out_integer); out_integer = update->ntimestep; - fseek(fp,NSTEP_POS,SEEK_SET); + (void) fseek(fp,NSTEP_POS,SEEK_SET); fwrite_int32(fp,out_integer); - fseek(fp,0,SEEK_END); + (void) fseek(fp,0,SEEK_END); } /* ---------------------------------------------------------------------- */ diff --git a/src/EXTRA-FIX/fix_ave_correlate_long.cpp b/src/EXTRA-FIX/fix_ave_correlate_long.cpp index 7c80365c57..738ae3ae4c 100644 --- a/src/EXTRA-FIX/fix_ave_correlate_long.cpp +++ b/src/EXTRA-FIX/fix_ave_correlate_long.cpp @@ -488,7 +488,7 @@ void FixAveCorrelateLong::end_of_step() if (fp && comm->me == 0) { clearerr(fp); - if (overwrite) platform::fseek(fp,filepos); + if (overwrite) (void) platform::fseek(fp,filepos); fmt::print(fp,"# Timestep: {}\n", ntimestep); for (unsigned int i=0; i < npcorr; ++i) { fprintf(fp, "%lg ", t[i]*update->dt*nevery); diff --git a/src/GRANULAR/fix_add_heat.cpp b/src/GRANULAR/fix_add_heat.cpp index 01bc22cdf4..642ea806e8 100644 --- a/src/GRANULAR/fix_add_heat.cpp +++ b/src/GRANULAR/fix_add_heat.cpp @@ -142,7 +142,7 @@ void FixAddHeat::post_force(int /*vflag*/) if (mask[i] & groupbit) heatflow[i] = 0.0; - double vtmp, dt; + double vtmp = 0.0; if (vstyle == CONSTANT) vtmp = value; if (vstyle == EQUAL) vtmp = input->variable->compute_equal(var); for (int i = 0; i < atom->nlocal; i++) { diff --git a/src/KSPACE/pppm_dipole.cpp b/src/KSPACE/pppm_dipole.cpp index 99a0efd75e..a0676cc56e 100644 --- a/src/KSPACE/pppm_dipole.cpp +++ b/src/KSPACE/pppm_dipole.cpp @@ -613,8 +613,7 @@ void PPPMDipole::allocate() memory->create2d_offset(rho1d,3,-order/2,order/2,"pppm_dipole:rho1d"); memory->create2d_offset(drho1d,3,-order/2,order/2,"pppm_dipole:drho1d"); memory->create2d_offset(rho_coeff,order,(1-order)/2,order/2,"pppm_dipole:rho_coeff"); - memory->create2d_offset(drho_coeff,order,(1-order)/2,order/2, - "pppm_dipole:drho_coeff"); + memory->create2d_offset(drho_coeff,order,(1-order)/2,order/2,"pppm_dipole:drho_coeff"); // create 2 FFTs and a Remap // 1st FFT keeps data in FFT decomposition @@ -669,8 +668,23 @@ void PPPMDipole::deallocate() memory->destroy(densityy_fft_dipole); memory->destroy(densityz_fft_dipole); + memory->destroy(density_fft); + memory->destroy(greensfn); + memory->destroy(work1); + memory->destroy(work2); memory->destroy(work3); memory->destroy(work4); + memory->destroy(vg); + + memory->destroy1d_offset(fkx,nxlo_fft); + memory->destroy1d_offset(fky,nylo_fft); + memory->destroy1d_offset(fkz,nzlo_fft); + + memory->destroy(gf_b); + memory->destroy2d_offset(rho1d,-order_allocated/2); + memory->destroy2d_offset(drho1d,-order_allocated/2); + memory->destroy2d_offset(rho_coeff,(1-order_allocated)/2); + memory->destroy2d_offset(drho_coeff,(1-order_allocated)/2); delete fft1; delete fft2; @@ -678,6 +692,7 @@ void PPPMDipole::deallocate() fft1 = fft2 = nullptr; remap = nullptr; + gf_b = nullptr; } /* ---------------------------------------------------------------------- diff --git a/src/MAKE/Makefile.mpi b/src/MAKE/Makefile.mpi index 933da9663e..9cd451a32c 100644 --- a/src/MAKE/Makefile.mpi +++ b/src/MAKE/Makefile.mpi @@ -35,9 +35,9 @@ LMP_INC = -DLAMMPS_GZIP -DLAMMPS_MEMALIGN=64 # -DLAMMPS_CXX98 # MPI wrapper compiler/linker can provide this info # can point to dummy MPI library in src/STUBS as in Makefile.serial # use -D MPICH and OMPI settings in INC to avoid C++ lib conflicts -# INC = path for mpi.h, MPI compiler settings -# PATH = path for MPI library -# LIB = name of MPI library +# MPI_INC = path for mpi.h, MPI compiler settings +# MPI_PATH = path for MPI library +# MPI_LIB = name of MPI library MPI_INC = -DMPICH_SKIP_MPICXX -DOMPI_SKIP_MPICXX=1 MPI_PATH = @@ -46,9 +46,9 @@ MPI_LIB = # FFT library # see discussion in Section 3.5.2 of manual # can be left blank to use provided KISS FFT library -# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings -# PATH = path for FFT library -# LIB = name of FFT library +# FFT_INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings +# FFT_PATH = path for FFT library +# FFT_LIB = name of FFT library FFT_INC = FFT_PATH = @@ -57,14 +57,25 @@ FFT_LIB = # JPEG and/or PNG library # see discussion in Section 3.5.4 of manual # only needed if -DLAMMPS_JPEG or -DLAMMPS_PNG listed with LMP_INC -# INC = path(s) for jpeglib.h and/or png.h -# PATH = path(s) for JPEG library and/or PNG library -# LIB = name(s) of JPEG library and/or PNG library +# JPG_INC = path(s) for jpeglib.h and/or png.h +# JPG_PATH = path(s) for JPEG library and/or PNG library +# JPG_LIB = name(s) of JPEG library and/or PNG library JPG_INC = JPG_PATH = JPG_LIB = +# CURL library +# see discussion in Section 3.5.6 of manual +# only needed if -DLAMMPS_CURL listed with LMP_INC +# CURL_INC = path(s) for curl/curl.h +# CURL_PATH = path(s) for CURL library +# CURL_LIB = name(s) of CURL library, e.g. -lcurl + +CURL_INC = +CURL_PATH = +CURL_LIB = + # library for loading shared objects (defaults to -ldl, should be empty on Windows) # uncomment to change the default @@ -77,9 +88,9 @@ JPG_LIB = include Makefile.package.settings include Makefile.package -EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC) -EXTRA_PATH = $(PKG_PATH) $(MPI_PATH) $(FFT_PATH) $(JPG_PATH) $(PKG_SYSPATH) -EXTRA_LIB = $(PKG_LIB) $(MPI_LIB) $(FFT_LIB) $(JPG_LIB) $(PKG_SYSLIB) $(DYN_LIB) +EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(CURL_INC) $(PKG_SYSINC) +EXTRA_PATH = $(PKG_PATH) $(MPI_PATH) $(FFT_PATH) $(JPG_PATH) $(CURL_PATH) $(PKG_SYSPATH) +EXTRA_LIB = $(PKG_LIB) $(MPI_LIB) $(FFT_LIB) $(JPG_LIB) $(CURL_LIB) $(PKG_SYSLIB) $(DYN_LIB) EXTRA_CPP_DEPENDS = $(PKG_CPP_DEPENDS) EXTRA_LINK_DEPENDS = $(PKG_LINK_DEPENDS) diff --git a/src/MAKE/Makefile.serial b/src/MAKE/Makefile.serial index 6dd8415ea9..f588922a1f 100644 --- a/src/MAKE/Makefile.serial +++ b/src/MAKE/Makefile.serial @@ -35,35 +35,46 @@ LMP_INC = -DLAMMPS_GZIP -DLAMMPS_MEMALIGN=64 # -DLAMMPS_CXX98 # MPI wrapper compiler/linker can provide this info # can point to dummy MPI library in src/STUBS as in Makefile.serial # use -D MPICH and OMPI settings in INC to avoid C++ lib conflicts -# INC = path for mpi.h, MPI compiler settings -# PATH = path for MPI library -# LIB = name of MPI library +# MPI_INC = path for mpi.h, MPI compiler settings +# MPI_PATH = path for MPI library +# MPI_LIB = name of MPI library -MPI_INC = -I../STUBS +MPI_INC = -I../STUBS MPI_PATH = -L../STUBS MPI_LIB = -lmpi_stubs # FFT library # see discussion in Section 3.5.2 of manual # can be left blank to use provided KISS FFT library -# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings -# PATH = path for FFT library -# LIB = name of FFT library +# FFT_INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings +# FFT_PATH = path for FFT library +# FFT_LIB = name of FFT library -FFT_INC = -FFT_PATH = -FFT_LIB = +FFT_INC = +FFT_PATH = +FFT_LIB = # JPEG and/or PNG library # see discussion in Section 3.5.4 of manual # only needed if -DLAMMPS_JPEG or -DLAMMPS_PNG listed with LMP_INC -# INC = path(s) for jpeglib.h and/or png.h -# PATH = path(s) for JPEG library and/or PNG library -# LIB = name(s) of JPEG library and/or PNG library +# JPG_INC = path(s) for jpeglib.h and/or png.h +# JPG_PATH = path(s) for JPEG library and/or PNG library +# JPG_LIB = name(s) of JPEG library and/or PNG library -JPG_INC = -JPG_PATH = -JPG_LIB = +JPG_INC = +JPG_PATH = +JPG_LIB = + +# CURL library +# see discussion in Section 3.5.6 of manual +# only needed if -DLAMMPS_CURL listed with LMP_INC +# CURL_INC = path(s) for curl/curl.h +# CURL_PATH = path(s) for CURL library +# CURL_LIB = name(s) of CURL library, e.g. -lcurl + +CURL_INC = +CURL_PATH = +CURL_LIB = # library for loading shared objects (defaults to -ldl, should be empty on Windows) # uncomment to change the default @@ -77,9 +88,9 @@ JPG_LIB = include Makefile.package.settings include Makefile.package -EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC) -EXTRA_PATH = $(PKG_PATH) $(MPI_PATH) $(FFT_PATH) $(JPG_PATH) $(PKG_SYSPATH) -EXTRA_LIB = $(PKG_LIB) $(MPI_LIB) $(FFT_LIB) $(JPG_LIB) $(PKG_SYSLIB) $(DYN_LIB) +EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(CURL_INC) $(PKG_SYSINC) +EXTRA_PATH = $(PKG_PATH) $(MPI_PATH) $(FFT_PATH) $(JPG_PATH) $(CURL_PATH) $(PKG_SYSPATH) +EXTRA_LIB = $(PKG_LIB) $(MPI_LIB) $(FFT_LIB) $(JPG_LIB) $(CURL_LIB) $(PKG_SYSLIB) $(DYN_LIB) EXTRA_CPP_DEPENDS = $(PKG_CPP_DEPENDS) EXTRA_LINK_DEPENDS = $(PKG_LINK_DEPENDS) diff --git a/src/MANYBODY/pair_airebo.cpp b/src/MANYBODY/pair_airebo.cpp index 41c8faf752..3d5334a471 100644 --- a/src/MANYBODY/pair_airebo.cpp +++ b/src/MANYBODY/pair_airebo.cpp @@ -617,7 +617,7 @@ void PairAIREBO::FLJ(int eflag) // if best = 1.0, done REBO_neighs_i = REBO_firstneigh[i]; - for (kk = 0; kk < REBO_numneigh[i] && done==0; kk++) { + for (kk = 0; (kk < REBO_numneigh[i]) && (done == 0); kk++) { k = REBO_neighs_i[kk]; if (k == j) continue; ktype = map[type[k]]; @@ -629,7 +629,10 @@ void PairAIREBO::FLJ(int eflag) if (rsq < rcmaxsq[itype][ktype]) { rik = sqrt(rsq); wik = Sp(rik,rcmin[itype][ktype],rcmax[itype][ktype],dwik); - } else { dwik = wik = 0.0; rikS = rik = 1.0; } + } else { + dwik = wik = 0.0; + rikS = rik = 1.0; + } if (wik > best) { deljk[0] = x[j][0] - x[k][0]; @@ -668,7 +671,7 @@ void PairAIREBO::FLJ(int eflag) // if best = 1.0, done REBO_neighs_k = REBO_firstneigh[k]; - for (mm = 0; mm < REBO_numneigh[k] && done==0; mm++) { + for (mm = 0; (mm < REBO_numneigh[k]) && (done == 0); mm++) { m = REBO_neighs_k[mm]; if (m == i || m == j) continue; mtype = map[type[m]]; @@ -679,7 +682,10 @@ void PairAIREBO::FLJ(int eflag) if (rsq < rcmaxsq[ktype][mtype]) { rkm = sqrt(rsq); wkm = Sp(rkm,rcmin[ktype][mtype],rcmax[ktype][mtype],dwkm); - } else { dwkm = wkm = 0.0; rkmS = rkm = 1.0; } + } else { + dwkm = wkm = 0.0; + rkmS = rkm = 1.0; + } if (wik*wkm > best) { deljm[0] = x[j][0] - x[m][0]; diff --git a/src/MEAM/pair_meam.cpp b/src/MEAM/pair_meam.cpp index d9d2b53885..8f5b415cd2 100644 --- a/src/MEAM/pair_meam.cpp +++ b/src/MEAM/pair_meam.cpp @@ -549,14 +549,14 @@ void PairMEAM::read_user_meam_file(const std::string &userfile) std::shared_ptr reader; - if (comm->me == 0) { reader = std::make_shared(lmp, userfile, "MEAM"); } + if (comm->me == 0) reader = std::make_shared(lmp, userfile, "MEAM"); // read settings // pass them one at a time to MEAM package // match strings to list of corresponding ints char *line = nullptr; char buffer[MAXLINE]; - + int lineno = 0; while (true) { int which; int nindex, index[3]; @@ -564,6 +564,7 @@ void PairMEAM::read_user_meam_file(const std::string &userfile) int nline; if (comm->me == 0) { line = reader->next_line(); + ++lineno; if (line == nullptr) { nline = -1; } else @@ -583,20 +584,32 @@ void PairMEAM::read_user_meam_file(const std::string &userfile) for (which = 0; which < nkeywords; which++) if (keyword == keywords[which]) break; if (which == nkeywords) - error->all(FLERR, "Keyword {} in MEAM parameter file not recognized", keyword); + error->all(FLERR, "Keyword {} in MEAM parameter file {}:{} not recognized", keyword, + userfile, lineno); - nindex = nparams - 2; - for (int i = 0; i < nindex; i++) index[i] = values.next_int() - 1; + try { + nindex = nparams - 2; + for (int i = 0; i < nindex; i++) index[i] = values.next_int() - 1; + } catch (std::exception &e) { + error->all(FLERR, "Error parsing MEAM parameter file {}:{}: {}", userfile, lineno, e.what()); + } // map lattce_meam value to an integer if (which == 4) { std::string lattice_type = values.next_string(); lattice_t latt; if (!MEAM::str_to_lat(lattice_type, false, latt)) - error->all(FLERR, "Unrecognized lattice type in MEAM parameter file: {}", lattice_type); + error->all(FLERR, "Unrecognized lattice type {} in MEAM parameter file {}:{}", + lattice_type, userfile, lineno); value = latt; - } else - value = values.next_double(); + } else { + try { + value = values.next_double(); + } catch (std::exception &e) { + error->all(FLERR, "Error parsing MEAM parameter file {}:{}: {}", userfile, lineno, + e.what()); + } + } // pass single setting to MEAM package @@ -606,7 +619,8 @@ void PairMEAM::read_user_meam_file(const std::string &userfile) const char *descr[] = {"has an unknown error", "is out of range (please report a bug)", "expected more indices", "has out of range element index"}; if ((errorflag < 0) || (errorflag > 3)) errorflag = 0; - error->all(FLERR, "Error in MEAM parameter file: keyword {} {}", keyword, descr[errorflag]); + error->all(FLERR, "Error in MEAM parameter file {}:{}: keyword {} {}", userfile, lineno, + keyword, descr[errorflag]); } } } diff --git a/src/ML-POD/fitpod_command.cpp b/src/ML-POD/fitpod_command.cpp index ba7ffeba3a..fbe9ecd396 100644 --- a/src/ML-POD/fitpod_command.cpp +++ b/src/ML-POD/fitpod_command.cpp @@ -1492,8 +1492,6 @@ void FitPOD::environment_cluster_calculation(const datastruct &data) &beta, A, &Mdesc); MPI_Allreduce(MPI_IN_PLACE, A, Mdesc * Mdesc, MPI_DOUBLE, MPI_SUM, world); - //if (comm->me == 0) print_matrix("A", Mdesc, Mdesc, A, Mdesc); - if ((comm->me == 0) && (save == 1)) savematrix2binfile(data.filenametag + "_covariance_matrix_elem" + std::to_string(elem + 1) + ".bin", diff --git a/src/ML-POD/pair_pod.cpp b/src/ML-POD/pair_pod.cpp index ee70d39df4..f76191328f 100644 --- a/src/ML-POD/pair_pod.cpp +++ b/src/ML-POD/pair_pod.cpp @@ -77,6 +77,7 @@ PairPOD::PairPOD(LAMMPS *lmp) : Pair(lmp), fastpodptr(nullptr) abfx = nullptr; abfy = nullptr; abfz = nullptr; + abftm = nullptr; sumU = nullptr; forcecoeff = nullptr; Centroids = nullptr; @@ -88,6 +89,7 @@ PairPOD::PairPOD(LAMMPS *lmp) : Pair(lmp), fastpodptr(nullptr) pdd = nullptr; coefficients = nullptr; pn3 = nullptr; + pq3 = nullptr; pc3 = nullptr; pa4 = nullptr; pb4 = nullptr; @@ -124,6 +126,7 @@ PairPOD::~PairPOD() memory->destroy(abfx); memory->destroy(abfy); memory->destroy(abfz); + memory->destroy(abftm); memory->destroy(sumU); memory->destroy(forcecoeff); memory->destroy(Centroids); @@ -135,6 +138,7 @@ PairPOD::~PairPOD() memory->destroy(pdd); memory->destroy(coefficients); memory->destroy(pn3); + memory->destroy(pq3); memory->destroy(pc3); memory->destroy(pa4); memory->destroy(pb4); @@ -568,14 +572,18 @@ void PairPOD::copy_data_from_pod_class() besselparams[1] = fastpodptr->besselparams[1]; besselparams[2] = fastpodptr->besselparams[2]; + memory->destroy(abftm); memory->create(abftm, 4*K3, "abftm"); + memory->destroy(elemindex); memory->create(elemindex, nelements*nelements, "elemindex"); for (int i=0; ielemindex[i]; + memory->destroy(Phi); memory->create(Phi, ns * ns, "pair_pod:Phi"); for (int i=0; iPhi[i]; + memory->destroy(coefficients); memory->create(coefficients, nCoeffPerElement * nelements, "pair_pod:coefficients"); for (int i=0; icoeff[i]; @@ -590,11 +598,17 @@ void PairPOD::copy_data_from_pod_class() Centroids[i] = fastpodptr->Centroids[i]; } + memory->destroy(pn3); memory->create(pn3, nabf3+1, "pn3"); // array stores the number of monomials for each degree + memory->destroy(pq3); memory->create(pq3, K3*2, "pq3"); // array needed for the recursive computation of the angular basis functions + memory->destroy(pc3); memory->create(pc3, K3, "pc3"); // array needed for the computation of the three-body descriptors + memory->destroy(pa4); memory->create(pa4, nabf4+1, "pa4"); // this array is a subset of the array {0, 1, 4, 10, 19, 29, 47, 74, 89, 119, 155, 209, 230, 275, 335, 425, 533, 561, 624, 714, 849, 949, 1129, 1345} + memory->destroy(pb4); memory->create(pb4, Q4*3, "pb4"); // array stores the indices of the monomials needed for the computation of the angular basis functions + memory->destroy(pc4); memory->create(pc4, Q4, "pc4"); // array of monomial coefficients needed for the computation of the four-body descriptors for (int i=0; ipn3[i]; for (int i=0; ipc3[i]; @@ -890,7 +904,7 @@ void PairPOD::angularbasis(double *tm, double *tmu, double *tmv, double *tmw, in double tmvm = abfy[mj]; double tmwm = abfz[mj]; - double tmn, tmun, tmvn, tmwn; + double tmn = 0.0, tmun = 0.0, tmvn = 0.0, tmwn = 0.0; // Calculate angular basis function and its derivatives using recursion relation if (d==1) { tmn = tmm*u; diff --git a/src/MOLECULE/fix_cmap.cpp b/src/MOLECULE/fix_cmap.cpp index bc220da30e..631dfe7b4b 100644 --- a/src/MOLECULE/fix_cmap.cpp +++ b/src/MOLECULE/fix_cmap.cpp @@ -593,7 +593,6 @@ void FixCMAP::post_force(int vflag) vcmap[5] = (vb12y*f1[2])+(vb32y*f3[2])+((vb43y+vb32y)*f4[2])+ ((vb54y+vb43y+vb32y)*f5[2]); ev_tally(nlist,list,5.0,E,vcmap); - //ev_tally(5,list,nlocal,newton_bond,E,vcmap); } } } diff --git a/src/MOLECULE/pair_lj_cut_tip4p_cut.cpp b/src/MOLECULE/pair_lj_cut_tip4p_cut.cpp index 1c1dd5d8b9..7f968c1424 100644 --- a/src/MOLECULE/pair_lj_cut_tip4p_cut.cpp +++ b/src/MOLECULE/pair_lj_cut_tip4p_cut.cpp @@ -38,14 +38,18 @@ using namespace MathConst; /* ---------------------------------------------------------------------- */ -PairLJCutTIP4PCut::PairLJCutTIP4PCut(LAMMPS *lmp) : Pair(lmp) +PairLJCutTIP4PCut::PairLJCutTIP4PCut(LAMMPS *lmp) : + Pair(lmp), cut_lj(nullptr), cut_ljsq(nullptr), epsilon(nullptr), sigma(nullptr), lj1(nullptr), + lj2(nullptr), lj3(nullptr), lj4(nullptr), offset(nullptr), hneigh(nullptr), newsite(nullptr) + { single_enable = 0; writedata = 1; nmax = 0; - hneigh = nullptr; - newsite = nullptr; + + typeH = typeO = typeA = typeB = -1; + alpha = qdist = 0.0; // TIP4P cannot compute virial as F dot r // due to finding bonded H atoms which are not near O atom diff --git a/src/OPENMP/fix_rigid_omp.cpp b/src/OPENMP/fix_rigid_omp.cpp index 75794b3419..3a9965b0ee 100644 --- a/src/OPENMP/fix_rigid_omp.cpp +++ b/src/OPENMP/fix_rigid_omp.cpp @@ -491,11 +491,11 @@ void FixRigidOMP::set_xv_thr() double theta_body,theta; double ione[3],exone[3],eyone[3],ezone[3],p[3][3]; - AtomVecEllipsoid::Bonus *ebonus; + AtomVecEllipsoid::Bonus *ebonus = nullptr; if (avec_ellipsoid) ebonus = avec_ellipsoid->bonus; - AtomVecLine::Bonus *lbonus; + AtomVecLine::Bonus *lbonus = nullptr; if (avec_line) lbonus = avec_line->bonus; - AtomVecTri::Bonus *tbonus; + AtomVecTri::Bonus *tbonus = nullptr; if (avec_tri) tbonus = avec_tri->bonus; double **omega_one = atom->omega; double **angmom_one = atom->angmom; diff --git a/src/OPENMP/pair_airebo_omp.cpp b/src/OPENMP/pair_airebo_omp.cpp index 6736b10f8f..0effe79bc8 100644 --- a/src/OPENMP/pair_airebo_omp.cpp +++ b/src/OPENMP/pair_airebo_omp.cpp @@ -385,7 +385,7 @@ void PairAIREBOOMP::FLJ_thr(int ifrom, int ito, int eflag, double *pv1, ThrData // if best = 1.0, done REBO_neighs_i = REBO_firstneigh[i]; - for (kk = 0; kk < REBO_numneigh[i] && done==0; kk++) { + for (kk = 0; (kk < REBO_numneigh[i]) && (done == 0); kk++) { k = REBO_neighs_i[kk]; if (k == j) continue; ktype = map[type[k]]; @@ -397,7 +397,10 @@ void PairAIREBOOMP::FLJ_thr(int ifrom, int ito, int eflag, double *pv1, ThrData if (rsq < rcmaxsq[itype][ktype]) { rik = sqrt(rsq); wik = Sp(rik,rcmin[itype][ktype],rcmax[itype][ktype],dwik); - } else { dwik = wik = 0.0; rikS = rik = 1.0; } + } else { + dwik = wik = 0.0; + rikS = rik = 1.0; + } if (wik > best) { deljk[0] = x[j][0] - x[k][0]; @@ -436,7 +439,7 @@ void PairAIREBOOMP::FLJ_thr(int ifrom, int ito, int eflag, double *pv1, ThrData // if best = 1.0, done REBO_neighs_k = REBO_firstneigh[k]; - for (mm = 0; mm < REBO_numneigh[k] && done==0; mm++) { + for (mm = 0; (mm < REBO_numneigh[k]) && (done == 0); mm++) { m = REBO_neighs_k[mm]; if (m == i || m == j) continue; mtype = map[type[m]]; @@ -447,7 +450,10 @@ void PairAIREBOOMP::FLJ_thr(int ifrom, int ito, int eflag, double *pv1, ThrData if (rsq < rcmaxsq[ktype][mtype]) { rkm = sqrt(rsq); wkm = Sp(rkm,rcmin[ktype][mtype],rcmax[ktype][mtype],dwkm); - } else { dwkm = wkm = 0.0; rkmS = rkm = 1.0; } + } else { + dwkm = wkm = 0.0; + rkmS = rkm = 1.0; + } if (wik*wkm > best) { deljm[0] = x[j][0] - x[m][0]; diff --git a/src/QEQ/fix_qeq.cpp b/src/QEQ/fix_qeq.cpp index 47ad3d260f..0e1335282c 100644 --- a/src/QEQ/fix_qeq.cpp +++ b/src/QEQ/fix_qeq.cpp @@ -763,11 +763,12 @@ void FixQEq::read_file(char *file) chi[n] = eta[n] = gamma[n] = zeta[n] = zcore[n] = 0.0; } + FILE *fp = nullptr; try { int nlo,nhi; double val; - FILE *fp = utils::open_potential(file,lmp,nullptr); + fp = utils::open_potential(file,lmp,nullptr); if (fp == nullptr) throw qeq_parser_error(fmt::format("Cannot open fix qeq parameter file {}: {}", file,utils::getsyserror())); @@ -798,7 +799,7 @@ void FixQEq::read_file(char *file) for (int n=nlo; n <= nhi; ++n) setflag[n] = 1; } } catch (EOFException &) { - ; // catch and ignore to exit loop + fclose(fp); } catch (std::exception &e) { error->one(FLERR,e.what()); } diff --git a/src/QEQ/fix_qeq_point.cpp b/src/QEQ/fix_qeq_point.cpp index 3eb150559c..9ad580544e 100644 --- a/src/QEQ/fix_qeq_point.cpp +++ b/src/QEQ/fix_qeq_point.cpp @@ -54,6 +54,7 @@ void FixQEqPoint::init() neighbor->add_request(this, NeighConst::REQ_FULL); int ntypes = atom->ntypes; + memory->destroy(shld); memory->create(shld, ntypes + 1, ntypes + 1, "qeq:shielding"); } diff --git a/src/QEQ/fix_qeq_shielded.cpp b/src/QEQ/fix_qeq_shielded.cpp index 2e653b9226..b4827d8694 100644 --- a/src/QEQ/fix_qeq_shielded.cpp +++ b/src/QEQ/fix_qeq_shielded.cpp @@ -56,6 +56,7 @@ void FixQEqShielded::init() neighbor->add_request(this, NeighConst::REQ_FULL); const int ntypes = atom->ntypes; + memory->destroy(shld); memory->create(shld, ntypes + 1, ntypes + 1, "qeq:shielding"); init_shielding(); diff --git a/src/RHEO/pair_rheo.cpp b/src/RHEO/pair_rheo.cpp index 520a1c4470..8feac7ddcd 100644 --- a/src/RHEO/pair_rheo.cpp +++ b/src/RHEO/pair_rheo.cpp @@ -461,13 +461,13 @@ void PairRHEO::coeff(int narg, char **arg) void PairRHEO::setup() { - auto fixes = modify->get_fix_by_style("rheo"); + auto fixes = modify->get_fix_by_style("^rheo$"); if (fixes.size() == 0) error->all(FLERR, "Need to define fix rheo to use pair rheo"); if (fixes.size() > 1) error->all(FLERR, "Must have only one fix rheo defined"); fix_rheo = dynamic_cast(fixes[0]); // Currently only allow one instance of fix rheo/pressure - fixes = modify->get_fix_by_style("rheo/pressure"); + fixes = modify->get_fix_by_style("^rheo/pressure$"); if (fixes.size() == 0) error->all(FLERR, "Need to define fix rheo/pressure to use pair rheo"); if (fixes.size() > 1) error->all(FLERR, "Must have only one fix rheo/pressure defined"); fix_pressure = dynamic_cast(fixes[0]); diff --git a/src/RIGID/fix_rigid.cpp b/src/RIGID/fix_rigid.cpp index f4b82e1fd2..421a6cce2b 100644 --- a/src/RIGID/fix_rigid.cpp +++ b/src/RIGID/fix_rigid.cpp @@ -1463,11 +1463,11 @@ void FixRigid::set_xv() double theta_body,theta; double *shape,*quatatom,*inertiaatom; - AtomVecEllipsoid::Bonus *ebonus; + AtomVecEllipsoid::Bonus *ebonus = nullptr; if (avec_ellipsoid) ebonus = avec_ellipsoid->bonus; - AtomVecLine::Bonus *lbonus; + AtomVecLine::Bonus *lbonus = nullptr; if (avec_line) lbonus = avec_line->bonus; - AtomVecTri::Bonus *tbonus; + AtomVecTri::Bonus *tbonus = nullptr; if (avec_tri) tbonus = avec_tri->bonus; double **omega_one = atom->omega; double **angmom_one = atom->angmom; diff --git a/src/bond.cpp b/src/bond.cpp index b414ddbdca..e0ca37aa73 100644 --- a/src/bond.cpp +++ b/src/bond.cpp @@ -36,12 +36,13 @@ int Bond::instance_total = 0; a particular bond style can override this ------------------------------------------------------------------------- */ -Bond::Bond(LAMMPS *_lmp) : Pointers(_lmp) +Bond::Bond(LAMMPS *_lmp) : + Pointers(_lmp), setflag(nullptr), virial{0.0, 0.0, 0.0, 0.0, 0.0, 0.0}, eatom(nullptr), + vatom(nullptr), svector(nullptr) { instance_me = instance_total++; energy = 0.0; - virial[0] = virial[1] = virial[2] = virial[3] = virial[4] = virial[5] = 0.0; writedata = 1; reinitflag = 1; @@ -53,12 +54,8 @@ Bond::Bond(LAMMPS *_lmp) : Pointers(_lmp) partial_flag = 0; single_extra = 0; - svector = nullptr; maxeatom = maxvatom = 0; - eatom = nullptr; - vatom = nullptr; - setflag = nullptr; execution_space = Host; datamask_read = ALL_MASK; diff --git a/src/dump.cpp b/src/dump.cpp index c735a4a60d..8cc8d1c7db 100644 --- a/src/dump.cpp +++ b/src/dump.cpp @@ -573,7 +573,7 @@ void Dump::openfile() nameslist[numfiles] = utils::strdup(filecurrent); ++numfiles; } else { - remove(nameslist[fileidx]); + (void) remove(nameslist[fileidx]); delete[] nameslist[fileidx]; nameslist[fileidx] = utils::strdup(filecurrent); fileidx = (fileidx + 1) % maxfiles; diff --git a/src/fix_ave_chunk.cpp b/src/fix_ave_chunk.cpp index 9382b6d38e..d9723cec9f 100644 --- a/src/fix_ave_chunk.cpp +++ b/src/fix_ave_chunk.cpp @@ -899,7 +899,7 @@ void FixAveChunk::end_of_step() if (fp && comm->me == 0) { clearerr(fp); - if (overwrite) platform::fseek(fp,filepos); + if (overwrite) (void) platform::fseek(fp,filepos); double count = 0.0; for (m = 0; m < nchunk; m++) count += count_total[m]; fmt::print(fp,"{} {} {}\n",ntimestep,nchunk,count); diff --git a/src/fix_ave_histo.cpp b/src/fix_ave_histo.cpp index 9b384e60fa..35fd3fc4f9 100644 --- a/src/fix_ave_histo.cpp +++ b/src/fix_ave_histo.cpp @@ -716,7 +716,7 @@ void FixAveHisto::end_of_step() if (fp && comm->me == 0) { clearerr(fp); - if (overwrite) platform::fseek(fp,filepos); + if (overwrite) (void) platform::fseek(fp,filepos); fmt::print(fp,"{} {} {} {} {} {}\n",ntimestep,nbins, stats_total[0],stats_total[1],stats_total[2],stats_total[3]); if (stats_total[0] != 0.0) diff --git a/src/fix_ave_histo_weight.cpp b/src/fix_ave_histo_weight.cpp index cccfc86d59..c6f9b6ad22 100644 --- a/src/fix_ave_histo_weight.cpp +++ b/src/fix_ave_histo_weight.cpp @@ -453,7 +453,7 @@ void FixAveHistoWeight::end_of_step() if (fp && comm->me == 0) { clearerr(fp); - if (overwrite) platform::fseek(fp,filepos); + if (overwrite) (void) platform::fseek(fp,filepos); fmt::print(fp,"{} {} {} {} {} {}\n",ntimestep,nbins, stats_total[0],stats_total[1],stats_total[2],stats_total[3]); if (stats_total[0] != 0.0) diff --git a/src/fix_ave_time.cpp b/src/fix_ave_time.cpp index 417e0fd97a..72ff8ab6c1 100644 --- a/src/fix_ave_time.cpp +++ b/src/fix_ave_time.cpp @@ -640,7 +640,7 @@ void FixAveTime::invoke_scalar(bigint ntimestep) if (fp && comm->me == 0) { clearerr(fp); - if (overwrite) platform::fseek(fp,filepos); + if (overwrite) (void) platform::fseek(fp,filepos); if (yaml_flag) { if (!yaml_header || overwrite) { yaml_header = true; diff --git a/src/fix_store_global.cpp b/src/fix_store_global.cpp index 028d35810e..5baef27029 100644 --- a/src/fix_store_global.cpp +++ b/src/fix_store_global.cpp @@ -152,6 +152,7 @@ void FixStoreGlobal::restart(char *buf) // means the restart file is setting size of vec or array and doing init // because caller did not know size at time this fix was instantiated // reallocate vstore or astore accordingly + // also reset nrow,ncol to values from restart file if (n1 != n1_restart || n2 != n2_restart) { memory->destroy(vstore); @@ -165,8 +166,8 @@ void FixStoreGlobal::restart(char *buf) vecflag = 1; else arrayflag = 1; - n1 = n1_restart; - n2 = n2_restart; + nrow = n1 = n1_restart; + ncol = n2 = n2_restart; if (vecflag) memory->create(vstore, n1, "fix/store:vstore"); else if (arrayflag) diff --git a/src/info.cpp b/src/info.cpp index 43409fca67..98ed06f498 100644 --- a/src/info.cpp +++ b/src/info.cpp @@ -261,7 +261,7 @@ void Info::command(int narg, char **arg) ++idx; } } else { - error->warning(FLERR,"Ignoring unknown or incorrect info command flag"); + error->warning(FLERR,"Ignoring unknown or incorrect info command flag: {}",arg[idx]); ++idx; } } @@ -296,6 +296,7 @@ void Info::command(int narg, char **arg) if (has_png_support()) fputs("-DLAMMPS_PNG\n",out); if (has_jpeg_support()) fputs("-DLAMMPS_JPEG\n",out); if (has_ffmpeg_support()) fputs("-DLAMMPS_FFMPEG\n",out); + if (has_curl_support()) fputs("-DLAMMPS_CURL\n",out); if (has_fft_single_support()) fputs("-DFFT_SINGLE\n",out); #if defined(LAMMPS_BIGBIG) @@ -417,6 +418,12 @@ void Info::command(int narg, char **arg) fmt::print(out,"Atoms = {:12}, types = {:8d}, style = {}\n", atom->natoms, atom->ntypes, force->pair_style); + if (atom->tag_enable) fmt::print(out,"Atoms with atom IDs\n"); + if (atom->molecule) fmt::print(out,"Atoms with molecule IDs\n"); + if (atom->mass) fmt::print(out,"Atoms with per-type masses\n"); + if (atom->rmass) fmt::print(out,"Atoms with per-atom masses\n"); + if (atom->q) fmt::print(out,"Atoms with per-atom charges\n"); + if (force->pair && utils::strmatch(force->pair_style,"^hybrid")) { auto hybrid = dynamic_cast(force->pair); fmt::print(out,"Hybrid sub-styles:"); @@ -472,6 +479,8 @@ void Info::command(int narg, char **arg) } else { fputs("\nBox has not yet been created\n",out); } + fmt::print(out,"\nCurrent timestep number = {}\n", update->ntimestep); + fmt::print(out,"Current timestep size = {}\n", update->dt); } if (domain->box_exist && (flags & COEFFS)) { @@ -857,6 +866,8 @@ bool Info::is_available(const char *category, const char *name) return has_jpeg_support(); } else if (strcmp(name,"ffmpeg") == 0) { return has_ffmpeg_support(); + } else if (strcmp(name,"curl") == 0) { + return has_curl_support(); } else if (strcmp(name,"fft_single") == 0) { return has_fft_single_support(); } else if (strcmp(name,"exceptions") == 0) { @@ -1077,6 +1088,14 @@ bool Info::has_ffmpeg_support() { #endif } +bool Info::has_curl_support() { +#ifdef LAMMPS_CURL + return true; +#else + return false; +#endif +} + bool Info::has_fft_single_support() { #ifdef FFT_SINGLE return true; diff --git a/src/info.h b/src/info.h index 8fd725abf6..12c19eb877 100644 --- a/src/info.h +++ b/src/info.h @@ -28,7 +28,7 @@ namespace LAMMPS_NS { class Info : public Command { public: - Info(class LAMMPS *lmp) : Command(lmp){}; + Info(class LAMMPS *lmp) : Command(lmp) {}; void command(int, char **) override; bool is_active(const char *, const char *); @@ -42,6 +42,7 @@ class Info : public Command { static bool has_png_support(); static bool has_jpeg_support(); static bool has_ffmpeg_support(); + static bool has_curl_support(); static bool has_fft_single_support(); static bool has_exceptions(); static bool has_package(const std::string &); diff --git a/src/input.cpp b/src/input.cpp index 826b1821d5..c3409f13ff 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -884,7 +884,7 @@ int Input::execute_command() void Input::clear() { if (narg > 0) error->all(FLERR,"Illegal clear command: unexpected arguments but found {}", narg); - output->thermo->set_line(-1); + if (output->thermo) output->thermo->set_line(-1); lmp->destroy(); lmp->create(); lmp->post_create(); diff --git a/src/lammps.cpp b/src/lammps.cpp index 8e81f785de..d3b01dd328 100644 --- a/src/lammps.cpp +++ b/src/lammps.cpp @@ -210,6 +210,7 @@ LAMMPS::LAMMPS(int narg, char **arg, MPI_Comm communicator) : int kokkosflag = 0; int restart2data = 0; int restart2dump = 0; + int restart2info = 0; int restartremap = 0; int citeflag = 1; int citescreen = CiteMe::TERSE; @@ -382,8 +383,9 @@ LAMMPS::LAMMPS(int narg, char **arg, MPI_Comm communicator) : if (iarg+3 > narg) error->universe_all(FLERR,"Invalid command-line argument"); if (restart2dump) - error->universe_all(FLERR, - "Cannot use both -restart2data and -restart2dump"); + error->universe_all(FLERR, "Cannot use both -restart2data and -restart2dump"); + if (restart2info) + error->universe_all(FLERR, "Cannot use both -restart2data and -restart2info"); restart2data = 1; restartfile = arg[iarg+1]; inflag = -1; // skip inflag check @@ -405,8 +407,9 @@ LAMMPS::LAMMPS(int narg, char **arg, MPI_Comm communicator) : if (iarg+3 > narg) error->universe_all(FLERR,"Invalid command-line argument"); if (restart2data) - error->universe_all(FLERR, - "Cannot use both -restart2data and -restart2dump"); + error->universe_all(FLERR, "Cannot use both -restart2data and -restart2dump"); + if (restart2info) + error->universe_all(FLERR, "Cannot use both -restart2dump and -restart2info"); restart2dump = 1; restartfile = arg[iarg+1]; inflag = -1; // skip inflag check @@ -423,6 +426,23 @@ LAMMPS::LAMMPS(int narg, char **arg, MPI_Comm communicator) : while (iarg < narg && arg[iarg][0] != '-') iarg++; wlast = iarg; + } else if (strcmp(arg[iarg],"-restart2info") == 0 || + strcmp(arg[iarg],"-r2info") == 0) { + if (iarg+2 > narg) + error->universe_all(FLERR,"Invalid command-line argument"); + if (restart2data) + error->universe_all(FLERR, "Cannot use both -restart2data and -restart2info"); + if (restart2dump) + error->universe_all(FLERR, "Cannot use both -restart2dump and -restart2info"); + restart2info = 1; + restartfile = arg[iarg+1]; + inflag = -1; // skip inflag check + iarg += 2; + // delimit args for the info command + wfirst = iarg; + while (iarg < narg && arg[iarg][0] != '-') iarg++; + wlast = iarg; + } else if (strcmp(arg[iarg],"-screen") == 0 || strcmp(arg[iarg],"-sc") == 0) { if (iarg+2 > narg) @@ -728,17 +748,18 @@ LAMMPS::LAMMPS(int narg, char **arg, MPI_Comm communicator) : // if either restart conversion option was used, invoke 2 commands and quit // add args between wfirst and wlast to write_data or write_data command // add "noinit" to write_data to prevent a system init - // write_dump will just give a warning message about no init - if (restart2data || restart2dump) { + if (restart2data || restart2dump || restart2info) { std::string cmd = fmt::format("read_restart {}",restartfile); if (restartremap) cmd += " remap\n"; input->one(cmd); if (restart2data) cmd = "write_data "; - else cmd = "write_dump"; + else if (restart2dump) cmd = "write_dump"; + else cmd = "info system group compute fix"; for (iarg = wfirst; iarg < wlast; iarg++) cmd += fmt::format(" {}", arg[iarg]); - if (restart2data) cmd += " noinit"; + if (restart2data || restart2dump) + cmd += " noinit"; input->one(cmd); error->done(0); } @@ -1263,6 +1284,7 @@ void _noopt LAMMPS::help() "-restart2data rfile dfile ... : convert restart to data file (-r2data)\n" "-restart2dump rfile dgroup dstyle dfile ... \n" " : convert restart to dump file (-r2dump)\n" + "-restart2info rfile : print info about restart rfile (-r2info)\n" "-reorder topology-specs : processor reordering (-r)\n" "-screen none/filename : where to send screen output (-sc)\n" "-skiprun : skip loops in run and minimize (-sr)\n" @@ -1454,6 +1476,7 @@ void LAMMPS::print_config(FILE *fp) if (Info::has_png_support()) fputs("-DLAMMPS_PNG\n",fp); if (Info::has_jpeg_support()) fputs("-DLAMMPS_JPEG\n",fp); if (Info::has_ffmpeg_support()) fputs("-DLAMMPS_FFMPEG\n",fp); + if (Info::has_curl_support()) fputs("-DLAMMPS_CURL\n",fp); if (Info::has_fft_single_support()) fputs("-DFFT_SINGLE\n",fp); #if defined(LAMMPS_BIGBIG) fputs("-DLAMMPS_BIGBIG\n",fp); diff --git a/src/library.cpp b/src/library.cpp index 32577e47b4..9f77dad1c2 100644 --- a/src/library.cpp +++ b/src/library.cpp @@ -54,6 +54,7 @@ #include "universe.h" #include "update.h" #include "variable.h" +#include "version.h" #include @@ -1391,6 +1392,11 @@ int lammps_extract_global_datatype(void * /*handle*/, const char *name) if (strcmp(name,"respa_levels") == 0) return LAMMPS_INT; if (strcmp(name,"respa_dt") == 0) return LAMMPS_DOUBLE; + if (strcmp(name,"git_commit") == 0) return LAMMPS_STRING; + if (strcmp(name,"git_branch") == 0) return LAMMPS_STRING; + if (strcmp(name,"git_descriptor") == 0) return LAMMPS_STRING; + if (strcmp(name,"lammps_version") == 0) return LAMMPS_STRING; + if (strcmp(name,"boxlo") == 0) return LAMMPS_DOUBLE; if (strcmp(name,"boxhi") == 0) return LAMMPS_DOUBLE; if (strcmp(name,"sublo") == 0) return LAMMPS_DOUBLE; @@ -1547,6 +1553,56 @@ report the "native" data type. The following tables are provided: .. _extract_box_settings: +**Timestep settings** + +.. list-table:: + :header-rows: 1 + :widths: auto + + * - Name + - Type + - Length + - Description + * - dt + - double + - 1 + - length of the time step. See :doc:`timestep`. + * - ntimestep + - bigint + - 1 + - current time step number. See :doc:`reset_timestep`. + * - atime + - double + - 1 + - accumulated simulation time in time units. + +**Git revision and version settings** + +.. list-table:: + :header-rows: 1 + :widths: auto + + * - Name + - Type + - Length + - Description + * - git_commit + - const char \* + - 1 + - Git commit hash for the LAMMPS version. + * - git_branch + - const char \* + - 1 + - Git branch for the LAMMPS version. + * - git_descriptor + - const char \* + - 1 + - Combined descriptor for the git revision + * - lammps_version + - const char \* + - 1 + - LAMMPS version string. + **Simulation box settings** .. list-table:: @@ -1557,18 +1613,6 @@ report the "native" data type. The following tables are provided: - Type - Length - Description - * - boxlo - - double - - 3 - - lower box boundaries. See :doc:`create_box`. - * - boxhi - - double - - 3 - - upper box boundaries. See :doc:`create_box`. - * - boxxlo - - double - - 1 - - lower box boundary in x-direction. See :doc:`create_box`. * - boxxhi - double - 1 @@ -1866,6 +1910,12 @@ void *lammps_extract_global(void *handle, const char *name) if (strcmp(name,"respa_levels") == 0) return (void *) &respa->nlevels; if (strcmp(name,"respa_dt") == 0) return (void *) respa->step; } + + if (strcmp(name,"git_commit") == 0) return (void *)LAMMPS::git_commit; + if (strcmp(name,"git_branch") == 0) return (void *)LAMMPS::git_branch; + if (strcmp(name,"git_descriptor") == 0) return (void *)LAMMPS::git_descriptor; + if (strcmp(name,"lammps_version") == 0) return (void *)LAMMPS_VERSION; + if (strcmp(name,"boxlo") == 0) return (void *) lmp->domain->boxlo; if (strcmp(name,"boxhi") == 0) return (void *) lmp->domain->boxhi; if (strcmp(name,"sublo") == 0) return (void *) lmp->domain->sublo; @@ -1877,6 +1927,7 @@ void *lammps_extract_global(void *handle, const char *name) if (strcmp(name,"subhi_lambda") == 0) return (void *) lmp->domain->subhi_lamda; } + if (strcmp(name,"boxxlo") == 0) return (void *) &lmp->domain->boxlo[0]; if (strcmp(name,"boxxhi") == 0) return (void *) &lmp->domain->boxhi[0]; if (strcmp(name,"boxylo") == 0) return (void *) &lmp->domain->boxlo[1]; @@ -5826,6 +5877,26 @@ int lammps_config_has_ffmpeg_support() { /* ---------------------------------------------------------------------- */ +/** Check if the LAMMPS library supports downloading files via libcurl + +\verbatim embed:rst + +.. versionadded::TBD + +The LAMMPS :doc:`geturl command ` supports downloading files +through using `the libcurl library `_. +This function checks whether this feature was :ref:`enabled at compile +time ` and LAMMPS linked to the libcurl library. +\endverbatim + * + * \return 1 if yes, otherwise 0 + */ +int lammps_config_has_curl_support() { + return Info::has_curl_support() ? 1 : 0; +} + +/* ---------------------------------------------------------------------- */ + /** Check whether LAMMPS errors will throw C++ exceptions. * \verbatim embed:rst diff --git a/src/library.h b/src/library.h index 38ecffb772..ff16aaa088 100644 --- a/src/library.h +++ b/src/library.h @@ -243,6 +243,7 @@ int lammps_config_has_gzip_support(); int lammps_config_has_png_support(); int lammps_config_has_jpeg_support(); int lammps_config_has_ffmpeg_support(); +int lammps_config_has_curl_support(); int lammps_config_has_exceptions(); int lammps_config_has_package(const char *); diff --git a/src/min.cpp b/src/min.cpp index e64ff9cb29..931031e44a 100644 --- a/src/min.cpp +++ b/src/min.cpp @@ -785,7 +785,7 @@ void Min::ev_set(bigint ntimestep) int flag; int eflag_global = 1; - for (auto &icompute : elist_global) icompute->matchstep(ntimestep); + for (auto &icompute : elist_global) (void) icompute->matchstep(ntimestep); flag = 0; int eflag_atom = 0; diff --git a/src/pair.cpp b/src/pair.cpp index 0f070e3bf8..5421108eba 100644 --- a/src/pair.cpp +++ b/src/pair.cpp @@ -53,14 +53,15 @@ int Pair::instance_total = 0; /* ---------------------------------------------------------------------- */ Pair::Pair(LAMMPS *lmp) : - Pointers(lmp), eatom(nullptr), vatom(nullptr), cvatom(nullptr), cutsq(nullptr), - setflag(nullptr), cutghost(nullptr), rtable(nullptr), drtable(nullptr), ftable(nullptr), - dftable(nullptr), ctable(nullptr), dctable(nullptr), etable(nullptr), detable(nullptr), - ptable(nullptr), dptable(nullptr), vtable(nullptr), dvtable(nullptr), rdisptable(nullptr), - drdisptable(nullptr), fdisptable(nullptr), dfdisptable(nullptr), edisptable(nullptr), - dedisptable(nullptr), pvector(nullptr), svector(nullptr), list(nullptr), listhalf(nullptr), - listfull(nullptr), list_tally_compute(nullptr), elements(nullptr), elem1param(nullptr), - elem2param(nullptr), elem3param(nullptr), map(nullptr) + Pointers(lmp), virial{0.0, 0.0, 0.0, 0.0, 0.0, 0.0}, eatom(nullptr), vatom(nullptr), + cvatom(nullptr), cutsq(nullptr), setflag(nullptr), cutghost(nullptr), rtable(nullptr), + drtable(nullptr), ftable(nullptr), dftable(nullptr), ctable(nullptr), dctable(nullptr), + etable(nullptr), detable(nullptr), ptable(nullptr), dptable(nullptr), vtable(nullptr), + dvtable(nullptr), rdisptable(nullptr), drdisptable(nullptr), fdisptable(nullptr), + dfdisptable(nullptr), edisptable(nullptr), dedisptable(nullptr), pvector(nullptr), + svector(nullptr), list(nullptr), listhalf(nullptr), listfull(nullptr), + list_tally_compute(nullptr), elements(nullptr), elem1param(nullptr), elem2param(nullptr), + elem3param(nullptr), map(nullptr) { instance_me = instance_total++; diff --git a/src/platform.cpp b/src/platform.cpp index 7cc4815f51..efed301db7 100644 --- a/src/platform.cpp +++ b/src/platform.cpp @@ -942,7 +942,7 @@ int platform::ftruncate(FILE *fp, bigint length) return 1; } #else - platform::fseek(fp, length); + (void) platform::fseek(fp, length); return ::ftruncate(fileno(fp), (off_t) length); #endif } diff --git a/src/read_restart.cpp b/src/read_restart.cpp index ef30bc81d7..615dd4b4b0 100644 --- a/src/read_restart.cpp +++ b/src/read_restart.cpp @@ -1030,11 +1030,11 @@ void ReadRestart::check_eof_magic() if (me == 0) { bigint curpos = platform::ftell(fp); - platform::fseek(fp,platform::END_OF_FILE); + (void) platform::fseek(fp,platform::END_OF_FILE); bigint offset = platform::ftell(fp) - n; - platform::fseek(fp,offset); + (void) platform::fseek(fp,offset); utils::sfread(FLERR,str,sizeof(char),n,fp,nullptr,error); - platform::fseek(fp,curpos); + (void) platform::fseek(fp,curpos); } MPI_Bcast(str,n,MPI_CHAR,0,world); diff --git a/src/reader_native.cpp b/src/reader_native.cpp index f252e01644..f0a4976038 100644 --- a/src/reader_native.cpp +++ b/src/reader_native.cpp @@ -542,7 +542,7 @@ void ReaderNative::skip_buf(size_t size) { bigint pos = platform::ftell(fp); pos += size; - platform::fseek(fp,pos); + (void) platform::fseek(fp,pos); } bool ReaderNative::is_known_magic_str() const diff --git a/src/update.cpp b/src/update.cpp index 9494629221..08f9147b5d 100644 --- a/src/update.cpp +++ b/src/update.cpp @@ -63,6 +63,7 @@ Update::Update(LAMMPS *lmp) : restrict_output = 0; setupflag = 0; multireplica = 0; + nsteps = 0; eflag_global = vflag_global = -1; eflag_atom = vflag_atom = 0; diff --git a/src/variable.cpp b/src/variable.cpp index 12ae516983..b2f6c2882c 100644 --- a/src/variable.cpp +++ b/src/variable.cpp @@ -817,7 +817,7 @@ int Variable::next(int narg, char **arg) fprintf(fp,"%d\n",nextindex+1); fclose(fp); fp = nullptr; - rename("tmp.lammps.variable.lock","tmp.lammps.variable"); + (void) rename("tmp.lammps.variable.lock","tmp.lammps.variable"); if (universe->uscreen) fprintf(universe->uscreen, "Increment via next: value %d on partition %d\n", nextindex+1,universe->iworld); diff --git a/src/version.h b/src/version.h index eb26209afb..af7e87b61f 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1,2 @@ #define LAMMPS_VERSION "27 Jun 2024" +#define LAMMPS_UPDATE "Development" diff --git a/src/write_data.cpp b/src/write_data.cpp index bc6f1773d4..76d1c598ca 100644 --- a/src/write_data.cpp +++ b/src/write_data.cpp @@ -42,11 +42,7 @@ enum{ELLIPSOID,LINE,TRIANGLE,BODY}; // also in AtomVecHybrid /* ---------------------------------------------------------------------- */ -WriteData::WriteData(LAMMPS *lmp) : Command(lmp) -{ - MPI_Comm_rank(world,&me); - MPI_Comm_size(world,&nprocs); -} +WriteData::WriteData(LAMMPS *lmp) : Command(lmp) {} /* ---------------------------------------------------------------------- called as write_data command in input script @@ -74,12 +70,12 @@ void WriteData::command(int narg, char **arg) fixflag = 1; triclinic_general = 0; lmapflag = 1; + noinitflag = 0; // store current (default) setting since we may change it int domain_triclinic_general = domain->triclinic_general; int types_style = atom->types_style; - int noinit = 0; int iarg = 1; while (iarg < narg) { @@ -90,7 +86,7 @@ void WriteData::command(int narg, char **arg) else error->all(FLERR,"Unknown write_data pair option: {}", arg[iarg+1]); iarg += 2; } else if (strcmp(arg[iarg],"noinit") == 0) { - noinit = 1; + noinitflag = 1; iarg++; } else if (strcmp(arg[iarg],"nocoeff") == 0) { coeffflag = 0; @@ -130,7 +126,7 @@ void WriteData::command(int narg, char **arg) // pair->init() can fail due to various unset values: // e.g. pair hybrid coeffs, dpd ghost-atom velocity setting - if (noinit == 0) { + if (noinitflag == 0) { if (comm->me == 0) utils::logmesg(lmp,"System init for write_data ...\n"); lmp->init(); @@ -206,7 +202,7 @@ void WriteData::write(const std::string &file) // open data file - if (me == 0) { + if (comm->me == 0) { fp = fopen(file.c_str(),"w"); if (fp == nullptr) error->one(FLERR,"Cannot open data file {}: {}", file, utils::getsyserror()); @@ -215,7 +211,7 @@ void WriteData::write(const std::string &file) // proc 0 writes header, ntype-length arrays, force fields // label map must come before coeffs - if (me == 0) { + if (comm->me == 0) { header(); if (lmapflag && atom->labelmapflag) atom->lmap->write_data(fp); type_arrays(); @@ -234,7 +230,7 @@ void WriteData::write(const std::string &file) if (atom->tag_enable) { if (natoms) velocities(); } else { - if (me == 0) + if (comm->me == 0) error->warning(FLERR, "Not writing Velocities section of data file without atom IDs"); } @@ -269,7 +265,7 @@ void WriteData::write(const std::string &file) // close data file - if (me == 0) fclose(fp); + if (comm->me == 0) fclose(fp); } /* ---------------------------------------------------------------------- @@ -370,6 +366,15 @@ void WriteData::force_fields() fmt::print(fp,"\nPair Coeffs # {}\n\n", force->pair_style); force->pair->write_data(fp); } else if (pairflag == IJ) { + // try computing mixed pair coeffs in case we skipped lmp->init() + // this block of code is currently only accessed from LAMMPS-GUI's restart inspector + if (force->pair->allocated && noinitflag) { + if (comm->me == 0) error->warning(FLERR,"Computing missing pair coeffs from mixing"); + for (int i=1; i < atom->ntypes; ++i) + for (int j=i; j <=atom->ntypes; ++j) + if (!force->pair->setflag[i][j]) + force->pair->init_one(i, j); + } fmt::print(fp,"\nPairIJ Coeffs # {}\n\n", force->pair_style); force->pair->write_data_all(fp); } @@ -407,7 +412,7 @@ void WriteData::atoms() MPI_Allreduce(&sendrow,&maxrow,1,MPI_INT,MPI_MAX,world); double **buf; - if (me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); + if (comm->me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); else memory->create(buf,MAX(1,sendrow),ncol,"write_data:buf"); // pack my atom data into buf @@ -420,12 +425,12 @@ void WriteData::atoms() int tmp,recvrow; - if (me == 0) { + if (comm->me == 0) { MPI_Status status; MPI_Request request; fmt::print(fp,"\nAtoms # {}\n\n",atom->atom_style); - for (int iproc = 0; iproc < nprocs; iproc++) { + for (int iproc = 0; iproc < comm->nprocs; iproc++) { if (iproc) { MPI_Irecv(&buf[0][0],maxrow*ncol,MPI_DOUBLE,iproc,0,world,&request); MPI_Send(&tmp,0,MPI_INT,iproc,0,world); @@ -460,7 +465,7 @@ void WriteData::velocities() MPI_Allreduce(&sendrow,&maxrow,1,MPI_INT,MPI_MAX,world); double **buf; - if (me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); + if (comm->me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); else memory->create(buf,MAX(1,sendrow),ncol,"write_data:buf"); // pack my velocity data into buf @@ -473,12 +478,12 @@ void WriteData::velocities() int tmp,recvrow; - if (me == 0) { + if (comm->me == 0) { MPI_Status status; MPI_Request request; fputs("\nVelocities\n\n",fp); - for (int iproc = 0; iproc < nprocs; iproc++) { + for (int iproc = 0; iproc < comm->nprocs; iproc++) { if (iproc) { MPI_Irecv(&buf[0][0],maxrow*ncol,MPI_DOUBLE,iproc,0,world,&request); MPI_Send(&tmp,0,MPI_INT,iproc,0,world); @@ -513,7 +518,7 @@ void WriteData::bonds() MPI_Allreduce(&sendrow,&maxrow,1,MPI_INT,MPI_MAX,world); tagint **buf; - if (me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); + if (comm->me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); else memory->create(buf,MAX(1,sendrow),ncol,"write_data:buf"); // pack my bond data into buf @@ -527,12 +532,12 @@ void WriteData::bonds() int tmp,recvrow; int index = 1; - if (me == 0) { + if (comm->me == 0) { MPI_Status status; MPI_Request request; fputs("\nBonds\n\n",fp); - for (int iproc = 0; iproc < nprocs; iproc++) { + for (int iproc = 0; iproc < comm->nprocs; iproc++) { if (iproc) { MPI_Irecv(&buf[0][0],maxrow*ncol,MPI_LMP_TAGINT,iproc,0,world,&request); MPI_Send(&tmp,0,MPI_INT,iproc,0,world); @@ -568,7 +573,7 @@ void WriteData::angles() MPI_Allreduce(&sendrow,&maxrow,1,MPI_INT,MPI_MAX,world); tagint **buf; - if (me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); + if (comm->me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); else memory->create(buf,MAX(1,sendrow),ncol,"write_data:buf"); // pack my angle data into buf @@ -582,12 +587,12 @@ void WriteData::angles() int tmp,recvrow; int index = 1; - if (me == 0) { + if (comm->me == 0) { MPI_Status status; MPI_Request request; fputs("\nAngles\n\n",fp); - for (int iproc = 0; iproc < nprocs; iproc++) { + for (int iproc = 0; iproc < comm->nprocs; iproc++) { if (iproc) { MPI_Irecv(&buf[0][0],maxrow*ncol,MPI_LMP_TAGINT,iproc,0,world,&request); MPI_Send(&tmp,0,MPI_INT,iproc,0,world); @@ -623,7 +628,7 @@ void WriteData::dihedrals() MPI_Allreduce(&sendrow,&maxrow,1,MPI_INT,MPI_MAX,world); tagint **buf; - if (me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); + if (comm->me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); else memory->create(buf,MAX(1,sendrow),ncol,"write_data:buf"); // pack my dihedral data into buf @@ -637,12 +642,12 @@ void WriteData::dihedrals() int tmp,recvrow; int index = 1; - if (me == 0) { + if (comm->me == 0) { MPI_Status status; MPI_Request request; fputs("\nDihedrals\n\n",fp); - for (int iproc = 0; iproc < nprocs; iproc++) { + for (int iproc = 0; iproc < comm->nprocs; iproc++) { if (iproc) { MPI_Irecv(&buf[0][0],maxrow*ncol,MPI_LMP_TAGINT,iproc,0,world,&request); MPI_Send(&tmp,0,MPI_INT,iproc,0,world); @@ -678,7 +683,7 @@ void WriteData::impropers() MPI_Allreduce(&sendrow,&maxrow,1,MPI_INT,MPI_MAX,world); tagint **buf; - if (me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); + if (comm->me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); else memory->create(buf,MAX(1,sendrow),ncol,"write_data:buf"); // pack my improper data into buf @@ -692,12 +697,12 @@ void WriteData::impropers() int tmp,recvrow; int index = 1; - if (me == 0) { + if (comm->me == 0) { MPI_Status status; MPI_Request request; fputs("\nImpropers\n\n",fp); - for (int iproc = 0; iproc < nprocs; iproc++) { + for (int iproc = 0; iproc < comm->nprocs; iproc++) { if (iproc) { MPI_Irecv(&buf[0][0],maxrow*ncol,MPI_LMP_TAGINT,iproc,0,world,&request); MPI_Send(&tmp,0,MPI_INT,iproc,0,world); @@ -733,7 +738,7 @@ void WriteData::bonus(int flag) MPI_Allreduce(&nvalues,&maxvalues,1,MPI_INT,MPI_MAX,world); double *buf = nullptr; - if (me == 0) memory->create(buf,MAX(1,maxvalues),"write_data:buf"); + if (comm->me == 0) memory->create(buf,MAX(1,maxvalues),"write_data:buf"); else memory->create(buf,MAX(1,nvalues),"write_data:buf"); // pack my bonus data into buf @@ -746,7 +751,7 @@ void WriteData::bonus(int flag) int tmp; - if (me == 0) { + if (comm->me == 0) { MPI_Status status; MPI_Request request; @@ -755,7 +760,7 @@ void WriteData::bonus(int flag) if (flag == TRIANGLE) fputs("\nTriangles\n\n",fp); if (flag == BODY) fputs("\nBodies\n\n",fp); - for (int iproc = 0; iproc < nprocs; iproc++) { + for (int iproc = 0; iproc < comm->nprocs; iproc++) { if (iproc) { MPI_Irecv(buf,maxvalues,MPI_DOUBLE,iproc,0,world,&request); MPI_Send(&tmp,0,MPI_INT,iproc,0,world); @@ -789,7 +794,7 @@ void WriteData::fix(Fix *ifix, int mth) MPI_Allreduce(&sendrow,&maxrow,1,MPI_INT,MPI_MAX,world); double **buf; - if (me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); + if (comm->me == 0) memory->create(buf,MAX(1,maxrow),ncol,"write_data:buf"); else memory->create(buf,MAX(1,sendrow),ncol,"write_data:buf"); // pack my fix data into buf @@ -803,12 +808,12 @@ void WriteData::fix(Fix *ifix, int mth) int tmp,recvrow; int index = 1; - if (me == 0) { + if (comm->me == 0) { MPI_Status status; MPI_Request request; ifix->write_data_section_keyword(mth,fp); - for (int iproc = 0; iproc < nprocs; iproc++) { + for (int iproc = 0; iproc < comm->nprocs; iproc++) { if (iproc) { MPI_Irecv(&buf[0][0],maxrow*ncol,MPI_DOUBLE,iproc,0,world,&request); MPI_Send(&tmp,0,MPI_INT,iproc,0,world); diff --git a/src/write_data.h b/src/write_data.h index ebaa97ffc0..b98fd6594d 100644 --- a/src/write_data.h +++ b/src/write_data.h @@ -31,12 +31,12 @@ class WriteData : public Command { void write(const std::string &); private: - int me, nprocs; int pairflag; int coeffflag; int fixflag; int triclinic_general; int lmapflag; + int noinitflag; FILE *fp; bigint nbonds_local, nbonds; bigint nangles_local, nangles; diff --git a/src/write_dump.cpp b/src/write_dump.cpp index 8cd7dec88e..1932f08186 100644 --- a/src/write_dump.cpp +++ b/src/write_dump.cpp @@ -50,23 +50,41 @@ void WriteDump::command(int narg, char **arg) int dumpfreq = MAX(1, update->nsteps); dumpfreq += update->ntimestep % dumpfreq; + std::string dump_id = "WRITE_DUMP"; auto dumpargs = new char *[modindex + 2]; - dumpargs[0] = (char *) "WRITE_DUMP"; // dump id + dumpargs[0] = (char *) dump_id.c_str(); // dump id dumpargs[1] = arg[0]; // group dumpargs[2] = arg[1]; // dump style dumpargs[3] = utils::strdup(std::to_string(dumpfreq)); // dump frequency - for (int i = 2; i < modindex; ++i) dumpargs[i + 2] = arg[i]; + // copy arguments up to modify, but skip over "noinit" if present - Dump *dump = output->add_dump(modindex + 2, dumpargs); - if (modindex < narg) dump->modify_params(narg - modindex - 1, &arg[modindex + 1]); + int noinitwarn = 0; + for (int i = 2; i < modindex; ++i) { + if (strcmp(arg[i], "noinit") == 0) { + noinitwarn = 1; + } else { + dumpargs[i + 2 - noinitwarn] = arg[i]; + } + } + + auto *dump = output->add_dump(modindex + 2 - noinitwarn, dumpargs); + + try { + if (modindex < narg) dump->modify_params(narg - modindex - 1, &arg[modindex + 1]); + } catch (LAMMPSException &e) { + // delete dump after error and then rethrow the exception to avoid re-use of dump-ID error + dump = output->get_dump_by_id(dump_id); + if (dump) output->delete_dump(dump_id); + throw e; + } // write out one frame and then delete the dump again // set multifile_override for DumpImage so that filename needs no "*" if (strcmp(arg[1], "image") == 0) (dynamic_cast(dump))->multifile_override = 1; if (strcmp(arg[1], "cfg") == 0) (dynamic_cast(dump))->multifile_override = 1; - if ((update->first_update == 0) && (comm->me == 0)) + if ((update->first_update == 0) && (comm->me == 0) && (noinitwarn == 0)) error->warning(FLERR, "Calling write_dump before a full system init."); dump->init(); @@ -74,7 +92,7 @@ void WriteDump::command(int narg, char **arg) // delete the Dump instance and local storage - output->delete_dump(dumpargs[0]); + output->delete_dump(dump_id); delete[] dumpargs[3]; delete[] dumpargs; } diff --git a/tools/lammps-gui/CMakeLists.txt b/tools/lammps-gui/CMakeLists.txt index 7abf8f1e67..ce7805bc2e 100644 --- a/tools/lammps-gui/CMakeLists.txt +++ b/tools/lammps-gui/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(lammps-gui VERSION 1.6.5 LANGUAGES CXX) +project(lammps-gui VERSION 1.6.7 LANGUAGES CXX) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTOMOC ON) @@ -198,8 +198,37 @@ if(BUILD_OMP) target_link_libraries(lammps-gui PRIVATE OpenMP::OpenMP_CXX) endif() +# build LAMMPS-GUI and LAMMPS as flatpak, if tools are installed +find_program(FLATPAK_COMMAND flatpak DOC "Path to flatpak command") +find_program(FLATPAK_BUILDER flatpak-builder DOC "Path to flatpak-builder command") +if(FLATPAK_COMMAND AND FLATPAK_BUILDER) + file(STRINGS ${LAMMPS_DIR}/src/version.h line REGEX LAMMPS_VERSION) + string(REGEX REPLACE "#define LAMMPS_VERSION \"([0-9]+) ([A-Za-z][A-Za-z][A-Za-z])[A-Za-z]* ([0-9]+)\"" + "\\1\\2\\3" LAMMPS_RELEASE "${line}") + set(FLATPAK_BUNDLE "LAMMPS_GUI-Linux-amd64-${LAMMPS_RELEASE}.flatpak") + add_custom_target(flatpak + COMMAND ${FLATPAK_COMMAND} --user remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo + COMMAND ${FLATPAK_BUILDER} --force-clean --verbose --repo=${CMAKE_CURRENT_BINARY_DIR}/flatpak-repo + --install-deps-from=flathub --state-dir=${CMAKE_CURRENT_BINARY_DIR} + --user --ccache --default-branch=${LAMMPS_RELEASE} + flatpak-build ${LAMMPS_DIR}/tools/lammps-gui/org.lammps.lammps-gui.yml + COMMAND ${FLATPAK_COMMAND} build-bundle --runtime-repo=https://flathub.org/repo/flathub.flatpakrepo --verbose + ${CMAKE_CURRENT_BINARY_DIR}/flatpak-repo + ${FLATPAK_BUNDLE} org.lammps.lammps-gui ${LAMMPS_RELEASE} + COMMENT "Create Flatpak bundle file of LAMMPS-GUI and LAMMPS" + BYPRODUCT ${FLATPAK_BUNDLE} + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} + ) +else() + add_custom_target(flatpak + COMMAND ${CMAKE_COMMAND} -E echo "The flatpak and flatpak-builder commands required to build a LAMMPS-GUI flatpak bundle were not found. Skipping.") +endif() + # when compiling on macOS, create an "app bundle" if(APPLE) + file(STRINGS ${LAMMPS_DIR}/src/version.h line REGEX LAMMPS_VERSION) + string(REGEX REPLACE "#define LAMMPS_VERSION \"([0-9]+) ([A-Za-z][A-Za-z][A-Za-z])[A-Za-z]* ([0-9]+)\"" + "\\1\\2\\3" LAMMPS_RELEASE "${line}") set_target_properties(lammps-gui PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${LAMMPS_DIR}/cmake/packaging/MacOSXBundleInfo.plist.in MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} @@ -247,14 +276,17 @@ if(APPLE) set(FFMPEG_TARGET copy-ffmpeg) endif() add_custom_target(dmg - COMMAND ${LAMMPS_DIR}/cmake/packaging/build_macos_dmg.sh + COMMAND ${LAMMPS_DIR}/cmake/packaging/build_macos_dmg.sh ${LAMMPS_RELEASE} DEPENDS complete-bundle ${FFMPEG_TARGET} COMMENT "Create Drag-n-Drop installer disk image from app bundle" - BYPRODUCT LAMMPS-macOS-multiarch.dmg + BYPRODUCT LAMMPS-macOS-multiarch-${LAMMPS_VERSION}.dmg WORKING_DIRECTORY ${CMAKE_BINARY_DIR} ) # settings or building on Windows with Visual Studio elseif(MSVC) + file(STRINGS ${LAMMPS_DIR}/src/version.h line REGEX LAMMPS_VERSION) + string(REGEX REPLACE "#define LAMMPS_VERSION \"([0-9]+) ([A-Za-z][A-Za-z][A-Za-z])[A-Za-z]* ([0-9]+)\"" + "\\1\\2\\3" LAMMPS_RELEASE "${line}") install(TARGETS lammps-gui DESTINATION ${CMAKE_INSTALL_BINDIR}) install(FILES $ TYPE BIN) if(BUILD_SHARED_LIBS) @@ -269,6 +301,9 @@ elseif(MSVC) get_filename_component(INSTNAME ${CMAKE_INSTALL_PREFIX} NAME) install(CODE "execute_process(COMMAND \"${CMAKE_COMMAND}\" -D INSTNAME=${INSTNAME} -D VC_INIT=\"${VC_INIT}\" -D QT5_BIN_DIR=\"${QT5_BIN_DIR}\" -P \"${CMAKE_SOURCE_DIR}/packaging/build_windows_vs.cmake\" WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}/..\" COMMAND_ECHO STDOUT)") elseif((CMAKE_SYSTEM_NAME STREQUAL "Windows") AND CMAKE_CROSSCOMPILING) + file(STRINGS ${LAMMPS_DIR}/src/version.h line REGEX LAMMPS_VERSION) + string(REGEX REPLACE "#define LAMMPS_VERSION \"([0-9]+) ([A-Za-z][A-Za-z][A-Za-z])[A-Za-z]* ([0-9]+)\"" + "\\1\\2\\3" LAMMPS_RELEASE "${line}") install(TARGETS lammps-gui DESTINATION ${CMAKE_INSTALL_BINDIR}) install(FILES $ TYPE BIN) if(BUILD_SHARED_LIBS) @@ -276,14 +311,18 @@ elseif((CMAKE_SYSTEM_NAME STREQUAL "Windows") AND CMAKE_CROSSCOMPILING) endif() install(FILES $ TYPE BIN) add_custom_target(zip - COMMAND sh -vx ${LAMMPS_DIR}/cmake/packaging/build_windows_cross_zip.sh ${CMAKE_INSTALL_PREFIX} + COMMAND sh -vx ${LAMMPS_DIR}/cmake/packaging/build_windows_cross_zip.sh ${CMAKE_INSTALL_PREFIX} ${LAMMPS_RELEASE} DEPENDS lmp lammps-gui COMMENT "Create zip file with windows binaries" - BYPRODUCT LAMMPS-Win10-amd64.zip + BYPRODUCT LAMMPS-Win10-amd64-${LAMMPS_VERSION}.zip WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) elseif((CMAKE_SYSTEM_NAME STREQUAL "Linux") AND NOT LAMMPS_GUI_USE_PLUGIN) + file(STRINGS ${LAMMPS_DIR}/src/version.h line REGEX LAMMPS_VERSION) + string(REGEX REPLACE "#define LAMMPS_VERSION \"([0-9]+) ([A-Za-z][A-Za-z][A-Za-z])[A-Za-z]* ([0-9]+)\"" + "\\1\\2\\3" LAMMPS_RELEASE "${line}") install(TARGETS lammps-gui DESTINATION ${CMAKE_INSTALL_BINDIR}) install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/lammps-gui.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications/) + install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/lammps-gui.appdata.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/appdata/) install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/lammps-input.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/mime/packages/) install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/lammps-input.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/mime/text/x-application-lammps.xml) install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/icons/hicolor DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/) @@ -307,11 +346,12 @@ elseif((CMAKE_SYSTEM_NAME STREQUAL "Linux") AND NOT LAMMPS_GUI_USE_PLUGIN) message(WARNING "Unresolved dependencies detected: ${_u_deps}") endif() ]] ) + add_custom_target(tgz - COMMAND ${LAMMPS_DIR}/cmake/packaging/build_linux_tgz.sh + COMMAND ${LAMMPS_DIR}/cmake/packaging/build_linux_tgz.sh ${LAMMPS_RELEASE} DEPENDS lammps-gui - COMMENT "Create compressed tar file of LAMMPS with dependent libraries and wrapper" - BYPRODUCT LAMMPS-Linux-amd64.tar.gz + COMMENT "Create compressed tar file of LAMMPS-GUI with dependent libraries and wrapper" + BYPRODUCT LAMMPS-Linux-amd64-${LAMMPS_RELEASE}.tar.gz WORKING_DIRECTORY ${CMAKE_BINARY_DIR} ) endif() diff --git a/tools/lammps-gui/TODO.md b/tools/lammps-gui/TODO.md index bef30c1309..9485368374 100644 --- a/tools/lammps-gui/TODO.md +++ b/tools/lammps-gui/TODO.md @@ -4,7 +4,11 @@ LAMMPS-GUI TODO list: - figure out how widgets can be resized to fraction of available screen size. - figure out stacking order of frames and whether it can be more flexible -- bundle LAMMPS tutorial input files +- figure out how to avoid corrupted cached thermo data while reading it. +- implement a timed "Auto-Save" feature that saves after some idle time. set timeout in Editor preferences. +- add a "Colors" menu to the image viewer to adjust color settings for the + current image (unlike the defaults in the perferences). Support color by + property (e.g. scan computes or fixes with per-atom data), define colormaps etc. - implement indenting regions for (nested) loops? - implement data file manager GUI with the following features: diff --git a/tools/lammps-gui/chartviewer.h b/tools/lammps-gui/chartviewer.h index 37a26c8b57..11a8980d5f 100644 --- a/tools/lammps-gui/chartviewer.h +++ b/tools/lammps-gui/chartviewer.h @@ -90,7 +90,7 @@ public: int get_index() const { return index; }; int get_count() const { return series->count(); } - const char *get_title() const { return series->name().toLocal8Bit(); } + QString get_title() const { return series->name(); } double get_step(int index) const { return (index < 0) ? 0.0 : series->at(index).x(); } double get_data(int index) const { return (index < 0) ? 0.0 : series->at(index).y(); } diff --git a/tools/lammps-gui/codeeditor.cpp b/tools/lammps-gui/codeeditor.cpp index 36a811b92d..fd86b5199e 100644 --- a/tools/lammps-gui/codeeditor.cpp +++ b/tools/lammps-gui/codeeditor.cpp @@ -14,6 +14,7 @@ #include "codeeditor.h" #include "fileviewer.h" #include "lammpsgui.h" +#include "lammpswrapper.h" #include "linenumberarea.h" #include @@ -142,10 +143,12 @@ CodeEditor::CodeEditor(QWidget *parent) : minimize_comp(new QCompleter(this)), variable_comp(new QCompleter(this)), units_comp(new QCompleter(this)), group_comp(new QCompleter(this)), varname_comp(new QCompleter(this)), fixid_comp(new QCompleter(this)), - compid_comp(new QCompleter(this)), file_comp(new QCompleter(this)), highlight(NO_HIGHLIGHT) + compid_comp(new QCompleter(this)), file_comp(new QCompleter(this)), + extra_comp(new QCompleter(this)), highlight(NO_HIGHLIGHT) { help_action = new QShortcut(QKeySequence::fromString("Ctrl+?"), parent); connect(help_action, &QShortcut::activated, this, &CodeEditor::get_help); + docver = ""; // set up completer class (without a model currently) #define COMPLETER_SETUP(completer) \ @@ -178,6 +181,7 @@ CodeEditor::CodeEditor(QWidget *parent) : COMPLETER_SETUP(fixid_comp); COMPLETER_SETUP(compid_comp); COMPLETER_SETUP(file_comp); + COMPLETER_SETUP(extra_comp); #undef COMPLETER_SETUP // initialize help system @@ -246,6 +250,7 @@ CodeEditor::~CodeEditor() delete fixid_comp; delete compid_comp; delete file_comp; + delete extra_comp; } int CodeEditor::lineNumberAreaWidth() @@ -394,6 +399,7 @@ COMPLETER_INIT_FUNC(integrate, Integrate) COMPLETER_INIT_FUNC(minimize, Minimize) COMPLETER_INIT_FUNC(variable, Variable) COMPLETER_INIT_FUNC(units, Units) +COMPLETER_INIT_FUNC(extra, Extra) #undef COMPLETER_INIT_FUNC @@ -768,10 +774,25 @@ void CodeEditor::contextMenuEvent(QContextMenuEvent *event) QString word = line.mid(begin, end - begin).trimmed(); QFileInfo fi(word); if (fi.exists() && fi.isFile()) { - auto *action = menu->addAction(QString("View file '%1'").arg(word)); - action->setIcon(QIcon(":/icons/document-open.png")); - action->setData(word); - connect(action, &QAction::triggered, this, &CodeEditor::view_file); + // check if file is a LAMMPS restart + char magic[16] = " "; + QFile file(word); + if (file.open(QIODevice::ReadOnly)) { + QDataStream in(&file); + in.readRawData(magic, 16); + file.close(); + } + if (strcmp(magic, LAMMPS_MAGIC) == 0) { + auto *action = menu->addAction(QString("Inspect restart file '%1'").arg(word)); + action->setIcon(QIcon(":/icons/document-open.png")); + action->setData(word); + connect(action, &QAction::triggered, this, &CodeEditor::inspect_file); + } else { + auto *action = menu->addAction(QString("View file '%1'").arg(word)); + action->setIcon(QIcon(":/icons/document-open.png")); + action->setData(word); + connect(action, &QAction::triggered, this, &CodeEditor::view_file); + } } } } @@ -1034,6 +1055,8 @@ void CodeEditor::runCompletion() current_comp = fixid_comp; else if (selected.startsWith("F_")) current_comp = fixid_comp; + else if ((words[0] == "read_data") && selected.startsWith("ex")) + current_comp = extra_comp; else if ((words[0] == "fitpod") || (words[0] == "molecule")) { if (selected.contains('/')) { if (popup && popup->isVisible()) popup->hide(); @@ -1082,6 +1105,8 @@ void CodeEditor::runCompletion() current_comp = fixid_comp; else if (selected.startsWith("F_")) current_comp = fixid_comp; + else if ((words[0] == "read_data") && selected.startsWith("ex")) + current_comp = extra_comp; if (current_comp) { current_comp->setCompletionPrefix(words[3].c_str()); @@ -1111,6 +1136,8 @@ void CodeEditor::runCompletion() current_comp = fixid_comp; else if (selected.startsWith("F_")) current_comp = fixid_comp; + else if ((words[0] == "read_data") && selected.startsWith("ex")) + current_comp = extra_comp; if (current_comp) { current_comp->setCompletionPrefix(selected); @@ -1159,12 +1186,30 @@ void CodeEditor::insertCompletedCommand(const QString &completion) setTextCursor(cursor); } +void CodeEditor::setDocver() +{ + LammpsWrapper *lammps = &qobject_cast(parent())->lammps; + docver = "/"; + if (lammps) { + QString git_branch = (const char *)lammps->extract_global("git_branch"); + if ((git_branch == "stable") || (git_branch == "maintenance")) { + docver = "/stable/"; + } else if (git_branch == "release") { + docver = "/"; + } else { + docver = "/latest/"; + } + } +} + void CodeEditor::get_help() { QString page, help; find_help(page, help); + if (docver.isEmpty()) setDocver(); if (!page.isEmpty()) - QDesktopServices::openUrl(QUrl(QString("https://docs.lammps.org/%1").arg(page))); + QDesktopServices::openUrl( + QUrl(QString("https://docs.lammps.org%1%2").arg(docver).arg(page))); } void CodeEditor::find_help(QString &page, QString &help) @@ -1215,8 +1260,9 @@ void CodeEditor::find_help(QString &page, QString &help) void CodeEditor::open_help() { auto *act = qobject_cast(sender()); + if (docver.isEmpty()) setDocver(); QDesktopServices::openUrl( - QUrl(QString("https://docs.lammps.org/%1").arg(act->data().toString()))); + QUrl(QString("https://docs.lammps.org%1%2").arg(docver).arg(act->data().toString()))); } void CodeEditor::open_url() @@ -1225,11 +1271,20 @@ void CodeEditor::open_url() QDesktopServices::openUrl(QUrl(act->data().toString())); } +// forward requests to view or inspect files to the corresponding LammpsGui methods + void CodeEditor::view_file() { - auto *act = qobject_cast(sender()); - auto *viewer = new FileViewer(act->data().toString()); - viewer->show(); + auto *act = qobject_cast(sender()); + auto *guimain = qobject_cast(parent()); + guimain->view_file(act->data().toString()); +} + +void CodeEditor::inspect_file() +{ + auto *act = qobject_cast(sender()); + auto *guimain = qobject_cast(parent()); + guimain->inspect_file(act->data().toString()); } // Local Variables: diff --git a/tools/lammps-gui/codeeditor.h b/tools/lammps-gui/codeeditor.h index 873b13e302..a34b99cbce 100644 --- a/tools/lammps-gui/codeeditor.h +++ b/tools/lammps-gui/codeeditor.h @@ -64,6 +64,7 @@ public: void setMinimizeList(const QStringList &words); void setVariableList(const QStringList &words); void setUnitsList(const QStringList &words); + void setExtraList(const QStringList &words); void setGroupList(); void setVarNameList(); void setComputeIDList(); @@ -79,6 +80,7 @@ protected: void dropEvent(QDropEvent *event) override; void contextMenuEvent(QContextMenuEvent *event) override; void keyPressEvent(QKeyEvent *event) override; + void setDocver(); private slots: void updateLineNumberAreaWidth(int newBlockCount); @@ -88,6 +90,7 @@ private slots: void open_help(); void open_url(); void view_file(); + void inspect_file(); void reformatCurrentLine(); void runCompletion(); void insertCompletedCommand(const QString &completion); @@ -102,11 +105,12 @@ private: QCompleter *current_comp, *command_comp, *fix_comp, *compute_comp, *dump_comp, *atom_comp, *pair_comp, *bond_comp, *angle_comp, *dihedral_comp, *improper_comp, *kspace_comp, *region_comp, *integrate_comp, *minimize_comp, *variable_comp, *units_comp, *group_comp, - *varname_comp, *fixid_comp, *compid_comp, *file_comp; + *varname_comp, *fixid_comp, *compid_comp, *file_comp, *extra_comp; int highlight; bool reformat_on_return; bool automatic_completion; + QString docver; QMap cmd_map; QMap fix_map; diff --git a/tools/lammps-gui/fileviewer.cpp b/tools/lammps-gui/fileviewer.cpp index 69bda7d91b..996c5eb890 100644 --- a/tools/lammps-gui/fileviewer.cpp +++ b/tools/lammps-gui/fileviewer.cpp @@ -16,6 +16,7 @@ #include "lammpsgui.h" #include +#include #include #include #include @@ -28,7 +29,7 @@ #include #include -FileViewer::FileViewer(const QString &_filename, QWidget *parent) : +FileViewer::FileViewer(const QString &_filename, QString title, QWidget *parent) : QPlainTextEdit(parent), fileName(_filename) { auto *action = new QShortcut(QKeySequence(Qt::CTRL | Qt::Key_Q), this); @@ -98,7 +99,10 @@ FileViewer::FileViewer(const QString &_filename, QWidget *parent) : setLineWrapMode(NoWrap); setMinimumSize(800, 500); setWindowIcon(QIcon(":/icons/lammps-icon-128x128.png")); - setWindowTitle("LAMMPS-GUI - Viewer - " + fileName); + if (title.isEmpty()) + setWindowTitle("LAMMPS-GUI - Viewer - " + fileName); + else + setWindowTitle(title); } void FileViewer::quit() diff --git a/tools/lammps-gui/fileviewer.h b/tools/lammps-gui/fileviewer.h index d52fa15a12..f137e25a66 100644 --- a/tools/lammps-gui/fileviewer.h +++ b/tools/lammps-gui/fileviewer.h @@ -20,7 +20,7 @@ class FileViewer : public QPlainTextEdit { Q_OBJECT public: - FileViewer(const QString &filename, QWidget *parent = nullptr); + FileViewer(const QString &filename, QString title = "", QWidget *parent = nullptr); private slots: void quit(); diff --git a/tools/lammps-gui/help_index.table b/tools/lammps-gui/help_index.table index 5aa9e13dda..a17b24fef5 100644 --- a/tools/lammps-gui/help_index.table +++ b/tools/lammps-gui/help_index.table @@ -20,6 +20,8 @@ angle_cosine_shift_exp.html angle_style cosine/shift/exp angle_cosine_shift_exp.html angle_style cosine/shift/exp/omp angle_cosine_shift.html angle_style cosine/shift angle_cosine_shift.html angle_style cosine/shift/omp +angle_cosine_squared_restricted.html angle_style cosine/squared/restricted +angle_cosine_squared_restricted.html angle_style cosine/squared/restricted/omp angle_cosine_squared.html angle_style cosine/squared angle_cosine_squared.html angle_style cosine/squared/omp angle_cross.html angle_style cross @@ -35,6 +37,7 @@ angle_harmonic.html angle_style harmonic/intel angle_harmonic.html angle_style harmonic/kk angle_harmonic.html angle_style harmonic/omp angle_hybrid.html angle_style hybrid +angle_hybrid.html angle_style hybrid/kk angle_lepton.html angle_style lepton angle_lepton.html angle_style lepton/omp angle_mesocnt.html angle_style mesocnt @@ -43,6 +46,7 @@ angle_none.html angle_style none angle_quartic.html angle_style quartic angle_quartic.html angle_style quartic/omp angle_spica.html angle_style spica +angle_spica.html angle_style spica/kk angle_spica.html angle_style spica/omp angle_style.html angle_style angle_table.html angle_style table @@ -150,6 +154,7 @@ bond_harmonic_shift_cut.html bond_style harmonic/shift/cut/omp bond_harmonic_shift.html bond_style harmonic/shift bond_harmonic_shift.html bond_style harmonic/shift/omp bond_hybrid.html bond_style hybrid +bond_hybrid.html bond_style hybrid/kk bond_lepton.html bond_style lepton bond_lepton.html bond_style lepton/omp bond_mesocnt.html bond_style mesocnt @@ -164,6 +169,7 @@ bond_oxdna.html bond_style oxdna/fene bond_oxdna.html bond_style oxrna2/fene bond_quartic.html bond_style quartic bond_quartic.html bond_style quartic/omp +bond_rheo_shell.html bond_style rheo/shell bond_special.html bond_style special bond_style.html bond_style bond_table.html bond_style table @@ -260,6 +266,10 @@ compute_pair.html compute pair compute_pe_atom.html compute pe/atom compute_pe.html compute pe compute_plasticity_atom.html compute plasticity/atom +compute_pod_atom.html compute pod/atom +compute_pod_atom.html compute podd/atom +compute_pod_atom.html compute pod/global +compute_pod_atom.html compute pod/local compute_pressure_alchemy.html compute pressure/alchemy compute_pressure.html compute pressure compute_pressure_uef.html compute pressure/uef @@ -275,6 +285,7 @@ compute_reaxff_atom.html compute reaxff/atom/kk compute_reduce_chunk.html compute reduce/chunk compute_reduce.html compute reduce compute_reduce.html compute reduce/region +compute_rheo_property_atom.html compute rheo/property/atom compute_rigid_local.html compute rigid/local compute.html compute compute_saed.html compute saed @@ -360,6 +371,7 @@ delete_bonds.html delete_bonds dielectric.html dielectric dihedral_charmm.html dihedral_style charmm dihedral_charmm.html dihedral_style charmmfsw +dihedral_charmm.html dihedral_style charmmfsw/kk dihedral_charmm.html dihedral_style charmm/intel dihedral_charmm.html dihedral_style charmm/kk dihedral_charmm.html dihedral_style charmm/omp @@ -369,6 +381,7 @@ dihedral_class2.html dihedral_style class2/omp dihedral_coeff.html dihedral_coeff dihedral_cosine_shift_exp.html dihedral_style cosine/shift/exp dihedral_cosine_shift_exp.html dihedral_style cosine/shift/exp/omp +dihedral_cosine_squared_restricted.html dihedral_style cosine/squared/restricted dihedral_fourier.html dihedral_style fourier dihedral_fourier.html dihedral_style fourier/intel dihedral_fourier.html dihedral_style fourier/omp @@ -379,6 +392,7 @@ dihedral_harmonic.html dihedral_style harmonic/omp dihedral_helix.html dihedral_style helix dihedral_helix.html dihedral_style helix/omp dihedral_hybrid.html dihedral_style hybrid +dihedral_hybrid.html dihedral_style hybrid/kk dihedral_lepton.html dihedral_style lepton dihedral_lepton.html dihedral_style lepton/omp dihedral_multi_harmonic.html dihedral_style multi/harmonic @@ -443,6 +457,7 @@ fix_acks2_reaxff.html fix acks2/reaxff/kk fix_adapt_fep.html fix adapt/fep fix_adapt.html fix adapt fix_addforce.html fix addforce +fix_add_heat.html fix add/heat fix_addtorque.html fix addtorque fix_alchemy.html fix alchemy fix_amoeba_bitorsion.html fix amoeba/bitorsion @@ -475,6 +490,7 @@ fix_cmap.html fix cmap fix_colvars.html fix colvars fix_controller.html fix controller fix_damping_cundall.html fix damping/cundall +fix_deform_pressure.html fix deform/pressure fix_deform.html fix deform fix_deform.html fix deform/kk fix_deposit.html fix deposit @@ -667,6 +683,11 @@ fix_reaxff_species.html fix reaxff/species fix_reaxff_species.html fix reaxff/species/kk fix_recenter.html fix recenter fix_restrain.html fix restrain +fix_rheo_oxidation.html fix rheo/oxidation +fix_rheo_pressure.html fix rheo/pressure +fix_rheo.html fix rheo +fix_rheo_thermal.html fix rheo/thermal +fix_rheo_viscosity.html fix rheo/viscosity fix_rhok.html fix rhok fix_rigid_meso.html fix rigid/meso fix_rigid.html fix rigid @@ -741,6 +762,8 @@ fix_wall_body_polygon.html fix wall/body/polygon fix_wall_body_polyhedron.html fix wall/body/polyhedron fix_wall_ees.html fix wall/ees fix_wall_ees.html fix wall/region/ees +fix_wall_flow.html fix wall/flow +fix_wall_flow.html fix wall/flow/kk fix_wall_gran_region.html fix wall/gran/region fix_wall_gran.html fix wall/gran fix_wall_gran.html fix wall/gran/kk @@ -784,6 +807,7 @@ improper_harmonic.html improper_style harmonic/intel improper_harmonic.html improper_style harmonic/kk improper_harmonic.html improper_style harmonic/omp improper_hybrid.html improper_style hybrid +improper_hybrid.html improper_style hybrid/kk improper_inversion_harmonic.html improper_style inversion/harmonic improper_none.html improper_style none improper_ring.html improper_style ring @@ -937,6 +961,7 @@ pair_charmm.html pair_style lj/charmm/coul/msm pair_charmm.html pair_style lj/charmm/coul/msm/omp pair_charmm.html pair_style lj/charmmfsw/coul/charmmfsh pair_charmm.html pair_style lj/charmmfsw/coul/long +pair_charmm.html pair_style lj/charmmfsw/coul/long/kk pair_class2.html pair_style lj/class2 pair_class2.html pair_style lj/class2/coul/cut pair_class2.html pair_style lj/class2/coul/cut/kk @@ -1024,6 +1049,8 @@ pair_dipole.html pair_style lj/long/dipole/long pair_dipole.html pair_style lj/sf/dipole/sf pair_dipole.html pair_style lj/sf/dipole/sf/gpu pair_dipole.html pair_style lj/sf/dipole/sf/omp +pair_dpd_coul_slater_long.html pair_style dpd/coul/slater/long +pair_dpd_coul_slater_long.html pair_style dpd/coul/slater/long/gpu pair_dpd_ext.html pair_style dpd/ext pair_dpd_ext.html pair_style dpd/ext/kk pair_dpd_ext.html pair_style dpd/ext/omp @@ -1132,9 +1159,14 @@ pair_hbond_dreiding.html pair_style hbond/dreiding/morse/omp pair_hdnnp.html pair_style hdnnp pair_hybrid.html pair_style hybrid pair_hybrid.html pair_style hybrid/kk +pair_hybrid.html pair_style hybrid/molecular +pair_hybrid.html pair_style hybrid/molecular/omp +pair_hybrid.html pair_style hybrid/omp pair_hybrid.html pair_style hybrid/overlay pair_hybrid.html pair_style hybrid/overlay/kk +pair_hybrid.html pair_style hybrid/overlay/omp pair_hybrid.html pair_style hybrid/scaled +pair_hybrid.html pair_style hybrid/scaled/omp pair_ilp_graphene_hbn.html pair_style ilp/graphene/hbn pair_ilp_graphene_hbn.html pair_style ilp/graphene/hbn/opt pair_ilp_tmd.html pair_style ilp/tmd @@ -1292,6 +1324,8 @@ pair_pace.html pair_style pace pair_pace.html pair_style pace/extrapolation pair_pace.html pair_style pace/extrapolation/kk pair_pace.html pair_style pace/kk +pair_pedone.html pair_style pedone +pair_pedone.html pair_style pedone/omp pair_peri.html pair_style peri/eps pair_peri.html pair_style peri/lps pair_peri.html pair_style peri/lps/omp @@ -1299,6 +1333,7 @@ pair_peri.html pair_style peri/pmb pair_peri.html pair_style peri/pmb/omp pair_peri.html pair_style peri/ves pair_pod.html pair_style pod +pair_pod.html pair_style pod/kk pair_polymorphic.html pair_style polymorphic pair_python.html pair_style python pair_quip.html pair_style quip @@ -1306,9 +1341,13 @@ pair_rann.html pair_style rann pair_reaxff.html pair_style reaxff pair_reaxff.html pair_style reaxff/kk pair_reaxff.html pair_style reaxff/omp +pair_rebomos.html pair_style rebomos +pair_rebomos.html pair_style rebomos/omp pair_resquared.html pair_style resquared pair_resquared.html pair_style resquared/gpu pair_resquared.html pair_style resquared/omp +pair_rheo.html pair_style rheo +pair_rheo_solid.html pair_style rheo/solid pair_saip_metal.html pair_style saip/metal pair_saip_metal.html pair_style saip/metal/opt pair_sdpd_taitwater_isothermal.html pair_style sdpd/taitwater/isothermal @@ -1324,6 +1363,7 @@ pair_snap.html pair_style snap/intel pair_snap.html pair_style snap/kk pair_soft.html pair_style soft pair_soft.html pair_style soft/gpu +pair_soft.html pair_style soft/kk pair_soft.html pair_style soft/omp pair_sph_heatconduction.html pair_style sph/heatconduction pair_sph_heatconduction.html pair_style sph/heatconduction/gpu @@ -1337,6 +1377,7 @@ pair_sph_taitwater.html pair_style sph/taitwater/gpu pair_spica.html pair_style lj/spica pair_spica.html pair_style lj/spica/coul/long pair_spica.html pair_style lj/spica/coul/long/gpu +pair_spica.html pair_style lj/spica/coul/long/kk pair_spica.html pair_style lj/spica/coul/long/omp pair_spica.html pair_style lj/spica/coul/msm pair_spica.html pair_style lj/spica/coul/msm/omp @@ -1390,6 +1431,8 @@ pair_thole.html pair_style thole pair_threebody_table.html pair_style threebody/table pair_tracker.html pair_style tracker pair_tri_lj.html pair_style tri/lj +pair_uf3.html pair_style uf3 +pair_uf3.html pair_style uf3/kk pair_ufm.html pair_style ufm pair_ufm.html pair_style ufm/gpu pair_ufm.html pair_style ufm/omp diff --git a/tools/lammps-gui/helpers.cpp b/tools/lammps-gui/helpers.cpp index bc158f3bb5..47d09f4515 100644 --- a/tools/lammps-gui/helpers.cpp +++ b/tools/lammps-gui/helpers.cpp @@ -13,6 +13,7 @@ #include "helpers.h" +#include #include #include #include @@ -66,6 +67,23 @@ bool has_exe(const QString &exe) return false; // Not found! } +// recursively remove all contents from a directory + +void purge_directory(const QString &dir) +{ + QDir directory(dir); + + directory.setFilter(QDir::AllEntries | QDir::NoDotAndDotDot); + const auto &entries = directory.entryList(); + for (auto &entry : entries) { + if (!directory.remove(entry)) { + directory.cd(entry); + directory.removeRecursively(); + directory.cdUp(); + } + } +} + // Local Variables: // c-basic-offset: 4 // End: diff --git a/tools/lammps-gui/helpers.h b/tools/lammps-gui/helpers.h index a88233b0f3..b22b6e72c4 100644 --- a/tools/lammps-gui/helpers.h +++ b/tools/lammps-gui/helpers.h @@ -25,6 +25,9 @@ extern char *mystrdup(const QString &text); // find if executable is in path extern bool has_exe(const QString &exe); +// recursively purge a directory +extern void purge_directory(const QString &dir); + #endif // Local Variables: // c-basic-offset: 4 diff --git a/tools/lammps-gui/highlighter.cpp b/tools/lammps-gui/highlighter.cpp index d6c1102285..3f79c7a73e 100644 --- a/tools/lammps-gui/highlighter.cpp +++ b/tools/lammps-gui/highlighter.cpp @@ -23,7 +23,7 @@ Highlighter::Highlighter(QTextDocument *parent) : "thermo|print|thermo_style|" "timer|pair_write|bond_write|angle_write|dihedral_write)\\s+(\\S+)")), isOutput2(QStringLiteral("^\\s*(write_dump|shell|thermo_modify)\\s+(\\S+)\\s+(\\S+)")), - isRead(QStringLiteral("^\\s*(include|read_restart|read_data|read_dump|molecule)")), + isRead(QStringLiteral("^\\s*(include|read_restart|read_data|read_dump|molecule|geturl)\\s+(\\S+)")), isStyle(QStringLiteral("^\\s*(fix|compute|dump)\\s+(\\S+)\\s+(\\S+)\\s+(\\S+)")), isForce(QStringLiteral( "^\\s*(pair_style|bond_style|angle_style|dihedral_style|improper_style|kspace_style|pair_" diff --git a/tools/lammps-gui/icons/image-shiny.png b/tools/lammps-gui/icons/image-shiny.png new file mode 100644 index 0000000000..33cd7502b3 Binary files /dev/null and b/tools/lammps-gui/icons/image-shiny.png differ diff --git a/tools/lammps-gui/icons/tutorial-logo.png b/tools/lammps-gui/icons/tutorial-logo.png new file mode 100644 index 0000000000..f6add08d3b Binary files /dev/null and b/tools/lammps-gui/icons/tutorial-logo.png differ diff --git a/tools/lammps-gui/icons/tutorial1-logo.png b/tools/lammps-gui/icons/tutorial1-logo.png new file mode 100644 index 0000000000..d54cda9113 Binary files /dev/null and b/tools/lammps-gui/icons/tutorial1-logo.png differ diff --git a/tools/lammps-gui/icons/tutorial2-logo.png b/tools/lammps-gui/icons/tutorial2-logo.png new file mode 100644 index 0000000000..dc661decb3 Binary files /dev/null and b/tools/lammps-gui/icons/tutorial2-logo.png differ diff --git a/tools/lammps-gui/imageviewer.cpp b/tools/lammps-gui/imageviewer.cpp index 0894855a02..67f6dd0e48 100644 --- a/tools/lammps-gui/imageviewer.cpp +++ b/tools/lammps-gui/imageviewer.cpp @@ -23,7 +23,9 @@ #include #include #include +#include #include +#include #include #include #include @@ -131,7 +133,7 @@ static int get_pte_from_mass(double mass) static const QString blank(" "); -ImageViewer::ImageViewer(const QString &fileName, LammpsWrapper *_lammps, QWidget *parent) : +ImageViewer::ImageViewer(const QString &fileName, LammpsWrapper *_lammps, QString title, QWidget *parent) : QDialog(parent), menuBar(new QMenuBar), imageLabel(new QLabel), scrollArea(new QScrollArea), saveAsAct(nullptr), copyAct(nullptr), cmdAct(nullptr), zoomInAct(nullptr), zoomOutAct(nullptr), normalSizeAct(nullptr), lammps(_lammps), group("all"), filename(fileName), useelements(false), @@ -150,9 +152,11 @@ ImageViewer::ImageViewer(const QString &fileName, LammpsWrapper *_lammps, QWidge QSettings settings; - vdwfactor = 0.5; - auto pix = QPixmap(":/icons/emblem-photos.png"); + vdwfactor = 0.5; + shinyfactor = 0.6; + auto pix = QPixmap(":/icons/emblem-photos.png"); xcenter = ycenter = zcenter = 0.5; + auto bsize = QFontMetrics(QApplication::font()).size(Qt::TextSingleLine, "Height: 200"); auto *renderstatus = new QLabel(QString()); renderstatus->setPixmap(pix.scaled(22, 22, Qt::KeepAspectRatio)); @@ -163,22 +167,26 @@ ImageViewer::ImageViewer(const QString &fileName, LammpsWrapper *_lammps, QWidge auto *xval = new QSpinBox; xval->setRange(100, 10000); xval->setStepType(QAbstractSpinBox::AdaptiveDecimalStepType); - xval->setValue(settings.value("xsize", "800").toInt()); + xval->setValue(settings.value("xsize", "600").toInt()); xval->setObjectName("xsize"); xval->setToolTip("Set rendered image width"); + xval->setMinimumSize(bsize); auto *yval = new QSpinBox; yval->setRange(100, 10000); yval->setStepType(QAbstractSpinBox::AdaptiveDecimalStepType); yval->setValue(settings.value("ysize", "600").toInt()); yval->setObjectName("ysize"); yval->setToolTip("Set rendered image height"); + yval->setMinimumSize(bsize); settings.endGroup(); connect(xval, &QAbstractSpinBox::editingFinished, this, &ImageViewer::edit_size); connect(yval, &QAbstractSpinBox::editingFinished, this, &ImageViewer::edit_size); // workaround for incorrect highlight bug on macOS - auto *dummy = new QPushButton(QIcon(), ""); - dummy->hide(); + auto *dummy1 = new QPushButton(QIcon(), ""); + dummy1->hide(); + auto *dummy2 = new QPushButton(QIcon(), ""); + dummy2->hide(); auto *dossao = new QPushButton(QIcon(":/icons/hd-img.png"), ""); dossao->setCheckable(true); @@ -188,6 +196,10 @@ ImageViewer::ImageViewer(const QString &fileName, LammpsWrapper *_lammps, QWidge doanti->setCheckable(true); doanti->setToolTip("Toggle anti-aliasing"); doanti->setObjectName("antialias"); + auto *doshiny = new QPushButton(QIcon(":/icons/image-shiny.png"), ""); + doshiny->setCheckable(true); + doshiny->setToolTip("Toggle shininess"); + doshiny->setObjectName("shiny"); auto *dovdw = new QPushButton(QIcon(":/icons/vdw-style.png"), ""); dovdw->setCheckable(true); dovdw->setToolTip("Toggle VDW style representation"); @@ -229,32 +241,41 @@ ImageViewer::ImageViewer(const QString &fileName, LammpsWrapper *_lammps, QWidge combo->addItem(gname); } - auto *menuLayout = new QHBoxLayout; + auto *menuLayout = new QHBoxLayout; + auto *buttonLayout = new QHBoxLayout; + auto *topLayout = new QVBoxLayout; + topLayout->addLayout(menuLayout); + topLayout->addLayout(buttonLayout); + menuLayout->addWidget(menuBar); menuLayout->addWidget(renderstatus); menuLayout->addWidget(new QLabel(" Width: ")); menuLayout->addWidget(xval); menuLayout->addWidget(new QLabel(" Height: ")); menuLayout->addWidget(yval); - menuLayout->addWidget(dummy); - menuLayout->addWidget(dossao); - menuLayout->addWidget(doanti); - menuLayout->addWidget(dovdw); - menuLayout->addWidget(dobox); - menuLayout->addWidget(doaxes); - menuLayout->addWidget(zoomin); - menuLayout->addWidget(zoomout); - menuLayout->addWidget(rotleft); - menuLayout->addWidget(rotright); - menuLayout->addWidget(rotup); - menuLayout->addWidget(rotdown); - menuLayout->addWidget(recenter); - menuLayout->addWidget(reset); + menuLayout->addWidget(dummy1); menuLayout->addWidget(new QLabel(" Group: ")); menuLayout->addWidget(combo); + buttonLayout->addWidget(dummy2); + buttonLayout->addWidget(dossao); + buttonLayout->addWidget(doanti); + buttonLayout->addWidget(doshiny); + buttonLayout->addWidget(dovdw); + buttonLayout->addWidget(dobox); + buttonLayout->addWidget(doaxes); + buttonLayout->addWidget(zoomin); + buttonLayout->addWidget(zoomout); + buttonLayout->addWidget(rotleft); + buttonLayout->addWidget(rotright); + buttonLayout->addWidget(rotup); + buttonLayout->addWidget(rotdown); + buttonLayout->addWidget(recenter); + buttonLayout->addWidget(reset); + buttonLayout->addStretch(1); connect(dossao, &QPushButton::released, this, &ImageViewer::toggle_ssao); connect(doanti, &QPushButton::released, this, &ImageViewer::toggle_anti); + connect(doshiny, &QPushButton::released, this, &ImageViewer::toggle_shiny); connect(dovdw, &QPushButton::released, this, &ImageViewer::toggle_vdw); connect(dobox, &QPushButton::released, this, &ImageViewer::toggle_box); connect(doaxes, &QPushButton::released, this, &ImageViewer::toggle_axes); @@ -268,7 +289,7 @@ ImageViewer::ImageViewer(const QString &fileName, LammpsWrapper *_lammps, QWidge connect(reset, &QPushButton::released, this, &ImageViewer::reset_view); connect(combo, SIGNAL(currentIndexChanged(int)), this, SLOT(change_group(int))); - mainLayout->addLayout(menuLayout); + mainLayout->addLayout(topLayout); mainLayout->addWidget(scrollArea); setWindowIcon(QIcon(":/icons/lammps-icon-128x128.png")); setWindowTitle(QString("LAMMPS-GUI - Image Viewer - ") + QFileInfo(fileName).fileName()); @@ -278,6 +299,7 @@ ImageViewer::ImageViewer(const QString &fileName, LammpsWrapper *_lammps, QWidge // layout has not yet be established, so we need to fix up some pushbutton // properties directly since lookup in reset_view() will have failed dobox->setChecked(showbox); + doshiny->setChecked(shinyfactor > 0.4); dovdw->setChecked(vdwfactor > 1.0); dovdw->setEnabled(useelements || usediameter || usesigma); doaxes->setChecked(showaxes); @@ -296,16 +318,17 @@ void ImageViewer::reset_view() { QSettings settings; settings.beginGroup("snapshot"); - xsize = settings.value("xsize", "800").toInt(); - ysize = settings.value("ysize", "600").toInt(); - zoom = settings.value("zoom", 1.0).toDouble(); - hrot = settings.value("hrot", 60).toInt(); - vrot = settings.value("vrot", 30).toInt(); - vdwfactor = settings.value("vdwstyle", false).toBool() ? 1.6 : 0.5; - showbox = settings.value("box", true).toBool(); - showaxes = settings.value("axes", false).toBool(); - usessao = settings.value("ssao", false).toBool(); - antialias = settings.value("antialias", false).toBool(); + xsize = settings.value("xsize", "600").toInt(); + ysize = settings.value("ysize", "600").toInt(); + zoom = settings.value("zoom", 1.0).toDouble(); + hrot = settings.value("hrot", 60).toInt(); + vrot = settings.value("vrot", 30).toInt(); + shinyfactor = settings.value("shinystyle", true).toBool() ? 0.6 : 0.2; + vdwfactor = settings.value("vdwstyle", false).toBool() ? 1.6 : 0.5; + showbox = settings.value("box", true).toBool(); + showaxes = settings.value("axes", false).toBool(); + usessao = settings.value("ssao", false).toBool(); + antialias = settings.value("antialias", false).toBool(); xcenter = ycenter = zcenter = 0.5; settings.endGroup(); @@ -320,6 +343,8 @@ void ImageViewer::reset_view() if (button) button->setChecked(usessao); button = findChild("antialias"); if (button) button->setChecked(antialias); + button = findChild("shiny"); + if (button) button->setChecked(shinyfactor > 0.4); button = findChild("vdw"); if (button) button->setChecked(vdwfactor > 1.0); button = findChild("box"); @@ -358,6 +383,17 @@ void ImageViewer::toggle_anti() createImage(); } +void ImageViewer::toggle_shiny() +{ + auto *button = qobject_cast(sender()); + if (shinyfactor > 0.4) + shinyfactor = 0.2; + else + shinyfactor = 0.6; + button->setChecked(shinyfactor > 0.4); + createImage(); +} + void ImageViewer::toggle_vdw() { auto *button = qobject_cast(sender()); @@ -455,7 +491,7 @@ void ImageViewer::cmd_to_clipboard() QString dumpcmd = "dump viz "; dumpcmd += words[1] + " image 100 myimage-*.ppm"; for (int i = 4; i < modidx; ++i) - dumpcmd += blank + words[i]; + if (words[i] != "noinit") dumpcmd += blank + words[i]; dumpcmd += '\n'; dumpcmd += "dump_modify viz pad 9"; @@ -508,12 +544,14 @@ void ImageViewer::createImage() // use Lennard-Jones sigma for radius, if available usesigma = false; const char *pair_style = (const char *)lammps->extract_global("pair_style"); - if (!useelements && pair_style && (strncmp(pair_style, "lj/", 3) == 0)) { + if (!useelements && !usediameter && pair_style && (strncmp(pair_style, "lj/", 3) == 0)) { double **sigma = (double **)lammps->extract_pair("sigma"); if (sigma) { usesigma = true; - for (int i = 1; i <= ntypes; ++i) - adiams += QString("adiam %1 %2 ").arg(i).arg(vdwfactor * sigma[i][i]); + for (int i = 1; i <= ntypes; ++i) { + if (sigma[i][i] > 0.0) + adiams += QString("adiam %1 %2 ").arg(i).arg(vdwfactor * sigma[i][i]); + } } } // adjust pushbutton state and clear adiams string to disable VDW display, if needed @@ -526,17 +564,20 @@ void ImageViewer::createImage() if (button) button->setEnabled(false); } + // color if (useelements) dumpcmd += blank + "element"; else dumpcmd += blank + settings.value("color", "type").toString(); + + // diameter if (usediameter && (vdwfactor > 1.0)) dumpcmd += blank + "diameter"; else dumpcmd += blank + settings.value("diameter", "type").toString(); dumpcmd += QString(" size %1 %2").arg(xsize).arg(ysize); dumpcmd += QString(" zoom %1").arg(zoom); - dumpcmd += " shiny 0.5 "; + dumpcmd += QString(" shiny %1 ").arg(shinyfactor); dumpcmd += QString(" fsaa %1").arg(antialias ? "yes" : "no"); if (nbondtypes > 0) { if (vdwfactor > 1.0) @@ -559,6 +600,7 @@ void ImageViewer::createImage() dumpcmd += " axes no 0.0 0.0"; dumpcmd += QString(" center s %1 %2 %3").arg(xcenter).arg(ycenter).arg(zcenter); + dumpcmd += " noinit"; dumpcmd += " modify boxcolor " + settings.value("boxcolor", "yellow").toString(); dumpcmd += " backcolor " + settings.value("background", "black").toString(); if (useelements) dumpcmd += blank + elements + blank + adiams + blank; diff --git a/tools/lammps-gui/imageviewer.h b/tools/lammps-gui/imageviewer.h index f9b935640e..aa2ade2bd9 100644 --- a/tools/lammps-gui/imageviewer.h +++ b/tools/lammps-gui/imageviewer.h @@ -34,7 +34,7 @@ class ImageViewer : public QDialog { Q_OBJECT public: - explicit ImageViewer(const QString &fileName, LammpsWrapper *_lammps, + explicit ImageViewer(const QString &fileName, LammpsWrapper *_lammps, QString title = "", QWidget *parent = nullptr); private slots: @@ -46,6 +46,7 @@ private slots: void reset_view(); void toggle_ssao(); void toggle_anti(); + void toggle_shiny(); void toggle_vdw(); void toggle_box(); void toggle_axes(); @@ -90,7 +91,7 @@ private: QString last_dump_cmd; int xsize, ysize; int hrot, vrot; - double zoom, vdwfactor; + double zoom, vdwfactor, shinyfactor; double xcenter, ycenter, zcenter; bool showbox, showaxes, antialias, usessao, useelements, usediameter, usesigma; }; diff --git a/tools/lammps-gui/lammps-gui.appdata.xml b/tools/lammps-gui/lammps-gui.appdata.xml new file mode 100644 index 0000000000..1ceac968b1 --- /dev/null +++ b/tools/lammps-gui/lammps-gui.appdata.xml @@ -0,0 +1,68 @@ + + + lammps-gui.desktop + CC-BY-3.0 + GPL-2.0 + LAMMPS-GUI + + Graphical interface to edit, run, plot, and visualize simulations with the LAMMPS MD code + + + +

LAMMPS-GUI is an editor customized for editing input files for the LAMMPS MD simulation software. It also includes LAMMPS and thus can run it directly from the GUI. Furthermore it has facilities to create or view and animate snapshot images, monitor and plot thermodynamic properties and show the console output of the running simulation.

+
+ + + https://docs.lammps.org/_images/lammps-gui-main.png + LAMMPS-GUI main editor window + + + https://docs.lammps.org/_images/lammps-gui-log.png + LAMMPS-GUI output window + + + https://docs.lammps.org/_images/lammps-gui-chart.png + LAMMPS-GUI chart window + + + https://docs.lammps.org/_images/lammps-gui-slideshow.png + LAMMPS-GUI slideshow window + + + https://docs.lammps.org/_images/lammps-gui-image.png + LAMMPS-GUI snapshot image window + + + + https://www.lammps.org/ + https://github.com/lammps/lammps/issues + https://docs.lammps.org/stable/ + + packages@lammps.org + Axel Kohlmeyer + LAMMPS + + Molecular Dynamics + Physics + Editor + N-body + + + + lammps-gui + lmp + + + + + + Add wizards for setting up LAMMPS tutorials + + + + + First version packaged in flatpak format + + + +
diff --git a/tools/lammps-gui/lammpsgui.cpp b/tools/lammps-gui/lammpsgui.cpp index d42d59bca2..d39e569e3a 100644 --- a/tools/lammps-gui/lammpsgui.cpp +++ b/tools/lammps-gui/lammpsgui.cpp @@ -26,14 +26,20 @@ #include "stdcapture.h" #include "ui_lammpsgui.h" +#include +#include #include #include +#include #include +#include #include #include #include +#include #include #include +#include #include #include #include @@ -41,12 +47,16 @@ #include #include #include +#include #include #include #include #include #include +#include +#include +#include #include #include #include @@ -63,8 +73,8 @@ LammpsGui::LammpsGui(QWidget *parent, const char *filename) : QMainWindow(parent), ui(new Ui::LammpsGui), highlighter(nullptr), capturer(nullptr), status(nullptr), logwindow(nullptr), imagewindow(nullptr), chartwindow(nullptr), slideshow(nullptr), logupdater(nullptr), dirstatus(nullptr), progress(nullptr), - prefdialog(nullptr), lammpsstatus(nullptr), varwindow(nullptr), runner(nullptr), - is_running(false), run_counter(0) + prefdialog(nullptr), lammpsstatus(nullptr), varwindow(nullptr), wizard(nullptr), + runner(nullptr), is_running(false), run_counter(0) { // enforce using the plain ASCII C locale within the GUI. QLocale::setDefault(QLocale("C")); @@ -74,6 +84,7 @@ LammpsGui::LammpsGui(QWidget *parent, const char *filename) : qRegisterMetaTypeStreamOperators>("QList"); #endif + docver = ""; ui->setupUi(this); this->setCentralWidget(ui->textEdit); highlighter = new Highlighter(ui->textEdit->document()); @@ -82,6 +93,7 @@ LammpsGui::LammpsGui(QWidget *parent, const char *filename) : current_dir = QDir(".").absolutePath(); // use $HOME if we get dropped to "/" like on macOS if (current_dir == "/") current_dir = QDir::homePath(); + inspectList.clear(); #define stringify(x) myxstr(x) #define myxstr(x) #x @@ -137,8 +149,8 @@ LammpsGui::LammpsGui(QWidget *parent, const char *filename) : // check and initialize nthreads setting. Default is to use max if there // is no preference but do not override OMP_NUM_THREADS #if defined(_OPENMP) - // use maximum number of available threads unless OMP_NUM_THREADS was set - int nthreads = settings.value("nthreads", omp_get_max_threads()).toInt(); + // use up to 16 available threads unless OMP_NUM_THREADS was set + int nthreads = settings.value("nthreads", std::min(omp_get_max_threads(), 16)).toInt(); if (!qEnvironmentVariableIsSet("OMP_NUM_THREADS")) { qputenv("OMP_NUM_THREADS", std::to_string(nthreads).c_str()); } @@ -152,19 +164,24 @@ LammpsGui::LammpsGui(QWidget *parent, const char *filename) : lammps_args.push_back(mystrdup("-log")); lammps_args.push_back(mystrdup("none")); + installEventFilter(this); + setWindowIcon(QIcon(":/icons/lammps-icon-128x128.png")); - QFont all_font("Arial", -1); + QFont all_font; + all_font.fromString(settings.value("allfont", QFont("Arial", -1).toString()).toString()); all_font.setStyleHint(QFont::SansSerif, QFont::PreferOutline); - all_font.fromString(settings.value("allfont", all_font.toString()).toString()); settings.setValue("allfont", all_font.toString()); - QApplication::setFont(all_font); + setFont(all_font); - QFont text_font("Monospace", -1); + QFont text_font; + text_font.fromString(settings.value("textfont", QFont("Monospace", -1).toString()).toString()); text_font.setStyleHint(QFont::Monospace, QFont::PreferOutline); - text_font.fromString(settings.value("textfont", text_font.toString()).toString()); + text_font.setFixedPitch(true); + settings.setValue("textfont", text_font.toString()); ui->textEdit->setFont(text_font); + ui->textEdit->document()->setDefaultFont(text_font); ui->textEdit->setMinimumSize(600, 400); varwindow = new QLabel(QString()); @@ -193,6 +210,7 @@ LammpsGui::LammpsGui(QWidget *parent, const char *filename) : connect(ui->actionSave, &QAction::triggered, this, &LammpsGui::save); connect(ui->actionSave_As, &QAction::triggered, this, &LammpsGui::save_as); connect(ui->actionView, &QAction::triggered, this, &LammpsGui::view); + connect(ui->actionInspect, &QAction::triggered, this, &LammpsGui::inspect); connect(ui->actionQuit, &QAction::triggered, this, &LammpsGui::quit); connect(ui->actionCopy, &QAction::triggered, this, &LammpsGui::copy); connect(ui->actionCut, &QAction::triggered, this, &LammpsGui::cut); @@ -204,11 +222,13 @@ LammpsGui::LammpsGui(QWidget *parent, const char *filename) : connect(ui->actionStop_LAMMPS, &QAction::triggered, this, &LammpsGui::stop_run); connect(ui->actionSet_Variables, &QAction::triggered, this, &LammpsGui::edit_variables); connect(ui->actionImage, &QAction::triggered, this, &LammpsGui::render_image); + connect(ui->actionLAMMPS_Tutorial, &QAction::triggered, this, &LammpsGui::tutorial_web); + connect(ui->actionTutorial1, &QAction::triggered, this, &LammpsGui::start_tutorial1); + connect(ui->actionTutorial2, &QAction::triggered, this, &LammpsGui::start_tutorial2); connect(ui->actionAbout_LAMMPS_GUI, &QAction::triggered, this, &LammpsGui::about); connect(ui->action_Help, &QAction::triggered, this, &LammpsGui::help); connect(ui->actionLAMMPS_GUI_Howto, &QAction::triggered, this, &LammpsGui::howto); connect(ui->actionLAMMPS_Manual, &QAction::triggered, this, &LammpsGui::manual); - connect(ui->actionLAMMPS_Tutorial, &QAction::triggered, this, &LammpsGui::tutorial); connect(ui->actionPreferences, &QAction::triggered, this, &LammpsGui::preferences); connect(ui->actionDefaults, &QAction::triggered, this, &LammpsGui::defaults); connect(ui->actionView_in_OVITO, &QAction::triggered, this, &LammpsGui::start_exe); @@ -317,6 +337,16 @@ LammpsGui::LammpsGui(QWidget *parent, const char *filename) : style_list.sort(); ui->textEdit->setUnitsList(style_list); + style_list.clear(); + const char *extraargs[] = {"extra/atom/types", "extra/bond/types", + "extra/angle/types", "extra/dihedral/types", + "extra/improper/types", "extra/bond/per/atom", + "extra/angle/per/atom", "extra/dihedral/per/atom", + "extra/improper/per/atom", "extra/special/per/atom"}; + for (const auto *const extra : extraargs) + style_list << extra; + ui->textEdit->setExtraList(style_list); + ui->textEdit->setFileList(); #define ADD_STYLES(keyword, Type) \ @@ -355,7 +385,7 @@ LammpsGui::LammpsGui(QWidget *parent, const char *filename) : #undef ADD_STYLES settings.beginGroup("reformat"); - ui->textEdit->setReformatOnReturn(settings.value("return", true).toBool()); + ui->textEdit->setReformatOnReturn(settings.value("return", false).toBool()); ui->textEdit->setAutoComplete(settings.value("automatic", true).toBool()); settings.endGroup(); } @@ -401,12 +431,35 @@ void LammpsGui::view() view_file(fileName); } +void LammpsGui::inspect() +{ + QString fileName = QFileDialog::getOpenFileName(this, "Open the restart file"); + inspect_file(fileName); +} + void LammpsGui::open_recent() { auto *act = qobject_cast(sender()); if (act) open_file(act->data().toString()); } +void LammpsGui::get_directory() +{ + if (wizard) { + // figure out which wizard we are following + auto *line = wizard->findChild("t1_directory"); + if (!line) line = wizard->findChild("t2_directory"); + if (line) { + auto curdir = line->text(); + QFileDialog dialog(this, "Choose Directory for Tutorial Files", curdir); + dialog.setFileMode(QFileDialog::Directory); + dialog.setOption(QFileDialog::ShowDirsOnly, false); + dialog.exec(); + line->setText(dialog.directory().path()); + } + } +} + void LammpsGui::start_exe() { if (!lammps.extract_setting("box_exists")) return; @@ -571,6 +624,7 @@ void LammpsGui::update_variables() // open file and switch CWD to path of file void LammpsGui::open_file(const QString &fileName) { + purge_inspect_list(); if (ui->textEdit->document()->isModified()) { QMessageBox msg; msg.setWindowTitle("Unsaved Changes"); @@ -579,6 +633,7 @@ void LammpsGui::open_file(const QString &fileName) msg.setInformativeText("Do you want to save the file before opening a new file?"); msg.setIcon(QMessageBox::Question); msg.setStandardButtons(QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel); + msg.setFont(font()); int rv = msg.exec(); switch (rv) { case QMessageBox::Yes: @@ -661,6 +716,122 @@ void LammpsGui::view_file(const QString &fileName) } } +void LammpsGui::purge_inspect_list() +{ + for (auto item : inspectList) { + if (item->info) { + if (!item->info->isVisible()) { + delete item->info; + item->info = nullptr; + } + } + if (item->data) { + if (!item->data->isVisible()) { + delete item->data; + item->data = nullptr; + } + } + if (item->image) { + if (!item->image->isVisible()) { + delete item->image; + item->image = nullptr; + } + } + if (!item->image && !item->data && !item->info) inspectList.removeOne(item); + } +} + +// read restart file into LAMMPS instance and launch image viewer +void LammpsGui::inspect_file(const QString &fileName) +{ + QFile file(fileName); + auto shortName = QFileInfo(fileName).fileName(); + + purge_inspect_list(); + auto ilist = new InspectData; + ilist->info = nullptr; + ilist->data = nullptr; + ilist->image = nullptr; + inspectList.append(ilist); + + if (file.size() > 262144000L) { + QMessageBox msg; + msg.setWindowTitle(" Warning: Large Restart File "); + msg.setWindowIcon(windowIcon()); + msg.setText(QString("
The restart file ") + shortName + " is large
"); + QString details = "Inspecting the restart file %1 with LAMMPS-GUI may need an additional " + "%2 GB of free RAM (or more) to proceed"; + msg.setDetailedText(details.arg(shortName).arg(file.size() / 134217728.0)); + msg.setInformativeText("Do you want to continue?"); + msg.setIcon(QMessageBox::Question); + msg.setStandardButtons(QMessageBox::Yes | QMessageBox::No); + msg.setDefaultButton(QMessageBox::No); + msg.setEscapeButton(QMessageBox::No); + msg.setFont(font()); + int rv = msg.exec(); + switch (rv) { + case QMessageBox::No: + return; + break; + case QMessageBox::Yes: // fallthrough + default: + // do nothing + break; + } + } + + if (!file.open(QIODevice::ReadOnly)) { + QMessageBox::warning(this, "Warning", + "Cannot open file " + fileName + ": " + file.errorString() + ".\n"); + return; + } + + char magic[16] = " "; + QDataStream in(&file); + in.readRawData(magic, 16); + file.close(); + if (strcmp(magic, LAMMPS_MAGIC) != 0) { + QMessageBox::warning(this, "Warning", + "File " + fileName + " is not a LAMMPS restart file.\n"); + return; + } + + // LAMMPS is not re-entrant, so we can only query LAMMPS when it is not running a simulation + if (!lammps.is_running()) { + + start_lammps(); + lammps.command("clear"); + lammps.command(QString("read_restart %1").arg(fileName).toLocal8Bit()); + capturer->BeginCapture(); + lammps.command("info system group compute fix"); + capturer->EndCapture(); + auto info = capturer->GetCapture(); + auto infolog = QString("%1.info.log").arg(fileName); + QFile dumpinfo(infolog); + if (dumpinfo.open(QIODevice::WriteOnly)) { + auto infodata = QString("%1.tmp.data").arg(fileName); + dumpinfo.write(info.c_str(), info.size()); + dumpinfo.close(); + auto *infoviewer = + new FileViewer(infolog, QString("LAMMPS-GUI: restart info for %1").arg(shortName)); + infoviewer->show(); + ilist->info = infoviewer; + dumpinfo.remove(); + lammps.command(QString("write_data %1 pair ij noinit").arg(infodata).toLocal8Bit()); + auto *dataviewer = + new FileViewer(infodata, QString("LAMMPS-GUI: data file for %1").arg(shortName)); + dataviewer->show(); + ilist->data = dataviewer; + QFile(infodata).remove(); + auto *inspect_image = new ImageViewer( + fileName, &lammps, QString("LAMMPS-GUI: Image for %1").arg(shortName)); + inspect_image->setFont(font()); + inspect_image->show(); + ilist->image = inspect_image; + } + } +} + // write file and update CWD to its folder void LammpsGui::write_file(const QString &fileName) @@ -690,6 +861,7 @@ void LammpsGui::write_file(const QString &fileName) void LammpsGui::save() { + purge_inspect_list(); QString fileName = current_file; // If we don't have a filename from before, get one. if (fileName.isEmpty()) fileName = QFileDialog::getSaveFileName(this, "Save"); @@ -713,6 +885,7 @@ void LammpsGui::quit() lammpsstatus->hide(); lammps.finalize(); + autoSave(); if (ui->textEdit->document()->isModified()) { QMessageBox msg; msg.setWindowTitle("Unsaved Changes"); @@ -721,6 +894,7 @@ void LammpsGui::quit() msg.setInformativeText("Do you want to save the file before exiting?"); msg.setIcon(QMessageBox::Question); msg.setStandardButtons(QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel); + msg.setFont(font()); int rv = msg.exec(); switch (rv) { case QMessageBox::Yes: @@ -1002,6 +1176,8 @@ void LammpsGui::do_run(bool use_buffer) return; } + purge_inspect_list(); + autoSave(); if (!use_buffer && ui->textEdit->document()->isModified()) { QMessageBox msg; msg.setWindowTitle("Unsaved Changes"); @@ -1010,6 +1186,7 @@ void LammpsGui::do_run(bool use_buffer) msg.setInformativeText("Do you want to save the buffer before running LAMMPS?"); msg.setIcon(QMessageBox::Question); msg.setStandardButtons(QMessageBox::Yes | QMessageBox::Cancel); + msg.setFont(font()); int rv = msg.exec(); switch (rv) { case QMessageBox::Yes: @@ -1217,6 +1394,50 @@ void LammpsGui::view_variables() } } +void LammpsGui::setDocver() +{ + QString git_branch = (const char *)lammps.extract_global("git_branch"); + if ((git_branch == "stable") || (git_branch == "maintenance")) { + docver = "/stable/"; + } else if (git_branch == "release") { + docver = "/"; + } else { + docver = "/latest/"; + } +} + +void LammpsGui::autoSave() +{ + // no need to auto-save, if the document has no name or is not modified. + QString fileName = current_file; + if (fileName.isEmpty()) return; + if (!ui->textEdit->document()->isModified()) return; + + // check preference + bool autosave = false; + QSettings settings; + settings.beginGroup("reformat"); + autosave = settings.value("autosave", false).toBool(); + settings.endGroup(); + + if (autosave) write_file(fileName); +} + +void LammpsGui::setFont(const QFont &newfont) +{ + QMainWindow::setFont(newfont); + if (ui) { + ui->textEdit->setFont(newfont); + ui->menubar->setFont(newfont); + ui->menuFile->setFont(newfont); + ui->menuEdit->setFont(newfont); + ui->menu_Run->setFont(newfont); + ui->menu_Tutorial->setFont(newfont); + ui->menuAbout->setFont(newfont); + ui->menu_View->setFont(newfont); + } +} + void LammpsGui::about() { std::string version = "This is LAMMPS-GUI version " LAMMPS_GUI_VERSION; @@ -1259,9 +1480,9 @@ void LammpsGui::about() msg.setInformativeText(info.c_str()); msg.setIconPixmap(QPixmap(":/icons/lammps-icon-128x128.png").scaled(64, 64)); msg.setStandardButtons(QMessageBox::Close); - QFont font; - font.setPointSizeF(font.pointSizeF() * 0.75); - msg.setFont(font); + QFont myfont(font()); + myfont.setPointSize(myfont.pointSizeF() * 0.8); + msg.setFont(myfont); auto *minwidth = new QSpacerItem(700, 0, QSizePolicy::Minimum, QSizePolicy::Expanding); auto *layout = (QGridLayout *)msg.layout(); @@ -1323,22 +1544,309 @@ void LammpsGui::help() "LAMMPS-GUI in parallel with MPI.

"); msg.setIconPixmap(QPixmap(":/icons/lammps-icon-128x128.png").scaled(64, 64)); msg.setStandardButtons(QMessageBox::Close); + msg.setFont(font()); msg.exec(); } void LammpsGui::manual() { - QDesktopServices::openUrl(QUrl("https://docs.lammps.org/")); + if (docver.isEmpty()) setDocver(); + QDesktopServices::openUrl(QUrl(QString("https://docs.lammps.org%1").arg(docver))); } -void LammpsGui::tutorial() +void LammpsGui::tutorial_web() { QDesktopServices::openUrl(QUrl("https://lammpstutorials.github.io/")); } +void LammpsGui::start_tutorial1() +{ + if (wizard) delete wizard; + wizard = new Tutorial1Wizard; + wizard->setFont(font()); + wizard->addPage(tutorial1_intro()); + wizard->addPage(tutorial1_info()); + wizard->addPage(tutorial1_directory()); + wizard->addPage(tutorial1_finish()); + wizard->setWindowTitle("Tutorial 1 Setup Wizard"); + wizard->setWizardStyle(QWizard::ModernStyle); + wizard->show(); +} + +QWizardPage *LammpsGui::tutorial1_intro() +{ + auto *page = new QWizardPage; + page->setTitle("Getting Started With Tutorial 1"); + page->setPixmap(QWizard::WatermarkPixmap, QPixmap(":/icons/tutorial1-logo.png")); + + // XXX TODO: update URL to published tutorial DOI + auto *label = + new QLabel("

This wizard will help you to select and populate a folder with " + "materials required to work through tutorial 1 from a fourthcoming " + "LAMMPS tutorial using LAMMPS-GUI by Simon Gravelle, Jake Gissinger, " + "and Axel Kohlmeyer.

\n" + "The work-in-progress materials for this tutorial are available at: " + "github.com/lammpstutorials/lammpstutorials-article


\n" + "
\n" + "

Click on the \"Next\" button to begin.

"); + label->setWordWrap(true); + + auto *layout = new QVBoxLayout; + layout->addWidget(label); + page->setLayout(layout); + return page; +} + +QWizardPage *LammpsGui::tutorial1_info() +{ + auto *page = new QWizardPage; + page->setTitle("Contents of Tutorial 1"); + page->setPixmap(QWizard::WatermarkPixmap, QPixmap(":/icons/tutorial1-logo.png")); + + auto *label = + new QLabel("

In tutorial 1 you will learn about LAMMPS input files, their syntax and " + " structure, how to create and set up models and their interactions, how to " + "run a minimization and a molecular dynamics trajectory, how to plot " + "thermodynamic data and how to create visualizations of your system

" + "
\n" + "

Click on the \"Next\" button to select a folder.

"); + label->setWordWrap(true); + + auto *layout = new QVBoxLayout; + layout->addWidget(label); + page->setLayout(layout); + return page; +} + +QWizardPage *LammpsGui::tutorial1_directory() +{ + auto *page = new QWizardPage; + page->setTitle("Select Directory for Tutorial 1"); + page->setPixmap(QWizard::WatermarkPixmap, QPixmap(":/icons/tutorial1-logo.png")); + + auto *frame = new QFrame; + auto *label = new QLabel( + "

Select a directory to store the files for tutorial 1. The directory will be " + "created if necessary and LAMMPS-GUI will download the files required for the " + "tutorial.

\n" + "

If selected, an existing directory may be cleared.

\n" + "

Also, available files of the tutorial solution may be downloaded to a " + "folder \"solution\", if requested.

\n" + "
\n"); + label->setWordWrap(true); + + auto *dirlayout = new QHBoxLayout; + auto *directory = new QLineEdit; + // if we are already in the tutorial folder, stay there + if (!current_dir.endsWith("tutorial1")) { + // if current dir is home, or application folder, switch to desktop path + if ((current_dir == QDir::homePath()) || current_dir.contains("AppData") || + current_dir.contains("Program Files")) { + current_dir = QStandardPaths::writableLocation(QStandardPaths::DesktopLocation); + } + current_dir += "/tutorial1"; + } + directory->setText(current_dir); + + auto *dirbutton = new QPushButton("&Choose"); + dirlayout->addWidget(directory); + dirlayout->addWidget(dirbutton); + directory->setObjectName("t1_directory"); + connect(dirbutton, &QPushButton::released, this, &LammpsGui::get_directory); + + auto *grid = new QGridLayout; + auto *purgeval = new QCheckBox; + auto *solval = new QCheckBox; + auto *purgelabel = new QLabel("Remove existing files from directory"); + auto *sollabel = new QLabel("Download solutions"); + purgeval->setCheckState(Qt::Unchecked); + purgeval->setObjectName("t1_dirpurge"); + solval->setCheckState(Qt::Unchecked); + solval->setObjectName("t1_getsolution"); + grid->addWidget(purgeval, 0, 0, Qt::AlignVCenter); + grid->addWidget(purgelabel, 0, 1, Qt::AlignVCenter); + grid->addWidget(solval, 1, 0, Qt::AlignVCenter); + grid->addWidget(sollabel, 1, 1, Qt::AlignVCenter); + grid->setColumnStretch(0, 0); + grid->setColumnStretch(1, 100); + + auto *layout = new QVBoxLayout(frame); + layout->addWidget(label); + layout->addLayout(dirlayout); + layout->addLayout(grid); + + page->setLayout(layout); + return page; +} + +QWizardPage *LammpsGui::tutorial1_finish() +{ + auto *page = new QWizardPage; + page->setTitle("Start Tutorial 1"); + page->setPixmap(QWizard::WatermarkPixmap, QPixmap(":/icons/tutorial1-logo.png")); + + auto *label = new QLabel("

You are now ready to start tutorial 1.

\n" + "
\n" + "

Click on the \"Finish\" button to " + "complete the setup.

"); + label->setWordWrap(true); + + auto *layout = new QVBoxLayout; + layout->addWidget(label); + layout->setStretch(0, 100); + + page->setLayout(layout); + return page; +} + +void LammpsGui::start_tutorial2() +{ + if (wizard) delete wizard; + wizard = new Tutorial2Wizard; + wizard->addPage(tutorial2_intro()); + wizard->addPage(tutorial2_info()); + wizard->addPage(tutorial2_directory()); + wizard->addPage(tutorial2_finish()); + wizard->setWindowTitle("Tutorial 2 Setup Wizard"); + wizard->setWizardStyle(QWizard::ModernStyle); + wizard->show(); +} + +QWizardPage *LammpsGui::tutorial2_intro() +{ + auto *page = new QWizardPage; + page->setTitle("Getting Started With Tutorial 2"); + page->setPixmap(QWizard::WatermarkPixmap, QPixmap(":/icons/tutorial2-logo.png")); + + // XXX TODO: update URL to published tutorial DOI + auto *label = + new QLabel("

This wizard will help you to select and populate a folder with " + "materials required to work through tutorial 2 from a fourthcoming " + "LAMMPS tutorial using LAMMPS-GUI by Simon Gravelle, Jake Gissinger, " + "and Axel Kohlmeyer.

\n" + "The work-in-progress materials for this tutorial are available at: " + "github.com/lammpstutorials/lammpstutorials-article


\n" + "
\n" + "

Click on the \"Next\" button to begin.

"); + label->setWordWrap(true); + + auto *layout = new QVBoxLayout; + layout->addWidget(label); + page->setLayout(layout); + return page; +} + +QWizardPage *LammpsGui::tutorial2_info() +{ + auto *page = new QWizardPage; + page->setTitle("Contents of Tutorial 2"); + page->setPixmap(QWizard::WatermarkPixmap, QPixmap(":/icons/tutorial2-logo.png")); + + auto *label = + new QLabel("

In tutorial 2 you will learn about setting up a simulation for a molecular " + "system with bonds. The target is to simulate a carbon nanotube with a " + "conventional molecular force field under growing strain and observe the " + "response to it. Since bonds are represented by a harmonic potential, they " + "cannot break. This is then compared to simulating the same system with a " + "reactive force field (AIREBO) where bonds may be broken and formed.

" + "
\n" + "

Click on the \"Next\" button to select a folder.

"); + label->setWordWrap(true); + + auto *layout = new QVBoxLayout; + layout->addWidget(label); + page->setLayout(layout); + return page; +} + +QWizardPage *LammpsGui::tutorial2_directory() +{ + auto *page = new QWizardPage; + page->setTitle("Select Directory for Tutorial 2"); + page->setPixmap(QWizard::WatermarkPixmap, QPixmap(":/icons/tutorial2-logo.png")); + + auto *frame = new QFrame; + auto *label = new QLabel( + "

Select a directory to store the files for tutorial 2. The directory will be " + "created if necessary and LAMMPS-GUI will download the files required for the " + "tutorial.

\n" + "

If selected, an existing directory may be cleared.

\n" + "

Also, available files of the tutorial solution may be downloaded to a " + "folder \"solution\", if requested.

\n" + "
\n"); + label->setWordWrap(true); + + auto *dirlayout = new QHBoxLayout; + auto *directory = new QLineEdit; + // if we are already in the tutorial folder, stay there + if (!current_dir.endsWith("tutorial2")) { + // if current dir is home, or application folder, switch to desktop path + if ((current_dir == QDir::homePath()) || current_dir.contains("AppData") || + current_dir.contains("Program Files")) { + current_dir = QStandardPaths::writableLocation(QStandardPaths::DesktopLocation); + } + current_dir += "/tutorial2"; + } + directory->setText(current_dir); + + auto *dirbutton = new QPushButton("&Choose"); + dirlayout->addWidget(directory); + dirlayout->addWidget(dirbutton); + directory->setObjectName("t2_directory"); + connect(dirbutton, &QPushButton::released, this, &LammpsGui::get_directory); + + auto *grid = new QGridLayout; + auto *purgeval = new QCheckBox; + auto *solval = new QCheckBox; + auto *purgelabel = new QLabel("Remove existing files from directory"); + auto *sollabel = new QLabel("Download solutions"); + purgeval->setCheckState(Qt::Unchecked); + purgeval->setObjectName("t2_dirpurge"); + solval->setCheckState(Qt::Unchecked); + solval->setObjectName("t2_getsolution"); + grid->addWidget(purgeval, 0, 0, Qt::AlignVCenter); + grid->addWidget(purgelabel, 0, 1, Qt::AlignVCenter); + grid->addWidget(solval, 1, 0, Qt::AlignVCenter); + grid->addWidget(sollabel, 1, 1, Qt::AlignVCenter); + grid->setColumnStretch(0, 0); + grid->setColumnStretch(1, 100); + + auto *layout = new QVBoxLayout(frame); + layout->addWidget(label); + layout->addLayout(dirlayout); + layout->addLayout(grid); + + page->setLayout(layout); + return page; +} + +QWizardPage *LammpsGui::tutorial2_finish() +{ + auto *page = new QWizardPage; + page->setTitle("Start Tutorial 2"); + page->setPixmap(QWizard::WatermarkPixmap, QPixmap(":/icons/tutorial2-logo.png")); + + auto *label = new QLabel("

You are now ready to start tutorial 2.

\n" + "
\n" + "

Click on the \"Finish\" button to " + "complete the setup.

"); + label->setWordWrap(true); + + auto *layout = new QVBoxLayout; + layout->addWidget(label); + layout->setStretch(0, 100); + + page->setLayout(layout); + return page; +} + void LammpsGui::howto() { - QDesktopServices::openUrl(QUrl("https://docs.lammps.org/Howto_lammps_gui.html")); + if (docver.isEmpty()) setDocver(); + QDesktopServices::openUrl( + QUrl(QString("https://docs.lammps.org%1Howto_lammps_gui.html").arg(docver))); } void LammpsGui::defaults() @@ -1352,6 +1860,7 @@ void LammpsGui::edit_variables() { QList> newvars = variables; SetVariables vars(newvars); + vars.setFont(font()); if (vars.exec() == QDialog::Accepted) { variables = newvars; if (lammps.is_running()) { @@ -1373,6 +1882,8 @@ void LammpsGui::preferences() bool oldcite = settings.value("cite", false).toBool(); Preferences prefs(&lammps); + prefs.setFont(font()); + prefs.setObjectName("preferences"); if (prefs.exec() == QDialog::Accepted) { // must delete LAMMPS instance after preferences have changed that require // using different command line flags when creating the LAMMPS instance like @@ -1395,7 +1906,7 @@ void LammpsGui::preferences() } if (imagewindow) imagewindow->createImage(); settings.beginGroup("reformat"); - ui->textEdit->setReformatOnReturn(settings.value("return", true).toBool()); + ui->textEdit->setReformatOnReturn(settings.value("return", false).toBool()); ui->textEdit->setAutoComplete(settings.value("automatic", true).toBool()); settings.endGroup(); } @@ -1488,6 +1999,147 @@ void LammpsGui::start_lammps() } } +bool LammpsGui::eventFilter(QObject *watched, QEvent *event) +{ + if (event->type() == QEvent::Close) { + autoSave(); + } + return QWidget::eventFilter(watched, event); +} + +// LAMMPS geturl command with current location of the input and solution files on the web +static const QString geturl = "geturl https://raw.githubusercontent.com/akohlmey/" + "lammps-tutorials-inputs/main/tutorial%1/%2 output %2 verify no"; + +void LammpsGui::setup_tutorial(int tutno, const QString &dir, bool purgedir, bool getsolution) +{ + QDir directory(dir); + directory.cd(dir); + + if (purgedir) purge_directory(dir); + if (getsolution) directory.mkpath("solution"); + + start_lammps(); + lammps.command("clear"); + lammps.command(QString("shell cd " + dir).toStdString().c_str()); + + // download and process manifest for selected tutorial + // must check for error after download, e.g. when there is no network. + + lammps.command(geturl.arg(tutno).arg(".manifest").toStdString().c_str()); + if (lammps.has_error()) { + constexpr int BUFLEN = 1024; + char errorbuf[BUFLEN]; + lammps.get_last_error_message(errorbuf, BUFLEN); + QMessageBox::critical(this, "LAMMPS-GUI download error", QString(errorbuf)); + return; + } + + QFile manifest(".manifest"); + QString line, first; + if (manifest.open(QIODevice::ReadOnly)) { + while (!manifest.atEnd()) { + line = (const char *)manifest.readLine(); + line = line.trimmed(); + + // skip empty and comment lines + if (line.isEmpty() || line.startsWith('#')) continue; + + // file in subfolder + if (line.contains('/')) { + if (getsolution && line.startsWith("solution")) { + lammps.command(geturl.arg(tutno).arg(line).toStdString().c_str()); + } + } else { + // first file is the initial template + if (first.isEmpty()) first = line; + lammps.command(geturl.arg(tutno).arg(line).toStdString().c_str()); + } + } + manifest.close(); + manifest.remove(); + } + if (!first.isEmpty()) open_file(first); +} + +Tutorial1Wizard::Tutorial1Wizard(QWidget *parent) : QWizard(parent) +{ + setWindowIcon(QIcon(":/icons/tutorial-logo.png")); +} + +// actions to perform when the wizard for tutorial 1 is complete +// and the user has clicked on "Finish" + +void Tutorial1Wizard::accept() +{ + // get pointers to the widgets with the information we need + auto *dirname = findChild("t1_directory"); + auto *dirpurge = findChild("t1_dirpurge"); + auto *getsol = findChild("t1_getsolution"); + + // create and populate directory. + if (dirname) { + QDir directory; + auto curdir = dirname->text().trimmed(); + if (!directory.mkpath(curdir)) { + QMessageBox::warning(this, "Warning", + "Cannot create tutorial 1 working directory " + curdir + + ".\n\nGoing back to directory selection."); + back(); + return; + } + + bool purgedir = dirpurge && (dirpurge->checkState() == Qt::Checked); + bool getsolution = getsol && (getsol->checkState() == Qt::Checked); + + // get hold of LAMMPS-GUI main widget + LammpsGui *main = nullptr; + for (QWidget *widget : QApplication::topLevelWidgets()) + if (widget->objectName() == "LammpsGui") main = dynamic_cast(widget); + if (main) main->setup_tutorial(1, curdir, purgedir, getsolution); + } + QDialog::accept(); +} + +Tutorial2Wizard::Tutorial2Wizard(QWidget *parent) : QWizard(parent) +{ + setWindowIcon(QIcon(":/icons/tutorial-logo.png")); +} + +// actions to perform when the wizard for tutorial 2 is complete +// and the user has clicked on "Finish" + +void Tutorial2Wizard::accept() +{ + // get pointers to the widgets with the information we need + auto *dirname = findChild("t2_directory"); + auto *dirpurge = findChild("t2_dirpurge"); + auto *getsol = findChild("t2_getsolution"); + + // create and populate directory. + if (dirname) { + QDir directory; + auto curdir = dirname->text().trimmed(); + if (!directory.mkpath(curdir)) { + QMessageBox::warning(this, "Warning", + "Cannot create tutorial 2 working directory " + curdir + + ".\n\nGoing back to directory selection."); + back(); + return; + } + + bool purgedir = dirpurge && (dirpurge->checkState() == Qt::Checked); + bool getsolution = getsol && (getsol->checkState() == Qt::Checked); + + // get hold of LAMMPS-GUI main widget + LammpsGui *main = nullptr; + for (QWidget *widget : QApplication::topLevelWidgets()) + if (widget->objectName() == "LammpsGui") main = dynamic_cast(widget); + if (main) main->setup_tutorial(2, curdir, purgedir, getsolution); + } + QDialog::accept(); +} + // Local Variables: // c-basic-offset: 4 // End: diff --git a/tools/lammps-gui/lammpsgui.h b/tools/lammps-gui/lammpsgui.h index 29372efc1c..0cf6677149 100644 --- a/tools/lammps-gui/lammpsgui.h +++ b/tools/lammps-gui/lammpsgui.h @@ -16,21 +16,32 @@ #include +#include #include #include #include #include #include +#include #include #include #include "lammpswrapper.h" +// identifier for LAMMPS restart files +#if !defined(LAMMPS_MAGIC) +#define LAMMPS_MAGIC "LammpS RestartT" +#endif + // forward declarations -class GeneralTab; -class LammpsRunner; -class LogWindow; +class QFont; +class QLabel; +class QPlainTextEdit; +class QProgressBar; +class QTimer; +class QWidget; +class QWizardPage; QT_BEGIN_NAMESPACE namespace Ui { @@ -38,23 +49,23 @@ class LammpsGui; } QT_END_NAMESPACE -class QLabel; -class QPlainTextEdit; -class QProgressBar; -class QTimer; - -class Highlighter; -class StdCapture; -class Preferences; -class ImageViewer; class ChartWindow; +class GeneralTab; +class Highlighter; +class ImageViewer; +class LammpsRunner; +class LogWindow; +class Preferences; class SlideShow; +class StdCapture; class LammpsGui : public QMainWindow { Q_OBJECT friend class CodeEditor; friend class GeneralTab; + friend class Tutorial1Wizard; + friend class Tutorial2Wizard; public: LammpsGui(QWidget *parent = nullptr, const char *filename = nullptr); @@ -63,12 +74,27 @@ public: protected: void open_file(const QString &filename); void view_file(const QString &filename); + void inspect_file(const QString &filename); void write_file(const QString &filename); void update_recents(const QString &filename = ""); void update_variables(); void do_run(bool use_buffer); void start_lammps(); void run_done(); + void setDocver(); + void autoSave(); + void setFont(const QFont &newfont); + QWizardPage *tutorial1_intro(); + QWizardPage *tutorial1_info(); + QWizardPage *tutorial1_directory(); + QWizardPage *tutorial1_finish(); + QWizardPage *tutorial2_intro(); + QWizardPage *tutorial2_info(); + QWizardPage *tutorial2_directory(); + QWizardPage *tutorial2_finish(); + void setup_tutorial(int tutno, const QString &dir, bool purgedir, bool getsolution); + void purge_inspect_list(); + bool eventFilter(QObject *watched, QEvent *event) override; public slots: void quit(); @@ -78,7 +104,9 @@ private slots: void new_document(); void open(); void view(); + void inspect(); void open_recent(); + void get_directory(); void start_exe(); void save(); void save_as(); @@ -100,7 +128,9 @@ private slots: void about(); void help(); void manual(); - void tutorial(); + void tutorial_web(); + void start_tutorial1(); + void start_tutorial2(); void howto(); void logupdate(); void modified(); @@ -124,6 +154,14 @@ private: Preferences *prefdialog; QLabel *lammpsstatus; QLabel *varwindow; + QWizard *wizard; + + struct InspectData { + QWidget *info; + QWidget *data; + QWidget *image; + }; + QList inspectList; QString current_file; QString current_dir; @@ -132,11 +170,28 @@ private: LammpsWrapper lammps; LammpsRunner *runner; + QString docver; std::string plugin_path; bool is_running; int run_counter; std::vector lammps_args; }; + +class Tutorial1Wizard : public QWizard { + Q_OBJECT + +public: + Tutorial1Wizard(QWidget *parent = nullptr); + void accept() override; +}; + +class Tutorial2Wizard : public QWizard { + Q_OBJECT + +public: + Tutorial2Wizard(QWidget *parent = nullptr); + void accept() override; +}; #endif // LAMMPSGUI_H // Local Variables: diff --git a/tools/lammps-gui/lammpsgui.qrc b/tools/lammps-gui/lammpsgui.qrc index eb7c1fbc19..5de1a5efba 100644 --- a/tools/lammps-gui/lammpsgui.qrc +++ b/tools/lammps-gui/lammpsgui.qrc @@ -2,6 +2,8 @@ icons/lammps-icon-128x128.png + icons/tutorial1-logo.png + icons/tutorial2-logo.png help_index.table lammps_internal_commands.txt @@ -42,6 +44,7 @@ icons/help-browser.png icons/help-faq.png icons/help-tutorial.png + icons/image-shiny.png icons/image-x-generic.png icons/media-playback-start-2.png icons/media-playlist-repeat.png @@ -58,6 +61,7 @@ icons/system-help.png icons/system-run.png icons/trash.png + icons/tutorial-logo.png icons/utilities-terminal.png icons/vdw-style.png icons/vmd.png diff --git a/tools/lammps-gui/lammpsgui.ui b/tools/lammps-gui/lammpsgui.ui index 2607e715b9..1517168327 100644 --- a/tools/lammps-gui/lammpsgui.ui +++ b/tools/lammps-gui/lammpsgui.ui @@ -38,6 +38,7 @@ + @@ -78,6 +79,13 @@ + + + &Tutorials + + + + &About @@ -102,6 +110,7 @@ + @@ -138,6 +147,17 @@ Ctrl+Shift+F + + + + + + Inspect &Restart + + + Ctrl+Shift+R + + @@ -308,7 +328,7 @@ - LAMMPS &Manual + LAMMPS Online &Manual Ctrl+Shift+M @@ -319,7 +339,7 @@ - LAMMPS &Tutorial + LAMMPS &Tutorial Website Ctrl+Shift+T @@ -461,6 +481,22 @@ Ctrl+Shift+W + + + + + + Start LAMMPS Tutorial &1 + + + + + + + + Start LAMMPS Tutorial &2 + + diff --git a/tools/lammps-gui/org.lammps.lammps-gui.yml b/tools/lammps-gui/org.lammps.lammps-gui.yml new file mode 100644 index 0000000000..26f35531ce --- /dev/null +++ b/tools/lammps-gui/org.lammps.lammps-gui.yml @@ -0,0 +1,112 @@ +id: org.lammps.lammps-gui +runtime: org.kde.Platform +runtime-version: "5.15-23.08" +sdk: org.kde.Sdk +command: lammps-gui +finish-args: + - --share=ipc + - --socket=fallback-x11 + - --socket=wayland + - --filesystem=host + - --share=network +build-options: + build-args: + - --share=network +rename-icon: lammps +rename-desktop-file: lammps-gui.desktop +rename-appdata-file: lammps-gui.appdata.xml +rename-mime-file: lammps-input.xml +modules: + - name: lammps-gui + buildsystem: cmake-ninja + builddir: true + subdir: cmake + config-opts: + - -D PKG_AMOEBA=yes + - -D PKG_ASPHERE=yes + - -D PKG_AWPMD=yes + - -D PKG_BOCS=yes + - -D PKG_BODY=yes + - -D PKG_BPM=yes + - -D PKG_BROWNIAN=yes + - -D PKG_CG-DNA=yes + - -D PKG_CG-SPICA=yes + - -D PKG_CLASS2=yes + - -D PKG_COLLOID=yes + - -D PKG_COLVARS=yes + - -D PKG_COMPRESS=yes + - -D PKG_CORESHELL=yes + - -D PKG_DIELECTRIC=yes + - -D PKG_DIFFRACTION=yes + - -D PKG_DIPOLE=yes + - -D PKG_DPD-BASIC=yes + - -D PKG_DPD-MESO=yes + - -D PKG_DPD-REACT=yes + - -D PKG_DPD-SMOOTH=yes + - -D PKG_DRUDE=yes + - -D PKG_EFF=yes + - -D PKG_ELECTRODE=yes + - -D PKG_EXTRA-COMMAND=yes + - -D PKG_EXTRA-COMPUTE=yes + - -D PKG_EXTRA-DUMP=yes + - -D PKG_EXTRA-FIX=yes + - -D PKG_EXTRA-MOLECULE=yes + - -D PKG_EXTRA-PAIR=yes + - -D PKG_FEP=yes + - -D PKG_GRANULAR=yes + - -D PKG_GPU=yes + - -D GPU_API=opencl + - -D PKG_INTERLAYER=yes + - -D PKG_KSPACE=yes + - -D PKG_LEPTON=yes + - -D PKG_MACHDYN=yes + - -D PKG_MANYBODY=yes + - -D PKG_MANIFOLD=yes + - -D PKG_MC=yes + - -D PKG_MEAM=yes + - -D PKG_MESONT=yes + - -D PKG_MGPT=yes + - -D PKG_MISC=yes + - -D PKG_ML-IAP=yes + - -D PKG_ML-PACE=yes + - -D PKG_ML-POD=yes + - -D PKG_ML-RANN=yes + - -D PKG_ML-SNAP=yes + - -D PKG_ML-UF3=yes + - -D PKG_MOFFF=yes + - -D PKG_MOLECULE=yes + - -D PKG_OPENMP=yes + - -D PKG_OPT=yes + - -D PKG_ORIENT=yes + - -D PKG_PERI=yes + - -D PKG_PHONON=yes + - -D PKG_PLUGIN=yes + - -D PKG_POEMS=yes + - -D PKG_PTM=yes + - -D PKG_PYTHON=yes + - -D PKG_QEQ=yes + - -D PKG_QTB=yes + - -D PKG_REACTION=yes + - -D PKG_REAXFF=yes + - -D PKG_RIGID=yes + - -D PKG_SHOCK=yes + - -D PKG_SMTBQ=yes + - -D PKG_SPH=yes + - -D PKG_SPIN=yes + - -D PKG_SRD=yes + - -D PKG_TALLY=yes + - -D PKG_UEF=yes + - -D PKG_VORONOI=yes + - -D PKG_YAFF=yes + - -D BUILD_LAMMPS_GUI=yes + - -D BUILD_SHARED_LIBS=yes + - -D CMAKE_CXX_COMPILER=g++ + - -D CMAKE_C_COMPILER=gcc + - -D CMAKE_Fortran_COMPILER=gfortran + - -D CMAKE_BUILD_TYPE=Release + - -D DOWNLOAD_POTENTIALS=no + - -D BUILD_TOOLS=yes + sources: + - type: git + url: https://github.com/akohlmey/lammps.git + branch: collected-small-fixes diff --git a/tools/lammps-gui/preferences.cpp b/tools/lammps-gui/preferences.cpp index b601a9995f..2e1847c534 100644 --- a/tools/lammps-gui/preferences.cpp +++ b/tools/lammps-gui/preferences.cpp @@ -137,6 +137,8 @@ void Preferences::accept() if (box) settings->setValue("antialias", box->isChecked()); box = tabWidget->findChild("ssao"); if (box) settings->setValue("ssao", box->isChecked()); + box = tabWidget->findChild("shiny"); + if (box) settings->setValue("shinystyle", box->isChecked()); box = tabWidget->findChild("box"); if (box) settings->setValue("box", box->isChecked()); box = tabWidget->findChild("axes"); @@ -196,6 +198,8 @@ void Preferences::accept() if (box) settings->setValue("return", box->isChecked()); box = tabWidget->findChild("autoval"); if (box) settings->setValue("automatic", box->isChecked()); + box = tabWidget->findChild("savval"); + if (box) settings->setValue("autosave", box->isChecked()); settings->endGroup(); QDialog::accept(); @@ -291,16 +295,24 @@ void GeneralTab::updatefonts(const QFont &all, const QFont &text) for (QWidget *widget : QApplication::topLevelWidgets()) if (widget->objectName() == "LammpsGui") main = dynamic_cast(widget); - QApplication::setFont(all); - if (main) main->ui->textEdit->document()->setDefaultFont(text); + if (main) { + main->setFont(all); + main->ui->textEdit->document()->setDefaultFont(text); + if (main->wizard) main->wizard->setFont(all); + } + + Preferences *prefs = nullptr; + for (QWidget *widget : QApplication::topLevelWidgets()) + if (widget->objectName() == "preferences") prefs = dynamic_cast(widget); + if (prefs) prefs->setFont(all); } void GeneralTab::newallfont() { QSettings settings; QFont all, text; - all.fromString(settings.value("allfont", "").toString()); - text.fromString(settings.value("textfont", "").toString()); + all.fromString(settings.value("allfont", QFont("Arial", -1).toString()).toString()); + text.fromString(settings.value("textfont", QFont("Monospace", -1).toString()).toString()); bool ok = false; QFont font = QFontDialog::getFont(&ok, all, this, QString("Select Default Font")); @@ -313,8 +325,8 @@ void GeneralTab::newtextfont() { QSettings settings; QFont all, text; - all.fromString(settings.value("allfont", "").toString()); - text.fromString(settings.value("textfont", "").toString()); + all.fromString(settings.value("allfont", QFont("Arial", -1).toString()).toString()); + text.fromString(settings.value("textfont", QFont("Monospace", -1).toString()).toString()); bool ok = false; QFont font = QFontDialog::getFont(&ok, text, this, QString("Select Text Font")); @@ -444,17 +456,19 @@ SnapshotTab::SnapshotTab(QSettings *_settings, QWidget *parent) : auto *zoom = new QLabel("Zoom factor:"); auto *anti = new QLabel("Antialias:"); auto *ssao = new QLabel("HQ Image mode:"); + auto *shiny = new QLabel("Shiny Image mode:"); auto *bbox = new QLabel("Show Box:"); auto *axes = new QLabel("Show Axes:"); auto *vdw = new QLabel("VDW Style:"); auto *cback = new QLabel("Background Color:"); auto *cbox = new QLabel("Box Color:"); settings->beginGroup("snapshot"); - auto *xval = new QLineEdit(settings->value("xsize", "800").toString()); + auto *xval = new QLineEdit(settings->value("xsize", "600").toString()); auto *yval = new QLineEdit(settings->value("ysize", "600").toString()); auto *zval = new QLineEdit(settings->value("zoom", "1.0").toString()); auto *aval = new QCheckBox; auto *sval = new QCheckBox; + auto *hval = new QCheckBox; auto *bval = new QCheckBox; auto *eval = new QCheckBox; auto *vval = new QCheckBox; @@ -462,6 +476,8 @@ SnapshotTab::SnapshotTab(QSettings *_settings, QWidget *parent) : sval->setObjectName("ssao"); aval->setCheckState(settings->value("antialias", false).toBool() ? Qt::Checked : Qt::Unchecked); aval->setObjectName("anti"); + hval->setCheckState(settings->value("shinystyle", true).toBool() ? Qt::Checked : Qt::Unchecked); + hval->setObjectName("shiny"); bval->setCheckState(settings->value("box", true).toBool() ? Qt::Checked : Qt::Unchecked); bval->setObjectName("box"); eval->setCheckState(settings->value("axes", false).toBool() ? Qt::Checked : Qt::Unchecked); @@ -508,6 +524,8 @@ SnapshotTab::SnapshotTab(QSettings *_settings, QWidget *parent) : grid->addWidget(aval, i++, 1, Qt::AlignTop); grid->addWidget(ssao, i, 0, Qt::AlignTop); grid->addWidget(sval, i++, 1, Qt::AlignVCenter); + grid->addWidget(shiny, i, 0, Qt::AlignTop); + grid->addWidget(hval, i++, 1, Qt::AlignVCenter); grid->addWidget(bbox, i, 0, Qt::AlignTop); grid->addWidget(bval, i++, 1, Qt::AlignVCenter); grid->addWidget(axes, i, 0, Qt::AlignTop); @@ -536,29 +554,34 @@ EditorTab::EditorTab(QSettings *_settings, QWidget *parent) : QWidget(parent), s auto *namelbl = new QLabel("Name width:"); auto *retlbl = new QLabel("Reformat with 'Enter':"); auto *autolbl = new QLabel("Automatic completion:"); + auto *savlbl = new QLabel("Auto-save on 'Run' and 'Quit':"); auto *cmdval = new QSpinBox; auto *typeval = new QSpinBox; auto *idval = new QSpinBox; auto *nameval = new QSpinBox; auto *retval = new QCheckBox; auto *autoval = new QCheckBox; + auto *savval = new QCheckBox; + cmdval->setObjectName("cmdval"); cmdval->setRange(1, 32); cmdval->setValue(settings->value("command", "16").toInt()); - cmdval->setObjectName("cmdval"); + typeval->setObjectName("typeval"); typeval->setRange(1, 32); typeval->setValue(settings->value("type", "4").toInt()); - typeval->setObjectName("typeval"); + idval->setObjectName("idval"); idval->setRange(1, 32); idval->setValue(settings->value("id", "8").toInt()); - idval->setObjectName("idval"); + nameval->setObjectName("nameval"); nameval->setRange(1, 32); nameval->setValue(settings->value("name", "8").toInt()); - nameval->setObjectName("nameval"); - retval->setCheckState(settings->value("return", true).toBool() ? Qt::Checked : Qt::Unchecked); retval->setObjectName("retval"); + retval->setCheckState(settings->value("return", false).toBool() ? Qt::Checked : Qt::Unchecked); + autoval->setObjectName("autoval"); autoval->setCheckState(settings->value("automatic", true).toBool() ? Qt::Checked : Qt::Unchecked); - autoval->setObjectName("autoval"); + savval->setObjectName("savval"); + savval->setCheckState(settings->value("autosave", false).toBool() ? Qt::Checked + : Qt::Unchecked); settings->endGroup(); int i = 0; @@ -575,6 +598,8 @@ EditorTab::EditorTab(QSettings *_settings, QWidget *parent) : QWidget(parent), s grid->addWidget(retval, i++, 1, Qt::AlignVCenter); grid->addWidget(autolbl, i, 0, Qt::AlignTop); grid->addWidget(autoval, i++, 1, Qt::AlignVCenter); + grid->addWidget(savlbl, i, 0, Qt::AlignTop); + grid->addWidget(savval, i++, 1, Qt::AlignVCenter); grid->addItem(new QSpacerItem(100, 100, QSizePolicy::Minimum, QSizePolicy::Expanding), i, 0); grid->addItem(new QSpacerItem(100, 100, QSizePolicy::Minimum, QSizePolicy::Expanding), i, 1); diff --git a/tools/swig/lammps.i b/tools/swig/lammps.i index 2207a72e36..9bef047da4 100644 --- a/tools/swig/lammps.i +++ b/tools/swig/lammps.i @@ -171,6 +171,7 @@ extern int lammps_config_has_gzip_support(); extern int lammps_config_has_png_support(); extern int lammps_config_has_jpeg_support(); extern int lammps_config_has_ffmpeg_support(); +extern int lammps_config_has_curl_support(); extern int lammps_config_has_exceptions(); extern int lammps_config_has_package(const char *); extern int lammps_config_package_count(); @@ -359,6 +360,7 @@ extern int lammps_config_has_gzip_support(); extern int lammps_config_has_png_support(); extern int lammps_config_has_jpeg_support(); extern int lammps_config_has_ffmpeg_support(); +extern int lammps_config_has_curl_support(); extern int lammps_config_has_exceptions(); extern int lammps_config_has_package(const char *); extern int lammps_config_package_count(); diff --git a/tools/valgrind/MPICH.supp b/tools/valgrind/MPICH.supp index 6934cf8fbd..80d46a49c8 100644 --- a/tools/valgrind/MPICH.supp +++ b/tools/valgrind/MPICH.supp @@ -39,3 +39,45 @@ fun:PMPI_Init fun:main } +{ + MPICH_MPI_init4 + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:psmx3_recv_generic + ... + obj:* + ... + fun:MPIDI_Init.constprop.0 + ... + fun:PMPI_Init + fun:main +} +{ + MPICH_MPI_init5 + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + obj:* + ... + fun: usdf_getinfo.lto_priv.0 + ... + fun:MPID_Init.constprop.0 + ... + fun:PMPI_Init + fun:main +} +{ + MPICH_MPI_init6 + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:strdup + obj:* + ... + fun:MPID_Init.constprop.0 + ... + obj:* + fun:PMPI_Init + fun:main +} diff --git a/tools/valgrind/OpenMP.supp b/tools/valgrind/OpenMP.supp index e92e34e816..29284b3bcf 100644 --- a/tools/valgrind/OpenMP.supp +++ b/tools/valgrind/OpenMP.supp @@ -193,3 +193,13 @@ fun:GOMP_parallel } +{ + gomp_realloc1 + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + fun:gomp_realloc + fun:gomp_team_start + fun:GOMP_parallel +} + diff --git a/unittest/CMakeLists.txt b/unittest/CMakeLists.txt index bf4c6b50a8..7c94cad4e3 100644 --- a/unittest/CMakeLists.txt +++ b/unittest/CMakeLists.txt @@ -28,6 +28,11 @@ add_library(GTest::GMock ALIAS gmock) add_library(GTest::GTestMain ALIAS gtest_main) add_library(GTest::GMockMain ALIAS gmock_main) +option(SKIP_DEATH_TESTS "Do not run 'death tests' to reduce false positives in valgrind" OFF) +mark_as_advanced(SKIP_DEATH_TESTS) +if(SKIP_DEATH_TESTS) + add_compile_definitions(LAMMPS_SKIP_DEATH_TESTS) +endif() # import foreach(_FLAG ${CMAKE_TUNE_FLAGS}) add_compile_options(${_FLAG}) diff --git a/unittest/c-library/test_library_properties.cpp b/unittest/c-library/test_library_properties.cpp index a2df55d120..96d63629df 100644 --- a/unittest/c-library/test_library_properties.cpp +++ b/unittest/c-library/test_library_properties.cpp @@ -547,13 +547,22 @@ TEST_F(LibraryProperties, neighlist) lammps_command(lmp, "run 0 post no"); if (!verbose) ::testing::internal::GetCapturedStdout(); - int nhisto = - *(double *)lammps_extract_fix(lmp, "dist", LMP_STYLE_GLOBAL, LMP_TYPE_VECTOR, 0, 0); - int nskip = *(double *)lammps_extract_fix(lmp, "dist", LMP_STYLE_GLOBAL, LMP_TYPE_VECTOR, 1, 0); - double minval = - *(double *)lammps_extract_fix(lmp, "dist", LMP_STYLE_GLOBAL, LMP_TYPE_VECTOR, 2, 0); - double maxval = - *(double *)lammps_extract_fix(lmp, "dist", LMP_STYLE_GLOBAL, LMP_TYPE_VECTOR, 3, 0); + void *ptr = lammps_extract_fix(lmp, "dist", LMP_STYLE_GLOBAL, LMP_TYPE_VECTOR, 0, 0); + int nhisto = *(double *)ptr; + lammps_free(ptr); + + ptr = lammps_extract_fix(lmp, "dist", LMP_STYLE_GLOBAL, LMP_TYPE_VECTOR, 1, 0); + int nskip = *(double *)ptr; + lammps_free(ptr); + + ptr = lammps_extract_fix(lmp, "dist", LMP_STYLE_GLOBAL, LMP_TYPE_VECTOR, 2, 0); + double minval = *(double *)ptr; + lammps_free(ptr); + + ptr = lammps_extract_fix(lmp, "dist", LMP_STYLE_GLOBAL, LMP_TYPE_VECTOR, 3, 0); + double maxval = *(double *)ptr; + lammps_free(ptr); + // 21 pair distances counted, none skipped, smallest 1.0, largest 2.1 EXPECT_EQ(nhisto, 21); EXPECT_EQ(nskip, 0); diff --git a/unittest/commands/test_simple_commands.cpp b/unittest/commands/test_simple_commands.cpp index 79ea1c71ce..d3fef447ac 100644 --- a/unittest/commands/test_simple_commands.cpp +++ b/unittest/commands/test_simple_commands.cpp @@ -19,6 +19,7 @@ #include "info.h" #include "input.h" #include "output.h" +#include "platform.h" #include "update.h" #include "utils.h" #include "variable.h" @@ -214,9 +215,9 @@ TEST_F(SimpleCommandsTest, Quit) TEST_FAILURE(".*ERROR: Expected integer .*", command("quit xxx");); // the following tests must be skipped with OpenMPI or MPICH 4.1 and later due to using threads - if (platform::mpi_vendor() == "Open MPI") GTEST_SKIP(); + if (platform::mpi_vendor() == "Open MPI") GTEST_SKIP() << "OpenMPI"; #if defined(MPICH_NUMVERSION) - if (MPICH_NUMVERSION >= 40100000) GTEST_SKIP(); + if (MPICH_NUMVERSION >= 40100000) GTEST_SKIP() << "MPICH with threads"; #endif ASSERT_EXIT(command("quit"), ExitedWithCode(0), ""); ASSERT_EXIT(command("quit 9"), ExitedWithCode(9), ""); @@ -412,7 +413,7 @@ TEST_F(SimpleCommandsTest, Plugin) { const char *bindir = getenv("LAMMPS_PLUGIN_BIN_DIR"); const char *config = getenv("CMAKE_CONFIG_TYPE"); - if (!bindir) GTEST_SKIP(); + if (!bindir) GTEST_SKIP() << "LAMMPS_PLUGIN_BIN_DIR not set"; std::string loadfmt = platform::path_join("plugin load ", bindir); if (config) loadfmt = platform::path_join(loadfmt, config); loadfmt = platform::path_join(loadfmt, "{}plugin.so"); @@ -556,6 +557,50 @@ TEST_F(SimpleCommandsTest, CiteMe) // no new citation. no CITE-CITE-CITE- lines ASSERT_THAT(text, Not(ContainsRegex(".*CITE-CITE-CITE-CITE.*"))); } + +TEST_F(SimpleCommandsTest, Geturl) +{ + if (!LAMMPS::is_installed_pkg("EXTRA-COMMAND")) GTEST_SKIP(); + platform::unlink("index.html"); + platform::unlink("myindex.html"); + if (Info::has_curl_support()) { + BEGIN_CAPTURE_OUTPUT(); + command("geturl https://www.lammps.org/index.html"); + command("geturl https://www.lammps.org/index.html output myindex.html"); + END_CAPTURE_OUTPUT(); + EXPECT_TRUE(platform::file_is_readable("index.html")); + EXPECT_TRUE(platform::file_is_readable("myindex.html")); + FILE *fp = fopen("index.html", "wb"); + fputs("just testing\n", fp); + fclose(fp); + BEGIN_CAPTURE_OUTPUT(); + command("geturl https://www.lammps.org/index.html overwrite no"); + END_CAPTURE_OUTPUT(); + char checkme[20]; + fp = fopen("index.html", "rb"); + fgets(checkme, 19, fp); + fclose(fp); + EXPECT_EQ(strcmp(checkme, "just testing\n"), 0); + BEGIN_CAPTURE_OUTPUT(); + command("geturl https://www.lammps.org/index.html overwrite yes"); + END_CAPTURE_OUTPUT(); + fp = fopen("index.html", "rb"); + fgets(checkme, 19, fp); + fclose(fp); + EXPECT_NE(strcmp(checkme, "just testing\n"), 0); + TEST_FAILURE(".*ERROR: Illegal geturl command: missing argument.*", command("geturl ");); + TEST_FAILURE(".*ERROR: URL 'dummy' is not a supported URL.*", command("geturl dummy");); + TEST_FAILURE(".*ERROR on proc 0: Download of xxx.txt failed with: " + "HTTP response code said error 404.*", + command("geturl https://www.lammps.org/xxx.txt");); + } else { + TEST_FAILURE(".*ERROR: LAMMPS has not been compiled with libcurl support*", + command("geturl https:://www.lammps.org/index.html");); + } + platform::unlink("index.html"); + platform::unlink("myindex.html"); +} + } // namespace LAMMPS_NS int main(int argc, char **argv) diff --git a/unittest/force-styles/tests/atomic-pair-meam_2nn.yaml b/unittest/force-styles/tests/atomic-pair-meam_2nn.yaml new file mode 100644 index 0000000000..0fd77d67ba --- /dev/null +++ b/unittest/force-styles/tests/atomic-pair-meam_2nn.yaml @@ -0,0 +1,94 @@ +--- +lammps_version: 27 Jun 2024 +tags: slow +date_generated: Mon Aug 12 23:46:29 2024 +epsilon: 7.5e-12 +skip_tests: +prerequisites: ! | + pair meam +pre_commands: ! | + variable newton_pair delete + if "$(is_active(package,gpu)) > 0.0" then "variable newton_pair index off" else "variable newton_pair index on" +post_commands: ! "" +input_file: in.metal +pair_style: meam +pair_coeff: ! | + * * library_2nn.meam Mo Co Ni V Fe Al Cr MoCoNiVFeAlCr_2nn.meam Al Fe +extract: ! | + scale 2 +natoms: 32 +init_vdwl: -107.8522149524573 +init_coul: 0 +init_stress: ! |2- + 1.2463236806083357e+02 1.1490760469914052e+02 1.1210986693967126e+02 4.5246703121600254e+00 1.5804990408656899e-01 -1.0693137368246819e+00 +init_forces: ! |2 + 1 1.2075570172666517e+00 2.5197974317501539e+00 -1.1088011670080028e-01 + 2 -3.3640367719428432e-01 -1.3590821195539500e+00 1.1852344345133097e+00 + 3 -6.2806484546469510e-01 3.5552480351430327e+00 -8.6421390688238175e-01 + 4 4.7711098978942779e-01 -3.4532546721455060e-02 -1.0749843970666426e+00 + 5 4.3030664720301770e-01 5.1385242342775950e+00 8.2781327426872553e-01 + 6 1.3194251358883464e+00 1.8639650645916612e+00 -5.6832606883092055e-03 + 7 -2.3101654115192791e+00 2.5604433342094270e+00 -7.2965336827545177e-02 + 8 -1.8813107076039852e+00 -1.2147517281060345e+00 9.1262468920677720e-01 + 9 -9.2706604883232924e-01 -2.1158693513637439e+00 -1.3343286591119883e+00 + 10 -1.2821535869049376e+00 -3.0144489221384694e+00 -3.5351352564615675e+00 + 11 -1.1335834282333026e+00 -3.5120338530097337e+00 2.0722646325441860e+00 + 12 6.4102096458389779e-01 -3.1447615079722784e+00 2.8312043748924653e-01 + 13 4.8280521904552287e-01 4.1076155220214972e-01 -9.1798823388030248e-01 + 14 5.2653610661583794e-01 -6.2290703152681082e-01 1.7010115724137842e+00 + 15 -7.3641720930753107e-01 5.2449888785562826e-01 -5.7457875359317656e-01 + 16 4.8060957088965059e+00 -2.9601876033250800e+00 1.1513035413632531e+00 + 17 1.5694265313688991e+00 3.9656667881189716e+00 8.0446307564172925e-01 + 18 -3.3186946470767591e+00 -8.6416688843237033e-01 -1.6953623479817574e+00 + 19 -3.1787673821310061e+00 -1.7128622766062167e+00 7.7068620510115116e-01 + 20 4.1206254122568498e-01 5.5320100762335822e-01 -1.0482557707854925e+00 + 21 3.6799553509965177e+00 3.0633923824191367e+00 8.3540419264329346e-01 + 22 1.5509924103292916e-01 -1.5860895423323973e+00 -5.2078426108068854e-01 + 23 1.6690346472590076e+00 3.0244758709213864e+00 -2.6993164884520335e+00 + 24 2.7830638197025031e+00 2.1704432957797124e+00 1.5951786296349422e+00 + 25 1.1508577091031484e+00 1.5739606526872121e-01 -9.6724308968747430e-01 + 26 -2.4314196195337345e+00 -3.4972804822539008e+00 3.8662445702731656e+00 + 27 4.5531493691138225e-01 -1.5956356316240030e+00 -7.4218682495610788e-01 + 28 4.4529948322420981e-01 1.2688271559426214e+00 1.6734044826622807e+00 + 29 1.2911541277019456e+00 2.3661170344126576e+00 2.8686172020066049e-02 + 30 -9.9889060576019295e-01 -4.6769358116081083e-01 -1.7331648652075726e+00 + 31 -5.8657575753077518e-01 -3.0113072080749070e+00 1.5141156316363609e+00 + 32 -3.7526132507226246e+00 -2.4291478663140555e+00 -1.3244839720484307e+00 +run_vdwl: -107.86391929010357 +run_coul: 0 +run_stress: ! |2- + 1.2460641049604875e+02 1.1489405545508679e+02 1.1208055821712979e+02 4.5163937877216895e+00 1.5653915791901030e-01 -1.0648087528149703e+00 +run_forces: ! |2 + 1 1.1982098120356077e+00 2.5189328855072604e+00 -1.1287702452749815e-01 + 2 -3.3687377087795833e-01 -1.3586209740811037e+00 1.1846521390335771e+00 + 3 -6.2753830023054646e-01 3.5498286732562088e+00 -8.6687524917664438e-01 + 4 4.7826567877044829e-01 -3.4121646796145377e-02 -1.0736928010657518e+00 + 5 4.2811167601152211e-01 5.1314869297038621e+00 8.3060267964198453e-01 + 6 1.3208187793397210e+00 1.8625472163098040e+00 -7.4819094990931792e-03 + 7 -2.3094312610266461e+00 2.5633891705072460e+00 -7.6399655653619072e-02 + 8 -1.8837407578170451e+00 -1.2156052045450962e+00 9.1286334428885407e-01 + 9 -9.2471341949015073e-01 -2.1184369065447348e+00 -1.3364985140770174e+00 + 10 -1.2721630503503110e+00 -3.0114962329744257e+00 -3.5263496371870358e+00 + 11 -1.1318567093029339e+00 -3.5131937929878601e+00 2.0685184872229150e+00 + 12 6.4283915487501542e-01 -3.1426999031486584e+00 2.8276405878848243e-01 + 13 4.8147178381451605e-01 4.0909344645359752e-01 -9.1491947204999780e-01 + 14 5.2717854675953901e-01 -6.1739345398595136e-01 1.6974867980998318e+00 + 15 -7.3576171999402440e-01 5.2489698626317516e-01 -5.7379291089028683e-01 + 16 4.7935839321755500e+00 -2.9564377955739980e+00 1.1474171610401691e+00 + 17 1.5710240367830319e+00 3.9643450325630152e+00 8.0512925186266537e-01 + 18 -3.3181837050932246e+00 -8.6170982332414536e-01 -1.6970394219132037e+00 + 19 -3.1767253119645460e+00 -1.7127744387001036e+00 7.6855380453281508e-01 + 20 4.1060102803733067e-01 5.5359035731950390e-01 -1.0479411326306367e+00 + 21 3.6756962936149260e+00 3.0553305228004728e+00 8.3488981594478473e-01 + 22 1.5767159306162337e-01 -1.5836157386417897e+00 -5.1851130094038789e-01 + 23 1.6744622235966600e+00 3.0245852385275738e+00 -2.6903790641330296e+00 + 24 2.7816283497560637e+00 2.1691013258915732e+00 1.5966190075740303e+00 + 25 1.1516228298127233e+00 1.5822163881139706e-01 -9.6685328121235659e-01 + 26 -2.4248886427889236e+00 -3.4895861283958003e+00 3.8642894795477014e+00 + 27 4.5573198082914618e-01 -1.5947345127964880e+00 -7.4500594054811942e-01 + 28 4.4593808568247761e-01 1.2697079835157221e+00 1.6721660405011940e+00 + 29 1.2888412883019529e+00 2.3653376970915940e+00 3.1784610920160050e-02 + 30 -9.9801461169527850e-01 -4.6739204892503866e-01 -1.7314911367261039e+00 + 31 -5.8942505089994013e-01 -3.0120820634848813e+00 1.5135338593175718e+00 + 32 -3.7543807617263241e+00 -2.4304944396157859e+00 -1.3251620860859517e+00 +... diff --git a/unittest/force-styles/tests/manybody-pair-meam_2nn.yaml b/unittest/force-styles/tests/manybody-pair-meam_2nn.yaml new file mode 100644 index 0000000000..619369c73b --- /dev/null +++ b/unittest/force-styles/tests/manybody-pair-meam_2nn.yaml @@ -0,0 +1,158 @@ +--- +lammps_version: 27 Jun 2024 +tags: +date_generated: Mon Aug 12 23:46:30 2024 +epsilon: 1e-10 +skip_tests: +prerequisites: ! | + pair meam +pre_commands: ! | + variable newton_pair delete + if "$(is_active(package,gpu)) > 0.0" then "variable newton_pair index off" else "variable newton_pair index on" +post_commands: ! "" +input_file: in.manybody +pair_style: meam +pair_coeff: ! | + * * library_2nn.meam Mo Co Ni V Fe Al Cr MoCoNiVFeAlCr_2nn.meam Mo Co Ni V Fe Al Al Cr +extract: ! | + scale 2 +natoms: 64 +init_vdwl: -171.6598108945207 +init_coul: 0 +init_stress: ! |2- + 1.5000244906093522e+02 1.4784843433112908e+02 1.8878670411728504e+02 -8.0067412186590516e+01 4.9436569287006911e+01 -6.3087814983498935e+00 +init_forces: ! |2 + 1 -7.1478062494427608e+00 8.9470631373989686e+00 1.2867076958451909e+01 + 2 -2.4212649493151468e+00 -9.6728792684791065e-01 -3.3304329963633963e+00 + 3 6.4848908706964559e-01 -3.0922904703144066e-01 -1.2907971225248811e+00 + 4 -5.6196991461628514e+00 7.1359699271239716e+00 9.0972001100265203e+00 + 5 -1.6195236884746755e-01 3.9199449957842525e-02 -6.2883860122844171e-01 + 6 -1.5805790911218078e+00 4.4492239034421193e+00 -2.0398891620744237e+00 + 7 -3.8798221590432125e-01 -1.6545871333896967e+00 9.0324680518469669e-01 + 8 7.9363816055289904e-01 6.1824005482731988e-02 -1.6309845411647025e-01 + 9 -2.2954942065869219e+00 -7.9024873733503611e+00 -3.8191534736978525e+00 + 10 -1.7993666410176701e+00 -3.9011465984634430e-01 -5.7869053315792431e+00 + 11 1.2215654397550209e+00 -1.9370045833863268e+00 4.4048146287686379e-01 + 12 -3.4292676729601550e+00 2.2733881756133276e+00 2.9392529088566115e+00 + 13 4.5115278000799872e+00 6.6981319436890248e+00 4.9899159082724438e+00 + 14 -5.9773130776866932e+00 8.2557215198071852e+00 -5.2407868913628617e+00 + 15 -1.2027583728097232e+01 1.3022892568361190e+01 -1.5743562165049745e+01 + 16 -6.0763429695166087e+00 -6.4700120430132362e+00 7.8723845263304844e+00 + 17 4.7461818315219615e+00 7.2302450160421889e+00 -7.1645864402130810e+00 + 18 -1.2006934037682315e+00 1.5747953628762406e+00 3.0746356656855400e-01 + 19 -8.2267447167560248e-01 -1.8948255375154346e+00 -2.0644747973250368e+00 + 20 -8.3641381932677703e+00 8.3156413660247903e+00 9.4554276133774291e+00 + 21 2.1118140016295754e+00 1.0561827448202914e+00 -1.2268263317226191e-02 + 22 -1.3597168647428347e+01 1.1689442133622299e+01 -1.5081510933867492e+01 + 23 5.7470185446091915e-01 2.2533886904750862e+00 -1.5167484918069787e-01 + 24 5.6537153879688118e-01 -4.9250695521262944e-01 1.0194056516804058e+00 + 25 1.1176322749567416e+00 -2.5922087196599990e+00 7.2933671986944804e+00 + 26 -5.7844708519961341e-01 1.7598945696608131e-01 -2.4732114752503931e-01 + 27 1.4346566000770689e+00 -1.6637820012674229e-01 -7.1397620578881038e-01 + 28 -1.9785045508166956e+00 3.9212428764563784e-01 1.5888384587634231e+01 + 29 -1.1095973727391237e+00 9.0621514884138865e-01 -1.0181359621613952e+00 + 30 -3.6953630084534685e+00 2.9356058686478623e+00 -3.3200607026175493e+00 + 31 -3.5618178236777709e+00 2.9114366912742460e+00 -4.8416747420203157e+00 + 32 -1.0703281880135609e+00 -1.5360815098054366e+00 7.5267703261299868e-01 + 33 1.5184402897993658e+01 -1.2701610267365300e+01 1.7424804353753583e+01 + 34 -4.1192353954536437e-01 5.8745054971033006e-01 -8.2976974741830423e-01 + 35 1.3054479188427639e+00 -1.5927505416628623e-01 -1.2710780170161512e-01 + 36 2.7248190035725308e+00 -2.2043789700568239e+00 5.8013602072515491e+00 + 37 -9.1462209213424406e-01 8.0854296376822021e-01 -1.4785090160387857e+00 + 38 1.9542033359812513e-01 -7.5295933226541456e-01 -1.9091095301836998e+00 + 39 3.8018260071019760e+00 -4.6603401077846938e+00 -1.0628697024648432e+01 + 40 1.9067027162571921e+00 -1.1752006196356417e+00 -1.0252979984098372e+00 + 41 -8.3754676014344664e-01 -1.2153428434650497e+00 1.1188558500842400e+00 + 42 -3.8933658846549819e+00 -2.2152395496573902e+00 -2.5602126289490967e+00 + 43 -6.8854047024894760e-01 -2.9319214924354333e+00 -1.4631791261633504e+00 + 44 8.5218477982593477e+00 -6.8810090921457290e+00 1.0187290735115324e+01 + 45 -3.0924071537246300e-01 9.1220533597528664e-01 -1.2346580841779158e+00 + 46 7.5746414213522040e-01 -1.8742046752551333e+00 1.9277474955397174e+00 + 47 2.9366718645633076e+00 -9.8575609933154573e-01 -2.7043416310644499e+00 + 48 4.9725672512275743e-01 -3.3956354220228357e-02 -6.1911879885571830e-01 + 49 -5.4150794645243776e+00 -1.4450638682187991e+01 -5.9938360420574543e+00 + 50 1.3271959102712154e+00 2.0763670271342720e+00 -2.5991939606221295e+00 + 51 -2.6906428258237114e-01 1.0705407597316392e+00 9.4064901870909412e-01 + 52 1.2698795538660745e+01 -1.1300577473527605e+01 1.6556209847933758e+01 + 53 8.6276789549363464e+00 9.8339484163762432e+00 1.0666926587793320e+01 + 54 8.0931294031442675e+00 -8.1575897043679078e+00 -1.1245679577771291e+01 + 55 4.5659821210337785e+00 -5.4989692710718217e+00 -1.1117397718423149e+01 + 56 6.7084121901543969e-01 3.3641183661003804e-01 -8.3326234809442234e-01 + 57 3.9369712899260995e-01 -1.4018048616517627e+00 1.8319333464072913e+00 + 58 6.1170451084776922e-01 7.5284186820631160e-01 -8.1520587122885435e-01 + 59 3.2101692882893973e+00 1.5229322414026976e+00 -3.2984122041847894e+00 + 60 2.0592353420349880e+00 -3.4994339669342516e+00 3.4334851296038265e+00 + 61 2.2458738611493695e-03 9.5499626624233147e-01 -2.3855438551780955e-01 + 62 -6.0105218595375396e+00 6.5524532804893409e+00 -5.8577792525744528e+00 + 63 6.6185389719229342e+00 -7.2873587003214997e+00 -6.5502473418296780e+00 + 64 -7.8336212891466195e-01 -3.2881136726111850e-02 2.0731714291698640e+00 +run_vdwl: -171.73142278874246 +run_coul: 0 +run_stress: ! |2- + 1.4973126318273444e+02 1.4750342125030221e+02 1.8860856816901264e+02 -7.9847562933619415e+01 4.9388866191108008e+01 -5.7694232837869039e+00 +run_forces: ! |2 + 1 -7.1585253825910558e+00 8.9053915883225656e+00 1.2844669475069658e+01 + 2 -2.4402593150947820e+00 -9.8770982897939419e-01 -3.3507467176903361e+00 + 3 6.3650551722404791e-01 -3.0996706649471656e-01 -1.2792558787223647e+00 + 4 -5.6101274223679081e+00 7.1006937008797992e+00 9.0552029245951680e+00 + 5 -1.6604667819268432e-01 3.9519127167668811e-02 -6.2489164790485574e-01 + 6 -1.4990519305213854e+00 4.4181760147769671e+00 -1.9724933863250651e+00 + 7 -3.7052619782279644e-01 -1.6156914030259517e+00 8.5825721764767737e-01 + 8 7.8930794208484056e-01 5.7485989089765037e-02 -1.5791455724230258e-01 + 9 -2.3795405523862265e+00 -7.9820255092187899e+00 -3.8903921530255192e+00 + 10 -1.8051779511520116e+00 -4.0312341164010018e-01 -5.7330317598070284e+00 + 11 1.2099314114505173e+00 -1.9266110475849156e+00 4.3865911960539611e-01 + 12 -3.4303484616430073e+00 2.2804239991575774e+00 2.9454722081915139e+00 + 13 4.6052639558733475e+00 6.7539412845978211e+00 5.0798009112371609e+00 + 14 -5.9951341097151465e+00 8.2509375569583447e+00 -5.2558134187527479e+00 + 15 -1.1975327455033419e+01 1.2964020810814365e+01 -1.5657084305960888e+01 + 16 -6.0085123130264986e+00 -6.4131331201126107e+00 7.8294149090677809e+00 + 17 4.7378790481762199e+00 7.2106410747641476e+00 -7.0747318513827819e+00 + 18 -1.2208179487209998e+00 1.5896046594521813e+00 3.2328719577936549e-01 + 19 -8.4833102929118198e-01 -1.9144777361552021e+00 -2.0814385229178582e+00 + 20 -8.3060159694428517e+00 8.2457783667884534e+00 9.3962444192711008e+00 + 21 2.0783081095278111e+00 9.8444269254979688e-01 -8.0184225548496579e-02 + 22 -1.3562256802610046e+01 1.1662128722418604e+01 -1.5071007179691101e+01 + 23 5.8227759009590618e-01 2.2693559079956924e+00 -1.4716460013221938e-01 + 24 5.8145875142270687e-01 -4.8729786513751472e-01 1.0109546493383947e+00 + 25 1.1004842507837185e+00 -2.5713518049293529e+00 7.2391313077562911e+00 + 26 -5.7777859718315894e-01 1.7868103090705781e-01 -2.3910776267224568e-01 + 27 1.4393992901069925e+00 -1.7812959354937266e-01 -7.0805240877158171e-01 + 28 -2.0408458628805874e+00 4.3162776707698597e-01 1.5894824805334625e+01 + 29 -1.1093473214362350e+00 9.1550373850522526e-01 -1.0158881505035249e+00 + 30 -3.6577662101254007e+00 2.8975695875593503e+00 -3.3056453064242750e+00 + 31 -3.5568841859882561e+00 2.9013060677555078e+00 -4.8361502961714189e+00 + 32 -1.0553259326658586e+00 -1.5179309659074374e+00 7.3374534103817646e-01 + 33 1.5087431858313199e+01 -1.2655448593824781e+01 1.7371416840900455e+01 + 34 -4.0555899434603232e-01 5.9945126501870671e-01 -8.3058575914748900e-01 + 35 1.3122942243365687e+00 -1.5060805215592607e-01 -1.2729109577566639e-01 + 36 2.6615361237010502e+00 -2.1515643400737776e+00 5.7399200415685110e+00 + 37 -9.2720595040604947e-01 7.9997518657950717e-01 -1.4848089034064551e+00 + 38 2.0402572291090582e-01 -7.4520184048365734e-01 -1.8843881574754946e+00 + 39 3.7758957422531889e+00 -4.6103409596094078e+00 -1.0614749854342170e+01 + 40 1.9281574625919398e+00 -1.1933100101884735e+00 -1.0378882246891563e+00 + 41 -8.0246664433367820e-01 -1.1892044096377596e+00 1.1707276311170298e+00 + 42 -3.9075019621204725e+00 -2.2375014726430114e+00 -2.5840516644847193e+00 + 43 -6.9871748601621009e-01 -2.9298038237483959e+00 -1.4740848862529630e+00 + 44 8.5167202516633083e+00 -6.8868580119727945e+00 1.0184770592036692e+01 + 45 -3.3631930091756468e-01 8.8801123108851998e-01 -1.2543966895292440e+00 + 46 7.4700828774509165e-01 -1.8569638352289362e+00 1.9751168925467499e+00 + 47 2.9489399596707808e+00 -9.9105124910027753e-01 -2.6925123691809203e+00 + 48 4.9759349370384398e-01 -3.4495475251494767e-02 -6.1657361032457225e-01 + 49 -5.4728910617395696e+00 -1.4526190326826807e+01 -6.0859532714341196e+00 + 50 1.3286905681614272e+00 2.0771086221398427e+00 -2.5974663166985912e+00 + 51 -2.8921698897573539e-01 1.0839448403891534e+00 9.5801514467399540e-01 + 52 1.2685244909045485e+01 -1.1266694983172416e+01 1.6520036928327187e+01 + 53 8.6769281370583116e+00 9.9143456133926779e+00 1.0766418740290172e+01 + 54 8.0735219599723180e+00 -8.1292327021531232e+00 -1.1209935449470830e+01 + 55 4.5259884551939926e+00 -5.4776254533648601e+00 -1.1023994706802366e+01 + 56 6.7055637888550557e-01 3.2646065284597842e-01 -8.2930560782933593e-01 + 57 4.0053053723703291e-01 -1.4326275011328715e+00 1.8156009892224521e+00 + 58 6.2335522987289660e-01 7.6457904519749642e-01 -8.2966286239098086e-01 + 59 3.2382162312458891e+00 1.5435945597021004e+00 -3.3031316903727248e+00 + 60 2.0118292099572499e+00 -3.4843792468087305e+00 3.3824144154037938e+00 + 61 1.7004641558338716e-02 9.7008202227542040e-01 -2.1505989264639899e-01 + 62 -5.9888421033889561e+00 6.5314584617002929e+00 -5.8280114512416663e+00 + 63 6.6388004947382555e+00 -7.3175409884025360e+00 -6.5945771007975402e+00 + 64 -7.2841762442693003e-01 1.7851440647814954e-02 2.0653209939206341e+00 +... diff --git a/unittest/testing/core.h b/unittest/testing/core.h index 79a2560fae..a6687003b5 100644 --- a/unittest/testing/core.h +++ b/unittest/testing/core.h @@ -32,6 +32,12 @@ using LAMMPS_NS::LAMMPSException; using ::testing::ContainsRegex; +#if defined(LAMMPS_SKIP_DEATH_TESTS) +#define TEST_FAILURE(errmsg, ...) \ + { \ + ; \ + } +#else #define TEST_FAILURE(errmsg, ...) \ { \ ::testing::internal::CaptureStdout(); \ @@ -39,6 +45,7 @@ using ::testing::ContainsRegex; auto mesg = ::testing::internal::GetCapturedStdout(); \ ASSERT_THAT(mesg, ContainsRegex(errmsg)); \ } +#endif // whether to print verbose output (i.e. not capturing LAMMPS screen output). extern bool verbose;